Skip to content

Commit e76b624

Browse files
committed
drop funcsigs dependency for tests on Python < 3.3 (drone.io installation issues)
1 parent a6c585b commit e76b624

File tree

2 files changed

+2
-12
lines changed

2 files changed

+2
-12
lines changed

test/test_api.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212
try:
1313
if python_version_tuple() >= ('3','3','0'):
1414
from inspect import signature, _empty
15-
else:
16-
from funcsigs import signature, _empty
1715
except ImportError:
1816
signature = None
1917
_empty = None

tox.ini

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,23 +14,20 @@ envlist = py26, py27, py32, py33, py34
1414
commands = nosetests -v --with-doctest test/ tabulate.py
1515
deps =
1616
nose
17-
funcsigs
1817

1918

2019
[testenv:py26]
2120
basepython = python2.6
2221
commands = nosetests -v -e 'py27orlater' --with-doctest test/ tabulate.py
2322
deps =
2423
nose
25-
funcsigs
2624

2725

2826
[testenv:py27-extra]
2927
basepython = python2.7
3028
commands = nosetests -v --with-doctest test/ tabulate.py
3129
deps =
3230
nose
33-
funcsigs
3431
numpy
3532
pandas
3633

@@ -40,40 +37,35 @@ basepython = python3.2
4037
commands = nosetests -v --with-doctest -i 'py3test_*' test/ tabulate.py
4138
deps =
4239
nose
43-
funcsigs
4440

4541

4642
[testenv:py33]
4743
basepython = python3.3
4844
commands = nosetests -v --with-doctest -i 'py3test_*' test/ tabulate.py
4945
deps =
5046
nose
51-
funcsigs
5247

5348

5449
[testenv:py33-extra]
5550
basepython = python3.3
5651
commands = nosetests -v --with-doctest -i 'py3test_*' test/ tabulate.py
5752
deps =
5853
nose
59-
funcsigs
6054
numpy
6155
pandas
6256

63-
57+
6458
[testenv:py34]
6559
basepython = python3.4
6660
commands = nosetests -v --with-doctest -i 'py3test_*' test/ tabulate.py
6761
deps =
6862
nose
69-
funcsigs
7063

71-
64+
7265
[testenv:py34-extra]
7366
basepython = python3.4
7467
commands = nosetests -v --with-doctest -i 'py3test_*' test/ tabulate.py
7568
deps =
7669
nose
77-
funcsigs
7870
numpy
7971
pandas

0 commit comments

Comments
 (0)