From 0758be556241804796290cc9b2160995f023c96d Mon Sep 17 00:00:00 2001 From: Ash Berlin-Taylor Date: Mon, 15 Jul 2019 13:23:41 +0100 Subject: [PATCH] [AIRFLOW-XXX] Disable intersphinx loading of `requests` modules (#5590) Their website is currently not responding making this inventory unreachable which is causing all our builds to fail. (cherry picked from commit b33b9898677e70ef3fcb4bf03cd28b4077681224) --- docs/conf.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 6706ad719dc7a..3dcc6e2fa47fd 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -237,7 +237,8 @@ 'mongodb': ('https://api.mongodb.com/python/current/', None), 'pandas': ('https://pandas.pydata.org/pandas-docs/stable/', None), 'python': ('https://docs.python.org/3/', None), - 'requests': ('http://docs.python-requests.org/en/master/', None), + # TODO: Re-enable when python-requests.org is working again! + #'requests': ('http://docs.python-requests.org/en/master/', None), 'sqlalchemy': ('https://docs.sqlalchemy.org/en/latest/', None), 'hdfs': ('https://hdfscli.readthedocs.io/en/latest/', None), }