Skip to content

Commit 6bd131a

Browse files
committed
Revert "[AARCH64] Pass BUILD_S3 to torchdata"
This reverts commit ae8e825. As it does not want to be built on aarch64
1 parent ae8e825 commit 6bd131a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

aarch64_linux/build_aarch64_wheel.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -354,13 +354,13 @@ def build_torchdata(host: RemoteHost, *,
354354
"v2.0.0": ("0.6.0", "rc5"),
355355
})
356356
print('Building TorchData wheel')
357-
build_vars = "BUILD_S3=1"
357+
build_vars = ""
358358
if branch == 'nightly':
359359
version = host.check_output(["if [ -f data/version.txt ]; then cat data/version.txt; fi"]).strip()
360360
build_date = host.check_output("cd pytorch ; git log --pretty=format:%s -1").strip().split()[0].replace("-", "")
361-
build_vars += f" BUILD_VERSION={version}.dev{build_date}"
361+
build_vars += f"BUILD_VERSION={version}.dev{build_date}"
362362
elif build_version is not None:
363-
build_vars += f" BUILD_VERSION={build_version} PYTORCH_VERSION={branch[1:].split('-')[0]}"
363+
build_vars += f"BUILD_VERSION={build_version} PYTORCH_VERSION={branch[1:].split('-')[0]}"
364364
if host.using_docker():
365365
build_vars += " CMAKE_SHARED_LINKER_FLAGS=-Wl,-z,max-page-size=0x10000"
366366

0 commit comments

Comments
 (0)