Skip to content

Latest commit

 

History

History
91 lines (67 loc) · 2.92 KB

HACKING.md

File metadata and controls

91 lines (67 loc) · 2.92 KB

Developer notes

This document is for people who maintain and contribute to this repository.

Commit messages

Commit messages follow the Conventional Commits format that is also used by Tutor and Open edX. See OEP-0051 for details.

We enforce the prescribed type prefixes to be used in commit messages via Gitlint.

How to run tests

This repo uses tox for unit and integration tests. It does not install tox for you, you should follow the installation instructions if your local setup does not yet include tox.

You are encouraged to set up your checkout such that the tests run on every commit, and on every push. To do so, run the following command after checking out this repository:

git config core.hooksPath .githooks

Once your checkout is configured in this manner, every commit will run a code style check (with Flake8), and every push to a remote topic branch will result in a full tox run.

In addition, we use GitHub Actions to run the same checks on every push to GitHub.

If you absolutely must, you can use the --no-verify flag to git commit and git push to bypass local checks, and rely on GitHub Actions alone. But doing so is strongly discouraged.

How to cut a release

This repository uses bumpversion for managing new releases.

Before cutting a new release, open CHANGELOG.md and add a new section like this:

## Unreleased

* [Bug fix] Description of bug fix
* [Enhancement] Description of enhancement

Commit these changes on main as you normally would.

Then, use tox -e bumpversion to increase the version number:

  • tox -e bumpversion patch: creates a new point release (such as 3.6.1)
  • tox -e bumpversion minor: creates a new minor release, with the patch level set to 0 (such as 3.7.0)
  • tox -e bumpversion major: creates a new major release, with the minor and patch levels set to 0 (such as 4.0.0)

This creates a new commit, and also a new tag, named v<num>, where <num> is the new version number.

Push these two commits (the one for the changelog, and the version bump) to origin. Make sure you push the v<num> tag to origin as well.

Then, build a new sdist package, and upload it to PyPI (with twine):

rm dist/* -f
./setup.py sdist
twine upload dist/*