Skip to content

Commit

Permalink
gpy-verify-deps: Update for split dev-python/pypy3_*
Browse files Browse the repository at this point in the history
Signed-off-by: Michał Górny <[email protected]>
  • Loading branch information
mgorny committed Feb 8, 2024
1 parent 6b35e39 commit 2d89477
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion gpyutils/scripts/verify_deps.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,12 @@ def process(pkgs):
if matched_pkg is None:
missing_dists[dist.name][dep_name].add(pyver)
continue
expected_deps.add(str(matched_pkg.key))
matched_dep = str(matched_pkg.key)
# map dev-python/pypy3_* subpackages into the common
# dev-python/pypy3 dependency
if matched_dep.startswith("dev-python/pypy3_"):
matched_dep = "dev-python/pypy3"
expected_deps.add(matched_dep)

expected_usedeps = set(expected_deps)

Expand Down

0 comments on commit 2d89477

Please sign in to comment.