This is an automated email from the ASF dual-hosted git repository.

yuxia pushed a commit to branch release-0.1
in repository https://gitbox.apache.org/repos/asf/fluss-rust.git


The following commit(s) were added to refs/heads/release-0.1 by this push:
     new 831eaaf  ci: add generate-import-lib feature for Windows wheel build
831eaaf is described below

commit 831eaaf601e8004cd0b0fe6c1edc2886a2f3834c
Author: luoyuxia <[email protected]>
AuthorDate: Tue Mar 3 16:51:32 2026 +0800

    ci: add generate-import-lib feature for Windows wheel build
    
    Windows wheel build requires PyO3's generate-import-lib feature when
    compiling without an interpreter. This is required for cross-compilation
    on Windows.
    
    Co-Authored-By: Claude Opus 4.6 <[email protected]>
---
 bindings/python/Cargo.toml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bindings/python/Cargo.toml b/bindings/python/Cargo.toml
index 9cf20e3..30ac046 100644
--- a/bindings/python/Cargo.toml
+++ b/bindings/python/Cargo.toml
@@ -27,7 +27,7 @@ name = "fluss"
 crate-type = ["cdylib"]
 
 [dependencies]
-pyo3 = { version = "0.26.0", features = ["extension-module"] }
+pyo3 = { version = "0.26.0", features = ["extension-module", 
"generate-import-lib"] }
 fluss = { workspace = true, features = ["storage-all"] }
 tokio = { workspace = true }
 arrow = { workspace = true }

Reply via email to