Taragolis commented on PR #38025: URL: https://github.com/apache/airflow/pull/38025#issuecomment-1988851647
Ahh this one is regression of https://github.com/apache/airflow/pull/38027 in case of Python 3.12 🤕 , seems like `botocore`/`boto3` internally use deprecated in stuff 🙄 ```python def add_auth(self, request): if self.credentials is None: raise NoCredentialsError() > datetime_now = datetime.datetime.utcnow() E DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: ``` -- 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]
