Skip to content

Commit

Permalink
Include Python 3.13 in all workflows (#1826)
Browse files Browse the repository at this point in the history
This PR updates all workflows to support 3.13.

We may run into issues with the full test workflow on Python 3.13.

(cherry picked from commit 0dda807)
  • Loading branch information
mdickinson committed Jan 24, 2025
1 parent c4b53e4 commit 5ccf555
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run-traits-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
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']

runs-on: ${{ matrix.os }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-from-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
test-pypi-sdist:
strategy:
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']
platform:
- os: ubuntu-latest
architecture: x64
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:
test-pypi-wheel:
strategy:
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']
platform:
- os: ubuntu-latest
architecture: x64
Expand Down

0 comments on commit 5ccf555

Please sign in to comment.