Skip to content

Commit

Permalink
Merge pull request #4 from zopefoundation/drop-py26-py32
Browse files Browse the repository at this point in the history
Drop Python 2.6 / 3.2 support.
  • Loading branch information
tseaver committed Feb 17, 2016
2 parents 0753f7a + 5f8a49a commit f6a8ca7
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 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
10 changes: 7 additions & 3 deletions CHANGES.rst
@@ -1,17 +1,21 @@
``zope.event`` Changelog
========================

4.1.1 (unreleased)
4.2.0 (unreleased)
------------------

- Claim support for Python 3.5.
- Add support for Python 3.5.

- Drop support for Python 2.6 and 3.2.


4.1.0 (2015-10-18)
------------------

- Require 100% branch (as well as statement) coverage.

- Added a simple class-based handler implementation.
- Add a simple class-based handler implementation.


4.0.3 (2014-03-19)
------------------
Expand Down
4 changes: 1 addition & 3 deletions setup.py
Expand Up @@ -27,7 +27,7 @@ def read(*rnames):

setup(
name='zope.event',
version='4.1.1.dev0',
version='4.2.0.dev0',
url='http://pypi.python.org/pypi/zope.event',
license='ZPL 2.1',
description='Very basic event publishing system',
Expand All @@ -45,10 +45,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
4 changes: 2 additions & 2 deletions tox.ini
Expand Up @@ -3,8 +3,8 @@ envlist =
# Jython 2.7b1 support pending fix for Jython incompat. w/ pip's vendored-in
# requests -> html5 libraries. See
# https://github.com/html5lib/html5lib-python/pull/150
# py26,py27,py32,py33,py34,pypy,pypy3,jython,coverage,docs
py26,py27,py32,py33,py34,py35,pypy,pypy3,coverage,docs
# py27,py33,py34,pypy,pypy3,jython,coverage,docs
py27,py33,py34,py35,pypy,pypy3,coverage,docs

[testenv]
commands =
Expand Down

0 comments on commit f6a8ca7

Please sign in to comment.