eladkal commented on issue #40127: URL: https://github.com/apache/airflow/issues/40127#issuecomment-2155857840
Possibly due to https://github.com/apache/airflow/pull/39500 which added `import importlib_metadata` in airflow/providers/amazon/aws/utils/__init__.py where we should have ``` import sys if sys.version_info >= (3, 10): from importlib import metadata else: import importlib_metadata as metadata # type: ignore[no-redef] ``` cc @ferruzzi @Taragolis WDYT? @aiell0 if you will downgrade provider amazon version to 8.22.0 the issue should be resolved -- 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]
