PyAPI: remove checks for add-ons pre 2.8x

This made sense when migrating from 2.7x, now 2.8x add-ons may also
have issues in 4.1 so this check isn't so relevant.
This commit is contained in:
Campbell Barton
2024-01-25 12:58:00 +11:00
parent b8b1189bc4
commit 6aede44fb7
3 changed files with 0 additions and 16 deletions

View File

@@ -27,10 +27,6 @@ BLACKLIST = {
os.path.join("io_blend_utils", "blender_bam-unpacked.whl"),
}
for mod in addon_utils.modules():
if addon_utils.module_bl_info(mod)['blender'] < (2, 80, 0):
BLACKLIST.add(mod.__name__)
# Some modules need to add to the `sys.path`.
MODULE_SYS_PATHS = {
# Runs in a Python subprocess, so its expected its basedir can be imported.