This is an automated email from the ASF dual-hosted git repository.
westonpace pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/main by this push:
new b9cc5df8a4 GH-35410: [CI] Pin urllib3 for gcs testbench (#35412)
b9cc5df8a4 is described below
commit b9cc5df8a4f7c7fe09f40ba92a74981dee5e536a
Author: Weston Pace <[email protected]>
AuthorDate: Wed May 3 19:43:15 2023 -0700
GH-35410: [CI] Pin urllib3 for gcs testbench (#35412)
### Rationale for this change
gcs-toolbench's latest release currently pins requests-toolbelt to 0.10.0
which is not compatible with urllib >= 2.0. Until there is a new release of
gcs-toolbench I think we need to pin urllib to be < 2.0.
### What changes are included in this PR?
A change to the install_gcs_toolbench.sh script that pins urllib to < 2.
### Are these changes tested?
Yes, CI uses this script today.
### Are there any user-facing changes?
No
* Closes: #35410
Authored-by: Weston Pace <[email protected]>
Signed-off-by: Weston Pace <[email protected]>
---
ci/scripts/install_gcs_testbench.sh | 1 +
1 file changed, 1 insertion(+)
diff --git a/ci/scripts/install_gcs_testbench.sh
b/ci/scripts/install_gcs_testbench.sh
index 0109ea607f..d65f10e197 100755
--- a/ci/scripts/install_gcs_testbench.sh
+++ b/ci/scripts/install_gcs_testbench.sh
@@ -40,4 +40,5 @@ if [[ "${version}" -eq "default" ]]; then
fi
${PYTHON:-python3} -m pip install \
+ "urllib3<2" \
"https://github.com/googleapis/storage-testbench/archive/${version}.tar.gz"