Skip to content

Commit

Permalink
Trying to stabilize 'pip-8.1-upgrade' branch
Browse files Browse the repository at this point in the history
  • Loading branch information
xolox committed Jul 30, 2016
1 parent 4df4753 commit 947810d
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion scripts/prepare-test-environment.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

1 comment on commit 947810d

@xolox
Copy link
Member Author

@xolox xolox commented on 947810d Jul 30, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

(follow up to #67)

Please sign in to comment.