Skip to content

Commit a384752

Browse files
committed
chore: update docs dependencies
1 parent c66636b commit a384752

File tree

2 files changed

+27
-6
lines changed

2 files changed

+27
-6
lines changed

.github/workflows/docs.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Build Docs
2+
on:
3+
push:
4+
pull_request:
5+
workflow_dispatch:
6+
7+
jobs:
8+
docs:
9+
name: Dry-run docs build
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- uses: actions/checkout@v2
14+
15+
- name: Initialize Python 3.7
16+
uses: actions/setup-python@v1
17+
with:
18+
python-version: 3.7
19+
20+
- name: Install dependencies
21+
run: |
22+
python -m pip install --upgrade pip
23+
pip install -r docs/requirements.txt
24+
25+
- name: Build docs
26+
run: sphinx-build docs docs/_build
27+

docs/requirements.txt

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,9 @@
11
alabaster==0.7.13
22
babel==2.12.1
33
certifi==2022.12.7
4-
charset-normalizer==3.1.0
5-
docutils==0.17.1
64
idna==2.10
75
imagesize==1.4.1
8-
jinja2==2.11.3
96
jsonpointer==2.3
10-
markupsafe==1.1.1
11-
packaging==20.9
12-
pygments==2.7.4
137
pyparsing==2.4.7
148
pytz==2023.3
159
pyyaml==5.4.1

0 commit comments

Comments
 (0)