Contributor Guide
Thank you for your interest in improving this project. This project is open-source under the MIT license and highly welcomes contributions in the form of bug reports, feature requests, and pull requests.
Here is a list of important resources for contributors:
How to report a bug
Report bugs on the Issue Tracker.
How to request a feature
Request features on the Issue Tracker.
How to set up your development environment
You need Python 3.10+ and the following tools:
You can install Poetry with:
$ pip install poetry
Install the package with development requirements:
$ make install
You can now run an interactive Python session, or the command-line interface:
$ poetry run python
$ poetry run spectrum_io
How to test the project
Run the full test suite with all checks (formatting, type checking, and unit tests):
$ make check
Run only unit tests:
$ make test
Run type checking with mypy:
$ make typecheck
Run code formatting and linting checks:
$ make lint
Auto-format your code with ruff:
$ make format
Unit tests are located in the tests directory,
and are written using the pytest testing framework.
How to build and view the documentation
This project uses Sphinx together with several extensions to build the documentation.
To install all required dependencies including documentation tools, use make install which installs all dependencies from pyproject.toml:
$ make install
To build the documentation run:
$ make docs
This will build the documentation and automatically open it in your default browser.
Alternatively, to manually build the documentation:
$ cd docs
$ poetry run make html
The generated static HTML files can be found in the _build/html folder. Simply open them with your favorite browser.
How to submit changes
Open a pull request to submit changes to this project against the development branch.
Your pull request needs to meet the following guidelines for acceptance:
The test suite must pass without errors (run make check locally).
Include unit tests. This project maintains a high code coverage.
If your changes add functionality, update the documentation accordingly.
To run linting and code formatting checks before committing your change, you can install pre-commit as a Git hook by running:
$ pre-commit install
It is recommended to open an issue before starting work on anything. This will allow a chance to talk it over with the owners and validate your approach.
How to make a release
Releases are published to PyPI automatically when a GitHub Release is published.
The version string lives only in pyproject.toml — __version__ is read from
the installed package metadata at runtime.
Release Drafter continuously updates a draft GitHub Release with an accumulated changelog
from merged PR labels and a suggested next version (e.g. 0.9.1). It is a changelog
generator — it never modifies any file in the repository.
Branch model: development is the integration branch; main mirrors exactly
what is published on PyPI. The release tag is created on development and subsequently
merged into main.
Check the draft release on GitHub to see the suggested next version (e.g.
0.10.0). The version is inferred automatically from the labels on merged PRs since the last release.Bump the version on
development:$ git checkout development && git pull $ poetry version <next-version> # e.g. poetry version 0.10.0 $ git add pyproject.toml $ git commit -m "bump version to $(poetry version -s)" $ git push origin development
Publish the draft release on GitHub. The draft already targets
development(set viacommitish: developmentin.github/release-drafter.yml), so no target branch change is needed. Clicking Publish release triggers the CI workflow, which:Re-runs the full CI suite as a hard gate.
Builds the wheel and sdist with
poetry build.Publishes to PyPI via OIDC Trusted Publishing (no secrets required).
Creates the tag
v<next-version>ondevelopment.
Merge the tagged commit into
mainso thatmainreflects the release:$ git checkout main && git pull $ git merge v<next-version> --no-ff -m "release: v<next-version>" $ git push origin main