potiuk commented on issue #36741: URL: https://github.com/apache/airflow/issues/36741#issuecomment-1888154959
You should use constraints to install airflow https://airflow.apache.org/docs/apache-airflow/stable/installation/installing-from-pypi.html - it is specifically designed to prevent people instaliing Airflow from experiencing such problems. That's why Airflow 2.8.0 has Pendulum <3 and I am quite surprised that you were able to install Airlfow 2.8.0 and Pendulum 3 together. This is what you find in Airflow 2.8.0 package metadata: ``` Requires-Dist: pendulum (<3.0,>=2.0) ``` You must have done something completely forbidden even if you used constraints. And yes we know very well tha tPendulum 3 is not ocmpatible with Airflow - but it has more breaking changes that you found. And if you'd search for Pendulum you'd find out that this PR https://github.com/apache/airflow/pull/36281 adds support for Pendulum 3. For the future I suggest you use search functionality first - that will save you time for reporting issues and maintainers for having to close them. -- 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]
