Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:17:50

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 )