Skip to content

Commit 4284fe0

Browse files
committed
Fix: Need to normalize names for 'in'
1 parent a98998b commit 4284fe0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

python/pip_install/pip_repository.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ def _pip_repository_impl(rctx):
306306
# label referencing a package which may not be installed on the current
307307
# platform.
308308
requirement_cycles = {
309-
normalize_name(name): sorted([normalize_name(d) for d in group if d in bzl_packages])
309+
normalize_name(name): sorted([normalize_name(d) for d in group if normalize_name(d) in bzl_packages])
310310
for name, group in requirement_cycles.items()
311311
}
312312

0 commit comments

Comments
 (0)