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.
|
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)
|
0.16.25 (2013-10-18)
|
||||||
^^^^^^^^^^^^^^^^^^^^
|
^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
|
5
setup.py
5
setup.py
@@ -44,7 +44,8 @@ extras_require = {
|
|||||||
'password': ['passlib >= 1.6, < 2.0'],
|
'password': ['passlib >= 1.6, < 2.0'],
|
||||||
'color': ['colour>=0.0.4'],
|
'color': ['colour>=0.0.4'],
|
||||||
'ipaddress': ['ipaddr'] if not PY3 else [],
|
'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(
|
setup(
|
||||||
name='SQLAlchemy-Utils',
|
name='SQLAlchemy-Utils',
|
||||||
version='0.16.25',
|
version='0.17.0',
|
||||||
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',
|
||||||
|
@@ -38,7 +38,7 @@ from .types import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
__version__ = '0.16.25'
|
__version__ = '0.17.0'
|
||||||
|
|
||||||
|
|
||||||
__all__ = (
|
__all__ = (
|
||||||
|
Reference in New Issue
Block a user