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



##########
File path: setup.py
##########
@@ -16,16 +16,25 @@
 # specific language governing permissions and limitations
 # under the License.
 """Setup.py for the Airflow project."""
-
+import glob
 import logging
 import os
 import subprocess
 import unittest
-from os.path import dirname
+from distutils import log
+from os.path import dirname, relpath
 from textwrap import wrap
 from typing import Dict, List, Set, Tuple
 
 from setuptools import Command, Distribution, find_namespace_packages, setup
+from setuptools.command.develop import develop as develop_orig
+from setuptools.command.install import install as install_orig
+
+# Controls whether providers are installed from pckages or directly from 
sources
+# It is turned on by default in case of development environments such as Breeze
+# And it is particularly useful when you add a new provider and there is no
+# PyPI version to install the provider package from
+INSTALL_PROVIDERS_FROM_SOURCES = 'INSTALL_PROVIDERS_FROM_SOURCES'

Review comment:
       Man I hate pylint sometimes.




----------------------------------------------------------------
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:
[email protected]


Reply via email to