Skip to content

Commit 1332944

Browse files
committed
Use simpler syntax for dependency declarations
These do not need special treatment (e.g. patches) so we should be able to use them in the regular way.
1 parent 5f64cb8 commit 1332944

File tree

1 file changed

+2
-11
lines changed

1 file changed

+2
-11
lines changed

ebclfsa/MODULE.bazel

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -58,17 +58,8 @@ single_version_override(
5858
"//patches:fix_hard_coded_amd64.patch",
5959
],
6060
)
61-
bazel_dep(name = "score_communication")
62-
single_version_override(
63-
module_name = "score_communication",
64-
version = "0.1.1", # part of 0.5.0-alpha release
65-
)
66-
67-
bazel_dep(name = "score_scrample")
68-
single_version_override(
69-
module_name = "score_scrample",
70-
version = "0.1.0", # part of 0.5.0-alpha release
71-
)
61+
bazel_dep(name = "score_communication", version = "0.1.1") # part of 0.5.0-alpha release
62+
bazel_dep(name = "score_scrample", version = "0.1.0") # part of 0.5.0-alpha release
7263

7364
# git_override is not forwarded by bazel_dep, so we need to redefine it here
7465
git_override(

0 commit comments

Comments
 (0)