Skip to content

Commit

Permalink
build: claim 3.13 support
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat committed Jan 14, 2024
1 parent 45e7854 commit ec1057b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/python-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ jobs:
# https://launchpad.net/~deadsnakes/+archive/ubuntu/nightly/+packages
- "3.11-dev"
- "3.12-dev"
- "3.13-dev"
# https://github.com/actions/setup-python#available-versions-of-pypy
- "pypy-3.8-nightly"
- "pypy-3.9-nightly"
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
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
Topic :: Software Development :: Quality Assurance
Expand Down
5 changes: 3 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[tox]
# When changing this list, be sure to check the [gh] list below.
# PYVERSIONS
envlist = py3{8,9,10,11,12}, pypy3, doc, lint, mypy
envlist = py3{8,9,10,11,12,13}, pypy3, doc, lint, mypy
skip_missing_interpreters = {env:COVERAGE_SKIP_MISSING_INTERPRETERS:True}
toxworkdir = {env:TOXWORKDIR:.tox}

Expand Down Expand Up @@ -43,7 +43,7 @@ commands =
python -m pip install {env:COVERAGE_PIP_ARGS} -q -e .
python igor.py test_with_core ctrace {posargs}

py3{12}: python igor.py test_with_core sysmon {posargs}
py3{12,13},anypy: python igor.py test_with_core sysmon {posargs}

# Remove the C extension so that we can test the PyTracer
python igor.py remove_extension
Expand Down Expand Up @@ -124,4 +124,5 @@ python =
3.10 = py310
3.11 = py311
3.12 = py312
3.13 = py313
pypy-3 = pypy3

0 comments on commit ec1057b

Please sign in to comment.