From e52e48b7ef83feeff56ed0894ce39841ea8bd483 Mon Sep 17 00:00:00 2001 From: Xuan Wang Date: Thu, 10 Oct 2024 12:33:07 -0700 Subject: [PATCH] [Python Bazel] Revert Cython upgrade (#37884) We're seeing some Bazel tests timing out due to this upgrade, revert this for now until we resolved the issue. Closes #37884 COPYBARA_INTEGRATE_REVIEW=https://github.com/grpc/grpc/pull/37884 from XuanWang-Amos:revert_cython_upgrade 0071889b5cf30ce4d65d7ac1b0c1b1139f81e74c PiperOrigin-RevId: 684538459 --- bazel/grpc_python_deps.bzl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bazel/grpc_python_deps.bzl b/bazel/grpc_python_deps.bzl index 44eca11f671..dbfff526a11 100644 --- a/bazel/grpc_python_deps.bzl +++ b/bazel/grpc_python_deps.bzl @@ -38,9 +38,9 @@ def grpc_python_deps(): http_archive( name = "cython", build_file = "@com_github_grpc_grpc//third_party:cython.BUILD", - sha256 = "2ec7d66d23d6da2328fb24f5c1bec6c63a59ec2e91027766ab904f417e1078aa", - strip_prefix = "cython-3.0.11", + sha256 = "a2da56cc22be823acf49741b9aa3aa116d4f07fa8e8b35a3cb08b8447b37c607", + strip_prefix = "cython-0.29.35", urls = [ - "https://github.com/cython/cython/archive/3.0.11.tar.gz", + "https://github.com/cython/cython/archive/0.29.35.tar.gz", ], )