django-rosetta/rosetta/__init__.py

7 lines
159 B
Python
Raw Permalink Normal View History

VERSION = (0, 10, 1)
2011-06-16 09:25:15 +00:00
2019-02-28 07:57:33 +00:00
def get_version(limit=3):
2016-03-08 09:14:15 +00:00
"""Return the version as a human-format string."""
2021-12-08 08:24:34 +00:00
return ".".join([str(i) for i in VERSION[:limit]])