Skip to content

Linux py 3.15 wheel builds#184600

Closed
atalman wants to merge 1 commit into
pytorch:mainfrom
atalman:python315_update
Closed

Linux py 3.15 wheel builds#184600
atalman wants to merge 1 commit into
pytorch:mainfrom
atalman:python315_update

Conversation

@atalman

@atalman atalman commented May 20, 2026

Copy link
Copy Markdown
Collaborator

Summary

Adds Python 3.15 and 3.15t (free-threaded) to the Linux manywheel nightly build matrix, mirroring #157559 which enabled 3.14.

Related to Python 3.15 support tracking.

Test plan

  • ciflow/binaries triggers manywheel Linux 3.15 / 3.15t builds successfully

Authored by Claude.

@atalman atalman requested a review from a team as a code owner May 20, 2026 19:40
@pytorch-bot pytorch-bot Bot added the topic: not user facing topic category label May 20, 2026
@pytorch-bot

pytorch-bot Bot commented May 20, 2026

Copy link
Copy Markdown

🔗 Helpful Links

🧪 See artifacts and rendered test results at hud.pytorch.org/pr/184600

Note: Links to docs will display an error until the docs builds have been completed.

❗ 1 Active SEVs

There are 1 currently active SEVs. If your PR is affected, please view them below:

❌ 8 New Failures, 15 Unrelated Failures, 51 Unclassified Failures

As of commit e4e6177 with merge base 3ac6004 (image):

NEW FAILURES - The following jobs have failed:

UNCLASSIFIED FAILURES - DrCI could not classify the following jobs because the workflow did not run on the merge base. The failures may be pre-existing on trunk or introduced by this PR:

FLAKY - The following jobs failed but were likely due to flakiness present on trunk:

UNSTABLE - The following job is marked as unstable, possibly due to flakiness on trunk:

This comment was automatically generated by Dr. CI and updates every 15 minutes.

@atalman atalman added the ciflow/binaries Trigger all binary build and upload jobs on the PR label May 20, 2026
@atalman atalman force-pushed the python315_update branch 2 times, most recently from c430b5f to 32065d6 Compare May 20, 2026 22:56
@atalman atalman mentioned this pull request May 20, 2026
16 tasks
@atalman atalman force-pushed the python315_update branch from 32065d6 to 75bc622 Compare May 21, 2026 00:09
Adds Python 3.15 and 3.15t (free-threaded) to the Linux manywheel
nightly build matrix, mirroring PR pytorch#157559 which enabled 3.14.

Authored by Claude.
@atalman atalman force-pushed the python315_update branch from 75bc622 to e4e6177 Compare May 21, 2026 00:49

@albanD albanD left a comment

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

FYI @jeffdaily for the rocm related blocker.

@atalman

atalman commented May 21, 2026

Copy link
Copy Markdown
Collaborator Author

@pytorchmergebot merge -f "Test failures are caused by #179400"

@pytorchmergebot

Copy link
Copy Markdown
Collaborator

Merge started

Your change will be merged immediately since you used the force (-f) flag, bypassing any CI checks (ETA: 1-5 minutes). Please use -f as last resort and instead consider -i/--ignore-current to continue the merge ignoring current failures. This will allow currently pending tests to finish and report signal before the merge.

Learn more about merging in the wiki.

Questions? Feedback? Please reach out to the PyTorch DevX Team

Advanced Debugging
Check the merge workflow status
here

pytorchmergebot pushed a commit that referenced this pull request May 22, 2026
## Summary

Skip XPU manywheel builds for Python 3.15 / 3.15t in the same way #184600 skipped ROCm. Triton XPU 3.15 wheel builds are currently broken (see the exclusion in `.github/workflows/build-triton-wheel.yml`); without working triton-xpu, manywheel XPU 3.15 builds cannot link triton and fail.

## Change

`.github/scripts/generate_binary_build_matrix.py` — adds 8 lines mirroring the ROCm skip block:

```py
# TODO: Re-enable XPU for python 3.15 once the triton XPU 3.15
# wheel build is fixed (tracked in #184901). Triton XPU is
# currently skipped for 3.15/3.15t in build-triton-wheel.yml.
if arch_version in XPU_ARCHES and (
    python_version == "3.15" or python_version == "3.15t"
):
    continue
```

## Notes

