From 142074ce60653761ba2446616f69311691669529 Mon Sep 17 00:00:00 2001 From: Alex Eagle Date: Tue, 8 Mar 2022 06:54:37 -0800 Subject: [PATCH] fix: ensure determinism Follow-up to https://github.com/bazelbuild/rules_python/pull/570#issuecomment-982143297 --- python/pip_install/extract_wheels/lib/bazel.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python/pip_install/extract_wheels/lib/bazel.py b/python/pip_install/extract_wheels/lib/bazel.py index 0ec55c4c81..33398e8954 100644 --- a/python/pip_install/extract_wheels/lib/bazel.py +++ b/python/pip_install/extract_wheels/lib/bazel.py @@ -152,6 +152,7 @@ def generate_build_file_contents( set( [ "*.whl", + "**/*dist-info/RECORD", "**/__pycache__/**", "**/* *", "**/*.py",