From 84235c99657994a4bea774340a91704a92c13411 Mon Sep 17 00:00:00 2001 From: tutacat Date: Thu, 16 May 2024 18:12:46 +0100 Subject: [PATCH] pyproject.toml: add "swig" in build-system requires Fix `swig` build dep (#170) --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index fed528d..4fc0bf7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,3 +1,3 @@ [build-system] -requires = ["setuptools"] +requires = ["setuptools","swig"] build-backend = "setuptools.build_meta"