Prepare your plugins for QGIS 3
QGIS 3 is not yet there and there is still plenty of time to prepare and migrate. But I thought I would give some advice about things that you can keep in mind while working on your plugins to make your life easier when you will have to actually do the migration. It’s mostly about making your code prepared for Python 3 and PyQt5. Do not use star imports Don’t do from PyQt4.QtCore import * Read more…