Skip to content

Commit

Permalink
[Core] Fix version requirements for google-api-python-client (skypi…
Browse files Browse the repository at this point in the history
  • Loading branch information
cblmemo authored Sep 27, 2023
1 parent 84d843e commit 5285b8f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion sky/setup_files/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,9 @@ def parse_readme(readme: str) -> str:
'azure-cli>=2.31.0', 'azure-core', 'azure-identity>=1.13.0',
'azure-mgmt-network'
],
'gcp': ['google-api-python-client', 'google-cloud-storage'],
# We need google-api-python-client>=2.19.1 to enable 'reason' attribute
# of googleapiclient.errors.HttpError, which is widely used in our system.
'gcp': ['google-api-python-client>=2.19.1', 'google-cloud-storage'],
'ibm': [
'ibm-cloud-sdk-core', 'ibm-vpc', 'ibm-platform-services', 'ibm-cos-sdk'
],
Expand Down

0 comments on commit 5285b8f

Please sign in to comment.