From 46837be88e3fd233ead1d98c062b3defca7888a4 Mon Sep 17 00:00:00 2001 From: Phillip Cloud <417981+cpcloud@users.noreply.github.com> Date: Sun, 4 Feb 2024 07:21:48 -0500 Subject: [PATCH] docs(dev): update maintainers guide --- docs/contribute/04_maintainers_guide.qmd | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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.