Skip to content

Commit 7f425e3

Browse files
committed
Add free-threaded 3.14 to the CI
1 parent 337c9cc commit 7f425e3

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
python: ['3.10', '3.11', '3.12', '3.13', '3.14']
12+
python: ['3.10', '3.11', '3.12', '3.13', '3.14', '3.14t']
1313

1414
steps:
1515
- name: Checkout
@@ -35,7 +35,7 @@ jobs:
3535
strategy:
3636
fail-fast: false
3737
matrix:
38-
python: ['3.10', '3.11', '3.12', '3.13', '3.14']
38+
python: ['3.10', '3.11', '3.12', '3.13', '3.14', '3.14t']
3939
check_formatting: ['0']
4040
extra_name: ['']
4141
include:
@@ -72,7 +72,7 @@ jobs:
7272
strategy:
7373
fail-fast: false
7474
matrix:
75-
python: ['3.10', '3.11', '3.12', '3.13', '3.14']
75+
python: ['3.10', '3.11', '3.12', '3.13', '3.14', '3.14t']
7676
steps:
7777
- name: Checkout
7878
uses: actions/checkout@v5
@@ -83,6 +83,10 @@ jobs:
8383
allow-prereleases: true
8484
cache: pip
8585
cache-dependency-path: test-requirements.txt
86+
- name: Set PYTHON_GIL
87+
if: endsWith(matrix.python-version, 't')
88+
run: |
89+
echo "PYTHON_GIL=0" >> "$GITHUB_ENV"
8690
- name: Run tests
8791
run: ./ci.sh
8892
env:

0 commit comments

Comments
 (0)