Skip to content

Commit 760da49

Browse files
Fixes read the docs config file to export the project requirements using poetry and then installing them using pip
1 parent 0f5abc1 commit 760da49

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.readthedocs.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,11 @@ build:
1010
- asdf plugin add poetry
1111
- asdf install poetry latest
1212
- asdf global poetry latest
13-
- poetry config virtualenvs.create false
14-
post_install:
15-
- poetry install
13+
- poetry export --with dev --format=requirements.txt --output=requirements.txt
14+
15+
python:
16+
install:
17+
- requirements: requirements.txt
1618

1719
# Build documentation in the docs/ directory with Sphinx
1820
sphinx:

0 commit comments

Comments
 (0)