-
Actually, the only way I know to invoke |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
Hi @bruchar1, that is indeed the only way to use it. The key thing to use a local install for debugging is to install |
Beta Was this translation helpful? Give feedback.
-
I symlink the [build-system]
build-backend = 'mesonpy'
backend-path = ['.'] in I don't know how you can conveniently do the same on platforms that do not support symlinks. |
Beta Was this translation helpful? Give feedback.
-
I'm trying to debug an issue in meson-python. I've installed meson-python editable (
same issue with Any ideas?! |
Beta Was this translation helpful? Give feedback.
Hi @bruchar1, that is indeed the only way to use it. The key thing to use a local install for debugging is to install
meson-python
into your active Python environment and then using that version ofmeson-python
with your own package's build by disabling build isolation (e.g.pip install -e . --no-build-isolation
orpython -m build -wnx
).