diff options
| author | Michael Merickel <michael@merickel.org> | 2016-12-25 19:51:55 -0600 |
|---|---|---|
| committer | Michael Merickel <michael@merickel.org> | 2016-12-25 19:51:55 -0600 |
| commit | 6c3f4f8d0598cb62e37aa278e9c2c3e4194f8831 (patch) | |
| tree | 87f2f3e9bc257e9e788768a2b8dd2d7375515dba /setup.py | |
| parent | af77a11004056797340136d7997c88cdd0106575 (diff) | |
| download | pyramid-6c3f4f8d0598cb62e37aa278e9c2c3e4194f8831.tar.gz pyramid-6c3f4f8d0598cb62e37aa278e9c2c3e4194f8831.tar.bz2 pyramid-6c3f4f8d0598cb62e37aa278e9c2c3e4194f8831.zip | |
enable zope.component tests on py3
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -20,8 +20,6 @@ from setuptools import setup, find_packages py_version = sys.version_info[:2] -PY2 = py_version[0] == 2 - if (3, 0) <= py_version < (3, 4): warnings.warn( 'On Python 3, Pyramid only supports Python 3.4 or better', @@ -53,10 +51,9 @@ install_requires = [ tests_require = [ 'WebTest >= 1.3.1', # py3 compat + 'zope.component >= 4.0', # py3 compat ] -if PY2: - tests_require.append('zope.component>=3.11.0') docs_extras = [ 'Sphinx >= 1.3.5', |
