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 Apr 12, 2016
2 parents cedb7c9 + c02e7a8 commit 9950367
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 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
- pypy
Expand Down
4 changes: 3 additions & 1 deletion CHANGES.rst
@@ -1,9 +1,11 @@
Changes
=======

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

- Drop support for Python 2.6 and 3.2.

- 100% unit test coverage (including branches).

- Convert doctests to Sphinx documentation, including building docs
Expand Down
4 changes: 1 addition & 3 deletions setup.py
Expand Up @@ -24,7 +24,7 @@ def read(*rnames):
return f.read()

setup(name="zope.dottedname",
version='4.1.1.dev0',
version='4.2.0.dev0',
author='Zope Foundation and Contributors',
author_email='zope-dev@zope.org',
description='Resolver for Python dotted names.',
Expand All @@ -40,10 +40,8 @@ def read(*rnames):
'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 :: Implementation :: CPython',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,6 +1,6 @@
[tox]
envlist =
py26,py27,py32,py33,py34,pypy,pypy3,coverage,docs
py27,py33,py34,pypy,pypy3,coverage,docs

[testenv]
commands =
Expand Down

0 comments on commit 9950367

Please sign in to comment.