diff --git a/docs/contribute/04_maintainers_guide.qmd b/docs/contribute/04_maintainers_guide.qmd index 329b4fa3f183..1820121b35b8 100644 --- a/docs/contribute/04_maintainers_guide.qmd +++ b/docs/contribute/04_maintainers_guide.qmd @@ -7,10 +7,7 @@ Ibis maintainers are expected to handle the following tasks as they arise: ## Dependencies -A number of tasks that are typically associated with maintenance are partially or fully automated. - -- [WhiteSource Renovate](https://www.whitesourcesoftware.com/free-developer-tools/renovate/) (Python library dependencies and GitHub Actions) -- [Custom GitHub Action](https://github.com/ibis-project/ibis/actions/workflows/update-deps.yml) (Nix dependencies) +Dependency updates are automated using [Mend Renovate](https://www.mend.io/renovate/). ### poetry @@ -18,8 +15,11 @@ Occasionally you may need to lock [`poetry`](https://python-poetry.org) dependen ```sh poetry lock --no-update +poetry export --extras all --with dev --with test --with docs --without-hashes --no-ansi > requirements-dev.txt ``` +The second step updates `requirements-dev.txt` for developers using `pip`. + ## Adding examples If you're not a maintainer, please open an issue asking us to add your example.