Skip to content

Commit

Permalink
Merge pull request tensorflow#1116 from jendap/keep-numpy-version-in-…
Browse files Browse the repository at this point in the history
…pip.sh

keep numpy version in pip.sh
  • Loading branch information
martinwicke committed Feb 16, 2016
2 parents c352489 + a4dfd38 commit d0db73a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tensorflow/tools/ci_build/builds/pip.sh
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ echo "Installing pip whl file: ${WHL_PATH}"

# Call pip install twice, first time with --upgrade and second time without it
# This addresses the sporadic test failures related to protobuf version
${PYTHON_BIN_PATH} -m pip install -v --user --upgrade ${WHL_PATH} &&
${PYTHON_BIN_PATH} -m pip install -v --user --upgrade ${WHL_PATH} numpy==1.8.2 &&
${PYTHON_BIN_PATH} -m pip install -v --user ${WHL_PATH} &&

# If NO_TEST_ON_INSTALL is set to any non-empty value, skip all Python
Expand Down

0 comments on commit d0db73a

Please sign in to comment.