Skip to content

Commit

Permalink
Adding build-system to pyproject.toml
Browse files Browse the repository at this point in the history
If using an older version of setuptools, the installation of nnunet fails (#1832). Adding the requirement of using setuptoosl >=69.0.2 should resolve this issue.

I had no time to test it yet, and it might also work with lower version than 69.0.2. Before merging this should be tested.
  • Loading branch information
Nils-ChristianIseke authored Dec 13, 2023
1 parent b00b41f commit f35ab0a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,10 @@ dev = [
"pre-commit"
]

[build-system]
requires = ["setuptools>=69.0.2"]
build-backend = "setuptools.build_meta"

[tool.codespell]
skip = '.git,*.pdf,*.svg'
#
Expand Down

0 comments on commit f35ab0a

Please sign in to comment.