-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Trying to stabilize 'pip-8.1-upgrade' branch
- Loading branch information
Showing
1 changed file
with
12 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,14 +3,25 @@ | |
# Shell script to initialize a pip-accel test environment. | ||
# | ||
# Author: Peter Odding <[email protected]> | ||
# Last Change: March 14, 2016 | ||
# Last Change: July 30, 2016 | ||
# URL: https://github.com/paylogic/pip-accel | ||
# | ||
# This shell script is used in tox.ini and .travis.yml to prepare | ||
# virtual environments for running the pip-accel test suite. | ||
|
||
main () { | ||
|
||
# A failing Travis CI job [1] brought me to a GitHub issue [2] which leads me | ||
# to believe that upgrading setuptools on Travis CI may help to somewhat | ||
# unbreak the pip-accel test suite... I'm not actually sure whether this will | ||
# help but it's can't hurt to try :-). | ||
# | ||
# [1] TypeError: unorderable types: str() < NoneType() | ||
# https://travis-ci.org/paylogic/pip-accel/jobs/135686251 | ||
# [2] https://github.com/pypa/pip/issues/2357#ref-pullrequest-62058112 | ||
msg "Making sure setuptools >= 14.3 is installed .." | ||
pip install --quiet 'setuptools >= 14.3' | ||
|
||
# Install the dependencies of pip-accel. | ||
msg "Installing dependencies .." | ||
pip install --quiet --requirement=requirements.txt | ||
|
947810d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(follow up to #67)