- Review metadata in
pyproject.toml
; while determining if code is release worthy, append an rc tag to the semantic version, likemajor.minor.patch.rcxx
- Build a release (image is built off of
Dockerfile-build-env
):docker container run -v $(pwd):/src argovis/argovis_helpers:build-240118 python -m build
- Push to testPypi (notice you'll need a file
pypirc
with appropriate API tokens for the pypi servers):docker container run -v $(pwd):/src -v $(pwd)/pypirc:/root/.pypirc -it argovis/argovis_helpers:build-240118 twine upload -r testpypi dist/<your new rc>
- Test install and try:
python -m pip install -i https://test.pypi.org/simple argovis_helpers
- If all is well, rebuild without the rc tag and push to pypi:
docker container run -v $(pwd):/src -v $(pwd)/pypirc:/root/.pypirc -it argovis/argovis_helpers:build-240118 twine upload dist/<your new release>
git add
your new build artifacts under/dist
- Push to github and mint a release matching the version number in
pyproject.toml
.
-
Notifications
You must be signed in to change notification settings - Fork 1
License
argovis/argovis_helpers
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
No description, website, or topics provided.
Resources
License
Stars
Watchers
Forks
Packages 0
No packages published