-
Hi! I'm trying to build wheels for py3.10, py3.11, and py3.12 for my project on linux (it also uses CMake for the compiled part (MLIR dialect)). The
but for the next one it fails due to missing dependency (package I see that the paths are somewhat incorrect in logs:
And here's a WIP file that I'm running: https://github.com/finch-tensor/Finch-mlir/blob/434389962d0e6de929ae0d222b29c1822949d3d1/pyproject.toml I wonder how to debug it? Is there another place where I can define Python deps for these python environments that are used for building wheels on linux?
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
After changing: subprocess.run(["ninja"], cwd=finch_build_dir, check=True) to: import ninja
ninja_executable_path = Path(ninja.BIN_DIR) / "ninja"
subprocess.run([ninja_executable_path], cwd=finch_build_dir, check=True) in my |
Beta Was this translation helpful? Give feedback.
After changing:
to:
in my
setup.py
helped here.