Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 2b64162

Browse files
committedMar 6, 2025·
fix: include extra format dependency for jsonschema package
To make format validation available in the `jsonschema` package, the `format` extra must be included. See https://python-jsonschema.readthedocs.io/en/latest/validate/#validating-formats for more details.
1 parent f8043f5 commit 2b64162

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎tools/schemacode/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ requires-python = ">=3.9"
1313
dependencies = [
1414
"click",
1515
"pyyaml",
16-
"jsonschema"
16+
"jsonschema[format]"
1717
]
1818
classifiers = [
1919
"Development Status :: 4 - Beta",

0 commit comments

Comments
 (0)
Please sign in to comment.