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 = "python39",
12 python_version = "3.9",
13)
14