Arun Babu Neelicattu
Arun Babu Neelicattu
Have not gone through the cache logic itself, but left some high level comments regarding the change.
Thanks for the detailed post @suneeta-mall. I want to try and break out targetted improvements to help with the pytorch use case being better supported. Let me try and addres...
Can you try unlocking the collection using something like [Seahorse](https://wiki.gnome.org/Apps/Seahorse)? Usually this happens when your keyring was left locked after login etc. Manual unlocks and/or reboots are known fix this...
@earonesty `poetry` uses `keyring` for storing credentials. It is entirely possible to build/deploy in CI/CD without any issues. https://github.com/python-poetry/poetry/blob/17b165bf8c8d989d672417fd4610721df59ae1d0/.github/workflows/release.yml#L261-L266
@python-poetry/triage we should consider providing a error solution exception via crashtest or implement an option to skip keyring on failure when writing l; and warn in both write and read...
Just a drive by comment on this coming from https://github.com/python-poetry/poetry/issues/5516. We have implmented single page support in https://github.com/python-poetry/poetry/pull/5517. However, for tools like Poetry, since metadata is important when resolving a...
@uranusjr came here because I have a bunch of GHA builds failing with similar issues. I have created a reproducer at https://github.com/abn/reproducer-pip-11368 See https://github.com/abn/reproducer-pip-11368/runs/8042452418?check_suite_focus=true#step:3:71 for the specific failure. This has...
Verbose Log ```console Created temporary directory: /tmp/pip-unpack-suo34b4g Installing collected packages: pip Attempting uninstall: pip Found existing installation: pip 22.0.4 Uninstalling pip-22.0.4: Created temporary directory: /tmp/pip-uninstall-nqm3v44c Removing file or directory /usr/local/bin/pip...
Looks like issue might have to do with `pip` running inside rootless containers using fuse-overlays. See https://github.com/containers/fuse-overlayfs/issues/332#issuecomment-1004753679. That issue also references https://github.com/pypa/pip/issues/103.
I can confirm that the workaround specified in the `fuse-overlayfs` issue resolves this for me. In my case I added the following to the `buildah` action. ```yaml with: ... extra-args:...