From a037c9dec86b22b4ae54681c670093ee4b8a604c Mon Sep 17 00:00:00 2001 From: Paul Goulart Date: Tue, 26 Sep 2023 11:02:46 +0100 Subject: [PATCH] update maturin config (#56) Use cargo "python" feature by default on maturin builds --- pyproject.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 366bb34f..63c7397a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["maturin>=0.13,<0.15"] +requires = ["maturin>=1.0,<2.0"] build-backend = "maturin" [project] @@ -14,4 +14,5 @@ classifiers = [ ] [tool.maturin] -python-source = "python" \ No newline at end of file +python-source = "python" +features = ["python"] \ No newline at end of file