Skip to content

Commit a37799a

Browse files
pitrouamoeba
authored andcommitted
GH-45305: [CI] Bump Minio version and unpin boto3 (#45320)
Use latest Minio server release, which includes a fix for minio/minio#20845 This allows us to remove the boto3 version constraint. Yes, by existing CI tests. Yes. * GitHub Issue: #45305 Authored-by: Antoine Pitrou <[email protected]> Signed-off-by: Raúl Cumplido <[email protected]>
1 parent 1b9079c commit a37799a

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

ci/appveyor-cpp-setup.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ set CXX=cl.exe
8686
@rem Download Minio somewhere on PATH, for unit tests
8787
@rem
8888
if "%ARROW_S3%" == "ON" (
89-
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
89+
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
9090
)
9191

9292
@rem

ci/conda_env_python.txt

+4-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,10 @@
1515
# specific language governing permissions and limitations
1616
# under the License.
1717

18-
# don't add pandas here, because it is not a mandatory test dependency
19-
boto3 # not a direct dependency of s3fs, but needed for our s3fs fixture
18+
# Don't add pandas here, because it is not a mandatory test dependency
19+
20+
# Not a direct dependency of s3fs, but needed for our s3fs fixture
21+
boto3
2022
cffi
2123
cython>=0.29.31
2224
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)