Skip to content

Commit 428d130

Browse files
author
Lukas Puehringer
committed
Partially revert cryptography auto-bump for py2
cryptography >= 3.4 doesn't support Py2 anymore, so we have to constrain it in requirements-pinned.txt and setup.py. Dependabot keeps bumping the latter regardless, thus the revert. Signed-off-by: Lukas Puehringer <[email protected]>
1 parent 3ad3866 commit 428d130

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@
107107
install_requires = ['six>=1.11.0', 'subprocess32; python_version < "3"'],
108108
extras_require = {
109109
'colors': ['colorama>=0.3.9'],
110-
'crypto:python_version < "3"': ['cryptography>=3.3.2,<3.5'],
110+
'crypto:python_version < "3"': ['cryptography>=3.3.2,<3.4'],
111111
'crypto:python_version >= "3"': ['cryptography>=3.3.2'],
112112
'pynacl': ['pynacl>1.2.0']},
113113
tests_require = 'mock; python_version < "3.3"',

0 commit comments

Comments
 (0)