Skip to content

Commit

Permalink
Bump karton-core requirement (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
nazywam authored Jul 27, 2022
1 parent 67b3745 commit 681dd96
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
minor: [7, 8, 9]
minor: [8, 9, 10]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.7
FROM python:3.9

WORKDIR /app/service
COPY ./requirements.txt ./requirements.txt
Expand Down
2 changes: 1 addition & 1 deletion karton/yaramatcher/yaramatcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ def process_joesandbox(self, task: Task) -> List[str]:

return yara_matches

def process(self, task: Task) -> None: # type: ignore
def process(self, task: Task) -> None:
headers = task.headers
sample = task.get_resource("sample")
yara_matches: List[str] = []
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
karton-core>=4.2.0,<5.0.0
karton-core>=5.0.0,<6.0.0
yara-python>=4.0.2

0 comments on commit 681dd96

Please sign in to comment.