wrap/pybind11/pybind11/__init__.py
Go to the documentation of this file.
1 from __future__ import annotations
2 
3 import sys
4 
5 if sys.version_info < (3, 7): # noqa: UP036
6  msg = "pybind11 does not support Python < 3.7. v2.12 was the last release supporting Python 3.6."
7  raise ImportError(msg)
8 
9 
10 from ._version import __version__, version_info
11 from .commands import get_cmake_dir, get_include, get_pkgconfig_dir
12 
13 __all__ = (
14  "version_info",
15  "__version__",
16  "get_include",
17  "get_cmake_dir",
18  "get_pkgconfig_dir",
19 )


gtsam
Author(s):
autogenerated on Fri Nov 1 2024 03:31:51