Hello. I am struggling to install mpf-mc on a raspberry Pi3. The problem is with cython code in mpfmc/core/audio/: for 2 files (sound_file.pyx and audio_interface.pyx) it complains (existing) files don't exist. For instance:
...
cythoning mpfmc/core/audio/sound_file.pyx to mpfmc/core/audio/sound_file.c
Error compiling Cython file:
------------------------------------------------------------
...
cimport cpython.pycapsule as pycapsule
import logging
import os
from mpfmc.core.audio.audio_exception import AudioException
from mpfmc.core.audio.sdl2 cimport *
^
------------------------------------------------------------
mpfmc/core/audio/sound_file.pyx:10:0: 'mpfmc/core/audio/sdl2.pxd' not found
I don't understand that other .pyx files where cytonized with the same cimports...
In setup.py:7 there is a comment: "TODO: this setup has only been tested with the .c files already generated by cython. No idea if it works with the .pyx files yet."
Any idea how to fix this ?
Thanks