Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/compatibility/loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def load_schema_file(path: Path) -> SchemaRootType:
"""
Load a schema file and return the parsed schema
"""
return TypeAdapter(SchemaRootType).validate_json(path.read_text("utf-8")) # type: ignore[return-value]
return TypeAdapter(SchemaRootType).validate_json(path.read_text("utf-8"))
# mypy has problems to infer the Union type here.


Expand Down
4 changes: 2 additions & 2 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ packaging==24.0
# via sphinx
pycparser==2.21
# via cffi
pydantic==2.4.2
pydantic==2.8.2
# via
# -r docs/requirements.in
# bo4e-schema-tool
pydantic-core==2.10.1
pydantic-core==2.20.1
# via pydantic
pygithub==2.2.0
# via bo4e-schema-tool
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ annotated-types==0.5.0
# via pydantic
iso3166==2.1.1
# via -r requirements.in
pydantic==2.4.2
pydantic==2.8.2
# via -r requirements.in
pydantic-core==2.10.1
pydantic-core==2.20.1
# via pydantic
pyhumps==3.8.0
# via -r requirements.in
Expand Down