Skip to content

Commit 2bf31f7

Browse files
authored
Pin to frozendict<2.1.2 (matrix-org#11625)
... to work around breakage on buster (Marco-Sulla/python-frozendict#41)
1 parent 57ca8ab commit 2bf31f7

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

changelog.d/11625.misc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Work around a build problem on Debian Buster.

synapse/python_dependencies.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@
5050
REQUIREMENTS = [
5151
# we use the TYPE_CHECKER.redefine method added in jsonschema 3.0.0
5252
"jsonschema>=3.0.0",
53-
"frozendict>=1",
53+
# frozendict 2.1.2 is broken on Debian 10: https://github.com/Marco-Sulla/python-frozendict/issues/41
54+
"frozendict>=1,<2.1.2",
5455
"unpaddedbase64>=1.1.0",
5556
"canonicaljson>=1.4.0",
5657
# we use the type definitions added in signedjson 1.1.

0 commit comments

Comments
 (0)