Shantanu
Shantanu
Note that mypy_primer is much better at measuring effect of changes that produce false positives than changes that produce false negatives. You're subject to survivorship bias [insert aeroplane meme here]...
Yeah, I think KotlinIsland's union of ducklings approach better matches runtime behaviour than what mypy currently does
I mostly use `pipdeptree` with its `-p / --packages` and `-r / --reverse` flags; I'd love to see `uv pip tree` have equivalent functionality! (let me know if I should...
I think this would be very useful! At work, we have systems like this for first party packages, but not third party packages. It would make some things less painful...
Oh, neat trick!
Btw, these days I actually find using uv's `dependency-metadata` to lie about the dependencies of my dependencies works better for me than overrides in most cases: https://docs.astral.sh/uv/reference/settings/#dependency-metadata This is because...
I've also lost access to repo settings, but I think I was able to re-enable the action (or at least trigger workflow dispatch) from clicking around under the Actions tab
One option is to symlink: ``` ln -sf $(/path/to/target/python -c 'import sys; print(sys.prefix)') .venv uv sync ```
Sorry, just seeing this! All of pip/uv/poetry will look at Requires-Python metadata when determining the version of numpy to install. They will not let you install a version of numpy...
Updated the PR with my concrete suggestion :-)