Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TST: add CPython 3.13 to regular test matrix #5021

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/bleeding-edge.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
# the '-dev' suffix allows to use pre-releases if no final release is available yet
# this version should be upgraded as often as possible, typically once a year when
# Cython, numpy and matplotlib are known to be compatible
python-version: '3.12-dev'
python-version: '3.13-dev'

- name: Install dependencies
# PyYAML needs to be installed in isolation for now, because of a known
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ jobs:
os:
- ubuntu-latest
- macos-latest
python-version: ['3.12']
python-version: ['3.13']
dependencies: [full]
tests-type: [unit]
test-runner: [pytest]
venv-loc: [bin]
include:
- os: windows-latest
python-version: '3.12'
python-version: '3.13'
dependencies: full
tests-type: unit
test-runner: pytest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wheels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
python-version: '3.13'
- name: install check-manifest
run: |
python -m pip install --upgrade pip
Expand Down
Loading