Fix SA import issue, refs #215
This commit is contained in:
@@ -4,6 +4,12 @@ Changelog
|
|||||||
Here you can see the full list of changes between each SQLAlchemy-Utils release.
|
Here you can see the full list of changes between each SQLAlchemy-Utils release.
|
||||||
|
|
||||||
|
|
||||||
|
0.32.5 (2016-04-29)
|
||||||
|
^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
|
- Fixed import issue with latest version of SQLAlchemy (#215)
|
||||||
|
|
||||||
|
|
||||||
0.32.4 (2016-04-25)
|
0.32.4 (2016-04-25)
|
||||||
^^^^^^^^^^^^^^^^^^^
|
^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
|
@@ -94,4 +94,4 @@ from .types import ( # noqa
|
|||||||
WeekDaysType
|
WeekDaysType
|
||||||
)
|
)
|
||||||
|
|
||||||
__version__ = '0.32.4'
|
__version__ = '0.32.5'
|
||||||
|
@@ -1,11 +1,8 @@
|
|||||||
from __future__ import absolute_import
|
from __future__ import absolute_import
|
||||||
|
|
||||||
from sqlalchemy import types
|
from sqlalchemy import types
|
||||||
from sqlalchemy.dialects.postgresql.base import (
|
from sqlalchemy.dialects.postgresql import ARRAY
|
||||||
ARRAY,
|
from sqlalchemy.dialects.postgresql.base import ischema_names, PGTypeCompiler
|
||||||
ischema_names,
|
|
||||||
PGTypeCompiler
|
|
||||||
)
|
|
||||||
from sqlalchemy.sql import expression
|
from sqlalchemy.sql import expression
|
||||||
|
|
||||||
from ..primitives import Ltree
|
from ..primitives import Ltree
|
||||||
|
Reference in New Issue
Block a user