From d8203ecc33c11ff8e79d9545106ad2c529c14834 Mon Sep 17 00:00:00 2001 From: Shane Duvall Date: Wed, 11 Sep 2024 10:53:22 -0500 Subject: [PATCH 1/2] Clean up dependabot test failures --- .github/workflows/main.yml | 2 +- requirements.txt | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a17f8887..3fb68af8 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,7 +14,7 @@ jobs: - name: Install Python 3 uses: actions/setup-python@v3 with: - python-version: 3.7 + python-version: 3.8 - name: Install dependencies run: | python -m pip install --upgrade pip diff --git a/requirements.txt b/requirements.txt index 884e1d0d..14655e43 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,8 +1,8 @@ backoff==2.2.1 -cryptography==42.0.7 -flake8==3.7.9 +cryptography==43.0.0 +flake8==7.1.1 mock==2.0.0 PyJWT==2.8.0 -pylint==2.8.0 +pylint==3.2.6 python-dateutil==2.8.2 -requests==2.31.0 +requests==2.32.3 From 0254937eff9670653f335f43c9e947248a104758 Mon Sep 17 00:00:00 2001 From: Shane Duvall Date: Wed, 11 Sep 2024 11:06:25 -0500 Subject: [PATCH 2/2] Remove python 3.7 test due to EOL --- .github/workflows/tests.yml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 257b7077..792a2200 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -19,15 +19,6 @@ jobs: - name: Checkout uses: actions/checkout@v4 - - name: Run with setup-python 3.7 - uses: actions/setup-python@v5 - with: - python-version: '3.7' - - name: Setup required modules - run: python -m pip install -r requirements.txt - - name: Run tests - run: python -m unittest discover -s segment - - name: Run with setup-python 3.8 uses: actions/setup-python@v5 with: