wrap/pybind11/pybind11/__init__.py
Go to the documentation of this file.
1 import sys
2 
3 if sys.version_info < (3, 6): # noqa: UP036
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 
8 from ._version import __version__, version_info
9 from .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 )


gtsam
Author(s):
autogenerated on Sat Jun 1 2024 03:01:07