ESMValCore 2.10.0__tar.gz → 2.11.0__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 (1121) hide show
  1. esmvalcore-2.11.0/.circleci/config.yml +225 -0
  2. esmvalcore-2.11.0/.github/workflows/build-and-deploy-on-pypi.yml +49 -0
  3. esmvalcore-2.11.0/.github/workflows/create-condalock-file.yml +99 -0
  4. esmvalcore-2.11.0/.github/workflows/install-from-conda.yml +107 -0
  5. esmvalcore-2.11.0/.github/workflows/install-from-condalock-file.yml +61 -0
  6. esmvalcore-2.11.0/.github/workflows/install-from-pypi.yml +111 -0
  7. esmvalcore-2.11.0/.github/workflows/install-from-source.yml +109 -0
  8. esmvalcore-2.11.0/.github/workflows/run-tests-monitor.yml +87 -0
  9. esmvalcore-2.11.0/.github/workflows/run-tests.yml +106 -0
  10. esmvalcore-2.11.0/.zenodo.json +248 -0
  11. esmvalcore-2.11.0/CITATION.cff +220 -0
  12. esmvalcore-2.11.0/ESMValCore.egg-info/PKG-INFO +172 -0
  13. esmvalcore-2.11.0/ESMValCore.egg-info/SOURCES.txt +964 -0
  14. esmvalcore-2.11.0/ESMValCore.egg-info/requires.txt +87 -0
  15. esmvalcore-2.11.0/PKG-INFO +172 -0
  16. esmvalcore-2.11.0/README.md +62 -0
  17. esmvalcore-2.11.0/conda-linux-64.lock +433 -0
  18. esmvalcore-2.11.0/doc/api/esmvalcore.preprocessor.rst +12 -0
  19. esmvalcore-2.11.0/doc/api/esmvalcore.regridding_schemes.rst +23 -0
  20. esmvalcore-2.11.0/doc/api/esmvalcore.rst +22 -0
  21. esmvalcore-2.11.0/doc/changelog.rst +1634 -0
  22. esmvalcore-2.11.0/doc/conf.py +489 -0
  23. esmvalcore-2.11.0/doc/index.rst +31 -0
  24. esmvalcore-2.11.0/doc/quickstart/configure.rst +971 -0
  25. esmvalcore-2.11.0/doc/quickstart/find_data.rst +843 -0
  26. esmvalcore-2.11.0/doc/recipe/preprocessor.rst +2901 -0
  27. esmvalcore-2.11.0/environment.yml +79 -0
  28. esmvalcore-2.11.0/esmvalcore/_main.py +561 -0
  29. esmvalcore-2.11.0/esmvalcore/_provenance.py +308 -0
  30. esmvalcore-2.11.0/esmvalcore/_recipe/check.py +591 -0
  31. esmvalcore-2.11.0/esmvalcore/_recipe/recipe.py +1151 -0
  32. esmvalcore-2.11.0/esmvalcore/_recipe/recipe_schema.yml +58 -0
  33. esmvalcore-2.11.0/esmvalcore/_recipe/to_datasets.py +567 -0
  34. esmvalcore-2.11.0/esmvalcore/_task.py +818 -0
  35. esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cesm/cesm2.py +83 -0
  36. esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cmip5/hadgem2_cc.py +30 -0
  37. esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cmip5/hadgem2_es.py +60 -0
  38. esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cmip5/miroc_esm.py +115 -0
  39. esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cmip6/access_esm1_5.py +132 -0
  40. esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cmip6/bcc_esm1.py +22 -0
  41. esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cmip6/cesm2.py +284 -0
  42. esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cmip6/ciesm.py +62 -0
  43. esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cmip6/ec_earth3.py +74 -0
  44. esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cmip6/ec_earth3_veg.py +78 -0
  45. esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cmip6/fio_esm_2_0.py +95 -0
  46. esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cmip6/gfdl_cm4.py +129 -0
  47. esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cmip6/gfdl_esm4.py +60 -0
  48. esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cmip6/giss_e2_1_g.py +26 -0
  49. esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cmip6/kiost_esm.py +94 -0
  50. esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cmip6/miroc6.py +39 -0
  51. esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cmip6/mpi_esm1_2_hr.py +118 -0
  52. esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cmip6/mpi_esm1_2_xr.py +49 -0
  53. esmvalcore-2.11.0/esmvalcore/cmor/_fixes/common.py +225 -0
  54. esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cordex/cnrm_cerfacs_cnrm_cm5/wrf381p.py +36 -0
  55. esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cordex/cordex_fixes.py +210 -0
  56. esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cordex/ichec_ec_earth/wrf381p.py +36 -0
  57. esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cordex/ipsl_ipsl_cm5a_mr/wrf381p.py +36 -0
  58. esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cordex/mohc_hadgem2_es/wrf381p.py +36 -0
  59. esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cordex/ncc_noresm1_m/__init__.py +1 -0
  60. esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cordex/ncc_noresm1_m/wrf381p.py +36 -0
  61. esmvalcore-2.11.0/esmvalcore/cmor/_fixes/emac/emac.py +448 -0
  62. esmvalcore-2.11.0/esmvalcore/cmor/_fixes/fix.py +901 -0
  63. esmvalcore-2.11.0/esmvalcore/cmor/_fixes/icon/_base_fixes.py +522 -0
  64. esmvalcore-2.11.0/esmvalcore/cmor/_fixes/icon/icon.py +546 -0
  65. esmvalcore-2.11.0/esmvalcore/cmor/_fixes/native6/era5.py +435 -0
  66. esmvalcore-2.11.0/esmvalcore/cmor/_fixes/native6/mswep.py +131 -0
  67. esmvalcore-2.11.0/esmvalcore/cmor/_fixes/obs4mips/airs_2_0.py +35 -0
  68. esmvalcore-2.11.0/esmvalcore/cmor/_fixes/shared.py +517 -0
  69. esmvalcore-2.11.0/esmvalcore/cmor/_utils.py +205 -0
  70. esmvalcore-2.11.0/esmvalcore/cmor/check.py +1026 -0
  71. esmvalcore-2.11.0/esmvalcore/cmor/table.py +1103 -0
  72. esmvalcore-2.11.0/esmvalcore/cmor/tables/custom/CMOR_clhmtisccp.dat +21 -0
  73. esmvalcore-2.11.0/esmvalcore/cmor/tables/custom/CMOR_clhtkisccp.dat +21 -0
  74. esmvalcore-2.11.0/esmvalcore/cmor/tables/custom/CMOR_cllmtisccp.dat +21 -0
  75. esmvalcore-2.11.0/esmvalcore/cmor/tables/custom/CMOR_clltkisccp.dat +21 -0
  76. esmvalcore-2.11.0/esmvalcore/cmor/tables/custom/CMOR_clmmtisccp.dat +21 -0
  77. esmvalcore-2.11.0/esmvalcore/cmor/tables/custom/CMOR_clmtkisccp.dat +21 -0
  78. esmvalcore-2.11.0/esmvalcore/cmor/tables/custom/CMOR_lwcre.dat +22 -0
  79. esmvalcore-2.11.0/esmvalcore/cmor/tables/custom/CMOR_netcre.dat +22 -0
  80. esmvalcore-2.11.0/esmvalcore/cmor/tables/custom/CMOR_rsnt.dat +22 -0
  81. esmvalcore-2.11.0/esmvalcore/cmor/tables/custom/CMOR_rtnt.dat +22 -0
  82. esmvalcore-2.11.0/esmvalcore/cmor/tables/custom/CMOR_swcre.dat +22 -0
  83. esmvalcore-2.11.0/esmvalcore/cmor/tables/custom/CMOR_tcw.dat +21 -0
  84. esmvalcore-2.11.0/esmvalcore/config/__init__.py +19 -0
  85. esmvalcore-2.11.0/esmvalcore/config/_config_object.py +364 -0
  86. esmvalcore-2.11.0/esmvalcore/config/_esgf_pyclient.py +127 -0
  87. esmvalcore-2.11.0/esmvalcore/config/_logging.py +127 -0
  88. esmvalcore-2.11.0/esmvalcore/config/config-logging.yml +51 -0
  89. esmvalcore-2.11.0/esmvalcore/config/extra_facets/icon-mappings.yml +78 -0
  90. esmvalcore-2.11.0/esmvalcore/config-developer.yml +196 -0
  91. esmvalcore-2.11.0/esmvalcore/config-user.yml +274 -0
  92. esmvalcore-2.11.0/esmvalcore/esgf/_download.py +584 -0
  93. esmvalcore-2.11.0/esmvalcore/experimental/recipe_output.py +447 -0
  94. esmvalcore-2.11.0/esmvalcore/iris_helpers.py +359 -0
  95. esmvalcore-2.11.0/esmvalcore/local.py +672 -0
  96. esmvalcore-2.11.0/esmvalcore/preprocessor/__init__.py +716 -0
  97. esmvalcore-2.11.0/esmvalcore/preprocessor/_area.py +986 -0
  98. esmvalcore-2.11.0/esmvalcore/preprocessor/_compare_with_refs.py +573 -0
  99. esmvalcore-2.11.0/esmvalcore/preprocessor/_derive/__init__.py +126 -0
  100. esmvalcore-2.11.0/esmvalcore/preprocessor/_derive/lwcre.py +36 -0
  101. esmvalcore-2.11.0/esmvalcore/preprocessor/_derive/netcre.py +48 -0
  102. esmvalcore-2.11.0/esmvalcore/preprocessor/_derive/rsnt.py +36 -0
  103. esmvalcore-2.11.0/esmvalcore/preprocessor/_derive/sfcwind.py +35 -0
  104. esmvalcore-2.11.0/esmvalcore/preprocessor/_derive/sm.py +38 -0
  105. esmvalcore-2.11.0/esmvalcore/preprocessor/_derive/swcre.py +36 -0
  106. esmvalcore-2.11.0/esmvalcore/preprocessor/_io.py +527 -0
  107. esmvalcore-2.11.0/esmvalcore/preprocessor/_mask.py +696 -0
  108. esmvalcore-2.11.0/esmvalcore/preprocessor/_multimodel.py +888 -0
  109. esmvalcore-2.11.0/esmvalcore/preprocessor/_other.py +431 -0
  110. esmvalcore-2.11.0/esmvalcore/preprocessor/_regrid.py +1393 -0
  111. esmvalcore-2.11.0/esmvalcore/preprocessor/_regrid_esmpy.py +471 -0
  112. esmvalcore-2.11.0/esmvalcore/preprocessor/_regrid_unstructured.py +403 -0
  113. esmvalcore-2.11.0/esmvalcore/preprocessor/_rolling_window.py +47 -0
  114. esmvalcore-2.11.0/esmvalcore/preprocessor/_shared.py +577 -0
  115. esmvalcore-2.11.0/esmvalcore/preprocessor/_time.py +1792 -0
  116. esmvalcore-2.11.0/esmvalcore/preprocessor/_trend.py +181 -0
  117. esmvalcore-2.11.0/esmvalcore/preprocessor/_units.py +178 -0
  118. esmvalcore-2.11.0/esmvalcore/preprocessor/_volume.py +584 -0
  119. esmvalcore-2.11.0/esmvalcore/preprocessor/regrid_schemes.py +130 -0
  120. esmvalcore-2.11.0/esmvalcore/typing.py +26 -0
  121. esmvalcore-2.11.0/setup.py +254 -0
  122. esmvalcore-2.11.0/tests/integration/cmor/_fixes/cmip5/test_hadgem2_es.py +68 -0
  123. esmvalcore-2.11.0/tests/integration/cmor/_fixes/cmip6/test_bcc_esm1.py +92 -0
  124. esmvalcore-2.11.0/tests/integration/cmor/_fixes/cmip6/test_ciesm.py +63 -0
  125. esmvalcore-2.11.0/tests/integration/cmor/_fixes/cmip6/test_fio_esm_2_0.py +144 -0
  126. esmvalcore-2.11.0/tests/integration/cmor/_fixes/cmip6/test_gfdl_cm4.py +245 -0
  127. esmvalcore-2.11.0/tests/integration/cmor/_fixes/cmip6/test_mpi_esm1_2_hr.py +185 -0
  128. esmvalcore-2.11.0/tests/integration/cmor/_fixes/cordex/test_cnrm_cerfacs_cnrm_cm5.py +93 -0
  129. esmvalcore-2.11.0/tests/integration/cmor/_fixes/cordex/test_ichec_ec_earth.py +78 -0
  130. esmvalcore-2.11.0/tests/integration/cmor/_fixes/cordex/test_ipsl_ipsl_cm5a_mr.py +36 -0
  131. esmvalcore-2.11.0/tests/integration/cmor/_fixes/cordex/test_mohc_hadgem2_es.py +135 -0
  132. esmvalcore-2.11.0/tests/integration/cmor/_fixes/cordex/test_ncc_noresm1_m.py +78 -0
  133. esmvalcore-2.11.0/tests/integration/cmor/_fixes/icon/test_icon.py +2390 -0
  134. esmvalcore-2.11.0/tests/integration/cmor/_fixes/native6/test_era5.py +1099 -0
  135. esmvalcore-2.11.0/tests/integration/cmor/_fixes/obs4mips/test_airs_2_0.py +31 -0
  136. esmvalcore-2.11.0/tests/integration/cmor/_fixes/test_data/cesm2_cl.nc +0 -0
  137. esmvalcore-2.11.0/tests/integration/cmor/_fixes/test_data/common_cl_hybrid_height.nc +0 -0
  138. esmvalcore-2.11.0/tests/integration/cmor/_fixes/test_shared.py +684 -0
  139. esmvalcore-2.11.0/tests/integration/cmor/test_read_cmor_tables.py +177 -0
  140. esmvalcore-2.11.0/tests/integration/cmor/test_table.py +524 -0
  141. esmvalcore-2.11.0/tests/integration/conftest.py +162 -0
  142. esmvalcore-2.11.0/tests/integration/data_finder.yml +1348 -0
  143. esmvalcore-2.11.0/tests/integration/preprocessor/_derive/test_sispeed.py +58 -0
  144. esmvalcore-2.11.0/tests/integration/preprocessor/_io/test_concatenate.py +308 -0
  145. esmvalcore-2.11.0/tests/integration/preprocessor/_regrid/test_extract_levels.py +185 -0
  146. esmvalcore-2.11.0/tests/integration/preprocessor/_regrid/test_regrid.py +446 -0
  147. esmvalcore-2.11.0/tests/integration/preprocessor/_regrid/test_regrid_schemes.py +55 -0
  148. esmvalcore-2.11.0/tests/integration/preprocessor/_regrid/test_regrid_unstructured.py +310 -0
  149. esmvalcore-2.11.0/tests/integration/preprocessor/_time/test_time.py +561 -0
  150. esmvalcore-2.11.0/tests/integration/recipe/test_recipe.py +3292 -0
  151. esmvalcore-2.11.0/tests/sample_data/experimental/test_run_recipe.py +131 -0
  152. esmvalcore-2.11.0/tests/unit/config/test_config.py +282 -0
  153. esmvalcore-2.11.0/tests/unit/config/test_config_object.py +320 -0
  154. esmvalcore-2.11.0/tests/unit/esgf/test_download.py +623 -0
  155. esmvalcore-2.11.0/tests/unit/local/test_get_rootpath.py +28 -0
  156. esmvalcore-2.11.0/tests/unit/main/test_esmvaltool.py +237 -0
  157. esmvalcore-2.11.0/tests/unit/main/test_main.py +35 -0
  158. esmvalcore-2.11.0/tests/unit/preprocessor/_area/test_area.py +1449 -0
  159. esmvalcore-2.11.0/tests/unit/preprocessor/_compare_with_refs/test_compare_with_refs.py +809 -0
  160. esmvalcore-2.11.0/tests/unit/preprocessor/_derive/test_lwcre.py +28 -0
  161. esmvalcore-2.11.0/tests/unit/preprocessor/_derive/test_netcre.py +36 -0
  162. esmvalcore-2.11.0/tests/unit/preprocessor/_derive/test_rsnt.py +26 -0
  163. esmvalcore-2.11.0/tests/unit/preprocessor/_derive/test_sfcwind.py +49 -0
  164. esmvalcore-2.11.0/tests/unit/preprocessor/_derive/test_sm.py +32 -0
  165. esmvalcore-2.11.0/tests/unit/preprocessor/_derive/test_swcre.py +28 -0
  166. esmvalcore-2.11.0/tests/unit/preprocessor/_mask/test_mask.py +133 -0
  167. esmvalcore-2.11.0/tests/unit/preprocessor/_other/test_other.py +433 -0
  168. esmvalcore-2.11.0/tests/unit/preprocessor/_regrid/test__stock_cube.py +133 -0
  169. esmvalcore-2.11.0/tests/unit/preprocessor/_regrid/test_broadcast_to_shape.py +112 -0
  170. esmvalcore-2.11.0/tests/unit/preprocessor/_regrid/test_extract_levels.py +372 -0
  171. esmvalcore-2.11.0/tests/unit/preprocessor/_regrid/test_extract_point.py +60 -0
  172. esmvalcore-2.11.0/tests/unit/preprocessor/_regrid/test_extract_regional_grid.py +106 -0
  173. esmvalcore-2.11.0/tests/unit/preprocessor/_regrid/test_regrid.py +392 -0
  174. esmvalcore-2.11.0/tests/unit/preprocessor/_regrid_esmpy/test_regrid_esmpy.py +752 -0
  175. esmvalcore-2.11.0/tests/unit/preprocessor/_time/test_time.py +2065 -0
  176. esmvalcore-2.11.0/tests/unit/preprocessor/_units/test_convert_units.py +254 -0
  177. esmvalcore-2.11.0/tests/unit/preprocessor/_volume/test_volume.py +670 -0
  178. esmvalcore-2.11.0/tests/unit/preprocessor/test_runner.py +61 -0
  179. esmvalcore-2.11.0/tests/unit/preprocessor/test_shared.py +349 -0
  180. esmvalcore-2.11.0/tests/unit/recipe/test_to_datasets.py +438 -0
  181. esmvalcore-2.11.0/tests/unit/task/__init__.py +0 -0
  182. esmvalcore-2.11.0/tests/unit/test_iris_helpers.py +569 -0
  183. esmvalcore-2.11.0/tests/unit/test_logging.py +66 -0
  184. ESMValCore-2.10.0/.circleci/config.yml +0 -225
  185. ESMValCore-2.10.0/.github/workflows/build-and-deploy-on-pypi.yml +0 -49
  186. ESMValCore-2.10.0/.github/workflows/create-condalock-file.yml +0 -102
  187. ESMValCore-2.10.0/.github/workflows/install-from-conda.yml +0 -106
  188. ESMValCore-2.10.0/.github/workflows/install-from-condalock-file.yml +0 -62
  189. ESMValCore-2.10.0/.github/workflows/install-from-pypi.yml +0 -110
  190. ESMValCore-2.10.0/.github/workflows/install-from-source.yml +0 -108
  191. ESMValCore-2.10.0/.github/workflows/run-tests-monitor.yml +0 -85
  192. ESMValCore-2.10.0/.github/workflows/run-tests.yml +0 -100
  193. ESMValCore-2.10.0/.zenodo.json +0 -234
  194. ESMValCore-2.10.0/CITATION.cff +0 -211
  195. ESMValCore-2.10.0/ESMValCore.egg-info/PKG-INFO +0 -170
  196. ESMValCore-2.10.0/ESMValCore.egg-info/SOURCES.txt +0 -938
  197. ESMValCore-2.10.0/ESMValCore.egg-info/requires.txt +0 -85
  198. ESMValCore-2.10.0/PKG-INFO +0 -170
  199. ESMValCore-2.10.0/README.md +0 -62
  200. ESMValCore-2.10.0/conda-linux-64.lock +0 -431
  201. ESMValCore-2.10.0/doc/api/esmvalcore.preprocessor.rst +0 -7
  202. ESMValCore-2.10.0/doc/api/esmvalcore.rst +0 -21
  203. ESMValCore-2.10.0/doc/changelog.rst +0 -1461
  204. ESMValCore-2.10.0/doc/conf.py +0 -458
  205. ESMValCore-2.10.0/doc/index.rst +0 -11
  206. ESMValCore-2.10.0/doc/quickstart/configure.rst +0 -965
  207. ESMValCore-2.10.0/doc/quickstart/find_data.rst +0 -841
  208. ESMValCore-2.10.0/doc/recipe/preprocessor.rst +0 -2457
  209. ESMValCore-2.10.0/environment.yml +0 -76
  210. ESMValCore-2.10.0/esmvalcore/_main.py +0 -546
  211. ESMValCore-2.10.0/esmvalcore/_provenance.py +0 -308
  212. ESMValCore-2.10.0/esmvalcore/_recipe/check.py +0 -475
  213. ESMValCore-2.10.0/esmvalcore/_recipe/recipe.py +0 -1131
  214. ESMValCore-2.10.0/esmvalcore/_recipe/recipe_schema.yml +0 -58
  215. ESMValCore-2.10.0/esmvalcore/_recipe/to_datasets.py +0 -514
  216. ESMValCore-2.10.0/esmvalcore/_task.py +0 -818
  217. ESMValCore-2.10.0/esmvalcore/cmor/_fixes/cesm/cesm2.py +0 -83
  218. ESMValCore-2.10.0/esmvalcore/cmor/_fixes/cmip5/hadgem2_cc.py +0 -55
  219. ESMValCore-2.10.0/esmvalcore/cmor/_fixes/cmip5/hadgem2_es.py +0 -60
  220. ESMValCore-2.10.0/esmvalcore/cmor/_fixes/cmip5/miroc_esm.py +0 -115
  221. ESMValCore-2.10.0/esmvalcore/cmor/_fixes/cmip6/access_esm1_5.py +0 -132
  222. ESMValCore-2.10.0/esmvalcore/cmor/_fixes/cmip6/bcc_esm1.py +0 -19
  223. ESMValCore-2.10.0/esmvalcore/cmor/_fixes/cmip6/cesm2.py +0 -288
  224. ESMValCore-2.10.0/esmvalcore/cmor/_fixes/cmip6/ciesm.py +0 -39
  225. ESMValCore-2.10.0/esmvalcore/cmor/_fixes/cmip6/ec_earth3.py +0 -74
  226. ESMValCore-2.10.0/esmvalcore/cmor/_fixes/cmip6/ec_earth3_veg.py +0 -78
  227. ESMValCore-2.10.0/esmvalcore/cmor/_fixes/cmip6/fio_esm_2_0.py +0 -72
  228. ESMValCore-2.10.0/esmvalcore/cmor/_fixes/cmip6/gfdl_cm4.py +0 -121
  229. ESMValCore-2.10.0/esmvalcore/cmor/_fixes/cmip6/gfdl_esm4.py +0 -58
  230. ESMValCore-2.10.0/esmvalcore/cmor/_fixes/cmip6/giss_e2_1_g.py +0 -28
  231. ESMValCore-2.10.0/esmvalcore/cmor/_fixes/cmip6/kiost_esm.py +0 -86
  232. ESMValCore-2.10.0/esmvalcore/cmor/_fixes/cmip6/miroc6.py +0 -45
  233. ESMValCore-2.10.0/esmvalcore/cmor/_fixes/cmip6/mpi_esm1_2_hr.py +0 -102
  234. ESMValCore-2.10.0/esmvalcore/cmor/_fixes/cmip6/mpi_esm1_2_xr.py +0 -29
  235. ESMValCore-2.10.0/esmvalcore/cmor/_fixes/common.py +0 -225
  236. ESMValCore-2.10.0/esmvalcore/cmor/_fixes/cordex/cordex_fixes.py +0 -206
  237. ESMValCore-2.10.0/esmvalcore/cmor/_fixes/emac/emac.py +0 -448
  238. ESMValCore-2.10.0/esmvalcore/cmor/_fixes/fix.py +0 -900
  239. ESMValCore-2.10.0/esmvalcore/cmor/_fixes/icon/_base_fixes.py +0 -455
  240. ESMValCore-2.10.0/esmvalcore/cmor/_fixes/icon/icon.py +0 -515
  241. ESMValCore-2.10.0/esmvalcore/cmor/_fixes/native6/era5.py +0 -435
  242. ESMValCore-2.10.0/esmvalcore/cmor/_fixes/native6/mswep.py +0 -131
  243. ESMValCore-2.10.0/esmvalcore/cmor/_fixes/shared.py +0 -510
  244. ESMValCore-2.10.0/esmvalcore/cmor/_utils.py +0 -219
  245. ESMValCore-2.10.0/esmvalcore/cmor/check.py +0 -1009
  246. ESMValCore-2.10.0/esmvalcore/cmor/table.py +0 -1089
  247. ESMValCore-2.10.0/esmvalcore/cmor/tables/custom/CMOR_clhmtisccp.dat +0 -22
  248. ESMValCore-2.10.0/esmvalcore/cmor/tables/custom/CMOR_clhtkisccp.dat +0 -22
  249. ESMValCore-2.10.0/esmvalcore/cmor/tables/custom/CMOR_cllmtisccp.dat +0 -22
  250. ESMValCore-2.10.0/esmvalcore/cmor/tables/custom/CMOR_clltkisccp.dat +0 -22
  251. ESMValCore-2.10.0/esmvalcore/cmor/tables/custom/CMOR_clmmtisccp.dat +0 -22
  252. ESMValCore-2.10.0/esmvalcore/cmor/tables/custom/CMOR_clmtkisccp.dat +0 -22
  253. ESMValCore-2.10.0/esmvalcore/cmor/tables/custom/CMOR_lwcre.dat +0 -22
  254. ESMValCore-2.10.0/esmvalcore/cmor/tables/custom/CMOR_netcre.dat +0 -22
  255. ESMValCore-2.10.0/esmvalcore/cmor/tables/custom/CMOR_rsnt.dat +0 -22
  256. ESMValCore-2.10.0/esmvalcore/cmor/tables/custom/CMOR_rtnt.dat +0 -22
  257. ESMValCore-2.10.0/esmvalcore/cmor/tables/custom/CMOR_swcre.dat +0 -22
  258. ESMValCore-2.10.0/esmvalcore/config/__init__.py +0 -17
  259. ESMValCore-2.10.0/esmvalcore/config/_config_object.py +0 -242
  260. ESMValCore-2.10.0/esmvalcore/config/_esgf_pyclient.py +0 -189
  261. ESMValCore-2.10.0/esmvalcore/config/_logging.py +0 -103
  262. ESMValCore-2.10.0/esmvalcore/config/config-logging.yml +0 -33
  263. ESMValCore-2.10.0/esmvalcore/config/extra_facets/icon-mappings.yml +0 -70
  264. ESMValCore-2.10.0/esmvalcore/config-developer.yml +0 -193
  265. ESMValCore-2.10.0/esmvalcore/config-user.yml +0 -249
  266. ESMValCore-2.10.0/esmvalcore/esgf/_download.py +0 -581
  267. ESMValCore-2.10.0/esmvalcore/experimental/recipe_output.py +0 -412
  268. ESMValCore-2.10.0/esmvalcore/iris_helpers.py +0 -159
  269. ESMValCore-2.10.0/esmvalcore/local.py +0 -678
  270. ESMValCore-2.10.0/esmvalcore/preprocessor/__init__.py +0 -693
  271. ESMValCore-2.10.0/esmvalcore/preprocessor/_area.py +0 -916
  272. ESMValCore-2.10.0/esmvalcore/preprocessor/_bias.py +0 -118
  273. ESMValCore-2.10.0/esmvalcore/preprocessor/_derive/__init__.py +0 -126
  274. ESMValCore-2.10.0/esmvalcore/preprocessor/_derive/lwcre.py +0 -35
  275. ESMValCore-2.10.0/esmvalcore/preprocessor/_derive/netcre.py +0 -47
  276. ESMValCore-2.10.0/esmvalcore/preprocessor/_derive/rsnt.py +0 -34
  277. ESMValCore-2.10.0/esmvalcore/preprocessor/_derive/sm.py +0 -38
  278. ESMValCore-2.10.0/esmvalcore/preprocessor/_derive/swcre.py +0 -34
  279. ESMValCore-2.10.0/esmvalcore/preprocessor/_io.py +0 -559
  280. ESMValCore-2.10.0/esmvalcore/preprocessor/_mask.py +0 -692
  281. ESMValCore-2.10.0/esmvalcore/preprocessor/_multimodel.py +0 -881
  282. ESMValCore-2.10.0/esmvalcore/preprocessor/_other.py +0 -87
  283. ESMValCore-2.10.0/esmvalcore/preprocessor/_regrid.py +0 -1136
  284. ESMValCore-2.10.0/esmvalcore/preprocessor/_regrid_esmpy.py +0 -354
  285. ESMValCore-2.10.0/esmvalcore/preprocessor/_rolling_window.py +0 -46
  286. ESMValCore-2.10.0/esmvalcore/preprocessor/_shared.py +0 -183
  287. ESMValCore-2.10.0/esmvalcore/preprocessor/_time.py +0 -1294
  288. ESMValCore-2.10.0/esmvalcore/preprocessor/_trend.py +0 -177
  289. ESMValCore-2.10.0/esmvalcore/preprocessor/_units.py +0 -165
  290. ESMValCore-2.10.0/esmvalcore/preprocessor/_volume.py +0 -521
  291. ESMValCore-2.10.0/esmvalcore/typing.py +0 -19
  292. ESMValCore-2.10.0/setup.py +0 -252
  293. ESMValCore-2.10.0/tests/integration/cmor/_fixes/cmip5/test_hadgem2_es.py +0 -38
  294. ESMValCore-2.10.0/tests/integration/cmor/_fixes/cmip6/test_bcc_esm1.py +0 -80
  295. ESMValCore-2.10.0/tests/integration/cmor/_fixes/cmip6/test_ciesm.py +0 -53
  296. ESMValCore-2.10.0/tests/integration/cmor/_fixes/cmip6/test_fio_esm_2_0.py +0 -135
  297. ESMValCore-2.10.0/tests/integration/cmor/_fixes/cmip6/test_gfdl_cm4.py +0 -118
  298. ESMValCore-2.10.0/tests/integration/cmor/_fixes/cmip6/test_mpi_esm1_2_hr.py +0 -75
  299. ESMValCore-2.10.0/tests/integration/cmor/_fixes/cordex/test_cnrm_cerfacs_cnrm_cm5.py +0 -61
  300. ESMValCore-2.10.0/tests/integration/cmor/_fixes/cordex/test_ichec_ec_earth.py +0 -46
  301. ESMValCore-2.10.0/tests/integration/cmor/_fixes/cordex/test_mohc_hadgem2_es.py +0 -105
  302. ESMValCore-2.10.0/tests/integration/cmor/_fixes/cordex/test_ncc_noresm1_m.py +0 -46
  303. ESMValCore-2.10.0/tests/integration/cmor/_fixes/icon/test_icon.py +0 -2211
  304. ESMValCore-2.10.0/tests/integration/cmor/_fixes/native6/test_era5.py +0 -1050
  305. ESMValCore-2.10.0/tests/integration/cmor/_fixes/test_data/cesm2_cl.nc +0 -0
  306. ESMValCore-2.10.0/tests/integration/cmor/_fixes/test_data/common_cl_hybrid_height.nc +0 -0
  307. ESMValCore-2.10.0/tests/integration/cmor/_fixes/test_shared.py +0 -664
  308. ESMValCore-2.10.0/tests/integration/cmor/test_read_cmor_tables.py +0 -78
  309. ESMValCore-2.10.0/tests/integration/cmor/test_table.py +0 -528
  310. ESMValCore-2.10.0/tests/integration/conftest.py +0 -119
  311. ESMValCore-2.10.0/tests/integration/data_finder.yml +0 -1238
  312. ESMValCore-2.10.0/tests/integration/preprocessor/_derive/test_sispeed.py +0 -55
  313. ESMValCore-2.10.0/tests/integration/preprocessor/_io/test_concatenate.py +0 -514
  314. ESMValCore-2.10.0/tests/integration/preprocessor/_regrid/test_extract_levels.py +0 -175
  315. ESMValCore-2.10.0/tests/integration/preprocessor/_regrid/test_regrid.py +0 -299
  316. ESMValCore-2.10.0/tests/integration/recipe/test_recipe.py +0 -2769
  317. ESMValCore-2.10.0/tests/sample_data/experimental/test_run_recipe.py +0 -115
  318. ESMValCore-2.10.0/tests/unit/config/test_config.py +0 -279
  319. ESMValCore-2.10.0/tests/unit/config/test_config_object.py +0 -92
  320. ESMValCore-2.10.0/tests/unit/esgf/test_download.py +0 -623
  321. ESMValCore-2.10.0/tests/unit/main/test_esmvaltool.py +0 -236
  322. ESMValCore-2.10.0/tests/unit/main/test_main.py +0 -35
  323. ESMValCore-2.10.0/tests/unit/preprocessor/_area/test_area.py +0 -1296
  324. ESMValCore-2.10.0/tests/unit/preprocessor/_bias/test_bias.py +0 -261
  325. ESMValCore-2.10.0/tests/unit/preprocessor/_mask/test_mask.py +0 -131
  326. ESMValCore-2.10.0/tests/unit/preprocessor/_other/test_other.py +0 -95
  327. ESMValCore-2.10.0/tests/unit/preprocessor/_regrid/test__stock_cube.py +0 -121
  328. ESMValCore-2.10.0/tests/unit/preprocessor/_regrid/test_extract_levels.py +0 -321
  329. ESMValCore-2.10.0/tests/unit/preprocessor/_regrid/test_extract_point.py +0 -61
  330. ESMValCore-2.10.0/tests/unit/preprocessor/_regrid/test_extract_regional_grid.py +0 -94
  331. ESMValCore-2.10.0/tests/unit/preprocessor/_regrid/test_regrid.py +0 -387
  332. ESMValCore-2.10.0/tests/unit/preprocessor/_regrid_esmpy/test_regrid_esmpy.py +0 -676
  333. ESMValCore-2.10.0/tests/unit/preprocessor/_time/test_time.py +0 -2224
  334. ESMValCore-2.10.0/tests/unit/preprocessor/_units/test_convert_units.py +0 -220
  335. ESMValCore-2.10.0/tests/unit/preprocessor/_volume/test_volume.py +0 -453
  336. ESMValCore-2.10.0/tests/unit/preprocessor/test_runner.py +0 -59
  337. ESMValCore-2.10.0/tests/unit/preprocessor/test_shared.py +0 -184
  338. ESMValCore-2.10.0/tests/unit/recipe/test_to_datasets.py +0 -386
  339. ESMValCore-2.10.0/tests/unit/test_iris_helpers.py +0 -222
  340. ESMValCore-2.10.0/tests/unit/test_logging.py +0 -38
  341. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/.circleci/install_triggers +0 -0
  342. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/.codacy.yml +0 -0
  343. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/.editorconfig +0 -0
  344. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/.github/CODEOWNERS +0 -0
  345. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
  346. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/.github/ISSUE_TEMPLATE/data_issue_report.md +0 -0
  347. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
  348. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/.github/pull_request_template.md +0 -0
  349. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/.github/workflows/citation_file_validator.yml +0 -0
  350. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/.gitignore +0 -0
  351. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/.mailmap +0 -0
  352. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/.pre-commit-config.yaml +0 -0
  353. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/.prospector.yml +0 -0
  354. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/.readthedocs.yaml +0 -0
  355. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/CODE_OF_CONDUCT.md +0 -0
  356. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/CONTRIBUTING.md +0 -0
  357. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/ESMValCore.egg-info/dependency_links.txt +0 -0
  358. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/ESMValCore.egg-info/entry_points.txt +0 -0
  359. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/ESMValCore.egg-info/not-zip-safe +0 -0
  360. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/ESMValCore.egg-info/top_level.txt +0 -0
  361. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/LICENSE +0 -0
  362. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/NOTICE +0 -0
  363. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/codecov.yml +0 -0
  364. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/api/esmvalcore.cmor.rst +0 -0
  365. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/api/esmvalcore.config.rst +0 -0
  366. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/api/esmvalcore.dataset.rst +0 -0
  367. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/api/esmvalcore.esgf.rst +0 -0
  368. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/api/esmvalcore.exceptions.rst +0 -0
  369. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/api/esmvalcore.experimental.recipe.rst +0 -0
  370. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/api/esmvalcore.experimental.recipe_metadata.rst +0 -0
  371. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/api/esmvalcore.experimental.recipe_output.rst +0 -0
  372. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/api/esmvalcore.experimental.rst +0 -0
  373. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/api/esmvalcore.experimental.utils.rst +0 -0
  374. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/api/esmvalcore.iris_helpers.rst +0 -0
  375. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/api/esmvalcore.local.rst +0 -0
  376. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/api/esmvalcore.typing.rst +0 -0
  377. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/contributing.rst +0 -0
  378. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/develop/derivation.rst +0 -0
  379. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/develop/fixing_data.rst +0 -0
  380. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/develop/index.rst +0 -0
  381. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/develop/preprocessor_function.rst +0 -0
  382. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/example-notebooks.rst +0 -0
  383. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/figures/ESMValTool-logo-2.pdf +0 -0
  384. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/figures/ESMValTool-logo-2.png +0 -0
  385. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/figures/ESMValTool-logo.png +0 -0
  386. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/figures/api_recipe_output.png +0 -0
  387. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/gensidebar.py +0 -0
  388. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/interfaces.rst +0 -0
  389. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/quickstart/index.rst +0 -0
  390. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/quickstart/install.rst +0 -0
  391. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/quickstart/output.rst +0 -0
  392. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/quickstart/run.rst +0 -0
  393. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/recipe/index.rst +0 -0
  394. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/recipe/overview.rst +0 -0
  395. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/docker/Dockerfile +0 -0
  396. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/docker/Dockerfile.dev +0 -0
  397. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/__init__.py +0 -0
  398. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/_citation.py +0 -0
  399. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/_recipe/__init__.py +0 -0
  400. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/_recipe/_io.py +0 -0
  401. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/_recipe/from_datasets.py +0 -0
  402. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/_version.py +0 -0
  403. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/__init__.py +0 -0
  404. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/__init__.py +0 -0
  405. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cesm/__init__.py +0 -0
  406. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/__init__.py +0 -0
  407. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/access1_0.py +0 -0
  408. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/access1_3.py +0 -0
  409. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/bcc_csm1_1.py +0 -0
  410. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/bcc_csm1_1_m.py +0 -0
  411. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/bnu_esm.py +0 -0
  412. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/canesm2.py +0 -0
  413. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/ccsm4.py +0 -0
  414. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/cesm1_bgc.py +0 -0
  415. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/cesm1_cam5.py +0 -0
  416. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/cesm1_fastchem.py +0 -0
  417. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/cesm1_waccm.py +0 -0
  418. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/cnrm_cm5.py +0 -0
  419. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/csiro_mk3_6_0.py +0 -0
  420. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/ec_earth.py +0 -0
  421. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/fgoals_g2.py +0 -0
  422. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/fgoals_s2.py +0 -0
  423. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/fio_esm.py +0 -0
  424. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/gfdl_cm2p1.py +0 -0
  425. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/gfdl_cm3.py +0 -0
  426. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/gfdl_esm2g.py +0 -0
  427. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/gfdl_esm2m.py +0 -0
  428. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/giss_e2_h.py +0 -0
  429. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/giss_e2_r.py +0 -0
  430. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/inmcm4.py +0 -0
  431. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/ipsl_cm5a_lr.py +0 -0
  432. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/ipsl_cm5a_mr.py +0 -0
  433. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/ipsl_cm5b_lr.py +0 -0
  434. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/miroc5.py +0 -0
  435. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/miroc_esm_chem.py +0 -0
  436. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/mpi_esm_lr.py +0 -0
  437. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/mpi_esm_mr.py +0 -0
  438. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/mpi_esm_p.py +0 -0
  439. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/mri_cgcm3.py +0 -0
  440. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/mri_esm1.py +0 -0
  441. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/noresm1_m.py +0 -0
  442. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/noresm1_me.py +0 -0
  443. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/__init__.py +0 -0
  444. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/access_cm2.py +0 -0
  445. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/awi_cm_1_1_mr.py +0 -0
  446. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/awi_esm_1_1_lr.py +0 -0
  447. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/bcc_csm2_mr.py +0 -0
  448. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/cams_csm1_0.py +0 -0
  449. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/canesm5.py +0 -0
  450. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/canesm5_canoe.py +0 -0
  451. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/cas_esm2_0.py +0 -0
  452. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/cesm2_fv2.py +0 -0
  453. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/cesm2_waccm.py +0 -0
  454. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/cesm2_waccm_fv2.py +0 -0
  455. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/cmcc_cm2_sr5.py +0 -0
  456. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/cnrm_cm6_1.py +0 -0
  457. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/cnrm_cm6_1_hr.py +0 -0
  458. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/cnrm_esm2_1.py +0 -0
  459. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/e3sm_1_0.py +0 -0
  460. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/ec_earth3_veg_lr.py +0 -0
  461. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/fgoals_f3_l.py +0 -0
  462. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/fgoals_g3.py +0 -0
  463. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/giss_e2_1_h.py +0 -0
  464. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/hadgem3_gc31_ll.py +0 -0
  465. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/icon_esm_lr.py +0 -0
  466. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/iitm_esm.py +0 -0
  467. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/ipsl_cm5a2_inca.py +0 -0
  468. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/ipsl_cm6a_lr.py +0 -0
  469. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/ipsl_cm6a_lr_inca.py +0 -0
  470. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/kace_1_0_g.py +0 -0
  471. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/mcm_ua_1_0.py +0 -0
  472. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/miroc_es2l.py +0 -0
  473. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/mpi_esm1_2_lr.py +0 -0
  474. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/mpi_esm_1_2_ham.py +0 -0
  475. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/mri_esm2_0.py +0 -0
  476. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/nesm3.py +0 -0
  477. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/noresm2_lm.py +0 -0
  478. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/noresm2_mm.py +0 -0
  479. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/sam0_unicon.py +0 -0
  480. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/taiesm1.py +0 -0
  481. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/ukesm1_0_ll.py +0 -0
  482. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cordex/__init__.py +0 -0
  483. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cordex/cnrm_cerfacs_cnrm_cm5/__init__.py +0 -0
  484. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cordex/cnrm_cerfacs_cnrm_cm5/aladin63.py +0 -0
  485. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cordex/cnrm_cerfacs_cnrm_cm5/hadrem3_ga7_05.py +0 -0
  486. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cordex/ichec_ec_earth/__init__.py +0 -0
  487. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cordex/ichec_ec_earth/cclm4_8_17.py +0 -0
  488. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cordex/ichec_ec_earth/hadrem3_ga7_05.py +0 -0
  489. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cordex/ichec_ec_earth/racmo22e.py +0 -0
  490. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cordex/ichec_ec_earth/rca4.py +0 -0
  491. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cordex/ichec_ec_earth/remo2015.py +0 -0
  492. {ESMValCore-2.10.0/esmvalcore/cmor/_fixes/cordex/miroc_miroc5 → esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cordex/ipsl_ipsl_cm5a_mr}/__init__.py +0 -0
  493. {ESMValCore-2.10.0/esmvalcore/cmor/_fixes/cordex/mohc_hadgem2_es → esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cordex/miroc_miroc5}/__init__.py +0 -0
  494. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cordex/miroc_miroc5/cclm4_8_17.py +0 -0
  495. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cordex/miroc_miroc5/remo2015.py +0 -0
  496. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cordex/miroc_miroc5/wrf361h.py +0 -0
  497. {ESMValCore-2.10.0/esmvalcore/cmor/_fixes/cordex/mpi_m_mpi_esm_lr → esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cordex/mohc_hadgem2_es}/__init__.py +0 -0
  498. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cordex/mohc_hadgem2_es/hadrem3_ga7_05.py +0 -0
  499. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cordex/mohc_hadgem2_es/hirham5.py +0 -0
  500. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cordex/mohc_hadgem2_es/rca4.py +0 -0
  501. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cordex/mohc_hadgem2_es/remo2015.py +0 -0
  502. {ESMValCore-2.10.0/esmvalcore/cmor/_fixes/cordex/ncc_noresm1_m → esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cordex/mpi_m_mpi_esm_lr}/__init__.py +0 -0
  503. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cordex/mpi_m_mpi_esm_lr/hadrem3_ga7_05.py +0 -0
  504. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cordex/mpi_m_mpi_esm_lr/racmo22e.py +0 -0
  505. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cordex/mpi_m_mpi_esm_lr/regcm4_6.py +0 -0
  506. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cordex/ncc_noresm1_m/hadrem3_ga7_05.py +0 -0
  507. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cordex/ncc_noresm1_m/racmo22e.py +0 -0
  508. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cordex/ncc_noresm1_m/rca4.py +0 -0
  509. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cordex/ncc_noresm1_m/remo2015.py +0 -0
  510. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/emac/__init__.py +0 -0
  511. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/emac/_base_fixes.py +0 -0
  512. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/icon/__init__.py +0 -0
  513. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/ipslcm/__init__.py +0 -0
  514. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/ipslcm/ipsl_cm6.py +0 -0
  515. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/native6/__init__.py +0 -0
  516. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/native6/era5_land.py +0 -0
  517. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/native_datasets.py +0 -0
  518. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/obs4mips/__init__.py +0 -0
  519. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/obs4mips/airs_2_1.py +0 -0
  520. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/obs4mips/ssmi.py +0 -0
  521. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/obs4mips/ssmi_meris.py +0 -0
  522. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/us_standard_atmosphere.csv +0 -0
  523. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/fix.py +0 -0
  524. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/fixes.py +0 -0
  525. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/VERSION +0 -0
  526. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip3/.gitignore +0 -0
  527. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip3/README.md +0 -0
  528. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip3/Tables/IPCC_table_A1 +0 -0
  529. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip3/Tables/IPCC_table_A2 +0 -0
  530. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip3/Tables/IPCC_table_A3 +0 -0
  531. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip3/Tables/IPCC_table_A4 +0 -0
  532. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip3/Tables/IPCC_table_A5 +0 -0
  533. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip3/Tables/IPCC_table_O1 +0 -0
  534. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip5/Tables/CMIP5_3hr +0 -0
  535. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip5/Tables/CMIP5_6hrLev +0 -0
  536. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip5/Tables/CMIP5_6hrPlev +0 -0
  537. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip5/Tables/CMIP5_Amon +0 -0
  538. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip5/Tables/CMIP5_LImon +0 -0
  539. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip5/Tables/CMIP5_Lmon +0 -0
  540. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip5/Tables/CMIP5_OImon +0 -0
  541. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip5/Tables/CMIP5_Oclim +0 -0
  542. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip5/Tables/CMIP5_Omon +0 -0
  543. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip5/Tables/CMIP5_Oyr +0 -0
  544. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip5/Tables/CMIP5_aero +0 -0
  545. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip5/Tables/CMIP5_cf3hr +0 -0
  546. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip5/Tables/CMIP5_cfDay +0 -0
  547. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip5/Tables/CMIP5_cfMon +0 -0
  548. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip5/Tables/CMIP5_cfOff +0 -0
  549. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip5/Tables/CMIP5_cfSites +0 -0
  550. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip5/Tables/CMIP5_day +0 -0
  551. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip5/Tables/CMIP5_fx +0 -0
  552. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip5/Tables/CMIP5_grids +0 -0
  553. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip5/Tables/md5s +0 -0
  554. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/.circleci/config.yml +0 -0
  555. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/README.md +0 -0
  556. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_3hr.json +0 -0
  557. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_6hrLev.json +0 -0
  558. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_6hrPlev.json +0 -0
  559. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_6hrPlevPt.json +0 -0
  560. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_AERday.json +0 -0
  561. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_AERhr.json +0 -0
  562. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_AERmon.json +0 -0
  563. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_AERmonZ.json +0 -0
  564. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_Amon.json +0 -0
  565. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_CF3hr.json +0 -0
  566. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_CFday.json +0 -0
  567. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_CFmon.json +0 -0
  568. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_CFsubhr.json +0 -0
  569. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_CV.json +0 -0
  570. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_E1hr.json +0 -0
  571. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_E1hrClimMon.json +0 -0
  572. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_E3hr.json +0 -0
  573. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_E3hrPt.json +0 -0
  574. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_E6hrZ.json +0 -0
  575. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_Eday.json +0 -0
  576. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_EdayZ.json +0 -0
  577. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_Efx.json +0 -0
  578. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_Emon.json +0 -0
  579. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_EmonZ.json +0 -0
  580. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_Esubhr.json +0 -0
  581. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_Eyr.json +0 -0
  582. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_IfxAnt.json +0 -0
  583. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_IfxGre.json +0 -0
  584. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_ImonAnt.json +0 -0
  585. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_ImonGre.json +0 -0
  586. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_IyrAnt.json +0 -0
  587. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_IyrGre.json +0 -0
  588. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_LImon.json +0 -0
  589. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_Lmon.json +0 -0
  590. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_Oclim.json +0 -0
  591. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_Oday.json +0 -0
  592. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_Odec.json +0 -0
  593. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_Ofx.json +0 -0
  594. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_Omon.json +0 -0
  595. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_Oyr.json +0 -0
  596. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_SIday.json +0 -0
  597. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_SImon.json +0 -0
  598. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_coordinate.json +0 -0
  599. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_day.json +0 -0
  600. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_formula_terms.json +0 -0
  601. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_fx.json +0 -0
  602. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_grids.json +0 -0
  603. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_input_example.json +0 -0
  604. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/VERSION +0 -0
  605. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cordex/RELEASE-NOTES +0 -0
  606. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cordex/Tables/CORDEX_3h +0 -0
  607. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cordex/Tables/CORDEX_6h +0 -0
  608. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cordex/Tables/CORDEX_day +0 -0
  609. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cordex/Tables/CORDEX_fx +0 -0
  610. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cordex/Tables/CORDEX_grids +0 -0
  611. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cordex/Tables/CORDEX_mon +0 -0
  612. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cordex/Tables/CORDEX_sem +0 -0
  613. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cordex/Tables/md5s +0 -0
  614. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cordex/VERSION +0 -0
  615. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_MP_BC_tot.dat +0 -0
  616. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_MP_CFCl3.dat +0 -0
  617. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_MP_CH4.dat +0 -0
  618. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_MP_CO.dat +0 -0
  619. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_MP_CO2.dat +0 -0
  620. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_MP_ClOX.dat +0 -0
  621. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_MP_DU_tot.dat +0 -0
  622. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_MP_N2O.dat +0 -0
  623. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_MP_NH3.dat +0 -0
  624. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_MP_NO.dat +0 -0
  625. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_MP_NO2.dat +0 -0
  626. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_MP_NOX.dat +0 -0
  627. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_MP_O3.dat +0 -0
  628. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_MP_OH.dat +0 -0
  629. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_MP_S.dat +0 -0
  630. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_MP_SO2.dat +0 -0
  631. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_MP_SO4mm_tot.dat +0 -0
  632. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_MP_SS_tot.dat +0 -0
  633. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_alb.dat +0 -0
  634. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_albDiff.dat +0 -0
  635. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_albDiffiTr13.dat +0 -0
  636. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_amoc.dat +0 -0
  637. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_asr.dat +0 -0
  638. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_awhea.dat +0 -0
  639. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_bdalb.dat +0 -0
  640. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_bhalb.dat +0 -0
  641. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_ch4s.dat +0 -0
  642. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_chlora.dat +0 -0
  643. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_clisccp.dat +0 -0
  644. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_cltStderr.dat +0 -0
  645. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_co2s.dat +0 -0
  646. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_coordinates.dat +0 -0
  647. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_ctotal.dat +0 -0
  648. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_dos.dat +0 -0
  649. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_dosStderr.dat +0 -0
  650. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_et.dat +0 -0
  651. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_etStderr.dat +0 -0
  652. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_fapar.dat +0 -0
  653. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_gppStderr.dat +0 -0
  654. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_hfns.dat +0 -0
  655. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_hurStderr.dat +0 -0
  656. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_husStderr.dat +0 -0
  657. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_iwpStderr.dat +0 -0
  658. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_lvp.dat +0 -0
  659. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_lweGrace.dat +0 -0
  660. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_lwp.dat +0 -0
  661. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_lwpStderr.dat +0 -0
  662. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_od550aerStderr.dat +0 -0
  663. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_od870aerStderr.dat +0 -0
  664. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_ohc.dat +0 -0
  665. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_prStderr.dat +0 -0
  666. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_prl.dat +0 -0
  667. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_ptype.dat +0 -0
  668. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_rlns.dat +0 -0
  669. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_rlnst.dat +0 -0
  670. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_rlnstcs.dat +0 -0
  671. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_rlntcs.dat +0 -0
  672. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_rluscs.dat +0 -0
  673. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_rlut.dat +0 -0
  674. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_rlutcs.dat +0 -0
  675. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_rsns.dat +0 -0
  676. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_rsnst.dat +0 -0
  677. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_rsnstcs.dat +0 -0
  678. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_rsnstcsnorm.dat +0 -0
  679. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_rsntcs.dat +0 -0
  680. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_rsut.dat +0 -0
  681. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_rsutcs.dat +0 -0
  682. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_siextent.dat +0 -0
  683. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_sispeed.dat +0 -0
  684. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_sithick.dat +0 -0
  685. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_sm.dat +0 -0
  686. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_sm1m.dat +0 -0
  687. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_smStderr.dat +0 -0
  688. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_tasConf5.dat +0 -0
  689. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_tasConf95.dat +0 -0
  690. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_tasa.dat +0 -0
  691. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_tasaga.dat +0 -0
  692. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_toz.dat +0 -0
  693. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_tozStderr.dat +0 -0
  694. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_tro3prof.dat +0 -0
  695. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_tro3profStderr.dat +0 -0
  696. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_tsStderr.dat +0 -0
  697. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_uajet.dat +0 -0
  698. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_vegfrac.dat +0 -0
  699. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_xch4.dat +0 -0
  700. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_xco2.dat +0 -0
  701. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/obs4mips/Tables/obs4MIPs_Aday.json +0 -0
  702. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/obs4mips/Tables/obs4MIPs_Amon.json +0 -0
  703. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/obs4mips/Tables/obs4MIPs_CV.json +0 -0
  704. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/obs4mips/Tables/obs4MIPs_Lmon.json +0 -0
  705. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/obs4mips/Tables/obs4MIPs_Omon.json +0 -0
  706. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/obs4mips/Tables/obs4MIPs_SImon.json +0 -0
  707. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/obs4mips/Tables/obs4MIPs_coordinate.json +0 -0
  708. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/obs4mips/Tables/obs4MIPs_formula_terms.json +0 -0
  709. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/obs4mips/Tables/obs4MIPs_fx.json +0 -0
  710. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/obs4mips/Tables/obs4MIPs_grids.json +0 -0
  711. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/obs4mips/Tables/obs4MIPs_monNobs.json +0 -0
  712. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/obs4mips/Tables/obs4MIPs_monStderr.json +0 -0
  713. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/obs4mips/obs4MIPs_frequency.json +0 -0
  714. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/obs4mips/obs4MIPs_grid_label.json +0 -0
  715. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/obs4mips/obs4MIPs_institution_id.json +0 -0
  716. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/obs4mips/obs4MIPs_license.json +0 -0
  717. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/obs4mips/obs4MIPs_nominal_resolution.json +0 -0
  718. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/obs4mips/obs4MIPs_product.json +0 -0
  719. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/obs4mips/obs4MIPs_realm.json +0 -0
  720. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/obs4mips/obs4MIPs_region.json +0 -0
  721. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/obs4mips/obs4MIPs_required_global_attributes.json +0 -0
  722. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/obs4mips/obs4MIPs_source_id.json +0 -0
  723. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/obs4mips/obs4MIPs_source_type.json +0 -0
  724. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/obs4mips/obs4MIPs_table_id.json +0 -0
  725. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/variable_alt_names.yml +0 -0
  726. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/config/_config.py +0 -0
  727. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/config/_config_validators.py +0 -0
  728. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/config/_dask.py +0 -0
  729. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/config/_diagnostics.py +0 -0
  730. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/config/_validated_config.py +0 -0
  731. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/config/extra_facets/cesm-mappings.yml +0 -0
  732. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/config/extra_facets/cmip3-institutes.yml +0 -0
  733. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/config/extra_facets/cmip5-fx.yml +0 -0
  734. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/config/extra_facets/cmip5-institutes.yml +0 -0
  735. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/config/extra_facets/cmip5-product.yml +0 -0
  736. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/config/extra_facets/emac-mappings.yml +0 -0
  737. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/config/extra_facets/ipslcm-mappings.yml +0 -0
  738. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/dataset.py +0 -0
  739. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/esgf/__init__.py +0 -0
  740. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/esgf/_logon.py +0 -0
  741. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/esgf/_search.py +0 -0
  742. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/esgf/facets.py +0 -0
  743. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/exceptions.py +0 -0
  744. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/experimental/__init__.py +0 -0
  745. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/experimental/_logging.py +0 -0
  746. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/experimental/_warnings.py +0 -0
  747. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/experimental/recipe.py +0 -0
  748. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/experimental/recipe_info.py +0 -0
  749. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/experimental/recipe_metadata.py +0 -0
  750. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/experimental/templates/RecipeInfo.j2 +0 -0
  751. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/experimental/templates/RecipeOutput.j2 +0 -0
  752. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/experimental/templates/TaskOutput.j2 +0 -0
  753. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/experimental/templates/__init__.py +0 -0
  754. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/experimental/templates/head.j2 +0 -0
  755. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/experimental/templates/recipe_output_page.j2 +0 -0
  756. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/experimental/templates/scripts.js +0 -0
  757. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/experimental/utils.py +0 -0
  758. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_cycles.py +0 -0
  759. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/_baseclass.py +0 -0
  760. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/_shared.py +0 -0
  761. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/alb.py +0 -0
  762. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/amoc.py +0 -0
  763. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/asr.py +0 -0
  764. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/chlora.py +0 -0
  765. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/clhmtisccp.py +0 -0
  766. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/clhtkisccp.py +0 -0
  767. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/cllmtisccp.py +0 -0
  768. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/clltkisccp.py +0 -0
  769. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/clmmtisccp.py +0 -0
  770. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/clmtkisccp.py +0 -0
  771. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/co2s.py +0 -0
  772. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/ctotal.py +0 -0
  773. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/et.py +0 -0
  774. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/hfns.py +0 -0
  775. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/lvp.py +0 -0
  776. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/lwp.py +0 -0
  777. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/ohc.py +0 -0
  778. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/rlns.py +0 -0
  779. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/rlnst.py +0 -0
  780. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/rlnstcs.py +0 -0
  781. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/rlntcs.py +0 -0
  782. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/rlus.py +0 -0
  783. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/rsns.py +0 -0
  784. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/rsnst.py +0 -0
  785. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/rsnstcs.py +0 -0
  786. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/rsnstcsnorm.py +0 -0
  787. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/rsntcs.py +0 -0
  788. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/rsus.py +0 -0
  789. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/rtnt.py +0 -0
  790. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/siextent.py +0 -0
  791. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/sispeed.py +0 -0
  792. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/sithick.py +0 -0
  793. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/toz.py +0 -0
  794. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/uajet.py +0 -0
  795. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/vegfrac.py +0 -0
  796. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/xch4.py +0 -0
  797. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/xco2.py +0 -0
  798. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_detrend.py +0 -0
  799. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_mapping.py +0 -0
  800. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_supplementary_vars.py +0 -0
  801. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_weighting.py +0 -0
  802. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/ne_masks/ne_10m_glaciated_areas.README.html +0 -0
  803. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/ne_masks/ne_10m_glaciated_areas.VERSION.txt +0 -0
  804. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/ne_masks/ne_10m_glaciated_areas.cpg +0 -0
  805. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/ne_masks/ne_10m_glaciated_areas.dbf +0 -0
  806. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/ne_masks/ne_10m_glaciated_areas.prj +0 -0
  807. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/ne_masks/ne_10m_glaciated_areas.shp +0 -0
  808. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/ne_masks/ne_10m_glaciated_areas.shx +0 -0
  809. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/ne_masks/ne_10m_land.README.html +0 -0
  810. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/ne_masks/ne_10m_land.VERSION.txt +0 -0
  811. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/ne_masks/ne_10m_land.cpg +0 -0
  812. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/ne_masks/ne_10m_land.dbf +0 -0
  813. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/ne_masks/ne_10m_land.prj +0 -0
  814. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/ne_masks/ne_10m_land.shp +0 -0
  815. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/ne_masks/ne_10m_land.shx +0 -0
  816. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/ne_masks/ne_50m_ocean.README.html +0 -0
  817. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/ne_masks/ne_50m_ocean.VERSION.txt +0 -0
  818. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/ne_masks/ne_50m_ocean.cpg +0 -0
  819. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/ne_masks/ne_50m_ocean.dbf +0 -0
  820. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/ne_masks/ne_50m_ocean.prj +0 -0
  821. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/ne_masks/ne_50m_ocean.shp +0 -0
  822. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/ne_masks/ne_50m_ocean.shx +0 -0
  823. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/shapefiles/ar6.LICENSE +0 -0
  824. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/shapefiles/ar6.dbf +0 -0
  825. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/shapefiles/ar6.prj +0 -0
  826. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/shapefiles/ar6.shp +0 -0
  827. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/shapefiles/ar6.shx +0 -0
  828. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/notebooks/composing-recipes.ipynb +0 -0
  829. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/notebooks/discovering-data.ipynb +0 -0
  830. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/notebooks/loading-and-processing-data.ipynb +0 -0
  831. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/pyproject.toml +0 -0
  832. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/setup.cfg +0 -0
  833. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/__init__.py +0 -0
  834. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/__init__.py +0 -0
  835. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/__init__.py +0 -0
  836. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/__init__.py +0 -0
  837. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cesm/__init__.py +0 -0
  838. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cesm/test_cesm2.py +0 -0
  839. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/__init__.py +0 -0
  840. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_access1_0.py +0 -0
  841. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_access1_3.py +0 -0
  842. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_bcc_csm1_1.py +0 -0
  843. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_bcc_csm1_1_m.py +0 -0
  844. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_bnu_esm.py +0 -0
  845. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_canesm2.py +0 -0
  846. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_ccsm4.py +0 -0
  847. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_cesm1_bgc.py +0 -0
  848. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_cesm1_cam5.py +0 -0
  849. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_cesm1_fastchem.py +0 -0
  850. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_cesm1_waccm.py +0 -0
  851. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_cnrm_cm5.py +0 -0
  852. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_csiro_mk3_6_0.py +0 -0
  853. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_ec_earth.py +0 -0
  854. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_fgoals_g2.py +0 -0
  855. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_fgoals_s2.py +0 -0
  856. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_fio_esm.py +0 -0
  857. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_gfdl_cm2p1.py +0 -0
  858. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_gfdl_cm3.py +0 -0
  859. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_gfdl_esm2g.py +0 -0
  860. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_gfdl_esm2m.py +0 -0
  861. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_giss_e2_h.py +0 -0
  862. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_giss_e2_r.py +0 -0
  863. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_hadgem2_cc.py +0 -0
  864. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_inmcm4.py +0 -0
  865. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_ipsl_cm5a_lr.py +0 -0
  866. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_ipsl_cm5a_mr.py +0 -0
  867. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_ipsl_cm5b_lr.py +0 -0
  868. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_miroc5.py +0 -0
  869. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_miroc_esm.py +0 -0
  870. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_miroc_esm_chem.py +0 -0
  871. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_mpi_esm_lr.py +0 -0
  872. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_mpi_esm_mr.py +0 -0
  873. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_mpi_esm_p.py +0 -0
  874. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_mri_cgcm3.py +0 -0
  875. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_mri_esm1.py +0 -0
  876. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_noresm1_m.py +0 -0
  877. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_noresm1_me.py +0 -0
  878. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/__init__.py +0 -0
  879. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_access_cm2.py +0 -0
  880. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_access_esm1_5.py +0 -0
  881. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_awi_cm_1_1_mr.py +0 -0
  882. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_awi_esm_1_1_lr.py +0 -0
  883. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_bcc_csm2_mr.py +0 -0
  884. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_cams_csm1_0.py +0 -0
  885. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_canesm5.py +0 -0
  886. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_canesm5_canoe.py +0 -0
  887. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_cas_esm2_0.py +0 -0
  888. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_cesm2.py +0 -0
  889. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_cesm2_fv2.py +0 -0
  890. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_cesm2_waccm.py +0 -0
  891. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_cesm2_waccm_fv2.py +0 -0
  892. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_cmcc_cm2_sr5.py +0 -0
  893. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_cnrm_cm6_1.py +0 -0
  894. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_cnrm_cm6_1_hr.py +0 -0
  895. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_cnrm_esm2_1.py +0 -0
  896. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_e3sm_1_0.py +0 -0
  897. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_ec_earth3.py +0 -0
  898. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_ec_earth3_veg.py +0 -0
  899. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_ec_earth3_veg_lr.py +0 -0
  900. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_fgoals_f3_l.py +0 -0
  901. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_fgoals_g3.py +0 -0
  902. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_gfdl_esm4.py +0 -0
  903. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_giss_e2_1_g.py +0 -0
  904. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_giss_e2_1_h.py +0 -0
  905. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_hadgem3_gc31_ll.py +0 -0
  906. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_icon_esm_lr.py +0 -0
  907. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_iitm_esm.py +0 -0
  908. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_ipsl_cm6a_lr.py +0 -0
  909. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_kace_1_0_g.py +0 -0
  910. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_kiost_esm.py +0 -0
  911. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_mcm_ua_1_0.py +0 -0
  912. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_miroc6.py +0 -0
  913. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_miroc_es2l.py +0 -0
  914. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_mpi_esm1_2_lr.py +0 -0
  915. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_mpi_esm_1_2_ham.py +0 -0
  916. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_mri_esm2_0.py +0 -0
  917. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_nesm3.py +0 -0
  918. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_noresm2_lm.py +0 -0
  919. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_noresm2_mm.py +0 -0
  920. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_sam0_unicon.py +0 -0
  921. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_taiesm1.py +0 -0
  922. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_ukesm1_0_ll.py +0 -0
  923. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/conftest.py +0 -0
  924. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cordex/__init__.py +0 -0
  925. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cordex/test_cordex_fixes.py +0 -0
  926. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cordex/test_miroc_miroc5.py +0 -0
  927. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cordex/test_mpi_m_mpi_esm_lr.py +0 -0
  928. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/emac/__init__.py +0 -0
  929. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/emac/test_emac.py +0 -0
  930. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/icon/__init__.py +0 -0
  931. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/ipslcm/__init__.py +0 -0
  932. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/ipslcm/test_ipsl_cm6.py +0 -0
  933. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/native6/__init__.py +0 -0
  934. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/native6/mswep_day.nc +0 -0
  935. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/native6/mswep_month.nc +0 -0
  936. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/native6/test_mswep.py +0 -0
  937. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/obs4mips/__init__.py +0 -0
  938. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/obs4mips/test_airs_2_1.py +0 -0
  939. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/obs4mips/test_ssmi.py +0 -0
  940. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/obs4mips/test_ssmi_meris.py +0 -0
  941. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/test_common.py +0 -0
  942. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/test_data/__init__.py +0 -0
  943. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/test_data/cesm2_native.nc +0 -0
  944. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/test_data/cesm2_waccm_cl.nc +0 -0
  945. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/test_data/cnrm_cm6_1_cl.nc +0 -0
  946. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/test_data/common_cl_a.nc +0 -0
  947. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/test_data/common_cl_ap.nc +0 -0
  948. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/test_data/create_test_data.py +0 -0
  949. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/test_data/emac.nc +0 -0
  950. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/test_data/gfdl_cm4_cl.nc +0 -0
  951. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/test_data/icon_2d.nc +0 -0
  952. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/test_data/icon_3d.nc +0 -0
  953. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/test_data/icon_grid.nc +0 -0
  954. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/test_fix.py +0 -0
  955. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/test_native_datasets.py +0 -0
  956. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/test_fix.py +0 -0
  957. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/dataset/__init__.py +0 -0
  958. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/dataset/areacella.nc +0 -0
  959. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/dataset/tas.nc +0 -0
  960. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/dataset/test_dataset.py +0 -0
  961. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/esgf/__init__.py +0 -0
  962. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/esgf/search_results/Amon_r1i1p1_historical,rcp85_INM-CM4_CMIP5_tas.json +0 -0
  963. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/esgf/search_results/Amon_r1i1p1_historical_FIO-ESM_CMIP5_tas.json +0 -0
  964. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/esgf/search_results/Amon_r1i1p1_rcp85_HadGEM2-CC_CMIP5_tas.json +0 -0
  965. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/esgf/search_results/EUR-11_MOHC-HadGEM2-ES_r1i1p1_historical_CORDEX_RACMO22E_mon_tas.json +0 -0
  966. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/esgf/search_results/expected.yml +0 -0
  967. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/esgf/search_results/historical_gn_r4i1p1f1_CMIP6_CESM2_Amon_tas.json +0 -0
  968. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/esgf/search_results/inmcm4_CMIP5_tas.json +0 -0
  969. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/esgf/search_results/obs4MIPs_CERES-EBAF_mon_rsutcs.json +0 -0
  970. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/esgf/search_results/obs4MIPs_GPCP-V2.3_pr.json +0 -0
  971. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/esgf/search_results/run1_historical_cccma_cgcm3_1_CMIP3_mon_tas.json +0 -0
  972. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/esgf/test_search_download.py +0 -0
  973. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/preprocessor/__init__.py +0 -0
  974. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/preprocessor/_derive/__init__.py +0 -0
  975. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/preprocessor/_derive/test_interface.py +0 -0
  976. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/preprocessor/_derive/test_sithick.py +0 -0
  977. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/preprocessor/_extract_region/test_intersect.py +0 -0
  978. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/preprocessor/_io/__init__.py +0 -0
  979. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/preprocessor/_io/test_load.py +0 -0
  980. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/preprocessor/_io/test_save.py +0 -0
  981. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/preprocessor/_mask/__init__.py +0 -0
  982. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/preprocessor/_mask/test_mask.py +0 -0
  983. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/preprocessor/_regrid/__init__.py +0 -0
  984. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/preprocessor/_regrid/test_extract_coordinate_points.py +0 -0
  985. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/preprocessor/_regrid/test_extract_location.py +0 -0
  986. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/preprocessor/_regrid/test_extract_point.py +0 -0
  987. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/preprocessor/_regrid/test_get_cmor_levels.py +0 -0
  988. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/preprocessor/_regrid/test_get_file_levels.py +0 -0
  989. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/preprocessor/_supplementary_vars/__init__.py +0 -0
  990. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/preprocessor/_supplementary_vars/test_add_supplementary_variables.py +0 -0
  991. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/preprocessor/_supplementary_vars/test_register.py +0 -0
  992. {ESMValCore-2.10.0/tests/integration/recipe → esmvalcore-2.11.0/tests/integration/preprocessor/_time}/__init__.py +0 -0
  993. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/preprocessor/test_preprocessing_task.py +0 -0
  994. {ESMValCore-2.10.0/tests/sample_data → esmvalcore-2.11.0/tests/integration/recipe}/__init__.py +0 -0
  995. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/recipe/test_check.py +0 -0
  996. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/test_citation.py +0 -0
  997. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/test_deprecated_config.py +0 -0
  998. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/test_diagnostic_run.py +0 -0
  999. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/test_local.py +0 -0
  1000. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/test_main.py +0 -0
  1001. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/test_provenance.py +0 -0
  1002. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/test_task.py +0 -0
  1003. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/parse_pymon.py +0 -0
  1004. {ESMValCore-2.10.0/tests/sample_data/experimental → esmvalcore-2.11.0/tests/sample_data}/__init__.py +0 -0
  1005. {ESMValCore-2.10.0/tests/sample_data/multimodel_statistics → esmvalcore-2.11.0/tests/sample_data/experimental}/__init__.py +0 -0
  1006. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/sample_data/experimental/recipe_api_test.yml +0 -0
  1007. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/sample_data/extra_facets/override/test6-01.yml +0 -0
  1008. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/sample_data/extra_facets/override/test6-02.yml +0 -0
  1009. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/sample_data/extra_facets/simple/test6-01.yml +0 -0
  1010. {ESMValCore-2.10.0/tests/unit → esmvalcore-2.11.0/tests/sample_data/multimodel_statistics}/__init__.py +0 -0
  1011. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/sample_data/multimodel_statistics/test_multimodel.py +0 -0
  1012. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/sample_data/multimodel_statistics/timeseries_daily_365_day-full-mean.nc +0 -0
  1013. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/sample_data/multimodel_statistics/timeseries_daily_365_day-overlap-mean.nc +0 -0
  1014. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/sample_data/multimodel_statistics/timeseries_daily_gregorian-full-mean.nc +0 -0
  1015. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/sample_data/multimodel_statistics/timeseries_daily_gregorian-overlap-mean.nc +0 -0
  1016. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/sample_data/multimodel_statistics/timeseries_daily_proleptic_gregorian-full-mean.nc +0 -0
  1017. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/sample_data/multimodel_statistics/timeseries_daily_proleptic_gregorian-overlap-mean.nc +0 -0
  1018. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/sample_data/multimodel_statistics/timeseries_daily_standard-full-mean.nc +0 -0
  1019. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/sample_data/multimodel_statistics/timeseries_daily_standard-overlap-mean.nc +0 -0
  1020. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/sample_data/multimodel_statistics/timeseries_monthly-full-mean.nc +0 -0
  1021. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/sample_data/multimodel_statistics/timeseries_monthly-overlap-mean.nc +0 -0
  1022. {ESMValCore-2.10.0/tests/unit/config → esmvalcore-2.11.0/tests/unit}/__init__.py +0 -0
  1023. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/check_r_code.R +0 -0
  1024. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/cmor/__init__.py +0 -0
  1025. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/cmor/test_cmor_check.py +0 -0
  1026. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/cmor/test_fix.py +0 -0
  1027. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/cmor/test_fixes.py +0 -0
  1028. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/cmor/test_generic_fix.py +0 -0
  1029. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/cmor/test_table.py +0 -0
  1030. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/cmor/test_utils.py +0 -0
  1031. {ESMValCore-2.10.0/tests/unit/documentation → esmvalcore-2.11.0/tests/unit/config}/__init__.py +0 -0
  1032. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/config/test_config_validator.py +0 -0
  1033. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/config/test_dask.py +0 -0
  1034. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/config/test_diagnostic.py +0 -0
  1035. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/config/test_esgf_pyclient.py +0 -0
  1036. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/conftest.py +0 -0
  1037. {ESMValCore-2.10.0/tests/unit/esgf → esmvalcore-2.11.0/tests/unit/documentation}/__init__.py +0 -0
  1038. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/documentation/test_changelog.py +0 -0
  1039. {ESMValCore-2.10.0/tests/unit/experimental → esmvalcore-2.11.0/tests/unit/esgf}/__init__.py +0 -0
  1040. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/esgf/test_facet.py +0 -0
  1041. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/esgf/test_logon.py +0 -0
  1042. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/esgf/test_search.py +0 -0
  1043. {ESMValCore-2.10.0/tests/unit/local → esmvalcore-2.11.0/tests/unit/experimental}/__init__.py +0 -0
  1044. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/experimental/references/doe2021.bibtex +0 -0
  1045. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/experimental/test_output_file.py +0 -0
  1046. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/experimental/test_recipe.py +0 -0
  1047. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/experimental/test_recipe_info.py +0 -0
  1048. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/experimental/test_recipe_output.py +0 -0
  1049. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/experimental/test_utils.py +0 -0
  1050. {ESMValCore-2.10.0/tests/unit/main → esmvalcore-2.11.0/tests/unit/local}/__init__.py +0 -0
  1051. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/local/test_facets.py +0 -0
  1052. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/local/test_replace_tags.py +0 -0
  1053. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/local/test_select_files.py +0 -0
  1054. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/local/test_time.py +0 -0
  1055. {ESMValCore-2.10.0/tests/unit/preprocessor → esmvalcore-2.11.0/tests/unit/main}/__init__.py +0 -0
  1056. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/main/test_parse_resume.py +0 -0
  1057. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/main/test_recipes.py +0 -0
  1058. {ESMValCore-2.10.0/tests/unit/preprocessor/_area → esmvalcore-2.11.0/tests/unit/preprocessor}/__init__.py +0 -0
  1059. {ESMValCore-2.10.0/tests/unit/preprocessor/_cycles → esmvalcore-2.11.0/tests/unit/preprocessor/_area}/__init__.py +0 -0
  1060. {ESMValCore-2.10.0/tests/unit/preprocessor/_derive → esmvalcore-2.11.0/tests/unit/preprocessor/_cycles}/__init__.py +0 -0
  1061. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_cycles/test_cycles.py +0 -0
  1062. {ESMValCore-2.10.0/tests/unit/preprocessor/_detrend → esmvalcore-2.11.0/tests/unit/preprocessor/_derive}/__init__.py +0 -0
  1063. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_derive/test_amoc.py +0 -0
  1064. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_derive/test_asr.py +0 -0
  1065. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_derive/test_co2s.py +0 -0
  1066. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_derive/test_ctotal.py +0 -0
  1067. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_derive/test_et.py +0 -0
  1068. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_derive/test_hfns.py +0 -0
  1069. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_derive/test_ohc.py +0 -0
  1070. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_derive/test_rlntcs.py +0 -0
  1071. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_derive/test_rlus.py +0 -0
  1072. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_derive/test_rsntcs.py +0 -0
  1073. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_derive/test_rsntcsnorm.py +0 -0
  1074. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_derive/test_rsus.py +0 -0
  1075. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_derive/test_shared.py +0 -0
  1076. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_derive/test_siextent.py +0 -0
  1077. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_derive/test_toz.py +0 -0
  1078. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_derive/test_uajet.py +0 -0
  1079. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_derive/test_xch4.py +0 -0
  1080. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_derive/test_xco2.py +0 -0
  1081. {ESMValCore-2.10.0/tests/unit/preprocessor/_mask → esmvalcore-2.11.0/tests/unit/preprocessor/_detrend}/__init__.py +0 -0
  1082. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_detrend/test_detrend.py +0 -0
  1083. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_mapping/__init__.py +0 -0
  1084. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_mapping/test_mapping.py +0 -0
  1085. {ESMValCore-2.10.0/tests/unit/preprocessor/_multimodel → esmvalcore-2.11.0/tests/unit/preprocessor/_mask}/__init__.py +0 -0
  1086. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_mask/test_mask_multimodel.py +0 -0
  1087. {ESMValCore-2.10.0/tests/unit/preprocessor/_trend → esmvalcore-2.11.0/tests/unit/preprocessor/_multimodel}/__init__.py +0 -0
  1088. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_multimodel/test_multimodel.py +0 -0
  1089. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_other/__init__.py +0 -0
  1090. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_regrid/__init__.py +0 -0
  1091. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_regrid/test__create_cube.py +0 -0
  1092. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_regrid_esmpy/__init__.py +0 -0
  1093. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_rolling_window/__init__.py +0 -0
  1094. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_rolling_window/test_rolling_window.py +0 -0
  1095. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_time/__init__.py +0 -0
  1096. {ESMValCore-2.10.0/tests/unit/preprocessor/_units → esmvalcore-2.11.0/tests/unit/preprocessor/_trend}/__init__.py +0 -0
  1097. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_trend/test_trend.py +0 -0
  1098. {ESMValCore-2.10.0/tests/unit/preprocessor/_volume → esmvalcore-2.11.0/tests/unit/preprocessor/_units}/__init__.py +0 -0
  1099. {ESMValCore-2.10.0/tests/unit/preprocessor/_weighting → esmvalcore-2.11.0/tests/unit/preprocessor/_volume}/__init__.py +0 -0
  1100. {ESMValCore-2.10.0/tests/unit/provenance → esmvalcore-2.11.0/tests/unit/preprocessor/_weighting}/__init__.py +0 -0
  1101. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_weighting/test_weighting_landsea_fraction.py +0 -0
  1102. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/test_configuration.py +0 -0
  1103. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/test_error_logging.py +0 -0
  1104. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/test_preprocessor_file.py +0 -0
  1105. {ESMValCore-2.10.0/tests/unit/recipe → esmvalcore-2.11.0/tests/unit/provenance}/__init__.py +0 -0
  1106. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/provenance/test_trackedfile.py +0 -0
  1107. {ESMValCore-2.10.0/tests/unit/task → esmvalcore-2.11.0/tests/unit/recipe}/__init__.py +0 -0
  1108. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/recipe/test_from_datasets.py +0 -0
  1109. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/recipe/test_io.py +0 -0
  1110. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/recipe/test_recipe.py +0 -0
  1111. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/task/test_diagnostic_task.py +0 -0
  1112. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/task/test_print.py +0 -0
  1113. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/task/test_resume_task.py +0 -0
  1114. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/test_citation.py +0 -0
  1115. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/test_cmor_api.py +0 -0
  1116. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/test_dataset.py +0 -0
  1117. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/test_exceptions.py +0 -0
  1118. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/test_iris_io.py +0 -0
  1119. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/test_naming.py +0 -0
  1120. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/test_provenance.py +0 -0
  1121. {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/test_version.py +0 -0
@@ -0,0 +1,225 @@
1
+ ---
2
+ version: 2.1
3
+
4
+ orbs:
5
+ coverage-reporter: codacy/coverage-reporter@13.16.5
6
+ codecov: codecov/codecov@3.2.5
7
+
8
+ commands:
9
+ check_changes:
10
+ steps:
11
+ - run:
12
+ name: Check whether or not installation tests are needed
13
+ command: |
14
+ if (test "$CIRCLE_BRANCH" = main ||
15
+ git --no-pager diff --name-only origin/main... |
16
+ grep -q -E -f .circleci/install_triggers)
17
+ then
18
+ echo Running installation tests
19
+ else
20
+ echo Skipping installation tests
21
+ circleci step halt
22
+ fi
23
+ test_and_report:
24
+ steps:
25
+ - run:
26
+ name: Run tests
27
+ command: |
28
+ mkdir -p test-reports
29
+ . /opt/conda/etc/profile.d/conda.sh
30
+ conda activate esmvaltool
31
+ flake8 -j 4
32
+ pytest -n 4 --junitxml=test-reports/report.xml
33
+ esmvaltool version
34
+ - store_test_results:
35
+ path: test-reports/report.xml
36
+ - store_artifacts:
37
+ path: /logs
38
+ - run:
39
+ name: Compress pytest artifacts
40
+ command: tar -cvzf pytest.tar.gz -C /tmp/pytest-of-root/pytest-0/ .
41
+ - store_artifacts:
42
+ path: pytest.tar.gz
43
+ - run:
44
+ name: Compress test-report artifacts
45
+ command: tar -cvzf test-reports.tar.gz test-reports/
46
+ - store_artifacts:
47
+ path: test-reports.tar.gz
48
+ test_installation_from_source:
49
+ parameters:
50
+ extra:
51
+ type: string
52
+ flags:
53
+ type: string
54
+ default: ""
55
+ steps:
56
+ - run:
57
+ name: Install git+ssh
58
+ environment:
59
+ DEBIAN_FRONTEND: noninteractive # needed to install tzdata
60
+ command: apt update && apt install -y git ssh
61
+ - checkout
62
+ - check_changes
63
+ - run:
64
+ name: Generate cache key
65
+ command: date '+%Y-%V' | tee cache_key.txt
66
+ - restore_cache:
67
+ key: install-<< parameters.extra >>-{{ .Branch }}-{{ checksum "cache_key.txt" }}
68
+ - run:
69
+ name: Install dependencies
70
+ command: |
71
+ # Add additional requirements for running all tests
72
+ echo "
73
+ - r-base
74
+ - r-yaml
75
+ - ncl
76
+ " >> environment.yml
77
+ # Install
78
+ . /opt/conda/etc/profile.d/conda.sh
79
+ mkdir /logs
80
+ mamba env create >> /logs/conda.txt 2>&1
81
+ conda activate esmvaltool
82
+ pip install << parameters.flags >> ".[<<parameters.extra>>]"> /logs/install.txt 2>&1
83
+ - run:
84
+ name: Log versions
85
+ command: |
86
+ . /opt/conda/etc/profile.d/conda.sh
87
+ conda activate esmvaltool
88
+ dpkg -l > /logs/versions.txt
89
+ conda env export > /logs/environment.yml
90
+ pip freeze > /logs/requirements.txt
91
+ - test_and_report
92
+ - save_cache:
93
+ key: install-<< parameters.extra >>-{{ .Branch }}-{{ checksum "cache_key.txt" }}
94
+ paths:
95
+ - /opt/conda/pkgs
96
+ - /root/.cache/pip
97
+ - .mypy_cache
98
+ - .pytest_cache
99
+
100
+ jobs:
101
+ run_tests:
102
+ # Run tests
103
+ docker:
104
+ - image: esmvalgroup/esmvalcore:development
105
+ resource_class: large
106
+ steps:
107
+ - checkout
108
+ - run:
109
+ name: Generate cache key
110
+ command: date '+%Y-%V' | tee cache_key.txt
111
+ - restore_cache:
112
+ key: test-{{ .Branch }}-{{ checksum "cache_key.txt" }}
113
+ - run:
114
+ name: Install dependencies
115
+ command: |
116
+ . /opt/conda/etc/profile.d/conda.sh
117
+ mkdir /logs
118
+ conda activate esmvaltool
119
+ pip install .[test] > /logs/install.txt 2>&1
120
+ - test_and_report
121
+ - save_cache:
122
+ key: test-{{ .Branch }}-{{ checksum "cache_key.txt" }}
123
+ paths:
124
+ - /root/.cache/pip
125
+ - .mypy_cache
126
+ - .pytest_cache
127
+ - run:
128
+ name: Install gpg (required by codecov orb)
129
+ command: apt update && apt install -y gpg
130
+ - codecov/upload:
131
+ when: always
132
+ file: 'test-reports/coverage.xml'
133
+ - coverage-reporter/send_report:
134
+ coverage-reports: 'test-reports/coverage.xml'
135
+ project-token: $CODACY_PROJECT_TOKEN
136
+ skip: true # skip if project-token is not defined (i.e. on a fork)
137
+
138
+ test_installation_from_source_test_mode:
139
+ # Test installation from source
140
+ docker:
141
+ - image: condaforge/mambaforge
142
+ resource_class: large
143
+ steps:
144
+ - test_installation_from_source:
145
+ extra: test
146
+
147
+ test_installation_from_source_develop_mode:
148
+ # Test development installation
149
+ docker:
150
+ - image: condaforge/mambaforge
151
+ resource_class: large
152
+ steps:
153
+ - test_installation_from_source:
154
+ extra: develop
155
+ flags: "--editable"
156
+
157
+ test_installation_from_conda:
158
+ # Test conda package installation
159
+ working_directory: /esmvaltool
160
+ docker:
161
+ - image: condaforge/mambaforge
162
+ resource_class: medium
163
+ steps:
164
+ - run:
165
+ command: |
166
+ . /opt/conda/etc/profile.d/conda.sh
167
+ set -x
168
+ # Install prerequisites
169
+ mkdir /logs
170
+ # conda update -y conda > /logs/conda.txt 2>&1
171
+ # Create and activate conda environment
172
+ mamba create -y --name esmvaltool 'python=3.11'
173
+ set +x; conda activate esmvaltool; set -x
174
+ # Install
175
+ mamba install -y esmvalcore
176
+ # Log versions
177
+ conda env export > /logs/environment.yml
178
+ # Test installation
179
+ esmvaltool version
180
+
181
+ build_documentation:
182
+ # Test building documentation
183
+ docker:
184
+ - image: condaforge/mambaforge
185
+ resource_class: medium
186
+ steps:
187
+ - checkout
188
+ - run:
189
+ command: |
190
+ mkdir /logs
191
+ . /opt/conda/etc/profile.d/conda.sh
192
+ # Install
193
+ mamba env create
194
+ conda activate esmvaltool
195
+ pip install .[doc]
196
+ # Log versions
197
+ dpkg -l > /logs/versions.txt
198
+ conda env export > /logs/environment.yml
199
+ pip freeze > /logs/requirements.txt
200
+ # Test building documentation
201
+ MPLBACKEND=Agg sphinx-build -W doc doc/build
202
+ - store_artifacts:
203
+ path: /logs
204
+
205
+ workflows:
206
+ commit:
207
+ jobs:
208
+ - run_tests
209
+ - test_installation_from_source_test_mode
210
+ - test_installation_from_source_develop_mode
211
+
212
+ nightly:
213
+ triggers:
214
+ - schedule:
215
+ cron: "0 0 * * *"
216
+ filters:
217
+ branches:
218
+ only:
219
+ - main
220
+ jobs:
221
+ - run_tests
222
+ - test_installation_from_source_test_mode
223
+ - build_documentation
224
+ - test_installation_from_source_develop_mode
225
+ - test_installation_from_conda
@@ -0,0 +1,49 @@
1
+ name: PyPi Build and Deploy 🐍📦
2
+
3
+ on:
4
+ release:
5
+ types: [published]
6
+ # use this for testing
7
+ push:
8
+ branches:
9
+ - main
10
+
11
+ jobs:
12
+ build-n-publish:
13
+ name: Build and publish ESMValCore on PyPi
14
+ runs-on: ubuntu-latest
15
+ environment:
16
+ name: pypi
17
+ url: https://pypi.org/project/ESMValCore/
18
+ permissions:
19
+ # IMPORTANT: this permission is mandatory for trusted publishing
20
+ id-token: write
21
+ steps:
22
+ - uses: actions/checkout@v3
23
+ with:
24
+ fetch-depth: 0
25
+ - name: Set up Python 3.12
26
+ uses: actions/setup-python@v4
27
+ with:
28
+ python-version: "3.12"
29
+ - name: Install pep517
30
+ run: >-
31
+ python -m
32
+ pip install
33
+ pep517
34
+ --user
35
+ - name: Build a binary wheel and a source tarball
36
+ run: >-
37
+ python -m
38
+ pep517.build
39
+ --source
40
+ --binary
41
+ --out-dir dist/
42
+ .
43
+ # - name: Publish distribution to Test PyPI
44
+ # uses: pypa/gh-action-pypi-publish@release/v1
45
+ # with:
46
+ # repository-url: https://test.pypi.org/legacy/
47
+ - name: Publish distribution 📦 to PyPI
48
+ if: startsWith(github.ref, 'refs/tags')
49
+ uses: pypa/gh-action-pypi-publish@release/v1
@@ -0,0 +1,99 @@
1
+ name: Conda lock file creation
2
+
3
+ on:
4
+ # Trigger on push on main or other branch for testing
5
+ # NOTE that push: main will create the file very often
6
+ # and hence lots of automated PRs
7
+ # push:
8
+ # branches:
9
+ # - main
10
+ schedule:
11
+ - cron: '0 4 */10 * *'
12
+
13
+ # Required shell entrypoint to have properly configured bash shell
14
+ defaults:
15
+ run:
16
+ shell: bash -l {0}
17
+
18
+ jobs:
19
+ create-verify-lock-file:
20
+ name: Create and verify conda lock file for latest Python
21
+ runs-on: 'ubuntu-latest'
22
+ steps:
23
+ - uses: actions/checkout@v3
24
+ with:
25
+ fetch-depth: 0
26
+ - uses: conda-incubator/setup-miniconda@v2
27
+ with:
28
+ auto-update-conda: true
29
+ activate-environment: esmvaltool-fromlock
30
+ python-version: "3.12"
31
+ miniforge-version: "latest"
32
+ miniforge-variant: Mambaforge
33
+ use-mamba: true
34
+ - name: Update and show conda config
35
+ run: |
36
+ conda update -n base -c conda-forge conda
37
+ conda info
38
+ conda list
39
+ conda config --show-sources
40
+ conda config --show
41
+ # setup-miniconda@v2 installs an old conda and mamba
42
+ # forcing a modern mamba updates both mamba and conda
43
+ conda install -c conda-forge "mamba>=1.4.8"
44
+ conda --version
45
+ mamba --version
46
+ - name: Gather Python info
47
+ run: |
48
+ which python
49
+ python --version
50
+ - name: Install conda-lock
51
+ run: mamba install -y -c conda-forge conda-lock
52
+ - name: Check version of conda-lock
53
+ run: conda-lock --version
54
+ - name: Create conda lock file for linux-64
55
+ run: conda-lock lock --platform linux-64 -f environment.yml --mamba --kind explicit
56
+ - name: Creating environment from lock file
57
+ run: conda create --name esmvaltool-fromlock --file conda-linux-64.lock
58
+ - name: Installing pip
59
+ run: mamba install -y pip
60
+ - name: Gather pip info
61
+ run: pip --version
62
+ - name: Gather Python info again
63
+ run: |
64
+ which python
65
+ python --version
66
+ - name: Show environment contents
67
+ run: conda list
68
+ - name: Install esmvalcore
69
+ run: pip install -e .[develop]
70
+ - name: Run basic commands
71
+ run: |
72
+ esmvaltool --help
73
+ esmvaltool version
74
+ - name: Run flake8
75
+ run: flake8
76
+ - name: Run pytests
77
+ run: pytest -n 2 -m "not installation"
78
+ # Automated PR
79
+ # see https://github.com/marketplace/actions/create-pull-request
80
+ - name: Create Automated PR if conda lock file has changed
81
+ uses: peter-evans/create-pull-request@v3
82
+ with:
83
+ token: ${{ secrets.GITHUB_TOKEN }}
84
+ commit-message: Updating Linux condalock file
85
+ author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>
86
+ signoff: false
87
+ branch: condalock-update
88
+ delete-branch: true
89
+ title: '[Condalock] Update Linux condalock file'
90
+ body: |
91
+ Update condalock file
92
+ Automatic Pull Request.
93
+ labels: |
94
+ testing
95
+ condalock
96
+ automatedPR
97
+ assignees: valeriupredoi
98
+ reviewers: valeriupredoi
99
+ draft: false
@@ -0,0 +1,107 @@
1
+ # Install esmvalcore from PyPi on different OS's
2
+ # and different Python version; test locally with
3
+ # act: https://github.com/nektos/act
4
+ # Example how to setup conda workflows:
5
+ # https://github.com/marketplace/actions/setup-miniconda
6
+ # Notes:
7
+ # - you can group commands with | delimiter (or &&) but those will be run
8
+ # in one single call; declaring the shell variable makes the action run each
9
+ # command separately (better for debugging);
10
+ # - can try multiple shells eg pwsh or cmd /C CALL {0} (but overkill for now!);
11
+ # TODO: read the cron tasking documentation:
12
+ # https://www.netiq.com/documentation/cloud-manager-2-5/ncm-reference/data/bexyssf.html
13
+
14
+ name: Install from conda-forge
15
+
16
+ # runs on a push on main and at the end of every day
17
+ on:
18
+ # triggering on push without branch name will run tests every time
19
+ # there is a push on any branch
20
+ # turn it on only if needed
21
+ push:
22
+ branches:
23
+ - main
24
+ # run the test only if the PR is to main
25
+ # turn it on if required
26
+ # pull_request:
27
+ # branches:
28
+ # - main
29
+ schedule:
30
+ - cron: '0 4 * * *'
31
+
32
+ # Required shell entrypoint to have properly configured bash shell
33
+ defaults:
34
+ run:
35
+ shell: bash -l {0}
36
+
37
+ jobs:
38
+ linux:
39
+ runs-on: "ubuntu-latest"
40
+ strategy:
41
+ matrix:
42
+ python-version: ["3.9", "3.10", "3.11", "3.12"]
43
+ # fail-fast set to False allows all other tests
44
+ # in the workflow to run regardless of any fail
45
+ fail-fast: false
46
+ name: Linux Python ${{ matrix.python-version }}
47
+ steps:
48
+ - uses: conda-incubator/setup-miniconda@v2
49
+ with:
50
+ python-version: ${{ matrix.python-version }}
51
+ miniforge-version: "latest"
52
+ miniforge-variant: Mambaforge
53
+ use-mamba: true
54
+ - run: mkdir -p conda_install_linux_artifacts_python_${{ matrix.python-version }}
55
+ - name: Record versions
56
+ run: |
57
+ mamba --version 2>&1 | tee conda_install_linux_artifacts_python_${{ matrix.python-version }}/conda_version.txt
58
+ which conda 2>&1 | tee conda_install_linux_artifacts_python_${{ matrix.python-version }}/conda_path.txt
59
+ which mamba 2>&1 | tee -a conda_install_linux_artifacts_python_${{ matrix.python-version }}/conda_path.txt
60
+ python -V 2>&1 | tee conda_install_linux_artifacts_python_${{ matrix.python-version }}/python_version.txt
61
+ - name: Install ESMValCore
62
+ run: mamba install esmvalcore 2>&1 | tee conda_install_linux_artifacts_python_${{ matrix.python-version }}/install.txt
63
+ - name: Verify installation
64
+ run: |
65
+ esmvaltool --help
66
+ esmvaltool version 2>&1 | tee conda_install_linux_artifacts_python_${{ matrix.python-version }}/version.txt
67
+ - name: Upload artifacts
68
+ if: ${{ always() }} # upload artifacts even if fail
69
+ uses: actions/upload-artifact@v2
70
+ with:
71
+ name: Conda_Install_Linux_python_${{ matrix.python-version }}
72
+ path: conda_install_linux_artifacts_python_${{ matrix.python-version }}
73
+
74
+ osx:
75
+ runs-on: "macos-latest"
76
+ strategy:
77
+ matrix:
78
+ python-version: ["3.9", "3.10", "3.11", "3.12"]
79
+ architecture: ["x64"] # need to force Intel, arm64 builds have issues
80
+ fail-fast: false
81
+ name: OSX Python ${{ matrix.python-version }}
82
+ steps:
83
+ - uses: conda-incubator/setup-miniconda@v2
84
+ with:
85
+ python-version: ${{ matrix.python-version }}
86
+ miniforge-version: "latest"
87
+ miniforge-variant: Mambaforge
88
+ use-mamba: true
89
+ - run: mkdir -p conda_install_osx_artifacts_python_${{ matrix.python-version }}
90
+ - name: Record versions
91
+ run: |
92
+ mamba --version 2>&1 | tee conda_install_osx_artifacts_python_${{ matrix.python-version }}/conda_version.txt
93
+ which conda 2>&1 | tee conda_install_osx_artifacts_python_${{ matrix.python-version }}/conda_path.txt
94
+ which mamba 2>&1 | tee -a conda_install_osx_artifacts_python_${{ matrix.python-version }}/conda_path.txt
95
+ python -V 2>&1 | tee conda_install_osx_artifacts_python_${{ matrix.python-version }}/python_version.txt
96
+ - name: Install ESMValCore
97
+ run: mamba install esmvalcore 2>&1 | tee conda_install_osx_artifacts_python_${{ matrix.python-version }}/install.txt
98
+ - name: Verify installation
99
+ run: |
100
+ esmvaltool --help
101
+ esmvaltool version 2>&1 | tee conda_install_osx_artifacts_python_${{ matrix.python-version }}/version.txt
102
+ - name: Upload artifacts
103
+ if: ${{ always() }} # upload artifacts even if fail
104
+ uses: actions/upload-artifact@v2
105
+ with:
106
+ name: Conda_Install_OSX_python_${{ matrix.python-version }}
107
+ path: conda_install_osx_artifacts_python_${{ matrix.python-version }}
@@ -0,0 +1,61 @@
1
+ # Install esmvalcore from a conda lock file
2
+ # To build a conda lock file install conda-lock first then
3
+ # run conda-lock lock --platform linux-64 -f environment.yml --mamba
4
+ # (mamba activated for speed). Change platform for osx-64 or win-64.
5
+ # Env creation then happens as per normal use with
6
+ # mamba create --name esmvaltool-fromlock --file conda-linux-64.lock
7
+ # note that pip and conda are NOT installed.
8
+
9
+ name: Conda-lock Install
10
+ on:
11
+ push:
12
+ branches:
13
+ - main
14
+ # run the test only if the PR is to main
15
+ # turn it on if required
16
+ #pull_request:
17
+ # branches:
18
+ # - main
19
+ schedule:
20
+ - cron: '0 0 * * *'
21
+
22
+ # Required shell entrypoint to have properly configured bash shell
23
+ defaults:
24
+ run:
25
+ shell: bash -l {0}
26
+
27
+ jobs:
28
+ linux:
29
+ runs-on: "ubuntu-latest"
30
+ strategy:
31
+ matrix:
32
+ python-version: ["3.9", "3.10", "3.11", "3.12"]
33
+ fail-fast: false
34
+ name: Linux Python ${{ matrix.python-version }}
35
+ steps:
36
+ - uses: actions/checkout@v3
37
+ with:
38
+ fetch-depth: 0
39
+ - uses: conda-incubator/setup-miniconda@v2
40
+ with:
41
+ activate-environment: esmvaltool-fromlock
42
+ python-version: ${{ matrix.python-version }}
43
+ channels: conda-forge
44
+ - run: mkdir -p source_install_linux_artifacts_python_${{ matrix.python-version }}
45
+ - run: conda --version 2>&1 | tee source_install_linux_artifacts_python_${{ matrix.python-version }}/conda_version.txt
46
+ - run: which python
47
+ - run: python -V 2>&1 | tee source_install_linux_artifacts_python_${{ matrix.python-version }}/python_version.txt
48
+ - run: conda create --name esmvaltool-fromlock --file conda-linux-64.lock
49
+ - run: which python
50
+ - run: pip --version
51
+ - run: pip install -e .[develop]
52
+ - run: esmvaltool --help
53
+ - run: esmvaltool version 2>&1 | tee source_install_linux_artifacts_python_${{ matrix.python-version }}/version.txt
54
+ - run: flake8
55
+ - run: pytest -n 2 -m "not installation"
56
+ - name: Upload artifacts
57
+ if: ${{ always() }} # upload artifacts even if fail
58
+ uses: actions/upload-artifact@v2
59
+ with:
60
+ name: Source_Install_Linux_python_${{ matrix.python-version }}
61
+ path: source_install_linux_artifacts_python_${{ matrix.python-version }}
@@ -0,0 +1,111 @@
1
+ # Install esmvalcore from PyPi on different OS's
2
+ # and different Python version; test locally with
3
+ # act: https://github.com/nektos/act
4
+ # Example how to setup conda workflows:
5
+ # https://github.com/marketplace/actions/setup-miniconda
6
+ # Notes:
7
+ # - you can group commands with | delimiter (or &&) but those will be run
8
+ # in one single call; declaring the shell variable makes the action run each
9
+ # command separately (better for debugging);
10
+ # - can try multiple shells eg pwsh or cmd /C CALL {0} (but overkill for now!);
11
+ # TODO: read the cron tasking documentation:
12
+ # https://www.netiq.com/documentation/cloud-manager-2-5/ncm-reference/data/bexyssf.html
13
+
14
+ name: Install from PyPi
15
+
16
+ # runs on a push on main and at the end of every day
17
+ on:
18
+ # triggering on push without branch name will run tests every time
19
+ # there is a push on any branch
20
+ # turn it on only if needed
21
+ push:
22
+ branches:
23
+ - main
24
+ # run the test only if the PR is to main
25
+ # turn it on if required
26
+ #pull_request:
27
+ # branches:
28
+ # - main
29
+ schedule:
30
+ - cron: '0 0 * * *'
31
+
32
+ # Required shell entrypoint to have properly configured bash shell
33
+ defaults:
34
+ run:
35
+ shell: bash -l {0}
36
+
37
+ jobs:
38
+ linux:
39
+ runs-on: "ubuntu-latest"
40
+ strategy:
41
+ matrix:
42
+ python-version: ["3.9", "3.10", "3.11", "3.12"]
43
+ # fail-fast set to False allows all other tests
44
+ # in the workflow to run regardless of any fail
45
+ fail-fast: false
46
+ name: Linux Python ${{ matrix.python-version }}
47
+ steps:
48
+ - uses: actions/checkout@v3
49
+ - uses: conda-incubator/setup-miniconda@v2
50
+ with:
51
+ activate-environment: esmvalcore
52
+ environment-file: environment.yml
53
+ python-version: ${{ matrix.python-version }}
54
+ miniforge-version: "latest"
55
+ miniforge-variant: Mambaforge
56
+ use-mamba: true
57
+ - run: mkdir -p pip_install_linux_artifacts_python_${{ matrix.python-version }}
58
+ - name: Record versions
59
+ run: |
60
+ mamba --version 2>&1 | tee pip_install_linux_artifacts_python_${{ matrix.python-version }}/conda_version.txt
61
+ python -V 2>&1 | tee pip_install_linux_artifacts_python_${{ matrix.python-version }}/python_version.txt
62
+ pip -V 2>&1 | tee pip_install_linux_artifacts_python_${{ matrix.python-version }}/pip_version.txt
63
+ - name: Install
64
+ run: pip install esmvalcore 2>&1 | tee pip_install_linux_artifacts_python_${{ matrix.python-version }}/install.txt
65
+ - name: Verify installation
66
+ run: |
67
+ esmvaltool --help
68
+ esmvaltool version 2>&1 | tee pip_install_linux_artifacts_python_${{ matrix.python-version }}/version.txt
69
+ - name: Upload artifacts
70
+ if: ${{ always() }} # upload artifacts even if fail
71
+ uses: actions/upload-artifact@v2
72
+ with:
73
+ name: PIP_Install_Linux_python_${{ matrix.python-version }}
74
+ path: pip_install_linux_artifacts_python_${{ matrix.python-version }}
75
+
76
+ osx:
77
+ runs-on: "macos-latest"
78
+ strategy:
79
+ matrix:
80
+ python-version: ["3.9", "3.10", "3.11", "3.12"]
81
+ architecture: ["x64"] # need to force Intel, arm64 builds have issues
82
+ fail-fast: false
83
+ name: OSX Python ${{ matrix.python-version }}
84
+ steps:
85
+ - uses: actions/checkout@v3
86
+ - uses: conda-incubator/setup-miniconda@v2
87
+ with:
88
+ activate-environment: esmvalcore
89
+ environment-file: environment.yml
90
+ python-version: ${{ matrix.python-version }}
91
+ miniforge-version: "latest"
92
+ miniforge-variant: Mambaforge
93
+ use-mamba: true
94
+ - run: mkdir -p pip_install_osx_artifacts_python_${{ matrix.python-version }}
95
+ - name: Record versions
96
+ run: |
97
+ mamba --version 2>&1 | tee pip_install_osx_artifacts_python_${{ matrix.python-version }}/conda_version.txt
98
+ python -V 2>&1 | tee pip_install_osx_artifacts_python_${{ matrix.python-version }}/python_version.txt
99
+ pip -V 2>&1 | tee pip_install_osx_artifacts_python_${{ matrix.python-version }}/pip_version.txt
100
+ - name: Install
101
+ run: pip install esmvalcore 2>&1 | tee pip_install_osx_artifacts_python_${{ matrix.python-version }}/install.txt
102
+ - name: Verify installation
103
+ run: |
104
+ esmvaltool --help
105
+ esmvaltool version 2>&1 | tee pip_install_osx_artifacts_python_${{ matrix.python-version }}/version.txt
106
+ - name: Upload artifacts
107
+ if: ${{ always() }} # upload artifacts even if fail
108
+ uses: actions/upload-artifact@v2
109
+ with:
110
+ name: PIP_Install_OSX_python_${{ matrix.python-version }}
111
+ path: pip_install_osx_artifacts_python_${{ matrix.python-version }}