We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 886e8e0 commit 1caf243Copy full SHA for 1caf243
setup.py
@@ -220,7 +220,14 @@ def initialize_options(self):
220
'watch': ['watchdog'],
221
'jedi': ['jedi'],
222
# need requests[security] for SNI support (only before 2.7.7)
223
- ':python_full_version <= "2.7.7"': [
+ ':python_version == "2.6" or '
224
+ 'python_full_version == "2.7.0" or ' \
225
+ 'python_full_version == "2.7.1" or ' \
226
+ 'python_full_version == "2.7.2" or ' \
227
+ 'python_full_version == "2.7.3" or ' \
228
+ 'python_full_version == "2.7.4" or ' \
229
+ 'python_full_version == "2.7.5" or ' \
230
+ 'python_full_version == "2.7.6"': [
231
'requests[security]'
232
]
233
}
0 commit comments