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

ci: add Python 3.13 #815

Merged
merged 1 commit into from
Sep 6, 2024
Merged
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
1 change: 1 addition & 0 deletions .github/workflows/reusable-pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
- "pypy3.8"
- "pypy3.9-v7.3.14"
- "pypy3.10-v7.3.17"
- "3.13"
- "3.12"
- "3.11"
- "3.10"
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
Expand Down
8 changes: 4 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ env_list =
type
docs
path
{py312, py311, py310, py39, py38, pypy310, pypy39, pypy38}{, -min}
{py313, py312, py311, py310, py39, py38, pypy310, pypy39, pypy38}{, -min}
skip_missing_interpreters = true

[testenv]
Expand Down Expand Up @@ -54,7 +54,7 @@ commands =

[testenv:docs]
description = build documentations
base_python = python3.10
base_python = python3.12
extras =
docs
commands =
Expand All @@ -69,7 +69,7 @@ set_env =
commands_pre =
python -E -m pip uninstall -y build colorama

[testenv:{py312, py311, py310, py39, py38, pypy38, pypy39, pypy310}-min]
[testenv:{py313, py312, py311, py310, py39, py38, pypy38, pypy39, pypy310}-min]
description = check minimum versions required of all dependencies
skip_install = true
commands_pre =
Expand Down Expand Up @@ -105,7 +105,7 @@ commands =
python -m diff_cover.diff_cover_tool --compare-branch {env:DIFF_AGAINST:origin/main} {toxworkdir}/coverage.xml
depends =
path
{py312, py311, py310, py39, py38, pypy310, pypy39, pypy38}{, -min}
{py313, py312, py311, py310, py39, py38, pypy310, pypy39, pypy38}{, -min}

[testenv:bump]
description = bump versions, pass major/minor/patch
Expand Down
Loading