Skip to content

Commit 83e0eea

Browse files
committed
Restore Linux smoke test for all Python versions
The Linux smoke-test skip for 3.15 / 3.15t was landed by mistake; smoke tests should run for all Python versions. Revert build_wheels_linux.yml back to `if: ${{ inputs.run-smoke-test }}`. Authored with assistance from Claude Code (AI assistant).
1 parent 55d6ddb commit 83e0eea

1 file changed

Lines changed: 1 addition & 6 deletions

File tree

.github/workflows/build_wheels_linux.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -301,12 +301,7 @@ jobs:
301301
repository: ${{ inputs.repository }}
302302
script: ${{ inputs.post-script }}
303303
- name: Smoke Test
304-
# Skip the smoke test for Python 3.15 / 3.15t: the wheel builds fine, but
305-
# the smoke test installs the wheel which pulls required runtime deps
306-
# (e.g. pillow, a hard torchvision dependency) that have no cp315 wheels
307-
# yet and fail to build from sdist. Re-enable once the ecosystem ships
308-
# cp315 wheels.
309-
if: ${{ inputs.run-smoke-test && ! startsWith(matrix.python_version, '3.15') }}
304+
if: ${{ inputs.run-smoke-test }}
310305
shell: bash -l {0}
311306
env:
312307
PACKAGE_NAME: ${{ inputs.package-name }}

0 commit comments

Comments
 (0)