diff --git a/.actions/assistant.py b/.actions/assistant.py
index 77c39ead7..63f8bb80e 100644
--- a/.actions/assistant.py
+++ b/.actions/assistant.py
@@ -38,7 +38,7 @@
# Open in [{{height="20px" width="117px"}}]({COLAB_REPO_LINK}/{REPO_NAME}/blob/{BRANCH_PUBLISHED}/{DIR_NOTEBOOKS}/%(local_ipynb)s)
#
# Give us a ⭐ [on Github](https://www.github.com/PytorchLightning/pytorch-lightning/)
-# | Check out [the documentation](https://pytorch-lightning.readthedocs.io/en/latest/)
+# | Check out [the documentation](https://pytorch-lightning.readthedocs.io/en/stable/)
# | Join us [on Slack](https://join.slack.com/t/pytorch-lightning/shared_invite/zt-pw5v393p-qRaDgEk24~EjiZNBpSQFgQ)
"""
diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md
index d7f01a8d6..79356607d 100644
--- a/.github/CONTRIBUTING.md
+++ b/.github/CONTRIBUTING.md
@@ -58,7 +58,7 @@ ______________________________________________________________________
## Guidelines
-For this section, we refer to read the [parent PL guidelines](https://pytorch-lightning.readthedocs.io/en/latest/CONTRIBUTING.html)
+For this section, we refer to read the [parent PL guidelines](https://pytorch-lightning.readthedocs.io/en/stable/CONTRIBUTING.html)
**Reminder**
diff --git a/.github/workflows/ci_docs.yml b/.github/workflows/ci_docs.yml
index 8000209c0..8be81f412 100644
--- a/.github/workflows/ci_docs.yml
+++ b/.github/workflows/ci_docs.yml
@@ -79,7 +79,7 @@ jobs:
working-directory: ./docs
run: |
# First run the same pipeline as Read-The-Docs
- make html --debug --jobs $(nproc) SPHINXOPTS="-W --keep-going" -b linkcheck
+ make html --debug SPHINXOPTS="-W --keep-going" -b linkcheck
- name: Upload built docs
uses: actions/upload-artifact@v2
diff --git a/course_UvA-DL/09-normalizing-flows/NF_image_modeling.py b/course_UvA-DL/09-normalizing-flows/NF_image_modeling.py
index ac0643df7..6407b7c41 100644
--- a/course_UvA-DL/09-normalizing-flows/NF_image_modeling.py
+++ b/course_UvA-DL/09-normalizing-flows/NF_image_modeling.py
@@ -1,6 +1,6 @@
# %% [markdown]
#
-# Throughout this notebook, we make use of [PyTorch Lightning](https://pytorch-lightning.readthedocs.io/en/latest/).
+# Throughout this notebook, we make use of [PyTorch Lightning](https://pytorch-lightning.readthedocs.io/en/stable/).
# The first cell imports our usual libraries.
# %%
diff --git a/course_UvA-DL/10-autoregressive-image-modeling/Autoregressive_Image_Modeling.py b/course_UvA-DL/10-autoregressive-image-modeling/Autoregressive_Image_Modeling.py
index 45ba6e1f2..84266846e 100644
--- a/course_UvA-DL/10-autoregressive-image-modeling/Autoregressive_Image_Modeling.py
+++ b/course_UvA-DL/10-autoregressive-image-modeling/Autoregressive_Image_Modeling.py
@@ -26,7 +26,7 @@
#
# First of all, we need to import our standard libraries. Similarly as in
# the last couple of tutorials, we will use [PyTorch
-# Lightning](https://pytorch-lightning.readthedocs.io/en/latest/) here as
+# Lightning](https://pytorch-lightning.readthedocs.io/en/stable/) here as
# well.
# %%
diff --git a/docs/source/conf.py b/docs/source/conf.py
index b20fea9e3..c5aa0af2b 100644
--- a/docs/source/conf.py
+++ b/docs/source/conf.py
@@ -219,8 +219,8 @@
# -- Options for intersphinx extension ---------------------------------------
# Example configuration for intersphinx: refer to the Python standard library.
-intersphinx_mapping = {
- "python": ("https://docs.python.org/3", None),
- "torch": ("https://pytorch.org/docs/stable/", None),
- "numpy": ("https://docs.scipy.org/doc/numpy/", None),
-}
+# intersphinx_mapping = {
+# "python": ("https://docs.python.org/3", None),
+# "torch": ("https://pytorch.org/docs/stable/", None),
+# "numpy": ("https://docs.scipy.org/doc/numpy/", None),
+# }
diff --git a/lightning_examples/datamodules/.meta.yml b/lightning_examples/datamodules/.meta.yml
index 6b87b822a..0688d8c85 100644
--- a/lightning_examples/datamodules/.meta.yml
+++ b/lightning_examples/datamodules/.meta.yml
@@ -8,7 +8,7 @@ description: This notebook will walk you through how to start using Datamodules.
the release of `pytorch-lightning` version 0.9.0, we have included a new class called
`LightningDataModule` to help you decouple data related hooks from your `LightningModule`.
The most up to date documentation on datamodules can be found
- [here](https://pytorch-lightning.readthedocs.io/en/latest/extensions/datamodules.html).
+ [here](https://pytorch-lightning.readthedocs.io/en/stable/extensions/datamodules.html).
requirements:
- torchvision
accelerator:
diff --git a/lightning_examples/mnist-tpu-training/.meta.yml b/lightning_examples/mnist-tpu-training/.meta.yml
index a35d53a2a..b7cb2e9e6 100644
--- a/lightning_examples/mnist-tpu-training/.meta.yml
+++ b/lightning_examples/mnist-tpu-training/.meta.yml
@@ -8,7 +8,7 @@ tags:
- Image
description: In this notebook, we'll train a model on TPUs. Updating one Trainer flag is all you need for that.
The most up to documentation related to TPU training can be found
- [here](https://pytorch-lightning.readthedocs.io/en/latest/advanced/tpu.html).
+ [here](https://pytorch-lightning.readthedocs.io/en/stable/advanced/tpu.html).
requirements:
- torchvision
accelerator:
diff --git a/lightning_examples/mnist-tpu-training/mnist-tpu.py b/lightning_examples/mnist-tpu-training/mnist-tpu.py
index b705ab816..1035e82fc 100644
--- a/lightning_examples/mnist-tpu-training/mnist-tpu.py
+++ b/lightning_examples/mnist-tpu-training/mnist-tpu.py
@@ -22,7 +22,7 @@
# ### Defining The `MNISTDataModule`
#
# Below we define `MNISTDataModule`. You can learn more about datamodules
-# in [docs](https://pytorch-lightning.readthedocs.io/en/latest/extensions/datamodules.html).
+# in [docs](https://pytorch-lightning.readthedocs.io/en/stable/extensions/datamodules.html).
# %%