From 5a5e19fabe257d53feec5afc9c3bc9d3eb6f45dd Mon Sep 17 00:00:00 2001 From: Joe Shannon Date: Mon, 11 Mar 2024 17:49:20 +0000 Subject: [PATCH] Update developer environment install instructions The constraints.txt file was removed in #43. --- docs/how-to/dev-install.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/how-to/dev-install.md b/docs/how-to/dev-install.md index d957f177..317a771a 100644 --- a/docs/how-to/dev-install.md +++ b/docs/how-to/dev-install.md @@ -17,7 +17,7 @@ You can choose to either develop on the host machine using a `venv` (which requi ``` python3 -m venv venv source venv/bin/activate -pip install -c requirements/constraints.txt -e .[dev] +pip install -e '.[dev]' ``` :::