Installed Packages
Requirement already satisfied: ete3 in /usr/local/lib/python3.6/dist-packages (3.0.0b35)
Requirement already satisfied: PyQt5 in /usr/local/lib/python3.6/dist-packages (5.10.1)
Requirement already satisfied: sip in /usr/local/lib/python3.6/dist-packages (4.19.8)
Requirement already satisfied: six in /usr/local/lib/python3.6/dist-packages (1.11.0)
Code to resproduce
Example Tree from Documentation: Documentation
from ete3 import Tree, TreeStyle t = Tree() t.populate(50, random_branches=True) t.convert_to_ultrametric() t.show()
Error message
ImportError: cannot import name 'TreeStyle'
Is there some change I missed in the package? Did the class 'TreeStyle' deprecated or did something else happen?
Installed Packages
Requirement already satisfied: ete3 in /usr/local/lib/python3.6/dist-packages (3.0.0b35)
Requirement already satisfied: PyQt5 in /usr/local/lib/python3.6/dist-packages (5.10.1)
Requirement already satisfied: sip in /usr/local/lib/python3.6/dist-packages (4.19.8)
Requirement already satisfied: six in /usr/local/lib/python3.6/dist-packages (1.11.0)
Code to resproduce
Example Tree from Documentation: Documentation
from ete3 import Tree, TreeStyle t = Tree() t.populate(50, random_branches=True) t.convert_to_ultrametric() t.show()Error message
ImportError: cannot import name 'TreeStyle'Is there some change I missed in the package? Did the class 'TreeStyle' deprecated or did something else happen?