Skip to content

Commit

Permalink
Make docs/requirements.txt compatible with toolbox requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
ptsavol committed Oct 5, 2023
1 parent d75bc5d commit eea4e31
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
1 change: 1 addition & 0 deletions .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ version: 2

# Build documentation in the docs/ directory with Sphinx
sphinx:
builder: html
configuration: docs/source/conf.py

# Optionally build your docs in additional formats such as PDF and ePub
Expand Down
12 changes: 8 additions & 4 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Requirements for compiling the documentation
sphinx >= 2.2.0
sphinx_rtd_theme >= 0.4.3
recommonmark >= 0.6.0
sphinx-autoapi >= 1.1.0
markupsafe < 2.1 # Jinja2<3.0 tries to import soft_unicode, which has been removed in markupsafe 2.1
jinja2 < 3.0 # Dagster 0.12.8 requires Jinja2<3.0
docutils < 0.17
sphinx < 5.2
sphinx_rtd_theme
recommonmark
astroid < 3.0 # sphinx-autoapi installs the latest astroid. We are not compatible with astroid v3.0
sphinx-autoapi < 2.1 # 2.1 removed support for sphinx < 5.2.0
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
#
# This is also used if you do content translation via gettext catalogs.
# Usually you set "language" from the command line for these cases.
language = None
language = "en"

# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
Expand Down

0 comments on commit eea4e31

Please sign in to comment.