PyPartMC 2.0.6__tar.gz → 2.0.8__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.
Files changed (1985) hide show
  1. pypartmc-2.0.8/PKG-INFO +403 -0
  2. pypartmc-2.0.8/gitmodules/json/include/nlohmann/adl_serializer.hpp +55 -0
  3. pypartmc-2.0.8/gitmodules/json/include/nlohmann/byte_container_with_subtype.hpp +103 -0
  4. pypartmc-2.0.8/gitmodules/json/include/nlohmann/detail/abi_macros.hpp +100 -0
  5. pypartmc-2.0.8/gitmodules/json/include/nlohmann/detail/conversions/from_json.hpp +497 -0
  6. pypartmc-2.0.8/gitmodules/json/include/nlohmann/detail/conversions/to_chars.hpp +1118 -0
  7. pypartmc-2.0.8/gitmodules/json/include/nlohmann/detail/conversions/to_json.hpp +446 -0
  8. pypartmc-2.0.8/gitmodules/json/include/nlohmann/detail/exceptions.hpp +257 -0
  9. pypartmc-2.0.8/gitmodules/json/include/nlohmann/detail/hash.hpp +129 -0
  10. pypartmc-2.0.8/gitmodules/json/include/nlohmann/detail/input/binary_reader.hpp +3009 -0
  11. pypartmc-2.0.8/gitmodules/json/include/nlohmann/detail/input/input_adapters.hpp +492 -0
  12. pypartmc-2.0.8/gitmodules/json/include/nlohmann/detail/input/json_sax.hpp +727 -0
  13. pypartmc-2.0.8/gitmodules/json/include/nlohmann/detail/input/lexer.hpp +1633 -0
  14. pypartmc-2.0.8/gitmodules/json/include/nlohmann/detail/input/parser.hpp +519 -0
  15. pypartmc-2.0.8/gitmodules/json/include/nlohmann/detail/input/position_t.hpp +37 -0
  16. pypartmc-2.0.8/gitmodules/json/include/nlohmann/detail/iterators/internal_iterator.hpp +35 -0
  17. pypartmc-2.0.8/gitmodules/json/include/nlohmann/detail/iterators/iter_impl.hpp +751 -0
  18. pypartmc-2.0.8/gitmodules/json/include/nlohmann/detail/iterators/iteration_proxy.hpp +242 -0
  19. pypartmc-2.0.8/gitmodules/json/include/nlohmann/detail/iterators/iterator_traits.hpp +61 -0
  20. pypartmc-2.0.8/gitmodules/json/include/nlohmann/detail/iterators/json_reverse_iterator.hpp +130 -0
  21. pypartmc-2.0.8/gitmodules/json/include/nlohmann/detail/iterators/primitive_iterator.hpp +132 -0
  22. pypartmc-2.0.8/gitmodules/json/include/nlohmann/detail/json_custom_base_class.hpp +39 -0
  23. pypartmc-2.0.8/gitmodules/json/include/nlohmann/detail/json_pointer.hpp +988 -0
  24. pypartmc-2.0.8/gitmodules/json/include/nlohmann/detail/json_ref.hpp +78 -0
  25. pypartmc-2.0.8/gitmodules/json/include/nlohmann/detail/macro_scope.hpp +482 -0
  26. pypartmc-2.0.8/gitmodules/json/include/nlohmann/detail/macro_unscope.hpp +45 -0
  27. pypartmc-2.0.8/gitmodules/json/include/nlohmann/detail/meta/call_std/begin.hpp +17 -0
  28. pypartmc-2.0.8/gitmodules/json/include/nlohmann/detail/meta/call_std/end.hpp +17 -0
  29. pypartmc-2.0.8/gitmodules/json/include/nlohmann/detail/meta/cpp_future.hpp +171 -0
  30. pypartmc-2.0.8/gitmodules/json/include/nlohmann/detail/meta/detected.hpp +70 -0
  31. pypartmc-2.0.8/gitmodules/json/include/nlohmann/detail/meta/identity_tag.hpp +21 -0
  32. pypartmc-2.0.8/gitmodules/json/include/nlohmann/detail/meta/is_sax.hpp +159 -0
  33. pypartmc-2.0.8/gitmodules/json/include/nlohmann/detail/meta/std_fs.hpp +29 -0
  34. pypartmc-2.0.8/gitmodules/json/include/nlohmann/detail/meta/type_traits.hpp +795 -0
  35. pypartmc-2.0.8/gitmodules/json/include/nlohmann/detail/meta/void_t.hpp +24 -0
  36. pypartmc-2.0.8/gitmodules/json/include/nlohmann/detail/output/binary_writer.hpp +1838 -0
  37. pypartmc-2.0.8/gitmodules/json/include/nlohmann/detail/output/output_adapters.hpp +147 -0
  38. pypartmc-2.0.8/gitmodules/json/include/nlohmann/detail/output/serializer.hpp +988 -0
  39. pypartmc-2.0.8/gitmodules/json/include/nlohmann/detail/string_concat.hpp +146 -0
  40. pypartmc-2.0.8/gitmodules/json/include/nlohmann/detail/string_escape.hpp +72 -0
  41. pypartmc-2.0.8/gitmodules/json/include/nlohmann/detail/value_t.hpp +118 -0
  42. pypartmc-2.0.8/gitmodules/json/include/nlohmann/json.hpp +5258 -0
  43. pypartmc-2.0.8/gitmodules/json/include/nlohmann/json_fwd.hpp +75 -0
  44. pypartmc-2.0.8/gitmodules/json/include/nlohmann/ordered_map.hpp +359 -0
  45. pypartmc-2.0.8/gitmodules/json/include/nlohmann/thirdparty/hedley/hedley.hpp +2045 -0
  46. pypartmc-2.0.8/gitmodules/json/include/nlohmann/thirdparty/hedley/hedley_undef.hpp +158 -0
  47. pypartmc-2.0.8/gitmodules/nanobind/cmake/nanobind-config.cmake +744 -0
  48. pypartmc-2.0.8/gitmodules/nanobind/docs/changelog.rst +1892 -0
  49. pypartmc-2.0.8/gitmodules/nanobind/docs/classes.rst +1181 -0
  50. pypartmc-2.0.8/gitmodules/nanobind/docs/eigen.rst +195 -0
  51. pypartmc-2.0.8/gitmodules/nanobind/docs/exchanging.rst +425 -0
  52. pypartmc-2.0.8/gitmodules/nanobind/include/nanobind/eigen/tensor.h +329 -0
  53. pypartmc-2.0.8/gitmodules/nanobind/include/nanobind/nb_cast.h +751 -0
  54. pypartmc-2.0.8/gitmodules/nanobind/include/nanobind/nb_class.h +863 -0
  55. pypartmc-2.0.8/gitmodules/nanobind/include/nanobind/nb_python.h +60 -0
  56. pypartmc-2.0.8/gitmodules/nanobind/include/nanobind/nb_types.h +1017 -0
  57. pypartmc-2.0.8/gitmodules/nanobind/include/nanobind/ndarray.h +599 -0
  58. pypartmc-2.0.8/gitmodules/nanobind/include/nanobind/stl/variant.h +114 -0
  59. pypartmc-2.0.8/gitmodules/nanobind/include/nanobind/stl/wstring.h +40 -0
  60. pypartmc-2.0.8/gitmodules/nanobind/src/common.cpp +1298 -0
  61. pypartmc-2.0.8/gitmodules/nanobind/src/nb_enum.cpp +306 -0
  62. pypartmc-2.0.8/gitmodules/nanobind/src/nb_func.cpp +1588 -0
  63. pypartmc-2.0.8/gitmodules/nanobind/src/nb_internals.cpp +593 -0
  64. pypartmc-2.0.8/gitmodules/nanobind/src/nb_internals.h +583 -0
  65. pypartmc-2.0.8/gitmodules/nanobind/src/nb_ndarray.cpp +1067 -0
  66. pypartmc-2.0.8/gitmodules/nanobind/src/nb_type.cpp +2273 -0
  67. pypartmc-2.0.8/gitmodules/nanobind/src/stubgen.py +1570 -0
  68. pypartmc-2.0.8/gitmodules/nanobind/src/trampoline.cpp +196 -0
  69. pypartmc-2.0.8/gitmodules/nanobind/tests/CMakeLists.txt +250 -0
  70. pypartmc-2.0.8/gitmodules/nanobind/tests/test_classes.cpp +842 -0
  71. pypartmc-2.0.8/gitmodules/nanobind/tests/test_classes_ext.pyi.ref +413 -0
  72. pypartmc-2.0.8/gitmodules/nanobind/tests/test_eigen.py +478 -0
  73. pypartmc-2.0.8/gitmodules/nanobind/tests/test_eigen_tensor.cpp +108 -0
  74. pypartmc-2.0.8/gitmodules/nanobind/tests/test_eigen_tensor.py +139 -0
  75. pypartmc-2.0.8/gitmodules/nanobind/tests/test_enum_ext.pyi.ref +131 -0
  76. pypartmc-2.0.8/gitmodules/nanobind/tests/test_functions.cpp +534 -0
  77. pypartmc-2.0.8/gitmodules/nanobind/tests/test_functions.py +799 -0
  78. pypartmc-2.0.8/gitmodules/nanobind/tests/test_functions_ext.pyi.ref +273 -0
  79. pypartmc-2.0.8/gitmodules/nanobind/tests/test_ndarray.cpp +566 -0
  80. pypartmc-2.0.8/gitmodules/nanobind/tests/test_ndarray.py +1058 -0
  81. pypartmc-2.0.8/gitmodules/nanobind/tests/test_ndarray_ext.pyi.ref +217 -0
  82. pypartmc-2.0.8/gitmodules/nanobind/tests/test_stl.cpp +541 -0
  83. pypartmc-2.0.8/gitmodules/nanobind/tests/test_stl.py +885 -0
  84. pypartmc-2.0.8/gitmodules/nanobind/tests/test_stl_ext.pyi.ref +280 -0
  85. pypartmc-2.0.8/gitmodules/nanobind/tests/test_stubs.py +74 -0
  86. pypartmc-2.0.8/gitmodules/netcdf-fortran/COPYRIGHT +53 -0
  87. pypartmc-2.0.8/gitmodules/netcdf-fortran/fortran/module_netcdf4_nc_interfaces.F90 +1072 -0
  88. pypartmc-2.0.8/gitmodules/netcdf-fortran/fortran/module_netcdf4_nf_interfaces.F90 +975 -0
  89. pypartmc-2.0.8/gitmodules/netcdf-fortran/fortran/module_netcdf_nc_data.F90 +427 -0
  90. pypartmc-2.0.8/gitmodules/netcdf-fortran/fortran/netcdf4_eightbyte.F90 +859 -0
  91. pypartmc-2.0.8/gitmodules/netcdf-fortran/fortran/netcdf4_func.F90 +868 -0
  92. pypartmc-2.0.8/gitmodules/netcdf-fortran/fortran/netcdf_attributes.F90 +367 -0
  93. pypartmc-2.0.8/gitmodules/netcdf-fortran/fortran/netcdf_expanded.F90 +2656 -0
  94. pypartmc-2.0.8/gitmodules/netcdf-fortran/fortran/nf_nc4.F90 +2237 -0
  95. pypartmc-2.0.6/PKG-INFO +0 -403
  96. pypartmc-2.0.6/gitmodules/json/include/nlohmann/adl_serializer.hpp +0 -48
  97. pypartmc-2.0.6/gitmodules/json/include/nlohmann/byte_container_with_subtype.hpp +0 -94
  98. pypartmc-2.0.6/gitmodules/json/include/nlohmann/detail/conversions/from_json.hpp +0 -492
  99. pypartmc-2.0.6/gitmodules/json/include/nlohmann/detail/conversions/to_chars.hpp +0 -1110
  100. pypartmc-2.0.6/gitmodules/json/include/nlohmann/detail/conversions/to_json.hpp +0 -430
  101. pypartmc-2.0.6/gitmodules/json/include/nlohmann/detail/exceptions.hpp +0 -247
  102. pypartmc-2.0.6/gitmodules/json/include/nlohmann/detail/hash.hpp +0 -122
  103. pypartmc-2.0.6/gitmodules/json/include/nlohmann/detail/input/binary_reader.hpp +0 -2879
  104. pypartmc-2.0.6/gitmodules/json/include/nlohmann/detail/input/input_adapters.hpp +0 -483
  105. pypartmc-2.0.6/gitmodules/json/include/nlohmann/detail/input/json_sax.hpp +0 -712
  106. pypartmc-2.0.6/gitmodules/json/include/nlohmann/detail/input/lexer.hpp +0 -1623
  107. pypartmc-2.0.6/gitmodules/json/include/nlohmann/detail/input/parser.hpp +0 -500
  108. pypartmc-2.0.6/gitmodules/json/include/nlohmann/detail/input/position_t.hpp +0 -27
  109. pypartmc-2.0.6/gitmodules/json/include/nlohmann/detail/iterators/internal_iterator.hpp +0 -25
  110. pypartmc-2.0.6/gitmodules/json/include/nlohmann/detail/iterators/iter_impl.hpp +0 -739
  111. pypartmc-2.0.6/gitmodules/json/include/nlohmann/detail/iterators/iteration_proxy.hpp +0 -189
  112. pypartmc-2.0.6/gitmodules/json/include/nlohmann/detail/iterators/iterator_traits.hpp +0 -51
  113. pypartmc-2.0.6/gitmodules/json/include/nlohmann/detail/iterators/json_reverse_iterator.hpp +0 -119
  114. pypartmc-2.0.6/gitmodules/json/include/nlohmann/detail/iterators/primitive_iterator.hpp +0 -123
  115. pypartmc-2.0.6/gitmodules/json/include/nlohmann/detail/json_pointer.hpp +0 -878
  116. pypartmc-2.0.6/gitmodules/json/include/nlohmann/detail/json_ref.hpp +0 -68
  117. pypartmc-2.0.6/gitmodules/json/include/nlohmann/detail/macro_scope.hpp +0 -431
  118. pypartmc-2.0.6/gitmodules/json/include/nlohmann/detail/macro_unscope.hpp +0 -31
  119. pypartmc-2.0.6/gitmodules/json/include/nlohmann/detail/meta/call_std/begin.hpp +0 -8
  120. pypartmc-2.0.6/gitmodules/json/include/nlohmann/detail/meta/call_std/end.hpp +0 -8
  121. pypartmc-2.0.6/gitmodules/json/include/nlohmann/detail/meta/cpp_future.hpp +0 -158
  122. pypartmc-2.0.6/gitmodules/json/include/nlohmann/detail/meta/detected.hpp +0 -61
  123. pypartmc-2.0.6/gitmodules/json/include/nlohmann/detail/meta/identity_tag.hpp +0 -10
  124. pypartmc-2.0.6/gitmodules/json/include/nlohmann/detail/meta/is_sax.hpp +0 -149
  125. pypartmc-2.0.6/gitmodules/json/include/nlohmann/detail/meta/type_traits.hpp +0 -581
  126. pypartmc-2.0.6/gitmodules/json/include/nlohmann/detail/meta/void_t.hpp +0 -13
  127. pypartmc-2.0.6/gitmodules/json/include/nlohmann/detail/output/binary_writer.hpp +0 -1829
  128. pypartmc-2.0.6/gitmodules/json/include/nlohmann/detail/output/output_adapters.hpp +0 -138
  129. pypartmc-2.0.6/gitmodules/json/include/nlohmann/detail/output/serializer.hpp +0 -978
  130. pypartmc-2.0.6/gitmodules/json/include/nlohmann/detail/string_concat.hpp +0 -139
  131. pypartmc-2.0.6/gitmodules/json/include/nlohmann/detail/string_escape.hpp +0 -65
  132. pypartmc-2.0.6/gitmodules/json/include/nlohmann/detail/value_t.hpp +0 -81
  133. pypartmc-2.0.6/gitmodules/json/include/nlohmann/json.hpp +0 -5099
  134. pypartmc-2.0.6/gitmodules/json/include/nlohmann/json_fwd.hpp +0 -64
  135. pypartmc-2.0.6/gitmodules/json/include/nlohmann/ordered_map.hpp +0 -238
  136. pypartmc-2.0.6/gitmodules/json/include/nlohmann/thirdparty/hedley/hedley.hpp +0 -2044
  137. pypartmc-2.0.6/gitmodules/json/include/nlohmann/thirdparty/hedley/hedley_undef.hpp +0 -150
  138. pypartmc-2.0.6/gitmodules/nanobind/cmake/nanobind-config.cmake +0 -739
  139. pypartmc-2.0.6/gitmodules/nanobind/docs/changelog.rst +0 -1886
  140. pypartmc-2.0.6/gitmodules/nanobind/docs/classes.rst +0 -1183
  141. pypartmc-2.0.6/gitmodules/nanobind/docs/eigen.rst +0 -180
  142. pypartmc-2.0.6/gitmodules/nanobind/docs/exchanging.rst +0 -423
  143. pypartmc-2.0.6/gitmodules/nanobind/include/nanobind/nb_cast.h +0 -750
  144. pypartmc-2.0.6/gitmodules/nanobind/include/nanobind/nb_class.h +0 -864
  145. pypartmc-2.0.6/gitmodules/nanobind/include/nanobind/nb_python.h +0 -61
  146. pypartmc-2.0.6/gitmodules/nanobind/include/nanobind/nb_types.h +0 -1012
  147. pypartmc-2.0.6/gitmodules/nanobind/include/nanobind/ndarray.h +0 -597
  148. pypartmc-2.0.6/gitmodules/nanobind/include/nanobind/stl/variant.h +0 -113
  149. pypartmc-2.0.6/gitmodules/nanobind/include/nanobind/stl/wstring.h +0 -39
  150. pypartmc-2.0.6/gitmodules/nanobind/src/common.cpp +0 -1295
  151. pypartmc-2.0.6/gitmodules/nanobind/src/nb_enum.cpp +0 -304
  152. pypartmc-2.0.6/gitmodules/nanobind/src/nb_func.cpp +0 -1586
  153. pypartmc-2.0.6/gitmodules/nanobind/src/nb_internals.cpp +0 -590
  154. pypartmc-2.0.6/gitmodules/nanobind/src/nb_internals.h +0 -577
  155. pypartmc-2.0.6/gitmodules/nanobind/src/nb_ndarray.cpp +0 -1051
  156. pypartmc-2.0.6/gitmodules/nanobind/src/nb_type.cpp +0 -2271
  157. pypartmc-2.0.6/gitmodules/nanobind/src/stubgen.py +0 -1553
  158. pypartmc-2.0.6/gitmodules/nanobind/src/trampoline.cpp +0 -188
  159. pypartmc-2.0.6/gitmodules/nanobind/tests/CMakeLists.txt +0 -247
  160. pypartmc-2.0.6/gitmodules/nanobind/tests/test_classes.cpp +0 -815
  161. pypartmc-2.0.6/gitmodules/nanobind/tests/test_classes_ext.pyi.ref +0 -399
  162. pypartmc-2.0.6/gitmodules/nanobind/tests/test_eigen.py +0 -485
  163. pypartmc-2.0.6/gitmodules/nanobind/tests/test_enum_ext.pyi.ref +0 -131
  164. pypartmc-2.0.6/gitmodules/nanobind/tests/test_functions.cpp +0 -526
  165. pypartmc-2.0.6/gitmodules/nanobind/tests/test_functions.py +0 -792
  166. pypartmc-2.0.6/gitmodules/nanobind/tests/test_functions_ext.pyi.ref +0 -269
  167. pypartmc-2.0.6/gitmodules/nanobind/tests/test_ndarray.cpp +0 -557
  168. pypartmc-2.0.6/gitmodules/nanobind/tests/test_ndarray.py +0 -1036
  169. pypartmc-2.0.6/gitmodules/nanobind/tests/test_ndarray_ext.pyi.ref +0 -215
  170. pypartmc-2.0.6/gitmodules/nanobind/tests/test_stl.cpp +0 -537
  171. pypartmc-2.0.6/gitmodules/nanobind/tests/test_stl.py +0 -881
  172. pypartmc-2.0.6/gitmodules/nanobind/tests/test_stl_ext.pyi.ref +0 -276
  173. pypartmc-2.0.6/gitmodules/nanobind/tests/test_stubs.py +0 -74
  174. pypartmc-2.0.6/gitmodules/netcdf-fortran/COPYRIGHT +0 -53
  175. pypartmc-2.0.6/gitmodules/netcdf-fortran/fortran/module_netcdf4_nc_interfaces.F90 +0 -1072
  176. pypartmc-2.0.6/gitmodules/netcdf-fortran/fortran/module_netcdf4_nf_interfaces.F90 +0 -975
  177. pypartmc-2.0.6/gitmodules/netcdf-fortran/fortran/module_netcdf_nc_data.F90 +0 -426
  178. pypartmc-2.0.6/gitmodules/netcdf-fortran/fortran/netcdf4_eightbyte.F90 +0 -824
  179. pypartmc-2.0.6/gitmodules/netcdf-fortran/fortran/netcdf4_func.F90 +0 -868
  180. pypartmc-2.0.6/gitmodules/netcdf-fortran/fortran/netcdf_attributes.F90 +0 -327
  181. pypartmc-2.0.6/gitmodules/netcdf-fortran/fortran/netcdf_expanded.F90 +0 -2628
  182. pypartmc-2.0.6/gitmodules/netcdf-fortran/fortran/nf_nc4.F90 +0 -2237
  183. {pypartmc-2.0.6 → pypartmc-2.0.8}/CITATION.cff +0 -0
  184. {pypartmc-2.0.6 → pypartmc-2.0.8}/CMakeLists.txt +0 -0
  185. {pypartmc-2.0.6 → pypartmc-2.0.8}/CODE_OF_CONDUCT.md +0 -0
  186. {pypartmc-2.0.6 → pypartmc-2.0.8}/CONTRIBUTING.md +0 -0
  187. {pypartmc-2.0.6 → pypartmc-2.0.8}/LICENSE +0 -0
  188. {pypartmc-2.0.6 → pypartmc-2.0.8}/README.md +0 -0
  189. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/SuiteSparse/AMD/Include/amd.h +0 -0
  190. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/SuiteSparse/AMD/Include/amd_internal.h +0 -0
  191. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/SuiteSparse/AMD/Source/amd.f +0 -0
  192. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/SuiteSparse/AMD/Source/amd_1.c +0 -0
  193. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/SuiteSparse/AMD/Source/amd_2.c +0 -0
  194. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/SuiteSparse/AMD/Source/amd_aat.c +0 -0
  195. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/SuiteSparse/AMD/Source/amd_control.c +0 -0
  196. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/SuiteSparse/AMD/Source/amd_defaults.c +0 -0
  197. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/SuiteSparse/AMD/Source/amd_dump.c +0 -0
  198. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/SuiteSparse/AMD/Source/amd_global.c +0 -0
  199. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/SuiteSparse/AMD/Source/amd_info.c +0 -0
  200. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/SuiteSparse/AMD/Source/amd_order.c +0 -0
  201. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/SuiteSparse/AMD/Source/amd_post_tree.c +0 -0
  202. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/SuiteSparse/AMD/Source/amd_postorder.c +0 -0
  203. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/SuiteSparse/AMD/Source/amd_preprocess.c +0 -0
  204. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/SuiteSparse/AMD/Source/amd_valid.c +0 -0
  205. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/SuiteSparse/AMD/Source/amdbar.f +0 -0
  206. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/SuiteSparse/BTF/Include/btf.h +0 -0
  207. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/SuiteSparse/BTF/Include/btf_internal.h +0 -0
  208. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/SuiteSparse/BTF/Source/btf_maxtrans.c +0 -0
  209. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/SuiteSparse/BTF/Source/btf_order.c +0 -0
  210. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/SuiteSparse/BTF/Source/btf_strongcomp.c +0 -0
  211. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/SuiteSparse/COLAMD/Include/colamd.h +0 -0
  212. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/SuiteSparse/COLAMD/Source/colamd.c +0 -0
  213. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/SuiteSparse/KLU/Include/klu.h +0 -0
  214. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/SuiteSparse/KLU/Include/klu_internal.h +0 -0
  215. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/SuiteSparse/KLU/Include/klu_version.h +0 -0
  216. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/SuiteSparse/KLU/Source/klu.c +0 -0
  217. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/SuiteSparse/KLU/Source/klu_analyze.c +0 -0
  218. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/SuiteSparse/KLU/Source/klu_analyze_given.c +0 -0
  219. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/SuiteSparse/KLU/Source/klu_defaults.c +0 -0
  220. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/SuiteSparse/KLU/Source/klu_diagnostics.c +0 -0
  221. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/SuiteSparse/KLU/Source/klu_dump.c +0 -0
  222. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/SuiteSparse/KLU/Source/klu_extract.c +0 -0
  223. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/SuiteSparse/KLU/Source/klu_factor.c +0 -0
  224. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/SuiteSparse/KLU/Source/klu_free_numeric.c +0 -0
  225. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/SuiteSparse/KLU/Source/klu_free_symbolic.c +0 -0
  226. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/SuiteSparse/KLU/Source/klu_kernel.c +0 -0
  227. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/SuiteSparse/KLU/Source/klu_memory.c +0 -0
  228. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/SuiteSparse/KLU/Source/klu_refactor.c +0 -0
  229. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/SuiteSparse/KLU/Source/klu_scale.c +0 -0
  230. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/SuiteSparse/KLU/Source/klu_solve.c +0 -0
  231. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/SuiteSparse/KLU/Source/klu_sort.c +0 -0
  232. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/SuiteSparse/KLU/Source/klu_tsolve.c +0 -0
  233. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/SuiteSparse/LICENSE.txt +0 -0
  234. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/SuiteSparse/SuiteSparse_config/SuiteSparse_config.c +0 -0
  235. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/SuiteSparse/SuiteSparse_config/SuiteSparse_config.h +0 -0
  236. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/CMakeLists.txt +0 -0
  237. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/COPYING +0 -0
  238. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/Jacobian.c +0 -0
  239. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/Jacobian.h +0 -0
  240. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/aero_phase_data.F90 +0 -0
  241. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/aero_phase_solver.c +0 -0
  242. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/aero_phase_solver.h +0 -0
  243. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/aero_rep_data.F90 +0 -0
  244. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/aero_rep_factory.F90 +0 -0
  245. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/aero_rep_solver.c +0 -0
  246. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/aero_rep_solver.h +0 -0
  247. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/aero_reps/aero_rep_modal_binned_mass.F90 +0 -0
  248. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/aero_reps/aero_rep_modal_binned_mass.c +0 -0
  249. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/aero_reps/aero_rep_single_particle.F90 +0 -0
  250. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/aero_reps/aero_rep_single_particle.c +0 -0
  251. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/aero_reps.h +0 -0
  252. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/camp_common.h +0 -0
  253. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/camp_core.F90 +0 -0
  254. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/camp_debug.h +0 -0
  255. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/camp_solver.c +0 -0
  256. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/camp_solver.h +0 -0
  257. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/camp_solver_data.F90 +0 -0
  258. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/camp_state.F90 +0 -0
  259. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/chem_spec_data.F90 +0 -0
  260. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/constants.F90 +0 -0
  261. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/debug_diff_check.F90 +0 -0
  262. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/debug_diff_check.c +0 -0
  263. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/debug_diff_check.h +0 -0
  264. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/env_state.F90 +0 -0
  265. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/mechanism_data.F90 +0 -0
  266. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/mpi.F90 +0 -0
  267. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/property.F90 +0 -0
  268. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/rand.F90 +0 -0
  269. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/rand_gsl.c +0 -0
  270. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/rxn_data.F90 +0 -0
  271. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/rxn_factory.F90 +0 -0
  272. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/rxn_solver.c +0 -0
  273. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/rxn_solver.h +0 -0
  274. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/rxns/rxn_CMAQ_H2O2.F90 +0 -0
  275. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/rxns/rxn_CMAQ_H2O2.c +0 -0
  276. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/rxns/rxn_CMAQ_OH_HNO3.F90 +0 -0
  277. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/rxns/rxn_CMAQ_OH_HNO3.c +0 -0
  278. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/rxns/rxn_HL_phase_transfer.F90 +0 -0
  279. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/rxns/rxn_HL_phase_transfer.c +0 -0
  280. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/rxns/rxn_SIMPOL_phase_transfer.F90 +0 -0
  281. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/rxns/rxn_SIMPOL_phase_transfer.c +0 -0
  282. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/rxns/rxn_aqueous_equilibrium.F90 +0 -0
  283. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/rxns/rxn_aqueous_equilibrium.c +0 -0
  284. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/rxns/rxn_arrhenius.F90 +0 -0
  285. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/rxns/rxn_arrhenius.c +0 -0
  286. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/rxns/rxn_condensed_phase_arrhenius.F90 +0 -0
  287. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/rxns/rxn_condensed_phase_arrhenius.c +0 -0
  288. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/rxns/rxn_condensed_phase_photolysis.F90 +0 -0
  289. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/rxns/rxn_condensed_phase_photolysis.c +0 -0
  290. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/rxns/rxn_emission.F90 +0 -0
  291. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/rxns/rxn_emission.c +0 -0
  292. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/rxns/rxn_first_order_loss.F90 +0 -0
  293. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/rxns/rxn_first_order_loss.c +0 -0
  294. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/rxns/rxn_photolysis.F90 +0 -0
  295. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/rxns/rxn_photolysis.c +0 -0
  296. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/rxns/rxn_surface.F90 +0 -0
  297. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/rxns/rxn_surface.c +0 -0
  298. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/rxns/rxn_ternary_chemical_activation.F90 +0 -0
  299. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/rxns/rxn_ternary_chemical_activation.c +0 -0
  300. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/rxns/rxn_troe.F90 +0 -0
  301. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/rxns/rxn_troe.c +0 -0
  302. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/rxns/rxn_wennberg_no_ro2.F90 +0 -0
  303. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/rxns/rxn_wennberg_no_ro2.c +0 -0
  304. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/rxns/rxn_wennberg_tunneling.F90 +0 -0
  305. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/rxns/rxn_wennberg_tunneling.c +0 -0
  306. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/rxns/rxn_wet_deposition.F90 +0 -0
  307. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/rxns/rxn_wet_deposition.c +0 -0
  308. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/rxns.h +0 -0
  309. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/solver_stats.F90 +0 -0
  310. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/sub_model_data.F90 +0 -0
  311. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/sub_model_factory.F90 +0 -0
  312. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/sub_model_solver.c +0 -0
  313. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/sub_model_solver.h +0 -0
  314. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/sub_models/sub_model_PDFiTE.F90 +0 -0
  315. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/sub_models/sub_model_PDFiTE.c +0 -0
  316. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/sub_models/sub_model_UNIFAC.F90 +0 -0
  317. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/sub_models/sub_model_UNIFAC.c +0 -0
  318. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/sub_models/sub_model_ZSR_aerosol_water.F90 +0 -0
  319. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/sub_models/sub_model_ZSR_aerosol_water.c +0 -0
  320. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/sub_models.h +0 -0
  321. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/time_derivative.c +0 -0
  322. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/time_derivative.h +0 -0
  323. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/util.F90 +0 -0
  324. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/camp/src/util.h +0 -0
  325. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/CMakeFilters.cmake +0 -0
  326. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/CMakeInstallation.cmake +0 -0
  327. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/CMakeLists.txt +0 -0
  328. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/CMakePlugins.cmake +0 -0
  329. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/CMakeTests.cmake +0 -0
  330. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/CMakeVOL.cmake +0 -0
  331. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/COPYING +0 -0
  332. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/CTestConfig.cmake +0 -0
  333. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/UserMacros.cmake +0 -0
  334. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/bin/Makefile.am +0 -0
  335. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/bin/README.md +0 -0
  336. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/bin/batch/ctest.qsub.in.cmake +0 -0
  337. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/bin/batch/ctestP.lsf.in.cmake +0 -0
  338. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/bin/batch/ctestP.sl.in.cmake +0 -0
  339. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/bin/batch/ctestS.lsf.in.cmake +0 -0
  340. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/bin/batch/ctestS.sl.in.cmake +0 -0
  341. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/bin/batch/ctest_parallel.cmake.in +0 -0
  342. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/bin/batch/ctest_serial.cmake.in +0 -0
  343. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/bin/batch/knl_ctestP.sl.in.cmake +0 -0
  344. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/bin/batch/knl_ctestS.sl.in.cmake +0 -0
  345. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/bin/batch/ray_ctestP.lsf.in.cmake +0 -0
  346. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/bin/batch/ray_ctestS.lsf.in.cmake +0 -0
  347. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/bin/batch/raybsub +0 -0
  348. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/bin/buildhdf5 +0 -0
  349. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/bin/checkapi +0 -0
  350. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/bin/chkcopyright +0 -0
  351. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/bin/cmakehdf5 +0 -0
  352. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/bin/debug-ohdr +0 -0
  353. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/bin/format_source +0 -0
  354. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/bin/genparser +0 -0
  355. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/bin/h5cc.in +0 -0
  356. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/bin/h5redeploy.in +0 -0
  357. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/bin/h5vers +0 -0
  358. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/bin/iostats +0 -0
  359. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/bin/make_err +0 -0
  360. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/bin/make_overflow +0 -0
  361. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/bin/make_vers +0 -0
  362. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/bin/makehelp +0 -0
  363. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/bin/output_filter.sh +0 -0
  364. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/bin/pkgscrpts/h5rmflags +0 -0
  365. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/bin/pkgscrpts/makeHDF5BinaryTarfiles.pl +0 -0
  366. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/bin/release +0 -0
  367. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/bin/restore.sh +0 -0
  368. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/bin/runbkgprog +0 -0
  369. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/bin/switch_maint_mode +0 -0
  370. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/bin/trace +0 -0
  371. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/bin/warnhist +0 -0
  372. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/BlankForm +0 -0
  373. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/Makefile.am.blank +0 -0
  374. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/README.md +0 -0
  375. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/apple +0 -0
  376. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cce-fflags +0 -0
  377. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cce-flags +0 -0
  378. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/clang-cxxflags +0 -0
  379. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/clang-fflags +0 -0
  380. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/clang-flags +0 -0
  381. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/clang-warnings/developer-general +0 -0
  382. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/clang-warnings/error-general +0 -0
  383. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/clang-warnings/general +0 -0
  384. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/clang-warnings/no-developer-general +0 -0
  385. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/CMakeFindJavaCommon.cmake +0 -0
  386. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/CPack.Info.plist.in +0 -0
  387. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/CTestCustom.cmake +0 -0
  388. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/ConfigureChecks.cmake +0 -0
  389. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/ConversionTests.c +0 -0
  390. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/FindCIRCLE.cmake +0 -0
  391. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/FindDTCMP.cmake +0 -0
  392. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/FindHDFS.cmake +0 -0
  393. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/FindMFU.cmake +0 -0
  394. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/GetTimeOfDayTest.cpp +0 -0
  395. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/H5pubconf.h.in +0 -0
  396. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/HDF5DeveloperBuild.cmake +0 -0
  397. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/HDF5ExampleCache.cmake +0 -0
  398. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/HDF5Macros.cmake +0 -0
  399. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/HDF5PluginCache.cmake +0 -0
  400. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/HDF5PluginMacros.cmake +0 -0
  401. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/HDF5UseFortran.cmake +0 -0
  402. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/HDFCXXCompilerFlags.cmake +0 -0
  403. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/HDFCompilerFlags.cmake +0 -0
  404. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/HDFFortranCompilerFlags.cmake +0 -0
  405. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/HDFLibMacros.cmake +0 -0
  406. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/HDFMacros.cmake +0 -0
  407. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/HDFTests.c +0 -0
  408. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/HDFUseFortran.cmake +0 -0
  409. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/LIBAEC/CMakeLists.txt +0 -0
  410. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/LIBAEC/CPack.Info.plist.in +0 -0
  411. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/LIBAEC/config.h.in +0 -0
  412. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/LIBAEC/libaec-config-version.cmake.in +0 -0
  413. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/LIBAEC/libaec-config.cmake.in +0 -0
  414. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/NSIS.InstallOptions.ini.in +0 -0
  415. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/NSIS.template.in +0 -0
  416. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/PkgInfo.in +0 -0
  417. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/README.md.cmake.in +0 -0
  418. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/UseJava.cmake +0 -0
  419. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/UseJavaClassFilelist.cmake +0 -0
  420. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/UseJavaSymlinks.cmake +0 -0
  421. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/UserMacros/Windows_MT.cmake +0 -0
  422. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/ZLIB/CMakeLists.txt +0 -0
  423. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/ZLIB/CPack.Info.plist.in +0 -0
  424. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/ZLIB/zconf.h.in +0 -0
  425. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/ZLIB/zlib-config-version.cmake.in +0 -0
  426. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/ZLIB/zlib-config.cmake.in +0 -0
  427. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/cacheinit.cmake +0 -0
  428. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/examples/CTestScript.cmake +0 -0
  429. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/examples/HDF5_Examples.cmake.in +0 -0
  430. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/examples/HDF5_Examples_options.cmake +0 -0
  431. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/fileCompareTest.cmake +0 -0
  432. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/grepTest.cmake +0 -0
  433. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/hdf.bmp +0 -0
  434. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/hdf.icns +0 -0
  435. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/hdf.ico +0 -0
  436. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/hdf5-config-version.cmake.in +0 -0
  437. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/hdf5-config.cmake.in +0 -0
  438. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/javaTargets.cmake.in +0 -0
  439. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/jrunTest.cmake +0 -0
  440. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/libh5cc.in +0 -0
  441. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/libhdf5.settings.cmake.in +0 -0
  442. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/mccacheinit.cmake +0 -0
  443. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/patch.xml.in +0 -0
  444. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/runTest.cmake +0 -0
  445. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/scripts/CTestScript.cmake +0 -0
  446. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/scripts/HDF5config.cmake +0 -0
  447. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/scripts/HDF5options.cmake +0 -0
  448. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/scripts/HPC/bsub-HDF5options.cmake +0 -0
  449. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/scripts/HPC/qsub-HDF5options.cmake +0 -0
  450. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/scripts/HPC/raybsub-HDF5options.cmake +0 -0
  451. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/scripts/HPC/sbatch-HDF5options.cmake +0 -0
  452. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/userblockTest.cmake +0 -0
  453. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/version.plist.in +0 -0
  454. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/vfdTest.cmake +0 -0
  455. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake/volTest.cmake +0 -0
  456. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cmake-presets/hidden-presets.json +0 -0
  457. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/commence.am +0 -0
  458. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/conclude.am +0 -0
  459. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/conclude_fc.am +0 -0
  460. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/cygwin +0 -0
  461. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/examples.am +0 -0
  462. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/freebsd +0 -0
  463. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/gnu-cxxflags +0 -0
  464. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/gnu-fflags +0 -0
  465. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/gnu-flags +0 -0
  466. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/gnu-warnings/4.8 +0 -0
  467. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/gnu-warnings/4.8-4.last +0 -0
  468. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/gnu-warnings/4.9 +0 -0
  469. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/gnu-warnings/5 +0 -0
  470. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/gnu-warnings/6 +0 -0
  471. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/gnu-warnings/7 +0 -0
  472. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/gnu-warnings/8 +0 -0
  473. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/gnu-warnings/9 +0 -0
  474. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/gnu-warnings/9.3 +0 -0
  475. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/gnu-warnings/cxx-4.8 +0 -0
  476. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/gnu-warnings/cxx-4.9 +0 -0
  477. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/gnu-warnings/cxx-5 +0 -0
  478. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/gnu-warnings/cxx-9 +0 -0
  479. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/gnu-warnings/cxx-developer-4.8 +0 -0
  480. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/gnu-warnings/cxx-error-5 +0 -0
  481. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/gnu-warnings/cxx-error-general +0 -0
  482. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/gnu-warnings/cxx-general +0 -0
  483. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/gnu-warnings/developer-10 +0 -0
  484. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/gnu-warnings/developer-12 +0 -0
  485. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/gnu-warnings/developer-4.8 +0 -0
  486. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/gnu-warnings/developer-7 +0 -0
  487. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/gnu-warnings/developer-8 +0 -0
  488. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/gnu-warnings/developer-general +0 -0
  489. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/gnu-warnings/error-5 +0 -0
  490. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/gnu-warnings/error-7 +0 -0
  491. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/gnu-warnings/error-8 +0 -0
  492. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/gnu-warnings/error-general +0 -0
  493. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/gnu-warnings/general +0 -0
  494. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/gnu-warnings/gfort-4.8 +0 -0
  495. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/gnu-warnings/gfort-6 +0 -0
  496. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/gnu-warnings/gfort-8 +0 -0
  497. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/gnu-warnings/gfort-developer-4.8 +0 -0
  498. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/gnu-warnings/gfort-developer-5 +0 -0
  499. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/gnu-warnings/gfort-developer-general +0 -0
  500. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/gnu-warnings/gfort-general +0 -0
  501. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/gnu-warnings/gfort-no-developer-4.8 +0 -0
  502. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/gnu-warnings/gfort-no-developer-general +0 -0
  503. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/gnu-warnings/no-cxx-developer-4.8 +0 -0
  504. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/gnu-warnings/no-developer-4.8 +0 -0
  505. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/gnu-warnings/no-developer-8 +0 -0
  506. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/gnu-warnings/no-developer-general +0 -0
  507. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/ibm-aix +0 -0
  508. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/ibm-flags +0 -0
  509. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/intel-cxxflags +0 -0
  510. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/intel-fflags +0 -0
  511. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/intel-flags +0 -0
  512. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/intel-warnings/classic/15 +0 -0
  513. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/intel-warnings/classic/18 +0 -0
  514. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/intel-warnings/classic/developer-general +0 -0
  515. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/intel-warnings/classic/general +0 -0
  516. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/intel-warnings/classic/ifort-general +0 -0
  517. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/intel-warnings/classic/win-developer-general +0 -0
  518. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/intel-warnings/classic/win-general +0 -0
  519. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/intel-warnings/classic/win-ifort-general +0 -0
  520. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/intel-warnings/oneapi/developer-general +0 -0
  521. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/intel-warnings/oneapi/general +0 -0
  522. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/intel-warnings/oneapi/ifort-general +0 -0
  523. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/intel-warnings/oneapi/win-developer-general +0 -0
  524. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/intel-warnings/oneapi/win-general +0 -0
  525. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/intel-warnings/oneapi/win-ifort-general +0 -0
  526. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/libhdf5.fpc.in +0 -0
  527. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/libhdf5.pc.in +0 -0
  528. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/linux-gnu +0 -0
  529. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/lt_vers.am +0 -0
  530. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/netbsd +0 -0
  531. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/nvidia-cxxflags +0 -0
  532. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/nvidia-fflags +0 -0
  533. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/nvidia-flags +0 -0
  534. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/oneapi-cxxflags +0 -0
  535. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/oneapi-fflags +0 -0
  536. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/oneapi-flags +0 -0
  537. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/pgi-cxxflags +0 -0
  538. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/pgi-fflags +0 -0
  539. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/pgi-flags +0 -0
  540. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/sanitizer/LICENSE +0 -0
  541. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/sanitizer/README.md +0 -0
  542. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/sanitizer/afl-fuzzing.cmake +0 -0
  543. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/sanitizer/code-coverage.cmake +0 -0
  544. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/sanitizer/dependency-graph.cmake +0 -0
  545. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/sanitizer/formatting.cmake +0 -0
  546. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/sanitizer/sanitizers.cmake +0 -0
  547. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/sanitizer/tools.cmake +0 -0
  548. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/site-specific/BlankForm +0 -0
  549. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/solaris +0 -0
  550. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/toolchain/aarch64.cmake +0 -0
  551. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/toolchain/build32.cmake +0 -0
  552. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/toolchain/clang.cmake +0 -0
  553. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/toolchain/crayle.cmake +0 -0
  554. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/toolchain/gcc.cmake +0 -0
  555. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/toolchain/icc.cmake +0 -0
  556. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/toolchain/intel.cmake +0 -0
  557. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/toolchain/mingw64.cmake +0 -0
  558. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/config/toolchain/pgi.cmake +0 -0
  559. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/hl/CMakeLists.txt +0 -0
  560. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/hl/src/CMakeLists.txt +0 -0
  561. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/hl/src/H5DO.c +0 -0
  562. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/hl/src/H5DOpublic.h +0 -0
  563. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/hl/src/H5DS.c +0 -0
  564. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/hl/src/H5DSprivate.h +0 -0
  565. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/hl/src/H5DSpublic.h +0 -0
  566. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/hl/src/H5HLprivate2.h +0 -0
  567. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/hl/src/H5IM.c +0 -0
  568. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/hl/src/H5IMprivate.h +0 -0
  569. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/hl/src/H5IMpublic.h +0 -0
  570. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/hl/src/H5LD.c +0 -0
  571. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/hl/src/H5LDprivate.h +0 -0
  572. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/hl/src/H5LDpublic.h +0 -0
  573. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/hl/src/H5LT.c +0 -0
  574. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/hl/src/H5LTanalyze.c +0 -0
  575. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/hl/src/H5LTanalyze.l +0 -0
  576. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/hl/src/H5LTparse.c +0 -0
  577. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/hl/src/H5LTparse.h +0 -0
  578. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/hl/src/H5LTparse.y +0 -0
  579. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/hl/src/H5LTprivate.h +0 -0
  580. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/hl/src/H5LTpublic.h +0 -0
  581. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/hl/src/H5PT.c +0 -0
  582. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/hl/src/H5PTprivate.h +0 -0
  583. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/hl/src/H5PTpublic.h +0 -0
  584. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/hl/src/H5TB.c +0 -0
  585. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/hl/src/H5TBprivate.h +0 -0
  586. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/hl/src/H5TBpublic.h +0 -0
  587. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/hl/src/Makefile.am +0 -0
  588. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/hl/src/hdf5_hl.h +0 -0
  589. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/CMakeLists.txt +0 -0
  590. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5.c +0 -0
  591. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5A.c +0 -0
  592. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5AC.c +0 -0
  593. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5ACdbg.c +0 -0
  594. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5ACmodule.h +0 -0
  595. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5ACmpio.c +0 -0
  596. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5ACpkg.h +0 -0
  597. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5ACprivate.h +0 -0
  598. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5ACproxy_entry.c +0 -0
  599. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5ACpublic.h +0 -0
  600. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Abtree2.c +0 -0
  601. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Adense.c +0 -0
  602. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Adeprec.c +0 -0
  603. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Aint.c +0 -0
  604. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Amodule.h +0 -0
  605. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Apkg.h +0 -0
  606. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Aprivate.h +0 -0
  607. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Apublic.h +0 -0
  608. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Atest.c +0 -0
  609. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5B.c +0 -0
  610. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5B2.c +0 -0
  611. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5B2cache.c +0 -0
  612. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5B2dbg.c +0 -0
  613. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5B2hdr.c +0 -0
  614. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5B2int.c +0 -0
  615. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5B2internal.c +0 -0
  616. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5B2leaf.c +0 -0
  617. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5B2module.h +0 -0
  618. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5B2pkg.h +0 -0
  619. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5B2private.h +0 -0
  620. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5B2stat.c +0 -0
  621. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5B2test.c +0 -0
  622. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Bcache.c +0 -0
  623. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Bdbg.c +0 -0
  624. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Bmodule.h +0 -0
  625. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Bpkg.h +0 -0
  626. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Bprivate.h +0 -0
  627. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5C.c +0 -0
  628. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5CS.c +0 -0
  629. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5CSprivate.h +0 -0
  630. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5CX.c +0 -0
  631. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5CXmodule.h +0 -0
  632. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5CXprivate.h +0 -0
  633. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Cdbg.c +0 -0
  634. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Centry.c +0 -0
  635. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Cepoch.c +0 -0
  636. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Cimage.c +0 -0
  637. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Cint.c +0 -0
  638. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Clog.c +0 -0
  639. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Clog.h +0 -0
  640. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Clog_json.c +0 -0
  641. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Clog_trace.c +0 -0
  642. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Cmodule.h +0 -0
  643. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Cmpio.c +0 -0
  644. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Cpkg.h +0 -0
  645. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Cprefetched.c +0 -0
  646. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Cprivate.h +0 -0
  647. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Cpublic.h +0 -0
  648. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Cquery.c +0 -0
  649. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Ctag.c +0 -0
  650. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Ctest.c +0 -0
  651. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5D.c +0 -0
  652. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Dbtree.c +0 -0
  653. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Dbtree2.c +0 -0
  654. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Dchunk.c +0 -0
  655. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Dcompact.c +0 -0
  656. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Dcontig.c +0 -0
  657. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Ddbg.c +0 -0
  658. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Ddeprec.c +0 -0
  659. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Dearray.c +0 -0
  660. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Defl.c +0 -0
  661. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Dfarray.c +0 -0
  662. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Dfill.c +0 -0
  663. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Dint.c +0 -0
  664. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Dio.c +0 -0
  665. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Dlayout.c +0 -0
  666. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Dmodule.h +0 -0
  667. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Dmpio.c +0 -0
  668. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Dnone.c +0 -0
  669. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Doh.c +0 -0
  670. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Dpkg.h +0 -0
  671. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Dprivate.h +0 -0
  672. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Dpublic.h +0 -0
  673. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Dscatgath.c +0 -0
  674. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Dselect.c +0 -0
  675. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Dsingle.c +0 -0
  676. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Dtest.c +0 -0
  677. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Dvirtual.c +0 -0
  678. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5E.c +0 -0
  679. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5EA.c +0 -0
  680. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5EAcache.c +0 -0
  681. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5EAdbg.c +0 -0
  682. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5EAdblkpage.c +0 -0
  683. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5EAdblock.c +0 -0
  684. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5EAhdr.c +0 -0
  685. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5EAiblock.c +0 -0
  686. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5EAint.c +0 -0
  687. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5EAmodule.h +0 -0
  688. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5EApkg.h +0 -0
  689. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5EAprivate.h +0 -0
  690. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5EAsblock.c +0 -0
  691. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5EAstat.c +0 -0
  692. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5EAtest.c +0 -0
  693. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5ES.c +0 -0
  694. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5ESdevelop.h +0 -0
  695. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5ESevent.c +0 -0
  696. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5ESint.c +0 -0
  697. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5ESlist.c +0 -0
  698. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5ESmodule.h +0 -0
  699. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5ESpkg.h +0 -0
  700. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5ESprivate.h +0 -0
  701. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5ESpublic.h +0 -0
  702. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Edeprec.c +0 -0
  703. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Eint.c +0 -0
  704. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Emodule.h +0 -0
  705. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Epkg.h +0 -0
  706. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Eprivate.h +0 -0
  707. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Epublic.h +0 -0
  708. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5F.c +0 -0
  709. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FA.c +0 -0
  710. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FAcache.c +0 -0
  711. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FAdbg.c +0 -0
  712. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FAdblkpage.c +0 -0
  713. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FAdblock.c +0 -0
  714. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FAhdr.c +0 -0
  715. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FAint.c +0 -0
  716. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FAmodule.h +0 -0
  717. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FApkg.h +0 -0
  718. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FAprivate.h +0 -0
  719. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FAstat.c +0 -0
  720. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FAtest.c +0 -0
  721. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FD.c +0 -0
  722. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDcore.c +0 -0
  723. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDcore.h +0 -0
  724. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDdevelop.h +0 -0
  725. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDdirect.c +0 -0
  726. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDdirect.h +0 -0
  727. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDdrvr_module.h +0 -0
  728. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDfamily.c +0 -0
  729. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDfamily.h +0 -0
  730. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDhdfs.c +0 -0
  731. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDhdfs.h +0 -0
  732. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDint.c +0 -0
  733. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDlog.c +0 -0
  734. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDlog.h +0 -0
  735. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDmirror.c +0 -0
  736. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDmirror.h +0 -0
  737. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDmirror_priv.h +0 -0
  738. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDmodule.h +0 -0
  739. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDmpi.c +0 -0
  740. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDmpi.h +0 -0
  741. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDmpio.c +0 -0
  742. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDmpio.h +0 -0
  743. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDmulti.c +0 -0
  744. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDmulti.h +0 -0
  745. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDonion.c +0 -0
  746. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDonion.h +0 -0
  747. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDonion_header.c +0 -0
  748. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDonion_header.h +0 -0
  749. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDonion_history.c +0 -0
  750. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDonion_history.h +0 -0
  751. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDonion_index.c +0 -0
  752. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDonion_index.h +0 -0
  753. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDonion_priv.h +0 -0
  754. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDperform.c +0 -0
  755. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDpkg.h +0 -0
  756. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDprivate.h +0 -0
  757. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDpublic.h +0 -0
  758. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDros3.c +0 -0
  759. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDros3.h +0 -0
  760. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDs3comms.c +0 -0
  761. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDs3comms.h +0 -0
  762. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDsec2.c +0 -0
  763. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDsec2.h +0 -0
  764. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDspace.c +0 -0
  765. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDsplitter.c +0 -0
  766. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDsplitter.h +0 -0
  767. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDstdio.c +0 -0
  768. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDstdio.h +0 -0
  769. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDsubfiling/CMakeLists.txt +0 -0
  770. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDsubfiling/H5FDioc.c +0 -0
  771. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDsubfiling/H5FDioc.h +0 -0
  772. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDsubfiling/H5FDioc_int.c +0 -0
  773. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDsubfiling/H5FDioc_priv.h +0 -0
  774. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDsubfiling/H5FDioc_threads.c +0 -0
  775. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDsubfiling/H5FDsubfile_int.c +0 -0
  776. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDsubfiling/H5FDsubfiling.c +0 -0
  777. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDsubfiling/H5FDsubfiling.h +0 -0
  778. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDsubfiling/H5FDsubfiling_priv.h +0 -0
  779. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDsubfiling/H5subfiling_common.c +0 -0
  780. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDsubfiling/H5subfiling_common.h +0 -0
  781. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDsubfiling/H5subfiling_err.h +0 -0
  782. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDsubfiling/mercury/LICENSE.txt +0 -0
  783. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDsubfiling/mercury/src/util/mercury_compiler_attributes.h +0 -0
  784. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDsubfiling/mercury/src/util/mercury_queue.h +0 -0
  785. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDsubfiling/mercury/src/util/mercury_thread.c +0 -0
  786. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDsubfiling/mercury/src/util/mercury_thread.h +0 -0
  787. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDsubfiling/mercury/src/util/mercury_thread_annotation.h +0 -0
  788. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDsubfiling/mercury/src/util/mercury_thread_condition.c +0 -0
  789. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDsubfiling/mercury/src/util/mercury_thread_condition.h +0 -0
  790. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDsubfiling/mercury/src/util/mercury_thread_mutex.c +0 -0
  791. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDsubfiling/mercury/src/util/mercury_thread_mutex.h +0 -0
  792. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDsubfiling/mercury/src/util/mercury_thread_pool.c +0 -0
  793. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDsubfiling/mercury/src/util/mercury_thread_pool.h +0 -0
  794. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDsubfiling/mercury/src/util/mercury_util_config.h +0 -0
  795. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDsubfiling/mercury/src/util/mercury_util_error.h +0 -0
  796. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDtest.c +0 -0
  797. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDwindows.c +0 -0
  798. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FDwindows.h +0 -0
  799. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FL.c +0 -0
  800. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FLmodule.h +0 -0
  801. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FLprivate.h +0 -0
  802. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FO.c +0 -0
  803. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FOprivate.h +0 -0
  804. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FS.c +0 -0
  805. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FScache.c +0 -0
  806. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FSdbg.c +0 -0
  807. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FSint.c +0 -0
  808. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FSmodule.h +0 -0
  809. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FSpkg.h +0 -0
  810. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FSprivate.h +0 -0
  811. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FSsection.c +0 -0
  812. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FSstat.c +0 -0
  813. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5FStest.c +0 -0
  814. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Faccum.c +0 -0
  815. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Fcwfs.c +0 -0
  816. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Fdbg.c +0 -0
  817. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Fdeprec.c +0 -0
  818. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Fefc.c +0 -0
  819. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Ffake.c +0 -0
  820. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Fint.c +0 -0
  821. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Fio.c +0 -0
  822. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Fmodule.h +0 -0
  823. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Fmount.c +0 -0
  824. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Fmpi.c +0 -0
  825. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Fpkg.h +0 -0
  826. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Fprivate.h +0 -0
  827. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Fpublic.h +0 -0
  828. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Fquery.c +0 -0
  829. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Fsfile.c +0 -0
  830. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Fspace.c +0 -0
  831. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Fsuper.c +0 -0
  832. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Fsuper_cache.c +0 -0
  833. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Ftest.c +0 -0
  834. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5G.c +0 -0
  835. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Gbtree2.c +0 -0
  836. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Gcache.c +0 -0
  837. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Gcompact.c +0 -0
  838. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Gdense.c +0 -0
  839. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Gdeprec.c +0 -0
  840. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Gent.c +0 -0
  841. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Gint.c +0 -0
  842. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Glink.c +0 -0
  843. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Gloc.c +0 -0
  844. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Gmodule.h +0 -0
  845. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Gname.c +0 -0
  846. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Gnode.c +0 -0
  847. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Gobj.c +0 -0
  848. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Goh.c +0 -0
  849. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Gpkg.h +0 -0
  850. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Gprivate.h +0 -0
  851. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Gpublic.h +0 -0
  852. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Groot.c +0 -0
  853. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Gstab.c +0 -0
  854. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Gtest.c +0 -0
  855. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Gtraverse.c +0 -0
  856. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5HF.c +0 -0
  857. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5HFbtree2.c +0 -0
  858. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5HFcache.c +0 -0
  859. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5HFdbg.c +0 -0
  860. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5HFdblock.c +0 -0
  861. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5HFdtable.c +0 -0
  862. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5HFhdr.c +0 -0
  863. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5HFhuge.c +0 -0
  864. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5HFiblock.c +0 -0
  865. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5HFiter.c +0 -0
  866. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5HFman.c +0 -0
  867. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5HFmodule.h +0 -0
  868. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5HFpkg.h +0 -0
  869. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5HFprivate.h +0 -0
  870. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5HFsection.c +0 -0
  871. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5HFspace.c +0 -0
  872. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5HFstat.c +0 -0
  873. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5HFtest.c +0 -0
  874. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5HFtiny.c +0 -0
  875. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5HG.c +0 -0
  876. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5HGcache.c +0 -0
  877. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5HGdbg.c +0 -0
  878. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5HGmodule.h +0 -0
  879. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5HGpkg.h +0 -0
  880. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5HGprivate.h +0 -0
  881. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5HGquery.c +0 -0
  882. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5HL.c +0 -0
  883. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5HLcache.c +0 -0
  884. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5HLdbg.c +0 -0
  885. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5HLdblk.c +0 -0
  886. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5HLint.c +0 -0
  887. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5HLmodule.h +0 -0
  888. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5HLpkg.h +0 -0
  889. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5HLprfx.c +0 -0
  890. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5HLprivate.h +0 -0
  891. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5I.c +0 -0
  892. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Idbg.c +0 -0
  893. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Idevelop.h +0 -0
  894. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Iint.c +0 -0
  895. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Imodule.h +0 -0
  896. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Ipkg.h +0 -0
  897. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Iprivate.h +0 -0
  898. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Ipublic.h +0 -0
  899. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Itest.c +0 -0
  900. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5L.c +0 -0
  901. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Ldeprec.c +0 -0
  902. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Ldevelop.h +0 -0
  903. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Lexternal.c +0 -0
  904. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Lint.c +0 -0
  905. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Lmodule.h +0 -0
  906. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Lpkg.h +0 -0
  907. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Lprivate.h +0 -0
  908. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Lpublic.h +0 -0
  909. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5M.c +0 -0
  910. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5MF.c +0 -0
  911. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5MFaggr.c +0 -0
  912. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5MFdbg.c +0 -0
  913. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5MFmodule.h +0 -0
  914. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5MFpkg.h +0 -0
  915. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5MFprivate.h +0 -0
  916. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5MFsection.c +0 -0
  917. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5MM.c +0 -0
  918. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5MMprivate.h +0 -0
  919. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5MMpublic.h +0 -0
  920. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Mmodule.h +0 -0
  921. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Mpkg.h +0 -0
  922. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Mprivate.h +0 -0
  923. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Mpublic.h +0 -0
  924. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5O.c +0 -0
  925. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Oainfo.c +0 -0
  926. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Oalloc.c +0 -0
  927. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Oattr.c +0 -0
  928. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Oattribute.c +0 -0
  929. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Obogus.c +0 -0
  930. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Obtreek.c +0 -0
  931. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Ocache.c +0 -0
  932. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Ocache_image.c +0 -0
  933. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Ochunk.c +0 -0
  934. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Ocont.c +0 -0
  935. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Ocopy.c +0 -0
  936. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Ocopy_ref.c +0 -0
  937. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Odbg.c +0 -0
  938. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Odeprec.c +0 -0
  939. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Odrvinfo.c +0 -0
  940. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Odtype.c +0 -0
  941. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Oefl.c +0 -0
  942. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Ofill.c +0 -0
  943. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Oflush.c +0 -0
  944. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Ofsinfo.c +0 -0
  945. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Oginfo.c +0 -0
  946. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Oint.c +0 -0
  947. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Olayout.c +0 -0
  948. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Olinfo.c +0 -0
  949. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Olink.c +0 -0
  950. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Omessage.c +0 -0
  951. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Omodule.h +0 -0
  952. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Omtime.c +0 -0
  953. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Oname.c +0 -0
  954. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Onull.c +0 -0
  955. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Opkg.h +0 -0
  956. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Opline.c +0 -0
  957. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Oprivate.h +0 -0
  958. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Opublic.h +0 -0
  959. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Orefcount.c +0 -0
  960. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Osdspace.c +0 -0
  961. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Oshared.c +0 -0
  962. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Oshared.h +0 -0
  963. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Oshmesg.c +0 -0
  964. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Ostab.c +0 -0
  965. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Otest.c +0 -0
  966. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Ounknown.c +0 -0
  967. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5P.c +0 -0
  968. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5PB.c +0 -0
  969. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5PBmodule.h +0 -0
  970. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5PBpkg.h +0 -0
  971. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5PBprivate.h +0 -0
  972. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5PL.c +0 -0
  973. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5PLextern.h +0 -0
  974. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5PLint.c +0 -0
  975. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5PLmodule.h +0 -0
  976. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5PLpath.c +0 -0
  977. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5PLpkg.h +0 -0
  978. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5PLplugin_cache.c +0 -0
  979. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5PLprivate.h +0 -0
  980. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5PLpublic.h +0 -0
  981. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Pacpl.c +0 -0
  982. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Pdapl.c +0 -0
  983. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Pdcpl.c +0 -0
  984. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Pdeprec.c +0 -0
  985. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Pdxpl.c +0 -0
  986. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Pencdec.c +0 -0
  987. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Pfapl.c +0 -0
  988. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Pfcpl.c +0 -0
  989. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Pfmpl.c +0 -0
  990. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Pgcpl.c +0 -0
  991. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Pint.c +0 -0
  992. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Plapl.c +0 -0
  993. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Plcpl.c +0 -0
  994. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Pmapl.c +0 -0
  995. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Pmcpl.c +0 -0
  996. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Pmodule.h +0 -0
  997. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Pocpl.c +0 -0
  998. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Pocpypl.c +0 -0
  999. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Ppkg.h +0 -0
  1000. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Pprivate.h +0 -0
  1001. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Ppublic.h +0 -0
  1002. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Pstrcpl.c +0 -0
  1003. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Ptest.c +0 -0
  1004. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5R.c +0 -0
  1005. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5RS.c +0 -0
  1006. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5RSmodule.h +0 -0
  1007. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5RSprivate.h +0 -0
  1008. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Rdeprec.c +0 -0
  1009. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Rint.c +0 -0
  1010. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Rmodule.h +0 -0
  1011. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Rpkg.h +0 -0
  1012. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Rprivate.h +0 -0
  1013. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Rpublic.h +0 -0
  1014. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5S.c +0 -0
  1015. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5SL.c +0 -0
  1016. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5SLmodule.h +0 -0
  1017. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5SLprivate.h +0 -0
  1018. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5SM.c +0 -0
  1019. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5SMbtree2.c +0 -0
  1020. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5SMcache.c +0 -0
  1021. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5SMmessage.c +0 -0
  1022. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5SMmodule.h +0 -0
  1023. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5SMpkg.h +0 -0
  1024. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5SMprivate.h +0 -0
  1025. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5SMtest.c +0 -0
  1026. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Sall.c +0 -0
  1027. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Sdbg.c +0 -0
  1028. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Sdeprec.c +0 -0
  1029. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Shyper.c +0 -0
  1030. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Smodule.h +0 -0
  1031. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Smpio.c +0 -0
  1032. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Snone.c +0 -0
  1033. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Spkg.h +0 -0
  1034. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Spoint.c +0 -0
  1035. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Sprivate.h +0 -0
  1036. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Spublic.h +0 -0
  1037. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Sselect.c +0 -0
  1038. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Stest.c +0 -0
  1039. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5T.c +0 -0
  1040. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5TS.c +0 -0
  1041. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5TSdevelop.h +0 -0
  1042. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5TSprivate.h +0 -0
  1043. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Tarray.c +0 -0
  1044. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Tbit.c +0 -0
  1045. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Tcommit.c +0 -0
  1046. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Tcompound.c +0 -0
  1047. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Tconv.c +0 -0
  1048. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Tcset.c +0 -0
  1049. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Tdbg.c +0 -0
  1050. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Tdeprec.c +0 -0
  1051. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Tdevelop.h +0 -0
  1052. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Tenum.c +0 -0
  1053. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Tfields.c +0 -0
  1054. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Tfixed.c +0 -0
  1055. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Tfloat.c +0 -0
  1056. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Tinit_float.c +0 -0
  1057. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Tmodule.h +0 -0
  1058. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Tnative.c +0 -0
  1059. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Toffset.c +0 -0
  1060. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Toh.c +0 -0
  1061. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Topaque.c +0 -0
  1062. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Torder.c +0 -0
  1063. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Tpad.c +0 -0
  1064. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Tpkg.h +0 -0
  1065. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Tprecis.c +0 -0
  1066. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Tprivate.h +0 -0
  1067. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Tpublic.h +0 -0
  1068. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Tref.c +0 -0
  1069. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Tstrpad.c +0 -0
  1070. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Tvisit.c +0 -0
  1071. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Tvlen.c +0 -0
  1072. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5UC.c +0 -0
  1073. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5UCprivate.h +0 -0
  1074. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5VL.c +0 -0
  1075. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5VLcallback.c +0 -0
  1076. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5VLconnector.h +0 -0
  1077. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5VLconnector_passthru.h +0 -0
  1078. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5VLdyn_ops.c +0 -0
  1079. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5VLint.c +0 -0
  1080. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5VLmodule.h +0 -0
  1081. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5VLnative.c +0 -0
  1082. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5VLnative.h +0 -0
  1083. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5VLnative_attr.c +0 -0
  1084. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5VLnative_blob.c +0 -0
  1085. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5VLnative_dataset.c +0 -0
  1086. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5VLnative_datatype.c +0 -0
  1087. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5VLnative_file.c +0 -0
  1088. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5VLnative_group.c +0 -0
  1089. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5VLnative_introspect.c +0 -0
  1090. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5VLnative_link.c +0 -0
  1091. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5VLnative_object.c +0 -0
  1092. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5VLnative_private.h +0 -0
  1093. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5VLnative_token.c +0 -0
  1094. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5VLpassthru.c +0 -0
  1095. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5VLpassthru.h +0 -0
  1096. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5VLpkg.h +0 -0
  1097. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5VLprivate.h +0 -0
  1098. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5VLpublic.h +0 -0
  1099. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5VLtest.c +0 -0
  1100. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5VM.c +0 -0
  1101. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5VMprivate.h +0 -0
  1102. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5WB.c +0 -0
  1103. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5WBprivate.h +0 -0
  1104. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Z.c +0 -0
  1105. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Zdeflate.c +0 -0
  1106. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Zdevelop.h +0 -0
  1107. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Zfletcher32.c +0 -0
  1108. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Zmodule.h +0 -0
  1109. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Znbit.c +0 -0
  1110. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Zpkg.h +0 -0
  1111. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Zprivate.h +0 -0
  1112. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Zpublic.h +0 -0
  1113. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Zscaleoffset.c +0 -0
  1114. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Zshuffle.c +0 -0
  1115. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Zszip.c +0 -0
  1116. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5Ztrans.c +0 -0
  1117. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5api_adpt.h +0 -0
  1118. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5build_settings.autotools.c.in +0 -0
  1119. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5build_settings.cmake.c.in +0 -0
  1120. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5build_settings.off.c.in +0 -0
  1121. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5checksum.c +0 -0
  1122. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5dbg.c +0 -0
  1123. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5encode.h +0 -0
  1124. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5err.txt +0 -0
  1125. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5module.h +0 -0
  1126. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5mpi.c +0 -0
  1127. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5overflow.txt +0 -0
  1128. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5private.h +0 -0
  1129. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5public.h +0 -0
  1130. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5system.c +0 -0
  1131. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5timer.c +0 -0
  1132. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5trace.c +0 -0
  1133. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5vers.txt +0 -0
  1134. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/H5win32defs.h +0 -0
  1135. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/Makefile.am +0 -0
  1136. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/hdf5.h +0 -0
  1137. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/libhdf5.settings.in +0 -0
  1138. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/hdf5/src/uthash.h +0 -0
  1139. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json/LICENSE.MIT +0 -0
  1140. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/LICENSE +0 -0
  1141. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/json_file_module.F90 +0 -0
  1142. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/json_get_scalar_by_path.inc +0 -0
  1143. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/json_get_vec_by_path.inc +0 -0
  1144. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/json_get_vec_by_path_alloc.inc +0 -0
  1145. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/json_initialize_arguments.inc +0 -0
  1146. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/json_initialize_dummy_arguments.inc +0 -0
  1147. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/json_kinds.F90 +0 -0
  1148. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/json_macros.inc +0 -0
  1149. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/json_module.F90 +0 -0
  1150. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/json_parameters.F90 +0 -0
  1151. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/json_string_utilities.F90 +0 -0
  1152. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/json_value_module.F90 +0 -0
  1153. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/tests/introspection/test_iso_10646_support.f90 +0 -0
  1154. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/tests/jf_test_01.F90 +0 -0
  1155. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/tests/jf_test_02.F90 +0 -0
  1156. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/tests/jf_test_03.F90 +0 -0
  1157. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/tests/jf_test_04.F90 +0 -0
  1158. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/tests/jf_test_05.F90 +0 -0
  1159. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/tests/jf_test_06.F90 +0 -0
  1160. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/tests/jf_test_07.F90 +0 -0
  1161. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/tests/jf_test_08.F90 +0 -0
  1162. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/tests/jf_test_09.F90 +0 -0
  1163. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/tests/jf_test_10.F90 +0 -0
  1164. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/tests/jf_test_11.F90 +0 -0
  1165. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/tests/jf_test_12.F90 +0 -0
  1166. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/tests/jf_test_13.F90 +0 -0
  1167. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/tests/jf_test_14.F90 +0 -0
  1168. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/tests/jf_test_15.F90 +0 -0
  1169. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/tests/jf_test_16.F90 +0 -0
  1170. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/tests/jf_test_17.F90 +0 -0
  1171. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/tests/jf_test_18.F90 +0 -0
  1172. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/tests/jf_test_19.F90 +0 -0
  1173. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/tests/jf_test_20.F90 +0 -0
  1174. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/tests/jf_test_21.F90 +0 -0
  1175. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/tests/jf_test_22.F90 +0 -0
  1176. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/tests/jf_test_23.F90 +0 -0
  1177. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/tests/jf_test_24.F90 +0 -0
  1178. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/tests/jf_test_25.F90 +0 -0
  1179. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/tests/jf_test_26.F90 +0 -0
  1180. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/tests/jf_test_27.F90 +0 -0
  1181. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/tests/jf_test_28.F90 +0 -0
  1182. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/tests/jf_test_29.F90 +0 -0
  1183. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/tests/jf_test_30.F90 +0 -0
  1184. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/tests/jf_test_31.F90 +0 -0
  1185. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/tests/jf_test_32.F90 +0 -0
  1186. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/tests/jf_test_33.F90 +0 -0
  1187. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/tests/jf_test_34.F90 +0 -0
  1188. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/tests/jf_test_35.F90 +0 -0
  1189. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/tests/jf_test_36.F90 +0 -0
  1190. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/tests/jf_test_37.F90 +0 -0
  1191. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/tests/jf_test_38.F90 +0 -0
  1192. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/tests/jf_test_39.F90 +0 -0
  1193. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/tests/jf_test_40.F90 +0 -0
  1194. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/tests/jf_test_41.F90 +0 -0
  1195. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/tests/jf_test_42.F90 +0 -0
  1196. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/tests/jf_test_43.F90 +0 -0
  1197. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/tests/jf_test_44.F90 +0 -0
  1198. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/tests/jf_test_45.F90 +0 -0
  1199. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/tests/jf_test_46.F90 +0 -0
  1200. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/tests/jf_test_47.F90 +0 -0
  1201. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/tests/jf_test_48.F90 +0 -0
  1202. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/json-fortran/src/tests/jf_test_49.F90 +0 -0
  1203. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/.git +0 -0
  1204. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/.github/ISSUE_TEMPLATE/all-other.yml +0 -0
  1205. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/.github/ISSUE_TEMPLATE/bug-report.yml +0 -0
  1206. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/.github/workflows/ci.yml +0 -0
  1207. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/.github/workflows/nvcc-win.yml +0 -0
  1208. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/.gitignore +0 -0
  1209. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/.gitmodules +0 -0
  1210. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/.readthedocs.yaml +0 -0
  1211. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/CMakeLists.txt +0 -0
  1212. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/LICENSE +0 -0
  1213. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/README.md +0 -0
  1214. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/cmake/collect-symbols-pypy.py +0 -0
  1215. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/cmake/collect-symbols.py +0 -0
  1216. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/cmake/darwin-ld-cpython.sym +0 -0
  1217. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/cmake/darwin-ld-pypy.sym +0 -0
  1218. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/cmake/darwin-python-path.py +0 -0
  1219. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/docs/api_bazel.rst +0 -0
  1220. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/docs/api_cmake.rst +0 -0
  1221. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/docs/api_core.rst +0 -0
  1222. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/docs/api_extra.rst +0 -0
  1223. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/docs/basics.rst +0 -0
  1224. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/docs/bazel.rst +0 -0
  1225. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/docs/benchmark.rst +0 -0
  1226. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/docs/building.rst +0 -0
  1227. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/docs/conf.py +0 -0
  1228. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/docs/cppyy.h +0 -0
  1229. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/docs/exceptions.rst +0 -0
  1230. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/docs/faq.rst +0 -0
  1231. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/docs/free_threaded.rst +0 -0
  1232. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/docs/functions.rst +0 -0
  1233. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/docs/images/binding-dark.svg +0 -0
  1234. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/docs/images/binding-light.svg +0 -0
  1235. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/docs/images/caster-dark.svg +0 -0
  1236. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/docs/images/caster-light.svg +0 -0
  1237. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/docs/images/logo.jpg +0 -0
  1238. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/docs/images/perf.svg +0 -0
  1239. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/docs/images/sizes.svg +0 -0
  1240. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/docs/images/times.svg +0 -0
  1241. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/docs/images/wrapper-dark.svg +0 -0
  1242. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/docs/images/wrapper-light.svg +0 -0
  1243. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/docs/index.rst +0 -0
  1244. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/docs/installing.rst +0 -0
  1245. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/docs/lowlevel.rst +0 -0
  1246. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/docs/meson.rst +0 -0
  1247. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/docs/microbenchmark.ipynb +0 -0
  1248. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/docs/ndarray.rst +0 -0
  1249. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/docs/ndarray_index.rst +0 -0
  1250. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/docs/ownership.rst +0 -0
  1251. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/docs/ownership_adv.rst +0 -0
  1252. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/docs/packaging.rst +0 -0
  1253. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/docs/porting.rst +0 -0
  1254. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/docs/pypy.rst +0 -0
  1255. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/docs/refleaks.rst +0 -0
  1256. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/docs/release.rst +0 -0
  1257. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/docs/requirements.txt +0 -0
  1258. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/docs/typing.rst +0 -0
  1259. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/docs/utilities.rst +0 -0
  1260. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/docs/why.rst +0 -0
  1261. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/ext/robin_map/.clang-format +0 -0
  1262. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/ext/robin_map/.codecov.yml +0 -0
  1263. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/ext/robin_map/.git +0 -0
  1264. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/ext/robin_map/.github/workflows/ci.yml +0 -0
  1265. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/ext/robin_map/CMakeLists.txt +0 -0
  1266. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/ext/robin_map/LICENSE +0 -0
  1267. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/ext/robin_map/README.md +0 -0
  1268. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/ext/robin_map/cmake/tsl-robin-mapConfig.cmake.in +0 -0
  1269. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/ext/robin_map/doxygen.conf +0 -0
  1270. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/ext/robin_map/include/tsl/robin_growth_policy.h +0 -0
  1271. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/ext/robin_map/include/tsl/robin_hash.h +0 -0
  1272. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/ext/robin_map/include/tsl/robin_map.h +0 -0
  1273. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/ext/robin_map/include/tsl/robin_set.h +0 -0
  1274. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/ext/robin_map/tests/CMakeLists.txt +0 -0
  1275. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/ext/robin_map/tests/custom_allocator_tests.cpp +0 -0
  1276. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/ext/robin_map/tests/main.cpp +0 -0
  1277. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/ext/robin_map/tests/policy_tests.cpp +0 -0
  1278. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/ext/robin_map/tests/robin_map_tests.cpp +0 -0
  1279. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/ext/robin_map/tests/robin_set_tests.cpp +0 -0
  1280. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/ext/robin_map/tests/utils.h +0 -0
  1281. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/ext/robin_map/tsl-robin-map.natvis +0 -0
  1282. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/include/nanobind/eigen/dense.h +0 -0
  1283. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/include/nanobind/eigen/sparse.h +0 -0
  1284. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/include/nanobind/eval.h +0 -0
  1285. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/include/nanobind/intrusive/counter.h +0 -0
  1286. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/include/nanobind/intrusive/counter.inl +0 -0
  1287. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/include/nanobind/intrusive/ref.h +0 -0
  1288. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/include/nanobind/make_iterator.h +0 -0
  1289. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/include/nanobind/nanobind.h +0 -0
  1290. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/include/nanobind/nb_accessor.h +0 -0
  1291. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/include/nanobind/nb_attr.h +0 -0
  1292. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/include/nanobind/nb_call.h +0 -0
  1293. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/include/nanobind/nb_defs.h +0 -0
  1294. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/include/nanobind/nb_descr.h +0 -0
  1295. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/include/nanobind/nb_enums.h +0 -0
  1296. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/include/nanobind/nb_error.h +0 -0
  1297. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/include/nanobind/nb_func.h +0 -0
  1298. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/include/nanobind/nb_lib.h +0 -0
  1299. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/include/nanobind/nb_misc.h +0 -0
  1300. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/include/nanobind/nb_traits.h +0 -0
  1301. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/include/nanobind/nb_tuple.h +0 -0
  1302. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/include/nanobind/operators.h +0 -0
  1303. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/include/nanobind/stl/array.h +0 -0
  1304. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/include/nanobind/stl/bind_map.h +0 -0
  1305. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/include/nanobind/stl/bind_vector.h +0 -0
  1306. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/include/nanobind/stl/chrono.h +0 -0
  1307. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/include/nanobind/stl/complex.h +0 -0
  1308. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/include/nanobind/stl/detail/chrono.h +0 -0
  1309. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/include/nanobind/stl/detail/nb_array.h +0 -0
  1310. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/include/nanobind/stl/detail/nb_dict.h +0 -0
  1311. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/include/nanobind/stl/detail/nb_list.h +0 -0
  1312. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/include/nanobind/stl/detail/nb_optional.h +0 -0
  1313. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/include/nanobind/stl/detail/nb_set.h +0 -0
  1314. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/include/nanobind/stl/detail/traits.h +0 -0
  1315. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/include/nanobind/stl/filesystem.h +0 -0
  1316. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/include/nanobind/stl/function.h +0 -0
  1317. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/include/nanobind/stl/list.h +0 -0
  1318. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/include/nanobind/stl/map.h +0 -0
  1319. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/include/nanobind/stl/optional.h +0 -0
  1320. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/include/nanobind/stl/pair.h +0 -0
  1321. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/include/nanobind/stl/set.h +0 -0
  1322. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/include/nanobind/stl/shared_ptr.h +0 -0
  1323. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/include/nanobind/stl/string.h +0 -0
  1324. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/include/nanobind/stl/string_view.h +0 -0
  1325. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/include/nanobind/stl/tuple.h +0 -0
  1326. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/include/nanobind/stl/unique_ptr.h +0 -0
  1327. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/include/nanobind/stl/unordered_map.h +0 -0
  1328. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/include/nanobind/stl/unordered_set.h +0 -0
  1329. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/include/nanobind/stl/vector.h +0 -0
  1330. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/include/nanobind/trampoline.h +0 -0
  1331. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/include/nanobind/typing.h +0 -0
  1332. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/pyproject.toml +0 -0
  1333. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/src/__init__.py +0 -0
  1334. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/src/__main__.py +0 -0
  1335. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/src/buffer.h +0 -0
  1336. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/src/error.cpp +0 -0
  1337. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/src/hash.h +0 -0
  1338. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/src/implicit.cpp +0 -0
  1339. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/src/nb_abi.h +0 -0
  1340. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/src/nb_combined.cpp +0 -0
  1341. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/src/nb_ft.cpp +0 -0
  1342. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/src/nb_ft.h +0 -0
  1343. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/src/nb_static_property.cpp +0 -0
  1344. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/src/version.py +0 -0
  1345. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/common.py +0 -0
  1346. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/conftest.py +0 -0
  1347. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/inter_module.cpp +0 -0
  1348. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/inter_module.h +0 -0
  1349. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/object_py.h +0 -0
  1350. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/pattern_file.nb +0 -0
  1351. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/py_recursive_stub_test/__init__.py +0 -0
  1352. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/py_recursive_stub_test/__init__.pyi.ref +0 -0
  1353. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/py_recursive_stub_test/bar.py +0 -0
  1354. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/py_recursive_stub_test/bar.pyi.ref +0 -0
  1355. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/py_stub_test.py +0 -0
  1356. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/py_stub_test.pyi.ref +0 -0
  1357. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/test_accessor.cpp +0 -0
  1358. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/test_accessor.py +0 -0
  1359. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/test_callbacks.cpp +0 -0
  1360. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/test_callbacks.py +0 -0
  1361. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/test_chrono.cpp +0 -0
  1362. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/test_chrono.py +0 -0
  1363. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/test_classes.h +0 -0
  1364. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/test_classes.py +0 -0
  1365. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/test_classes_extra.cpp +0 -0
  1366. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/test_eigen.cpp +0 -0
  1367. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/test_enum.cpp +0 -0
  1368. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/test_enum.py +0 -0
  1369. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/test_eval.cpp +0 -0
  1370. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/test_eval.py +0 -0
  1371. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/test_exception.cpp +0 -0
  1372. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/test_exception.py +0 -0
  1373. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/test_holders.cpp +0 -0
  1374. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/test_holders.py +0 -0
  1375. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/test_inter_module.py +0 -0
  1376. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/test_inter_module_1.cpp +0 -0
  1377. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/test_inter_module_2.cpp +0 -0
  1378. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/test_intrusive.cpp +0 -0
  1379. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/test_intrusive.py +0 -0
  1380. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/test_intrusive_impl.cpp +0 -0
  1381. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/test_issue.cpp +0 -0
  1382. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/test_issue.py +0 -0
  1383. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/test_jax.cpp +0 -0
  1384. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/test_jax.py +0 -0
  1385. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/test_jax_ext.pyi.ref +0 -0
  1386. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/test_make_iterator.cpp +0 -0
  1387. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/test_make_iterator.py +0 -0
  1388. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/test_make_iterator_ext.pyi.ref +0 -0
  1389. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/test_prefix_module/__init__.py +0 -0
  1390. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/test_prefix_module/__init__.pyi.ref +0 -0
  1391. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/test_prefix_module/prefix.py +0 -0
  1392. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/test_prefix_module/prefix.pyi.ref +0 -0
  1393. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/test_prefix_module/prefixabc.py +0 -0
  1394. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/test_prefix_module/prefixabc.pyi.ref +0 -0
  1395. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/test_specialization.py +0 -0
  1396. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/test_stl_bind_map.cpp +0 -0
  1397. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/test_stl_bind_map.py +0 -0
  1398. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/test_stl_bind_vector.cpp +0 -0
  1399. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/test_stl_bind_vector.py +0 -0
  1400. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/test_tensorflow.cpp +0 -0
  1401. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/test_tensorflow.py +0 -0
  1402. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/test_tensorflow_ext.pyi.ref +0 -0
  1403. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/test_thread.cpp +0 -0
  1404. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/test_thread.py +0 -0
  1405. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/test_typing.cpp +0 -0
  1406. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/test_typing.py +0 -0
  1407. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind/tests/test_typing_ext.pyi.ref +0 -0
  1408. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind_json/.git +0 -0
  1409. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind_json/.github/workflows/testing.yml +0 -0
  1410. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind_json/.gitignore +0 -0
  1411. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind_json/CMakeLists.txt +0 -0
  1412. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind_json/LICENSE +0 -0
  1413. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind_json/README.md +0 -0
  1414. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind_json/include/nanobind_json/nanobind_json.h +0 -0
  1415. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind_json/nanobind_jsonConfig.cmake.in +0 -0
  1416. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind_json/tests/CMakeLists.txt +0 -0
  1417. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind_json/tests/test_json.cpp +0 -0
  1418. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/nanobind_json/tests/test_json.py +0 -0
  1419. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/CMakeLists.txt +0 -0
  1420. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/COPYRIGHT +0 -0
  1421. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/config.h.cmake.in +0 -0
  1422. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/include/fbits.h +0 -0
  1423. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/include/hdf5dispatch.h +0 -0
  1424. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/include/hdf5internal.h +0 -0
  1425. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/include/nc.h +0 -0
  1426. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/include/nc3dispatch.h +0 -0
  1427. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/include/nc3internal.h +0 -0
  1428. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/include/nc4dispatch.h +0 -0
  1429. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/include/nc4internal.h +0 -0
  1430. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/include/nc_logging.h +0 -0
  1431. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/include/nc_provenance.h +0 -0
  1432. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/include/ncauth.h +0 -0
  1433. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/include/ncbytes.h +0 -0
  1434. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/include/ncconfigure.h +0 -0
  1435. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/include/nccrc.h +0 -0
  1436. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/include/ncdimscale.h +0 -0
  1437. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/include/ncdispatch.h +0 -0
  1438. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/include/ncexternl.h +0 -0
  1439. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/include/nchashmap.h +0 -0
  1440. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/include/nchttp.h +0 -0
  1441. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/include/ncindex.h +0 -0
  1442. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/include/nclist.h +0 -0
  1443. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/include/nclog.h +0 -0
  1444. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/include/ncmodel.h +0 -0
  1445. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/include/ncoffsets.h +0 -0
  1446. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/include/ncpathmgr.h +0 -0
  1447. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/include/ncrc.h +0 -0
  1448. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/include/ncs3sdk.h +0 -0
  1449. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/include/ncuri.h +0 -0
  1450. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/include/ncutf8.h +0 -0
  1451. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/include/ncxml.h +0 -0
  1452. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/include/netcdf.h +0 -0
  1453. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/include/netcdf_aux.h +0 -0
  1454. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/include/netcdf_dispatch.h.in +0 -0
  1455. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/include/netcdf_f.h +0 -0
  1456. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/include/netcdf_filter.h +0 -0
  1457. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/include/netcdf_mem.h +0 -0
  1458. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/include/netcdf_meta.h.in +0 -0
  1459. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/include/onstack.h +0 -0
  1460. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/include/rnd.h +0 -0
  1461. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libdispatch/datt.c +0 -0
  1462. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libdispatch/dattget.c +0 -0
  1463. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libdispatch/dattinq.c +0 -0
  1464. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libdispatch/dattput.c +0 -0
  1465. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libdispatch/dauth.c +0 -0
  1466. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libdispatch/daux.c +0 -0
  1467. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libdispatch/dcompound.c +0 -0
  1468. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libdispatch/dcopy.c +0 -0
  1469. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libdispatch/dcrc64.c +0 -0
  1470. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libdispatch/ddim.c +0 -0
  1471. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libdispatch/ddispatch.c +0 -0
  1472. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libdispatch/denum.c +0 -0
  1473. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libdispatch/derror.c +0 -0
  1474. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libdispatch/dfile.c +0 -0
  1475. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libdispatch/dfilter.c +0 -0
  1476. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libdispatch/dgroup.c +0 -0
  1477. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libdispatch/dinfermodel.c +0 -0
  1478. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libdispatch/dinstance.c +0 -0
  1479. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libdispatch/dinstance_intern.c +0 -0
  1480. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libdispatch/dmissing.c +0 -0
  1481. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libdispatch/dnotnc4.c +0 -0
  1482. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libdispatch/doffsets.c +0 -0
  1483. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libdispatch/dopaque.c +0 -0
  1484. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libdispatch/dpathmgr.c +0 -0
  1485. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libdispatch/drc.c +0 -0
  1486. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libdispatch/ds3util.c +0 -0
  1487. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libdispatch/dstring.c +0 -0
  1488. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libdispatch/dtype.c +0 -0
  1489. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libdispatch/dutf8.c +0 -0
  1490. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libdispatch/dutil.c +0 -0
  1491. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libdispatch/dvar.c +0 -0
  1492. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libdispatch/dvarget.c +0 -0
  1493. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libdispatch/dvarinq.c +0 -0
  1494. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libdispatch/dvarput.c +0 -0
  1495. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libdispatch/dvlen.c +0 -0
  1496. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libdispatch/nc.c +0 -0
  1497. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libdispatch/ncbytes.c +0 -0
  1498. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libdispatch/nchashmap.c +0 -0
  1499. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libdispatch/nclist.c +0 -0
  1500. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libdispatch/nclistmgr.c +0 -0
  1501. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libdispatch/nclog.c +0 -0
  1502. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libdispatch/ncuri.c +0 -0
  1503. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libdispatch/utf8proc.c +0 -0
  1504. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libdispatch/utf8proc.h +0 -0
  1505. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libdispatch/utf8proc_data.c +0 -0
  1506. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libhdf5/CMakeLists.txt +0 -0
  1507. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libhdf5/H5FDhttp.c +0 -0
  1508. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libhdf5/H5FDhttp.h +0 -0
  1509. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libhdf5/Makefile.am +0 -0
  1510. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libhdf5/hdf5attr.c +0 -0
  1511. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libhdf5/hdf5create.c +0 -0
  1512. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libhdf5/hdf5debug.c +0 -0
  1513. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libhdf5/hdf5debug.h +0 -0
  1514. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libhdf5/hdf5dim.c +0 -0
  1515. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libhdf5/hdf5dispatch.c +0 -0
  1516. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libhdf5/hdf5err.h +0 -0
  1517. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libhdf5/hdf5file.c +0 -0
  1518. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libhdf5/hdf5filter.c +0 -0
  1519. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libhdf5/hdf5grp.c +0 -0
  1520. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libhdf5/hdf5internal.c +0 -0
  1521. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libhdf5/hdf5open.c +0 -0
  1522. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libhdf5/hdf5set_format_compatibility.c +0 -0
  1523. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libhdf5/hdf5type.c +0 -0
  1524. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libhdf5/hdf5var.c +0 -0
  1525. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libhdf5/nc4hdf.c +0 -0
  1526. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libhdf5/nc4info.c +0 -0
  1527. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libhdf5/nc4mem.c +0 -0
  1528. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libhdf5/nc4memcb.c +0 -0
  1529. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/liblib/nc_initialize.c +0 -0
  1530. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libsrc/attr.m4 +0 -0
  1531. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libsrc/dim.c +0 -0
  1532. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libsrc/memio.c +0 -0
  1533. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libsrc/nc3dispatch.c +0 -0
  1534. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libsrc/nc3internal.c +0 -0
  1535. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libsrc/ncio.c +0 -0
  1536. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libsrc/ncio.h +0 -0
  1537. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libsrc/ncx.h +0 -0
  1538. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libsrc/ncx.m4 +0 -0
  1539. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libsrc/posixio.c +0 -0
  1540. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libsrc/putget.m4 +0 -0
  1541. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libsrc/v1hpg.c +0 -0
  1542. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libsrc/var.c +0 -0
  1543. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libsrc4/nc4attr.c +0 -0
  1544. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libsrc4/nc4cache.c +0 -0
  1545. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libsrc4/nc4dim.c +0 -0
  1546. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libsrc4/nc4dispatch.c +0 -0
  1547. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libsrc4/nc4filters.c +0 -0
  1548. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libsrc4/nc4grp.c +0 -0
  1549. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libsrc4/nc4internal.c +0 -0
  1550. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libsrc4/nc4type.c +0 -0
  1551. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libsrc4/nc4var.c +0 -0
  1552. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libsrc4/ncfunc.c +0 -0
  1553. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-c/libsrc4/ncindex.c +0 -0
  1554. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-fortran/CMakeExtras/MatchNetCDFFortranTypes.cmake +0 -0
  1555. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-fortran/fortran/module_netcdf_nc_interfaces.F90 +0 -0
  1556. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-fortran/fortran/module_netcdf_nf_data.F90 +0 -0
  1557. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-fortran/fortran/module_netcdf_nf_interfaces.F90 +0 -0
  1558. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-fortran/fortran/netcdf4.F90 +0 -0
  1559. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-fortran/fortran/netcdf4_externals.F90 +0 -0
  1560. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-fortran/fortran/netcdf4_file.F90 +0 -0
  1561. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-fortran/fortran/netcdf4_overloads.F90 +0 -0
  1562. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-fortran/fortran/netcdf4_variables.F90 +0 -0
  1563. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-fortran/fortran/netcdf4_visibility.F90 +0 -0
  1564. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-fortran/fortran/netcdf_constants.F90 +0 -0
  1565. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-fortran/fortran/netcdf_dims.F90 +0 -0
  1566. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-fortran/fortran/netcdf_externals.F90 +0 -0
  1567. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-fortran/fortran/netcdf_file.F90 +0 -0
  1568. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-fortran/fortran/netcdf_overloads.F90 +0 -0
  1569. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-fortran/fortran/netcdf_text_variables.F90 +0 -0
  1570. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-fortran/fortran/netcdf_variables.F90 +0 -0
  1571. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-fortran/fortran/netcdf_visibility.F90 +0 -0
  1572. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-fortran/fortran/nf_attio.F90 +0 -0
  1573. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-fortran/fortran/nf_control.F90 +0 -0
  1574. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-fortran/fortran/nf_dim.F90 +0 -0
  1575. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-fortran/fortran/nf_genatt.F90 +0 -0
  1576. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-fortran/fortran/nf_geninq.F90 +0 -0
  1577. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-fortran/fortran/nf_genvar.F90 +0 -0
  1578. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-fortran/fortran/nf_lib.c +0 -0
  1579. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-fortran/fortran/nf_misc.F90 +0 -0
  1580. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-fortran/fortran/nf_nc_noparallel.F90 +0 -0
  1581. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-fortran/fortran/nf_var1io.F90 +0 -0
  1582. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-fortran/fortran/nf_varaio.F90 +0 -0
  1583. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-fortran/fortran/nf_varmio.F90 +0 -0
  1584. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-fortran/fortran/nf_varsio.F90 +0 -0
  1585. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/netcdf-fortran/fortran/typeSizes.F90 +0 -0
  1586. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/optional/COPYING +0 -0
  1587. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/optional/include/tl/optional.hpp +0 -0
  1588. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/COPYING +0 -0
  1589. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/Makefile.wrf_partmc +0 -0
  1590. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/aero_binned.F90 +0 -0
  1591. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/aero_component.F90 +0 -0
  1592. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/aero_data.F90 +0 -0
  1593. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/aero_dist.F90 +0 -0
  1594. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/aero_info.F90 +0 -0
  1595. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/aero_info_array.F90 +0 -0
  1596. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/aero_mode.F90 +0 -0
  1597. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/aero_particle.F90 +0 -0
  1598. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/aero_particle_array.F90 +0 -0
  1599. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/aero_sorted.F90 +0 -0
  1600. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/aero_state.F90 +0 -0
  1601. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/aero_weight.F90 +0 -0
  1602. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/aero_weight_array.F90 +0 -0
  1603. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/bin_average_comp.F90 +0 -0
  1604. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/bin_average_size.F90 +0 -0
  1605. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/bin_grid.F90 +0 -0
  1606. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/camp_interface.F90 +0 -0
  1607. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/chamber.F90 +0 -0
  1608. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/coag_kernel.F90 +0 -0
  1609. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/coag_kernel_additive.F90 +0 -0
  1610. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/coag_kernel_brown.F90 +0 -0
  1611. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/coag_kernel_brown_cont.F90 +0 -0
  1612. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/coag_kernel_brown_free.F90 +0 -0
  1613. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/coag_kernel_constant.F90 +0 -0
  1614. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/coag_kernel_sedi.F90 +0 -0
  1615. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/coag_kernel_zero.F90 +0 -0
  1616. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/coagulation.F90 +0 -0
  1617. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/coagulation_dist.F90 +0 -0
  1618. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/condense.F90 +0 -0
  1619. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/condense_solver.c +0 -0
  1620. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/constants.F90 +0 -0
  1621. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/env_state.F90 +0 -0
  1622. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/exact_soln.F90 +0 -0
  1623. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/extract_aero_particles.F90 +0 -0
  1624. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/extract_aero_size.F90 +0 -0
  1625. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/extract_aero_time.F90 +0 -0
  1626. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/extract_env.F90 +0 -0
  1627. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/extract_gas.F90 +0 -0
  1628. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/extract_sectional_aero_size.F90 +0 -0
  1629. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/extract_sectional_aero_time.F90 +0 -0
  1630. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/fractal.F90 +0 -0
  1631. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/gas_data.F90 +0 -0
  1632. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/gas_state.F90 +0 -0
  1633. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/getopt.F90 +0 -0
  1634. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/ice_nucleation.F90 +0 -0
  1635. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/integer_rmap.F90 +0 -0
  1636. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/integer_rmap2.F90 +0 -0
  1637. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/integer_varray.F90 +0 -0
  1638. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/mosaic.F90 +0 -0
  1639. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/mpi.F90 +0 -0
  1640. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/netcdf.F90 +0 -0
  1641. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/nucleate.F90 +0 -0
  1642. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/numeric_average.F90 +0 -0
  1643. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/numeric_diff.F90 +0 -0
  1644. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/output.F90 +0 -0
  1645. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/partmc.F90 +0 -0
  1646. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/photolysis.F90 +0 -0
  1647. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/rand.F90 +0 -0
  1648. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/rand_gsl.c +0 -0
  1649. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/run_exact.F90 +0 -0
  1650. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/run_part.F90 +0 -0
  1651. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/run_sect.F90 +0 -0
  1652. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/scenario.F90 +0 -0
  1653. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/sort.c +0 -0
  1654. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/spec_file.F90 +0 -0
  1655. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/spec_line.F90 +0 -0
  1656. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/stats.F90 +0 -0
  1657. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/sys.F90 +0 -0
  1658. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/tchem_interface.F90 +0 -0
  1659. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/partmc/src/util.F90 +0 -0
  1660. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/span/LICENSE_1_0.txt +0 -0
  1661. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/span/include/tcb/span.hpp +0 -0
  1662. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/string_view-standalone/LICENSE +0 -0
  1663. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/string_view-standalone/include/bpstd/detail/string_view.inl +0 -0
  1664. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/string_view-standalone/include/bpstd/string_view.hpp +0 -0
  1665. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/CMakeLists.txt +0 -0
  1666. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/LICENSE +0 -0
  1667. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/cmake/SundialsIndexSize.cmake +0 -0
  1668. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/cmake/SundialsSetupCompilers.cmake +0 -0
  1669. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/cmake/SundialsSetupConfig.cmake +0 -0
  1670. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/cvode/cvode.h +0 -0
  1671. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/cvode/cvode_bandpre.h +0 -0
  1672. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/cvode/cvode_bbdpre.h +0 -0
  1673. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/cvode/cvode_diag.h +0 -0
  1674. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/cvode/cvode_direct.h +0 -0
  1675. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/cvode/cvode_hypamgpre.h +0 -0
  1676. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/cvode/cvode_ls.h +0 -0
  1677. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/cvode/cvode_proj.h +0 -0
  1678. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/cvode/cvode_spils.h +0 -0
  1679. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/nvector/nvector_cuda.h +0 -0
  1680. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/nvector/nvector_hip.h +0 -0
  1681. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/nvector/nvector_manyvector.h +0 -0
  1682. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/nvector/nvector_mpimanyvector.h +0 -0
  1683. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/nvector/nvector_mpiplusx.h +0 -0
  1684. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/nvector/nvector_openmp.h +0 -0
  1685. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/nvector/nvector_openmpdev.h +0 -0
  1686. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/nvector/nvector_parallel.h +0 -0
  1687. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/nvector/nvector_parhyp.h +0 -0
  1688. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/nvector/nvector_petsc.h +0 -0
  1689. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/nvector/nvector_pthreads.h +0 -0
  1690. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/nvector/nvector_raja.h +0 -0
  1691. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/nvector/nvector_serial.h +0 -0
  1692. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/nvector/nvector_sycl.h +0 -0
  1693. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/nvector/nvector_trilinos.h +0 -0
  1694. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/nvector/trilinos/SundialsTpetraVectorInterface.hpp +0 -0
  1695. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/nvector/trilinos/SundialsTpetraVectorKernels.hpp +0 -0
  1696. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/sundials/sundials_band.h +0 -0
  1697. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/sundials/sundials_config.in +0 -0
  1698. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/sundials/sundials_cuda_policies.hpp +0 -0
  1699. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/sundials/sundials_dense.h +0 -0
  1700. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/sundials/sundials_direct.h +0 -0
  1701. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/sundials/sundials_fconfig.in +0 -0
  1702. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/sundials/sundials_fnvector.h +0 -0
  1703. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/sundials/sundials_futils.h +0 -0
  1704. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/sundials/sundials_hip_policies.hpp +0 -0
  1705. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/sundials/sundials_iterative.h +0 -0
  1706. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/sundials/sundials_lapack.h +0 -0
  1707. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/sundials/sundials_linearsolver.h +0 -0
  1708. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/sundials/sundials_math.h +0 -0
  1709. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/sundials/sundials_matrix.h +0 -0
  1710. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/sundials/sundials_memory.h +0 -0
  1711. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/sundials/sundials_mpi_types.h +0 -0
  1712. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/sundials/sundials_nonlinearsolver.h +0 -0
  1713. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/sundials/sundials_nvector.h +0 -0
  1714. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/sundials/sundials_nvector_senswrapper.h +0 -0
  1715. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/sundials/sundials_sycl_policies.hpp +0 -0
  1716. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/sundials/sundials_types.h +0 -0
  1717. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/sundials/sundials_version.h +0 -0
  1718. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/sundials/sundials_xbraid.h +0 -0
  1719. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/sunlinsol/sunlinsol_band.h +0 -0
  1720. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/sunlinsol/sunlinsol_cusolversp_batchqr.h +0 -0
  1721. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/sunlinsol/sunlinsol_dense.h +0 -0
  1722. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/sunlinsol/sunlinsol_klu.h +0 -0
  1723. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/sunlinsol/sunlinsol_lapackband.h +0 -0
  1724. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/sunlinsol/sunlinsol_lapackdense.h +0 -0
  1725. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/sunlinsol/sunlinsol_magmadense.h +0 -0
  1726. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/sunlinsol/sunlinsol_onemkldense.h +0 -0
  1727. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/sunlinsol/sunlinsol_pcg.h +0 -0
  1728. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/sunlinsol/sunlinsol_spbcgs.h +0 -0
  1729. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/sunlinsol/sunlinsol_spfgmr.h +0 -0
  1730. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/sunlinsol/sunlinsol_spgmr.h +0 -0
  1731. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/sunlinsol/sunlinsol_sptfqmr.h +0 -0
  1732. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/sunlinsol/sunlinsol_superludist.h +0 -0
  1733. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/sunlinsol/sunlinsol_superlumt.h +0 -0
  1734. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/sunmatrix/sunmatrix_band.h +0 -0
  1735. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/sunmatrix/sunmatrix_cusparse.h +0 -0
  1736. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/sunmatrix/sunmatrix_dense.h +0 -0
  1737. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/sunmatrix/sunmatrix_magmadense.h +0 -0
  1738. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/sunmatrix/sunmatrix_onemkldense.h +0 -0
  1739. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/sunmatrix/sunmatrix_slunrloc.h +0 -0
  1740. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/sunmatrix/sunmatrix_sparse.h +0 -0
  1741. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/sunnonlinsol/sunnonlinsol_fixedpoint.h +0 -0
  1742. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/sunnonlinsol/sunnonlinsol_newton.h +0 -0
  1743. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/include/sunnonlinsol/sunnonlinsol_petscsnes.h +0 -0
  1744. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/cvode/CHANGES +0 -0
  1745. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/cvode/CMakeLists.txt +0 -0
  1746. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/cvode/LICENSE +0 -0
  1747. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/cvode/NOTICE +0 -0
  1748. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/cvode/README.md +0 -0
  1749. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/cvode/cvode.c +0 -0
  1750. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/cvode/cvode_bandpre.c +0 -0
  1751. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/cvode/cvode_bandpre_impl.h +0 -0
  1752. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/cvode/cvode_bbdpre.c +0 -0
  1753. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/cvode/cvode_bbdpre_impl.h +0 -0
  1754. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/cvode/cvode_diag.c +0 -0
  1755. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/cvode/cvode_diag_impl.h +0 -0
  1756. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/cvode/cvode_direct.c +0 -0
  1757. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/cvode/cvode_fused_gpu.cpp +0 -0
  1758. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/cvode/cvode_fused_stubs.c +0 -0
  1759. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/cvode/cvode_hypamgpre.c +0 -0
  1760. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/cvode/cvode_hypamgpre_impl.h +0 -0
  1761. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/cvode/cvode_impl.h +0 -0
  1762. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/cvode/cvode_io.c +0 -0
  1763. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/cvode/cvode_ls.c +0 -0
  1764. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/cvode/cvode_ls_impl.h +0 -0
  1765. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/cvode/cvode_nls.c +0 -0
  1766. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/cvode/cvode_proj.c +0 -0
  1767. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/cvode/cvode_proj_impl.h +0 -0
  1768. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/cvode/cvode_spils.c +0 -0
  1769. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/cvode/fcmix/CMakeLists.txt +0 -0
  1770. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/cvode/fcmix/Makefile.in +0 -0
  1771. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/cvode/fcmix/fcvband.c +0 -0
  1772. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/cvode/fcmix/fcvbbd.c +0 -0
  1773. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/cvode/fcmix/fcvbbd.h +0 -0
  1774. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/cvode/fcmix/fcvbp.c +0 -0
  1775. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/cvode/fcmix/fcvbp.h +0 -0
  1776. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/cvode/fcmix/fcvdense.c +0 -0
  1777. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/cvode/fcmix/fcvewt.c +0 -0
  1778. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/cvode/fcmix/fcvjtimes.c +0 -0
  1779. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/cvode/fcmix/fcvnulllinsol.c +0 -0
  1780. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/cvode/fcmix/fcvnullmatrix.c +0 -0
  1781. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/cvode/fcmix/fcvnullnonlinsol.c +0 -0
  1782. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/cvode/fcmix/fcvode.c +0 -0
  1783. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/cvode/fcmix/fcvode.h +0 -0
  1784. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/cvode/fcmix/fcvpreco.c +0 -0
  1785. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/cvode/fcmix/fcvroot.c +0 -0
  1786. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/cvode/fcmix/fcvroot.h +0 -0
  1787. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/cvode/fcmix/fcvsparse.c +0 -0
  1788. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/cvode/fmod/CMakeLists.txt +0 -0
  1789. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/cvode/fmod/fcvode_mod.c +0 -0
  1790. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/cvode/fmod/fcvode_mod.f90 +0 -0
  1791. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/nvector/CMakeLists.txt +0 -0
  1792. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/nvector/serial/CMakeLists.txt +0 -0
  1793. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/nvector/serial/fmod/CMakeLists.txt +0 -0
  1794. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/nvector/serial/fmod/fnvector_serial_mod.c +0 -0
  1795. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/nvector/serial/fmod/fnvector_serial_mod.f90 +0 -0
  1796. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/nvector/serial/fnvector_serial.c +0 -0
  1797. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/nvector/serial/fnvector_serial.h +0 -0
  1798. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/nvector/serial/nvector_serial.c +0 -0
  1799. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sundials/CMakeLists.txt +0 -0
  1800. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sundials/fmod/CMakeLists.txt +0 -0
  1801. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sundials/fmod/fsundials_futils_mod.c +0 -0
  1802. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sundials/fmod/fsundials_futils_mod.f90 +0 -0
  1803. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sundials/fmod/fsundials_linearsolver_mod.c +0 -0
  1804. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sundials/fmod/fsundials_linearsolver_mod.f90 +0 -0
  1805. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sundials/fmod/fsundials_matrix_mod.c +0 -0
  1806. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sundials/fmod/fsundials_matrix_mod.f90 +0 -0
  1807. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sundials/fmod/fsundials_nonlinearsolver_mod.c +0 -0
  1808. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sundials/fmod/fsundials_nonlinearsolver_mod.f90 +0 -0
  1809. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sundials/fmod/fsundials_nvector_mod.c +0 -0
  1810. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sundials/fmod/fsundials_nvector_mod.f90 +0 -0
  1811. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sundials/fmod/fsundials_types_mod.c +0 -0
  1812. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sundials/fmod/fsundials_types_mod.f90 +0 -0
  1813. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sundials/sundials_band.c +0 -0
  1814. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sundials/sundials_cuda.h +0 -0
  1815. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sundials/sundials_cuda_kernels.cuh +0 -0
  1816. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sundials/sundials_debug.h +0 -0
  1817. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sundials/sundials_dense.c +0 -0
  1818. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sundials/sundials_direct.c +0 -0
  1819. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sundials/sundials_futils.c +0 -0
  1820. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sundials/sundials_hip.h +0 -0
  1821. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sundials/sundials_hip_kernels.hip.hpp +0 -0
  1822. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sundials/sundials_iterative.c +0 -0
  1823. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sundials/sundials_linearsolver.c +0 -0
  1824. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sundials/sundials_math.c +0 -0
  1825. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sundials/sundials_matrix.c +0 -0
  1826. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sundials/sundials_memory.c +0 -0
  1827. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sundials/sundials_nonlinearsolver.c +0 -0
  1828. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sundials/sundials_nvector.c +0 -0
  1829. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sundials/sundials_nvector_senswrapper.c +0 -0
  1830. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sundials/sundials_sycl.h +0 -0
  1831. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sundials/sundials_version.c +0 -0
  1832. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sundials/sundials_xbraid.c +0 -0
  1833. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunlinsol/CMakeLists.txt +0 -0
  1834. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunlinsol/band/CMakeLists.txt +0 -0
  1835. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunlinsol/band/fmod/CMakeLists.txt +0 -0
  1836. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunlinsol/band/fmod/fsunlinsol_band_mod.c +0 -0
  1837. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunlinsol/band/fmod/fsunlinsol_band_mod.f90 +0 -0
  1838. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunlinsol/band/fsunlinsol_band.c +0 -0
  1839. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunlinsol/band/fsunlinsol_band.h +0 -0
  1840. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunlinsol/band/sunlinsol_band.c +0 -0
  1841. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunlinsol/dense/CMakeLists.txt +0 -0
  1842. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunlinsol/dense/fmod/CMakeLists.txt +0 -0
  1843. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunlinsol/dense/fmod/fsunlinsol_dense_mod.c +0 -0
  1844. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunlinsol/dense/fmod/fsunlinsol_dense_mod.f90 +0 -0
  1845. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunlinsol/dense/fsunlinsol_dense.c +0 -0
  1846. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunlinsol/dense/fsunlinsol_dense.h +0 -0
  1847. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunlinsol/dense/sunlinsol_dense.c +0 -0
  1848. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunlinsol/klu/CMakeLists.txt +0 -0
  1849. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunlinsol/klu/fmod/CMakeLists.txt +0 -0
  1850. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunlinsol/klu/fmod/fsunlinsol_klu_mod.c +0 -0
  1851. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunlinsol/klu/fmod/fsunlinsol_klu_mod.f90 +0 -0
  1852. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunlinsol/klu/fsunlinsol_klu.c +0 -0
  1853. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunlinsol/klu/fsunlinsol_klu.h +0 -0
  1854. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunlinsol/klu/sunlinsol_klu.c +0 -0
  1855. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunlinsol/pcg/CMakeLists.txt +0 -0
  1856. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunlinsol/pcg/sunlinsol_pcg.c +0 -0
  1857. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunlinsol/spbcgs/CMakeLists.txt +0 -0
  1858. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunlinsol/spbcgs/sunlinsol_spbcgs.c +0 -0
  1859. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunlinsol/spfgmr/CMakeLists.txt +0 -0
  1860. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunlinsol/spfgmr/sunlinsol_spfgmr.c +0 -0
  1861. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunlinsol/spgmr/CMakeLists.txt +0 -0
  1862. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunlinsol/spgmr/sunlinsol_spgmr.c +0 -0
  1863. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunlinsol/sptfqmr/CMakeLists.txt +0 -0
  1864. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunlinsol/sptfqmr/sunlinsol_sptfqmr.c +0 -0
  1865. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunmatrix/CMakeLists.txt +0 -0
  1866. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunmatrix/band/CMakeLists.txt +0 -0
  1867. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunmatrix/band/sunmatrix_band.c +0 -0
  1868. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunmatrix/dense/CMakeLists.txt +0 -0
  1869. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunmatrix/dense/sunmatrix_dense.c +0 -0
  1870. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunmatrix/sparse/CMakeLists.txt +0 -0
  1871. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunmatrix/sparse/sunmatrix_sparse.c +0 -0
  1872. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunnonlinsol/CMakeLists.txt +0 -0
  1873. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunnonlinsol/fixedpoint/CMakeLists.txt +0 -0
  1874. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunnonlinsol/fixedpoint/fmod/CMakeLists.txt +0 -0
  1875. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunnonlinsol/fixedpoint/fmod/fsunnonlinsol_fixedpoint_mod.c +0 -0
  1876. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunnonlinsol/fixedpoint/fmod/fsunnonlinsol_fixedpoint_mod.f90 +0 -0
  1877. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunnonlinsol/fixedpoint/fsunnonlinsol_fixedpoint.c +0 -0
  1878. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunnonlinsol/fixedpoint/fsunnonlinsol_fixedpoint.h +0 -0
  1879. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunnonlinsol/fixedpoint/sunnonlinsol_fixedpoint.c +0 -0
  1880. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunnonlinsol/newton/CMakeLists.txt +0 -0
  1881. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunnonlinsol/newton/fmod/CMakeLists.txt +0 -0
  1882. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunnonlinsol/newton/fmod/fsunnonlinsol_newton_mod.c +0 -0
  1883. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunnonlinsol/newton/fmod/fsunnonlinsol_newton_mod.f90 +0 -0
  1884. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunnonlinsol/newton/fsunnonlinsol_newton.c +0 -0
  1885. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunnonlinsol/newton/fsunnonlinsol_newton.h +0 -0
  1886. {pypartmc-2.0.6 → pypartmc-2.0.8}/gitmodules/sundials/src/sunnonlinsol/newton/sunnonlinsol_newton.c +0 -0
  1887. {pypartmc-2.0.6 → pypartmc-2.0.8}/pyproject.toml +0 -0
  1888. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/PyPartMC/__init__.py +0 -0
  1889. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/aero_binned.F90 +0 -0
  1890. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/aero_binned.hpp +0 -0
  1891. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/aero_data.F90 +0 -0
  1892. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/aero_data.hpp +0 -0
  1893. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/aero_dist.F90 +0 -0
  1894. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/aero_dist.hpp +0 -0
  1895. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/aero_mode.F90 +0 -0
  1896. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/aero_mode.hpp +0 -0
  1897. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/aero_particle.F90 +0 -0
  1898. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/aero_particle.hpp +0 -0
  1899. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/aero_state.F90 +0 -0
  1900. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/aero_state.hpp +0 -0
  1901. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/bin_grid.F90 +0 -0
  1902. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/bin_grid.cpp +0 -0
  1903. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/bin_grid.hpp +0 -0
  1904. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/camp_core.F90 +0 -0
  1905. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/camp_core.hpp +0 -0
  1906. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/condense.F90 +0 -0
  1907. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/condense.cpp +0 -0
  1908. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/condense.hpp +0 -0
  1909. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/env_state.F90 +0 -0
  1910. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/env_state.hpp +0 -0
  1911. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/gas_data.F90 +0 -0
  1912. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/gas_data.hpp +0 -0
  1913. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/gas_state.F90 +0 -0
  1914. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/gas_state.hpp +0 -0
  1915. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/getters.hpp +0 -0
  1916. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/input_guard.hpp +0 -0
  1917. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/json_resource.cpp +0 -0
  1918. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/json_resource.hpp +0 -0
  1919. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/output.F90 +0 -0
  1920. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/output.cpp +0 -0
  1921. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/output.hpp +0 -0
  1922. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/photolysis.F90 +0 -0
  1923. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/photolysis.hpp +0 -0
  1924. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/pmc_resource.hpp +0 -0
  1925. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/pypartmc.cpp +0 -0
  1926. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/rand.F90 +0 -0
  1927. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/rand.cpp +0 -0
  1928. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/rand.hpp +0 -0
  1929. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/run_exact.F90 +0 -0
  1930. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/run_exact.cpp +0 -0
  1931. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/run_exact.hpp +0 -0
  1932. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/run_exact_opt.F90 +0 -0
  1933. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/run_exact_opt.hpp +0 -0
  1934. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/run_part.F90 +0 -0
  1935. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/run_part.cpp +0 -0
  1936. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/run_part.hpp +0 -0
  1937. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/run_part_opt.F90 +0 -0
  1938. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/run_part_opt.hpp +0 -0
  1939. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/run_sect.F90 +0 -0
  1940. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/run_sect.cpp +0 -0
  1941. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/run_sect.hpp +0 -0
  1942. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/run_sect_opt.F90 +0 -0
  1943. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/run_sect_opt.hpp +0 -0
  1944. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/scenario.F90 +0 -0
  1945. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/scenario.cpp +0 -0
  1946. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/scenario.hpp +0 -0
  1947. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/spec_file_pypartmc.F90 +0 -0
  1948. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/spec_file_pypartmc.cpp +0 -0
  1949. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/sys.F90 +0 -0
  1950. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/sys.cpp +0 -0
  1951. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/util.F90 +0 -0
  1952. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/util.cpp +0 -0
  1953. {pypartmc-2.0.6 → pypartmc-2.0.8}/src/util.hpp +0 -0
  1954. {pypartmc-2.0.6 → pypartmc-2.0.8}/tests/__init__.py +0 -0
  1955. {pypartmc-2.0.6 → pypartmc-2.0.8}/tests/common.py +0 -0
  1956. {pypartmc-2.0.6 → pypartmc-2.0.8}/tests/conftest.py +0 -0
  1957. {pypartmc-2.0.6 → pypartmc-2.0.8}/tests/test_aero_binned.py +0 -0
  1958. {pypartmc-2.0.6 → pypartmc-2.0.8}/tests/test_aero_data.py +0 -0
  1959. {pypartmc-2.0.6 → pypartmc-2.0.8}/tests/test_aero_dist.py +0 -0
  1960. {pypartmc-2.0.6 → pypartmc-2.0.8}/tests/test_aero_mode.py +0 -0
  1961. {pypartmc-2.0.6 → pypartmc-2.0.8}/tests/test_aero_particle.py +0 -0
  1962. {pypartmc-2.0.6 → pypartmc-2.0.8}/tests/test_aero_state.py +0 -0
  1963. {pypartmc-2.0.6 → pypartmc-2.0.8}/tests/test_bin_grid.py +0 -0
  1964. {pypartmc-2.0.6 → pypartmc-2.0.8}/tests/test_camp_core.py +0 -0
  1965. {pypartmc-2.0.6 → pypartmc-2.0.8}/tests/test_condense.py +0 -0
  1966. {pypartmc-2.0.6 → pypartmc-2.0.8}/tests/test_dtors.py +0 -0
  1967. {pypartmc-2.0.6 → pypartmc-2.0.8}/tests/test_env_state.py +0 -0
  1968. {pypartmc-2.0.6 → pypartmc-2.0.8}/tests/test_gas_data.py +0 -0
  1969. {pypartmc-2.0.6 → pypartmc-2.0.8}/tests/test_gas_state.py +0 -0
  1970. {pypartmc-2.0.6 → pypartmc-2.0.8}/tests/test_help.py +0 -0
  1971. {pypartmc-2.0.6 → pypartmc-2.0.8}/tests/test_input_guard.py +0 -0
  1972. {pypartmc-2.0.6 → pypartmc-2.0.8}/tests/test_loss_rate.py +0 -0
  1973. {pypartmc-2.0.6 → pypartmc-2.0.8}/tests/test_output.py +0 -0
  1974. {pypartmc-2.0.6 → pypartmc-2.0.8}/tests/test_photolysis.py +0 -0
  1975. {pypartmc-2.0.6 → pypartmc-2.0.8}/tests/test_rand.py +0 -0
  1976. {pypartmc-2.0.6 → pypartmc-2.0.8}/tests/test_run_exact.py +0 -0
  1977. {pypartmc-2.0.6 → pypartmc-2.0.8}/tests/test_run_exact_opt.py +0 -0
  1978. {pypartmc-2.0.6 → pypartmc-2.0.8}/tests/test_run_part.py +0 -0
  1979. {pypartmc-2.0.6 → pypartmc-2.0.8}/tests/test_run_part_opt.py +0 -0
  1980. {pypartmc-2.0.6 → pypartmc-2.0.8}/tests/test_run_sect.py +0 -0
  1981. {pypartmc-2.0.6 → pypartmc-2.0.8}/tests/test_run_sect_opt.py +0 -0
  1982. {pypartmc-2.0.6 → pypartmc-2.0.8}/tests/test_scenario.py +0 -0
  1983. {pypartmc-2.0.6 → pypartmc-2.0.8}/tests/test_units.py +0 -0
  1984. {pypartmc-2.0.6 → pypartmc-2.0.8}/tests/test_util.py +0 -0
  1985. {pypartmc-2.0.6 → pypartmc-2.0.8}/tests/test_version.py +0 -0
