We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1e82cd commit 034828aCopy full SHA for 034828a
1 file changed
src/PyPartMC/__init__.py
@@ -71,12 +71,12 @@ def __generate_si():
71
SI-prefix-aware unit multipliers, resulting in e.g.: `p = 1000 * si.hPa`
72
notation. Note: no dimensional analysis is done! """
73
74
-# from ._PyPartMC import __all__ as _PyPartMC_all # pylint: disable=no-name-in-module
75
-# with __build_extension_env():
76
-# from . import _PyPartMC
77
from ._PyPartMC import *
78
from ._PyPartMC import __versions_of_build_time_dependencies__
79
80
__version__ = importlib.metadata.version(__package__)
81
82
-# __all__ = tuple([*_PyPartMC_all, "si"])
+import nanobind
+
+meta_cls = type(_PyPartMC.AeroData)
+setattr(nanobind, "nb_type_0", meta_cls)
0 commit comments