diff --git a/build-win-x64.ps1 b/build-win-x64.ps1 new file mode 100644 index 0000000..b9f916b --- /dev/null +++ b/build-win-x64.ps1 @@ -0,0 +1,8 @@ +$py_versions=@("37", "38", "39", "310") + +foreach ($version in $py_versions) { + conda activate py$version + pip install build ninja cmake scikit-build -i https://pypi.tuna.tsinghua.edu.cn/simple + python -m build --sdist --wheel --outdir wind-dist -n + conda deactivate +} \ No newline at end of file