Skip to content

Commit 1227a0f

Browse files
committed
chore(python): Remove with_meta_schemas parameter from type stubs
Signed-off-by: Dmitry Dygalo <[email protected]>
1 parent 1b32654 commit 1227a0f

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

crates/jsonschema-py/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@
1010

1111
- `multipleOf` validation for large integers beyond `i64::MAX`.
1212

13+
### Removed
14+
15+
- `with_meta_schemas` parameter from type stubs (was removed from the API long ago).
16+
1317
## [0.37.4] - 2025-11-30
1418

1519
### Fixed

crates/jsonschema-py/python/jsonschema_rs/__init__.pyi

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,6 @@ def is_valid(
8282
schema: _SchemaT,
8383
instance: Any,
8484
draft: int | None = None,
85-
with_meta_schemas: bool | None = None,
8685
formats: dict[str, _FormatFunc] | None = None,
8786
validate_formats: bool | None = None,
8887
ignore_unknown_formats: bool = True,
@@ -103,7 +102,6 @@ def validate(
103102
schema: _SchemaT,
104103
instance: Any,
105104
draft: int | None = None,
106-
with_meta_schemas: bool | None = None,
107105
formats: dict[str, _FormatFunc] | None = None,
108106
validate_formats: bool | None = None,
109107
ignore_unknown_formats: bool = True,
@@ -124,7 +122,6 @@ def iter_errors(
124122
schema: _SchemaT,
125123
instance: Any,
126124
draft: int | None = None,
127-
with_meta_schemas: bool | None = None,
128125
formats: dict[str, _FormatFunc] | None = None,
129126
validate_formats: bool | None = None,
130127
ignore_unknown_formats: bool = True,

0 commit comments

Comments
 (0)