diff options
author | Eric Eastwood <erice@element.io> | 2022-08-04 01:41:54 -0500 |
---|---|---|
committer | Eric Eastwood <erice@element.io> | 2022-08-04 01:41:56 -0500 |
commit | 756637501f84d4116b7295b183162da354865434 (patch) | |
tree | 33629de6181ee2d9cadca8d774064f226ba030b2 /pyproject.toml | |
parent | Update docs/tracing.md (diff) | |
download | synapse-756637501f84d4116b7295b183162da354865434.tar.xz |
Try fix Twisted/treq problems
See https://github.com/matrix-org/synapse/pull/13400#discussion_r937213304
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyproject.toml b/pyproject.toml index 989d1b3a69..a152b087ab 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -119,7 +119,8 @@ signedjson = "^1.1.0" service-identity = ">=18.1.0" # Twisted 18.9 introduces some logger improvements that the structured # logger utilises -treq = ">=15.1" +twisted = {git = "https://github.com/twisted/twisted.git", rev = "trunk", extras = ["tls"]} +treq = "22.2.0" # Twisted has required pyopenssl 16.0 since about Twisted 16.6. pyOpenSSL = ">=16.0.0" PyYAML = ">=3.11" @@ -182,7 +183,6 @@ idna = { version = ">=2.5", optional = true } opentelemetry-api = {version = "^1.11.1", optional = true} opentelemetry-sdk = {version = "^1.11.1", optional = true} opentelemetry-exporter-jaeger = {version = "^1.11.1", optional = true} -twisted = {git = "https://github.com/twisted/twisted.git", rev = "trunk"} [tool.poetry.extras] # NB: Packages that should be part of `pip install matrix-synapse[all]` need to be specified |