32 lines
1.0 KiB
Diff
32 lines
1.0 KiB
Diff
From a37b6f58ce9fa270848bd805f3f05ea03f0ae10e Mon Sep 17 00:00:00 2001
|
|
From: Stanislav Levin <slev@altlinux.org>
|
|
Date: Fri, 30 Sep 2022 14:45:33 +0300
|
|
Subject: [PATCH] Drop no longer used runtime dependency on attrs
|
|
|
|
The last usage of attrs has been dropped in 22b12e7, but
|
|
attrs is still marked as runtime dependency in pyproject.toml.
|
|
|
|
Fixes: https://github.com/p1c2u/openapi-schema-validator/issues/53
|
|
Signed-off-by: Stanislav Levin <slev@altlinux.org>
|
|
|
|
Reference: https://github.com/python-openapi/openapi-schema-validator/commit/a37b6f58ce9fa270848bd805f3f05ea03f0ae10e
|
|
---
|
|
pyproject.toml | 1 -
|
|
1 file changed, 1 deletion(-)
|
|
|
|
diff --git a/pyproject.toml b/pyproject.toml
|
|
index 6269156..499fb44 100644
|
|
--- a/pyproject.toml
|
|
+++ b/pyproject.toml
|
|
@@ -56,7 +56,6 @@ jsonschema = "^4.0.0"
|
|
rfc3339-validator = {version = "*", optional = true}
|
|
strict-rfc3339 = {version = "*", optional = true}
|
|
isodate = {version = "*", optional = true}
|
|
-attrs = ">=19.2.0"
|
|
|
|
[tool.poetry.extras]
|
|
rfc3339-validator = ["rfc3339-validator"]
|
|
--
|
|
2.18.2
|
|
|