mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-12 00:59:16 +05:00
15 lines
379 B
PowerShell
15 lines
379 B
PowerShell
|
if (test-path _skbuild) {
|
||
|
cmd.exe /c rd /s /q _skbuild
|
||
|
}
|
||
|
if (test-path dist) {
|
||
|
cmd.exe /c rd /s /q dist
|
||
|
}
|
||
|
|
||
|
$env:NETGEN_CCACHE = 1
|
||
|
|
||
|
$pydir=$args[0]
|
||
|
& $pydir\python.exe --version
|
||
|
& $pydir\python.exe -m pip install scikit-build wheel numpy twine
|
||
|
& $pydir\python setup.py bdist_wheel -G"Visual Studio 16 2019"
|
||
|
& $pydir\python -m twine upload --repository testpypi dist\*.whl
|