pyhtml2md 1.6.0__tar.gz → 1.6.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of pyhtml2md might be problematic. Click here for more details.

Files changed (387) hide show
  1. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/.github/workflows/wheels.yml +2 -2
  2. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/CMakeLists.txt +1 -1
  3. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/PKG-INFO +1 -1
  4. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/pyproject.toml +1 -1
  5. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/bindings.cpp +9 -1
  6. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/.appveyor.yml +1 -1
  7. pyhtml2md-1.6.1/python/pybind11/.github/labeler.yml +13 -0
  8. pyhtml2md-1.6.1/python/pybind11/.github/labeler_merged.yml +8 -0
  9. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/.github/workflows/ci.yml +67 -36
  10. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/.github/workflows/configure.yml +2 -2
  11. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/.github/workflows/labeler.yml +1 -1
  12. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/.github/workflows/pip.yml +4 -5
  13. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/.pre-commit-config.yaml +10 -9
  14. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/CMakeLists.txt +2 -0
  15. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/README.rst +2 -2
  16. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/advanced/pycpp/numpy.rst +0 -2
  17. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/benchmark.py +2 -0
  18. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/compiling.rst +156 -79
  19. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/conf.py +2 -1
  20. pyhtml2md-1.6.1/python/pybind11/docs/requirements.in +6 -0
  21. pyhtml2md-1.6.1/python/pybind11/docs/requirements.txt +275 -0
  22. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/cast.h +13 -2
  23. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/detail/class.h +68 -62
  24. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/detail/common.h +7 -5
  25. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/detail/internals.h +180 -94
  26. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/detail/type_caster_base.h +32 -36
  27. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/embed.h +0 -3
  28. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/gil.h +10 -38
  29. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/numpy.h +3 -1
  30. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/pybind11.h +106 -43
  31. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/pytypes.h +31 -1
  32. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/stl/filesystem.h +1 -2
  33. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/typing.h +32 -0
  34. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/noxfile.py +30 -30
  35. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/pybind11/__init__.py +4 -2
  36. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/pybind11/__main__.py +1 -0
  37. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/pybind11/_version.py +2 -2
  38. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/pybind11/commands.py +2 -0
  39. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/pybind11/setup_helpers.py +15 -15
  40. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/pyproject.toml +6 -14
  41. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/setup.cfg +1 -2
  42. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/setup.py +7 -8
  43. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/CMakeLists.txt +1 -1
  44. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/conftest.py +2 -0
  45. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/cross_module_gil_utils.cpp +3 -0
  46. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/cross_module_interleaved_error_already_set.cpp +3 -0
  47. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/eigen_tensor_avoid_stl_array.cpp +3 -1
  48. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/env.py +4 -0
  49. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/extra_python_package/test_files.py +3 -0
  50. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/extra_setuptools/test_setuphelper.py +2 -0
  51. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/pybind11_cross_module_tests.cpp +1 -1
  52. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/pybind11_tests.cpp +4 -2
  53. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/pybind11_tests.h +13 -0
  54. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/pytest.ini +1 -0
  55. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/requirements.txt +2 -4
  56. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_async.py +2 -0
  57. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_buffers.py +2 -0
  58. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_builtin_casters.py +2 -0
  59. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_call_policies.cpp +1 -1
  60. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_call_policies.py +2 -0
  61. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_callbacks.py +2 -0
  62. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_chrono.py +2 -0
  63. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_class.cpp +1 -1
  64. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_class.py +6 -2
  65. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_cmake_build/main.cpp +1 -1
  66. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_cmake_build/test.py +2 -0
  67. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_const_name.py +2 -0
  68. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_constants_and_functions.py +2 -0
  69. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_copy_move.cpp +12 -0
  70. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_copy_move.py +8 -0
  71. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_custom_type_casters.py +2 -0
  72. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_custom_type_setup.py +2 -0
  73. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_docstring_options.py +2 -0
  74. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_eigen_matrix.py +2 -0
  75. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_eigen_tensor.py +2 -0
  76. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_embed/CMakeLists.txt +7 -0
  77. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_embed/external_module.cpp +1 -1
  78. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_embed/test_interpreter.py +2 -0
  79. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_embed/test_trampoline.py +2 -0
  80. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_enum.py +1 -0
  81. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_eval.py +2 -0
  82. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_eval_call.py +1 -0
  83. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_exceptions.py +2 -0
  84. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_factory_constructors.py +2 -0
  85. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_gil_scoped.py +2 -0
  86. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_iostream.py +2 -0
  87. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_kwargs_and_defaults.cpp +5 -2
  88. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_kwargs_and_defaults.py +5 -2
  89. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_local_bindings.py +2 -0
  90. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_methods_and_attributes.py +2 -0
  91. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_modules.py +2 -0
  92. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_multiple_inheritance.py +2 -0
  93. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_numpy_array.py +3 -5
  94. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_numpy_dtypes.cpp +1 -1
  95. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_numpy_dtypes.py +2 -0
  96. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_numpy_vectorize.py +2 -0
  97. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_opaque_types.py +2 -0
  98. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_operator_overloading.py +2 -0
  99. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_pickling.py +2 -0
  100. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_python_multiple_inheritance.py +1 -0
  101. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_pytypes.cpp +24 -0
  102. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_pytypes.py +31 -1
  103. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_sequences_and_iterators.py +2 -0
  104. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_smart_ptr.py +2 -0
  105. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_stl.cpp +1 -1
  106. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_stl.py +2 -0
  107. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_stl_binders.py +2 -0
  108. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_tagbased_polymorphic.py +2 -0
  109. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_thread.cpp +1 -1
  110. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_thread.py +2 -0
  111. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_type_caster_pyobject_ptr.cpp +39 -2
  112. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_type_caster_pyobject_ptr.py +18 -0
  113. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_union.py +2 -0
  114. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_unnamed_namespace_a.py +2 -0
  115. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_unnamed_namespace_b.py +2 -0
  116. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_vector_unique_ptr_member.py +2 -0
  117. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_virtual_functions.py +2 -0
  118. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tools/FindPythonLibsNew.cmake +2 -2
  119. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tools/codespell_ignore_lines_from_errors.py +3 -2
  120. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tools/libsize.py +2 -0
  121. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tools/pybind11Common.cmake +11 -1
  122. pyhtml2md-1.6.1/python/pybind11/tools/pybind11GuessPythonExtSuffix.cmake +86 -0
  123. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tools/pybind11NewTools.cmake +90 -60
  124. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tools/pybind11Tools.cmake +1 -1
  125. pyhtml2md-1.6.1/python/pybind11/tools/test-pybind11GuessPythonExtSuffix.cmake +161 -0
  126. pyhtml2md-1.6.1/tests/test_advanced.py +125 -0
  127. pyhtml2md-1.6.0/python/pybind11/.git +0 -1
  128. pyhtml2md-1.6.0/python/pybind11/.github/labeler.yml +0 -8
  129. pyhtml2md-1.6.0/python/pybind11/.github/labeler_merged.yml +0 -3
  130. pyhtml2md-1.6.0/python/pybind11/docs/Makefile +0 -192
  131. pyhtml2md-1.6.0/python/pybind11/docs/requirements.txt +0 -6
  132. pyhtml2md-1.6.0/tests/md4c/.git +0 -1
  133. pyhtml2md-1.6.0/tests/test_advanced.py +0 -11
  134. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/.clang-format +0 -0
  135. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/.github/CODEOWNERS +0 -0
  136. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
  137. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
  138. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/.github/ISSUE_TEMPLATE/question.md +0 -0
  139. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/.github/dependabot.yml +0 -0
  140. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/.github/workflows/build.yml +0 -0
  141. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/.github/workflows/release.yml +0 -0
  142. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/.github/workflows/website.yml +0 -0
  143. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/.gitignore +0 -0
  144. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/.gitmodules +0 -0
  145. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/CHANGELOG.md +0 -0
  146. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/CONTRIBUTING.md +0 -0
  147. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/COPYING +0 -0
  148. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/MANIFEST.in +0 -0
  149. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/README.md +0 -0
  150. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/SECURITY.md +0 -0
  151. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/cli/main.cpp +0 -0
  152. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/cmake/Doc.cmake +0 -0
  153. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/cmake/Packaging.cmake +0 -0
  154. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/docs/Doxyfile +0 -0
  155. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/docs/doxygen-awesome-css/.gitignore +0 -0
  156. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/docs/doxygen-awesome-css/LICENSE +0 -0
  157. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/docs/doxygen-awesome-css/doxygen-awesome-darkmode-toggle.js +0 -0
  158. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/docs/doxygen-awesome-css/doxygen-awesome-fragment-copy-button.js +0 -0
  159. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/docs/doxygen-awesome-css/doxygen-awesome-interactive-toc.js +0 -0
  160. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/docs/doxygen-awesome-css/doxygen-awesome-paragraph-link.js +0 -0
  161. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/docs/doxygen-awesome-css/doxygen-awesome-sidebar-only-darkmode-toggle.css +0 -0
  162. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/docs/doxygen-awesome-css/doxygen-awesome-sidebar-only.css +0 -0
  163. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/docs/doxygen-awesome-css/doxygen-awesome.css +0 -0
  164. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/docs/doxygen-awesome-css/doxygen-custom/custom.css +0 -0
  165. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/docs/doxygen-awesome-css/doxygen-custom/header.html +0 -0
  166. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/docs/index.md +0 -0
  167. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/html2md.pc.in +0 -0
  168. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/html2mdConfig.cmake.in +0 -0
  169. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/include/html2md.h +0 -0
  170. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/include/table.h +0 -0
  171. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/js/bindings.cpp +0 -0
  172. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/README.md +0 -0
  173. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/.clang-format +0 -0
  174. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/.clang-tidy +0 -0
  175. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/.cmake-format.yaml +0 -0
  176. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/.codespell-ignore-lines +0 -0
  177. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/.gitattributes +0 -0
  178. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/.github/CODEOWNERS +0 -0
  179. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/.github/CONTRIBUTING.md +0 -0
  180. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/.github/ISSUE_TEMPLATE/bug-report.yml +0 -0
  181. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/.github/ISSUE_TEMPLATE/config.yml +0 -0
  182. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/.github/dependabot.yml +0 -0
  183. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/.github/matchers/pylint.json +0 -0
  184. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/.github/pull_request_template.md +0 -0
  185. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/.github/workflows/format.yml +0 -0
  186. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/.github/workflows/upstream.yml +0 -0
  187. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/.gitignore +0 -0
  188. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/.readthedocs.yml +0 -0
  189. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/LICENSE +0 -0
  190. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/MANIFEST.in +0 -0
  191. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/SECURITY.md +0 -0
  192. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/Doxyfile +0 -0
  193. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/_static/css/custom.css +0 -0
  194. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/advanced/cast/chrono.rst +0 -0
  195. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/advanced/cast/custom.rst +0 -0
  196. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/advanced/cast/eigen.rst +0 -0
  197. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/advanced/cast/functional.rst +0 -0
  198. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/advanced/cast/index.rst +0 -0
  199. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/advanced/cast/overview.rst +0 -0
  200. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/advanced/cast/stl.rst +0 -0
  201. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/advanced/cast/strings.rst +0 -0
  202. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/advanced/classes.rst +0 -0
  203. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/advanced/embedding.rst +0 -0
  204. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/advanced/exceptions.rst +0 -0
  205. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/advanced/functions.rst +0 -0
  206. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/advanced/misc.rst +0 -0
  207. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/advanced/pycpp/index.rst +0 -0
  208. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/advanced/pycpp/object.rst +0 -0
  209. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/advanced/pycpp/utilities.rst +0 -0
  210. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/advanced/smart_ptrs.rst +0 -0
  211. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/basics.rst +0 -0
  212. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/benchmark.rst +0 -0
  213. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/changelog.rst +0 -0
  214. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/classes.rst +0 -0
  215. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/cmake/index.rst +0 -0
  216. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/faq.rst +0 -0
  217. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/index.rst +0 -0
  218. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/installing.rst +0 -0
  219. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/limitations.rst +0 -0
  220. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/pybind11-logo.png +0 -0
  221. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/pybind11_vs_boost_python1.png +0 -0
  222. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/pybind11_vs_boost_python1.svg +0 -0
  223. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/pybind11_vs_boost_python2.png +0 -0
  224. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/pybind11_vs_boost_python2.svg +0 -0
  225. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/reference.rst +0 -0
  226. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/release.rst +0 -0
  227. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/upgrade.rst +0 -0
  228. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/attr.h +0 -0
  229. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/buffer_info.h +0 -0
  230. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/chrono.h +0 -0
  231. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/common.h +0 -0
  232. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/complex.h +0 -0
  233. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/detail/descr.h +0 -0
  234. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/detail/init.h +0 -0
  235. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/detail/typeid.h +0 -0
  236. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/eigen/common.h +0 -0
  237. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/eigen/matrix.h +0 -0
  238. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/eigen/tensor.h +0 -0
  239. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/eigen.h +0 -0
  240. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/eval.h +0 -0
  241. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/functional.h +0 -0
  242. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/gil_safe_call_once.h +0 -0
  243. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/iostream.h +0 -0
  244. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/operators.h +0 -0
  245. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/options.h +0 -0
  246. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/stl.h +0 -0
  247. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/stl_bind.h +0 -0
  248. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/type_caster_pyobject_ptr.h +0 -0
  249. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/pybind11/py.typed +0 -0
  250. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/constructor_stats.h +0 -0
  251. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/extra_python_package/pytest.ini +0 -0
  252. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/extra_setuptools/pytest.ini +0 -0
  253. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/local_bindings.h +0 -0
  254. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/object.h +0 -0
  255. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_async.cpp +0 -0
  256. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_buffers.cpp +0 -0
  257. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_builtin_casters.cpp +0 -0
  258. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_callbacks.cpp +0 -0
  259. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_chrono.cpp +0 -0
  260. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_cmake_build/CMakeLists.txt +0 -0
  261. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_cmake_build/embed.cpp +0 -0
  262. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_cmake_build/installed_embed/CMakeLists.txt +0 -0
  263. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_cmake_build/installed_function/CMakeLists.txt +0 -0
  264. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_cmake_build/installed_target/CMakeLists.txt +0 -0
  265. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_cmake_build/subdirectory_embed/CMakeLists.txt +0 -0
  266. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_cmake_build/subdirectory_function/CMakeLists.txt +0 -0
  267. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_cmake_build/subdirectory_target/CMakeLists.txt +0 -0
  268. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_const_name.cpp +0 -0
  269. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_constants_and_functions.cpp +0 -0
  270. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_custom_type_casters.cpp +0 -0
  271. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_custom_type_setup.cpp +0 -0
  272. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_docstring_options.cpp +0 -0
  273. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_eigen_matrix.cpp +0 -0
  274. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_eigen_tensor.cpp +0 -0
  275. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_eigen_tensor.inl +0 -0
  276. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_embed/catch.cpp +0 -0
  277. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_embed/test_interpreter.cpp +0 -0
  278. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_enum.cpp +0 -0
  279. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_eval.cpp +0 -0
  280. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_exceptions.cpp +0 -0
  281. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_exceptions.h +0 -0
  282. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_factory_constructors.cpp +0 -0
  283. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_gil_scoped.cpp +0 -0
  284. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_iostream.cpp +0 -0
  285. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_local_bindings.cpp +0 -0
  286. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_methods_and_attributes.cpp +0 -0
  287. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_modules.cpp +0 -0
  288. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_multiple_inheritance.cpp +0 -0
  289. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_numpy_array.cpp +0 -0
  290. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_numpy_vectorize.cpp +0 -0
  291. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_opaque_types.cpp +0 -0
  292. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_operator_overloading.cpp +0 -0
  293. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_pickling.cpp +0 -0
  294. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_python_multiple_inheritance.cpp +0 -0
  295. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_sequences_and_iterators.cpp +0 -0
  296. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_smart_ptr.cpp +0 -0
  297. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_stl_binders.cpp +0 -0
  298. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_tagbased_polymorphic.cpp +0 -0
  299. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_union.cpp +0 -0
  300. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_unnamed_namespace_a.cpp +0 -0
  301. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_unnamed_namespace_b.cpp +0 -0
  302. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_vector_unique_ptr_member.cpp +0 -0
  303. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_virtual_functions.cpp +0 -0
  304. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/valgrind-numpy-scipy.supp +0 -0
  305. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/valgrind-python.supp +0 -0
  306. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tools/FindCatch.cmake +0 -0
  307. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tools/FindEigen3.cmake +0 -0
  308. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tools/JoinPaths.cmake +0 -0
  309. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tools/check-style.sh +0 -0
  310. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tools/cmake_uninstall.cmake.in +0 -0
  311. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tools/make_changelog.py +0 -0
  312. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tools/pybind11.pc.in +0 -0
  313. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tools/pybind11Config.cmake.in +0 -0
  314. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tools/pyproject.toml +0 -0
  315. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tools/setup_global.py.in +0 -0
  316. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tools/setup_main.py.in +0 -0
  317. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/scripts/clang-format.sh +0 -0
  318. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/src/html2md.cpp +0 -0
  319. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/src/table.cpp +0 -0
  320. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/CMakeLists.txt +0 -0
  321. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/README.md +0 -0
  322. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/blockquote.md +0 -0
  323. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/breaks.md +0 -0
  324. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/code.md +0 -0
  325. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/comment.html +0 -0
  326. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/escaping.md +0 -0
  327. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/formating.md +0 -0
  328. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/links.md +0 -0
  329. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/lists.md +0 -0
  330. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/main.cpp +0 -0
  331. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/.gitignore +0 -0
  332. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/.travis.yml +0 -0
  333. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/CHANGELOG.md +0 -0
  334. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/CMakeLists.txt +0 -0
  335. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/LICENSE.md +0 -0
  336. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/README.md +0 -0
  337. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/appveyor.yml +0 -0
  338. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/codecov.yml +0 -0
  339. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/md2html/CMakeLists.txt +0 -0
  340. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/md2html/cmdline.c +0 -0
  341. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/md2html/cmdline.h +0 -0
  342. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/md2html/md2html.1 +0 -0
  343. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/md2html/md2html.c +0 -0
  344. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/scripts/build_folding_map.py +0 -0
  345. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/scripts/build_punct_map.py +0 -0
  346. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/scripts/build_symbol_map.py +0 -0
  347. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/scripts/build_whitespace_map.py +0 -0
  348. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/scripts/coverity.sh +0 -0
  349. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/scripts/run-tests.sh +0 -0
  350. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/scripts/unicode/CaseFolding.txt +0 -0
  351. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/scripts/unicode/DerivedGeneralCategory.txt +0 -0
  352. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/src/CMakeLists.txt +0 -0
  353. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/src/entity.c +0 -0
  354. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/src/entity.h +0 -0
  355. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/src/md4c-html.c +0 -0
  356. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/src/md4c-html.h +0 -0
  357. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/src/md4c-html.pc.in +0 -0
  358. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/src/md4c.c +0 -0
  359. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/src/md4c.h +0 -0
  360. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/src/md4c.pc.in +0 -0
  361. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/test/LICENSE +0 -0
  362. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/test/cmark.py +0 -0
  363. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/test/coverage.txt +0 -0
  364. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/test/fuzz-input/commonmark.md +0 -0
  365. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/test/fuzz-input/gfm.md +0 -0
  366. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/test/fuzz-input/latex-math.md +0 -0
  367. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/test/fuzz-input/wiki.md +0 -0
  368. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/test/fuzzers/fuzz-mdhtml.c +0 -0
  369. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/test/heading-auto-identifier.txt +0 -0
  370. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/test/latex-math.txt +0 -0
  371. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/test/normalize.py +0 -0
  372. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/test/pathological_auto_ident_tests.py +0 -0
  373. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/test/pathological_tests.py +0 -0
  374. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/test/permissive-email-autolinks.txt +0 -0
  375. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/test/permissive-url-autolinks.txt +0 -0
  376. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/test/permissive-www-autolinks.txt +0 -0
  377. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/test/spec.txt +0 -0
  378. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/test/spec_tests.py +0 -0
  379. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/test/strikethrough.txt +0 -0
  380. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/test/tables.txt +0 -0
  381. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/test/tasklists.txt +0 -0
  382. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/test/toc-mark.txt +0 -0
  383. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/test/toc.txt +0 -0
  384. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/test/underline.txt +0 -0
  385. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/test/wiki-links.txt +0 -0
  386. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/tables.md +0 -0
  387. {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/test_basic.py +0 -0
@@ -39,7 +39,7 @@ jobs:
39
39
  with:
40
40
  submodules: true
41
41
 
42
- - uses: pypa/cibuildwheel@v2.17.0
42
+ - uses: pypa/cibuildwheel@v2.19.1
43
43
  env:
44
44
  CIBW_ARCHS_MACOS: auto universal2
45
45
 
@@ -65,7 +65,7 @@ jobs:
65
65
  name: artifact
66
66
  path: dist
67
67
 
68
- - uses: pypa/gh-action-pypi-publish@v1.8.14
68
+ - uses: pypa/gh-action-pypi-publish@v1.9.0
69
69
  with:
70
70
  password: ${{ secrets.PYPI_API_TOKEN }}
71
71
 
@@ -1,5 +1,5 @@
1
1
  cmake_minimum_required(VERSION 3.8)
2
- project(html2md VERSION 1.6.0 LANGUAGES CXX)
2
+ project(html2md VERSION 1.6.1 LANGUAGES CXX)
3
3
 
4
4
  set(PROJECT_HOMEPAGE_URL "https://tim-gromeyer.github.io/html2md/")
5
5
  set(html2md_HOMEPAGE_URL "${PROJECT_HOMEPAGE_URL}")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyhtml2md
3
- Version: 1.6.0
3
+ Version: 1.6.1
4
4
  Summary: Transform your HTML into clean, easy-to-read markdown with pyhtml2md.
5
5
  Keywords: html,markdown,html-to-markdown,python3,cpp17,cpp-library,html2markdown,html2md
6
6
  Author-Email: Tim Gromeyer <sakul8826@gmail.com>
@@ -11,7 +11,7 @@ description = "Transform your HTML into clean, easy-to-read markdown with pyhtml
11
11
  readme = "python/README.md"
12
12
  requires-python = ">=3.7"
13
13
  license = { text = "MIT" }
14
- version = "1.6.0"
14
+ version = "1.6.1"
15
15
  classifiers = [
16
16
  "Intended Audience :: Developers",
17
17
  "License :: OSI Approved :: MIT License",
@@ -5,18 +5,26 @@ namespace py = pybind11;
5
5
  PYBIND11_MODULE(pyhtml2md, m) {
6
6
  m.doc() = "Python bindings for html2md"; // optional module docstring
7
7
 
8
+ // Options class bindings
8
9
  py::class_<html2md::Options>(m, "Options")
9
10
  .def(py::init<>())
10
11
  .def_readwrite(
11
12
  "splitLines", &html2md::Options::splitLines,
12
13
  "Add new line when a certain number of characters is reached")
14
+ .def_readwrite("softBreak", &html2md::Options::softBreak,
15
+ "Wrap after ... characters when the next space is reached")
16
+ .def_readwrite("hardBreak", &html2md::Options::hardBreak,
17
+ "Force a break after ... characters in a line")
13
18
  .def_readwrite("unorderedList", &html2md::Options::unorderedList,
14
19
  "The char used for unordered lists")
15
20
  .def_readwrite("orderedList", &html2md::Options::orderedList,
16
21
  "The char used after the number of the item")
17
22
  .def_readwrite("includeTitle", &html2md::Options::includeTitle,
18
23
  "Whether title is added as h1 heading at the very "
19
- "beginning of the markdown");
24
+ "beginning of the markdown")
25
+ .def_readwrite("formatTable", &html2md::Options::formatTable,
26
+ "Whether to format Markdown Tables")
27
+ .def("__eq__", &html2md::Options::operator==);
20
28
 
21
29
  py::class_<html2md::Converter>(m, "Converter")
22
30
  .def(py::init<std::string &, html2md::Options *>(),
@@ -9,7 +9,7 @@ platform:
9
9
  - x86
10
10
  environment:
11
11
  matrix:
12
- - PYTHON: 36
12
+ - PYTHON: 38
13
13
  CONFIG: Debug
14
14
  install:
15
15
  - ps: |
@@ -0,0 +1,13 @@
1
+ docs:
2
+ all:
3
+ - changed-files:
4
+ - all-globs-to-all-files:
5
+ - '!docs/changelog.rst'
6
+ - '!docs/upgrade.rst'
7
+ - base-branch: "^(?!dependabot).*"
8
+ - base-branch: "^(?!pre-commit-ci).*"
9
+
10
+ ci:
11
+ - changed-files:
12
+ - any-glob-to-any-file:
13
+ - '.github/workflows/*.yml'
@@ -0,0 +1,8 @@
1
+ # Add 'needs changelog` label to any change to code files as long as the `CHANGELOG` hasn't changed
2
+ # Skip dependabot and pre-commit-ci PRs
3
+ needs changelog:
4
+ - all:
5
+ - changed-files:
6
+ - all-globs-to-all-files: "!docs/changelog.rst"
7
+ - base-branch: "^(?!dependabot).*"
8
+ - base-branch: "^(?!pre-commit-ci).*"
@@ -30,13 +30,12 @@ jobs:
30
30
  strategy:
31
31
  fail-fast: false
32
32
  matrix:
33
- runs-on: [ubuntu-20.04, windows-2022, macos-latest]
33
+ runs-on: [ubuntu-20.04, windows-2022, macos-13]
34
34
  python:
35
- - '3.6'
35
+ - '3.8'
36
36
  - '3.9'
37
- - '3.10'
38
- - '3.11'
39
37
  - '3.12'
38
+ - '3.13'
40
39
  - 'pypy-3.8'
41
40
  - 'pypy-3.9'
42
41
  - 'pypy-3.10'
@@ -49,21 +48,26 @@ jobs:
49
48
  include:
50
49
  # Just add a key
51
50
  - runs-on: ubuntu-20.04
52
- python: '3.6'
51
+ python: '3.8'
53
52
  args: >
54
53
  -DPYBIND11_FINDPYTHON=ON
55
54
  -DCMAKE_CXX_FLAGS="-D_=1"
55
+ exercise_D_: 1
56
56
  - runs-on: ubuntu-20.04
57
57
  python: 'pypy-3.8'
58
58
  args: >
59
59
  -DPYBIND11_FINDPYTHON=ON
60
60
  - runs-on: windows-2019
61
- python: '3.6'
61
+ python: '3.8'
62
62
  args: >
63
63
  -DPYBIND11_FINDPYTHON=ON
64
64
  # Inject a couple Windows 2019 runs
65
65
  - runs-on: windows-2019
66
66
  python: '3.9'
67
+ # Extra ubuntu latest job
68
+ - runs-on: ubuntu-latest
69
+ python: '3.11'
70
+
67
71
 
68
72
  name: "🐍 ${{ matrix.python }} • ${{ matrix.runs-on }} • x64 ${{ matrix.args }}"
69
73
  runs-on: ${{ matrix.runs-on }}
@@ -75,10 +79,11 @@ jobs:
75
79
  uses: actions/setup-python@v5
76
80
  with:
77
81
  python-version: ${{ matrix.python }}
82
+ allow-prereleases: true
78
83
 
79
84
  - name: Setup Boost (Linux)
80
85
  # Can't use boost + define _
81
- if: runner.os == 'Linux' && matrix.python != '3.6'
86
+ if: runner.os == 'Linux' && matrix.exercise_D_ != 1
82
87
  run: sudo apt-get install libboost-dev
83
88
 
84
89
  - name: Setup Boost (macOS)
@@ -129,9 +134,7 @@ jobs:
129
134
  run: cmake --build . --target pytest -j 2
130
135
 
131
136
  - name: C++11 tests
132
- # TODO: Figure out how to load the DLL on Python 3.8+
133
- if: "!(runner.os == 'Windows' && (matrix.python == 3.8 || matrix.python == 3.9 || matrix.python == '3.10' || matrix.python == '3.11' || matrix.python == 'pypy-3.8'))"
134
- run: cmake --build . --target cpptest -j 2
137
+ run: cmake --build . --target cpptest -j 2
135
138
 
136
139
  - name: Interface test C++11
137
140
  run: cmake --build . --target test_cmake_build
@@ -160,8 +163,6 @@ jobs:
160
163
  run: cmake --build build2 --target pytest
161
164
 
162
165
  - name: C++ tests
163
- # TODO: Figure out how to load the DLL on Python 3.8+
164
- if: "!(runner.os == 'Windows' && (matrix.python == 3.8 || matrix.python == 3.9 || matrix.python == '3.10' || matrix.python == '3.11' || matrix.python == 'pypy-3.8'))"
165
166
  run: cmake --build build2 --target cpptest
166
167
 
167
168
  # Third build - C++17 mode with unstable ABI
@@ -192,6 +193,35 @@ jobs:
192
193
  pytest tests/extra_setuptools
193
194
  if: "!(matrix.runs-on == 'windows-2022')"
194
195
 
196
+ manylinux:
197
+ name: Manylinux on 🐍 3.13t • GIL
198
+ runs-on: ubuntu-latest
199
+ timeout-minutes: 40
200
+ container: quay.io/pypa/musllinux_1_2_x86_64:latest
201
+ steps:
202
+ - uses: actions/checkout@v4
203
+ with:
204
+ fetch-depth: 0
205
+
206
+ - name: Prepare venv
207
+ run: python3.13t -m venv .venv
208
+
209
+ - name: Install Python deps
210
+ run: .venv/bin/pip install -r tests/requirements.txt
211
+
212
+ - name: Configure C++11
213
+ run: >
214
+ cmake -S. -Bbuild
215
+ -DPYBIND11_WERROR=ON
216
+ -DDOWNLOAD_CATCH=ON
217
+ -DDOWNLOAD_EIGEN=ON
218
+ -DPython_ROOT_DIR=.venv
219
+
220
+ - name: Build C++11
221
+ run: cmake --build build -j2
222
+
223
+ - name: Python tests C++11
224
+ run: cmake --build build --target pytest -j2
195
225
 
196
226
  deadsnakes:
197
227
  strategy:
@@ -626,15 +656,13 @@ jobs:
626
656
  cmake --build build-17 --target test_cmake_build
627
657
 
628
658
 
629
- # Testing on CentOS (manylinux uses a centos base, and this is an easy way
630
- # to get GCC 4.8, which is the manylinux1 compiler).
659
+ # Testing on CentOS (manylinux uses a centos base).
631
660
  centos:
632
661
  runs-on: ubuntu-latest
633
662
  strategy:
634
663
  fail-fast: false
635
664
  matrix:
636
665
  container:
637
- - "centos:7" # GCC 4.8
638
666
  - "almalinux:8"
639
667
  - "almalinux:9"
640
668
 
@@ -644,18 +672,13 @@ jobs:
644
672
  steps:
645
673
  - name: Latest actions/checkout
646
674
  uses: actions/checkout@v4
647
- if: matrix.container != 'centos:7'
648
675
 
649
- - name: Pin actions/checkout as required for centos:7
650
- uses: actions/checkout@v3
651
- if: matrix.container == 'centos:7'
676
+ - name: Add Python 3.8
677
+ if: matrix.container == 'almalinux:8'
678
+ run: dnf update -y && dnf install -y python38-devel gcc-c++ make git
652
679
 
653
- - name: Add Python 3 (RHEL 7)
654
- if: matrix.container == 'centos:7'
655
- run: yum update -y && yum install -y python3-devel gcc-c++ make git
656
-
657
- - name: Add Python 3 (RHEL 8+)
658
- if: matrix.container != 'centos:7'
680
+ - name: Add Python 3 (default)
681
+ if: matrix.container != 'almalinux:8'
659
682
  run: dnf update -y && dnf install -y python3-devel gcc-c++ make git
660
683
 
661
684
  - name: Update pip
@@ -778,17 +801,25 @@ jobs:
778
801
  fail-fast: false
779
802
  matrix:
780
803
  python:
781
- - 3.6
782
- - 3.7
783
- - 3.8
784
- - 3.9
804
+ - '3.7'
805
+ - '3.8'
806
+ - '3.9'
807
+ - '3.10'
808
+ - '3.11'
809
+ - '3.12'
785
810
 
786
811
  include:
787
- - python: 3.9
812
+ - python: '3.12'
788
813
  args: -DCMAKE_CXX_STANDARD=20
789
- - python: 3.8
814
+ - python: '3.11'
815
+ args: -DCMAKE_CXX_STANDARD=20
816
+ - python: '3.10'
817
+ args: -DCMAKE_CXX_STANDARD=20
818
+ - python: '3.9'
819
+ args: -DCMAKE_CXX_STANDARD=20
820
+ - python: '3.8'
790
821
  args: -DCMAKE_CXX_STANDARD=17
791
- - python: 3.7
822
+ - python: '3.7'
792
823
  args: -DCMAKE_CXX_STANDARD=14
793
824
 
794
825
 
@@ -972,7 +1003,6 @@ jobs:
972
1003
  mingw-w64-${{matrix.env}}-cmake
973
1004
  mingw-w64-${{matrix.env}}-make
974
1005
  mingw-w64-${{matrix.env}}-python-pytest
975
- mingw-w64-${{matrix.env}}-eigen3
976
1006
  mingw-w64-${{matrix.env}}-boost
977
1007
  mingw-w64-${{matrix.env}}-catch
978
1008
 
@@ -983,6 +1013,7 @@ jobs:
983
1013
  install: >-
984
1014
  git
985
1015
  mingw-w64-${{matrix.env}}-python-scipy
1016
+ mingw-w64-${{matrix.env}}-eigen3
986
1017
 
987
1018
  - uses: actions/checkout@v4
988
1019
 
@@ -1078,7 +1109,7 @@ jobs:
1078
1109
  uses: jwlawson/actions-setup-cmake@v2.0
1079
1110
 
1080
1111
  - name: Install ninja-build tool
1081
- uses: seanmiddleditch/gha-setup-ninja@v4
1112
+ uses: seanmiddleditch/gha-setup-ninja@v5
1082
1113
 
1083
1114
  - name: Run pip installs
1084
1115
  run: |
@@ -1118,8 +1149,8 @@ jobs:
1118
1149
  run: git clean -fdx
1119
1150
 
1120
1151
  macos_brew_install_llvm:
1121
- name: "macos-latest • brew install llvm"
1122
- runs-on: macos-latest
1152
+ name: "macos-13 • brew install llvm"
1153
+ runs-on: macos-13
1123
1154
 
1124
1155
  env:
1125
1156
  # https://apple.stackexchange.com/questions/227026/how-to-install-recent-clang-with-homebrew
@@ -24,7 +24,7 @@ jobs:
24
24
  strategy:
25
25
  fail-fast: false
26
26
  matrix:
27
- runs-on: [ubuntu-20.04, macos-latest, windows-latest]
27
+ runs-on: [ubuntu-20.04, macos-13, windows-latest]
28
28
  arch: [x64]
29
29
  cmake: ["3.26"]
30
30
 
@@ -37,7 +37,7 @@ jobs:
37
37
  arch: x64
38
38
  cmake: "3.29"
39
39
 
40
- - runs-on: macos-latest
40
+ - runs-on: macos-13
41
41
  arch: x64
42
42
  cmake: "3.7"
43
43
 
@@ -14,7 +14,7 @@ jobs:
14
14
  pull-requests: write
15
15
  steps:
16
16
 
17
- - uses: actions/labeler@v4
17
+ - uses: actions/labeler@v5
18
18
  if: >
19
19
  github.event.pull_request.merged == true &&
20
20
  !startsWith(github.event.pull_request.title, 'chore(deps):') &&
@@ -21,19 +21,18 @@ env:
21
21
 
22
22
  jobs:
23
23
  # This builds the sdists and wheels and makes sure the files are exactly as
24
- # expected. Using Windows and Python 3.6, since that is often the most
25
- # challenging matrix element.
24
+ # expected.
26
25
  test-packaging:
27
- name: 🐍 3.6 • 📦 tests • windows-latest
26
+ name: 🐍 3.8 • 📦 tests • windows-latest
28
27
  runs-on: windows-latest
29
28
 
30
29
  steps:
31
30
  - uses: actions/checkout@v4
32
31
 
33
- - name: Setup 🐍 3.6
32
+ - name: Setup 🐍 3.8
34
33
  uses: actions/setup-python@v5
35
34
  with:
36
- python-version: 3.6
35
+ python-version: 3.8
37
36
 
38
37
  - name: Prepare env
39
38
  run: |
@@ -25,14 +25,14 @@ repos:
25
25
 
26
26
  # Clang format the codebase automatically
27
27
  - repo: https://github.com/pre-commit/mirrors-clang-format
28
- rev: "v18.1.2"
28
+ rev: "v18.1.5"
29
29
  hooks:
30
30
  - id: clang-format
31
31
  types_or: [c++, c, cuda]
32
32
 
33
33
  # Ruff, the Python auto-correcting linter/formatter written in Rust
34
34
  - repo: https://github.com/astral-sh/ruff-pre-commit
35
- rev: v0.3.5
35
+ rev: v0.4.7
36
36
  hooks:
37
37
  - id: ruff
38
38
  args: ["--fix", "--show-fixes"]
@@ -40,7 +40,7 @@ repos:
40
40
 
41
41
  # Check static types with mypy
42
42
  - repo: https://github.com/pre-commit/mirrors-mypy
43
- rev: "v1.9.0"
43
+ rev: "v1.10.0"
44
44
  hooks:
45
45
  - id: mypy
46
46
  args: []
@@ -62,7 +62,7 @@ repos:
62
62
 
63
63
  # Standard hooks
64
64
  - repo: https://github.com/pre-commit/pre-commit-hooks
65
- rev: "v4.5.0"
65
+ rev: "v4.6.0"
66
66
  hooks:
67
67
  - id: check-added-large-files
68
68
  - id: check-case-conflict
@@ -78,7 +78,7 @@ repos:
78
78
  - id: trailing-whitespace
79
79
 
80
80
  # Also code format the docs
81
- - repo: https://github.com/asottile/blacken-docs
81
+ - repo: https://github.com/adamchainz/blacken-docs
82
82
  rev: "1.16.0"
83
83
  hooks:
84
84
  - id: blacken-docs
@@ -119,11 +119,11 @@ repos:
119
119
  # Use tools/codespell_ignore_lines_from_errors.py
120
120
  # to rebuild .codespell-ignore-lines
121
121
  - repo: https://github.com/codespell-project/codespell
122
- rev: "v2.2.6"
122
+ rev: "v2.3.0"
123
123
  hooks:
124
124
  - id: codespell
125
125
  exclude: ".supp$"
126
- args: ["-x.codespell-ignore-lines", "-Lccompiler"]
126
+ args: ["-x.codespell-ignore-lines", "-Lccompiler,intstruct"]
127
127
 
128
128
  # Check for common shell mistakes
129
129
  - repo: https://github.com/shellcheck-py/shellcheck-py
@@ -142,13 +142,14 @@ repos:
142
142
 
143
143
  # PyLint has native support - not always usable, but works for us
144
144
  - repo: https://github.com/PyCQA/pylint
145
- rev: "v3.1.0"
145
+ rev: "v3.2.2"
146
146
  hooks:
147
147
  - id: pylint
148
148
  files: ^pybind11
149
149
 
150
+ # Check schemas on some of our YAML files
150
151
  - repo: https://github.com/python-jsonschema/check-jsonschema
151
- rev: 0.28.1
152
+ rev: 0.28.4
152
153
  hooks:
153
154
  - id: check-readthedocs
154
155
  - id: check-github-workflows
@@ -116,6 +116,7 @@ option(PYBIND11_NUMPY_1_ONLY
116
116
  set(PYBIND11_INTERNALS_VERSION
117
117
  ""
118
118
  CACHE STRING "Override the ABI version, may be used to enable the unstable ABI.")
119
+ option(PYBIND11_USE_CROSSCOMPILING "Respect CMAKE_CROSSCOMPILING" OFF)
119
120
 
120
121
  if(PYBIND11_DISABLE_HANDLE_TYPE_NAME_DEFAULT_IMPLEMENTATION)
121
122
  add_compile_definitions(PYBIND11_DISABLE_HANDLE_TYPE_NAME_DEFAULT_IMPLEMENTATION)
@@ -299,6 +300,7 @@ if(PYBIND11_INSTALL)
299
300
  tools/pybind11Common.cmake
300
301
  tools/pybind11Tools.cmake
301
302
  tools/pybind11NewTools.cmake
303
+ tools/pybind11GuessPythonExtSuffix.cmake
302
304
  DESTINATION ${PYBIND11_CMAKECONFIG_INSTALL_DIR})
303
305
 
304
306
  if(NOT PYBIND11_EXPORT_NAME)
@@ -34,7 +34,7 @@ dependency.
34
34
  Think of this library as a tiny self-contained version of Boost.Python
35
35
  with everything stripped away that isn't relevant for binding
36
36
  generation. Without comments, the core header files only require ~4K
37
- lines of code and depend on Python (3.6+, or PyPy) and the C++
37
+ lines of code and depend on Python (3.7+, or PyPy) and the C++
38
38
  standard library. This compact implementation was possible thanks to
39
39
  some C++11 language features (specifically: tuples, lambda functions and
40
40
  variadic templates). Since its creation, this library has grown beyond
@@ -79,7 +79,7 @@ Goodies
79
79
  In addition to the core functionality, pybind11 provides some extra
80
80
  goodies:
81
81
 
82
- - Python 3.6+, and PyPy3 7.3 are supported with an implementation-agnostic
82
+ - Python 3.7+, and PyPy3 7.3 are supported with an implementation-agnostic
83
83
  interface (pybind11 2.9 was the last version to support Python 2 and 3.5).
84
84
 
85
85
  - It is possible to bind C++11 lambda functions with captured
@@ -378,8 +378,6 @@ uses of ``py::array``:
378
378
 
379
379
  - ``.itemsize()`` returns the size of an item in bytes, i.e. ``sizeof(T)``.
380
380
 
381
- - ``.ndim()`` returns the number of dimensions.
382
-
383
381
  - ``.shape(n)`` returns the size of dimension ``n``
384
382
 
385
383
  - ``.size()`` returns the total number of elements (i.e. the product of the shapes).
@@ -1,3 +1,5 @@
1
+ from __future__ import annotations
2
+
1
3
  import datetime as dt
2
4
  import os
3
5
  import random