Ofek Lev
Ofek Lev
Have you tried this? https://github.com/jaraco/keyring#using-keyring-on-ubuntu-1604
Does the `system-packages` option work for you? https://hatch.pypa.io/latest/plugins/environment/virtual/#options
Do you mind running `hatch env prune` and then testing with the code on the master branch? There may have been fixes recently.
`python -m pytest`
Under the hood Hatch uses pip for dependency management currently so to persist the cache you would use its mechanisms: https://pip.pypa.io/en/stable/topics/caching/#where-is-the-cache-stored
Even before then project metadata was never updated, only dependencies. I suppose I could add an option to environments where running would first do `pip install --no-deps -e .` I...
I saw https://github.com/pallets/click/pull/1050 but the value of `require_save` does not matter
FYI when I do `pip install --dry-run -q -I --no-cache-dir --progress-bar off ...` on the latest version I get no output as expected but on this branch I get a...
Yes a rebase is required now.
Personally, I think based on that example the efforts are worth it! This is similar to what Docker CLI does for pulling and decompressing image layers.