summary refs log tree commit diff
path: root/INSTALL.md
diff options
context:
space:
mode:
authorPatrick Cloke <clokep@users.noreply.github.com>2020-09-01 08:16:58 -0400
committerGitHub <noreply@github.com>2020-09-01 08:16:58 -0400
commit318245eaa6d37a27ca72168356198fdd90abfbb7 (patch)
tree4a86ef7c7db70eae15d9c56c73cddeae243593f8 /INSTALL.md
parentMove and rename `get_devices_with_keys_by_user` (#8204) (diff)
downloadsynapse-318245eaa6d37a27ca72168356198fdd90abfbb7.tar.xz
Do not install setuptools 50.0. (#8212)
This is due to compatibility issues with old Python versions.
Diffstat (limited to 'INSTALL.md')
-rw-r--r--INSTALL.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/INSTALL.md b/INSTALL.md
index 22f7b7c029..bdb7769fe9 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -73,7 +73,7 @@ mkdir -p ~/synapse
 virtualenv -p python3 ~/synapse/env
 source ~/synapse/env/bin/activate
 pip install --upgrade pip
-pip install --upgrade setuptools
+pip install --upgrade setuptools!=50.0  # setuptools==50.0 fails on some older Python versions
 pip install matrix-synapse
 ```