Skip to content

Commit f6bf5d3

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 f6bf5d3

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

MODULE.bazel

Lines changed: 8 additions & 7 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,12 @@ 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")
86-
8787
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)
88+
bazel_dep(name = "score_process", version = "1.2.1", dev_dependency = True)
8989

9090
# Module deps
9191
bazel_dep(name = "score_baselibs", version = "0.1.2")
@@ -132,10 +132,11 @@ git_override(
132132
remote = "https://github.com/eclipse-score/baselibs.git",
133133
)
134134

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

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

0 commit comments

Comments
 (0)