From 471499cd78cae2dc6d1241440fa1e1e0c985019d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20W=C3=A4lchli?= Date: Wed, 8 Apr 2020 14:18:36 +0200 Subject: [PATCH] Temporary Fix for docs build failure (#1413) * Update requirements.txt * fix SG typo Co-authored-by: J. Borovec --- docs/requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/requirements.txt b/docs/requirements.txt index 857c7cd845537..0cbf169d70690 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -9,4 +9,4 @@ sphinxcontrib-mockautodoc git+https://github.com/PytorchLightning/lightning_sphinx_theme.git # pip_shims sphinx-autodoc-typehints -sphinx-paramlinks +sphinx-paramlinks<0.4.0 diff --git a/setup.py b/setup.py index 73e21805ef432..dfcaf29a5990e 100755 --- a/setup.py +++ b/setup.py @@ -39,7 +39,7 @@ def load_long_describtion(): # replace relative repository path to absolute link to the release text = text.replace('](docs', f']({url}') # SVG images are not readable on PyPI, so replace them with PNG - text = text.replace('.svg', '.svg') + text = text.replace('.svg', '.png') return text