Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions continuous-delivery/publish_to_prod_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ phases:
- sed --in-place -E "s/version='.+'/version='${PKG_VERSION}'/" setup.py
build:
commands:
- echo Build started on `date`
- python3 setup.py sdist bdist_wheel --universal
- echo Build started on `date`
- python3 setup.py sdist bdist_wheel
- python3 -m twine upload -r pypi dist/*
post_build:
commands:
Expand Down
4 changes: 2 additions & 2 deletions continuous-delivery/publish_to_test_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ phases:
- sed --in-place -E "s/version='.+'/version='${PKG_VERSION}'/" setup.py
build:
commands:
- echo Build started on `date`
- python3 setup.py sdist bdist_wheel --universal
- echo Build started on `date`
- python3 setup.py sdist bdist_wheel
- python3 -m twine upload -r testpypi dist/*
post_build:
commands:
Expand Down