Skip to content

Commit 59c5738

Browse files
authored
apacheGH-45305: [CI] Bump Minio version and unpin boto3 (apache#45320)
### What changes are included in this PR? Use latest Minio server release, which includes a fix for minio/minio#20845 This allows us to remove the boto3 version constraint. ### Are these changes tested? Yes, by existing CI tests. ### Are there any user-facing changes? Yes. * GitHub Issue: apache#45305 Authored-by: Antoine Pitrou <[email protected]> Signed-off-by: Raúl Cumplido <[email protected]>
1 parent ead8d6f commit 59c5738

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

ci/appveyor-cpp-setup.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ set CXX=cl.exe
8585
@rem Download Minio somewhere on PATH, for unit tests
8686
@rem
8787
if "%ARROW_S3%" == "ON" (
88-
appveyor DownloadFile https://dl.min.io/server/minio/release/windows-amd64/archive/minio.RELEASE.2024-09-13T20-26-02Z -FileName C:\Windows\Minio.exe || exit /B
88+
appveyor DownloadFile https://dl.min.io/server/minio/release/windows-amd64/archive/minio.RELEASE.2025-01-20T14-49-07Z -FileName C:\Windows\Minio.exe || exit /B
8989
)
9090

9191
@rem

ci/conda_env_python.txt

+1-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@
1818
# Don't add pandas here, because it is not a mandatory test dependency
1919

2020
# Not a direct dependency of s3fs, but needed for our s3fs fixture
21-
# (temporary upper bound because of GH-45305)
22-
boto3<1.36
21+
boto3
2322
cffi
2423
cython>=3
2524
cloudpickle

ci/scripts/install_minio.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ if [ "${version}" != "latest" ]; then
6363
fi
6464

6565
# Use specific versions for minio server and client to avoid CI failures on new releases.
66-
minio_version="minio.RELEASE.2024-09-13T20-26-02Z"
66+
minio_version="minio.RELEASE.2025-01-20T14-49-07Z"
6767
mc_version="mc.RELEASE.2024-09-16T17-43-14Z"
6868

6969
download()

0 commit comments

Comments
 (0)