Merge pull request #43281 from tensorflow/patch_release

Fixing build files for broken test/builds
This commit is contained in:
Mihai Maruseac 2020-09-16 15:22:15 -07:00 committed by GitHub
commit ba7ae97c01
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 1 deletions

View File

@ -3987,6 +3987,7 @@ cuda_py_test(
"//tensorflow/python/eager:def_function",
],
shard_count = 2,
tags = ["no_pip"]
xla_enable_strict_auto_jit = True,
)

View File

@ -28,6 +28,12 @@ sudo pip3 install pep8
sudo python2 -m pip install pylint==1.6.4
sudo python3 -m pip install pylint==1.6.4
#Pin isort version to 4.3.21
sudo python2 -m pip uninstall -y isort
sudo python3 -m pip uninstall -y isort
sudo python2 -m pip install isort==4.3.21
sudo python3 -m pip install isort==4.3.21
# TODO(yifeif): print pylint version for debug. remove later.
python3 -m pylint --version

View File

@ -30,7 +30,7 @@ SET PATH=%PATH%;C:\%PYTHON_DIRECTORY%
%PIP_EXE% install future>=0.17.1 --no-deps
%PIP_EXE% install tf-estimator-nightly==1.14.0.dev2019072801 --no-deps
%PIP_EXE% install tb-nightly==2.1.0a20190927 --no-deps
%PIP_EXE% install numpy --upgrade --no-deps
%PIP_EXE% install numpy==1.18.5 --upgrade --no-deps
%PIP_EXE% install opt_einsum --upgrade
%PIP_EXE% install pandas --upgrade --no-deps
%PIP_EXE% install protobuf --upgrade --no-deps