Skip to content

Commit

Permalink
Fix: Need to normalize names for 'in'
Browse files Browse the repository at this point in the history
  • Loading branch information
arrdem committed Nov 25, 2023
1 parent a98998b commit 4284fe0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/pip_install/pip_repository.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ def _pip_repository_impl(rctx):
# label referencing a package which may not be installed on the current
# platform.
requirement_cycles = {
normalize_name(name): sorted([normalize_name(d) for d in group if d in bzl_packages])
normalize_name(name): sorted([normalize_name(d) for d in group if normalize_name(d) in bzl_packages])
for name, group in requirement_cycles.items()
}

Expand Down

0 comments on commit 4284fe0

Please sign in to comment.