potiuk commented on issue #18705:
URL: https://github.com/apache/airflow/issues/18705#issuecomment-933665521


   Actually after closer look, this is not it. The current script is ok for 
that. if you look closer it uses "INSTALL_PROVIDERS_FROM_SOURCES: true"  - 
which means that it does not even attempt to look at providers from PyPI. It 
takes the dependencies from local `setup.py`, so it **should** work in general, 
regardless what providers are released in PyPI:
   
   ```
       include_provider_namespace_packages_when_installing_from_sources()
       if os.getenv(INSTALL_PROVIDERS_FROM_SOURCES) == 'true':
           print("Installing providers from sources. Skip adding providers as 
dependencies")
       else:
           add_all_provider_packages()
   ```
   
   So I continue looking for a reason.
   


-- 
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.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to