Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 535 Bytes

File metadata and controls

20 lines (15 loc) · 535 Bytes

Contributing

Release process

  • Update the CHANGELOG on the master branch
  • Update __version__ in pip_check_reqs/__init__.py on the master branch.

Run the following steps, entering a PyPI API token when prompted:

git checkout master && \
git pull && \
uv pip install --upgrade twine build && \
rm -rf build dist && \
git status # There should be no uncommitted changes.  && \
uv run python -m build && \
uv run twine upload --username=__token__ -r pypi dist/*