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 8af13e3 commit b6c5efa
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 10 deletions.
4 changes: 1 addition & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
language: python
sudo: false
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
- pypy
- pypy3
install:
- pip install .
script:
- python setup.py test -q
- python setup.py -q test -q
notifications:
email: false
4 changes: 3 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
``zodbpickle`` Changelog
========================

0.6.1 (unreleased)
0.7.0 (unreleased)
------------------

- Drop support for Python 2.6 and 3.2.

- Add support for Jython 2.7.

0.6.0 (2015-04-02)
Expand Down
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@

setup(
name='zodbpickle',
version='0.6.1.dev0',
version='0.7.0.dev0',
description='Fork of Python 3 pickle module.',
author='Python and Zope Foundation',
author_email='zodb-dev@zope.org',
Expand All @@ -57,10 +57,8 @@
'License :: OSI Approved :: Python Software Foundation 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
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[tox]
# Jython 2.7rc2 does work, but unfortunately has an issue running
# with Tox 1.9.2 (http://bugs.jython.org/issue2325)
envlist = py26,py27,py32,py33,py34,pypy,pypy3
envlist = py27,py33,py34,pypy,pypy3

[testenv]
deps =
commands =
python setup.py test -q
python setup.py -q test -q

[testenv:jython]
commands =
jython setup.py test -q
jython setup.py -q test -q

[testenv:coverage]
basepython =
Expand Down

0 comments on commit b6c5efa

Please sign in to comment.