From 951c35193f8b8ee45fbd7abcb46013d27955d21a Mon Sep 17 00:00:00 2001 From: Thomas Barlow Date: Wed, 18 Oct 2023 17:20:52 +0100 Subject: [PATCH] Increase FBX IO minimum Blender version to 4.0.0 After FBX IO was updated for changes to the edge crease API in Blender 4.0 in fde8af8659, the minimum supported Blender version should have been increased to match, but was missed. --- io_scene_fbx/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/io_scene_fbx/__init__.py b/io_scene_fbx/__init__.py index 2d5e1f221..cb9c68ff5 100644 --- a/io_scene_fbx/__init__.py +++ b/io_scene_fbx/__init__.py @@ -6,7 +6,7 @@ bl_info = { "name": "FBX format", "author": "Campbell Barton, Bastien Montagne, Jens Restemeier, @Mysteryem", "version": (5, 8, 8), - "blender": (3, 6, 0), + "blender": (4, 0, 0), "location": "File > Import-Export", "description": "FBX IO meshes, UVs, vertex colors, materials, textures, cameras, lamps and actions", "warning": "", -- 2.30.2