Yesterday a new version of the wheel package was released with a dependency on the packaging package. This means that uv venv --seed will now also install packaging. Since our internal workflow for creating the environments was not expecting this (and obviously it is also not stated in uv's documentation), we got some failures.
In uv's documentation, this is stated:
Install seed packages (one or more of: pip, setuptools, and wheel) into the virtual environment [env: UV_VENV_SEED=]
Note that setuptools and wheel are not included in Python 3.12+ environments.
So this is not valid anymore, since packaging might be installed as well.
Yesterday a new version of the wheel package was released with a dependency on the packaging package. This means that
uv venv --seedwill now also install packaging. Since our internal workflow for creating the environments was not expecting this (and obviously it is also not stated in uv's documentation), we got some failures.In uv's documentation, this is stated:
So this is not valid anymore, since packaging might be installed as well.