Fix dynamic versioning plugin not correctly installed in workflow (#6094)

It seems like the ci wokflows did not install the
poetry-dynamic-versioning correctly. We need a pipx inject for it to
work as expected.

closes #6089
This commit is contained in:
Šarūnas Nejus 2025-10-14 13:04:18 +01:00 committed by GitHub
commit dc9b498ee8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 2 deletions

View file

@ -17,6 +17,9 @@ Bug fixes:
For packagers:
- Fixed dynamic versioning install not disabled for source distribution builds.
:bug:`6089`
Other changes:
- Removed outdated mailing list contact information from the documentation

View file

@ -158,7 +158,6 @@ web = ["flask", "flask-cors"]
[tool.poetry.scripts]
beet = "beets.ui:main"
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
@ -173,7 +172,7 @@ build-backend = "poetry_dynamic_versioning.backend"
[tool.pipx-install]
poethepoet = ">=0.26"
poetry = ">=1.8,<2"
poetry = { version = ">=1.8,<2", inject = {"poetry-dynamic-versioning[plugin]" = ">=1.9.1" }}
[tool.poe.tasks.build]
help = "Build the package"