Skip to content

Commit 064dadf

Browse files
committed
Using py launcher in deploy scripts.
1 parent 3248c13 commit 064dadf

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

publish-to-pypi-prod.bat

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
pip install twine
2-
pip install wheel
1+
py -m pip install twine
2+
py -m pip install wheel
33

44
RD /S /Q dist
55

6-
python setup.py sdist bdist_wheel
6+
py setup.py sdist bdist_wheel
77

88
@rem This requires you to create a .pypirc file like the one described here:
99
@rem https://github.com/RLBot/RLBot/wiki/Deploying-Changes#first-time-setup
1010

11-
twine upload --repository pypi dist/*
11+
twine upload --repository pypi dist/*

publish-to-pypi-test.bat

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
pip install twine
2-
pip install wheel
1+
py -m pip install twine
2+
py -m pip install wheel
33

44
RD /S /Q dist
55

6-
python setup.py sdist bdist_wheel
6+
py setup.py sdist bdist_wheel
77

88
@rem This requires you to create a .pypirc file like the one described here:
99
@rem https://github.com/RLBot/RLBot/wiki/Deploying-Changes#first-time-setup
1010

11-
twine upload --repository pypitest dist/*
11+
twine upload --repository pypitest dist/*

0 commit comments

Comments
 (0)