Skip to content

Commit dfa4791

Browse files
committed
Support free threading
1 parent e1b3920 commit dfa4791

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-24.04
1414
strategy:
1515
matrix:
16-
python-version: [ "3.10", "3.11", "3.12", "3.13", "3.14" ]
16+
python-version: [ "3.10", "3.11", "3.12", "3.13", "3.14", "3.14t" ]
1717
steps:
1818
- name: Checkout code
1919
uses: actions/checkout@v5

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88

99
@session(
10-
python=["3.10", "3.11", "3.12", "3.13", "3.14"],
10+
python=["3.10", "3.11", "3.12", "3.13", "3.14", "3.14t"],
1111
uv_groups=["test"],
1212
)
1313
def test(s: Session) -> None:

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ classifiers = [
1818
"Programming Language :: Python :: 3.12",
1919
"Programming Language :: Python :: 3.13",
2020
"Programming Language :: Python :: 3.14",
21+
"Programming Language :: Python :: Free Threading :: 3 - Stable",
2122
"Typing :: Typed",
2223
# Include this classifier to prevent accidentally publishing private code to PyPI.
2324
# https://pypi.org/classifiers/

0 commit comments

Comments
 (0)