From 572aaf4371df595276b2036647327113cfd868cb Mon Sep 17 00:00:00 2001 From: Ahmed Date: Mon, 13 Jul 2026 05:15:03 +0100 Subject: [PATCH] Add --release flag to maturin develop command --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 15e88b5fb..bea94860a 100644 --- a/noxfile.py +++ b/noxfile.py @@ -14,7 +14,7 @@ def tests_impl( session.install("-U", "pip", "maturin", silent=False) session.install("-r", "dev-requirements.txt", silent=False) - session.run("maturin", "develop") + session.run("maturin", "develop", "--release") # Show the pip version. session.run("pip", "--version")