This is an automated email from the ASF dual-hosted git repository.
raulcd 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 6d3fe6bda1 GH-35433: [CI] Unpin urllib3, upgrade gcs-testbench (#35434)
6d3fe6bda1 is described below
commit 6d3fe6bda1c3b67b683ada2327194adeed09e9ca
Author: Weston Pace <[email protected]>
AuthorDate: Thu May 11 05:52:26 2023 -0700
GH-35433: [CI] Unpin urllib3, upgrade gcs-testbench (#35434)
### Rationale for this change
We only pinned urllib3 as a stop-gap. Now that a release is out we don't
need it.
### What changes are included in this PR?
We unpin urllib3 and upgrade gcs-testbench to the latest version
### Are these changes tested?
Yes, through CI tests that use gcs-testbench
### Are there any user-facing changes?
No
* Closes: #35433
Authored-by: Weston Pace <[email protected]>
Signed-off-by: Raúl Cumplido <[email protected]>
---
ci/scripts/install_gcs_testbench.sh | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/ci/scripts/install_gcs_testbench.sh
b/ci/scripts/install_gcs_testbench.sh
index d65f10e197..26fca3c946 100755
--- a/ci/scripts/install_gcs_testbench.sh
+++ b/ci/scripts/install_gcs_testbench.sh
@@ -36,9 +36,8 @@ esac
version=$1
if [[ "${version}" -eq "default" ]]; then
- version="v0.32.0"
+ version="v0.36.0"
fi
${PYTHON:-python3} -m pip install \
- "urllib3<2" \
"https://github.com/googleapis/storage-testbench/archive/${version}.tar.gz"