Merge branch 'blender-v4.4-release'

This commit is contained in:
Brecht Van Lommel
2025-02-06 14:58:18 +01:00
48 changed files with 1013 additions and 1598 deletions

View File

@@ -34,7 +34,13 @@ from pxr import Usd
import MaterialX
import OpenImageIO
import PyOpenColorIO
import pyopenvdb
# Test both old and new names, remove when all 4.4 libs have landed.
try:
import pyopenvdb
except ModuleNotFoundError:
import openvdb
import oslquery
# Test modules in bundled Python standalone executable.
if app == "Blender":

View File

@@ -20,6 +20,8 @@ BLOCKLIST_ALL = [
"hair_instancer_uv.blend",
"principled_hair_directcoloring.blend",
"visibility_particles.blend",
# Temporarily blocked for 4.4 lib upgrade, due to PNG alpha minor difference.
"image_log_osl.blend",
]
# Blocklist that disables OSL specific tests for configurations that do not support OSL backend.