From af18ae9aaa7162a44cc52b033926859ee20155cf Mon Sep 17 00:00:00 2001 From: Axect Date: Fri, 22 Nov 2024 17:15:02 +0900 Subject: [PATCH] FIX: remove gil-refs feature of PyO3 --- Cargo.toml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index de83e83..df26c92 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,10 +40,7 @@ anyhow = "1.0" paste = "1.0" #num-complex = "0.3" netcdf = { version = "0.7", optional = true, default-features = false } -pyo3 = { version = "0.23", optional = true, features = [ - "auto-initialize", - "gil-refs", -] } +pyo3 = { version = "0.23", optional = true, features = ["auto-initialize"] } blas = { version = "0.22", optional = true } lapack = { version = "0.19", optional = true } serde = { version = "1.0", features = ["derive"], optional = true }