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
@@ -236,7 +236,7 @@ pydantic = ">=1.7.4, <3"
# 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"
|