File requests-no-hardcoded-version.patch of Package python-requests
---
requirements-dev.txt | 2 +-
setup.py | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
--- a/requirements-dev.txt
+++ b/requirements-dev.txt
@@ -1,7 +1,7 @@
-e .[socks]
pytest>=2.8.0,<=6.2.5
pytest-cov
-pytest-httpbin==1.0.0
+pytest-httpbin>=1.0.0
pytest-mock==2.0.0
httpbin==0.7.0
trustme
--- a/setup.py
+++ b/setup.py
@@ -65,7 +65,7 @@ requires = [
"certifi>=2017.4.17",
]
test_requirements = [
- "pytest-httpbin==0.0.7",
+ "pytest-httpbin>=0.0.7",
"pytest-cov",
"pytest-mock",
"pytest-xdist",