From 0b3dc9bdeb16599830a3d94a4fe86bcb0a5dc8b5 Mon Sep 17 00:00:00 2001 From: "Victor M. Alvarez" Date: Fri, 29 Nov 2024 19:23:08 +0100 Subject: [PATCH] ci: pin to a specific version of maturin This was the version that built the a wheel package with Metadata-Version 2.3, which seems to be the larger version accepted by `pypa/gh-action-pypi-publish`, newer versions of `maturin`seem to be producing packages with Metadata-Version 2.4. --- py/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py/pyproject.toml b/py/pyproject.toml index ae647710..36b8fd16 100644 --- a/py/pyproject.toml +++ b/py/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["maturin>=1.0,<2.0"] +requires = ["maturin==1.7.4"] build-backend = "maturin" [project]