django-rosetta/rosetta/__init__.py
Marco Bonetti a43d369387 Check PEP8 while running tests
Use polib >= 1.1.0
Rosetta version bump and changelog
2018-01-10 12:44:24 +01:00

7 lines
222 B
Python

VERSION = (0, 8, 0)
default_app_config = "rosetta.apps.RosettaAppConfig"
def get_version(svn=False, limit=3):
"""Return the version as a human-format string."""
return '.'.join([str(i) for i in VERSION[:limit]])