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

Skip to content

Commit f34972b

Browse files
committed
Restrict dependency pyOpenSSL to < 18.0.0 on python 2.6
1 parent 209af5b commit f34972b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

setup.py

Lines changed: 3 additions & 0 deletions
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)