Skip to content

Commit 5fa911f

Browse files
committed
Fix delvewheel
1 parent 1d69e0a commit 5fa911f

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ jobs:
295295
uses: actions/upload-artifact@v4
296296
with:
297297
name: built-wheel
298-
path: python/dist/*.whl
298+
path: python/wheelhouse/*.whl
299299
- name: Test PyArrow
300300
shell: cmd
301301
run: |

ci/scripts/python_build.bat

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,7 @@ pushd %SOURCE_DIR%\python
136136

137137
@REM Build PyArrow
138138
%PYTHON_CMD% -m build --wheel . --no-isolation || exit /B 1
139-
%PYTHON_CMD% -m pip install wheelhouse\* || exit /B 1
139+
%PYTHON_CMD% -m delvewheel repair --exclude arrow_python.dll dist\* || exit /B 1
140+
%PYTHON_CMD% -m pip install --no-index --find-links .\wheelhouse\ pyarrow || exit /B 1
140141

141142
popd

python/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ project(
2020
'cython',
2121
'cpp',
2222
version: run_command(
23-
'python3',
23+
'python',
2424
'-m',
2525
'setuptools_scm',
2626
'--force-write-version-files',

0 commit comments

Comments
 (0)