Skip to content

Commit

Permalink
Temporarily avoid broken version of setuptools
Browse files Browse the repository at this point in the history
The relase of setuptools 36.0.0 introduced a broken import.

See: pypa/setuptools#1042
  • Loading branch information
elliterate committed Jun 1, 2017
1 parent ddb94b3 commit 1d799c0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ matrix:
before_install:
# Upgrade pip to a version that supports `pip install .[test]`.
- pip install --upgrade pip
# Avoid setuptools 36.x until https://github.com/pypa/setuptools/issues/1042 is fixed.
- pip install --upgrade "setuptools < 36"
- mkdir -p ~/drivers; export PATH=~/drivers:$PATH;
- GECKODRIVER_URL="https://github.com/mozilla/geckodriver/releases/download/v0.15.0/geckodriver-v0.15.0-linux64.tar.gz";
FILE=`mktemp`; wget "$GECKODRIVER_URL" -qO $FILE && tar xz -C ~/drivers -f $FILE geckodriver; rm $FILE; chmod 777 ~/drivers/geckodriver;
Expand Down

0 comments on commit 1d799c0

Please sign in to comment.