summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorKenneth Reitz <me@kennethreitz.org>2017-05-26 22:46:46 -0400
committerKenneth Reitz <me@kennethreitz.org>2017-05-26 22:46:46 -0400
commit628633143d5b8590b1dbdf5371fe81fb8250dffd (patch)
treec6180b73ffaf2828ead084c75139e499c259ff73 /setup.py
parent1ea27b35649571abb796f7cffbab83938d882a8d (diff)
downloadpython-requests-628633143d5b8590b1dbdf5371fe81fb8250dffd.tar.gz
require certifi
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index de59ec9a..6dd2cad7 100755
--- a/setup.py
+++ b/setup.py
@@ -40,7 +40,8 @@ packages = ['requests']
requires = [
'chardet>=3.0.2,<3.1.0',
'idna>=2.5,<2.6',
- 'urllib3 >=1.21.1,<1.22'
+ 'urllib3>=1.21.1,<1.22',
+ 'certifi>=2017.4.17'
]
test_requirements = ['pytest>=2.8.0', 'pytest-httpbin==0.0.7', 'pytest-cov', 'pytest-mock']