Skip to content

Commit a06164c

Browse files
Fix dependency installation in workflow and in the docs
1 parent 57050fa commit a06164c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/docs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Install dependencies
3030
run: |
3131
python -m pip install --upgrade pip
32-
pip install -e [docs]
32+
pip install -e .[docs]
3333
3434
- name: Build documentation
3535
run: sphinx-multiversion docs/source docs/build/html --keep-going --no-color

docs/source/contributors_guide/contributing.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Preparing the development setup
2424

2525
.. code-block:: console
2626
27-
$ pip install -e [dev]
27+
$ pip install -e .[dev]
2828
$ pre-commit install
2929
3030
Building documentation

0 commit comments

Comments
 (0)