Skip to content
Open
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: 2 additions & 2 deletions .env
Original file line number Diff line number Diff line change
Expand Up @@ -98,5 +98,5 @@ VCPKG="9b965a116838c6cdcd36bca60d1b81b030c8ab8d" # 2026.05.27 (not release, u
# ci/docker/python-*-windows-*.dockerfile or the vcpkg config.
# This is a workaround for our CI problem that "archery docker build" doesn't
# use pulled built images in dev/tasks/python-wheels/github.windows.yml.
PYTHON_WHEEL_WINDOWS_IMAGE_REVISION=2026-06-03
PYTHON_WHEEL_WINDOWS_TEST_IMAGE_REVISION=2026-06-03
PYTHON_WHEEL_WINDOWS_IMAGE_REVISION=2026-07-13
PYTHON_WHEEL_WINDOWS_TEST_IMAGE_REVISION=2026-07-13
2 changes: 1 addition & 1 deletion ci/conda_env_python.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ numpy>=1.16.6
pytest
pytest-faulthandler
s3fs>=2023.10.0
scikit-build-core
scikit-build-core>=1.0
setuptools_scm>=8
68 changes: 0 additions & 68 deletions python/_build_backend/__init__.py

This file was deleted.

11 changes: 6 additions & 5 deletions python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,14 @@

[build-system]
requires = [
"scikit-build-core",
"scikit-build-core >= 1.0",
"cython >= 3.1",
# Needed for build-time stub docstring extraction
"libcst>=1.8.6",
"numpy>=1.25",
"setuptools_scm[toml]>=8",
]
# We use a really simple build backend wrapper over scikit-build-core
# to solve licenses to work around links not being included in sdists.
build-backend = "_build_backend"
backend-path = ["."]
build-backend = "scikit_build_core.build"

[project]
name = "pyarrow"
Expand Down Expand Up @@ -94,6 +91,10 @@ wheel.install-dir = "pyarrow"
# in-tree for CI type-checking.
wheel.exclude = ["pyarrow/py.typed"]

[tool.scikit-build.sdist.force-include]
"../LICENSE.txt" = "LICENSE.txt"
"../NOTICE.txt" = "NOTICE.txt"

[tool.scikit-build.cmake.define]
PYARROW_BUNDLE_ARROW_CPP = {env = "PYARROW_BUNDLE_ARROW_CPP", default = "OFF"}
PYARROW_BUNDLE_CYTHON_CPP = {env = "PYARROW_BUNDLE_CYTHON_CPP", default = "OFF"}
Expand Down
2 changes: 1 addition & 1 deletion python/requirements-build.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ build
cython>=3.1
libcst>=1.8.6
numpy>=1.25
scikit-build-core
scikit-build-core>=1.0
setuptools_scm>=8
2 changes: 1 addition & 1 deletion python/requirements-wheel-build.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ cython>=3.1
# Needed for build-time stub docstring extraction
libcst>=1.8.6
numpy>=2.0.0
scikit-build-core
scikit-build-core>=1.0
setuptools_scm
wheel
Loading