mirror of
https://github.com/beetbox/beets.git
synced 2025-12-31 13:02:47 +01:00
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:
commit
dc9b498ee8
2 changed files with 4 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in a new issue