summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTres Seaver <tseaver@palladion.com>2016-04-15 01:57:32 -0400
committerTres Seaver <tseaver@palladion.com>2016-04-15 01:57:32 -0400
commit9208c112f268cc68d0f20b3309434df1701b5c0d (patch)
treec4238855317bb5129732827caa6201ccbc77a7ed
parent8d998c3a9e6ce982600ea5bdb491a926971aa5b7 (diff)
downloadzope-interface-revert-35-add-pure-test-support.tar.gz
Revert "Add support for building/testing w/ 'PURE_PYTHON' defined."revert-35-add-pure-test-support
-rw-r--r--setup.py3
-rw-r--r--tox.ini12
2 files changed, 2 insertions, 13 deletions
diff --git a/setup.py b/setup.py
index 8879c5c..ef10ca1 100644
--- a/setup.py
+++ b/setup.py
@@ -79,12 +79,11 @@ else:
py_impl = getattr(platform, 'python_implementation', lambda: None)
is_pypy = py_impl() == 'PyPy'
is_jython = 'java' in sys.platform
- is_pure = 'PURE_PYTHON' in os.environ
# Jython cannot build the C optimizations, while on PyPy they are
# anti-optimizations (the C extension compatibility layer is known-slow,
# and defeats JIT opportunities).
- if is_pypy or is_jython or is_pure:
+ if is_pypy or is_jython:
features = {}
else:
features = {'codeoptimization': codeoptimization}
diff --git a/tox.ini b/tox.ini
index 329acd8..dd6591c 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,6 +1,6 @@
[tox]
envlist =
- py27,py27-pure,py33,py34,py34-pure,py35,pypy,pypy3,coverage,docs
+ py27,py33,py34,py35,pypy,pypy3,coverage,docs
[testenv]
commands =
@@ -8,16 +8,6 @@ commands =
deps =
zope.event
-[testenv:py27-pure]
-setenv =
- PURE_PYTHON=1
- PIP_CACHE_DIR = {envdir}/.cache
-
-[testenv:py34-pure]
-setenv =
- PURE_PYTHON=1
- PIP_CACHE_DIR = {envdir}/.cache
-
[testenv:py]
commands =
python --version