This page contains instructions for project maintainers about how our setup works, making releases, creating packages, etc.
If you want to make a contribution to the project, see the Contributing Guide instead.
- master: Always tested and ready to become a new version. Don't push directly to this branch. Make a new branch and submit a pull request instead.
- gh-pages: Holds the HTML documentation and is served by Github. Pages for the master
branch are in the
dev
folder. Pages for each release are in their own folders. Automatically updated by TravisCI so you shouldn't have to make commits here.
A few guidelines for reviewing:
- Always be polite and give constructive feedback.
- Welcome new users and thank them for their time, even if we don't plan on merging the PR.
- Don't be harsh with code style or performance. If the code is bad, either (1) merge the pull request and open a new one fixing the code and pinging the original submitter (2) comment on the PR detailing how the code could be improved. Both ways are focused on showing the contributor how to write good code, not shaming them.
Pull requests should be squash merged. This means that all commits will be collapsed into one. The main advantages of this are:
- Eliminates experimental commits or commits to undo previous changes.
- Makes sure every commit on master passes the tests and has a defined purpose.
- The maintainer writes the final commit message, so we can make sure it's good and descriptive.
We use TravisCI and Azure Pipelines continuous integration (CI) services to build and
test the project on Windows, Linux, and Mac.
The configuration files for these services are .travis.yml
and .azure-pipelines.yml
.
Both rely on the requirements.txt
file to install the required dependencies using
conda and the Makefile
to run the tests and checks.
Travis also handles all of our deployments automatically:
- Updating the development documentation by pushing the built HTML pages from the
master branch onto the
dev
folder of the gh-pages branch. - Uploading new releases to PyPI (only when the build was triggered by a git tag).
- Updated the
latest
documentation link to the new release.
This way, most day-to-day maintenance operations are automatic.
The scripts that setup the test environment and run the deployments are loaded from the fatiando/continuous-integration repository to avoid duplicating work across multiple repositories. If you find any problems with the test setup and deployment, please create issues and submit pull requests to that repository.
The citation for a package that doesn't have an associated paper will be the Zenodo DOI for all versions. This citation will include everyone who has contributed to the project and met our authorship criteria.
Include the following text in the CITATION.rst
file:
This is research software **made by scientists**. Citations help us justify the
effort that goes into building and maintaining this project.
If you used this software in your research, please consider
citing the following source: https://doi.org/10.5281/zenodo.3530749
The link above includes full citation information and export formats (BibTeX,
Mendeley, etc).
If the project has been publish as an academic paper (for example, on
JOSS), update the CITATION.rst
to point to the
paper instead of the Zenodo archive.
If you used this software in your research, please consider citing the
following publication:
<full citation including authors, title, journal, DOI, etc>
This is an open-access publication. The paper and the associated reviews can be
freely accessed at: https://doi.org/<INSERT-DOI-HERE>
The link above includes full citation information and export formats (BibTeX,
Mendeley, etc).
We try to automate the release process as much as possible. Travis handles publishing new releases to PyPI and updating the documentation. The version number is set automatically using versioneer based information it gets from git. There are a few steps that still must be done manually, though.
If the project already has releases on Zenodo, you need to create
a New version of it. Find the link to the latest Zenodo release on the README.md
file of your project. Then:
- Delete all existing files (they will be replaced with the new version).
- Reserve a DOI and save the release draft.
- Add as authors any new contributors who have added themselves to
AUTHORS.md
. - Review author order to make sure it follows the guidelines on our Authorship Guide
- Update release date.
On the other hand, if you're making the first release of the project, you need to create a New upload for it inside the Fatiando a Terra community at Zenodo. Make sure the Fatiando a Terra community is chosen when filling the release draft. The rest of the process is the same as above.
-
Generate a list of commits between the last release tag and now:
git log HEAD...v0.1.2 > changes.txt
-
Edit the changes list to remove any trivial changes (updates to the README, typo fixes, CI configuration, etc).
-
Replace the PR number in the commit titles with a link to the Github PR page. In Vim, use
%s$#\([0-9]\+\)$`#\1 <https://github.com/fatiando/PROJECT/pull/\1>`__$g
to make the change automatically. -
Copy the remaining changes to
doc/changes.rst
under a new section for the intended release. -
Add a list of people who contributed to the release (use
git shortlog HEAD...v1.2.0 -sne
). -
Include the DOI badge in the changelog. Remember to replace your DOI inside the badge url.
.. image:: https://zenodo.org/badge/DOI/<INSERT-DOI-HERE>.svg :alt: Digital Object Identifier for the Zenodo archive :target: https://doi.org/<INSERT-DOI-HERE>
-
Add a link to the new release version documentation in
README.rst
. -
Open a new PR with the updated changelog.
Github is a bit forgiving when it comes to the RST syntax in the README but PyPI is not.
So slightly broken RST can cause the PyPI page to not render the correct content. Check
using the rst2html.py
script that comes with docutils:
python setup.py --long-description | rst2html.py --no-raw > index.html
Open index.html
and check for any flaws or error messages.
After the changelog is updated, making a release should be as simple as
creating a new git tag.
The continuous integration services will take care of pushing the package to
PyPI and creating a new version of the documentation.
A new folder with version number containing the HTML documentation will be
pushed to gh-pages, and the latest
link will be updated to point to this
new folder.
The tag should be version number (following Semantic Versioning)
with a leading v
(v1.5.7
).
To create a new tag, go to https://github.com/fatiando/PROJECT/releases
and
click on "Draft a new release":
- Use the version number (including the
v
) as the "Tag version" and "Release title". - Fill the release description with a Markdown version of the latest
changelog entry (including the DOI badge). The
doc/changes.rst
file can be converted to Markdown usingpandoc
:pandoc -s doc/changes.rst -o changes.md --wrap=none
- Publish the release.
Grab a zip file from the Github release and upload to Zenodo using the previously reserved DOI.
After Travis is done building the tag and all builds pass, we need to update the conda package. Fortunately, the conda-forge bot will submit a PR updating the package for us (it may take a couple of hours to do so). Most releases can be merged right away but some might need further changes to the conda recipe:
- If the release added new dependencies, make sure they are included in the
meta.yaml
file. - If dropping/adding support for Python versions (or version of other
packages) make sure the correct version restrictions are applied in
meta.yaml
.