Skip to content

Commit

Permalink
Fix poetry install issues (#899)
Browse files Browse the repository at this point in the history
* fix poetry install issues

* updated changelog
  • Loading branch information
hotzenklotz authored Apr 27, 2023
1 parent 656847f commit d36e0b0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions webknossos/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions webknossos/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
4 changes: 2 additions & 2 deletions wkcuber/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit d36e0b0

Please sign in to comment.