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
* Install dev dependencies with `make dev-dependencies`
48
48
* (optional) It is strongly recommended to install [pre-commit](https://pre-commit.com/#installation)
49
49
and run `pre-commit install` so that formatting and linting are automatically executed during `git commit`.
50
50
* Setup GitHub pages (this need local development setup):
51
-
* Initialise documentation branch `poetry run mike deploy dev latest --update-aliases --push`
51
+
* Initialise documentation branch `uv run mike deploy dev latest --update-aliases --push`
52
52
* Configure GitHub Pages to deploy from the `gh-pages` branch (at URL `https://github.com/GITHUB_NAME_OR_ORGANIZATION/GITHUB_REPOSITORY/settings/pages`)
53
53
* Add the `main` branch and the `v*.*.*` tag rules to the "deployment branches and tags" list in the `gh-pages` environment (at URL `https://github.com/GITHUB_NAME_OR_ORGANIZATION/GITHUB_REPOSITORY/settings/environments`)
54
54
@@ -59,7 +59,7 @@ and remove the marked lines in `workflows/release.yml`.
59
59
60
60
## Package release
61
61
62
-
This setup uses [poetry-dynamic-versioning](https://github.com/mtkennerly/poetry-dynamic-versioning).
62
+
This setup uses [uv-dynamic-versioning](https://github.com/ninoseki/uv-dynamic-versioning/tree/main).
63
63
This means it's not necessary to commit the version in the code but the CI pipeline
64
64
will infer it from the git tag.
65
65
@@ -72,7 +72,7 @@ To release a new version, just create a new release and tag in the GitHub reposi
72
72
the convention `vX.X.X` (semantic versioning preceded by lowercase `v`). It will publish
73
73
the correct version on Pypi, omitting the `v` (ie. `v1.0.0` will publish `1.0.0`).
74
74
75
-
This format can be customized, refer to [poetry-dynamic-versioning docs](https://github.com/mtkennerly/poetry-dynamic-versioning)
75
+
This format can be customized, refer to [uv-dynamic-versioning docs](https://github.com/ninoseki/uv-dynamic-versioning/tree/main).
0 commit comments