μHAL (v2.8.17)
Part of the IPbus software repository
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
__init__.py
Go to the documentation of this file.
1import sys
2
3if sys.version_info < (3, 6):
4 msg = "pybind11 does not support Python < 3.6. 2.9 was the last release supporting Python 2.7 and 3.5."
5 raise ImportError(msg)
6
7
8from ._version import __version__, version_info
9from .commands import get_cmake_dir, get_include, get_pkgconfig_dir
10
11__all__ = (
12 "version_info",
13 "__version__",
14 "get_include",
15 "get_cmake_dir",
16 "get_pkgconfig_dir",
17)