You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, launching mod-sdk with lilv.py present produces this runtime error.
I delete lilv.py from the system as a remedy, losing the plugin checking ability.
AttributeError: 'Node' object has no attribute 'as_string'
It happens with lilv 0.24.4. The same with a git build 0.24.5.r1226.01426de.
The objects Node don't appear to have as_string, but they have __str__.
The text was updated successfully, but these errors were encountered:
This is expected, lilv has changed drastically (from swig to ctypes) and the code was made with the old version in mind.
Take a look at https://github.com/moddevices/lilvlib for a way to get a static build of python3-lilv compatible with mod-sdk
Note that this python lilv is an optional dependency.
There should be a way to detect if the system provides a compatible one or not, and then disable it fully if not.
We do not have a big reason to update to latest lilv changes in mod-sdk right now, as the setup we have works well for us.
There is work to do in order to update and follow upstream, and also risk of regressions.
Hi, launching mod-sdk with lilv.py present produces this runtime error.
I delete lilv.py from the system as a remedy, losing the plugin checking ability.
It happens with lilv 0.24.4. The same with a git build 0.24.5.r1226.01426de.
The objects
Node
don't appear to haveas_string
, but they have__str__
.The text was updated successfully, but these errors were encountered: