We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b88aa4 commit edfa3a1Copy full SHA for edfa3a1
Changes
@@ -1,7 +1,10 @@
1
10.5.x.x (relative to 10.5.13.0)
2
========
3
4
+Improvements
5
+------------
6
7
+- IEcoreVDB : Support for the renamed python module `openvdb` in more recent versions of OpenVDB.
8
9
10.5.13.0 (relative to 10.5.12.0)
10
=========
python/IECoreVDB/__init__.py
@@ -41,7 +41,10 @@
41
# we use the warnings module to suppress these during the import
42
with warnings.catch_warnings():
43
warnings.simplefilter("ignore")
44
- import pyopenvdb
+ try:
45
+ import pyopenvdb
46
+ except:
47
+ import openvdb
48
49
from ._IECoreVDB import *
50
0 commit comments