Skip to content

Commit

Permalink
Pull in @baumatron's change to install older setuptools for Python 3.…
Browse files Browse the repository at this point in the history
…2 tests.
  • Loading branch information
baumatron authored and masojus committed May 18, 2017
1 parent 8bc7cfd commit 6befef0
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,19 @@ language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
# command to install dependencies
install: "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 6befef0

Please sign in to comment.