From 0e8772fc20e5a0a2fa1f326c79d494374871ef94 Mon Sep 17 00:00:00 2001 From: Joshua Haberman Date: Thu, 5 May 2022 16:41:29 -0700 Subject: [PATCH] Disable win32 wheels for -rc1. While I've made some progress debugging b/231485326, I'm not going to be able to get this fully working in time for -rc1. If I can debug this before the final release, we can re-enable the win32 wheels. PiperOrigin-RevId: 446849335 --- python/dist/BUILD.bazel | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/python/dist/BUILD.bazel b/python/dist/BUILD.bazel index 9c10a81458..2ca5a14c58 100644 --- a/python/dist/BUILD.bazel +++ b/python/dist/BUILD.bazel @@ -160,7 +160,8 @@ py_dist( name = "dist", binary_wheel = ":binary_wheel", full_api_cpus = [ - "win32", + # TODO(b/231485326): fix win32 build + # "win32", "win64", ], # Windows needs version-specific wheels until 3.10. @@ -176,7 +177,8 @@ py_dist( # 3.10, but on Linux we can get away with using 3.7 (see ../python_api.h for # details). limited_api_wheels = { - "win32": "310", + # TODO(b/231485326): fix win32 build + # "win32": "310", "win64": "310", "linux-x86_64": "37", "linux-aarch_64": "37",