From 60d5f719ce306ca90adf9e514dab3a15377bb272 Mon Sep 17 00:00:00 2001 From: Steve Linabery Date: Mon, 18 Sep 2023 10:23:35 -0500 Subject: [PATCH] Adjust tox text matrix The test runs for python 3.7 and 3.8 started failing due to some type hinting in the bugjira source, and since we don't intend to support those pythons we can disable these older test environments. --- .github/workflows/test.yml | 2 +- tox.ini | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0835248..b25b1ec 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python: ['3.7', '3.8', '3.9', '3.10', '3.11'] + python: ['3.10', '3.11'] steps: - uses: actions/checkout@v3 - name: Setup Python diff --git a/tox.ini b/tox.ini index f183a92..6f5eb8a 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] envlist = - py{37,38,39,310,311} + py{310,311} flake8 [testenv]