Skip to content

Latest commit

 

History

History
138 lines (103 loc) · 5.54 KB

CONTRIBUTING.md

File metadata and controls

138 lines (103 loc) · 5.54 KB

Contributing Guidelines

Contributions are welcome from the community. Questions can be asked on the issues page. Before creating a new issue, please take a moment to search and make sure a similar issue does not already exist. If one does exist, you can comment (most simply even with just a +1) to show your support for that issue.

If you have direct contributions you would like considered for incorporation into the project you can fork this repository and submit a pull request for review.

Please see the Guidelines for Contributors section of the ShakeMap manual for information on contribution to ShakeMap:

http://cbworden.github.io/shakemap/manual4_0/tg_contributing.html

For additional information, please see the USGS software development best practices guide and the USGS Code of Scientific Conduct.

The big picture guidelines are:

  • Submit changes via a pull request from a feature branch section on Merge Requests for more details.
  • We generally try to follow pep8 as much as possible.
  • Include doc strings for all public methods. We use the Google doc string style.
  • Please use black to format python code.
  • Use Python's built-in exceptions as much as possible.

Merge Request Guidelines

  1. Use concise, yet informative commit messages.
  2. Rebase (if you know how) to provide an easy-to-follow history of changes in your branch.
  3. Update the changelog (CHANGELOG.md) for significant changes into the "main" section.
  4. Update docs if relevant.
  5. Add unit tests for any new features.
  6. Run the unit tests (we use pytest) prior to sending in your changes.

Commit Messages

Commit messages should begin with a one line concise yet informative summary. A blank line should separate the one line summary from any additional information. We strongly recommend using the following templates, in which the first starts with a commit type (in all caps) that indicates the type of changes in the commit.

For example, a commit related to documentation would look like:

DOCS: [one line description]

[Optional additional information]

We use the set of commit types from the angular project:

  • BUILD: Changes that affect the build system or external dependencies (e.g., pyrpoject.toml)
  • CI: Changes to our CI configuration files and scripts (e.g., .gitlab-ci.yml)
  • DOCS: Documentation only changes
  • FEAT: A new feature
  • FIX: A bug fix
  • PERF: A code change that improves performance
  • REFACTOR: A code change that neither fixes a bug nor adds a feature
  • STYLE: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)
  • TEST: Adding missing tests or correcting existing tests

Rebasing

:::{danger} Rebasing can do permanent damage to your branch if you do not do it correctly. Practice on a scratch repository until you are comfortable with how rebasing works. :::

You can use rebasing to clean up the history of commits in a branch to make the changes easier to follow. Common reasons to rebase include:

  • squashing (combining) several closely related commits into a single commit,
  • reordering commits, especially to allow squashing, and
  • dropping (removing) commits related to debugging.

Releases

  1. Create a release candidate branch with a name related to the release version like rc-v121.
  2. Update version in pyproject.toml.
  3. Add new section to code.json; update "metadataLastUpdated" date and the urls that include the version.
  4. Update CHANGELOG.md to include the changes for this version. The goal is for the changelog to be kept up to date with each merge request, so this step should largely consist of creating a new section for this release and moving content into it from "main".
  5. Rebuild docs (see instructions below for more details).
  6. Create tag locally with
    git tag v1.2.1
    
  7. Push tag to upstream/main
    git push origin v1.2.1
    
  8. Create release from tag in gitlab. Give it a release title like v1.2.1.
  9. Copy/paste the relevant part of the changelog into the "describe this release" section.

Note that the command line program repotag from the esi-utils-io repository will help automate these steps.

Build Documentation

Some additional packages are required to build the documentation, which can be included with the doc install option, e.g.,

pip install .[doc]

Then the docs are built with

cd doc_source/
./makedocs.sh

Note that the script includes the follow arguments:

  • rebuild - Build documentation from a clean starting point.
  • update - Incremental build of the documentation. No cleaning.
  • clean_data - Remove all temporary data files generated when building the documentation.
  • clean_all - Remove all temporary data files and generated documentation.

The docs can then be previewed by opening docs/index.html in a browser.

Notes:

  • Never edit the contents of docs, only edit the files in doc_source.