We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Using poetry-dynamic-versioning-plugin, I get,
$ poetry version --short 0.2.1.dev8+8f580db
and the package created with poetry build is myproject-0.2.1dev8+8f580db-py3-none-any.whl
poetry build
myproject-0.2.1dev8+8f580db-py3-none-any.whl
Note the absence of dot between 0.2.1 and dev in the filename.
pyproject.toml:
[tool.poetry-dynamic-versioning] enable = true dirty = true bump = true style = "pep440"
Is it intended?
The text was updated successfully, but these errors were encountered:
It looks like this is an issue in Poetry 1.2.0b1, unrelated to the plugin. I've opened an issue in the Poetry repository: python-poetry/poetry#5534
Sorry, something went wrong.
No branches or pull requests
Using poetry-dynamic-versioning-plugin, I get,
and the package created with
poetry build
ismyproject-0.2.1dev8+8f580db-py3-none-any.whl
Note the absence of dot between 0.2.1 and dev in the filename.
pyproject.toml:
Is it intended?
The text was updated successfully, but these errors were encountered: