Skip to content

Commit

Permalink
build(ci): build bitshuffle in ci workflow to avoid numpy compat issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ljgray committed Sep 26, 2024
1 parent 2c69691 commit d5cb01a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,7 @@ jobs:
- name: Install pip dependencies
run: |
pip install -e .
pip install -e .[lint]
pip install black ruff
- name: Run ruff (flake8 and pydocstyle)
run: ruff check .
Expand Down Expand Up @@ -57,7 +56,8 @@ jobs:

- name: Install pip dependencies
run: |
pip install -e .[compression,mpi,test]
pip install .
pip install .[compression,mpi,test]
- name: Run serial tests
run: pytest --doctest-modules .
Expand Down Expand Up @@ -88,8 +88,8 @@ jobs:
- name: Install pip dependencies
run: |
pip install -e .
pip install -e .[docs]
pip install .
pip install .[docs]
- name: Build sphinx docs
run: sphinx-build -W -b html doc/ doc/_build/html

0 comments on commit d5cb01a

Please sign in to comment.