mirror of
https://github.com/jazzband/django-admin-sortable.git
synced 2026-04-11 18:31:03 +00:00
Updated jQuery to latest version from Google Ajax API. Integrated pull-request from BlindHunter to add the ability to override templates on a per-model basis. Updated README.
12 lines
254 B
Python
Executable file
12 lines
254 B
Python
Executable file
VERSION = (1, 3, 4) # following PEP 386
|
|
DEV_N = None
|
|
|
|
|
|
def get_version():
|
|
version = "%s.%s" % (VERSION[0], VERSION[1])
|
|
if VERSION[2]:
|
|
version = "%s.%s" % (version, VERSION[2])
|
|
return version
|
|
|
|
|
|
__version__ = get_version()
|