File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed
Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff 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 : |
Original file line number Diff line number Diff 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
141142popd
Original file line number Diff line number Diff 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' ,
You can’t perform that action at this time.
0 commit comments