Skip to content

Commit

Permalink
CI: Add Python 3.13 test jobs
Browse files Browse the repository at this point in the history
Python 3.13 is now in release candidate phase and ABI stable. https://www.python.org/downloads/release/python-3130rc1/
  • Loading branch information
EwoutH committed Aug 26, 2024
1 parent e07d298 commit 4fdb21a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']

steps:
- uses: actions/checkout@v4
Expand All @@ -33,6 +33,7 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true

- name: Install UV
run: curl -LsSf https://github.com/astral-sh/uv/releases/latest/download/uv-installer.sh | sh
Expand Down Expand Up @@ -114,7 +115,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']

steps:
- uses: actions/checkout@v4
Expand All @@ -123,6 +124,7 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true

- name: Install tools
run: pip install --upgrade -r backend/tests/downstream/requirements.txt
Expand Down

0 comments on commit 4fdb21a

Please sign in to comment.