Skip to content

Commit 8948624

Browse files
committed
Merge pull request pre-commit#342 from pre-commit/latest_virtualenv_breaks_tests
Workaround pypa/pip#3461
2 parents b1e6063 + b0797b4 commit 8948624

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

.travis.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ env: # These should match the tox env list
88
- TOXENV=pypy
99
- TOXENV=pypy3
1010
- TOXENV=py27 LATEST_GIT=1
11-
install: pip install coveralls tox
11+
# latest virtualenv combined with downgrading setuptools = sadness
12+
# https://github.com/pypa/pip/issues/3461
13+
install: pip install coveralls tox 'virtualenv<14'
1214
script: tox
1315
# Special snowflake. Our tests depend on making real commits.
1416
before_install:

requirements-dev.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,7 @@ pytest
99

1010
# setuptools breaks pypy3 with extraneous output
1111
setuptools<18.5
12+
13+
# latest virtualenv combined with downgrading setuptools = sadness
14+
# https://github.com/pypa/pip/issues/3461
15+
virtualenv<14

0 commit comments

Comments
 (0)