From b7eba0e989b637326fcb8cf08f11bc34ca29b128 Mon Sep 17 00:00:00 2001 From: grydz Date: Fri, 29 Nov 2024 12:01:45 +0400 Subject: [PATCH] [CI] Fix: force maturin<1.7.6 maturin 1.7.6 adds Metadata-Version: 2.4 which breaks twine upload due to pinned package pkginfo<1.11 See https://www.maturin.rs/changelog#176 and https://github.com/pypa/twine/issues/1146 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 92d0502..1769023 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["maturin>=1.0,<2.0"] +requires = ["maturin>=1.0,<1.7.6"] build-backend = "maturin" [project]