16d3f15320
ARM CI / build (3.10) (push) Has been cancelled
cffconvert / validate (push) Has been cancelled
Creates a GitHub Issue when a PR Rolled back via Commit to Master / create-issue-on-pr-rollback (push) Has been cancelled
Scorecards supply-chain security / Scorecards analysis (push) Has been cancelled
18 lines
459 B
Python
18 lines
459 B
Python
"""
|
|
Legacy-compatible wrapper for python toolchain registration.
|
|
See the WORKSPACE file for instructions on using the updated
|
|
python toolchain registration.
|
|
"""
|
|
|
|
load(
|
|
"@rules_ml_toolchain//py:python_register_toolchain.bzl",
|
|
"python_register_toolchain",
|
|
)
|
|
|
|
def python_init_toolchains(name = "python", python_version = None, **kwargs):
|
|
python_register_toolchain(
|
|
name = name,
|
|
python_version = python_version,
|
|
**kwargs
|
|
)
|