Skip to content

Latest commit

 

History

History
29 lines (25 loc) · 569 Bytes

File metadata and controls

29 lines (25 loc) · 569 Bytes

How to Publish

Publish relies on Poetry.

  1. Update pyproject.toml version e.g.
    poetry version N.N.N
  2. Commit version bump.
  3. Create GitHub release.
  4. Pull the new tag.
    git pull
  5. Publish a dry run first:
    poetry publish --build --dry-run
  6. Review the output.
  7. Publish for real:
    poetry publish --build
  8. Wait for console to log success.
  9. Load https://pypi.org/project/mkdocs-tacc/.

Related