Skip to content

Commit

Permalink
Use docs constraints in circleci workflow (#251)
Browse files Browse the repository at this point in the history
# Description
the circleci workflow use
`napari/resources/constraints/constraints_py3.10.txt` instead of
`napari/resources/constraints/constraints_py3.10_docs.txt` that causes
the current failure of build docs, as the current build docs process
requires pydantic in version 1.
  • Loading branch information
Czaki authored Oct 24, 2023
1 parent e6cc2b5 commit 27f4d3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
name: Install napari-dev
command: |
. venv/bin/activate
python -m pip install -e napari/".[pyside,dev]" -c "napari/resources/constraints/constraints_py3.10.txt"
python -m pip install -e napari/".[pyside,dev]" -c "napari/resources/constraints/constraints_py3.10_docs.txt"
- run:
name: Install python dependencies
command: |
Expand Down

0 comments on commit 27f4d3d

Please sign in to comment.