Skip to content

Commit

Permalink
update_docs.yml: pip install -> pip install -e
Browse files Browse the repository at this point in the history
I think the problem with the following commands failing
with github actions may come from not having an "editable mode"
installation.

This is a test to see if it works well in github now.
  • Loading branch information
jordibc committed Sep 20, 2023
1 parent e19dbf0 commit b843068
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/update_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
# Install dependencies for your project
- name: Install Dependencies
run: |
pip install .[treeview,test,doc]
pip install -e .[treeview,test,doc]
# Build Sphinx documentation
- name: Generate Sphinx Documentation
Expand Down

0 comments on commit b843068

Please sign in to comment.