Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e59b210

Browse files
authored
Merge pull request GetStream#79 from GetStream/chore/fix-py2.6-deps
Restrict dependency pyOpenSSL to < 18.0.0 on python 2.6
2 parents c1443e8 + 6b895e9 commit e59b210

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

setup.py

+3
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@
3636
'six>=1.8.0'
3737
]
3838

39+
if sys.version_info < (2, 7, 0):
40+
install_requires.append('pyOpenSSL<18.0.0')
41+
3942
class PyTest(TestCommand):
4043

4144
def finalize_options(self):

0 commit comments

Comments
 (0)