-
-
Notifications
You must be signed in to change notification settings - Fork 14.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
google-cloud-sdk: fix gsutil (#358015)
- Loading branch information
Showing
2 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
pkgs/tools/admin/google-cloud-sdk/gsutil-revert-version-constraint.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
diff --git a/platform/gsutil/gsutil.py b/platform/gsutil/gsutil.py | ||
index 30b8a5ac..a02f0ba5 100755 | ||
--- a/platform/gsutil/gsutil.py | ||
+++ b/platform/gsutil/gsutil.py | ||
@@ -27,14 +27,8 @@ import warnings | ||
# TODO: gsutil-beta: Distribute a pylint rc file. | ||
|
||
ver = sys.version_info | ||
-if (ver.major == 2 and ver.minor < 7) or (ver.major == 3 and (ver.minor < 5 or ver.minor > 11)): | ||
- sys.exit( | ||
- "Error: gsutil requires Python version 2.7 or 3.5-3.11, but a different version is installed.\n" | ||
- "You are currently running Python {}.{}\n" | ||
- "Follow the steps below to resolve this issue:\n" | ||
- "\t1. Switch to Python 3.5-3.11 using your Python version manager or install an appropriate version.\n" | ||
- "\t2. If you are unsure how to manage Python versions, visit [https://cloud.google.com/storage/docs/gsutil_install#specifications] for detailed instructions.".format(ver.major, ver.minor) | ||
- ) | ||
+if (ver.major == 2 and ver.minor < 7) or (ver.major == 3 and ver.minor < 5): | ||
+ sys.exit('gsutil requires python 2.7 or 3.5+.') | ||
|
||
# setup a string to load the correct httplib2 | ||
if sys.version_info.major == 2: |