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 6566c70 commit e6d2514Copy full SHA for e6d2514
source/ports/py_port/VERSION
@@ -1 +1 @@
1
-0.5.1
+0.6.0
source/ports/py_port/upload.sh
@@ -29,12 +29,13 @@ if [[ "$PYPI_VERSION" == "$PORT_VERSION" ]]; then
29
exit 0
30
fi
31
32
-TWINE_USERNAME=${PYTHON_PYPI_USERNAME:-}
+TWINE_USERNAME=${PYTHON_PYPI_USER:-}
33
TWINE_PASSWORD=${PYTHON_PYPI_PASSWORD:-}
34
35
# Install dependencies and upload MetaCall package
36
python3 -m pip install --user --upgrade twine setuptools wheel
37
-python3 setup.py sdist bdist_wheel
+# python3 setup.py sdist bdist_wheel
38
+python3 -m build
39
python3 -m twine check dist/*
40
python3 -m twine upload -u "${TWINE_USERNAME}" -p "${TWINE_PASSWORD}" dist/*
41
0 commit comments