Skip to content

Commit a6d2bce

Browse files
committed
Adding Mac ARM github hosted runner
1 parent 5afc2c9 commit a6d2bce

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
needs: lint
3535
strategy:
3636
matrix: #using macos-13 because pyenchant doesn't work on macos-latest (macos 14, arm64 architecture)
37-
os: [macos-13, windows-latest, ubuntu-latest]
37+
os: [macos-latest]
3838
python-version: ['3.9', '3.12']
3939
runs-on: ${{ matrix.os }}
4040
steps:
@@ -63,6 +63,7 @@ jobs:
6363
elif [ "$RUNNER_OS" == "macOS" ]; then
6464
brew update-reset
6565
brew install enchant
66+
export PYENCHANT_LIBRARY_PATH=/opt/homebrew/lib/libenchant-2.dylib
6667
fi
6768
- name: Install dependencies
6869
run: |
@@ -82,6 +83,7 @@ jobs:
8283
env:
8384
SIMPLE_ITK_MEMORY_CONSTRAINED_ENVIRONMENT: 1
8485
run: |
86+
echo $PYENCHANT_LIBRARY_PATH
8587
test_files="${{ steps.nbl.outputs.all_changed_files }}"
8688
# on windows the paths use backslashes, so replace with forward slashes
8789
if [ "$RUNNER_OS" == "Windows" ]; then

Python/00_Setup.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"\n",
99
"\n",
1010
"## Newcomers to Jupyter Notebooks:\n",
11-
"1. We use two types of cells, code and markdown.\n",
11+
"1. We use two types of cells, code and markdown.\n",
1212
"2. To run a code cell, select it (mouse or arrow key so that it is highlighted) and then press shift+enter which also moves focus to the next cell or ctrl+enter which doesn't.\n",
1313
"3. Closing the browser window does not close the Jupyter server. To close the server, go to the terminal where you ran it and press ctrl+c twice.\n",
1414
"\n",

0 commit comments

Comments
 (0)