amordoch commented on issue #58966:
URL: https://github.com/apache/airflow/issues/58966#issuecomment-3603365482
Actually, because `--seed` is used, you don't have to have
`system_site_packaged=True`. Relevant snippet from
`airflow.providers.standard.python_virtualenv._generate_uv_cmd`:
```python
cmd = ["uv", "venv", "--allow-existing", "--seed", "--python",
python_bin]
if system_site_packages:
cmd.append("--system-site-packages")
cmd.append(tmp_dir)
return cmd
```
--
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]