As of https://www.riverbankcomputing.com/static/Docs/PyQt6/pyqt5_differences.html there's no pyrcc6 in Qt6 and therefore in QGIS4.
Support for Qt’s resource system has been removed (i.e. there is no pyrcc6).
However when running pb_tool compile from my OSGeo4W-shell it'll throw
rcc is not in your path---unable to compile your resource file(s)
although my pb_tool.cfg-file doesn't even have any qrc-files to process.
# Resource file(s) that will be compiled
resource_files:
I have no idea where I should search for rcc in my OSGeo4W-installation, though.
Anyway, as of https://github.com/jonah-sullivan/plugin_build_tool#resource-files-ospath-vs-rcc-compilation I understand, that RCC shouldn't be used by pb_tool, but instead just os.path. Do I need to add some configuration on that or is the docs whrong here?
As of https://www.riverbankcomputing.com/static/Docs/PyQt6/pyqt5_differences.html there's no pyrcc6 in Qt6 and therefore in QGIS4.
However when running
pb_tool compilefrom my OSGeo4W-shell it'll throwalthough my
pb_tool.cfg-file doesn't even have any qrc-files to process.I have no idea where I should search for rcc in my OSGeo4W-installation, though.
Anyway, as of https://github.com/jonah-sullivan/plugin_build_tool#resource-files-ospath-vs-rcc-compilation I understand, that RCC shouldn't be used by
pb_tool, but instead justos.path. Do I need to add some configuration on that or is the docs whrong here?