Skip to content

Commit 483e052

Browse files
fix doc build
1 parent 018a8be commit 483e052

File tree

3 files changed

+13
-5
lines changed

3 files changed

+13
-5
lines changed

.github/workflows/make.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,6 @@ jobs:
338338
runs-on: ubuntu-latest
339339
steps:
340340
- name: Install Documentation Dependencies
341-
if: runner.os == 'Linux'
342341
run: |
343342
sudo apt-get install -y doxygen
344343
cmake -E echo >> $${{matrix.env}}GITHUB_PATH $${{matrix.env}}HOME/.local/bin
@@ -356,7 +355,7 @@ jobs:
356355
- name: Build Website Documentation
357356
run: make -C ${{env.TOOLCHAIN_PATH}} docs
358357
- name: Disable Jekyll
359-
run: cmake -E touch ${{env.TOOLCHAIN_PATH}}/docs/build/html/.nojekyll
358+
run: touch ${{env.TOOLCHAIN_PATH}}/docs/build/html/.nojekyll
360359
- name: Remove .pickle files
361360
run: find ${{env.TOOLCHAIN_PATH}}/docs/build/ -name '*.pickle' -delete
362361

docs/libraries/keypadc.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ It supports multi-key presses, and can be used for extremely responsive input co
1414
:depth: 3
1515

1616
Key Detection
17-
-------------------
17+
-------------
1818

1919
Handling key detection properly is a major requirement for a lot of programs.
2020
Detecting a hold can be rather straightforward, but things like a press, release, can sometimes be rather confusing at first.

docs/requirements.txt

+11-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
1-
docutils==0.16
21
sphinx==4.5.0
2+
sphinx-design==0.3.0
3+
sphinxcontrib-applehelp==1.0.4
4+
sphinxcontrib-devhelp==1.0.2
5+
sphinxcontrib-htmlhelp==2.0.1
6+
sphinxcontrib-jsmath==1.0.1
7+
sphinxcontrib-qthelp==1.0.3
8+
sphinxcontrib-serializinghtml==1.1.5
39
sphinx_rtd_theme==1.0.0
10+
docutils==0.16
411
breathe==4.33.1
512
Jinja2==3.1.3
6-
sphinx-design==0.3.0
13+
alabaster==0.7.13
14+
imagesize==1.4.1
15+
snowballstemmer==2.2.0

0 commit comments

Comments
 (0)