From 9dbe4ecc09c0d169b1590fc95923bea78fe57d0a Mon Sep 17 00:00:00 2001 From: Douglas Wilson Date: Fri, 10 May 2024 14:46:04 +0100 Subject: [PATCH] fix: set `[build-system]` in `hugr-py/pyproject.toml` --- hugr-py/pyproject.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/hugr-py/pyproject.toml b/hugr-py/pyproject.toml index 28e4652b7..b655b3f9d 100644 --- a/hugr-py/pyproject.toml +++ b/hugr-py/pyproject.toml @@ -30,3 +30,7 @@ pydantic = "~2.7.0" [tool.pytest.ini_options] # Lark throws deprecation warnings for `src_parse` and `src_constants`. filterwarnings = "ignore::DeprecationWarning:lark.*" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api"