From b22ffc6c882db87f05475c5934ee77b3e442e01c Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Tue, 11 Jul 2023 15:45:32 -0700 Subject: [PATCH] docs: Use correct pip extension path in generated release notes Also add a note that bzlmod support is still beta. --- .github/workflows/create_archive_and_notes.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/create_archive_and_notes.sh b/.github/workflows/create_archive_and_notes.sh index 02279bcca1..f7a291a6be 100755 --- a/.github/workflows/create_archive_and_notes.sh +++ b/.github/workflows/create_archive_and_notes.sh @@ -27,12 +27,14 @@ SHA=$(shasum -a 256 $ARCHIVE | awk '{print $1}') cat > release_notes.txt << EOF ## Using Bzlmod with Bazel 6 +**NOTE: bzlmod support is still beta. APIs subject to change.** + Add to your \`MODULE.bazel\` file: \`\`\`starlark bazel_dep(name = "rules_python", version = "${TAG}") -pip = use_extension("@rules_python//python:extensions.bzl", "pip") +pip = use_extension("@rules_python//python/extensions:pip.bzl", "pip") pip.parse( name = "pip",