Temporary Fix for docs build failure (#1413)

* Update requirements.txt

* fix SG typo

Co-authored-by: J. Borovec <jirka.borovec@seznam.cz>
This commit is contained in:
Adrian Wälchli 2020-04-08 14:18:36 +02:00 committed by GitHub
parent f7622ebfca
commit 471499cd78
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -9,4 +9,4 @@ sphinxcontrib-mockautodoc
git+https://github.com/PytorchLightning/lightning_sphinx_theme.git git+https://github.com/PytorchLightning/lightning_sphinx_theme.git
# pip_shims # pip_shims
sphinx-autodoc-typehints sphinx-autodoc-typehints
sphinx-paramlinks sphinx-paramlinks<0.4.0

View File

@ -39,7 +39,7 @@ def load_long_describtion():
# replace relative repository path to absolute link to the release # replace relative repository path to absolute link to the release
text = text.replace('](docs', f']({url}') text = text.replace('](docs', f']({url}')
# SVG images are not readable on PyPI, so replace them with PNG # SVG images are not readable on PyPI, so replace them with PNG
text = text.replace('.svg', '.svg') text = text.replace('.svg', '.png')
return text return text