Fix SA import issue, refs #215

This commit is contained in:
Konsta Vesterinen
2016-04-29 13:42:35 +03:00
parent 48245b14c7
commit 64933dbfa3
3 changed files with 9 additions and 6 deletions

View File

@@ -4,6 +4,12 @@ Changelog
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)
^^^^^^^^^^^^^^^^^^^

View File

@@ -94,4 +94,4 @@ from .types import ( # noqa
WeekDaysType
)
__version__ = '0.32.4'
__version__ = '0.32.5'

View File

@@ -1,11 +1,8 @@
from __future__ import absolute_import
from sqlalchemy import types
from sqlalchemy.dialects.postgresql.base import (
ARRAY,
ischema_names,
PGTypeCompiler
)
from sqlalchemy.dialects.postgresql import ARRAY
from sqlalchemy.dialects.postgresql.base import ischema_names, PGTypeCompiler
from sqlalchemy.sql import expression
from ..primitives import Ltree