deep rework (mostly ci and build system)

# Bazel
* rework .bazelrc

PiperOrigin-RevId: 886641509
This commit is contained in:
Corentin Le Molgat
2026-03-20 01:41:23 -07:00
committed by Copybara-Service
parent ba91614c11
commit c001d3f9c4
2 changed files with 63 additions and 15 deletions

View File

@@ -6,16 +6,17 @@ module(
# Only direct dependencies need to be listed below.
# Please keep the versions in sync with the versions in the WORKSPACE file.
# see https://registry.bazel.build/
bazel_dep(name = "bazel_skylib", version = "1.7.1")
bazel_dep(name = "bazel_skylib", version = "1.8.2")
bazel_dep(name = "platforms", version = "1.0.0")
bazel_dep(name = "rules_cc", version = "0.2.9")
bazel_dep(name = "rules_python", version = "1.6.3")
bazel_dep(name = "abseil-cpp", version = "20240722.1", repo_name = "com_google_absl")
bazel_dep(name = "platforms", version = "0.0.10")
bazel_dep(name = "rules_cc", version = "0.1.1")
bazel_dep(name = "rules_python", version = "0.40.0")
bazel_dep(name = "pybind11_bazel", version = "2.13.6")
bazel_dep(name = "pybind11_bazel", version = "3.0.0")
#### DEV ONLY DEPENDENCIES BELOW HERE ####
SUPPORTED_PYTHON_VERSIONS = [
"3.13",
"3.12",
"3.11",
"3.10",
@@ -23,7 +24,7 @@ SUPPORTED_PYTHON_VERSIONS = [
"3.8",
]
DEFAULT_PYTHON = "3.11"
DEFAULT_PYTHON = "3.12"
python = use_extension("@rules_python//python/extensions:python.bzl", "python", dev_dependency = True)