blob: 9401bd9abd1f4ae00b8534f96de882c1d4753b53 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
From 5b7de73a7ae0657053de169af6a4461fd3c855ba Mon Sep 17 00:00:00 2001
From: soloturn <soloturn@gmail.com>
Date: Sun, 7 Nov 2021 11:03:27 +0100
Subject: [PATCH] update gsutil for python3 compatibility
---
tools/buildtools/download_from_google_storage.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/buildtools/download_from_google_storage.py b/tools/buildtools/download_from_google_storage.py
index 3f27954..56cd5bc 100644
--- a/tools/buildtools/download_from_google_storage.py
+++ b/tools/buildtools/download_from_google_storage.py
@@ -78,7 +78,7 @@ class Gsutil(object):
RETRY_BASE_DELAY = 5.0
RETRY_DELAY_MULTIPLE = 1.3
- def __init__(self, path, boto_path=None, version='4.46'):
+ def __init__(self, path, boto_path=None, version='5.4'):
if not os.path.exists(path):
raise FileNotFoundError('GSUtil not found in %s' % path)
self.path = path
--
2.33.1
|