Skip to content
This repository was archived by the owner on Aug 19, 2025. It is now read-only.

Commit c90a7e0

Browse files
Version 0.1.12 - Expose typesystem.Any
1 parent fbebc0a commit c90a7e0

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

typesystem/__init__.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1+
from typesystem.base import ValidationError
12
from typesystem.fields import (
23
Array,
4+
Any,
35
Boolean,
46
Choice,
57
Date,
@@ -21,9 +23,10 @@
2123
from typesystem.tokenize.tokenize_json import validate_json
2224
from typesystem.tokenize.tokenize_yaml import validate_yaml
2325

24-
__version__ = "0.1.11"
26+
__version__ = "0.1.12"
2527
__all__ = [
2628
"Array",
29+
"Any",
2730
"Boolean",
2831
"Choice",
2932
"Date",
@@ -41,6 +44,7 @@
4144
"Text",
4245
"Time",
4346
"Union",
47+
"ValidationError",
4448
"SchemaDefinitions",
4549
"from_json_schema",
4650
"to_json_schema",

0 commit comments

Comments
 (0)