You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This repo is set to use `pre-commit` to run *isort*, *flake8*, *pydocstring*, *black* ("uncompromising Python code formatter") and mypy when committing new code.
22
20
23
21
```bash
24
-
pre-commit install
22
+
uv run pre-commit install
23
+
24
+
# If needed, you can run pre-commit script manually
25
+
uv run pre-commit run --all-files
25
26
```
26
27
27
28
### Run tests
@@ -30,35 +31,37 @@ Each `titiler`'s modules has its own test suite which can be ran independently
4. Run [`bump-my-version`](https://callowayproject.github.io/bump-my-version/) to update all titiler's module versions: `bump-my-version bump minor --new-version 0.20.0`
11
+
4. Run [`bump-my-version`](https://callowayproject.github.io/bump-my-version/) to update all titiler's module versions: `uv run bump-my-version bump minor --new-version 0.20.0`
12
12
13
13
5. Push your release branch, create a PR, and get approval
0 commit comments