-
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
poetry init
does not allow é
in the authors field
#8779
Comments
For me, é fails but é succeeds. yuk. I suspect those of us with ascii names are less motivated to figure out the difference between these things. Merge request welcome, I imagine. |
Could you share the code points? My computer doesn't catch a difference between them when pasted in Python: ord("é".encode("utf-8")) # first one
>>> b'\xc3\xa9'
ord("é".encode("utf-8")) # second one
>>> b'\xc3\xa9' With the original regex: |
65 CC 81 vs C3 A9 github has preserved the difference so it's your copy-paste that is lossy |
Thank you for sharing the codes!
This made no sense to me, when I pasted in Pythex it worked fine! So I was led down the rabbit hole and I found the issue:
When I write "é" I'll take a better look later and submit a PR to fix this. |
Precisely, it takes it from the global gitconfig, that encoded my "é" (C3 A9) as "é" (65 CC 81). |
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) and have included the output below.Issue
I've read #798 and #4258, those issues deal with "post-
init
", my issue is with/aboutinit
.As stated in the title,
poetry init
does not allow foré
to exist in the authors field.If I try
Jose...
instead, it works though.I didn't try other characters, but I'd suspect they also fail.
The text was updated successfully, but these errors were encountered: