Skip to content

Commit

Permalink
Ask tox to upgrade pip
Browse files Browse the repository at this point in the history
Works around the terrible mess that is the state of Python packaging:

- latest virtualenv doesn't work with Python 3.5 on Windows
  (pypa/virtualenv#796)

- virtualenv-rewrite that I use instead works with Python 3.5 but
  bundles an outdated version of pip

- old version of pip doesn't find the right binary wheels for Pillow
  (because the ABI tag changed) and tries to compile, which fails
  • Loading branch information
mgedmin committed Jul 7, 2016
1 parent 99e932f commit de3b41c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tox.ini
Expand Up @@ -5,7 +5,9 @@ envlist =
[testenv]
passenv =
PIP_FIND_LINKS
install_command = python -m pip install -U {opts} {packages}
deps =
pip
mock
commands =
python tests.py
Expand Down

0 comments on commit de3b41c

Please sign in to comment.