Below is an outline of the steps you can follow if you want to contribute.
1. Create a fork of the unravelsports repository
git checkout -b feat/some-new-feature
or
git checkout -b bug/fix-some-bug
4. If applicable add pytest test(s) to the tests/
directory and verify they are successful by running:
pytest tests/test_my_new_test.py
black .
Make sure you have black installed by running:
pip install black[jupyter]
git add the_file_you_changed.py
git commit -m "I fixed a thing"
git push --set-upstream origin bug/fix-some-bug
7. Navigate to unravelsports Pull requests and create New pull request that merges your bug/fix-some-bug
branch into main
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt