Skip to content

Commit d36e0b0

Browse files
authored
Fix poetry install issues (#899)
* fix poetry install issues * updated changelog
1 parent 656847f commit d36e0b0

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

webknossos/Changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ For upgrade instructions, please check the respective _Breaking Changes_ section
2222
- Upgrades `black`, `mypy`, `pylint`, `pytest`. [#873](https://github.com/scalableminds/webknossos-libs/pull/873)
2323

2424
### Fixed
25+
- Fixed poetry build backend for new versions of Poetry. [#899](https://github.com/scalableminds/webknossos-libs/pull/899)
2526

2627

2728
## [0.12.3](https://github.com/scalableminds/webknossos-libs/releases/tag/v0.12.3) - 2023-02-22

webknossos/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,5 +131,5 @@ markers = ["with_vcr: Runs with VCR recording and optionally blocked network"]
131131
testpaths = ["tests"]
132132

133133
[build-system]
134-
requires = ["poetry>=1.1"]
135-
build-backend = "poetry.masonry.api"
134+
requires = ["poetry-core>=1.1"]
135+
build-backend = "poetry.core.masonry.api"

wkcuber/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,5 @@ wkcuber = "wkcuber.__main__:main"
4545
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"]
4646

4747
[build-system]
48-
requires = ["poetry>=0.12"]
49-
build-backend = "poetry.masonry.api"
48+
requires = ["poetry.core>=1.0.0"]
49+
build-backend = "poetry.core.masonry.api"

0 commit comments

Comments
 (0)