Skip to content

Commit

Permalink
fix: narrow acceptable RSA versions to maintain Python 2 compatability (
Browse files Browse the repository at this point in the history
#528)

* Narrow acceptable RSA versions to maintain Python 2 compat

* Update setup.py

Co-authored-by: Kamil Breguła <mik-laj@users.noreply.github.com>

* Use a more specific pin to support new versions that may support python 2.

* Update setup.py

Co-authored-by: Bu Sun Kim <8822365+busunkim96@users.noreply.github.com>

* how many commits to get the format correct?

Co-authored-by: Kamil Breguła <mik-laj@users.noreply.github.com>
Co-authored-by: Bu Sun Kim <8822365+busunkim96@users.noreply.github.com>
  • Loading branch information
3 people committed Jun 11, 2020
1 parent 67d38d8 commit 9434868
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@
DEPENDENCIES = (
"cachetools>=2.0.0,<5.0",
"pyasn1-modules>=0.2.1",
"rsa>=3.1.4,<5.0",
# rsa 4.1, 4.1.1, 4.2 are broken on Py2: https://github.com/sybrenstuvel/python-rsa/issues/152
'rsa>=3.1.4,!=4.1,!=4.1.1,!=4.2,<5; python_version < "3"',
'rsa>=3.1.4,<5; python_version >= "3"',
"setuptools>=40.3.0",
"six>=1.9.0",
)
Expand Down

0 comments on commit 9434868

Please sign in to comment.