wrap
pybind11
pybind11
wrap/pybind11/pybind11/__init__.py
Go to the documentation of this file.
1
import
sys
2
3
if
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
8
from
._version
import
__version__, version_info
9
from
.commands
import
get_cmake_dir, get_include
10
11
__all__ = (
12
"version_info"
,
13
"__version__"
,
14
"get_include"
,
15
"get_cmake_dir"
,
16
)
gtsam
Author(s):
autogenerated on Tue Jul 4 2023 02:33:53