Skip to content

Commit 601488f

Browse files
authored
Use TENSORFLOW_VERSION when available during pip_build script (#18739)
1 parent c497ffc commit 601488f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

pip_build.py

+3
Original file line numberDiff line numberDiff line change
@@ -434,6 +434,9 @@ def test_wheel(wheel_path, expected_version, requirements_path):
434434
"virtualenv kenv\n"
435435
f"source {os.path.join('kenv', 'bin', 'activate')}\n"
436436
f"pip3 install -r {requirements_path}\n"
437+
"pip3 uninstall -y tensorflow tf-nightly\n"
438+
'pip3 install "${TENSORFLOW_VERSION:-tf-nightly}"\n'
439+
"pip3 uninstall -y keras keras-nightly\n"
437440
f"pip3 install {wheel_path} --force-reinstall\n"
438441
f"python3 -c 'import keras;{checks};print(keras.__version__)'\n"
439442
f"python3 -c 'import tensorflow as tf;tf.compat.v1.layers.Dense'\n"

0 commit comments

Comments
 (0)