Commit d15abe89 authored by Patrick Gerken's avatar Patrick Gerken

Merge pull request #48 from zopefoundation/drop-py26-py32-support

Drop support for Python 2.6 / 3.2.
parents 7f1071f8 521720f8
...@@ -3,9 +3,7 @@ sudo: false ...@@ -3,9 +3,7 @@ sudo: false
python: python:
- pypy - pypy
- pypy3 - pypy3
- 2.6
- 2.7 - 2.7
- 3.2
- 3.3 - 3.3
- 3.4 - 3.4
- 3.5 - 3.5
......
...@@ -5,6 +5,8 @@ ...@@ -5,6 +5,8 @@
4.3.0 (unreleased) 4.3.0 (unreleased)
================== ==================
- Drop support for Python 2.6 and 3.2.
- Make the ``zodbpickle`` dependency required and not conditional. - Make the ``zodbpickle`` dependency required and not conditional.
This fixes various packaging issues involving pip and its wheel This fixes various packaging issues involving pip and its wheel
cache. zodbpickle was only optional under Python 2.6 so this change cache. zodbpickle was only optional under Python 2.6 so this change
......
...@@ -46,10 +46,8 @@ Intended Audience :: Developers ...@@ -46,10 +46,8 @@ Intended Audience :: Developers
License :: OSI Approved :: Zope Public License License :: OSI Approved :: Zope Public License
Programming Language :: Python Programming Language :: Python
Programming Language :: Python :: 2 Programming Language :: Python :: 2
Programming Language :: Python :: 2.6
Programming Language :: Python :: 2.7 Programming Language :: Python :: 2.7
Programming Language :: Python :: 3 Programming Language :: Python :: 3
Programming Language :: Python :: 3.2
Programming Language :: Python :: 3.3 Programming Language :: Python :: 3.3
Programming Language :: Python :: 3.4 Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5 Programming Language :: Python :: 3.5
......
[tox] [tox]
# Jython 2.7rc2 does work, but unfortunately has an issue running # Jython 2.7rc2 does work, but unfortunately has an issue running
# with Tox 1.9.2 (http://bugs.jython.org/issue2325) # with Tox 1.9.2 (http://bugs.jython.org/issue2325)
#envlist = py26,py27,py32,py33,py34,pypy,simple,jython,pypy3 #envlist = py26,py27,py33,py34,pypy,simple,jython,pypy3
envlist = py26,py27,py32,py33,py34,py35,pypy,simple,pypy3 envlist = py27,py33,py34,py35,pypy,simple,pypy3
[testenv] [testenv]
commands = 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