We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ranges overlap
identical boundaries
>>> from univers.version_range import MavenVersionRange >>> MavenVersionRange.from_native("[3.0.0,3.1.1),(,2.3.4)") Traceback (most recent call last): File "<stdin>", line 1, in <module> File "../univers/version_range.py", line 784, in from_native restrictions = maven.VersionRange(string).restrictions File "../univers/maven.py", line 226, in __init__ raise VersionRangeParseError("Ranges overlap: %s" % spec) univers.maven.VersionRangeParseError: Ranges overlap: [3.0.0,3.1.1),(,2.3.4)
>>> from univers.version_range import MavenVersionRange >>> MavenVersionRange.from_native("[5.0,5.0]") Traceback (most recent call last): File "<stdin>", line 1, in <module> File "../univers/version_range.py", line 784, in from_native restrictions = maven.VersionRange(string).restrictions File "../univers/maven.py", line 219, in __init__ restriction = Restriction(_spec[0 : close + 1]) File "../univers/maven.py", line 81, in __init__ raise RestrictionParseError("Range cannot have identical boundaries: %s" % spec) univers.maven.RestrictionParseError: Range cannot have identical boundaries: [5.0,5.0]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The text was updated successfully, but these errors were encountered: