xref: /aosp_15_r20/external/bazelbuild-rules_python/tests/integration/custom_commands/WORKSPACE (revision 60517a1edbc8ecf509223e9af94a7adec7d736b8)
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