From c5c62d8f1fc2f7baa299f8d75c2c2d806c716824 Mon Sep 17 00:00:00 2001 From: James Sharpe Date: Thu, 2 Jan 2025 23:50:56 +0000 Subject: [PATCH] Downgrade to python 3.10 --- examples/WORKSPACE.bazel | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/WORKSPACE.bazel b/examples/WORKSPACE.bazel index 69d3837dc..178b5ffe6 100644 --- a/examples/WORKSPACE.bazel +++ b/examples/WORKSPACE.bazel @@ -34,15 +34,15 @@ load("@com_google_protobuf//:protobuf_deps.bzl", "protobuf_deps") protobuf_deps() python_register_toolchains( - name = "python_3_11", - python_version = "3.11", + name = "python_3_10", + python_version = "3.10", ) load("@rules_python//python:pip.bzl", "pip_parse") pip_parse( name = "pip", - python_interpreter_target = "@python_3_11_host//:python", + python_interpreter_target = "@python_3_10_host//:python", requirements_lock = "//:requirements_lock.txt", )