From 3990747f167f8ce9d62cf0dd1ee44eb9c3bc9ffa Mon Sep 17 00:00:00 2001 From: ntkathole Date: Tue, 1 Jul 2025 20:40:06 +0530 Subject: [PATCH] fix: Skip macOS 14 with Python 3.10 due to gettext library Signed-off-by: ntkathole --- .github/workflows/build_wheels.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index e933f8fc49e..397fe8a43b9 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -115,6 +115,10 @@ jobs: os: [ ubuntu-latest, macos-14 ] python-version: [ "3.10", "3.11", "3.12"] from-source: [ True, False ] + exclude: + # Skip macOS 14 with Python 3.10 due to gettext library issues + - os: macos-14 + python-version: "3.10" env: # this script is for testing servers # it starts server with timeout and checks whether process killed by timeout (started healthy) or died by itself