Skip to content

Commit 2073f3b

Browse files
committed
Remove support for Python 2.6 and 3.x with x < 4
1 parent 30fd1a3 commit 2073f3b

File tree

2 files changed

+4
-12
lines changed

2 files changed

+4
-12
lines changed

README.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,11 @@ It also provides a couple of command-line tools:
2222

2323
Prerequisites:
2424

25-
* simplejson (or Python >= 2.6, which comes with a simplejson-based JSON module in the standard library)
26-
* Python 2.6 or later
25+
* Python 2.7, 3.4 or later
2726
* CouchDB 0.10.x or later (0.9.x should probably work, as well)
2827

28+
``simplejson`` will be used if installed.
29+
2930
.. _Downloads: http://pypi.python.org/pypi/CouchDB
3031
.. _PyPI: http://pypi.python.org/
3132
.. _documentation: http://packages.python.org/CouchDB/

tox.ini

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,12 @@
11
[tox]
2-
envlist = py26, py27, py33, py34, py33-json, py34-json, py35-json
2+
envlist = py27, py34, py34-json, py35-json
33

44
[testenv]
55
deps = simplejson
66
commands =
77
python --version
88
{envbindir}/python -m couchdb.tests
99

10-
[testenv:py26]
11-
commands =
12-
python --version
13-
{envbindir}/python -m couchdb.tests.__main__
14-
15-
[testenv:py33-json]
16-
basepython = python3.3
17-
deps =
18-
1910
[testenv:py34-json]
2011
basepython = python3.4
2112
deps =

0 commit comments

Comments
 (0)