aboutsummaryrefslogtreecommitdiff
path: root/examples/bzlmod/other_module/BUILD.bazel
diff options
context:
space:
mode:
Diffstat (limited to 'examples/bzlmod/other_module/BUILD.bazel')
-rw-r--r--examples/bzlmod/other_module/BUILD.bazel9
1 files changed, 9 insertions, 0 deletions
diff --git a/examples/bzlmod/other_module/BUILD.bazel b/examples/bzlmod/other_module/BUILD.bazel
new file mode 100644
index 0000000..d50a3a0
--- /dev/null
+++ b/examples/bzlmod/other_module/BUILD.bazel
@@ -0,0 +1,9 @@
+load("@python_versions//3.11:defs.bzl", compile_pip_requirements_311 = "compile_pip_requirements")
+
+# NOTE: To update the requirements, you need to uncomment the rules_python
+# override in the MODULE.bazel.
+compile_pip_requirements_311(
+ name = "requirements",
+ requirements_in = "requirements.in",
+ requirements_txt = "requirements_lock_3_11.txt",
+)