django-admin-sortable/adminsortable/__init__.py
Brandon Taylor 32c6f7c034 Fixed unicode support for title context variable in sort view.
Updated version to 1.4.5.1
Updated README.
2013-04-30 08:36:46 -04:00

14 lines
346 B
Python
Executable file

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