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.
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/.github/workflows/wheels.yml +2 -2
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/CMakeLists.txt +1 -1
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/PKG-INFO +1 -1
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/pyproject.toml +1 -1
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/bindings.cpp +9 -1
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/.appveyor.yml +1 -1
- pyhtml2md-1.6.1/python/pybind11/.github/labeler.yml +13 -0
- pyhtml2md-1.6.1/python/pybind11/.github/labeler_merged.yml +8 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/.github/workflows/ci.yml +67 -36
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/.github/workflows/configure.yml +2 -2
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/.github/workflows/labeler.yml +1 -1
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/.github/workflows/pip.yml +4 -5
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/.pre-commit-config.yaml +10 -9
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/CMakeLists.txt +2 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/README.rst +2 -2
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/advanced/pycpp/numpy.rst +0 -2
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/benchmark.py +2 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/compiling.rst +156 -79
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/conf.py +2 -1
- pyhtml2md-1.6.1/python/pybind11/docs/requirements.in +6 -0
- pyhtml2md-1.6.1/python/pybind11/docs/requirements.txt +275 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/cast.h +13 -2
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/detail/class.h +68 -62
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/detail/common.h +7 -5
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/detail/internals.h +180 -94
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/detail/type_caster_base.h +32 -36
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/embed.h +0 -3
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/gil.h +10 -38
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/numpy.h +3 -1
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/pybind11.h +106 -43
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/pytypes.h +31 -1
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/stl/filesystem.h +1 -2
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/typing.h +32 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/noxfile.py +30 -30
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/pybind11/__init__.py +4 -2
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/pybind11/__main__.py +1 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/pybind11/_version.py +2 -2
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/pybind11/commands.py +2 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/pybind11/setup_helpers.py +15 -15
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/pyproject.toml +6 -14
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/setup.cfg +1 -2
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/setup.py +7 -8
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/CMakeLists.txt +1 -1
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/conftest.py +2 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/cross_module_gil_utils.cpp +3 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/cross_module_interleaved_error_already_set.cpp +3 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/eigen_tensor_avoid_stl_array.cpp +3 -1
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/env.py +4 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/extra_python_package/test_files.py +3 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/extra_setuptools/test_setuphelper.py +2 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/pybind11_cross_module_tests.cpp +1 -1
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/pybind11_tests.cpp +4 -2
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/pybind11_tests.h +13 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/pytest.ini +1 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/requirements.txt +2 -4
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_async.py +2 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_buffers.py +2 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_builtin_casters.py +2 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_call_policies.cpp +1 -1
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_call_policies.py +2 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_callbacks.py +2 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_chrono.py +2 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_class.cpp +1 -1
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_class.py +6 -2
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_cmake_build/main.cpp +1 -1
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_cmake_build/test.py +2 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_const_name.py +2 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_constants_and_functions.py +2 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_copy_move.cpp +12 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_copy_move.py +8 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_custom_type_casters.py +2 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_custom_type_setup.py +2 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_docstring_options.py +2 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_eigen_matrix.py +2 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_eigen_tensor.py +2 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_embed/CMakeLists.txt +7 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_embed/external_module.cpp +1 -1
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_embed/test_interpreter.py +2 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_embed/test_trampoline.py +2 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_enum.py +1 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_eval.py +2 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_eval_call.py +1 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_exceptions.py +2 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_factory_constructors.py +2 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_gil_scoped.py +2 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_iostream.py +2 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_kwargs_and_defaults.cpp +5 -2
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_kwargs_and_defaults.py +5 -2
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_local_bindings.py +2 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_methods_and_attributes.py +2 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_modules.py +2 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_multiple_inheritance.py +2 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_numpy_array.py +3 -5
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_numpy_dtypes.cpp +1 -1
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_numpy_dtypes.py +2 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_numpy_vectorize.py +2 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_opaque_types.py +2 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_operator_overloading.py +2 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_pickling.py +2 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_python_multiple_inheritance.py +1 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_pytypes.cpp +24 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_pytypes.py +31 -1
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_sequences_and_iterators.py +2 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_smart_ptr.py +2 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_stl.cpp +1 -1
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_stl.py +2 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_stl_binders.py +2 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_tagbased_polymorphic.py +2 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_thread.cpp +1 -1
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_thread.py +2 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_type_caster_pyobject_ptr.cpp +39 -2
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_type_caster_pyobject_ptr.py +18 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_union.py +2 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_unnamed_namespace_a.py +2 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_unnamed_namespace_b.py +2 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_vector_unique_ptr_member.py +2 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_virtual_functions.py +2 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tools/FindPythonLibsNew.cmake +2 -2
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tools/codespell_ignore_lines_from_errors.py +3 -2
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tools/libsize.py +2 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tools/pybind11Common.cmake +11 -1
- pyhtml2md-1.6.1/python/pybind11/tools/pybind11GuessPythonExtSuffix.cmake +86 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tools/pybind11NewTools.cmake +90 -60
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tools/pybind11Tools.cmake +1 -1
- pyhtml2md-1.6.1/python/pybind11/tools/test-pybind11GuessPythonExtSuffix.cmake +161 -0
- pyhtml2md-1.6.1/tests/test_advanced.py +125 -0
- pyhtml2md-1.6.0/python/pybind11/.git +0 -1
- pyhtml2md-1.6.0/python/pybind11/.github/labeler.yml +0 -8
- pyhtml2md-1.6.0/python/pybind11/.github/labeler_merged.yml +0 -3
- pyhtml2md-1.6.0/python/pybind11/docs/Makefile +0 -192
- pyhtml2md-1.6.0/python/pybind11/docs/requirements.txt +0 -6
- pyhtml2md-1.6.0/tests/md4c/.git +0 -1
- pyhtml2md-1.6.0/tests/test_advanced.py +0 -11
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/.clang-format +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/.github/CODEOWNERS +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/.github/ISSUE_TEMPLATE/question.md +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/.github/dependabot.yml +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/.github/workflows/build.yml +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/.github/workflows/release.yml +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/.github/workflows/website.yml +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/.gitignore +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/.gitmodules +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/CHANGELOG.md +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/CONTRIBUTING.md +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/COPYING +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/MANIFEST.in +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/README.md +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/SECURITY.md +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/cli/main.cpp +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/cmake/Doc.cmake +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/cmake/Packaging.cmake +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/docs/Doxyfile +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/docs/doxygen-awesome-css/.gitignore +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/docs/doxygen-awesome-css/LICENSE +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/docs/doxygen-awesome-css/doxygen-awesome-darkmode-toggle.js +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/docs/doxygen-awesome-css/doxygen-awesome-fragment-copy-button.js +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/docs/doxygen-awesome-css/doxygen-awesome-interactive-toc.js +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/docs/doxygen-awesome-css/doxygen-awesome-paragraph-link.js +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/docs/doxygen-awesome-css/doxygen-awesome-sidebar-only-darkmode-toggle.css +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/docs/doxygen-awesome-css/doxygen-awesome-sidebar-only.css +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/docs/doxygen-awesome-css/doxygen-awesome.css +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/docs/doxygen-awesome-css/doxygen-custom/custom.css +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/docs/doxygen-awesome-css/doxygen-custom/header.html +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/docs/index.md +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/html2md.pc.in +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/html2mdConfig.cmake.in +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/include/html2md.h +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/include/table.h +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/js/bindings.cpp +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/README.md +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/.clang-format +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/.clang-tidy +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/.cmake-format.yaml +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/.codespell-ignore-lines +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/.gitattributes +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/.github/CODEOWNERS +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/.github/CONTRIBUTING.md +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/.github/ISSUE_TEMPLATE/bug-report.yml +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/.github/ISSUE_TEMPLATE/config.yml +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/.github/dependabot.yml +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/.github/matchers/pylint.json +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/.github/pull_request_template.md +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/.github/workflows/format.yml +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/.github/workflows/upstream.yml +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/.gitignore +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/.readthedocs.yml +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/LICENSE +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/MANIFEST.in +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/SECURITY.md +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/Doxyfile +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/_static/css/custom.css +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/advanced/cast/chrono.rst +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/advanced/cast/custom.rst +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/advanced/cast/eigen.rst +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/advanced/cast/functional.rst +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/advanced/cast/index.rst +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/advanced/cast/overview.rst +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/advanced/cast/stl.rst +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/advanced/cast/strings.rst +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/advanced/classes.rst +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/advanced/embedding.rst +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/advanced/exceptions.rst +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/advanced/functions.rst +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/advanced/misc.rst +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/advanced/pycpp/index.rst +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/advanced/pycpp/object.rst +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/advanced/pycpp/utilities.rst +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/advanced/smart_ptrs.rst +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/basics.rst +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/benchmark.rst +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/changelog.rst +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/classes.rst +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/cmake/index.rst +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/faq.rst +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/index.rst +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/installing.rst +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/limitations.rst +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/pybind11-logo.png +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/pybind11_vs_boost_python1.png +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/pybind11_vs_boost_python1.svg +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/pybind11_vs_boost_python2.png +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/pybind11_vs_boost_python2.svg +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/reference.rst +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/release.rst +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/docs/upgrade.rst +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/attr.h +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/buffer_info.h +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/chrono.h +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/common.h +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/complex.h +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/detail/descr.h +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/detail/init.h +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/detail/typeid.h +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/eigen/common.h +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/eigen/matrix.h +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/eigen/tensor.h +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/eigen.h +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/eval.h +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/functional.h +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/gil_safe_call_once.h +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/iostream.h +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/operators.h +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/options.h +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/stl.h +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/stl_bind.h +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/include/pybind11/type_caster_pyobject_ptr.h +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/pybind11/py.typed +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/constructor_stats.h +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/extra_python_package/pytest.ini +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/extra_setuptools/pytest.ini +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/local_bindings.h +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/object.h +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_async.cpp +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_buffers.cpp +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_builtin_casters.cpp +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_callbacks.cpp +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_chrono.cpp +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_cmake_build/CMakeLists.txt +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_cmake_build/embed.cpp +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_cmake_build/installed_embed/CMakeLists.txt +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_cmake_build/installed_function/CMakeLists.txt +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_cmake_build/installed_target/CMakeLists.txt +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_cmake_build/subdirectory_embed/CMakeLists.txt +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_cmake_build/subdirectory_function/CMakeLists.txt +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_cmake_build/subdirectory_target/CMakeLists.txt +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_const_name.cpp +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_constants_and_functions.cpp +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_custom_type_casters.cpp +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_custom_type_setup.cpp +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_docstring_options.cpp +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_eigen_matrix.cpp +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_eigen_tensor.cpp +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_eigen_tensor.inl +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_embed/catch.cpp +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_embed/test_interpreter.cpp +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_enum.cpp +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_eval.cpp +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_exceptions.cpp +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_exceptions.h +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_factory_constructors.cpp +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_gil_scoped.cpp +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_iostream.cpp +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_local_bindings.cpp +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_methods_and_attributes.cpp +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_modules.cpp +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_multiple_inheritance.cpp +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_numpy_array.cpp +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_numpy_vectorize.cpp +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_opaque_types.cpp +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_operator_overloading.cpp +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_pickling.cpp +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_python_multiple_inheritance.cpp +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_sequences_and_iterators.cpp +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_smart_ptr.cpp +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_stl_binders.cpp +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_tagbased_polymorphic.cpp +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_union.cpp +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_unnamed_namespace_a.cpp +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_unnamed_namespace_b.cpp +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_vector_unique_ptr_member.cpp +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/test_virtual_functions.cpp +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/valgrind-numpy-scipy.supp +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tests/valgrind-python.supp +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tools/FindCatch.cmake +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tools/FindEigen3.cmake +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tools/JoinPaths.cmake +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tools/check-style.sh +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tools/cmake_uninstall.cmake.in +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tools/make_changelog.py +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tools/pybind11.pc.in +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tools/pybind11Config.cmake.in +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tools/pyproject.toml +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tools/setup_global.py.in +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/python/pybind11/tools/setup_main.py.in +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/scripts/clang-format.sh +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/src/html2md.cpp +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/src/table.cpp +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/CMakeLists.txt +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/README.md +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/blockquote.md +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/breaks.md +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/code.md +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/comment.html +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/escaping.md +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/formating.md +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/links.md +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/lists.md +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/main.cpp +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/.gitignore +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/.travis.yml +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/CHANGELOG.md +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/CMakeLists.txt +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/LICENSE.md +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/README.md +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/appveyor.yml +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/codecov.yml +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/md2html/CMakeLists.txt +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/md2html/cmdline.c +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/md2html/cmdline.h +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/md2html/md2html.1 +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/md2html/md2html.c +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/scripts/build_folding_map.py +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/scripts/build_punct_map.py +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/scripts/build_symbol_map.py +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/scripts/build_whitespace_map.py +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/scripts/coverity.sh +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/scripts/run-tests.sh +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/scripts/unicode/CaseFolding.txt +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/scripts/unicode/DerivedGeneralCategory.txt +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/src/CMakeLists.txt +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/src/entity.c +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/src/entity.h +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/src/md4c-html.c +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/src/md4c-html.h +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/src/md4c-html.pc.in +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/src/md4c.c +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/src/md4c.h +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/src/md4c.pc.in +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/test/LICENSE +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/test/cmark.py +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/test/coverage.txt +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/test/fuzz-input/commonmark.md +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/test/fuzz-input/gfm.md +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/test/fuzz-input/latex-math.md +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/test/fuzz-input/wiki.md +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/test/fuzzers/fuzz-mdhtml.c +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/test/heading-auto-identifier.txt +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/test/latex-math.txt +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/test/normalize.py +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/test/pathological_auto_ident_tests.py +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/test/pathological_tests.py +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/test/permissive-email-autolinks.txt +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/test/permissive-url-autolinks.txt +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/test/permissive-www-autolinks.txt +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/test/spec.txt +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/test/spec_tests.py +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/test/strikethrough.txt +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/test/tables.txt +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/test/tasklists.txt +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/test/toc-mark.txt +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/test/toc.txt +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/test/underline.txt +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/md4c/test/wiki-links.txt +0 -0
- {pyhtml2md-1.6.0 → pyhtml2md-1.6.1}/tests/tables.md +0 -0
- {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.
|
|
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.
|
|
68
|
+
- uses: pypa/gh-action-pypi-publish@v1.9.0
|
|
69
69
|
with:
|
|
70
70
|
password: ${{ secrets.PYPI_API_TOKEN }}
|
|
71
71
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pyhtml2md
|
|
3
|
-
Version: 1.6.
|
|
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.
|
|
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 *>(),
|
|
@@ -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-
|
|
33
|
+
runs-on: [ubuntu-20.04, windows-2022, macos-13]
|
|
34
34
|
python:
|
|
35
|
-
- '3.
|
|
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.
|
|
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.
|
|
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.
|
|
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
|
-
|
|
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
|
|
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:
|
|
650
|
-
|
|
651
|
-
|
|
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 (
|
|
654
|
-
if: matrix.container
|
|
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.
|
|
782
|
-
- 3.
|
|
783
|
-
- 3.
|
|
784
|
-
- 3.
|
|
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.
|
|
812
|
+
- python: '3.12'
|
|
788
813
|
args: -DCMAKE_CXX_STANDARD=20
|
|
789
|
-
- python: 3.
|
|
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@
|
|
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-
|
|
1122
|
-
runs-on: macos-
|
|
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-
|
|
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-
|
|
40
|
+
- runs-on: macos-13
|
|
41
41
|
arch: x64
|
|
42
42
|
cmake: "3.7"
|
|
43
43
|
|
|
@@ -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.
|
|
25
|
-
# challenging matrix element.
|
|
24
|
+
# expected.
|
|
26
25
|
test-packaging:
|
|
27
|
-
name: 🐍 3.
|
|
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.
|
|
32
|
+
- name: Setup 🐍 3.8
|
|
34
33
|
uses: actions/setup-python@v5
|
|
35
34
|
with:
|
|
36
|
-
python-version: 3.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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/
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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).
|