Merge pull request #18 from pimoroni/patch-ci

Tweak CI Python versions
This commit is contained in:
Philip Howard
2021-09-15 15:14:06 +01:00
committed by GitHub
2 changed files with 3 additions and 3 deletions

View File

@@ -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' }}

View File

@@ -1,5 +1,5 @@
[tox]
envlist = py{27,36,37,39},qa
envlist = py{27,37,39},qa
skip_missing_interpreters = True
[testenv]