Skip to content

Commit

Permalink
don't test on 3.13 (#862)
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarlevin authored Nov 9, 2024
1 parent e51f09c commit b3c3e40
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
strategy:
fail-fast: true
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
poetry-version: ["1.5.1"]
os: [ubuntu-latest, windows-latest]
exclude:
Expand All @@ -57,8 +57,8 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: Install apt packages (Linux with python 3.13 only)
if: runner.os == 'Linux' && matrix.python-version == '3.13'
- name: Install apt packages (Linux with python 3.12 only)
if: runner.os == 'Linux' && matrix.python-version == '3.12'

run: |
sudo apt update
Expand Down

0 comments on commit b3c3e40

Please sign in to comment.