We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8860c0a commit 8a06924Copy full SHA for 8a06924
.github/workflows/docs.yml
@@ -17,10 +17,18 @@ jobs:
17
with:
18
python-version: '3.x'
19
20
+ - name: Install Poetry
21
+ run: curl -sSL https://install.python-poetry.org | python3 -
22
+
23
+ - name: Configure Poetry to create virtualenvs in project root
24
+ run: poetry config virtualenvs.in-project true
25
26
+ - name: Install dependencies
27
+ run: poetry install --no-root
28
29
- name: Install Dependencies
30
run: |
31
python -m pip install --upgrade pip
- pip install -r requirements.txt
32
pip install sphinx sphinx_rtd_theme myst-parser
33
34
- name: Build Documentation
0 commit comments