Use macOS 14 in CI (#1335)

This commit is contained in:
Eldred Habert
2024-08-08 22:16:32 +02:00
committed by GitHub
parent 0adff57e2c
commit fb6f861a08
4 changed files with 15 additions and 17 deletions

View File

@@ -52,7 +52,10 @@ case "$actionname" in
# libbet depends on PIL to build
if [ "$2" = "libbet" ]; then
case "${osname%-*}" in
ubuntu|macos)
macos)
python3 -m pip install --break-system-packages pillow
;;
ubuntu)
python3 -m pip install pillow
;;
windows)