summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTres Seaver <tseaver@palladion.com>2016-03-23 17:19:38 -0400
committerTres Seaver <tseaver@palladion.com>2016-03-23 17:19:38 -0400
commitb852aa0b2c16bbc86bfa9b1b62f4475ad24dc3a6 (patch)
tree8d2791311fb67c1f7ed0690eaeff159e528b0ea9
parent7b02499e7b19ee36d56b7781a8cb0b94f7481ab6 (diff)
downloadzope-exceptions-drop-py26-py32-support.tar.gz
Drop support for Python 2.6 and 3.2.drop-py26-py32-support
-rw-r--r--.travis.yml2
-rw-r--r--CHANGES.rst6
-rw-r--r--setup.py4
-rw-r--r--tox.ini2
4 files changed, 6 insertions, 8 deletions
diff --git a/.travis.yml b/.travis.yml
index 4f69fb2..4847904 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,9 +1,7 @@
language: python
sudo: false
python:
- - 2.6
- 2.7
- - 3.2
- 3.3
- 3.4
- 3.5
diff --git a/CHANGES.rst b/CHANGES.rst
index d8fd268..0b29049 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,13 +1,15 @@
``zope.exceptions`` Changelog
=============================
-4.0.9 (unreleased)
+4.1.0 (unreleased)
------------------
+- Drop support for Python 2.6 and 3.2.
+
- Make ``exceptionformatter.extract_stack`` signature comply with
``traceback.extract_stack``
-- Claim support for Python 3.5.
+- Add support for Python 3.5.
4.0.8 (2015-08-13)
------------------
diff --git a/setup.py b/setup.py
index 55e9554..497c783 100644
--- a/setup.py
+++ b/setup.py
@@ -41,7 +41,7 @@ def alltests():
return unittest.TestSuite(suites)
setup(name='zope.exceptions',
- version='4.0.9.dev0',
+ version='4.1.0.dev0',
author='Zope Foundation and Contributors',
author_email='zope-dev@zope.org',
description='Zope Exceptions',
@@ -55,10 +55,8 @@ setup(name='zope.exceptions',
'License :: OSI Approved :: Zope Public License',
'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',
diff --git a/tox.ini b/tox.ini
index b8d9a1e..f621f2f 100644
--- a/tox.ini
+++ b/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 =