Shantanu
Shantanu
It's common to not use virtual environments in containers, e.g. see discussion around PEP 704. I don't mind the default being to prevent installation into a base environment, but it...
Getting the following segfault: ``` thread 'main' panicked at crates/uv-resolver/src/resolution.rs:135:30: Every package should have metadata ``` Repro: ``` In [5]: Counter(subprocess.run("rm -rf .venv; uv venv --seed; uv pip install --no-cache...
pip-compile does not do this. I think this also undermines one of the two main security benefits of hashes in lock files (that it helps with the fact PyPI releases...
It looks like `uv` already supports this, I just need to lie about `VIRTUAL_ENV`. Looking for something like the equivalent of pip's `--prefix` or `--python`.
pip-compile has this flag that's a useful escape hatch. There's some software we use where we care about the specific build. We don't want the build from the index and...
Hello! I don't remember if I'd shown you https://github.com/openai/tiktoken/blob/main/tiktoken/_educational.py , but consider stealing the token visualisation code from here in some form: https://github.com/openai/tiktoken/blob/main/tiktoken/_educational.py#L186 I've found it can be quite useful...
##### Contributor checklist - [x] Included tests for the changes. - [x] PR title is short, clear, and ready to be included in the user-facing changelog. ##### Maintainer checklist -...
I saw this post earlier today: https://blog.trailofbits.com/2022/11/15/python-wheels-abi-abi3audit/ Seems like a thing that could be useful for cibuildwheel to run automatically, like we do for auditwheel
https://github.com/astral-sh/ruff/pull/8489 changes F841 so that it complains about unused variables resulting from tuple unpacking. There are a few issues: - It's not clear to all folks that this can be...