This is an automated email from the ASF dual-hosted git repository.

dianfu pushed a commit to branch release-1.19
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/release-1.19 by this push:
     new 858008f6fd1 [FLINK-37804][python][build] Fix build mac wheels error on 
Python3.8 in GHA (#26593)
858008f6fd1 is described below

commit 858008f6fd1ca7c29d2970da09b24600288b3e73
Author: HuangXingBo <[email protected]>
AuthorDate: Fri May 23 15:26:14 2025 +0800

    [FLINK-37804][python][build] Fix build mac wheels error on Python3.8 in GHA 
(#26593)
---
 flink-python/pyproject.toml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/flink-python/pyproject.toml b/flink-python/pyproject.toml
index 0ec9012fbc8..dec1a8d5b48 100644
--- a/flink-python/pyproject.toml
+++ b/flink-python/pyproject.toml
@@ -23,7 +23,9 @@ requires = [
     "wheel",
     "apache-beam>=2.43.0,<2.49.0",
     "cython>=0.29.24",
-    "fastavro>=1.1.0,!=1.8.0"
+    "fastavro>=1.1.0,!=1.8.0",
+    "cython>=0.29.24,<3; sys_platform == 'darwin' and python_version == '3.8'",
+    "fastavro==1.7.4; sys_platform == 'darwin' and python_version == '3.8'"
 ]
 
 [tool.cibuildwheel]

Reply via email to