Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Do not install setuptools 50.0, which breaks on Python 3.5.
Browse files Browse the repository at this point in the history
  • Loading branch information
clokep committed Aug 31, 2020
1 parent 45e8f77 commit 58e88fb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions changelog.d/8212.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Do not install setuptools 50.0 on Python 3.5, which leads to a broken configuration.
3 changes: 3 additions & 0 deletions synapse/python_dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,9 @@
"Jinja2>=2.9",
"bleach>=1.4.3",
"typing-extensions>=3.7.4",
# setuptools is required by a variety of dependencies, unfortunately version
# 50.0 is incompatible with Python 3.5, see https://github.com/pypa/setuptools/issues/2352
'setuptools!=50.0;python_version<"3.6"',
]

CONDITIONAL_REQUIREMENTS = {
Expand Down

0 comments on commit 58e88fb

Please sign in to comment.