Contributing guidelines

We welcome any kind of contribution to our software, from simple comment or question to a full fledged pull request. Please read and follow our Code of Conduct.

A contribution can be one of the following cases:

  1. you have a question;

  2. you think you may have found a bug (including unexpected behavior);

  3. you want to make some kind of change to the code base (e.g. to fix a bug, to add a new feature, to update documentation);

  4. you want to make a new release of the code base.

The sections below outline the steps in each case.

You have a question

  1. use the search functionality here to see if someone already filed the same issue;

  2. if your issue search did not yield any relevant results, make a new issue;

  3. apply the “Question” label; apply other labels when relevant.

You think you may have found a bug

  1. use the search functionality here to see if someone already filed the same issue;

  2. if your issue search did not yield any relevant results, make a new issue, making sure to provide enough information to the rest of the community to understand the cause and context of the problem. Depending on the issue, you may want to include:

    • the SHA hashcode of the commit that is causing your problem;

    • some identifying information (name and version number) for dependencies you’re using;

    • information about the operating system;

  3. apply relevant labels to the newly created issue.

You want to make some kind of change to the code base

  1. (important) announce your plan to the rest of the community before you start working. This announcement should be in the form of a (new) issue;

  2. (important) wait until some kind of consensus is reached about your idea being a good idea;

  3. if needed, fork the repository to your own Github profile and create your own feature branch off of the latest master commit. While working on your feature branch, make sure to stay up to date with the master branch by pulling in changes, possibly from the ‘upstream’ repository;

  4. make sure the existing tests still work by running hatch run test;

  5. add your own tests (if necessary);

  6. update or expand the documentation;

  7. update the CHANGELOG.md file with change;

  8. push your feature branch to (your fork of) the s2s repository on GitHub;

  9. create the pull request.

In case you feel like you’ve made a valuable contribution, but you don’t know how to write or run tests for it, or how to generate the documentation: don’t let this discourage you from making the pull request; we can help you! Just go ahead and submit the pull request, but keep in mind that you might be asked to append additional commits to your pull request.

You want to make a release

This section is for maintainers of the package.

  1. Checkout HEAD of main branch with git checkout main and git pull.

  2. Determine what new version (major, minor or patch) to use. Package uses semantic versioning <https://semver.org>.

  3. Run bump2version <major|minor|patch> to update version in package files.

  4. Update CHANGELOG.md with changes between current and new version.

  5. Make sure pre-commit hooks are green for all files by running pre-commit run --all-files.

  6. Commit & push changes to GitHub.

  7. Wait for GitHub actions to be completed and green.

  8. Create a GitHub release

    • Use version as title and tag version.

    • As description use intro text from README.md (to give context to Zenodo record) and changes from CHANGELOG.md

  9. Create a PyPI release.

    1. Create distribution archives with hatch build.

    2. Upload archives to PyPI with hatch publish (use your personal PyPI account).

  10. Verify

    1. Has new Zenodo record been created?

    2. Has stable ReadTheDocs been updated?

    3. Can new version be installed with pip using python3 -m pip install s2spy==<new version>?

  11. Celebrate