From 7f9d3b44f0059d78edac6360f94a2a086cd25c5b Mon Sep 17 00:00:00 2001 From: Jan Gleixner Date: Tue, 18 Aug 2026 11:07:07 +0200 Subject: [PATCH] Fix contributor dependency installation instructions --- docs/contributing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/contributing.md b/docs/contributing.md index 33afd7d0..10317dc9 100644 --- a/docs/contributing.md +++ b/docs/contributing.md @@ -134,7 +134,7 @@ we describe how you can manage environments manually using `pip`: ```bash python3 -m venv .venv source .venv/bin/activate -pip install -e ".[dev,test,doc]" +pip install -e . --group dev --group test --group doc ``` The `.venv` directory is typically automatically discovered by IDEs such as VS Code.