summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNate Prewitt <Nate.Prewitt@gmail.com>2020-11-10 11:10:54 -0800
committerNate Prewitt <Nate.Prewitt@gmail.com>2020-11-10 11:10:54 -0800
commita3b1467623e7e0e53f8405be4eba70954a872c26 (patch)
treeaf3a3d055fc11cb34ad66e0ce6eb6b0db902979b
parent2f70990cd3fabf7b05cb9a69b3dab1a43bbf0096 (diff)
downloadpython-requests-1.26-test.tar.gz
test urllib3 1.261.26-test
-rw-r--r--Makefile3
-rwxr-xr-xsetup.py2
2 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 231ce357..c7351e86 100644
--- a/Makefile
+++ b/Makefile
@@ -2,6 +2,7 @@
init:
pip install pipenv --upgrade
pipenv install --dev
+ pip install git+https://github.com/urllib3/urllib3.git@1.26.x
test:
# This runs all of the tests, on both Python 2 and Python 3.
detox
@@ -25,4 +26,4 @@ publish:
docs:
cd docs && make html
- @echo "\033[95m\n\nBuild successful! View the docs homepage at docs/_build/html/index.html.\n\033[0m" \ No newline at end of file
+ @echo "\033[95m\n\nBuild successful! View the docs homepage at docs/_build/html/index.html.\n\033[0m"
diff --git a/setup.py b/setup.py
index a1b5a2a4..72542df4 100755
--- a/setup.py
+++ b/setup.py
@@ -44,7 +44,7 @@ packages = ['requests']
requires = [
'chardet>=3.0.2,<4',
'idna>=2.5,<3',
- 'urllib3>=1.21.1,<1.26,!=1.25.0,!=1.25.1',
+ 'urllib3>=1.21.1,<1.27',
'certifi>=2017.4.17'
]