E508 python-docs-theme/CONTRIBUTING.rst at main · Privat33r-dev/python-docs-theme · GitHub
[go: up one dir, main page]

Skip to content

Latest commit

 

History

History
28 lines (24 loc) · 1.11 KB

File metadata and controls

28 lines (24 loc) · 1.11 KB

How to release

  • Update CHANGELOG.rst
  • Bump version (YYYY.MM) in pyproject.toml
  • Commit
  • Push to check tests pass on GitHub Actions
  • Go to https://github.com/python/python-docs-theme/releases
  • Click "Draft a new release"
  • Click "Choose a tag"
  • Type the next YYYY.MM version (no leading zero) and select "Create new tag: YYYY.MM on publish"
  • Leave the "Release title" blank (it will be autofilled)
  • Click "Generate release notes" and amend as required
  • Click "Publish release"
  • Check the tagged GitHub Actions build has deployed to PyPI

Makefile usage

This project includes a simple Makefile for syncing changes to the theme with the main CPython repository. Run make help for details on available rules.

There is one configurable variable, CPYTHON_PATH, which should be the path to the CPython repository on your machine. By default, it points to ../cpython.

0