Skip to content

Commit

Permalink
Add testing for python 3.12 and remove for 3.9
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
php1ic committed Aug 17, 2024
1 parent 5d4b856 commit 1440233
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11']
python-version: ['3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v3
Expand All @@ -29,7 +29,7 @@ jobs:
run: |
coverage run -m pytest -v && coverage xml
- name: Upload coverage to Codecov
if: ${{ matrix.python-version == '3.11' }}
if: ${{ matrix.python-version == '3.12' }}
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
Expand Down

0 comments on commit 1440233

Please sign in to comment.