between 8.6.1 and 8.9.0 rhino3dm loosing his ability to show layers inside a file tested with a old rhino5 and a newer rhino7 file with python 3.13 on an linux system.
Code:
#!/usr/bin/env python
from rhino3dm import *
path = "/home/xxx/atelierkirchhof_cloud/atelierkirchhof/Aufträge/Vorlage/Vorlage.3dm"
model = File3dm.Read(path)
print(model.ArchiveVersion)
print(len(model.Layers))
Output rhino3dm 8.6.1:
70
33
Output rhino3dm 8.9.0:
70
0
i also tested the beta release 8.15.0b0 with showing “0” too.