You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2020/12/07 12:21:05 UTC

[GitHub] [airflow] ashb commented on a change in pull request #12862: Bugfix: Entrypoint Import Exception masked by attribute error

ashb commented on a change in pull request #12862:
URL: https://github.com/apache/airflow/pull/12862#discussion_r537463597



##########
File path: tests/plugins/test_plugins_manager.py
##########
@@ -24,6 +25,9 @@
 from airflow.www import app as application
 from tests.test_utils.mock_plugins import mock_plugin_manager
 
+py39 = sys.version_info[0:2] >= (3, 9)

Review comment:
       ```suggestion
   py39 = sys.version_info >= (3, 9)
   ```

##########
File path: tests/plugins/test_plugins_manager.py
##########
@@ -24,6 +25,9 @@
 from airflow.www import app as application
 from tests.test_utils.mock_plugins import mock_plugin_manager
 
+py39 = sys.version_info[0:2] >= (3, 9)

Review comment:
       And lets make it PY39




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org