teraearlywine opened a new issue, #36741: URL: https://github.com/apache/airflow/issues/36741
### Apache Airflow version 2.8.0 ### If "Other Airflow 2 version" selected, which one? _No response_ ### What happened? When importing airflow, breaking change with pendulum 3.0. Fixed the issue by from pendulum import tz etc.. `The tz argument is keyword-only, unlike in version 1.x` https://pendulum.eustace.io/docs/ ### What you think should happen instead? pendulum 3.0 was released last month ### How to reproduce install airflow locally and try running script with date used ``` from airflow import DAG schedule = "@once" ... dag = DAG( dag_id=dag_id, default_args=default_args, schedule_interval=schedule, catchup=False, ) ``` ### Operating System macOS ### Versions of Apache Airflow Providers _No response_ ### Deployment Docker-Compose ### Deployment details _No response_ ### Anything else? _No response_ ### Are you willing to submit PR? - [ ] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://github.com/apache/airflow/blob/main/CODE_OF_CONDUCT.md) -- 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]
