File tree Expand file tree Collapse file tree 1 file changed +22
-6
lines changed
Expand file tree Collapse file tree 1 file changed +22
-6
lines changed Original file line number Diff line number Diff line change 1- ###############################################################################
2- # Bazel now uses Bzlmod by default to manage external dependencies.
3- # Please consider migrating your external dependencies from WORKSPACE to MODULE.bazel.
4- #
5- # For more details, please check https://github.com/bazelbuild/bazel/issues/18958
6- ###############################################################################
1+ module (
2+ name = "eventstreammonitor" ,
3+ version = "1.0.0" ,
4+ )
5+
6+ # Python rules
7+ bazel_dep (name = "rules_python" , version = "0.26.0" )
8+
9+ # Python toolchain
10+ python = use_extension ("@rules_python//python:extensions.bzl" , "python" )
11+ python .toolchain (
12+ python_version = "3.9" ,
13+ )
14+ use_repo (python , "python3_9_toolchains" )
15+
16+ # Python dependencies (if using pip_parse)
17+ # pip = use_extension("@rules_python//python:extensions.bzl", "pip")
18+ # pip.parse(
19+ # name = "pip_deps",
20+ # requirements_lock = "//:requirements-lock.txt",
21+ # )
22+ # use_repo(pip, "pip_deps")
You can’t perform that action at this time.
0 commit comments