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.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.
- Add support for Python 3.5.
......
......@@ -7,19 +7,21 @@ envlist =
[testenv]
commands =
python setup.py test -q
python setup.py -q test -q
[testenv:py27-pure]
basepython =
python2.7
setenv =
PURE_PYTHON = 1
PIP_CACHE_DIR = {envdir}/.cache
[testenv:py33-pure]
basepython =
python3.3
setenv =
PURE_PYTHON = 1
PIP_CACHE_DIR = {envdir}/.cache
[testenv:jython]
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