Skip to content

Commit 2f2ff3e

Browse files
committed
remove -r
1 parent f2e1eae commit 2f2ff3e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/book_stable.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
uses: ./.github/actions/install-dependencies
3131

3232
- name: Install book deps
33-
run: python3 -m pip install -r --no-binary=h5py .
33+
run: python3 -m pip install --no-binary=h5py .
3434

3535
- name: Build the book
3636
run: jupyter-book build . -W

.github/workflows/test_nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
uses: ./.github/actions/install-dependencies
4343

4444
- name: Install requirements
45-
run: python3 -m pip install --no-cache-dir -r --no-binary=h5py . --upgrade
45+
run: python3 -m pip install --no-cache-dir --no-binary=h5py . --upgrade
4646

4747
- name: Test complex notebooks in parallel
4848
run: |

.github/workflows/test_stable.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
- name: Install additional deps
3434
run: |
35-
python3 -m pip install -r --no-binary=h5py .
35+
python3 -m pip install --no-binary=h5py .
3636
3737
- name: Test complex notebooks in parallel
3838
run: |

0 commit comments

Comments
 (0)