From ecbb16ce35aa985ff4257cd77bf154353185fba3 Mon Sep 17 00:00:00 2001 From: Jesse Mortenson Date: Fri, 27 Sep 2024 18:27:59 -0500 Subject: [PATCH] Update build-system in pyproject to a modern value, allows editable install --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 2edf1fb8..3c9a206a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -64,5 +64,5 @@ omit = [ ] [build-system] -requires = ["poetry>=0.12"] -build-backend = "poetry.masonry.api" +requires = ["poetry-core>=1.0.0"] +build-backend = "poetry.core.masonry.api"