Skip to content

Commit 2fdef46

Browse files
committed
Merge branch 'develop' of github.com:gridscale/gridscale_api_client_python into develop
2 parents 1cabcf4 + 6deb0ad commit 2fdef46

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.travis/check_release_step.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set -ev
33
echo "Checking release version $(python setup.py --version)"
44

5-
if git tag | grep -qE "^v$(python setup.py --version)$"; then echo "Release already exists"; exit 1; fi
5+
# if git tag | grep -qE "^v$(python setup.py --version)$"; then echo "Release already exists"; exit 1; fi
66
if ! grep -q "v$(python setup.py --version)" CHANGELOG.md; then echo "Version missing in CHANGELOG.md"; exit 1; fi
77

88
echo "Checking Done"

.travis/upload_to_apipy_org.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ set -ev
33

44
echo "Uploading package to pypi.org"
55

6-
# pip install twine
7-
# twine upload -u __token__ -p "$PYPI_ORG_TOKEN" dist/gs_api_client-*
6+
pip install twine
7+
twine upload -u __token__ -p "$PYPI_ORG_TOKEN" dist/gs_api_client-*
88

99
echo "Upload Done"

0 commit comments

Comments
 (0)