Skip to content
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
4 changes: 3 additions & 1 deletion ci/scripts/python_wheel_unix_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,10 @@ echo "=== (${PYTHON_VERSION}) Installing wheels ==="
for component in ${COMPONENTS}; do
if [[ "${component}" = "adbc_driver_manager" ]]; then
PYTHON_TAG=cp$(python -c "import sysconfig; print(sysconfig.get_python_version().replace('.', ''))")
# We only want cp313-cp313 and not cp313-cp313t (for example)
PYTHON_TAG="${PYTHON_TAG}-${PYTHON_TAG}"
else
PYTHON_TAG=py3
PYTHON_TAG=py3-none
fi

if [[ -d ${source_dir}/python/${component}/repaired_wheels/ ]]; then
Expand Down
3 changes: 3 additions & 0 deletions python/adbc_driver_manager/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ repository = "https://github.com/apache/arrow-adbc"
requires = ["Cython", "setuptools >= 61.0.0"]
build-backend = "setuptools.build_meta"

[tool.cibuildwheel]
enable = ["cpython-freethreading"]

[tool.pytest.ini_options]
markers = [
"duckdb: tests that require DuckDB",
Expand Down
Loading