potiuk commented on issue #53560:
URL: https://github.com/apache/airflow/issues/53560#issuecomment-3094376465

   Converted it back from discussion for posterity as it turned out to be a 
real issue. So posting here with details of reasoning and workaround for anyone 
who looks for a solution.
   
   The real issue was that our `postgtres` and `common.sql` providers should 
have `postgres` and `sql-other` extra of pandas added in their dependencies. 
This has been added in #53535 and will take effect on main and 3.0.4 once the 
next wave of providers gets released (next week). 
   
   I do not feel there is a need to update constraints for 3.0.3 and rebuild 
images because it seem to affect small number of users and there is an easy 
workaround:
   
   1) you can copy airflow constraints for 3.0.3 and change pandas version to 
2.1.4 and use that constraints file instead of the one from github
   2) when you are using airflow image you can build your own image and 
downgrade pandas:
   
   ```Dockerfile
   FROM apache/airflow:3.0.3
   RUN pip install pandas==2.1.4
   ```
   
   This issue will be fixed permanently in Airflow 3.0.4


-- 
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]

Reply via email to