forked from MirrorHub/synapse
Revert pinning of setuptools (#8239)
This commit is contained in:
parent
5bfc79486d
commit
2aa127c207
4 changed files with 2 additions and 6 deletions
|
@ -73,7 +73,7 @@ mkdir -p ~/synapse
|
||||||
virtualenv -p python3 ~/synapse/env
|
virtualenv -p python3 ~/synapse/env
|
||||||
source ~/synapse/env/bin/activate
|
source ~/synapse/env/bin/activate
|
||||||
pip install --upgrade pip
|
pip install --upgrade pip
|
||||||
pip install --upgrade setuptools!=50.0 # setuptools==50.0 fails on some older Python versions
|
pip install --upgrade setuptools
|
||||||
pip install matrix-synapse
|
pip install matrix-synapse
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
Do not install setuptools 50.0. It can lead to a broken configuration on some older Python versions.
|
|
1
changelog.d/8239.misc
Normal file
1
changelog.d/8239.misc
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Revert pinning of setuptools.
|
|
@ -74,10 +74,6 @@ REQUIREMENTS = [
|
||||||
"Jinja2>=2.9",
|
"Jinja2>=2.9",
|
||||||
"bleach>=1.4.3",
|
"bleach>=1.4.3",
|
||||||
"typing-extensions>=3.7.4",
|
"typing-extensions>=3.7.4",
|
||||||
# setuptools is required by a variety of dependencies, unfortunately version
|
|
||||||
# 50.0 is incompatible with older Python versions, see
|
|
||||||
# https://github.com/pypa/setuptools/issues/2352
|
|
||||||
"setuptools!=50.0",
|
|
||||||
]
|
]
|
||||||
|
|
||||||
CONDITIONAL_REQUIREMENTS = {
|
CONDITIONAL_REQUIREMENTS = {
|
||||||
|
|
Loading…
Reference in a new issue