Skip to content

Commit 981516a

Browse files
committed
Adjust build.yml
1 parent 315cc23 commit 981516a

File tree

3 files changed

+4
-15
lines changed

3 files changed

+4
-15
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
- name: Audit ABI3 compliance
6969
# This may be moved into cibuildwheel itself in the future. See
7070
# https://github.com/pypa/cibuildwheel/issues/1342
71-
run: "pip install abi3audit && abi3audit --verbose --summary ./wheelhouse/*.whl"
71+
run: "pip install abi3audit && abi3audit --verbose --summary ./wheelhouse/*abi3*.whl"
7272

7373
- uses: actions/upload-artifact@v4
7474
with:

.github/workflows/test.yml

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
- python: '3.13'
5959
tox_env: py313-full
6060
- python: '3.13t'
61-
tox_env: py313t-full
61+
tox_env: py313t
6262
- python: '3.14.0-alpha.1 - 3.14'
6363
tox_env: py314-full
6464
- python: 'pypy-3.10'
@@ -141,15 +141,4 @@ jobs:
141141
# For speed, we only build one python version and one arch. We throw away the wheels
142142
# built here; the real build is defined in build.yml.
143143
CIBW_ARCHS: native
144-
CIBW_BUILD: cp313-manylinux* cp313t-manylinux*
145-
CIBW_ENABLE: cpython-freethreading
146-
147-
# Alternatively, uncomment the following lines (and replace the previous CIBW_BUILD)
148-
# to test a freethreading build of python.
149-
#CIBW_BUILD: cp313t-manylinux*
150-
#CIBW_ENABLE: cpython-freethreading
151-
# I don't understand what this does but auditwheel seems to fail in this configuration.
152-
# Since we're throwing away the wheels here, just skip it.
153-
# TODO: When we no longer need to disable this, we can enable freethreading in
154-
# build.yml.
155-
#CIBW_REPAIR_WHEEL_COMMAND: ""
144+
CIBW_BUILD: cp313-manylinux*

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
66
target-version = ['py39', 'py310', 'py311', 'py312', 'py313']
77

88
[tool.cibuildwheel]
9-
build = "cp39* cp310* cp311* cp312* cp313*"
9+
build = "cp39* cp310* cp311* cp312* cp313* cp313t*"
1010
test-command = "python -m tornado.test"
1111

1212
[tool.cibuildwheel.macos]

0 commit comments

Comments
 (0)