Skip to content

Latest commit

 

History

History
518 lines (431 loc) · 28.3 KB

File metadata and controls

518 lines (431 loc) · 28.3 KB

Contributing to SSSOM

👍 First of all: Thank you for taking the time to contribute!

The following is a set of guidelines for contributing to SSSOM. They are derived from the excellent contribution guidelines for the ATOM Editor and are mostly guidelines, not rules. Use your best judgment, and feel free to propose changes to this document in a pull request.

Table Of Contents

Code of Conduct

I don't want to read this whole thing, I just have a question!!!

What should I know before I get started?

How Can I Contribute?

Style Guides

Additional Notes

Code of Conduct

This project and everyone participating in it is governed by the SSSOM Code of Conduct. By participating, you are expected to uphold this code. Please report unacceptable behavior to a member of the SSSOM core team.

I don't want to read this whole thing I just have a question!!!

We have an official message board with a detailed FAQ and where the community chimes in with helpful advice if you have questions.

What should I know before I get started?

How Can I Contribute?

Reporting Bugs

This section guides you through submitting a bug report for SSSOM. Following these guidelines helps maintainers and the community understand your report :pencil:, reproduce the behavior :computer: :computer:, and find related reports :mag_right:.

Before creating bug reports, please check this list as you might find out that you don't need to create one. When you are creating a bug report, please include as many details as possible. Wherever available, use existing issue tracker templates, the information it asks for helps us resolve issues faster.

Note: If you find a Closed issue that seems like it is the same thing that you're experiencing, open a new issue and include a link to the original issue in the body of your new one.

Before Submitting A Bug Report

  • Check the discussions for a list of common questions and problems.
  • Decide whether the issue should be reported in the tracker for the SSSOM data model or the tracker for the SSSOM toolkit.
  • Perform a cursory search to see if the problem has already been reported. If it has and the issue is still open, add a comment to the existing issue instead of opening a new one.

How Do I Submit A (Good) Bug Report or Feature request?

Bugs and feature requests are tracked as GitHub issues. After you've determined which repository your bug or feature is related to, create an issue on that repository providing the information required by the appropriate template.

Explain the problem and include additional details to help maintainers reproduce the problem:

  • Use a clear and descriptive title for the issue to identify the problem/requests.
  • Describe the exact steps which reproduce the problem in as many details as possible. For example, start by explaining how you started SSSOM, e.g. which command exactly you used in the terminal, or how you started SSSOM otherwise. When listing steps, don't just say what you did, but explain how you did it. For example, if you moved the cursor to the end of a line, explain if you used the mouse, or a keyboard shortcut or an SSSOM command, and if so which one?
  • Provide specific examples to demonstrate the steps. Include links to files or GitHub projects, or copy/pasteable snippets, which you use in those examples. If you're providing snippets in the issue, use Markdown code blocks.
  • Describe the behavior you observed after following the steps and point out what exactly is the problem with that behavior.
  • Explain which behavior you expected to see instead and why.

Include details about your configuration and environment:

  • Which version of SSSOM toolkit/model are you using? You can get the exact version by running sssom --version in your terminal
  • What's the name and version of the OS you're using?

Your First Code Contribution

Unsure where to begin contributing to SSSOM? You can start by looking through these beginner and help-wanted issues:

  • Beginner issues - issues which should only require a few lines of code, and a test or two.
  • Help wanted issues - issues which should be a bit more involved than beginner issues.

Considerations when proposing changes to the model

Now that SSSOM 1.0 has been released, and until we start working on a hypothetical SSSOM 2.0, any proposed change to the SSSOM model must consider the issue of backwards compatibility.

The key point is that a set that is compliant with version 1.0 of the specification must be usable “as is” with an implementation compliant with any 1.x version.

This is automatically achieved if all the proposed changes do is adding new optional slots, or new enumeration values. For that reason, it is strongly recommended that evolution of the 1.x branch be limited to this type of changes only, and that other changes be reserved for a hypothetical version 2.0.

In addition, new slots must be marked with a added_in annotation indicating the version in which the slot will be introduced, as in the following example:

my_new_slot:
  instantiates:
    - sssom:Versionable
  annotations:
    added_in: "1.1"

Pull Requests

The process described here has several goals:

  • Maintain SSSOM's quality
  • Fix problems that are important to users
  • Engage the community in working toward the best possible data model and toolkit
  • Enable a sustainable system for SSSOM's maintainers to review contributions

