You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 23, 2024. It is now read-only.
I am currently running app engine python3:7 environment and am getting errors in all requests going through my app. It fails on the import line to the googleclouddebugger library
AttributeError: module 'googleapiclient' has no attribute '__version__'
at <module> (/env/lib/python3.7/site-packages/apiclient/__init__.py:22)
at <module> (/env/lib/python3.7/site-packages/googleclouddebugger/gcp_hub_client.py:33)
at <module> (/env/lib/python3.7/site-packages/googleclouddebugger/__init__.py:33)
at <module> (/srv/main.py:26)
The text was updated successfully, but these errors were encountered:
Manually added google-api-python-client==1.8.0 to requirements.txt fixes the issue. I'll create a PR for pinning the google-api-python-client dependency version to 1.8.0
google-api-python-client 1.8.2 has been released and removes the problematic googleapiclient.__version__ line. In addition, if you have any references to apiclient we recommend you replace them with googleapiclient instead.
I am currently running app engine python3:7 environment and am getting errors in all requests going through my app. It fails on the import line to the
googleclouddebugger
libraryrequirements.txt
Stacktrace:
The text was updated successfully, but these errors were encountered: