👍 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.
I don't want to read this whole thing, I just have a question!!!
What should I know before I get started?
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.
We have an official message board with a detailed FAQ and where the community chimes in with helpful advice if you have questions.
- Read the overview
- Do the SSSOM tutorial
- Read about the SSSOM toolkit, which is managed in a different repo
This section guides you through submitting a bug report for SSSOM. Following these guidelines helps maintainers and the community understand your report 📝, reproduce the behavior 💻 💻, and find related reports 🔎.
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.
- 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.
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?
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.
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:
- Follow all instructions in the pull request template (you will see them when you open a pull request).
- Follow the styleguides
- 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.
Contributors are strongly advised to run the test suite locally even before submitting a pull request. This requires a working Python environment that includes a working version of Poetry.
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
Furthermore, any change to the LinkML model should also be tested against SSSOM-Py. To do so:
- In the current
sssom
repository, build the Python files derived from the LinkML:
$ make all
- Clone the SSSOM-Py repository somewhere (outside of your current checkout of
sssom
):
$ git clone https://github.com/mapping-commons/sssom-py.git
- Initialise the Poetry environment inside the newly cloned SSSOM-Py repository:
$ poetry install
(Beware that SSSOM-Py does not support Python 3.12, so if that is your default Python version, you may need to explicitly require that Python < 3.12 be used instead, e.g. with poetry env use 3.11
.)
- Forcefully install your local version of
sssom-schema
in the newly initialised environment:
$ poetry run python -m 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.
- Run SSSOM-Py’s test suite:
$ poetry run tox -e py
- 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
- 🎨
- Use Markdown.
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.
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. |