From fc50e9c5d785076968f52ad9b913e32c0415bfa5 Mon Sep 17 00:00:00 2001 From: Christopher Schwan Date: Wed, 22 Feb 2023 10:23:56 +0100 Subject: [PATCH] Raise maturin version to the correct patch level We use cargo's workspace metadata inheritance, which is supported in maturin starting from 0.13.4: https://github.com/PyO3/maturin/releases/tag/v0.13.4 --- pineappl_py/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pineappl_py/pyproject.toml b/pineappl_py/pyproject.toml index 81a43131..ca25ca7b 100644 --- a/pineappl_py/pyproject.toml +++ b/pineappl_py/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["maturin>=0.13"] +requires = ["maturin>=0.13.4"] build-backend = "maturin" [project]