Skip to content
This repository was archived by the owner on Jan 21, 2025. It is now read-only.

Commit a759cfb

Browse files
Dustin TranCopybara-Service
authored andcommitted
Attempt to fix Travis build errors for Python 3.
PiperOrigin-RevId: 218199780
1 parent 5b2cce0 commit a759cfb

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

oss_scripts/oss_pip_install.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ fi
1414

1515
# First ensure that the base dependencies are sufficient for a full import
1616
pip install -q -e .
17-
python -c "import mesh_tensorflow as mtf"
1817

18+
# Then install the test dependencies
1919
pip install -q -e .[tests]
20+
21+
# Make sure we have the latest version of numpy - avoid problems we were
22+
# seeing with Python 3
23+
pip install -q -U numpy

0 commit comments

Comments
 (0)