Skip to content

Commit

Permalink
Add support for Python 3.13 beta
Browse files Browse the repository at this point in the history
  • Loading branch information
seddonym committed Jul 12, 2024
1 parent 38722c6 commit 4448bdc
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
python-version: [
"3.8", "3.9", "3.10", "3.11", "3.12"
"3.8", "3.9", "3.10", "3.11", "3.12", "3.13.0-beta.3"
]
os: [ubuntu-latest, macos-latest, windows-latest]

Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ jobs:
3.10
3.11
3.12
3.13.0-beta.3
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
Expand Down Expand Up @@ -78,6 +79,7 @@ jobs:
3.10
3.11
3.12
3.13.0-beta.3
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
Expand Down Expand Up @@ -110,6 +112,7 @@ jobs:
3.10
3.11
3.12
3.13.0-beta.3
architecture: ${{ matrix.platform.target }}
- name: Build wheels
uses: PyO3/maturin-action@v1
Expand Down Expand Up @@ -142,6 +145,7 @@ jobs:
3.10
3.11
3.12
3.13.0-beta.3
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
Changelog
=========

latest
------

* Officially support Python 3.13.

3.4 (2024-07-09)
----------------

Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,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 :: Rust",
"Topic :: Utilities",
Expand Down
2 changes: 2 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ basepython =
py310: {env:TOXPYTHON:python3.10}
py311: {env:TOXPYTHON:python3.11}
py312: {env:TOXPYTHON:python3.12}
py313: {env:TOXPYTHON:python3.13}
{clean,check,docs,report}: {env:TOXPYTHON:python3}
setenv =
PYTHONPATH={toxinidir}/tests
Expand Down Expand Up @@ -105,3 +106,4 @@ python =
3.10: py310, report
3.11: py311, report
3.12: py312, report, check, docs
3.13: py313

0 comments on commit 4448bdc

Please sign in to comment.