mirror of
https://github.com/vee1e/tflite-micro.git
synced 2026-09-01 09:51:22 +00:00
* Work * Review update * Enabled tests * Bazel: Suppress warnings from external repositories * Fixed whl_test * Formatted * More format
24 lines
725 B
Text
24 lines
725 B
Text
load("@rules_python//python:pip.bzl", "compile_pip_requirements")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
# To update requirements for a specific version, run:
|
|
# bazel run //python:requirements_3_10.update --@rules_python//python/config_settings:python_version=3.10
|
|
[
|
|
compile_pip_requirements(
|
|
name = "requirements_" + version.replace(".", "_"),
|
|
extra_args = ["--allow-unsafe"],
|
|
requirements_in = "python_requirements.in",
|
|
requirements_txt = "python_requirements_" + version.replace(".", "_") + ".txt",
|
|
tags = [
|
|
"manual",
|
|
"notap",
|
|
],
|
|
)
|
|
for version in [
|
|
"3.10",
|
|
"3.11",
|
|
"3.12",
|
|
"3.13",
|
|
]
|
|
]
|