maturin develop
does not copy/move dylib dependencies in Cargo target directory
#1093
Labels
bug
Something isn't working
Actually maybe I spoke too soon -
maturin build --release
builds a wheel that properly includes the library and installs just fine.maturin develop
however does not seem to move the library to wherever python is looking for it. Was this fix expected to addressdevelop
too?Originally posted by @jdiggans-twist in #1088 (comment)
After #1092
maturin build
correctly packages dylib dependencies in Cargo target directory, but formaturin develop
we only copy the Python extension module.so
file not its dylib dependencies in Cargo target directory which might causeImportError
when try toimport
the extension module.The text was updated successfully, but these errors were encountered: