kopia lustrzana https://github.com/wagtail/wagtail
13 wiersze
362 B
Python
13 wiersze
362 B
Python
from __future__ import absolute_import, unicode_literals
|
|
|
|
from wagtail.utils.version import get_semver_version, get_version
|
|
|
|
# major.minor.patch.release.number
|
|
# release must be one of alpha, beta, rc, or final
|
|
VERSION = (1, 13, 0, 'alpha', 0)
|
|
|
|
__version__ = get_version(VERSION)
|
|
|
|
# Required for npm package for frontend
|
|
__semver__ = get_semver_version(VERSION)
|