Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -372,4 +372,4 @@
# Autodoc config
autoclass_content = "both"
autodoc_member_order = "bysource"
autodoc_mock_imports = ["grpc"]
autodoc_mock_imports = ["grpc", "rsa"]
2 changes: 1 addition & 1 deletion google/auth/crypt/_cryptography_rsa.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

"""RSA verifier and signer that use the ``cryptography`` library.

This is a much faster implementation than the default (in
This is a much faster implementation than the alternative (in
``google.auth.crypt._python_rsa``), which depends on the pure-Python
``rsa`` library.
"""
Expand Down
3 changes: 0 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,6 @@
DEPENDENCIES = (
"cachetools>=2.0.0,<7.0",
"pyasn1-modules>=0.2.1",
# rsa==4.5 is the last version to support 2.7
# https://github.com/sybrenstuvel/python-rsa/issues/152#issuecomment-643470233
"rsa>=3.1.4,<5",
)

# TODO(https://github.com/googleapis/google-auth-library-python/issues/1737): Unit test fails with
Expand Down
Loading