readthedocs构建时如何删除doctest标志?

问题描述 投票:0回答:1

我已经发布了我的Python软件包,并将文档托管在readthedocs上。

我想知道如何从文档中删除doctest标志(例如doctest: +ELLIPSIS):

https://camphr.readthedocs.io/en/doc-doctest/

当我在本地计算机(make html)中构建文档时,标记已正确删除。

python python-sphinx read-the-docs
1个回答
0
投票

我找到了解决方案。

Read-the-docs默认情况下会安装sphinx<2,其中存在doctest标志的错误。因此,我准备了readthedocs.yml

...
python:
  install:
    - requirements: docs/requirements.txt

并准备好docs/requirements.txt,如下:

sphinx>=2.2

现在readthedocs安装了sphinx>=2.2,一切正常。

© www.soinside.com 2019 - 2024. All rights reserved.