The feat_importer branch produces an addon that fails to load in Blender 3.3 LTS. You install it, then you try to enable it, and it fails. This is caused by two problems:
A typo in the main addon's __init__.py
The Iterable class was moved to collections.abc in Python 3.3.
This PR addresses these two trivial issues. I have tested that the resulting addon starts both in Blender 2.80 and 3.3.1 LTS.
The second point mentioned above is directly related to #708, which looks like it is already addressed in master and could be closed.
The
feat_importer
branch produces an addon that fails to load in Blender 3.3 LTS. You install it, then you try to enable it, and it fails. This is caused by two problems:__init__.py
Iterable
class was moved tocollections.abc
in Python 3.3.This PR addresses these two trivial issues. I have tested that the resulting addon starts both in Blender 2.80 and 3.3.1 LTS.
The second point mentioned above is directly related to #708, which looks like it is already addressed in
master
and could be closed.