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/11 06:20:18 UTC

[airflow] branch main updated: Remove upper bound limit of astroid (#30033)

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 fc3917ef38 Remove upper bound limit of astroid (#30033)
fc3917ef38 is described below

commit fc3917ef380d9b02f03a3134fbaeee91f9c700db
Author: Asif Saif Uddin <au...@gmail.com>
AuthorDate: Sat Mar 11 12:20:11 2023 +0600

    Remove upper bound limit of astroid (#30033)
    
    * Remove upper bound limit of astroid
    
    * "astroid>=2.12.3"
---
 setup.py | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/setup.py b/setup.py
index f29a923c76..90a73f4404 100644
--- a/setup.py
+++ b/setup.py
@@ -248,9 +248,7 @@ deprecated_api = [
     "requests>=2.26.0",
 ]
 doc = [
-    # Astroid 2.12.* breaks documentation building
-    # We can remove the limit here after https://github.com/PyCQA/astroid/issues/1708 is solved
-    "astroid<2.12.0",
+    "astroid>=2.12.3",
     "checksumdir",
     "click>=8.0",
     # Docutils 0.17.0 converts generated <div class="section"> into <section> and breaks our doc formatting