Skip to content

Commit

Permalink
Use --pre flag for Travis pip installs.
Browse files Browse the repository at this point in the history
This way we can help NumPy and others test their pre-releases.
  • Loading branch information
stefanv committed Feb 10, 2016
1 parent a6e0761 commit 37b9924
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/travis_before_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ pip install --retries 3 -q wheel flake8 coveralls nose
for requirement in $WHEELBINARIES; do
WHEELS="$WHEELS $(grep $requirement requirements.txt)"
done
pip install --retries 3 -q $WHEELHOUSE $WHEELS
pip install --retries 3 -q --pre $WHEELHOUSE $WHEELS

pip install --retries 3 -q -r requirements.txt
pip install --retries 3 -q --pre -r requirements.txt

# Show what's installed
pip list
Expand Down

0 comments on commit 37b9924

Please sign in to comment.