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 #525

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
- '3.10'
- '3.11'
- '3.12'
- '3.13'
# Test all on ubuntu, test ends on macos and windows
include:
- os: macos-13
Expand All @@ -30,9 +31,9 @@ jobs:
- os: windows-latest
python-version: '3.9'
- os: macos-latest
python-version: '3.12'
python-version: '3.13'
- os: windows-latest
python-version: '3.12'
python-version: '3.13'


steps:
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py39-docs,begin,py39-dependencies,py39-versions,py{39,310,311,312},py39-unyt-module-test-function,end
envlist = py39-docs,begin,py39-dependencies,py39-versions,py{39,310,311,312,313},py39-unyt-module-test-function,end
isolated_build = True

[gh-actions]
Expand All @@ -8,6 +8,7 @@ python =
3.10: py310
3.11: py311
3.12: py312
3.13: py313

[testenv]
package = wheel
Expand Down