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.
- Use concise, yet informative commit messages.
- Rebase (if you know how) to provide an easy-to-follow history of changes in your branch.
- Update the changelog (
CHANGELOG.md
) for significant changes into the "main" section. - Update docs if relevant.
- Add unit tests for any new features.
- Run the unit tests (we use
pytest
) prior to sending in your changes.
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
:::{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.
- Create a release candidate branch with a name related to the release version like
rc-v121
. - Update version in
pyproject.toml
. - Add new section to
code.json
; update "metadataLastUpdated" date and the urls that include the version. - 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". - Rebuild docs (see instructions below for more details).
- Create tag locally with
git tag v1.2.1
- Push tag to upstream/main
git push origin v1.2.1
- Create release from tag in gitlab. Give it a release title like
v1.2.1
. - 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.
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 indoc_source
.