Skip to content

Commit 4895e66

Browse files
committed
Requirements update
1 parent 311c492 commit 4895e66

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

requirements-dev.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
pytest==2.9.1
22
pylint==1.5.2
3-
pytest-cov==1.8.1
3+
pytest-cov==2.4.0
44
pytest-instafail==0.3.0
5-
pytest-html==1.8.0
5+
pytest-html==1.14.2
66
pytest-httpbin==0.2.0
77
pytest-timeout==1.2.0
88

9-
subprocess32==3.2.5; python_version < '3.2'
9+
subprocess32>=3.2.7; python_version < '3.2'
1010
# git+https://github.com/srlindsay/gevent-profiler@master#egg=gevent-profiler==0.2
1111

1212
# Used to test IO tracing

requirements-setuptools.txt

Whitespace-only changes.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def use_package(package):
1818

1919
def get_requirements():
2020
reqs = []
21-
for filename in ["requirements-base.txt", "requirements-dashboard.txt", "requirements-setuptools.txt"]:
21+
for filename in ["requirements-base.txt", "requirements-dashboard.txt"]:
2222
with open(filename, "r") as f:
2323
reqs += [x.strip().split(";")[0] for x in f.readlines() if use_package(x.strip())]
2424
return reqs

0 commit comments

Comments
 (0)