Server : Apache System : Linux indy02.toastserver.com 3.10.0-962.3.2.lve1.5.85.el7.x86_64 #1 SMP Thu Apr 18 15:18:36 UTC 2024 x86_64 User : palandch ( 1163) PHP Version : 7.1.33 Disable Function : NONE Directory : /opt/cloudlinux/venv/lib64/python3.11/site-packages/semver/ |
""" Semver package major release 3. A Python module for semantic versioning. Simplifies comparing versions. """ from ._deprecated import ( bump_build, bump_major, bump_minor, bump_patch, compare, bump_prerelease, finalize_version, format_version, match, max_ver, min_ver, parse, parse_version_info, replace, cmd_bump, cmd_compare, cmd_nextver, cmd_check, createparser, process, main, ) from .version import Version, VersionInfo from .__about__ import ( __version__, __author__, __maintainer__, __author_email__, __description__, __maintainer_email__, SEMVER_SPEC_VERSION, ) __all__ = [ "bump_build", "bump_major", "bump_minor", "bump_patch", "compare", "bump_prerelease", "finalize_version", "format_version", "match", "max_ver", "min_ver", "parse", "parse_version_info", "replace", "cmd_bump", "cmd_compare", "cmd_nextver", "cmd_check", "createparser", "process", "main", "Version", "VersionInfo", "__version__", "__author__", "__maintainer__", "__author_email__", "__description__", "__maintainer_email__", "SEMVER_SPEC_VERSION", ]