Skip to content

Commit 7358b9d

Browse files
Revert "Upgrade bazel version 5.3.0 and fix some typo in tf version (#755)"
This reverts commit 2c1e7fa.
1 parent 4a3a9d2 commit 7358b9d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

configure.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@ done
6464
while [[ "$TF_CUDA_VERSION" == "" ]]; do
6565
read -p "Are you building against TensorFlow 2.1(including RCs) or newer?[Y/n] " INPUT
6666
case $INPUT in
67-
[Yy]* ) echo "Build against TensorFlow 2.1 or newer."; TF_CUDA_VERSION=11;;
67+
[Yy]* ) echo "Build against TensorFlow 2.1 or newer."; TF_CUDA_VERSION=10.1;;
6868
[Nn]* ) echo "Build against TensorFlow <2.1."; TF_CUDA_VERSION=10.0;;
69-
"" ) echo "Build against TensorFlow 2.1 or newer."; TF_CUDA_VERSION=11;;
69+
"" ) echo "Build against TensorFlow 2.1 or newer."; TF_CUDA_VERSION=10.1;;
7070
* ) echo "Invalid selection: " $INPUT;;
7171
esac
7272
done

scripts/ci_install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515
# ==============================================================================
16-
wget https://github.com/bazelbuild/bazel/releases/download/5.3.0/bazel_5.3.0-linux-x86_64.deb
17-
sudo dpkg -i bazel_5.3.0-linux-x86_64.deb
16+
wget https://github.com/bazelbuild/bazel/releases/download/5.1.0/bazel_5.1.0-linux-x86_64.deb
17+
sudo dpkg -i bazel_5.1.0-linux-x86_64.deb
1818
pip install --upgrade pip setuptools wheel
1919
pip install -r requirements.txt

0 commit comments

Comments
 (0)