Skip to content

Commit 26be416

Browse files
update the readthedocs yaml file
1 parent 821caea commit 26be416

4 files changed

+24
-16
lines changed

.gitlab-ci.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -105,13 +105,14 @@ build_docs:
105105
- $BOT_LABEL_BUILD_DOCS
106106
- $BOT_LABEL_REGULAR_TEST
107107
script:
108+
- source /opt/pyenv/activate && pyenv global 3.6.10
109+
- /opt/pyenv/pyenv-1.2.16/versions/3.6.10/bin/python -m pip install --user -r $CI_PROJECT_DIR/docs/requirements.txt
108110
- cd docs
109111
- cd en
110112
- make gh-linkcheck
111113
- make html
112114
- ../check_doc_warnings.sh
113115

114-
115116
.build_examples_make_template: &build_examples_make_template
116117
<<: *build_template
117118
# This is a workaround for a rarely encountered issue with building examples in CI.

.readthedocs.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44

55
# Required
66
version: 2
7+
build:
8+
os: "ubuntu-16.04"
9+
tools:
10+
python: "3.6"
711

812
# Optionally build your docs in additional formats such as PDF and ePub
913
formats:
@@ -12,6 +16,5 @@ formats:
1216

1317
# Optionally set the version of Python and requirements required to build your docs
1418
python:
15-
version: 2.7
1619
install:
1720
- requirements: docs/requirements.txt

docs/requirements.txt

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
# This is a list of python packages used to generate documentation. This file is used with pip:
22
# pip install --user -r requirements.txt
33
#
4-
sphinx>=1.8.4
5-
breathe==4.11.1
6-
sphinx-rtd-theme
7-
sphinx-notfound-page
8-
sphinxcontrib-blockdiag>=1.5.5, <2.0.0
9-
sphinxcontrib-seqdiag>=0.8.5, <2.0.0
10-
sphinxcontrib-actdiag>=0.8.5, <2.0.0
11-
sphinxcontrib-nwdiag>=0.9.5, <2.0.0
12-
blockdiag>=1.5.4, <2.0.0
13-
seqdiag>=0.9.6, <2.0.0
14-
actdiag>=0.5.4, <2.0.0
15-
nwdiag>=1.0.4, <2.0.0
16-
recommonmark
17-
future>=0.16.0 # for ../tools/gen_esp_err_to_name.py
4+
setuptools<57.5.0
5+
sphinx==2.3.1
6+
breathe==4.14.1
7+
sphinx-rtd-theme==1.0.0
8+
sphinx-notfound-page==0.7.1
9+
sphinxcontrib-blockdiag==2.0.0
10+
sphinxcontrib-seqdiag==2.0.0
11+
sphinxcontrib-actdiag==2.0.0
12+
sphinxcontrib-nwdiag==2.0.0
13+
sphinxcontrib-wavedrom==2.0.0
14+
funcparserlib==0.3.6
15+
nwdiag==2.0.0
16+
recommonmark==0.7.0
17+
future==0.16.0 # for ../tools/gen_esp_err_to_name.py

docs/sphinx-known-warnings.txt

+4
Original file line numberDiff line numberDiff line change
@@ -86,3 +86,7 @@ spi.inc:line: WARNING: Duplicate declaration, uint32_t spi_trans_t::cmd
8686
spi.inc:line: WARNING: Duplicate declaration, uint32_t spi_trans_t::addr
8787
spi.inc:line: WARNING: Duplicate declaration, uint32_t spi_trans_t::mosi
8888
spi.inc:line: WARNING: Duplicate declaration, uint32_t spi_trans_t::miso
89+
spi.inc:line: WARNING: Duplicate declaration, uint32_t spi_trans_t::cmd : 5
90+
spi.inc:line: WARNING: Duplicate declaration, uint32_t spi_trans_t::addr : 7
91+
spi.inc:line: WARNING: Duplicate declaration, uint32_t spi_trans_t::mosi : 10
92+
spi.inc:line: WARNING: Duplicate declaration, uint32_t spi_trans_t::miso : 10

0 commit comments

Comments
 (0)