libonvif 3.2.3__tar.gz → 3.2.5__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.
- {libonvif-3.2.3 → libonvif-3.2.5}/CMakeLists.txt +1 -1
- {libonvif-3.2.3/libonvif.egg-info → libonvif-3.2.5}/PKG-INFO +4 -2
- {libonvif-3.2.3 → libonvif-3.2.5}/include/onvif.h +1 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/include/onvif_data.h +9 -5
- {libonvif-3.2.3 → libonvif-3.2.5}/include/session.h +7 -4
- {libonvif-3.2.3 → libonvif-3.2.5/libonvif.egg-info}/PKG-INFO +4 -2
- {libonvif-3.2.3 → libonvif-3.2.5}/libonvif.egg-info/SOURCES.txt +32 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/.appveyor.yml +1 -1
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/.clang-tidy +2 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/.github/CONTRIBUTING.md +6 -6
- libonvif-3.2.5/pybind11/.github/dependabot.yml +15 -0
- libonvif-3.2.5/pybind11/.github/labeler.yml +13 -0
- libonvif-3.2.5/pybind11/.github/labeler_merged.yml +8 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/.github/workflows/ci.yml +211 -122
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/.github/workflows/configure.yml +17 -12
- libonvif-3.2.5/pybind11/.github/workflows/emscripten.yaml +30 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/.github/workflows/format.yml +5 -5
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/.github/workflows/labeler.yml +1 -1
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/.github/workflows/pip.yml +27 -20
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/.github/workflows/upstream.yml +18 -16
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/.pre-commit-config.yaml +62 -55
- libonvif-3.2.5/pybind11/.readthedocs.yml +20 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/CMakeLists.txt +71 -47
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/MANIFEST.in +1 -1
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/README.rst +8 -7
- libonvif-3.2.5/pybind11/SECURITY.md +13 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/docs/advanced/cast/eigen.rst +1 -1
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/docs/advanced/cast/stl.rst +3 -3
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/docs/advanced/classes.rst +1 -2
- libonvif-3.2.5/pybind11/docs/advanced/deadlock.md +391 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/docs/advanced/embedding.rst +1 -1
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/docs/advanced/exceptions.rst +12 -13
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/docs/advanced/functions.rst +1 -1
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/docs/advanced/misc.rst +37 -1
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/docs/advanced/pycpp/numpy.rst +0 -2
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/docs/advanced/smart_ptrs.rst +3 -3
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/docs/basics.rst +7 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/docs/benchmark.py +3 -1
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/docs/changelog.rst +515 -8
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/docs/classes.rst +4 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/docs/compiling.rst +178 -88
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/docs/conf.py +2 -1
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/docs/faq.rst +52 -7
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/docs/limitations.rst +0 -4
- libonvif-3.2.5/pybind11/docs/release.rst +143 -0
- libonvif-3.2.5/pybind11/docs/requirements.in +6 -0
- libonvif-3.2.5/pybind11/docs/requirements.txt +275 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/docs/upgrade.rst +43 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/include/pybind11/buffer_info.h +30 -15
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/include/pybind11/cast.h +187 -19
- libonvif-3.2.5/pybind11/include/pybind11/conduit/README.txt +15 -0
- libonvif-3.2.5/pybind11/include/pybind11/conduit/pybind11_conduit_v1.h +111 -0
- libonvif-3.2.5/pybind11/include/pybind11/conduit/pybind11_platform_abi_id.h +88 -0
- libonvif-3.2.5/pybind11/include/pybind11/conduit/wrap_include_python_h.h +72 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/include/pybind11/detail/class.h +154 -97
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/include/pybind11/detail/common.h +81 -78
- libonvif-3.2.5/pybind11/include/pybind11/detail/cpp_conduit.h +77 -0
- libonvif-3.2.5/pybind11/include/pybind11/detail/exception_translation.h +71 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/include/pybind11/detail/init.h +6 -4
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/include/pybind11/detail/internals.h +223 -154
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/include/pybind11/detail/type_caster_base.h +129 -118
- libonvif-3.2.5/pybind11/include/pybind11/detail/value_and_holder.h +77 -0
- libonvif-3.2.5/pybind11/include/pybind11/eigen/common.h +9 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/include/pybind11/eigen/matrix.h +15 -1
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/include/pybind11/eigen/tensor.h +13 -9
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/include/pybind11/embed.h +1 -14
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/include/pybind11/eval.h +5 -5
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/include/pybind11/functional.h +47 -35
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/include/pybind11/gil.h +20 -44
- libonvif-3.2.5/pybind11/include/pybind11/gil_safe_call_once.h +102 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/include/pybind11/numpy.h +178 -31
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/include/pybind11/pybind11.h +282 -151
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/include/pybind11/pytypes.h +182 -41
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/include/pybind11/stl/filesystem.h +17 -9
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/include/pybind11/stl.h +255 -54
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/include/pybind11/stl_bind.h +68 -61
- libonvif-3.2.5/pybind11/include/pybind11/typing.h +242 -0
- libonvif-3.2.5/pybind11/include/pybind11/warnings.h +75 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/noxfile.py +31 -31
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/pybind11/__init__.py +4 -2
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/pybind11/__main__.py +27 -3
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/pybind11/_version.py +3 -3
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/pybind11/commands.py +2 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/pybind11/setup_helpers.py +23 -21
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/pyproject.toml +23 -32
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/setup.cfg +3 -3
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/setup.py +8 -9
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/CMakeLists.txt +48 -40
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/conftest.py +10 -6
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/constructor_stats.h +1 -1
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/cross_module_gil_utils.cpp +3 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/cross_module_interleaved_error_already_set.cpp +5 -2
- libonvif-3.2.5/pybind11/tests/custom_exceptions.py +10 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/eigen_tensor_avoid_stl_array.cpp +3 -1
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/env.py +5 -0
- libonvif-3.2.5/pybind11/tests/exo_planet_c_api.cpp +76 -0
- libonvif-3.2.5/pybind11/tests/exo_planet_pybind11.cpp +19 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/extra_python_package/test_files.py +20 -2
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/extra_setuptools/test_setuphelper.py +2 -0
- libonvif-3.2.5/pybind11/tests/home_planet_very_lonely_traveler.cpp +13 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/local_bindings.h +8 -8
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/pybind11_cross_module_tests.cpp +5 -5
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/pybind11_tests.cpp +18 -5
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/pybind11_tests.h +34 -0
- libonvif-3.2.5/pybind11/tests/pyproject.toml +17 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/pytest.ini +1 -0
- libonvif-3.2.5/pybind11/tests/requirements.txt +13 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_async.py +8 -1
- libonvif-3.2.5/pybind11/tests/test_buffers.cpp +442 -0
- libonvif-3.2.5/pybind11/tests/test_buffers.py +401 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_builtin_casters.cpp +9 -14
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_builtin_casters.py +7 -3
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_call_policies.cpp +4 -6
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_call_policies.py +9 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_callbacks.cpp +2 -2
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_callbacks.py +14 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_chrono.py +2 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_class.cpp +19 -4
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_class.py +57 -3
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_cmake_build/CMakeLists.txt +12 -10
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_cmake_build/installed_embed/CMakeLists.txt +1 -10
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_cmake_build/installed_function/CMakeLists.txt +1 -11
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_cmake_build/installed_target/CMakeLists.txt +1 -10
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_cmake_build/main.cpp +1 -1
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_cmake_build/subdirectory_embed/CMakeLists.txt +7 -10
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_cmake_build/subdirectory_function/CMakeLists.txt +7 -10
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_cmake_build/subdirectory_target/CMakeLists.txt +7 -10
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_cmake_build/test.py +2 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_const_name.py +2 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_constants_and_functions.cpp +4 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_constants_and_functions.py +2 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_copy_move.cpp +13 -2
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_copy_move.py +12 -0
- libonvif-3.2.5/pybind11/tests/test_cpp_conduit.cpp +22 -0
- libonvif-3.2.5/pybind11/tests/test_cpp_conduit.py +166 -0
- libonvif-3.2.5/pybind11/tests/test_cpp_conduit_traveler_bindings.h +47 -0
- libonvif-3.2.5/pybind11/tests/test_cpp_conduit_traveler_types.h +25 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_custom_type_casters.cpp +16 -8
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_custom_type_casters.py +4 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_custom_type_setup.py +5 -3
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_docstring_options.cpp +15 -27
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_docstring_options.py +2 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_eigen_matrix.cpp +17 -2
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_eigen_matrix.py +13 -1
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_eigen_tensor.inl +12 -7
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_eigen_tensor.py +5 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_embed/CMakeLists.txt +12 -3
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_embed/external_module.cpp +1 -1
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_embed/test_interpreter.py +2 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_embed/test_trampoline.py +2 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_enum.py +70 -3
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_eval.py +3 -1
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_eval_call.py +1 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_exceptions.cpp +93 -13
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_exceptions.h +1 -1
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_exceptions.py +72 -27
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_factory_constructors.py +17 -2
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_gil_scoped.py +27 -4
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_iostream.py +21 -9
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_kwargs_and_defaults.cpp +58 -8
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_kwargs_and_defaults.py +55 -3
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_local_bindings.py +2 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_methods_and_attributes.cpp +2 -3
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_methods_and_attributes.py +35 -16
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_modules.cpp +6 -6
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_modules.py +7 -2
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_multiple_inheritance.py +17 -9
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_numpy_array.cpp +33 -12
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_numpy_array.py +86 -10
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_numpy_dtypes.cpp +32 -5
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_numpy_dtypes.py +14 -6
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_numpy_vectorize.py +2 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_opaque_types.cpp +2 -2
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_opaque_types.py +6 -1
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_operator_overloading.py +8 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_pickling.py +20 -1
- libonvif-3.2.5/pybind11/tests/test_python_multiple_inheritance.cpp +45 -0
- libonvif-3.2.5/pybind11/tests/test_python_multiple_inheritance.py +36 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_pytypes.cpp +190 -3
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_pytypes.py +222 -4
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_sequences_and_iterators.cpp +21 -2
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_sequences_and_iterators.py +54 -10
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_smart_ptr.cpp +24 -18
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_smart_ptr.py +14 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_stl.cpp +56 -7
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_stl.py +152 -12
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_stl_binders.cpp +82 -3
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_stl_binders.py +65 -6
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_tagbased_polymorphic.cpp +2 -1
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_tagbased_polymorphic.py +2 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_thread.cpp +1 -1
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_thread.py +7 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_type_caster_pyobject_ptr.cpp +42 -4
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_type_caster_pyobject_ptr.py +18 -0
- libonvif-3.2.5/pybind11/tests/test_type_caster_std_function_specializations.cpp +46 -0
- libonvif-3.2.5/pybind11/tests/test_type_caster_std_function_specializations.py +15 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_union.py +2 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_unnamed_namespace_a.py +2 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_unnamed_namespace_b.py +2 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_vector_unique_ptr_member.py +2 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_virtual_functions.cpp +1 -1
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_virtual_functions.py +12 -2
- libonvif-3.2.5/pybind11/tests/test_warnings.cpp +46 -0
- libonvif-3.2.5/pybind11/tests/test_warnings.py +68 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tools/FindPythonLibsNew.cmake +26 -3
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tools/codespell_ignore_lines_from_errors.py +3 -2
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tools/libsize.py +2 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tools/make_changelog.py +31 -1
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tools/pybind11Common.cmake +87 -68
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tools/pybind11Config.cmake.in +5 -3
- libonvif-3.2.5/pybind11/tools/pybind11GuessPythonExtSuffix.cmake +86 -0
- libonvif-3.2.5/pybind11/tools/pybind11NewTools.cmake +332 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tools/pybind11Tools.cmake +26 -43
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tools/setup_global.py.in +4 -1
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tools/setup_main.py.in +2 -0
- libonvif-3.2.5/pybind11/tools/test-pybind11GuessPythonExtSuffix.cmake +161 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pyproject.toml +1 -1
- {libonvif-3.2.3 → libonvif-3.2.5}/setup.py +1 -1
- {libonvif-3.2.3 → libonvif-3.2.5}/src/onvif.c +61 -28
- {libonvif-3.2.3 → libonvif-3.2.5}/src/onvif.cpp +2 -1
- libonvif-3.2.3/pybind11/.github/dependabot.yml +0 -7
- libonvif-3.2.3/pybind11/.github/labeler.yml +0 -8
- libonvif-3.2.3/pybind11/.github/labeler_merged.yml +0 -3
- libonvif-3.2.3/pybind11/.readthedocs.yml +0 -3
- libonvif-3.2.3/pybind11/docs/release.rst +0 -97
- libonvif-3.2.3/pybind11/docs/requirements.txt +0 -6
- libonvif-3.2.3/pybind11/tests/requirements.txt +0 -9
- libonvif-3.2.3/pybind11/tests/test_buffers.cpp +0 -224
- libonvif-3.2.3/pybind11/tests/test_buffers.py +0 -164
- libonvif-3.2.3/pybind11/tools/pybind11NewTools.cmake +0 -256
- {libonvif-3.2.3 → libonvif-3.2.5}/LICENSE +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/MANIFEST.in +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/README.md +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/include/cencode.h +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/include/getopt-win.h +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/include/rapidjson/allocators.h +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/include/rapidjson/cursorstreamwrapper.h +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/include/rapidjson/document.h +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/include/rapidjson/encodedstream.h +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/include/rapidjson/encodings.h +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/include/rapidjson/error/en.h +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/include/rapidjson/error/error.h +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/include/rapidjson/filereadstream.h +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/include/rapidjson/filewritestream.h +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/include/rapidjson/fwd.h +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/include/rapidjson/internal/biginteger.h +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/include/rapidjson/internal/clzll.h +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/include/rapidjson/internal/diyfp.h +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/include/rapidjson/internal/dtoa.h +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/include/rapidjson/internal/ieee754.h +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/include/rapidjson/internal/itoa.h +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/include/rapidjson/internal/meta.h +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/include/rapidjson/internal/pow10.h +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/include/rapidjson/internal/regex.h +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/include/rapidjson/internal/stack.h +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/include/rapidjson/internal/strfunc.h +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/include/rapidjson/internal/strtod.h +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/include/rapidjson/internal/swap.h +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/include/rapidjson/istreamwrapper.h +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/include/rapidjson/memorybuffer.h +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/include/rapidjson/memorystream.h +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/include/rapidjson/msinttypes/inttypes.h +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/include/rapidjson/msinttypes/stdint.h +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/include/rapidjson/ostreamwrapper.h +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/include/rapidjson/pointer.h +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/include/rapidjson/prettywriter.h +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/include/rapidjson/rapidjson.h +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/include/rapidjson/reader.h +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/include/rapidjson/schema.h +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/include/rapidjson/stream.h +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/include/rapidjson/stringbuffer.h +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/include/rapidjson/uri.h +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/include/rapidjson/writer.h +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/include/sha1.h +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/libonvif/__init__.py +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/libonvif/libxml2.dll +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/libonvif/msvcp140.dll +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/libonvif/vcruntime140.dll +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/libonvif.egg-info/dependency_links.txt +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/libonvif.egg-info/not-zip-safe +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/libonvif.egg-info/top_level.txt +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/.clang-format +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/.cmake-format.yaml +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/.codespell-ignore-lines +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/.git +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/.gitattributes +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/.github/CODEOWNERS +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/.github/ISSUE_TEMPLATE/bug-report.yml +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/.github/ISSUE_TEMPLATE/config.yml +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/.github/matchers/pylint.json +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/.github/pull_request_template.md +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/.gitignore +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/LICENSE +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/docs/Doxyfile +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/docs/Makefile +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/docs/_static/css/custom.css +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/docs/advanced/cast/chrono.rst +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/docs/advanced/cast/custom.rst +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/docs/advanced/cast/functional.rst +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/docs/advanced/cast/index.rst +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/docs/advanced/cast/overview.rst +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/docs/advanced/cast/strings.rst +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/docs/advanced/pycpp/index.rst +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/docs/advanced/pycpp/object.rst +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/docs/advanced/pycpp/utilities.rst +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/docs/benchmark.rst +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/docs/cmake/index.rst +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/docs/index.rst +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/docs/installing.rst +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/docs/pybind11-logo.png +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/docs/pybind11_vs_boost_python1.png +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/docs/pybind11_vs_boost_python1.svg +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/docs/pybind11_vs_boost_python2.png +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/docs/pybind11_vs_boost_python2.svg +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/docs/reference.rst +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/include/pybind11/attr.h +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/include/pybind11/chrono.h +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/include/pybind11/common.h +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/include/pybind11/complex.h +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/include/pybind11/detail/descr.h +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/include/pybind11/detail/typeid.h +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/include/pybind11/eigen.h +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/include/pybind11/iostream.h +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/include/pybind11/operators.h +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/include/pybind11/options.h +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/include/pybind11/type_caster_pyobject_ptr.h +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/pybind11/py.typed +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/extra_python_package/pytest.ini +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/extra_setuptools/pytest.ini +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/object.h +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_async.cpp +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_chrono.cpp +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_cmake_build/embed.cpp +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_const_name.cpp +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_custom_type_setup.cpp +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_eigen_tensor.cpp +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_embed/catch.cpp +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_embed/test_interpreter.cpp +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_enum.cpp +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_eval.cpp +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_factory_constructors.cpp +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_gil_scoped.cpp +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_iostream.cpp +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_local_bindings.cpp +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_multiple_inheritance.cpp +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_numpy_vectorize.cpp +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_operator_overloading.cpp +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_pickling.cpp +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_union.cpp +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_unnamed_namespace_a.cpp +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_unnamed_namespace_b.cpp +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/test_vector_unique_ptr_member.cpp +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/valgrind-numpy-scipy.supp +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tests/valgrind-python.supp +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tools/FindCatch.cmake +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tools/FindEigen3.cmake +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tools/JoinPaths.cmake +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tools/check-style.sh +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tools/cmake_uninstall.cmake.in +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tools/pybind11.pc.in +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/pybind11/tools/pyproject.toml +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/setup.cfg +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/src/cencode.c +0 -0
- {libonvif-3.2.3 → libonvif-3.2.5}/src/sha1.c +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: libonvif
|
|
3
|
-
Version: 3.2.
|
|
3
|
+
Version: 3.2.5
|
|
4
4
|
Summary: A python module for communicating with onvif cameras
|
|
5
5
|
Author: Stephen Rhodes
|
|
6
6
|
Author-email: Stephen Rhodes <sr99622@gmail.com>
|
|
@@ -12,6 +12,8 @@ Classifier: Operating System :: OS Independent
|
|
|
12
12
|
Requires-Python: >=3.10
|
|
13
13
|
Description-Content-Type: text/markdown
|
|
14
14
|
License-File: LICENSE
|
|
15
|
+
Dynamic: author
|
|
16
|
+
Dynamic: requires-python
|
|
15
17
|
|
|
16
18
|
# libonvif
|
|
17
19
|
|
|
@@ -164,6 +164,7 @@ struct OnvifSession {
|
|
|
164
164
|
int discovery_msg_id;
|
|
165
165
|
char preferred_network_address[16];
|
|
166
166
|
char active_network_interfaces[16][1024];
|
|
167
|
+
char primary_network_interface[1024];
|
|
167
168
|
};
|
|
168
169
|
|
|
169
170
|
LIBRARY_API void initializeSession(struct OnvifSession *onvif_session);
|
|
@@ -537,13 +537,13 @@ public:
|
|
|
537
537
|
void manual_fill()
|
|
538
538
|
{
|
|
539
539
|
extractHost(data->xaddrs, data->host);
|
|
540
|
+
|
|
540
541
|
if (getTimeOffset(data)) {
|
|
541
542
|
std::stringstream str;
|
|
542
543
|
str << "Camera get time offset error " << camera_name() << " : " << xaddrs() << " : " << last_error();
|
|
543
|
-
if (
|
|
544
|
-
return;
|
|
544
|
+
if (infoCallback) infoCallback(str.str());
|
|
545
545
|
}
|
|
546
|
-
|
|
546
|
+
|
|
547
547
|
time_t initial_offset = data->time_offset;
|
|
548
548
|
int count = 1;
|
|
549
549
|
int direction = 1;
|
|
@@ -583,6 +583,12 @@ public:
|
|
|
583
583
|
index++;
|
|
584
584
|
}
|
|
585
585
|
|
|
586
|
+
if (getSetting) {
|
|
587
|
+
std::stringstream key2;
|
|
588
|
+
key2 << serial_number() << "/Alias";
|
|
589
|
+
alias = getSetting(key2.str(), host());
|
|
590
|
+
}
|
|
591
|
+
|
|
586
592
|
if (setSetting) {
|
|
587
593
|
std::stringstream key1;
|
|
588
594
|
key1 << serial_number() << "/XAddrs";
|
|
@@ -673,8 +679,6 @@ public:
|
|
|
673
679
|
bool dst() { return data->dst; } const
|
|
674
680
|
void noOp() { } // believe it or not, this line is needed to compile on windows
|
|
675
681
|
void setDST(bool arg) { data->dst = arg; }
|
|
676
|
-
//time_t user_time_diff() { return data->user_time_diff; } const
|
|
677
|
-
//void setUserTimeDiff(time_t arg) { data->user_time_diff = arg; }
|
|
678
682
|
|
|
679
683
|
std::string host() {
|
|
680
684
|
extractHost(data->xaddrs, data->host);
|
|
@@ -38,7 +38,6 @@ public:
|
|
|
38
38
|
{
|
|
39
39
|
session = (OnvifSession*)calloc(sizeof(OnvifSession), 1);
|
|
40
40
|
initializeSession(session);
|
|
41
|
-
//srand(time(NULL));
|
|
42
41
|
}
|
|
43
42
|
|
|
44
43
|
~Session()
|
|
@@ -82,12 +81,16 @@ public:
|
|
|
82
81
|
}
|
|
83
82
|
|
|
84
83
|
std::stringstream str;
|
|
85
|
-
str << " ONVIF
|
|
84
|
+
str << " ONVIF Discovery found " << devices.size() << " unique devices on network: " << interface;
|
|
86
85
|
if (infoCallback) infoCallback(str.str());
|
|
87
86
|
|
|
88
87
|
for (int i = 0; i < devices.size(); i++) {
|
|
89
88
|
Data data = devices[i];
|
|
90
|
-
getTimeOffset(data)
|
|
89
|
+
if (getTimeOffset(data)) {
|
|
90
|
+
std::stringstream str;
|
|
91
|
+
str << "Camera get time offset error " << data.camera_name() << " : " << data.xaddrs() << " : " << data.last_error();
|
|
92
|
+
if (infoCallback) infoCallback(str.str());
|
|
93
|
+
}
|
|
91
94
|
time_t initial_offset = data->time_offset;
|
|
92
95
|
int count = 1;
|
|
93
96
|
int direction = 1;
|
|
@@ -133,7 +136,6 @@ public:
|
|
|
133
136
|
std::stringstream str;
|
|
134
137
|
str << "get device information failed: " << data->camera_name << " : " << data->last_error;
|
|
135
138
|
infoCallback(str.str());
|
|
136
|
-
//break;
|
|
137
139
|
}
|
|
138
140
|
}
|
|
139
141
|
else {
|
|
@@ -150,6 +152,7 @@ public:
|
|
|
150
152
|
}
|
|
151
153
|
|
|
152
154
|
std::string active_interface(int arg) { return session->active_network_interfaces[arg]; }
|
|
155
|
+
std::string primary_network_interface() { return session->primary_network_interface; }
|
|
153
156
|
|
|
154
157
|
std::function<void()> discovered = nullptr;
|
|
155
158
|
std::function<Data(Data&)> getCredential = nullptr;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: libonvif
|
|
3
|
-
Version: 3.2.
|
|
3
|
+
Version: 3.2.5
|
|
4
4
|
Summary: A python module for communicating with onvif cameras
|
|
5
5
|
Author: Stephen Rhodes
|
|
6
6
|
Author-email: Stephen Rhodes <sr99622@gmail.com>
|
|
@@ -12,6 +12,8 @@ Classifier: Operating System :: OS Independent
|
|
|
12
12
|
Requires-Python: >=3.10
|
|
13
13
|
Description-Content-Type: text/markdown
|
|
14
14
|
License-File: LICENSE
|
|
15
|
+
Dynamic: author
|
|
16
|
+
Dynamic: requires-python
|
|
15
17
|
|
|
16
18
|
# libonvif
|
|
17
19
|
|
|
@@ -71,6 +71,7 @@ pybind11/CMakeLists.txt
|
|
|
71
71
|
pybind11/LICENSE
|
|
72
72
|
pybind11/MANIFEST.in
|
|
73
73
|
pybind11/README.rst
|
|
74
|
+
pybind11/SECURITY.md
|
|
74
75
|
pybind11/noxfile.py
|
|
75
76
|
pybind11/pyproject.toml
|
|
76
77
|
pybind11/setup.cfg
|
|
@@ -86,6 +87,7 @@ pybind11/.github/ISSUE_TEMPLATE/config.yml
|
|
|
86
87
|
pybind11/.github/matchers/pylint.json
|
|
87
88
|
pybind11/.github/workflows/ci.yml
|
|
88
89
|
pybind11/.github/workflows/configure.yml
|
|
90
|
+
pybind11/.github/workflows/emscripten.yaml
|
|
89
91
|
pybind11/.github/workflows/format.yml
|
|
90
92
|
pybind11/.github/workflows/labeler.yml
|
|
91
93
|
pybind11/.github/workflows/pip.yml
|
|
@@ -110,10 +112,12 @@ pybind11/docs/pybind11_vs_boost_python2.png
|
|
|
110
112
|
pybind11/docs/pybind11_vs_boost_python2.svg
|
|
111
113
|
pybind11/docs/reference.rst
|
|
112
114
|
pybind11/docs/release.rst
|
|
115
|
+
pybind11/docs/requirements.in
|
|
113
116
|
pybind11/docs/requirements.txt
|
|
114
117
|
pybind11/docs/upgrade.rst
|
|
115
118
|
pybind11/docs/_static/css/custom.css
|
|
116
119
|
pybind11/docs/advanced/classes.rst
|
|
120
|
+
pybind11/docs/advanced/deadlock.md
|
|
117
121
|
pybind11/docs/advanced/embedding.rst
|
|
118
122
|
pybind11/docs/advanced/exceptions.rst
|
|
119
123
|
pybind11/docs/advanced/functions.rst
|
|
@@ -143,6 +147,7 @@ pybind11/include/pybind11/embed.h
|
|
|
143
147
|
pybind11/include/pybind11/eval.h
|
|
144
148
|
pybind11/include/pybind11/functional.h
|
|
145
149
|
pybind11/include/pybind11/gil.h
|
|
150
|
+
pybind11/include/pybind11/gil_safe_call_once.h
|
|
146
151
|
pybind11/include/pybind11/iostream.h
|
|
147
152
|
pybind11/include/pybind11/numpy.h
|
|
148
153
|
pybind11/include/pybind11/operators.h
|
|
@@ -152,13 +157,23 @@ pybind11/include/pybind11/pytypes.h
|
|
|
152
157
|
pybind11/include/pybind11/stl.h
|
|
153
158
|
pybind11/include/pybind11/stl_bind.h
|
|
154
159
|
pybind11/include/pybind11/type_caster_pyobject_ptr.h
|
|
160
|
+
pybind11/include/pybind11/typing.h
|
|
161
|
+
pybind11/include/pybind11/warnings.h
|
|
162
|
+
pybind11/include/pybind11/conduit/README.txt
|
|
163
|
+
pybind11/include/pybind11/conduit/pybind11_conduit_v1.h
|
|
164
|
+
pybind11/include/pybind11/conduit/pybind11_platform_abi_id.h
|
|
165
|
+
pybind11/include/pybind11/conduit/wrap_include_python_h.h
|
|
155
166
|
pybind11/include/pybind11/detail/class.h
|
|
156
167
|
pybind11/include/pybind11/detail/common.h
|
|
168
|
+
pybind11/include/pybind11/detail/cpp_conduit.h
|
|
157
169
|
pybind11/include/pybind11/detail/descr.h
|
|
170
|
+
pybind11/include/pybind11/detail/exception_translation.h
|
|
158
171
|
pybind11/include/pybind11/detail/init.h
|
|
159
172
|
pybind11/include/pybind11/detail/internals.h
|
|
160
173
|
pybind11/include/pybind11/detail/type_caster_base.h
|
|
161
174
|
pybind11/include/pybind11/detail/typeid.h
|
|
175
|
+
pybind11/include/pybind11/detail/value_and_holder.h
|
|
176
|
+
pybind11/include/pybind11/eigen/common.h
|
|
162
177
|
pybind11/include/pybind11/eigen/matrix.h
|
|
163
178
|
pybind11/include/pybind11/eigen/tensor.h
|
|
164
179
|
pybind11/include/pybind11/stl/filesystem.h
|
|
@@ -173,13 +188,18 @@ pybind11/tests/conftest.py
|
|
|
173
188
|
pybind11/tests/constructor_stats.h
|
|
174
189
|
pybind11/tests/cross_module_gil_utils.cpp
|
|
175
190
|
pybind11/tests/cross_module_interleaved_error_already_set.cpp
|
|
191
|
+
pybind11/tests/custom_exceptions.py
|
|
176
192
|
pybind11/tests/eigen_tensor_avoid_stl_array.cpp
|
|
177
193
|
pybind11/tests/env.py
|
|
194
|
+
pybind11/tests/exo_planet_c_api.cpp
|
|
195
|
+
pybind11/tests/exo_planet_pybind11.cpp
|
|
196
|
+
pybind11/tests/home_planet_very_lonely_traveler.cpp
|
|
178
197
|
pybind11/tests/local_bindings.h
|
|
179
198
|
pybind11/tests/object.h
|
|
180
199
|
pybind11/tests/pybind11_cross_module_tests.cpp
|
|
181
200
|
pybind11/tests/pybind11_tests.cpp
|
|
182
201
|
pybind11/tests/pybind11_tests.h
|
|
202
|
+
pybind11/tests/pyproject.toml
|
|
183
203
|
pybind11/tests/pytest.ini
|
|
184
204
|
pybind11/tests/requirements.txt
|
|
185
205
|
pybind11/tests/test_async.cpp
|
|
@@ -202,6 +222,10 @@ pybind11/tests/test_constants_and_functions.cpp
|
|
|
202
222
|
pybind11/tests/test_constants_and_functions.py
|
|
203
223
|
pybind11/tests/test_copy_move.cpp
|
|
204
224
|
pybind11/tests/test_copy_move.py
|
|
225
|
+
pybind11/tests/test_cpp_conduit.cpp
|
|
226
|
+
pybind11/tests/test_cpp_conduit.py
|
|
227
|
+
pybind11/tests/test_cpp_conduit_traveler_bindings.h
|
|
228
|
+
pybind11/tests/test_cpp_conduit_traveler_types.h
|
|
205
229
|
pybind11/tests/test_custom_type_casters.cpp
|
|
206
230
|
pybind11/tests/test_custom_type_casters.py
|
|
207
231
|
pybind11/tests/test_custom_type_setup.cpp
|
|
@@ -249,6 +273,8 @@ pybind11/tests/test_operator_overloading.cpp
|
|
|
249
273
|
pybind11/tests/test_operator_overloading.py
|
|
250
274
|
pybind11/tests/test_pickling.cpp
|
|
251
275
|
pybind11/tests/test_pickling.py
|
|
276
|
+
pybind11/tests/test_python_multiple_inheritance.cpp
|
|
277
|
+
pybind11/tests/test_python_multiple_inheritance.py
|
|
252
278
|
pybind11/tests/test_pytypes.cpp
|
|
253
279
|
pybind11/tests/test_pytypes.py
|
|
254
280
|
pybind11/tests/test_sequences_and_iterators.cpp
|
|
@@ -265,6 +291,8 @@ pybind11/tests/test_thread.cpp
|
|
|
265
291
|
pybind11/tests/test_thread.py
|
|
266
292
|
pybind11/tests/test_type_caster_pyobject_ptr.cpp
|
|
267
293
|
pybind11/tests/test_type_caster_pyobject_ptr.py
|
|
294
|
+
pybind11/tests/test_type_caster_std_function_specializations.cpp
|
|
295
|
+
pybind11/tests/test_type_caster_std_function_specializations.py
|
|
268
296
|
pybind11/tests/test_union.cpp
|
|
269
297
|
pybind11/tests/test_union.py
|
|
270
298
|
pybind11/tests/test_unnamed_namespace_a.cpp
|
|
@@ -275,6 +303,8 @@ pybind11/tests/test_vector_unique_ptr_member.cpp
|
|
|
275
303
|
pybind11/tests/test_vector_unique_ptr_member.py
|
|
276
304
|
pybind11/tests/test_virtual_functions.cpp
|
|
277
305
|
pybind11/tests/test_virtual_functions.py
|
|
306
|
+
pybind11/tests/test_warnings.cpp
|
|
307
|
+
pybind11/tests/test_warnings.py
|
|
278
308
|
pybind11/tests/valgrind-numpy-scipy.supp
|
|
279
309
|
pybind11/tests/valgrind-python.supp
|
|
280
310
|
pybind11/tests/extra_python_package/pytest.ini
|
|
@@ -309,11 +339,13 @@ pybind11/tools/make_changelog.py
|
|
|
309
339
|
pybind11/tools/pybind11.pc.in
|
|
310
340
|
pybind11/tools/pybind11Common.cmake
|
|
311
341
|
pybind11/tools/pybind11Config.cmake.in
|
|
342
|
+
pybind11/tools/pybind11GuessPythonExtSuffix.cmake
|
|
312
343
|
pybind11/tools/pybind11NewTools.cmake
|
|
313
344
|
pybind11/tools/pybind11Tools.cmake
|
|
314
345
|
pybind11/tools/pyproject.toml
|
|
315
346
|
pybind11/tools/setup_global.py.in
|
|
316
347
|
pybind11/tools/setup_main.py.in
|
|
348
|
+
pybind11/tools/test-pybind11GuessPythonExtSuffix.cmake
|
|
317
349
|
src/cencode.c
|
|
318
350
|
src/onvif.c
|
|
319
351
|
src/onvif.cpp
|
|
@@ -57,10 +57,12 @@ Checks: |
|
|
|
57
57
|
readability-string-compare,
|
|
58
58
|
readability-suspicious-call-argument,
|
|
59
59
|
readability-uniqueptr-delete-release,
|
|
60
|
+
-bugprone-chained-comparison,
|
|
60
61
|
-bugprone-easily-swappable-parameters,
|
|
61
62
|
-bugprone-exception-escape,
|
|
62
63
|
-bugprone-reserved-identifier,
|
|
63
64
|
-bugprone-unused-raii,
|
|
65
|
+
-performance-enum-size,
|
|
64
66
|
|
|
65
67
|
CheckOptions:
|
|
66
68
|
- key: modernize-use-equals-default.IgnoreMacros
|
|
@@ -81,7 +81,7 @@ nox -s build
|
|
|
81
81
|
### Full setup
|
|
82
82
|
|
|
83
83
|
To setup an ideal development environment, run the following commands on a
|
|
84
|
-
system with CMake 3.
|
|
84
|
+
system with CMake 3.15+:
|
|
85
85
|
|
|
86
86
|
```bash
|
|
87
87
|
python3 -m venv venv
|
|
@@ -96,8 +96,8 @@ Tips:
|
|
|
96
96
|
* You can use `virtualenv` (faster, from PyPI) instead of `venv`.
|
|
97
97
|
* You can select any name for your environment folder; if it contains "env" it
|
|
98
98
|
will be ignored by git.
|
|
99
|
-
* If you don't have CMake 3.
|
|
100
|
-
* You can use `-DPYBIND11_FINDPYTHON=ON` to use FindPython
|
|
99
|
+
* If you don't have CMake 3.15+, just add "cmake" to the pip install command.
|
|
100
|
+
* You can use `-DPYBIND11_FINDPYTHON=ON` to use FindPython.
|
|
101
101
|
* In classic mode, you may need to set `-DPYTHON_EXECUTABLE=/path/to/python`.
|
|
102
102
|
FindPython uses `-DPython_ROOT_DIR=/path/to` or
|
|
103
103
|
`-DPython_EXECUTABLE=/path/to/python`.
|
|
@@ -135,7 +135,7 @@ The valid options are:
|
|
|
135
135
|
* Use `-G` and the name of a generator to use something different. `cmake
|
|
136
136
|
--help` lists the generators available.
|
|
137
137
|
- On Unix, setting `CMAKE_GENERATER=Ninja` in your environment will give
|
|
138
|
-
you automatic
|
|
138
|
+
you automatic multithreading on all your CMake projects!
|
|
139
139
|
* Open the `CMakeLists.txt` with QtCreator to generate for that IDE.
|
|
140
140
|
* You can use `-DCMAKE_EXPORT_COMPILE_COMMANDS=ON` to generate the `.json` file
|
|
141
141
|
that some tools expect.
|
|
@@ -149,8 +149,8 @@ To run the tests, you can "build" the check target:
|
|
|
149
149
|
cmake --build build --target check
|
|
150
150
|
```
|
|
151
151
|
|
|
152
|
-
`--target` can be spelled `-t
|
|
153
|
-
|
|
152
|
+
`--target` can be spelled `-t`. You can also run individual tests with these
|
|
153
|
+
targets:
|
|
154
154
|
|
|
155
155
|
* `pytest`: Python tests only, using the
|
|
156
156
|
[pytest](https://docs.pytest.org/en/stable/) framework
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
version: 2
|
|
2
|
+
updates:
|
|
3
|
+
# Maintain dependencies for GitHub Actions
|
|
4
|
+
- package-ecosystem: "github-actions"
|
|
5
|
+
directory: "/"
|
|
6
|
+
schedule:
|
|
7
|
+
interval: "weekly"
|
|
8
|
+
groups:
|
|
9
|
+
actions:
|
|
10
|
+
patterns:
|
|
11
|
+
- "*"
|
|
12
|
+
ignore:
|
|
13
|
+
- dependency-name: actions/checkout
|
|
14
|
+
versions:
|
|
15
|
+
- "<5"
|
|
@@ -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).*"
|