Results 282 comments of layday

This looks like a bug. If bitstring is a dependency of pyvex, it should've been displayed like the second line: ``` pyvex>=9.2.123 -> bitstring -> bitarray=3.0.0 ``` If bitstring isn't...

Why would you want to run tests against the sdist instead of the installed wheel? Sdists are intermediate artifacts; tests can fail when run against an extracted sdist by design....

I'm not entirely sure that's a valid assumption to make is what I was getting at. I assume it's gonna work in the majority of cases, but sdists provide no...

I'm not in favour of running tests against an sdist because it's fundamentally antithetical to PyPA's package build and distribution model. Tests should always be run against an installable -...

I think this is backwards. There's no good reason to let tox build a wheel for you you won't be distributing, besides the fact that it's wasteful. Firstly, tox uses...

I don't think it's safe to assume that the source URL is immutable; `dist.origin != req.url` does not guarantee that the version hosted at `req.url` is the version that's installed....

Unsure, do you have access to check?

@henryiii gentle nudge

> I'd like some way to communicate to tools what the built distributions were, but that's tricky to do since stdout/stderr are being written to by the build backend. `uv`...