We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f00a46f commit b3d729cCopy full SHA for b3d729c
setup.py
@@ -169,7 +169,11 @@ def initialize_options(self):
169
170
if sys.version_info[0] == 2 and sys.platform == "darwin":
171
# need PyOpenSSL for SNI support (only 2.X and on Darwin)
172
+ # list of packages taken from
173
+ # https://github.com/kennethreitz/requests/blob/master/requests/packages/urllib3/contrib/pyopenssl.py
174
install_requires.append('PyOpenSSL')
175
+ install_requires.append('ndg-httpsclient')
176
+ install_requires.append('pyasn1')
177
178
# translations
179
mo_files = list()
0 commit comments