verspec

Python version/specifier handling

OTHER License

Downloads
367.8K
Stars
1
Committers
2

verspec

verspec is a Python library for handling software versions and specifiers, adapted from the packaging package.

An Example

from verspec import loose, python

v1 = loose.Version('1.0')
s1 = loose.SpecifierSet('~=1.0')
assert v1 in s1

v2 = python.Version('1.0')
s2 = python.SpecifierSet('~=1.0')
assert v2 in s2

Documentation

Forthcoming! (Sorry about that...)

Credits

The real credit for this package goes to the Python Packaging Authority.

License

This project is dual-licensed under the BSD and Apache licenses.

Package Rankings
Top 10.4% on Pypi.org
Top 46.01% on Conda-forge.org
Top 30.1% on Spack.io
Badges
Extracted from project README
PyPi version Build status Coverage status