From bf439f1eeca11e9df3b941d235533f6ef5c6fd39 Mon Sep 17 00:00:00 2001 From: "Jan Gleixner (via aishell)" Date: Tue, 4 Aug 2026 08:06:32 +0000 Subject: [PATCH] Fix contributor dependency installation --- docs/contributing.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/contributing.md b/docs/contributing.md index 4faba0274..6026d4e1f 100644 --- a/docs/contributing.md +++ b/docs/contributing.md @@ -13,8 +13,7 @@ In addition to the packages needed to _use_ this package, you need additional py the documentation_. It's easy to install them using `pip`: ```bash -cd spatialdata-io -pip install -e ".[dev,test,doc]" +pip install -e . --group dev --group test --group docs ``` ## Code-style @@ -51,7 +50,7 @@ and [prettier][prettier-editors]. ## Writing tests ```{note} -Remember to first install the package with `pip install '-e[dev,test]'` +Remember to first install the package with `pip install -e . --group dev --group test` ``` This package uses [pytest][] for automated testing. Please [write tests][scanpy-test-docs] for every function added to the package.