Fixed UUID import issues

This commit is contained in:
Konsta Vesterinen
2013-07-22 11:55:07 +03:00
parent a5143e2b8a
commit 4d5f9a24f8
3 changed files with 8 additions and 1 deletions

View File

@@ -4,6 +4,12 @@ Changelog
Here you can see the full list of changes between each SQLAlchemy-Utils release.
0.14.6 (2013-07-22)
^^^^^^^^^^^^^^^^^^^
- Fixed UUID import issues
0.14.5 (2013-07-22)
^^^^^^^^^^^^^^^^^^^

View File

@@ -24,7 +24,7 @@ class PyTest(Command):
setup(
name='SQLAlchemy-Utils',
version='0.14.5',
version='0.14.6',
url='https://github.com/kvesteri/sqlalchemy-utils',
license='BSD',
author='Konsta Vesterinen',

View File

@@ -1,3 +1,4 @@
from __future__ import absolute_import
import uuid
from sqlalchemy import types
from sqlalchemy.dialects import postgresql