Fix toplevel import of validate() (Closes #2).

This commit is contained in:
Raphaël Barrois
2013-10-29 00:59:55 +01:00
parent 8b5a94ea1b
commit 03037e2ff1
2 changed files with 13 additions and 1 deletions

12
README
View File

@@ -113,6 +113,17 @@ Obviously, :class:`Versions <Version>` can be compared:
False
It is also possible to check whether a given string is a proper semantic version string:
.. code-block:: pycon
>>> semantic_version.validate('0.1.3')
True
>>> semantic_version.validate('0a2')
False
Requirement specification
-------------------------
@@ -224,6 +235,7 @@ definition or (for the empty pre-release number) if a single dash is appended
>>> Version('0.1.0-alpha') in Spec('>=0.1.0-') # Include pre-release in checks
False
Including build identifiers in specifications
"""""""""""""""""""""""""""""""""""""""""""""

View File

@@ -7,4 +7,4 @@ __author__ = "Raphaël Barrois <raphael.barrois+semver@polytechnique.org>"
__version__ = '2.2.0'
from .base import compare, match, Spec, SpecItem, Version
from .base import compare, match, validate, Spec, SpecItem, Version