You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ka...@apache.org on 2021/01/21 20:19:26 UTC

[airflow] 01/44: Bugfix: Unable to import Airflow plugins on Python 3.8 (#12859)

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

kaxilnaik pushed a commit to branch v1-10-test
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit 5d642a34ae279a6f397cee0d0f470bc61af2cbc4
Author: Kaxil Naik <ka...@gmail.com>
AuthorDate: Fri Dec 11 15:28:13 2020 +0000

    Bugfix: Unable to import Airflow plugins on Python 3.8 (#12859)
    
    closes https://github.com/apache/airflow/issues/13019
---
 setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/setup.py b/setup.py
index 2b6e00d..d0bd0ba 100644
--- a/setup.py
+++ b/setup.py
@@ -622,7 +622,7 @@ INSTALL_REQUIREMENTS = [
     'future>=0.16.0, <0.19',
     'graphviz>=0.12',
     'gunicorn>=19.5.0, <21.0',
-    'importlib-metadata~=2.0; python_version<"3.8"',
+    'importlib-metadata~=2.0; python_version<"3.9"',
     'importlib_resources~=1.4',
     'iso8601>=0.1.12',
     'jinja2>=2.10.1, <2.12.0',