Please include:
- Which version you are using (
python -c "import tiler; print(tiler.__version__)"
) - A minimal code example to recreate the issue
First off, thanks for taking the time!
Please feel free to contact me with questions.
- Fork the repo, then clone it and install in the editable mode:
git clone [email protected]:YOURNAME/tiler.git && cd tiler
pip install -e .[all]
-
Add your changes!
-
After you've finished with your changes, please run linter, tests and check that coverage didn't go down too much:
black tiler tests
coverage run -m pytest
coverage report
- If you have made any API and/or documentation changes, please regenerate docs by running the script:
cd misc
./docs.sh
-
Once you want to share what you've changed, please commit, push make a pull request to the main repo.
-
Github will run lint and tests, but please don't rely on that and test before pull request :)