Skip to content

Commit

Permalink
Fix 'pip install -e .' commands in ./github/workflows/*yml files
Browse files Browse the repository at this point in the history
  • Loading branch information
martinholmer committed Nov 15, 2024
1 parent aeec409 commit fd4645f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Build
shell: bash -l {0}
run: |
pip install -e . --user
pip install -e . --user --config-settings editable_mode=compat
pip install pytest-cov --user
pip install pytest-pycodestyle --user
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check_jupyterbook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
run: |
pip install jupyter-book
conda install -c pslmodels behresp
pip install -e .
pip install -e . --config-settings editable_mode=compat
python docs/guide/make/make_uguide.py
cd docs
jb build .
2 changes: 1 addition & 1 deletion .github/workflows/deploy_jupyterbook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
run: |
pip install jupyter-book
conda install -c pslmodels behresp
pip install -e .
pip install -e . --config-settings editable_mode=compat
cd docs
jb build .
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy_parameters_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
run: |
pip install jupyter-book
conda install -c pslmodels behresp
pip install -e .
pip install -e . --config-settings editable_mode=compat
python docs/guide/make/make_uguide.py
cd docs
jb build .
Expand Down

0 comments on commit fd4645f

Please sign in to comment.