Skip to content

Commit

Permalink
ci: install hdf5 for pytables
Browse files Browse the repository at this point in the history
  • Loading branch information
sanjayankur31 committed Oct 23, 2024
1 parent 790259f commit 6178c6e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,15 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
- name: Install HDF5 for pytables on ubuntu-latest
if: ${{ matrix.runs-on == 'ubuntu-latest' }}
run: |
sudo apt-get update -y
sudo apt-get install libhdf5-serial-dev
#sudo apt-get install libhdf5-serial-dev liblzo2-dev libgraphviz-dev -y
- name: Install dependencies
run: |
python -m pip install --upgrade pip
- name: Install HDF5 for pytables on macos-latest
Expand Down

0 comments on commit 6178c6e

Please sign in to comment.