We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b21ac01 commit e900ee1Copy full SHA for e900ee1
tools/scripts/generate_binary_build_matrix.py
@@ -238,11 +238,8 @@ def get_libtorch_install_command(
238
if os in [MACOS, MACOS_ARM64]:
239
arch = "x86_64" if os == MACOS else "arm64"
240
build_name = f"libtorch-macos-{arch}-latest.zip"
241
- if channel == RELEASE:
+ if channel in [RELEASE, TEST]:
242
build_name = f"libtorch-macos-{mod.CURRENT_VERSION}.zip"
243
- # Please note this is temporary, to be removed when doing branch cut for 2.2 release
244
- elif channel == TEST:
245
- build_name = "libtorch-macos-latest.zip"
246
247
elif os == LINUX and (channel == RELEASE or channel == TEST):
248
build_name = (
0 commit comments