We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd89a2a commit e1a8fb5Copy full SHA for e1a8fb5
.github/workflows/test-with-pip.yml
@@ -20,8 +20,15 @@ jobs:
20
uses: actions/setup-python@v5
21
with:
22
python-version: ${{ matrix.python-version }}
23
- - name: Install dependencies and local packages
+ - name: Install dependencies and local packages (not macOS)
24
run: python -m pip install .[gui,h5,preferences]
25
+ if: matrix.os != 'macos-latest' || ${{ matrix.python-version }} >= '3.10'
26
+ - name: Install dependencies and local packages (macOS)
27
+ run: python -m pip install .[gui,preferences]
28
+ # PyTables won't build on Apple Silicon for Python >= 3.10, so exclude
29
+ # the h5 dep
30
+ # xref: enthought/apptools/issues/344
31
+ if: matrix.os == 'macos-latest' && ${{ matrix.python-version }} < '3.10'
32
- name: Run tests
33
run: |
34
mkdir testdir
0 commit comments