Please follow these steps to have your contribution considered by the maintainers:

  1. Follow all instructions in the pull request template (you will see them when you open a pull request).
  2. Follow the style guides
  3. After you submit your pull request, verify that all status checks are passing
    What if the status checks are failing?If a status check is failing, and you believe that the failure is unrelated to your change, please leave a comment on the pull request explaining why you believe the failure is unrelated. A maintainer will re-run the status check for you. If we conclude that the failure was a false positive, then we will open an issue to track that problem with our status check suite.

While the prerequisites above must be satisfied prior to having your pull request reviewed, the reviewer(s) may ask you to complete additional design work, tests, or other changes before your pull request can be ultimately accepted.

Local testing

Contributors are strongly advised to run the test suite locally even before submitting a pull request.

Prepare the testing environment by running:

$ make install

This only needs to be run once after cloning the repository. After that, the test suite can be run anytime with

$ make test

If you are making a change to the documentation/specification, you should also check how your changes are rendered, by running

$ make serve

and opening http://127.0.0.1:8000/sssom/ with your browser.

Furthermore, any change to the LinkML model should also be tested against SSSOM-Py. To do so:

  1. In the current sssom repository, build the Python files derived from the LinkML:

    $ make all
  2. Clone the SSSOM-Py repository somewhere (outside your current checkout of sssom):

    $ git clone https://github.com/mapping-commons/sssom-py.git
  3. Initialize environment inside the newly cloned repository:

    $ uv sync
  4. Forcefully install your local version of sssom-schema in the newly initialized environment:

    $ uv pip install /path/to/your/sssom/repository

    You may get a warning about “incompatible sssom-schema versions”; this is due to the fact that your local copy of sssom has a version number set to 0.0.0 (the “real” version number is set at release time, when the package is published to PyPI) and can be safely ignored.

  5. Run SSSOM-Py’s test suite:

    $ uv run --all-extras pytest

Making a release

Before making a release, check that all the files that are derived from the LinkML schema are up-to-date. If they are not:

  • re-generate them by running make all;
  • commit all the files that were modified as a result of that command.

Update any other file as needed (e.g. changelog, README, copyright notices, etc.), and commit the corresponding changes.

Once the repository is ready for a release, tag the head commit of the main branch with a version number tag. If the release is intended to be published on the Python Package Index (which it normally should), the version tag MUST be of the form vVERSION (v prefix followed by the actual intended version number).

Push all changes to the main GitHub repository (including the tag), and create the release from the new tag.

Be careful that any new release that bumps either the major or the minor version number, and that is not a pre release, will be interpreted not merely as a new version of the sssom_schema Python package, but as a new version of the SSSOM specification!

Styleguides

Git Commit Messages

  • Use the present tense ("Add feature" not "Added feature")
  • Use the imperative mood ("Move cursor to..." not "Moves cursor to...")
  • Limit the first line to 72 characters or less
  • Reference issues and pull requests liberally after the first line
  • Consider starting the commit message with an applicable emoji:
    • 🎨 :art: when improving the format/structure of the code
    • 🐎 :racehorse: when improving performance
    • 🚱 :non-potable_water: when plugging memory leaks
    • 📝 :memo: when writing docs
    • 🐧 :penguin: when fixing something on Linux
    • 🍎 :apple: when fixing something on macOS
    • 🏁 :checkered_flag: when fixing something on Windows
    • 🐛 :bug: when fixing a bug
    • 🔥 :fire: when removing code or files
    • 💚 :green_heart: when fixing the CI build
    • :white_check_mark: when adding tests
    • 🔒 :lock: when dealing with security
    • ⬆️ :arrow_up: when upgrading dependencies
    • ⬇️ :arrow_down: when downgrading dependencies
    • 👕 :shirt: when removing linter warnings

Documentation Styleguide

Additional Notes

Issue and Pull Request Labels

This section lists the labels we use to help us track and manage issues and pull requests. Most labels are used across all mapping commons repositories.

Type of Issue and Issue State

Label name mapping-commons/sssom 🔎 sssom‑org 🔎 Description
enhancement search search Feature requests.
bug search search Confirmed bugs or reports that are very likely to be bugs.
question search search Questions more than bug reports or feature requests (e.g. how do I do X).
feedback search search General feedback more than bug reports or feature requests.
help-wanted search search The SSSOM core team would appreciate help from the community in resolving these issues.
beginner search search Less complex issues which would be good first issues to work on for users who want to contribute to SSSOM.
more-information-needed search search More information needs to be collected about these problems or feature requests (e.g. steps to reproduce).
needs-reproduction search search Likely bugs, but haven't been reliably reproduced.
blocked search search Issues blocked on other issues.
duplicate search search Issues which are duplicates of other issues, i.e. they have been reported before.
wontfix search search The SSSOM core team has decided not to fix these issues for now, either because they're working as intended or for some other reason.