File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed
jsonschema_specifications Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 1
1
"""
2
2
The JSON Schema meta-schemas and vocabularies, exposed as a Registry.
3
3
"""
4
- from referencing import Registry as _Registry
5
- from referencing .jsonschema import SchemaRegistry as _SchemaRegistry
4
+ from referencing .jsonschema import EMPTY_REGISTRY as _EMPTY_REGISTRY
6
5
7
6
from jsonschema_specifications ._core import _schemas
8
7
9
8
#: A `referencing.jsonschema.SchemaRegistry` containing all of the official
10
9
#: meta-schemas and vocabularies.
11
- REGISTRY : _SchemaRegistry = (_schemas () @ _Registry ()).crawl ()
12
-
10
+ REGISTRY = _schemas () @ _EMPTY_REGISTRY
13
11
__all__ = ["REGISTRY" ]
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ classifiers = [
39
39
]
40
40
dynamic = [" version" ]
41
41
dependencies = [
42
- " referencing>=0.28 .0" ,
42
+ " referencing>=0.31 .0" ,
43
43
" importlib_resources>=1.4.0;python_version<'3.9'" ,
44
44
]
45
45
You can’t perform that action at this time.
0 commit comments