fix: Skip macOS 14 with Python 3.10 due to gettext library (#5490) · feast-dev/feast@41d4977

Original file line numberDiff line numberDiff line change

@@ -115,6 +115,10 @@ jobs:

115115

os: [ ubuntu-latest, macos-14 ]

116116

python-version: [ "3.10", "3.11", "3.12"]

117117

from-source: [ True, False ]

118+

exclude:

119+

# Skip macOS 14 with Python 3.10 due to gettext library issues

120+

- os: macos-14

121+

python-version: "3.10"

118122

env:

119123

# this script is for testing servers

120124

# it starts server with timeout and checks whether process killed by timeout (started healthy) or died by itself