Skip to content

Commit

Permalink
Merge pull request #12 from zopefoundation/avoid-poisoning-wheel-cach…
Browse files Browse the repository at this point in the history
…e-python-pure

Don't use/poison global wheel cache when building w/ PURE_PYTHON.
  • Loading branch information
tseaver committed Apr 15, 2016
2 parents 92cd453 + ca4b787 commit 3003dad
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGES.rst
Expand Up @@ -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.
Expand Down
4 changes: 3 additions & 1 deletion tox.ini
Expand Up @@ -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 =
Expand Down

0 comments on commit 3003dad

Please sign in to comment.