Skip to content

Latest commit

 

History

History
46 lines (31 loc) · 1.34 KB

RELEASE.md

File metadata and controls

46 lines (31 loc) · 1.34 KB

Release

  1. Run tox to verify that your code pass all tests (at least on your OS with your python version)

  2. Set appropriate version inside btclib/__init__.py and docs/source/conf.py

  3. Follow docs/README.rst and test that the documentation builds without problems

  4. Add every major changes since the previous version to HISTORY.md, if they were not already there.

  5. Push to GitHub.

    Verify that the documentation builds without failing on read the docs.

    Also check that the website and the documentation are displayed correctly in a browser.

  6. Build the package distribution files:

    rm -r btclib.egg-info/ build/ dist/
    python setup.py sdist bdist_wheel
  7. Push the package files to PyPi:

    twine upload dist/*
  8. Create a new release on GitHub:

    Use the version as the title, and the history as the description. Also upload the files in the dist/ folder as release attachments.

  9. Prepare for a new generic version:

    Choose a new version without specifying the day (e.g., if the previous release was 2022.2.9, choose 2022.3). Then set this new version in btclib/init.py and docs/source/conf.py. Also, update HISTORY.md with this new version.