-
Notifications
You must be signed in to change notification settings - Fork 74
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
Allow spaces in filenames in registry files #315
Conversation
Previously, the tokenization would not use this. The commit introduces shlex.split as a tokenizer that is aware of quotes and escapes.
💖 Thank you for opening your first pull request in this repository! 💖 A few things to keep in mind:
⭐ No matter what, we are really grateful that you put in the effort to do this! ⭐ |
I think this is ready for review. I had a look at the CodeCov failure and it seems quite unrelated, the changes on this PR should be all covered. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @dokempf! A few minor questions and suggestions only. I don't know why codecov failed but maybe it will go away when the CI runs again.
@leouieda Thanks for the review, I have integrate your feedback! |
Thanks @dokempf! Looks great to me. Just waiting on CI to finish 🤖. |
🎉 Congrats on merging your first pull request and welcome to the team! 🎉 If you would like to be added as a author on the Zenodo archive of the next release, add your full name, affiliation, and ORCID (optional) to the We hope that this was a good experience for you. Let us know if there is any way that the contributing process could be improved. |
Thanks for this @dokempf! I'll make a release soon with this and your other PR. |
I'm running v1.7.0, and it seems like this is not fully resolved. Run:
And now
Which is wrong. |
@mscheltienne You need to adapt your registry file to put |
I agree, but that should be done automatically by |
Oh, sorry for my poor reading skills. I agree, |
Previously, the tokenization would not allow this. The commit introduces
shlex.split
as a tokenizer that is aware of quotes and escapes.This fixes #313