Skip to content

Commit

Permalink
Merge branch 'master' into pytype-strict-none-binding
Browse files Browse the repository at this point in the history
  • Loading branch information
jkppr authored Oct 29, 2024
2 parents 506a3e3 + f457b72 commit 6e6a1ff
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-22.04]
python-version: ['3.8', '3.10']
python-version: ['3.9', '3.10']

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-22.04]
python-version: ['3.8', '3.10']
python-version: ['3.9', '3.10']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ altair==4.1.0
celery==5.2.7
cryptography==43.0.0
datasketch==1.5.0
dfir-unfurl==20230901
dfir-unfurl==20240627
opensearch-py==2.6.0
Flask==3.0.3
flask_bcrypt==1.0.1
Expand All @@ -14,6 +14,7 @@ flask_sqlalchemy==3.0.3
flask_wtf==1.2.1
google-auth==2.32.0
google_auth_oauthlib==0.4.1
google-cloud-aiplatform==1.70.0
gunicorn==22.0.0
numpy==1.23.4
oauthlib==3.1.0
Expand Down
2 changes: 1 addition & 1 deletion timesketch/lib/analyzers/contrib/bigquery_matcher_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,4 +94,4 @@ def test_query_batching(self, mock_bq):
def _add_event_to_datastore(datastore, event_id, attributes_dict):
event = copy.deepcopy(MockDataStore.event_dict)
event["_source"].update(attributes_dict)
datastore.import_event("test_index", "test_event", event["_source"], str(event_id))
datastore.import_event("test_index", event["_source"], str(event_id))

0 comments on commit 6e6a1ff

Please sign in to comment.