Lines 1-29
Link Here
|
1 |
--- synapse/python_dependencies.py.orig 2022-02-08 11:47:35 UTC |
1 |
--- synapse/python_dependencies.py.orig 2022-02-22 11:32:11 UTC |
2 |
+++ synapse/python_dependencies.py |
2 |
+++ synapse/python_dependencies.py |
3 |
@@ -51,7 +51,7 @@ REQUIREMENTS = [ |
3 |
@@ -86,7 +87,7 @@ REQUIREMENTS = [ |
4 |
# we use the TYPE_CHECKER.redefine method added in jsonschema 3.0.0 |
|
|
5 |
"jsonschema>=3.0.0", |
6 |
# frozendict 2.1.2 is broken on Debian 10: https://github.com/Marco-Sulla/python-frozendict/issues/41 |
7 |
- "frozendict>=1,<2.1.2", |
8 |
+ "frozendict>=1", |
9 |
"unpaddedbase64>=1.1.0", |
10 |
"canonicaljson>=1.4.0", |
11 |
# we use the type definitions added in signedjson 1.1. |
12 |
@@ -77,7 +77,7 @@ REQUIREMENTS = [ |
13 |
"phonenumbers>=8.2.0", |
14 |
# we use GaugeHistogramMetric, which was added in prom-client 0.4.0. |
15 |
# 0.13.0 has an incorrect type annotation, see #11832. |
16 |
- "prometheus_client>=0.4.0,<0.13.0", |
17 |
+ "prometheus_client>=0.4.0", |
18 |
# we use `order`, which arrived in attrs 19.2.0. |
19 |
# Note: 21.1.0 broke `/sync`, see #9936 |
20 |
"attrs>=19.2.0,!=21.1.0", |
21 |
@@ -87,7 +87,7 @@ REQUIREMENTS = [ |
22 |
"typing-extensions>=3.7.4", |
4 |
"typing-extensions>=3.7.4", |
23 |
# We enforce that we have a `cryptography` version that bundles an `openssl` |
5 |
# We enforce that we have a `cryptography` version that bundles an `openssl` |
24 |
# with the latest security patches. |
6 |
# with the latest security patches. |
25 |
- "cryptography>=3.4.7", |
7 |
- "cryptography>=3.4.7", |
26 |
+ "cryptography", |
8 |
+ "cryptography", |
27 |
"ijson>=3.1", |
9 |
"ijson>=3.1", |
28 |
"matrix-common==1.0.0", |
10 |
"matrix-common~=1.1.0", |
29 |
] |
11 |
] |
30 |
- |
|
|