You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ uv init foo
$ cd foo
$ uv add pyobjc
💭 oh crud, I don't need every single pyobjc framework! that's a lot of framework!
^C
$ uv add pyobjc-core
💭 oh crud, it's still downloading all frameworks! what's happening?!
^C
$ cat pyproject.toml
[...]
dependencies = [
"pyobjc",
"pyobjc-core",
]
$
IOW, I'd expect that if I cancel the uv add operation (even if it's made up of add and implicit sync afterwards), pyproject.toml was back to the state it was before uv add.
The text was updated successfully, but these errors were encountered:
uv 0.4.0, macOS.
A minimal code snippet that reproduces the issue:
IOW, I'd expect that if I cancel the
uv add
operation (even if it's made up ofadd
and implicitsync
afterwards),pyproject.toml
was back to the state it was beforeuv add
.The text was updated successfully, but these errors were encountered: