From b9afe89b43ef0f32765435bcffc43d692adb5e62 Mon Sep 17 00:00:00 2001 From: Alexandre Marcireau Date: Mon, 6 Nov 2023 16:13:25 +1100 Subject: [PATCH] Use exact version of Maturin Maturin 1.3.0 (and 1.3.1) introduced a bug that breaks sdist builds on repositories with workspaces. --- python/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/pyproject.toml b/python/pyproject.toml index 24bcacc..3becee8 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -17,7 +17,7 @@ repository = "https://github.com/neuromorphicsystems/neuromorphic-rs/" documentation = "https://github.com/neuromorphicsystems/neuromorphic-rs/" [build-system] -requires = ["maturin>=0.12", "numpy"] +requires = ["maturin==1.2.3", "numpy"] build-backend = "maturin" [tool.maturin]