Skip to content

Commit 383e536

Browse files
committed
Fix python-test: update extension module path for pure Rust build
1 parent cff1912 commit 383e536

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/python-test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,8 @@ jobs:
296296
if [[ "${{ runner.os }}" == "macOS" ]]; then
297297
echo ""
298298
echo "=== Checking built extension module ==="
299-
EXT_MODULE=$(find python/pecos-rslib/src/pecos_rslib -name "_pecos_rslib*.so" | head -1)
299+
# After conversion to pure Rust, the extension is now in site-packages
300+
EXT_MODULE=$(find .venv/lib -name "_pecos_rslib*.so" 2>/dev/null | head -1)
300301
if [ -n "$EXT_MODULE" ]; then
301302
echo "Found: $EXT_MODULE"
302303
echo ""

0 commit comments

Comments
 (0)