summaryrefslogtreecommitdiff
path: root/docs/reference.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/reference.rst')
-rw-r--r--docs/reference.rst16
1 files changed, 16 insertions, 0 deletions
diff --git a/docs/reference.rst b/docs/reference.rst
index 8caa30b..feaffcf 100644
--- a/docs/reference.rst
+++ b/docs/reference.rst
@@ -512,6 +512,22 @@ rules apply:
:rtype: ``(*spec)`` tuple
+.. class:: NpmSpec(spec_string)
+
+ .. versionadded:: 2.8
+
+ A NPM-compliant version matching engine, based on the https://docs.npmjs.com/misc/semver.html specification.
+
+ .. code-block:: pycon
+
+ >>> Version('0.1.2') in NpmSpec('0.1.0-alpha.2 .. 0.2.4')
+ True
+ >>> Version('0.1.2') in NpmSpec('>=0.1.1 <0.1.3 || 2.x')
+ True
+ >>> Version('2.3.4') in NpmSpec('>=0.1.1 <0.1.3 || 2.x')
+ True
+
+
.. class:: SpecItem(spec_string)
.. note:: This class belong to the private python-semanticversion API.