Skip to content

Commit 4d01e87

Browse files
authored
fix: added runtime dependnecy referencing>=0.28.4" (#846)
Signed-off-by: Jan Kowalleck <jan.kowalleck@gmail.com>
1 parent 95b560a commit 4d01e87

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,12 +73,13 @@ py-serializable = "^2.0.0"
7373
sortedcontainers = "^2.4.0"
7474
license-expression = "^30"
7575
jsonschema = { version = "^4.18", extras=['format'], optional=true }
76+
referencing = { version = ">=0.28.4", optional=true } # in sync with the transitive dependency of `jsonschema`
7677
lxml = { version=">=4,<7", optional=true }
7778
typing_extensions = { version="^4.6", python = "<3.13"} # for `@deprecated` - which was added in v4.5 but this version appesrs to be broken...
7879

7980
[tool.poetry.extras]
80-
validation = ["jsonschema", "lxml"]
81-
json-validation = ["jsonschema"]
81+
validation = ["jsonschema", "referencing", "lxml"]
82+
json-validation = ["jsonschema", "referencing"]
8283
xml-validation = ["lxml"]
8384

8485
[tool.poetry.group.dev.dependencies]

0 commit comments

Comments
 (0)