Skip to content

Commit 518bb00

Browse files
committed
docs: Remove not needed dependencies
The dependencies to score_platform and score_process are not explicitly needed. This even lead to an error when updating rules_python which is fixed without the explicit dependency.
1 parent c755d5e commit 518bb00

File tree

2 files changed

+1
-16
lines changed

2 files changed

+1
-16
lines changed

BUILD

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,6 @@ load("//:project_config.bzl", "PROJECT_CONFIG")
1818
# Creates all documentation targets:
1919
# - `:docs` for building documentation at build-time
2020
docs(
21-
data = [
22-
"@score_platform//:needs_json",
23-
"@score_process//:needs_json",
24-
],
2521
source_dir = "docs",
2622
)
2723

MODULE.bazel

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

1919
## Toolchains (dependencies and config)
2020
# python
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)
21+
bazel_dep(name = "rules_python", version = "1.6.3", dev_dependency = True)
2322

2423
PYTHON_VERSION = "3.12"
2524

@@ -85,9 +84,6 @@ bazel_dep(name = "score_docs_as_code", version = "1.4.0", dev_dependency = True)
8584
# Provides, pytest & venv
8685
bazel_dep(name = "score_python_basics", version = "0.3.4")
8786

88-
bazel_dep(name = "score_platform", version = "0.3.0", dev_dependency = True)
89-
bazel_dep(name = "score_process", version = "1.2.1", dev_dependency = True)
90-
9187
# Module deps
9288
bazel_dep(name = "score_baselibs", version = "0.1.2")
9389

@@ -133,13 +129,6 @@ git_override(
133129
remote = "https://github.com/eclipse-score/baselibs.git",
134130
)
135131

136-
# ToDo: needed to get //:docs running until > 0.3.0 is officially released
137-
git_override(
138-
module_name = "score_platform",
139-
commit = "bcab25561cdce7bd4eeebdb20b0ba4e2a4becc12",
140-
remote = "https://github.com/eclipse-score/score.git",
141-
)
142-
143132
bazel_dep(name = "score_toolchains_rust", version = "0.1", dev_dependency = True)
144133
git_override(
145134
module_name = "score_toolchains_rust",

0 commit comments

Comments
 (0)