From 762c1ff4aafc6f71c546f2e4f3534a28462a5a40 Mon Sep 17 00:00:00 2001 From: Yannick Poirier Date: Fri, 6 Dec 2024 09:52:32 +0100 Subject: [PATCH] update Maturin --- pyproject.toml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index fbb8b23..3b56c25 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,17 +1,18 @@ [build-system] -requires = ["maturin>=0.14,<0.15"] +requires = ["maturin>=1.0,<2.0"] build-backend = "maturin" [project] name = "flute-alc" requires-python = ">=3.7" classifiers = [ - "Programming Language :: Rust", - "Programming Language :: Python :: Implementation :: CPython", - "Programming Language :: Python :: Implementation :: PyPy", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3 :: Only", + "Programming Language :: Rust" ] -dependencies = ["cffi"] [tool.maturin] -python-source = "python" +compatibility = "manylinux2014" +features = ["python"]