mirror of
https://github.com/jazzband/django-admin-sortable.git
synced 2026-03-17 06:20:33 +00:00
12 lines
254 B
Python
Executable file
12 lines
254 B
Python
Executable file
VERSION = (1, 3, 8) # 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()
|