Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(ci): pin build dependencies to work around issues #2190

Merged
merged 1 commit into from
Sep 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions ci/conda_env_glib.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,6 @@ gobject-introspection
meson
postgresql
ruby
# TODO(https://github.com/apache/arrow-adbc/issues/2176): pin for now because
# gobject-introspection uses a deprecated/removed API
setuptools <74
4 changes: 3 additions & 1 deletion ci/scripts/python_wheel_unix_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,9 @@ check_visibility $ADBC_SNOWFLAKE_LIBRARY

# https://github.com/pypa/pip/issues/7555
# Get the latest pip so we have in-tree-build by default
python -m pip install --upgrade pip auditwheel cibuildwheel delocate setuptools wheel
# 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

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