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 52447a4 commit 15f0348Copy full SHA for 15f0348
setup.py
@@ -3,9 +3,15 @@
3
from setuptools import find_packages, setup
4
from setuptools.command.test import test as TestCommand
5
6
+requests = "requests>=2.3.0,<3"
7
+
8
+# python 2.7.9 does not support SNI
9
+if sys.version_info < (2, 7, 9):
10
+ requests = "requests[security]>=2.4.1,<3"
11
12
install_requires = [
13
"pycryptodomex==3.8.1",
- "requests>=2.3.0,<3",
14
+ requests,
15
"pyjwt==1.7.1",
16
"six>=1.8.0",
17
]
0 commit comments