-
-
Notifications
You must be signed in to change notification settings - Fork 677
change approach for vendoring parsed requirements #679
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,50 @@ | ||
| load("@bazel_skylib//rules:diff_test.bzl", "diff_test") | ||
| load("@bazel_skylib//rules:write_file.bzl", "write_file") | ||
| load("@rules_python//python:pip.bzl", "compile_pip_requirements") | ||
|
|
||
| # This rule adds a convenient way to update the requirements.txt | ||
| # lockfile based on the requirements.in. | ||
| compile_pip_requirements(name = "requirements") | ||
|
|
||
| # The requirements.bzl file is generated with a reference to the interpreter for the host platform. | ||
| # In order to check in a platform-agnostic file, we have to replace that reference with the symbol | ||
| # loaded from our python toolchain. | ||
| genrule( | ||
| name = "make_platform_agnostic", | ||
| srcs = ["@pip//:requirements.bzl"], | ||
| outs = ["requirements.clean.bzl"], | ||
| cmd = " | ".join([ | ||
| "cat $<", | ||
| # Insert our load statement after the existing one so we don't produce a file with buildifier warnings | ||
| """sed -e '/^load.*/i\\'$$'\\n''load("@python39//:defs.bzl", "interpreter")'""", | ||
| """tr "'" '"' """, | ||
| """sed 's#"@python39_.*//:bin/python3"#interpreter#' >$@""", | ||
| ]), | ||
| ) | ||
|
|
||
| write_file( | ||
| name = "gen_update", | ||
| out = "update.sh", | ||
| content = [ | ||
| # This depends on bash, would need tweaks for Windows | ||
| "#!/usr/bin/env bash", | ||
| # Bazel gives us a way to access the source folder! | ||
| "cd $BUILD_WORKSPACE_DIRECTORY", | ||
| "cp -fv bazel-bin/requirements.clean.bzl requirements.bzl", | ||
| ], | ||
| ) | ||
|
|
||
| sh_binary( | ||
| name = "vendor_requirements", | ||
| srcs = ["update.sh"], | ||
| data = [":make_platform_agnostic"], | ||
| ) | ||
|
|
||
| # Similarly ensures that the requirements.bzl file is updated | ||
| # based on the requirements.txt lockfile. | ||
| diff_test( | ||
| name = "test_vendored", | ||
| failure_message = "Please run: bazel run //:vendor_requirements", | ||
| file1 = "requirements.bzl", | ||
| file2 = ":make_platform_agnostic", | ||
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| # pip_parse vendored | ||
|
|
||
| This example is like pip_parse, however we avoid loading from the generated file. | ||
| See https://github.com/bazelbuild/rules_python/issues/608 | ||
| and https://blog.aspect.dev/avoid-eager-fetches. | ||
|
|
||
| The requirements now form a triple: | ||
|
|
||
| - requirements.in - human editable, expresses only direct dependencies and load-bearing version constraints | ||
| - requirements.txt - lockfile produced by pip-compile or other means | ||
| - requirements.bzl - the "parsed" version of the lockfile readable by Bazel downloader |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,44 @@ | ||
| workspace(name = "pip_repository_annotations_example") | ||
|
|
||
| load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") | ||
|
|
||
| local_repository( | ||
| name = "rules_python", | ||
| path = "../..", | ||
| ) | ||
|
|
||
| http_archive( | ||
| name = "bazel_skylib", | ||
| sha256 = "c6966ec828da198c5d9adbaa94c05e3a1c7f21bd012a0b29ba8ddbccb2c93b0d", | ||
| urls = [ | ||
| "https://github.com/bazelbuild/bazel-skylib/releases/download/1.1.1/bazel-skylib-1.1.1.tar.gz", | ||
| "https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.1.1/bazel-skylib-1.1.1.tar.gz", | ||
| ], | ||
| ) | ||
|
|
||
| load("@rules_python//python:repositories.bzl", "python_register_toolchains") | ||
|
|
||
| python_register_toolchains( | ||
| name = "python39", | ||
| python_version = "3.9", | ||
| ) | ||
|
|
||
| load("@python39//:defs.bzl", "interpreter") | ||
| load("@rules_python//python:pip.bzl", "pip_parse") | ||
|
|
||
| # This repository isn't referenced, except by our test that asserts the requirements.bzl is updated. | ||
| # It also wouldn't be needed by users of this ruleset. | ||
| pip_parse( | ||
| name = "pip", | ||
| python_interpreter_target = interpreter, | ||
| requirements_lock = "//:requirements.txt", | ||
| ) | ||
|
|
||
| # This example vendors the file produced by `pip_parse` above into the repo. | ||
| # This way our Bazel doesn't eagerly fetch and install the pip_parse'd | ||
| # repository for builds that don't need it. | ||
| # See discussion of the trade-offs in the pip_parse documentation | ||
| # and the "vendor_requirements" target in the BUILD file. | ||
| load("//:requirements.bzl", "install_deps") | ||
|
|
||
| install_deps() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,51 @@ | ||
| """Starlark representation of locked requirements. | ||
|
|
||
| @generated by rules_python pip_parse repository rule | ||
| from //:requirements.txt | ||
| """ | ||
|
|
||
| load("@python39//:defs.bzl", "interpreter") | ||
| load("@rules_python//python/pip_install:pip_repository.bzl", "whl_library") | ||
|
|
||
| all_requirements = ["@pip_certifi//:pkg", "@pip_charset_normalizer//:pkg", "@pip_idna//:pkg", "@pip_requests//:pkg", "@pip_urllib3//:pkg"] | ||
|
|
||
| all_whl_requirements = ["@pip_certifi//:whl", "@pip_charset_normalizer//:whl", "@pip_idna//:whl", "@pip_requests//:whl", "@pip_urllib3//:whl"] | ||
|
|
||
| _packages = [("pip_certifi", "certifi==2021.10.8 --hash=sha256:78884e7c1d4b00ce3cea67b44566851c4343c120abd683433ce934a68ea58872 --hash=sha256:d62a0163eb4c2344ac042ab2bdf75399a71a2d8c7d47eac2e2ee91b9d6339569"), ("pip_charset_normalizer", "charset-normalizer==2.0.12 --hash=sha256:2857e29ff0d34db842cd7ca3230549d1a697f96ee6d3fb071cfa6c7393832597 --hash=sha256:6881edbebdb17b39b4eaaa821b438bf6eddffb4468cf344f09f89def34a8b1df"), ("pip_idna", "idna==3.3 --hash=sha256:84d9dd047ffa80596e0f246e2eab0b391788b0503584e8945f2368256d2735ff --hash=sha256:9d643ff0a55b762d5cdb124b8eaa99c66322e2157b69160bc32796e824360e6d"), ("pip_requests", "requests==2.27.1 --hash=sha256:68d7c56fd5a8999887728ef304a6d12edc7be74f1cfa47714fc8b414525c9a61 --hash=sha256:f22fa1e554c9ddfd16e6e41ac79759e17be9e492b3587efa038054674760e72d"), ("pip_urllib3", "urllib3==1.26.9 --hash=sha256:44ece4d53fb1706f667c9bd1c648f5469a2ec925fcf3a776667042d645472c14 --hash=sha256:aabaf16477806a5e1dd19aa41f8c2b7950dd3c746362d7e3223dbe6de6ac448e")] | ||
| _config = {"enable_implicit_namespace_pkgs": False, "environment": {}, "extra_pip_args": [], "isolated": True, "pip_data_exclude": [], "python_interpreter": "python3", "python_interpreter_target": interpreter, "quiet": True, "repo": "pip", "repo_prefix": "pip_", "timeout": 600} | ||
| _annotations = {} | ||
|
|
||
| def _clean_name(name): | ||
| return name.replace("-", "_").replace(".", "_").lower() | ||
|
|
||
| def requirement(name): | ||
| return "@pip_" + _clean_name(name) + "//:pkg" | ||
|
|
||
| def whl_requirement(name): | ||
| return "@pip_" + _clean_name(name) + "//:whl" | ||
|
|
||
| def data_requirement(name): | ||
| return "@pip_" + _clean_name(name) + "//:data" | ||
|
|
||
| def dist_info_requirement(name): | ||
| return "@pip_" + _clean_name(name) + "//:dist_info" | ||
|
|
||
| def entry_point(pkg, script = None): | ||
| if not script: | ||
| script = pkg | ||
| return "@pip_" + _clean_name(pkg) + "//:rules_python_wheel_entry_point_" + script | ||
|
|
||
| def _get_annotation(requirement): | ||
| # This expects to parse `setuptools==58.2.0 --hash=sha256:2551203ae6955b9876741a26ab3e767bb3242dafe86a32a749ea0d78b6792f11` | ||
| # down wo `setuptools`. | ||
| name = requirement.split(" ")[0].split("=")[0] | ||
| return _annotations.get(name) | ||
|
|
||
| def install_deps(): | ||
| for name, requirement in _packages: | ||
| whl_library( | ||
| name = name, | ||
| requirement = requirement, | ||
| annotation = _get_annotation(requirement), | ||
| **_config | ||
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| requests |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| # | ||
| # This file is autogenerated by pip-compile | ||
| # To update, run: | ||
| # | ||
| # bazel run //:requirements.update | ||
| # | ||
| certifi==2021.10.8 \ | ||
| --hash=sha256:78884e7c1d4b00ce3cea67b44566851c4343c120abd683433ce934a68ea58872 \ | ||
| --hash=sha256:d62a0163eb4c2344ac042ab2bdf75399a71a2d8c7d47eac2e2ee91b9d6339569 | ||
| # via requests | ||
| charset-normalizer==2.0.12 \ | ||
| --hash=sha256:2857e29ff0d34db842cd7ca3230549d1a697f96ee6d3fb071cfa6c7393832597 \ | ||
| --hash=sha256:6881edbebdb17b39b4eaaa821b438bf6eddffb4468cf344f09f89def34a8b1df | ||
| # via requests | ||
| idna==3.3 \ | ||
| --hash=sha256:84d9dd047ffa80596e0f246e2eab0b391788b0503584e8945f2368256d2735ff \ | ||
| --hash=sha256:9d643ff0a55b762d5cdb124b8eaa99c66322e2157b69160bc32796e824360e6d | ||
| # via requests | ||
| requests==2.27.1 \ | ||
| --hash=sha256:68d7c56fd5a8999887728ef304a6d12edc7be74f1cfa47714fc8b414525c9a61 \ | ||
| --hash=sha256:f22fa1e554c9ddfd16e6e41ac79759e17be9e492b3587efa038054674760e72d | ||
| # via -r requirements.in | ||
| urllib3==1.26.9 \ | ||
| --hash=sha256:44ece4d53fb1706f667c9bd1c648f5469a2ec925fcf3a776667042d645472c14 \ | ||
| --hash=sha256:aabaf16477806a5e1dd19aa41f8c2b7950dd3c746362d7e3223dbe6de6ac448e | ||
| # via requests |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.