@@ -0,0 +1,403 @@
1
+ Metadata-Version: 2.4
2
+ Name: PyPartMC
3
+ Version: 2.0.8
4
+ Summary: Python interface to PartMC
5
+ Author-Email: "https://github.com/open-atmos/PyPartMC/graphs/contributors" <nriemer@illinois.edu>
6
+ License-Expression: GPL-3.0
7
+ Project-URL: Documentation, https://open-atmos.github.io/PyPartMC
8
+ Project-URL: Source, https://github.com/open-atmos/PyPartMC/
9
+ Project-URL: Tracker, https://github.com/open-atmos/PyPartMC/issues
10
+ Requires-Python: >=3.9
11
+ Requires-Dist: numpy
12
+ Requires-Dist: nanobind
13
+ Provides-Extra: tests
14
+ Requires-Dist: pytest; extra == "tests"
15
+ Requires-Dist: pytest-order; extra == "tests"
16
+ Provides-Extra: examples
17
+ Requires-Dist: matplotlib!=3.10.0; extra == "examples"
18
+ Requires-Dist: ipywidgets; extra == "examples"
19
+ Requires-Dist: voila; extra == "examples"
20
+ Requires-Dist: open-atmos-jupyter-utils; extra == "examples"
21
+ Requires-Dist: PySDM; extra == "examples"
22
+ Requires-Dist: PyMieScatt; extra == "examples"
23
+ Requires-Dist: SciPy; extra == "examples"
24
+ Requires-Dist: dustpy; platform_system != "Windows" and extra == "examples"
25
+ Description-Content-Type: text/markdown
26
+
27
+ ![logo](https://raw.githubusercontent.com/wiki/open-atmos/PyPartMC/logo.svg)
28
+
29
+ # PyPartMC
30
+
31
+ PyPartMC is a Python interface to [PartMC](https://lagrange.mechse.illinois.edu/partmc/),
32
+ a particle-resolved Monte-Carlo code for atmospheric aerosol simulation.
33
+ Development of PyPartMC has been intended to remove limitations to the use of Fortran-implemented PartMC.
34
+ PyPartMC facilitates the dissemination of computational research results by streamlining independent execution
35
+ of PartMC simulations (also during peer-review processes).
36
+ Additionally, the ability to easily package examples, simple simulations, and results in a web-based notebook
37
+ allows PyPartMC to support the efforts of many members of the scientific community, including researchers,
38
+ instructors, and students, with nominal software and hardware requirements.
39
+
40
+ Documentation of PyPartMC is hosted at https://open-atmos.github.io/PyPartMC.
41
+ PyPartMC is implemented in C++ and it also constitutes a C++ API to the PartMC Fortran internals.
42
+ The Python API can facilitate using PartMC from other environments - see, e.g., Julia and Matlab examples below.
43
+
44
+ For an outline of the project, rationale, architecture, and features, refer to: [D'Aquino et al., 2024 (SoftwareX)](https://doi.org/10.1016/j.softx.2023.101613) (please cite if PyPartMC is used in your research).
45
+ For a list of talks and other relevant resources, please see [project Wiki](https://github.com/open-atmos/PyPartMC/wiki/).
46
+ If interested in contributing to PyPartMC, please have a look a the [notes for developers](https://github.com/open-atmos/PyPartMC/tree/main/CONTRIBUTING.md).
47
+
48
+ [![US Funding](https://img.shields.io/static/v1?label=US%20DOE%20Funding%20by&color=267c32&message=ASR&logoWidth=25&logo=image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAQCAMAAAA25D/gAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAASFBMVEVOTXyyIjRDQnNZWINZWITtzdFUU4BVVIFVVYHWiZM9PG/KZnNXVoJaWYT67/FKSXhgX4hgX4lcW4VbWoX03uHQeIN2VXj///9pZChlAAAAAWJLR0QXC9aYjwAAAAd0SU1FB+EICRMGJV+KCCQAAABdSURBVBjThdBJDoAgEETRkkkZBBX0/kd11QTTpH1/STqpAAwWBkobSlkGbt0o5xmEfqxDZJB2Q6XMoBwnVSbTylWp0hi42rmbwTOYPDfR5Kc+07IIUQQvghX9THsBHcES8/SiF0kAAAAldEVYdGRhdGU6Y3JlYXRlADIwMTctMDgtMDlUMTk6MDY6MzcrMDA6MDCX1tBgAAAAJXRFWHRkYXRlOm1vZGlmeQAyMDE3LTA4LTA5VDE5OjA2OjM3KzAwOjAw5oto3AAAAABJRU5ErkJggg==)](https://asr.science.energy.gov/) [![PL Funding](https://img.shields.io/static/v1?label=PL%20Funding%20by&color=d21132&message=NCN&logoWidth=25&logo=image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAANCAYAAACpUE5eAAAABmJLR0QA/wD/AP+gvaeTAAAAKUlEQVQ4jWP8////fwYqAiZqGjZqIHUAy4dJS6lqIOMdEZvRZDPcDQQAb3cIaY1Sbi4AAAAASUVORK5CYII=)](https://www.ncn.gov.pl/?language=en)
49
+
50
+ [![License: GPL v3](https://img.shields.io/badge/License-GPL%20v3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0.html)
51
+ [![Copyright](https://img.shields.io/static/v1?label=Copyright&color=249fe2&message=UIUC&)](https://atmos.illinois.edu/)
52
+ [![tests+pypi](https://github.com/open-atmos/PyPartMC/actions/workflows/buildwheels.yml/badge.svg)](https://github.com/open-atmos/PyPartMC/actions/workflows/buildwheels.yml)
53
+ [![API docs](https://shields.mitmproxy.org/badge/docs-pdoc.dev-brightgreen.svg)](https://open-atmos.github.io/PyPartMC/)
54
+ [![codecov](https://codecov.io/gh/open-atmos/PyPartMC/graph/badge.svg?token=27IK9ZIQXE)](https://codecov.io/gh/open-atmos/PyPartMC)
55
+ [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.7662635.svg)](https://doi.org/10.5281/zenodo.7662635)
56
+ [![PyPI version](https://badge.fury.io/py/PyPartMC.svg)](https://pypi.org/p/PyPartMC)
57
+ [![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)
58
+ [![pyOpenSci Peer-Reviewed](https://pyopensci.org/badges/peer-reviewed.svg)](https://github.com/pyOpenSci/software-review/issues/179)
59
+
60
+ [![Python 3](https://img.shields.io/static/v1?label=Python&logo=Python&color=3776AB&message=3)](https://www.python.org/)
61
+ [![Linux OK](https://img.shields.io/static/v1?label=Linux&logo=Linux&color=yellow&message=%E2%9C%93)](https://en.wikipedia.org/wiki/Linux)
62
+ [![macOS OK](https://img.shields.io/static/v1?label=macOS&logo=Apple&color=silver&message=%E2%9C%93)](https://en.wikipedia.org/wiki/macOS)
63
+ [![Windows OK](https://img.shields.io/static/v1?label=Windows&logo=Windows&color=white&message=%E2%9C%93)](https://en.wikipedia.org/wiki/Windows)
64
+ [![Jupyter](https://img.shields.io/static/v1?label=Jupyter&logo=Jupyter&color=f37626&message=%E2%9C%93)](https://jupyter.org/)
65
+
66
+ ## Installation
67
+
68
+ ### Using the command-line `pip` tool (also applies to conda environments)
69
+ ```bash
70
+ pip install PyPartMC
71
+ ```
72
+
73
+ Note that, depending on the environment (OS, hardware, Python version), the pip-install invocation
74
+ may either trigger a download of a pre-compiled binary, or trigger compilation of PyPartMC.
75
+ In the latter case, a Fortran compiler and some development tools includiong CMake, m4 and perl
76
+ are required (while all non-Python dependencies are included in the PyPartMC source archive).
77
+ In both cases, all Python dependencies will be resolved by pip.
78
+
79
+ ### In a Jupyter notebook cell (also on Colab or jupyter-hub instances)
80
+
81
+ ```python
82
+ ! pip install PyPartMC
83
+ import PyPartMC
84
+ ```
85
+
86
+ #### Jupyter notebooks with examples
87
+ Note: clicking the badges below redirects to cloud-computing platforms. The mybinder.org links allow anonymous execution, Google Colab requires logging in with a Google account, ARM JupyerHub requires logging in with an ARM account (and directing Jupyter to a particular notebook within the `examples` folder).
88
+
89
+ The example notebooks feature additional dependencies that can be installed with:
90
+ ```bash
91
+ pip install PyPartMC[examples]
92
+ ```
93
+
94
+ - Urban plume scenario demo (as in [PartMC](https://github.com/compdyn/partmc/tree/master/scenarios/1_urban_plume)):
95
+ [![View notebook](https://img.shields.io/static/v1?label=render%20on&logo=github&color=87ce3e&message=GitHub)](https://github.com/open-atmos/PyPartMC/blob/main/examples/particle_simulation.ipynb)
96
+ [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/open-atmos/PyPartMC/blob/main/examples/particle_simulation.ipynb)
97
+ [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/open-atmos/PyPartMC.git/main?urlpath=lab/tree/examples/particle_simulation.ipynb)
98
+ [![ARM JupyterHub](https://img.shields.io/static/v1?label=launch%20in&logo=jupyter&color=lightblue&message=ARM+JupyterHub)](https://jupyterhub.arm.gov/hub/user-redirect/git-pull?repo=https%3A//github.com/open-atmos/PyPartMC&branch=main&urlPath=)
99
+ - Chamber simulation example from Barrel Study ([Tian el al., 2017](https://doi.org/10.1080/02786826.2017.1311988)):
100
+ [![View notebook](https://img.shields.io/static/v1?label=render%20on&logo=github&color=87ce3e&message=GitHub)](https://github.com/open-atmos/PyPartMC/blob/main/examples/chamber.ipynb)
101
+ [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/open-atmos/PyPartMC/blob/main/examples/chamber.ipynb)
102
+ [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/open-atmos/PyPartMC.git/main?urlpath=lab/tree/examples/chamber.ipynb)
103
+ [![ARM JupyterHub](https://img.shields.io/static/v1?label=launch%20in&logo=jupyter&color=lightblue&message=ARM+JupyterHub)](https://jupyterhub.arm.gov/hub/user-redirect/git-pull?repo=https%3A//github.com/open-atmos/PyPartMC&branch=main&urlPath=)
104
+ - Dry-Wet Particle Size Equilibration with PartMC and PySDM:
105
+ [![View notebook](https://img.shields.io/static/v1?label=render%20on&logo=github&color=87ce3e&message=GitHub)](https://github.com/open-atmos/PyPartMC/blob/main/examples/lognorm_ex.ipynb)
106
+ [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/open-atmos/PyPartMC/blob/main/examples/lognorm_ex.ipynb)
107
+ [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/open-atmos/PyPartMC.git/main?urlpath=lab/tree/examples/lognorm_ex.ipynb)
108
+ [![ARM JupyterHub](https://img.shields.io/static/v1?label=launch%20in&logo=jupyter&color=lightblue&message=ARM+JupyterHub)](https://jupyterhub.arm.gov/hub/user-redirect/git-pull?repo=https%3A//github.com/open-atmos/PyPartMC&branch=main&urlPath=)
109
+ [![Voila](https://img.shields.io/static/v1?label=Voil%C3%A0&logo=jupyter&color=teal&message=web+app)](https://mybinder.org/v2/gh/open-atmos/PyPartMC/main?urlpath=voila%2Frender%2Fexamples%2Flognorm_ex.ipynb)
110
+ - Simulation output processing example (loading from netCDF files using PyPartMC):
111
+ [![View notebook](https://img.shields.io/static/v1?label=render%20on&logo=github&color=87ce3e&message=GitHub)](https://github.com/open-atmos/PyPartMC/blob/main/examples/process_simulation_output.ipynb)
112
+ [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/open-atmos/PyPartMC/blob/main/examples/process_simulation_output.ipynb)
113
+ [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/open-atmos/PyPartMC.git/main?urlpath=lab/tree/examples/process_simulation_output.ipynb)
114
+ [![ARM JupyterHub](https://img.shields.io/static/v1?label=launch%20in&logo=jupyter&color=lightblue&message=ARM+JupyterHub)](https://jupyterhub.arm.gov/hub/user-redirect/git-pull?repo=https%3A//github.com/open-atmos/PyPartMC&branch=main&urlPath=)
115
+ - Optical properties calculation using external Python package ([PyMieScatt](https://pymiescatt.readthedocs.io/en/latest/)):
116
+ [![View notebook](https://img.shields.io/static/v1?label=render%20on&logo=github&color=87ce3e&message=GitHub)](https://github.com/open-atmos/PyPartMC/blob/main/examples/mie_optical.ipynb)
117
+ [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/open-atmos/PyPartMC/blob/main/examples/mie_optical.ipynb)
118
+ [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/open-atmos/PyPartMC.git/main?urlpath=lab/tree/examples/mie_optical.ipynb)
119
+ [![ARM JupyterHub](https://img.shields.io/static/v1?label=launch%20in&logo=jupyter&color=lightblue&message=ARM+JupyterHub)](https://jupyterhub.arm.gov/hub/user-redirect/git-pull?repo=https%3A//github.com/open-atmos/PyPartMC&branch=main&urlPath=)
120
+ - Cloud parcel example featuring supersaturation-evolution-coupled CCN activation and drop growth:
121
+ [![View notebook](https://img.shields.io/static/v1?label=render%20on&logo=github&color=87ce3e&message=GitHub)](https://github.com/open-atmos/PyPartMC/blob/main/examples/cloud_parcel.ipynb)
122
+ [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/open-atmos/PyPartMC/blob/main/examples/cloud_parcel.ipynb)
123
+ [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/open-atmos/PyPartMC.git/main?urlpath=lab/tree/examples/cloud_parcel.ipynb)
124
+ [![ARM JupyterHub](https://img.shields.io/static/v1?label=launch%20in&logo=jupyter&color=lightblue&message=ARM+JupyterHub)](https://jupyterhub.arm.gov/hub/user-redirect/git-pull?repo=https%3A//github.com/open-atmos/PyPartMC&branch=main&urlPath=)
125
+ - Immersion freezing example:
126
+ [![View notebook](https://img.shields.io/static/v1?label=render%20on&logo=github&color=87ce3e&message=GitHub)](https://github.com/open-atmos/PyPartMC/blob/main/examples/immersion_freezing.ipynb)
127
+ [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/open-atmos/PyPartMC/blob/main/examples/immersion_freezing.ipynb)
128
+ [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/open-atmos/PyPartMC.git/main?urlpath=lab/tree/examples/immersion_freezing.ipynb)
129
+ [![ARM JupyterHub](https://img.shields.io/static/v1?label=launch%20in&logo=jupyter&color=lightblue&message=ARM+JupyterHub)](https://jupyterhub.arm.gov/hub/user-redirect/git-pull?repo=https%3A//github.com/open-atmos/PyPartMC&branch=main&urlPath=)
130
+ - Coagulation model intercomparison for additive (Golovin) kernel with: PyPartMC, [PySDM](https://open-atmos.github.io/PySDM), [Droplets.jl](https://github.com/emmacware/droplets.jl) and [dustpy](https://stammler.github.io/dustpy/):
131
+ [![View notebook](https://img.shields.io/static/v1?label=render%20on&logo=github&color=87ce3e&message=GitHub)](https://github.com/open-atmos/PyPartMC/blob/main/examples/additive_coag_comparison.ipynb)
132
+ [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/open-atmos/PyPartMC/blob/main/examples/additive_coag_comparison.ipynb)
133
+ [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/open-atmos/PyPartMC.git/main?urlpath=lab/tree/examples/additive_coag_comparison.ipynb)
134
+ [![ARM JupyterHub](https://img.shields.io/static/v1?label=launch%20in&logo=jupyter&color=lightblue&message=ARM+JupyterHub)](https://jupyterhub.arm.gov/hub/user-redirect/git-pull?repo=https%3A//github.com/open-atmos/PyPartMC&branch=main&urlPath=)
135
+ - Particle simulation with multiphase chemistry handled using [CAMP](https://doi.org/10.5194/gmd-15-3663-2022) (without coagulation):
136
+ [![View notebook](https://img.shields.io/static/v1?label=render%20on&logo=github&color=87ce3e&message=GitHub)](https://github.com/open-atmos/PyPartMC/blob/main/examples/particle_simulation_with_camp.ipynb.ipynb)
137
+ [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/open-atmos/PyPartMC/blob/main/examples/particle_simulation_with_camp.ipynb)
138
+ [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/open-atmos/PyPartMC.git/main?urlpath=lab/tree/examples/particle_simulation_with_camp.ipynb)
139
+ [![ARM JupyterHub](https://img.shields.io/static/v1?label=launch%20in&logo=jupyter&color=lightblue&message=ARM+JupyterHub)](https://jupyterhub.arm.gov/hub/user-redirect/git-pull?repo=https%3A//github.com/open-atmos/PyPartMC&branch=main&urlPath=)
140
+
141
+ ## Features
142
+
143
+ - works on Linux, macOS and Windows (compatibility assured with [CI builds](https://github.com/open-atmos/PyPartMC/blob/main/.github/workflows/buildwheels.yml))
144
+ - hassle-free installation using `pip` (prior PartMC installation **not needed**)
145
+ - works out of the box on [mybinder.org](https://mybinder.org/), [Google Colab](colab.research.google.com/) and alike
146
+ - ships with [a set of examples](https://github.com/open-atmos/PyPartMC/tree/main/examples) maintained in a form of Jupyter notebooks
147
+ - Pythonic API (but retaining PartMC jargon) incl. Python GC deallocation of Fortran objects
148
+ - specification of parameters using native Python datatypes (lists, dicts) in place of PartMC spec files
149
+ - code snippets in README depicting how to use PyPartMC from Julia and Matlab (also executed on CI)
150
+ - auto-generated [API docs on the web](https://open-atmos.github.io/PyPartMC/)
151
+ - support for [de]serialization of selected wrapped structures using JSON
152
+ - based on [unmodified PartMC code](https://github.com/open-atmos/PyPartMC/tree/main/gitmodules)
153
+ - does not use or require shell or any pre-installed libraries
154
+ - aiming at 100% [unit test coverage](https://github.com/open-atmos/PyPartMC/tree/main/tests)
155
+
156
+ ## Usage examples
157
+
158
+ The listings below depict how the identical task of randomly sampling particles from an aerosol size distribution in PartMC can be
159
+ done in different programming languages.
160
+
161
+ For a Fortran equivalent of the Python, Julia and Matlab programs below, see the [`readme_fortran` folder](https://github.com/open-atmos/PyPartMC/tree/main/readme_fortran).
162
+
163
+ #### Python
164
+
165
+ ```Python
166
+ import numpy as np
167
+
168
+ import PyPartMC as ppmc
169
+ from PyPartMC import si
170
+
171
+ aero_data = ppmc.AeroData((
172
+ # [density, ions in solution, molecular weight, kappa, abifm_m, abifm_c]
173
+ {"OC": [1000 *si.kg/si.m**3, 0, 1e-3 *si.kg/si.mol, 0.001, 0, 0]},
174
+ {"BC": [1800 *si.kg/si.m**3, 0, 1e-3 *si.kg/si.mol, 0, 0 , 0]},
175
+ ))
176
+
177
+ aero_dist = ppmc.AeroDist(
178
+ aero_data,
179
+ [{
180
+ "cooking": {
181
+ "mass_frac": [{"OC": [1]}],
182
+ "diam_type": "geometric",
183
+ "mode_type": "log_normal",
184
+ "num_conc": 3200 / si.cm**3,
185
+ "geom_mean_diam": 8.64 * si.nm,
186
+ "log10_geom_std_dev": 0.28,
187
+ },
188
+ "diesel": {
189
+ "mass_frac": [{"OC": [0.3]}, {"BC": [0.7]}],
190
+ "diam_type": "geometric",
191
+ "mode_type": "log_normal",
192
+ "num_conc": 2900 / si.cm**3,
193
+ "geom_mean_diam": 50 * si.nm,
194
+ "log10_geom_std_dev": 0.24,
195
+ }
196
+ }],
197
+ )
198
+
199
+ n_part = 100
200
+ aero_state = ppmc.AeroState(aero_data, n_part, "nummass_source")
201
+ aero_state.dist_sample(aero_dist)
202
+ print(np.dot(aero_state.masses(), aero_state.num_concs), "# kg/m3")
203
+ ```
204
+
205
+ #### Julia (using [PyCall.jl](https://github.com/JuliaPy/PyCall.jl))
206
+ ```Julia
207
+ using Pkg
208
+ Pkg.add("PyCall")
209
+
210
+ using PyCall
211
+ ppmc = pyimport("PyPartMC")
212
+ si = ppmc["si"]
213
+
214
+ aero_data = ppmc.AeroData((
215
+ # (density, ions in solution, molecular weight, kappa, abifm_m, abifm_c)
216
+ Dict("OC"=>(1000 * si.kg/si.m^3, 0, 1e-3 * si.kg/si.mol, 0.001, 0, 0)),
217
+ Dict("BC"=>(1800 * si.kg/si.m^3, 0, 1e-3 * si.kg/si.mol, 0, 0, 0))
218
+ ))
219
+
220
+ aero_dist = ppmc.AeroDist(aero_data, (
221
+ Dict(
222
+ "cooking" => Dict(
223
+ "mass_frac" => (Dict("OC" => (1,)),),
224
+ "diam_type" => "geometric",
225
+ "mode_type" => "log_normal",
226
+ "num_conc" => 3200 / si.cm^3,
227
+ "geom_mean_diam" => 8.64 * si.nm,
228
+ "log10_geom_std_dev" => .28,
229
+ ),
230
+ "diesel" => Dict(
231
+ "mass_frac" => (Dict("OC" => (.3,)), Dict("BC" => (.7,))),
232
+ "diam_type" => "geometric",
233
+ "mode_type" => "log_normal",
234
+ "num_conc" => 2900 / si.cm^3,
235
+ "geom_mean_diam" => 50 * si.nm,
236
+ "log10_geom_std_dev" => .24,
237
+ )
238
+ ),
239
+ ))
240
+
241
+ n_part = 100
242
+ aero_state = ppmc.AeroState(aero_data, n_part, "nummass_source")
243
+ aero_state.dist_sample(aero_dist)
244
+ print(aero_state.masses()'aero_state.num_concs, "# kg/m3")
245
+ ```
246
+
247
+ #### Matlab (using [Matlab's built-in Python interface](https://www.mathworks.com/help/matlab/python-language.html))
248
+
249
+ notes (see the [PyPartMC Matlab CI workflow](https://github.com/open-atmos/PyPartMC/blob/main/.github/workflows/readme_listings.yml) for an example on how to achieve it on Ubuntu 20):
250
+ - Matlab ships with convenience copies of C, C++ and Fortran runtime libraries which are `dlopened()` by default; one way to make PyPartMC OK with it is to [pip-]install by compiling from source using the very same version of GCC that Matlab borrowed these libraries from (e.g., [GCC 9 for Matlab R2022a, etc](https://www.mathworks.com/support/requirements/supported-compilers-linux.html));
251
+ - Matlab needs to [use the same Python interpretter/venv](https://www.mathworks.com/support/requirements/python-compatibility.html) as the pip invocation used to install PyPartMC;
252
+
253
+ ````Matlab
254
+ ppmc = py.importlib.import_module('PyPartMC');
255
+ si = py.importlib.import_module('PyPartMC').si;
256
+
257
+ aero_data = ppmc.AeroData(py.tuple({ ...
258
+ py.dict(pyargs("OC", py.tuple({1000 * si.kg/si.m^3, 0, 1e-3 * si.kg/si.mol, 0.001, 0, 0}))), ...
259
+ py.dict(pyargs("BC", py.tuple({1800 * si.kg/si.m^3, 0, 1e-3 * si.kg/si.mol, 0, 0, 0}))) ...
260
+ }));
261
+
262
+ aero_dist = ppmc.AeroDist(aero_data, py.tuple({ ...
263
+ py.dict(pyargs( ...
264
+ "cooking", py.dict(pyargs( ...
265
+ "mass_frac", py.tuple({py.dict(pyargs("OC", py.tuple({1})))}), ...
266
+ "diam_type", "geometric", ...
267
+ "mode_type", "log_normal", ...
268
+ "num_conc", 3200 / si.cm^3, ...
269
+ "geom_mean_diam", 8.64 * si.nm, ...
270
+ "log10_geom_std_dev", .28 ...
271
+ )), ...
272
+ "diesel", py.dict(pyargs( ...
273
+ "mass_frac", py.tuple({ ...
274
+ py.dict(pyargs("OC", py.tuple({.3}))), ...
275
+ py.dict(pyargs("BC", py.tuple({.7}))), ...
276
+ }), ...
277
+ "diam_type", "geometric", ...
278
+ "mode_type", "log_normal", ...
279
+ "num_conc", 2900 / si.cm^3, ...
280
+ "geom_mean_diam", 50 * si.nm, ...
281
+ "log10_geom_std_dev", .24 ...
282
+ )) ...
283
+ )) ...
284
+ }));
285
+
286
+ n_part = 100;
287
+ aero_state = ppmc.AeroState(aero_data, n_part, "nummass_source");
288
+ aero_state.dist_sample(aero_dist);
289
+ masses = cell(aero_state.masses());
290
+ num_concs = cell(aero_state.num_concs);
291
+ fprintf('%g # kg/m3\n', dot([masses{:}], [num_concs{:}]))
292
+ ````
293
+
294
+ #### usage in other projects
295
+
296
+ PyPartMC is used within the [test workflow of the PySDM project](https://github.com/atmos-cloud-sim-uj/PySDM/tree/main/tests/smoke_tests/box/partmc).
297
+
298
+ ## Other packages with relevant feature scope
299
+
300
+ - [aerosolGDEFoam](https://openaerosol.sourceforge.io/): OpenFOAM CFD-coupled aerosol dynamics including nucleation, coagulation, and surface growth
301
+ - [AIOMFAC and AIOMFAC-web](http://web.archive.org/web/20250730204937/https://www.aiomfac.caltech.edu/): Fortran-implemented aerosol thermodynamic model for calculation of activity coefficients in organic-inorganic mixtures – from simple binary solutions to complex multicomponent systems
302
+ - [DustPy](https://stammler.github.io/dustpy/): Python package for modelling dust evolution in protoplanetary disks (differences: focus on astrophysical applications vs. atmospheric aerosol)
303
+ - [multilayerpy](https://github.com/tintin554/multilayerpy): kinetic multi-layer model for aerosol particles and films
304
+ - [PyBox](https://pybox.readthedocs.io): aerosol simulation model featuring gas and particle chamistry (differences: PyBox focuses on chemical mechanisms; PyPartMC is an interface to PartMC which focuses on physics - e.g., collisions of aerosol particles - while chemical processes are handled with external software, e.g., CAMP or MOSAIC)
305
+ - [PyCHAM](https://github.com/simonom/PyCHAM): CHemistry with Aerosol Microphysics in Python Box Model for modelling of indoor environments, including aerosol chambers
306
+ - [PySDM](https://open-atmos.github.io/PySDM): particle-based Monte-Carlo aerosol-cloud simulation package (differences: PySDM focuses on growth and breakup processes relevant to cloud droplets; PyPartMC focuses on processes relevant to air pollutants and their chemical and physical transformations)
307
+ - [SSH-aerosol](https://github.com/sshaerosol/ssh-aerosol): C++/Fortran package for simulating evolution of primary and secondary atmospheric aerosols
308
+
309
+ ## FAQ
310
+ - Q: How to install PyPartMC with MOSAIC enabled?
311
+ A: Installation can be done using `pip`, however, `pip` needs to be instructed not to use binary packages available at pypi.org but rather to compile from source (pip will download the source from pip.org), and the path to compiled MOSAIC library needs to be provided at compile-time; the following command should convey it:
312
+ ```bash
313
+ MOSAIC_HOME=<<PATH_TO_MOSAIC_LIB>> pip install --force-reinstall --no-binary=PyPartMC PyPartMC
314
+ ```
315
+
316
+ - Q: Why `pip install PyPartMC` triggers compilation on my brand new Apple machine, while it quickly downloads and installs binary packages when executed on older Macs, Windows or Linux?
317
+ A: We are providing binary wheels on PyPI for Apple-silicon (arm64) machines for selected macOS version made available by Github. In case the macOS version you are using is newer, compilation from source is triggered.
318
+
319
+ - Q: Why some of the constructors expect data to be passed as **lists of single-entry dictionaries** instead of multi-element dictionaries?
320
+ A: This is intentional and related with PartMC relying on the order of elements within spec-file input; while Python dictionaries preserve ordering (insertion order), JSON format does not, and we intend to make these data structures safe to be [de]serialized using JSON.
321
+
322
+ - Q: How to check the version of PartMC that PyPartMC was compiled against?
323
+ A: Version numbers of compile-time dependencies of PyPartMC, including PartMC, can be accessed as follows:
324
+ ```Python
325
+ import PyPartMC
326
+ PyPartMC.__versions_of_build_time_dependencies__['PartMC']
327
+ ```
328
+
329
+ - Q: Why m4 and perl are required at compile time?
330
+ A: PyPartMC includes parts of netCDF and HDF5 codebases which depend on m4 and perl, respectively, for generating source files before compilation.
331
+
332
+ ## Troubleshooting
333
+
334
+ #### Common installation issues
335
+ ```
336
+ error: [Errno 2] No such file or directory: 'cmake'
337
+ ```
338
+ Try rerunning after installing CMake, e.g., using `apt-get install cmake` (Ubuntu/Debian), `brew install cmake` (homebrew on macOS) or using [MSYS2](https://www.msys2.org/docs/cmake/) on Windows.
339
+
340
+ ```
341
+ No CMAKE_Fortran_COMPILER could be found.
342
+ ```
343
+ Try installing a Fortran compiler (e.g., `brew reinstall gcc` with Homebrew on macOS or using [MSYS2](https://packages.msys2.org/package/mingw-w64-x86_64-gcc-fortran?repo=mingw64) on Windows).
344
+
345
+ ```
346
+ Could not find NC_M4 using the following names: m4, m4.exe
347
+ ```
348
+ Try installing `m4` (e.g., using [MSYS2](https://packages.msys2.org/package/m4?repo=msys&variant=x86_64) on Windows).
349
+
350
+ ## Acknowledgement and citations
351
+
352
+ We would greatly appreciate citation of the PartMC model description paper (Riemer et al., 2009)
353
+ and the PyPartMC description paper (D’Aquino et al., 2024) if PyPartMC was used in your study.
354
+ The citations are:
355
+ - Riemer, N., M. West, R. A. Zaveri, R. C. Easter: Simulating the evolution of soot
356
+ mixing-state with a particle-resolved aerosol model
357
+ J. Geophys. Res., 114, D09202, 2009, DOI: [10.1029/2008JD011073](https://doi.org/10.1029/2008JD011073)
358
+ - D’Aquino, Z., S. Arabas, J. H. Curtis, A. Vaishnav, N. Riemer, M. West: PyPartMC: A
359
+ pythonic interfact to a particle-resolved, Monte Carlo aerosol simulation framework
360
+ SoftwareX, 25, 101613, 2024, DOI: [10.1016/j.softx.2023.101613](https://doi.org/10.1016/j.softx.2023.101613)
361
+
362
+ The following paragraph provides a more substantial description of PartMC (text released into the public domain and can be freely copied by anyone for any purpose):
363
+
364
+ > PartMC is a stochastic, particle-resolved aerosol box model. It tracks the
365
+ composition of many computational particles (10<sup>4</sup> to 10<sup>6</sup>) within a well-mixed air
366
+ volume, each represented by a composition vector that evolves based on physical
367
+ and chemical processes. The physical processes—including Brownian coagulation,
368
+ new particle formation, emissions, dilution, and deposition—are simulated using a
369
+ stochastic Monte Carlo approach via a Poisson process while chemical processes are
370
+ simulated deterministically for each computational particle. The weighted flow
371
+ algorithm (DeVille, Riemer, and West, 2011, 2019) enhances efficiency and reduces
372
+ ensemble variance. Detailed numerical methods are described in Riemer et al.
373
+ (2009), DeVille et al. (2011, 2019), and Curtis et al. (2016). PartMC is open-source
374
+ under the GNU GPL v2 and available at
375
+ [github.com/compdyn/partmc](https://github.com/compdyn/partmc).
376
+ >
377
+ > References:
378
+ > - Curtis, J. H., M. D. Michelotti, N. Riemer, M. T. Heath, M. West: Accelerated
379
+ simulation of stochastic particle removal processes in particle-resolved aerosol
380
+ models, J. Computational Phys., 322, 21-32, 2016, DOI: [10.1016/j.jcp.2016.06.029](https://doi.org/10.1016/j.jcp.2016.06.029)
381
+ > - DeVille, L., N. Riemer, M. West, Convergence of a generalized weighted flow
382
+ algorithm for stochastic particle coagulation, J. Computational Dynamics, 6, 69-94,
383
+ 2019, DOI: [10.3934/jcd.2019003](https://doi.org/10.3934/jcd.2019003)
384
+ > - DeVille, R. E. L., N. Riemer, M. West, The Weighted Flow Algorithm (WFA) for
385
+ stochastic particle coagulation, J. Computational Phys., 230, 8427-8451, 2011,
386
+ DOI: [10.1016/j.jcp.2011.07.027](https://doi.org/10.1016/j.jcp.2011.07.027)
387
+ > - Riemer, N., M. West, R. A. Zaveri, R. C. Easter, Simulating the evolution of soot
388
+ mixing-state with a particle-resolved aerosol model, J. Geophys. Res., 114, D09202,
389
+ 2009., DOI: [10.1029/2008JD011073](https://doi.org/10.1029/2008JD011073)
390
+
391
+ ## Credits
392
+
393
+ #### PyPartMC:
394
+
395
+ authors: [PyPartMC developers](https://github.com/open-atmos/PyPartMC/graphs/contributors)
396
+ funding: [US Department of Energy Atmospheric System Research programme](https://asr.science.energy.gov/), [Polish National Science Centre](https://ncn.gov.pl/en)
397
+ copyright: [University of Illinois at Urbana-Champaign](https://atmos.illinois.edu/)
398
+ licence: [GPL v3](https://www.gnu.org/licenses/gpl-3.0.en.html)
399
+
400
+ #### PartMC:
401
+ authors: [Nicole Riemer](https://www.atmos.uiuc.edu/~nriemer/), [Matthew West](https://lagrange.mechse.illinois.edu/mwest/), [Jeff Curtis](https://publish.illinois.edu/jcurtis2/) et al.
402
+ licence: [GPL v2](https://www.gnu.org/licenses/old-licenses/gpl-2.0.html) or later
403
+
@@ -0,0 +1,55 @@
1
+ // __ _____ _____ _____
2
+ // __| | __| | | | JSON for Modern C++
3
+ // | | |__ | | | | | | version 3.11.3
4
+ // |_____|_____|_____|_|___| https://github.com/nlohmann/json
5
+ //
6
+ // SPDX-FileCopyrightText: 2013-2023 Niels Lohmann <https://nlohmann.me>
7
+ // SPDX-License-Identifier: MIT
8
+
9
+ #pragma once
10
+
11
+ #include <utility>
12
+
13
+ #include <nlohmann/detail/abi_macros.hpp>
14
+ #include <nlohmann/detail/conversions/from_json.hpp>
15
+ #include <nlohmann/detail/conversions/to_json.hpp>
16
+ #include <nlohmann/detail/meta/identity_tag.hpp>
17
+
18
+ NLOHMANN_JSON_NAMESPACE_BEGIN
19
+
20
+ /// @sa https://json.nlohmann.me/api/adl_serializer/
21
+ template<typename ValueType, typename>
22
+ struct adl_serializer
23
+ {
24
+ /// @brief convert a JSON value to any value type
25
+ /// @sa https://json.nlohmann.me/api/adl_serializer/from_json/
26
+ template<typename BasicJsonType, typename TargetType = ValueType>
27
+ static auto from_json(BasicJsonType && j, TargetType& val) noexcept(
28
+ noexcept(::nlohmann::from_json(std::forward<BasicJsonType>(j), val)))
29
+ -> decltype(::nlohmann::from_json(std::forward<BasicJsonType>(j), val), void())
30
+ {
31
+ ::nlohmann::from_json(std::forward<BasicJsonType>(j), val);
32
+ }
33
+
34
+ /// @brief convert a JSON value to any value type
35
+ /// @sa https://json.nlohmann.me/api/adl_serializer/from_json/
36
+ template<typename BasicJsonType, typename TargetType = ValueType>
37
+ static auto from_json(BasicJsonType && j) noexcept(
38
+ noexcept(::nlohmann::from_json(std::forward<BasicJsonType>(j), detail::identity_tag<TargetType> {})))
39
+ -> decltype(::nlohmann::from_json(std::forward<BasicJsonType>(j), detail::identity_tag<TargetType> {}))
40
+ {
41
+ return ::nlohmann::from_json(std::forward<BasicJsonType>(j), detail::identity_tag<TargetType> {});
42
+ }
43
+
44
+ /// @brief convert any value type to a JSON value
45
+ /// @sa https://json.nlohmann.me/api/adl_serializer/to_json/
46
+ template<typename BasicJsonType, typename TargetType = ValueType>
47
+ static auto to_json(BasicJsonType& j, TargetType && val) noexcept(
48
+ noexcept(::nlohmann::to_json(j, std::forward<TargetType>(val))))
49
+ -> decltype(::nlohmann::to_json(j, std::forward<TargetType>(val)), void())
50
+ {
51
+ ::nlohmann::to_json(j, std::forward<TargetType>(val));
52
+ }
53
+ };
54
+
55
+ NLOHMANN_JSON_NAMESPACE_END
@@ -0,0 +1,103 @@
1
+ // __ _____ _____ _____
2
+ // __| | __| | | | JSON for Modern C++
3
+ // | | |__ | | | | | | version 3.11.3
4
+ // |_____|_____|_____|_|___| https://github.com/nlohmann/json
5
+ //
6
+ // SPDX-FileCopyrightText: 2013-2023 Niels Lohmann <https://nlohmann.me>
7
+ // SPDX-License-Identifier: MIT
8
+
9
+ #pragma once
10
+
11
+ #include <cstdint> // uint8_t, uint64_t
12
+ #include <tuple> // tie
13
+ #include <utility> // move
14
+
15
+ #include <nlohmann/detail/abi_macros.hpp>
16
+
17
+ NLOHMANN_JSON_NAMESPACE_BEGIN
18
+
19
+ /// @brief an internal type for a backed binary type
20
+ /// @sa https://json.nlohmann.me/api/byte_container_with_subtype/
21
+ template<typename BinaryType>
22
+ class byte_container_with_subtype : public BinaryType
23
+ {
24
+ public:
25
+ using container_type = BinaryType;
26
+ using subtype_type = std::uint64_t;
27
+
28
+ /// @sa https://json.nlohmann.me/api/byte_container_with_subtype/byte_container_with_subtype/
29
+ byte_container_with_subtype() noexcept(noexcept(container_type()))
30
+ : container_type()
31
+ {}
32
+
33
+ /// @sa https://json.nlohmann.me/api/byte_container_with_subtype/byte_container_with_subtype/
34
+ byte_container_with_subtype(const container_type& b) noexcept(noexcept(container_type(b)))
35
+ : container_type(b)
36
+ {}
37
+
38
+ /// @sa https://json.nlohmann.me/api/byte_container_with_subtype/byte_container_with_subtype/
39
+ byte_container_with_subtype(container_type&& b) noexcept(noexcept(container_type(std::move(b))))
40
+ : container_type(std::move(b))
41
+ {}
42
+
43
+ /// @sa https://json.nlohmann.me/api/byte_container_with_subtype/byte_container_with_subtype/
44
+ byte_container_with_subtype(const container_type& b, subtype_type subtype_) noexcept(noexcept(container_type(b)))
45
+ : container_type(b)
46
+ , m_subtype(subtype_)
47
+ , m_has_subtype(true)
48
+ {}
49
+
50
+ /// @sa https://json.nlohmann.me/api/byte_container_with_subtype/byte_container_with_subtype/
51
+ byte_container_with_subtype(container_type&& b, subtype_type subtype_) noexcept(noexcept(container_type(std::move(b))))
52
+ : container_type(std::move(b))
53
+ , m_subtype(subtype_)
54
+ , m_has_subtype(true)
55
+ {}
56
+
57
+ bool operator==(const byte_container_with_subtype& rhs) const
58
+ {
59
+ return std::tie(static_cast<const BinaryType&>(*this), m_subtype, m_has_subtype) ==
60
+ std::tie(static_cast<const BinaryType&>(rhs), rhs.m_subtype, rhs.m_has_subtype);
61
+ }
62
+
63
+ bool operator!=(const byte_container_with_subtype& rhs) const
64
+ {
65
+ return !(rhs == *this);
66
+ }
67
+
68
+ /// @brief sets the binary subtype
69
+ /// @sa https://json.nlohmann.me/api/byte_container_with_subtype/set_subtype/
70
+ void set_subtype(subtype_type subtype_) noexcept
71
+ {
72
+ m_subtype = subtype_;
73
+ m_has_subtype = true;
74
+ }
75
+
76
+ /// @brief return the binary subtype
77
+ /// @sa https://json.nlohmann.me/api/byte_container_with_subtype/subtype/
78
+ constexpr subtype_type subtype() const noexcept
79
+ {
80
+ return m_has_subtype ? m_subtype : static_cast<subtype_type>(-1);
81
+ }
82
+
83
+ /// @brief return whether the value has a subtype
84
+ /// @sa https://json.nlohmann.me/api/byte_container_with_subtype/has_subtype/
85
+ constexpr bool has_subtype() const noexcept
86
+ {
87
+ return m_has_subtype;
88
+ }
89
+
90
+ /// @brief clears the binary subtype
91
+ /// @sa https://json.nlohmann.me/api/byte_container_with_subtype/clear_subtype/
92
+ void clear_subtype() noexcept
93
+ {
94
+ m_subtype = 0;
95
+ m_has_subtype = false;
96
+ }
97
+
98
+ private:
99
+ subtype_type m_subtype = 0;
100
+ bool m_has_subtype = false;
101
+ };
102
+
103
+ NLOHMANN_JSON_NAMESPACE_END