Skip to content

Commit 8447346

Browse files
Rename BCR module (#5)
* shorten module name * try and fix the e2e tests on debian
1 parent 2f7db75 commit 8447346

8 files changed

Lines changed: 1291 additions & 11 deletions

File tree

.github/workflows/release_prep.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ cat << EOF
1818
2. Add to your \`MODULE.bazel\` file:
1919
2020
\`\`\`starlark
21-
bazel_dep(name = "com_github_caseyduquettesc_rules_python_pytest", version = "${TAG:1}", repo_name = "rules_python_pytest")
21+
bazel_dep(name = "caseyduquettesc_rules_python_pytest", version = "${TAG:1}", repo_name = "rules_python_pytest")
2222
\`\`\`
2323
2424
## Using WORKSPACE

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
bazel-*
22
.bazelrc.user
3+
e2e/smoke/.bazelversion

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"Bazel dependencies"
22

33
module(
4-
name = "com_github_caseyduquettesc_rules_python_pytest",
4+
name = "caseyduquettesc_rules_python_pytest",
55
version = "0.0.0",
66
compatibility_level = 1,
77
repo_name = "rules_python_pytest",

MODULE.bazel.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

e2e/smoke/MODULE.bazel

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
1-
bazel_dep(name = "com_github_caseyduquettesc_rules_python_pytest", version = "0.0.0", dev_dependency = True, repo_name = "rules_python_pytest")
1+
bazel_dep(name = "caseyduquettesc_rules_python_pytest", version = "0.0.0", dev_dependency = True, repo_name = "rules_python_pytest")
22
bazel_dep(name = "bazel_skylib", version = "1.3.0", dev_dependency = True)
33
bazel_dep(name = "rules_python", version = "0.19.0", dev_dependency = True)
44

55
local_path_override(
6-
module_name = "com_github_caseyduquettesc_rules_python_pytest",
6+
module_name = "caseyduquettesc_rules_python_pytest",
77
path = "../..",
88
)
99

1010
# Pretty much copied from https://github.com/bazelbuild/rules_python/releases/tag/0.17.3
1111
python = use_extension("@rules_python//python:extensions.bzl", "python")
1212
python.toolchain(
1313
name = "python3_9",
14+
is_default = True,
1415
python_version = "3.9",
1516
)
1617
use_repo(python, "python3_9_toolchains")

0 commit comments

Comments
 (0)