diff --git a/CHANGES.rst b/CHANGES.rst index 2103baa..506d4b1 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,6 +4,12 @@ Changelog Here you can see the full list of changes between each SQLAlchemy-Utils release. +0.7.1 (2013-03-26) +^^^^^^^^^^^^^^^^^^ + +- Fixed requirements (now supports SQLAlchemy 0.8) + + 0.7.0 (2013-03-26) ^^^^^^^^^^^^^^^^^^ diff --git a/requirements.txt b/requirements.txt index 0d54465..e9b2bec 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1,2 @@ -SQLAlchemy==0.7.8 +SQLAlchemy>=0.7.8 +psycopg2>=2.4.6 diff --git a/setup.py b/setup.py index ca1b2ec..df139c9 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ class PyTest(Command): setup( name='SQLAlchemy-Utils', - version='0.7', + version='0.7.1', url='https://github.com/kvesteri/sqlalchemy-utils', license='BSD', author='Konsta Vesterinen', @@ -38,7 +38,8 @@ setup( include_package_data=True, platforms='any', install_requires=[ - 'SQLAlchemy==0.7.8', + 'SQLAlchemy>=0.7.8', + 'psycopg2>=2.4.6' ], cmdclass={'test': PyTest}, classifiers=[