Commit 472b3e98 authored by Jim Fulton's avatar Jim Fulton

Merge pull request #33 from zopefoundation/drop-py26-py32

Drop support for Python 2.6 and 3.2.
parents 8f7440f4 993502e7
language: python language: python
sudo: false sudo: false
python: python:
- 2.6
- 2.7 - 2.7
- 3.2
- 3.3 - 3.3
- 3.4 - 3.4
- pypy - pypy
......
``persistent`` Changelog ``persistent`` Changelog
======================== ========================
4.1.2 (unreleased) 4.2.0 (unreleased)
------------------ ------------------
- TBD - Drop support for Python 2.6 and 3.2.
4.1.1 (2015-06-02) 4.1.1 (2015-06-02)
------------------ ------------------
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
# #
############################################################################## ##############################################################################
__version__ = '4.1.2.dev0' __version__ = '4.2.0.dev0'
import os import os
import platform import platform
...@@ -79,10 +79,8 @@ setup(name='persistent', ...@@ -79,10 +79,8 @@ setup(name='persistent',
"License :: OSI Approved :: Zope Public License", "License :: OSI Approved :: Zope Public License",
"Programming Language :: Python", "Programming Language :: Python",
'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.4',
"Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: CPython",
......
...@@ -2,18 +2,18 @@ ...@@ -2,18 +2,18 @@
envlist = envlist =
# Jython 2.7rc2 does work, but unfortunately has an issue running # Jython 2.7rc2 does work, but unfortunately has an issue running
# with Tox 1.9.2 (http://bugs.jython.org/issue2325) # with Tox 1.9.2 (http://bugs.jython.org/issue2325)
# py26,py27,py27-pure,pypy,py32,py33,py34,pypy3,jython,coverage,docs # py27,py27-pure,pypy,py33,py34,pypy3,jython,coverage,docs
py26,py27,py27-pure,py27-pure-cffi,pypy,py32,py33,py34,pypy3,coverage,docs py27,py27-pure,py27-pure-cffi,pypy,py33,py34,pypy3,coverage,docs
[testenv] [testenv]
deps = deps =
zope.interface zope.interface
commands = commands =
python setup.py test -q python setup.py -q test -q
[testenv:jython] [testenv:jython]
commands = commands =
jython setup.py test -q jython setup.py -q test -q
[testenv:py27-pure] [testenv:py27-pure]
basepython = basepython =
...@@ -23,7 +23,7 @@ setenv = ...@@ -23,7 +23,7 @@ setenv =
deps = deps =
{[testenv]deps} {[testenv]deps}
commands = commands =
python setup.py test -q python setup.py -q test -q
[testenv:py27-pure-cffi] [testenv:py27-pure-cffi]
basepython = basepython =
...@@ -35,12 +35,12 @@ deps = ...@@ -35,12 +35,12 @@ deps =
{[testenv]deps} {[testenv]deps}
cffi cffi
commands = commands =
python setup.py test -q python setup.py -q test -q
[testenv:coverage] [testenv:coverage]
basepython = basepython =
python2.6 python2.7
setenv = setenv =
USING_CFFI = 1 USING_CFFI = 1
commands = commands =
...@@ -54,7 +54,7 @@ deps = ...@@ -54,7 +54,7 @@ deps =
[testenv:docs] [testenv:docs]
basepython = basepython =
python2.6 python2.7
commands = commands =
sphinx-build -b html -d docs/_build/doctrees docs docs/_build/html sphinx-build -b html -d docs/_build/doctrees docs docs/_build/html
sphinx-build -b doctest -d docs/_build/doctrees docs docs/_build/doctest sphinx-build -b doctest -d docs/_build/doctrees docs docs/_build/doctest
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment