Skip to content

Commit

Permalink
Update ci to handle macos-latest == macos14
Browse files Browse the repository at this point in the history
  • Loading branch information
pgleeson committed Apr 25, 2024
1 parent d7ad5a0 commit b000a64
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,11 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ "3.8", "3.10", "3.11"]
python-version: [ "3.9", "3.10", "3.11"]
runs-on: [ubuntu-latest, macos-latest, windows-latest]
exclude:
- runs-on: macos-latest
python-version: "3.9"

steps:
- uses: actions/checkout@v4
Expand All @@ -49,6 +52,11 @@ jobs:
#- name: Install specific PsyNeuLink branch
# run: python -m pip install git+https://github.com/ModECI/PsyNeuLink@devel

- name: Install HDF5 for pytables on macos-14/latest
if: ${{ matrix.runs-on == 'macos-latest' }}
run: |
brew install hdf5
- name: Install core package
run: python -m pip install .[dev]

Expand Down

0 comments on commit b000a64

Please sign in to comment.