From 7c143e2fb13f247ceb7e8391d9e9b15dd1cbfe46 Mon Sep 17 00:00:00 2001 From: Michael Krissgau Date: Wed, 26 Mar 2025 15:03:38 +0100 Subject: [PATCH] docs: replace 'poetry shell' with 'poetry env activate' for poetry>=2.0.0 Signed-off-by: Michael Krissgau --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 5146de13..b7511e1b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -37,7 +37,7 @@ To install Poetry, follow the documentation here: https://python-poetry.org/docs To activate the Virtual Environment, run: ```bash -poetry shell +poetry env activate ``` This will spawn a shell with the Virtual Environment activated. If the Virtual Environment doesn't exist, Poetry will create one for you. Then, to install dependencies, run: