Skip to content

Commit c98d232

Browse files
Merge pull request #152 from appliedAI-Initiative/fixes
Fixes and improvements to package release to TestPyPI
2 parents 52e871a + 2070bfa commit c98d232

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/tox.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,6 @@ jobs:
135135
git config user.name "${{ env.GITHUB_BOT_USERNAME }}"
136136
git config user.email "${{ env.GITHUB_BOT_EMAIL }}"
137137
tox -e bump-dev-version-and-create-tag
138-
tox -e publish-test-package
139138
git push
140139
git push --tags
140+
tox -e publish-test-package

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ deps =
125125
twine
126126
commands =
127127
python setup.py sdist bdist_wheel
128-
twine upload -r testpypi --non-interactive dist/*
128+
twine upload -r testpypi --verbose --non-interactive dist/*
129129

130130
[testenv:publish-release-package]
131131
description = Publish package to PyPI
@@ -136,7 +136,7 @@ deps =
136136
{[testenv:publish-test-package]deps}
137137
commands =
138138
python setup.py sdist bdist_wheel
139-
twine upload --non-interactive dist/*
139+
twine upload --verbose --non-interactive dist/*
140140

141141

142142
[testenv:bump-dev-version-and-create-tag]

0 commit comments

Comments
 (0)