lucasfcnunes commented on issue #37742: URL: https://github.com/apache/airflow/issues/37742#issuecomment-3143918133
@potiuk The constraint is no more and it's breaking pandas x SQLAlchemy in Airflow 3 right now. ```console $ docker run --rm --pull=always --entrypoint='' 'apache/airflow:3.0.3-python3.12' bash -c 'pip list --format=freeze' | grep -Ei '^(pandas|sqlalchemy)=='` 3.0.3-python3.12: Pulling from apache/airflow Digest: sha256:66d35503f78e8c87de2db43f0a3311efd26a5d34584599509a8bd90fb308adc7 Status: Image is up to date for apache/airflow:3.0.3-python3.12 pandas==2.2.3 SQLAlchemy==1.4.54 ``` PS: When `SQLAlchemy<2`, `pandas<2.2` is a must. Refs: - https://github.com/pandas-dev/pandas/issues/57049 -- 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]
