Closed sarsivas closed 7 months ago
@sarsivas thanks for reporting this issue.
I tried running a simple script locally with google-api-python-client==2.122.0
and google-auth==2.28.2
and did not get the same error as you.
from googleapiclient.discovery import build
def main():
build("", "")
if __name__ == '__main__':
main()
However, I found out that mtls
was added to google.auth.transport
in v1.14.0.
Therefore, a version of google-auth
<= 1.14.0
results in the error that you're experiencing.
With pip install google-auth==1.13.1
, I get the following error:
from google.auth.transport import mtls
ImportError: cannot import name 'mtls' from 'google.auth.transport' (/usr/local/google/home/omairn/.pyenv/versions/3.9.5/envs/py39/lib/python3.9/site-packages/google/auth/transport/__init__.py)
It may be that in your case, an older version of google-auth
is being installed as a transitive dependency.
Can you confirm this behaviour by running pip show google-auth
?
If that's not the case, we will need more information from you regarding what exactly you're running and if this occurs only when using the Python SDK in App engine.
Thank you, Ohmayr. We are utilizing the 'google/cloud-sdk:449.0.0' Docker image to execute pytest. The error pertains to the Google Cloud SDK library path where it does not contain the 'mtls.py' module.
Below is the output:
# ls /usr/lib/google-cloud-sdk/platform/google_appengine/google/auth/transport/
__init__.py _http_client.py _mtls_helper.py requests.py
Not referring to google-auth in this path.
# ls /usr/local/lib/python3.9/dist-packages/google/auth/transport/
__init__.py __pycache__ _aiohttp_requests.py _custom_tls_signer.py _http_client.py _mtls_helper.py grpc.py mtls.py requests.py urllib3.py
After adding the PYTHONPATH as below, it appears to be working
/usr/local/lib/python3.9/dist-packages:/usr/lib/google-cloud-sdk/platform/google_appengine/
Not an issue with the library, it seems that the old version of the library, which doesn't have 'mtls', is present in the Google Cloud SDK version 449. We can close this support ticket.
Glad you were able to resolve the issue! Closing.
Description
We are utilizing the specified package versions listed in requirement.txt for the App Engine Python 3.9 runtime, and we are experiencing the following error when running local development tests with pytest using the Google Cloud SDK
google-auth==2.23.4
google-api-python-client==2.52.0
Error
Notes
pip install google-api-python-client==2.122.0
pip install google-auth==2.28.2