Skip to content

Commit

Permalink
Testing python again.
Browse files Browse the repository at this point in the history
  • Loading branch information
viferga committed Dec 18, 2024
1 parent 6566c70 commit e6d2514
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion source/ports/py_port/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.5.1
0.6.0
5 changes: 3 additions & 2 deletions source/ports/py_port/upload.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,13 @@ if [[ "$PYPI_VERSION" == "$PORT_VERSION" ]]; then
exit 0
fi

TWINE_USERNAME=${PYTHON_PYPI_USERNAME:-}
TWINE_USERNAME=${PYTHON_PYPI_USER:-}
TWINE_PASSWORD=${PYTHON_PYPI_PASSWORD:-}

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

Expand Down

0 comments on commit e6d2514

Please sign in to comment.