Skip to content

Commit

Permalink
Install setuptools<30 for Python 3.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
baumatron committed May 18, 2017
1 parent 8b7ab93 commit 9c16734
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,13 @@ python:
- "3.4"
- "3.5"
# command to install dependencies
install:
- pip install --upgrade pip
- pip install -r requirements.txt
install: |
if [ "$TRAVIS_PYTHON_VERSION" == 3.2 ]
then
pip install "setuptools<30"
fi
pip install -r requirements.txt
# command to run tests
script: "python setup.py test"

0 comments on commit 9c16734

Please sign in to comment.