Skip to content

Commit bd063cc

Browse files
authored
docs: fix readthedocs build not installing docs group (#3254)
1 parent b4fbf43 commit bd063cc

File tree

1 file changed

+16
-4
lines changed

1 file changed

+16
-4
lines changed

.readthedocs.yaml

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,23 @@ version: 2
33
sphinx:
44
configuration: docs/conf.py
55

6+
7+
build:
8+
os: ubuntu-22.04
9+
tools:
10+
python: "3.9"
11+
jobs:
12+
post_create_environment:
13+
# Install poetry
14+
- pip install poetry
15+
# Tell poetry to not use a virtual environment
16+
- poetry config virtualenvs.create false
17+
post_install:
18+
# Install dependencies
19+
- poetry install --with docs --with tests
20+
621
python:
7-
version: 3.7
22+
version: 3.9
823
install:
924
- method: pip
1025
path: .
11-
extra_requirements:
12-
- docs
13-
- tests

0 commit comments

Comments
 (0)