From f7a3ad1b65486850e25c60a752e19f5bf02269a1 Mon Sep 17 00:00:00 2001 From: Pascal Bach Date: Mon, 11 Dec 2023 16:33:41 +0100 Subject: [PATCH] Relax maturin requirement Remove maximum Maturin version. zenoh-python successfully builds with Maturin 1.4.0 This makes it easier to package in NixOS and Yocto. --- pyproject.toml | 2 +- requirements-dev.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 49803e99..9a8a02c7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,7 @@ # [build-system] -requires = ["maturin>=0.13,<0.15"] +requires = ["maturin>=0.13"] build-backend = "maturin" [project] diff --git a/requirements-dev.txt b/requirements-dev.txt index 57036357..5816648d 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1 +1 @@ -maturin>=0.13,<0.15 +maturin>=0.13