When keyring is disabled, poetry tries to use it anyways.
See original GitHub issue- I am on the latest Poetry version.
- I have searched the issues of this repo and believe that this is not a duplicate.
- If an exception occurs when executing a command, I executed it again in debug mode (
-vvv
option).
- Arch linux up to date:
- 1.1.13:
- Link of a Gist with the contents of your pyproject.toml file: pyproject.toml
Issue
If you disable keyring via it’s recommended route: https://github.com/jaraco/keyring#disabling-keyring you end up with a “null” keyring being used. This is a useless keyring, but poetry continues to try and use it regardless. poetry should treat it the same as if keyring was unavailable.
Issue Analytics
- State:
- Created 2 years ago
- Reactions:3
- Comments:7 (2 by maintainers)
Top Results From Across the Web
python[poetry] installation is getting stuck - Stack Overflow
My temporary workaround is to disable the keyring by setting an env var. export PYTHON_KEYRING_BACKEND=keyring.backends.null.Keyring curl -sSL ...
Read more >The Only Epoxy Resin Troubleshooting Tips You Need
Get PRO resin troubleshooting tips. Answers for common problems when casting resin. Suggestions for fixing sticky resin, bubbles and more.
Read more >SPENCER CHANG - YoungArts
“In an interview, Ruth Stone said that she wrote poems backwards, sometimes. Same wording only turned as she grabbed the work by the...
Read more >Is there a way to turn off the request for keyring access on Linux?
I use SN on my Ubuntu PC, and it asks for a keyring password every ... since I installed Ubuntu, but I tried...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
As a workaround, the “fail” backend can be used:
export PYTHON_KEYRING_BACKEND=keyring.backends.fail.Keyring
This is genius, helped so much, thank you.