Skip to content

Commit

Permalink
Partially revert cryptography auto-bump for py2
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
lukpueh committed Feb 26, 2021
1 parent 3ad3866 commit 428d130
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
install_requires = ['six>=1.11.0', 'subprocess32; python_version < "3"'],
extras_require = {
'colors': ['colorama>=0.3.9'],
'crypto:python_version < "3"': ['cryptography>=3.3.2,<3.5'],
'crypto:python_version < "3"': ['cryptography>=3.3.2,<3.4'],
'crypto:python_version >= "3"': ['cryptography>=3.3.2'],
'pynacl': ['pynacl>1.2.0']},
tests_require = 'mock; python_version < "3.3"',
Expand Down

0 comments on commit 428d130

Please sign in to comment.