summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2016-12-23 15:34:52 -0500
committerJason R. Coombs <jaraco@jaraco.com>2016-12-23 15:34:52 -0500
commitc811fad30d78f5d07998b07cda8f0ab494e8b535 (patch)
tree21b369e72cb65d7c8b2d3563abd9da8e4312711f /.travis.yml
parent12adc450202515887d3ef72c03edaddc40e5b5cd (diff)
downloadcherrypy-git-c811fad30d78f5d07998b07cda8f0ab494e8b535.tar.gz
It's virtualenv 14 and pip 8 that dropped support for Python 3.2.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index a5a7b3cc..0aeb0998 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -30,7 +30,7 @@ before_install: 'if [ "$RUN_LINTS" = "true" ]; then pip install pre-commit; fi'
install:
- 'if [ "$RUN_LINTS" != "true" ]; then pip install -e .[test_tools,routes_dispatcher]; fi'
- pip install tox
-- 'if [ "$TRAVIS_PYTHON_VERSION" == "3.2" ]; then pip install "virtualenv<15"; fi'
+- 'if [ "$TRAVIS_PYTHON_VERSION" == "3.2" ]; then pip install "virtualenv<14"; fi'
script: 'if [ "$RUN_LINTS" = "true" ]; then pre-commit run --all-files; else tox; fi'
deploy: