dag: add ability to checkout branches from the DAG viewer
[git-cola.git] / qtpy / QtDataVisualization.py
blob692430f18994567d0eb26fa0e666f0563d01c82c
1 # -----------------------------------------------------------------------------
2 # Copyright © 2009- The Spyder Development Team
4 # Licensed under the terms of the MIT License
5 # (see LICENSE.txt for details)
6 # -----------------------------------------------------------------------------
8 """Provides QtDataVisualization classes and functions."""
10 from . import (
11 PYQT5,
12 PYQT6,
13 PYSIDE2,
14 PYSIDE6,
15 QtModuleNotInstalledError,
18 if PYQT5:
19 try:
20 from PyQt5.QtDataVisualization import *
21 except ModuleNotFoundError as error:
22 raise QtModuleNotInstalledError(
23 name='QtDataVisualization', missing_package='PyQtDataVisualization'
24 ) from error
25 elif PYQT6:
26 try:
27 from PyQt6.QtDataVisualization import *
28 except ModuleNotFoundError as error:
29 raise QtModuleNotInstalledError(
30 name='QtDataVisualization',
31 missing_package='PyQt6-DataVisualization',
32 ) from error
33 elif PYSIDE2:
34 # https://bugreports.qt.io/projects/PYSIDE/issues/PYSIDE-1026
35 import PySide2.QtDataVisualization as __temp
36 import inspect
38 for __name in inspect.getmembers(__temp.QtDataVisualization):
39 globals()[__name[0]] = __name[1]
40 elif PYSIDE6:
41 from PySide6.QtDataVisualization import *