aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNitin Srinivasan <srnitin@google.com>2024-05-16 15:43:05 -0700
committerGitHub <noreply@github.com>2024-05-16 18:43:05 -0400
commit7d44c90494642f613bd78260e7b433b3b19d2578 (patch)
treeed3e7c514f5cd1f6b180f48c5accc09d407b0d59
parent9ad2ca2f6388fd0924c3f196bf68b0e0dd6563a2 (diff)
downloadtensorflow-upstream-r2.16.tar.gz
Remove references to Linux Arm64 installer wheels from setup.py (#67772)upstream-r2.16
-rw-r--r--tensorflow/tools/pip_package/setup.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/tensorflow/tools/pip_package/setup.py b/tensorflow/tools/pip_package/setup.py
index cdec9d3a783..495781f0044 100644
--- a/tensorflow/tools/pip_package/setup.py
+++ b/tensorflow/tools/pip_package/setup.py
@@ -132,9 +132,6 @@ FAKE_REQUIRED_PACKAGES = [
# different architectures having different requirements.
# The entries here should be a simple duplicate of those in the collaborator
# build section.
- standard_or_nightly('tensorflow-cpu-aws', 'tf-nightly-cpu-aws') + '==' +
- _VERSION + ';platform_system=="Linux" and (platform_machine=="arm64" or '
- 'platform_machine=="aarch64")',
standard_or_nightly('tensorflow-intel', 'tf-nightly-intel') + '==' +
_VERSION + ';platform_system=="Windows"',
]
@@ -146,11 +143,6 @@ if collaborator_build:
# If this is a collaborator build, then build an "installer" wheel and
# add the collaborator packages as the only dependencies.
REQUIRED_PACKAGES = [
- # Install the TensorFlow package built by AWS if the user is running
- # Linux on an Aarch64 machine.
- standard_or_nightly('tensorflow-cpu-aws', 'tf-nightly-cpu-aws') + '==' +
- _VERSION + ';platform_system=="Linux" and (platform_machine=="arm64" or '
- 'platform_machine=="aarch64")',
# Install the TensorFlow package built by Intel if the user is on a
# Windows machine.
standard_or_nightly('tensorflow-intel', 'tf-nightly-intel') + '==' +