Skip to content
This repository has been archived by the owner on Feb 27, 2024. It is now read-only.

Commit

Permalink
Use bzlmod (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
shaldengeki authored Feb 14, 2024
1 parent 168931b commit f8ed13f
Show file tree
Hide file tree
Showing 3 changed files with 2,327 additions and 36 deletions.
15 changes: 15 additions & 0 deletions MODULE.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
bazel_dep(name = "rules_python", version = "0.31.0")

python = use_extension("@rules_python//python/extensions:python.bzl", "python")
python.toolchain(
python_version = "3.10",
)

pip = use_extension("@rules_python//python/extensions:pip.bzl", "pip")
pip.parse(
python_version = "3.10",
requirements_lock = "//src:requirements.txt",
)
use_repo(pip, "py_proto_deps")

bazel_dep(name = "bazel_skylib", version = "1.5.0")
Loading

0 comments on commit f8ed13f

Please sign in to comment.