mirror of
https://github.com/thelsing/knx.git
synced 2024-12-23 19:09:41 +01:00
20 lines
459 B
Python
20 lines
459 B
Python
from __future__ import annotations
|
|
|
|
import sys
|
|
|
|
if sys.version_info < (3, 7): # noqa: UP036
|
|
msg = "pybind11 does not support Python < 3.7. v2.12 was the last release supporting Python 3.6."
|
|
raise ImportError(msg)
|
|
|
|
|
|
from ._version import __version__, version_info
|
|
from .commands import get_cmake_dir, get_include, get_pkgconfig_dir
|
|
|
|
__all__ = (
|
|
"version_info",
|
|
"__version__",
|
|
"get_include",
|
|
"get_cmake_dir",
|
|
"get_pkgconfig_dir",
|
|
)
|