Bumped version, added furl to extra requirements
This commit is contained in:
@@ -4,6 +4,12 @@ Changelog
|
||||
Here you can see the full list of changes between each SQLAlchemy-Utils release.
|
||||
|
||||
|
||||
0.17.0 (2013-10-23)
|
||||
^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
- Added URLType
|
||||
|
||||
|
||||
0.16.25 (2013-10-18)
|
||||
^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
|
5
setup.py
5
setup.py
@@ -44,7 +44,8 @@ extras_require = {
|
||||
'password': ['passlib >= 1.6, < 2.0'],
|
||||
'color': ['colour>=0.0.4'],
|
||||
'ipaddress': ['ipaddr'] if not PY3 else [],
|
||||
'timezone': ['python-dateutil']
|
||||
'timezone': ['python-dateutil'],
|
||||
'url': ['furl >= 0.3.5']
|
||||
}
|
||||
|
||||
|
||||
@@ -56,7 +57,7 @@ for name, requirements in extras_require.items():
|
||||
|
||||
setup(
|
||||
name='SQLAlchemy-Utils',
|
||||
version='0.16.25',
|
||||
version='0.17.0',
|
||||
url='https://github.com/kvesteri/sqlalchemy-utils',
|
||||
license='BSD',
|
||||
author='Konsta Vesterinen, Ryan Leckey, Janne Vanhala, Vesa Uimonen',
|
||||
|
@@ -38,7 +38,7 @@ from .types import (
|
||||
)
|
||||
|
||||
|
||||
__version__ = '0.16.25'
|
||||
__version__ = '0.17.0'
|
||||
|
||||
|
||||
__all__ = (
|
||||
|
Reference in New Issue
Block a user