django-rosetta/rosetta/__init__.py
2023-12-10 19:10:24 +01:00

6 lines
159 B
Python

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