mirror of
https://mau.dev/maunium/synapse.git
synced 2025-01-19 04:41:59 +01:00
parent
0644ac0989
commit
24f07a83e6
2 changed files with 3 additions and 1 deletions
1
changelog.d/9937.bugfix
Normal file
1
changelog.d/9937.bugfix
Normal file
|
@ -0,0 +1 @@
|
|||
Fix bug where `/sync` would break if using the latest version of `attrs` dependency, by pinning to a previous version.
|
|
@ -78,7 +78,8 @@ REQUIREMENTS = [
|
|||
# we use attr.validators.deep_iterable, which arrived in 19.1.0 (Note:
|
||||
# Fedora 31 only has 19.1, so if we want to upgrade we should wait until 33
|
||||
# is out in November.)
|
||||
"attrs>=19.1.0",
|
||||
# Note: 21.1.0 broke `/sync`, see #9936
|
||||
"attrs>=19.1.0,<21.1.0",
|
||||
"netaddr>=0.7.18",
|
||||
"Jinja2>=2.9",
|
||||
"bleach>=1.4.3",
|
||||
|
|
Loading…
Add table
Reference in a new issue