Fixed requirements

This commit is contained in:
Konsta Vesterinen
2013-03-26 13:27:54 +02:00
parent 1638653328
commit d9231f87c2
3 changed files with 11 additions and 3 deletions

View File

@@ -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)
^^^^^^^^^^^^^^^^^^

View File

@@ -1 +1,2 @@
SQLAlchemy==0.7.8
SQLAlchemy>=0.7.8
psycopg2>=2.4.6

View File

@@ -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=[