Skip to content

Commit df56a5a

Browse files
committed
add hard coded sphinx dependency requirements for tutorial v4r3
1 parent cc30d67 commit df56a5a

File tree

2 files changed

+86
-5
lines changed

2 files changed

+86
-5
lines changed

.readthedocs.yaml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# .readthedocs.yaml
2+
# Read the Docs configuration file
3+
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
4+
5+
# Required
6+
version: 2
7+
8+
# Set the version of Python and other tools you might need
9+
build:
10+
os: ubuntu-22.04
11+
tools:
12+
python: "3.10"
13+
# You can also specify other tool versions:
14+
# nodejs: "19"
15+
# rust: "1.64"
16+
# golang: "1.19"
17+
18+
# Build documentation in the docs/ directory with Sphinx
19+
sphinx:
20+
configuration: doc/conf.py
21+
22+
# If using Sphinx, optionally build your docs in additional formats such as PDF
23+
formats:
24+
- pdf
25+
26+
# Optionally declare the Python requirements required to build your docs
27+
python:
28+
install:
29+
- requirements: requirements.txt

requirements.txt

Lines changed: 57 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,57 @@
1-
sphinx
2-
sphinx_rtd_theme
3-
cloud_sptheme
4-
nbsphinx
5-
ipykernel
1+
# removed ian 2023-05-08 sphinx
2+
#sphinx_rtd_theme
3+
#cloud_sptheme
4+
#nbsphinx-0.9.1
5+
#ipykernel
6+
7+
# added ian 2023-05-08
8+
alabaster==0.7.12
9+
# via sphinx
10+
babel==2.11.0
11+
# via sphinx
12+
certifi==2022.12.7
13+
# via requests
14+
charset-normalizer==2.1.1
15+
# via requests
16+
docutils==0.19
17+
# via sphinx
18+
idna==3.4
19+
# via requests
20+
imagesize==1.4.1
21+
# via sphinx
22+
ipykernel==6.23.0
23+
# from readthedocs log file
24+
jinja2==3.1.2
25+
# via sphinx
26+
markupsafe==2.1.1
27+
# via jinja2
28+
nbsphinx==0.9.1
29+
# from readthedocs log file
30+
packaging==22.0
31+
# via sphinx
32+
pygments==2.13.0
33+
# via sphinx
34+
pytz==2022.7
35+
# via babel
36+
requests==2.28.1
37+
# via sphinx
38+
snowballstemmer==2.2.0
39+
# via sphinx
40+
sphinx==5.3.0
41+
# via -r docs.in
42+
sphinxcontrib-applehelp==1.0.2
43+
# via sphinx
44+
sphinxcontrib-devhelp==1.0.2
45+
# via sphinx
46+
sphinxcontrib-htmlhelp==2.0.0
47+
# via sphinx
48+
sphinxcontrib-jsmath==1.0.1
49+
# via sphinx
50+
sphinxcontrib-qthelp==1.0.3
51+
# via sphinx
52+
sphinxcontrib-serializinghtml==1.1.5
53+
# via sphinx
54+
sphinx-rtd-theme==0.4.3
55+
# from readthedocs log file
56+
urllib3==1.26.13
57+
# via requests

0 commit comments

Comments
 (0)