We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ebb3f3 commit f007592Copy full SHA for f007592
source/ports/py_port/upload.sh
@@ -29,11 +29,14 @@ if [[ "$PYPI_VERSION" == "$PORT_VERSION" ]]; then
29
exit 0
30
fi
31
32
+# Delete previous build
33
+rm -rf dist build *.egg-info
34
+
35
# Install dependencies and upload MetaCall package
36
python3 -m pip install --user --upgrade twine setuptools wheel build
37
python3 -m build
38
python3 -m twine check dist/*
39
python3 -m twine upload dist/*
40
41
# Delete output
-rm -rf dist/* build/*
42
0 commit comments