Skip to content

Commit 1440233

Browse files
committed
Add testing for python 3.12 and remove for 3.9
3.12 has been out a while and 3.9 will go end of life in a few months. Lets keep things relatively upto date.
1 parent 5d4b856 commit 1440233

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: ['3.9', '3.10', '3.11']
15+
python-version: ['3.10', '3.11', '3.12']
1616

1717
steps:
1818
- uses: actions/checkout@v3
@@ -29,7 +29,7 @@ jobs:
2929
run: |
3030
coverage run -m pytest -v && coverage xml
3131
- name: Upload coverage to Codecov
32-
if: ${{ matrix.python-version == '3.11' }}
32+
if: ${{ matrix.python-version == '3.12' }}
3333
uses: codecov/codecov-action@v3
3434
with:
3535
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)