mirror of
https://github.com/jazzband/django-admin-sortable.git
synced 2026-03-17 06:20:33 +00:00
Refactored how the sortable_by properties get populated by looping over the model fields until we get to the SortableForeignKey, then grabbing properties from the field and its related data.
16 lines
422 B
Python
16 lines
422 B
Python
VERSION = (1, 3, "f", 0) # 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])
|
|
if VERSION[3] != "f":
|
|
version = "%s%s%s" % (version, VERSION[3], VERSION[4])
|
|
if DEV_N:
|
|
version = "%s.dev%s" % (version, DEV_N)
|
|
return version
|
|
|
|
|
|
__version__ = get_version()
|