We welcome:
- Bug reports
- Pull requests for bug fixes
- Documentation improvements
- Tutorials and tutorial improvements
We have a bug bounty of sorts for PRs, outlined in the readme
If you're thinking about creating submitting a new environment, please contact us first. There's a very small number of things that we'd like to add in the main PettingZoo repo that we haven't already done.
Contributing code is done through standard github methods:
- Fork this repo
- Commit your code
- Submit a pull request. It will be reviewed by maintainers and they'll give feedback or make requests as applicable
- Make sure existing tests pass (
pip install -e .[testing,all]
and then runpytest -v
-- may also need toapt-get
/brew
install swig
andAutoROM -v
) - Make sure your new code is properly tested and fully-covered
- Any fixes to environments should include fixes to the appropriate documentation
- Changes to environment functionality should be avoided when reasonable, and when they occur the environment version must be bumped.
The CI will run several checks on the new code pushed to the PettingZoo 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.
A few Make commands are provided to quickly test parts of the test suite.
To use it you first need to have Make installed on your local machine:
- Linux:
sudo apt install make
(depends on the distribution/package manager) - MacOS:
brew install make
, the command should then be available asgmake
instead ofmake
(https://formulae.brew.sh/formula/make) - Windows:
choco install make
(https://community.chocolatey.org/packages/make)
Then make help
should give all the available commands and you can use Tab
when writing the command if it's too long to write. For example to run all the tests, one would write make test-all
.
Tutorials are a crucial way to help people learn how to use PettingZoo and we greatly appreciate any contributions. However, we have a few guidelines for tutorials:
- Tutorials should be written in single .py scripts with clear comments explaining the code and thought process with a naive user in mind.
- Tutorials should be within their own directory within
/tutorials/
, with the directory name being the tutorial theme. - Tutorials should come with their own fully versioned
requirements.txt
file that minimally lists all required dependencies needed to run all .py scripts within the directory. - The
requirements.txt
file should includepettingzoo
, fixed to the current release (eg.pettingzoo==1.22.0
).
- Create the directory
/docs/tutorials/<TUTORIAL_THEME>
. - You should make a
.md
file for each tutorial within the above directory. - Each
.md
file should have an "Environment Setup" section and a "Code" section. The title should be of the format<TUTORIAL_THEME>: <TUTORIAL_TOPIC>
. - The Environment Setup section should reference the
requirements.txt
file you created usingliteralinclude
. - The Code section should reference the
.py
file you created usingliteralinclude
. /docs/index.md
should be modified to include every new tutorial.
- Tutorial themes should be added to
.github/workflows/linux-tutorials-test.yml
, by adding the theme name to thetutorial
part of thematrix
. - When making a pull request, tests for the newly added tutorials should run. We cannot accept any tutorials that fail any tests, though we can provide assistance in debugging errors - feel free to reach out for advice at any stage!