konsti

Results 176 issues of konsti

This is an attempt to solve https://github.com/astral-sh/uv/issues/4826 by joining markers of requirements and overrides. Say in `a` we have a requirements ``` b==1; python_version < "3.10" c==1; extra == "feature"...

It would be great if `uv tool list` would have a verbose mode that shows paths, maybe reusing `-v`, maybe something like `--paths`. Current output: ``` $ cargo run -q...

enhancement
preview

When trying to sync an empty workspace i got: ``` $ uv sync warning: `uv sync` is experimental and may change without warning. error: failed to read from file `/home/konsti/projects/workspace-git-path-dep-test/uv.lock`...

error messages
preview

In python, a package can declare conflicting requirements as long as the markers are disjoint, e.g.: ``` numpy==2.0.0; python_version >= "3.11" numpy==1.26.4; python_version < "3.11" ``` When we see requirements...

bug
preview

By using `Box::pin(run())` we can reduce the artificial stack size for running tests on windows in debug mode from 8MB to 2MB. I've checked and 1MB/no custom stack size still...

internal
windows