Commit e85b3fae authored by Tres Seaver's avatar Tres Seaver

Merge pull request #34 from zopefoundation/avoid-poisoning-wheel-cache-python-pure

Don't use/poison global wheel cache when building w/ PURE_PYTHON.
parents 93b8be95 07599827
...@@ -4,6 +4,9 @@ ...@@ -4,6 +4,9 @@
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.
4.1.1 (2015-06-02) 4.1.1 (2015-06-02)
......
...@@ -20,6 +20,7 @@ basepython = ...@@ -20,6 +20,7 @@ basepython =
python2.7 python2.7
setenv = setenv =
PURE_PYTHON = 1 PURE_PYTHON = 1
PIP_CACHE_DIR = {envdir}/.cache
deps = deps =
{[testenv]deps} {[testenv]deps}
commands = commands =
...@@ -30,6 +31,7 @@ basepython = ...@@ -30,6 +31,7 @@ basepython =
python2.7 python2.7
setenv = setenv =
PURE_PYTHON = 1 PURE_PYTHON = 1
PIP_CACHE_DIR = {envdir}/.cache
USING_CFFI = 1 USING_CFFI = 1
deps = deps =
{[testenv]deps} {[testenv]deps}
......
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