Skip to content

Commit

Permalink
Update dependencies in build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
RichieHakim committed Jan 30, 2024
1 parent 648c28b commit e67d814
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ jobs:
# "3.12",
]
extra: [
" ",
"[advanced]",
all,
all_latest,
]
install-level: [
system,
Expand Down Expand Up @@ -125,11 +125,11 @@ jobs:
if: matrix.install-level == 'system'
run: |
## install dependencies with optional extras
pip install -v -e .${{ matrix.extra }}
pip install -v -e .[${{ matrix.extra }}]
- name: Install package with pip dependencies -- user-level
if: matrix.install-level == 'user'
run: |
pip install -v -e .${{ matrix.extra }} --user
pip install -v -e .[${{ matrix.extra }}] --user
- name: Check installed packages
Expand Down

0 comments on commit e67d814

Please sign in to comment.