django-admin-sortable/adminsortable/__init__.py
Brandon Taylor 5e307d687b Version bump to 1.7.1.
Added Brazilian Portugese locale.
Fixed minor css scoping issue that caused stacked template items that were sortable to not display the 'move' cusor type.
Fixed comment line in manage.py for PEP8.
2014-08-21 22:14:36 -04:00

17 lines
393 B
Python

VERSION = (1, 7, 1) # following PEP 386
DEV_N = None
def get_version():
version = '{}.{}'.format(VERSION[0], VERSION[1])
if VERSION[2]:
version = '{}.{}'.format(version, VERSION[2])
try:
if VERSION[3]:
version = '{}.{}'.format(version, VERSION[3])
except IndexError:
pass
return version
__version__ = get_version()