diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml index 07b8ddf35c..f9d7543a06 100644 --- a/.github/workflows/linters.yml +++ b/.github/workflows/linters.yml @@ -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 diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 7dd7ce0a01..23bddfb94b 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -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 }} diff --git a/requirements.txt b/requirements.txt index 2b2a5cf13b..8f1fcafddd 100644 --- a/requirements.txt +++ b/requirements.txt @@ -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 @@ -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 diff --git a/timesketch/lib/analyzers/contrib/bigquery_matcher_test.py b/timesketch/lib/analyzers/contrib/bigquery_matcher_test.py index 21fc87d175..c18ce0648c 100644 --- a/timesketch/lib/analyzers/contrib/bigquery_matcher_test.py +++ b/timesketch/lib/analyzers/contrib/bigquery_matcher_test.py @@ -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))