GitHub user potiuk added a comment to the discussion: 2.10.3 raises AttributeError: partially initialized module 'airflow' has no attribute 'utils' (most likely due to a circular import)
Try 2.10.4rc1 -> that should be fixed. There was the unconditional deprecation warning accidentally generated in 2.10.3 and you seem to have custom logger importing stuff from airflow - since that warning is generated during importing, your logger attempts to import some module from airflow while it is partially imported and it creates recursive import error. You can - possilbbly workaround it also by figuring which custom import on your side triggers it, and turn it into local import - in case it is a "top-level` import in a pytho file - this usually help. GitHub link: https://github.com/apache/airflow/discussions/43971#discussioncomment-11550127 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected]