The generated workflow YAML (`generated-linux-binary-manywheel-nightly.yml`) will need regenerating to drop the `manywheel-py3_15-xpu` / `manywheel-py3_15t-xpu` entries — that's 44 lines removed, fully derived from this script change via:

```bash
python .github/scripts/generate_ci_workflows.py
```

Will follow up with the regen commit, or happy for a maintainer to push it on this branch.

## References

- Umbrella: #184352 (Python 3.15 support for PyTorch)
- Tracking: #184901 (XPU triton 3.15 build failure)
- Related: #184829 (triton 3.15 wheel build that skipped XPU)
- Precedent: #184600 (ROCm 3.15 skip)

Pull Request resolved: #184906
Approved by: https://github.com/albanD, https://github.com/malfet
pytorchmergebot pushed a commit to khushi-411/pytorch that referenced this pull request May 24, 2026
## Summary

Skip XPU manywheel builds for Python 3.15 / 3.15t in the same way pytorch#184600 skipped ROCm. Triton XPU 3.15 wheel builds are currently broken (see the exclusion in `.github/workflows/build-triton-wheel.yml`); without working triton-xpu, manywheel XPU 3.15 builds cannot link triton and fail.

## Change

`.github/scripts/generate_binary_build_matrix.py` — adds 8 lines mirroring the ROCm skip block:

```py
# TODO: Re-enable XPU for python 3.15 once the triton XPU 3.15
# wheel build is fixed (tracked in pytorch#184901). Triton XPU is
# currently skipped for 3.15/3.15t in build-triton-wheel.yml.
if arch_version in XPU_ARCHES and (
    python_version == "3.15" or python_version == "3.15t"
):
    continue
```

## Notes

The generated workflow YAML (`generated-linux-binary-manywheel-nightly.yml`) will need regenerating to drop the `manywheel-py3_15-xpu` / `manywheel-py3_15t-xpu` entries — that's 44 lines removed, fully derived from this script change via:

```bash
python .github/scripts/generate_ci_workflows.py
```

Will follow up with the regen commit, or happy for a maintainer to push it on this branch.

## References

- Umbrella: pytorch#184352 (Python 3.15 support for PyTorch)
- Tracking: pytorch#184901 (XPU triton 3.15 build failure)
- Related: pytorch#184829 (triton 3.15 wheel build that skipped XPU)
- Precedent: pytorch#184600 (ROCm 3.15 skip)

Pull Request resolved: pytorch#184906
Approved by: https://github.com/albanD, https://github.com/malfet
pytorchmergebot pushed a commit to gaurav-redhat/pytorch that referenced this pull request May 26, 2026
## Summary

Skip XPU manywheel builds for Python 3.15 / 3.15t in the same way pytorch#184600 skipped ROCm. Triton XPU 3.15 wheel builds are currently broken (see the exclusion in `.github/workflows/build-triton-wheel.yml`); without working triton-xpu, manywheel XPU 3.15 builds cannot link triton and fail.

## Change

`.github/scripts/generate_binary_build_matrix.py` — adds 8 lines mirroring the ROCm skip block:

```py
# TODO: Re-enable XPU for python 3.15 once the triton XPU 3.15
# wheel build is fixed (tracked in pytorch#184901). Triton XPU is
# currently skipped for 3.15/3.15t in build-triton-wheel.yml.
if arch_version in XPU_ARCHES and (
    python_version == "3.15" or python_version == "3.15t"
):
    continue
```

## Notes

The generated workflow YAML (`generated-linux-binary-manywheel-nightly.yml`) will need regenerating to drop the `manywheel-py3_15-xpu` / `manywheel-py3_15t-xpu` entries — that's 44 lines removed, fully derived from this script change via:

```bash
python .github/scripts/generate_ci_workflows.py
```

Will follow up with the regen commit, or happy for a maintainer to push it on this branch.

## References

- Umbrella: pytorch#184352 (Python 3.15 support for PyTorch)
- Tracking: pytorch#184901 (XPU triton 3.15 build failure)
- Related: pytorch#184829 (triton 3.15 wheel build that skipped XPU)
- Precedent: pytorch#184600 (ROCm 3.15 skip)

Pull Request resolved: pytorch#184906
Approved by: https://github.com/albanD, https://github.com/malfet
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

ciflow/binaries Trigger all binary build and upload jobs on the PR Merged topic: not user facing topic category

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants