Warning, file /jana2/src/python/externals/pybind11-2.10.3/pybind11/__init__.py was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001 import sys
0002
0003 if sys.version_info < (3, 6):
0004 msg = "pybind11 does not support Python < 3.6. 2.9 was the last release supporting Python 2.7 and 3.5."
0005 raise ImportError(msg)
0006
0007
0008 from ._version import __version__, version_info
0009 from .commands import get_cmake_dir, get_include, get_pkgconfig_dir
0010
0011 __all__ = (
0012 "version_info",
0013 "__version__",
0014 "get_include",
0015 "get_cmake_dir",
0016 "get_pkgconfig_dir",
0017 )