File: downgrade-setuptools-rust.patch

package info (click to toggle)
matrix-synapse 1.143.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 79,852 kB
  • sloc: python: 258,912; javascript: 7,330; sql: 4,733; sh: 1,281; perl: 626; makefile: 207
file content (21 lines) | stat: -rw-r--r-- 701 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
From: Andrej Shadura <andrewsh@debian.org>
Date: Thu, 6 Oct 2022 19:00:16 +0200
Subject: Don't make setuptools_rust an actual runtime dependency

---
 pyproject.toml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pyproject.toml b/pyproject.toml
index 0cec00b..ad96533 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -91,7 +91,7 @@ dependencies = [
     # This isn't really a dev-dependency, as `poetry install --without dev` will fail,
     # but the alternative is to add it to the main list of deps where it isn't
     # needed.
-    "setuptools_rust>=1.3",
+    #"setuptools_rust>=1.3",
 
     # This is used for parsing multipart responses
     "python-multipart>=0.0.9",