Contributors’ Guide¶
Bug reports, feature requests, patches, and other contributions are warmly welcomed. Contribution should be as easy and friendly as possible. Below are a few guidelines contributors should follow to facilitate the process.
Getting Started¶
Create a GitHub account if you don’t have one already.
Search through the tracker to see if an issue or pull request has already been created for what you’re interested in. If so, feel free to add comments to it or just hit the “subscribe” button to follow progress. If not, you can post in the GitHub Discussions forum, or go ahead and create a new issue:
Clearly describe the issue giving as much relevant context as possible.
If it is a bug, include reproduction steps, all known environments in which the bug is exhibited, and ideally a failing test case.
If you would like to contribute a patch, make sure you’ve created your own fork and have cloned it to your computer.
Making Changes¶
To set up a development environment:
If you have Nix, run
nix developfrom within your clone to start a shell where all supported Python versions as well asprekare installed and added to your PATH. This also pinsuvto the flake-provided default Python when initializing.venv.Otherwise, manually ensure you have uv, prek, and at least the latest stable Python version installed and on your PATH.
Run
./init_dev_envThis installs the
prek-based pre-commit hook in your clone, and creates a virtualenv with all the development dependencies installed.Note that prek is used to help achieve uniform code style and quality standards at commit time.
Create a topic branch off of
mainfor your changes:git checkout -b <topic> mainMake commits of logical units.
Match the existing code style and quality standards. If you’re adding a feature, include accompanying tests and documentation demonstrating its correctness and usage.
Run the tests locally with tox to make sure they pass for all supported Python versions (see
envlistintox.inifor the complete list). If you do not have all the referenced Python versions available locally, you can also push the changes on your branch to GitHub to automatically trigger a new GitHub Actions build, which should run the tests for all supported Python versions. Testing your changes with GitHub Actions will require approval from a project admin the first time you submit a PR.Create a concise but comprehensive commit message in the following style:
Include an example commit message in CONTRIBUTING guide #9999 Without this patch the CONTRIBUTING guide would contain no examples of a model commit message. This is a problem because the contributor is left to imagine what the commit message should look like and may not get it right. This patch fixes the problem by providing a concrete example. The first line is an imperative statement summarizing the changes with an issue number from the tracker. The body describes the behavior without the patch, why it's a problem, and how the patch fixes the problem.
Running Tests and Checks¶
The commands below assume you have an active development environment,
set up per the steps above.
Commands that run against the ./init_dev_env virtualenv (such as pytest)
can be prefixed with uv run
or run after activating .venv.
Note, however, that prek — used by the lint, format, and style hooks,
including via tox -e lint — is provided by the nix develop shell
(or your own PATH, if you installed it manually per the setup steps above),
not by the ./init_dev_env virtualenv,
so run those from within nix develop
(or otherwise ensure prek is on your PATH).
Run the test suite on your current Python:
pytestRun a single test:
pytest tests/test_bidict.py::test_frozenbidicts_hashableRun the tests for every supported Python version:
tox(seeenvlistintox.inifor the list).Type-check the code:
ty checkRun all the lint, format, and style hooks:
prek run --all-files(equivalently,tox -e lint).Build the docs:
tox -e docs.
Note that the test suite (configured under [tool.pytest] in
pyproject.toml) executes the doctests in every module’s docstrings
as well as the code blocks in docs/*.rst files. In other words,
example code in docstrings and docs is run as part of the tests, so be sure
to keep it correct and up to date.
Most of bidict’s tests are property-based,
written using Hypothesis.
The bulk of the suite lives in tests/test_bidict.py,
centered on BidictStateMachine
(a stateful
RuleBasedStateMachine)
that checks bidict’s invariants against a simpler reference model,
with user-defined bidict subclass fixtures in tests/bidict_test_fixtures.py.
When adding behavior,
prefer extending these properties and invariants
(and adding doctests where they help document usage)
over adding one-off, example-based tests.
Documentation and Prose Style¶
Prose in bidict’s Markdown and reStructuredText documents
(this file, the *.rst files under docs/, etc.)
follows Semantic Line Breaks (SemBr):
start a new line after each sentence,
and optionally at other natural boundaries between clauses or phrases,
rather than hard-wrapping at a fixed column width
or placing an entire paragraph on a single line.
Because both Markdown and reStructuredText collapse
a single line break within a paragraph into a space,
this keeps the rendered output unchanged
while making diffs smaller and easier to review.
This convention applies to these prose documents only,
not to code, code comments, docstrings, or commit messages.
Submitting Changes¶
Push your changes to a topic branch in your fork of the repository:
git push --set-upstream origin <topic>Submit a pull request providing any additional relevant details necessary.
Acknowledgment should typically be fast but please allow 1-2 weeks for a full response / code review.
The code review process often involves some back-and-forth to get everything right before merging. This is typical of quality software projects that accept patches.
All communication should be supportive and appreciative of good faith efforts to contribute, creating a welcoming and inclusive community.
Sponsoring¶
Bidict is the product of thousands of hours of my unpaid work over the 15+ years that I’ve been the sole maintainer.
If bidict has helped you or your company accomplish your work, please sponsor my work through one of the following, and/or ask your company to do the same:
If you’re not sure which to use, GitHub is an easy option, especially if you already have a GitHub account. Just choose a monthly or one-time amount, and GitHub handles everything else. Your bidict sponsorship on GitHub will automatically go on the same regular bill as any other GitHub charges you pay for. PayPal is another easy option for one-time contributions.
See the following for rationale and examples of companies supporting the open source projects they depend on in this manner:
Code of Conduct¶
All participation in this project should respect the Code of Conduct. [1]
By participating, you are expected to honor this code.