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 2020/12/11 15:31:06 UTC

[airflow] branch v1-10-test updated: 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


The following commit(s) were added to refs/heads/v1-10-test by this push:
     new e75deee  Bugfix: Unable to import Airflow plugins on Python 3.8 (#12859)
e75deee is described below

commit e75deee11ab8ed626979f1fe3927049a200ab676
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 ddd8417..f60b7c9 100644
--- a/setup.py
+++ b/setup.py
@@ -621,7 +621,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',