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 5, 2016
1 parent 99b8094 commit 4bfcaf4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tox.ini
Expand Up @@ -3,7 +3,9 @@ envlist =
py27,py33,py34,py35,pypy

[testenv]
install_command = python -m pip install -U {opts} {packages}
deps =
pip
mock
commands =
python tests.py
Expand Down

0 comments on commit 4bfcaf4

Please sign in to comment.