Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Conversation

rickeylev
Copy link
Collaborator

Adds a filegroup with all the files that came from the extracted wheel.

This has two benefits over using whl_filegroup: it avoids copying the wheel
and makes the set of files directly visible to the analysis phase.

Some wheels are multiple gigabytes in size (e.g. torch, cuda, tensorflow), so
avoiding the copy and archive processing saves a decent amount of time.

Knowing the specific files at analysis time is generally beneficial. The
particular case I ran into was the CC rules were unhappy with a TreeArtifact
of header files because they couldn't enforce some check about who was
properly providing headers that were included (layering check?).

Another example is using the unused_inputs_list optimization, which allows
an action to ignore inputs that aren't actually used. e.g. an action could
take all the wheel's files as inputs, only care about the headers, and then
tell bazel all the non-header files aren't relevant, and thus changes to
other files don't re-run the thing that only cares about headers.

@rickeylev rickeylev requested review from aignas and groodt as code owners June 19, 2025 23:59
google-labs-jules bot and others added 6 commits June 20, 2025 05:12
Addresses review comments from PR bazel-contrib#3011:
- Adds `EXTRACTED_WHEEL_FILES` to `pkg_aliases` in `python/private/pypi/pkg_aliases.bzl`.
- Changes the `exclude` attribute for `EXTRACTED_WHEEL_FILES` in `python/private/pypi/whl_library_targets.bzl` to use the specific wheel filename.
- Adds a TODO comment in `python/private/pypi/whl_library_targets.bzl` to consider parsing the `RECORD` file in the future.
- Updates `CHANGELOG.md` to include the new feature.

Note: Encountered a persistent internal Bazel error while attempting to run tests. The changes could not be verified with automated tests.
Of branch 'feat-pypi-all-files-extracted' into feat.pypi.all.files
Copy link
Collaborator Author

@rickeylev rickeylev left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

PTAL

@rickeylev rickeylev added this pull request to the merge queue Jul 7, 2025
Merged via the queue into bazel-contrib:main with commit cdf4f55 Jul 7, 2025
3 checks passed
@rickeylev rickeylev deleted the feat.pypi.all.files branch August 21, 2025 01:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants