Commit ca4b787b authored by Tres Seaver's avatar Tres Seaver

Don't use/poison global wheel cache when building w/ PURE_PYTHON.

parent 92cd4531
...@@ -4,6 +4,9 @@ Changes ...@@ -4,6 +4,9 @@ Changes
4.2.0 (unreleased) 4.2.0 (unreleased)
------------------ ------------------
- When testing ``PURE_PYTHON`` environments under ``tox``, avoid poisoning
the user's global wheel cache.
- Drop support for Python 2.6 and 3.2. - Drop support for Python 2.6 and 3.2.
- Add support for Python 3.5. - Add support for Python 3.5.
......
...@@ -7,19 +7,21 @@ envlist = ...@@ -7,19 +7,21 @@ envlist =
[testenv] [testenv]
commands = commands =
python setup.py test -q python setup.py -q test -q
[testenv:py27-pure] [testenv:py27-pure]
basepython = basepython =
python2.7 python2.7
setenv = setenv =
PURE_PYTHON = 1 PURE_PYTHON = 1
PIP_CACHE_DIR = {envdir}/.cache
[testenv:py33-pure] [testenv:py33-pure]
basepython = basepython =
python3.3 python3.3
setenv = setenv =
PURE_PYTHON = 1 PURE_PYTHON = 1
PIP_CACHE_DIR = {envdir}/.cache
[testenv:jython] [testenv:jython]
commands = commands =
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment