From: Quentin Young Date: Thu, 28 Sep 2023 14:49:37 +0000 (-0400) Subject: doc: unpin sphinx from 4.0.2 X-Git-Tag: base_9.1~23^2 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=dd858b8a76f85eae9531e1e908a15a87b58f5412;p=matthieu%2Ffrr.git doc: unpin sphinx from 4.0.2 requirements.txt was pinning sphinx at a very old version. This version doesn't work in recent versions of Python; the new RTD configuration made RTD respect our requirements file, breaking the build. Signed-off-by: Quentin Young --- diff --git a/doc/developer/.readthedocs.yaml b/doc/developer/.readthedocs.yaml index 9acbedb9cd..113672fadb 100644 --- a/doc/developer/.readthedocs.yaml +++ b/doc/developer/.readthedocs.yaml @@ -10,7 +10,3 @@ build: # Build documentation in the docs/ directory with Sphinx sphinx: configuration: doc/developer/conf.py - -python: - install: - - requirements: doc/requirements.txt diff --git a/doc/requirements.txt b/doc/requirements.txt deleted file mode 100644 index debc7f1889..0000000000 --- a/doc/requirements.txt +++ /dev/null @@ -1 +0,0 @@ -sphinx==4.0.2 diff --git a/doc/user/.readthedocs.yaml b/doc/user/.readthedocs.yaml index ed44aef552..c5a11dab17 100644 --- a/doc/user/.readthedocs.yaml +++ b/doc/user/.readthedocs.yaml @@ -10,7 +10,3 @@ build: # Build documentation in the docs/ directory with Sphinx sphinx: configuration: doc/user/conf.py - -python: - install: - - requirements: doc/requirements.txt