File tree 1 file changed +7
-9
lines changed
1 file changed +7
-9
lines changed Original file line number Diff line number Diff line change 24
24
break
25
25
version = eval (line .split ('=' , 1 )[1 ].strip ()) # pylint: disable=eval-used
26
26
27
- install_reqs = [
28
- 'requests >= 2.16.2' ,
29
- 'six >= 1.12.0' ,
30
- 'stone >= 2.*' ,
31
- ]
27
+ # WARNING: This imposes limitations on test/requirements.txt such that the
28
+ # full Pip syntax is not supported. See also
29
+ # <http://stackoverflow.com/questions/14399534/>.
30
+ install_reqs = []
31
+ with open ('requirements.txt' ) as f :
32
+ install_reqs += f .read ().splitlines ()
32
33
33
34
setup_requires = [
34
35
# Pin pytest-runner to 5.2.0, since 5.3.0 uses `find_namespaces` directive, not supported in
35
36
# Python 2.7
36
37
'pytest-runner == 5.2.0' ,
37
38
]
38
39
39
- test_reqs = [
40
- 'pytest' ,
41
- ]
42
-
43
40
# WARNING: This imposes limitations on test/requirements.txt such that the
44
41
# full Pip syntax is not supported. See also
45
42
# <http://stackoverflow.com/questions/14399534/>.
43
+ test_reqs = []
46
44
with open ('test/requirements.txt' ) as f :
47
45
test_reqs += f .read ().splitlines ()
48
46
You can’t perform that action at this time.
0 commit comments