Skip to content

Commit 612f685

Browse files
committed
retire support for Python versions < 3.5 as they reached end of life
1 parent d376227 commit 612f685

File tree

2 files changed

+15
-24
lines changed

2 files changed

+15
-24
lines changed

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,10 @@
5252
"Operating System :: OS Independent",
5353
"Programming Language :: Python :: 2",
5454
"Programming Language :: Python :: 2.7",
55-
"Programming Language :: Python :: 3.3",
56-
"Programming Language :: Python :: 3.4",
5755
"Programming Language :: Python :: 3",
5856
"Programming Language :: Python :: 3.5",
5957
"Programming Language :: Python :: 3.6",
58+
"Programming Language :: Python :: 3.7",
6059
"Topic :: Software Development :: Libraries",
6160
],
6261
py_modules=["tabulate"],

tox.ini

Lines changed: 14 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# for testing and it is disabled by default.
99

1010
[tox]
11-
envlist = lint, py27, py33, py34, py35, py36
11+
envlist = lint, py27, py35, py36, py37
1212

1313
[testenv]
1414
commands = nosetests -v --with-doctest test/ tabulate.py
@@ -30,55 +30,47 @@ deps =
3030
wcwidth
3131

3232

33-
[testenv:py33]
34-
basepython = python3.3
35-
commands = nosetests -v --with-doctest -i 'py3test_*' test/ tabulate.py
36-
deps =
37-
nose
38-
39-
40-
[testenv:py34]
41-
basepython = python3.4
33+
[testenv:py35]
34+
basepython = python3.5
4235
commands = nosetests -v --with-doctest -i 'py3test_*' test/ tabulate.py
4336
deps =
4437
nose
4538

4639

47-
[testenv:py34-extra]
48-
basepython = python3.4
40+
[testenv:py35-extra]
41+
basepython = python3.5
4942
commands = nosetests -v --with-doctest -i 'py3test_*' test/ tabulate.py
5043
deps =
5144
nose
5245
numpy
5346
pandas
5447
wcwidth
5548

56-
[testenv:py35]
57-
basepython = python3.5
49+
50+
[testenv:py36]
51+
basepython = python3.6
5852
commands = nosetests -v --with-doctest -i 'py3test_*' test/ tabulate.py
5953
deps =
6054
nose
6155

6256

63-
[testenv:py35-extra]
64-
basepython = python3.5
57+
[testenv:py36-extra]
58+
basepython = python3.6
6559
commands = nosetests -v --with-doctest -i 'py3test_*' test/ tabulate.py
6660
deps =
6761
nose
6862
numpy
6963
pandas
7064
wcwidth
7165

72-
73-
[testenv:py36]
74-
basepython = python3.6
66+
[testenv:py37]
67+
basepython = python3.7
7568
commands = nosetests -v --with-doctest -i 'py3test_*' test/ tabulate.py
7669
deps =
7770
nose
7871

79-
80-
[testenv:py36-extra]
81-
basepython = python3.6
72+
[testenv:py37-extra]
73+
basepython = python3.7
8274
commands = nosetests -v --with-doctest -i 'py3test_*' test/ tabulate.py
8375
deps =
8476
nose

0 commit comments

Comments
 (0)