Skip to content

Commit

Permalink
Run CI with Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
madig committed Oct 20, 2024
1 parent 394ef8a commit 5ea4abc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
runs-on: ${{ matrix.platform }}
strategy:
matrix:
python-version: ['3.8', '3.11']
python-version: ["3.8", "3.13"]
platform: [ubuntu-latest, windows-latest]

steps:
Expand All @@ -54,11 +54,11 @@ jobs:
- name: Run Tox
run: tox -e py-cov
- name: Re-run Tox without cattrs
if: startsWith(matrix.platform, 'ubuntu-latest') && startsWith(matrix.python-version, '3.11')
if: startsWith(matrix.platform, 'ubuntu-latest') && startsWith(matrix.python-version, '3.13')
run: |
tox -e py-nocattrs
- name: Re-run Tox without msgpack
if: startsWith(matrix.platform, 'ubuntu-latest') && startsWith(matrix.python-version, '3.10')
if: startsWith(matrix.platform, 'ubuntu-latest') && startsWith(matrix.python-version, '3.13')
run: |
tox -e py-nomsgpack
- name: Produce coverage files
Expand Down

0 comments on commit 5ea4abc

Please sign in to comment.