Skip to content

Commit

Permalink
Merge pull request #1367 from phenobarbital/py313-support
Browse files Browse the repository at this point in the history
fix datamodel imports
  • Loading branch information
phenobarbital authored Jan 2, 2025
2 parents 335524c + 11583c4 commit 190660a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion asyncdb/models/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from dataclasses import _MISSING_TYPE, MISSING, is_dataclass, make_dataclass
from numpy import int64
from datamodel import BaseModel, Field
from datamodel.base import Meta
from datamodel.abstract import Meta
from datamodel.exceptions import ValidationError
from datamodel.types import MODEL_TYPES, DB_TYPES

Expand Down
2 changes: 1 addition & 1 deletion asyncdb/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
__title__ = "asyncdb"
__description__ = "Library for Asynchronous data source connections \
Collection of asyncio drivers."
__version__ = "2.9.10"
__version__ = "2.9.11"
__author__ = "Jesus Lara"
__author_email__ = "[email protected]"
__license__ = "BSD"

0 comments on commit 190660a

Please sign in to comment.