8000 [CD] Enable python3.13t builds for aarch64 (#144698) · pytorch/pytorch@6053242 · GitHub
[go: up one dir, main page]

Skip to content

Commit 6053242

Browse files
malfetpytorchmergebot
authored andcommitted
[CD] Enable python3.13t builds for aarch64 (#144698)
But make sure that right numpy version is picked (2.0.2 does not support 3.13) Pull Request resolved: #144698 Approved by: https://github.com/atalman ghstack dependencies: #144696, #144697, #144716
1 parent b221f88 commit 6053242

File tree

3 files changed

+119
-2
lines changed

3 files changed

+119
-2
lines changed

.ci/aarch64_linux/aarch64_ci_setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -eux -o pipefail
55
# By creating symlinks from desired /opt/python to /usr/local/bin/
66

77
NUMPY_VERSION=2.0.2
8-
if [[ "$DESIRED_PYTHON" == "3.13" ]]; then
8+
if [[ "$DESIRED_PYTHON" == "3.13" || "$DESIRED_PYTHON" == "3.13t" ]]; then
99
NUMPY_VERSION=2.1.2
1010
fi
1111

.github/scripts/generate_binary_build_matrix.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,6 @@ def generate_wheels_matrix(
334334
if (
335335
gpu_arch_type in ["xpu", "cpu-s390x"]
336336
or os == "macos-arm64"
337-
or os == "linux-aarch64"
338337
or os == "windows"
339338
) and python_version == "3.13t":
340339
continue

.github/workflows/generated-linux-aarch64-binary-manywheel-nightly.yml

Lines changed: 118 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
0