diff --git a/webknossos/Changelog.md b/webknossos/Changelog.md index e53cc3c6d..50194ec17 100644 --- a/webknossos/Changelog.md +++ b/webknossos/Changelog.md @@ -22,6 +22,7 @@ For upgrade instructions, please check the respective _Breaking Changes_ section - Upgrades `black`, `mypy`, `pylint`, `pytest`. [#873](https://github.com/scalableminds/webknossos-libs/pull/873) ### Fixed +- Fixed poetry build backend for new versions of Poetry. [#899](https://github.com/scalableminds/webknossos-libs/pull/899) ## [0.12.3](https://github.com/scalableminds/webknossos-libs/releases/tag/v0.12.3) - 2023-02-22 diff --git a/webknossos/pyproject.toml b/webknossos/pyproject.toml index bdf9a427c..43c0fa195 100644 --- a/webknossos/pyproject.toml +++ b/webknossos/pyproject.toml @@ -131,5 +131,5 @@ markers = ["with_vcr: Runs with VCR recording and optionally blocked network"] testpaths = ["tests"] [build-system] -requires = ["poetry>=1.1"] -build-backend = "poetry.masonry.api" +requires = ["poetry-core>=1.1"] +build-backend = "poetry.core.masonry.api" diff --git a/wkcuber/pyproject.toml b/wkcuber/pyproject.toml index 1f8dc0665..ae3895546 100644 --- a/wkcuber/pyproject.toml +++ b/wkcuber/pyproject.toml @@ -45,5 +45,5 @@ wkcuber = "wkcuber.__main__:main" disable = ["logging-format-interpolation","logging-fstring-interpolation","broad-except","broad-exception-raised","protected-access","R","C","fixme","global-statement","redefined-outer-name","arguments-differ","unused-argument"] [build-system] -requires = ["poetry>=0.12"] -build-backend = "poetry.masonry.api" +requires = ["poetry.core>=1.0.0"] +build-backend = "poetry.core.masonry.api"