Skip to content

Commit c755d5e

Browse files
committed
score_docs_as_code: Update to 1.4.0
- score_docs_as_code 1.0.1 -> 1.4.0 - rules_python needs to stay to 1.4.1 (but dev_dependency) - score_process 1.1.0 -> 1.2.1 - score_platform override needed until new official release
1 parent 393c1c3 commit c755d5e

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

MODULE.bazel

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ module(
1818

1919
## Toolchains (dependencies and config)
2020
# python
21-
bazel_dep(name = "rules_python", version = "1.4.1")
21+
# ToDo: score_docs_as_code broken with any later version >1.4.1 (e.g. 1.6.3)
22+
bazel_dep(name = "rules_python", version = "1.4.1", dev_dependency = True)
2223

2324
PYTHON_VERSION = "3.12"
2425

@@ -79,13 +80,13 @@ bazel_dep(name = "aspect_rules_lint", version = "1.10.2")
7980
bazel_dep(name = "buildifier_prebuilt", version = "8.2.0.2")
8081

8182
# docs-as-code
82-
bazel_dep(name = "score_docs_as_code", version = "1.0.1")
83+
bazel_dep(name = "score_docs_as_code", version = "1.4.0", dev_dependency = True)
8384

8485
# Provides, pytest & venv
8586
bazel_dep(name = "score_python_basics", version = "0.3.4")
8687

8788
bazel_dep(name = "score_platform", version = "0.3.0", dev_dependency = True)
88-
bazel_dep(name = "score_process", version = "1.1.0", dev_dependency = True)
89+
bazel_dep(name = "score_process", version = "1.2.1", dev_dependency = True)
8990

9091
# Module deps
9192
bazel_dep(name = "score_baselibs", version = "0.1.2")
@@ -132,10 +133,11 @@ git_override(
132133
remote = "https://github.com/eclipse-score/baselibs.git",
133134
)
134135

136+
# ToDo: needed to get //:docs running until > 0.3.0 is officially released
135137
git_override(
136-
module_name = "score_docs_as_code",
137-
commit = "13ba715a95cfe85158b60d7f4748ba8e28895d8c",
138-
remote = "https://github.com/eclipse-score/docs-as-code.git",
138+
module_name = "score_platform",
139+
commit = "bcab25561cdce7bd4eeebdb20b0ba4e2a4becc12",
140+
remote = "https://github.com/eclipse-score/score.git",
139141
)
140142

141143
bazel_dep(name = "score_toolchains_rust", version = "0.1", dev_dependency = True)

0 commit comments

Comments
 (0)