Skip to content

Commit

Permalink
[Maintenance] fix path to requirements.txt in deploy_docs workflow (#264
Browse files Browse the repository at this point in the history
)

# References and relevant issues
Deployment of docs action is still failing:
https://github.com/napari/docs/actions/runs/6730870120/job/18294402924

This is because when I added the pip install with constraints I didn't
realize the directory structure was different in this workflow.

# Description
Fixes the path based on the cloning scheme.
  • Loading branch information
psobolewskiPhD authored Nov 2, 2023
1 parent d372890 commit 177e368
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install "napari-repo/[all]" -c "napari-repo/resources/constraints/constraints_py3.10_docs.txt"
python -m pip install -r requirements.txt -c "napari-repo/resources/constraints/constraints_py3.10_docs.txt"
python -m pip install -r docs/requirements.txt -c "napari-repo/resources/constraints/constraints_py3.10_docs.txt"
- name: Testing
run: |
Expand Down

0 comments on commit 177e368

Please sign in to comment.