push pip to real repository

This commit is contained in:
mhochsteger@cerbsim.com 2022-02-25 16:05:36 +01:00
parent 2d70263cda
commit 1a589846d6
3 changed files with 3 additions and 3 deletions

View File

@ -11,4 +11,4 @@ $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
& $pydir\python -m twine upload dist\*.whl

View File

@ -30,4 +30,4 @@ do
done
$PYDIR/pip install -U twine
$PYDIR/twine upload --repository testpypi wheelhouse/*manylinux*.whl
$PYDIR/twine upload wheelhouse/*manylinux*.whl

View File

@ -10,4 +10,4 @@ $PYDIR/pip3 install --user numpy twine scikit-build wheel
export CMAKE_OSX_ARCHITECTURES='arm64;x86_64'
$PYDIR/python3 setup.py bdist_wheel --plat-name macosx-10.15-universal2 -j10
$PYDIR/python3 -m twine upload --repository testpypi dist/*.whl
$PYDIR/python3 -m twine upload dist/*.whl