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
- 2.6 is long out-of-maintenance, and a security quagmire.

- 3.2 cannot be tested on Travis.
  • Loading branch information
tseaver committed Mar 25, 2016
1 parent e26629c commit 022f225
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 10 deletions.
4 changes: 1 addition & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
language: python
sudo: false
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
- 3.5
install:
- pip install .
script:
- python setup.py test -q
- python setup.py -q test -q
notifications:
email: false
4 changes: 2 additions & 2 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
Change History for ZConfig
==========================

3.1.1 (unreleased)
3.2.0 (unreleased)
------------------

- Nothing changed yet.
- Drop support for Python 2.6 and 3.2.


3.1.0 (2015-10-17)
Expand Down
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def alltests():

options = dict(
name="ZConfig",
version='3.1.1.dev0',
version='3.2.0.dev0',
author="Fred L. Drake, Jr.",
author_email="fred@fdrake.net",
maintainer="Zope Foundation and Contributors",
Expand Down Expand Up @@ -50,10 +50,8 @@ def alltests():
'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 :: Implementation :: CPython',
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[tox]
envlist = py26,py27,py32,py33,py34,py35
envlist = py27,py33,py34,py35

[testenv]
commands =
python setup.py test -q
python setup.py -q test -q
# without explicit deps, setup.py test will download a bunch of eggs into $PWD
deps =
zope.testrunner
Expand Down

0 comments on commit 022f225

Please sign in to comment.