From 1d8d0faf1bb1be1dd00cc4bdfb11866248da6803 Mon Sep 17 00:00:00 2001 From: Phil Howard Date: Wed, 15 Sep 2021 12:34:01 +0100 Subject: [PATCH] Tweak CI Python versions --- .github/workflows/test.yml | 4 ++-- library/tox.ini | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0e3432a..9e866e8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python: [2.7, 3.6, 3.8] + python: [2.7, 3.7, 3.9] steps: - uses: actions/checkout@v2 @@ -33,5 +33,5 @@ jobs: run: | python -m pip install coveralls coveralls --service=github - if: ${{ matrix.python == '3.8' }} + if: ${{ matrix.python == '3.9' }} diff --git a/library/tox.ini b/library/tox.ini index b9aef8a..b937711 100644 --- a/library/tox.ini +++ b/library/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py{27,36,37,39},qa +envlist = py{27,37,39},qa skip_missing_interpreters = True [testenv]