How to Contribute¶
Everyone is welcome to contribute to PyTango project. If you don’t feel comfortable with writing core PyTango we are looking for contributors to documentation or/and tests.
Workflow¶
A normal Git workflow is used. You can find how to automate your git branching workflow example. Good practices:
- There is no special policy regarding commit messages. They should be short (50 chars or less) and contain summary of all changes,
- A CONTRIBUTING file is required,
- Pull requests should be ALWAYS made to develop branch, not to a master branch.
reStructuredText and Sphinx¶
Documentation is written in reStructuredText and built with Sphinx - it’s easy to contribute. It also uses autodoc importing docstrings from tango package. Theme is not important, a theme prepared for Tango Community can be also used.
Source code standard¶
All code should be PEP8 compatible. We have set up checking code quality with Codacy which uses PyLint under the hood. You can see how well your code is rated on your PR’s page.
Note
The accepted policy is that your code cannot introduce more issues than it solves!
You can also use other tools for checking PEP8 compliance for your personal use. One good example of such a tool is Flake8 which combines PEP8 and PyFlakes. There are plugins for various IDEs so that you can use your favourite tool easily.
Releasing a new version¶
From time to time a new version should be released. Anyone who wishes to see some features of the development branch released is free to make a new release. The basic steps required are as follows:
- Pick a version number
- Semantic version numbering is used: <major>.<minor>.<patch>
- The major and minor version fields (9.2) track the TANGO C++ core version.
- Small changes are done as patch releases. For these the version number should correspond the current development number since each release process finishes with a version bump.
- Patch release example:
9.2.5.devN
or9.2.5aN
or9.2.5bN
(current development branch)- changes to
9.2.5
(the actual release) - changes to
9.2.6.dev0
(bump the patch version at the end of the release process)
- Create an issue in Github
This is to inform the community that a release is planned.
Use a checklist similar to the one below:
Task list:- [ ] Read steps in the how-to-contribute docs for making a release- [ ] Edit the changelog- [ ] Bump the version- [ ] Merge develop into stable- [ ] Make sure Travis is OK on stable branch- [ ] Make sure the documentation is updated (readthedocs)- [ ] Create a release tag on GitHub, from stable branch- [ ] Upload the new version to PyPI- [ ] Bump the version with “-dev” in the develop branch- [ ] Fill the release description on GitHub- [ ] Build conda packages- [ ] Advertise the release on the mailing list- [ ] Close this issueA check list is this form on github can be ticked off as the work progresses.
- Make a branch from
develop
to prepare the release - Example branch name:
prepare-v9.2.5
. - Edit the changelog (in
docs/revision.rst
). Include all pull requests since the previous release. - Bump the versions in (in
tango/release.py
). E.g.version_info
to (9, 2, 5) - Create a pull request to get these changes reviewed before proceeding.
- Example branch name:
- Merge
stable
intodevelop
Wait until the preparation branch pull request has been merged.
Merge
stable
into the latestdevelop
. It is recommended to do a fast-forward merge in order to avoid a confusing merge commit. This can be done by simply pushingdevelop
tostable
using this command:$ git push origin develop:stable
This way the release tag corresponds to the actual release commit both on the
stable
anddevelop
branches.In general, the
stable
branch should point to the latest release.
- Make sure Travis is OK on
stable
branch - All tests, on all versions of Python must be passing. If not, bad luck - you’ll have to fix it first, and go back a few steps…
- Make sure the documentation is updated
- Log in to https://readthedocs.org.
- Get account permissions for https://readthedocs.org/projects/pytango from another contributor, if necessary.
- Readthedocs should automatically build the docs for each:
- push to develop (latest docs)
- push to stable (stable docs)
- new tags (e.g v9.2.x)
- But, the webhooks are somehow broken, so it probably won’t work automatically!
- Trigger the builds manually here: https://readthedocs.org/projects/pytango/builds/
- Set the new version to “active” here: https://readthedocs.org/dashboard/pytango/versions/
- Create a release tag on GitHub
- On the Releases page, use “Draft a new release”.
- Tag must match the format of previous tags, e.g.
v9.2.5
. - Target must be the
stable
branch.
- Upload the new version to PyPI
- Log in to https://pypi.org.
- Get account permissions for PyTango from another contributor, if necessary.
- If necessary, pip install twine: https://pypi.org/project/twine/)
- Build update and upload, from the the
stable
branch: $ git clean -xfd # Warning - remove all non-versioned files and directories
$ python setup.py sdist
$ twine upload dist/pytango-9.2.N.tar.gz
- Build update and upload, from the the
- Bump the version with “-dev” in the develop branch
- Change all references to next version. E.g. if releasing v9.2.5, then update references to v9.2.6.
- This includes files like
README.rst
,doc/howto.rst
,doc/start.rst
. - In
tango/release.py
, changeversion_info
, e.g. from(9, 2, 5)
to(9, 2, 6, 'dev', 0)
.
- Fill in the release description on GitHub
- Content must be the same as the details in the changelog. List all the pull requests since the previous version.
- Build conda packages
- This is tricky, so ask a contributor from the ESRF to do it.
- Advertise the release on the mailing list
- Post on the Python development list.
- Example of a previous post: http://www.tango-controls.org/community/forum/c/development/python/pytango-921-release/
- Close off release issue
- All the items on the check list should be ticked off by now.
- Close the issue.