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 0980b55 + 74bf0a5 commit 8bb9cde
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 16 deletions.
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
language: python
sudo: false
env:
- TOXENV=py26
- TOXENV=py27
- TOXENV=py32
- TOXENV=py33
- TOXENV=py34
- TOXENV=pypy
Expand Down
4 changes: 2 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
Changes
=======

4.2.2 (unreleased)
4.3.0 (unreleased)
------------------

- TBD
- Drop support for Python 2.6 and 3.2.


4.2.1 (2015-06-05)
Expand Down
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def alltests():
return unittest.TestSuite(suites)

setup(name='zope.authentication',
version='4.2.2.dev0',
version='4.3.0.dev0',
author='Zope Foundation and Contributors',
author_email='zope-dev@zope.org',
description='Definition of authentication basics for the Zope Framework',
Expand All @@ -53,10 +53,8 @@ def alltests():
'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
10 changes: 1 addition & 9 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py26,py27,py32,py33,py34,pypy,pypy3,docs
py27,py33,py34,pypy,pypy3,docs

[testenv]
commands =
Expand All @@ -17,14 +17,6 @@ deps =
zope.testing
zope.testrunner

[testenv:py26]
commands =
{[testenv]commands}
deps =
{[testenv]deps}
ordereddict


[testenv:docs]
basepython = python2.7
commands =
Expand Down

0 comments on commit 8bb9cde

Please sign in to comment.