From 677274adb3e6bc5eafc7dfe579858922ea354d18 Mon Sep 17 00:00:00 2001 From: Veronica Berglyd Olsen <1619840+vkbo@users.noreply.github.com> Date: Mon, 23 Dec 2024 15:37:28 +0100 Subject: [PATCH] Try a different MacOS image --- .github/workflows/build_mac.yml | 5 ++--- setup/macos/build.sh | 1 + 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_mac.yml b/.github/workflows/build_mac.yml index 6065f892..c0269a28 100644 --- a/.github/workflows/build_mac.yml +++ b/.github/workflows/build_mac.yml @@ -8,8 +8,7 @@ jobs: buildMac-AMD64: needs: buildAssets - # Stay on macos-12 due to https://github.com/create-dmg/create-dmg/issues/143 - runs-on: macos-12 + runs-on: macos-latest env: PYTHON_VERSION: "3.12" PACKAGE_ARCH: x86_64 @@ -40,7 +39,7 @@ jobs: buildMac-M1: needs: buildAssets - runs-on: macos-14 + runs-on: macos-latest env: PYTHON_VERSION: "3.12" PACKAGE_ARCH: aarch64 diff --git a/setup/macos/build.sh b/setup/macos/build.sh index e57b3f8d..8cd47ce9 100755 --- a/setup/macos/build.sh +++ b/setup/macos/build.sh @@ -104,6 +104,7 @@ conda install -c conda-forge enchant hunspell-en --yes # Install dependencies echo "Installing Python dependencies ..." pip install -r "$SRC_DIR/requirements.txt" +pip install pyenchant==3.3.0rc1 # Leave conda env conda deactivate