django-rosetta/rosetta/__init__.py
2023-12-04 16:48:07 +01:00

6 lines
159 B
Python

VERSION = (0, 10, 0)
def get_version(limit=3):
"""Return the version as a human-format string."""
return ".".join([str(i) for i in VERSION[:limit]])