我有一个使用plot-directive的python-3项目,但目前ReadTheDocs不支持这个项目。因此,我希望生成和上载文档,就像我通常处理pypi存储库那样,但是使用-r选项指定不同的URL。
我尝试过以下方法,但失败了:

$ python3 setup.py build_sphinx register upload_docs -r https://readthedocs.org/pypi
running upload_docs
Using PyPI login from /home/user/.pypirc
Using upload directory /home/user/work/wltp.git/docs/_build/html
Submitting documentation to https://readthedocs.org/wltp/pypi
Upload failed (404): OK

我还尝试了以下URL,但没有任何效果:
https://readthedocs.org/pypi/wltp
https://readthedocs.org/pypi/wltp/latest
https://readthedocs.org/wltp/pypi
https://readthedocs.org/wltp/latest/pypi/
我试图(原则上)实现的是可能的吗?

最佳答案

现在应根据this issue修复问题。

关于python - 是否可以将sphinx预生成的html文档上传到ReadTheDocs网站?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27228115/

10-12 19:04