kopia lustrzana https://github.com/wagtail/wagtail
11 wiersze
303 B
Python
11 wiersze
303 B
Python
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 = (2, 5, 0, 'alpha', 0)
|
|
|
|
__version__ = get_version(VERSION)
|
|
|
|
# Required for npm package for frontend
|
|
__semver__ = get_semver_version(VERSION)
|