Skip to content

Commit

Permalink
ci: bump cibuildwheel (#2221)
Browse files Browse the repository at this point in the history
  • Loading branch information
lidavidm authored Oct 8, 2024
1 parent c74f3d3 commit 8e7122d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ ARCH_CONDA_FORGE=linux_64_

# Default versions for various dependencies
JDK=8
MANYLINUX=2014
MANYLINUX=2-28
MAVEN=3.6.3
PLATFORM=linux/amd64
PYTHON=3.9
Expand Down
6 changes: 5 additions & 1 deletion ci/docker/python-wheel-manylinux.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,11 @@ FROM ${REPO}:${ARCH}-python-${PYTHON}-wheel-manylinux-${MANYLINUX}-vcpkg-${VCPKG
ARG ARCH
ARG GO

RUN yum install -y docker
# docker is aliased to podman by AlmaLinux, but we want real Docker
# (podman is just too different)
RUN yum remove -y docker ; yum install -y yum-utils
RUN yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
RUN yum install -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
# arm64v8 -> arm64
RUN wget --no-verbose https://go.dev/dl/go${GO}.linux-${ARCH/v8/}.tar.gz && \
tar -C /usr/local -xzf go${GO}.linux-${ARCH/v8/}.tar.gz && \
Expand Down
4 changes: 1 addition & 3 deletions ci/scripts/python_wheel_unix_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,7 @@ check_visibility $ADBC_SNOWFLAKE_LIBRARY

# https://github.com/pypa/pip/issues/7555
# Get the latest pip so we have in-tree-build by default
# https://github.com/apache/arrow-adbc/issues/2163
# Pin cibuildwheel for now
python -m pip install --upgrade pip auditwheel 'cibuildwheel<2.21' delocate setuptools wheel
python -m pip install --upgrade pip auditwheel 'cibuildwheel>=2.21.2' delocate setuptools wheel

# Build with Cython debug info
export ADBC_BUILD_TYPE="debug"
Expand Down

0 comments on commit 8e7122d

Please sign in to comment.