Control: tags -1 + patch

Hi Maintainer

Since setuptools 66.0.0, support for PEP 440 non-conforming versions
has been removed [1].

It appears '1.0a-SNAPSHOT' is not a PEP 440 conforming version, so I
think simply dropping this test scenario is sufficient.  Please see
patch below.

Regards
Graham


[1] https://setuptools.pypa.io/en/stable/history.html#v66-0-0


--- a/tests/moduleregistry/test_moduleregistry.py
+++ b/tests/moduleregistry/test_moduleregistry.py
@@ -24,7 +24,6 @@
         ("s10", dict(v1="1.0-SNAPSHOT", op="__lt__", v2="1.0")),
         ("s11", dict(v1="1.0.preview", op="__lt__", v2="1.0")),
         ("s12", dict(v1="1.1-SNAPSHOT", op="__gt__", v2="1.0")),
-        ("s13", dict(v1="1.0a-SNAPSHOT", op="__lt__", v2="1.0a")),
         (
             "s14",
             dict(

Reply via email to