A golang library for parsing PEP 440 compliant Python versions
go-pep440-version is a library for parsing versions of Python software distributions and version specifiers, and verifying versions against a set of specifiers.
Versions used with go-pep440-version must follow PEP 440.
For more details, see pypa/packaging
See example
v1, _ := version.Parse("1.2.a")
v2, _ := version.Parse("1.2")
// Comparison example. There is also GreaterThan, Equal, and just
// a simple Compare that returns an int allowing easy >=, <=, etc.
if v1.LessThan(v2) {
fmt.Printf("%s is less than %s", v1, v2)
}
See example
v, _ := version.Parse("2.1")
c, _ := version.NewSpecifiers(">= 1.0, < 1.4 || > 2.0")
if c.Check(v) {
fmt.Printf("%s satisfies specifiers '%s'", v, c)
}
-
>
-
>=
-
<
-
<=
-
==
-
!=
-
~=
-
===