Skip to content
New issue

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

Fix specifier matching when the specifier is long and has an epoch #712

Merged
merged 1 commit into from Oct 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGELOG.rst
Expand Up @@ -4,7 +4,8 @@ Changelog
*unreleased*
~~~~~~~~~~~~

No unreleased changes.
* Do specifier matching correctly when the specifier contains an epoch number
and has more components than the version (:issue:`683`)

23.2 - 2023-10-01
~~~~~~~~~~~~~~~~~
Expand Down
31 changes: 24 additions & 7 deletions src/packaging/specifiers.py
Expand Up @@ -383,7 +383,7 @@ def _compare_compatible(self, prospective: Version, spec: str) -> bool:

# We want everything but the last item in the version, but we want to
# ignore suffix segments.
prefix = ".".join(
prefix = _version_join(
list(itertools.takewhile(_is_not_suffix, _version_split(spec)))[:-1]
)

Expand All @@ -404,13 +404,13 @@ def _compare_equal(self, prospective: Version, spec: str) -> bool:
)
# Get the normalized version string ignoring the trailing .*
normalized_spec = canonicalize_version(spec[:-2], strip_trailing_zero=False)
# Split the spec out by dots, and pretend that there is an implicit
# dot in between a release segment and a pre-release segment.
# Split the spec out by bangs and dots, and pretend that there is
# an implicit dot in between a release segment and a pre-release segment.
split_spec = _version_split(normalized_spec)

# Split the prospective version out by dots, and pretend that there
# is an implicit dot in between a release segment and a pre-release
# segment.
# Split the prospective version out by bangs and dots, and pretend
# that there is an implicit dot in between a release segment and
# a pre-release segment.
split_prospective = _version_split(normalized_prospective)

# 0-pad the prospective version before shortening it to get the correct
Expand Down Expand Up @@ -645,7 +645,15 @@ def filter(

def _version_split(version: str) -> List[str]:
result: List[str] = []
for item in version.split("."):

epoch, sep, rest = version.rpartition("!")

if sep:
result.append(epoch)
else:
result.append("0")

for item in rest.split("."):
match = _prefix_regex.search(item)
if match:
result.extend(match.groups())
Expand All @@ -654,6 +662,15 @@ def _version_split(version: str) -> List[str]:
return result


def _version_join(components: List[str]) -> str:
# This function only works with numeric components.
assert all(c.isdigit() for c in components)

epoch, *rest = components

return epoch + "!" + ".".join(rest)


def _is_not_suffix(segment: str) -> bool:
return not any(
segment.startswith(prefix) for prefix in ("dev", "a", "b", "rc", "post")
Expand Down
3 changes: 3 additions & 0 deletions tests/test_specifiers.py
Expand Up @@ -369,6 +369,7 @@ def test_comparison_non_specifier(self):
("2!1.0", "==2!1.*"),
("2!1.0", "==2!1.0"),
("2!1.0", "!=1.0"),
("2!1.0.0", "==2!1.0.0.0.*"),
pradyunsg marked this conversation as resolved.
Show resolved Hide resolved
("2!1.0.0", "==2!1.0.*"),
("2!1.0.0", "==2!1.*"),
("1.0", "!=2!1.0"),
Expand Down Expand Up @@ -467,6 +468,8 @@ def test_comparison_non_specifier(self):
("2!1.0", "~=1.0"),
("2!1.0", "==1.0"),
("1.0", "==2!1.0"),
("2!1.0", "==1.0.0.*"),
("1.0", "==2!1.0.0.*"),
("2!1.0", "==1.*"),
("1.0", "==2!1.*"),
("2!1.0", "!=2!1.0"),
Expand Down