-
Notifications
You must be signed in to change notification settings - Fork 2.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unidecode
error while exporting in Poetry 1.2
#6514
Comments
duplicate python-poetry/poetry-plugin-export#107 |
@dimbleby This error does not occur in Poetry 1.1.15. In other words, if we have |
nevertheless, it really is |
@dimbleby Ok, as you wish, but this is a poetry bug. Poetry should be able to map |
if you separately want to raise an issue about the case-sensitivity of extras - well that will duplicate #6321 so we don't need that either! |
Ok, I agree that this is a duplicate of #6321, so I will close this. |
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
-vvv
option).Issue
I am getting a
Unidecode
error. Here's how to reproduce it.pyproject.toml
as followspoetry update
poetry export -f requirements.txt --without-hashes --output requirements.txt
and get the very useful'Unidecode'
error message. If you use the debug mode, you will also get aKeyError
.Solution
Change
python-slugify = {version = "^6.1.2", extras = ["Unidecode"]}
topython-slugify = {version = "^6.1.2", extras = ["unidecode"]}
. So, clearly, Poetry searches for an extra dep, but it's case sensitive.The text was updated successfully, but these errors were encountered: