Change supported Python: cut 3.6, add 3.9 & 3.10

(Python EOL'ed version 3.6 in December 2021.)
This commit is contained in:
Jeremy Singer-Vine
2022-04-23 16:49:26 -04:00
parent 3db4bb0614
commit a32473ee5f
2 changed files with 7 additions and 6 deletions
+4 -4
View File
@@ -9,10 +9,10 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: 3.9
- name: Configure pip caching
uses: actions/cache@v2
@@ -41,7 +41,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.6, 3.7, 3.8]
python-version: [3.7, 3.8, 3.9, "3.10"]
steps:
- uses: actions/checkout@v2
@@ -76,7 +76,7 @@ jobs:
- name: Upload code coverage
uses: codecov/codecov-action@v1.0.12
if: matrix.python-version == 3.8
if: matrix.python-version == 3.9
- name: Build package
run: python setup.py build sdist