diff --git a/docs/changelog.rst b/docs/changelog.rst index 773c6cc67..5f4afe58d 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -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 diff --git a/pyproject.toml b/pyproject.toml index 3a355418c..dd67fa65c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"