Commit a42e68a5 authored by Tres Seaver's avatar Tres Seaver

Drop support for Python 2.6 and 3.2.

parent 26072a00
language: python language: python
sudo: false sudo: false
python: python:
- 2.6
- 2.7 - 2.7
- 3.2
- 3.3 - 3.3
- 3.4 - 3.4
- 3.5 - 3.5
......
Changes Changes
======= =======
4.1.7 (unreleased) 4.2.0 (unreleased)
------------------ ------------------
- Claim support for Python 3.5. - Drop support for Python 2.6 and 3.2.
- Add support for Python 3.5.
4.1.6 (2015-06-02) 4.1.6 (2015-06-02)
------------------ ------------------
...@@ -39,7 +41,7 @@ Changes ...@@ -39,7 +41,7 @@ Changes
4.1.3 (2013-03-12) 4.1.3 (2013-03-12)
------------------ ------------------
- Fixed interface object introspection in PyPy. For some reason PyPy makes - Fix interface object introspection in PyPy. For some reason PyPy makes
attributes available despite the restrictive ``__slots__`` declaration. attributes available despite the restrictive ``__slots__`` declaration.
- Add a bunch of tests surrounding interface lookup and adaptation. - Add a bunch of tests surrounding interface lookup and adaptation.
...@@ -63,9 +65,9 @@ Changes ...@@ -63,9 +65,9 @@ Changes
4.1.0 (2012-12-19) 4.1.0 (2012-12-19)
------------------ ------------------
- Enabled compilation of dependent modules under Py3k. - Enable compilation of dependent modules under Py3k.
- Replaced use of ``PyCObject`` APIs with equivalent ``PyCapsule`` APIs, - Replace use of ``PyCObject`` APIs with equivalent ``PyCapsule`` APIs,
except under Python 2.6. except under Python 2.6.
N.B. This change is an ABI incompatibility under Python 2.7: N.B. This change is an ABI incompatibility under Python 2.7:
...@@ -104,10 +106,10 @@ Changes ...@@ -104,10 +106,10 @@ Changes
- Add 'setup.py dev' alias (runs ``setup.py develop`` plus installs - Add 'setup.py dev' alias (runs ``setup.py develop`` plus installs
``nose`` and ``coverage``). ``nose`` and ``coverage``).
- Replaced deprecated ``zope.interface.implements`` usage with equivalent - Replace deprecated ``zope.interface.implements`` usage with equivalent
``zope.interface.implementer`` decorator. ``zope.interface.implementer`` decorator.
- Dropped support for Python 2.4 and 2.5. - Drop support for Python 2.4 and 2.5.
- Add Python 3.2 support. - Add Python 3.2 support.
......
...@@ -48,7 +48,7 @@ else: ...@@ -48,7 +48,7 @@ else:
features = {'Cwrapper': Cwrapper} features = {'Cwrapper': Cwrapper}
setup(name='zope.proxy', setup(name='zope.proxy',
version='4.1.7.dev0', version='4.2.0.dev0',
author='Zope Foundation and Contributors', author='Zope Foundation and Contributors',
author_email='zope-dev@zope.org', author_email='zope-dev@zope.org',
description='Generic Transparent Proxies', description='Generic Transparent Proxies',
...@@ -65,10 +65,8 @@ setup(name='zope.proxy', ...@@ -65,10 +65,8 @@ setup(name='zope.proxy',
'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',
......
...@@ -2,8 +2,8 @@ ...@@ -2,8 +2,8 @@
envlist = envlist =
# Jython support pending 2.7 support, due 2012-07-15 or so. See: # Jython support pending 2.7 support, due 2012-07-15 or so. See:
# http://fwierzbicki.blogspot.com/2012/03/adconion-to-fund-jython-27.html # http://fwierzbicki.blogspot.com/2012/03/adconion-to-fund-jython-27.html
# py26,py27,py32,jython,pypy,coverage # py27,jython,pypy,coverage
py26,py27,py27-pure,py32,py33,py33-pure,py34,py35,pypy,coverage,docs py27,py27-pure,py33,py33-pure,py34,py35,pypy,coverage,docs
[testenv] [testenv]
commands = commands =
...@@ -42,7 +42,7 @@ deps = ...@@ -42,7 +42,7 @@ deps =
[testenv:docs] [testenv:docs]
basepython = basepython =
python2.6 python2.7
commands = commands =
sphinx-build -b html -d docs/_build/doctrees docs docs/_build/html sphinx-build -b html -d docs/_build/doctrees docs docs/_build/html
sphinx-build -b doctest -d docs/_build/doctrees docs docs/_build/doctest sphinx-build -b doctest -d docs/_build/doctrees docs docs/_build/doctest
......
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