| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
A Python module for semantic versioning. Simplifies comparing versions.
Warning
As anything comes to an end, this project will focus on Python 3.x only. New features and bugfixes will be integrated into semver3 only.
Major version 3 of semver will contain some incompatible changes:
The last version of semver which supports Python 2.7 and 3.5 will be 2.x.y. However, keep in mind, this version is frozen: no new features nor backports will be integrated.
We recommend to upgrade your workflow to Python >=3.6 to gain support, bugfixes, and new features.
The module follows the MAJOR.MINOR.PATCH style:
Additional labels for pre-release and build metadata are supported.
To import this library, use:
>>> import semverWorking with the library is quite straightforward. To turn a version string into the different parts, use the semver.VersionInfo.parse function:
>>> ver = semver.VersionInfo.parse('1.2.3-pre.2+build.4')
>>> ver.major
1
>>> ver.minor
2
>>> ver.patch
3
>>> ver.prerelease
'pre.2'
>>> ver.build
'build.4'To raise parts of a version, there are a couple of functions available for you. The function semver.VersionInfo.bump_major leaves the original object untouched, but returns a new semver.VersionInfo instance with the raised major part:
>>> ver = semver.VersionInfo.parse("3.4.5")
>>> ver.bump_major()
VersionInfo(major=4, minor=0, patch=0, prerelease=None, build=None)It is allowed to concatenate different "bump functions":
>>> ver.bump_major().bump_minor()
VersionInfo(major=4, minor=1, patch=0, prerelease=None, build=None)To compare two versions, semver provides the semver.compare function. The return value indicates the relationship between the first and second version:
>>> semver.compare("1.0.0", "2.0.0")
-1
>>> semver.compare("2.0.0", "1.0.0")
1
>>> semver.compare("2.0.0", "2.0.0")
0There are other functions to discover. Read on!
| Back | FazBrowse Home | New Git URL |