At this time we are currently accepting the current forms of contributions:
- Bug reports (keep in mind that changing environment behavior should be minimized as that requires releasing a new version of the environment and makes results hard to compare across versions)
- Pull requests for bug fixes
- Documentation improvements
- Features
Notably, we are not accepting these forms of contributions:
- New environments
This section contains technical instructions & hints for the contributors.
The project uses pyright
to check types.
To type check locally, install pyright
per official instructions.
It's configuration lives within pyproject.toml
. It includes list of included and excluded files currently supporting type checks.
To run pyright
for the project, run the pre-commit process (pre-commit run --all-files
) or pyright --project=pyproject.toml
Alternatively, pyright is a built-in feature of VSCode that will automatically provide type hinting.
If you would like to add typing to a module in the project,
the list of included, excluded and strict files can be found in pyproject.toml (pyproject.toml -> [tool.pyright]).
To run pyright
for the project, run the pre-commit process (pre-commit run --all-files
) or pyright
The CI will run several checks on the new code pushed to the Gymnasium repository. These checks can also be run locally without waiting for the CI by following the steps below:
- install
pre-commit
, - Install the Git hooks by running
pre-commit install
.
Once those two steps are done, the Git hooks will be run automatically at every new commit.
The Git hooks can also be run manually with pre-commit run --all-files
, and if needed they can be skipped (not recommended) with git commit --no-verify
.
Note: you may have to run pre-commit run --all-files
manually a couple of times to make it pass when you commit, as each formatting tool will first format the code and fail the first time but should pass the second time.
Additionally, for pull requests, the project runs a number of tests for the whole project using pytest.
These tests can be run locally with pytest
in the root folder. If any doctest is modified, run pytest --doctest-modules --doctest-continue-on-failure gymnasium
to check the changes.
Pydocstyle has been added to the pre-commit process such that all new functions follow the google docstring style. All new functions require either a short docstring, a single line explaining the purpose of a function or a multiline docstring that documents each argument and the return type (if there is one) of the function. In addition, new file and class require top docstrings that should outline the purpose of the file/class. For classes, code block examples can be provided in the top docstring and not the constructor arguments.
To check your docstrings are correct, run pre-commit run --all-files
or pydocstyle --source --explain --convention=google
.
If all docstrings that fail, the source and reason for the failure is provided.
Make sure that you have install the requirements:
cd docs
pip install -r requirements.txt
Then run
python _scripts/gen_mds.py
make dirhtml
Now, navigate to _build/dirhtml
and open index.html
in your browser.