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.
- esmvalcore-2.11.0/.circleci/config.yml +225 -0
- esmvalcore-2.11.0/.github/workflows/build-and-deploy-on-pypi.yml +49 -0
- esmvalcore-2.11.0/.github/workflows/create-condalock-file.yml +99 -0
- esmvalcore-2.11.0/.github/workflows/install-from-conda.yml +107 -0
- esmvalcore-2.11.0/.github/workflows/install-from-condalock-file.yml +61 -0
- esmvalcore-2.11.0/.github/workflows/install-from-pypi.yml +111 -0
- esmvalcore-2.11.0/.github/workflows/install-from-source.yml +109 -0
- esmvalcore-2.11.0/.github/workflows/run-tests-monitor.yml +87 -0
- esmvalcore-2.11.0/.github/workflows/run-tests.yml +106 -0
- esmvalcore-2.11.0/.zenodo.json +248 -0
- esmvalcore-2.11.0/CITATION.cff +220 -0
- esmvalcore-2.11.0/ESMValCore.egg-info/PKG-INFO +172 -0
- esmvalcore-2.11.0/ESMValCore.egg-info/SOURCES.txt +964 -0
- esmvalcore-2.11.0/ESMValCore.egg-info/requires.txt +87 -0
- esmvalcore-2.11.0/PKG-INFO +172 -0
- esmvalcore-2.11.0/README.md +62 -0
- esmvalcore-2.11.0/conda-linux-64.lock +433 -0
- esmvalcore-2.11.0/doc/api/esmvalcore.preprocessor.rst +12 -0
- esmvalcore-2.11.0/doc/api/esmvalcore.regridding_schemes.rst +23 -0
- esmvalcore-2.11.0/doc/api/esmvalcore.rst +22 -0
- esmvalcore-2.11.0/doc/changelog.rst +1634 -0
- esmvalcore-2.11.0/doc/conf.py +489 -0
- esmvalcore-2.11.0/doc/index.rst +31 -0
- esmvalcore-2.11.0/doc/quickstart/configure.rst +971 -0
- esmvalcore-2.11.0/doc/quickstart/find_data.rst +843 -0
- esmvalcore-2.11.0/doc/recipe/preprocessor.rst +2901 -0
- esmvalcore-2.11.0/environment.yml +79 -0
- esmvalcore-2.11.0/esmvalcore/_main.py +561 -0
- esmvalcore-2.11.0/esmvalcore/_provenance.py +308 -0
- esmvalcore-2.11.0/esmvalcore/_recipe/check.py +591 -0
- esmvalcore-2.11.0/esmvalcore/_recipe/recipe.py +1151 -0
- esmvalcore-2.11.0/esmvalcore/_recipe/recipe_schema.yml +58 -0
- esmvalcore-2.11.0/esmvalcore/_recipe/to_datasets.py +567 -0
- esmvalcore-2.11.0/esmvalcore/_task.py +818 -0
- esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cesm/cesm2.py +83 -0
- esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cmip5/hadgem2_cc.py +30 -0
- esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cmip5/hadgem2_es.py +60 -0
- esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cmip5/miroc_esm.py +115 -0
- esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cmip6/access_esm1_5.py +132 -0
- esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cmip6/bcc_esm1.py +22 -0
- esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cmip6/cesm2.py +284 -0
- esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cmip6/ciesm.py +62 -0
- esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cmip6/ec_earth3.py +74 -0
- esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cmip6/ec_earth3_veg.py +78 -0
- esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cmip6/fio_esm_2_0.py +95 -0
- esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cmip6/gfdl_cm4.py +129 -0
- esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cmip6/gfdl_esm4.py +60 -0
- esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cmip6/giss_e2_1_g.py +26 -0
- esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cmip6/kiost_esm.py +94 -0
- esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cmip6/miroc6.py +39 -0
- esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cmip6/mpi_esm1_2_hr.py +118 -0
- esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cmip6/mpi_esm1_2_xr.py +49 -0
- esmvalcore-2.11.0/esmvalcore/cmor/_fixes/common.py +225 -0
- esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cordex/cnrm_cerfacs_cnrm_cm5/wrf381p.py +36 -0
- esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cordex/cordex_fixes.py +210 -0
- esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cordex/ichec_ec_earth/wrf381p.py +36 -0
- esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cordex/ipsl_ipsl_cm5a_mr/wrf381p.py +36 -0
- esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cordex/mohc_hadgem2_es/wrf381p.py +36 -0
- esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cordex/ncc_noresm1_m/__init__.py +1 -0
- esmvalcore-2.11.0/esmvalcore/cmor/_fixes/cordex/ncc_noresm1_m/wrf381p.py +36 -0
- esmvalcore-2.11.0/esmvalcore/cmor/_fixes/emac/emac.py +448 -0
- esmvalcore-2.11.0/esmvalcore/cmor/_fixes/fix.py +901 -0
- esmvalcore-2.11.0/esmvalcore/cmor/_fixes/icon/_base_fixes.py +522 -0
- esmvalcore-2.11.0/esmvalcore/cmor/_fixes/icon/icon.py +546 -0
- esmvalcore-2.11.0/esmvalcore/cmor/_fixes/native6/era5.py +435 -0
- esmvalcore-2.11.0/esmvalcore/cmor/_fixes/native6/mswep.py +131 -0
- esmvalcore-2.11.0/esmvalcore/cmor/_fixes/obs4mips/airs_2_0.py +35 -0
- esmvalcore-2.11.0/esmvalcore/cmor/_fixes/shared.py +517 -0
- esmvalcore-2.11.0/esmvalcore/cmor/_utils.py +205 -0
- esmvalcore-2.11.0/esmvalcore/cmor/check.py +1026 -0
- esmvalcore-2.11.0/esmvalcore/cmor/table.py +1103 -0
- esmvalcore-2.11.0/esmvalcore/cmor/tables/custom/CMOR_clhmtisccp.dat +21 -0
- esmvalcore-2.11.0/esmvalcore/cmor/tables/custom/CMOR_clhtkisccp.dat +21 -0
- esmvalcore-2.11.0/esmvalcore/cmor/tables/custom/CMOR_cllmtisccp.dat +21 -0
- esmvalcore-2.11.0/esmvalcore/cmor/tables/custom/CMOR_clltkisccp.dat +21 -0
- esmvalcore-2.11.0/esmvalcore/cmor/tables/custom/CMOR_clmmtisccp.dat +21 -0
- esmvalcore-2.11.0/esmvalcore/cmor/tables/custom/CMOR_clmtkisccp.dat +21 -0
- esmvalcore-2.11.0/esmvalcore/cmor/tables/custom/CMOR_lwcre.dat +22 -0
- esmvalcore-2.11.0/esmvalcore/cmor/tables/custom/CMOR_netcre.dat +22 -0
- esmvalcore-2.11.0/esmvalcore/cmor/tables/custom/CMOR_rsnt.dat +22 -0
- esmvalcore-2.11.0/esmvalcore/cmor/tables/custom/CMOR_rtnt.dat +22 -0
- esmvalcore-2.11.0/esmvalcore/cmor/tables/custom/CMOR_swcre.dat +22 -0
- esmvalcore-2.11.0/esmvalcore/cmor/tables/custom/CMOR_tcw.dat +21 -0
- esmvalcore-2.11.0/esmvalcore/config/__init__.py +19 -0
- esmvalcore-2.11.0/esmvalcore/config/_config_object.py +364 -0
- esmvalcore-2.11.0/esmvalcore/config/_esgf_pyclient.py +127 -0
- esmvalcore-2.11.0/esmvalcore/config/_logging.py +127 -0
- esmvalcore-2.11.0/esmvalcore/config/config-logging.yml +51 -0
- esmvalcore-2.11.0/esmvalcore/config/extra_facets/icon-mappings.yml +78 -0
- esmvalcore-2.11.0/esmvalcore/config-developer.yml +196 -0
- esmvalcore-2.11.0/esmvalcore/config-user.yml +274 -0
- esmvalcore-2.11.0/esmvalcore/esgf/_download.py +584 -0
- esmvalcore-2.11.0/esmvalcore/experimental/recipe_output.py +447 -0
- esmvalcore-2.11.0/esmvalcore/iris_helpers.py +359 -0
- esmvalcore-2.11.0/esmvalcore/local.py +672 -0
- esmvalcore-2.11.0/esmvalcore/preprocessor/__init__.py +716 -0
- esmvalcore-2.11.0/esmvalcore/preprocessor/_area.py +986 -0
- esmvalcore-2.11.0/esmvalcore/preprocessor/_compare_with_refs.py +573 -0
- esmvalcore-2.11.0/esmvalcore/preprocessor/_derive/__init__.py +126 -0
- esmvalcore-2.11.0/esmvalcore/preprocessor/_derive/lwcre.py +36 -0
- esmvalcore-2.11.0/esmvalcore/preprocessor/_derive/netcre.py +48 -0
- esmvalcore-2.11.0/esmvalcore/preprocessor/_derive/rsnt.py +36 -0
- esmvalcore-2.11.0/esmvalcore/preprocessor/_derive/sfcwind.py +35 -0
- esmvalcore-2.11.0/esmvalcore/preprocessor/_derive/sm.py +38 -0
- esmvalcore-2.11.0/esmvalcore/preprocessor/_derive/swcre.py +36 -0
- esmvalcore-2.11.0/esmvalcore/preprocessor/_io.py +527 -0
- esmvalcore-2.11.0/esmvalcore/preprocessor/_mask.py +696 -0
- esmvalcore-2.11.0/esmvalcore/preprocessor/_multimodel.py +888 -0
- esmvalcore-2.11.0/esmvalcore/preprocessor/_other.py +431 -0
- esmvalcore-2.11.0/esmvalcore/preprocessor/_regrid.py +1393 -0
- esmvalcore-2.11.0/esmvalcore/preprocessor/_regrid_esmpy.py +471 -0
- esmvalcore-2.11.0/esmvalcore/preprocessor/_regrid_unstructured.py +403 -0
- esmvalcore-2.11.0/esmvalcore/preprocessor/_rolling_window.py +47 -0
- esmvalcore-2.11.0/esmvalcore/preprocessor/_shared.py +577 -0
- esmvalcore-2.11.0/esmvalcore/preprocessor/_time.py +1792 -0
- esmvalcore-2.11.0/esmvalcore/preprocessor/_trend.py +181 -0
- esmvalcore-2.11.0/esmvalcore/preprocessor/_units.py +178 -0
- esmvalcore-2.11.0/esmvalcore/preprocessor/_volume.py +584 -0
- esmvalcore-2.11.0/esmvalcore/preprocessor/regrid_schemes.py +130 -0
- esmvalcore-2.11.0/esmvalcore/typing.py +26 -0
- esmvalcore-2.11.0/setup.py +254 -0
- esmvalcore-2.11.0/tests/integration/cmor/_fixes/cmip5/test_hadgem2_es.py +68 -0
- esmvalcore-2.11.0/tests/integration/cmor/_fixes/cmip6/test_bcc_esm1.py +92 -0
- esmvalcore-2.11.0/tests/integration/cmor/_fixes/cmip6/test_ciesm.py +63 -0
- esmvalcore-2.11.0/tests/integration/cmor/_fixes/cmip6/test_fio_esm_2_0.py +144 -0
- esmvalcore-2.11.0/tests/integration/cmor/_fixes/cmip6/test_gfdl_cm4.py +245 -0
- esmvalcore-2.11.0/tests/integration/cmor/_fixes/cmip6/test_mpi_esm1_2_hr.py +185 -0
- esmvalcore-2.11.0/tests/integration/cmor/_fixes/cordex/test_cnrm_cerfacs_cnrm_cm5.py +93 -0
- esmvalcore-2.11.0/tests/integration/cmor/_fixes/cordex/test_ichec_ec_earth.py +78 -0
- esmvalcore-2.11.0/tests/integration/cmor/_fixes/cordex/test_ipsl_ipsl_cm5a_mr.py +36 -0
- esmvalcore-2.11.0/tests/integration/cmor/_fixes/cordex/test_mohc_hadgem2_es.py +135 -0
- esmvalcore-2.11.0/tests/integration/cmor/_fixes/cordex/test_ncc_noresm1_m.py +78 -0
- esmvalcore-2.11.0/tests/integration/cmor/_fixes/icon/test_icon.py +2390 -0
- esmvalcore-2.11.0/tests/integration/cmor/_fixes/native6/test_era5.py +1099 -0
- esmvalcore-2.11.0/tests/integration/cmor/_fixes/obs4mips/test_airs_2_0.py +31 -0
- esmvalcore-2.11.0/tests/integration/cmor/_fixes/test_data/cesm2_cl.nc +0 -0
- esmvalcore-2.11.0/tests/integration/cmor/_fixes/test_data/common_cl_hybrid_height.nc +0 -0
- esmvalcore-2.11.0/tests/integration/cmor/_fixes/test_shared.py +684 -0
- esmvalcore-2.11.0/tests/integration/cmor/test_read_cmor_tables.py +177 -0
- esmvalcore-2.11.0/tests/integration/cmor/test_table.py +524 -0
- esmvalcore-2.11.0/tests/integration/conftest.py +162 -0
- esmvalcore-2.11.0/tests/integration/data_finder.yml +1348 -0
- esmvalcore-2.11.0/tests/integration/preprocessor/_derive/test_sispeed.py +58 -0
- esmvalcore-2.11.0/tests/integration/preprocessor/_io/test_concatenate.py +308 -0
- esmvalcore-2.11.0/tests/integration/preprocessor/_regrid/test_extract_levels.py +185 -0
- esmvalcore-2.11.0/tests/integration/preprocessor/_regrid/test_regrid.py +446 -0
- esmvalcore-2.11.0/tests/integration/preprocessor/_regrid/test_regrid_schemes.py +55 -0
- esmvalcore-2.11.0/tests/integration/preprocessor/_regrid/test_regrid_unstructured.py +310 -0
- esmvalcore-2.11.0/tests/integration/preprocessor/_time/test_time.py +561 -0
- esmvalcore-2.11.0/tests/integration/recipe/test_recipe.py +3292 -0
- esmvalcore-2.11.0/tests/sample_data/experimental/test_run_recipe.py +131 -0
- esmvalcore-2.11.0/tests/unit/config/test_config.py +282 -0
- esmvalcore-2.11.0/tests/unit/config/test_config_object.py +320 -0
- esmvalcore-2.11.0/tests/unit/esgf/test_download.py +623 -0
- esmvalcore-2.11.0/tests/unit/local/test_get_rootpath.py +28 -0
- esmvalcore-2.11.0/tests/unit/main/test_esmvaltool.py +237 -0
- esmvalcore-2.11.0/tests/unit/main/test_main.py +35 -0
- esmvalcore-2.11.0/tests/unit/preprocessor/_area/test_area.py +1449 -0
- esmvalcore-2.11.0/tests/unit/preprocessor/_compare_with_refs/test_compare_with_refs.py +809 -0
- esmvalcore-2.11.0/tests/unit/preprocessor/_derive/test_lwcre.py +28 -0
- esmvalcore-2.11.0/tests/unit/preprocessor/_derive/test_netcre.py +36 -0
- esmvalcore-2.11.0/tests/unit/preprocessor/_derive/test_rsnt.py +26 -0
- esmvalcore-2.11.0/tests/unit/preprocessor/_derive/test_sfcwind.py +49 -0
- esmvalcore-2.11.0/tests/unit/preprocessor/_derive/test_sm.py +32 -0
- esmvalcore-2.11.0/tests/unit/preprocessor/_derive/test_swcre.py +28 -0
- esmvalcore-2.11.0/tests/unit/preprocessor/_mask/test_mask.py +133 -0
- esmvalcore-2.11.0/tests/unit/preprocessor/_other/test_other.py +433 -0
- esmvalcore-2.11.0/tests/unit/preprocessor/_regrid/test__stock_cube.py +133 -0
- esmvalcore-2.11.0/tests/unit/preprocessor/_regrid/test_broadcast_to_shape.py +112 -0
- esmvalcore-2.11.0/tests/unit/preprocessor/_regrid/test_extract_levels.py +372 -0
- esmvalcore-2.11.0/tests/unit/preprocessor/_regrid/test_extract_point.py +60 -0
- esmvalcore-2.11.0/tests/unit/preprocessor/_regrid/test_extract_regional_grid.py +106 -0
- esmvalcore-2.11.0/tests/unit/preprocessor/_regrid/test_regrid.py +392 -0
- esmvalcore-2.11.0/tests/unit/preprocessor/_regrid_esmpy/test_regrid_esmpy.py +752 -0
- esmvalcore-2.11.0/tests/unit/preprocessor/_time/test_time.py +2065 -0
- esmvalcore-2.11.0/tests/unit/preprocessor/_units/test_convert_units.py +254 -0
- esmvalcore-2.11.0/tests/unit/preprocessor/_volume/test_volume.py +670 -0
- esmvalcore-2.11.0/tests/unit/preprocessor/test_runner.py +61 -0
- esmvalcore-2.11.0/tests/unit/preprocessor/test_shared.py +349 -0
- esmvalcore-2.11.0/tests/unit/recipe/test_to_datasets.py +438 -0
- esmvalcore-2.11.0/tests/unit/task/__init__.py +0 -0
- esmvalcore-2.11.0/tests/unit/test_iris_helpers.py +569 -0
- esmvalcore-2.11.0/tests/unit/test_logging.py +66 -0
- ESMValCore-2.10.0/.circleci/config.yml +0 -225
- ESMValCore-2.10.0/.github/workflows/build-and-deploy-on-pypi.yml +0 -49
- ESMValCore-2.10.0/.github/workflows/create-condalock-file.yml +0 -102
- ESMValCore-2.10.0/.github/workflows/install-from-conda.yml +0 -106
- ESMValCore-2.10.0/.github/workflows/install-from-condalock-file.yml +0 -62
- ESMValCore-2.10.0/.github/workflows/install-from-pypi.yml +0 -110
- ESMValCore-2.10.0/.github/workflows/install-from-source.yml +0 -108
- ESMValCore-2.10.0/.github/workflows/run-tests-monitor.yml +0 -85
- ESMValCore-2.10.0/.github/workflows/run-tests.yml +0 -100
- ESMValCore-2.10.0/.zenodo.json +0 -234
- ESMValCore-2.10.0/CITATION.cff +0 -211
- ESMValCore-2.10.0/ESMValCore.egg-info/PKG-INFO +0 -170
- ESMValCore-2.10.0/ESMValCore.egg-info/SOURCES.txt +0 -938
- ESMValCore-2.10.0/ESMValCore.egg-info/requires.txt +0 -85
- ESMValCore-2.10.0/PKG-INFO +0 -170
- ESMValCore-2.10.0/README.md +0 -62
- ESMValCore-2.10.0/conda-linux-64.lock +0 -431
- ESMValCore-2.10.0/doc/api/esmvalcore.preprocessor.rst +0 -7
- ESMValCore-2.10.0/doc/api/esmvalcore.rst +0 -21
- ESMValCore-2.10.0/doc/changelog.rst +0 -1461
- ESMValCore-2.10.0/doc/conf.py +0 -458
- ESMValCore-2.10.0/doc/index.rst +0 -11
- ESMValCore-2.10.0/doc/quickstart/configure.rst +0 -965
- ESMValCore-2.10.0/doc/quickstart/find_data.rst +0 -841
- ESMValCore-2.10.0/doc/recipe/preprocessor.rst +0 -2457
- ESMValCore-2.10.0/environment.yml +0 -76
- ESMValCore-2.10.0/esmvalcore/_main.py +0 -546
- ESMValCore-2.10.0/esmvalcore/_provenance.py +0 -308
- ESMValCore-2.10.0/esmvalcore/_recipe/check.py +0 -475
- ESMValCore-2.10.0/esmvalcore/_recipe/recipe.py +0 -1131
- ESMValCore-2.10.0/esmvalcore/_recipe/recipe_schema.yml +0 -58
- ESMValCore-2.10.0/esmvalcore/_recipe/to_datasets.py +0 -514
- ESMValCore-2.10.0/esmvalcore/_task.py +0 -818
- ESMValCore-2.10.0/esmvalcore/cmor/_fixes/cesm/cesm2.py +0 -83
- ESMValCore-2.10.0/esmvalcore/cmor/_fixes/cmip5/hadgem2_cc.py +0 -55
- ESMValCore-2.10.0/esmvalcore/cmor/_fixes/cmip5/hadgem2_es.py +0 -60
- ESMValCore-2.10.0/esmvalcore/cmor/_fixes/cmip5/miroc_esm.py +0 -115
- ESMValCore-2.10.0/esmvalcore/cmor/_fixes/cmip6/access_esm1_5.py +0 -132
- ESMValCore-2.10.0/esmvalcore/cmor/_fixes/cmip6/bcc_esm1.py +0 -19
- ESMValCore-2.10.0/esmvalcore/cmor/_fixes/cmip6/cesm2.py +0 -288
- ESMValCore-2.10.0/esmvalcore/cmor/_fixes/cmip6/ciesm.py +0 -39
- ESMValCore-2.10.0/esmvalcore/cmor/_fixes/cmip6/ec_earth3.py +0 -74
- ESMValCore-2.10.0/esmvalcore/cmor/_fixes/cmip6/ec_earth3_veg.py +0 -78
- ESMValCore-2.10.0/esmvalcore/cmor/_fixes/cmip6/fio_esm_2_0.py +0 -72
- ESMValCore-2.10.0/esmvalcore/cmor/_fixes/cmip6/gfdl_cm4.py +0 -121
- ESMValCore-2.10.0/esmvalcore/cmor/_fixes/cmip6/gfdl_esm4.py +0 -58
- ESMValCore-2.10.0/esmvalcore/cmor/_fixes/cmip6/giss_e2_1_g.py +0 -28
- ESMValCore-2.10.0/esmvalcore/cmor/_fixes/cmip6/kiost_esm.py +0 -86
- ESMValCore-2.10.0/esmvalcore/cmor/_fixes/cmip6/miroc6.py +0 -45
- ESMValCore-2.10.0/esmvalcore/cmor/_fixes/cmip6/mpi_esm1_2_hr.py +0 -102
- ESMValCore-2.10.0/esmvalcore/cmor/_fixes/cmip6/mpi_esm1_2_xr.py +0 -29
- ESMValCore-2.10.0/esmvalcore/cmor/_fixes/common.py +0 -225
- ESMValCore-2.10.0/esmvalcore/cmor/_fixes/cordex/cordex_fixes.py +0 -206
- ESMValCore-2.10.0/esmvalcore/cmor/_fixes/emac/emac.py +0 -448
- ESMValCore-2.10.0/esmvalcore/cmor/_fixes/fix.py +0 -900
- ESMValCore-2.10.0/esmvalcore/cmor/_fixes/icon/_base_fixes.py +0 -455
- ESMValCore-2.10.0/esmvalcore/cmor/_fixes/icon/icon.py +0 -515
- ESMValCore-2.10.0/esmvalcore/cmor/_fixes/native6/era5.py +0 -435
- ESMValCore-2.10.0/esmvalcore/cmor/_fixes/native6/mswep.py +0 -131
- ESMValCore-2.10.0/esmvalcore/cmor/_fixes/shared.py +0 -510
- ESMValCore-2.10.0/esmvalcore/cmor/_utils.py +0 -219
- ESMValCore-2.10.0/esmvalcore/cmor/check.py +0 -1009
- ESMValCore-2.10.0/esmvalcore/cmor/table.py +0 -1089
- ESMValCore-2.10.0/esmvalcore/cmor/tables/custom/CMOR_clhmtisccp.dat +0 -22
- ESMValCore-2.10.0/esmvalcore/cmor/tables/custom/CMOR_clhtkisccp.dat +0 -22
- ESMValCore-2.10.0/esmvalcore/cmor/tables/custom/CMOR_cllmtisccp.dat +0 -22
- ESMValCore-2.10.0/esmvalcore/cmor/tables/custom/CMOR_clltkisccp.dat +0 -22
- ESMValCore-2.10.0/esmvalcore/cmor/tables/custom/CMOR_clmmtisccp.dat +0 -22
- ESMValCore-2.10.0/esmvalcore/cmor/tables/custom/CMOR_clmtkisccp.dat +0 -22
- ESMValCore-2.10.0/esmvalcore/cmor/tables/custom/CMOR_lwcre.dat +0 -22
- ESMValCore-2.10.0/esmvalcore/cmor/tables/custom/CMOR_netcre.dat +0 -22
- ESMValCore-2.10.0/esmvalcore/cmor/tables/custom/CMOR_rsnt.dat +0 -22
- ESMValCore-2.10.0/esmvalcore/cmor/tables/custom/CMOR_rtnt.dat +0 -22
- ESMValCore-2.10.0/esmvalcore/cmor/tables/custom/CMOR_swcre.dat +0 -22
- ESMValCore-2.10.0/esmvalcore/config/__init__.py +0 -17
- ESMValCore-2.10.0/esmvalcore/config/_config_object.py +0 -242
- ESMValCore-2.10.0/esmvalcore/config/_esgf_pyclient.py +0 -189
- ESMValCore-2.10.0/esmvalcore/config/_logging.py +0 -103
- ESMValCore-2.10.0/esmvalcore/config/config-logging.yml +0 -33
- ESMValCore-2.10.0/esmvalcore/config/extra_facets/icon-mappings.yml +0 -70
- ESMValCore-2.10.0/esmvalcore/config-developer.yml +0 -193
- ESMValCore-2.10.0/esmvalcore/config-user.yml +0 -249
- ESMValCore-2.10.0/esmvalcore/esgf/_download.py +0 -581
- ESMValCore-2.10.0/esmvalcore/experimental/recipe_output.py +0 -412
- ESMValCore-2.10.0/esmvalcore/iris_helpers.py +0 -159
- ESMValCore-2.10.0/esmvalcore/local.py +0 -678
- ESMValCore-2.10.0/esmvalcore/preprocessor/__init__.py +0 -693
- ESMValCore-2.10.0/esmvalcore/preprocessor/_area.py +0 -916
- ESMValCore-2.10.0/esmvalcore/preprocessor/_bias.py +0 -118
- ESMValCore-2.10.0/esmvalcore/preprocessor/_derive/__init__.py +0 -126
- ESMValCore-2.10.0/esmvalcore/preprocessor/_derive/lwcre.py +0 -35
- ESMValCore-2.10.0/esmvalcore/preprocessor/_derive/netcre.py +0 -47
- ESMValCore-2.10.0/esmvalcore/preprocessor/_derive/rsnt.py +0 -34
- ESMValCore-2.10.0/esmvalcore/preprocessor/_derive/sm.py +0 -38
- ESMValCore-2.10.0/esmvalcore/preprocessor/_derive/swcre.py +0 -34
- ESMValCore-2.10.0/esmvalcore/preprocessor/_io.py +0 -559
- ESMValCore-2.10.0/esmvalcore/preprocessor/_mask.py +0 -692
- ESMValCore-2.10.0/esmvalcore/preprocessor/_multimodel.py +0 -881
- ESMValCore-2.10.0/esmvalcore/preprocessor/_other.py +0 -87
- ESMValCore-2.10.0/esmvalcore/preprocessor/_regrid.py +0 -1136
- ESMValCore-2.10.0/esmvalcore/preprocessor/_regrid_esmpy.py +0 -354
- ESMValCore-2.10.0/esmvalcore/preprocessor/_rolling_window.py +0 -46
- ESMValCore-2.10.0/esmvalcore/preprocessor/_shared.py +0 -183
- ESMValCore-2.10.0/esmvalcore/preprocessor/_time.py +0 -1294
- ESMValCore-2.10.0/esmvalcore/preprocessor/_trend.py +0 -177
- ESMValCore-2.10.0/esmvalcore/preprocessor/_units.py +0 -165
- ESMValCore-2.10.0/esmvalcore/preprocessor/_volume.py +0 -521
- ESMValCore-2.10.0/esmvalcore/typing.py +0 -19
- ESMValCore-2.10.0/setup.py +0 -252
- ESMValCore-2.10.0/tests/integration/cmor/_fixes/cmip5/test_hadgem2_es.py +0 -38
- ESMValCore-2.10.0/tests/integration/cmor/_fixes/cmip6/test_bcc_esm1.py +0 -80
- ESMValCore-2.10.0/tests/integration/cmor/_fixes/cmip6/test_ciesm.py +0 -53
- ESMValCore-2.10.0/tests/integration/cmor/_fixes/cmip6/test_fio_esm_2_0.py +0 -135
- ESMValCore-2.10.0/tests/integration/cmor/_fixes/cmip6/test_gfdl_cm4.py +0 -118
- ESMValCore-2.10.0/tests/integration/cmor/_fixes/cmip6/test_mpi_esm1_2_hr.py +0 -75
- ESMValCore-2.10.0/tests/integration/cmor/_fixes/cordex/test_cnrm_cerfacs_cnrm_cm5.py +0 -61
- ESMValCore-2.10.0/tests/integration/cmor/_fixes/cordex/test_ichec_ec_earth.py +0 -46
- ESMValCore-2.10.0/tests/integration/cmor/_fixes/cordex/test_mohc_hadgem2_es.py +0 -105
- ESMValCore-2.10.0/tests/integration/cmor/_fixes/cordex/test_ncc_noresm1_m.py +0 -46
- ESMValCore-2.10.0/tests/integration/cmor/_fixes/icon/test_icon.py +0 -2211
- ESMValCore-2.10.0/tests/integration/cmor/_fixes/native6/test_era5.py +0 -1050
- ESMValCore-2.10.0/tests/integration/cmor/_fixes/test_data/cesm2_cl.nc +0 -0
- ESMValCore-2.10.0/tests/integration/cmor/_fixes/test_data/common_cl_hybrid_height.nc +0 -0
- ESMValCore-2.10.0/tests/integration/cmor/_fixes/test_shared.py +0 -664
- ESMValCore-2.10.0/tests/integration/cmor/test_read_cmor_tables.py +0 -78
- ESMValCore-2.10.0/tests/integration/cmor/test_table.py +0 -528
- ESMValCore-2.10.0/tests/integration/conftest.py +0 -119
- ESMValCore-2.10.0/tests/integration/data_finder.yml +0 -1238
- ESMValCore-2.10.0/tests/integration/preprocessor/_derive/test_sispeed.py +0 -55
- ESMValCore-2.10.0/tests/integration/preprocessor/_io/test_concatenate.py +0 -514
- ESMValCore-2.10.0/tests/integration/preprocessor/_regrid/test_extract_levels.py +0 -175
- ESMValCore-2.10.0/tests/integration/preprocessor/_regrid/test_regrid.py +0 -299
- ESMValCore-2.10.0/tests/integration/recipe/test_recipe.py +0 -2769
- ESMValCore-2.10.0/tests/sample_data/experimental/test_run_recipe.py +0 -115
- ESMValCore-2.10.0/tests/unit/config/test_config.py +0 -279
- ESMValCore-2.10.0/tests/unit/config/test_config_object.py +0 -92
- ESMValCore-2.10.0/tests/unit/esgf/test_download.py +0 -623
- ESMValCore-2.10.0/tests/unit/main/test_esmvaltool.py +0 -236
- ESMValCore-2.10.0/tests/unit/main/test_main.py +0 -35
- ESMValCore-2.10.0/tests/unit/preprocessor/_area/test_area.py +0 -1296
- ESMValCore-2.10.0/tests/unit/preprocessor/_bias/test_bias.py +0 -261
- ESMValCore-2.10.0/tests/unit/preprocessor/_mask/test_mask.py +0 -131
- ESMValCore-2.10.0/tests/unit/preprocessor/_other/test_other.py +0 -95
- ESMValCore-2.10.0/tests/unit/preprocessor/_regrid/test__stock_cube.py +0 -121
- ESMValCore-2.10.0/tests/unit/preprocessor/_regrid/test_extract_levels.py +0 -321
- ESMValCore-2.10.0/tests/unit/preprocessor/_regrid/test_extract_point.py +0 -61
- ESMValCore-2.10.0/tests/unit/preprocessor/_regrid/test_extract_regional_grid.py +0 -94
- ESMValCore-2.10.0/tests/unit/preprocessor/_regrid/test_regrid.py +0 -387
- ESMValCore-2.10.0/tests/unit/preprocessor/_regrid_esmpy/test_regrid_esmpy.py +0 -676
- ESMValCore-2.10.0/tests/unit/preprocessor/_time/test_time.py +0 -2224
- ESMValCore-2.10.0/tests/unit/preprocessor/_units/test_convert_units.py +0 -220
- ESMValCore-2.10.0/tests/unit/preprocessor/_volume/test_volume.py +0 -453
- ESMValCore-2.10.0/tests/unit/preprocessor/test_runner.py +0 -59
- ESMValCore-2.10.0/tests/unit/preprocessor/test_shared.py +0 -184
- ESMValCore-2.10.0/tests/unit/recipe/test_to_datasets.py +0 -386
- ESMValCore-2.10.0/tests/unit/test_iris_helpers.py +0 -222
- ESMValCore-2.10.0/tests/unit/test_logging.py +0 -38
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/.circleci/install_triggers +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/.codacy.yml +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/.editorconfig +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/.github/CODEOWNERS +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/.github/ISSUE_TEMPLATE/data_issue_report.md +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/.github/pull_request_template.md +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/.github/workflows/citation_file_validator.yml +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/.gitignore +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/.mailmap +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/.pre-commit-config.yaml +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/.prospector.yml +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/.readthedocs.yaml +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/CODE_OF_CONDUCT.md +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/CONTRIBUTING.md +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/ESMValCore.egg-info/dependency_links.txt +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/ESMValCore.egg-info/entry_points.txt +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/ESMValCore.egg-info/not-zip-safe +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/ESMValCore.egg-info/top_level.txt +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/LICENSE +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/NOTICE +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/codecov.yml +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/api/esmvalcore.cmor.rst +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/api/esmvalcore.config.rst +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/api/esmvalcore.dataset.rst +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/api/esmvalcore.esgf.rst +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/api/esmvalcore.exceptions.rst +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/api/esmvalcore.experimental.recipe.rst +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/api/esmvalcore.experimental.recipe_metadata.rst +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/api/esmvalcore.experimental.recipe_output.rst +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/api/esmvalcore.experimental.rst +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/api/esmvalcore.experimental.utils.rst +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/api/esmvalcore.iris_helpers.rst +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/api/esmvalcore.local.rst +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/api/esmvalcore.typing.rst +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/contributing.rst +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/develop/derivation.rst +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/develop/fixing_data.rst +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/develop/index.rst +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/develop/preprocessor_function.rst +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/example-notebooks.rst +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/figures/ESMValTool-logo-2.pdf +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/figures/ESMValTool-logo-2.png +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/figures/ESMValTool-logo.png +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/figures/api_recipe_output.png +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/gensidebar.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/interfaces.rst +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/quickstart/index.rst +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/quickstart/install.rst +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/quickstart/output.rst +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/quickstart/run.rst +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/recipe/index.rst +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/doc/recipe/overview.rst +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/docker/Dockerfile +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/docker/Dockerfile.dev +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/_citation.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/_recipe/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/_recipe/_io.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/_recipe/from_datasets.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/_version.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cesm/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/access1_0.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/access1_3.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/bcc_csm1_1.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/bcc_csm1_1_m.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/bnu_esm.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/canesm2.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/ccsm4.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/cesm1_bgc.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/cesm1_cam5.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/cesm1_fastchem.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/cesm1_waccm.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/cnrm_cm5.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/csiro_mk3_6_0.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/ec_earth.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/fgoals_g2.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/fgoals_s2.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/fio_esm.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/gfdl_cm2p1.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/gfdl_cm3.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/gfdl_esm2g.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/gfdl_esm2m.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/giss_e2_h.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/giss_e2_r.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/inmcm4.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/ipsl_cm5a_lr.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/ipsl_cm5a_mr.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/ipsl_cm5b_lr.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/miroc5.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/miroc_esm_chem.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/mpi_esm_lr.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/mpi_esm_mr.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/mpi_esm_p.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/mri_cgcm3.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/mri_esm1.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/noresm1_m.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip5/noresm1_me.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/access_cm2.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/awi_cm_1_1_mr.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/awi_esm_1_1_lr.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/bcc_csm2_mr.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/cams_csm1_0.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/canesm5.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/canesm5_canoe.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/cas_esm2_0.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/cesm2_fv2.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/cesm2_waccm.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/cesm2_waccm_fv2.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/cmcc_cm2_sr5.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/cnrm_cm6_1.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/cnrm_cm6_1_hr.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/cnrm_esm2_1.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/e3sm_1_0.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/ec_earth3_veg_lr.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/fgoals_f3_l.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/fgoals_g3.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/giss_e2_1_h.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/hadgem3_gc31_ll.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/icon_esm_lr.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/iitm_esm.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/ipsl_cm5a2_inca.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/ipsl_cm6a_lr.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/ipsl_cm6a_lr_inca.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/kace_1_0_g.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/mcm_ua_1_0.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/miroc_es2l.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/mpi_esm1_2_lr.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/mpi_esm_1_2_ham.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/mri_esm2_0.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/nesm3.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/noresm2_lm.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/noresm2_mm.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/sam0_unicon.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/taiesm1.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cmip6/ukesm1_0_ll.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cordex/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cordex/cnrm_cerfacs_cnrm_cm5/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cordex/cnrm_cerfacs_cnrm_cm5/aladin63.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cordex/cnrm_cerfacs_cnrm_cm5/hadrem3_ga7_05.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cordex/ichec_ec_earth/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cordex/ichec_ec_earth/cclm4_8_17.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cordex/ichec_ec_earth/hadrem3_ga7_05.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cordex/ichec_ec_earth/racmo22e.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cordex/ichec_ec_earth/rca4.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cordex/ichec_ec_earth/remo2015.py +0 -0
- {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
- {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
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cordex/miroc_miroc5/cclm4_8_17.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cordex/miroc_miroc5/remo2015.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cordex/miroc_miroc5/wrf361h.py +0 -0
- {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
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cordex/mohc_hadgem2_es/hadrem3_ga7_05.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cordex/mohc_hadgem2_es/hirham5.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cordex/mohc_hadgem2_es/rca4.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cordex/mohc_hadgem2_es/remo2015.py +0 -0
- {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
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cordex/mpi_m_mpi_esm_lr/hadrem3_ga7_05.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cordex/mpi_m_mpi_esm_lr/racmo22e.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cordex/mpi_m_mpi_esm_lr/regcm4_6.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cordex/ncc_noresm1_m/hadrem3_ga7_05.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cordex/ncc_noresm1_m/racmo22e.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cordex/ncc_noresm1_m/rca4.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/cordex/ncc_noresm1_m/remo2015.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/emac/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/emac/_base_fixes.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/icon/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/ipslcm/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/ipslcm/ipsl_cm6.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/native6/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/native6/era5_land.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/native_datasets.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/obs4mips/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/obs4mips/airs_2_1.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/obs4mips/ssmi.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/obs4mips/ssmi_meris.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/_fixes/us_standard_atmosphere.csv +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/fix.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/fixes.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/VERSION +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip3/.gitignore +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip3/README.md +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip3/Tables/IPCC_table_A1 +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip3/Tables/IPCC_table_A2 +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip3/Tables/IPCC_table_A3 +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip3/Tables/IPCC_table_A4 +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip3/Tables/IPCC_table_A5 +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip3/Tables/IPCC_table_O1 +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip5/Tables/CMIP5_3hr +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip5/Tables/CMIP5_6hrLev +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip5/Tables/CMIP5_6hrPlev +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip5/Tables/CMIP5_Amon +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip5/Tables/CMIP5_LImon +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip5/Tables/CMIP5_Lmon +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip5/Tables/CMIP5_OImon +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip5/Tables/CMIP5_Oclim +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip5/Tables/CMIP5_Omon +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip5/Tables/CMIP5_Oyr +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip5/Tables/CMIP5_aero +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip5/Tables/CMIP5_cf3hr +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip5/Tables/CMIP5_cfDay +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip5/Tables/CMIP5_cfMon +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip5/Tables/CMIP5_cfOff +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip5/Tables/CMIP5_cfSites +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip5/Tables/CMIP5_day +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip5/Tables/CMIP5_fx +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip5/Tables/CMIP5_grids +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip5/Tables/md5s +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/.circleci/config.yml +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/README.md +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_3hr.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_6hrLev.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_6hrPlev.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_6hrPlevPt.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_AERday.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_AERhr.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_AERmon.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_AERmonZ.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_Amon.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_CF3hr.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_CFday.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_CFmon.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_CFsubhr.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_CV.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_E1hr.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_E1hrClimMon.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_E3hr.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_E3hrPt.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_E6hrZ.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_Eday.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_EdayZ.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_Efx.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_Emon.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_EmonZ.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_Esubhr.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_Eyr.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_IfxAnt.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_IfxGre.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_ImonAnt.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_ImonGre.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_IyrAnt.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_IyrGre.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_LImon.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_Lmon.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_Oclim.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_Oday.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_Odec.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_Ofx.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_Omon.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_Oyr.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_SIday.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_SImon.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_coordinate.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_day.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_formula_terms.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_fx.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_grids.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/Tables/CMIP6_input_example.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cmip6/VERSION +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cordex/RELEASE-NOTES +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cordex/Tables/CORDEX_3h +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cordex/Tables/CORDEX_6h +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cordex/Tables/CORDEX_day +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cordex/Tables/CORDEX_fx +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cordex/Tables/CORDEX_grids +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cordex/Tables/CORDEX_mon +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cordex/Tables/CORDEX_sem +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cordex/Tables/md5s +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/cordex/VERSION +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_MP_BC_tot.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_MP_CFCl3.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_MP_CH4.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_MP_CO.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_MP_CO2.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_MP_ClOX.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_MP_DU_tot.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_MP_N2O.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_MP_NH3.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_MP_NO.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_MP_NO2.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_MP_NOX.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_MP_O3.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_MP_OH.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_MP_S.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_MP_SO2.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_MP_SO4mm_tot.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_MP_SS_tot.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_alb.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_albDiff.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_albDiffiTr13.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_amoc.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_asr.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_awhea.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_bdalb.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_bhalb.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_ch4s.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_chlora.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_clisccp.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_cltStderr.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_co2s.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_coordinates.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_ctotal.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_dos.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_dosStderr.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_et.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_etStderr.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_fapar.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_gppStderr.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_hfns.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_hurStderr.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_husStderr.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_iwpStderr.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_lvp.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_lweGrace.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_lwp.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_lwpStderr.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_od550aerStderr.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_od870aerStderr.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_ohc.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_prStderr.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_prl.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_ptype.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_rlns.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_rlnst.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_rlnstcs.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_rlntcs.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_rluscs.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_rlut.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_rlutcs.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_rsns.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_rsnst.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_rsnstcs.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_rsnstcsnorm.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_rsntcs.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_rsut.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_rsutcs.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_siextent.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_sispeed.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_sithick.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_sm.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_sm1m.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_smStderr.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_tasConf5.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_tasConf95.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_tasa.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_tasaga.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_toz.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_tozStderr.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_tro3prof.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_tro3profStderr.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_tsStderr.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_uajet.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_vegfrac.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_xch4.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/custom/CMOR_xco2.dat +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/obs4mips/Tables/obs4MIPs_Aday.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/obs4mips/Tables/obs4MIPs_Amon.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/obs4mips/Tables/obs4MIPs_CV.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/obs4mips/Tables/obs4MIPs_Lmon.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/obs4mips/Tables/obs4MIPs_Omon.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/obs4mips/Tables/obs4MIPs_SImon.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/obs4mips/Tables/obs4MIPs_coordinate.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/obs4mips/Tables/obs4MIPs_formula_terms.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/obs4mips/Tables/obs4MIPs_fx.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/obs4mips/Tables/obs4MIPs_grids.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/obs4mips/Tables/obs4MIPs_monNobs.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/obs4mips/Tables/obs4MIPs_monStderr.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/obs4mips/obs4MIPs_frequency.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/obs4mips/obs4MIPs_grid_label.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/obs4mips/obs4MIPs_institution_id.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/obs4mips/obs4MIPs_license.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/obs4mips/obs4MIPs_nominal_resolution.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/obs4mips/obs4MIPs_product.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/obs4mips/obs4MIPs_realm.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/obs4mips/obs4MIPs_region.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/obs4mips/obs4MIPs_required_global_attributes.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/obs4mips/obs4MIPs_source_id.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/obs4mips/obs4MIPs_source_type.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/tables/obs4mips/obs4MIPs_table_id.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/cmor/variable_alt_names.yml +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/config/_config.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/config/_config_validators.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/config/_dask.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/config/_diagnostics.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/config/_validated_config.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/config/extra_facets/cesm-mappings.yml +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/config/extra_facets/cmip3-institutes.yml +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/config/extra_facets/cmip5-fx.yml +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/config/extra_facets/cmip5-institutes.yml +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/config/extra_facets/cmip5-product.yml +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/config/extra_facets/emac-mappings.yml +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/config/extra_facets/ipslcm-mappings.yml +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/dataset.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/esgf/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/esgf/_logon.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/esgf/_search.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/esgf/facets.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/exceptions.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/experimental/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/experimental/_logging.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/experimental/_warnings.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/experimental/recipe.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/experimental/recipe_info.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/experimental/recipe_metadata.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/experimental/templates/RecipeInfo.j2 +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/experimental/templates/RecipeOutput.j2 +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/experimental/templates/TaskOutput.j2 +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/experimental/templates/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/experimental/templates/head.j2 +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/experimental/templates/recipe_output_page.j2 +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/experimental/templates/scripts.js +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/experimental/utils.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_cycles.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/_baseclass.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/_shared.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/alb.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/amoc.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/asr.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/chlora.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/clhmtisccp.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/clhtkisccp.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/cllmtisccp.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/clltkisccp.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/clmmtisccp.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/clmtkisccp.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/co2s.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/ctotal.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/et.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/hfns.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/lvp.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/lwp.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/ohc.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/rlns.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/rlnst.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/rlnstcs.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/rlntcs.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/rlus.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/rsns.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/rsnst.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/rsnstcs.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/rsnstcsnorm.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/rsntcs.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/rsus.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/rtnt.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/siextent.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/sispeed.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/sithick.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/toz.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/uajet.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/vegfrac.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/xch4.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_derive/xco2.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_detrend.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_mapping.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_supplementary_vars.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/_weighting.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/ne_masks/ne_10m_glaciated_areas.README.html +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/ne_masks/ne_10m_glaciated_areas.VERSION.txt +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/ne_masks/ne_10m_glaciated_areas.cpg +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/ne_masks/ne_10m_glaciated_areas.dbf +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/ne_masks/ne_10m_glaciated_areas.prj +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/ne_masks/ne_10m_glaciated_areas.shp +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/ne_masks/ne_10m_glaciated_areas.shx +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/ne_masks/ne_10m_land.README.html +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/ne_masks/ne_10m_land.VERSION.txt +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/ne_masks/ne_10m_land.cpg +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/ne_masks/ne_10m_land.dbf +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/ne_masks/ne_10m_land.prj +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/ne_masks/ne_10m_land.shp +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/ne_masks/ne_10m_land.shx +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/ne_masks/ne_50m_ocean.README.html +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/ne_masks/ne_50m_ocean.VERSION.txt +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/ne_masks/ne_50m_ocean.cpg +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/ne_masks/ne_50m_ocean.dbf +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/ne_masks/ne_50m_ocean.prj +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/ne_masks/ne_50m_ocean.shp +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/ne_masks/ne_50m_ocean.shx +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/shapefiles/ar6.LICENSE +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/shapefiles/ar6.dbf +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/shapefiles/ar6.prj +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/shapefiles/ar6.shp +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/esmvalcore/preprocessor/shapefiles/ar6.shx +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/notebooks/composing-recipes.ipynb +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/notebooks/discovering-data.ipynb +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/notebooks/loading-and-processing-data.ipynb +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/pyproject.toml +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/setup.cfg +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cesm/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cesm/test_cesm2.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_access1_0.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_access1_3.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_bcc_csm1_1.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_bcc_csm1_1_m.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_bnu_esm.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_canesm2.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_ccsm4.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_cesm1_bgc.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_cesm1_cam5.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_cesm1_fastchem.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_cesm1_waccm.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_cnrm_cm5.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_csiro_mk3_6_0.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_ec_earth.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_fgoals_g2.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_fgoals_s2.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_fio_esm.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_gfdl_cm2p1.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_gfdl_cm3.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_gfdl_esm2g.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_gfdl_esm2m.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_giss_e2_h.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_giss_e2_r.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_hadgem2_cc.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_inmcm4.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_ipsl_cm5a_lr.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_ipsl_cm5a_mr.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_ipsl_cm5b_lr.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_miroc5.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_miroc_esm.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_miroc_esm_chem.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_mpi_esm_lr.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_mpi_esm_mr.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_mpi_esm_p.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_mri_cgcm3.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_mri_esm1.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_noresm1_m.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip5/test_noresm1_me.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_access_cm2.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_access_esm1_5.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_awi_cm_1_1_mr.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_awi_esm_1_1_lr.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_bcc_csm2_mr.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_cams_csm1_0.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_canesm5.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_canesm5_canoe.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_cas_esm2_0.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_cesm2.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_cesm2_fv2.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_cesm2_waccm.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_cesm2_waccm_fv2.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_cmcc_cm2_sr5.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_cnrm_cm6_1.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_cnrm_cm6_1_hr.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_cnrm_esm2_1.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_e3sm_1_0.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_ec_earth3.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_ec_earth3_veg.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_ec_earth3_veg_lr.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_fgoals_f3_l.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_fgoals_g3.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_gfdl_esm4.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_giss_e2_1_g.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_giss_e2_1_h.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_hadgem3_gc31_ll.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_icon_esm_lr.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_iitm_esm.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_ipsl_cm6a_lr.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_kace_1_0_g.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_kiost_esm.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_mcm_ua_1_0.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_miroc6.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_miroc_es2l.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_mpi_esm1_2_lr.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_mpi_esm_1_2_ham.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_mri_esm2_0.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_nesm3.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_noresm2_lm.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_noresm2_mm.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_sam0_unicon.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_taiesm1.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cmip6/test_ukesm1_0_ll.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/conftest.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cordex/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cordex/test_cordex_fixes.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cordex/test_miroc_miroc5.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/cordex/test_mpi_m_mpi_esm_lr.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/emac/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/emac/test_emac.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/icon/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/ipslcm/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/ipslcm/test_ipsl_cm6.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/native6/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/native6/mswep_day.nc +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/native6/mswep_month.nc +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/native6/test_mswep.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/obs4mips/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/obs4mips/test_airs_2_1.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/obs4mips/test_ssmi.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/obs4mips/test_ssmi_meris.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/test_common.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/test_data/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/test_data/cesm2_native.nc +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/test_data/cesm2_waccm_cl.nc +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/test_data/cnrm_cm6_1_cl.nc +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/test_data/common_cl_a.nc +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/test_data/common_cl_ap.nc +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/test_data/create_test_data.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/test_data/emac.nc +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/test_data/gfdl_cm4_cl.nc +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/test_data/icon_2d.nc +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/test_data/icon_3d.nc +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/test_data/icon_grid.nc +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/test_fix.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/_fixes/test_native_datasets.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/cmor/test_fix.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/dataset/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/dataset/areacella.nc +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/dataset/tas.nc +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/dataset/test_dataset.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/esgf/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/esgf/search_results/Amon_r1i1p1_historical,rcp85_INM-CM4_CMIP5_tas.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/esgf/search_results/Amon_r1i1p1_historical_FIO-ESM_CMIP5_tas.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/esgf/search_results/Amon_r1i1p1_rcp85_HadGEM2-CC_CMIP5_tas.json +0 -0
- {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
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/esgf/search_results/expected.yml +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/esgf/search_results/historical_gn_r4i1p1f1_CMIP6_CESM2_Amon_tas.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/esgf/search_results/inmcm4_CMIP5_tas.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/esgf/search_results/obs4MIPs_CERES-EBAF_mon_rsutcs.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/esgf/search_results/obs4MIPs_GPCP-V2.3_pr.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/esgf/search_results/run1_historical_cccma_cgcm3_1_CMIP3_mon_tas.json +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/esgf/test_search_download.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/preprocessor/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/preprocessor/_derive/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/preprocessor/_derive/test_interface.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/preprocessor/_derive/test_sithick.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/preprocessor/_extract_region/test_intersect.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/preprocessor/_io/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/preprocessor/_io/test_load.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/preprocessor/_io/test_save.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/preprocessor/_mask/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/preprocessor/_mask/test_mask.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/preprocessor/_regrid/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/preprocessor/_regrid/test_extract_coordinate_points.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/preprocessor/_regrid/test_extract_location.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/preprocessor/_regrid/test_extract_point.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/preprocessor/_regrid/test_get_cmor_levels.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/preprocessor/_regrid/test_get_file_levels.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/preprocessor/_supplementary_vars/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/preprocessor/_supplementary_vars/test_add_supplementary_variables.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/preprocessor/_supplementary_vars/test_register.py +0 -0
- {ESMValCore-2.10.0/tests/integration/recipe → esmvalcore-2.11.0/tests/integration/preprocessor/_time}/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/preprocessor/test_preprocessing_task.py +0 -0
- {ESMValCore-2.10.0/tests/sample_data → esmvalcore-2.11.0/tests/integration/recipe}/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/recipe/test_check.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/test_citation.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/test_deprecated_config.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/test_diagnostic_run.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/test_local.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/test_main.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/test_provenance.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/integration/test_task.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/parse_pymon.py +0 -0
- {ESMValCore-2.10.0/tests/sample_data/experimental → esmvalcore-2.11.0/tests/sample_data}/__init__.py +0 -0
- {ESMValCore-2.10.0/tests/sample_data/multimodel_statistics → esmvalcore-2.11.0/tests/sample_data/experimental}/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/sample_data/experimental/recipe_api_test.yml +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/sample_data/extra_facets/override/test6-01.yml +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/sample_data/extra_facets/override/test6-02.yml +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/sample_data/extra_facets/simple/test6-01.yml +0 -0
- {ESMValCore-2.10.0/tests/unit → esmvalcore-2.11.0/tests/sample_data/multimodel_statistics}/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/sample_data/multimodel_statistics/test_multimodel.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/sample_data/multimodel_statistics/timeseries_daily_365_day-full-mean.nc +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/sample_data/multimodel_statistics/timeseries_daily_365_day-overlap-mean.nc +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/sample_data/multimodel_statistics/timeseries_daily_gregorian-full-mean.nc +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/sample_data/multimodel_statistics/timeseries_daily_gregorian-overlap-mean.nc +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/sample_data/multimodel_statistics/timeseries_daily_proleptic_gregorian-full-mean.nc +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/sample_data/multimodel_statistics/timeseries_daily_proleptic_gregorian-overlap-mean.nc +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/sample_data/multimodel_statistics/timeseries_daily_standard-full-mean.nc +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/sample_data/multimodel_statistics/timeseries_daily_standard-overlap-mean.nc +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/sample_data/multimodel_statistics/timeseries_monthly-full-mean.nc +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/sample_data/multimodel_statistics/timeseries_monthly-overlap-mean.nc +0 -0
- {ESMValCore-2.10.0/tests/unit/config → esmvalcore-2.11.0/tests/unit}/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/check_r_code.R +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/cmor/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/cmor/test_cmor_check.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/cmor/test_fix.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/cmor/test_fixes.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/cmor/test_generic_fix.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/cmor/test_table.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/cmor/test_utils.py +0 -0
- {ESMValCore-2.10.0/tests/unit/documentation → esmvalcore-2.11.0/tests/unit/config}/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/config/test_config_validator.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/config/test_dask.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/config/test_diagnostic.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/config/test_esgf_pyclient.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/conftest.py +0 -0
- {ESMValCore-2.10.0/tests/unit/esgf → esmvalcore-2.11.0/tests/unit/documentation}/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/documentation/test_changelog.py +0 -0
- {ESMValCore-2.10.0/tests/unit/experimental → esmvalcore-2.11.0/tests/unit/esgf}/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/esgf/test_facet.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/esgf/test_logon.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/esgf/test_search.py +0 -0
- {ESMValCore-2.10.0/tests/unit/local → esmvalcore-2.11.0/tests/unit/experimental}/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/experimental/references/doe2021.bibtex +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/experimental/test_output_file.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/experimental/test_recipe.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/experimental/test_recipe_info.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/experimental/test_recipe_output.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/experimental/test_utils.py +0 -0
- {ESMValCore-2.10.0/tests/unit/main → esmvalcore-2.11.0/tests/unit/local}/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/local/test_facets.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/local/test_replace_tags.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/local/test_select_files.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/local/test_time.py +0 -0
- {ESMValCore-2.10.0/tests/unit/preprocessor → esmvalcore-2.11.0/tests/unit/main}/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/main/test_parse_resume.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/main/test_recipes.py +0 -0
- {ESMValCore-2.10.0/tests/unit/preprocessor/_area → esmvalcore-2.11.0/tests/unit/preprocessor}/__init__.py +0 -0
- {ESMValCore-2.10.0/tests/unit/preprocessor/_cycles → esmvalcore-2.11.0/tests/unit/preprocessor/_area}/__init__.py +0 -0
- {ESMValCore-2.10.0/tests/unit/preprocessor/_derive → esmvalcore-2.11.0/tests/unit/preprocessor/_cycles}/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_cycles/test_cycles.py +0 -0
- {ESMValCore-2.10.0/tests/unit/preprocessor/_detrend → esmvalcore-2.11.0/tests/unit/preprocessor/_derive}/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_derive/test_amoc.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_derive/test_asr.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_derive/test_co2s.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_derive/test_ctotal.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_derive/test_et.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_derive/test_hfns.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_derive/test_ohc.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_derive/test_rlntcs.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_derive/test_rlus.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_derive/test_rsntcs.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_derive/test_rsntcsnorm.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_derive/test_rsus.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_derive/test_shared.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_derive/test_siextent.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_derive/test_toz.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_derive/test_uajet.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_derive/test_xch4.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_derive/test_xco2.py +0 -0
- {ESMValCore-2.10.0/tests/unit/preprocessor/_mask → esmvalcore-2.11.0/tests/unit/preprocessor/_detrend}/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_detrend/test_detrend.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_mapping/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_mapping/test_mapping.py +0 -0
- {ESMValCore-2.10.0/tests/unit/preprocessor/_multimodel → esmvalcore-2.11.0/tests/unit/preprocessor/_mask}/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_mask/test_mask_multimodel.py +0 -0
- {ESMValCore-2.10.0/tests/unit/preprocessor/_trend → esmvalcore-2.11.0/tests/unit/preprocessor/_multimodel}/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_multimodel/test_multimodel.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_other/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_regrid/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_regrid/test__create_cube.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_regrid_esmpy/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_rolling_window/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_rolling_window/test_rolling_window.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_time/__init__.py +0 -0
- {ESMValCore-2.10.0/tests/unit/preprocessor/_units → esmvalcore-2.11.0/tests/unit/preprocessor/_trend}/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_trend/test_trend.py +0 -0
- {ESMValCore-2.10.0/tests/unit/preprocessor/_volume → esmvalcore-2.11.0/tests/unit/preprocessor/_units}/__init__.py +0 -0
- {ESMValCore-2.10.0/tests/unit/preprocessor/_weighting → esmvalcore-2.11.0/tests/unit/preprocessor/_volume}/__init__.py +0 -0
- {ESMValCore-2.10.0/tests/unit/provenance → esmvalcore-2.11.0/tests/unit/preprocessor/_weighting}/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/_weighting/test_weighting_landsea_fraction.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/test_configuration.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/test_error_logging.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/preprocessor/test_preprocessor_file.py +0 -0
- {ESMValCore-2.10.0/tests/unit/recipe → esmvalcore-2.11.0/tests/unit/provenance}/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/provenance/test_trackedfile.py +0 -0
- {ESMValCore-2.10.0/tests/unit/task → esmvalcore-2.11.0/tests/unit/recipe}/__init__.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/recipe/test_from_datasets.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/recipe/test_io.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/recipe/test_recipe.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/task/test_diagnostic_task.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/task/test_print.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/task/test_resume_task.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/test_citation.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/test_cmor_api.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/test_dataset.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/test_exceptions.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/test_iris_io.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/test_naming.py +0 -0
- {ESMValCore-2.10.0 → esmvalcore-2.11.0}/tests/unit/test_provenance.py +0 -0
- {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 }}
|