Add get_columns to main import, bump version

This commit is contained in:
Konsta Vesterinen
2014-04-21 11:19:54 +03:00
parent 2b3fbdcb72
commit 6730289cec
3 changed files with 5 additions and 3 deletions

View File

@@ -44,7 +44,7 @@ for name, requirements in extras_require.items():
setup( setup(
name='SQLAlchemy-Utils', name='SQLAlchemy-Utils',
version='0.25.2', version='0.25.3',
url='https://github.com/kvesteri/sqlalchemy-utils', url='https://github.com/kvesteri/sqlalchemy-utils',
license='BSD', license='BSD',
author='Konsta Vesterinen, Ryan Leckey, Janne Vanhala, Vesa Uimonen', author='Konsta Vesterinen, Ryan Leckey, Janne Vanhala, Vesa Uimonen',

View File

@@ -5,6 +5,7 @@ from .exceptions import ImproperlyConfigured
from .functions import ( from .functions import (
defer_except, defer_except,
escape_like, escape_like,
get_columns,
identity, identity,
primary_keys, primary_keys,
naturally_equivalent, naturally_equivalent,
@@ -57,7 +58,7 @@ from .types import (
) )
__version__ = '0.25.2' __version__ = '0.25.3'
__all__ = ( __all__ = (
@@ -74,6 +75,7 @@ __all__ = (
force_instant_defaults, force_instant_defaults,
generates, generates,
generic_relationship, generic_relationship,
get_columns,
identity, identity,
instrumented_list, instrumented_list,
merge, merge,

View File

@@ -1,5 +1,5 @@
import sqlalchemy as sa import sqlalchemy as sa
from sqlalchemy_utils.functions import get_columns from sqlalchemy_utils import get_columns
from tests import TestCase from tests import TestCase