We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00b8f36 commit a80af95Copy full SHA for a80af95
CMakeLists.txt
@@ -51,6 +51,7 @@ set(PYBIND11_HEADERS
51
include/pybind11/buffer_info.h
52
include/pybind11/cast.h
53
include/pybind11/chrono.h
54
+ include/pybind11/common.h
55
include/pybind11/complex.h
56
include/pybind11/options.h
57
include/pybind11/eigen.h
include/pybind11/common.h
@@ -0,0 +1,2 @@
1
+#include "detail/common.h"
2
+#warning "Including 'common.h' is deprecated. It will be removed in v3.0. Use 'pybind11.h'."
setup.py
@@ -23,6 +23,7 @@
23
'include/pybind11/buffer_info.h',
24
'include/pybind11/cast.h',
25
'include/pybind11/chrono.h',
26
+ 'include/pybind11/common.h',
27
'include/pybind11/complex.h',
28
'include/pybind11/eigen.h',
29
'include/pybind11/embed.h',
0 commit comments