golden hour
/opt/cloudlinux/venv/lib/python3.11/site-packages/semver
⬆️ Go Up
Upload
File/Folder
Size
Actions
__about__.py
815 B
Del
OK
__init__.py
1.24 KB
Del
OK
__main__.py
592 B
Del
OK
__pycache__
-
Del
OK
_deprecated.py
11.01 KB
Del
OK
_types.py
422 B
Del
OK
cli.py
5.07 KB
Del
OK
py.typed
0 B
Del
OK
version.py
23.51 KB
Del
OK
Edit: __init__.py
""" 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", ]
Save