Package version handling library
Project description
Documentation: versions.rtfd.org
Basic usage
Version comparisons example:
>>> from versions import Version
>>> v1 = Version.parse('1')
>>> v2 = Version.parse('2')
>>> v1 == v2
False
>>> v1 != v2
True
>>> v1 > v2
False
>>> v1 < v2
True
>>> v1 >= v2
False
>>> v1 <= v2
True
Version.parse expects a Semantic Version 2.0 string and returns a corresponding Version object:
>>> from versions import Version
>>> v = Version.parse('1.2.0-dev+foo.bar')
>>> v.major, v.minor, v.patch, v.prerelease, v.build_metadata
(1, 2, 0, 'dev', 'foo.bar')
If it isn’t a semantic version string, the parser tries to normalize it:
>>> v = Version.parse('1')
>>> v.major, v.minor, v.patch, v.prerelease, v.build_metadata
(1, 0, 0, None, None)
Version constraint matching
versions also implements version constraint parsing and evaluation:
>>> from versions import Constraint
>>> Constraint.parse('>1').match('2')
True
>>> Constraint.parse('<2').match(Version.parse('1'))
True
For conveniance, constraint matching can be tested using the in operator:
>>> '1.5' in Constraint.parse('<2')
True
>>> Version(2) in Constraint.parse('!=2')
False
Constraints can be merged using Constraints:
>>> from versions import Constraints
>>> '1.0' in Constraints.parse('>1,<2')
False
>>> '1.5' in Constraints.parse('>1,<2')
True
>>> '2.0' in Constraints.parse('>1,<2')
False
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
versions-0.9.0.tar.gz
(13.7 kB
view details)
File details
Details for the file versions-0.9.0.tar.gz
.
File metadata
- Download URL: versions-0.9.0.tar.gz
- Upload date:
- Size: 13.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ecec980c5e15fe06171842bb893a340890cf30e9807ac9f2c47542acb9fde637 |
|
MD5 | 9d5bb4c692cce418a1e1db9ec3cc6171 |
|
BLAKE2b-256 | 4abbe8d48983b5173d1b2b8561a0420907d7077d109967109e87f0c49ef2d05b |