1local_repository(
2 name = "rules_python",
3 path = "../../..",
4)
5
6load("@rules_python//python:repositories.bzl", "py_repositories", "python_register_toolchains")
7
8py_repositories()
9
10python_register_toolchains(
11 name = "python_3_11",
12 python_version = "3.11",
13)
14