Skip to content

Commit a136a97

Browse files
committed
Try again.
1 parent f74bc85 commit a136a97

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

source/ports/py_port/VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.5.1
1+
0.6.0

source/ports/py_port/upload.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ if [[ "$PYPI_VERSION" == "$PORT_VERSION" ]]; then
2929
exit 0
3030
fi
3131

32-
TWINE_USERNAME=${PYTHON_PYPI_USER:-}
33-
TWINE_PASSWORD=${PYTHON_PYPI_PASSWORD:-}
32+
export TWINE_USERNAME=${PYTHON_PYPI_USER:-}
33+
export TWINE_PASSWORD=${PYTHON_PYPI_PASSWORD:-}
3434

3535
# Install dependencies and upload MetaCall package
3636
python3 -m pip install --user --upgrade twine setuptools wheel
3737
python3 setup.py sdist bdist_wheel
3838
python3 -m twine check dist/*
39-
python3 -m twine upload -u "${TWINE_USERNAME}" -p "${TWINE_PASSWORD}" dist/*
39+
python3 -m twine upload dist/*
4040

4141
# Delete output
4242
rm -rf dist/* build/*

0 commit comments

Comments
 (0)