Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions .github/workflows/test-with-pip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,15 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies and local packages (not macOS)
- name: Install dependencies and local packages
run: python -m pip install .[gui,h5,preferences]
if: matrix.os != 'macos-latest'
- name: Install dependencies and local packages (macOS)
if: (matrix.os != 'macos-latest') || ((matrix.python-version != '3.8') && (matrix.python-version != '3.9'))
- name: Install dependencies and local packages (exclude h5)
run: python -m pip install .[gui,preferences]
# PyTables currently won't build on Apple Silicon, so exclude the h5 deps
# PyTables won't build on Apple Silicon for Python < 3.10, so exclude
# the h5 dependency.
# xref: enthought/apptools/issues/344
if: matrix.os == 'macos-latest'
if: (matrix.os == 'macos-latest') && ((matrix.python-version == '3.8') || (matrix.python-version == '3.9'))
- name: Run tests
run: |
mkdir testdir
Expand Down
Loading