potiuk commented on issue #70231: URL: https://github.com/apache/airflow/issues/70231#issuecomment-5109555052
It's quite deliberate. There are two versions of uv: a) constraints b) Dockerfile They are not necessarily the same - `uv` is used to both - install airflow and used by airflow as installer for venv. It's **impossible** to make it perfecly aligned - because one is fixed at the moment where Dockerfile is updated and one the other (constraint) is set when you use `uv` as extra and use constraints. We can choose either one or the other in the Dockerfile - and we choose the Dockerfile one. Usually they will be few versions apart so this is not an issue. You can still run `uv pip install "apache-airflow[uv]"==3.3.0 --constraints ~/constraints.txt` if you want to install constraints versions. This is the same case with `pip` - but it rarely gets different as it moves way slower than `uv`. -- 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]
