Skip to content

Commit 55506a9

Browse files
authored
Merge pull request #15987 from ethereum/fix_docs
Fix docs for python 3.13
2 parents 6da61ca + 971ac4c commit 55506a9

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

docs/requirements.txt

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
# Older versions of sphinx-rtd-theme do not work with never docutils but have a bug in the dependency
22
# which could result in it being installed anyway and the style (especially bullet points) being broken.
33
# See https://github.com/readthedocs/sphinx_rtd_theme/issues/1115
4-
sphinx_rtd_theme>=0.5.2
4+
# theme >=3.0.0 removes the display_version option in favor of version_selector and language_selector
5+
sphinx_rtd_theme>=0.5.2, <3.0.0
56

67
pygments-lexer-solidity>=0.7.0
7-
sphinx-a4doc>=1.6.0
8+
sphinx-a4doc>=1.6.0; python_version < '3.13'
9+
# todo remove this once there is a version > 1.6.0
10+
sphinx-a4doc @ git+https://github.com/taminomara/sphinx-a4doc@f63d3b2; python_version >= '3.13'
811

912
# Sphinx 2.1.0 is the oldest version that accepts a lexer class in add_lexer()
10-
sphinx>=2.1.0, <6.0
13+
sphinx>=2.1.0, <9.0

0 commit comments

Comments
 (0)