Skip to content

Commit

Permalink
Drop support for Python 2.6 and 3.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
tseaver committed Mar 23, 2016
1 parent ff6e1b4 commit 0509c7d
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 11 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
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
- 3.5
Expand Down
6 changes: 4 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
Changes
=======

4.0.4 (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.3 (2014-12-26)
------------------
Expand Down
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def read(*rnames):
]

setup(name = 'zope.copy',
version = '4.0.4.dev0',
version = '4.1.0.dev0',
author='Zope Foundation and Contributors',
author_email='zope-dev@zope.org',
description='Pluggable object copying mechanism',
Expand All @@ -40,10 +40,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
8 changes: 4 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
envlist =
# Jython support pending 2.7 support, due 2012-07-15 or so. See:
# http://fwierzbicki.blogspot.com/2012/03/adconion-to-fund-jython-27.html
# py26,py27,py32,pypy,jython,coverage
py26,py27,py32,py33,py34,py35,pypy,pypy3,coverage,docs
# py27,pypy,jython,coverage
py27,py33,py34,py35,pypy,pypy3,coverage,docs

[testenv]
commands =
Expand All @@ -19,7 +19,7 @@ commands =
[testenv:coverage]
usedevelop = true
basepython =
python2.6
python2.7
commands =
nosetests --with-xunit --with-xcoverage
deps =
Expand All @@ -30,7 +30,7 @@ deps =

[testenv:docs]
basepython =
python2.6
python2.7
commands =
sphinx-build -b html -d docs/_build/doctrees docs docs/_build/html
sphinx-build -b doctest -d docs/_build/doctrees docs docs/_build/doctest
Expand Down

0 comments on commit 0509c7d

Please sign in to comment.