Commit e8e3aa71 authored by Tres Seaver's avatar Tres Seaver

Add support for Python 3.5; drop support for Python 2.6 / 3.2.

parent ea313436
``zodburi`` Changelog ``zodburi`` Changelog
===================== =====================
Next release 2.1 (unreleased)
------------ ----------------
- Add support for Python 3.5.
- Drop support for Python 2.6 and 3.2.
- Add missing ClientStorage constructor kw args to resolver. - Add missing ClientStorage constructor kw args to resolver.
......
...@@ -30,12 +30,11 @@ setup(name='zodburi', ...@@ -30,12 +30,11 @@ setup(name='zodburi',
"Intended Audience :: Developers", "Intended Audience :: Developers",
"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 :: 3.5",
"License :: Repoze Public License", "License :: Repoze Public License",
], ],
keywords='zodb zodbconn', keywords='zodb zodbconn',
......
[tox] [tox]
envlist = envlist =
py26,py27,py32,py33,py34,cover,docs py27,py33,py34,py35,cover,docs
[testenv] [testenv]
commands = commands =
python setup.py test -q python setup.py -q test -q
[testenv:cover] [testenv:cover]
basepython = basepython =
python2.6 python2.7
commands = commands =
python setup.py nosetests --with-xunit --with-xcoverage python setup.py nosetests --with-xunit --with-xcoverage
deps = deps =
nose nose
coverage==3.4 coverage
nosexcover nosexcover
# we separate coverage into its own testenv because a) "last run wins" wrt # we separate coverage into its own testenv because a) "last run wins" wrt
...@@ -24,7 +24,7 @@ deps = ...@@ -24,7 +24,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
deps = deps =
......
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