Initial commit

This commit is contained in:
2024-08-27 20:33:44 +02:00
commit 1f1832267d
14794 changed files with 1599592 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
# PLEASE NOTE: If you edit this file (other than updating the version number), please
# also update scripts/nightly/get_version.py as well as that needs to generate a new
# version of this file from a template for nightly builds
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 = (6, 2, 1, "final", 1)
__version__ = get_version(VERSION)
# Required for npm package for frontend
__semver__ = get_semver_version(VERSION)
def setup():
import warnings
from wagtail.utils.deprecation import removed_in_next_version_warning
warnings.simplefilter("default", removed_in_next_version_warning)
setup()