leaves12138 commented on code in PR #16:
URL: 
https://github.com/apache/paimon-vector-index/pull/16#discussion_r3373613812


##########
.github/workflows/ci.yml:
##########
@@ -131,6 +137,9 @@ jobs:
       - name: Install maturin
         run: pip install maturin
 
+      - name: Test Python API
+        run: cargo test --manifest-path python/Cargo.toml 
--no-default-features --features auto-initialize

Review Comment:
   This job installs `maturin`, but the new Python tests create and inspect 
NumPy arrays via the `numpy` crate. Without the Python `numpy` package 
available in the selected interpreter, `cargo test --manifest-path 
python/Cargo.toml --no-default-features --features auto-initialize` fails at 
runtime with `ModuleNotFoundError: No module named 'numpy'`. Please install it 
here, for example `pip install maturin numpy`, before running the Python API 
tests.
   



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to