Built LDAStools/frameCPP.py module tries to `import frameCPP`
Under conda build
, with python3.5 it seems the built LDAStools/frameCPP.py
module includes the statement
import frameCPP
(line 4483, immediately before the class FrameH
declaration)
In python3 absolute imports are king, so this statement raises an ImportError
. I have no idea how this statement is generated, or whether this is due to an error/feature in the build specific to conda.
Edited by Duncan Macleod