From 3b5cdef7f9193b5912d83c108874e0856ccc8fe8 Mon Sep 17 00:00:00 2001 From: Justin Mayer Date: Mon, 20 Apr 2020 09:00:38 +0200 Subject: [PATCH] Update dev docs to reflect Poetry behavior change Otherwise, `poetry install` replaces the editable installation with the current PyPI version. --- docs/contribute.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/contribute.rst b/docs/contribute.rst index 221c405b..66890ae7 100644 --- a/docs/contribute.rst +++ b/docs/contribute.rst @@ -44,8 +44,9 @@ to manually create and activate a virtual environment:: Install the needed dependencies and set up the project:: - pip install -e ~/projects/pelican invoke + pip install invoke invoke setup + pip install -e ~/projects/pelican Your local environment should now be ready to go!