You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2023/03/02 08:05:42 UTC

[airflow] branch main updated: Workaround documentation prooblems for Boto3 (#29865)

This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 1b17559f76 Workaround documentation prooblems for Boto3 (#29865)
1b17559f76 is described below

commit 1b17559f76427a999fc2e46497296af93c559d23
Author: Jarek Potiuk <ja...@potiuk.com>
AuthorDate: Thu Mar 2 09:05:32 2023 +0100

    Workaround documentation prooblems for Boto3 (#29865)
    
    Boto3 interspinx repository got broken as of 1.26.81 and it is
    being tracked in https://github.com/boto/boto3/issues/3610
    
    This PR fixes the version of the inventory to 1.26.80 which is the
    latest known correct inventory version.
---
 docs/exts/docs_build/third_party_inventories.py | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/docs/exts/docs_build/third_party_inventories.py b/docs/exts/docs_build/third_party_inventories.py
index 7ac33a5333..eb258e8964 100644
--- a/docs/exts/docs_build/third_party_inventories.py
+++ b/docs/exts/docs_build/third_party_inventories.py
@@ -17,7 +17,10 @@
 from __future__ import annotations
 
 THIRD_PARTY_INDEXES = {
-    "boto3": "https://boto3.amazonaws.com/v1/documentation/api/latest",
+    # Temporary set to the latest version of boto3 inventory which has all the methods
+    # This should be changed back to "latest" once the inventory is fixed
+    # See https://github.com/boto/boto3/issues/3610 for details
+    "boto3": "https://boto3.amazonaws.com/v1/documentation/api/1.26.80",
     "celery": "https://docs.celeryq.dev/en/stable/",
     "docker": "https://docker-py.readthedocs.io/en/stable",
     "hdfs": "https://hdfscli.readthedocs.io/en/latest",