fix for obsolete pydantic parameters

This commit is contained in:
collerek
2021-08-06 16:03:29 +02:00
parent 25adb8378e
commit 521b9e6c12
10 changed files with 89 additions and 34 deletions

View File

@ -41,7 +41,6 @@ from ormar.exceptions import ( # noqa: I100
from ormar.fields import (
BaseField,
BigInteger,
SmallInteger,
Boolean,
DECODERS_MAP,
Date,
@ -57,6 +56,7 @@ from ormar.fields import (
LargeBinary,
ManyToMany,
ManyToManyField,
SmallInteger,
String,
Text,
Time,
@ -77,7 +77,7 @@ class UndefinedType: # pragma no cover
Undefined = UndefinedType()
__version__ = "0.10.15"
__version__ = "0.10.16"
__all__ = [
"Integer",
"BigInteger",