VladimirYushkevich commented on issue #25271: URL: https://github.com/apache/airflow/issues/25271#issuecomment-1542699877
I have very similar issue with duplicate plugins for `2.6.0`: ``` Python 3.9.13 (main, Sep 22 2022, 15:42:13) [Clang 14.0.0 (clang-1400.0.29.102)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import importlib_metadata >>> for dist in importlib_metadata.distributions(): ... for e in dist.entry_points: ... if e.group != "airflow.plugins": ... continue ... print(dist._path) ... my_package.egg-info /Users/my_user/path_to_my_project/my_package.egg-info ``` Any ideas why I have 2 entries in `importlib_metadata.distributions()` for `airflow.plugins` group (looks for me they are both pointing to same `egg-info`) -- 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]
