You are reading an old version of the documentation (v2.0.0). For the latest version see https://matplotlib.org/stable/devel/coding_guide.html
matplotlib

Travis-CI:

Table Of Contents

This Page

Reviewers guideline

Pull request checklist

Branch selection

  • In general, simple bugfixes that are unlikely to introduce new bugs of their own should be merged onto the maintenance branch. New features, or anything that changes the API, should be made against master. The rules are fuzzy here – when in doubt, target master.
  • Once changes are merged into the maintenance branch, they should be merged into master.

Documentation

  • Every new feature should be documented. If it’s a new module, don’t forget to add a new rst file to the API docs.
  • Each high-level plotting function should have a simple example in the Example section of the docstring. This should be as simple as possible to demonstrate the method. More complex examples should go in the examples tree.
  • Build the docs and make sure all formatting warnings are addressed.
  • See Developer’s tips for documenting matplotlib for our documentation style guide.
  • If your changes are non-trivial, please make an entry in the CHANGELOG.
  • If your change is a major new feature, add an entry to doc/users/whats_new.rst.
  • If you change the API in a backward-incompatible way, please document it in doc/api/api_changes.rst.

PR Review guidelines

  • If you have a commit bit, then you are trusted to use it. Please help review and merge PRs!
  • Two developers (those with commit rights) should review all pull requests. If you are the first to review a PR please and approve of the changes please edit the title to include '[MRG+1]' and use the github ‘approve review’ tool to mark it as such. If you are a subsequent reviewer and you approve either merge (and backport if needed) or increment the number in the title to ask for further review (and trigger the gh ‘approve review’). If you do the merge please removed the '[MRG+N'] prefix.
  • Make sure the Travis tests are passing before merging.
    • The Travis tests automatically test on all of the Python versions Matplotlib supports whenever a pull request is created or updated. The tox support in Matplotlib may be useful for testing locally.
  • Do not self merge, except for ‘small’ patches to un-break the CI.
  • Squashing is case-by-case. The balance is between burden on the contributor, keeping a relatively clean history, and keeping a history usable for bisecting. The only time we are really strict about it is to eliminate binary files (ex multiple test image re-generations) and to remove upstream merges.
  • Be patient with new contributors.
  • Do not let perfect be the enemy of the good, particularly for documentation or example PRs. If you find yourself making many small suggestions, either open a PR against the original branch or merge the PR and then open a new PR against upstream.

Backports

When doing backports please include the branch you backported the commit to along with the SHA in a comment on the original PR.

Assuming we have matplotlib as a read-only remote to the matplotlib/matplotlib repo and DANGER as a read/write remote to the matplotlib/matplotlib repo, we do a backport from master to 2.x. The TARGET_SHA is the hash of the merge commit you would like to backport. This can be read off of the github PR page (in the UI with the merge notification) or through the git CLI tools.:

git fetch matplotlib
git checkout v2.x
git merge --ff-only matplotlib/v2.x
git cherry-pick -m 1 TARGET_SHA
gitk   # to look at it
# local tests? (use your judgment)
git push DANGER v2.x
# leave a comment on PR noting sha of the resulting commit
# from the cherry-pick + branch it was moved to

These commands work on git 2.7.1.