posy icon indicating copy to clipboard operation
posy copied to clipboard

Results 14 posy issues
Sort by recently updated
recently updated
newest added

This patch re-enables two clippy lints that were disabled when clippy was added, and addresses the issues connected with it.

I'm not sure if that is the right thing for posy, i've built this for installing packages into a venv: When creating a launcher for let's say black, we put...

Hi! I love this! Thanks for working on it. I'm definitely going to play around with this project, looks super interesting. I see in your readme you've mentioned a potential...

Posy looks very promising, great work! @njsmith, do you want to push the vision even further that what you have in the README? Posy could provide shims for `python` /...

Currently we handle all our on-disk storage through the `KVFileStore` and `KVDirStore` abstractions. They're both basically key->value mappings, where the value is either a file or a directory respectively. They...

Currently, distutils/setuptools are buggy when run inside a relocatable Python. For example, https://github.com/pypa/setuptools/issues/3786, though there may be others. Ultimately we should fix distutils/setuptools. And as a temporary workaround, posy's PEP...

This is more of a long-term question, but WASM-cpython is becoming more of a thing, and it's interesting to think about how it would work to support it. CC @ethanhs...

Should we have one `EnvForest` per project, or one per user? Benefits of one-per-project: - Deleting the project directory means everything is gone - ...copying the project directory means you...

We create build directories keyed by the sdist hash. This is handy if we end up wanting both metadata and a wheel from the same sdist within the same run,...

For universal2 pybis on macOS, we should always create two `bin/` dirs -- one for running in x86-64 mode and one for running in arm64 mode -- and choose them...