From c4c6ab0e925d8cfabb68d34a10a783cb854b63a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Barrois?= Date: Fri, 23 Aug 2019 23:24:50 +0200 Subject: Add support for NPM-style version ranges. The code follows closely the specification available at https://docs.npmjs.com/misc/semver.html. Despite similarities, the matching logic is fully separate from the `native` code, since both might evolve at their own scales. --- semantic_version/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'semantic_version/__init__.py') diff --git a/semantic_version/__init__.py b/semantic_version/__init__.py index ca30919..e04e0ba 100644 --- a/semantic_version/__init__.py +++ b/semantic_version/__init__.py @@ -3,7 +3,7 @@ # This code is distributed under the two-clause BSD License. -from .base import compare, match, validate, NativeSpec, Spec, SpecItem, Version +from .base import compare, match, validate, NativeSpec, NpmSpec, Spec, SpecItem, Version __author__ = "Raphaƫl Barrois " -- cgit v1.2.1