summary refs log tree commit diff
path: root/docs/development
diff options
context:
space:
mode:
authorOlivier Wilkinson (reivilibre) <oliverw@matrix.org>2021-10-08 17:11:32 +0100
committerOlivier Wilkinson (reivilibre) <oliverw@matrix.org>2021-10-08 17:11:32 +0100
commit9f23ff78da69c84b9ab6f1dacd4a3fd31d17a812 (patch)
tree88c1ce3d1f81b9400f9eff032bd954deb3bea8e8 /docs/development
parentInclude the requirements for [mypy,lint] in [dev] (diff)
downloadsynapse-9f23ff78da69c84b9ab6f1dacd4a3fd31d17a812.tar.xz
Update contributing guide to use [all,dev]
Diffstat (limited to 'docs/development')
-rw-r--r--docs/development/contributing_guide.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/development/contributing_guide.md b/docs/development/contributing_guide.md
index 580a4f7f98..3bf08a72bb 100644
--- a/docs/development/contributing_guide.md
+++ b/docs/development/contributing_guide.md
@@ -50,7 +50,7 @@ setup a *virtualenv*, as follows:
 cd path/where/you/have/cloned/the/repository
 python3 -m venv ./env
 source ./env/bin/activate
-pip install -e ".[all,lint,mypy,test]"
+pip install -e ".[all,dev]"
 pip install tox
 ```