File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -36,12 +36,18 @@ EXIT /B %ERRORLEVEL%
3636set pv = %~1
3737
3838echo Going to compile wheel for Python %pv%
39- py -%pv% -m pip install --upgrade pip setuptools wheel build
39+ py -%pv% -m pip install --upgrade pip setuptools wheel build delvewheel
4040if %errorlevel% neq 0 goto :error
4141
42- py -%pv% -m build --wheel .
42+ py -%pv% -m build --outdir dist\rawwheel -- wheel .
4343if %errorlevel% neq 0 goto :error
4444
45+ :: patch the wheel by including its dependencies
46+ py -%pv% -m delvewheel repair -vv -w dist dist\rawwheel\*
47+ if %errorlevel% neq 0 goto :error
48+
49+ rd /s /q dist\rawwheel
50+
4551EXIT /B 0
4652
4753:error
Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ development =
9595 pytest-asyncio
9696pandas =
9797 pandas>=2.1.2,<3.0.0
98- pyarrow<19.0.0
98+ pyarrow
9999secure-local-storage =
100100 keyring>=23.1.0,<26.0.0
101101aio =
You can’t perform that action at this time.
0 commit comments