Using generated Python modules in editable builds #15675
Replies: 2 comments
|
Closing as this is the wrong project for the question. |
0 replies
|
Referencing mesonbuild/meson-python#840 for the resubmitted question. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Is it possible to use auto-generated Python modules in editable builds?
I am generating a Python module with a bunch of
ctypes.Structurestructures from C code. This Python module is generated as part of acustom_target()and is being placed in the build artifacts directory./build/cp314. However, when I try to load it, it attempts to load from the actual source directory.All reactions