You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using apostrophe ' for the config in my pyproject file like version = '0.0.0' but on poetry install/build and poetry dynamic-versioning commands the plugin replaces it with quotation " marks.
The text was updated successfully, but these errors were encountered:
This behavior would be coming from tomlkit. I do see this issue that says it was fixed: python-poetry/tomlkit#112 , although it doesn't say in which version. I just tested with the latest tomlkit version, and I was able to reproduce it, so I've opened a new ticket with them: python-poetry/tomlkit#325 . This affects the poetry version command as well, even without the plugin involved.
The plugin defers to whichever tomlkit version Poetry is using, so if it's fixed in tomlkit and then included in a Poetry update, then it'll be fixed for the plugin as well. Beyond that, it's out of my control, unfortunately.
In the meantime, I would suggest using double quotes just to avoid the issue.
I'm using apostrophe
'
for the config in my pyproject file likeversion = '0.0.0'
but on poetry install/build and poetry dynamic-versioning commands the plugin replaces it with quotation"
marks.The text was updated successfully, but these errors were encountered: