Skip to content

Commit

Permalink
Merge pull request #2 from zopefoundation/drop-py26-py32-support
Browse files Browse the repository at this point in the history
Drop support for Python 2.6 and 3.2.
  • Loading branch information
tseaver committed Mar 24, 2016
2 parents 96cf7e7 + 916e37a commit 3166366
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 24 deletions.
2 changes: 0 additions & 2 deletions .travis.yml
@@ -1,9 +1,7 @@
language: python
sudo: false
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
- 3.5
Expand Down
38 changes: 20 additions & 18 deletions CHANGES.rst
@@ -1,64 +1,66 @@
Changes
-------

4.0.5 (unreleased)
4.1.0 (unreleased)
##################

- Claim support for Python 3.5.
- Drop support for Python 2.6 and 3.2.

- Add support for Python 3.5.

4.0.4 (2014-03-19)
##################

- Added support for Python 3.4.
- Add support for Python 3.4.

4.0.3 (2014-03-17)
##################

- Updated ``boostrap.py`` to version 2.2.
- Update ``boostrap.py`` to version 2.2.

- Fixed extension compilation on Py3k.
- Fix extension compilation on Py3k.

4.0.2 (2012-12-31)
##################

- Fleshed out PyPI Trove classifiers.
- Flesh out PyPI Trove classifiers.

4.0.1 (2012-11-21)
##################

- Added support for Python 3.3.
- Add support for Python 3.3.

- Avoid building the C extension explicitly (use the "feature" indirection
instead). https://bugs.launchpad.net/zope.hookable/+bug/1025470

4.0.0 (2012-06-04)
##################

- Added support for PyPy.
- Add support for PyPy.

- Added support for continuous integration using ``tox`` and ``jenkins``.
- Add support for continuous integration using ``tox`` and ``jenkins``.

- Added a pure-Python reference implementation.
- Add a pure-Python reference implementation.

- Doctests moved to Sphinx documentation.
- Move doctests to Sphinx documentation.

- 100% unit test coverage.
- Bring unit test coverage to 100%.

- Added 'setup.py docs' alias (installs ``Sphinx`` and dependencies).
- Add 'setup.py docs' alias (installs ``Sphinx`` and dependencies).

- Added 'setup.py dev' alias (runs ``setup.py develop`` plus installs
- Add 'setup.py dev' alias (runs ``setup.py develop`` plus installs
``nose`` and ``coverage``).

- Dropped support for Python 2.4 / 2.5.
- Drop support for Python 2.4 / 2.5.

- Removed use of 'zope.testing.doctestunit' in favor of stdlib's 'doctest.
- Remove of 'zope.testing.doctestunit' in favor of stdlib's 'doctest.

- Added Python 3 support.
- Add Python 3 support.

3.4.1 (2009-04-05)
##################

- Updated tests for compatibility with Python 2.6 traceback formats.
- Update for compatibility with Python 2.6 traceback formats.

- Use Jython-compatible ``bootstrap.py``.

Expand Down
4 changes: 1 addition & 3 deletions setup.py
Expand Up @@ -48,7 +48,7 @@ def read(*rnames):
features = {'Cwrapper': Cwrapper}

setup(name='zope.hookable',
version = '4.0.5.dev0',
version = '4.1.0.dev0',
url='http://svn.zope.org/zope.hookable',
license='ZPL 2.1',
description='Zope hookable',
Expand All @@ -63,10 +63,8 @@ def read(*rnames):
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,6 +1,6 @@
[tox]
envlist =
py26,py27,py32,py33,py34,py35,pypy,pypy3,coverage,docs
py27,py33,py34,py35,pypy,pypy3,coverage,docs

[testenv]
commands =
Expand Down

0 comments on commit 3166366

Please sign in to comment.