mirror of
https://github.com/astral-sh/uv
synced 2026-01-22 14:00:11 -05:00
## Summary
You can see in pip that they read the full first line, then replace it
with the rewritten shebang, thereby dropping any trailing arguments on
the shebang:
65da0ff534/src/pip/_internal/operations/install/wheel.py (L94)
In contrast, we currently retain them, but write them _after_ the
shebang, which is wrong.
Closes https://github.com/astral-sh/uv/issues/14470.