We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cff1912 commit 383e536Copy full SHA for 383e536
1 file changed
.github/workflows/python-test.yml
@@ -296,7 +296,8 @@ jobs:
296
if [[ "${{ runner.os }}" == "macOS" ]]; then
297
echo ""
298
echo "=== Checking built extension module ==="
299
- EXT_MODULE=$(find python/pecos-rslib/src/pecos_rslib -name "_pecos_rslib*.so" | head -1)
+ # 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)
301
if [ -n "$EXT_MODULE" ]; then
302
echo "Found: $EXT_MODULE"
303
0 commit comments