Contributing¶
Conversations about development and issues take place in the GitHub repository. Feel free to open a new issue if you have something to discuss. We welcome contributions from the community.
Setting up a local installation¶
Start by forking the PyJobShop repository from GitHub. Then, clone your new fork to some local environment:
git clone https://github.com/<your username>/PyJobShop.git
Now, change into the PyJobShop directory, and set-up the virtual environment using uv (v0.5.4 or above):
cd PyJobShop
uv sync --all-extras --all-groups
Now make sure everything runs smoothly, by executing the test suite:
uv run pytest
Note
By default, tests will run on all solvers, which are currently OR-Tools and CP Optimizer.
If you encounter installation issues with CP Optimizer, you can also run tests only for OR-Tools by specifying the --solvers
argument as follows:
uv run pytest --solvers ortools
See the installation instructions page for more details about installing CP Optimizer.
Note
If you use pre-commit, you can use our pre-commit configuration file to set that up too. Simply type:
uv run pre-commit install
After this completes, style and typing issues are automatically checked whenever you make a new commit to your feature branch. To manually run pre-commit over all your files, you can run the following command:
uv run pre-commit run --all-files
Committing changes¶
We use pull requests to develop PyJobShop. For a pull request to be accepted, you must meet the below requirements. This greatly reduces the job of maintaining and releasing the software.
One branch. One feature. Branches are cheap and GitHub makes it easy to merge and delete branches with a few clicks. Avoid the temptation to lump in a bunch of unrelated changes when working on a feature, if possible. This helps us keep track of what has changed when preparing a release.
Commit messages should be clear and concise. This means a subject line of less than 80 characters, and, if necessary, a blank line followed by a commit message body.
Code submissions should always include tests.
Each function, class, method, and attribute needs to be documented using docstrings. We conform to the NumPy docstring standard.
If you are adding new functionality, you need to add it to the documentation by editing (or creating) the appropriate file in
docs/source/
.Make sure your documentation changes parse correctly. See the documentation in the
docs/
directory for details on how to build the documentation locally.
Note
Please use the “Pull request” template on GitHub when opening a pull request.
Licensing¶
PyJobShop is licensed under the MIT license. All code, documentation and other files added to PyJobShop by contributors is licensed under this license, unless another license is explicitly specified in the source file. For your contribution, please check that it can be included into PyJobShop under the MIT license. If you did not write the code yourself, you must ensure that the existing license is compatible and include the license information in the contributed files, or obtain permission from the original author to relicense the contributed code. Contributors keep the copyright for code they wrote and submit for inclusion to PyJobShop.