Skip to content

Commit e4a7049

Browse files
authored
ci: pin to non-broken estimator nightlies (#2668)
Summary: Due to <tensorflow/tensorflow#32621>. This unblocks our CI until tomorrow’s nightlies are pushed. Test Plan: Ran this 5-line shell command (with `pip install` changed to `echo) once with `TF_VERSION_ID` set to each value from the `env` section, and noted that in all cases it succeeds and that it only prints output in the correct case. wchargin-branch: pin-estimator-20190917-nightly
1 parent ef51bc4 commit e4a7049

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.travis.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,13 @@ install:
6767
pip install "absl-py>=0.7.0" \
6868
&& pip install "numpy<2.0,>=1.14.5"
6969
fi
70+
- |
71+
# On TF 1.x nightlies, downgrade estimator temporarily.
72+
case "${TF_VERSION_ID}" in
73+
tf-nightly|tf-nightly==*)
74+
pip install tf-estimator-nightly==1.14.0.dev2019091701
75+
;;
76+
esac
7077
# Deps for gfile S3 test.
7178
- pip install boto3==1.9.86
7279
- pip install moto==1.3.7

0 commit comments

Comments
 (0)