diff --git a/.github/workflows/build_mac.yml b/.github/workflows/build_mac.yml index 6065f8926..c0269a28f 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 e57b3f8d8..8cd47ce96 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