diff --git a/changelog/393.feature.md b/changelog/393.feature.md new file mode 100644 index 000000000..46f6bc183 --- /dev/null +++ b/changelog/393.feature.md @@ -0,0 +1 @@ +Added climate drivers for fire diagnostic. diff --git a/packages/climate-ref-core/tests/unit/test_datasets/dataset_collection_hash.yml b/packages/climate-ref-core/tests/unit/test_datasets/dataset_collection_hash.yml index e656f78c0..db04bb4c4 100644 --- a/packages/climate-ref-core/tests/unit/test_datasets/dataset_collection_hash.yml +++ b/packages/climate-ref-core/tests/unit/test_datasets/dataset_collection_hash.yml @@ -1,2 +1,2 @@ -807057562019211340 +2074659132983676899 ... diff --git a/packages/climate-ref-core/tests/unit/test_datasets/metric_dataset_hash.yml b/packages/climate-ref-core/tests/unit/test_datasets/metric_dataset_hash.yml index 8ec828694..d42590e8a 100644 --- a/packages/climate-ref-core/tests/unit/test_datasets/metric_dataset_hash.yml +++ b/packages/climate-ref-core/tests/unit/test_datasets/metric_dataset_hash.yml @@ -1,2 +1,2 @@ -73a70f6d05abceda52e706adefd6e28b00420204 +77b5ed086e4aedb114d6f02472e88edd1db6dae2 ... diff --git a/packages/climate-ref-esmvaltool/src/climate_ref_esmvaltool/diagnostics/__init__.py b/packages/climate-ref-esmvaltool/src/climate_ref_esmvaltool/diagnostics/__init__.py index f7812f3fd..06f6c76a2 100644 --- a/packages/climate-ref-esmvaltool/src/climate_ref_esmvaltool/diagnostics/__init__.py +++ b/packages/climate-ref-esmvaltool/src/climate_ref_esmvaltool/diagnostics/__init__.py @@ -1,6 +1,7 @@ """ESMValTool diagnostics.""" from climate_ref_esmvaltool.diagnostics.climate_at_global_warming_levels import ClimateAtGlobalWarmingLevels +from climate_ref_esmvaltool.diagnostics.climate_drivers_for_fire import ClimateDriversForFire from climate_ref_esmvaltool.diagnostics.cloud_radiative_effects import CloudRadiativeEffects from climate_ref_esmvaltool.diagnostics.cloud_scatterplots import ( CloudScatterplotCliTa, @@ -20,6 +21,7 @@ __all__ = [ "ClimateAtGlobalWarmingLevels", + "ClimateDriversForFire", "CloudRadiativeEffects", "CloudScatterplotCliTa", "CloudScatterplotCliviLwcre", diff --git a/packages/climate-ref-esmvaltool/src/climate_ref_esmvaltool/diagnostics/climate_drivers_for_fire.py b/packages/climate-ref-esmvaltool/src/climate_ref_esmvaltool/diagnostics/climate_drivers_for_fire.py new file mode 100644 index 000000000..a6cc2a479 --- /dev/null +++ b/packages/climate-ref-esmvaltool/src/climate_ref_esmvaltool/diagnostics/climate_drivers_for_fire.py @@ -0,0 +1,68 @@ +import pandas + +from climate_ref_core.constraints import ( + AddSupplementaryDataset, + RequireFacets, + RequireOverlappingTimerange, +) +from climate_ref_core.datasets import FacetFilter, SourceDatasetType +from climate_ref_core.diagnostics import DataRequirement +from climate_ref_esmvaltool.diagnostics.base import ESMValToolDiagnostic +from climate_ref_esmvaltool.recipe import dataframe_to_recipe +from climate_ref_esmvaltool.types import Recipe + + +class ClimateDriversForFire(ESMValToolDiagnostic): + """ + Calculate diagnostics regarding climate drivers for fire. + """ + + name = "Climate drivers for fire" + slug = "climate-drivers-for-fire" + base_recipe = "ref/recipe_ref_fire.yml" + + variables = ( + "cVeg", + "hurs", + "pr", + "tas", + "tasmax", + "treeFrac", + "vegFrac", + ) + data_requirements = ( + DataRequirement( + source_type=SourceDatasetType.CMIP6, + filters=( + FacetFilter( + facets={ + "variable_id": variables, + "frequency": "mon", + "experiment_id": "historical", + } + ), + ), + group_by=("source_id", "member_id", "grid_label"), + constraints=( + RequireFacets("variable_id", variables), + RequireOverlappingTimerange(group_by=("instance_id",)), + AddSupplementaryDataset.from_defaults("sftlf", SourceDatasetType.CMIP6), + ), + ), + ) + facets = () + + @staticmethod + def update_recipe( + recipe: Recipe, + input_files: dict[SourceDatasetType, pandas.DataFrame], + ) -> None: + """Update the recipe.""" + recipe_variables = dataframe_to_recipe(input_files[SourceDatasetType.CMIP6]) + dataset = recipe_variables["cVeg"]["additional_datasets"][0] + dataset.pop("mip") + dataset.pop("timerange") + dataset["start_year"] = 2013 + dataset["end_year"] = 2014 + recipe["datasets"] = [dataset] + recipe["diagnostics"]["fire_evaluation"]["scripts"]["fire_evaluation"]["remove_confire_files"] = True diff --git a/packages/climate-ref-esmvaltool/src/climate_ref_esmvaltool/recipe.py b/packages/climate-ref-esmvaltool/src/climate_ref_esmvaltool/recipe.py index a038d2a2b..fad15bd7e 100644 --- a/packages/climate-ref-esmvaltool/src/climate_ref_esmvaltool/recipe.py +++ b/packages/climate-ref-esmvaltool/src/climate_ref_esmvaltool/recipe.py @@ -140,8 +140,8 @@ def dataframe_to_recipe( return variables -_ESMVALTOOL_COMMIT = "8f56863a70ba4df76ec501ba0372c571a0af6cf9" -_ESMVALTOOL_VERSION = f"2.13.0.dev120+g{_ESMVALTOOL_COMMIT[:9]}" +_ESMVALTOOL_COMMIT = "2c438d0e0cc8904790294c72450eb7f06552c52a" +_ESMVALTOOL_VERSION = f"2.13.0.dev148+g{_ESMVALTOOL_COMMIT[:9]}" _RECIPES = pooch.create( path=pooch.os_cache("climate_ref_esmvaltool"), diff --git a/packages/climate-ref-esmvaltool/src/climate_ref_esmvaltool/recipes.txt b/packages/climate-ref-esmvaltool/src/climate_ref_esmvaltool/recipes.txt index 7a703f604..0d9bd0816 100644 --- a/packages/climate-ref-esmvaltool/src/climate_ref_esmvaltool/recipes.txt +++ b/packages/climate-ref-esmvaltool/src/climate_ref_esmvaltool/recipes.txt @@ -8,5 +8,6 @@ recipe_zec.yml b0af7f789b7610ab3f29a6617124aa40c408 ref/recipe_enso_basicclimatology.yml 9ea7deb7ee668e39ac44618b96496d898bd82285c22dcee4fce4695e0c9fa82b ref/recipe_enso_characteristics.yml 34c2518b138068ac96d212910b979d54a8fcedee2c0089b5acd56a42c41dc3e4 ref/recipe_ref_cre.yml 4375f262479c3b3e1b348b71080a6d758e195bda76516a591182045a3a29aa32 +ref/recipe_ref_fire.yml 2ad82effaca4e742d8abe6a0aa07bb46e1e92ef0d2d240760f7623b0ba045926 ref/recipe_ref_sea_ice_area_basic.yml 7d01a8527880663ca28284772f83a8356d9972fb4f022a4000e50a56ce044b09 ref/recipe_ref_scatterplot.yml b99d1736e16256d161847b025811d7088ad9f892d4887fb009fa99c4079135a0 diff --git a/packages/climate-ref-esmvaltool/src/climate_ref_esmvaltool/requirements/conda-lock.yml b/packages/climate-ref-esmvaltool/src/climate_ref_esmvaltool/requirements/conda-lock.yml index 4a1b0a963..5cde428d7 100644 --- a/packages/climate-ref-esmvaltool/src/climate_ref_esmvaltool/requirements/conda-lock.yml +++ b/packages/climate-ref-esmvaltool/src/climate_ref_esmvaltool/requirements/conda-lock.yml @@ -13,9 +13,9 @@ version: 1 metadata: content_hash: - linux-64: 471a753e19ab31ee42fc91705b1eceeac961605a774a585b751309cb5c88a3b0 - osx-64: 1ae9173fcf3f8f7e47d39464e3474e3a6390a56aadab59a79ee2274dbcf35839 - osx-arm64: 2b794c6ac6bfdc42998488dfbec096e04eaa7b2ef635c0a8355ebe8846f69a1a + linux-64: bd78439bec25ac66d7917ad1a339872fd60c61410639709698d9ef0a3e522fb1 + osx-64: 08703aa7e4bb921e990c5c1d8eeb5644c02819874c0944196086233b16eaf432 + osx-arm64: 8353f202b3dcb8ec77d23d4267444e7d1f0dc5a8fba5f78ad310c515f1b0b2b4 channels: - url: conda-forge used_env_vars: [] @@ -50,79 +50,46 @@ package: sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22 category: main optional: false -- name: _py-xgboost-mutex - version: '2.0' - manager: conda - platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/_py-xgboost-mutex-2.0-gpu_0.tar.bz2 - hash: - md5: 7702188077361f43a4d61e64c694f850 - sha256: ef6bccb4e2114a7be586416f5e1a8656ffa11c6fddef926b5c6d5ff5179157fa - category: main - optional: false -- name: _py-xgboost-mutex - version: '2.0' - manager: conda - platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/_py-xgboost-mutex-2.0-cpu_0.tar.bz2 - hash: - md5: 96dd44c2471a638fb9cdc40aa2573d1b - sha256: c5ad8d2e016faaa08aa494ee6255f42263f179ba7f2c1848ae55b35ce8182fd1 - category: main - optional: false -- name: _py-xgboost-mutex - version: '2.0' - manager: conda - platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/_py-xgboost-mutex-2.0-cpu_0.tar.bz2 - hash: - md5: 1a751190779dc4a6389bb986c293684c - sha256: 6592e1ed84e29d9ee648bb975f6643c232a107a1c621f86bd93945a8dca18ecd - category: main - optional: false - name: adwaita-icon-theme - version: '47.0' + version: '48.1' manager: conda platform: linux-64 dependencies: __unix: '' hicolor-icon-theme: '' librsvg: '' - url: https://conda.anaconda.org/conda-forge/noarch/adwaita-icon-theme-47.0-unix_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/adwaita-icon-theme-48.1-unix_1.conda hash: - md5: 49436a5c604f99058473d84580f0e341 - sha256: 188dca9a847f474b3df71eda9fe828fbe10b53aa6f4313c7e117f3114b1dd84e + md5: 388097ca1f27fc28e0ef1986dd311891 + sha256: f52307d3ff839bf4a001cb14b3944f169e46e37982a97c3d52cbf48a0cfe2327 category: main optional: false - name: adwaita-icon-theme - version: '47.0' + version: '48.1' manager: conda platform: osx-64 dependencies: __unix: '' - librsvg: '' hicolor-icon-theme: '' - url: https://conda.anaconda.org/conda-forge/noarch/adwaita-icon-theme-47.0-unix_0.conda + librsvg: '' + url: https://conda.anaconda.org/conda-forge/noarch/adwaita-icon-theme-48.1-unix_1.conda hash: - md5: 49436a5c604f99058473d84580f0e341 - sha256: 188dca9a847f474b3df71eda9fe828fbe10b53aa6f4313c7e117f3114b1dd84e + md5: 388097ca1f27fc28e0ef1986dd311891 + sha256: f52307d3ff839bf4a001cb14b3944f169e46e37982a97c3d52cbf48a0cfe2327 category: main optional: false - name: adwaita-icon-theme - version: '47.0' + version: '48.1' manager: conda platform: osx-arm64 dependencies: __unix: '' - librsvg: '' hicolor-icon-theme: '' - url: https://conda.anaconda.org/conda-forge/noarch/adwaita-icon-theme-47.0-unix_0.conda + librsvg: '' + url: https://conda.anaconda.org/conda-forge/noarch/adwaita-icon-theme-48.1-unix_1.conda hash: - md5: 49436a5c604f99058473d84580f0e341 - sha256: 188dca9a847f474b3df71eda9fe828fbe10b53aa6f4313c7e117f3114b1dd84e + md5: 388097ca1f27fc28e0ef1986dd311891 + sha256: f52307d3ff839bf4a001cb14b3944f169e46e37982a97c3d52cbf48a0cfe2327 category: main optional: false - name: affine @@ -162,71 +129,71 @@ package: category: main optional: false - name: aiohappyeyeballs - version: 2.5.0 + version: 2.6.1 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.5.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.6.1-pyhd8ed1ab_0.conda hash: - md5: b7dbe12461afb9eff415ed46cfa81021 - sha256: cb0175ba6301c389aa114ab36fd25808a97abf5fa9355b2656dfb7043cc378e4 + md5: 18fd895e0e775622906cdabfc3cf0fb4 + sha256: 7842ddc678e77868ba7b92a726b437575b23aaec293bca0d40826f1026d90e27 category: main optional: false - name: aiohappyeyeballs - version: 2.5.0 + version: 2.6.1 manager: conda platform: osx-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.5.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.6.1-pyhd8ed1ab_0.conda hash: - md5: b7dbe12461afb9eff415ed46cfa81021 - sha256: cb0175ba6301c389aa114ab36fd25808a97abf5fa9355b2656dfb7043cc378e4 + md5: 18fd895e0e775622906cdabfc3cf0fb4 + sha256: 7842ddc678e77868ba7b92a726b437575b23aaec293bca0d40826f1026d90e27 category: main optional: false - name: aiohappyeyeballs - version: 2.5.0 + version: 2.6.1 manager: conda platform: osx-arm64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.5.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.6.1-pyhd8ed1ab_0.conda hash: - md5: b7dbe12461afb9eff415ed46cfa81021 - sha256: cb0175ba6301c389aa114ab36fd25808a97abf5fa9355b2656dfb7043cc378e4 + md5: 18fd895e0e775622906cdabfc3cf0fb4 + sha256: 7842ddc678e77868ba7b92a726b437575b23aaec293bca0d40826f1026d90e27 category: main optional: false - name: aiohttp - version: 3.11.13 + version: 3.12.15 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - aiohappyeyeballs: '>=2.3.0' - aiosignal: '>=1.1.2' + aiohappyeyeballs: '>=2.5.0' + aiosignal: '>=1.4.0' attrs: '>=17.3.0' frozenlist: '>=1.1.1' - libgcc: '>=13' + libgcc: '>=14' multidict: '>=4.5,<7.0' propcache: '>=0.2.0' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* yarl: '>=1.17.0,<2.0' - url: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.11.13-py312h178313f_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.12.15-py312h8a5da7c_0.conda hash: - md5: 0ea623ee1f29a7e1d703bc3b0ef82306 - sha256: 985834edea972ddf6c35ab4185fb228440efb845a70a88182895f8f90df4a4c9 + md5: 26123b7166da2af08afb6172b5a4806c + sha256: 524f7e7bcf2f68ec69fc4e097373b2affee48419b1568b9b7c60c09fca260caf category: main optional: false - name: aiohttp - version: 3.11.13 + version: 3.12.15 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' - aiohappyeyeballs: '>=2.3.0' - aiosignal: '>=1.1.2' + aiohappyeyeballs: '>=2.5.0' + aiosignal: '>=1.4.0' attrs: '>=17.3.0' frozenlist: '>=1.1.1' multidict: '>=4.5,<7.0' @@ -234,20 +201,20 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* yarl: '>=1.17.0,<2.0' - url: https://conda.anaconda.org/conda-forge/osx-64/aiohttp-3.11.13-py312h3520af0_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/aiohttp-3.12.15-py312h3d55d04_0.conda hash: - md5: 3377515d687d7735bb9155096bc6f221 - sha256: 72b5ca807619a59e669df7c80d8ac8fdeb834081e3ed8933fee545f48f85fe34 + md5: af245c6a9327e623a25008ba60e93369 + sha256: 445c5fff62749cb36ee8190a754a2559ab51ec8644460c67439aed6b2802b1ed category: main optional: false - name: aiohttp - version: 3.11.13 + version: 3.12.15 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' - aiohappyeyeballs: '>=2.3.0' - aiosignal: '>=1.1.2' + aiohappyeyeballs: '>=2.5.0' + aiosignal: '>=1.4.0' attrs: '>=17.3.0' frozenlist: '>=1.1.1' multidict: '>=4.5,<7.0' @@ -255,49 +222,52 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* yarl: '>=1.17.0,<2.0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.11.13-py312h998013c_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.12.15-py312h6daa0e5_0.conda hash: - md5: d575ea7d96ce2c9fed370d85d3ef464e - sha256: 84f8c35912bce8c9ee979454a685ec0497fbccd7da86351e8d774ae3e7456055 + md5: 572a16e27eb506a2dd3ca436336d3ffc + sha256: 272a5afdd14bafd4bbd95998e1b2f637f6d5c00f43cf469f4c0bfce3a8456386 category: main optional: false - name: aiosignal - version: 1.3.2 + version: 1.4.0 manager: conda platform: linux-64 dependencies: frozenlist: '>=1.1.0' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.2-pyhd8ed1ab_0.conda + typing_extensions: '>=4.2' + url: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.4.0-pyhd8ed1ab_0.conda hash: - md5: 1a3981115a398535dbe3f6d5faae3d36 - sha256: 7de8ced1918bbdadecf8e1c1c68237fe5709c097bd9e0d254f4cad118f4345d0 + md5: 421a865222cd0c9d83ff08bc78bf3a61 + sha256: 8dc149a6828d19bf104ea96382a9d04dae185d4a03cc6beb1bc7b84c428e3ca2 category: main optional: false - name: aiosignal - version: 1.3.2 + version: 1.4.0 manager: conda platform: osx-64 dependencies: - python: '>=3.9' frozenlist: '>=1.1.0' - url: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.2-pyhd8ed1ab_0.conda + python: '>=3.9' + typing_extensions: '>=4.2' + url: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.4.0-pyhd8ed1ab_0.conda hash: - md5: 1a3981115a398535dbe3f6d5faae3d36 - sha256: 7de8ced1918bbdadecf8e1c1c68237fe5709c097bd9e0d254f4cad118f4345d0 + md5: 421a865222cd0c9d83ff08bc78bf3a61 + sha256: 8dc149a6828d19bf104ea96382a9d04dae185d4a03cc6beb1bc7b84c428e3ca2 category: main optional: false - name: aiosignal - version: 1.3.2 + version: 1.4.0 manager: conda platform: osx-arm64 dependencies: - python: '>=3.9' frozenlist: '>=1.1.0' - url: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.2-pyhd8ed1ab_0.conda + python: '>=3.9' + typing_extensions: '>=4.2' + url: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.4.0-pyhd8ed1ab_0.conda hash: - md5: 1a3981115a398535dbe3f6d5faae3d36 - sha256: 7de8ced1918bbdadecf8e1c1c68237fe5709c097bd9e0d254f4cad118f4345d0 + md5: 421a865222cd0c9d83ff08bc78bf3a61 + sha256: 8dc149a6828d19bf104ea96382a9d04dae185d4a03cc6beb1bc7b84c428e3ca2 category: main optional: false - name: aom @@ -339,6 +309,72 @@ package: sha256: ec238f18ce8140485645252351a0eca9ef4f7a1c568a420f240a585229bc12ef category: main optional: false +- name: arviz + version: 0.22.0 + manager: conda + platform: linux-64 + dependencies: + h5netcdf: '>=1.0.2' + matplotlib-base: '>=3.8' + numpy: '>=1.26.0' + packaging: '' + pandas: '>=2.1.0' + python: '>=3.10' + scipy: '>=1.11.0' + setuptools: '>=60.0.0' + typing_extensions: '>=4.1.0' + xarray: '>=2023.7.0' + xarray-einstats: '>=0.3' + url: https://conda.anaconda.org/conda-forge/noarch/arviz-0.22.0-pyhd8ed1ab_0.conda + hash: + md5: edeb8dea41e8cd6ef8127de4a8dece13 + sha256: 1c85f9c4b21a451f0386e8d4676b08107c804d49b3ad5211448dff4080372e11 + category: main + optional: false +- name: arviz + version: 0.22.0 + manager: conda + platform: osx-64 + dependencies: + h5netcdf: '>=1.0.2' + matplotlib-base: '>=3.8' + numpy: '>=1.26.0' + packaging: '' + pandas: '>=2.1.0' + python: '>=3.10' + scipy: '>=1.11.0' + setuptools: '>=60.0.0' + typing_extensions: '>=4.1.0' + xarray: '>=2023.7.0' + xarray-einstats: '>=0.3' + url: https://conda.anaconda.org/conda-forge/noarch/arviz-0.22.0-pyhd8ed1ab_0.conda + hash: + md5: edeb8dea41e8cd6ef8127de4a8dece13 + sha256: 1c85f9c4b21a451f0386e8d4676b08107c804d49b3ad5211448dff4080372e11 + category: main + optional: false +- name: arviz + version: 0.22.0 + manager: conda + platform: osx-arm64 + dependencies: + h5netcdf: '>=1.0.2' + matplotlib-base: '>=3.8' + numpy: '>=1.26.0' + packaging: '' + pandas: '>=2.1.0' + python: '>=3.10' + scipy: '>=1.11.0' + setuptools: '>=60.0.0' + typing_extensions: '>=4.1.0' + xarray: '>=2023.7.0' + xarray-einstats: '>=0.3' + url: https://conda.anaconda.org/conda-forge/noarch/arviz-0.22.0-pyhd8ed1ab_0.conda + hash: + md5: edeb8dea41e8cd6ef8127de4a8dece13 + sha256: 1c85f9c4b21a451f0386e8d4676b08107c804d49b3ad5211448dff4080372e11 + category: main + optional: false - name: asttokens version: 3.0.0 manager: conda @@ -453,39 +489,39 @@ package: category: main optional: false - name: attrs - version: 25.1.0 + version: 25.3.0 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/attrs-25.1.0-pyh71513ae_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/attrs-25.3.0-pyh71513ae_0.conda hash: - md5: 2cc3f588512f04f3a0c64b4e9bedc02d - sha256: 1f267886522dfb9ae4e5ebbc3135b5eb13cff27bdbfe8d881a4d893459166ab4 + md5: a10d11958cadc13fdb43df75f8b1903f + sha256: 99c53ffbcb5dc58084faf18587b215f9ac8ced36bbfb55fa807c00967e419019 category: main optional: false - name: attrs - version: 25.1.0 + version: 25.3.0 manager: conda platform: osx-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/attrs-25.1.0-pyh71513ae_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/attrs-25.3.0-pyh71513ae_0.conda hash: - md5: 2cc3f588512f04f3a0c64b4e9bedc02d - sha256: 1f267886522dfb9ae4e5ebbc3135b5eb13cff27bdbfe8d881a4d893459166ab4 + md5: a10d11958cadc13fdb43df75f8b1903f + sha256: 99c53ffbcb5dc58084faf18587b215f9ac8ced36bbfb55fa807c00967e419019 category: main optional: false - name: attrs - version: 25.1.0 + version: 25.3.0 manager: conda platform: osx-arm64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/attrs-25.1.0-pyh71513ae_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/attrs-25.3.0-pyh71513ae_0.conda hash: - md5: 2cc3f588512f04f3a0c64b4e9bedc02d - sha256: 1f267886522dfb9ae4e5ebbc3135b5eb13cff27bdbfe8d881a4d893459166ab4 + md5: a10d11958cadc13fdb43df75f8b1903f + sha256: 99c53ffbcb5dc58084faf18587b215f9ac8ced36bbfb55fa807c00967e419019 category: main optional: false - name: aws-c-auth @@ -1259,7 +1295,7 @@ package: azure-core-cpp: '>=1.13.0,<1.13.1.0a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libxml2: '>=2.12.7,<3.0a0' + libxml2: '>=2.12.7,<2.14.0a0' openssl: '>=3.3.1,<4.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-common-cpp-12.7.0-h10ac4d7_1.conda hash: @@ -1275,7 +1311,7 @@ package: __osx: '>=10.13' azure-core-cpp: '>=1.13.0,<1.13.1.0a0' libcxx: '>=16' - libxml2: '>=2.12.7,<3.0a0' + libxml2: '>=2.12.7,<2.14.0a0' openssl: '>=3.3.1,<4.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/azure-storage-common-cpp-12.7.0-hf91904f_1.conda hash: @@ -1291,7 +1327,7 @@ package: __osx: '>=11.0' azure-core-cpp: '>=1.13.0,<1.13.1.0a0' libcxx: '>=16' - libxml2: '>=2.12.7,<3.0a0' + libxml2: '>=2.12.7,<2.14.0a0' openssl: '>=3.3.1,<4.0a0' url: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-common-cpp-12.7.0-hcf3b6fd_1.conda hash: @@ -1400,12 +1436,13 @@ package: category: main optional: false - name: bokeh - version: 3.6.3 + version: 3.8.0 manager: conda platform: linux-64 dependencies: contourpy: '>=1.2' jinja2: '>=2.9' + narwhals: '>=1.13' numpy: '>=1.16' packaging: '>=16.8' pandas: '>=1.2' @@ -1414,52 +1451,54 @@ package: pyyaml: '>=3.10' tornado: '>=6.2' xyzservices: '>=2021.09.1' - url: https://conda.anaconda.org/conda-forge/noarch/bokeh-3.6.3-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/bokeh-3.8.0-pyhd8ed1ab_0.conda hash: - md5: 606498329a91bd9d5c0439fb2815816f - sha256: 6cc6841b1660cd3246890d4f601baf51367526afe6256dfd8a8d9a8f7db651fe + md5: 30698cfea774ec175babb8ff08dbc07a + sha256: 3a0af5b0c30d1e50cda6fea8c7783f3ea925e83f427b059fa81b2f36cde72e28 category: main optional: false - name: bokeh - version: 3.6.3 + version: 3.8.0 manager: conda platform: osx-64 dependencies: - python: '>=3.10' + contourpy: '>=1.2' + jinja2: '>=2.9' + narwhals: '>=1.13' numpy: '>=1.16' - pyyaml: '>=3.10' + packaging: '>=16.8' pandas: '>=1.2' - jinja2: '>=2.9' pillow: '>=7.1.0' - packaging: '>=16.8' + python: '>=3.10' + pyyaml: '>=3.10' tornado: '>=6.2' xyzservices: '>=2021.09.1' - contourpy: '>=1.2' - url: https://conda.anaconda.org/conda-forge/noarch/bokeh-3.6.3-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/bokeh-3.8.0-pyhd8ed1ab_0.conda hash: - md5: 606498329a91bd9d5c0439fb2815816f - sha256: 6cc6841b1660cd3246890d4f601baf51367526afe6256dfd8a8d9a8f7db651fe + md5: 30698cfea774ec175babb8ff08dbc07a + sha256: 3a0af5b0c30d1e50cda6fea8c7783f3ea925e83f427b059fa81b2f36cde72e28 category: main optional: false - name: bokeh - version: 3.6.3 + version: 3.8.0 manager: conda platform: osx-arm64 dependencies: - python: '>=3.10' + contourpy: '>=1.2' + jinja2: '>=2.9' + narwhals: '>=1.13' numpy: '>=1.16' - pyyaml: '>=3.10' + packaging: '>=16.8' pandas: '>=1.2' - jinja2: '>=2.9' pillow: '>=7.1.0' - packaging: '>=16.8' + python: '>=3.10' + pyyaml: '>=3.10' tornado: '>=6.2' xyzservices: '>=2021.09.1' - contourpy: '>=1.2' - url: https://conda.anaconda.org/conda-forge/noarch/bokeh-3.6.3-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/bokeh-3.8.0-pyhd8ed1ab_0.conda hash: - md5: 606498329a91bd9d5c0439fb2815816f - sha256: 6cc6841b1660cd3246890d4f601baf51367526afe6256dfd8a8d9a8f7db651fe + md5: 30698cfea774ec175babb8ff08dbc07a + sha256: 3a0af5b0c30d1e50cda6fea8c7783f3ea925e83f427b059fa81b2f36cde72e28 category: main optional: false - name: brotli @@ -1471,11 +1510,11 @@ package: brotli-bin: 1.1.0 libbrotlidec: 1.1.0 libbrotlienc: 1.1.0 - libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/brotli-1.1.0-hb9d3cd8_2.conda + libgcc: '>=14' + url: https://conda.anaconda.org/conda-forge/linux-64/brotli-1.1.0-hb03c661_4.conda hash: - md5: 98514fe74548d768907ce7a13f680e8f - sha256: fcb0b5b28ba7492093e54f3184435144e074dfceab27ac8e6a9457e736565b0b + md5: eaf3fbd2aa97c212336de38a51fe404e + sha256: 294526a54fa13635341729f250d0b1cf8f82cad1e6b83130304cbf3b6d8b74cc category: main optional: false - name: brotli @@ -1487,10 +1526,10 @@ package: brotli-bin: 1.1.0 libbrotlidec: 1.1.0 libbrotlienc: 1.1.0 - url: https://conda.anaconda.org/conda-forge/osx-64/brotli-1.1.0-h00291cd_2.conda + url: https://conda.anaconda.org/conda-forge/osx-64/brotli-1.1.0-h1c43f85_4.conda hash: - md5: 2db0c38a7f2321c5bdaf32b181e832c7 - sha256: 624954bc08b3d7885a58c7d547282cfb9a201ce79b748b358f801de53e20f523 + md5: 1a0a37da4466d45c00fc818bb6b446b3 + sha256: 13847b7477bd66d0f718f337e7980c9a32f82ec4e4527c7e0a0983db2d798b8e category: main optional: false - name: brotli @@ -1502,10 +1541,10 @@ package: brotli-bin: 1.1.0 libbrotlidec: 1.1.0 libbrotlienc: 1.1.0 - url: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-1.1.0-hd74edd7_2.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-1.1.0-h6caf38d_4.conda hash: - md5: 215e3dc8f2f837906d066e7f01aa77c0 - sha256: a086f36ff68d6e30da625e910547f6211385246fb2474b144ac8c47c32254576 + md5: ce8659623cea44cc812bc0bfae4041c5 + sha256: 8aa8ee52b95fdc3ef09d476cbfa30df722809b16e6dca4a4f80e581012035b7b category: main optional: false - name: brotli-bin @@ -1516,11 +1555,11 @@ package: __glibc: '>=2.17,<3.0.a0' libbrotlidec: 1.1.0 libbrotlienc: 1.1.0 - libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/brotli-bin-1.1.0-hb9d3cd8_2.conda + libgcc: '>=14' + url: https://conda.anaconda.org/conda-forge/linux-64/brotli-bin-1.1.0-hb03c661_4.conda hash: - md5: c63b5e52939e795ba8d26e35d767a843 - sha256: 261364d7445513b9a4debc345650fad13c627029bfc800655a266bf1e375bc65 + md5: ca4ed8015764937c81b830f7f5b68543 + sha256: 444903c6e5c553175721a16b7c7de590ef754a15c28c99afbc8a963b35269517 category: main optional: false - name: brotli-bin @@ -1531,10 +1570,10 @@ package: __osx: '>=10.13' libbrotlidec: 1.1.0 libbrotlienc: 1.1.0 - url: https://conda.anaconda.org/conda-forge/osx-64/brotli-bin-1.1.0-h00291cd_2.conda + url: https://conda.anaconda.org/conda-forge/osx-64/brotli-bin-1.1.0-h1c43f85_4.conda hash: - md5: 049933ecbf552479a12c7917f0a4ce59 - sha256: 642a8492491109fd8270c1e2c33b18126712df0cedb94aaa2b1c6b02505a4bfa + md5: 718fb8aa4c8cb953982416db9a82b349 + sha256: 549ea0221019cfb4b370354f2c3ffbd4be1492740e1c73b2cdf9687ed6ad7364 category: main optional: false - name: brotli-bin @@ -1545,10 +1584,10 @@ package: __osx: '>=11.0' libbrotlidec: 1.1.0 libbrotlienc: 1.1.0 - url: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-bin-1.1.0-hd74edd7_2.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-bin-1.1.0-h6caf38d_4.conda hash: - md5: b8512db2145dc3ae8d86cdc21a8d421e - sha256: 28f1af63b49fddf58084fb94e5512ad46e9c453eb4be1d97449c67059e5b0680 + md5: ab57f389f304c4d2eb86d8ae46d219c3 + sha256: e57d402b02c9287b7c02d9947d7b7b55a4f7d73341c210c233f6b388d4641e08 category: main optional: false - name: brotli-python @@ -1557,14 +1596,14 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - libstdcxx: '>=13' + libgcc: '>=14' + libstdcxx: '>=14' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.1.0-py312h2ec8cdc_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.1.0-py312h1289d80_4.conda hash: - md5: b0b867af6fc74b2a0aa206da29c0f3cf - sha256: f2a59ccd20b4816dea9a2a5cb917eb69728271dbf1aeab4e1b7e609330a50b6f + md5: fd0e7746ed0676f008daacb706ce69e4 + sha256: 52a9ac412512b418ecdb364ba21c0f3dc96f0abbdb356b3cfbb980020b663d9b category: main optional: false - name: brotli-python @@ -1573,13 +1612,13 @@ package: platform: osx-64 dependencies: __osx: '>=10.13' - libcxx: '>=17' + libcxx: '>=19' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-64/brotli-python-1.1.0-py312h5861a67_2.conda + url: https://conda.anaconda.org/conda-forge/osx-64/brotli-python-1.1.0-py312h462f358_4.conda hash: - md5: b95025822e43128835826ec0cc45a551 - sha256: 265764ff4ad9e5cfefe7ea85c53d95157bf16ac2c0e5f190c528e4c9c0c1e2d0 + md5: 6ed15514446509f33df546dcc1752eb1 + sha256: f5b7f28d19f21c2f5bd4608b2a075e872727dae8409303f53c756f44044a3a7f category: main optional: false - name: brotli-python @@ -1588,13 +1627,13 @@ package: platform: osx-arm64 dependencies: __osx: '>=11.0' - libcxx: '>=17' + libcxx: '>=19' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-python-1.1.0-py312hde4cb15_2.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-python-1.1.0-py312h6b01ec3_4.conda hash: - md5: a83c2ef76ccb11bc2349f4f17696b15d - sha256: 254b411fa78ccc226f42daf606772972466f93e9bc6895eabb4cfda22f5178af + md5: 0d50ab05d6d8fa7a38213c809637ba6d + sha256: e45f24660a89c734c3d54f185ecdc359e52a5604d7e0b371e35dce042fa3cf3a category: main optional: false - name: brunsli @@ -1675,40 +1714,40 @@ package: category: main optional: false - name: c-ares - version: 1.34.4 + version: 1.34.5 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.34.4-hb9d3cd8_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.34.5-hb9d3cd8_0.conda hash: - md5: e2775acf57efd5af15b8e3d1d74d72d3 - sha256: d4f28d87b6339b94f74762c0076e29c8ef8ddfff51a564a92da2843573c18320 + md5: f7f0d6cc2dc986d42ac2689ec88192be + sha256: f8003bef369f57396593ccd03d08a8e21966157269426f71e943f96e4b579aeb category: main optional: false - name: c-ares - version: 1.34.4 + version: 1.34.5 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' - url: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.34.4-hf13058a_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.34.5-hf13058a_0.conda hash: - md5: 133255af67aaf1e0c0468cc753fd800b - sha256: 8dcc1628d34fe7d759f3a7dee52e09c5162a3f9669dddd6100bff965450f4a0a + md5: eafe5d9f1a8c514afe41e6e833f66dfd + sha256: b37f5dacfe1c59e0a207c1d65489b760dff9ddb97b8df7126ceda01692ba6e97 category: main optional: false - name: c-ares - version: 1.34.4 + version: 1.34.5 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.34.4-h5505292_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.34.5-h5505292_0.conda hash: - md5: c1c999a38a4303b29d75c636eaa13cf9 - sha256: 09c0c8476e50b2955f474a4a1c17c4c047dd52993b5366b6ea8e968e583b921f + md5: f8cd1beb98240c7edb1a95883360ccfa + sha256: b4bb55d0806e41ffef94d0e3f3c97531f322b3cb0ca1f7cdf8e47f62538b7a2b category: main optional: false - name: c-blosc2 @@ -1761,40 +1800,115 @@ package: category: main optional: false - name: ca-certificates - version: 2025.1.31 + version: 2025.8.3 manager: conda platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2025.1.31-hbcca054_0.conda + dependencies: + __unix: '' + url: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.8.3-hbd8a1cb_0.conda hash: - md5: 19f3a56f68d2fd06c516076bff482c52 - sha256: bf832198976d559ab44d6cdb315642655547e26d826e34da67cbee6624cda189 + md5: 74784ee3d225fc3dca89edb635b4e5cc + sha256: 837b795a2bb39b75694ba910c13c15fa4998d4bb2a622c214a6a5174b2ae53d1 category: main optional: false - name: ca-certificates - version: 2025.1.31 + version: 2025.8.3 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2025.1.31-h8857fd0_0.conda + dependencies: + __unix: '' + url: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.8.3-hbd8a1cb_0.conda hash: - md5: 3418b6c8cac3e71c0bc089fc5ea53042 - sha256: 42e911ee2d8808eacedbec46d99b03200a6138b8e8a120bd8acabe1cac41c63b + md5: 74784ee3d225fc3dca89edb635b4e5cc + sha256: 837b795a2bb39b75694ba910c13c15fa4998d4bb2a622c214a6a5174b2ae53d1 category: main optional: false - name: ca-certificates - version: 2025.1.31 + version: 2025.8.3 manager: conda platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2025.1.31-hf0a4a13_0.conda + dependencies: + __unix: '' + url: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.8.3-hbd8a1cb_0.conda + hash: + md5: 74784ee3d225fc3dca89edb635b4e5cc + sha256: 837b795a2bb39b75694ba910c13c15fa4998d4bb2a622c214a6a5174b2ae53d1 + category: main + optional: false +- name: cached-property + version: 1.5.2 + manager: conda + platform: linux-64 + dependencies: + cached_property: '>=1.5.2,<1.5.3.0a0' + url: https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 + hash: + md5: 9b347a7ec10940d3f7941ff6c460b551 + sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17 + category: main + optional: false +- name: cached-property + version: 1.5.2 + manager: conda + platform: osx-64 + dependencies: + cached_property: '>=1.5.2,<1.5.3.0a0' + url: https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 + hash: + md5: 9b347a7ec10940d3f7941ff6c460b551 + sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17 + category: main + optional: false +- name: cached-property + version: 1.5.2 + manager: conda + platform: osx-arm64 + dependencies: + cached_property: '>=1.5.2,<1.5.3.0a0' + url: https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 + hash: + md5: 9b347a7ec10940d3f7941ff6c460b551 + sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17 + category: main + optional: false +- name: cached_property + version: 1.5.2 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 + hash: + md5: 576d629e47797577ab0f1b351297ef4a + sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7 + category: main + optional: false +- name: cached_property + version: 1.5.2 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 hash: - md5: 3569d6a9141adc64d2fe4797f3289e06 - sha256: 7e12816618173fe70f5c638b72adf4bfd4ddabf27794369bb17871c5bb75b9f9 + md5: 576d629e47797577ab0f1b351297ef4a + sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7 + category: main + optional: false +- name: cached_property + version: 1.5.2 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 + hash: + md5: 576d629e47797577ab0f1b351297ef4a + sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7 category: main optional: false - name: cairo - version: 1.18.2 + version: 1.18.4 manager: conda platform: linux-64 dependencies: @@ -1806,24 +1920,24 @@ package: libexpat: '>=2.6.4,<3.0a0' libgcc: '>=13' libglib: '>=2.82.2,<3.0a0' - libpng: '>=1.6.44,<1.7.0a0' + libpng: '>=1.6.47,<1.7.0a0' libstdcxx: '>=13' libxcb: '>=1.17.0,<2.0a0' libzlib: '>=1.3.1,<2.0a0' pixman: '>=0.44.2,<1.0a0' - xorg-libice: '>=1.1.1,<2.0a0' - xorg-libsm: '>=1.2.4,<2.0a0' - xorg-libx11: '>=1.8.10,<2.0a0' + xorg-libice: '>=1.1.2,<2.0a0' + xorg-libsm: '>=1.2.5,<2.0a0' + xorg-libx11: '>=1.8.11,<2.0a0' xorg-libxext: '>=1.3.6,<2.0a0' - xorg-libxrender: '>=0.9.11,<0.10.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/cairo-1.18.2-h3394656_1.conda + xorg-libxrender: '>=0.9.12,<0.10.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/cairo-1.18.4-h3394656_0.conda hash: - md5: b34c2833a1f56db610aeb27f206d800d - sha256: de7d0d094e53decc005cb13e527be2635b8f604978da497d4c0d282c7dc08385 + md5: 09262e66b19567aff4f592fb53b28760 + sha256: 3bd6a391ad60e471de76c0e9db34986c4b5058587fbf2efa5a7f54645e28c2c7 category: main optional: false - name: cairo - version: 1.18.2 + version: 1.18.4 manager: conda platform: osx-64 dependencies: @@ -1835,17 +1949,17 @@ package: libcxx: '>=18' libexpat: '>=2.6.4,<3.0a0' libglib: '>=2.82.2,<3.0a0' - libpng: '>=1.6.44,<1.7.0a0' + libpng: '>=1.6.47,<1.7.0a0' libzlib: '>=1.3.1,<2.0a0' pixman: '>=0.44.2,<1.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/cairo-1.18.2-h950ec3b_1.conda + url: https://conda.anaconda.org/conda-forge/osx-64/cairo-1.18.4-h950ec3b_0.conda hash: - md5: ae293443dff77ba14eab9e9ee68ec833 - sha256: ad8c41650e5a10d9177e9d92652d2bd5fe9eefa095ebd4805835c3f067c0202b + md5: 32403b4ef529a2018e4d8c4f2a719f16 + sha256: d4297c3a9bcff9add3c5a46c6e793b88567354828bcfdb6fc9f6b1ab34aa4913 category: main optional: false - name: cairo - version: 1.18.2 + version: 1.18.4 manager: conda platform: osx-arm64 dependencies: @@ -1857,122 +1971,122 @@ package: libcxx: '>=18' libexpat: '>=2.6.4,<3.0a0' libglib: '>=2.82.2,<3.0a0' - libpng: '>=1.6.44,<1.7.0a0' + libpng: '>=1.6.47,<1.7.0a0' libzlib: '>=1.3.1,<2.0a0' pixman: '>=0.44.2,<1.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/cairo-1.18.2-h6a3b0d2_1.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/cairo-1.18.4-h6a3b0d2_0.conda hash: - md5: 8e3666c3f6e2c3e57aa261ab103a3600 - sha256: 9a28344e806b89c87fda0cdabd2fb961e5d2ff97107dba25bac9f5dc57220cc3 + md5: 38f6df8bc8c668417b904369a01ba2e2 + sha256: 00439d69bdd94eaf51656fdf479e0c853278439d22ae151cabf40eb17399d95f category: main optional: false - name: cartopy - version: 0.24.0 + version: 0.25.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - libstdcxx: '>=13' + libgcc: '>=14' + libstdcxx: '>=14' matplotlib-base: '>=3.6' - numpy: '>=1.19,<3' + numpy: '>=1.23,<3' packaging: '>=21' pyproj: '>=3.3.1' pyshp: '>=2.3' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - shapely: '>=1.8' - url: https://conda.anaconda.org/conda-forge/linux-64/cartopy-0.24.0-py312hf9745cd_0.conda + shapely: '>=2.0' + url: https://conda.anaconda.org/conda-forge/linux-64/cartopy-0.25.0-py312hf79963d_1.conda hash: - md5: ea213e31805199cb7d0da457b879ceed - sha256: 3e85b3aa555b7ea989dc80c47d714d89086d388359855ee7e19da988f797698b + md5: 6c913a686cb4060cbd7639a36fa144f0 + sha256: de9bb34948b0ac7025707fe0bdaa26a6f253374ddf9da8f74b2ed14943c14211 category: main optional: false - name: cartopy - version: 0.24.0 + version: 0.25.0 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' - libcxx: '>=17' + libcxx: '>=19' matplotlib-base: '>=3.6' - numpy: '>=1.19,<3' + numpy: '>=1.23,<3' packaging: '>=21' pyproj: '>=3.3.1' pyshp: '>=2.3' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - shapely: '>=1.8' - url: https://conda.anaconda.org/conda-forge/osx-64/cartopy-0.24.0-py312h98e817e_0.conda + shapely: '>=2.0' + url: https://conda.anaconda.org/conda-forge/osx-64/cartopy-0.25.0-py312h86abcb1_1.conda hash: - md5: 75179ab8de580fb4f0eed661119c4680 - sha256: 00b8a7bed8b5ff81532482842634fa63f9378163484872947724b1652d7f7683 + md5: 63eee5b20461ca89c738160bd502363e + sha256: d30f10fe1c1497406cbbf2eaeb1be71479cfc76967125cf3994b0a85ebfc3259 category: main optional: false - name: cartopy - version: 0.24.0 + version: 0.25.0 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' - libcxx: '>=17' + libcxx: '>=19' matplotlib-base: '>=3.6' - numpy: '>=1.19,<3' + numpy: '>=1.23,<3' packaging: '>=21' pyproj: '>=3.3.1' pyshp: '>=2.3' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - shapely: '>=1.8' - url: https://conda.anaconda.org/conda-forge/osx-arm64/cartopy-0.24.0-py312hcd31e36_0.conda + shapely: '>=2.0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/cartopy-0.25.0-py312h5978115_1.conda hash: - md5: 07dc477c85e1b5b4dac919b9f53d22e6 - sha256: 0edb3f7385ae58280dfbb09c11bbb7e7d41e2e4a19657ee8b9ab84e939906e6f + md5: cd69cf54cee41b81bbed095a5e2a61d7 + sha256: b4e4c3c765da889c4de984f0e3d290ed546efd78b81b3494bd34e7f87f95cbc5 category: main optional: false - name: cattrs - version: 24.1.2 + version: 25.2.0 manager: conda platform: linux-64 dependencies: - attrs: '>=23.1.0' + attrs: '>=24.3.0' exceptiongroup: '>=1.1.1' - python: '>=3.9' - typing-extensions: '>=4.1.0,!=4.6.3' - url: https://conda.anaconda.org/conda-forge/noarch/cattrs-24.1.2-pyhd8ed1ab_1.conda + python: '>=3.10' + typing_extensions: '>=4.12.2' + url: https://conda.anaconda.org/conda-forge/noarch/cattrs-25.2.0-pyhd8ed1ab_0.conda hash: - md5: 53eca64665361194ca4bbaf87c0ded99 - sha256: 6561a73cb712d8972d64968d6de709fcb2c85cf77d06f996537e4f1768535d76 + md5: 51c25626ee83dd48d1bf2f27669e1249 + sha256: bdf4ada7c7d2b2e9e1113bbc80224443924d3ab4955cbc6f4433ad803611a94d category: main optional: false - name: cattrs - version: 24.1.2 + version: 25.2.0 manager: conda platform: osx-64 dependencies: - python: '>=3.9' - attrs: '>=23.1.0' + attrs: '>=24.3.0' exceptiongroup: '>=1.1.1' - typing-extensions: '>=4.1.0,!=4.6.3' - url: https://conda.anaconda.org/conda-forge/noarch/cattrs-24.1.2-pyhd8ed1ab_1.conda + python: '>=3.10' + typing_extensions: '>=4.12.2' + url: https://conda.anaconda.org/conda-forge/noarch/cattrs-25.2.0-pyhd8ed1ab_0.conda hash: - md5: 53eca64665361194ca4bbaf87c0ded99 - sha256: 6561a73cb712d8972d64968d6de709fcb2c85cf77d06f996537e4f1768535d76 + md5: 51c25626ee83dd48d1bf2f27669e1249 + sha256: bdf4ada7c7d2b2e9e1113bbc80224443924d3ab4955cbc6f4433ad803611a94d category: main optional: false - name: cattrs - version: 24.1.2 + version: 25.2.0 manager: conda platform: osx-arm64 dependencies: - python: '>=3.9' - attrs: '>=23.1.0' + attrs: '>=24.3.0' exceptiongroup: '>=1.1.1' - typing-extensions: '>=4.1.0,!=4.6.3' - url: https://conda.anaconda.org/conda-forge/noarch/cattrs-24.1.2-pyhd8ed1ab_1.conda + python: '>=3.10' + typing_extensions: '>=4.12.2' + url: https://conda.anaconda.org/conda-forge/noarch/cattrs-25.2.0-pyhd8ed1ab_0.conda hash: - md5: 53eca64665361194ca4bbaf87c0ded99 - sha256: 6561a73cb712d8972d64968d6de709fcb2c85cf77d06f996537e4f1768535d76 + md5: 51c25626ee83dd48d1bf2f27669e1249 + sha256: bdf4ada7c7d2b2e9e1113bbc80224443924d3ab4955cbc6f4433ad803611a94d category: main optional: false - name: cdo @@ -1992,7 +2106,7 @@ package: libstdcxx-ng: '>=12' libudunits2: '>=2.2.28,<3.0a0' libuuid: '>=2.38.1,<3.0a0' - libxml2: '>=2.12.7,<3.0a0' + libxml2: '>=2.12.7,<2.14.0a0' magics: '' proj: '>=9.4.1,<9.5.0a0' udunits2: '' @@ -2014,12 +2128,12 @@ package: jasper: '>=4.2.4,<5.0a0' libcurl: '>=8.8.0,<9.0a0' libcxx: '>=16' - libgfortran: 5.* + libgfortran: '>=5' libgfortran5: '>=13.2.0' libnetcdf: '>=4.9.2,<4.9.3.0a0' libudunits2: '>=2.2.28,<3.0a0' libuuid: '>=2.38.1,<3.0a0' - libxml2: '>=2.12.7,<3.0a0' + libxml2: '>=2.12.7,<2.14.0a0' llvm-openmp: '>=16.0.6' magics: '' proj: '>=9.4.1,<9.5.0a0' @@ -2042,12 +2156,12 @@ package: jasper: '>=4.2.4,<5.0a0' libcurl: '>=8.8.0,<9.0a0' libcxx: '>=16' - libgfortran: 5.* + libgfortran: '>=5' libgfortran5: '>=13.2.0' libnetcdf: '>=4.9.2,<4.9.3.0a0' libudunits2: '>=2.2.28,<3.0a0' libuuid: '>=2.38.1,<3.0a0' - libxml2: '>=2.12.7,<3.0a0' + libxml2: '>=2.12.7,<2.14.0a0' llvm-openmp: '>=16.0.6' magics: '' proj: '>=9.4.1,<9.5.0a0' @@ -2059,84 +2173,84 @@ package: category: main optional: false - name: cdsapi - version: 0.7.5 + version: 0.7.6 manager: conda platform: linux-64 dependencies: - datapi: '' + ecmwf-datastores-client: '' python: '>=3.9' requests: '>=2.5.0' tqdm: '' - url: https://conda.anaconda.org/conda-forge/noarch/cdsapi-0.7.5-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/cdsapi-0.7.6-pyhd8ed1ab_0.conda hash: - md5: b53d59d2abbc0b383d8a1bc0f06ed2d6 - sha256: dda2d11f594573efdbe76177bce685b5f1c9b11363d4d7071900cd92700b9d42 + md5: 94d7cbb0faa99b76e755696642353b18 + sha256: e7ef58400de3264ed8ca2c5b3d1d39592a82833828a2b02f59ffed06978a60c7 category: main optional: false - name: cdsapi - version: 0.7.5 + version: 0.7.6 manager: conda platform: osx-64 dependencies: - tqdm: '' - datapi: '' + ecmwf-datastores-client: '' python: '>=3.9' requests: '>=2.5.0' - url: https://conda.anaconda.org/conda-forge/noarch/cdsapi-0.7.5-pyhd8ed1ab_1.conda + tqdm: '' + url: https://conda.anaconda.org/conda-forge/noarch/cdsapi-0.7.6-pyhd8ed1ab_0.conda hash: - md5: b53d59d2abbc0b383d8a1bc0f06ed2d6 - sha256: dda2d11f594573efdbe76177bce685b5f1c9b11363d4d7071900cd92700b9d42 + md5: 94d7cbb0faa99b76e755696642353b18 + sha256: e7ef58400de3264ed8ca2c5b3d1d39592a82833828a2b02f59ffed06978a60c7 category: main optional: false - name: cdsapi - version: 0.7.5 + version: 0.7.6 manager: conda platform: osx-arm64 dependencies: - tqdm: '' - datapi: '' + ecmwf-datastores-client: '' python: '>=3.9' requests: '>=2.5.0' - url: https://conda.anaconda.org/conda-forge/noarch/cdsapi-0.7.5-pyhd8ed1ab_1.conda + tqdm: '' + url: https://conda.anaconda.org/conda-forge/noarch/cdsapi-0.7.6-pyhd8ed1ab_0.conda hash: - md5: b53d59d2abbc0b383d8a1bc0f06ed2d6 - sha256: dda2d11f594573efdbe76177bce685b5f1c9b11363d4d7071900cd92700b9d42 + md5: 94d7cbb0faa99b76e755696642353b18 + sha256: e7ef58400de3264ed8ca2c5b3d1d39592a82833828a2b02f59ffed06978a60c7 category: main optional: false - name: certifi - version: 2025.1.31 + version: 2025.8.3 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/certifi-2025.8.3-pyhd8ed1ab_0.conda hash: - md5: c207fa5ac7ea99b149344385a9c0880d - sha256: 42a78446da06a2568cb13e69be3355169fbd0ea424b00fc80b7d840f5baaacf3 + md5: 11f59985f49df4620890f3e746ed7102 + sha256: a1ad5b0a2a242f439608f22a538d2175cac4444b7b3f4e2b8c090ac337aaea40 category: main optional: false - name: certifi - version: 2025.1.31 + version: 2025.8.3 manager: conda platform: osx-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/certifi-2025.8.3-pyhd8ed1ab_0.conda hash: - md5: c207fa5ac7ea99b149344385a9c0880d - sha256: 42a78446da06a2568cb13e69be3355169fbd0ea424b00fc80b7d840f5baaacf3 + md5: 11f59985f49df4620890f3e746ed7102 + sha256: a1ad5b0a2a242f439608f22a538d2175cac4444b7b3f4e2b8c090ac337aaea40 category: main optional: false - name: certifi - version: 2025.1.31 + version: 2025.8.3 manager: conda platform: osx-arm64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/certifi-2025.8.3-pyhd8ed1ab_0.conda hash: - md5: c207fa5ac7ea99b149344385a9c0880d - sha256: 42a78446da06a2568cb13e69be3355169fbd0ea424b00fc80b7d840f5baaacf3 + md5: 11f59985f49df4620890f3e746ed7102 + sha256: a1ad5b0a2a242f439608f22a538d2175cac4444b7b3f4e2b8c090ac337aaea40 category: main optional: false - name: cf-units @@ -2147,16 +2261,16 @@ package: __glibc: '>=2.17,<3.0.a0' cftime: '>=1.5.2' jinja2: '' - libgcc: '>=13' + libgcc: '>=14' libudunits2: '>=2.2.28,<3.0a0' - numpy: '>=1.19,<3' + numpy: '>=1.23,<3' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* udunits2: '>=2.2.28,<2.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/cf-units-3.3.0-py312hc0a28a1_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/cf-units-3.3.0-py312h4f23490_1.conda hash: - md5: 8b5b812d4c18cb37bda7a7c8d3a6acb3 - sha256: 62623549ba55de399909a90ec8d25633d0d2715d4fc3e22cc7f5f4c50019d22a + md5: ac0a1a874ce9e3f8940a3a908ff74da9 + sha256: 5fa3cf1369d173e932d29da8ea21cf2f1476b52297079f5d6b54b54b6d207d84 category: main optional: false - name: cf-units @@ -2168,14 +2282,14 @@ package: cftime: '>=1.5.2' jinja2: '' libudunits2: '>=2.2.28,<3.0a0' - numpy: '>=1.19,<3' + numpy: '>=1.23,<3' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* udunits2: '>=2.2.28,<2.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/cf-units-3.3.0-py312h025c719_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/cf-units-3.3.0-py312h587b97d_1.conda hash: - md5: f8dbb5e0f12f6381f2c95a54ce9a6842 - sha256: 4bf261ab36fb8b6bd281a61fb279ee64f28bb34c254c7341121a4a836101ceb5 + md5: 6662728235ce89e442f8feefa0c94b61 + sha256: 0ee76af5758bd0f31e2a424259381ba780235f8add5f8da8268bdedafb49f37c category: main optional: false - name: cf-units @@ -2187,53 +2301,53 @@ package: cftime: '>=1.5.2' jinja2: '' libudunits2: '>=2.2.28,<3.0a0' - numpy: '>=1.19,<3' + numpy: '>=1.23,<3' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* udunits2: '>=2.2.28,<2.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/cf-units-3.3.0-py312he0011b7_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/cf-units-3.3.0-py312hc7121bb_1.conda hash: - md5: f8b7dca23c6e835068b4159722bc0193 - sha256: 47f94f424b1b43818f8080aae49a1c1a7d8d1a704b24d3e99ed6d92f145c8770 + md5: c76f928dde55c5c2e52ea83652391494 + sha256: e427d8b1a8b405f5036cbdaab6383b024e00c4b2cc0de4c891ff805e71d68c96 category: main optional: false - name: cf_xarray - version: 0.10.0 + version: 0.10.7 manager: conda platform: linux-64 dependencies: - python: '>=3.10' - xarray: '>=2022.03.0' - url: https://conda.anaconda.org/conda-forge/noarch/cf_xarray-0.10.0-pyhd8ed1ab_2.conda + python: '>=3.11' + xarray: '>=2023.09.0' + url: https://conda.anaconda.org/conda-forge/noarch/cf_xarray-0.10.7-pyhd8ed1ab_0.conda hash: - md5: ed15dcf944706ae6ea54968dfa4a06a5 - sha256: 4672b9d13d3ac4578a389a38a07c0a94e424f5e554d4ad48c0b7b55cd6a15305 + md5: 8b42d5d0805c11575d78a6543863f869 + sha256: 263369102f08fe83c443db7a6650b47a14b928b9703f4aff79b069ada9fff645 category: main optional: false - name: cf_xarray - version: 0.10.0 + version: 0.10.7 manager: conda platform: osx-64 dependencies: - python: '>=3.10' - xarray: '>=2022.03.0' - url: https://conda.anaconda.org/conda-forge/noarch/cf_xarray-0.10.0-pyhd8ed1ab_2.conda + python: '>=3.11' + xarray: '>=2023.09.0' + url: https://conda.anaconda.org/conda-forge/noarch/cf_xarray-0.10.7-pyhd8ed1ab_0.conda hash: - md5: ed15dcf944706ae6ea54968dfa4a06a5 - sha256: 4672b9d13d3ac4578a389a38a07c0a94e424f5e554d4ad48c0b7b55cd6a15305 + md5: 8b42d5d0805c11575d78a6543863f869 + sha256: 263369102f08fe83c443db7a6650b47a14b928b9703f4aff79b069ada9fff645 category: main optional: false - name: cf_xarray - version: 0.10.0 + version: 0.10.7 manager: conda platform: osx-arm64 dependencies: - python: '>=3.10' - xarray: '>=2022.03.0' - url: https://conda.anaconda.org/conda-forge/noarch/cf_xarray-0.10.0-pyhd8ed1ab_2.conda + python: '>=3.11' + xarray: '>=2023.09.0' + url: https://conda.anaconda.org/conda-forge/noarch/cf_xarray-0.10.7-pyhd8ed1ab_0.conda hash: - md5: ed15dcf944706ae6ea54968dfa4a06a5 - sha256: 4672b9d13d3ac4578a389a38a07c0a94e424f5e554d4ad48c0b7b55cd6a15305 + md5: 8b42d5d0805c11575d78a6543863f869 + sha256: 263369102f08fe83c443db7a6650b47a14b928b9703f4aff79b069ada9fff645 category: main optional: false - name: cffi @@ -2242,15 +2356,15 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libffi: '>=3.4,<4.0a0' - libgcc: '>=13' + libffi: '>=3.4.6,<3.5.0a0' + libgcc: '>=14' pycparser: '' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.17.1-py312h06ac9bb_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.17.1-py312h35888ee_1.conda hash: - md5: a861504bbea4161a9170b85d4d2be840 - sha256: cba6ea83c4b0b4f5b5dc59cb19830519b28f95d7ebef7c9c5cf1c14843621457 + md5: 918e2510c64000a916355dcf09d26da2 + sha256: 13bf94678e7a853a39a2c6dc2674b096cfe80f43ad03d7fff4bcde05edf9fda4 category: main optional: false - name: cffi @@ -2259,14 +2373,14 @@ package: platform: osx-64 dependencies: __osx: '>=10.13' - libffi: '>=3.4,<4.0a0' + libffi: '>=3.4.6,<3.5.0a0' pycparser: '' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-64/cffi-1.17.1-py312hf857d28_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/cffi-1.17.1-py312hc05cdf7_1.conda hash: - md5: 5bbc69b8194fedc2792e451026cac34f - sha256: 94fe49aed25d84997e2630d6e776a75ee2a85bd64f258702c57faa4fe2986902 + md5: c02ef6c340f9045e651a4e1bf6e99015 + sha256: b15b6214b6caad516e508878dccde3959b4c0226bc0c570501894d870ae54d0a category: main optional: false - name: cffi @@ -2275,14 +2389,14 @@ package: platform: osx-arm64 dependencies: __osx: '>=11.0' - libffi: '>=3.4,<4.0a0' + libffi: '>=3.4.6,<3.5.0a0' pycparser: '' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-arm64/cffi-1.17.1-py312h0fad829_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/cffi-1.17.1-py312h429097b_1.conda hash: - md5: 19a5456f72f505881ba493979777b24e - sha256: 8d91a0d01358b5c3f20297c6c536c5d24ccd3e0c2ddd37f9d0593d0f0070226f + md5: 9641dfbf70709463180c574a3a7a0b13 + sha256: d6f96b95916d994166d2649374420b11132b33043c68d8681ab9afe29df3fbc3 category: main optional: false - name: cfgrib @@ -2309,14 +2423,14 @@ package: manager: conda platform: osx-64 dependencies: + attrs: '>=19.2' + click: '' numpy: '' - setuptools: '' packaging: '' - click: '' python: '>=3.9' - xarray: '>=0.15' - attrs: '>=19.2' python-eccodes: '>=0.9.8' + setuptools: '' + xarray: '>=0.15' url: https://conda.anaconda.org/conda-forge/noarch/cfgrib-0.9.15.0-pyhd8ed1ab_0.conda hash: md5: 211303621409d703235598be8c378b3c @@ -2328,14 +2442,14 @@ package: manager: conda platform: osx-arm64 dependencies: + attrs: '>=19.2' + click: '' numpy: '' - setuptools: '' packaging: '' - click: '' python: '>=3.9' - xarray: '>=0.15' - attrs: '>=19.2' python-eccodes: '>=0.9.8' + setuptools: '' + xarray: '>=0.15' url: https://conda.anaconda.org/conda-forge/noarch/cfgrib-0.9.15.0-pyhd8ed1ab_0.conda hash: md5: 211303621409d703235598be8c378b3c @@ -2367,7 +2481,7 @@ package: __osx: '>=10.13' bzip2: '>=1.0.8,<2.0a0' libcurl: '>=8.8.0,<9.0a0' - libgfortran: 5.* + libgfortran: '>=5' libgfortran5: '>=13.2.0' libzlib: '>=1.3.1,<2.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/cfitsio-4.4.1-ha105788_0.conda @@ -2384,7 +2498,7 @@ package: __osx: '>=11.0' bzip2: '>=1.0.8,<2.0a0' libcurl: '>=8.8.0,<9.0a0' - libgfortran: 5.* + libgfortran: '>=5' libgfortran5: '>=13.2.0' libzlib: '>=1.3.1,<2.0a0' url: https://conda.anaconda.org/conda-forge/osx-arm64/cfitsio-4.4.1-h793ed5c_0.conda @@ -2399,14 +2513,14 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - numpy: '>=1.19,<3' + libgcc: '>=14' + numpy: '>=1.23,<3' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/linux-64/cftime-1.6.4-py312hc0a28a1_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/cftime-1.6.4-py312h4f23490_2.conda hash: - md5: 990033147b0a998e756eaaed6b28f48d - sha256: f881ead7671e89367003eaedcba8108828661d01d6fb1e160a6ad93145301328 + md5: ff4b5976814bc00861f962276c8fb87f + sha256: ec8ec46cc9d9d17d904aa82a297708effcafb299fd22b07ca59cc278ec122b17 category: main optional: false - name: cftime @@ -2415,13 +2529,13 @@ package: platform: osx-64 dependencies: __osx: '>=10.13' - numpy: '>=1.19,<3' + numpy: '>=1.23,<3' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-64/cftime-1.6.4-py312h3a11e2b_1.conda + url: https://conda.anaconda.org/conda-forge/osx-64/cftime-1.6.4-py312h587b97d_2.conda hash: - md5: d54b6e889b9b750c364a0c09f79ff622 - sha256: 3961ea0f0b6e9708ff9bfefdf28755f7d782e2291cf5d2a4371ad93ec5ac70b7 + md5: 4da3d493adb979c3339c1fb76f2ad8b2 + sha256: 678252eace709be2cb37e3c8ed87ca4bb474d3b227ee13c68fcf78a12d157cca category: main optional: false - name: cftime @@ -2430,13 +2544,13 @@ package: platform: osx-arm64 dependencies: __osx: '>=11.0' - numpy: '>=1.19,<3' + numpy: '>=1.23,<3' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-arm64/cftime-1.6.4-py312h755e627_1.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/cftime-1.6.4-py312hc7121bb_2.conda hash: - md5: 4bc8fd608d8c259fd10fdcac6b4b6c12 - sha256: fe33603ceba5022485da697d6dada0cf4624638ab10465b86203ed5335f38e27 + md5: a2ed43e189d6f163a5b15ceebec4c09b + sha256: df520ad3d99bf28aa4f8a5f5a04993418a001ef63c7bde215b32f9427da1f433 category: main optional: false - name: charls @@ -2477,39 +2591,39 @@ package: category: main optional: false - name: charset-normalizer - version: 3.4.1 + version: 3.4.3 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.3-pyhd8ed1ab_0.conda hash: - md5: e83a31202d1c0a000fce3e9cf3825875 - sha256: 4e0ee91b97e5de3e74567bdacea27f0139709fceca4db8adffbe24deffccb09b + md5: 7e7d5ef1b9ed630e4a1c358d6bc62284 + sha256: 838d5a011f0e7422be6427becba3de743c78f3874ad2743c341accbba9bb2624 category: main optional: false - name: charset-normalizer - version: 3.4.1 + version: 3.4.3 manager: conda platform: osx-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.3-pyhd8ed1ab_0.conda hash: - md5: e83a31202d1c0a000fce3e9cf3825875 - sha256: 4e0ee91b97e5de3e74567bdacea27f0139709fceca4db8adffbe24deffccb09b + md5: 7e7d5ef1b9ed630e4a1c358d6bc62284 + sha256: 838d5a011f0e7422be6427becba3de743c78f3874ad2743c341accbba9bb2624 category: main optional: false - name: charset-normalizer - version: 3.4.1 + version: 3.4.3 manager: conda platform: osx-arm64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.3-pyhd8ed1ab_0.conda hash: - md5: e83a31202d1c0a000fce3e9cf3825875 - sha256: 4e0ee91b97e5de3e74567bdacea27f0139709fceca4db8adffbe24deffccb09b + md5: 7e7d5ef1b9ed630e4a1c358d6bc62284 + sha256: 838d5a011f0e7422be6427becba3de743c78f3874ad2743c341accbba9bb2624 category: main optional: false - name: chart-studio @@ -2533,11 +2647,11 @@ package: manager: conda platform: osx-64 dependencies: - requests: '' - six: '' plotly: '' python: '>=3.9' + requests: '' retrying: '>=1.3.3' + six: '' url: https://conda.anaconda.org/conda-forge/noarch/chart-studio-1.1.0-pyhd8ed1ab_1.conda hash: md5: a8dc13f40343dd9706cab9b9cbc49099 @@ -2549,11 +2663,11 @@ package: manager: conda platform: osx-arm64 dependencies: - requests: '' - six: '' plotly: '' python: '>=3.9' + requests: '' retrying: '>=1.3.3' + six: '' url: https://conda.anaconda.org/conda-forge/noarch/chart-studio-1.1.0-pyhd8ed1ab_1.conda hash: md5: a8dc13f40343dd9706cab9b9cbc49099 @@ -2561,81 +2675,81 @@ package: category: main optional: false - name: click - version: 8.1.8 + version: 8.2.1 manager: conda platform: linux-64 dependencies: __unix: '' - python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.8-pyh707e725_0.conda + python: '>=3.10' + url: https://conda.anaconda.org/conda-forge/noarch/click-8.2.1-pyh707e725_0.conda hash: - md5: f22f4d4970e09d68a10b922cbb0408d3 - sha256: c920d23cd1fcf565031c679adb62d848af60d6fbb0edc2d50ba475cea4f0d8ab + md5: 94b550b8d3a614dbd326af798c7dfb40 + sha256: 8aee789c82d8fdd997840c952a586db63c6890b00e88c4fb6e80a38edd5f51c0 category: main optional: false - name: click - version: 8.1.8 + version: 8.2.1 manager: conda platform: osx-64 dependencies: __unix: '' - python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.8-pyh707e725_0.conda + python: '>=3.10' + url: https://conda.anaconda.org/conda-forge/noarch/click-8.2.1-pyh707e725_0.conda hash: - md5: f22f4d4970e09d68a10b922cbb0408d3 - sha256: c920d23cd1fcf565031c679adb62d848af60d6fbb0edc2d50ba475cea4f0d8ab + md5: 94b550b8d3a614dbd326af798c7dfb40 + sha256: 8aee789c82d8fdd997840c952a586db63c6890b00e88c4fb6e80a38edd5f51c0 category: main optional: false - name: click - version: 8.1.8 + version: 8.2.1 manager: conda platform: osx-arm64 dependencies: __unix: '' - python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.8-pyh707e725_0.conda + python: '>=3.10' + url: https://conda.anaconda.org/conda-forge/noarch/click-8.2.1-pyh707e725_0.conda hash: - md5: f22f4d4970e09d68a10b922cbb0408d3 - sha256: c920d23cd1fcf565031c679adb62d848af60d6fbb0edc2d50ba475cea4f0d8ab + md5: 94b550b8d3a614dbd326af798c7dfb40 + sha256: 8aee789c82d8fdd997840c952a586db63c6890b00e88c4fb6e80a38edd5f51c0 category: main optional: false - name: click-plugins - version: 1.1.1 + version: 1.1.1.2 manager: conda platform: linux-64 dependencies: - click: '>=3.0' + click: '>=4.0' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/click-plugins-1.1.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/click-plugins-1.1.1.2-pyhd8ed1ab_0.conda hash: - md5: 82bea35e4dac4678ba623cf10e95e375 - sha256: e7e2371a2561fbda9d50deb895d56fb16ccefe54f6d81b35ba8f1d33d3cc6957 + md5: e9b05deb91c013e5224672a4ba9cf8d1 + sha256: ba1ee6e2b2be3da41d70d0d51d1159010de900aa3f33fceaea8c52e9bd30a26e category: main optional: false - name: click-plugins - version: 1.1.1 + version: 1.1.1.2 manager: conda platform: osx-64 dependencies: + click: '>=4.0' python: '>=3.9' - click: '>=3.0' - url: https://conda.anaconda.org/conda-forge/noarch/click-plugins-1.1.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/click-plugins-1.1.1.2-pyhd8ed1ab_0.conda hash: - md5: 82bea35e4dac4678ba623cf10e95e375 - sha256: e7e2371a2561fbda9d50deb895d56fb16ccefe54f6d81b35ba8f1d33d3cc6957 + md5: e9b05deb91c013e5224672a4ba9cf8d1 + sha256: ba1ee6e2b2be3da41d70d0d51d1159010de900aa3f33fceaea8c52e9bd30a26e category: main optional: false - name: click-plugins - version: 1.1.1 + version: 1.1.1.2 manager: conda platform: osx-arm64 dependencies: + click: '>=4.0' python: '>=3.9' - click: '>=3.0' - url: https://conda.anaconda.org/conda-forge/noarch/click-plugins-1.1.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/click-plugins-1.1.1.2-pyhd8ed1ab_0.conda hash: - md5: 82bea35e4dac4678ba623cf10e95e375 - sha256: e7e2371a2561fbda9d50deb895d56fb16ccefe54f6d81b35ba8f1d33d3cc6957 + md5: e9b05deb91c013e5224672a4ba9cf8d1 + sha256: ba1ee6e2b2be3da41d70d0d51d1159010de900aa3f33fceaea8c52e9bd30a26e category: main optional: false - name: cligj @@ -2656,8 +2770,8 @@ package: manager: conda platform: osx-64 dependencies: - python: '>=3.9,<4.0' click: '>=4.0' + python: '>=3.9,<4.0' url: https://conda.anaconda.org/conda-forge/noarch/cligj-0.7.2-pyhd8ed1ab_2.conda hash: md5: 55c7804f428719241a90b152016085a1 @@ -2669,8 +2783,8 @@ package: manager: conda platform: osx-arm64 dependencies: - python: '>=3.9,<4.0' click: '>=4.0' + python: '>=3.9,<4.0' url: https://conda.anaconda.org/conda-forge/noarch/cligj-0.7.2-pyhd8ed1ab_2.conda hash: md5: 55c7804f428719241a90b152016085a1 @@ -2734,10 +2848,10 @@ package: manager: conda platform: osx-64 dependencies: - numpy: '' + colorspacious: '' matplotlib-base: '' + numpy: '' packaging: '' - colorspacious: '' python: '>=3.9' url: https://conda.anaconda.org/conda-forge/noarch/cmocean-4.0.3-pyhd8ed1ab_1.conda hash: @@ -2750,10 +2864,10 @@ package: manager: conda platform: osx-arm64 dependencies: - numpy: '' + colorspacious: '' matplotlib-base: '' + numpy: '' packaging: '' - colorspacious: '' python: '>=3.9' url: https://conda.anaconda.org/conda-forge/noarch/cmocean-4.0.3-pyhd8ed1ab_1.conda hash: @@ -2873,88 +2987,88 @@ package: category: main optional: false - name: configargparse - version: '1.7' + version: 1.7.1 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/configargparse-1.7-pyhd8ed1ab_1.conda + python: '' + url: https://conda.anaconda.org/conda-forge/noarch/configargparse-1.7.1-pyhe01879c_0.conda hash: - md5: c5f4eec949e6514ca49e606b1fb7c043 - sha256: 6304ba52f86e20dc15ff5274f7178997e6378e62f9b9406da29304d969aefda4 + md5: 18dfeef40f049992f4b46b06e6f3b497 + sha256: 61d31e5181e29b5bcd47e0a5ef590caf0aec3ec1a6c8f19f50b42ed5bdc065d2 category: main optional: false - name: configargparse - version: '1.7' + version: 1.7.1 manager: conda platform: osx-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/configargparse-1.7-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/configargparse-1.7.1-pyhe01879c_0.conda hash: - md5: c5f4eec949e6514ca49e606b1fb7c043 - sha256: 6304ba52f86e20dc15ff5274f7178997e6378e62f9b9406da29304d969aefda4 + md5: 18dfeef40f049992f4b46b06e6f3b497 + sha256: 61d31e5181e29b5bcd47e0a5ef590caf0aec3ec1a6c8f19f50b42ed5bdc065d2 category: main optional: false - name: configargparse - version: '1.7' + version: 1.7.1 manager: conda platform: osx-arm64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/configargparse-1.7-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/configargparse-1.7.1-pyhe01879c_0.conda hash: - md5: c5f4eec949e6514ca49e606b1fb7c043 - sha256: 6304ba52f86e20dc15ff5274f7178997e6378e62f9b9406da29304d969aefda4 + md5: 18dfeef40f049992f4b46b06e6f3b497 + sha256: 61d31e5181e29b5bcd47e0a5ef590caf0aec3ec1a6c8f19f50b42ed5bdc065d2 category: main optional: false - name: contourpy - version: 1.3.1 + version: 1.3.3 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - libstdcxx: '>=13' - numpy: '>=1.23' + libgcc: '>=14' + libstdcxx: '>=14' + numpy: '>=1.25' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/linux-64/contourpy-1.3.1-py312h68727a3_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/contourpy-1.3.3-py312hd9148b4_2.conda hash: - md5: f5fbba0394ee45e9a64a73c2a994126a - sha256: e977af50b844b5b8cfec358131a4e923f0aa718e8334321cf8d84f5093576259 + md5: bce621e43978c245261c76b45edeaa3d + sha256: cedae3c71ad59b6796d182f9198e881738b7a2c7b70f18427d7788f3173befb2 category: main optional: false - name: contourpy - version: 1.3.1 + version: 1.3.3 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' - libcxx: '>=18' - numpy: '>=1.23' + libcxx: '>=19' + numpy: '>=1.25' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-64/contourpy-1.3.1-py312hc47a885_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/contourpy-1.3.3-py312hedd4973_2.conda hash: - md5: 94715deb514df3f341f62bc2ffea5637 - sha256: e05d4c6b4284684a020c386861342fa22706ff747f1f8909b14dbc0fe489dcb2 + md5: 31ed9c65bdb584b717fd574beffa30e9 + sha256: 39f812ad567b8ec69699e6ee7404277741388905b8f62bc93d7d0f9f5ece38aa category: main optional: false - name: contourpy - version: 1.3.1 + version: 1.3.3 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' - libcxx: '>=18' - numpy: '>=1.23' + libcxx: '>=19' + numpy: '>=1.25' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-arm64/contourpy-1.3.1-py312hb23fbb9_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/contourpy-1.3.3-py312ha0dd364_2.conda hash: - md5: f4408290387836e05ac267cd7ec80c5c - sha256: fa1f8505f45eac22f25c48cd46809da0d26bcb028c37517b3474bacddd029b0a + md5: bb1a2ab9b69fe1bb11d6ad9f1b39c0c4 + sha256: 95c3f2a595be008ec861ea6bddbf6e2abdfbc115b0e01112b3ae64c7ae641b9e category: main optional: false - name: crc32c @@ -2963,13 +3077,13 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - python: '>=3.12,<3.13.0a0' + libgcc: '>=14' + python: '' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/linux-64/crc32c-2.7.1-py312h66e93f0_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/crc32c-2.7.1-py312h5253ce2_2.conda hash: - md5: 85a6111a6fb1b1e569e68484df606963 - sha256: 1a56db4294d49d8c5a9b44be20a7ac034ec9e1913c204a72d0a2b65a1a9086a8 + md5: 6467879f825c5e84668befff60fe805f + sha256: bb6f1497aad846d7bb9d311fb2e2a57f4a0569a0439638d4c3338a0ae42ac63a category: main optional: false - name: crc32c @@ -2978,12 +3092,12 @@ package: platform: osx-64 dependencies: __osx: '>=10.13' - python: '>=3.12,<3.13.0a0' + python: '' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-64/crc32c-2.7.1-py312h01d7ebd_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/crc32c-2.7.1-py312h6efa6bc_2.conda hash: - md5: fab898db2cab4d3c2dd0089fdc81f1ec - sha256: f9fc9ddfca265bf3ea58355cbe38d192b22fde60923557a08639fc2a6d2e4fe9 + md5: f80722d4cb6de7452448b551f3a4eccd + sha256: 2bb62312780cabeeda332dac5472fd53aaf59185c62db8da395e7699958bd2f5 category: main optional: false - name: crc32c @@ -2992,72 +3106,61 @@ package: platform: osx-arm64 dependencies: __osx: '>=11.0' - python: '>=3.12,<3.13.0a0' + python: 3.12.* python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-arm64/crc32c-2.7.1-py312hea69d52_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/crc32c-2.7.1-py312h290adc7_2.conda hash: - md5: 5e2553ce7523be62e5dc1348515b5bfe - sha256: 48540e34d6f28dbc64da25c60b57536b9ee5948eaa79cff58288b46caaa85b65 + md5: 079506b0074d801795c9b1b914b399dc + sha256: 5a450751992a0f0b5c036a10132277ea5452c9fdc00fc46690531f807435c225 category: main optional: false - name: cryptography - version: 44.0.2 + version: 45.0.7 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' cffi: '>=1.12' - libgcc: '>=13' - openssl: '>=3.4.1,<4.0a0' + libgcc: '>=14' + openssl: '>=3.5.2,<4.0a0' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/linux-64/cryptography-44.0.2-py312hda17c39_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/cryptography-45.0.7-py312hee9fe19_1.conda hash: - md5: 9b4ab17c7654fe98ef6cd9a0021cd7bb - sha256: df45e7c376d2dbdac6cedace080164b33a15b2f2f3ef8920e0ea934f9d87fd7b + md5: 8281f9bc2a0be122924f717abb4aff65 + sha256: 86b5390090e8b6d236930f7fe64f98fa3b576d0e5c660fa483fdfcb31aa9ece7 category: main optional: false - name: cryptography - version: 44.0.2 + version: 45.0.7 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' cffi: '>=1.12' - openssl: '>=3.4.1,<4.0a0' + openssl: '>=3.5.2,<4.0a0' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-64/cryptography-44.0.2-py312h0995e51_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/cryptography-45.0.7-py312h4ba807b_1.conda hash: - md5: f7bc4b60452afd2b788172a8e12a0371 - sha256: 49602628605b16a101b49316ded4f0b72e61468d77917a632a9441567751be8a + md5: 4379a8fd26605a549375451061bec0cc + sha256: 52662cddf7c9a3193e54988e1d70663fe672fadbdae94eb3c59d6850f4599ca9 category: main optional: false - name: cryptography - version: 44.0.2 + version: 45.0.7 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' cffi: '>=1.12' - openssl: '>=3.4.1,<4.0a0' + openssl: '>=3.5.2,<4.0a0' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-arm64/cryptography-44.0.2-py312hf9bd80e_0.conda - hash: - md5: eee2ab52656d35a574711457f246f667 - sha256: 3328bee40efb1e474f5e3d9730cc68cd6baf612650fd5a0602da099e627647ac - category: main - optional: false -- name: cuda-version - version: '11.8' - manager: conda - platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/cuda-version-11.8-h70ddcb2_3.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/cryptography-45.0.7-py312h6f41444_1.conda hash: - md5: 670f0e1593b8c1d84f57ad5fe5256799 - sha256: 53e0ffc14ea2f2b8c12320fd2aa38b01112763eba851336ff5953b436ae61259 + md5: f292a7dc732ff0a381f54daef120e7aa + sha256: 518f9e10e275fbbe1c3635e2a5d84e16902a31bc85c37956485a72d317502271 category: main optional: false - name: curl @@ -3152,95 +3255,99 @@ package: category: main optional: false - name: cyrus-sasl - version: 2.1.27 + version: 2.1.28 manager: conda platform: linux-64 dependencies: - krb5: '>=1.21.1,<1.22.0a0' - libgcc-ng: '>=12' - libntlm: '' - libstdcxx-ng: '>=12' - openssl: '>=3.1.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/cyrus-sasl-2.1.27-h54b06d7_7.conda + __glibc: '>=2.17,<3.0.a0' + krb5: '>=1.21.3,<1.22.0a0' + libgcc: '>=13' + libntlm: '>=1.8,<2.0a0' + libstdcxx: '>=13' + libxcrypt: '>=4.4.36' + openssl: '>=3.5.0,<4.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/cyrus-sasl-2.1.28-hd9c7081_0.conda hash: - md5: dce22f70b4e5a407ce88f2be046f4ceb - sha256: d2ea5e52da745c4249e1a818095a28f9c57bd4df22cbfc645352defa468e86c2 + md5: cae723309a49399d2949362f4ab5c9e4 + sha256: ee09ad7610c12c7008262d713416d0b58bf365bc38584dce48950025850bdf3f category: main optional: false - name: cyrus-sasl - version: 2.1.27 + version: 2.1.28 manager: conda platform: osx-64 dependencies: - krb5: '>=1.21.1,<1.22.0a0' - libcxx: '>=15.0.7' - libntlm: '' - openssl: '>=3.1.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/cyrus-sasl-2.1.27-hf9bab2b_7.conda + __osx: '>=10.13' + krb5: '>=1.21.3,<1.22.0a0' + libcxx: '>=18' + libntlm: '>=1.8,<2.0a0' + openssl: '>=3.5.0,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/cyrus-sasl-2.1.28-h610c526_0.conda hash: - md5: b3a8aa48d3d5e1bfb31ee3bde1f2c544 - sha256: d4be27d58beb762f9392a35053404d5129e1ec41d24a9a7b465b4d84de2e5819 + md5: 314cd5e4aefc50fec5ffd80621cfb4f8 + sha256: beee5d279d48d67ba39f1b8f64bc050238d3d465fb9a53098eba2a85e9286949 category: main optional: false - name: cyrus-sasl - version: 2.1.27 + version: 2.1.28 manager: conda platform: osx-arm64 dependencies: - krb5: '>=1.21.1,<1.22.0a0' - libcxx: '>=15.0.7' - libntlm: '' - openssl: '>=3.1.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/cyrus-sasl-2.1.27-h60b93bd_7.conda + __osx: '>=11.0' + krb5: '>=1.21.3,<1.22.0a0' + libcxx: '>=18' + libntlm: '>=1.8,<2.0a0' + openssl: '>=3.5.0,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/cyrus-sasl-2.1.28-ha1cbb27_0.conda hash: - md5: 80a3b015d05a7d235db1bf09911fe08e - sha256: befd4d6e8b542d0c30aff47b098d43bbbe1bbf743ba6cd87a100d8a8731a6e03 + md5: 2867ea6551e97e53a81787fd967162b1 + sha256: 7de03254fa5421e7ec2347c830a59530fb5356022ee0dc26ec1cef0be1de0911 category: main optional: false - name: cython - version: 3.0.12 + version: 3.1.3 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - libstdcxx: '>=13' + libgcc: '>=14' + libstdcxx: '>=14' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/linux-64/cython-3.0.12-py312h2614dfc_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/cython-3.1.3-py312h7c45ced_2.conda hash: - md5: e5d2a28866ee990a340bde1eabde587a - sha256: de815476da537b911e2ceeb7f76b445d0c76b3d5fad35600ed28bc8d19302127 + md5: 1bb4d007f95c899c55d9ef88b8a5c176 + sha256: 21d852a71be1ae16fb4905f67a25cd13ae0fe88be441329f8c016eb3636e1d4d category: main optional: false - name: cython - version: 3.0.12 + version: 3.1.3 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' - libcxx: '>=18' + libcxx: '>=19' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-64/cython-3.0.12-py312hdfbeeba_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/cython-3.1.3-py312h09360c7_2.conda hash: - md5: 5801a15eece1bd00c7f6dc0c68640a9f - sha256: a186d286aedb2230dcdcaf2a8602c098112eaacdf9d8af39da2a474950bf1b98 + md5: 99a3afc780c55968fa95bb7de7aed92d + sha256: 203f5d2a51e8d68963aa47c6e499b5ed3134a2d2916a315e8cff8f560a3815cd category: main optional: false - name: cython - version: 3.0.12 + version: 3.1.3 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' - libcxx: '>=18' + libcxx: '>=19' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-arm64/cython-3.0.12-py312h02233ea_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/cython-3.1.3-py312haa408a8_2.conda hash: - md5: fdd1f83566e0620caee6fb6871f9b2d5 - sha256: ae13c98e6c734cce361dd66fe3fb479ca703bef52e4b4aecde33105fb1d88450 + md5: d0788eee8fd57116519622ec4e2aa2dc + sha256: d7675345ef07c24aceff2e218b0c3bf5b9bcb812f7f16859213537e559c3f341 category: main optional: false - name: cytoolz @@ -3290,126 +3397,126 @@ package: category: main optional: false - name: dask - version: 2025.2.0 + version: 2025.7.0 manager: conda platform: linux-64 dependencies: bokeh: '>=3.1.0' cytoolz: '>=0.11.0' - dask-core: '>=2025.2.0,<2025.2.1.0a0' - distributed: '>=2025.2.0,<2025.2.1.0a0' + dask-core: '>=2025.7.0,<2025.7.1.0a0' + distributed: '>=2025.7.0,<2025.7.1.0a0' jinja2: '>=2.10.3' lz4: '>=4.3.2' numpy: '>=1.24' pandas: '>=2.0' pyarrow: '>=14.0.1' - python: '>=3.10' - url: https://conda.anaconda.org/conda-forge/noarch/dask-2025.2.0-pyhd8ed1ab_0.conda + python: '' + url: https://conda.anaconda.org/conda-forge/noarch/dask-2025.7.0-pyhe01879c_0.conda hash: - md5: 60455cddc5f868d7ad37a504ff4ffd37 - sha256: 8be4982c98f4829a92b690dd47f516474d8e69d00f992bbf89764e08d535b679 + md5: e764bbc4315343e806bc55d73d102335 + sha256: 03cf80a89674166ec5aabbc63dbe6a317f09e2b585ace2c1296ded91033d5f72 category: main optional: false - name: dask - version: 2025.2.0 + version: 2025.7.0 manager: conda platform: osx-64 dependencies: - python: '>=3.10' - numpy: '>=1.24' - jinja2: '>=2.10.3' - pyarrow: '>=14.0.1' - pandas: '>=2.0' + bokeh: '>=3.1.0' cytoolz: '>=0.11.0' + dask-core: '>=2025.7.0,<2025.7.1.0a0' + distributed: '>=2025.7.0,<2025.7.1.0a0' + jinja2: '>=2.10.3' lz4: '>=4.3.2' - bokeh: '>=3.1.0' - dask-core: '>=2025.2.0,<2025.2.1.0a0' - distributed: '>=2025.2.0,<2025.2.1.0a0' - url: https://conda.anaconda.org/conda-forge/noarch/dask-2025.2.0-pyhd8ed1ab_0.conda + numpy: '>=1.24' + pandas: '>=2.0' + pyarrow: '>=14.0.1' + python: '>=3.10' + url: https://conda.anaconda.org/conda-forge/noarch/dask-2025.7.0-pyhe01879c_0.conda hash: - md5: 60455cddc5f868d7ad37a504ff4ffd37 - sha256: 8be4982c98f4829a92b690dd47f516474d8e69d00f992bbf89764e08d535b679 + md5: e764bbc4315343e806bc55d73d102335 + sha256: 03cf80a89674166ec5aabbc63dbe6a317f09e2b585ace2c1296ded91033d5f72 category: main optional: false - name: dask - version: 2025.2.0 + version: 2025.7.0 manager: conda platform: osx-arm64 dependencies: - python: '>=3.10' - numpy: '>=1.24' - jinja2: '>=2.10.3' - pyarrow: '>=14.0.1' - pandas: '>=2.0' + bokeh: '>=3.1.0' cytoolz: '>=0.11.0' + dask-core: '>=2025.7.0,<2025.7.1.0a0' + distributed: '>=2025.7.0,<2025.7.1.0a0' + jinja2: '>=2.10.3' lz4: '>=4.3.2' - bokeh: '>=3.1.0' - dask-core: '>=2025.2.0,<2025.2.1.0a0' - distributed: '>=2025.2.0,<2025.2.1.0a0' - url: https://conda.anaconda.org/conda-forge/noarch/dask-2025.2.0-pyhd8ed1ab_0.conda + numpy: '>=1.24' + pandas: '>=2.0' + pyarrow: '>=14.0.1' + python: '>=3.10' + url: https://conda.anaconda.org/conda-forge/noarch/dask-2025.7.0-pyhe01879c_0.conda hash: - md5: 60455cddc5f868d7ad37a504ff4ffd37 - sha256: 8be4982c98f4829a92b690dd47f516474d8e69d00f992bbf89764e08d535b679 + md5: e764bbc4315343e806bc55d73d102335 + sha256: 03cf80a89674166ec5aabbc63dbe6a317f09e2b585ace2c1296ded91033d5f72 category: main optional: false - name: dask-core - version: 2025.2.0 + version: 2025.7.0 manager: conda platform: linux-64 dependencies: click: '>=8.1' cloudpickle: '>=3.0.0' - fsspec: '>=2021.09.0' + fsspec: '>=2021.9.0' importlib-metadata: '>=4.13.0' packaging: '>=20.0' partd: '>=1.4.0' - python: '>=3.10' + python: '' pyyaml: '>=5.3.1' toolz: '>=0.10.0' - url: https://conda.anaconda.org/conda-forge/noarch/dask-core-2025.2.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/dask-core-2025.7.0-pyhe01879c_1.conda hash: - md5: 3bc22d25e3ee83d709804a2040b4463c - sha256: 22ae6c5125a08cfe6569eb729900ba7fb96320e66fe08de1c32f1191eb7e08af + md5: 3293644021329a96c606c3d95e180991 + sha256: 039130562a81522460f6638cabaca153798d865c24bb87781475e8fd5708d590 category: main optional: false - name: dask-core - version: 2025.2.0 + version: 2025.7.0 manager: conda platform: osx-64 dependencies: - python: '>=3.10' - packaging: '>=20.0' - pyyaml: '>=5.3.1' - toolz: '>=0.10.0' click: '>=8.1' - importlib-metadata: '>=4.13.0' - fsspec: '>=2021.09.0' cloudpickle: '>=3.0.0' + fsspec: '>=2021.9.0' + importlib-metadata: '>=4.13.0' + packaging: '>=20.0' partd: '>=1.4.0' - url: https://conda.anaconda.org/conda-forge/noarch/dask-core-2025.2.0-pyhd8ed1ab_0.conda + python: '>=3.10' + pyyaml: '>=5.3.1' + toolz: '>=0.10.0' + url: https://conda.anaconda.org/conda-forge/noarch/dask-core-2025.7.0-pyhe01879c_1.conda hash: - md5: 3bc22d25e3ee83d709804a2040b4463c - sha256: 22ae6c5125a08cfe6569eb729900ba7fb96320e66fe08de1c32f1191eb7e08af + md5: 3293644021329a96c606c3d95e180991 + sha256: 039130562a81522460f6638cabaca153798d865c24bb87781475e8fd5708d590 category: main optional: false - name: dask-core - version: 2025.2.0 + version: 2025.7.0 manager: conda platform: osx-arm64 dependencies: - python: '>=3.10' - packaging: '>=20.0' - pyyaml: '>=5.3.1' - toolz: '>=0.10.0' click: '>=8.1' - importlib-metadata: '>=4.13.0' - fsspec: '>=2021.09.0' cloudpickle: '>=3.0.0' + fsspec: '>=2021.9.0' + importlib-metadata: '>=4.13.0' + packaging: '>=20.0' partd: '>=1.4.0' - url: https://conda.anaconda.org/conda-forge/noarch/dask-core-2025.2.0-pyhd8ed1ab_0.conda + python: '>=3.10' + pyyaml: '>=5.3.1' + toolz: '>=0.10.0' + url: https://conda.anaconda.org/conda-forge/noarch/dask-core-2025.7.0-pyhe01879c_1.conda hash: - md5: 3bc22d25e3ee83d709804a2040b4463c - sha256: 22ae6c5125a08cfe6569eb729900ba7fb96320e66fe08de1c32f1191eb7e08af + md5: 3293644021329a96c606c3d95e180991 + sha256: 039130562a81522460f6638cabaca153798d865c24bb87781475e8fd5708d590 category: main optional: false - name: dask-jobqueue @@ -3432,10 +3539,10 @@ package: manager: conda platform: osx-64 dependencies: - setuptools: '' - python: '>=3.10' - distributed: '>=2022.02.0' dask-core: '>=2022.02.0' + distributed: '>=2022.02.0' + python: '>=3.10' + setuptools: '' url: https://conda.anaconda.org/conda-forge/noarch/dask-jobqueue-0.9.0-pyhd8ed1ab_0.conda hash: md5: a201de7d36907f2355426e019168d337 @@ -3447,64 +3554,16 @@ package: manager: conda platform: osx-arm64 dependencies: - setuptools: '' - python: '>=3.10' - distributed: '>=2022.02.0' dask-core: '>=2022.02.0' + distributed: '>=2022.02.0' + python: '>=3.10' + setuptools: '' url: https://conda.anaconda.org/conda-forge/noarch/dask-jobqueue-0.9.0-pyhd8ed1ab_0.conda hash: md5: a201de7d36907f2355426e019168d337 sha256: 18a2b682c3d9b978e2ce37d1bfec87f72b54ed6415753833831c095ec61b2668 category: main optional: false -- name: datapi - version: 0.3.0 - manager: conda - platform: linux-64 - dependencies: - attrs: '' - multiurl: '>=0.3.2' - python: '>=3.8' - requests: '' - typing_extensions: '' - url: https://conda.anaconda.org/conda-forge/noarch/datapi-0.3.0-pyhd8ed1ab_0.conda - hash: - md5: 4c02bdcb14867db7397e2b87fced7ac9 - sha256: 48686c5999c5fb6944ee68bdfb0acde19f073fbdc850c5cd4d791e4683ab8ce0 - category: main - optional: false -- name: datapi - version: 0.3.0 - manager: conda - platform: osx-64 - dependencies: - requests: '' - typing_extensions: '' - attrs: '' - python: '>=3.8' - multiurl: '>=0.3.2' - url: https://conda.anaconda.org/conda-forge/noarch/datapi-0.3.0-pyhd8ed1ab_0.conda - hash: - md5: 4c02bdcb14867db7397e2b87fced7ac9 - sha256: 48686c5999c5fb6944ee68bdfb0acde19f073fbdc850c5cd4d791e4683ab8ce0 - category: main - optional: false -- name: datapi - version: 0.3.0 - manager: conda - platform: osx-arm64 - dependencies: - requests: '' - typing_extensions: '' - attrs: '' - python: '>=3.8' - multiurl: '>=0.3.2' - url: https://conda.anaconda.org/conda-forge/noarch/datapi-0.3.0-pyhd8ed1ab_0.conda - hash: - md5: 4c02bdcb14867db7397e2b87fced7ac9 - sha256: 48686c5999c5fb6944ee68bdfb0acde19f073fbdc850c5cd4d791e4683ab8ce0 - category: main - optional: false - name: dav1d version: 1.2.1 manager: conda @@ -3665,20 +3724,20 @@ package: category: main optional: false - name: distributed - version: 2025.2.0 + version: 2025.7.0 manager: conda platform: linux-64 dependencies: click: '>=8.0' cloudpickle: '>=3.0.0' cytoolz: '>=0.11.2' - dask-core: '>=2025.2.0,<2025.2.1.0a0' + dask-core: '>=2025.7.0,<2025.7.1.0a0' jinja2: '>=2.10.3' locket: '>=1.0.0' msgpack-python: '>=1.0.2' packaging: '>=20.0' psutil: '>=5.8.0' - python: '>=3.10' + python: '' pyyaml: '>=5.4.1' sortedcontainers: '>=2.0.5' tblib: '>=1.6.0' @@ -3686,66 +3745,66 @@ package: tornado: '>=6.2.0' urllib3: '>=1.26.5' zict: '>=3.0.0' - url: https://conda.anaconda.org/conda-forge/noarch/distributed-2025.2.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/distributed-2025.7.0-pyhe01879c_0.conda hash: - md5: 54562a2b30c8f357097e2be75295601e - sha256: ccac7437df729ea2f249aef22b6e412ea7c63722cc094c4708d35453518b5c6d + md5: b94b2b0dc755b7f1fd5d1984e46d932c + sha256: d8c43144fe7dd9d8496491a6bf60996ceb0bbe291e234542e586dba979967df8 category: main optional: false - name: distributed - version: 2025.2.0 + version: 2025.7.0 manager: conda platform: osx-64 dependencies: - python: '>=3.10' - packaging: '>=20.0' - pyyaml: '>=5.4.1' click: '>=8.0' + cloudpickle: '>=3.0.0' + cytoolz: '>=0.11.2' + dask-core: '>=2025.7.0,<2025.7.1.0a0' jinja2: '>=2.10.3' - psutil: '>=5.8.0' - tornado: '>=6.2.0' locket: '>=1.0.0' + msgpack-python: '>=1.0.2' + packaging: '>=20.0' + psutil: '>=5.8.0' + python: '>=3.10' + pyyaml: '>=5.4.1' + sortedcontainers: '>=2.0.5' tblib: '>=1.6.0' + toolz: '>=0.11.2' + tornado: '>=6.2.0' urllib3: '>=1.26.5' - sortedcontainers: '>=2.0.5' - cloudpickle: '>=3.0.0' zict: '>=3.0.0' - msgpack-python: '>=1.0.2' - toolz: '>=0.11.2' - cytoolz: '>=0.11.2' - dask-core: '>=2025.2.0,<2025.2.1.0a0' - url: https://conda.anaconda.org/conda-forge/noarch/distributed-2025.2.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/distributed-2025.7.0-pyhe01879c_0.conda hash: - md5: 54562a2b30c8f357097e2be75295601e - sha256: ccac7437df729ea2f249aef22b6e412ea7c63722cc094c4708d35453518b5c6d + md5: b94b2b0dc755b7f1fd5d1984e46d932c + sha256: d8c43144fe7dd9d8496491a6bf60996ceb0bbe291e234542e586dba979967df8 category: main optional: false - name: distributed - version: 2025.2.0 + version: 2025.7.0 manager: conda platform: osx-arm64 dependencies: - python: '>=3.10' - packaging: '>=20.0' - pyyaml: '>=5.4.1' click: '>=8.0' + cloudpickle: '>=3.0.0' + cytoolz: '>=0.11.2' + dask-core: '>=2025.7.0,<2025.7.1.0a0' jinja2: '>=2.10.3' - psutil: '>=5.8.0' - tornado: '>=6.2.0' locket: '>=1.0.0' + msgpack-python: '>=1.0.2' + packaging: '>=20.0' + psutil: '>=5.8.0' + python: '>=3.10' + pyyaml: '>=5.4.1' + sortedcontainers: '>=2.0.5' tblib: '>=1.6.0' + toolz: '>=0.11.2' + tornado: '>=6.2.0' urllib3: '>=1.26.5' - sortedcontainers: '>=2.0.5' - cloudpickle: '>=3.0.0' zict: '>=3.0.0' - msgpack-python: '>=1.0.2' - toolz: '>=0.11.2' - cytoolz: '>=0.11.2' - dask-core: '>=2025.2.0,<2025.2.1.0a0' - url: https://conda.anaconda.org/conda-forge/noarch/distributed-2025.2.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/distributed-2025.7.0-pyhe01879c_0.conda hash: - md5: 54562a2b30c8f357097e2be75295601e - sha256: ccac7437df729ea2f249aef22b6e412ea7c63722cc094c4708d35453518b5c6d + md5: b94b2b0dc755b7f1fd5d1984e46d932c + sha256: d8c43144fe7dd9d8496491a6bf60996ceb0bbe291e234542e586dba979967df8 category: main optional: false - name: docrep @@ -3805,8 +3864,8 @@ package: manager: conda platform: osx-64 dependencies: - pyyaml: '' python: '>=3.9' + pyyaml: '' url: https://conda.anaconda.org/conda-forge/noarch/donfig-0.8.1.post1-pyhd8ed1ab_1.conda hash: md5: c56a7fa5597ad78b62e1f5d21f7f8b8f @@ -3818,8 +3877,8 @@ package: manager: conda platform: osx-arm64 dependencies: - pyyaml: '' python: '>=3.9' + pyyaml: '' url: https://conda.anaconda.org/conda-forge/noarch/donfig-0.8.1.post1-pyhd8ed1ab_1.conda hash: md5: c56a7fa5597ad78b62e1f5d21f7f8b8f @@ -3827,103 +3886,151 @@ package: category: main optional: false - name: eccodes - version: 2.40.0 + version: 2.41.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' hdf5: '>=1.14.3,<1.14.4.0a0' - jasper: '>=4.2.4,<5.0a0' + jasper: '>=4.2.5,<5.0a0' libaec: '>=1.1.3,<2.0a0' libgcc: '>=13' libgfortran: '' libgfortran5: '>=13.3.0' libnetcdf: '>=4.9.2,<4.9.3.0a0' - libpng: '>=1.6.46,<1.7.0a0' + libpng: '>=1.6.47,<1.7.0a0' libstdcxx: '>=13' libzlib: '>=1.3.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/eccodes-2.40.0-h8bb6dbc_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/eccodes-2.41.0-h8bb6dbc_0.conda hash: - md5: 52c8d85ec289a75e7c731932f45c533d - sha256: f081aecd438a9069864078eb319c04d7a323112444bde6818bc52241882d1004 + md5: 1130a9254394ac1a32031fd6f03a714c + sha256: 8f18f8d4ff257129204494718a738e04907bdbc8841698266cd981fdb1591c36 category: main optional: false - name: eccodes - version: 2.40.0 + version: 2.41.0 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' hdf5: '>=1.14.3,<1.14.4.0a0' - jasper: '>=4.2.4,<5.0a0' + jasper: '>=4.2.5,<5.0a0' libaec: '>=1.1.3,<2.0a0' libcxx: '>=18' libgfortran: 5.* - libgfortran5: '>=13.2.0' + libgfortran5: '>=14.2.0' libnetcdf: '>=4.9.2,<4.9.3.0a0' - libpng: '>=1.6.46,<1.7.0a0' + libpng: '>=1.6.47,<1.7.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/eccodes-2.40.0-h5a9cc44_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/eccodes-2.41.0-h5a9cc44_0.conda hash: - md5: e2e9e212a766f4478144181b87723de1 - sha256: a31d1d651f61f198e278c1db62b2bfdee6ef541629a7e8f595e60c69ae0916d5 + md5: 298d732a817cf2d68cc2ecdfb9f7b362 + sha256: 14db612ecb0470eecb490631a90cd95a66145a1aa1519ae1e6d53bfb14426731 category: main optional: false - name: eccodes - version: 2.40.0 + version: 2.41.0 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' hdf5: '>=1.14.3,<1.14.4.0a0' - jasper: '>=4.2.4,<5.0a0' + jasper: '>=4.2.5,<5.0a0' libaec: '>=1.1.3,<2.0a0' libcxx: '>=18' libgfortran: 5.* - libgfortran5: '>=13.2.0' + libgfortran5: '>=14.2.0' libnetcdf: '>=4.9.2,<4.9.3.0a0' - libpng: '>=1.6.46,<1.7.0a0' + libpng: '>=1.6.47,<1.7.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/eccodes-2.40.0-h666f0ec_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/eccodes-2.41.0-h666f0ec_0.conda hash: - md5: e2a3003f489a9f7013e1d72fc5440428 - sha256: bb6b694528c6470fd46b56b256e2539371c1b3fc765b6d6425483baaa887a8b2 + md5: 0d56e08e2aba8dc85e8995972476b936 + sha256: e13a747c17edf26d07d3cb0744835fbdf4f698bf41e799ea3701b4104e983f19 category: main optional: false - name: ecmwf-api-client - version: 1.6.3 + version: 1.6.5 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/ecmwf-api-client-1.6.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/ecmwf-api-client-1.6.5-pyhd8ed1ab_0.conda hash: - md5: 375691f2607aa31feaf360c58f342b43 - sha256: f6b635b32b2c6eaffd41ad7f970b3384ce509fe816353c4c7cc360d4c09e3322 + md5: 228328f32f6bbc015f17ecfba1376c59 + sha256: 99e9d4d7c542cc6f54d8764a9fb9ccb10e55cd8542642ac9804b6def328d2c69 category: main optional: false - name: ecmwf-api-client - version: 1.6.3 + version: 1.6.5 manager: conda platform: osx-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/ecmwf-api-client-1.6.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/ecmwf-api-client-1.6.5-pyhd8ed1ab_0.conda hash: - md5: 375691f2607aa31feaf360c58f342b43 - sha256: f6b635b32b2c6eaffd41ad7f970b3384ce509fe816353c4c7cc360d4c09e3322 + md5: 228328f32f6bbc015f17ecfba1376c59 + sha256: 99e9d4d7c542cc6f54d8764a9fb9ccb10e55cd8542642ac9804b6def328d2c69 category: main optional: false - name: ecmwf-api-client - version: 1.6.3 + version: 1.6.5 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/ecmwf-api-client-1.6.5-pyhd8ed1ab_0.conda + hash: + md5: 228328f32f6bbc015f17ecfba1376c59 + sha256: 99e9d4d7c542cc6f54d8764a9fb9ccb10e55cd8542642ac9804b6def328d2c69 + category: main + optional: false +- name: ecmwf-datastores-client + version: 0.4.0 + manager: conda + platform: linux-64 + dependencies: + attrs: '' + multiurl: '>=0.3.2' + python: '>=3.9' + requests: '' + typing_extensions: '' + url: https://conda.anaconda.org/conda-forge/noarch/ecmwf-datastores-client-0.4.0-pyhd8ed1ab_0.conda + hash: + md5: defa999963b250a20062a9f55642af3a + sha256: 26490842ac14bad4dab0b82ae75960074ab0ee42480d7a70ca921960dab703c7 + category: main + optional: false +- name: ecmwf-datastores-client + version: 0.4.0 + manager: conda + platform: osx-64 + dependencies: + attrs: '' + multiurl: '>=0.3.2' + python: '>=3.9' + requests: '' + typing_extensions: '' + url: https://conda.anaconda.org/conda-forge/noarch/ecmwf-datastores-client-0.4.0-pyhd8ed1ab_0.conda + hash: + md5: defa999963b250a20062a9f55642af3a + sha256: 26490842ac14bad4dab0b82ae75960074ab0ee42480d7a70ca921960dab703c7 + category: main + optional: false +- name: ecmwf-datastores-client + version: 0.4.0 manager: conda platform: osx-arm64 dependencies: + attrs: '' + multiurl: '>=0.3.2' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/ecmwf-api-client-1.6.3-pyhd8ed1ab_1.conda + requests: '' + typing_extensions: '' + url: https://conda.anaconda.org/conda-forge/noarch/ecmwf-datastores-client-0.4.0-pyhd8ed1ab_0.conda hash: - md5: 375691f2607aa31feaf360c58f342b43 - sha256: f6b635b32b2c6eaffd41ad7f970b3384ce509fe816353c4c7cc360d4c09e3322 + md5: defa999963b250a20062a9f55642af3a + sha256: 26490842ac14bad4dab0b82ae75960074ab0ee42480d7a70ca921960dab703c7 category: main optional: false - name: eofs @@ -4022,12 +4129,12 @@ package: manager: conda platform: osx-64 dependencies: - requests: '' - jinja2: '' defusedxml: '' + jinja2: '' + myproxyclient: '>=2.1.1' python: '>=3.9' + requests: '' requests-cache: '>=0.6' - myproxyclient: '>=2.1.1' webob: '>=1.8.9' url: https://conda.anaconda.org/conda-forge/noarch/esgf-pyclient-0.3.1-pyhd8ed1ab_5.conda hash: @@ -4040,12 +4147,12 @@ package: manager: conda platform: osx-arm64 dependencies: - requests: '' - jinja2: '' defusedxml: '' + jinja2: '' + myproxyclient: '>=2.1.1' python: '>=3.9' + requests: '' requests-cache: '>=0.6' - myproxyclient: '>=2.1.1' webob: '>=1.8.9' url: https://conda.anaconda.org/conda-forge/noarch/esgf-pyclient-0.3.1-pyhd8ed1ab_5.conda hash: @@ -4054,7 +4161,7 @@ package: category: main optional: false - name: esmf - version: 8.8.0 + version: 8.8.1 manager: conda platform: linux-64 dependencies: @@ -4066,14 +4173,14 @@ package: libnetcdf: '>=4.9.2,<4.9.3.0a0' libstdcxx: '>=13' netcdf-fortran: '>=4.6.1,<4.7.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/esmf-8.8.0-nompi_h4441c20_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/esmf-8.8.1-nompi_h4441c20_0.conda hash: - md5: 34729c36214ff0b7834065bd5cacdc56 - sha256: ecb364d8f5c8f53dcaf14921e0beb77922d47509fb6506c31417837576ac387b + md5: 4d78a56a01fde77ba396e2a489d71215 + sha256: 28a4f2f27511acc812cc3566f71955855b3769581009e8e3073f2a13c7f07202 category: main optional: false - name: esmf - version: 8.8.0 + version: 8.8.1 manager: conda platform: osx-64 dependencies: @@ -4081,17 +4188,17 @@ package: hdf5: '>=1.14.3,<1.14.4.0a0' libcxx: '>=18' libgfortran: 5.* - libgfortran5: '>=13.2.0' + libgfortran5: '>=14.2.0' libnetcdf: '>=4.9.2,<4.9.3.0a0' netcdf-fortran: '>=4.6.1,<4.7.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/esmf-8.8.0-nompi_hc7f6788_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/esmf-8.8.1-nompi_hc7f6788_0.conda hash: - md5: ac73610008aca749efb45bbb6016240e - sha256: 1b70b0bb0c701a7767df07261caa09eae1d17883c295b6ebbd1aea6758f8f7e5 + md5: 2820ae6945646b3a67ccfb27b3a20e55 + sha256: 0739210b78139e7fd71e50f6333835f014a91f0aaf5d5d78191a9a512328e307 category: main optional: false - name: esmf - version: 8.8.0 + version: 8.8.1 manager: conda platform: osx-arm64 dependencies: @@ -4099,55 +4206,55 @@ package: hdf5: '>=1.14.3,<1.14.4.0a0' libcxx: '>=18' libgfortran: 5.* - libgfortran5: '>=13.2.0' + libgfortran5: '>=14.2.0' libnetcdf: '>=4.9.2,<4.9.3.0a0' netcdf-fortran: '>=4.6.1,<4.7.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/esmf-8.8.0-nompi_h11c2dee_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/esmf-8.8.1-nompi_h11c2dee_0.conda hash: - md5: 001e51eca2eda9f88802ffd2d7e3396f - sha256: a85708dda15ba10251417c094a0278e64917315e4248b5d7e1cd7678022db936 + md5: dcce16658eac449ba49afb66c08dff2f + sha256: ef161a71b858000d1d2d73a83b990b7a3e8aed29aa3c498305719b8bae1e7735 category: main optional: false - name: esmpy - version: 8.8.0 + version: 8.8.1 manager: conda platform: linux-64 dependencies: - esmf: 8.8.0.* + esmf: 8.8.1.* numpy: '>=1.19,<3' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/esmpy-8.8.0-pyhecae5ae_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/esmpy-8.8.1-pyhecae5ae_0.conda hash: - md5: 9d8320aa90c8e213002f9cdb5bb9f579 - sha256: 298b2cb1fa84d13b0572fa9651c44a933b990ae1358d54b4309ece4527d44082 + md5: fe06d00073c01b5a741122e64df7ad9f + sha256: 40984a76b4c69de4a74a8bc83708f9315c4cb0a2737ec57b7a2a82b43a294e33 category: main optional: false - name: esmpy - version: 8.8.0 + version: 8.8.1 manager: conda platform: osx-64 dependencies: - python: '>=3.9' + esmf: 8.8.1.* numpy: '>=1.19,<3' - esmf: 8.8.0.* - url: https://conda.anaconda.org/conda-forge/noarch/esmpy-8.8.0-pyhecae5ae_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/esmpy-8.8.1-pyhecae5ae_0.conda hash: - md5: 9d8320aa90c8e213002f9cdb5bb9f579 - sha256: 298b2cb1fa84d13b0572fa9651c44a933b990ae1358d54b4309ece4527d44082 + md5: fe06d00073c01b5a741122e64df7ad9f + sha256: 40984a76b4c69de4a74a8bc83708f9315c4cb0a2737ec57b7a2a82b43a294e33 category: main optional: false - name: esmpy - version: 8.8.0 + version: 8.8.1 manager: conda platform: osx-arm64 dependencies: - python: '>=3.9' + esmf: 8.8.1.* numpy: '>=1.19,<3' - esmf: 8.8.0.* - url: https://conda.anaconda.org/conda-forge/noarch/esmpy-8.8.0-pyhecae5ae_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/esmpy-8.8.1-pyhecae5ae_0.conda hash: - md5: 9d8320aa90c8e213002f9cdb5bb9f579 - sha256: 298b2cb1fa84d13b0572fa9651c44a933b990ae1358d54b4309ece4527d44082 + md5: fe06d00073c01b5a741122e64df7ad9f + sha256: 40984a76b4c69de4a74a8bc83708f9315c4cb0a2737ec57b7a2a82b43a294e33 category: main optional: false - name: esmvalcore @@ -4185,7 +4292,7 @@ package: psutil: '' py-cordex: '' pybtex: '' - python: '>=3.10,<3.13' + python: '>=3.10' python-stratify: '>=0.3' pyyaml: '' requests: '' @@ -4193,10 +4300,10 @@ package: scipy: '>=1.6' shapely: '>=2.0.0' yamale: '' - url: https://conda.anaconda.org/conda-forge/noarch/esmvalcore-2.12.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/esmvalcore-2.12.0-pyhd8ed1ab_1.conda hash: - md5: 52dc72742fe9bba66b6a4d96e3ae6367 - sha256: 40d6204abfce6befa70bd1cb03e6d676c98d06537479157ad78e30523bf4b7c7 + md5: 48ed709d75ad946159fed01e698b7c5a + sha256: 45b24b26cab556252664936de234977064fc6d21f03cc4ea668b979ee6cd1086 category: main optional: false - name: esmvalcore @@ -4204,48 +4311,48 @@ package: manager: conda platform: osx-64 dependencies: - requests: '' - pandas: '' - pyyaml: '' - packaging: '' - jinja2: '' - psutil: '' - pillow: '' - netcdf4: '' - rich: '' - filelock: '' - distributed: '' cartopy: '' - fiona: '' + cf-units: '' cftime: '' + dask: '>=2025' + dask-jobqueue: '' + distributed: '' + esgf-pyclient: '>=0.3.1' + esmpy: '' + filelock: '' + fiona: '' fire: '' geopy: '' - dask-jobqueue: '' - nc-time-axis: '' humanfriendly: '' - pybtex: '' - esmpy: '' - cf-units: '' - yamale: '' - prov: '' - py-cordex: '' - nested-lookup: '' - python: '>=3.10,<3.13' - shapely: '>=2.0.0' - scipy: '>=1.6' - libnetcdf: '!=4.9.1' - esgf-pyclient: '>=0.3.1' - numpy: '!=1.24.3' - python-stratify: '>=0.3' iris: '>=3.11.0' iris-esmf-regrid: '>=0.11.0' - isodate: '>=0.7.0' - dask: '>=2025' iris-grib: '>=0.20.0' - url: https://conda.anaconda.org/conda-forge/noarch/esmvalcore-2.12.0-pyhd8ed1ab_0.conda + isodate: '>=0.7.0' + jinja2: '' + libnetcdf: '!=4.9.1' + nc-time-axis: '' + nested-lookup: '' + netcdf4: '' + numpy: '!=1.24.3' + packaging: '' + pandas: '' + pillow: '' + prov: '' + psutil: '' + py-cordex: '' + pybtex: '' + python: '>=3.10' + python-stratify: '>=0.3' + pyyaml: '' + requests: '' + rich: '' + scipy: '>=1.6' + shapely: '>=2.0.0' + yamale: '' + url: https://conda.anaconda.org/conda-forge/noarch/esmvalcore-2.12.0-pyhd8ed1ab_1.conda hash: - md5: 52dc72742fe9bba66b6a4d96e3ae6367 - sha256: 40d6204abfce6befa70bd1cb03e6d676c98d06537479157ad78e30523bf4b7c7 + md5: 48ed709d75ad946159fed01e698b7c5a + sha256: 45b24b26cab556252664936de234977064fc6d21f03cc4ea668b979ee6cd1086 category: main optional: false - name: esmvalcore @@ -4253,48 +4360,48 @@ package: manager: conda platform: osx-arm64 dependencies: - requests: '' - pandas: '' - pyyaml: '' - packaging: '' - jinja2: '' - psutil: '' - pillow: '' - netcdf4: '' - rich: '' - filelock: '' - distributed: '' cartopy: '' - fiona: '' + cf-units: '' cftime: '' + dask: '>=2025' + dask-jobqueue: '' + distributed: '' + esgf-pyclient: '>=0.3.1' + esmpy: '' + filelock: '' + fiona: '' fire: '' geopy: '' - dask-jobqueue: '' - nc-time-axis: '' humanfriendly: '' - pybtex: '' - esmpy: '' - cf-units: '' - yamale: '' - prov: '' - py-cordex: '' - nested-lookup: '' - python: '>=3.10,<3.13' - shapely: '>=2.0.0' - scipy: '>=1.6' - libnetcdf: '!=4.9.1' - esgf-pyclient: '>=0.3.1' - numpy: '!=1.24.3' - python-stratify: '>=0.3' iris: '>=3.11.0' iris-esmf-regrid: '>=0.11.0' - isodate: '>=0.7.0' - dask: '>=2025' iris-grib: '>=0.20.0' - url: https://conda.anaconda.org/conda-forge/noarch/esmvalcore-2.12.0-pyhd8ed1ab_0.conda + isodate: '>=0.7.0' + jinja2: '' + libnetcdf: '!=4.9.1' + nc-time-axis: '' + nested-lookup: '' + netcdf4: '' + numpy: '!=1.24.3' + packaging: '' + pandas: '' + pillow: '' + prov: '' + psutil: '' + py-cordex: '' + pybtex: '' + python: '>=3.10' + python-stratify: '>=0.3' + pyyaml: '' + requests: '' + rich: '' + scipy: '>=1.6' + shapely: '>=2.0.0' + yamale: '' + url: https://conda.anaconda.org/conda-forge/noarch/esmvalcore-2.12.0-pyhd8ed1ab_1.conda hash: - md5: 52dc72742fe9bba66b6a4d96e3ae6367 - sha256: 40d6204abfce6befa70bd1cb03e6d676c98d06537479157ad78e30523bf4b7c7 + md5: 48ed709d75ad946159fed01e698b7c5a + sha256: 45b24b26cab556252664936de234977064fc6d21f03cc4ea668b979ee6cd1086 category: main optional: false - name: esmvaltool-python @@ -4376,69 +4483,69 @@ package: manager: conda platform: osx-64 dependencies: - requests: '' - pandas: '' - scipy: '' - matplotlib-base: '' - pyyaml: '' - packaging: '' - jinja2: '' - python-dateutil: '' - netcdf4: '' - numba: '' - scikit-image: '' aiohttp: '' - seaborn: '' - joblib: '' - fsspec: '' - openpyxl: '' - rasterio: '' - distributed: '' - ruamel.yaml: '' - zarr: '' cartopy: '' - fiona: '' - cftime: '' - natsort: '' - xlsxwriter: '' - progressbar2: '' - fire: '' - cython: '' - cfgrib: '' - cmocean: '' + cdo: '>=2.3.0' cdsapi: '' - nc-time-axis: '' - eofs: '' - ecmwf-api-client: '' - esmpy: '' cf-units: '' - seawater: '' - lime: '' - prov: '' - python-cdo: '' - pys2index: '' - xarray: '>=0.12.0' - pyproj: '>=2.1' - scikit-learn: '>=1.4.0' - cdo: '>=2.3.0' - mapgenerator: '>=1.0.5' - xgboost: '>1.6.1' - shapely: '>=2.0.2' - xesmf: '>=0.7.1' - numpy: '!=1.24.3' - python: '>=3.10,<=3.12' + cfgrib: '' + cftime: '' + cmocean: '' curl: <8.10 + cython: '' dask: '!=2024.8.0' - importlib-metadata: <8 + distributed: '' + ecmwf-api-client: '' + eofs: '' + esmpy: '' esmvalcore: 2.12.* + fiona: '' + fire: '' + fsspec: '' gdal: '>=3.9.0' + importlib-metadata: <8 ipython: <9.0 iris: '>=3.11' iris-esmf-regrid: '>=0.10.0' + jinja2: '' + joblib: '' + lime: '' + mapgenerator: '>=1.0.5' + matplotlib-base: '' + natsort: '' + nc-time-axis: '' + netcdf4: '' + numba: '' + numpy: '!=1.24.3' + openpyxl: '' + packaging: '' + pandas: '' + progressbar2: '' + prov: '' psy-maps: '>=1.5.0' psy-reg: '>=1.5.0' psy-simple: '>=1.5.0' psyplot: '>=1.5.0' + pyproj: '>=2.1' + pys2index: '' + python: '>=3.10,<=3.12' + python-cdo: '' + python-dateutil: '' + pyyaml: '' + rasterio: '' + requests: '' + ruamel.yaml: '' + scikit-image: '' + scikit-learn: '>=1.4.0' + scipy: '' + seaborn: '' + seawater: '' + shapely: '>=2.0.2' + xarray: '>=0.12.0' + xesmf: '>=0.7.1' + xgboost: '>1.6.1' + xlsxwriter: '' + zarr: '' url: https://conda.anaconda.org/conda-forge/noarch/esmvaltool-python-2.12.0-pyhd8ed1ab_0.conda hash: md5: 96303437608d09d82849cd5c5102b8db @@ -4450,69 +4557,69 @@ package: manager: conda platform: osx-arm64 dependencies: - requests: '' - pandas: '' - scipy: '' - matplotlib-base: '' - pyyaml: '' - packaging: '' - jinja2: '' - python-dateutil: '' - netcdf4: '' - numba: '' - scikit-image: '' aiohttp: '' - seaborn: '' - joblib: '' - fsspec: '' - openpyxl: '' - rasterio: '' - distributed: '' - ruamel.yaml: '' - zarr: '' cartopy: '' - fiona: '' - cftime: '' - natsort: '' - xlsxwriter: '' - progressbar2: '' - fire: '' - cython: '' - cfgrib: '' - cmocean: '' + cdo: '>=2.3.0' cdsapi: '' - nc-time-axis: '' - eofs: '' - ecmwf-api-client: '' - esmpy: '' cf-units: '' - seawater: '' - lime: '' - prov: '' - python-cdo: '' - pys2index: '' - xarray: '>=0.12.0' - pyproj: '>=2.1' - scikit-learn: '>=1.4.0' - cdo: '>=2.3.0' - mapgenerator: '>=1.0.5' - xgboost: '>1.6.1' - shapely: '>=2.0.2' - xesmf: '>=0.7.1' - numpy: '!=1.24.3' - python: '>=3.10,<=3.12' + cfgrib: '' + cftime: '' + cmocean: '' curl: <8.10 + cython: '' dask: '!=2024.8.0' - importlib-metadata: <8 + distributed: '' + ecmwf-api-client: '' + eofs: '' + esmpy: '' esmvalcore: 2.12.* + fiona: '' + fire: '' + fsspec: '' gdal: '>=3.9.0' + importlib-metadata: <8 ipython: <9.0 iris: '>=3.11' iris-esmf-regrid: '>=0.10.0' + jinja2: '' + joblib: '' + lime: '' + mapgenerator: '>=1.0.5' + matplotlib-base: '' + natsort: '' + nc-time-axis: '' + netcdf4: '' + numba: '' + numpy: '!=1.24.3' + openpyxl: '' + packaging: '' + pandas: '' + progressbar2: '' + prov: '' psy-maps: '>=1.5.0' psy-reg: '>=1.5.0' psy-simple: '>=1.5.0' psyplot: '>=1.5.0' + pyproj: '>=2.1' + pys2index: '' + python: '>=3.10,<=3.12' + python-cdo: '' + python-dateutil: '' + pyyaml: '' + rasterio: '' + requests: '' + ruamel.yaml: '' + scikit-image: '' + scikit-learn: '>=1.4.0' + scipy: '' + seaborn: '' + seawater: '' + shapely: '>=2.0.2' + xarray: '>=0.12.0' + xesmf: '>=0.7.1' + xgboost: '>1.6.1' + xlsxwriter: '' + zarr: '' url: https://conda.anaconda.org/conda-forge/noarch/esmvaltool-python-2.12.0-pyhd8ed1ab_0.conda hash: md5: 96303437608d09d82849cd5c5102b8db @@ -4556,115 +4663,118 @@ package: category: main optional: false - name: exceptiongroup - version: 1.2.2 + version: 1.3.0 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda + typing_extensions: '>=4.6.0' + url: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda hash: - md5: a16662747cdeb9abbac74d0057cc976e - sha256: cbde2c64ec317118fc06b223c5fd87c8a680255e7348dd60e7b292d2e103e701 + md5: 72e42d28960d875c7654614f8b50939a + sha256: ce61f4f99401a4bd455b89909153b40b9c823276aefcbb06f2044618696009ca category: main optional: false - name: exceptiongroup - version: 1.2.2 + version: 1.3.0 manager: conda platform: osx-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda + typing_extensions: '>=4.6.0' + url: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda hash: - md5: a16662747cdeb9abbac74d0057cc976e - sha256: cbde2c64ec317118fc06b223c5fd87c8a680255e7348dd60e7b292d2e103e701 + md5: 72e42d28960d875c7654614f8b50939a + sha256: ce61f4f99401a4bd455b89909153b40b9c823276aefcbb06f2044618696009ca category: main optional: false - name: exceptiongroup - version: 1.2.2 + version: 1.3.0 manager: conda platform: osx-arm64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda + typing_extensions: '>=4.6.0' + url: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda hash: - md5: a16662747cdeb9abbac74d0057cc976e - sha256: cbde2c64ec317118fc06b223c5fd87c8a680255e7348dd60e7b292d2e103e701 + md5: 72e42d28960d875c7654614f8b50939a + sha256: ce61f4f99401a4bd455b89909153b40b9c823276aefcbb06f2044618696009ca category: main optional: false - name: executing - version: 2.1.0 + version: 2.2.1 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/executing-2.1.0-pyhd8ed1ab_1.conda + python: '>=3.10' + url: https://conda.anaconda.org/conda-forge/noarch/executing-2.2.1-pyhd8ed1ab_0.conda hash: - md5: ef8b5fca76806159fc25b4f48d8737eb - sha256: 28d25ea375ebab4bf7479228f8430db20986187b04999136ff5c722ebd32eb60 + md5: ff9efb7f7469aed3c4a8106ffa29593c + sha256: 210c8165a58fdbf16e626aac93cc4c14dbd551a01d1516be5ecad795d2422cad category: main optional: false - name: executing - version: 2.1.0 + version: 2.2.1 manager: conda platform: osx-64 dependencies: - python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/executing-2.1.0-pyhd8ed1ab_1.conda + python: '>=3.10' + url: https://conda.anaconda.org/conda-forge/noarch/executing-2.2.1-pyhd8ed1ab_0.conda hash: - md5: ef8b5fca76806159fc25b4f48d8737eb - sha256: 28d25ea375ebab4bf7479228f8430db20986187b04999136ff5c722ebd32eb60 + md5: ff9efb7f7469aed3c4a8106ffa29593c + sha256: 210c8165a58fdbf16e626aac93cc4c14dbd551a01d1516be5ecad795d2422cad category: main optional: false - name: executing - version: 2.1.0 + version: 2.2.1 manager: conda platform: osx-arm64 dependencies: - python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/executing-2.1.0-pyhd8ed1ab_1.conda + python: '>=3.10' + url: https://conda.anaconda.org/conda-forge/noarch/executing-2.2.1-pyhd8ed1ab_0.conda hash: - md5: ef8b5fca76806159fc25b4f48d8737eb - sha256: 28d25ea375ebab4bf7479228f8430db20986187b04999136ff5c722ebd32eb60 + md5: ff9efb7f7469aed3c4a8106ffa29593c + sha256: 210c8165a58fdbf16e626aac93cc4c14dbd551a01d1516be5ecad795d2422cad category: main optional: false - name: expat - version: 2.6.4 + version: 2.7.1 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libexpat: 2.6.4 - libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/expat-2.6.4-h5888daf_0.conda + libexpat: 2.7.1 + libgcc: '>=14' + url: https://conda.anaconda.org/conda-forge/linux-64/expat-2.7.1-hecca717_0.conda hash: - md5: 1d6afef758879ef5ee78127eb4cd2c4a - sha256: 1848c7db9e264e3b8036ee133d570dd880422983cd20dd9585a505289606d276 + md5: 6033d8c2bb9b460929d00ba54154614c + sha256: e981cf62a722f0eb4631ac7b786c288c03883fbc241fa98a276308fb69cb2c59 category: main optional: false - name: expat - version: 2.6.4 + version: 2.7.1 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' - libexpat: 2.6.4 - url: https://conda.anaconda.org/conda-forge/osx-64/expat-2.6.4-h240833e_0.conda + libexpat: 2.7.1 + url: https://conda.anaconda.org/conda-forge/osx-64/expat-2.7.1-h21dd04a_0.conda hash: - md5: 81ca1acbdfb112e1c8270d613c92bce4 - sha256: 9d16411c009b2d5d3f4037685592d1f49bfc66991729093777b0fc6d48f45a2e + md5: 20db53ab3b929f972b2ef6c7bad34eec + sha256: 40eed995c99513a7b83b11a9ca90e234c5595acd398ae475c1fe6e9004f01ad7 category: main optional: false - name: expat - version: 2.6.4 + version: 2.7.1 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' - libexpat: 2.6.4 - url: https://conda.anaconda.org/conda-forge/osx-arm64/expat-2.6.4-h286801f_0.conda + libexpat: 2.7.1 + url: https://conda.anaconda.org/conda-forge/osx-arm64/expat-2.7.1-hec049ff_0.conda hash: - md5: a37ffeecc1b8a62205bdd8319652758b - sha256: e621a088b762a8aa99bd8f3ef10e2efe923713bc476babb90e7919f6c13a358b + md5: 7888ca1ed7f0abef9442620dcf926e17 + sha256: 8f2d1faeff1da40e66285711934e0d310d768720552452daa89b099aa8f82f29 category: main optional: false - name: fftw @@ -4689,7 +4799,7 @@ package: dependencies: __osx: '>=10.13' libcxx: '>=16' - libgfortran: 5.* + libgfortran: '>=5' libgfortran5: '>=13.2.0' llvm-openmp: '>=16.0.6' url: https://conda.anaconda.org/conda-forge/osx-64/fftw-3.3.10-nompi_h292e606_110.conda @@ -4705,7 +4815,7 @@ package: dependencies: __osx: '>=11.0' libcxx: '>=16' - libgfortran: 5.* + libgfortran: '>=5' libgfortran5: '>=13.2.0' llvm-openmp: '>=16.0.6' url: https://conda.anaconda.org/conda-forge/osx-arm64/fftw-3.3.10-nompi_h6637ab6_110.conda @@ -4715,75 +4825,75 @@ package: category: main optional: false - name: filelock - version: 3.17.0 + version: 3.19.1 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/filelock-3.17.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/filelock-3.19.1-pyhd8ed1ab_0.conda hash: - md5: 7f402b4a1007ee355bc50ce4d24d4a57 - sha256: 006d7e5a0c17a6973596dd86bfc80d74ce541144d2aee2d22d46fd41df560a63 + md5: 9c418d067409452b2e87e0016257da68 + sha256: 7a2497c775cc7da43b5e32fc5cf9f4e8301ca723f0eb7f808bbe01c6094a3693 category: main optional: false - name: filelock - version: 3.17.0 + version: 3.19.1 manager: conda platform: osx-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/filelock-3.17.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/filelock-3.19.1-pyhd8ed1ab_0.conda hash: - md5: 7f402b4a1007ee355bc50ce4d24d4a57 - sha256: 006d7e5a0c17a6973596dd86bfc80d74ce541144d2aee2d22d46fd41df560a63 + md5: 9c418d067409452b2e87e0016257da68 + sha256: 7a2497c775cc7da43b5e32fc5cf9f4e8301ca723f0eb7f808bbe01c6094a3693 category: main optional: false - name: filelock - version: 3.17.0 + version: 3.19.1 manager: conda platform: osx-arm64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/filelock-3.17.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/filelock-3.19.1-pyhd8ed1ab_0.conda hash: - md5: 7f402b4a1007ee355bc50ce4d24d4a57 - sha256: 006d7e5a0c17a6973596dd86bfc80d74ce541144d2aee2d22d46fd41df560a63 + md5: 9c418d067409452b2e87e0016257da68 + sha256: 7a2497c775cc7da43b5e32fc5cf9f4e8301ca723f0eb7f808bbe01c6094a3693 category: main optional: false - name: findlibs - version: 0.0.5 + version: 0.1.2 manager: conda platform: linux-64 dependencies: python: '>=3.6' - url: https://conda.anaconda.org/conda-forge/noarch/findlibs-0.0.5-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/findlibs-0.1.2-pyhd8ed1ab_0.conda hash: - md5: 8f325f63020af6f7acbe2c4cb4c920db - sha256: d6baa0cdab78f07f38d62a926c3c046f9e07493b261d123b4c2971ac73178684 + md5: fa9e9ec7bf26619a8edd3e11155f15d6 + sha256: d02d04e24b79003442751240a7c7ad251c30e368f38808fb44c5a6e925c0436a category: main optional: false - name: findlibs - version: 0.0.5 + version: 0.1.2 manager: conda platform: osx-64 dependencies: python: '>=3.6' - url: https://conda.anaconda.org/conda-forge/noarch/findlibs-0.0.5-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/findlibs-0.1.2-pyhd8ed1ab_0.conda hash: - md5: 8f325f63020af6f7acbe2c4cb4c920db - sha256: d6baa0cdab78f07f38d62a926c3c046f9e07493b261d123b4c2971ac73178684 + md5: fa9e9ec7bf26619a8edd3e11155f15d6 + sha256: d02d04e24b79003442751240a7c7ad251c30e368f38808fb44c5a6e925c0436a category: main optional: false - name: findlibs - version: 0.0.5 + version: 0.1.2 manager: conda platform: osx-arm64 dependencies: python: '>=3.6' - url: https://conda.anaconda.org/conda-forge/noarch/findlibs-0.0.5-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/findlibs-0.1.2-pyhd8ed1ab_0.conda hash: - md5: 8f325f63020af6f7acbe2c4cb4c920db - sha256: d6baa0cdab78f07f38d62a926c3c046f9e07493b261d123b4c2971ac73178684 + md5: fa9e9ec7bf26619a8edd3e11155f15d6 + sha256: d02d04e24b79003442751240a7c7ad251c30e368f38808fb44c5a6e925c0436a category: main optional: false - name: fiona @@ -4878,9 +4988,9 @@ package: manager: conda platform: osx-64 dependencies: + python: '>=3.7' six: '' termcolor: '' - python: '>=3.7' url: https://conda.anaconda.org/conda-forge/noarch/fire-0.7.0-pyhd8ed1ab_0.conda hash: md5: c8eefdf1e822c56a6034602e67bc92a5 @@ -4892,9 +5002,9 @@ package: manager: conda platform: osx-arm64 dependencies: + python: '>=3.7' six: '' termcolor: '' - python: '>=3.7' url: https://conda.anaconda.org/conda-forge/noarch/fire-0.7.0-pyhd8ed1ab_0.conda hash: md5: c8eefdf1e822c56a6034602e67bc92a5 @@ -4902,43 +5012,43 @@ package: category: main optional: false - name: fmt - version: 11.1.4 + version: 11.0.2 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' libstdcxx: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/fmt-11.1.4-h07f6e7f_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/fmt-11.0.2-h07f6e7f_1.conda hash: - md5: 0ca14d8e641eceedd59cb09c1588dae7 - sha256: 3ddbecf8f36a0d1e05ceecb190748c52092a5a1e14e00f166b6fedb1b5ea0feb + md5: fbbfeaa24a99c3da00c35334935b0d24 + sha256: f9eeb49752b250e035ed0ee957fd813f7d2212eccb814006bbf92b89711605b1 category: main optional: false - name: fmt - version: 11.1.4 + version: 11.0.2 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' libcxx: '>=18' - url: https://conda.anaconda.org/conda-forge/osx-64/fmt-11.1.4-hbf61d64_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/fmt-11.0.2-hbf61d64_1.conda hash: - md5: 7b9452d495396cf4bb509f6dbdacaa2f - sha256: b253551698d84b8c667972ce564d3265fa71f6bf19b8ed136db239c8f01f392d + md5: 8f4b9952b738147bce076d44334877b0 + sha256: de53b508d1dde4adeeedf0548582414e35269e30ce1483bf19962bfd7d931c75 category: main optional: false - name: fmt - version: 11.1.4 + version: 11.0.2 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' libcxx: '>=18' - url: https://conda.anaconda.org/conda-forge/osx-arm64/fmt-11.1.4-h440487c_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/fmt-11.0.2-h440487c_1.conda hash: - md5: f21d3d7e23c89d50f975d4c0fd5bb356 - sha256: 9dfda0b8daca9ac7c4191163db0d1c5569929a3fb4c3c7589e05c9bd89e0b61f + md5: f90a1a21cef4c1e11f421ba29538d704 + sha256: afc3d556845e42112953279d3703c603c00bf6e139658778ea6b904c4fc1f50a category: main optional: false - name: font-ttf-dejavu-sans-mono @@ -5176,10 +5286,10 @@ package: manager: conda platform: osx-64 dependencies: - font-ttf-ubuntu: '' + font-ttf-dejavu-sans-mono: '' font-ttf-inconsolata: '' font-ttf-source-code-pro: '' - font-ttf-dejavu-sans-mono: '' + font-ttf-ubuntu: '' url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2 hash: md5: f766549260d6815b0c52253f1fb1bb29 @@ -5191,10 +5301,10 @@ package: manager: conda platform: osx-arm64 dependencies: - font-ttf-ubuntu: '' + font-ttf-dejavu-sans-mono: '' font-ttf-inconsolata: '' font-ttf-source-code-pro: '' - font-ttf-dejavu-sans-mono: '' + font-ttf-ubuntu: '' url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2 hash: md5: f766549260d6815b0c52253f1fb1bb29 @@ -5202,25 +5312,25 @@ package: category: main optional: false - name: fonttools - version: 4.56.0 + version: 4.59.2 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' brotli: '' - libgcc: '>=13' + libgcc: '>=14' munkres: '' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* unicodedata2: '>=15.1.0' - url: https://conda.anaconda.org/conda-forge/linux-64/fonttools-4.56.0-py312h178313f_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/fonttools-4.59.2-py312h8a5da7c_0.conda hash: - md5: 2f8a66f2f9eb931cdde040d02c6ab54c - sha256: 76ca95b4111fe27e64d74111b416b3462ad3db99f7109cbdf50e6e4b67dcf5b7 + md5: 4c3f3c752ec0cd37b0a0990af20fd952 + sha256: da1c642961e2cad6748266c55ee625062fbdec9f191dc16a29859b2b996a4eea category: main optional: false - name: fonttools - version: 4.56.0 + version: 4.59.2 manager: conda platform: osx-64 dependencies: @@ -5230,14 +5340,14 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* unicodedata2: '>=15.1.0' - url: https://conda.anaconda.org/conda-forge/osx-64/fonttools-4.56.0-py312h3520af0_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/fonttools-4.59.2-py312h3d55d04_0.conda hash: - md5: 9b603b2fa3072c966ef2ff119e8203f3 - sha256: 9b206989c9d5e68120d264b6798b9afdfbca6b9a8705cdd71b68a75ce58f81b7 + md5: d634f090d804ab3d35abf2c7c02b4053 + sha256: d9d8764c6693d65f39d5726afc1eff054ea5172ededd0ea41681774ad98f43bf category: main optional: false - name: fonttools - version: 4.56.0 + version: 4.59.2 manager: conda platform: osx-arm64 dependencies: @@ -5247,10 +5357,10 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* unicodedata2: '>=15.1.0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/fonttools-4.56.0-py312h998013c_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/fonttools-4.59.2-py312h6daa0e5_0.conda hash: - md5: a5cf7d0629863be81d90054882de908c - sha256: 6b003a5100ec58e1bd456bf55d0727606f7b067628aed1a7c5d8cf4f0174bfc5 + md5: 715f0ac9bac5abe18951f66738cc3e3a + sha256: d566e5096981a70c87523ff7aff057c9c13bab851df861861003482efb7825e4 category: main optional: false - name: freeglut @@ -5273,43 +5383,42 @@ package: category: main optional: false - name: freetype - version: 2.12.1 + version: 2.13.3 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - libpng: '>=1.6.39,<1.7.0a0' - libzlib: '>=1.2.13,<2.0.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/freetype-2.12.1-h267a509_2.conda + libfreetype: 2.13.3 + libfreetype6: 2.13.3 + url: https://conda.anaconda.org/conda-forge/linux-64/freetype-2.13.3-ha770c72_1.conda hash: - md5: 9ae35c3d96db2c94ce0cef86efdfa2cb - sha256: b2e3c449ec9d907dd4656cb0dc93e140f447175b125a3824b31368b06c666bb6 + md5: 9ccd736d31e0c6e41f54e704e5312811 + sha256: 7ef7d477c43c12a5b4cddcf048a83277414512d1116aba62ebadfa7056a7d84f category: main optional: false - name: freetype - version: 2.12.1 + version: 2.13.3 manager: conda platform: osx-64 dependencies: - libpng: '>=1.6.39,<1.7.0a0' - libzlib: '>=1.2.13,<2.0.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/freetype-2.12.1-h60636b9_2.conda + libfreetype: 2.13.3 + libfreetype6: 2.13.3 + url: https://conda.anaconda.org/conda-forge/osx-64/freetype-2.13.3-h694c41f_1.conda hash: - md5: 25152fce119320c980e5470e64834b50 - sha256: b292cf5a25f094eeb4b66e37d99a97894aafd04a5683980852a8cbddccdc8e4e + md5: 126dba1baf5030cb6f34533718924577 + sha256: e2870e983889eec73fdc0d4ab27d3f6501de4750ffe32d7d0a3a287f00bc2f15 category: main optional: false - name: freetype - version: 2.12.1 + version: 2.13.3 manager: conda platform: osx-arm64 dependencies: - libpng: '>=1.6.39,<1.7.0a0' - libzlib: '>=1.2.13,<2.0.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/freetype-2.12.1-hadb7bae_2.conda + libfreetype: 2.13.3 + libfreetype6: 2.13.3 + url: https://conda.anaconda.org/conda-forge/osx-arm64/freetype-2.13.3-hce30654_1.conda hash: - md5: e6085e516a3e304ce41a8ee08b9b89ad - sha256: 791673127e037a2dc0eebe122dc4f904cb3f6e635bb888f42cbe1a76b48748d9 + md5: e684de4644067f1956a580097502bf03 + sha256: 6b63c72ea51a41d41964841404564c0729fdddd3e952e2715839fd759b7cfdfc category: main optional: false - name: freexl @@ -5393,82 +5502,85 @@ package: category: main optional: false - name: frozenlist - version: 1.5.0 + version: 1.7.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' + libgcc: '>=14' + libstdcxx: '>=14' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/linux-64/frozenlist-1.5.0-py312h178313f_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/frozenlist-1.7.0-py312h447239a_0.conda hash: - md5: fb986e1c089021979dc79606af78ef8f - sha256: 501e20626798b6d7f130f4db0fb02c0385d8f4c11ca525925602a4208afb343f + md5: 63e20cf7b7460019b423fc06abb96c60 + sha256: f4e0e6cd241bc24afb2d6d08e5d2ba170fad2475e522bdf297b7271bba268be6 category: main optional: false - name: frozenlist - version: 1.5.0 + version: 1.7.0 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' + libcxx: '>=19' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-64/frozenlist-1.5.0-py312h3520af0_1.conda + url: https://conda.anaconda.org/conda-forge/osx-64/frozenlist-1.7.0-py312h18bfd43_0.conda hash: - md5: 887a4fa613758220fff7641b9d3ead95 - sha256: 332d78beaec0ab79f176656e71b819d75bb72a9a9c99bb1dc0387c7f0c34f016 + md5: d1e9b9b950051516742a6719489e98c6 + sha256: 33a8bc7384594da4ce9148a597215dc28517d11fa41e1fac14326abab1e55206 category: main optional: false - name: frozenlist - version: 1.5.0 + version: 1.7.0 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' + libcxx: '>=19' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-arm64/frozenlist-1.5.0-py312h998013c_1.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/frozenlist-1.7.0-py312h512c567_0.conda hash: - md5: 5eb3715c7e3fa9b533361375bfefe6ee - sha256: d503ac8c050abdbd129253973f23be34944978d510de78ef5a3e6aa1e3d9552d + md5: 9f016ae66f8ef7195561dbf7ce0e5944 + sha256: 690af95d69d97b6e1ffead1edd413ca0f8b9189fb867b6bd8fd351f8ad509043 category: main optional: false - name: fsspec - version: 2025.2.0 + version: 2025.9.0 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/fsspec-2025.2.0-pyhd8ed1ab_0.conda + python: '>=3.10' + url: https://conda.anaconda.org/conda-forge/noarch/fsspec-2025.9.0-pyhd8ed1ab_0.conda hash: - md5: d9ea16b71920b03beafc17fcca16df90 - sha256: 7433b8469074985b651693778ec6f03d2a23fad9919a515e3b8545996b5e721a + md5: 76f492bd8ba8a0fb80ffe16fc1a75b3b + sha256: 05e55a2bd5e4d7f661d1f4c291ca8e65179f68234d18eb70fc00f50934d3c4d3 category: main optional: false - name: fsspec - version: 2025.2.0 + version: 2025.9.0 manager: conda platform: osx-64 dependencies: - python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/fsspec-2025.2.0-pyhd8ed1ab_0.conda + python: '>=3.10' + url: https://conda.anaconda.org/conda-forge/noarch/fsspec-2025.9.0-pyhd8ed1ab_0.conda hash: - md5: d9ea16b71920b03beafc17fcca16df90 - sha256: 7433b8469074985b651693778ec6f03d2a23fad9919a515e3b8545996b5e721a + md5: 76f492bd8ba8a0fb80ffe16fc1a75b3b + sha256: 05e55a2bd5e4d7f661d1f4c291ca8e65179f68234d18eb70fc00f50934d3c4d3 category: main optional: false - name: fsspec - version: 2025.2.0 + version: 2025.9.0 manager: conda platform: osx-arm64 dependencies: - python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/fsspec-2025.2.0-pyhd8ed1ab_0.conda + python: '>=3.10' + url: https://conda.anaconda.org/conda-forge/noarch/fsspec-2025.9.0-pyhd8ed1ab_0.conda hash: - md5: d9ea16b71920b03beafc17fcca16df90 - sha256: 7433b8469074985b651693778ec6f03d2a23fad9919a515e3b8545996b5e721a + md5: 76f492bd8ba8a0fb80ffe16fc1a75b3b + sha256: 05e55a2bd5e4d7f661d1f4c291ca8e65179f68234d18eb70fc00f50934d3c4d3 category: main optional: false - name: funcargparse @@ -5490,9 +5602,9 @@ package: manager: conda platform: osx-64 dependencies: - six: '' - python: '>=3.6' docrep: '>=0.3' + python: '>=3.6' + six: '' url: https://conda.anaconda.org/conda-forge/noarch/funcargparse-0.2.5-pyhd8ed1ab_0.tar.bz2 hash: md5: e557b70d736251fa0bbb7c4497852a92 @@ -5504,9 +5616,9 @@ package: manager: conda platform: osx-arm64 dependencies: - six: '' - python: '>=3.6' docrep: '>=0.3' + python: '>=3.6' + six: '' url: https://conda.anaconda.org/conda-forge/noarch/funcargparse-0.2.5-pyhd8ed1ab_0.tar.bz2 hash: md5: e557b70d736251fa0bbb7c4497852a92 @@ -5523,7 +5635,7 @@ package: libgdal-core: 3.9.2.* libkml: '>=1.3.0,<1.4.0a0' libstdcxx: '>=13' - libxml2: '>=2.12.7,<3.0a0' + libxml2: '>=2.12.7,<2.14.0a0' numpy: '>=1.19,<3' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* @@ -5542,7 +5654,7 @@ package: libcxx: '>=17' libgdal-core: 3.9.2.* libkml: '>=1.3.0,<1.4.0a0' - libxml2: '>=2.12.7,<3.0a0' + libxml2: '>=2.12.7,<2.14.0a0' numpy: '>=1.19,<3' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* @@ -5561,7 +5673,7 @@ package: libcxx: '>=17' libgdal-core: 3.9.2.* libkml: '>=1.3.0,<1.4.0a0' - libxml2: '>=2.12.7,<3.0a0' + libxml2: '>=2.12.7,<2.14.0a0' numpy: '>=1.19,<3' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* @@ -5622,39 +5734,39 @@ package: category: main optional: false - name: geographiclib - version: '2.0' + version: '2.1' manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/geographiclib-2.0-pyhd8ed1ab_1.conda + python: '>=3.10' + url: https://conda.anaconda.org/conda-forge/noarch/geographiclib-2.1-pyhd8ed1ab_0.conda hash: - md5: 8b9328ab4aafb8fde493ab32c5eba731 - sha256: 933064eaaac79ceadef948223873c433eb5375b8445264cbe569d34035ab4e20 + md5: 43dd16b113cc7b244d923b630026ff4f + sha256: 4bcebe8f5f449b728bd0140e38c036060f22d31048e0c7980bf4cd6acdad2b62 category: main optional: false - name: geographiclib - version: '2.0' + version: '2.1' manager: conda platform: osx-64 dependencies: - python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/geographiclib-2.0-pyhd8ed1ab_1.conda + python: '>=3.10' + url: https://conda.anaconda.org/conda-forge/noarch/geographiclib-2.1-pyhd8ed1ab_0.conda hash: - md5: 8b9328ab4aafb8fde493ab32c5eba731 - sha256: 933064eaaac79ceadef948223873c433eb5375b8445264cbe569d34035ab4e20 + md5: 43dd16b113cc7b244d923b630026ff4f + sha256: 4bcebe8f5f449b728bd0140e38c036060f22d31048e0c7980bf4cd6acdad2b62 category: main optional: false - name: geographiclib - version: '2.0' + version: '2.1' manager: conda platform: osx-arm64 dependencies: - python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/geographiclib-2.0-pyhd8ed1ab_1.conda + python: '>=3.10' + url: https://conda.anaconda.org/conda-forge/noarch/geographiclib-2.1-pyhd8ed1ab_0.conda hash: - md5: 8b9328ab4aafb8fde493ab32c5eba731 - sha256: 933064eaaac79ceadef948223873c433eb5375b8445264cbe569d34035ab4e20 + md5: 43dd16b113cc7b244d923b630026ff4f + sha256: 4bcebe8f5f449b728bd0140e38c036060f22d31048e0c7980bf4cd6acdad2b62 category: main optional: false - name: geopy @@ -5675,8 +5787,8 @@ package: manager: conda platform: osx-64 dependencies: - python: '>=3.9' geographiclib: '>=1.52' + python: '>=3.9' url: https://conda.anaconda.org/conda-forge/noarch/geopy-2.4.1-pyhd8ed1ab_2.conda hash: md5: 40182a8d62a61d147ec7d3e4c5c36ac2 @@ -5688,8 +5800,8 @@ package: manager: conda platform: osx-arm64 dependencies: - python: '>=3.9' geographiclib: '>=1.52' + python: '>=3.9' url: https://conda.anaconda.org/conda-forge/noarch/geopy-2.4.1-pyhd8ed1ab_2.conda hash: md5: 40182a8d62a61d147ec7d3e4c5c36ac2 @@ -5866,45 +5978,45 @@ package: category: main optional: false - name: glib-tools - version: 2.82.2 + version: 2.84.1 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - libglib: 2.82.2 - url: https://conda.anaconda.org/conda-forge/linux-64/glib-tools-2.82.2-h4833e2c_1.conda + libglib: 2.84.1 + url: https://conda.anaconda.org/conda-forge/linux-64/glib-tools-2.84.1-h4833e2c_0.conda hash: - md5: e2e44caeaef6e4b107577aa46c95eb12 - sha256: 5d8a48abdb1bc2b54f1380d2805cb9cd6cd9609ed0e5c3ed272aef92ab53b190 + md5: ddc06964296eee2b4070e65415b332fd + sha256: 0358e0471a7c41875490abb87faa44c38298899b625744c6618b32cfb6595b4c category: main optional: false - name: glib-tools - version: 2.82.2 + version: 2.84.0 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' - libglib: 2.82.2 - libintl: '>=0.22.5,<1.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/glib-tools-2.82.2-hf8faeaf_1.conda + libglib: 2.84.0 + libintl: '>=0.23.1,<1.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/glib-tools-2.84.0-hf8faeaf_0.conda hash: - md5: 9c64be7c2dbbdde429d12a84c538ef1e - sha256: d626c650d320ca14c259a7aa12283c452b3ca1e58191c29b820001725822285e + md5: 03d506bd28830a841105d3015744612e + sha256: 6ea60fa3aee44ba7223ee4a5955dc341a4dac1f2256a8511a821741545a6da27 category: main optional: false - name: glib-tools - version: 2.82.2 + version: 2.84.0 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' - libglib: 2.82.2 - libintl: '>=0.22.5,<1.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/glib-tools-2.82.2-h1dc7a0c_1.conda + libglib: 2.84.0 + libintl: '>=0.23.1,<1.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/glib-tools-2.84.0-h1dc7a0c_0.conda hash: - md5: bdc35b7b75b7cd2bcfd288e399333f29 - sha256: b6874fea5674855149f929899126e4298d020945f3d9c6a7955d14ede1855e3a + md5: a4374a5bc561b673045db55e090cb6cb + sha256: 55d1f1dc1884f434936917dc6bec938d6e552e361c3936cc85f606404fe16c65 category: main optional: false - name: glog @@ -5950,40 +6062,43 @@ package: category: main optional: false - name: graphite2 - version: 1.3.13 + version: 1.3.14 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/graphite2-1.3.13-h59595ed_1003.conda + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=14' + libstdcxx: '>=14' + url: https://conda.anaconda.org/conda-forge/linux-64/graphite2-1.3.14-hecca717_2.conda hash: - md5: f87c7b7c2cb45f323ffbce941c78ab7c - sha256: 0595b009f20f8f60f13a6398e7cdcbd2acea5f986633adcf85f5a2283c992add + md5: 2cd94587f3a401ae05e03a6caf09539d + sha256: 25ba37da5c39697a77fce2c9a15e48cf0a84f1464ad2aafbe53d8357a9f6cc8c category: main optional: false - name: graphite2 - version: 1.3.13 + version: 1.3.14 manager: conda platform: osx-64 dependencies: - libcxx: '>=16' - url: https://conda.anaconda.org/conda-forge/osx-64/graphite2-1.3.13-h73e2aa4_1003.conda + __osx: '>=10.13' + libcxx: '>=19' + url: https://conda.anaconda.org/conda-forge/osx-64/graphite2-1.3.14-h21dd04a_2.conda hash: - md5: fc7124f86e1d359fc5d878accd9e814c - sha256: b71db966e47cd83b16bfcc2099b8fa87c07286f24a0742078fede4c84314f91a + md5: ba63822087afc37e01bf44edcc2479f3 + sha256: c356eb7a42775bd2bae243d9987436cd1a442be214b1580251bb7fdc136d804b category: main optional: false - name: graphite2 - version: 1.3.13 + version: 1.3.14 manager: conda platform: osx-arm64 dependencies: - libcxx: '>=16' - url: https://conda.anaconda.org/conda-forge/osx-arm64/graphite2-1.3.13-hebf3989_1003.conda + __osx: '>=11.0' + libcxx: '>=19' + url: https://conda.anaconda.org/conda-forge/osx-arm64/graphite2-1.3.14-hec049ff_2.conda hash: - md5: 339991336eeddb70076d8ca826dac625 - sha256: 2eadafbfc52f5e7df3da3c3b7e5bbe34d970bea1d645ffe60b0b1c3a216657f5 + md5: 0fc46fee39e88bbcf5835f71a9d9a209 + sha256: c507ae9989dbea7024aa6feaebb16cbf271faac67ac3f0342ef1ab747c20475d category: main optional: false - name: graphviz @@ -6073,25 +6188,25 @@ package: __glibc: '>=2.17,<3.0.a0' at-spi2-atk: '>=2.38.0,<3.0a0' atk-1.0: '>=2.38.0' - cairo: '>=1.18.2,<2.0a0' + cairo: '>=1.18.4,<2.0a0' epoxy: '>=1.5.10,<1.6.0a0' fontconfig: '>=2.15.0,<3.0a0' fonts-conda-ecosystem: '' fribidi: '>=1.0.10,<2.0a0' gdk-pixbuf: '>=2.42.12,<3.0a0' glib-tools: '' - harfbuzz: '>=10.2.0,<11.0a0' + harfbuzz: '>=11.0.0,<12.0a0' hicolor-icon-theme: '' libcups: '>=2.3.3,<3.0a0' libexpat: '>=2.6.4,<3.0a0' libgcc: '>=13' - libglib: '>=2.82.2,<3.0a0' - liblzma: '>=5.6.3,<6.0a0' - libxkbcommon: '>=1.7.0,<2.0a0' + libglib: '>=2.84.0,<3.0a0' + liblzma: '>=5.6.4,<6.0a0' + libxkbcommon: '>=1.8.1,<2.0a0' libzlib: '>=1.3.1,<2.0a0' - pango: '>=1.56.0,<2.0a0' + pango: '>=1.56.3,<2.0a0' wayland: '>=1.23.1,<2.0a0' - xorg-libx11: '>=1.8.10,<2.0a0' + xorg-libx11: '>=1.8.12,<2.0a0' xorg-libxcomposite: '>=0.4.6,<1.0a0' xorg-libxcursor: '>=1.2.3,<2.0a0' xorg-libxdamage: '>=1.1.6,<2.0a0' @@ -6101,10 +6216,10 @@ package: xorg-libxinerama: '>=1.1.5,<1.2.0a0' xorg-libxrandr: '>=1.5.4,<2.0a0' xorg-libxrender: '>=0.9.12,<0.10.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/gtk3-3.24.43-h021d004_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/gtk3-3.24.43-h0c6a113_5.conda hash: - md5: 56c679bcdb8c1d824e927088725862cb - sha256: c8f939497b43d90fa2ac9d99b44ed25759a798c305237300508e526de5e78de7 + md5: 67d00e9cfe751cfe581726c5eff7c184 + sha256: d36263cbcbce34ec463ce92bd72efa198b55d987959eab6210cc256a0e79573b category: main optional: false - name: gtk3 @@ -6114,25 +6229,23 @@ package: dependencies: __osx: '>=10.13' atk-1.0: '>=2.38.0' - cairo: '>=1.18.2,<2.0a0' + cairo: '>=1.18.4,<2.0a0' epoxy: '>=1.5.10,<1.6.0a0' fribidi: '>=1.0.10,<2.0a0' gdk-pixbuf: '>=2.42.12,<3.0a0' glib-tools: '' - harfbuzz: '>=10.2.0,<11.0a0' + harfbuzz: '>=11.0.0,<12.0a0' hicolor-icon-theme: '' - libasprintf: '>=0.22.5,<1.0a0' libexpat: '>=2.6.4,<3.0a0' - libgettextpo: '>=0.22.5,<1.0a0' - libglib: '>=2.82.2,<3.0a0' - libintl: '>=0.22.5,<1.0a0' - liblzma: '>=5.6.3,<6.0a0' + libglib: '>=2.84.0,<3.0a0' + libintl: '>=0.23.1,<1.0a0' + liblzma: '>=5.6.4,<6.0a0' libzlib: '>=1.3.1,<2.0a0' - pango: '>=1.56.0,<2.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/gtk3-3.24.43-h82a860e_3.conda + pango: '>=1.56.3,<2.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/gtk3-3.24.43-h70b172e_5.conda hash: - md5: fc1a95f558be54a6e8445373dd19fd0a - sha256: ebf180c29a34d4a317df75c6e32e90845149387716cbc556c5615856bb9e23d3 + md5: 38eeb48f9466e5763567d1be1b7ff444 + sha256: 4f1be786342408492578dc696165ed3515bb1c4887c30e0909e50d0f8245fb38 category: main optional: false - name: gtk3 @@ -6142,25 +6255,23 @@ package: dependencies: __osx: '>=11.0' atk-1.0: '>=2.38.0' - cairo: '>=1.18.2,<2.0a0' + cairo: '>=1.18.4,<2.0a0' epoxy: '>=1.5.10,<1.6.0a0' fribidi: '>=1.0.10,<2.0a0' gdk-pixbuf: '>=2.42.12,<3.0a0' glib-tools: '' - harfbuzz: '>=10.2.0,<11.0a0' + harfbuzz: '>=11.0.0,<12.0a0' hicolor-icon-theme: '' - libasprintf: '>=0.22.5,<1.0a0' libexpat: '>=2.6.4,<3.0a0' - libgettextpo: '>=0.22.5,<1.0a0' - libglib: '>=2.82.2,<3.0a0' - libintl: '>=0.22.5,<1.0a0' - liblzma: '>=5.6.3,<6.0a0' + libglib: '>=2.84.0,<3.0a0' + libintl: '>=0.23.1,<1.0a0' + liblzma: '>=5.6.4,<6.0a0' libzlib: '>=1.3.1,<2.0a0' - pango: '>=1.56.0,<2.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/gtk3-3.24.43-he7bb075_3.conda + pango: '>=1.56.3,<2.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/gtk3-3.24.43-h07173f4_5.conda hash: - md5: bf683088766bb687f27d39f5e128d2b0 - sha256: 5f52152c0af1953c220e9faf8132f010c4eb85a749319889abc2e17e6c430651 + md5: 8353369d4c2ecc5afd888405d3226fd9 + sha256: 9650ac1a02975ae0a3917443dc3c35ddc4d8e87a1cb04fda115af5f98e5d457c category: main optional: false - name: gts @@ -6203,65 +6314,203 @@ package: sha256: e0f8c7bc1b9ea62ded78ffa848e37771eeaaaf55b3146580513c7266862043ba category: main optional: false +- name: h2 + version: 4.3.0 + manager: conda + platform: linux-64 + dependencies: + hpack: '>=4.1,<5' + hyperframe: '>=6.1,<7' + python: '' + url: https://conda.anaconda.org/conda-forge/noarch/h2-4.3.0-pyhcf101f3_0.conda + hash: + md5: 164fc43f0b53b6e3a7bc7dce5e4f1dc9 + sha256: 84c64443368f84b600bfecc529a1194a3b14c3656ee2e832d15a20e0329b6da3 + category: main + optional: false +- name: h2 + version: 4.3.0 + manager: conda + platform: osx-64 + dependencies: + hpack: '>=4.1,<5' + hyperframe: '>=6.1,<7' + python: '>=3.10' + url: https://conda.anaconda.org/conda-forge/noarch/h2-4.3.0-pyhcf101f3_0.conda + hash: + md5: 164fc43f0b53b6e3a7bc7dce5e4f1dc9 + sha256: 84c64443368f84b600bfecc529a1194a3b14c3656ee2e832d15a20e0329b6da3 + category: main + optional: false +- name: h2 + version: 4.3.0 + manager: conda + platform: osx-arm64 + dependencies: + hpack: '>=4.1,<5' + hyperframe: '>=6.1,<7' + python: '>=3.10' + url: https://conda.anaconda.org/conda-forge/noarch/h2-4.3.0-pyhcf101f3_0.conda + hash: + md5: 164fc43f0b53b6e3a7bc7dce5e4f1dc9 + sha256: 84c64443368f84b600bfecc529a1194a3b14c3656ee2e832d15a20e0329b6da3 + category: main + optional: false +- name: h5netcdf + version: 1.6.4 + manager: conda + platform: linux-64 + dependencies: + h5py: '' + packaging: '' + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/h5netcdf-1.6.4-pyhd8ed1ab_0.conda + hash: + md5: 69bee100efb4f22b0072e5c806223609 + sha256: aa4667d8a96afdbacafcf4178749f78f3b061e8c149208b45486e7ecaecdef32 + category: main + optional: false +- name: h5netcdf + version: 1.6.4 + manager: conda + platform: osx-64 + dependencies: + h5py: '' + packaging: '' + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/h5netcdf-1.6.4-pyhd8ed1ab_0.conda + hash: + md5: 69bee100efb4f22b0072e5c806223609 + sha256: aa4667d8a96afdbacafcf4178749f78f3b061e8c149208b45486e7ecaecdef32 + category: main + optional: false +- name: h5netcdf + version: 1.6.4 + manager: conda + platform: osx-arm64 + dependencies: + h5py: '' + packaging: '' + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/h5netcdf-1.6.4-pyhd8ed1ab_0.conda + hash: + md5: 69bee100efb4f22b0072e5c806223609 + sha256: aa4667d8a96afdbacafcf4178749f78f3b061e8c149208b45486e7ecaecdef32 + category: main + optional: false +- name: h5py + version: 3.13.0 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + cached-property: '' + hdf5: '>=1.14.3,<1.14.4.0a0' + libgcc: '>=13' + numpy: '>=1.19,<3' + python: '>=3.12,<3.13.0a0' + python_abi: 3.12.* + url: https://conda.anaconda.org/conda-forge/linux-64/h5py-3.13.0-nompi_py312hedeef09_100.conda + hash: + md5: ed73cf6f5e1ce5e823e6efcf54cbdc51 + sha256: 76bb853325f0c756599edb0be014723b01fea61e24817fd2f0b9ddfe4c570c0f + category: main + optional: false +- name: h5py + version: 3.13.0 + manager: conda + platform: osx-64 + dependencies: + __osx: '>=10.13' + cached-property: '' + hdf5: '>=1.14.3,<1.14.4.0a0' + numpy: '>=1.19,<3' + python: '>=3.12,<3.13.0a0' + python_abi: 3.12.* + url: https://conda.anaconda.org/conda-forge/osx-64/h5py-3.13.0-nompi_py312hea5ca7c_100.conda + hash: + md5: 55bc071459c1de6abc4d02133a540021 + sha256: 99ef28fdfa99c75f95edebb5d468250e4395a5bc823682ef3542bda19f6f90c2 + category: main + optional: false +- name: h5py + version: 3.13.0 + manager: conda + platform: osx-arm64 + dependencies: + __osx: '>=11.0' + cached-property: '' + hdf5: '>=1.14.3,<1.14.4.0a0' + numpy: '>=1.19,<3' + python: '>=3.12,<3.13.0a0' + python_abi: 3.12.* + url: https://conda.anaconda.org/conda-forge/osx-arm64/h5py-3.13.0-nompi_py312hd7c5113_100.conda + hash: + md5: 227b0c53bc3d4131996bf7de479fe185 + sha256: 1cfd7bd567c2d8cd4c532f88c342f9346867ef52dab9d65ec1089c90eb94b6e4 + category: main + optional: false - name: harfbuzz - version: 10.4.0 + version: 11.2.1 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - cairo: '>=1.18.2,<2.0a0' - freetype: '>=2.12.1,<3.0a0' + cairo: '>=1.18.4,<2.0a0' + freetype: '' graphite2: '' icu: '>=75.1,<76.0a0' - libexpat: '>=2.6.4,<3.0a0' + libexpat: '>=2.7.0,<3.0a0' + libfreetype: '>=2.13.3' + libfreetype6: '>=2.13.3' libgcc: '>=13' - libglib: '>=2.82.2,<3.0a0' + libglib: '>=2.84.1,<3.0a0' libstdcxx: '>=13' libzlib: '>=1.3.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/harfbuzz-10.4.0-h76408a6_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/harfbuzz-11.2.1-h3beb420_0.conda hash: - md5: 81f137b4153cf111ff8e3188b6fb8e73 - sha256: 3b4ccabf170e1bf98c593f724cc4defe286d64cb19288751a50c63809ca32d5f + md5: 0e6e192d4b3d95708ad192d957cf3163 + sha256: 5bd0f3674808862838d6e2efc0b3075e561c34309c5c2f4c976f7f1f57c91112 category: main optional: false - name: harfbuzz - version: 10.4.0 + version: 11.1.0 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' - cairo: '>=1.18.2,<2.0a0' - freetype: '>=2.12.1,<3.0a0' + cairo: '>=1.18.4,<2.0a0' + freetype: '>=2.13.3,<3.0a0' graphite2: '' icu: '>=75.1,<76.0a0' libcxx: '>=18' - libexpat: '>=2.6.4,<3.0a0' - libglib: '>=2.82.2,<3.0a0' + libexpat: '>=2.7.0,<3.0a0' + libglib: '>=2.84.0,<3.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/harfbuzz-10.4.0-h86b413f_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/harfbuzz-11.1.0-hdfbcdba_0.conda hash: - md5: 05493515d0b4467f8229f1e154ec80c3 - sha256: 87e47de769f93f756e61e40555796382fb1dc3cb754e2e068958a949b3df33f7 + md5: 240771b26ad3d5041508c0601f241703 + sha256: f9da5eb2a4bb7ddc8fa24e2cc76a219b7bb48f3a2e0ba808275adc234d0538cb category: main optional: false - name: harfbuzz - version: 10.4.0 + version: 11.1.0 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' - cairo: '>=1.18.2,<2.0a0' - freetype: '>=2.12.1,<3.0a0' + cairo: '>=1.18.4,<2.0a0' + freetype: '>=2.13.3,<3.0a0' graphite2: '' icu: '>=75.1,<76.0a0' libcxx: '>=18' - libexpat: '>=2.6.4,<3.0a0' - libglib: '>=2.82.2,<3.0a0' + libexpat: '>=2.7.0,<3.0a0' + libglib: '>=2.84.0,<3.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/harfbuzz-10.4.0-hb72c1af_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/harfbuzz-11.1.0-hab40de2_0.conda hash: - md5: c13f50a1000cc3adadb2d93c76dcedab - sha256: 5c0ba63cdc0ccda3309923deff839528cf870daf4ae0173ab07e275698236321 + md5: 7a3187cd76ed14507654286bd6021e8a + sha256: 4c4f8dc935dff21259df60c0fc2c7e5d71916f3b076f539aa55e7513f00896df category: main optional: false - name: hdf4 @@ -6335,7 +6584,7 @@ package: libaec: '>=1.1.3,<2.0a0' libcurl: '>=8.8.0,<9.0a0' libcxx: '>=16' - libgfortran: 5.* + libgfortran: '>=5' libgfortran5: '>=13.2.0' libzlib: '>=1.2.13,<2.0a0' openssl: '>=3.3.1,<4.0a0' @@ -6354,7 +6603,7 @@ package: libaec: '>=1.1.3,<2.0a0' libcurl: '>=8.8.0,<9.0a0' libcxx: '>=16' - libgfortran: 5.* + libgfortran: '>=5' libgfortran5: '>=13.2.0' libzlib: '>=1.2.13,<2.0a0' openssl: '>=3.3.1,<4.0a0' @@ -6397,6 +6646,42 @@ package: sha256: 286e33fb452f61133a3a61d002890235d1d1378554218ab063d6870416440281 category: main optional: false +- name: hpack + version: 4.1.0 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda + hash: + md5: 0a802cb9888dd14eeefc611f05c40b6e + sha256: 6ad78a180576c706aabeb5b4c8ceb97c0cb25f1e112d76495bff23e3779948ba + category: main + optional: false +- name: hpack + version: 4.1.0 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda + hash: + md5: 0a802cb9888dd14eeefc611f05c40b6e + sha256: 6ad78a180576c706aabeb5b4c8ceb97c0cb25f1e112d76495bff23e3779948ba + category: main + optional: false +- name: hpack + version: 4.1.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda + hash: + md5: 0a802cb9888dd14eeefc611f05c40b6e + sha256: 6ad78a180576c706aabeb5b4c8ceb97c0cb25f1e112d76495bff23e3779948ba + category: main + optional: false - name: humanfriendly version: '10.0' manager: conda @@ -6436,6 +6721,42 @@ package: sha256: fa2071da7fab758c669e78227e6094f6b3608228740808a6de5d6bce83d9e52d category: main optional: false +- name: hyperframe + version: 6.1.0 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda + hash: + md5: 8e6923fc12f1fe8f8c4e5c9f343256ac + sha256: 77af6f5fe8b62ca07d09ac60127a30d9069fdc3c68d6b256754d0ffb1f7779f8 + category: main + optional: false +- name: hyperframe + version: 6.1.0 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda + hash: + md5: 8e6923fc12f1fe8f8c4e5c9f343256ac + sha256: 77af6f5fe8b62ca07d09ac60127a30d9069fdc3c68d6b256754d0ffb1f7779f8 + category: main + optional: false +- name: hyperframe + version: 6.1.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda + hash: + md5: 8e6923fc12f1fe8f8c4e5c9f343256ac + sha256: 77af6f5fe8b62ca07d09ac60127a30d9069fdc3c68d6b256754d0ffb1f7779f8 + category: main + optional: false - name: icu version: '75.1' manager: conda @@ -6663,8 +6984,8 @@ package: platform: osx-64 dependencies: numpy: '' - python: '>=3.9' pillow: '>=8.3.2' + python: '>=3.9' url: https://conda.anaconda.org/conda-forge/noarch/imageio-2.37.0-pyhfb79c49_0.conda hash: md5: b5577bc2212219566578fd5af9993af6 @@ -6677,8 +6998,8 @@ package: platform: osx-arm64 dependencies: numpy: '' - python: '>=3.9' pillow: '>=8.3.2' + python: '>=3.9' url: https://conda.anaconda.org/conda-forge/noarch/imageio-2.37.0-pyhfb79c49_0.conda hash: md5: b5577bc2212219566578fd5af9993af6 @@ -6761,16 +7082,16 @@ package: category: main optional: false - name: ipython - version: 8.33.0 + version: 8.37.0 manager: conda platform: linux-64 dependencies: __unix: '' - pexpect: '>4.3' decorator: '' exceptiongroup: '' jedi: '>=0.16' matplotlib-inline: '' + pexpect: '>4.3' pickleshare: '' prompt-toolkit: '>=3.0.41,<3.1.0' pygments: '>=2.4.0' @@ -6778,134 +7099,134 @@ package: stack_data: '' traitlets: '>=5.13.0' typing_extensions: '>=4.6' - url: https://conda.anaconda.org/conda-forge/noarch/ipython-8.33.0-pyh907856f_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/ipython-8.37.0-pyh8f84b5b_0.conda hash: - md5: 02fbdbf8acf5b937e89948fdd88e27fa - sha256: a112b69dcdc188415d5570f6b281070b5620c0f0f7af7f3daffe5218f74c25a9 + md5: 177cfa19fe3d74c87a8889286dc64090 + sha256: e43fa762183b49c3c3b811d41259e94bb14b7bff4a239b747ef4e1c6bbe2702d category: main optional: false - name: ipython - version: 8.33.0 + version: 8.37.0 manager: conda platform: osx-64 dependencies: - python: '>=3.10' __unix: '' decorator: '' exceptiongroup: '' - matplotlib-inline: '' - stack_data: '' - pickleshare: '' - pygments: '>=2.4.0' jedi: '>=0.16' + matplotlib-inline: '' pexpect: '>4.3' + pickleshare: '' prompt-toolkit: '>=3.0.41,<3.1.0' + pygments: '>=2.4.0' + python: '>=3.10' + stack_data: '' traitlets: '>=5.13.0' typing_extensions: '>=4.6' - url: https://conda.anaconda.org/conda-forge/noarch/ipython-8.33.0-pyh907856f_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/ipython-8.37.0-pyh8f84b5b_0.conda hash: - md5: 02fbdbf8acf5b937e89948fdd88e27fa - sha256: a112b69dcdc188415d5570f6b281070b5620c0f0f7af7f3daffe5218f74c25a9 + md5: 177cfa19fe3d74c87a8889286dc64090 + sha256: e43fa762183b49c3c3b811d41259e94bb14b7bff4a239b747ef4e1c6bbe2702d category: main optional: false - name: ipython - version: 8.33.0 + version: 8.37.0 manager: conda platform: osx-arm64 dependencies: - python: '>=3.10' __unix: '' decorator: '' exceptiongroup: '' - matplotlib-inline: '' - stack_data: '' - pickleshare: '' - pygments: '>=2.4.0' jedi: '>=0.16' + matplotlib-inline: '' pexpect: '>4.3' + pickleshare: '' prompt-toolkit: '>=3.0.41,<3.1.0' + pygments: '>=2.4.0' + python: '>=3.10' + stack_data: '' traitlets: '>=5.13.0' typing_extensions: '>=4.6' - url: https://conda.anaconda.org/conda-forge/noarch/ipython-8.33.0-pyh907856f_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/ipython-8.37.0-pyh8f84b5b_0.conda hash: - md5: 02fbdbf8acf5b937e89948fdd88e27fa - sha256: a112b69dcdc188415d5570f6b281070b5620c0f0f7af7f3daffe5218f74c25a9 + md5: 177cfa19fe3d74c87a8889286dc64090 + sha256: e43fa762183b49c3c3b811d41259e94bb14b7bff4a239b747ef4e1c6bbe2702d category: main optional: false - name: iris - version: 3.11.0 + version: 3.13.1 manager: conda platform: linux-64 dependencies: cartopy: '>=0.21' cf-units: '>=3.1' cftime: '>=1.5' - dask-core: '>=2022.9.0,!=2024.8.0' + dask-core: '>=2025.1.0' libnetcdf: '!=4.9.1' matplotlib-base: '>=3.5,!=3.9.1' netcdf4: '' numpy: '>=1.24,!=1.24.3' pyproj: '' - python: '>=3.10' + python: '>=3.11' python-xxhash: '' scipy: '' shapely: '!=1.8.3' - url: https://conda.anaconda.org/conda-forge/noarch/iris-3.11.0-pyha770c72_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/iris-3.13.1-pyha770c72_0.conda hash: - md5: a5e36260789ce92074c3736533ecdd61 - sha256: fd7d396ec94a353a92b3377231bca078e40291bbcec96ff507cc185712d064cf + md5: 33d150f58eb36070d2b8ad6dd1bd50d7 + sha256: 682de62c611c1547317d53ba3bd48f1cf7f7f569f9cfc61298b751842de32180 category: main optional: false - name: iris - version: 3.11.0 + version: 3.13.1 manager: conda platform: osx-64 dependencies: - scipy: '' - netcdf4: '' - pyproj: '' - python-xxhash: '' - python: '>=3.10' cartopy: '>=0.21' - cftime: '>=1.5' cf-units: '>=3.1' + cftime: '>=1.5' + dask-core: '>=2025.1.0' libnetcdf: '!=4.9.1' - shapely: '!=1.8.3' matplotlib-base: '>=3.5,!=3.9.1' + netcdf4: '' numpy: '>=1.24,!=1.24.3' - dask-core: '>=2022.9.0,!=2024.8.0' - url: https://conda.anaconda.org/conda-forge/noarch/iris-3.11.0-pyha770c72_0.conda + pyproj: '' + python: '>=3.11' + python-xxhash: '' + scipy: '' + shapely: '!=1.8.3' + url: https://conda.anaconda.org/conda-forge/noarch/iris-3.13.1-pyha770c72_0.conda hash: - md5: a5e36260789ce92074c3736533ecdd61 - sha256: fd7d396ec94a353a92b3377231bca078e40291bbcec96ff507cc185712d064cf + md5: 33d150f58eb36070d2b8ad6dd1bd50d7 + sha256: 682de62c611c1547317d53ba3bd48f1cf7f7f569f9cfc61298b751842de32180 category: main optional: false - name: iris - version: 3.11.0 + version: 3.13.1 manager: conda platform: osx-arm64 dependencies: - scipy: '' - netcdf4: '' - pyproj: '' - python-xxhash: '' - python: '>=3.10' cartopy: '>=0.21' - cftime: '>=1.5' cf-units: '>=3.1' + cftime: '>=1.5' + dask-core: '>=2025.1.0' libnetcdf: '!=4.9.1' - shapely: '!=1.8.3' matplotlib-base: '>=3.5,!=3.9.1' + netcdf4: '' numpy: '>=1.24,!=1.24.3' - dask-core: '>=2022.9.0,!=2024.8.0' - url: https://conda.anaconda.org/conda-forge/noarch/iris-3.11.0-pyha770c72_0.conda + pyproj: '' + python: '>=3.11' + python-xxhash: '' + scipy: '' + shapely: '!=1.8.3' + url: https://conda.anaconda.org/conda-forge/noarch/iris-3.13.1-pyha770c72_0.conda hash: - md5: a5e36260789ce92074c3736533ecdd61 - sha256: fd7d396ec94a353a92b3377231bca078e40291bbcec96ff507cc185712d064cf + md5: 33d150f58eb36070d2b8ad6dd1bd50d7 + sha256: 682de62c611c1547317d53ba3bd48f1cf7f7f569f9cfc61298b751842de32180 category: main optional: false - name: iris-esmf-regrid - version: 0.11.0 + version: 0.12.1 manager: conda platform: linux-64 dependencies: @@ -6915,50 +7236,50 @@ package: esmpy: '>=7.0' iris: '>=3' numpy: '>=1.14' - python: '>=3.10' + python: '>=3.11' scipy: '' - url: https://conda.anaconda.org/conda-forge/noarch/iris-esmf-regrid-0.11.0-pyhd8ed1ab_2.conda + url: https://conda.anaconda.org/conda-forge/noarch/iris-esmf-regrid-0.12.1-pyhd8ed1ab_0.conda hash: - md5: c9e172cc404daa39419d46f1cc5f83bc - sha256: 84d9a7f7032446ab246e8d1cd0e1550074b6c8e44f700bca07c4c1d35ff86f33 + md5: d2559adb7d967418c23ecd49e55d7301 + sha256: d145794d78cbfd52a43e390e7254038eae74945579da7037782b4767a8134a96 category: main optional: false - name: iris-esmf-regrid - version: 0.11.0 + version: 0.12.1 manager: conda platform: osx-64 dependencies: - scipy: '' - dask: '' - cf-units: '' - python: '>=3.10' - numpy: '>=1.14' - iris: '>=3' cartopy: '>=0.18' + cf-units: '' + dask: '' esmpy: '>=7.0' - url: https://conda.anaconda.org/conda-forge/noarch/iris-esmf-regrid-0.11.0-pyhd8ed1ab_2.conda + iris: '>=3' + numpy: '>=1.14' + python: '>=3.11' + scipy: '' + url: https://conda.anaconda.org/conda-forge/noarch/iris-esmf-regrid-0.12.1-pyhd8ed1ab_0.conda hash: - md5: c9e172cc404daa39419d46f1cc5f83bc - sha256: 84d9a7f7032446ab246e8d1cd0e1550074b6c8e44f700bca07c4c1d35ff86f33 + md5: d2559adb7d967418c23ecd49e55d7301 + sha256: d145794d78cbfd52a43e390e7254038eae74945579da7037782b4767a8134a96 category: main optional: false - name: iris-esmf-regrid - version: 0.11.0 + version: 0.12.1 manager: conda platform: osx-arm64 dependencies: - scipy: '' - dask: '' - cf-units: '' - python: '>=3.10' - numpy: '>=1.14' - iris: '>=3' cartopy: '>=0.18' + cf-units: '' + dask: '' esmpy: '>=7.0' - url: https://conda.anaconda.org/conda-forge/noarch/iris-esmf-regrid-0.11.0-pyhd8ed1ab_2.conda + iris: '>=3' + numpy: '>=1.14' + python: '>=3.11' + scipy: '' + url: https://conda.anaconda.org/conda-forge/noarch/iris-esmf-regrid-0.12.1-pyhd8ed1ab_0.conda hash: - md5: c9e172cc404daa39419d46f1cc5f83bc - sha256: 84d9a7f7032446ab246e8d1cd0e1550074b6c8e44f700bca07c4c1d35ff86f33 + md5: d2559adb7d967418c23ecd49e55d7301 + sha256: d145794d78cbfd52a43e390e7254038eae74945579da7037782b4767a8134a96 category: main optional: false - name: iris-grib @@ -6981,10 +7302,10 @@ package: manager: conda platform: osx-64 dependencies: - python: '>=3.10' + eccodes: '>=2.33' iris: '>=3.0.2' + python: '>=3.10' python-eccodes: '>=1.6.1' - eccodes: '>=2.33' url: https://conda.anaconda.org/conda-forge/noarch/iris-grib-0.21.0-pyhd8ed1ab_0.conda hash: md5: d5a110459acc9669c58e5d516fc2e165 @@ -6996,10 +7317,10 @@ package: manager: conda platform: osx-arm64 dependencies: - python: '>=3.10' + eccodes: '>=2.33' iris: '>=3.0.2' + python: '>=3.10' python-eccodes: '>=1.6.1' - eccodes: '>=2.33' url: https://conda.anaconda.org/conda-forge/noarch/iris-grib-0.21.0-pyhd8ed1ab_0.conda hash: md5: d5a110459acc9669c58e5d516fc2e165 @@ -7079,44 +7400,45 @@ package: category: main optional: false - name: jasper - version: 4.2.4 + version: 4.2.8 manager: conda platform: linux-64 dependencies: - freeglut: '>=3.2.2,<4.0a0' - libgcc-ng: '>=12' - libglu: '>=9.0.0,<10.0a0' - libjpeg-turbo: '>=3.0.0,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/jasper-4.2.4-h536e39c_0.conda + __glibc: '>=2.17,<3.0.a0' + freeglut: '>=3.2.2,<4.0a0' + libgcc: '>=14' + libglu: '>=9.0.3,<9.1.0a0' + libjpeg-turbo: '>=3.1.0,<4.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/jasper-4.2.8-he3c4edf_0.conda hash: - md5: 9518ab7016cf4564778aef08b6bd8792 - sha256: 0a5ca92ea0261f435c27a3c3c5c5bc5e8b4b1af1343b21ef0cbc7c33b62f5239 + md5: a04073db11c2c86c555fb088acc8f8c1 + sha256: 0e919ec86d980901d8cbb665e91f5e9bddb5ff662178f25aed6d63f999fd9afc category: main optional: false - name: jasper - version: 4.2.4 + version: 4.2.8 manager: conda platform: osx-64 dependencies: - __osx: '>=10.9' - libjpeg-turbo: '>=3.0.0,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/jasper-4.2.4-hb10263b_0.conda + __osx: '>=10.13' + libjpeg-turbo: '>=3.1.0,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/jasper-4.2.8-h9ce442b_0.conda hash: - md5: b7a6171ecee244e2b2a19177ec3c34a9 - sha256: da2c2fa393b89596cf0f81c8e73db2e9b589ae961058317f6fcb4867e05055dd + md5: 155c61380cc98685f4d6237cb19c5f97 + sha256: b095874f61125584d99b4f55a2bba3e4bd9aa61b2d2e4ab8d03372569f0ca01c category: main optional: false - name: jasper - version: 4.2.4 + version: 4.2.8 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' - libjpeg-turbo: '>=3.0.0,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/jasper-4.2.4-h6c4e4ef_0.conda + libjpeg-turbo: '>=3.1.0,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/jasper-4.2.8-hc0e5025_0.conda hash: - md5: 9019e1298c84b0185a60c62741d720dd - sha256: 9c874070f201b64d7ca02b59f1348354ae1c834e969cb83259133bb0406ee7fa + md5: 54d2328b8db98729ab21f60a4aba9f7c + sha256: 0d8a77e026a441c2c65616046a6ddcfffa42c5987bce1c51d352959653e2fb07 category: main optional: false - name: jedi @@ -7137,8 +7459,8 @@ package: manager: conda platform: osx-64 dependencies: - python: '>=3.9' parso: '>=0.8.3,<0.9.0' + python: '>=3.9' url: https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda hash: md5: a4f4c5dc9b80bc50e0d3dc4e6e8f1bd9 @@ -7150,8 +7472,8 @@ package: manager: conda platform: osx-arm64 dependencies: - python: '>=3.9' parso: '>=0.8.3,<0.9.0' + python: '>=3.9' url: https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda hash: md5: a4f4c5dc9b80bc50e0d3dc4e6e8f1bd9 @@ -7176,8 +7498,8 @@ package: manager: conda platform: osx-64 dependencies: - python: '>=3.9' markupsafe: '>=2.0' + python: '>=3.9' url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda hash: md5: 446bd6c8cb26050d528881df495ce646 @@ -7189,8 +7511,8 @@ package: manager: conda platform: osx-arm64 dependencies: - python: '>=3.9' markupsafe: '>=2.0' + python: '>=3.9' url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda hash: md5: 446bd6c8cb26050d528881df495ce646 @@ -7198,42 +7520,42 @@ package: category: main optional: false - name: joblib - version: 1.4.2 + version: 1.5.2 manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '>=3.10' setuptools: '' - url: https://conda.anaconda.org/conda-forge/noarch/joblib-1.4.2-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/joblib-1.5.2-pyhd8ed1ab_0.conda hash: - md5: bf8243ee348f3a10a14ed0cae323e0c1 - sha256: 51cc2dc491668af0c4d9299b0ab750f16ccf413ec5e2391b924108c1fbacae9b + md5: 4e717929cfa0d49cef92d911e31d0e90 + sha256: 6fc414c5ae7289739c2ba75ff569b79f72e38991d61eb67426a8a4b92f90462c category: main optional: false - name: joblib - version: 1.4.2 + version: 1.5.2 manager: conda platform: osx-64 dependencies: + python: '>=3.10' setuptools: '' - python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/joblib-1.4.2-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/joblib-1.5.2-pyhd8ed1ab_0.conda hash: - md5: bf8243ee348f3a10a14ed0cae323e0c1 - sha256: 51cc2dc491668af0c4d9299b0ab750f16ccf413ec5e2391b924108c1fbacae9b + md5: 4e717929cfa0d49cef92d911e31d0e90 + sha256: 6fc414c5ae7289739c2ba75ff569b79f72e38991d61eb67426a8a4b92f90462c category: main optional: false - name: joblib - version: 1.4.2 + version: 1.5.2 manager: conda platform: osx-arm64 dependencies: + python: '>=3.10' setuptools: '' - python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/joblib-1.4.2-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/joblib-1.5.2-pyhd8ed1ab_0.conda hash: - md5: bf8243ee348f3a10a14ed0cae323e0c1 - sha256: 51cc2dc491668af0c4d9299b0ab750f16ccf413ec5e2391b924108c1fbacae9b + md5: 4e717929cfa0d49cef92d911e31d0e90 + sha256: 6fc414c5ae7289739c2ba75ff569b79f72e38991d61eb67426a8a4b92f90462c category: main optional: false - name: json-c @@ -7351,61 +7673,62 @@ package: category: main optional: false - name: keyutils - version: 1.6.1 + version: 1.6.3 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=10.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=13' + url: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.3-hb9d3cd8_0.conda hash: - md5: 30186d27e2c9fa62b45fb1476b7200e3 - sha256: 150c05a6e538610ca7c43beb3a40d65c90537497a4f6a5f4d15ec0451b6f5ebb + md5: b38117a3c920364aff79f870c984b4a3 + sha256: 0960d06048a7185d3542d850986d807c6e37ca2e644342dd0c72feefcf26c2a4 category: main optional: false - name: kiwisolver - version: 1.4.8 + version: 1.4.9 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - libstdcxx: '>=13' - python: '>=3.12,<3.13.0a0' + libgcc: '>=14' + libstdcxx: '>=14' + python: '' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/linux-64/kiwisolver-1.4.8-py312h84d6215_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/kiwisolver-1.4.9-py312h0a2e395_1.conda hash: - md5: 6713467dc95509683bfa3aca08524e8a - sha256: 3ce99d721c1543f6f8f5155e53eef11be47b2f5942a8d1060de6854f9d51f246 + md5: cec5c1ea565944a94f82cdd6fba7cc76 + sha256: 42f856c17ea4b9bce5ac5e91d6e58e15d835a3cac32d71bc592dd5031f9c0fb8 category: main optional: false - name: kiwisolver - version: 1.4.8 + version: 1.4.9 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' - libcxx: '>=18' - python: '>=3.12,<3.13.0a0' + libcxx: '>=19' + python: '' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-64/kiwisolver-1.4.8-py312h9275861_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/kiwisolver-1.4.9-py312hef387a8_1.conda hash: - md5: 88135d68c4ab7e6aedf52765b92acc70 - sha256: 1c14526352cb9ced9ead72977ebbb5fbb167ed021af463f562b3f057c6d412a9 + md5: 33fea04c72a6d7ce222fbc82ebe4492c + sha256: 5dce7103d7abac37c59d0cad59e442c69075fd99a22d1e365c045197632bb05f category: main optional: false - name: kiwisolver - version: 1.4.8 + version: 1.4.9 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' - libcxx: '>=18' - python: '>=3.12,<3.13.0a0' + libcxx: '>=19' + python: 3.12.* python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-arm64/kiwisolver-1.4.8-py312h2c4a281_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/kiwisolver-1.4.9-py312hdc12c9d_1.conda hash: - md5: a94f3ac940c391e7716b6ffd332d7463 - sha256: 01366fa9d65bedb4069266d08c8a7a2ebbe6f25cedf60eebeeb701067f162f68 + md5: 57697b25f636e864e62917dfaa9bfcba + sha256: 3ad43b1e740a7bce1025a61d55a838eae6196f448f05a2f84447ec796d3148d9 category: main optional: false - name: krb5 @@ -7512,8 +7835,8 @@ package: manager: conda platform: osx-64 dependencies: - packaging: '' importlib-metadata: '' + packaging: '' python: '>=3.9' url: https://conda.anaconda.org/conda-forge/noarch/lazy-loader-0.4-pyhd8ed1ab_2.conda hash: @@ -7526,8 +7849,8 @@ package: manager: conda platform: osx-arm64 dependencies: - packaging: '' importlib-metadata: '' + packaging: '' python: '>=3.9' url: https://conda.anaconda.org/conda-forge/noarch/lazy-loader-0.4-pyhd8ed1ab_2.conda hash: @@ -7535,45 +7858,6 @@ package: sha256: d7ea986507090fff801604867ef8e79c8fda8ec21314ba27c032ab18df9c3411 category: main optional: false -- name: lazy_loader - version: '0.4' - manager: conda - platform: linux-64 - dependencies: - lazy-loader: '0.4' - python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/lazy_loader-0.4-pyhd8ed1ab_2.conda - hash: - md5: bb0230917e2473c77d615104dbe8a49d - sha256: e26803188a54cd90df9ce1983af70b287c4918c0fd178a9aabd9f1580f657a2b - category: main - optional: false -- name: lazy_loader - version: '0.4' - manager: conda - platform: osx-64 - dependencies: - python: '>=3.9' - lazy-loader: '0.4' - url: https://conda.anaconda.org/conda-forge/noarch/lazy_loader-0.4-pyhd8ed1ab_2.conda - hash: - md5: bb0230917e2473c77d615104dbe8a49d - sha256: e26803188a54cd90df9ce1983af70b287c4918c0fd178a9aabd9f1580f657a2b - category: main - optional: false -- name: lazy_loader - version: '0.4' - manager: conda - platform: osx-arm64 - dependencies: - python: '>=3.9' - lazy-loader: '0.4' - url: https://conda.anaconda.org/conda-forge/noarch/lazy_loader-0.4-pyhd8ed1ab_2.conda - hash: - md5: bb0230917e2473c77d615104dbe8a49d - sha256: e26803188a54cd90df9ce1983af70b287c4918c0fd178a9aabd9f1580f657a2b - category: main - optional: false - name: lcms2 version: '2.17' manager: conda @@ -7618,51 +7902,51 @@ package: category: main optional: false - name: ld_impl_linux-64 - version: '2.43' + version: '2.44' manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_4.conda + url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.44-h1423503_1.conda hash: - md5: 01f8d123c96816249efd255a31ad7712 - sha256: db73f38155d901a610b2320525b9dd3b31e4949215c870685fd92ea61b5ce472 + md5: 0be7c6e070c19105f966d3758448d018 + sha256: 1a620f27d79217c1295049ba214c2f80372062fd251b569e9873d4a953d27554 category: main optional: false - name: legacy-cgi - version: 2.6.2 + version: 2.6.3 manager: conda platform: linux-64 dependencies: python: '' - url: https://conda.anaconda.org/conda-forge/noarch/legacy-cgi-2.6.2-pyh41aed27_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/legacy-cgi-2.6.3-pyh41aed27_0.conda hash: - md5: 097b37f4503a319a9631020ecfe0e845 - sha256: aca06fc1d0cdbb342951c5d1187569c5fcfaa6fc10310a7ca88e5e44520f398d + md5: 810ba135fa1cdbf8b6bddc59e8d114ae + sha256: bfc8c3b940082a4cddb0230a68997c1a11702fbc149abc9671af9ac3c6ef5863 category: main optional: false - name: legacy-cgi - version: 2.6.2 + version: 2.6.3 manager: conda platform: osx-64 dependencies: python: '>=3.10' - url: https://conda.anaconda.org/conda-forge/noarch/legacy-cgi-2.6.2-pyh41aed27_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/legacy-cgi-2.6.3-pyh41aed27_0.conda hash: - md5: 097b37f4503a319a9631020ecfe0e845 - sha256: aca06fc1d0cdbb342951c5d1187569c5fcfaa6fc10310a7ca88e5e44520f398d + md5: 810ba135fa1cdbf8b6bddc59e8d114ae + sha256: bfc8c3b940082a4cddb0230a68997c1a11702fbc149abc9671af9ac3c6ef5863 category: main optional: false - name: legacy-cgi - version: 2.6.2 + version: 2.6.3 manager: conda platform: osx-arm64 dependencies: python: '>=3.10' - url: https://conda.anaconda.org/conda-forge/noarch/legacy-cgi-2.6.2-pyh41aed27_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/legacy-cgi-2.6.3-pyh41aed27_0.conda hash: - md5: 097b37f4503a319a9631020ecfe0e845 - sha256: aca06fc1d0cdbb342951c5d1187569c5fcfaa6fc10310a7ca88e5e44520f398d + md5: 810ba135fa1cdbf8b6bddc59e8d114ae + sha256: bfc8c3b940082a4cddb0230a68997c1a11702fbc149abc9671af9ac3c6ef5863 category: main optional: false - name: lerc @@ -7670,12 +7954,13 @@ package: manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2 + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=13' + libstdcxx: '>=13' + url: https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h0aef613_1.conda hash: - md5: 76bbff344f0134279f225174e9064c8f - sha256: cb55f36dcd898203927133280ae1dc643368af041a48bcf7c026acb7c47b0c12 + md5: 9344155d33912347b37f0ae6c410a835 + sha256: 412381a43d5ff9bbed82cd52a0bbca5b90623f62e41007c9c42d3870c60945ff category: main optional: false - name: lerc @@ -7683,11 +7968,12 @@ package: manager: conda platform: osx-64 dependencies: - libcxx: '>=13.0.1' - url: https://conda.anaconda.org/conda-forge/osx-64/lerc-4.0.0-hb486fe8_0.tar.bz2 + __osx: '>=10.13' + libcxx: '>=18' + url: https://conda.anaconda.org/conda-forge/osx-64/lerc-4.0.0-hcca01a6_1.conda hash: - md5: f9d6a4c82889d5ecedec1d90eb673c55 - sha256: e41790fc0f4089726369b3c7f813117bbc14b533e0ed8b94cf75aba252e82497 + md5: 21f765ced1a0ef4070df53cb425e1967 + sha256: cc1f1d7c30aa29da4474ec84026ec1032a8df1d7ec93f4af3b98bb793d01184e category: main optional: false - name: lerc @@ -7695,11 +7981,12 @@ package: manager: conda platform: osx-arm64 dependencies: - libcxx: '>=13.0.1' - url: https://conda.anaconda.org/conda-forge/osx-arm64/lerc-4.0.0-h9a09cb3_0.tar.bz2 + __osx: '>=11.0' + libcxx: '>=18' + url: https://conda.anaconda.org/conda-forge/osx-arm64/lerc-4.0.0-hd64df32_1.conda hash: - md5: de462d5aacda3b30721b512c5da4e742 - sha256: 6f068bb53dfb6147d3147d981bb851bb5477e769407ad4e6a68edf482fdcb958 + md5: a74332d9b60b62905e3d30709df08bf1 + sha256: 12361697f8ffc9968907d1a7b5830e34c670e4a59b638117a2cdfed8f63a38f8 category: main optional: false - name: libabseil @@ -7743,40 +8030,43 @@ package: category: main optional: false - name: libaec - version: 1.1.3 + version: 1.1.4 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=13' + libstdcxx: '>=13' + url: https://conda.anaconda.org/conda-forge/linux-64/libaec-1.1.4-h3f801dc_0.conda hash: - md5: 5e97e271911b8b2001a8b71860c32faa - sha256: 2ef420a655528bca9d269086cf33b7e90d2f54ad941b437fb1ed5eca87cee017 + md5: 01ba04e414e47f95c03d6ddd81fd37be + sha256: 410ab78fe89bc869d435de04c9ffa189598ac15bb0fe1ea8ace8fb1b860a2aa3 category: main optional: false - name: libaec - version: 1.1.3 + version: 1.1.4 manager: conda platform: osx-64 dependencies: - libcxx: '>=16' - url: https://conda.anaconda.org/conda-forge/osx-64/libaec-1.1.3-h73e2aa4_0.conda + __osx: '>=10.13' + libcxx: '>=18' + url: https://conda.anaconda.org/conda-forge/osx-64/libaec-1.1.4-ha6bc127_0.conda hash: - md5: 66d3c1f6dd4636216b4fca7a748d50eb - sha256: dae5921339c5d89f4bf58a95fd4e9c76270dbf7f6a94f3c5081b574905fcccf8 + md5: 1a768b826dfc68e07786788d98babfc3 + sha256: f4fe00ef0df58b670696c62f2ec3f6484431acbf366ecfbcb71141c81439e331 category: main optional: false - name: libaec - version: 1.1.3 + version: 1.1.4 manager: conda platform: osx-arm64 dependencies: - libcxx: '>=16' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libaec-1.1.3-hebf3989_0.conda + __osx: '>=11.0' + libcxx: '>=18' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libaec-1.1.4-h51d1e36_0.conda hash: - md5: 6f0b8e56d2e7bae12a18fc5b2cd9f310 - sha256: 896189b7b48a194c46a3556ea04943ef81cbe0498521231f8eb25816a68bc8ed + md5: 8ed0f86b7a5529b98ec73b43a53ce800 + sha256: 0ea6b73b3fb1511615d9648186a7409e73b7a8d9b3d890d39df797730e3d1dbb category: main optional: false - name: libarchive @@ -7787,7 +8077,7 @@ package: __glibc: '>=2.17,<3.0.a0' bzip2: '>=1.0.8,<2.0a0' libgcc: '>=13' - libxml2: '>=2.13.5,<3.0a0' + libxml2: '>=2.13.5,<2.14.0a0' libzlib: '>=1.3.1,<2.0a0' lz4-c: '>=1.9.3,<1.10.0a0' lzo: '>=2.10,<3.0a0' @@ -7808,7 +8098,7 @@ package: __osx: '>=10.13' bzip2: '>=1.0.8,<2.0a0' libiconv: '>=1.17,<2.0a0' - libxml2: '>=2.13.5,<3.0a0' + libxml2: '>=2.13.5,<2.14.0a0' libzlib: '>=1.3.1,<2.0a0' lz4-c: '>=1.9.3,<1.10.0a0' lzo: '>=2.10,<3.0a0' @@ -7829,7 +8119,7 @@ package: __osx: '>=11.0' bzip2: '>=1.0.8,<2.0a0' libiconv: '>=1.17,<2.0a0' - libxml2: '>=2.13.5,<3.0a0' + libxml2: '>=2.13.5,<2.14.0a0' libzlib: '>=1.3.1,<2.0a0' lz4-c: '>=1.9.3,<1.10.0a0' lzo: '>=2.10,<3.0a0' @@ -8093,79 +8383,53 @@ package: sha256: 5fd22a610e14669f0f392aaf7b61511d9a7a5f99a23a3ce4bdf5b2880ddbd244 category: main optional: false -- name: libasprintf - version: 0.23.1 - manager: conda - platform: osx-64 - dependencies: - __osx: '>=10.13' - libcxx: '>=18' - url: https://conda.anaconda.org/conda-forge/osx-64/libasprintf-0.23.1-h27064b9_0.conda - hash: - md5: 43e1d9e1712208ac61941a513259248d - sha256: d6a4fbf497040ab4733c5dc65dd273ed6fa827ce6e67fd12abbe08c3cc3e192e - category: main - optional: false -- name: libasprintf - version: 0.23.1 - manager: conda - platform: osx-arm64 - dependencies: - __osx: '>=11.0' - libcxx: '>=18' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libasprintf-0.23.1-h493aca8_0.conda - hash: - md5: baf9e4423f10a15ca7eab26480007639 - sha256: 2b27d2ede7867fd362f94644aac1d7fb9af7f7fc3f122cb014647b47ffd402a4 - category: main - optional: false - name: libavif16 - version: 1.2.0 + version: 1.3.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' aom: '>=3.9.1,<3.10.0a0' dav1d: '>=1.2.1,<1.2.2.0a0' - libgcc: '>=13' - rav1e: '>=0.6.6,<1.0a0' - svt-av1: '>=3.0.0,<3.0.1.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libavif16-1.2.0-hf3231e4_0.conda + libgcc: '>=14' + rav1e: '>=0.7.1,<0.8.0a0' + svt-av1: '>=3.1.2,<3.1.3.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libavif16-1.3.0-h6395336_2.conda hash: - md5: a9329ba10be85b54f0c6bf76788ed4b1 - sha256: e5b9ab354be66b725a4acdd7a023598558fdace2fbc415ec41b528d02a1fa74b + md5: c09c4ac973f7992ba0c6bb1aafd77bd4 + sha256: e3a44c0eda23aa15c9a8dfa8c82ecf5c8b073e68a16c29edd0e409e687056d30 category: main optional: false - name: libavif16 - version: 1.2.0 + version: 1.3.0 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' aom: '>=3.9.1,<3.10.0a0' dav1d: '>=1.2.1,<1.2.2.0a0' - rav1e: '>=0.6.6,<1.0a0' - svt-av1: '>=3.0.0,<3.0.1.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libavif16-1.2.0-h6214335_0.conda + rav1e: '>=0.7.1,<0.8.0a0' + svt-av1: '>=3.1.2,<3.1.3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libavif16-1.3.0-h1c10324_2.conda hash: - md5: 12123a42fa6a93fd3697860db6d0b02d - sha256: 473455ad6b9b39c66fd2fdf6f6c3ca8400b9f939a54bfe0b4b7afcf3beaa89d4 + md5: 7a3989f64b2781aaf6f5ca26b88afbba + sha256: f5fdb5ed48b905ef0c9ebcba2b9cf5fb041d15dcd50323d5d826650abf609709 category: main optional: false - name: libavif16 - version: 1.2.0 + version: 1.3.0 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' aom: '>=3.9.1,<3.10.0a0' dav1d: '>=1.2.1,<1.2.2.0a0' - rav1e: '>=0.6.6,<1.0a0' - svt-av1: '>=3.0.0,<3.0.1.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libavif16-1.2.0-hf9d1e0e_0.conda + rav1e: '>=0.7.1,<0.8.0a0' + svt-av1: '>=3.1.2,<3.1.3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libavif16-1.3.0-hb06b76e_2.conda hash: - md5: 64c52c1ca687cadb656e00282c9e5a66 - sha256: afe3677b64411ce79af6c42612c1a4a7ea2b537db301674261486544c0bf327e + md5: ab7aaf5c139849228894d3ac72ec8f77 + sha256: 8bd31f1fc65a177815d9abebf42768a1d8b5b07b055d54485bcb4b1beb93993a category: main optional: false - name: libblas @@ -8173,11 +8437,11 @@ package: manager: conda platform: linux-64 dependencies: - libopenblas: '>=0.3.29,<1.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-31_h59b9bed_openblas.conda + libopenblas: '>=0.3.30,<1.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-34_h59b9bed_openblas.conda hash: - md5: 728dbebd0f7a20337218beacffd37916 - sha256: 9839fc4ac0cbb0aa3b9eea520adfb57311838959222654804e58f6f2d1771db5 + md5: 064c22bac20fecf2a99838f9b979374c + sha256: 08a394ba934f68f102298259b150eb5c17a97c30c6da618e1baab4247366eab3 category: main optional: false - name: libblas @@ -8185,11 +8449,11 @@ package: manager: conda platform: osx-64 dependencies: - libopenblas: '>=0.3.29,<1.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libblas-3.9.0-31_h7f60823_openblas.conda + libopenblas: '>=0.3.30,<1.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libblas-3.9.0-34_h7f60823_openblas.conda hash: - md5: a8c1c9f95d1c46d67028a6146c1ea77c - sha256: 2192f9cfa72a1a6127eb1c57a9662eb1b44c6506f2b7517cf021f1262d2bf56d + md5: 3f29ba70f912e56d4be6b55bc213a082 + sha256: ea5d0341df78f7f2d6fe3a03a9b7327958d9e21b4f2d13ef0eddadc335999232 category: main optional: false - name: libblas @@ -8197,11 +8461,11 @@ package: manager: conda platform: osx-arm64 dependencies: - libopenblas: '>=0.3.29,<1.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libblas-3.9.0-31_h10e41b3_openblas.conda + libopenblas: '>=0.3.30,<1.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libblas-3.9.0-34_h10e41b3_openblas.conda hash: - md5: 39b053da5e7035c6592102280aa7612a - sha256: 369586e7688b59b4f92c709b99d847d66d4d095425db327dd32ee5e6ab74697f + md5: cdb3e1ca1661dbf19f9aad7dad524996 + sha256: 5de3c3bfcdc8ba05da1a7815c9953fe392c2065d9efdc2491f91df6d0d1d9e76 category: main optional: false - name: libbrotlicommon @@ -8210,11 +8474,11 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.1.0-hb9d3cd8_2.conda + libgcc: '>=14' + url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.1.0-hb03c661_4.conda hash: - md5: 41b599ed2b02abcfdd84302bff174b23 - sha256: d9db2de60ea917298e658143354a530e9ca5f9c63471c65cf47ab39fd2f429e3 + md5: 1d29d2e33fe59954af82ef54a8af3fe1 + sha256: 2338a92d1de71f10c8cf70f7bb9775b0144a306d75c4812276749f54925612b6 category: main optional: false - name: libbrotlicommon @@ -8223,10 +8487,10 @@ package: platform: osx-64 dependencies: __osx: '>=10.13' - url: https://conda.anaconda.org/conda-forge/osx-64/libbrotlicommon-1.1.0-h00291cd_2.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libbrotlicommon-1.1.0-h1c43f85_4.conda hash: - md5: 58f2c4bdd56c46cc7451596e4ae68e0b - sha256: b377056470a9fb4a100aa3c51b3581aab6496ba84d21cd99bcc1d5ef0359b1b6 + md5: b8e1ee78815e0ba7835de4183304f96b + sha256: 28c1a5f7dbe68342b7341d9584961216bd16f81aa3c7f1af317680213c00b46a category: main optional: false - name: libbrotlicommon @@ -8235,10 +8499,10 @@ package: platform: osx-arm64 dependencies: __osx: '>=11.0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlicommon-1.1.0-hd74edd7_2.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlicommon-1.1.0-h6caf38d_4.conda hash: - md5: d0bf1dff146b799b319ea0434b93f779 - sha256: 839dacb741bdbb25e58f42088a2001b649f4f12195aeb700b5ddfca3267749e5 + md5: 231cffe69d41716afe4525c5c1cc5ddd + sha256: 023b609ecc35bfee7935d65fcc5aba1a3ba6807cbba144a0730198c0914f7c79 category: main optional: false - name: libbrotlidec @@ -8248,11 +8512,11 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libbrotlicommon: 1.1.0 - libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.1.0-hb9d3cd8_2.conda + libgcc: '>=14' + url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.1.0-hb03c661_4.conda hash: - md5: 9566f0bd264fbd463002e759b8a82401 - sha256: 2892d512cad096cb03f1b66361deeab58b64e15ba525d6592bb6d609e7045edf + md5: 5cb5a1c9a94a78f5b23684bcb845338d + sha256: fcec0d26f67741b122f0d5eff32f0393d7ebd3ee6bb866ae2f17f3425a850936 category: main optional: false - name: libbrotlidec @@ -8262,10 +8526,10 @@ package: dependencies: __osx: '>=10.13' libbrotlicommon: 1.1.0 - url: https://conda.anaconda.org/conda-forge/osx-64/libbrotlidec-1.1.0-h00291cd_2.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libbrotlidec-1.1.0-h1c43f85_4.conda hash: - md5: 34709a1f5df44e054c4a12ab536c5459 - sha256: 4d49ea72e2f44d2d7a8be5472e4bd0bc2c6b89c55569de2c43576363a0685c0c + md5: 9cc4be0cc163d793d5d4bcc405c81bf3 + sha256: a287470602e8380c0bdb5e7a45ba3facac644432d7857f27b39d6ceb0dcbf8e9 category: main optional: false - name: libbrotlidec @@ -8275,10 +8539,10 @@ package: dependencies: __osx: '>=11.0' libbrotlicommon: 1.1.0 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlidec-1.1.0-hd74edd7_2.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlidec-1.1.0-h6caf38d_4.conda hash: - md5: 55e66e68ce55523a6811633dd1ac74e2 - sha256: 6c6862eb274f21a7c0b60e5345467a12e6dda8b9af4438c66d496a2c1a538264 + md5: cb7e7fe96c9eee23a464afd57648d2cd + sha256: 7f1cf83a00a494185fc087b00c355674a0f12e924b1b500d2c20519e98fdc064 category: main optional: false - name: libbrotlienc @@ -8288,11 +8552,11 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libbrotlicommon: 1.1.0 - libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlienc-1.1.0-hb9d3cd8_2.conda + libgcc: '>=14' + url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlienc-1.1.0-hb03c661_4.conda hash: - md5: 06f70867945ea6a84d35836af780f1de - sha256: 779f58174e99de3600e939fa46eddb453ec5d3c60bb46cdaa8b4c127224dbf29 + md5: 2e55011fa483edb8bfe3fd92e860cd79 + sha256: d42c7f0afce21d5279a0d54ee9e64a2279d35a07a90e0c9545caae57d6d7dc57 category: main optional: false - name: libbrotlienc @@ -8302,10 +8566,10 @@ package: dependencies: __osx: '>=10.13' libbrotlicommon: 1.1.0 - url: https://conda.anaconda.org/conda-forge/osx-64/libbrotlienc-1.1.0-h00291cd_2.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libbrotlienc-1.1.0-h1c43f85_4.conda hash: - md5: 691f0dcb36f1ae67f5c489f20ae987ea - sha256: 477d236d389473413a1ccd2bec1b66b2f1d2d7d1b4a57bb56421b7b611a56cd1 + md5: f2c000dc0185561b15de7f969f435e61 + sha256: 820caf0a78770758830adbab97fe300104981a5327683830d162b37bc23399e9 category: main optional: false - name: libbrotlienc @@ -8315,10 +8579,10 @@ package: dependencies: __osx: '>=11.0' libbrotlicommon: 1.1.0 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlienc-1.1.0-hd74edd7_2.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlienc-1.1.0-h6caf38d_4.conda hash: - md5: 4f3a434504c67b2c42565c0b85c1885c - sha256: eeb1eb0d58b9d02bc1b98dc0a058f104ab168eb2f7d1c7bfa0570a12cfcdb7b7 + md5: 4ce5651ae5cd6eebc5899f9bfe0eac3c + sha256: a2f2c1c2369360147c46f48124a3a17f5122e78543275ff9788dc91a1d5819dc category: main optional: false - name: libcblas @@ -8327,10 +8591,10 @@ package: platform: linux-64 dependencies: libblas: 3.9.0 - url: https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-31_he106b2a_openblas.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-34_he106b2a_openblas.conda hash: - md5: abb32c727da370c481a1c206f5159ce9 - sha256: ede8545011f5b208b151fe3e883eb4e31d495ab925ab7b9ce394edca846e0c0d + md5: 148b531b5457ad666ed76ceb4c766505 + sha256: edde454897c7889c0323216516abb570a593de728c585b14ef41eda2b08ddf3a category: main optional: false - name: libcblas @@ -8339,10 +8603,10 @@ package: platform: osx-64 dependencies: libblas: 3.9.0 - url: https://conda.anaconda.org/conda-forge/osx-64/libcblas-3.9.0-31_hff6cab4_openblas.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libcblas-3.9.0-34_hff6cab4_openblas.conda hash: - md5: c655cc2b0c48ec454f7a4db92415d012 - sha256: a64b24e195f7790722e1557ff5ed9ecceaaf85559b182d0d03fa61c1fd60326c + md5: 0f6bf5f39b2301a165389e3624f0c297 + sha256: 393e24b890009d4d4ace5531d39adfd9be3b97040653f6febbb74311dad84146 category: main optional: false - name: libcblas @@ -8351,10 +8615,10 @@ package: platform: osx-arm64 dependencies: libblas: 3.9.0 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libcblas-3.9.0-31_hb3479ef_openblas.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/libcblas-3.9.0-34_hb3479ef_openblas.conda hash: - md5: 7353c2bf0e90834cb70545671996d871 - sha256: f237486cc9118d09d0f3ff8820280de34365f98ee7b7dc5ab923b04c7cbf25a5 + md5: e15018d609b8957c146dcb6c356dd50c + sha256: 6639f6c6b2e76cb1be62cd6d9033bda7dc3fab2e5a80f5be4b5c522c27dcba17 category: main optional: false - name: libcrc32c @@ -8399,14 +8663,15 @@ package: manager: conda platform: linux-64 dependencies: - krb5: '>=1.21.1,<1.22.0a0' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<2.0.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libcups-2.3.3-h4637d8d_4.conda + __glibc: '>=2.17,<3.0.a0' + krb5: '>=1.21.3,<1.22.0a0' + libgcc: '>=13' + libstdcxx: '>=13' + libzlib: '>=1.3.1,<2.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libcups-2.3.3-hb8b1518_5.conda hash: - md5: d4529f4dff3057982a7617c7ac58fde3 - sha256: bc67b9b21078c99c6bd8595fe7e1ed6da1f721007726e717f0449de7032798c4 + md5: d4a250da4737ee127fb1fa6452a9002e + sha256: cb83980c57e311783ee831832eb2c20ecb41e7dee6e86e8b70b8cef0e43eab55 category: main optional: false - name: libcurl @@ -8462,27 +8727,27 @@ package: category: main optional: false - name: libcxx - version: 19.1.7 + version: 21.1.0 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' - url: https://conda.anaconda.org/conda-forge/osx-64/libcxx-19.1.7-hf95d169_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libcxx-21.1.0-h3d58e20_1.conda hash: - md5: 4b8f8dc448d814169dbc58fc7286057d - sha256: 6b2fa3fb1e8cd2000b0ed259e0c4e49cbef7b76890157fac3e494bc659a20330 + md5: d5bb255dcf8d208f30089a5969a0314b + sha256: ff2c82c14232cc0ff8038b3d43dace4a792c05a9b01465448445ac52539dee40 category: main optional: false - name: libcxx - version: 19.1.7 + version: 21.1.0 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-19.1.7-ha82da77_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-21.1.0-hf598326_1.conda hash: - md5: 5b3e1610ff8bd5443476b91d618f5b77 - sha256: 776092346da87a2a23502e14d91eb0c32699c4a1522b7331537bd1c3751dcff5 + md5: 0fb2c0c9b1c1259bc7db75c1342b1d99 + sha256: 58427116dc1b58b13b48163808daa46aacccc2c79d40000f8a3582938876fed7 category: main optional: false - name: libdeflate @@ -8522,28 +8787,14 @@ package: sha256: 243ca6d733954df9522eb9da24f5fe58da7ac19a2ca9438fd4abef5bb2cd1f83 category: main optional: false -- name: libdrm - version: 2.4.124 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - libpciaccess: '>=0.18,<0.19.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libdrm-2.4.124-hb9d3cd8_0.conda - hash: - md5: 8bc89311041d7fcb510238cf0848ccae - sha256: f0d5ffbdf3903a7840184d14c14154b503e1a96767c328f61d99ad24b6963e52 - category: main - optional: false - name: libedit version: 3.1.20250104 manager: conda platform: linux-64 dependencies: - ncurses: '>=6.5,<7.0a0' __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' + ncurses: '>=6.5,<7.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.conda hash: md5: c277e0a4d549b03ac1e9d6cbbe3d017b @@ -8555,8 +8806,8 @@ package: manager: conda platform: osx-64 dependencies: - ncurses: '>=6.5,<7.0a0' __osx: '>=10.13' + ncurses: '>=6.5,<7.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20250104-pl5321ha958ccf_0.conda hash: md5: 1f4ed31220402fcddc083b4bff406868 @@ -8568,27 +8819,14 @@ package: manager: conda platform: osx-arm64 dependencies: - ncurses: '>=6.5,<7.0a0' __osx: '>=11.0' + ncurses: '>=6.5,<7.0a0' url: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20250104-pl5321hafb1f1b_0.conda hash: md5: 44083d2d2c2025afca315c7a172eab2b sha256: 66aa216a403de0bb0c1340a88d1a06adaff66bae2cfd196731aa24db9859d631 category: main optional: false -- name: libegl - version: 1.7.0 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libglvnd: 1.7.0 - url: https://conda.anaconda.org/conda-forge/linux-64/libegl-1.7.0-ha4b6fd6_2.conda - hash: - md5: c151d5eb730e9b7480e6d48c0fc44048 - sha256: 7fd5408d359d05a969133e47af580183fbf38e2235b562193d427bb9dad79723 - category: main - optional: false - name: libev version: '4.33' manager: conda @@ -8661,40 +8899,40 @@ package: category: main optional: false - name: libexpat - version: 2.6.4 + version: 2.7.1 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.4-h5888daf_0.conda + libgcc: '>=14' + url: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.7.1-hecca717_0.conda hash: - md5: db833e03127376d461e1e13e76f09b6c - sha256: 56541b98447b58e52d824bd59d6382d609e11de1f8adf20b23143e353d2b8d26 + md5: 4211416ecba1866fab0c6470986c22d6 + sha256: da2080da8f0288b95dd86765c801c6e166c4619b910b11f9a8446fb852438dc2 category: main optional: false - name: libexpat - version: 2.6.4 + version: 2.7.1 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' - url: https://conda.anaconda.org/conda-forge/osx-64/libexpat-2.6.4-h240833e_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libexpat-2.7.1-h21dd04a_0.conda hash: - md5: 20307f4049a735a78a29073be1be2626 - sha256: d10f43d0c5df6c8cf55259bce0fe14d2377eed625956cddce06f58827d288c59 + md5: 9fdeae0b7edda62e989557d645769515 + sha256: 689862313571b62ee77ee01729dc093f2bf25a2f99415fcfe51d3a6cd31cce7b category: main optional: false - name: libexpat - version: 2.6.4 + version: 2.7.1 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.6.4-h286801f_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.7.1-hec049ff_0.conda hash: - md5: 38d2656dd914feb0cab8c629370768bf - sha256: e42ab5ace927ee7c84e3f0f7d813671e1cf3529f5f06ee5899606630498c2745 + md5: b1ca5f21335782f71a8bd69bdc093f67 + sha256: 8fbb17a56f51e7113ed511c5787e0dec0d4b10ef9df921c4fd1cccca0458f648 category: main optional: false - name: libffi @@ -8704,10 +8942,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.6-h2dba641_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.6-h2dba641_1.conda hash: - md5: e3eb7806380bc8bcecba6d749ad5f026 - sha256: 67a6c95e33ebc763c1adc3455b9a9ecde901850eb2fceb8e646cc05ef3a663da + md5: ede4673863426c0883c0063d853bbd85 + sha256: 764432d32db45466e87f10621db5b74363a9f847d2b8b1f9743746cd160f06ab category: main optional: false - name: libffi @@ -8716,46 +8954,126 @@ package: platform: osx-64 dependencies: __osx: '>=10.13' - url: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.6-h281671d_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.6-h281671d_1.conda hash: - md5: b8667b0d0400b8dcb6844d8e06b2027d - sha256: 7805fdc536a3da7fb63dc48e040105cd4260c69a1d2bf5804dadd31bde8bab51 + md5: 4ca9ea59839a9ca8df84170fab4ceb41 + sha256: 6394b1bc67c64a21a5cc73d1736d1d4193a64515152e861785c44d2cfc49edf3 category: main optional: false - name: libffi - version: 3.4.2 + version: 3.4.6 manager: conda platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2 + dependencies: + __osx: '>=11.0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.6-h1da3d7d_1.conda + hash: + md5: c215a60c2935b517dcda8cad4705734d + sha256: c6a530924a9b14e193ea9adfe92843de2a806d1b7dbfd341546ece9653129e60 + category: main + optional: false +- name: libfreetype + version: 2.13.3 + manager: conda + platform: linux-64 + dependencies: + libfreetype6: '>=2.13.3' + url: https://conda.anaconda.org/conda-forge/linux-64/libfreetype-2.13.3-ha770c72_1.conda + hash: + md5: 51f5be229d83ecd401fb369ab96ae669 + sha256: 7be9b3dac469fe3c6146ff24398b685804dfc7a1de37607b84abd076f57cc115 + category: main + optional: false +- name: libfreetype + version: 2.13.3 + manager: conda + platform: osx-64 + dependencies: + libfreetype6: '>=2.13.3' + url: https://conda.anaconda.org/conda-forge/osx-64/libfreetype-2.13.3-h694c41f_1.conda + hash: + md5: 07c8d3fbbe907f32014b121834b36dd5 + sha256: afe0e2396844c8cfdd6256ac84cabc9af823b1727f704c137b030b85839537a6 + category: main + optional: false +- name: libfreetype + version: 2.13.3 + manager: conda + platform: osx-arm64 + dependencies: + libfreetype6: '>=2.13.3' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libfreetype-2.13.3-hce30654_1.conda + hash: + md5: d06282e08e55b752627a707d58779b8f + sha256: 1f8c16703fe333cdc2639f7cdaf677ac2120843453222944a7c6c85ec342903c + category: main + optional: false +- name: libfreetype6 + version: 2.13.3 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=13' + libpng: '>=1.6.47,<1.7.0a0' + libzlib: '>=1.3.1,<2.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libfreetype6-2.13.3-h48d6fc4_1.conda + hash: + md5: 3c255be50a506c50765a93a6644f32fe + sha256: 7759bd5c31efe5fbc36a7a1f8ca5244c2eabdbeb8fc1bee4b99cf989f35c7d81 + category: main + optional: false +- name: libfreetype6 + version: 2.13.3 + manager: conda + platform: osx-64 + dependencies: + __osx: '>=10.13' + libpng: '>=1.6.47,<1.7.0a0' + libzlib: '>=1.3.1,<2.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libfreetype6-2.13.3-h40dfd5c_1.conda + hash: + md5: c76e6f421a0e95c282142f820835e186 + sha256: 058165962aa64fc5a6955593212c0e1ea42ca6d6dba60ee61dff612d4c3818d7 + category: main + optional: false +- name: libfreetype6 + version: 2.13.3 + manager: conda + platform: osx-arm64 + dependencies: + __osx: '>=11.0' + libpng: '>=1.6.47,<1.7.0a0' + libzlib: '>=1.3.1,<2.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libfreetype6-2.13.3-h1d14073_1.conda hash: - md5: 086914b672be056eb70fd4285b6783b6 - sha256: 41b3d13efb775e340e4dba549ab5c029611ea6918703096b2eaa9c015c0750ca + md5: b163d446c55872ef60530231879908b9 + sha256: c278df049b1a071841aa0aca140a338d087ea594e07dcf8a871d2cfe0e330e75 category: main optional: false - name: libgcc - version: 14.2.0 + version: 15.1.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' _openmp_mutex: '>=4.5' - url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-14.2.0-h767d61c_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-15.1.0-h767d61c_4.conda hash: - md5: ef504d1acbd74b7cc6849ef8af47dd03 - sha256: 3a572d031cb86deb541d15c1875aaa097baefc0c580b54dc61f5edab99215792 + md5: f406dcbb2e7bef90d793e50e79a2882b + sha256: 144e35c1c2840f2dc202f6915fc41879c19eddbb8fa524e3ca4aa0d14018b26f category: main optional: false - name: libgcc-ng - version: 14.2.0 + version: 15.1.0 manager: conda platform: linux-64 dependencies: - libgcc: 14.2.0 - url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_2.conda + libgcc: 15.1.0 + url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-15.1.0-h69a702a_4.conda hash: - md5: a2222a6ada71fb478682efe483ce0f92 - sha256: fb7558c328b38b2f9d2e412c48da7890e7721ba018d733ebdfea57280df01904 + md5: 28771437ffcd9f3417c66012dc49a3be + sha256: 76ceac93ed98f208363d6e9c75011b0ff7b97b20f003f06461a619557e726637 category: main optional: false - name: libgd @@ -8926,7 +9244,7 @@ package: libtiff: '>=4.6.0,<4.8.0a0' libuuid: '>=2.38.1,<3.0a0' libwebp-base: '>=1.4.0,<2.0a0' - libxml2: '>=2.12.7,<3.0a0' + libxml2: '>=2.12.7,<2.14.0a0' libzlib: '>=1.3.1,<2.0a0' lz4-c: '>=1.9.3,<1.10.0a0' openssl: '>=3.3.2,<4.0a0' @@ -8966,7 +9284,7 @@ package: libsqlite: '>=3.46.1,<4.0a0' libtiff: '>=4.6.0,<4.8.0a0' libwebp-base: '>=1.4.0,<2.0a0' - libxml2: '>=2.12.7,<3.0a0' + libxml2: '>=2.12.7,<2.14.0a0' libzlib: '>=1.3.1,<2.0a0' lz4-c: '>=1.9.3,<1.10.0a0' openssl: '>=3.3.2,<4.0a0' @@ -9006,7 +9324,7 @@ package: libsqlite: '>=3.46.1,<4.0a0' libtiff: '>=4.6.0,<4.8.0a0' libwebp-base: '>=1.4.0,<2.0a0' - libxml2: '>=2.12.7,<3.0a0' + libxml2: '>=2.12.7,<2.14.0a0' libzlib: '>=1.3.1,<2.0a0' lz4-c: '>=1.9.3,<1.10.0a0' openssl: '>=3.3.2,<4.0a0' @@ -9636,44 +9954,16 @@ package: sha256: ad62f074cd24ebf915b2e715e2d2a1e315795672444b7be1be0c6ddd7f51b0e4 category: main optional: false -- name: libgettextpo - version: 0.23.1 - manager: conda - platform: osx-64 - dependencies: - __osx: '>=10.13' - libiconv: '>=1.17,<2.0a0' - libintl: 0.23.1 - url: https://conda.anaconda.org/conda-forge/osx-64/libgettextpo-0.23.1-h27064b9_0.conda - hash: - md5: 352ffb2b7788775a65a32c018d972a8a - sha256: 52c2423df75223df4ebee991eb33e3827b9d360957211022246145b99c672dc5 - category: main - optional: false -- name: libgettextpo - version: 0.23.1 - manager: conda - platform: osx-arm64 - dependencies: - __osx: '>=11.0' - libiconv: '>=1.17,<2.0a0' - libintl: 0.23.1 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libgettextpo-0.23.1-h493aca8_0.conda - hash: - md5: 18ad77def4cb7326692033eded9c815d - sha256: 4dbd3f698d027330033f06778567eda5b985e2348ca92900083654a114ddd051 - category: main - optional: false - name: libgfortran - version: 14.2.0 + version: 15.1.0 manager: conda platform: linux-64 dependencies: - libgfortran5: 14.2.0 - url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-14.2.0-h69a702a_2.conda + libgfortran5: 15.1.0 + url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-15.1.0-h69a702a_4.conda hash: - md5: fb54c4ea68b460c278d26eea89cfbcc3 - sha256: e05263e8960da03c341650f2a3ffa4ccae4e111cb198e8933a2908125459e5a6 + md5: 53e876bc2d2648319e94c33c57b9ec74 + sha256: 2fe41683928eb3c57066a60ec441e605a69ce703fc933d6d5167debfeba8a144 category: main optional: false - name: libgfortran @@ -9681,11 +9971,11 @@ package: manager: conda platform: osx-64 dependencies: - libgfortran5: 13.2.0 - url: https://conda.anaconda.org/conda-forge/osx-64/libgfortran-5.0.0-13_2_0_h97931a8_3.conda + libgfortran5: 14.2.0 + url: https://conda.anaconda.org/conda-forge/osx-64/libgfortran-5.0.0-14_2_0_h51e75f0_103.conda hash: - md5: 0b6e23a012ee7a9a5f6b244f5a92c1d5 - sha256: 4874422e567b68334705c135c17e5acdca1404de8255673ce30ad3510e00be0d + md5: 090b3c9ae1282c8f9b394ac9e4773b10 + sha256: 124dcd89508bd16f562d9d3ce6a906336a7f18e963cd14f2877431adee14028e category: main optional: false - name: libgfortran @@ -9693,125 +9983,111 @@ package: manager: conda platform: osx-arm64 dependencies: - libgfortran5: 13.2.0 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran-5.0.0-13_2_0_hd922786_3.conda + libgfortran5: 14.2.0 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran-5.0.0-14_2_0_h6c33f7e_103.conda hash: - md5: 4a55d9e169114b2b90d3ec4604cd7bbf - sha256: 44e541b4821c96b28b27fef5630883a60ce4fee91fd9c79f25a199f8f73f337b + md5: 044a210bc1d5b8367857755665157413 + sha256: 8628746a8ecd311f1c0d14bb4f527c18686251538f7164982ccbe3b772de58b5 category: main optional: false - name: libgfortran-ng - version: 14.2.0 + version: 15.1.0 manager: conda platform: linux-64 dependencies: - libgfortran: 14.2.0 - url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-14.2.0-h69a702a_2.conda + libgfortran: 15.1.0 + url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-15.1.0-h69a702a_4.conda hash: - md5: 4056c857af1a99ee50589a941059ec55 - sha256: 688a5968852e677d2a64974c8869ffb120eac21997ced7d15c599f152ef6857e + md5: b1a97c0f2c4f1bb2b8872a21fc7e17a7 + sha256: a5713d8e5a92b4522de132b82368ba93a061e47bc15e6b638c745f28c67fec31 category: main optional: false - name: libgfortran5 - version: 14.2.0 + version: 15.1.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14.2.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-14.2.0-hf1ad2bd_2.conda + libgcc: '>=15.1.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-15.1.0-hcea5267_4.conda hash: - md5: 556a4fdfac7287d349b8f09aba899693 - sha256: c17b7cf3073a1f4e1f34d50872934fa326346e104d3c445abc1e62481ad6085c + md5: 8a4ab7ff06e4db0be22485332666da0f + sha256: 3070e5e2681f7f2fb7af0a81b92213f9ab430838900da8b4f9b8cf998ddbdd84 category: main optional: false - name: libgfortran5 - version: 13.2.0 + version: 14.2.0 manager: conda platform: osx-64 dependencies: llvm-openmp: '>=8.0.0' - url: https://conda.anaconda.org/conda-forge/osx-64/libgfortran5-13.2.0-h2873a65_3.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libgfortran5-14.2.0-h51e75f0_103.conda hash: - md5: e4fb4d23ec2870ff3c40d10afe305aec - sha256: da3db4b947e30aec7596a3ef92200d17e774cccbbf7efc47802529a4ca5ca31b + md5: 6183f7e9cd1e7ba20118ff0ca20a05e5 + sha256: d2ac5e09587e5b21b7bb5795d24f33257e44320749c125448611211088ef8795 category: main optional: false - name: libgfortran5 - version: 13.2.0 + version: 14.2.0 manager: conda platform: osx-arm64 dependencies: llvm-openmp: '>=8.0.0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran5-13.2.0-hf226fd6_3.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran5-14.2.0-h6c33f7e_103.conda hash: - md5: 66ac81d54e95c534ae488726c1f698ea - sha256: bafc679eedb468a86aa4636061c55966186399ee0a04b605920d208d97ac579a - category: main - optional: false -- name: libgl - version: 1.7.0 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libglvnd: 1.7.0 - libglx: 1.7.0 - url: https://conda.anaconda.org/conda-forge/linux-64/libgl-1.7.0-ha4b6fd6_2.conda - hash: - md5: 928b8be80851f5d8ffb016f9c81dae7a - sha256: dc2752241fa3d9e40ce552c1942d0a4b5eeb93740c9723873f6fcf8d39ef8d2d + md5: 69806c1e957069f1d515830dcc9f6cbb + sha256: 8599453990bd3a449013f5fa3d72302f1c68f0680622d419c3f751ff49f01f17 category: main optional: false - name: libglib - version: 2.82.2 + version: 2.84.1 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libffi: '>=3.4,<4.0a0' + libffi: '>=3.4.6,<3.5.0a0' libgcc: '>=13' - libiconv: '>=1.17,<2.0a0' + libiconv: '>=1.18,<2.0a0' libzlib: '>=1.3.1,<2.0a0' pcre2: '>=10.44,<10.45.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libglib-2.82.2-h2ff4ddf_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libglib-2.84.1-h2ff4ddf_0.conda hash: - md5: 37d1af619d999ee8f1f73cf5a06f4e2f - sha256: f0804a9e46ae7b32ca698d26c1c95aa82a91f71b6051883d4a46bea725be9ea4 + md5: 0305434da649d4fb48a425e588b79ea6 + sha256: 18e354d30a60441b0bf5fcbb125b6b22fd0df179620ae834e2533d44d1598211 category: main optional: false - name: libglib - version: 2.82.2 + version: 2.84.0 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' libffi: '>=3.4,<4.0a0' - libiconv: '>=1.17,<2.0a0' - libintl: '>=0.22.5,<1.0a0' + libiconv: '>=1.18,<2.0a0' + libintl: '>=0.23.1,<1.0a0' libzlib: '>=1.3.1,<2.0a0' pcre2: '>=10.44,<10.45.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libglib-2.82.2-h5c976ab_1.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libglib-2.84.0-h5c976ab_0.conda hash: - md5: 05e05255a2e9c5e9c1b6322d84b4999b - sha256: 78fab559eefc52856331462304a4c55c054fa8f0b0feb31ff5496d06c08342ba + md5: 9d9e772b8e01ce350ddff9b277503514 + sha256: 6345cb63429ca1d216e47502a04dcce8b9f8a4fe08547cef42bbc040dc453b9e category: main optional: false - name: libglib - version: 2.82.2 + version: 2.84.0 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' libffi: '>=3.4,<4.0a0' - libiconv: '>=1.17,<2.0a0' - libintl: '>=0.22.5,<1.0a0' + libiconv: '>=1.18,<2.0a0' + libintl: '>=0.23.1,<1.0a0' libzlib: '>=1.3.1,<2.0a0' pcre2: '>=10.44,<10.45.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libglib-2.82.2-hdff4504_1.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/libglib-2.84.0-hdff4504_0.conda hash: - md5: 849da57c370384ce48bef2e050488882 - sha256: d002aeaa51424e331f8504a54b6ba4388a6011a0ebcac29296f3d14282bf733b + md5: 86bdf23c648be3498294c4ab861e7090 + sha256: 70a414faef075e11e7a51861e9e9c953d8373b0089070f98136a7578d8cda67e category: main optional: false - name: libglu @@ -9820,20 +10096,13 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libdrm: '>=2.4.123,<2.5.0a0' - libegl: '>=1.7.0,<2.0a0' libgcc: '>=13' - libgl: '>=1.7.0,<2.0a0' + libopengl: '>=1.7.0,<2.0a0' libstdcxx: '>=13' - libxcb: '>=1.17.0,<2.0a0' - xorg-libx11: '>=1.8.10,<2.0a0' - xorg-libxdamage: '>=1.1.6,<2.0a0' - xorg-libxext: '>=1.3.6,<2.0a0' - xorg-libxxf86vm: '>=1.1.5,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libglu-9.0.3-h03adeef_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libglu-9.0.3-h5888daf_1.conda hash: - md5: b1df5affe904efe82ef890826b68881d - sha256: cabd78b5ede1f3f161037d3a6cfb6b8a262ec474f9408859c364ef55ba778097 + md5: 8422fcc9e5e172c91e99aef703b3ce65 + sha256: a0105eb88f76073bbb30169312e797ed5449ebb4e964a756104d6e54633d17ef category: main optional: false - name: libglvnd @@ -9848,30 +10117,16 @@ package: sha256: 1175f8a7a0c68b7f81962699751bb6574e6f07db4c9f72825f978e3016f46850 category: main optional: false -- name: libglx - version: 1.7.0 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libglvnd: 1.7.0 - xorg-libx11: '>=1.8.10,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libglx-1.7.0-ha4b6fd6_2.conda - hash: - md5: c8013e438185f33b13814c5c488acd5c - sha256: 2d35a679624a93ce5b3e9dd301fff92343db609b79f0363e6d0ceb3a6478bfa7 - category: main - optional: false - name: libgomp - version: 14.2.0 + version: 15.1.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.2.0-h767d61c_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-15.1.0-h767d61c_4.conda hash: - md5: 06d02030237f4d5b3d9a7e7d348fe3c6 - sha256: 1a3130e0b9267e781b89399580f3163632d59fe5b0142900d63052ab1a53490e + md5: 3baf8976c96134738bba224e9ef6b1e5 + sha256: e0487a8fec78802ac04da0ac1139c3510992bc58a58cde66619dde3b363c2933 category: main optional: false - name: libgoogle-cloud @@ -10047,40 +10302,43 @@ package: category: main optional: false - name: libhwy - version: 1.1.0 + version: 1.3.0 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libhwy-1.1.0-h00ab1b0_0.conda + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=14' + libstdcxx: '>=14' + url: https://conda.anaconda.org/conda-forge/linux-64/libhwy-1.3.0-h4c17acf_0.conda hash: - md5: 88928158ccfe797eac29ef5e03f7d23d - sha256: a9d4fd23f63a729d3f3e6b958c30c588db51697a7e62268068e5bd945ff8a101 + md5: c563a24389a37a802c72e0c1a11bdd56 + sha256: 90db350957e1ee3b7122ededf0edf02f9cae5b1d3e119a6b1bc32af40adb1a5b category: main optional: false - name: libhwy - version: 1.1.0 + version: 1.3.0 manager: conda platform: osx-64 dependencies: - libcxx: '>=16' - url: https://conda.anaconda.org/conda-forge/osx-64/libhwy-1.1.0-h7728843_0.conda + __osx: '>=10.13' + libcxx: '>=19' + url: https://conda.anaconda.org/conda-forge/osx-64/libhwy-1.3.0-h52c1457_0.conda hash: - md5: 1e87bbdfa248e26a2d13c0a8e8d63d08 - sha256: 153504156c3e35496e07af7dc8c25e29fe894632985cebce239a9609e1a70daa + md5: 8655e0d3c48ae7e7123d38a890672846 + sha256: 1baa50ca0084241032e554ab333d836d46d4863a6a5fbc54396cbfd679552efb category: main optional: false - name: libhwy - version: 1.1.0 + version: 1.3.0 manager: conda platform: osx-arm64 dependencies: - libcxx: '>=16' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libhwy-1.1.0-h2ffa867_0.conda + __osx: '>=11.0' + libcxx: '>=19' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libhwy-1.3.0-hf6a9ce8_0.conda hash: - md5: 6b0da720436e6410f6624f17aece6af2 - sha256: 2bab9c7cf1a84bc6add78fe7c4285fd20dfb8461f36e24802fcffb77bc6a10b9 + md5: e1a6ee4bae4d546dc640aed7b2b4eb7f + sha256: 33db242a62139c9ba55741d0119609376761e235230ea4a3f61b702d12d9a465 category: main optional: false - name: libiconv @@ -10089,11 +10347,11 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.18-h4ce23a2_1.conda + libgcc: '>=14' + url: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.18-h3b78370_2.conda hash: - md5: e796ff8ddc598affdf7c173d6145f087 - sha256: 18a4afe14f731bfb9cf388659994263904d20111e42f841e9eea1bb6f91f4ab4 + md5: 915f5995e94f60e9a4826e0b0920ee88 + sha256: c467851a7312765447155e071752d7bf9bf44d610a5687e32706f480aad2833f category: main optional: false - name: libiconv @@ -10102,10 +10360,10 @@ package: platform: osx-64 dependencies: __osx: '>=10.13' - url: https://conda.anaconda.org/conda-forge/osx-64/libiconv-1.18-h4b5e92a_1.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libiconv-1.18-h57a12c2_2.conda hash: - md5: 6283140d7b2b55b6b095af939b71b13f - sha256: c2a9c65a245c7bcb8c17c94dd716dad2d42b7c98e0c17cc5553a5c60242c4dda + md5: 210a85a1119f97ea7887188d176db135 + sha256: a1c8cecdf9966921e13f0ae921309a1f415dfbd2b791f2117cf7e8f5e61a48b6 category: main optional: false - name: libiconv @@ -10114,70 +10372,73 @@ package: platform: osx-arm64 dependencies: __osx: '>=11.0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.18-hfe07756_1.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.18-h23cfdf5_2.conda hash: - md5: 450e6bdc0c7d986acf7b8443dce87111 - sha256: d30780d24bf3a30b4f116fca74dedb4199b34d500fe6c52cced5f8cc1e926f03 + md5: 4d5a7445f0b25b6a3ddbb56e790f5251 + sha256: de0336e800b2af9a40bdd694b03870ac4a848161b35c8a2325704f123f185f03 category: main optional: false - name: libintl - version: 0.23.1 + version: 0.25.1 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' - libiconv: '>=1.17,<2.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libintl-0.23.1-h27064b9_0.conda + libiconv: '>=1.18,<2.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libintl-0.25.1-h3184127_1.conda hash: - md5: 4182fe11073548596723d9cd2c23b1ac - sha256: 1bce54e6c76064032129ba138898a5b188d9415c533eb585f89d48b04e00e576 + md5: a8e54eefc65645193c46e8b180f62d22 + sha256: 8c352744517bc62d24539d1ecc813b9fdc8a785c780197c5f0b84ec5b0dfe122 category: main optional: false - name: libintl - version: 0.23.1 + version: 0.25.1 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' - libiconv: '>=1.17,<2.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libintl-0.23.1-h493aca8_0.conda + libiconv: '>=1.18,<2.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libintl-0.25.1-h493aca8_0.conda hash: - md5: 7b8faf3b5fc52744bda99c4cd1d6438d - sha256: 30d2a8a37070615a61777ce9317968b54c2197d04e9c6c2eea6cdb46e47f94dc + md5: 5103f6a6b210a3912faf8d7db516918c + sha256: 99d2cebcd8f84961b86784451b010f5f0a795ed1c08f1e7c76fbb3c22abf021a category: main optional: false - name: libjpeg-turbo - version: 3.0.0 + version: 3.1.0 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libjpeg-turbo-3.0.0-hd590300_1.conda + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=13' + url: https://conda.anaconda.org/conda-forge/linux-64/libjpeg-turbo-3.1.0-hb9d3cd8_0.conda hash: - md5: ea25936bb4080d843790b586850f82b8 - sha256: b954e09b7e49c2f2433d6f3bb73868eda5e378278b0f8c1dd10a7ef090e14f2f + md5: 9fa334557db9f63da6c9285fd2a48638 + sha256: 98b399287e27768bf79d48faba8a99a2289748c65cd342ca21033fab1860d4a4 category: main optional: false - name: libjpeg-turbo - version: 3.0.0 + version: 3.1.0 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libjpeg-turbo-3.0.0-h0dc2134_1.conda + dependencies: + __osx: '>=10.13' + url: https://conda.anaconda.org/conda-forge/osx-64/libjpeg-turbo-3.1.0-h6e16a3a_0.conda hash: - md5: 72507f8e3961bc968af17435060b6dd6 - sha256: d9572fd1024adc374aae7c247d0f29fdf4b122f1e3586fe62acc18067f40d02f + md5: 87537967e6de2f885a9fcebd42b7cb10 + sha256: 9c0009389c1439ec96a08e3bf7731ac6f0eab794e0a133096556a9ae10be9c27 category: main optional: false - name: libjpeg-turbo - version: 3.0.0 + version: 3.1.0 manager: conda platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/libjpeg-turbo-3.0.0-hb547adb_1.conda + dependencies: + __osx: '>=11.0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libjpeg-turbo-3.1.0-h5505292_0.conda hash: - md5: 3ff1e053dc3a2b8e36b9bfa4256a58d1 - sha256: a42054eaa38e84fc1e5ab443facac4bbc9d1b6b6f23f54b7bf4f1eb687e1d993 + md5: 01caa4fbcaf0e6b08b3aef1151e91745 + sha256: 78df2574fa6aa5b6f5fc367c03192f8ddf8e27dc23641468d54e031ff560b9d4 category: main optional: false - name: libjxl @@ -10188,13 +10449,13 @@ package: __glibc: '>=2.17,<3.0.a0' libbrotlidec: '>=1.1.0,<1.2.0a0' libbrotlienc: '>=1.1.0,<1.2.0a0' - libgcc: '>=13' - libhwy: '>=1.1.0,<1.2.0a0' - libstdcxx: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/libjxl-0.11.1-hdb8da77_0.conda + libgcc: '>=14' + libhwy: '>=1.3.0,<1.4.0a0' + libstdcxx: '>=14' + url: https://conda.anaconda.org/conda-forge/linux-64/libjxl-0.11.1-h0a47e8d_3.conda hash: - md5: 32b23f3487beae7e81495fbc1099ae9e - sha256: 0c7c921e182900d65206bef27ef9de491d2b5efe17a5b7a8e200227e123cd826 + md5: 509f4010a8345b36c81fa795dffcd25a + sha256: 9ee657d54996bc8ebe5506ea4a883d522867c86adb8bc5393c04f857990329ae category: main optional: false - name: libjxl @@ -10205,12 +10466,12 @@ package: __osx: '>=10.13' libbrotlidec: '>=1.1.0,<1.2.0a0' libbrotlienc: '>=1.1.0,<1.2.0a0' - libcxx: '>=18' - libhwy: '>=1.1.0,<1.2.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libjxl-0.11.1-ha9171ad_0.conda + libcxx: '>=19' + libhwy: '>=1.3.0,<1.4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libjxl-0.11.1-h1582b31_3.conda hash: - md5: d01427151f55fe5f2c1d28e358a02372 - sha256: 0caeb918b3cf1f0983084ead2b9d03af637a8298e43067d38f6ab96a8838dcd2 + md5: 25080604df58cd0de32ce63dee73e8a8 + sha256: 1b26824c09ec36afe35fcf689611c25252f35e5067d919637c3abf88ab785c7a category: main optional: false - name: libjxl @@ -10221,12 +10482,12 @@ package: __osx: '>=11.0' libbrotlidec: '>=1.1.0,<1.2.0a0' libbrotlienc: '>=1.1.0,<1.2.0a0' - libcxx: '>=18' - libhwy: '>=1.1.0,<1.2.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libjxl-0.11.1-h562e088_0.conda + libcxx: '>=19' + libhwy: '>=1.3.0,<1.4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libjxl-0.11.1-h310c780_3.conda hash: - md5: 20f16be5f5f94ea0d93ce3766a84e9d9 - sha256: 32eb886974d44171dd8b28f41c8201e3e274a0ac23be4d0c869064e0941c087b + md5: ca173aa37a0e2fde43bd2113fb8697a0 + sha256: 2e9c25d04bf96a9069ed1228a988ae4fadaf0f6c9fb78592369b6cb9a35e22bc category: main optional: false - name: libkml @@ -10284,10 +10545,10 @@ package: platform: linux-64 dependencies: libblas: 3.9.0 - url: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-31_h7ac8fdf_openblas.conda + url: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-34_h7ac8fdf_openblas.conda hash: - md5: 452b98eafe050ecff932f0ec832dd03f - sha256: f583661921456e798aba10972a8abbd9d33571c655c1f66eff450edc9cbefcf3 + md5: f05a31377b4d9a8d8740f47d1e70b70e + sha256: 9c941d5da239f614b53065bc5f8a705899326c60c9f349d9fbd7bd78298f13ab category: main optional: false - name: liblapack @@ -10296,10 +10557,10 @@ package: platform: osx-64 dependencies: libblas: 3.9.0 - url: https://conda.anaconda.org/conda-forge/osx-64/liblapack-3.9.0-31_h236ab99_openblas.conda + url: https://conda.anaconda.org/conda-forge/osx-64/liblapack-3.9.0-34_h236ab99_openblas.conda hash: - md5: d0f3bc17e0acef003cb9d9195a205888 - sha256: 2d5642b07b56037ab735e5d64309dd905d5acb207a1b2ab1692f811b55a64825 + md5: 8ddbc2de70c2fedfb4cfbcb8d5562ac8 + sha256: 6ecbd5c2b39e40766935c8311238cfbfcf7ca43b5eafc9bb5f883d59c705981e category: main optional: false - name: liblapack @@ -10308,135 +10569,87 @@ package: platform: osx-arm64 dependencies: libblas: 3.9.0 - url: https://conda.anaconda.org/conda-forge/osx-arm64/liblapack-3.9.0-31_hc9a63f6_openblas.conda - hash: - md5: ff57a55a2cbce171ef5707fb463caf19 - sha256: fe55b9aaf82c6c0192c3d1fcc9b8e884f97492dda9a8de5dae29334b3135fab5 - category: main - optional: false -- name: libllvm15 - version: 15.0.7 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - libstdcxx: '>=13' - libxml2: '>=2.13.5,<3.0a0' - libzlib: '>=1.3.1,<2.0a0' - zstd: '>=1.5.6,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libllvm15-15.0.7-ha7bfdaf_5.conda - hash: - md5: f55d1108d59fa85e6a1ded9c70766bd8 - sha256: 7dfa43a79a35debdff93328f9acc3b0ad859929dc7e761160ecbd93275e64e6f - category: main - optional: false -- name: libllvm15 - version: 15.0.7 - manager: conda - platform: osx-64 - dependencies: - __osx: '>=10.13' - libcxx: '>=18' - libxml2: '>=2.13.5,<3.0a0' - libzlib: '>=1.3.1,<2.0a0' - zstd: '>=1.5.6,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libllvm15-15.0.7-hc29ff6c_5.conda - hash: - md5: 526506b4e6846e8e95fc704b9f7a7171 - sha256: 0e1ebc432627c18cff4f49096c681f63a3f0c4626a42f3fc483c3751d316e662 - category: main - optional: false -- name: libllvm15 - version: 15.0.7 - manager: conda - platform: osx-arm64 - dependencies: - __osx: '>=11.0' - libcxx: '>=18' - libxml2: '>=2.13.5,<3.0a0' - libzlib: '>=1.3.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libllvm15-15.0.7-h4429f82_5.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/liblapack-3.9.0-34_hc9a63f6_openblas.conda hash: - md5: e81ccd3b5e036152fe9b7be87282201b - sha256: e2806042e60b1a92747298ea30007f50443e879881886c743d2ade30a1bd7da4 + md5: 94b13d05122e301de02842d021eea5fb + sha256: 659c7cc2d7104c5fa33482d28a6ce085fd116ff5625a117b7dd45a3521bf8efc category: main optional: false - name: liblzma - version: 5.6.4 + version: 5.8.1 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.6.4-hb9d3cd8_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_2.conda hash: - md5: 42d5b6a0f30d3c10cd88cb8584fda1cb - sha256: cad52e10319ca4585bc37f0bc7cce99ec7c15dc9168e42ccb96b741b0a27db3f + md5: 1a580f7796c7bf6393fddb8bbbde58dc + sha256: f2591c0069447bbe28d4d696b7fcb0c5bd0b4ac582769b89addbcf26fb3430d8 category: main optional: false - name: liblzma - version: 5.6.4 + version: 5.8.1 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' - url: https://conda.anaconda.org/conda-forge/osx-64/liblzma-5.6.4-hd471939_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/liblzma-5.8.1-hd471939_2.conda hash: - md5: db9d7b0152613f097cdb61ccf9f70ef5 - sha256: a895b5b16468a6ed436f022d72ee52a657f9b58214b91fabfab6230e3592a6dd + md5: 8468beea04b9065b9807fc8b9cdc5894 + sha256: 7e22fd1bdb8bf4c2be93de2d4e718db5c548aa082af47a7430eb23192de6bb36 category: main optional: false - name: liblzma - version: 5.6.4 + version: 5.8.1 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/liblzma-5.6.4-h39f12f2_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/liblzma-5.8.1-h39f12f2_2.conda hash: - md5: e3fd1f8320a100f2b210e690a57cd615 - sha256: 560c59d3834cc652a84fb45531bd335ad06e271b34ebc216e380a89798fe8e2c + md5: d6df911d4564d77c4374b02552cb17d1 + sha256: 0cb92a9e026e7bd4842f410a5c5c665c89b2eb97794ffddba519a626b8ce7285 category: main optional: false - name: liblzma-devel - version: 5.6.4 + version: 5.8.1 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - liblzma: 5.6.4 - url: https://conda.anaconda.org/conda-forge/linux-64/liblzma-devel-5.6.4-hb9d3cd8_0.conda + liblzma: 5.8.1 + url: https://conda.anaconda.org/conda-forge/linux-64/liblzma-devel-5.8.1-hb9d3cd8_2.conda hash: - md5: 5ab1a0df19c8f3ec00d5e63458e0a420 - sha256: 34928b36a3946902196a6786db80c8a4a97f6c9418838d67be90a1388479a682 + md5: f61edadbb301530bd65a32646bd81552 + sha256: 329e66330a8f9cbb6a8d5995005478188eb4ba8a6b6391affa849744f4968492 category: main optional: false - name: liblzma-devel - version: 5.6.4 + version: 5.8.1 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' - liblzma: 5.6.4 - url: https://conda.anaconda.org/conda-forge/osx-64/liblzma-devel-5.6.4-hd471939_0.conda + liblzma: 5.8.1 + url: https://conda.anaconda.org/conda-forge/osx-64/liblzma-devel-5.8.1-hd471939_2.conda hash: - md5: 06eccf9183d7bfeb45888e07804e6297 - sha256: 0f8c5679cce617a3c45f58a4e984cf2ec920a9b98f4e522fc3e0e6a69a31bf26 + md5: 2e16f5b4f6c92b96f6a346f98adc4e3e + sha256: a020ad9f1e27d4f7a522cbbb9613b99f64a5cc41f80caf62b9fdd1cf818acf18 category: main optional: false - name: liblzma-devel - version: 5.6.4 + version: 5.8.1 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' - liblzma: 5.6.4 - url: https://conda.anaconda.org/conda-forge/osx-arm64/liblzma-devel-5.6.4-h39f12f2_0.conda + liblzma: 5.8.1 + url: https://conda.anaconda.org/conda-forge/osx-arm64/liblzma-devel-5.8.1-h39f12f2_2.conda hash: - md5: 5789af7c91332d5d5693d3afd499b9eb - sha256: b5585156354258a85c7739039b6793e42324d29a24952fac8a9311cf2b6fff7a + md5: 1201137f1a5ec9556032ffc04dcdde8d + sha256: 974804430e24f0b00f3a48b67ec10c9f5441c9bb3d82cc0af51ba45b8a75a241 category: main optional: false - name: libnetcdf @@ -10452,7 +10665,7 @@ package: libcurl: '>=8.8.0,<9.0a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libxml2: '>=2.12.7,<3.0a0' + libxml2: '>=2.12.7,<2.14.0a0' libzip: '>=1.10.1,<2.0a0' libzlib: '>=1.2.13,<2.0a0' openssl: '>=3.3.1,<4.0a0' @@ -10477,7 +10690,7 @@ package: libaec: '>=1.1.3,<2.0a0' libcurl: '>=8.8.0,<9.0a0' libcxx: '>=16' - libxml2: '>=2.12.7,<3.0a0' + libxml2: '>=2.12.7,<2.14.0a0' libzip: '>=1.10.1,<2.0a0' libzlib: '>=1.2.13,<2.0a0' openssl: '>=3.3.1,<4.0a0' @@ -10502,7 +10715,7 @@ package: libaec: '>=1.1.3,<2.0a0' libcurl: '>=8.8.0,<9.0a0' libcxx: '>=16' - libxml2: '>=2.12.7,<3.0a0' + libxml2: '>=2.12.7,<2.14.0a0' libzip: '>=1.10.1,<2.0a0' libzlib: '>=1.2.13,<2.0a0' openssl: '>=3.3.1,<4.0a0' @@ -10515,55 +10728,55 @@ package: category: main optional: false - name: libnghttp2 - version: 1.64.0 + version: 1.67.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - c-ares: '>=1.32.3,<2.0a0' + c-ares: '>=1.34.5,<2.0a0' libev: '>=4.33,<5.0a0' - libgcc: '>=13' - libstdcxx: '>=13' + libgcc: '>=14' + libstdcxx: '>=14' libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.3.2,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.64.0-h161d5f1_0.conda + openssl: '>=3.5.2,<4.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.67.0-had1ee68_0.conda hash: - md5: 19e57602824042dfd0446292ef90488b - sha256: b0f2b3695b13a989f75d8fd7f4778e1c7aabe3b36db83f0fe80b2cd812c0e975 + md5: b499ce4b026493a13774bcf0f4c33849 + sha256: a4a7dab8db4dc81c736e9a9b42bdfd97b087816e029e221380511960ac46c690 category: main optional: false - name: libnghttp2 - version: 1.64.0 + version: 1.67.0 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' - c-ares: '>=1.34.2,<2.0a0' - libcxx: '>=17' + c-ares: '>=1.34.5,<2.0a0' + libcxx: '>=19' libev: '>=4.33,<5.0a0' libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.3.2,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.64.0-hc7306c3_0.conda + openssl: '>=3.5.2,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.67.0-h3338091_0.conda hash: - md5: ab21007194b97beade22ceb7a3f6fee5 - sha256: 0dcfdcf3a445d2d7de4f3b186ab0a794dc872f4ea21622f9b997be72712c027f + md5: e7630cef881b1174d40f3e69a883e55f + sha256: c48d7e1cc927aef83ff9c48ae34dd1d7495c6ccc1edc4a3a6ba6aff1624be9ac category: main optional: false - name: libnghttp2 - version: 1.64.0 + version: 1.67.0 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' - c-ares: '>=1.34.2,<2.0a0' - libcxx: '>=17' + c-ares: '>=1.34.5,<2.0a0' + libcxx: '>=19' libev: '>=4.33,<5.0a0' libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.3.2,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.64.0-h6d7220d_0.conda + openssl: '>=3.5.2,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.67.0-hc438710_0.conda hash: - md5: 3408c02539cee5f1141f9f11450b6a51 - sha256: 00cc685824f39f51be5233b54e19f45abd60de5d8847f1a56906f8936648b72f + md5: a4b4dd73c67df470d091312ab87bf6ae + sha256: a07cb53b5ffa2d5a18afc6fd5a526a5a53dd9523fbc022148bd2f9395697c46d category: main optional: false - name: libnsl @@ -10571,11 +10784,12 @@ package: manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=13' + url: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hb9d3cd8_1.conda hash: - md5: 30fd6e37fe21f86f4bd26d6ee73eeec7 - sha256: 26d77a3bb4dceeedc2a41bd688564fe71bf2d149fdcf117049970bc02ff1add6 + md5: d864d34357c3b65a4b731f78c0801dc4 + sha256: 927fe72b054277cde6cb82597d0fcf6baf127dcbce2e0a9d8925a68f1265eef5 category: main optional: false - name: libntlm @@ -10616,48 +10830,61 @@ package: category: main optional: false - name: libopenblas - version: 0.3.29 + version: 0.3.30 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' libgfortran: '' - libgfortran5: '>=14.2.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.29-pthreads_h94d23a6_0.conda + libgfortran5: '>=14.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.30-pthreads_h94d23a6_2.conda hash: - md5: 0a4d0252248ef9a0f88f2ba8b8a08e12 - sha256: cc5389ea254f111ef17a53df75e8e5209ef2ea6117e3f8aced88b5a8e51f11c4 + md5: dfc5aae7b043d9f56ba99514d5e60625 + sha256: 1b51d1f96e751dc945cc06f79caa91833b0c3326efe24e9b506bd64ef49fc9b0 category: main optional: false - name: libopenblas - version: 0.3.29 + version: 0.3.30 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' libgfortran: 5.* - libgfortran5: '>=13.2.0' + libgfortran5: '>=13.3.0' llvm-openmp: '>=18.1.8' - url: https://conda.anaconda.org/conda-forge/osx-64/libopenblas-0.3.29-openmp_hbf64a52_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libopenblas-0.3.30-openmp_hbf64a52_0.conda hash: - md5: a30dc52b2a8b6300f17eaabd2f940d41 - sha256: fbb413923f91cb80a4d23725816499b921dd87454121efcde107abc7772c937a + md5: 29c54869a3c7d33b6a0add39c5a325fe + sha256: 933eb95a778657649a66b0e3cf638d591283159954c5e92b3918d67347ed47a1 category: main optional: false - name: libopenblas - version: 0.3.29 + version: 0.3.30 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' libgfortran: 5.* - libgfortran5: '>=13.2.0' + libgfortran5: '>=13.3.0' llvm-openmp: '>=18.1.8' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libopenblas-0.3.29-openmp_hf332438_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/libopenblas-0.3.30-openmp_hf332438_0.conda + hash: + md5: 5d7dbaa423b4c253c476c24784286e4b + sha256: 501c8c64f1a6e6b671e49835e6c483bc25f0e7147f3eb4bbb19a4c3673dcaf28 + category: main + optional: false +- name: libopengl + version: 1.7.0 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + libglvnd: 1.7.0 + url: https://conda.anaconda.org/conda-forge/linux-64/libopengl-1.7.0-ha4b6fd6_2.conda hash: - md5: 0cd1148c68f09027ee0b0f0179f77c30 - sha256: 8989d9e01ec8c9b2d48dbb5efbe70b356fcd15990fb53b64fcb84798982c0343 + md5: 7df50d44d4a14d6c31a2c54f2cd92157 + sha256: 215086c108d80349e96051ad14131b751d17af3ed2cb5a34edd62fa89bfe8ead category: main optional: false - name: libparquet @@ -10709,56 +10936,44 @@ package: sha256: fb7ee16e8f9bf60a1f136170231615c1a6f200087f12de4220e0c73f45edcdc6 category: main optional: false -- name: libpciaccess - version: '0.18' - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libpciaccess-0.18-hd590300_0.conda - hash: - md5: 48f4330bfcd959c3cfb704d424903c82 - sha256: c0a30ac74eba66ea76a4f0a39acc7833f5ed783a632ca3bb6665b2d81aabd2fb - category: main - optional: false - name: libpng - version: 1.6.47 + version: 1.6.50 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' + libgcc: '>=14' libzlib: '>=1.3.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.47-h943b412_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.50-h421ea60_1.conda hash: - md5: 55199e2ae2c3651f6f9b2a447b47bdc9 - sha256: 23367d71da58c9a61c8cbd963fcffb92768d4ae5ffbef9a47cdf1f54f98c5c36 + md5: 7af8e91b0deb5f8e25d1a595dea79614 + sha256: e75a2723000ce3a4b9fd9b9b9ce77553556c93e475a4657db6ed01abc02ea347 category: main optional: false - name: libpng - version: 1.6.47 + version: 1.6.50 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' libzlib: '>=1.3.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libpng-1.6.47-h3c4a55f_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libpng-1.6.50-h84aeda2_1.conda hash: - md5: 8461ab86d2cdb76d6e971aab225be73f - sha256: d00a144698debb226a01646c72eff15917eb0143f92c92e1b61ce457d9367b89 + md5: 1fe32bb16991a24e112051cc0de89847 + sha256: 8d92c82bcb09908008d8cf5fab75e20733810d40081261d57ef8cd6495fc08b4 category: main optional: false - name: libpng - version: 1.6.47 + version: 1.6.50 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' libzlib: '>=1.3.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libpng-1.6.47-h3783ad8_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/libpng-1.6.50-h280e0eb_1.conda hash: - md5: 3550e05e3af94a3fa9cef2694417ccdf - sha256: dc93cc30f59b28e7812c6f14d2c2e590b509c38092cce7ababe6b23541b7ed8f + md5: 4d0f5ce02033286551a32208a5519884 + sha256: a2e0240fb0c79668047b528976872307ea80cb330baf8bf6624ac2c6443449df category: main optional: false - name: libpq @@ -10903,19 +11118,19 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - cairo: '>=1.18.2,<2.0a0' - freetype: '>=2.12.1,<3.0a0' + cairo: '>=1.18.4,<2.0a0' + freetype: '>=2.13.3,<3.0a0' gdk-pixbuf: '>=2.42.12,<3.0a0' - harfbuzz: '>=10.1.0,<11.0a0' + harfbuzz: '>=11.0.0,<12.0a0' libgcc: '>=13' - libglib: '>=2.82.2,<3.0a0' - libpng: '>=1.6.44,<1.7.0a0' - libxml2: '>=2.13.5,<3.0a0' - pango: '>=1.54.0,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/librsvg-2.58.4-h49af25d_2.conda + libglib: '>=2.84.0,<3.0a0' + libpng: '>=1.6.47,<1.7.0a0' + libxml2: '>=2.13.7,<2.14.0a0' + pango: '>=1.56.3,<2.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/librsvg-2.58.4-he92a37e_3.conda hash: - md5: b9846db0abffb09847e2cb0fec4b4db6 - sha256: 475013475a3209c24a82f9e80c545d56ccca2fa04df85952852f3d73caa38ff9 + md5: d27665b20bc4d074b86e628b3ba5ab8b + sha256: a45ef03e6e700cc6ac6c375e27904531cf8ade27eb3857e080537ff283fb0507 category: main optional: false - name: librsvg @@ -10924,15 +11139,15 @@ package: platform: osx-64 dependencies: __osx: '>=10.13' - cairo: '>=1.18.2,<2.0a0' + cairo: '>=1.18.4,<2.0a0' gdk-pixbuf: '>=2.42.12,<3.0a0' - libglib: '>=2.82.2,<3.0a0' - libxml2: '>=2.13.5,<3.0a0' - pango: '>=1.54.0,<2.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/librsvg-2.58.4-h21a6cfa_2.conda + libglib: '>=2.84.0,<3.0a0' + libxml2: '>=2.13.7,<2.14.0a0' + pango: '>=1.56.3,<2.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/librsvg-2.58.4-h21a6cfa_3.conda hash: - md5: 0aa68f5a6ebfd2254daae40170439f03 - sha256: 482cde0a3828935edc31c529e15c2686425f64b07a7e52551b6ed672360f2a15 + md5: 213dcdb373bf108d1beb18d33075f51d + sha256: 87432fca28ddfaaf82b3cd12ce4e31fcd963428d1f2c5e2a3aef35dd30e56b71 category: main optional: false - name: librsvg @@ -10941,15 +11156,15 @@ package: platform: osx-arm64 dependencies: __osx: '>=11.0' - cairo: '>=1.18.2,<2.0a0' + cairo: '>=1.18.4,<2.0a0' gdk-pixbuf: '>=2.42.12,<3.0a0' - libglib: '>=2.82.2,<3.0a0' - libxml2: '>=2.13.5,<3.0a0' - pango: '>=1.54.0,<2.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/librsvg-2.58.4-h266df6f_2.conda + libglib: '>=2.84.0,<3.0a0' + libxml2: '>=2.13.7,<2.14.0a0' + pango: '>=1.56.3,<2.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/librsvg-2.58.4-h266df6f_3.conda hash: - md5: 82c31ce77bac095b5700b1fdaad9a628 - sha256: c1ef2c5855166001967952d7525aa2f29707214495c74c2bbb60e691aee45ef0 + md5: 95d6ad8fb7a2542679c08ce52fafbb6c + sha256: 0ec066d7f22bcd9acb6ca48b2e6a15e9be4f94e67cb55b0a2c05a37ac13f9315 category: main optional: false - name: librttopo @@ -11007,7 +11222,7 @@ package: librttopo: '>=1.1.0,<1.2.0a0' libsqlite: '>=3.46.0,<4.0a0' libstdcxx-ng: '>=12' - libxml2: '>=2.12.7,<3.0a0' + libxml2: '>=2.12.7,<2.14.0a0' libzlib: '>=1.3.1,<2.0a0' proj: '>=9.4.1,<9.5.0a0' sqlite: '' @@ -11030,7 +11245,7 @@ package: libiconv: '>=1.17,<2.0a0' librttopo: '>=1.1.0,<1.2.0a0' libsqlite: '>=3.46.0,<4.0a0' - libxml2: '>=2.12.7,<3.0a0' + libxml2: '>=2.12.7,<2.14.0a0' libzlib: '>=1.3.1,<2.0a0' proj: '>=9.4.1,<9.5.0a0' sqlite: '' @@ -11053,7 +11268,7 @@ package: libiconv: '>=1.17,<2.0a0' librttopo: '>=1.1.0,<1.2.0a0' libsqlite: '>=3.46.0,<4.0a0' - libxml2: '>=2.12.7,<3.0a0' + libxml2: '>=2.12.7,<2.14.0a0' libzlib: '>=1.3.1,<2.0a0' proj: '>=9.4.1,<9.5.0a0' sqlite: '' @@ -11065,43 +11280,44 @@ package: category: main optional: false - name: libsqlite - version: 3.49.1 + version: 3.50.4 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' + libgcc: '>=14' libzlib: '>=1.3.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.49.1-hee588c1_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.50.4-h0c1763c_0.conda hash: - md5: 73cea06049cc4174578b432320a003b8 - sha256: 7a09eef804ef7cf4d88215c2297eabb72af8ad0bd5b012060111c289f14bbe7d + md5: 0b367fad34931cb79e0d6b7e5c06bb1c + sha256: 6d9c32fc369af5a84875725f7ddfbfc2ace795c28f246dc70055a79f9b2003da category: main optional: false - name: libsqlite - version: 3.49.1 + version: 3.50.4 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' libzlib: '>=1.3.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.49.1-hdb6dae5_1.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.50.4-h39a8b3b_0.conda hash: - md5: 7958168c20fbbc5014e1fbda868ed700 - sha256: 859e5f1a39e320b3575b98b7a80ab7c62b337465b12b181c8bbe305fecc9430b + md5: 156bfb239b6a67ab4a01110e6718cbc4 + sha256: 466366b094c3eb4b1d77320530cbf5400e7a10ab33e4824c200147488eebf7a6 category: main optional: false - name: libsqlite - version: 3.49.1 + version: 3.50.4 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' + icu: '>=75.1,<76.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.49.1-h3f77e49_1.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.50.4-h4237e3c_0.conda hash: - md5: c83357a21092bd952933c36c5cb4f4d6 - sha256: 266639fb10ca92287961574b0b4d6031fa40dd9d723d64a0fcb08513a24dab03 + md5: 1dcb0468f5146e38fae99aef9656034b + sha256: 802ebe62e6bc59fc26b26276b793e0542cfff2d03c086440aeaf72fb8bbcec44 category: main optional: false - name: libssh2 @@ -11112,11 +11328,11 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.4.0,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.1-hf672d98_0.conda + openssl: '>=3.5.0,<4.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.1-hcf80075_0.conda hash: - md5: be2de152d8073ef1c01b7728475f2fe7 - sha256: 0407ac9fda2bb67e11e357066eff144c845801d00b5f664efbc48813af1e7bb9 + md5: eecce068c7e4eddeb169591baac20ac4 + sha256: fa39bfd69228a13e553bd24601332b7cfeb30ca11a3ca50bb028108fe90a7661 category: main optional: false - name: libssh2 @@ -11126,11 +11342,11 @@ package: dependencies: __osx: '>=10.13' libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.4.0,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.11.1-h3dc7d44_0.conda + openssl: '>=3.5.0,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.11.1-hed3591d_0.conda hash: - md5: b1caec4561059e43a5d056684c5a2de0 - sha256: ef2a81c9a15080b996a37f0e1712881da90a710b234e63d8539d69892353de90 + md5: a6cb15db1c2dc4d3a5f6cf3772e09e81 + sha256: 00654ba9e5f73aa1f75c1f69db34a19029e970a4aeb0fa8615934d8e9c369c3c category: main optional: false - name: libssh2 @@ -11139,36 +11355,36 @@ package: platform: osx-arm64 dependencies: libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.4.0,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.11.1-h9cc3647_0.conda + openssl: '>=3.5.0,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.11.1-h1590b86_0.conda hash: - md5: ddc7194676c285513706e5fc64f214d7 - sha256: f7047c6ed44bcaeb04432e8c74da87591940d091b0a3940c0d884b7faa8062e9 + md5: b68e8f66b94b44aaa8de4583d3d4cc40 + sha256: 8bfe837221390ffc6f111ecca24fa12d4a6325da0c8d131333d63d6c37f27e0a category: main optional: false - name: libstdcxx - version: 14.2.0 + version: 15.1.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: 14.2.0 - url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-14.2.0-h8f9b012_2.conda + libgcc: 15.1.0 + url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-15.1.0-h8f9b012_4.conda hash: - md5: a78c856b6dc6bf4ea8daeb9beaaa3fb0 - sha256: 8f5bd92e4a24e1d35ba015c5252e8f818898478cb3bc50bd8b12ab54707dc4da + md5: 3c376af8888c386b9d3d1c2701e2f3ab + sha256: b5b239e5fca53ff90669af1686c86282c970dd8204ebf477cf679872eb6d48ac category: main optional: false - name: libstdcxx-ng - version: 14.2.0 + version: 15.1.0 manager: conda platform: linux-64 dependencies: - libstdcxx: 14.2.0 - url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-14.2.0-h4852527_2.conda + libstdcxx: 15.1.0 + url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-15.1.0-h4852527_4.conda hash: - md5: c75da67f045c2627f59e6fcb5f4e3a9b - sha256: e86f38b007cf97cc2c67cd519f2de12a313c4ee3f5ef11652ad08932a5e34189 + md5: 2d34729cbc1da0ec988e57b13b712067 + sha256: 81c841c1cf4c0d06414aaa38a249f9fdd390554943065c3a0b18a9fb7e8cc495 category: main optional: false - name: libthrift @@ -11390,40 +11606,40 @@ package: category: main optional: false - name: libwebp-base - version: 1.5.0 + version: 1.6.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.5.0-h851e524_0.conda + libgcc: '>=14' + url: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.6.0-hd42ef1d_0.conda hash: - md5: 63f790534398730f59e1b899c3644d4a - sha256: c45283fd3e90df5f0bd3dbcd31f59cdd2b001d424cf30a07223655413b158eaf + md5: aea31d2e5b1091feca96fcfe945c3cf9 + sha256: 3aed21ab28eddffdaf7f804f49be7a7d701e8f0e46c856d801270b470820a37b category: main optional: false - name: libwebp-base - version: 1.5.0 + version: 1.6.0 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' - url: https://conda.anaconda.org/conda-forge/osx-64/libwebp-base-1.5.0-h6cf52b4_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libwebp-base-1.6.0-hb807250_0.conda hash: - md5: 5e0cefc99a231ac46ba21e27ae44689f - sha256: 7f110eba04150f1fe5fe297f08fb5b82463eed74d1f068bc67c96637f9c63569 + md5: 7bb6608cf1f83578587297a158a6630b + sha256: 00dbfe574b5d9b9b2b519acb07545380a6bc98d1f76a02695be4995d4ec91391 category: main optional: false - name: libwebp-base - version: 1.5.0 + version: 1.6.0 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.5.0-h2471fea_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.6.0-h07db88b_0.conda hash: - md5: 569466afeb84f90d5bb88c11cc23d746 - sha256: f8bdb876b4bc8cb5df47c28af29188de8911c3fea4b799a33743500149de3f4a + md5: e5e7d467f80da752be17796b87fe6385 + sha256: a4de3f371bb7ada325e1f27a4ef7bcc81b2b6a330e46fac9c2f78ac0755ea3dd category: main optional: false - name: libxcb @@ -11472,156 +11688,166 @@ package: sha256: bd3816218924b1e43b275863e21a3e13a5db4a6da74cca8e60bc3c213eb62f71 category: main optional: false +- name: libxcrypt + version: 4.4.36 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda + hash: + md5: 5aa797f8787fe7a17d1b0821485b5adc + sha256: 6ae68e0b86423ef188196fff6207ed0c8195dd84273cb5623b85aa08033a410c + category: main + optional: false - name: libxgboost - version: 2.1.4 + version: 3.0.4 manager: conda platform: linux-64 dependencies: - __cuda: '' __glibc: '>=2.17,<3.0.a0' _openmp_mutex: '>=4.5' - cuda-version: '>=11.2,<12.0a0' - libgcc: '' - libgcc-ng: '>=12' - libstdcxx: '' - libstdcxx-ng: '>=12' - nccl: '>=2.25.1.1,<3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libxgboost-2.1.4-cuda118_h09a87be_0.conda + libgcc: '>=14' + libstdcxx: '>=14' + url: https://conda.anaconda.org/conda-forge/linux-64/libxgboost-3.0.4-cpu_h2ebb00f_0.conda hash: - md5: e88cfc361f842e716bc5ab815d4f27e7 - sha256: 8bbe425644c1d144b1b2bcbc1d721c3276a79f0a873dd30ba9573fd7c31c807f + md5: 111a58c45b9b9b3441f54c75f33c5a8e + sha256: 43ef700a2a704d77d25f0b35d4ec93e8b5da07a774d9c797a3161b5d844b16cb category: main optional: false - name: libxgboost - version: 2.1.4 + version: 3.0.4 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' - libcxx: '>=18' - llvm-openmp: '>=18.1.8' - url: https://conda.anaconda.org/conda-forge/osx-64/libxgboost-2.1.4-cpu_h250267a_0.conda + libcxx: '>=19' + llvm-openmp: '>=19.1.7' + url: https://conda.anaconda.org/conda-forge/osx-64/libxgboost-3.0.4-cpu_h35a7d74_0.conda hash: - md5: f02b51407e24a3c3efc753ec71fadb01 - sha256: 0d98b72e61ea8dd5c5a3aaa7420381ef9c071353ae00b2b958424898fb73c2b3 + md5: 1279dccece228f9681b7ee77d6e8d3a3 + sha256: f42938ae34142473aa44ca7c1189883311280ae6761bdc3fb9cf33cb60ecf95d category: main optional: false - name: libxgboost - version: 2.1.4 + version: 3.0.4 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' - libcxx: '>=18' - llvm-openmp: '>=18.1.8' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libxgboost-2.1.4-cpu_hf17a1b1_0.conda + libcxx: '>=19' + llvm-openmp: '>=19.1.7' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libxgboost-3.0.4-cpu_hd76abf7_0.conda hash: - md5: 0310f749c1f0efa1de851f06fe8938e7 - sha256: 7918871618bf8240bee413325b1875ba879b46a7441315bb52b2866de6f5aef2 + md5: 8e53171913912cbd5d372327bf02fd46 + sha256: 830a1cd937672c855bceb5e3fb431dd85ed64f0917af025781c6c0ce36088fac category: main optional: false - name: libxkbcommon - version: 1.8.0 + version: 1.11.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - libstdcxx: '>=13' + libgcc: '>=14' + libstdcxx: '>=14' libxcb: '>=1.17.0,<2.0a0' - libxml2: '>=2.13.5,<3.0a0' + libxml2: '>=2.13.8,<2.14.0a0' xkeyboard-config: '' xorg-libxau: '>=1.0.12,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libxkbcommon-1.8.0-hc4a0caf_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libxkbcommon-1.11.0-he8b52b9_0.conda hash: - md5: f1656760dbf05f47f962bfdc59fc3416 - sha256: 583203155abcfb03938d8473afbf129156b5b30301a0f796c8ecca8c5b7b2ed2 + md5: 74e91c36d0eef3557915c68b6c2bef96 + sha256: 23f47e86cc1386e7f815fa9662ccedae151471862e971ea511c5c886aa723a54 category: main optional: false - name: libxml2 - version: 2.13.6 + version: 2.13.8 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' icu: '>=75.1,<76.0a0' - libgcc: '>=13' + libgcc: '>=14' libiconv: '>=1.18,<2.0a0' - liblzma: '>=5.6.4,<6.0a0' + liblzma: '>=5.8.1,<6.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.13.6-h8d12d68_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.13.8-h04c0eec_1.conda hash: - md5: 328382c0e0ca648e5c189d5ec336c604 - sha256: db8af71ea9c0ae95b7cb4a0f59319522ed2243942437a1200ceb391493018d85 + md5: 10bcbd05e1c1c9d652fccb42b776a9fa + sha256: 03deb1ec6edfafc5aaeecadfc445ee436fecffcda11fcd97fde9b6632acb583f category: main optional: false - name: libxml2 - version: 2.13.6 + version: 2.13.8 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' icu: '>=75.1,<76.0a0' libiconv: '>=1.18,<2.0a0' - liblzma: '>=5.6.4,<6.0a0' + liblzma: '>=5.8.1,<6.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.13.6-hebb159f_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.13.8-he1bc88e_1.conda hash: - md5: f27851d50ccddf3c3234dd0efc78fdbd - sha256: 3962cce8158ce6ebb9239fe58bbc1ce49b0ac4997827e932e70dd6e4ab335c40 + md5: 1d31029d8d2685d56a812dec48083483 + sha256: 248871154c6f86f0c6d456872457ad4f5799e23c09512a473041da3b9b9ee83c category: main optional: false - name: libxml2 - version: 2.13.6 + version: 2.13.8 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' icu: '>=75.1,<76.0a0' libiconv: '>=1.18,<2.0a0' - liblzma: '>=5.6.4,<6.0a0' + liblzma: '>=5.8.1,<6.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.13.6-h178c5d8_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.13.8-h4a9ca0c_1.conda hash: - md5: 277864577d514bea4b30f8a9335b8d26 - sha256: 1d2ebce1a16db1017e3892a67cb7ced4aa2858f549dba6852a60d02a4925c205 + md5: 05774cda4a601fc21830842648b3fe04 + sha256: 365ad1fa0b213e3712d882f187e6de7f601a0e883717f54fe69c344515cdba78 category: main optional: false - name: libxslt - version: 1.1.39 + version: 1.1.43 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - libxml2: '>=2.12.1,<3.0.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libxslt-1.1.39-h76b75d6_0.conda + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=13' + libxml2: '>=2.13.8,<2.14.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libxslt-1.1.43-h7a3aeb2_0.conda hash: - md5: e71f31f8cfb0a91439f2086fc8aa0461 - sha256: 684e9b67ef7b9ca0ca993762eeb39705ec58e2e7f958555c758da7ef416db9f3 + md5: 31059dc620fa57d787e3899ed0421e6d + sha256: 35ddfc0335a18677dd70995fa99b8f594da3beb05c11289c87b6de5b930b47a3 category: main optional: false - name: libxslt - version: 1.1.39 + version: 1.1.43 manager: conda platform: osx-64 dependencies: - libxml2: '>=2.12.1,<3.0.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libxslt-1.1.39-h03b04e6_0.conda + __osx: '>=10.13' + libxml2: '>=2.13.8,<2.14.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libxslt-1.1.43-h59ddae0_0.conda hash: - md5: a6e0cec6b3517ffc6b5d36a920fc9312 - sha256: decfc5614a10231a17543b7366616fb2d88c14be6dd9dd5ecde63aa9a5acfb9e + md5: 8e76996e563b8f4de1df67da0580fd95 + sha256: f3456f4c823ffebadc8b28a85ef146758935646a92e345e72e0617645596907e category: main optional: false - name: libxslt - version: 1.1.39 + version: 1.1.43 manager: conda platform: osx-arm64 dependencies: - libxml2: '>=2.12.1,<3.0.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libxslt-1.1.39-h223e5b9_0.conda + __osx: '>=11.0' + libxml2: '>=2.13.8,<2.14.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libxslt-1.1.43-h429d6fd_0.conda hash: - md5: 560c9cacc33e927f55b998eaa0cb1732 - sha256: 2f1d99ef3fb960f23a63f06cf65ee621a5594a8b4616f35d9805be44617a92af + md5: f25eb0a9e2c2ecfd33a4b97bb1a84fb6 + sha256: 3491de18eb09c9d6298a7753bcc23b49a58886bd097d2653accaa1290f92c2c6 category: main optional: false - name: libzip @@ -11767,13 +11993,13 @@ package: manager: conda platform: osx-64 dependencies: - numpy: '' - scipy: '' matplotlib-base: '' - tqdm: '' + numpy: '' python: '>=3.9' - scikit-learn: '>=0.18' scikit-image: '>=0.12' + scikit-learn: '>=0.18' + scipy: '' + tqdm: '' url: https://conda.anaconda.org/conda-forge/noarch/lime-0.2.0.1-pyhd8ed1ab_2.conda hash: md5: 7807e1b976aaab2b457002abffdf5e1c @@ -11785,13 +12011,13 @@ package: manager: conda platform: osx-arm64 dependencies: - numpy: '' - scipy: '' matplotlib-base: '' - tqdm: '' + numpy: '' python: '>=3.9' - scikit-learn: '>=0.18' scikit-image: '>=0.12' + scikit-learn: '>=0.18' + scipy: '' + tqdm: '' url: https://conda.anaconda.org/conda-forge/noarch/lime-0.2.0.1-pyhd8ed1ab_2.conda hash: md5: 7807e1b976aaab2b457002abffdf5e1c @@ -11799,27 +12025,27 @@ package: category: main optional: false - name: llvm-openmp - version: 19.1.7 + version: 21.1.0 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' - url: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-19.1.7-ha54dae1_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-21.1.0-hf4e0ed4_0.conda hash: - md5: 65d08c50518999e69f421838c1d5b91f - sha256: b5b06821b0d4143f66ba652ffe6f535696dc3a4096175d9be8b19b1a7350c86d + md5: 5acc6c266fd33166fa3b33e48665ae0d + sha256: 78336131a08990390003ef05d14ecb49f3a47e4dac60b1bcebeccd87fa402925 category: main optional: false - name: llvm-openmp - version: 19.1.7 + version: 21.1.0 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-19.1.7-hdb05f8b_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-21.1.0-hbb9b287_0.conda hash: - md5: c4d54bfd3817313ce758aa76283b118d - sha256: b92a669f2059874ebdcb69041b6c243d68ffc3fb356ac1339cec44aeb27245d7 + md5: e57d95fec6eaa747e583323cba6cfe5c + sha256: c6750073a128376a14bedacfa90caab4c17025c9687fcf6f96e863b28d543af4 category: main optional: false - name: llvmlite @@ -11828,16 +12054,15 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - libllvm15: '>=15.0.7,<15.1.0a0' - libstdcxx: '>=13' + libgcc: '>=14' + libstdcxx: '>=14' libzlib: '>=1.3.1,<2.0a0' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/linux-64/llvmlite-0.44.0-py312h374181b_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/llvmlite-0.44.0-py312he100287_2.conda hash: - md5: 4fec2cf2f40c75c0993964bb7a4c8424 - sha256: c05668c8099cd398c4fca015f0189187dd24f5b6763caf85cda299fde0092e5b + md5: 36676f8daca4611c7566837b838695b9 + sha256: 254102ea2e878ddccd4e7b6468cf0d65d6be52242f7b009dbde299c8e58f1842 category: main optional: false - name: llvmlite @@ -11846,15 +12071,14 @@ package: platform: osx-64 dependencies: __osx: '>=10.13' - libcxx: '>=18' - libllvm15: '>=15.0.7,<15.1.0a0' + libcxx: '>=19' libzlib: '>=1.3.1,<2.0a0' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-64/llvmlite-0.44.0-py312hc7f3abb_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/llvmlite-0.44.0-py312ha696282_2.conda hash: - md5: 1c6cdbcbe581a77837db527f8ff7cac2 - sha256: efa04ef77fa34893eff45b88b7bb30458103a6b2ad21bddc10ed90f2be7ba2fd + md5: 2f0fe12375aaff95d6bbd184c8eb974c + sha256: df79b14c24067aa208c05448942b83826c7c9d4f6a1f35a36e96087ac6fa66a4 category: main optional: false - name: llvmlite @@ -11863,15 +12087,14 @@ package: platform: osx-arm64 dependencies: __osx: '>=11.0' - libcxx: '>=18' - libllvm15: '>=15.0.7,<15.1.0a0' + libcxx: '>=19' libzlib: '>=1.3.1,<2.0a0' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-arm64/llvmlite-0.44.0-py312h728bc31_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/llvmlite-0.44.0-py312hc9b382d_2.conda hash: - md5: 4ead86be7c51a3dc8e76f2b059bacd86 - sha256: 9eb98299e5a7c71128930dd3e152572d2aeba1935f0a638af50e00a2416000b3 + md5: 768549d1e202865d3933d28d38fea5e3 + sha256: 7d4f44686411d569119df4c340292f4cdb9b27a5040caaea95cd570282bf14be category: main optional: false - name: locket @@ -11911,55 +12134,55 @@ package: category: main optional: false - name: lxml - version: 5.3.1 + version: 6.0.1 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - libxml2: '>=2.13.5,<3.0a0' - libxslt: '>=1.1.39,<2.0a0' + libgcc: '>=14' + libxml2: '>=2.13.8,<2.14.0a0' + libxslt: '>=1.1.43,<2.0a0' libzlib: '>=1.3.1,<2.0a0' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/linux-64/lxml-5.3.1-py312he28fd5a_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/lxml-6.0.1-py312h70dad80_1.conda hash: - md5: 52d16dd592060d4b2fa9ad325e0c1f90 - sha256: 4f3a78b59890f2175a381d9ae5e74b4523aea23daaa01cafbb150456bc8b857c + md5: 99965a622e7ad87331d818d91b9764bc + sha256: 8b5138e8c0de6dfa44287fa879bf7da09d0b11c0b712971f3bda4b872cde9fa6 category: main optional: false - name: lxml - version: 5.3.1 + version: 6.0.1 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' - libxml2: '>=2.13.5,<3.0a0' - libxslt: '>=1.1.39,<2.0a0' + libxml2: '>=2.13.8,<2.14.0a0' + libxslt: '>=1.1.43,<2.0a0' libzlib: '>=1.3.1,<2.0a0' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-64/lxml-5.3.1-py312h91b2f42_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/lxml-6.0.1-py312ha108ba6_1.conda hash: - md5: a1b3a0206fc6c434fadc25d818002b82 - sha256: 9d8caf0b13e42a214f47f21e4a4696a7de37e81b182fb88c0e922b5940fb716e + md5: 213434f2639456de3b792e216859c21a + sha256: a63b312946ee78120ae2280139ca82e35a527958d81d4422a9e3f49a07a286e9 category: main optional: false - name: lxml - version: 5.3.1 + version: 6.0.1 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' - libxml2: '>=2.13.5,<3.0a0' - libxslt: '>=1.1.39,<2.0a0' + libxml2: '>=2.13.8,<2.14.0a0' + libxslt: '>=1.1.43,<2.0a0' libzlib: '>=1.3.1,<2.0a0' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-arm64/lxml-5.3.1-py312h9535dd2_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/lxml-6.0.1-py312h4144cae_1.conda hash: - md5: f9d4307bbe7d394ac3634fe85a4c0e94 - sha256: b899871ecf3f331e3047295897809758a02a144e4118f1378ca443c62772cd2c + md5: 7deba83afff30bc5fc7b9a9e098b3c3f + sha256: ea8031b94536968d327593cd62cade97bbc35d6c38d2edbdc9d00a37fd80c753 category: main optional: false - name: lz4 @@ -12050,33 +12273,36 @@ package: manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/lzo-2.10-hd590300_1001.conda + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=14' + url: https://conda.anaconda.org/conda-forge/linux-64/lzo-2.10-h280c20c_1002.conda hash: - md5: ec7398d21e2651e0dcb0044d03b9a339 - sha256: 88433b98a9dd9da315400e7fb9cd5f70804cb17dca8b1c85163a64f90f584126 + md5: 45161d96307e3a447cc3eb5896cf6f8c + sha256: 5c6bbeec116e29f08e3dad3d0524e9bc5527098e12fc432c0e5ca53ea16337d4 category: main optional: false - name: lzo version: '2.10' manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/lzo-2.10-h10d778d_1001.conda + dependencies: + __osx: '>=10.13' + url: https://conda.anaconda.org/conda-forge/osx-64/lzo-2.10-h4132b18_1002.conda hash: - md5: bfecd73e4a2dc18ffd5288acf8a212ab - sha256: 4006c57f805ca6aec72ee0eb7166b2fd648dd1bf3721b9de4b909cd374196643 + md5: 5a047b9aa4be1dcdb62bd561d9eb6ceb + sha256: bb5fe07123a7d573af281d04b75e1e77e87e62c5c4eb66d9781aa919450510d1 category: main optional: false - name: lzo version: '2.10' manager: conda platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/lzo-2.10-h93a5062_1001.conda + dependencies: + __osx: '>=11.0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/lzo-2.10-h925e9cb_1002.conda hash: - md5: 915996063a7380c652f83609e970c2a7 - sha256: b68160b0a8ec374cea12de7afb954ca47419cdc300358232e19cec666d60b929 + md5: e56eaa1beab0e7fed559ae9c0264dd88 + sha256: db40fd25c6306bfda469f84cddd8b5ebb9aa08d509cecb49dfd0bb8228466d0c category: main optional: false - name: magics @@ -12173,8 +12399,8 @@ package: manager: conda platform: osx-64 dependencies: - numpy: '' findlibs: '' + numpy: '' python: '>=3.6' url: https://conda.anaconda.org/conda-forge/noarch/magics-python-1.5.8-pyhd8ed1ab_1.conda hash: @@ -12187,8 +12413,8 @@ package: manager: conda platform: osx-arm64 dependencies: - numpy: '' findlibs: '' + numpy: '' python: '>=3.6' url: https://conda.anaconda.org/conda-forge/noarch/magics-python-1.5.8-pyhd8ed1ab_1.conda hash: @@ -12223,16 +12449,16 @@ package: manager: conda platform: osx-64 dependencies: - numpy: '' - pandas: '' - matplotlib-base: '' - netcdf4: '' - lxml: '' - plotly: '' cartopy: '' - configargparse: '' chart-studio: '' config: '' + configargparse: '' + lxml: '' + matplotlib-base: '' + netcdf4: '' + numpy: '' + pandas: '' + plotly: '' python: '>=3.6' url: https://conda.anaconda.org/conda-forge/noarch/mapgenerator-1.0.7-pyhd8ed1ab_0.conda hash: @@ -12245,16 +12471,16 @@ package: manager: conda platform: osx-arm64 dependencies: - numpy: '' - pandas: '' - matplotlib-base: '' - netcdf4: '' - lxml: '' - plotly: '' cartopy: '' - configargparse: '' chart-studio: '' config: '' + configargparse: '' + lxml: '' + matplotlib-base: '' + netcdf4: '' + numpy: '' + pandas: '' + plotly: '' python: '>=3.6' url: https://conda.anaconda.org/conda-forge/noarch/mapgenerator-1.0.7-pyhd8ed1ab_0.conda hash: @@ -12263,42 +12489,42 @@ package: category: main optional: false - name: markdown-it-py - version: 3.0.0 + version: 4.0.0 manager: conda platform: linux-64 dependencies: mdurl: '>=0.1,<1' - python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_1.conda + python: '>=3.10' + url: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-4.0.0-pyhd8ed1ab_0.conda hash: - md5: fee3164ac23dfca50cfcc8b85ddefb81 - sha256: 0fbacdfb31e55964152b24d5567e9a9996e1e7902fb08eb7d91b5fd6ce60803a + md5: 5b5203189eb668f042ac2b0826244964 + sha256: 7b1da4b5c40385791dbc3cc85ceea9fad5da680a27d5d3cb8bfaa185e304a89e category: main optional: false - name: markdown-it-py - version: 3.0.0 + version: 4.0.0 manager: conda platform: osx-64 dependencies: - python: '>=3.9' mdurl: '>=0.1,<1' - url: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_1.conda + python: '>=3.10' + url: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-4.0.0-pyhd8ed1ab_0.conda hash: - md5: fee3164ac23dfca50cfcc8b85ddefb81 - sha256: 0fbacdfb31e55964152b24d5567e9a9996e1e7902fb08eb7d91b5fd6ce60803a + md5: 5b5203189eb668f042ac2b0826244964 + sha256: 7b1da4b5c40385791dbc3cc85ceea9fad5da680a27d5d3cb8bfaa185e304a89e category: main optional: false - name: markdown-it-py - version: 3.0.0 + version: 4.0.0 manager: conda platform: osx-arm64 dependencies: - python: '>=3.9' mdurl: '>=0.1,<1' - url: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_1.conda + python: '>=3.10' + url: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-4.0.0-pyhd8ed1ab_0.conda hash: - md5: fee3164ac23dfca50cfcc8b85ddefb81 - sha256: 0fbacdfb31e55964152b24d5567e9a9996e1e7902fb08eb7d91b5fd6ce60803a + md5: 5b5203189eb668f042ac2b0826244964 + sha256: 7b1da4b5c40385791dbc3cc85ceea9fad5da680a27d5d3cb8bfaa185e304a89e category: main optional: false - name: markupsafe @@ -12345,7 +12571,7 @@ package: category: main optional: false - name: matplotlib-base - version: 3.10.1 + version: 3.10.6 manager: conda platform: linux-64 dependencies: @@ -12353,11 +12579,13 @@ package: contourpy: '>=1.0.1' cycler: '>=0.10' fonttools: '>=4.22.0' - freetype: '>=2.12.1,<3.0a0' + freetype: '' kiwisolver: '>=1.3.1' - libgcc: '>=13' - libstdcxx: '>=13' - numpy: '>=1.23' + libfreetype: '>=2.13.3' + libfreetype6: '>=2.13.3' + libgcc: '>=14' + libstdcxx: '>=14' + numpy: '>=1.23,<3' packaging: '>=20.0' pillow: '>=8' pyparsing: '>=2.3.1' @@ -12366,14 +12594,14 @@ package: python_abi: 3.12.* qhull: '>=2020.2,<2020.3.0a0' tk: '>=8.6.13,<8.7.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/matplotlib-base-3.10.1-py312hd3ec401_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/matplotlib-base-3.10.6-py312he3d6523_1.conda hash: - md5: 514d8a6894286f6d9894b352782c7e18 - sha256: 0fffd86b49f74e826be54b3bf26e5bbdebaecd2ed5538fc78292f4c0ff827555 + md5: 94926ee1d68e678fb4cfdb0727a0927e + sha256: 9af1c0e8a9551edfb1fbee0595a00108204af3d34c1680271b0121846dc21e77 category: main optional: false - name: matplotlib-base - version: 3.10.1 + version: 3.10.6 manager: conda platform: osx-64 dependencies: @@ -12381,10 +12609,12 @@ package: contourpy: '>=1.0.1' cycler: '>=0.10' fonttools: '>=4.22.0' - freetype: '>=2.12.1,<3.0a0' + freetype: '' kiwisolver: '>=1.3.1' - libcxx: '>=18' - numpy: '>=1.23' + libcxx: '>=19' + libfreetype: '>=2.13.3' + libfreetype6: '>=2.13.3' + numpy: '>=1.23,<3' packaging: '>=20.0' pillow: '>=8' pyparsing: '>=2.3.1' @@ -12392,14 +12622,14 @@ package: python-dateutil: '>=2.7' python_abi: 3.12.* qhull: '>=2020.2,<2020.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/matplotlib-base-3.10.1-py312h535dea3_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/matplotlib-base-3.10.6-py312h7894933_1.conda hash: - md5: 9cbfac1eb73702dd1e4f379564658d48 - sha256: 883fe38695b3b3c6e1d42f7e2174eddbae6b47623dcea9fa6c7ef70c1adede7b + md5: 2838ec6b6d4a84383fee580a66a36779 + sha256: c46330b0709ca88fd23b41f2c5cde5bb4185bbc13913d94e5b44ea7dc912433a category: main optional: false - name: matplotlib-base - version: 3.10.1 + version: 3.10.6 manager: conda platform: osx-arm64 dependencies: @@ -12407,10 +12637,12 @@ package: contourpy: '>=1.0.1' cycler: '>=0.10' fonttools: '>=4.22.0' - freetype: '>=2.12.1,<3.0a0' + freetype: '' kiwisolver: '>=1.3.1' - libcxx: '>=18' - numpy: '>=1.23' + libcxx: '>=19' + libfreetype: '>=2.13.3' + libfreetype6: '>=2.13.3' + numpy: '>=1.23,<3' packaging: '>=20.0' pillow: '>=8' pyparsing: '>=2.3.1' @@ -12418,10 +12650,10 @@ package: python-dateutil: '>=2.7' python_abi: 3.12.* qhull: '>=2020.2,<2020.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/matplotlib-base-3.10.1-py312hdbc7e53_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/matplotlib-base-3.10.6-py312h605b88b_1.conda hash: - md5: 81e256fa3f734686f049a8cdb930887f - sha256: 45c20d3523cd6581950a804b0522d4d0fc1ed04306c06283156dbf572a48bbb5 + md5: 63773c3db15b238aaa49b34a27cdee9b + sha256: 9d55cdf55760552e42cfd0bc867f6902754aa2aeb4f661cee715a27e447b4886 category: main optional: false - name: matplotlib-inline @@ -12442,8 +12674,8 @@ package: manager: conda platform: osx-64 dependencies: - traitlets: '' python: '>=3.9' + traitlets: '' url: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_1.conda hash: md5: af6ab708897df59bd6e7283ceab1b56b @@ -12455,8 +12687,8 @@ package: manager: conda platform: osx-arm64 dependencies: - traitlets: '' python: '>=3.9' + traitlets: '' url: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_1.conda hash: md5: af6ab708897df59bd6e7283ceab1b56b @@ -12500,111 +12732,111 @@ package: category: main optional: false - name: minizip - version: 4.0.7 + version: 4.0.10 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' bzip2: '>=1.0.8,<2.0a0' libgcc: '>=13' - libiconv: '>=1.17,<2.0a0' - liblzma: '>=5.6.3,<6.0a0' + libiconv: '>=1.18,<2.0a0' + liblzma: '>=5.8.1,<6.0a0' libstdcxx: '>=13' libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.4.0,<4.0a0' - zstd: '>=1.5.6,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/minizip-4.0.7-h05a5f5f_3.conda + openssl: '>=3.5.0,<4.0a0' + zstd: '>=1.5.7,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/minizip-4.0.10-h05a5f5f_0.conda hash: - md5: eec77634ccdb2ba6c231290c399b1dae - sha256: 9a9459024e9cdc68c799b057de021b8c652de542e24e9e48f2726578e822659c + md5: da01bb40572e689bd1535a5cee6b1d68 + sha256: 0c3700d15377156937ddc89a856527ad77e7cf3fd73cb0dffc75fce8030ddd16 category: main optional: false - name: minizip - version: 4.0.7 + version: 4.0.10 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' bzip2: '>=1.0.8,<2.0a0' libcxx: '>=18' - libiconv: '>=1.17,<2.0a0' - liblzma: '>=5.6.3,<6.0a0' + libiconv: '>=1.18,<2.0a0' + liblzma: '>=5.8.1,<6.0a0' libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.4.0,<4.0a0' - zstd: '>=1.5.6,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/minizip-4.0.7-hfb7a1ec_3.conda + openssl: '>=3.5.0,<4.0a0' + zstd: '>=1.5.7,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/minizip-4.0.10-hfb7a1ec_0.conda hash: - md5: cb826e74fb8eb56f407493aa18e6a9e9 - sha256: 69e9874ac02b298ab075cd4f1242b9678fd38cfe4470e935a44cf09d7e02bfc6 + md5: 412fd08e5bf0e03fdce24dea0560fa26 + sha256: 8eff9dfaed10f200ad3c6ae3bfb4b105a83011d8b798ababfa0bd46232dd875a category: main optional: false - name: minizip - version: 4.0.7 + version: 4.0.10 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' bzip2: '>=1.0.8,<2.0a0' libcxx: '>=18' - libiconv: '>=1.17,<2.0a0' - liblzma: '>=5.6.3,<6.0a0' + libiconv: '>=1.18,<2.0a0' + liblzma: '>=5.8.1,<6.0a0' libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.4.0,<4.0a0' - zstd: '>=1.5.6,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/minizip-4.0.7-hff1a8ea_3.conda + openssl: '>=3.5.0,<4.0a0' + zstd: '>=1.5.7,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/minizip-4.0.10-hff1a8ea_0.conda hash: - md5: 666bd61287ad7ee417884eacd9aef2ea - sha256: 6d904a6fc5e875e687b9fab244d5b286961222d72f546f9939d8f80ebe873c1c + md5: 93def148863d840e500490d6d78722f9 + sha256: b3503bd3da5d48d57b44835f423951f487574e08a999f13288c81464ac293840 category: main optional: false - name: msgpack-python - version: 1.1.0 + version: 1.1.1 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - libstdcxx: '>=13' + libgcc: '>=14' + libstdcxx: '>=14' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/linux-64/msgpack-python-1.1.0-py312h68727a3_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/msgpack-python-1.1.1-py312hd9148b4_1.conda hash: - md5: 5c9b020a3f86799cdc6115e55df06146 - sha256: 4bc53333774dea1330643b7e23aa34fd6880275737fc2e07491795872d3af8dd + md5: f81ef4109d77d92188bdc25712c0ff17 + sha256: 5c1a49c4afecfc7c542760711e8075cb8115997c47f52b7af0fc554f6f260b5c category: main optional: false - name: msgpack-python - version: 1.1.0 + version: 1.1.1 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' - libcxx: '>=17' + libcxx: '>=19' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-64/msgpack-python-1.1.0-py312hc5c4d5f_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/msgpack-python-1.1.1-py312hedd4973_1.conda hash: - md5: 3448a4ca65790764c2f8d44d5f917f84 - sha256: d12f400fb57eef8aae8a8b2a3c4d4917130b9bd8f08a631646e3bf4a6551bb54 + md5: 17c7b1d803d7a1d8651e13b28b0052cf + sha256: a53cff5407bfc62fe6cc6c21c7d2263cddb04cb0a59043b420e7c07acbc084f4 category: main optional: false - name: msgpack-python - version: 1.1.0 + version: 1.1.1 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' - libcxx: '>=17' + libcxx: '>=19' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-arm64/msgpack-python-1.1.0-py312h6142ec9_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/msgpack-python-1.1.1-py312ha0dd364_1.conda hash: - md5: 0dfc3750cc6bbc463d72c0b727e60d8a - sha256: 2b8c22f8a4e0031c2d6fa81d32814c8afdaf7e7fe2e681bf2369a35ff3eab1fd + md5: feaa731094db962528c2f51e24370597 + sha256: e2faf46924ecf94aebdaa78c093b0b2c05fa72f06be2d311e26fb5fee89c3ba7 category: main optional: false - name: multidict - version: 6.1.0 + version: 6.6.3 manager: conda platform: linux-64 dependencies: @@ -12612,42 +12844,42 @@ package: libgcc: '>=13' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/linux-64/multidict-6.1.0-py312h178313f_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/multidict-6.6.3-py312h178313f_0.conda hash: - md5: 5b5e3267d915a107eca793d52e1b780a - sha256: b05bc8252a6e957bf4a776ed5e0e61d1ba88cdc46ccb55890c72cc58b10371f4 + md5: f4e246ec4ccdf73e50eefb0fa359a64e + sha256: c703d148a85ffb4f11001d31b7c4c686a46ad554eeeaa02c69da59fbf0e00dbb category: main optional: false - name: multidict - version: 6.1.0 + version: 6.6.3 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-64/multidict-6.1.0-py312h6f3313d_1.conda + url: https://conda.anaconda.org/conda-forge/osx-64/multidict-6.6.3-py312h6f3313d_0.conda hash: - md5: 47e51ecdee53dfc456f02ad633aa43bf - sha256: 326c92cd8e4bc85294f2f0b5cdf97d90e96158c2881915256e99f8bc07559960 + md5: e495a8697e472a5ecd766c0ddcbeacd6 + sha256: c49c4e85de4d84cb2bd128ce4053c4fc2c226061649aabe5b5175c484b13d4a5 category: main optional: false - name: multidict - version: 6.1.0 + version: 6.6.3 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-arm64/multidict-6.1.0-py312hdb8e49c_1.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/multidict-6.6.3-py312hdb8e49c_0.conda hash: - md5: 0048335516fed938e4dd2c457b4c5b9b - sha256: 482fd09fb798090dc8cce2285fa69f43b1459099122eac2fb112d9b922b9f916 + md5: f6a2a3d93dec1aa42159639bb727c320 + sha256: 4dda3bbaba0c35760950018aaae29f5ecae8d4d8964f6c61e50e8d29b293f674 category: main optional: false - name: multiurl - version: 0.3.3 + version: 0.3.7 manager: conda platform: linux-64 dependencies: @@ -12656,42 +12888,42 @@ package: pytz: '' requests: '' tqdm: '' - url: https://conda.anaconda.org/conda-forge/noarch/multiurl-0.3.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/multiurl-0.3.7-pyhd8ed1ab_0.conda hash: - md5: b7ad70c100bced5b6bc2d479c473d2a7 - sha256: a94d088d24acea272081d6ccc61df0a4888560cf22afaae9e8d680f526e48d1b + md5: e585c71c2ed48e4eee1663d627ddcd47 + sha256: d87816da0e16812f93db1b3b174ef5465047c290457bf72ff750e137f8473a31 category: main optional: false - name: multiurl - version: 0.3.3 + version: 0.3.7 manager: conda platform: osx-64 dependencies: - requests: '' - tqdm: '' + python: '>=3.9' python-dateutil: '' pytz: '' - python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/multiurl-0.3.3-pyhd8ed1ab_1.conda + requests: '' + tqdm: '' + url: https://conda.anaconda.org/conda-forge/noarch/multiurl-0.3.7-pyhd8ed1ab_0.conda hash: - md5: b7ad70c100bced5b6bc2d479c473d2a7 - sha256: a94d088d24acea272081d6ccc61df0a4888560cf22afaae9e8d680f526e48d1b + md5: e585c71c2ed48e4eee1663d627ddcd47 + sha256: d87816da0e16812f93db1b3b174ef5465047c290457bf72ff750e137f8473a31 category: main optional: false - name: multiurl - version: 0.3.3 + version: 0.3.7 manager: conda platform: osx-arm64 dependencies: - requests: '' - tqdm: '' + python: '>=3.9' python-dateutil: '' pytz: '' - python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/multiurl-0.3.3-pyhd8ed1ab_1.conda + requests: '' + tqdm: '' + url: https://conda.anaconda.org/conda-forge/noarch/multiurl-0.3.7-pyhd8ed1ab_0.conda hash: - md5: b7ad70c100bced5b6bc2d479c473d2a7 - sha256: a94d088d24acea272081d6ccc61df0a4888560cf22afaae9e8d680f526e48d1b + md5: e585c71c2ed48e4eee1663d627ddcd47 + sha256: d87816da0e16812f93db1b3b174ef5465047c290457bf72ff750e137f8473a31 category: main optional: false - name: munkres @@ -12699,11 +12931,11 @@ package: manager: conda platform: linux-64 dependencies: - python: '' - url: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyhd8ed1ab_1.conda hash: - md5: 2ba8498c1018c1e9c61eb99b973dfe19 - sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 + md5: 37293a85a0f4f77bbd9cf7aaefc62609 + sha256: d09c47c2cf456de5c09fa66d2c3c5035aa1fa228a1983a433c47b876aa16ce90 category: main optional: false - name: munkres @@ -12711,11 +12943,11 @@ package: manager: conda platform: osx-64 dependencies: - python: '' - url: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyhd8ed1ab_1.conda hash: - md5: 2ba8498c1018c1e9c61eb99b973dfe19 - sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 + md5: 37293a85a0f4f77bbd9cf7aaefc62609 + sha256: d09c47c2cf456de5c09fa66d2c3c5035aa1fa228a1983a433c47b876aa16ce90 category: main optional: false - name: munkres @@ -12723,11 +12955,11 @@ package: manager: conda platform: osx-arm64 dependencies: - python: '' - url: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyhd8ed1ab_1.conda hash: - md5: 2ba8498c1018c1e9c61eb99b973dfe19 - sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 + md5: 37293a85a0f4f77bbd9cf7aaefc62609 + sha256: d09c47c2cf456de5c09fa66d2c3c5035aa1fa228a1983a433c47b876aa16ce90 category: main optional: false - name: myproxyclient @@ -12752,12 +12984,12 @@ package: manager: conda platform: osx-64 dependencies: - setuptools: '' - six: '' - pytest: '' pip: '' pyopenssl: '' + pytest: '' python: '>=3.9' + setuptools: '' + six: '' url: https://conda.anaconda.org/conda-forge/noarch/myproxyclient-2.1.1-pyhd8ed1ab_1.conda hash: md5: 1efb1227abaf20324ceb7ac9c06bb86d @@ -12769,12 +13001,12 @@ package: manager: conda platform: osx-arm64 dependencies: - setuptools: '' - six: '' - pytest: '' pip: '' pyopenssl: '' + pytest: '' python: '>=3.9' + setuptools: '' + six: '' url: https://conda.anaconda.org/conda-forge/noarch/myproxyclient-2.1.1-pyhd8ed1ab_1.conda hash: md5: 1efb1227abaf20324ceb7ac9c06bb86d @@ -12782,39 +13014,39 @@ package: category: main optional: false - name: narwhals - version: 1.29.1 + version: 2.3.0 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/narwhals-1.29.1-pyhd8ed1ab_0.conda + python: '' + url: https://conda.anaconda.org/conda-forge/noarch/narwhals-2.3.0-pyhcf101f3_0.conda hash: - md5: 8e0f89f8f21ecaecf012e0c4770a4533 - sha256: 96181d5f2d6f78e02ab34f023262a592604979ef88860fd7abcf1a971ae9ddb7 + md5: ae268cbf8676bb70014132fc9dd1a0e3 + sha256: 8877c4bc67b9578766f905139e510ac8669d7200f0e3adf0b4e04d7ecc214c15 category: main optional: false - name: narwhals - version: 1.29.1 + version: 2.3.0 manager: conda platform: osx-64 dependencies: - python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/narwhals-1.29.1-pyhd8ed1ab_0.conda + python: '>=3.10' + url: https://conda.anaconda.org/conda-forge/noarch/narwhals-2.3.0-pyhcf101f3_0.conda hash: - md5: 8e0f89f8f21ecaecf012e0c4770a4533 - sha256: 96181d5f2d6f78e02ab34f023262a592604979ef88860fd7abcf1a971ae9ddb7 + md5: ae268cbf8676bb70014132fc9dd1a0e3 + sha256: 8877c4bc67b9578766f905139e510ac8669d7200f0e3adf0b4e04d7ecc214c15 category: main optional: false - name: narwhals - version: 1.29.1 + version: 2.3.0 manager: conda platform: osx-arm64 dependencies: - python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/narwhals-1.29.1-pyhd8ed1ab_0.conda + python: '>=3.10' + url: https://conda.anaconda.org/conda-forge/noarch/narwhals-2.3.0-pyhcf101f3_0.conda hash: - md5: 8e0f89f8f21ecaecf012e0c4770a4533 - sha256: 96181d5f2d6f78e02ab34f023262a592604979ef88860fd7abcf1a971ae9ddb7 + md5: ae268cbf8676bb70014132fc9dd1a0e3 + sha256: 8877c4bc67b9578766f905139e510ac8669d7200f0e3adf0b4e04d7ecc214c15 category: main optional: false - name: natsort @@ -12873,10 +13105,10 @@ package: manager: conda platform: osx-64 dependencies: - numpy: '' + cftime: '>=1.5' matplotlib-base: '' + numpy: '' python: '>=3.9' - cftime: '>=1.5' url: https://conda.anaconda.org/conda-forge/noarch/nc-time-axis-1.4.1-pyhd8ed1ab_1.conda hash: md5: 9a2be7d0089f5934b550933ca0d9fe85 @@ -12888,33 +13120,16 @@ package: manager: conda platform: osx-arm64 dependencies: - numpy: '' + cftime: '>=1.5' matplotlib-base: '' + numpy: '' python: '>=3.9' - cftime: '>=1.5' url: https://conda.anaconda.org/conda-forge/noarch/nc-time-axis-1.4.1-pyhd8ed1ab_1.conda hash: md5: 9a2be7d0089f5934b550933ca0d9fe85 sha256: 59c43a84c80b1e9b9271fb73c495591004e243f1ee2b1dbe79f90685d2579e6f category: main optional: false -- name: nccl - version: 2.25.1.1 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - cuda-version: '>=11,<12.0a0' - libgcc: '' - libgcc-ng: '>=12' - libstdcxx: '' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/nccl-2.25.1.1-h03a54cd_0.conda - hash: - md5: b958860b624f8c83ef69268cdc949d38 - sha256: 67ebac1f1302725a7a361182793187f6a2ddba85f8805b9f1dca4b4821f82843 - category: main - optional: false - name: ncurses version: '6.5' manager: conda @@ -12970,8 +13185,8 @@ package: manager: conda platform: osx-64 dependencies: - six: '' python: '>=3.9' + six: '' url: https://conda.anaconda.org/conda-forge/noarch/nested-lookup-0.2.25-pyhd8ed1ab_2.conda hash: md5: cc2da171723d50bc1a7f8a53a8d0319f @@ -12983,8 +13198,8 @@ package: manager: conda platform: osx-arm64 dependencies: - six: '' python: '>=3.9' + six: '' url: https://conda.anaconda.org/conda-forge/noarch/nested-lookup-0.2.25-pyhd8ed1ab_2.conda hash: md5: cc2da171723d50bc1a7f8a53a8d0319f @@ -13015,7 +13230,7 @@ package: dependencies: __osx: '>=10.13' hdf5: '>=1.14.3,<1.14.4.0a0' - libgfortran: 5.* + libgfortran: '>=5' libgfortran5: '>=13.2.0' libnetcdf: '>=4.9.2,<4.9.3.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/netcdf-fortran-4.6.1-nompi_h4680a16_108.conda @@ -13031,7 +13246,7 @@ package: dependencies: __osx: '>=11.0' hdf5: '>=1.14.3,<1.14.4.0a0' - libgfortran: 5.* + libgfortran: '>=5' libgfortran5: '>=13.2.0' libnetcdf: '>=4.9.2,<4.9.3.0a0' url: https://conda.anaconda.org/conda-forge/osx-arm64/netcdf-fortran-4.6.1-nompi_hb61fc8b_108.conda @@ -13102,132 +13317,132 @@ package: category: main optional: false - name: networkx - version: 3.4.2 + version: '3.5' manager: conda platform: linux-64 dependencies: python: '' - url: https://conda.anaconda.org/conda-forge/noarch/networkx-3.4.2-pyh267e887_2.conda + url: https://conda.anaconda.org/conda-forge/noarch/networkx-3.5-pyhe01879c_0.conda hash: - md5: fd40bf7f7f4bc4b647dc8512053d9873 - sha256: 39625cd0c9747fa5c46a9a90683b8997d8b9649881b3dc88336b13b7bdd60117 + md5: 16bff3d37a4f99e3aa089c36c2b8d650 + sha256: 02019191a2597865940394ff42418b37bc585a03a1c643d7cea9981774de2128 category: main optional: false - name: networkx - version: 3.4.2 + version: '3.5' manager: conda platform: osx-64 dependencies: - python: '>=3.10' - url: https://conda.anaconda.org/conda-forge/noarch/networkx-3.4.2-pyh267e887_2.conda + python: '>=3.11' + url: https://conda.anaconda.org/conda-forge/noarch/networkx-3.5-pyhe01879c_0.conda hash: - md5: fd40bf7f7f4bc4b647dc8512053d9873 - sha256: 39625cd0c9747fa5c46a9a90683b8997d8b9649881b3dc88336b13b7bdd60117 + md5: 16bff3d37a4f99e3aa089c36c2b8d650 + sha256: 02019191a2597865940394ff42418b37bc585a03a1c643d7cea9981774de2128 category: main optional: false - name: networkx - version: 3.4.2 + version: '3.5' manager: conda platform: osx-arm64 dependencies: - python: '>=3.10' - url: https://conda.anaconda.org/conda-forge/noarch/networkx-3.4.2-pyh267e887_2.conda + python: '>=3.11' + url: https://conda.anaconda.org/conda-forge/noarch/networkx-3.5-pyhe01879c_0.conda hash: - md5: fd40bf7f7f4bc4b647dc8512053d9873 - sha256: 39625cd0c9747fa5c46a9a90683b8997d8b9649881b3dc88336b13b7bdd60117 + md5: 16bff3d37a4f99e3aa089c36c2b8d650 + sha256: 02019191a2597865940394ff42418b37bc585a03a1c643d7cea9981774de2128 category: main optional: false - name: nspr - version: '4.36' + version: '4.37' manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - libstdcxx: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/nspr-4.36-h5888daf_0.conda + libgcc: '>=14' + libstdcxx: '>=14' + url: https://conda.anaconda.org/conda-forge/linux-64/nspr-4.37-h29cc59b_0.conda hash: - md5: de9cd5bca9e4918527b9b72b6e2e1409 - sha256: a87471d9265a7c02a98c20debac8b13afd80963968ed7b1c1c2ac7b80955ce31 + md5: d73ccc379297a67ed921bd55b38a6c6a + sha256: 472306630dcd49a221863b91bd89f5b8b81daf1b99adf1968c9f12021176d873 category: main optional: false - name: nspr - version: '4.36' + version: '4.37' manager: conda platform: osx-64 dependencies: __osx: '>=10.13' - libcxx: '>=17' - url: https://conda.anaconda.org/conda-forge/osx-64/nspr-4.36-h97d8b74_0.conda + libcxx: '>=19' + url: https://conda.anaconda.org/conda-forge/osx-64/nspr-4.37-hbd2c7f0_0.conda hash: - md5: 9367273bb726a8991cd9bf9b1a022f57 - sha256: c98566d1280b73d8660f9e9db5a735afb2512a93e04dff0de1e51b2af9133d21 + md5: 116be2e3c8a35da3a8ee4ebb14fdd74e + sha256: fea761090e6406569bb0b65cb09679f1831eb9cb9b4fd841d52835dd8b79b967 category: main optional: false - name: nspr - version: '4.36' + version: '4.37' manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' - libcxx: '>=17' - url: https://conda.anaconda.org/conda-forge/osx-arm64/nspr-4.36-h5833ebf_0.conda + libcxx: '>=19' + url: https://conda.anaconda.org/conda-forge/osx-arm64/nspr-4.37-h31e89c2_0.conda hash: - md5: 026a08bd5b6a2a2f240c00c32446156d - sha256: 71f790d3dafe309e46c2214a6354d8d1818d646d637b2f5f9f84c5aa5c315a42 + md5: 1add5064a24aa483d1233c560ef8ee4a + sha256: fe47c5d0542b6f928c31bf1c5251aa85aff9b50c48b56a4c7c6fce3afcd60e57 category: main optional: false - name: nss - version: '3.108' + version: '3.115' manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - libsqlite: '>=3.48.0,<4.0a0' - libstdcxx: '>=13' + libgcc: '>=14' + libsqlite: '>=3.50.4,<4.0a0' + libstdcxx: '>=14' libzlib: '>=1.3.1,<2.0a0' - nspr: '>=4.36,<5.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/nss-3.108-h159eef7_0.conda + nspr: '>=4.37,<5.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/nss-3.115-hc3c8bcf_0.conda hash: - md5: 3c872a5aa802ee5c645e09d4c5d38585 - sha256: 32c1dad692c37978378bbdd6fbca7a1c3bbac576240cf0001fb1e210e1a4e77f + md5: c8873d2f90ad15aaec7be6926f11b53d + sha256: d57e18a97fe89efffa419843f994be5cb03da40728398fa388090111f59083d5 category: main optional: false - name: nss - version: '3.108' + version: '3.115' manager: conda platform: osx-64 dependencies: __osx: '>=10.13' - libcxx: '>=18' - libsqlite: '>=3.48.0,<4.0a0' + libcxx: '>=19' + libsqlite: '>=3.50.4,<4.0a0' libzlib: '>=1.3.1,<2.0a0' - nspr: '>=4.36,<5.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/nss-3.108-h32a8879_0.conda + nspr: '>=4.37,<5.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/nss-3.115-h630f822_0.conda hash: - md5: 6205aa62494689d1bdd26ca01af72268 - sha256: 4b689a79dc81bad546e8e8a4dd79a84b6f93228acefac08f60aa64db6c6fbbb9 + md5: 67bf23a7233233c6628bf95c5512a82c + sha256: fdb721223e833c99b97247081dc5b9f7471b7c23dafce5d198420cfa06fd7a73 category: main optional: false - name: nss - version: '3.108' + version: '3.115' manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' - libcxx: '>=18' - libsqlite: '>=3.48.0,<4.0a0' + libcxx: '>=19' + libsqlite: '>=3.50.4,<4.0a0' libzlib: '>=1.3.1,<2.0a0' - nspr: '>=4.36,<5.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/nss-3.108-ha3c76ea_0.conda + nspr: '>=4.37,<5.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/nss-3.115-h5efccd4_0.conda hash: - md5: c31f54afadf1024210057b76445227d1 - sha256: d69d091735b1028b9ccac7f1ededa59e882e93cd1224a902409daa5847be9c65 + md5: 87cf09546b6363c4d9ab9d0533bcb2e4 + sha256: 3267955024a30a326c3ffcad50f51aedbb4337efdee4713c184e4e46ad2e51ec category: main optional: false - name: numba - version: 0.61.0 + version: 0.61.2 manager: conda platform: linux-64 dependencies: @@ -13236,108 +13451,111 @@ package: libgcc: '>=13' libstdcxx: '>=13' llvmlite: '>=0.44.0,<0.45.0a0' - numpy: '>=1.24,<2.2' + numpy: '>=1.24,<2.3' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/linux-64/numba-0.61.0-py312h2e6246c_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/numba-0.61.2-py312h7bcfee6_1.conda hash: - md5: f65d300639d0d9d2777cd4cb10440eab - sha256: 1ebd4f29d7ffa7aa8320a16caee7e6722b719daf4819c08cdb30c8c636f005b9 + md5: 4444225bda83e059d679990431962b86 + sha256: 58f4e5804a66ce3e485978f47461d5ac3b29653f86534bcc60554cdff8afb9e0 category: main optional: false - name: numba - version: 0.61.0 + version: 0.61.2 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' libcxx: '>=18' - llvm-openmp: '>=19.1.7' + llvm-openmp: '>=20.1.6' llvmlite: '>=0.44.0,<0.45.0a0' - numpy: '>=1.24,<2.2' + numpy: '>=1.24,<2.3' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-64/numba-0.61.0-py312hfa89a5f_1.conda + url: https://conda.anaconda.org/conda-forge/osx-64/numba-0.61.2-py312h0fa4d01_1.conda hash: - md5: 21d5d1c7a1e4cb6e94b274487975b03d - sha256: 42beb920fc839d299a03a478d6fc15429c8a1dfeedb5ddde2367eb84db52e63b + md5: e9a25f6c1e576fd902cf6a9b20c24e7f + sha256: 91dac0bcb736a440483c8e1c3cef93b370b16fdd28726922046da287c1304205 category: main optional: false - name: numba - version: 0.61.0 + version: 0.61.2 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' libcxx: '>=18' - llvm-openmp: '>=19.1.7' + llvm-openmp: '>=20.1.6' llvmlite: '>=0.44.0,<0.45.0a0' - numpy: '>=1.24,<2.2' + numpy: '>=1.24,<2.3' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-arm64/numba-0.61.0-py312hdf12f13_1.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/numba-0.61.2-py312h22bc582_1.conda hash: - md5: c71f93305452b543043100f7dc71f9ac - sha256: ad53ce23810a69901ffca9492c1bafcecac53256a8064209be6f8de6153ee966 + md5: c3ad319f65ea4b72c91421f70cf30388 + sha256: 7ee05582607390e24aae02a12131c6842e075bd7cdcb157f6e86214f5166ec42 category: main optional: false - name: numcodecs - version: 0.15.1 + version: 0.16.1 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' deprecated: '' - libgcc: '>=13' - libstdcxx: '>=13' + libgcc: '>=14' + libstdcxx: '>=14' msgpack-python: '' numpy: '>=1.24' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/linux-64/numcodecs-0.15.1-py312hf9745cd_0.conda + typing_extensions: '' + url: https://conda.anaconda.org/conda-forge/linux-64/numcodecs-0.16.1-py312hf79963d_1.conda hash: - md5: 8a1f88d4985ee1c16b0db1af39a8554d - sha256: 209a84599e36db68865dce5618c3328a2d57267d339255204815885b220a20f2 + md5: 32691e69880c1820aca69cfed5eb95ca + sha256: 242adc5e0cad9ec2c6e7fd99e619b1cc713009142df30bfffdd0357176ba139a category: main optional: false - name: numcodecs - version: 0.15.1 + version: 0.16.1 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' deprecated: '' - libcxx: '>=18' + libcxx: '>=19' msgpack-python: '' numpy: '>=1.24' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-64/numcodecs-0.15.1-py312hec45ffd_0.conda + typing_extensions: '' + url: https://conda.anaconda.org/conda-forge/osx-64/numcodecs-0.16.1-py312hbf2c5ff_1.conda hash: - md5: d406ff7c8d5b3d2bade6bb026efa81b4 - sha256: a93ce7220dd47dd353c82ec554ee72c546be9ff1a0460391f004f04d61df27f8 + md5: dacdecebcf12bde124327f5a71e647a4 + sha256: fc97630c0cfe9931259629134b06e51b649fef179548dd1fe4c44833b3ee30d6 category: main optional: false - name: numcodecs - version: 0.15.1 + version: 0.16.1 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' deprecated: '' - libcxx: '>=18' + libcxx: '>=19' msgpack-python: '' numpy: '>=1.24' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-arm64/numcodecs-0.15.1-py312hcb1e3ce_0.conda + typing_extensions: '' + url: https://conda.anaconda.org/conda-forge/osx-arm64/numcodecs-0.16.1-py312h98f7732_1.conda hash: - md5: c83fe9947503b337f3e5d993de6bcaea - sha256: 86a69d03bb12f4c4600941e07210c883adbd4e19b5401b3f5e233b68447741cd + md5: 152a7e2c5677fe1247323821eb2945df + sha256: 975919ae96e11448782d662548a4f13ec3b78a2489d9e45a8e2c48ce3944eda0 category: main optional: false - name: numpy - version: 2.1.3 + version: 2.2.6 manager: conda platform: linux-64 dependencies: @@ -13349,14 +13567,14 @@ package: libstdcxx: '>=13' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/linux-64/numpy-2.1.3-py312h58c1407_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/numpy-2.2.6-py312h72c5963_0.conda hash: - md5: dfdbc12e6d81889ba4c494a23f23eba8 - sha256: e4c14f71588a5627a6935d3e7d9ca78a8387229ec8ebc91616b0988ce57ba0dc + md5: 17fac9db62daa5c810091c2882b28f45 + sha256: c3b3ff686c86ed3ec7a2cc38053fd6234260b64286c2bd573e436156f39d14a7 category: main optional: false - name: numpy - version: 2.1.3 + version: 2.2.6 manager: conda platform: osx-64 dependencies: @@ -13367,14 +13585,14 @@ package: liblapack: '>=3.9.0,<4.0a0' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-64/numpy-2.1.3-py312hfc93d17_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/numpy-2.2.6-py312h6693b03_0.conda hash: - md5: 011118baf131914d1cb48e07317f0946 - sha256: 2f120e958da2d6ab7e4785a42515b4f65f70422b8b722e1a75654962fcfb26e9 + md5: 486e149e3648cbf8b92b0512db99bce3 + sha256: 22bc6d7ac48df0a3130a24b9426a004977cb5dc8b5edbb3f3d2579a478121cbd category: main optional: false - name: numpy - version: 2.1.3 + version: 2.2.6 manager: conda platform: osx-arm64 dependencies: @@ -13385,10 +13603,10 @@ package: liblapack: '>=3.9.0,<4.0a0' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-arm64/numpy-2.1.3-py312h94ee1e1_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/numpy-2.2.6-py312h7c1f314_0.conda hash: - md5: a2af54c86582e08718805c69af737897 - sha256: cd287b6c270ee8af77d200c46d56fdfe1e2a9deeff68044439718b8d073214dd + md5: fff7ab22b4f5c7036d3c2e1f92632fa4 + sha256: f5d69838c10a6c34a6de8b643b1795bf6fa9b22642ede5fc296d5673eabc344e category: main optional: false - name: openjpeg @@ -13397,15 +13615,15 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - libpng: '>=1.6.44,<1.7.0a0' - libstdcxx: '>=13' + libgcc: '>=14' + libpng: '>=1.6.50,<1.7.0a0' + libstdcxx: '>=14' libtiff: '>=4.7.0,<4.8.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.3-h5fbd93e_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.3-h55fea9a_1.conda hash: - md5: 9e5816bc95d285c115a3ebc2f8563564 - sha256: 5bee706ea5ba453ed7fd9da7da8380dd88b865c8d30b5aaec14d2b6dd32dbc39 + md5: 01243c4aaf71bde0297966125aea4706 + sha256: 0b7396dacf988f0b859798711b26b6bc9c6161dca21bacfd778473da58730afa category: main optional: false - name: openjpeg @@ -13414,14 +13632,14 @@ package: platform: osx-64 dependencies: __osx: '>=10.13' - libcxx: '>=18' - libpng: '>=1.6.44,<1.7.0a0' + libcxx: '>=19' + libpng: '>=1.6.50,<1.7.0a0' libtiff: '>=4.7.0,<4.8.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/openjpeg-2.5.3-h7fd6d84_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/openjpeg-2.5.3-h036ada5_1.conda hash: - md5: 025c711177fc3309228ca1a32374458d - sha256: faea03f36c9aa3524c911213b116da41695ff64b952d880551edee2843fe115b + md5: 38f264b121a043cf379980c959fb2d75 + sha256: fea2a79edb123fda31d73857e96b6cd24404a31d41693d8ef41235caed74b28e category: main optional: false - name: openjpeg @@ -13430,18 +13648,18 @@ package: platform: osx-arm64 dependencies: __osx: '>=11.0' - libcxx: '>=18' - libpng: '>=1.6.44,<1.7.0a0' + libcxx: '>=19' + libpng: '>=1.6.50,<1.7.0a0' libtiff: '>=4.7.0,<4.8.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/openjpeg-2.5.3-h8a3d83b_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/openjpeg-2.5.3-h889cd5d_1.conda hash: - md5: 4b71d78648dbcf68ce8bf22bb07ff838 - sha256: 1d59bc72ca7faac06d349c1a280f5cfb8a57ee5896f1e24225a997189d7418c7 + md5: ab581998c77c512d455a13befcddaac3 + sha256: 6013916893fcd9bc97c479279cfe4616de7735ec566bad0ee41bc729e14d31b2 category: main optional: false - name: openldap - version: 2.6.9 + version: 2.6.10 manager: conda platform: linux-64 dependencies: @@ -13450,15 +13668,15 @@ package: krb5: '>=1.21.3,<1.22.0a0' libgcc: '>=13' libstdcxx: '>=13' - openssl: '>=3.4.0,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/openldap-2.6.9-he970967_0.conda + openssl: '>=3.5.0,<4.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/openldap-2.6.10-he970967_0.conda hash: - md5: ca2de8bbdc871bce41dbf59e51324165 - sha256: 224f458848f792fe9e3587ee6b626d4eaad63aead0e5e6c25cbe29aba7b05c53 + md5: 2e5bf4f1da39c0b32778561c3c4e5878 + sha256: cb0b07db15e303e6f0a19646807715d28f1264c6350309a559702f4f34f37892 category: main optional: false - name: openldap - version: 2.6.9 + version: 2.6.10 manager: conda platform: osx-64 dependencies: @@ -13466,15 +13684,15 @@ package: cyrus-sasl: '>=2.1.27,<3.0a0' krb5: '>=1.21.3,<1.22.0a0' libcxx: '>=18' - openssl: '>=3.4.0,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/openldap-2.6.9-hd8a590d_0.conda + openssl: '>=3.5.0,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/openldap-2.6.10-hd8a590d_0.conda hash: - md5: 10dff9d8c67ae8b807b9fe8cfe9ca1d0 - sha256: b0c541939d905a1a23c41f0f22ad34401da50470e779a6e618c37fdba6c057aa + md5: 60bd9b6c1e5208ff2f4a39ab3eabdee8 + sha256: 70b8c1ffc06629c3ef824d337ab75df28c50a05293a4c544b03ff41d82c37c73 category: main optional: false - name: openldap - version: 2.6.9 + version: 2.6.10 manager: conda platform: osx-arm64 dependencies: @@ -13482,11 +13700,11 @@ package: cyrus-sasl: '>=2.1.27,<3.0a0' krb5: '>=1.21.3,<1.22.0a0' libcxx: '>=18' - openssl: '>=3.4.0,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/openldap-2.6.9-hbe55e7a_0.conda + openssl: '>=3.5.0,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/openldap-2.6.10-hbe55e7a_0.conda hash: - md5: 8291e59e1dd136bceecdefbc7207ecd6 - sha256: 5ae85f00a9dcf438e375d4fb5c45c510c7116e32c4b7af608ffd88e9e9dc6969 + md5: 6fd5d73c63b5d37d9196efb4f044af76 + sha256: 08d859836b81296c16f74336c3a9a455b23d57ce1d7c2b0b3e1b7a07f984c677 category: main optional: false - name: openpyxl @@ -13533,43 +13751,43 @@ package: category: main optional: false - name: openssl - version: 3.4.1 + version: 3.5.2 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' ca-certificates: '' - libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.4.1-h7b32b05_0.conda + libgcc: '>=14' + url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.5.2-h26f9b46_0.conda hash: - md5: 41adf927e746dc75ecf0ef841c454e48 - sha256: cbf62df3c79a5c2d113247ddea5658e9ff3697b6e741c210656e239ecaf1768f + md5: ffffb341206dd0dab0c36053c048d621 + sha256: c9f54d4e8212f313be7b02eb962d0cb13a8dae015683a403d3accd4add3e520e category: main optional: false - name: openssl - version: 3.4.1 + version: 3.5.2 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' ca-certificates: '' - url: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.4.1-hc426f3f_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.5.2-h6e31bce_0.conda hash: - md5: a7d63f8e7ab23f71327ea6d27e2d5eae - sha256: 505a46671dab5d66df8e684f99a9ae735a607816b12810b572d63caa512224df + md5: 22f5d63e672b7ba467969e9f8b740ecd + sha256: 8be57a11019666aa481122c54e29afd604405b481330f37f918e9fbcd145ef89 category: main optional: false - name: openssl - version: 3.4.1 + version: 3.5.2 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' ca-certificates: '' - url: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.4.1-h81ee809_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.5.2-he92f556_0.conda hash: - md5: 75f9f0c7b1740017e2db83a53ab9a28e - sha256: 4f8e2389e1b711b44182a075516d02c80fa7a3a7e25a71ff1b5ace9eae57a17a + md5: bcb0d87dfbc199d0a461d2c7ca30b3d8 + sha256: f6d1c87dbcf7b39fad24347570166dade1c533ae2d53c60a70fa4dc874ef0056 category: main optional: false - name: orc @@ -13631,200 +13849,200 @@ package: category: main optional: false - name: packaging - version: '24.2' + version: '25.0' manager: conda platform: linux-64 dependencies: - python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda + python: '' + url: https://conda.anaconda.org/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda hash: - md5: 3bfed7e6228ebf2f7b9eaa47f1b4e2aa - sha256: da157b19bcd398b9804c5c52fc000fcb8ab0525bdb9c70f95beaa0bb42f85af1 + md5: 58335b26c38bf4a20f399384c33cbcf9 + sha256: 289861ed0c13a15d7bbb408796af4de72c2fe67e2bcb0de98f4c3fce259d7991 category: main optional: false - name: packaging - version: '24.2' + version: '25.0' manager: conda platform: osx-64 dependencies: python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda + url: https://conda.anaconda.org/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda hash: - md5: 3bfed7e6228ebf2f7b9eaa47f1b4e2aa - sha256: da157b19bcd398b9804c5c52fc000fcb8ab0525bdb9c70f95beaa0bb42f85af1 + md5: 58335b26c38bf4a20f399384c33cbcf9 + sha256: 289861ed0c13a15d7bbb408796af4de72c2fe67e2bcb0de98f4c3fce259d7991 category: main optional: false - name: packaging - version: '24.2' + version: '25.0' manager: conda platform: osx-arm64 dependencies: python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda + url: https://conda.anaconda.org/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda hash: - md5: 3bfed7e6228ebf2f7b9eaa47f1b4e2aa - sha256: da157b19bcd398b9804c5c52fc000fcb8ab0525bdb9c70f95beaa0bb42f85af1 + md5: 58335b26c38bf4a20f399384c33cbcf9 + sha256: 289861ed0c13a15d7bbb408796af4de72c2fe67e2bcb0de98f4c3fce259d7991 category: main optional: false - name: pandas - version: 2.2.3 + version: 2.3.2 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - libstdcxx: '>=13' - numpy: '>=1.22.4' + libgcc: '>=14' + libstdcxx: '>=14' + numpy: '>=1.23,<3' python: '>=3.12,<3.13.0a0' - python-dateutil: '>=2.8.1' - python-tzdata: '>=2022a' + python-dateutil: '>=2.8.2' + python-tzdata: '>=2022.7' python_abi: 3.12.* - pytz: '>=2020.1,<2024.2' - url: https://conda.anaconda.org/conda-forge/linux-64/pandas-2.2.3-py312hf9745cd_1.conda + pytz: '>=2020.1' + url: https://conda.anaconda.org/conda-forge/linux-64/pandas-2.3.2-py312hf79963d_0.conda hash: - md5: 8bce4f6caaf8c5448c7ac86d87e26b4b - sha256: ad275a83bfebfa8a8fee9b0569aaf6f513ada6a246b2f5d5b85903d8ca61887e + md5: 73ed2394e5a88a403a071355698b48cb + sha256: 1d2bbe7e84460ee68a25687f0312d7a106e97a980e89c491cd5c0ea2d1f9e146 category: main optional: false - name: pandas - version: 2.2.3 + version: 2.3.2 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' - libcxx: '>=17' - numpy: '>=1.22.4' + libcxx: '>=19' + numpy: '>=1.23,<3' python: '>=3.12,<3.13.0a0' - python-dateutil: '>=2.8.1' - python-tzdata: '>=2022a' + python-dateutil: '>=2.8.2' + python-tzdata: '>=2022.7' python_abi: 3.12.* - pytz: '>=2020.1,<2024.2' - url: https://conda.anaconda.org/conda-forge/osx-64/pandas-2.2.3-py312h98e817e_1.conda + pytz: '>=2020.1' + url: https://conda.anaconda.org/conda-forge/osx-64/pandas-2.3.2-py312hbf2c5ff_0.conda hash: - md5: a7f7c58bbbfcdf820edb6e544555fe8f - sha256: 86c252ce5718b55129303f7d5c9a8664d8f0b23e303579142d09fcfd701e4fbe + md5: c7b84cb440695f139ea34189a1c4e094 + sha256: 55e632cf2befb255b963b9d50d3b692294ae6a426aae0fad4526b975398d09f8 category: main optional: false - name: pandas - version: 2.2.3 + version: 2.3.2 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' - libcxx: '>=17' - numpy: '>=1.22.4' + libcxx: '>=19' + numpy: '>=1.23,<3' python: '>=3.12,<3.13.0a0' - python-dateutil: '>=2.8.1' - python-tzdata: '>=2022a' + python-dateutil: '>=2.8.2' + python-tzdata: '>=2022.7' python_abi: 3.12.* - pytz: '>=2020.1,<2024.2' - url: https://conda.anaconda.org/conda-forge/osx-arm64/pandas-2.2.3-py312hcd31e36_1.conda + pytz: '>=2020.1' + url: https://conda.anaconda.org/conda-forge/osx-arm64/pandas-2.3.2-py312h98f7732_0.conda hash: - md5: c68bfa69e6086c381c74e16fd72613a8 - sha256: ff0cb54b5d058c7987b4a0984066e893642d1865a7bb695294b6172e2fcdc457 + md5: 5e79cb3dfde551ceed2713a31babf903 + sha256: fcbd2083a33d7e3ae9fae3ed0612e8d3e47e67da0cf5c73137e6fb13a50bda9e category: main optional: false - name: pango - version: 1.56.1 + version: 1.56.3 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - cairo: '>=1.18.2,<2.0a0' + cairo: '>=1.18.4,<2.0a0' fontconfig: '>=2.15.0,<3.0a0' fonts-conda-ecosystem: '' - freetype: '>=2.12.1,<3.0a0' + freetype: '>=2.13.3,<3.0a0' fribidi: '>=1.0.10,<2.0a0' - harfbuzz: '>=10.2.0,<11.0a0' + harfbuzz: '>=11.0.0,<12.0a0' libexpat: '>=2.6.4,<3.0a0' libgcc: '>=13' - libglib: '>=2.82.2,<3.0a0' - libpng: '>=1.6.45,<1.7.0a0' + libglib: '>=2.84.0,<3.0a0' + libpng: '>=1.6.47,<1.7.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/pango-1.56.1-h861ebed_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/pango-1.56.3-h9ac818e_1.conda hash: - md5: 59e660508a4de9401543303d5f576aeb - sha256: 20e5e280859a7803e8b5a09f18a7e43b56d1b8e61e4888c1a24cbb0d5b9cabd3 + md5: 21899b96828014270bd24fd266096612 + sha256: 9c00bbc8871b9ce00d1a1f0c1a64f76c032cf16a56a28984b9bb59e46af3932d category: main optional: false - name: pango - version: 1.56.1 + version: 1.56.3 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' - cairo: '>=1.18.2,<2.0a0' + cairo: '>=1.18.4,<2.0a0' fontconfig: '>=2.15.0,<3.0a0' fonts-conda-ecosystem: '' - freetype: '>=2.12.1,<3.0a0' + freetype: '>=2.13.3,<3.0a0' fribidi: '>=1.0.10,<2.0a0' - harfbuzz: '>=10.2.0,<11.0a0' + harfbuzz: '>=11.0.0,<12.0a0' libexpat: '>=2.6.4,<3.0a0' - libglib: '>=2.82.2,<3.0a0' - libpng: '>=1.6.45,<1.7.0a0' + libglib: '>=2.84.0,<3.0a0' + libpng: '>=1.6.47,<1.7.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/pango-1.56.1-hf94f63b_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/pango-1.56.3-hae8941d_1.conda hash: - md5: 3888a31896ccefaa6aa608ff13fd527c - sha256: 2f8ec6dff342ef4417b9ab608a33cd1aac9167e778096c3ef0db997087c0e726 + md5: 17bcc6d5206e8a1a13cc478a777d79e5 + sha256: ff2cc0b201ce1b68a9f38c1dc71dbd26f70eef103089ae4ee26b7e80d336f0ab category: main optional: false - name: pango - version: 1.56.1 + version: 1.56.3 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' - cairo: '>=1.18.2,<2.0a0' + cairo: '>=1.18.4,<2.0a0' fontconfig: '>=2.15.0,<3.0a0' fonts-conda-ecosystem: '' - freetype: '>=2.12.1,<3.0a0' + freetype: '>=2.13.3,<3.0a0' fribidi: '>=1.0.10,<2.0a0' - harfbuzz: '>=10.2.0,<11.0a0' + harfbuzz: '>=11.0.0,<12.0a0' libexpat: '>=2.6.4,<3.0a0' - libglib: '>=2.82.2,<3.0a0' - libpng: '>=1.6.45,<1.7.0a0' + libglib: '>=2.84.0,<3.0a0' + libpng: '>=1.6.47,<1.7.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/pango-1.56.1-h73f1e88_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/pango-1.56.3-h5fd7515_1.conda hash: - md5: d90e7fdeb40d3e1739f3d2da0c15edf0 - sha256: 1f032cd6e70a07071f2839e79a07976b3d66c1c742e5bc5276ac91a4f738babb + md5: 2e5cef90f7d355790fa96f2459ee648f + sha256: 76e3843f37878629e744ec75d5f3acfc54a7bb23f9970139f4040f93209ef574 category: main optional: false - name: parso - version: 0.8.4 + version: 0.8.5 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_1.conda + python: '' + url: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.5-pyhcf101f3_0.conda hash: - md5: 5c092057b6badd30f75b06244ecd01c9 - sha256: 17131120c10401a99205fc6fe436e7903c0fa092f1b3e80452927ab377239bcc + md5: a110716cdb11cf51482ff4000dc253d7 + sha256: 30de7b4d15fbe53ffe052feccde31223a236dae0495bab54ab2479de30b2990f category: main optional: false - name: parso - version: 0.8.4 + version: 0.8.5 manager: conda platform: osx-64 dependencies: - python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_1.conda + python: '>=3.10' + url: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.5-pyhcf101f3_0.conda hash: - md5: 5c092057b6badd30f75b06244ecd01c9 - sha256: 17131120c10401a99205fc6fe436e7903c0fa092f1b3e80452927ab377239bcc + md5: a110716cdb11cf51482ff4000dc253d7 + sha256: 30de7b4d15fbe53ffe052feccde31223a236dae0495bab54ab2479de30b2990f category: main optional: false - name: parso - version: 0.8.4 + version: 0.8.5 manager: conda platform: osx-arm64 dependencies: - python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_1.conda + python: '>=3.10' + url: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.5-pyhcf101f3_0.conda hash: - md5: 5c092057b6badd30f75b06244ecd01c9 - sha256: 17131120c10401a99205fc6fe436e7903c0fa092f1b3e80452927ab377239bcc + md5: a110716cdb11cf51482ff4000dc253d7 + sha256: 30de7b4d15fbe53ffe052feccde31223a236dae0495bab54ab2479de30b2990f category: main optional: false - name: partd @@ -13846,9 +14064,9 @@ package: manager: conda platform: osx-64 dependencies: - toolz: '' locket: '' python: '>=3.9' + toolz: '' url: https://conda.anaconda.org/conda-forge/noarch/partd-1.4.2-pyhd8ed1ab_0.conda hash: md5: 0badf9c54e24cecfb0ad2f99d680c163 @@ -13860,9 +14078,9 @@ package: manager: conda platform: osx-arm64 dependencies: - toolz: '' locket: '' python: '>=3.9' + toolz: '' url: https://conda.anaconda.org/conda-forge/noarch/partd-1.4.2-pyhd8ed1ab_0.conda hash: md5: 0badf9c54e24cecfb0ad2f99d680c163 @@ -13887,8 +14105,8 @@ package: manager: conda platform: osx-64 dependencies: - python: '>=3.9' numpy: '>=1.4.0' + python: '>=3.9' url: https://conda.anaconda.org/conda-forge/noarch/patsy-1.0.1-pyhd8ed1ab_1.conda hash: md5: ee23fabfd0a8c6b8d6f3729b47b2859d @@ -13900,8 +14118,8 @@ package: manager: conda platform: osx-arm64 dependencies: - python: '>=3.9' numpy: '>=1.4.0' + python: '>=3.9' url: https://conda.anaconda.org/conda-forge/noarch/patsy-1.0.1-pyhd8ed1ab_1.conda hash: md5: ee23fabfd0a8c6b8d6f3729b47b2859d @@ -13915,12 +14133,12 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' bzip2: '>=1.0.8,<2.0a0' - libgcc-ng: '>=12' + libgcc: '>=13' libzlib: '>=1.3.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.44-hba22ea6_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.44-hc749103_2.conda hash: - md5: df359c09c41cd186fffb93a2d87aa6f5 - sha256: 1087716b399dab91cc9511d6499036ccdc53eb29a288bebcb19cf465c51d7c0d + md5: 31614c73d7b103ef76faa4d83d261d34 + sha256: 09717569649d89caafbf32f6cda1e65aef86e5a86c053d30e4ce77fca8d27b68 category: main optional: false - name: pcre2 @@ -13931,10 +14149,10 @@ package: __osx: '>=10.13' bzip2: '>=1.0.8,<2.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/pcre2-10.44-h7634a1b_2.conda + url: https://conda.anaconda.org/conda-forge/osx-64/pcre2-10.44-hf733adb_2.conda hash: - md5: 58cde0663f487778bcd7a0c8daf50293 - sha256: 336057fce69d45e1059f138beb38d60eb87ba858c3ad729ed49d9ecafd23669f + md5: c6873588a8175130eb931e91e80416c2 + sha256: 93c625933bb47149e250b3c530c7305e7c1dd6c39d8358da8e3e04806545a26b category: main optional: false - name: pcre2 @@ -13945,10 +14163,10 @@ package: __osx: '>=11.0' bzip2: '>=1.0.8,<2.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/pcre2-10.44-h297a79d_2.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/pcre2-10.44-ha881caa_2.conda hash: - md5: 147c83e5e44780c7492998acbacddf52 - sha256: 83153c7d8fd99cab33c92ce820aa7bfed0f1c94fc57010cf227b6e3c50cb7796 + md5: 1a3f7708de0b393e6665c9f7494b055e + sha256: 797411a2d748c11374b84329002f3c65db032cbf012b20d9b14dba9b6ac52d06 category: main optional: false - name: pexpect @@ -13969,8 +14187,8 @@ package: manager: conda platform: osx-64 dependencies: - python: '>=3.9' ptyprocess: '>=0.5' + python: '>=3.9' url: https://conda.anaconda.org/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_1.conda hash: md5: d0d408b1f18883a944376da5cf8101ea @@ -13982,8 +14200,8 @@ package: manager: conda platform: osx-arm64 dependencies: - python: '>=3.9' ptyprocess: '>=0.5' + python: '>=3.9' url: https://conda.anaconda.org/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_1.conda hash: md5: d0d408b1f18883a944376da5cf8101ea @@ -14027,269 +14245,272 @@ package: category: main optional: false - name: pillow - version: 11.1.0 + version: 11.3.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - freetype: '>=2.12.1,<3.0a0' - lcms2: '>=2.16,<3.0a0' - libgcc: '>=13' - libjpeg-turbo: '>=3.0.0,<4.0a0' + lcms2: '>=2.17,<3.0a0' + libfreetype: '>=2.13.3' + libfreetype6: '>=2.13.3' + libgcc: '>=14' + libjpeg-turbo: '>=3.1.0,<4.0a0' libtiff: '>=4.7.0,<4.8.0a0' - libwebp-base: '>=1.5.0,<2.0a0' + libwebp-base: '>=1.6.0,<2.0a0' libxcb: '>=1.17.0,<2.0a0' libzlib: '>=1.3.1,<2.0a0' openjpeg: '>=2.5.3,<3.0a0' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* tk: '>=8.6.13,<8.7.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/pillow-11.1.0-py312h80c1187_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/pillow-11.3.0-py312h0e488c8_1.conda hash: - md5: d3894405f05b2c0f351d5de3ae26fa9c - sha256: 5c347962202b55ae4d8a463e0555c5c6ca33396266a08284bf1384399894e541 + md5: 6b8bc565d829a9e46178da86e05e19d0 + sha256: 27248be068e1ad8be4872e49d89f22904bb578e2a5bafcb2bfffef7da544f242 category: main optional: false - name: pillow - version: 11.1.0 + version: 11.3.0 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' - freetype: '>=2.12.1,<3.0a0' - lcms2: '>=2.16,<3.0a0' - libjpeg-turbo: '>=3.0.0,<4.0a0' + lcms2: '>=2.17,<3.0a0' + libfreetype: '>=2.13.3' + libfreetype6: '>=2.13.3' + libjpeg-turbo: '>=3.1.0,<4.0a0' libtiff: '>=4.7.0,<4.8.0a0' - libwebp-base: '>=1.5.0,<2.0a0' + libwebp-base: '>=1.6.0,<2.0a0' libxcb: '>=1.17.0,<2.0a0' libzlib: '>=1.3.1,<2.0a0' openjpeg: '>=2.5.3,<3.0a0' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* tk: '>=8.6.13,<8.7.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/pillow-11.1.0-py312hd9f36e3_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/pillow-11.3.0-py312h528e901_1.conda hash: - md5: 3b4657a78aaca3af9b392b0657eb3e94 - sha256: 3f6794fae455f2a1854cef4a3f3bb0bc9bfb68412dc64caf22cb797a455ef73b + md5: 98d903b8fa173c81376b8c8a25d95a1c + sha256: 710a08c712120b4bd1f3e3c02f111718f5bdc9644a2935a665b8c875a3cf33e6 category: main optional: false - name: pillow - version: 11.1.0 + version: 11.3.0 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' - freetype: '>=2.12.1,<3.0a0' - lcms2: '>=2.16,<3.0a0' - libjpeg-turbo: '>=3.0.0,<4.0a0' + lcms2: '>=2.17,<3.0a0' + libfreetype: '>=2.13.3' + libfreetype6: '>=2.13.3' + libjpeg-turbo: '>=3.1.0,<4.0a0' libtiff: '>=4.7.0,<4.8.0a0' - libwebp-base: '>=1.5.0,<2.0a0' + libwebp-base: '>=1.6.0,<2.0a0' libxcb: '>=1.17.0,<2.0a0' libzlib: '>=1.3.1,<2.0a0' openjpeg: '>=2.5.3,<3.0a0' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* tk: '>=8.6.13,<8.7.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/pillow-11.1.0-py312h50aef2c_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/pillow-11.3.0-py312hce42e9c_1.conda hash: - md5: 94d6ba8cd468668a9fb04193b0f4b36e - sha256: b29b7c915053e06a7a5b4118760202c572c9c35d23bd6ce8e73270b6a50e50ee + md5: 2f34c31cdeb63c63316484b268b8500e + sha256: 01c6a1cca59bac7bb9c22bfbc04806246abd4833d9b2ba7f4087935099f69211 category: main optional: false - name: pip - version: 25.0.1 + version: '25.2' manager: conda platform: linux-64 dependencies: python: '>=3.9,<3.13.0a0' setuptools: '' wheel: '' - url: https://conda.anaconda.org/conda-forge/noarch/pip-25.0.1-pyh8b19718_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pip-25.2-pyh8b19718_0.conda hash: - md5: 79b5c1440aedc5010f687048d9103628 - sha256: 585940f09d87787f79f73ff5dff8eb2af8a67e5bec5eebf2f553cd26c840ba69 + md5: dfce4b2af4bfe90cdcaf56ca0b28ddf5 + sha256: ec9ed3cef137679f3e3a68e286c6efd52144684e1be0b05004d9699882dadcdd category: main optional: false - name: pip - version: 25.0.1 + version: '25.2' manager: conda platform: osx-64 dependencies: + python: '>=3.9,<3.13.0a0' setuptools: '' wheel: '' - python: '>=3.9,<3.13.0a0' - url: https://conda.anaconda.org/conda-forge/noarch/pip-25.0.1-pyh8b19718_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pip-25.2-pyh8b19718_0.conda hash: - md5: 79b5c1440aedc5010f687048d9103628 - sha256: 585940f09d87787f79f73ff5dff8eb2af8a67e5bec5eebf2f553cd26c840ba69 + md5: dfce4b2af4bfe90cdcaf56ca0b28ddf5 + sha256: ec9ed3cef137679f3e3a68e286c6efd52144684e1be0b05004d9699882dadcdd category: main optional: false - name: pip - version: 25.0.1 + version: '25.2' manager: conda platform: osx-arm64 dependencies: + python: '>=3.9,<3.13.0a0' setuptools: '' wheel: '' - python: '>=3.9,<3.13.0a0' - url: https://conda.anaconda.org/conda-forge/noarch/pip-25.0.1-pyh8b19718_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pip-25.2-pyh8b19718_0.conda hash: - md5: 79b5c1440aedc5010f687048d9103628 - sha256: 585940f09d87787f79f73ff5dff8eb2af8a67e5bec5eebf2f553cd26c840ba69 + md5: dfce4b2af4bfe90cdcaf56ca0b28ddf5 + sha256: ec9ed3cef137679f3e3a68e286c6efd52144684e1be0b05004d9699882dadcdd category: main optional: false - name: pixman - version: 0.44.2 + version: 0.46.4 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - libstdcxx: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/pixman-0.44.2-h29eaf8c_0.conda + libgcc: '>=14' + libstdcxx: '>=14' + url: https://conda.anaconda.org/conda-forge/linux-64/pixman-0.46.4-h54a6638_1.conda hash: - md5: 5e2a7acfa2c24188af39e7944e1b3604 - sha256: 747c58db800d5583fee78e76240bf89cbaeedf7ab1ef339c2990602332b9c4be + md5: c01af13bdc553d1a8fbfff6e8db075f0 + sha256: 43d37bc9ca3b257c5dd7bf76a8426addbdec381f6786ff441dc90b1a49143b6a category: main optional: false - name: pixman - version: 0.44.2 + version: 0.46.4 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' - libcxx: '>=18' - url: https://conda.anaconda.org/conda-forge/osx-64/pixman-0.44.2-h1fd1274_0.conda + libcxx: '>=19' + url: https://conda.anaconda.org/conda-forge/osx-64/pixman-0.46.4-ha059160_1.conda hash: - md5: 9d3ed4c1a6e21051bf4ce53851acdc96 - sha256: 7e5a9823e7e759355b954037f97d4aa53c26db1d73408571e749f8375b363743 + md5: 742a8552e51029585a32b6024e9f57b4 + sha256: ff8b679079df25aa3ed5daf3f4e3a9c7ee79e7d4b2bd8a21de0f8e7ec7207806 category: main optional: false - name: pixman - version: 0.44.2 + version: 0.46.4 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' - libcxx: '>=18' - url: https://conda.anaconda.org/conda-forge/osx-arm64/pixman-0.44.2-h2f9eb0b_0.conda + libcxx: '>=19' + url: https://conda.anaconda.org/conda-forge/osx-arm64/pixman-0.46.4-h81086ad_1.conda hash: - md5: fa8e429fdb9e5b757281f69b8cc4330b - sha256: 28855d4cb2d9fc9a6bd9196dadbaecd6868ec706394cec2f88824a61ba4b1bc0 + md5: 17c3d745db6ea72ae2fce17e7338547f + sha256: 29c9b08a9b8b7810f9d4f159aecfd205fce051633169040005c0b7efad4bc718 category: main optional: false - name: platformdirs - version: 4.3.6 + version: 4.4.0 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.6-pyhd8ed1ab_1.conda + python: '' + url: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.4.0-pyhcf101f3_0.conda hash: - md5: 577852c7e53901ddccc7e6a9959ddebe - sha256: bb50f6499e8bc1d1a26f17716c97984671121608dc0c3ecd34858112bce59a27 + md5: cc9d9a3929503785403dbfad9f707145 + sha256: dfe0fa6e351d2b0cef95ac1a1533d4f960d3992f9e0f82aeb5ec3623a699896b category: main optional: false - name: platformdirs - version: 4.3.6 + version: 4.4.0 manager: conda platform: osx-64 dependencies: - python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.6-pyhd8ed1ab_1.conda + python: '>=3.10' + url: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.4.0-pyhcf101f3_0.conda hash: - md5: 577852c7e53901ddccc7e6a9959ddebe - sha256: bb50f6499e8bc1d1a26f17716c97984671121608dc0c3ecd34858112bce59a27 + md5: cc9d9a3929503785403dbfad9f707145 + sha256: dfe0fa6e351d2b0cef95ac1a1533d4f960d3992f9e0f82aeb5ec3623a699896b category: main optional: false - name: platformdirs - version: 4.3.6 + version: 4.4.0 manager: conda platform: osx-arm64 dependencies: - python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.6-pyhd8ed1ab_1.conda + python: '>=3.10' + url: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.4.0-pyhcf101f3_0.conda hash: - md5: 577852c7e53901ddccc7e6a9959ddebe - sha256: bb50f6499e8bc1d1a26f17716c97984671121608dc0c3ecd34858112bce59a27 + md5: cc9d9a3929503785403dbfad9f707145 + sha256: dfe0fa6e351d2b0cef95ac1a1533d4f960d3992f9e0f82aeb5ec3623a699896b category: main optional: false - name: plotly - version: 6.0.0 + version: 6.3.0 manager: conda platform: linux-64 dependencies: narwhals: '>=1.15.1' packaging: '' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/plotly-6.0.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/plotly-6.3.0-pyhd8ed1ab_0.conda hash: - md5: 6297a5427e2f36aaf84e979ba28bfa84 - sha256: 1b534839e22ef0d59bc35417f2dea3c65e6101a139e5dee008837a5290e4fd34 + md5: 5366b5b366cd3a2efa7e638792972ea1 + sha256: de59e60bdb5f42a6da18821e49545a0040c1f6940360c6177b5e3a350cc96d51 category: main optional: false - name: plotly - version: 6.0.0 + version: 6.3.0 manager: conda platform: osx-64 dependencies: + narwhals: '>=1.15.1' packaging: '' python: '>=3.9' - narwhals: '>=1.15.1' - url: https://conda.anaconda.org/conda-forge/noarch/plotly-6.0.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/plotly-6.3.0-pyhd8ed1ab_0.conda hash: - md5: 6297a5427e2f36aaf84e979ba28bfa84 - sha256: 1b534839e22ef0d59bc35417f2dea3c65e6101a139e5dee008837a5290e4fd34 + md5: 5366b5b366cd3a2efa7e638792972ea1 + sha256: de59e60bdb5f42a6da18821e49545a0040c1f6940360c6177b5e3a350cc96d51 category: main optional: false - name: plotly - version: 6.0.0 + version: 6.3.0 manager: conda platform: osx-arm64 dependencies: + narwhals: '>=1.15.1' packaging: '' python: '>=3.9' - narwhals: '>=1.15.1' - url: https://conda.anaconda.org/conda-forge/noarch/plotly-6.0.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/plotly-6.3.0-pyhd8ed1ab_0.conda hash: - md5: 6297a5427e2f36aaf84e979ba28bfa84 - sha256: 1b534839e22ef0d59bc35417f2dea3c65e6101a139e5dee008837a5290e4fd34 + md5: 5366b5b366cd3a2efa7e638792972ea1 + sha256: de59e60bdb5f42a6da18821e49545a0040c1f6940360c6177b5e3a350cc96d51 category: main optional: false - name: pluggy - version: 1.5.0 + version: 1.6.0 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda hash: - md5: e9dcbce5f45f9ee500e728ae58b605b6 - sha256: 122433fc5318816b8c69283aaf267c73d87aa2d09ce39f64c9805c9a3b264819 + md5: 7da7ccd349dbf6487a7778579d2bb971 + sha256: a8eb555eef5063bbb7ba06a379fa7ea714f57d9741fe0efdb9442dbbc2cccbcc category: main optional: false - name: pluggy - version: 1.5.0 + version: 1.6.0 manager: conda platform: osx-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda hash: - md5: e9dcbce5f45f9ee500e728ae58b605b6 - sha256: 122433fc5318816b8c69283aaf267c73d87aa2d09ce39f64c9805c9a3b264819 + md5: 7da7ccd349dbf6487a7778579d2bb971 + sha256: a8eb555eef5063bbb7ba06a379fa7ea714f57d9741fe0efdb9442dbbc2cccbcc category: main optional: false - name: pluggy - version: 1.5.0 + version: 1.6.0 manager: conda platform: osx-arm64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda hash: - md5: e9dcbce5f45f9ee500e728ae58b605b6 - sha256: 122433fc5318816b8c69283aaf267c73d87aa2d09ce39f64c9805c9a3b264819 + md5: 7da7ccd349dbf6487a7778579d2bb971 + sha256: a8eb555eef5063bbb7ba06a379fa7ea714f57d9741fe0efdb9442dbbc2cccbcc category: main optional: false - name: pooch @@ -14301,10 +14522,10 @@ package: platformdirs: '>=2.5.0' python: '>=3.9' requests: '>=2.19.0' - url: https://conda.anaconda.org/conda-forge/noarch/pooch-1.8.2-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/pooch-1.8.2-pyhd8ed1ab_3.conda hash: - md5: b3e783e8e8ed7577cf0b6dee37d1fbac - sha256: bedda6b36e8e42b0255179446699a0cf08051e6d9d358dd0dd0e787254a3620e + md5: d2bbbd293097e664ffb01fc4cdaf5729 + sha256: 032405adb899ba7c7cc24d3b4cd4e7f40cf24ac4f253a8e385a4f44ccb5e0fc6 category: main optional: false - name: pooch @@ -14312,14 +14533,14 @@ package: manager: conda platform: osx-64 dependencies: - python: '>=3.9' packaging: '>=20.0' - requests: '>=2.19.0' platformdirs: '>=2.5.0' - url: https://conda.anaconda.org/conda-forge/noarch/pooch-1.8.2-pyhd8ed1ab_1.conda + python: '>=3.9' + requests: '>=2.19.0' + url: https://conda.anaconda.org/conda-forge/noarch/pooch-1.8.2-pyhd8ed1ab_3.conda hash: - md5: b3e783e8e8ed7577cf0b6dee37d1fbac - sha256: bedda6b36e8e42b0255179446699a0cf08051e6d9d358dd0dd0e787254a3620e + md5: d2bbbd293097e664ffb01fc4cdaf5729 + sha256: 032405adb899ba7c7cc24d3b4cd4e7f40cf24ac4f253a8e385a4f44ccb5e0fc6 category: main optional: false - name: pooch @@ -14327,14 +14548,14 @@ package: manager: conda platform: osx-arm64 dependencies: - python: '>=3.9' packaging: '>=20.0' - requests: '>=2.19.0' platformdirs: '>=2.5.0' - url: https://conda.anaconda.org/conda-forge/noarch/pooch-1.8.2-pyhd8ed1ab_1.conda + python: '>=3.9' + requests: '>=2.19.0' + url: https://conda.anaconda.org/conda-forge/noarch/pooch-1.8.2-pyhd8ed1ab_3.conda hash: - md5: b3e783e8e8ed7577cf0b6dee37d1fbac - sha256: bedda6b36e8e42b0255179446699a0cf08051e6d9d358dd0dd0e787254a3620e + md5: d2bbbd293097e664ffb01fc4cdaf5729 + sha256: 032405adb899ba7c7cc24d3b4cd4e7f40cf24ac4f253a8e385a4f44ccb5e0fc6 category: main optional: false - name: poppler @@ -14470,7 +14691,7 @@ package: krb5: '>=1.21.3,<1.22.0a0' libgcc: '>=13' libpq: '17.2' - libxml2: '>=2.13.5,<3.0a0' + libxml2: '>=2.13.5,<2.14.0a0' libxslt: '>=1.1.39,<2.0a0' libzlib: '>=1.3.1,<2.0a0' lz4-c: '>=1.9.3,<1.10.0a0' @@ -14495,7 +14716,7 @@ package: icu: '>=75.1,<76.0a0' krb5: '>=1.21.3,<1.22.0a0' libpq: '17.2' - libxml2: '>=2.13.5,<3.0a0' + libxml2: '>=2.13.5,<2.14.0a0' libxslt: '>=1.1.39,<2.0a0' libzlib: '>=1.3.1,<2.0a0' lz4-c: '>=1.9.3,<1.10.0a0' @@ -14520,7 +14741,7 @@ package: icu: '>=75.1,<76.0a0' krb5: '>=1.21.3,<1.22.0a0' libpq: '17.2' - libxml2: '>=2.13.5,<3.0a0' + libxml2: '>=2.13.5,<2.14.0a0' libxslt: '>=1.1.39,<2.0a0' libzlib: '>=1.3.1,<2.0a0' lz4-c: '>=1.9.3,<1.10.0a0' @@ -14628,46 +14849,46 @@ package: category: main optional: false - name: prompt-toolkit - version: 3.0.50 + version: 3.0.52 manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '>=3.10' wcwidth: '' - url: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.50-pyha770c72_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.52-pyha770c72_0.conda hash: - md5: 7d823138f550b14ecae927a5ff3286de - sha256: 0749c49a349bf55b8539ce5addce559b77592165da622944a51c630e94d97889 + md5: edb16f14d920fb3faf17f5ce582942d6 + sha256: 4817651a276016f3838957bfdf963386438c70761e9faec7749d411635979bae category: main optional: false - name: prompt-toolkit - version: 3.0.50 + version: 3.0.52 manager: conda platform: osx-64 dependencies: + python: '>=3.10' wcwidth: '' - python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.50-pyha770c72_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.52-pyha770c72_0.conda hash: - md5: 7d823138f550b14ecae927a5ff3286de - sha256: 0749c49a349bf55b8539ce5addce559b77592165da622944a51c630e94d97889 + md5: edb16f14d920fb3faf17f5ce582942d6 + sha256: 4817651a276016f3838957bfdf963386438c70761e9faec7749d411635979bae category: main optional: false - name: prompt-toolkit - version: 3.0.50 + version: 3.0.52 manager: conda platform: osx-arm64 dependencies: + python: '>=3.10' wcwidth: '' - python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.50-pyha770c72_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.52-pyha770c72_0.conda hash: - md5: 7d823138f550b14ecae927a5ff3286de - sha256: 0749c49a349bf55b8539ce5addce559b77592165da622944a51c630e94d97889 + md5: edb16f14d920fb3faf17f5ce582942d6 + sha256: 4817651a276016f3838957bfdf963386438c70761e9faec7749d411635979bae category: main optional: false - name: propcache - version: 0.2.1 + version: 0.3.1 manager: conda platform: linux-64 dependencies: @@ -14675,38 +14896,38 @@ package: libgcc: '>=13' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/linux-64/propcache-0.2.1-py312h178313f_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/propcache-0.3.1-py312h178313f_0.conda hash: - md5: 349635694b4df27336bc15a49e9220e9 - sha256: 6d5ff6490c53e14591b70924711fe7bd70eb7fbeeeb1cbd9ed2f6d794ec8c4eb + md5: 0cf580c1b73146bb9ff1bbdb4d4c8cf9 + sha256: d0ff67d89cf379a9f0367f563320621f0bc3969fe7f5c85e020f437de0927bb4 category: main optional: false - name: propcache - version: 0.2.1 + version: 0.3.1 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-64/propcache-0.2.1-py312h3520af0_1.conda + url: https://conda.anaconda.org/conda-forge/osx-64/propcache-0.3.1-py312h3520af0_0.conda hash: - md5: e712bcabf1db361f1350b638be66caca - sha256: 04cd2c807af8ae2921e54c372620bb6d3391a7ad59c0aa566e4d21be0e558ae1 + md5: 9e58210edacc700e43c515206904f0ca + sha256: b589b640427dbfdc09a54783f89716440f4c9a4d9e479a2e4f33696f1073c401 category: main optional: false - name: propcache - version: 0.2.1 + version: 0.3.1 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-arm64/propcache-0.2.1-py312h998013c_1.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/propcache-0.3.1-py312h998013c_0.conda hash: - md5: 83678928c58c9ae76778a435b6c7a94a - sha256: 96145760baad111d7ae4213ea8f8cc035cf33b001f5ff37d92268e4d28b0941d + md5: d8280c97e09e85c72916a3d98a4076d7 + sha256: dd97df075f5198d42cc4be6773f1c41a9c07d631d95f91bfee8e9953eccc965b category: main optional: false - name: prov @@ -14732,13 +14953,13 @@ package: manager: conda platform: osx-64 dependencies: - python: '' - six: '>=1.9.0' - networkx: '>=2.0' - rdflib: '>=4.2.2' lxml: '>=3.3.5' - python-dateutil: '>=2.2' + networkx: '>=2.0' pydot: '>=1.2.0' + python: '' + python-dateutil: '>=2.2' + rdflib: '>=4.2.2' + six: '>=1.9.0' url: https://conda.anaconda.org/conda-forge/noarch/prov-2.0.0-pyhd3deb0d_0.tar.bz2 hash: md5: aa9b3ad140f6c0668c646f32e20ccf82 @@ -14750,13 +14971,13 @@ package: manager: conda platform: osx-arm64 dependencies: - python: '' - six: '>=1.9.0' - networkx: '>=2.0' - rdflib: '>=4.2.2' lxml: '>=3.3.5' - python-dateutil: '>=2.2' + networkx: '>=2.0' pydot: '>=1.2.0' + python: '' + python-dateutil: '>=2.2' + rdflib: '>=4.2.2' + six: '>=1.9.0' url: https://conda.anaconda.org/conda-forge/noarch/prov-2.0.0-pyhd3deb0d_0.tar.bz2 hash: md5: aa9b3ad140f6c0668c646f32e20ccf82 @@ -14769,13 +14990,13 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' + libgcc: '>=14' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/linux-64/psutil-7.0.0-py312h66e93f0_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/psutil-7.0.0-py312h4c3975b_1.conda hash: - md5: 8e30db4239508a538e4a3b3cdf5b9616 - sha256: 158047d7a80e588c846437566d0df64cec5b0284c7184ceb4f3c540271406888 + md5: ebc6080d32b9608710a0d651e581d9f4 + sha256: 87fa638e19db9c9c5a1e9169d12a4b90ea32c72b47e8da328b36d233ba72cc79 category: main optional: false - name: psutil @@ -14786,10 +15007,10 @@ package: __osx: '>=10.13' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-64/psutil-7.0.0-py312h01d7ebd_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/psutil-7.0.0-py312h2f459f6_1.conda hash: - md5: fcad6b89f4f7faa999fa4d887eab14ba - sha256: bdfa40a1ef3a80c3bec425a5ed507ebda2bdebce2a19bccb000db9d5c931750c + md5: d2d5563cc54683a441e2de5fd332911d + sha256: 818b08bcb49a1d2384b6244c0910ec1daec5c7182bfdf0e7b878d7526c0683e9 category: main optional: false - name: psutil @@ -14800,10 +15021,10 @@ package: __osx: '>=11.0' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-arm64/psutil-7.0.0-py312hea69d52_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/psutil-7.0.0-py312h163523d_1.conda hash: - md5: 0f461bd37cb428dc20213a08766bb25d - sha256: cb11dcb39b2035ef42c3df89b5a288744b5dcb5a98fb47385760843b1d4df046 + md5: 2d2326a0b582b1b56252a479f204fab1 + sha256: 7cae084fc2776ad6425d1713430ee39fb3366dae4742e005dc64d425eed3a2f8 category: main optional: false - name: psy-maps @@ -15111,7 +15332,7 @@ package: category: main optional: false - name: py-cordex - version: 0.9.0 + version: 0.10.1 manager: conda platform: linux-64 dependencies: @@ -15122,98 +15343,94 @@ package: python: '>=3.9' setuptools: '>=40.4' xarray: '>=0.15,!=2023.9.0' - url: https://conda.anaconda.org/conda-forge/noarch/py-cordex-0.9.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/py-cordex-0.10.1-pyhd8ed1ab_0.conda hash: - md5: 53912b9ade4f2ea4dd1d5d6d3de7df70 - sha256: d1c3a4d7f49e1200350208afcd4fb868dad8f99c42835433bff5446d6b888701 + md5: 45f4bce03af4f775ea904e85ac86e94e + sha256: 5aa1617dacabee61ecde13dc4869ca705f668e507c1bedc739c5720465c5cb07 category: main optional: false - name: py-cordex - version: 0.9.0 + version: 0.10.1 manager: conda platform: osx-64 dependencies: - python: '>=3.9' + cf_xarray: '>=0.8' numpy: '>=1.17' - pyproj: '>=3.3.0' pooch: '>=1.0' + pyproj: '>=3.3.0' + python: '>=3.9' setuptools: '>=40.4' - cf_xarray: '>=0.8' xarray: '>=0.15,!=2023.9.0' - url: https://conda.anaconda.org/conda-forge/noarch/py-cordex-0.9.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/py-cordex-0.10.1-pyhd8ed1ab_0.conda hash: - md5: 53912b9ade4f2ea4dd1d5d6d3de7df70 - sha256: d1c3a4d7f49e1200350208afcd4fb868dad8f99c42835433bff5446d6b888701 + md5: 45f4bce03af4f775ea904e85ac86e94e + sha256: 5aa1617dacabee61ecde13dc4869ca705f668e507c1bedc739c5720465c5cb07 category: main optional: false - name: py-cordex - version: 0.9.0 + version: 0.10.1 manager: conda platform: osx-arm64 dependencies: - python: '>=3.9' + cf_xarray: '>=0.8' numpy: '>=1.17' - pyproj: '>=3.3.0' pooch: '>=1.0' + pyproj: '>=3.3.0' + python: '>=3.9' setuptools: '>=40.4' - cf_xarray: '>=0.8' xarray: '>=0.15,!=2023.9.0' - url: https://conda.anaconda.org/conda-forge/noarch/py-cordex-0.9.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/py-cordex-0.10.1-pyhd8ed1ab_0.conda hash: - md5: 53912b9ade4f2ea4dd1d5d6d3de7df70 - sha256: d1c3a4d7f49e1200350208afcd4fb868dad8f99c42835433bff5446d6b888701 + md5: 45f4bce03af4f775ea904e85ac86e94e + sha256: 5aa1617dacabee61ecde13dc4869ca705f668e507c1bedc739c5720465c5cb07 category: main optional: false - name: py-xgboost - version: 2.1.4 + version: 3.0.4 manager: conda platform: linux-64 dependencies: - __cuda: '' - _py-xgboost-mutex: '2.0' - libxgboost: '>=2.1.4,<2.1.5.0a0' + libxgboost: '>=3.0.4,<3.0.5.0a0' numpy: '' - python: '>=3.9' + python: '>=3.10' scikit-learn: '' scipy: '' - url: https://conda.anaconda.org/conda-forge/noarch/py-xgboost-2.1.4-cuda118_pyh1b5bf1a_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/py-xgboost-3.0.4-cpu_pyhe781eb1_0.conda hash: - md5: d9c39d6022ecd7a27cfa317665a4ca26 - sha256: cb30b18bea9c8c69a171db7b01be1bd013ae7423cc689fbfcc6586c33d0948c2 + md5: e567ca7bed4f534453420fbe94bd61fe + sha256: f589508f957734416dd5ae252e01ae9ee50ef89d171ac903150feec98559ccee category: main optional: false - name: py-xgboost - version: 2.1.4 + version: 3.0.4 manager: conda platform: osx-64 dependencies: + libxgboost: '>=3.0.4,<3.0.5.0a0' numpy: '' - scipy: '' + python: '>=3.10' scikit-learn: '' - python: '>=3.9' - _py-xgboost-mutex: '2.0' - libxgboost: '>=2.1.4,<2.1.5.0a0' - url: https://conda.anaconda.org/conda-forge/noarch/py-xgboost-2.1.4-cpu_pyh43b6f25_0.conda + scipy: '' + url: https://conda.anaconda.org/conda-forge/noarch/py-xgboost-3.0.4-cpu_pyhe781eb1_0.conda hash: - md5: 07b3031672b0a74bee00eaf78898a09d - sha256: d6006c011ae54d827e0dbbb4463bad2e4e15db9d6a943108b005fd669eb9d06f + md5: e567ca7bed4f534453420fbe94bd61fe + sha256: f589508f957734416dd5ae252e01ae9ee50ef89d171ac903150feec98559ccee category: main optional: false - name: py-xgboost - version: 2.1.4 + version: 3.0.4 manager: conda platform: osx-arm64 dependencies: + libxgboost: '>=3.0.4,<3.0.5.0a0' numpy: '' - scipy: '' + python: '>=3.10' scikit-learn: '' - python: '>=3.9' - _py-xgboost-mutex: '2.0' - libxgboost: '>=2.1.4,<2.1.5.0a0' - url: https://conda.anaconda.org/conda-forge/noarch/py-xgboost-2.1.4-cpu_pyh43b6f25_0.conda + scipy: '' + url: https://conda.anaconda.org/conda-forge/noarch/py-xgboost-3.0.4-cpu_pyhe781eb1_0.conda hash: - md5: 07b3031672b0a74bee00eaf78898a09d - sha256: d6006c011ae54d827e0dbbb4463bad2e4e15db9d6a943108b005fd669eb9d06f + md5: e567ca7bed4f534453420fbe94bd61fe + sha256: f589508f957734416dd5ae252e01ae9ee50ef89d171ac903150feec98559ccee category: main optional: false - name: pyarrow @@ -15329,51 +15546,51 @@ package: category: main optional: false - name: pybtex - version: 0.24.0 + version: 0.25.1 manager: conda platform: linux-64 dependencies: + importlib-metadata: '' latexcodec: '>=1.0.4' python: '>=3.9' pyyaml: '>=3.01' setuptools: '' - six: '' - url: https://conda.anaconda.org/conda-forge/noarch/pybtex-0.24.0-pyhd8ed1ab_3.conda + url: https://conda.anaconda.org/conda-forge/noarch/pybtex-0.25.1-pyhd8ed1ab_0.conda hash: - md5: 556a52a96313364aa79990ed1337b9a5 - sha256: c87615fcc7327c5dcc247f309731c98f7b9867a48e6265e9584af6dc8cd82345 + md5: 9c25a850410220d31085173fbfdfa191 + sha256: 3053895e08ce56923e48eea7d1c07a6d8bf09948d1e69a21ae7ab9e459b0a227 category: main optional: false - name: pybtex - version: 0.24.0 + version: 0.25.1 manager: conda platform: osx-64 dependencies: - setuptools: '' - six: '' - python: '>=3.9' + importlib-metadata: '' latexcodec: '>=1.0.4' + python: '>=3.9' pyyaml: '>=3.01' - url: https://conda.anaconda.org/conda-forge/noarch/pybtex-0.24.0-pyhd8ed1ab_3.conda + setuptools: '' + url: https://conda.anaconda.org/conda-forge/noarch/pybtex-0.25.1-pyhd8ed1ab_0.conda hash: - md5: 556a52a96313364aa79990ed1337b9a5 - sha256: c87615fcc7327c5dcc247f309731c98f7b9867a48e6265e9584af6dc8cd82345 + md5: 9c25a850410220d31085173fbfdfa191 + sha256: 3053895e08ce56923e48eea7d1c07a6d8bf09948d1e69a21ae7ab9e459b0a227 category: main optional: false - name: pybtex - version: 0.24.0 + version: 0.25.1 manager: conda platform: osx-arm64 dependencies: - setuptools: '' - six: '' - python: '>=3.9' + importlib-metadata: '' latexcodec: '>=1.0.4' + python: '>=3.9' pyyaml: '>=3.01' - url: https://conda.anaconda.org/conda-forge/noarch/pybtex-0.24.0-pyhd8ed1ab_3.conda + setuptools: '' + url: https://conda.anaconda.org/conda-forge/noarch/pybtex-0.25.1-pyhd8ed1ab_0.conda hash: - md5: 556a52a96313364aa79990ed1337b9a5 - sha256: c87615fcc7327c5dcc247f309731c98f7b9867a48e6265e9584af6dc8cd82345 + md5: 9c25a850410220d31085173fbfdfa191 + sha256: 3053895e08ce56923e48eea7d1c07a6d8bf09948d1e69a21ae7ab9e459b0a227 category: main optional: false - name: pycparser @@ -15413,7 +15630,7 @@ package: category: main optional: false - name: pydot - version: 3.0.4 + version: 4.0.1 manager: conda platform: linux-64 dependencies: @@ -15421,14 +15638,14 @@ package: pyparsing: '>=3.0.9' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/linux-64/pydot-3.0.4-py312h7900ff3_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/pydot-4.0.1-py312h7900ff3_1.conda hash: - md5: 331fc9a56a16f02592f193c8109e4543 - sha256: 59227fbb547dc4c5405514fd550ea51f3ea0efc0317108bcab5b7e82973e7aa9 + md5: 978768d48e850a22e6e52f865c2a8b26 + sha256: 976a9a4da0a6822e712cd1e283713d736108647665166263fd0c09c6fa93a869 category: main optional: false - name: pydot - version: 3.0.4 + version: 4.0.1 manager: conda platform: osx-64 dependencies: @@ -15436,14 +15653,14 @@ package: pyparsing: '>=3.0.9' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-64/pydot-3.0.4-py312hb401068_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/pydot-4.0.1-py312hb401068_1.conda hash: - md5: 9132b851f4d0a88e932fdc1b5c5784e9 - sha256: 8c48772d194c4c33d935511e3506a170c99ef00b8fbdbbb9e6fb83c420f31ad3 + md5: 4c66483ee6c9b9612dc139deb36bd578 + sha256: 134a614c0a43407ad79a2e66981a84e6270cd6f49bbf64de85b563957da8ed1f category: main optional: false - name: pydot - version: 3.0.4 + version: 4.0.1 manager: conda platform: osx-arm64 dependencies: @@ -15451,124 +15668,127 @@ package: pyparsing: '>=3.0.9' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-arm64/pydot-3.0.4-py312h81bd7bf_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/pydot-4.0.1-py312h81bd7bf_1.conda hash: - md5: 0ac88e19c9d768bfd792188b2b277a91 - sha256: d8175dcd1cd1645eac285324daa0ceb04485181f25fc8b05e5a4f1f0c77dbbca + md5: 8b766a2f2e9f83ebacce71dc8be472da + sha256: 50d2a9be7fa74dd52f3a0133dd3de49c86b5c54c8808e7fbecb2df262ed1a759 category: main optional: false - name: pygments - version: 2.19.1 + version: 2.19.2 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda hash: - md5: 232fb4577b6687b2d503ef8e254270c9 - sha256: 28a3e3161390a9d23bc02b4419448f8d27679d9e2c250e29849e37749c8de86b + md5: 6b6ece66ebcae2d5f326c77ef2c5a066 + sha256: 5577623b9f6685ece2697c6eb7511b4c9ac5fb607c9babc2646c811b428fd46a category: main optional: false - name: pygments - version: 2.19.1 + version: 2.19.2 manager: conda platform: osx-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda hash: - md5: 232fb4577b6687b2d503ef8e254270c9 - sha256: 28a3e3161390a9d23bc02b4419448f8d27679d9e2c250e29849e37749c8de86b + md5: 6b6ece66ebcae2d5f326c77ef2c5a066 + sha256: 5577623b9f6685ece2697c6eb7511b4c9ac5fb607c9babc2646c811b428fd46a category: main optional: false - name: pygments - version: 2.19.1 + version: 2.19.2 manager: conda platform: osx-arm64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda hash: - md5: 232fb4577b6687b2d503ef8e254270c9 - sha256: 28a3e3161390a9d23bc02b4419448f8d27679d9e2c250e29849e37749c8de86b + md5: 6b6ece66ebcae2d5f326c77ef2c5a066 + sha256: 5577623b9f6685ece2697c6eb7511b4c9ac5fb607c9babc2646c811b428fd46a category: main optional: false - name: pyopenssl - version: 25.0.0 + version: 25.1.0 manager: conda platform: linux-64 dependencies: - cryptography: '>=41.0.5,<45' + cryptography: '>=41.0.5,<46' python: '>=3.9' typing-extensions: '>=4.9' - url: https://conda.anaconda.org/conda-forge/noarch/pyopenssl-25.0.0-pyhd8ed1ab_0.conda + typing_extensions: '>=4.9' + url: https://conda.anaconda.org/conda-forge/noarch/pyopenssl-25.1.0-pyhd8ed1ab_0.conda hash: - md5: 195fbabc5cc805f2cc10cb881a19cf8b - sha256: 18a487af2ae5e2c380a8bb3fe38da2b4dc3aa8d033aa75202442e1075e6f635b + md5: 63d6393b45f33dc0782d73f6d8ae36a0 + sha256: 0d7a8ebdfff0f579a64a95a94cf280ec2889d6c52829a9dbbd3ea9eef02c2f6f category: main optional: false - name: pyopenssl - version: 25.0.0 + version: 25.1.0 manager: conda platform: osx-64 dependencies: + cryptography: '>=41.0.5,<46' python: '>=3.9' typing-extensions: '>=4.9' - cryptography: '>=41.0.5,<45' - url: https://conda.anaconda.org/conda-forge/noarch/pyopenssl-25.0.0-pyhd8ed1ab_0.conda + typing_extensions: '>=4.9' + url: https://conda.anaconda.org/conda-forge/noarch/pyopenssl-25.1.0-pyhd8ed1ab_0.conda hash: - md5: 195fbabc5cc805f2cc10cb881a19cf8b - sha256: 18a487af2ae5e2c380a8bb3fe38da2b4dc3aa8d033aa75202442e1075e6f635b + md5: 63d6393b45f33dc0782d73f6d8ae36a0 + sha256: 0d7a8ebdfff0f579a64a95a94cf280ec2889d6c52829a9dbbd3ea9eef02c2f6f category: main optional: false - name: pyopenssl - version: 25.0.0 + version: 25.1.0 manager: conda platform: osx-arm64 dependencies: + cryptography: '>=41.0.5,<46' python: '>=3.9' typing-extensions: '>=4.9' - cryptography: '>=41.0.5,<45' - url: https://conda.anaconda.org/conda-forge/noarch/pyopenssl-25.0.0-pyhd8ed1ab_0.conda + typing_extensions: '>=4.9' + url: https://conda.anaconda.org/conda-forge/noarch/pyopenssl-25.1.0-pyhd8ed1ab_0.conda hash: - md5: 195fbabc5cc805f2cc10cb881a19cf8b - sha256: 18a487af2ae5e2c380a8bb3fe38da2b4dc3aa8d033aa75202442e1075e6f635b + md5: 63d6393b45f33dc0782d73f6d8ae36a0 + sha256: 0d7a8ebdfff0f579a64a95a94cf280ec2889d6c52829a9dbbd3ea9eef02c2f6f category: main optional: false - name: pyparsing - version: 3.2.1 + version: 3.2.3 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.2.1-pyhd8ed1ab_0.conda + python: '' + url: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.2.3-pyhe01879c_2.conda hash: - md5: 285e237b8f351e85e7574a2c7bfa6d46 - sha256: f513fed4001fd228d3bf386269237b4ca6bff732c99ffc11fcbad8529b35407c + md5: aa0028616c0750c773698fdc254b2b8d + sha256: afe32182b1090911b64ac0f29eb47e03a015d142833d8a917defd65d91c99b74 category: main optional: false - name: pyparsing - version: 3.2.1 + version: 3.2.3 manager: conda platform: osx-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.2.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.2.3-pyhe01879c_2.conda hash: - md5: 285e237b8f351e85e7574a2c7bfa6d46 - sha256: f513fed4001fd228d3bf386269237b4ca6bff732c99ffc11fcbad8529b35407c + md5: aa0028616c0750c773698fdc254b2b8d + sha256: afe32182b1090911b64ac0f29eb47e03a015d142833d8a917defd65d91c99b74 category: main optional: false - name: pyparsing - version: 3.2.1 + version: 3.2.3 manager: conda platform: osx-arm64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.2.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.2.3-pyhe01879c_2.conda hash: - md5: 285e237b8f351e85e7574a2c7bfa6d46 - sha256: f513fed4001fd228d3bf386269237b4ca6bff732c99ffc11fcbad8529b35407c + md5: aa0028616c0750c773698fdc254b2b8d + sha256: afe32182b1090911b64ac0f29eb47e03a015d142833d8a917defd65d91c99b74 category: main optional: false - name: pyproj @@ -15632,10 +15852,10 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* s2geometry: '>=0.11.1,<0.12.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/pys2index-0.1.5-py312hc501ce5_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/pys2index-0.1.5-py312hc501ce5_5.conda hash: - md5: 2444db22c7eeec6cc0fa16d4b593c173 - sha256: dedac018f2da34f20679f39a54f639ca52f790350682246a74d11793e0171127 + md5: 125bfb7f13ec2f00c6edaf8d5f97e92c + sha256: 5979f62437fe1c0fe146937887b71e60d486dbfb137307089caaec9340af22cd category: main optional: false - name: pys2index @@ -15673,39 +15893,39 @@ package: category: main optional: false - name: pyshp - version: 2.3.1 + version: 3.0.1 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pyshp-2.3.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/pyshp-3.0.1-pyhd8ed1ab_0.conda hash: - md5: 856b387c270e9eaf6e41e978057a2b62 - sha256: a721b3663d1917f3c9caa01069d23c44b0a378a6d3639f7e4f7b06887a9ac9bf + md5: 205ac0b2873addb372a4384361990043 + sha256: a667f4482b5bfc35aef357abb89f25c1fbf8940c55744c4ec8e3c7dd9dfa3ecc category: main optional: false - name: pyshp - version: 2.3.1 + version: 3.0.1 manager: conda platform: osx-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pyshp-2.3.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/pyshp-3.0.1-pyhd8ed1ab_0.conda hash: - md5: 856b387c270e9eaf6e41e978057a2b62 - sha256: a721b3663d1917f3c9caa01069d23c44b0a378a6d3639f7e4f7b06887a9ac9bf + md5: 205ac0b2873addb372a4384361990043 + sha256: a667f4482b5bfc35aef357abb89f25c1fbf8940c55744c4ec8e3c7dd9dfa3ecc category: main optional: false - name: pyshp - version: 2.3.1 + version: 3.0.1 manager: conda platform: osx-arm64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pyshp-2.3.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/pyshp-3.0.1-pyhd8ed1ab_0.conda hash: - md5: 856b387c270e9eaf6e41e978057a2b62 - sha256: a721b3663d1917f3c9caa01069d23c44b0a378a6d3639f7e4f7b06887a9ac9bf + md5: 205ac0b2873addb372a4384361990043 + sha256: a667f4482b5bfc35aef357abb89f25c1fbf8940c55744c4ec8e3c7dd9dfa3ecc category: main optional: false - name: pysocks @@ -15748,57 +15968,60 @@ package: category: main optional: false - name: pytest - version: 8.3.5 + version: 8.4.1 manager: conda platform: linux-64 dependencies: - colorama: '' - exceptiongroup: '>=1.0.0rc8' - iniconfig: '' - packaging: '' - pluggy: <2,>=1.5 + colorama: '>=0.4' + exceptiongroup: '>=1' + iniconfig: '>=1' + packaging: '>=20' + pluggy: '>=1.5,<2' + pygments: '>=2.7.2' python: '>=3.9' tomli: '>=1' - url: https://conda.anaconda.org/conda-forge/noarch/pytest-8.3.5-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pytest-8.4.1-pyhd8ed1ab_0.conda hash: - md5: c3c9316209dec74a705a36797970c6be - sha256: 963524de7340c56615583ba7b97a6beb20d5c56a59defb59724dc2a3105169c9 + md5: a49c2283f24696a7b30367b7346a0144 + sha256: 93e267e4ec35353e81df707938a6527d5eb55c97bf54c3b87229b69523afb59d category: main optional: false - name: pytest - version: 8.3.5 + version: 8.4.1 manager: conda platform: osx-64 dependencies: - packaging: '' - colorama: '' - iniconfig: '' + colorama: '>=0.4' + exceptiongroup: '>=1' + iniconfig: '>=1' + packaging: '>=20' + pluggy: '>=1.5,<2' + pygments: '>=2.7.2' python: '>=3.9' - exceptiongroup: '>=1.0.0rc8' tomli: '>=1' - pluggy: <2,>=1.5 - url: https://conda.anaconda.org/conda-forge/noarch/pytest-8.3.5-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pytest-8.4.1-pyhd8ed1ab_0.conda hash: - md5: c3c9316209dec74a705a36797970c6be - sha256: 963524de7340c56615583ba7b97a6beb20d5c56a59defb59724dc2a3105169c9 + md5: a49c2283f24696a7b30367b7346a0144 + sha256: 93e267e4ec35353e81df707938a6527d5eb55c97bf54c3b87229b69523afb59d category: main optional: false - name: pytest - version: 8.3.5 + version: 8.4.1 manager: conda platform: osx-arm64 dependencies: - packaging: '' - colorama: '' - iniconfig: '' + colorama: '>=0.4' + exceptiongroup: '>=1' + iniconfig: '>=1' + packaging: '>=20' + pluggy: '>=1.5,<2' + pygments: '>=2.7.2' python: '>=3.9' - exceptiongroup: '>=1.0.0rc8' tomli: '>=1' - pluggy: <2,>=1.5 - url: https://conda.anaconda.org/conda-forge/noarch/pytest-8.3.5-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pytest-8.4.1-pyhd8ed1ab_0.conda hash: - md5: c3c9316209dec74a705a36797970c6be - sha256: 963524de7340c56615583ba7b97a6beb20d5c56a59defb59724dc2a3105169c9 + md5: a49c2283f24696a7b30367b7346a0144 + sha256: 93e267e4ec35353e81df707938a6527d5eb55c97bf54c3b87229b69523afb59d category: main optional: false - name: python @@ -15817,11 +16040,11 @@ package: libzlib: '>=1.2.13,<2.0.0a0' ncurses: '>=6.4,<7.0a0' openssl: '>=3.1.3,<4.0a0' + pip: '' readline: '>=8.2,<9.0a0' tk: '>=8.6.13,<8.7.0a0' tzdata: '' xz: '>=5.2.6,<6.0a0' - pip: '' url: https://conda.anaconda.org/conda-forge/linux-64/python-3.12.0-hab00c5b_0_cpython.conda hash: md5: 7f97faab5bebcc2580f4f299285323da @@ -15840,11 +16063,11 @@ package: libzlib: '>=1.2.13,<2.0.0a0' ncurses: '>=6.4,<7.0a0' openssl: '>=3.1.3,<4.0a0' + pip: '' readline: '>=8.2,<9.0a0' tk: '>=8.6.13,<8.7.0a0' tzdata: '' xz: '>=5.2.6,<6.0a0' - pip: '' url: https://conda.anaconda.org/conda-forge/osx-64/python-3.12.0-h30d4d87_0_cpython.conda hash: md5: d11dc8f4551011fb6baa2865f1ead48f @@ -15863,11 +16086,11 @@ package: libzlib: '>=1.2.13,<2.0.0a0' ncurses: '>=6.4,<7.0a0' openssl: '>=3.1.3,<4.0a0' + pip: '' readline: '>=8.2,<9.0a0' tk: '>=8.6.13,<8.7.0a0' tzdata: '' xz: '>=5.2.6,<6.0a0' - pip: '' url: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.12.0-h47c9636_0_cpython.conda hash: md5: ed8ae98b1b510de68392971b9367d18c @@ -15894,10 +16117,10 @@ package: manager: conda platform: osx-64 dependencies: - setuptools: '' - six: '' cdo: '' python: '>=3.9' + setuptools: '' + six: '' url: https://conda.anaconda.org/conda-forge/noarch/python-cdo-1.6.0-pyhff2d567_1.conda hash: md5: 61f71e3d4df9dbe55340c129f96cb8ee @@ -15909,10 +16132,10 @@ package: manager: conda platform: osx-arm64 dependencies: - setuptools: '' - six: '' cdo: '' python: '>=3.9' + setuptools: '' + six: '' url: https://conda.anaconda.org/conda-forge/noarch/python-cdo-1.6.0-pyhff2d567_1.conda hash: md5: 61f71e3d4df9dbe55340c129f96cb8ee @@ -15924,12 +16147,12 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' six: '>=1.5' - url: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda hash: - md5: 5ba79d7c71f03c678c8ead841f347d6e - sha256: a50052536f1ef8516ed11a844f9413661829aa083304dc624c5925298d078d79 + md5: 5b8d21249ff20967101ffa321cab24e8 + sha256: d6a17ece93bbd5139e02d2bd7dbfa80bee1a4261dced63f65f679121686bf664 category: main optional: false - name: python-dateutil @@ -15939,10 +16162,10 @@ package: dependencies: python: '>=3.9' six: '>=1.5' - url: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda hash: - md5: 5ba79d7c71f03c678c8ead841f347d6e - sha256: a50052536f1ef8516ed11a844f9413661829aa083304dc624c5925298d078d79 + md5: 5b8d21249ff20967101ffa321cab24e8 + sha256: d6a17ece93bbd5139e02d2bd7dbfa80bee1a4261dced63f65f679121686bf664 category: main optional: false - name: python-dateutil @@ -15952,10 +16175,10 @@ package: dependencies: python: '>=3.9' six: '>=1.5' - url: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda hash: - md5: 5ba79d7c71f03c678c8ead841f347d6e - sha256: a50052536f1ef8516ed11a844f9413661829aa083304dc624c5925298d078d79 + md5: 5b8d21249ff20967101ffa321cab24e8 + sha256: d6a17ece93bbd5139e02d2bd7dbfa80bee1a4261dced63f65f679121686bf664 category: main optional: false - name: python-eccodes @@ -15968,14 +16191,14 @@ package: cffi: '' eccodes: '>=2.37.0' findlibs: '' - libgcc: '>=13' - numpy: '>=1.19,<3' + libgcc: '>=14' + numpy: '>=1.23,<3' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/linux-64/python-eccodes-2.37.0-py312hc0a28a1_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/python-eccodes-2.37.0-py312h4f23490_1.conda hash: - md5: 476b0357e207e10d2b7b13ed82156e6d - sha256: fd78da3043dd2a22aa083a535b6997b5e71a25ade3c2dfc8677479d128458851 + md5: a0431a9e34e0b99f590ac5f34c2adad0 + sha256: 4d388032e4a441ef1ece56045cb488a56e0d60698bcd3046e40701c2f4f0f484 category: main optional: false - name: python-eccodes @@ -15988,13 +16211,13 @@ package: cffi: '' eccodes: '>=2.37.0' findlibs: '' - numpy: '>=1.19,<3' + numpy: '>=1.23,<3' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-64/python-eccodes-2.37.0-py312h3a11e2b_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/python-eccodes-2.37.0-py312h587b97d_1.conda hash: - md5: a19f78c784d3a81b4cf800f8d8112cd7 - sha256: 31e38f9ab240ef4015365497844eddae50af32d976211e68d9241281104a07ed + md5: d1a2e3a01687a1a0c3428ffb92fc1c05 + sha256: db3c98989fb1f57f519a35cb012145778231dc6cd8f16b63a3ca8ab83c96bda7 category: main optional: false - name: python-eccodes @@ -16007,101 +16230,101 @@ package: cffi: '' eccodes: '>=2.37.0' findlibs: '' - numpy: '>=1.19,<3' + numpy: '>=1.23,<3' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-arm64/python-eccodes-2.37.0-py312h755e627_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/python-eccodes-2.37.0-py312hc7121bb_1.conda hash: - md5: 0748f8f602ed773c4142d3c24fa5f48e - sha256: 6621343c7d619e694ad62863bd63f3306545e64de5782c6aff4ba3aa5c69d643 + md5: 28865e312667a15f753e198d3a8db610 + sha256: b66413d26dd056f0f2730544e9412436518e5b19bae3877102efe77d13e3e129 category: main optional: false - name: python-stratify - version: 0.3.0 + version: 0.4.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - cython: '' - dask-core: '' - libgcc: '>=13' - numpy: '>=1.19,<3' + cython: '>=3.1.0' + dask-core: '>=2025.7.0' + libgcc: '>=14' + numpy: '>=1.23,<3' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/linux-64/python-stratify-0.3.0-py312hc0a28a1_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/python-stratify-0.4.0-py312h4c3975b_1.conda hash: - md5: 81bbcb20ea4a53b05a8cf51f31496038 - sha256: 9f9a520c4620f4459b7d0a062b0f6459936ebabbd7caad4af6ecf9fe08d609aa + md5: 27524eb30dee3a984035840d3b29e640 + sha256: 8664ca0c6190a62437f609f33888ba1cdbc97cbc3496ad3d7ea500f029eb3371 category: main optional: false - name: python-stratify - version: 0.3.0 + version: 0.4.0 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' - cython: '' - dask-core: '' - numpy: '>=1.19,<3' + cython: '>=3.1.0' + dask-core: '>=2025.7.0' + numpy: '>=1.23,<3' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-64/python-stratify-0.3.0-py312h3a11e2b_3.conda + url: https://conda.anaconda.org/conda-forge/osx-64/python-stratify-0.4.0-py312h2f459f6_1.conda hash: - md5: 5eebd2d94f81035890a2ed6efc48304f - sha256: ea9fbec5967e7469aeb4b5cae52050626bf1a2d17df69584796d895c0a08f6aa + md5: 5ee0d670538aece5b820aeaa48b9cf40 + sha256: 9fe2a913d4a69c3fdb73e7f84e7b414abb74e51f45e45bc5e43a83ca42eea3ac category: main optional: false - name: python-stratify - version: 0.3.0 + version: 0.4.0 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' - cython: '' - dask-core: '' - numpy: '>=1.19,<3' + cython: '>=3.1.0' + dask-core: '>=2025.7.0' + numpy: '>=1.23,<3' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-arm64/python-stratify-0.3.0-py312h755e627_3.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/python-stratify-0.4.0-py312h163523d_1.conda hash: - md5: 1a00bfca45d13de3e4adde03350ca1ff - sha256: c5f5d10c399c6dff7113f3a24d0ba91924b217bb3bf10f6a68365af0572b126f + md5: b1a0317dc87a5906480923d95e1407e1 + sha256: b1140f32174cd8b128777d94d0954caecedb05566a11b71ba0b9511146f47648 category: main optional: false - name: python-tzdata - version: '2025.1' + version: '2025.2' manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2025.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2025.2-pyhd8ed1ab_0.conda hash: - md5: 392c91c42edd569a7ec99ed8648f597a - sha256: 1597d6055d34e709ab8915091973552a0b8764c8032ede07c4e99670da029629 + md5: 88476ae6ebd24f39261e0854ac244f33 + sha256: e8392a8044d56ad017c08fec2b0eb10ae3d1235ac967d0aab8bd7b41c4a5eaf0 category: main optional: false - name: python-tzdata - version: '2025.1' + version: '2025.2' manager: conda platform: osx-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2025.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2025.2-pyhd8ed1ab_0.conda hash: - md5: 392c91c42edd569a7ec99ed8648f597a - sha256: 1597d6055d34e709ab8915091973552a0b8764c8032ede07c4e99670da029629 + md5: 88476ae6ebd24f39261e0854ac244f33 + sha256: e8392a8044d56ad017c08fec2b0eb10ae3d1235ac967d0aab8bd7b41c4a5eaf0 category: main optional: false - name: python-tzdata - version: '2025.1' + version: '2025.2' manager: conda platform: osx-arm64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2025.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2025.2-pyhd8ed1ab_0.conda hash: - md5: 392c91c42edd569a7ec99ed8648f597a - sha256: 1597d6055d34e709ab8915091973552a0b8764c8032ede07c4e99670da029629 + md5: 88476ae6ebd24f39261e0854ac244f33 + sha256: e8392a8044d56ad017c08fec2b0eb10ae3d1235ac967d0aab8bd7b41c4a5eaf0 category: main optional: false - name: python-utils @@ -16149,14 +16372,14 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' + libgcc: '>=14' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* xxhash: '>=0.8.3,<0.8.4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/python-xxhash-3.5.0-py312h66e93f0_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/python-xxhash-3.5.0-py312h0d868a3_3.conda hash: - md5: cc3f6c452697c1cf7e4e6e5f21861f96 - sha256: b5950a737d200e2e3cf199ab7b474ac194fcf4d6bee13bcbdf32c5a5cca7eaf0 + md5: a5e5b1051bd92e2382dc687e6f7579dc + sha256: 905585a22e12acfa1a73a898cc65db205704b93d3c9ecd3c1f880a3ab32bceb4 category: main optional: false - name: python-xxhash @@ -16168,10 +16391,10 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* xxhash: '>=0.8.3,<0.8.4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/python-xxhash-3.5.0-py312h01d7ebd_2.conda + url: https://conda.anaconda.org/conda-forge/osx-64/python-xxhash-3.5.0-py312h2e8b569_3.conda hash: - md5: 06558c23f27099d57b05867cdd39befc - sha256: f621fb463e9e95a289c973417edde6a5312da2c2dbe9c3a2489eacf0c8689410 + md5: dbc5315a8e6f16f13d1c899509e2b197 + sha256: d7d7c44476ba584d11ef2b09f1148593032425c991158cb41de4de621cbe8823 category: main optional: false - name: python-xxhash @@ -16183,10 +16406,10 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* xxhash: '>=0.8.3,<0.8.4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/python-xxhash-3.5.0-py312hea69d52_2.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/python-xxhash-3.5.0-py312h7a9b006_3.conda hash: - md5: b0c7097883bb4d8acfd72e7b9c6b93cd - sha256: 10c3df8dae696da4bd8532609999991ae1f3c4cc1a1e7f6a636cf6aa19d9eb82 + md5: 3c00a6e738cd6c530fd85318508a8558 + sha256: 6efc428e91ab61f44b3b66313030819379b3510a94c467596748bc66f0b6f0dc category: main optional: false - name: python_abi @@ -16194,10 +16417,10 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.12-5_cp312.conda + url: https://conda.anaconda.org/conda-forge/noarch/python_abi-3.12-8_cp312.conda hash: - md5: 0424ae29b104430108f5218a66db7260 - sha256: d10e93d759931ffb6372b45d65ff34d95c6000c61a07e298d162a3bc2accebb0 + md5: c3efd25ac4d74b1584d2f7a57195ddf1 + sha256: 80677180dd3c22deb7426ca89d6203f1c7f1f256f2d5a94dc210f6e758229809 category: main optional: false - name: python_abi @@ -16205,10 +16428,10 @@ package: manager: conda platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.12-5_cp312.conda + url: https://conda.anaconda.org/conda-forge/noarch/python_abi-3.12-8_cp312.conda hash: - md5: c34dd4920e0addf7cfcc725809f25d8e - sha256: 4da26c7508d5bc5d8621e84dc510284402239df56aab3587a7d217de9d3c806d + md5: c3efd25ac4d74b1584d2f7a57195ddf1 + sha256: 80677180dd3c22deb7426ca89d6203f1c7f1f256f2d5a94dc210f6e758229809 category: main optional: false - name: python_abi @@ -16216,92 +16439,92 @@ package: manager: conda platform: osx-arm64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/python_abi-3.12-5_cp312.conda + url: https://conda.anaconda.org/conda-forge/noarch/python_abi-3.12-8_cp312.conda hash: - md5: b76f9b1c862128e56ac7aa8cd2333de9 - sha256: 49d624e4b809c799d2bf257b22c23cf3fc4460f5570d9a58e7ad86350aeaa1f4 + md5: c3efd25ac4d74b1584d2f7a57195ddf1 + sha256: 80677180dd3c22deb7426ca89d6203f1c7f1f256f2d5a94dc210f6e758229809 category: main optional: false - name: pytz - version: '2024.1' + version: '2025.2' manager: conda platform: linux-64 dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda hash: - md5: 3eeeeb9e4827ace8c0c1419c85d590ad - sha256: 1a7d6b233f7e6e3bbcbad054c8fd51e690a67b129a899a056a5e45dd9f00cb41 + md5: bc8e3267d44011051f2eb14d22fb0960 + sha256: 8d2a8bf110cc1fc3df6904091dead158ba3e614d8402a83e51ed3a8aa93cdeb0 category: main optional: false - name: pytz - version: '2024.1' + version: '2025.2' manager: conda platform: osx-64 dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda hash: - md5: 3eeeeb9e4827ace8c0c1419c85d590ad - sha256: 1a7d6b233f7e6e3bbcbad054c8fd51e690a67b129a899a056a5e45dd9f00cb41 + md5: bc8e3267d44011051f2eb14d22fb0960 + sha256: 8d2a8bf110cc1fc3df6904091dead158ba3e614d8402a83e51ed3a8aa93cdeb0 category: main optional: false - name: pytz - version: '2024.1' + version: '2025.2' manager: conda platform: osx-arm64 dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda hash: - md5: 3eeeeb9e4827ace8c0c1419c85d590ad - sha256: 1a7d6b233f7e6e3bbcbad054c8fd51e690a67b129a899a056a5e45dd9f00cb41 + md5: bc8e3267d44011051f2eb14d22fb0960 + sha256: 8d2a8bf110cc1fc3df6904091dead158ba3e614d8402a83e51ed3a8aa93cdeb0 category: main optional: false - name: pywavelets - version: 1.8.0 + version: 1.9.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - numpy: '>=1.23,<3' + libgcc: '>=14' + numpy: '>=1.25,<3' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/linux-64/pywavelets-1.8.0-py312hc0a28a1_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/pywavelets-1.9.0-py312h4f23490_1.conda hash: - md5: 3f62987017ad18e9e7dadce9899de9ef - sha256: ec5c23785a7975130a988fafca41154a900b994cf0e8b1a2ae24ede25c4ff538 + md5: b182ab534776c2cc76fba59aa9916254 + sha256: 9def249251dc601c60be511e31999b126a823fbf626af6f98f8e96c6f19ab2de category: main optional: false - name: pywavelets - version: 1.8.0 + version: 1.9.0 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' - numpy: '>=1.23,<3' + numpy: '>=1.25,<3' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-64/pywavelets-1.8.0-py312h025c719_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/pywavelets-1.9.0-py312h587b97d_1.conda hash: - md5: 3bd58c20fcf758a97ffd5747efaab74b - sha256: e3bea66e0374559e41f75e2d1bccac665634c086fe7847697304efb5952560d1 + md5: bb509f63ff1da6e4f7c27985557c8673 + sha256: 16c42f854b6cd80978f7579900ab14f6e6c66f444326020dca27591b0424824a category: main optional: false - name: pywavelets - version: 1.8.0 + version: 1.9.0 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' - numpy: '>=1.23,<3' + numpy: '>=1.25,<3' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-arm64/pywavelets-1.8.0-py312he0011b7_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/pywavelets-1.9.0-py312hc7121bb_1.conda hash: - md5: 02ac9f3511414dd70b1cfa5aa3209db3 - sha256: 13e1ee0547f0db524e1a09caca83c9c8b79d3d9bb83138b0507fbc14ef9cc829 + md5: 2c962b2fe280937cd48725e1d70d63de + sha256: 61a1a05c903fb59a13d84dae871547a106f54111f0f974ba3dbdcbb71fbc6d08 category: main optional: false - name: pyyaml @@ -16473,79 +16696,82 @@ package: category: main optional: false - name: rav1e - version: 0.6.6 + version: 0.7.1 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/rav1e-0.6.6-he8a937b_2.conda + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=13' + url: https://conda.anaconda.org/conda-forge/linux-64/rav1e-0.7.1-h8fae777_3.conda hash: - md5: 77d9955b4abddb811cb8ab1aa7d743e4 - sha256: 91b3c1ced90d04ee2eded1f72cf3cbc19ff05a25e41876ef0758266a5bab009f + md5: 2c42649888aac645608191ffdc80d13a + sha256: 6e5e704c1c21f820d760e56082b276deaf2b53cf9b751772761c3088a365f6f4 category: main optional: false - name: rav1e - version: 0.6.6 + version: 0.7.1 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/rav1e-0.6.6-h7205ca4_2.conda + dependencies: + __osx: '>=10.13' + url: https://conda.anaconda.org/conda-forge/osx-64/rav1e-0.7.1-h371c88c_3.conda hash: - md5: ab03527926f8ce85f84a91fd35520ef2 - sha256: 046ac50530590cd2a5d9bcb1e581bdd168e06049230ad3afd8cce2fa71b429d9 + md5: 30e2344bbe29f60bb535ec0bfff31008 + sha256: d86b9631d6237f5a62957f9461d321d9bd2fef0807fb60de823b8dea2028501b category: main optional: false - name: rav1e - version: 0.6.6 + version: 0.7.1 manager: conda platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/rav1e-0.6.6-h69fbcac_2.conda + dependencies: + __osx: '>=11.0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/rav1e-0.7.1-h0716509_3.conda hash: - md5: e309ae86569b1cd55a0285fa4e939844 - sha256: be6174970193cb4d0ffa7d731a93a4c9542881dbc7ab24e74b460ef312161169 + md5: 7b37f30516100b86ea522350c8cab44c + sha256: 65f862b2b31ef2b557990a82015cbd41e5a66041c2f79b4451dd14b4595d4c04 category: main optional: false - name: rdflib - version: 7.1.3 + version: 7.1.4 manager: conda platform: linux-64 dependencies: isodate: '>=0.7.0,<1.0.0' pyparsing: '>=3.2.0,<4' - python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/rdflib-7.1.3-pyhd8ed1ab_0.conda + python: '' + url: https://conda.anaconda.org/conda-forge/noarch/rdflib-7.1.4-pyh29332c3_0.conda hash: - md5: 72ec20859c97d33c82edcc8bdb70d536 - sha256: 96274536cea3d419bc30729b0788a4f3cf36897bc5b3b0d326fe0039747bb9d5 + md5: 71da3f0c8d0e2900ef9b6502224084ae + sha256: 2d35e61698b417251dfb213d5f393d1787befa714e8960493692ea993cbe1b4a category: main optional: false - name: rdflib - version: 7.1.3 + version: 7.1.4 manager: conda platform: osx-64 dependencies: - python: '>=3.9' isodate: '>=0.7.0,<1.0.0' pyparsing: '>=3.2.0,<4' - url: https://conda.anaconda.org/conda-forge/noarch/rdflib-7.1.3-pyhd8ed1ab_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/rdflib-7.1.4-pyh29332c3_0.conda hash: - md5: 72ec20859c97d33c82edcc8bdb70d536 - sha256: 96274536cea3d419bc30729b0788a4f3cf36897bc5b3b0d326fe0039747bb9d5 + md5: 71da3f0c8d0e2900ef9b6502224084ae + sha256: 2d35e61698b417251dfb213d5f393d1787befa714e8960493692ea993cbe1b4a category: main optional: false - name: rdflib - version: 7.1.3 + version: 7.1.4 manager: conda platform: osx-arm64 dependencies: - python: '>=3.9' isodate: '>=0.7.0,<1.0.0' pyparsing: '>=3.2.0,<4' - url: https://conda.anaconda.org/conda-forge/noarch/rdflib-7.1.3-pyhd8ed1ab_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/rdflib-7.1.4-pyh29332c3_0.conda hash: - md5: 72ec20859c97d33c82edcc8bdb70d536 - sha256: 96274536cea3d419bc30729b0788a4f3cf36897bc5b3b0d326fe0039747bb9d5 + md5: 71da3f0c8d0e2900ef9b6502224084ae + sha256: 2d35e61698b417251dfb213d5f393d1787befa714e8960493692ea993cbe1b4a category: main optional: false - name: re2 @@ -16622,7 +16848,7 @@ package: category: main optional: false - name: requests - version: 2.32.3 + version: 2.32.5 manager: conda platform: linux-64 dependencies: @@ -16631,42 +16857,42 @@ package: idna: '>=2.5,<4' python: '>=3.9' urllib3: '>=1.21.1,<3' - url: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.5-pyhd8ed1ab_0.conda hash: - md5: a9b9368f3701a417eac9edbcae7cb737 - sha256: d701ca1136197aa121bbbe0e8c18db6b5c94acbd041c2b43c70e5ae104e1d8ad + md5: db0c6b99149880c8ba515cf4abe93ee4 + sha256: 8dc54e94721e9ab545d7234aa5192b74102263d3e704e6d0c8aa7008f2da2a7b category: main optional: false - name: requests - version: 2.32.3 + version: 2.32.5 manager: conda platform: osx-64 dependencies: - python: '>=3.9' - idna: '>=2.5,<4' certifi: '>=2017.4.17' charset-normalizer: '>=2,<4' + idna: '>=2.5,<4' + python: '>=3.9' urllib3: '>=1.21.1,<3' - url: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.5-pyhd8ed1ab_0.conda hash: - md5: a9b9368f3701a417eac9edbcae7cb737 - sha256: d701ca1136197aa121bbbe0e8c18db6b5c94acbd041c2b43c70e5ae104e1d8ad + md5: db0c6b99149880c8ba515cf4abe93ee4 + sha256: 8dc54e94721e9ab545d7234aa5192b74102263d3e704e6d0c8aa7008f2da2a7b category: main optional: false - name: requests - version: 2.32.3 + version: 2.32.5 manager: conda platform: osx-arm64 dependencies: - python: '>=3.9' - idna: '>=2.5,<4' certifi: '>=2017.4.17' charset-normalizer: '>=2,<4' + idna: '>=2.5,<4' + python: '>=3.9' urllib3: '>=1.21.1,<3' - url: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.5-pyhd8ed1ab_0.conda hash: - md5: a9b9368f3701a417eac9edbcae7cb737 - sha256: d701ca1136197aa121bbbe0e8c18db6b5c94acbd041c2b43c70e5ae104e1d8ad + md5: db0c6b99149880c8ba515cf4abe93ee4 + sha256: 8dc54e94721e9ab545d7234aa5192b74102263d3e704e6d0c8aa7008f2da2a7b category: main optional: false - name: requests-cache @@ -16695,16 +16921,16 @@ package: manager: conda platform: osx-64 dependencies: + attrs: '>=21.2' + cattrs: '>=22.2' + itsdangerous: '>=2.0' + platformdirs: '>=2.5' python: '>=3.9' pyyaml: '>=6.0.1' requests: '>=2.22' + ujson: '>=5.4' url-normalize: '>=1.4' - attrs: '>=21.2' - itsdangerous: '>=2.0' urllib3: '>=1.25.5' - platformdirs: '>=2.5' - cattrs: '>=22.2' - ujson: '>=5.4' url: https://conda.anaconda.org/conda-forge/noarch/requests-cache-1.2.1-pyhd8ed1ab_1.conda hash: md5: 584e6aab3a5cffde537c575ad6a673ff @@ -16716,16 +16942,16 @@ package: manager: conda platform: osx-arm64 dependencies: + attrs: '>=21.2' + cattrs: '>=22.2' + itsdangerous: '>=2.0' + platformdirs: '>=2.5' python: '>=3.9' pyyaml: '>=6.0.1' requests: '>=2.22' + ujson: '>=5.4' url-normalize: '>=1.4' - attrs: '>=21.2' - itsdangerous: '>=2.0' urllib3: '>=1.25.5' - platformdirs: '>=2.5' - cattrs: '>=22.2' - ujson: '>=5.4' url: https://conda.anaconda.org/conda-forge/noarch/requests-cache-1.2.1-pyhd8ed1ab_1.conda hash: md5: 584e6aab3a5cffde537c575ad6a673ff @@ -16733,107 +16959,104 @@ package: category: main optional: false - name: retrying - version: 1.3.4 + version: 1.4.2 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - six: '>=1.7.0' - url: https://conda.anaconda.org/conda-forge/noarch/retrying-1.3.4-pyhd8ed1ab_0.conda + python: '' + url: https://conda.anaconda.org/conda-forge/noarch/retrying-1.4.2-pyhe01879c_0.conda hash: - md5: d9c8cef727d60fa29fd485ce79dd745a - sha256: ff6c87f47b06725e34a6c7916e13a922090d586df6fd245b6cfd928ac0840dd1 + md5: 128b46a47ea164f9a8659cb6da2f3555 + sha256: 7a10527962d2ca2cf936872ef58d4b622b1d1d1703e1d6396d0673fd9f883c7f category: main optional: false - name: retrying - version: 1.3.4 + version: 1.4.2 manager: conda platform: osx-64 dependencies: python: '>=3.9' - six: '>=1.7.0' - url: https://conda.anaconda.org/conda-forge/noarch/retrying-1.3.4-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/retrying-1.4.2-pyhe01879c_0.conda hash: - md5: d9c8cef727d60fa29fd485ce79dd745a - sha256: ff6c87f47b06725e34a6c7916e13a922090d586df6fd245b6cfd928ac0840dd1 + md5: 128b46a47ea164f9a8659cb6da2f3555 + sha256: 7a10527962d2ca2cf936872ef58d4b622b1d1d1703e1d6396d0673fd9f883c7f category: main optional: false - name: retrying - version: 1.3.4 + version: 1.4.2 manager: conda platform: osx-arm64 dependencies: python: '>=3.9' - six: '>=1.7.0' - url: https://conda.anaconda.org/conda-forge/noarch/retrying-1.3.4-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/retrying-1.4.2-pyhe01879c_0.conda hash: - md5: d9c8cef727d60fa29fd485ce79dd745a - sha256: ff6c87f47b06725e34a6c7916e13a922090d586df6fd245b6cfd928ac0840dd1 + md5: 128b46a47ea164f9a8659cb6da2f3555 + sha256: 7a10527962d2ca2cf936872ef58d4b622b1d1d1703e1d6396d0673fd9f883c7f category: main optional: false - name: rich - version: 13.9.4 + version: 14.1.0 manager: conda platform: linux-64 dependencies: markdown-it-py: '>=2.2.0' pygments: '>=2.13.0,<3.0.0' - python: '>=3.9' + python: '' typing_extensions: '>=4.0.0,<5.0.0' - url: https://conda.anaconda.org/conda-forge/noarch/rich-13.9.4-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/rich-14.1.0-pyhe01879c_0.conda hash: - md5: 7aed65d4ff222bfb7335997aa40b7da5 - sha256: 06a760c5ae572e72e865d5a87e9fe3cc171e1a9c996e63daf3db52ff1a0b4457 + md5: c41e49bd1f1479bed6c6300038c5466e + sha256: 3bda3cd6aa2ca8f266aeb8db1ec63683b4a7252d7832e8ec95788fb176d0e434 category: main optional: false - name: rich - version: 13.9.4 + version: 14.1.0 manager: conda platform: osx-64 dependencies: + markdown-it-py: '>=2.2.0' + pygments: '>=2.13.0,<3.0.0' python: '>=3.9' typing_extensions: '>=4.0.0,<5.0.0' - pygments: '>=2.13.0,<3.0.0' - markdown-it-py: '>=2.2.0' - url: https://conda.anaconda.org/conda-forge/noarch/rich-13.9.4-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/rich-14.1.0-pyhe01879c_0.conda hash: - md5: 7aed65d4ff222bfb7335997aa40b7da5 - sha256: 06a760c5ae572e72e865d5a87e9fe3cc171e1a9c996e63daf3db52ff1a0b4457 + md5: c41e49bd1f1479bed6c6300038c5466e + sha256: 3bda3cd6aa2ca8f266aeb8db1ec63683b4a7252d7832e8ec95788fb176d0e434 category: main optional: false - name: rich - version: 13.9.4 + version: 14.1.0 manager: conda platform: osx-arm64 dependencies: + markdown-it-py: '>=2.2.0' + pygments: '>=2.13.0,<3.0.0' python: '>=3.9' typing_extensions: '>=4.0.0,<5.0.0' - pygments: '>=2.13.0,<3.0.0' - markdown-it-py: '>=2.2.0' - url: https://conda.anaconda.org/conda-forge/noarch/rich-13.9.4-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/rich-14.1.0-pyhe01879c_0.conda hash: - md5: 7aed65d4ff222bfb7335997aa40b7da5 - sha256: 06a760c5ae572e72e865d5a87e9fe3cc171e1a9c996e63daf3db52ff1a0b4457 + md5: c41e49bd1f1479bed6c6300038c5466e + sha256: 3bda3cd6aa2ca8f266aeb8db1ec63683b4a7252d7832e8ec95788fb176d0e434 category: main optional: false - name: ruamel.yaml - version: 0.18.10 + version: 0.18.15 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' + libgcc: '>=14' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* ruamel.yaml.clib: '>=0.1.2' - url: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml-0.18.10-py312h66e93f0_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml-0.18.15-py312h4c3975b_1.conda hash: - md5: 5260b7fb19694ee5bc4ed0ee7a2a769f - sha256: cd8ed10671111f15245cebadc06b88d6f5fc91f1f7f92456daa568e9d9f5bc42 + md5: 4b4e6e4507091de3adba4c44c537cd35 + sha256: 11f0de9337430669870085619e7538a56fc093b77e0c950d10b9c3ee69d6b8bc category: main optional: false - name: ruamel.yaml - version: 0.18.10 + version: 0.18.15 manager: conda platform: osx-64 dependencies: @@ -16841,14 +17064,14 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* ruamel.yaml.clib: '>=0.1.2' - url: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml-0.18.10-py312h01d7ebd_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml-0.18.15-py312h80b0991_1.conda hash: - md5: e6fb89d650ea648b6be3bf2fa5026523 - sha256: 1d4ce5cfa530c3971b95a41fa1b1a952cd934f2ed1f34ac22736eece17727ab2 + md5: f7f7c2c229d2ea43522eabd8ddc2fccf + sha256: 3df7da21637eb327af0f31cf029ac11b193e9bddb0625c69a152fa8a6eecbf3f category: main optional: false - name: ruamel.yaml - version: 0.18.10 + version: 0.18.15 manager: conda platform: osx-arm64 dependencies: @@ -16856,53 +17079,53 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* ruamel.yaml.clib: '>=0.1.2' - url: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml-0.18.10-py312hea69d52_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml-0.18.15-py312h4409184_1.conda hash: - md5: 29a66b19662a643786715a8885c645d0 - sha256: bb946732dec6943a56650d2690e37d7eed0fc7ffb9d616ae09000b52894f8baf + md5: 80416b2d9187fa126dc9c99c696329dc + sha256: f4e3fddef9c4926676cf5cb009b2f9446a34cc11cb56bf4330ae897375a6e69b category: main optional: false - name: ruamel.yaml.clib - version: 0.2.8 + version: 0.2.12 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' + libgcc: '>=14' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml.clib-0.2.8-py312h66e93f0_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml.clib-0.2.12-py312h4c3975b_1.conda hash: - md5: 532c3e5d0280be4fea52396ec1fa7d5d - sha256: ac987b1c186d79e4e1ce4354a84724fc68db452b2bd61de3a3e1b6fc7c26138d + md5: 0b612e709fe8c0b0f45db418037a7424 + sha256: 6edd3b228450cd614229700b41dc1615775b58961267e7017883eb5937264886 category: main optional: false - name: ruamel.yaml.clib - version: 0.2.8 + version: 0.2.12 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml.clib-0.2.8-py312h3d0f464_1.conda + url: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml.clib-0.2.12-py312h2f459f6_1.conda hash: - md5: f4c0464f98dabcd65064e89991c3c9c2 - sha256: b5ddb73db7ca3d4d8780af1761efb97a5f555ae489f287a91367624d4425f498 + md5: 37fb17482a82bc0de99aa8c20591868c + sha256: bc730c6f0817d6d0c38773cbded549c3a7e8dea23971e1f9f487e4fb14249def category: main optional: false - name: ruamel.yaml.clib - version: 0.2.8 + version: 0.2.12 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml.clib-0.2.8-py312h0bf5046_1.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml.clib-0.2.12-py312h163523d_1.conda hash: - md5: 2ed5f254c9ea57b6d0fd4e12baa4b87f - sha256: ce979a9bcb4b987e30c4aadfbd4151006cd6ac480bdbee1d059e6f0186b48bca + md5: 338d356028dc93f944448884e1c1ff5d + sha256: a97cca13e634298a879d9f096908c415a7e025b56dd4a4528c234587b3336943 category: main optional: false - name: s2geometry @@ -16973,7 +17196,6 @@ package: __glibc: '>=2.17,<3.0.a0' imageio: '>=2.33,!=2.35.0' lazy-loader: '>=0.4' - lazy_loader: '>=0.4' libgcc: '>=13' libstdcxx: '>=13' networkx: '>=3.0' @@ -16985,10 +17207,10 @@ package: pywavelets: '>=1.1.1' scipy: '>=1.11.4' tifffile: '>=2022.8.12' - url: https://conda.anaconda.org/conda-forge/linux-64/scikit-image-0.25.2-py312hf9745cd_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/scikit-image-0.25.2-py312hf9745cd_1.conda hash: - md5: ffe02124625f13608e258988dfb7270b - sha256: 28c376110bcd7b8a6c00d92c39d51b44886e1a49c36a18d7ebce1dc169ef917a + md5: 7c03f16bb8578b48352ee006adf6a5b3 + sha256: 413e20ba513fc7305a9f010ba8e0385ac29714141a0ee56df0eda6ee4a998d01 category: main optional: false - name: scikit-image @@ -16999,7 +17221,6 @@ package: __osx: '>=10.13' imageio: '>=2.33,!=2.35.0' lazy-loader: '>=0.4' - lazy_loader: '>=0.4' libcxx: '>=18' networkx: '>=3.0' numpy: '>=1.24' @@ -17010,10 +17231,10 @@ package: pywavelets: '>=1.1.1' scipy: '>=1.11.4' tifffile: '>=2022.8.12' - url: https://conda.anaconda.org/conda-forge/osx-64/scikit-image-0.25.2-py312hec45ffd_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/scikit-image-0.25.2-py312hec45ffd_1.conda hash: - md5: 364ec34581a0aa468ab0d4084d96b250 - sha256: 119ff691a40a6105e2fead2e28394a80ca55bbbff853fa57c295edfae674f843 + md5: 4e37f55a16d74947fa8c0630bfb9f5c0 + sha256: 311e07f6cb05688148d986fc201a42ffecde363932a4bb0dcc1ce5ba14d4ffc5 category: main optional: false - name: scikit-image @@ -17024,7 +17245,6 @@ package: __osx: '>=11.0' imageio: '>=2.33,!=2.35.0' lazy-loader: '>=0.4' - lazy_loader: '>=0.4' libcxx: '>=18' networkx: '>=3.0' numpy: '>=1.24' @@ -17035,97 +17255,97 @@ package: pywavelets: '>=1.1.1' scipy: '>=1.11.4' tifffile: '>=2022.8.12' - url: https://conda.anaconda.org/conda-forge/osx-arm64/scikit-image-0.25.2-py312hcb1e3ce_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/scikit-image-0.25.2-py312hcb1e3ce_1.conda hash: - md5: f0d8d58eab1d2323d01b4e1051e2e97f - sha256: 7ef2271e7e46120fc58caa2de7bb3c21755b947ddda83ea093d06c7d62cbeab6 + md5: d33850b853bca259d7631b278621cfd7 + sha256: 5ba757ecbc7b0ce14a8d9c8e244b0f825663c928a08f7b261a83f947024ca017 category: main optional: false - name: scikit-learn - version: 1.6.1 + version: 1.7.1 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' _openmp_mutex: '>=4.5' joblib: '>=1.2.0' - libgcc: '>=13' - libstdcxx: '>=13' - numpy: '>=1.19,<3' + libgcc: '>=14' + libstdcxx: '>=14' + numpy: '>=1.23,<3' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - scipy: '' + scipy: '>=1.8.0' threadpoolctl: '>=3.1.0' - url: https://conda.anaconda.org/conda-forge/linux-64/scikit-learn-1.6.1-py312h7a48858_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/scikit-learn-1.7.1-py312h4f0b9e3_0.conda hash: - md5: 102727f71df02a51e9e173f2e6f87d57 - sha256: 7c869c73c95ef09edef839448ae3d153c4e3a208fb110c4260225f342d23e08e + md5: 7f96df096abbe0064f0ec5060c1d2af4 + sha256: c87194d7a0659493aa8ca9007bba2a4a8965e60037c396cd2e08fc1b5c91548b category: main optional: false - name: scikit-learn - version: 1.6.1 + version: 1.7.1 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' joblib: '>=1.2.0' - libcxx: '>=18' - llvm-openmp: '>=18.1.8' - numpy: '>=1.19,<3' + libcxx: '>=19' + llvm-openmp: '>=19.1.7' + numpy: '>=1.23,<3' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - scipy: '' + scipy: '>=1.8.0' threadpoolctl: '>=3.1.0' - url: https://conda.anaconda.org/conda-forge/osx-64/scikit-learn-1.6.1-py312he1a5313_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/scikit-learn-1.7.1-py312hf34d0c2_0.conda hash: - md5: c177b3800953875a115ecba027a66d63 - sha256: dcdb37893344a321442ce97fd37a5d45b2c6d93a6638fb6e876c638284088d2c + md5: 702f651c3e601a88700bcce18f31b0c9 + sha256: 64a309bfe938f32169f1ff5160e3a1f0387020a072cc4d1d998ed1342c65325c category: main optional: false - name: scikit-learn - version: 1.6.1 + version: 1.7.1 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' joblib: '>=1.2.0' - libcxx: '>=18' - llvm-openmp: '>=18.1.8' - numpy: '>=1.19,<3' + libcxx: '>=19' + llvm-openmp: '>=19.1.7' + numpy: '>=1.23,<3' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - scipy: '' + scipy: '>=1.8.0' threadpoolctl: '>=3.1.0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/scikit-learn-1.6.1-py312h39203ce_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/scikit-learn-1.7.1-py312h54d6233_0.conda hash: - md5: 3d38707ed1991a65dd165c5460d7f3a2 - sha256: 63e7751b861b5d8a6bfe32a58e67b446b8235f8768e860db955b394e4c7a9edc + md5: d384e66a54996cc54614fdd111489d6a + sha256: c1a079efc29fdb840f9a2b53ee44940aafbe81b4f1845c1281aa9da77b2c4ce5 category: main optional: false - name: scipy - version: 1.15.2 + version: 1.16.1 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libblas: '>=3.9.0,<4.0a0' libcblas: '>=3.9.0,<4.0a0' - libgcc: '>=13' + libgcc: '>=14' libgfortran: '' - libgfortran5: '>=13.3.0' + libgfortran5: '>=14.3.0' liblapack: '>=3.9.0,<4.0a0' - libstdcxx: '>=13' - numpy: '>=1.23.5' + libstdcxx: '>=14' + numpy: '>=1.25.2' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/linux-64/scipy-1.15.2-py312ha707e6e_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/scipy-1.16.1-py312h7a1785b_1.conda hash: - md5: 00b999c5f9d01fb633db819d79186bd4 - sha256: b9faaa024b77a3678a988c5a490f02c4029c0d5903998b585100e05bc7d4ff36 + md5: b965f164d14d4cffe1ddcf39195b63d6 + sha256: d5e65c845446ae64ad55b2ee0571f29d1ac39c8ced36e9f5a04d2d105e61fab9 category: main optional: false - name: scipy - version: 1.15.2 + version: 1.16.0 manager: conda platform: osx-64 dependencies: @@ -17134,19 +17354,19 @@ package: libcblas: '>=3.9.0,<4.0a0' libcxx: '>=18' libgfortran: 5.* - libgfortran5: '>=13.2.0' + libgfortran5: '>=14.2.0' liblapack: '>=3.9.0,<4.0a0' - numpy: '>=1.23.5' + numpy: '>=1.25.2' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-64/scipy-1.15.2-py312hd04560d_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/scipy-1.16.0-py312hd0c0319_0.conda hash: - md5: cea880e674e00193c7fb915eea6c8200 - sha256: 4c34ef6a688c3ea99a11a9c32941133800f4e10ff5af0074998abed80392c75a + md5: 713d61abff10ba1c063cf931ca5bac7d + sha256: 4aab814a523927c14062a008fd2c42b91961a6e9d9adc54a18f9b49ffc058caf category: main optional: false - name: scipy - version: 1.15.2 + version: 1.16.0 manager: conda platform: osx-arm64 dependencies: @@ -17155,15 +17375,15 @@ package: libcblas: '>=3.9.0,<4.0a0' libcxx: '>=18' libgfortran: 5.* - libgfortran5: '>=13.2.0' + libgfortran5: '>=14.2.0' liblapack: '>=3.9.0,<4.0a0' - numpy: '>=1.23.5' + numpy: '>=1.25.2' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-arm64/scipy-1.15.2-py312h99a188d_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/scipy-1.16.0-py312hcedbd36_0.conda hash: - md5: b1d324bf5018b451152bbdc4ffd3d378 - sha256: af61f6e29a0d3d4c66699a35b19ce6849d6e0fa15017d7a9ef6268cc1c4e1264 + md5: b3ab5755feaabeaf889063663790eb25 + sha256: d0033c0414910c2bb6005e005e0df266a6c21e1928efec2df3251736245c1258 category: main optional: false - name: seaborn @@ -17184,8 +17404,8 @@ package: manager: conda platform: osx-64 dependencies: - statsmodels: '>=0.12' seaborn-base: 0.13.2 + statsmodels: '>=0.12' url: https://conda.anaconda.org/conda-forge/noarch/seaborn-0.13.2-hd8ed1ab_3.conda hash: md5: 62afb877ca2c2b4b6f9ecb37320085b6 @@ -17197,8 +17417,8 @@ package: manager: conda platform: osx-arm64 dependencies: - statsmodels: '>=0.12' seaborn-base: 0.13.2 + statsmodels: '>=0.12' url: https://conda.anaconda.org/conda-forge/noarch/seaborn-0.13.2-hd8ed1ab_3.conda hash: md5: 62afb877ca2c2b4b6f9ecb37320085b6 @@ -17226,11 +17446,11 @@ package: manager: conda platform: osx-64 dependencies: - python: '>=3.9' + matplotlib-base: '>=3.4,!=3.6.1' + numpy: '>=1.20,!=1.24.0' pandas: '>=1.2' + python: '>=3.9' scipy: '>=1.7' - numpy: '>=1.20,!=1.24.0' - matplotlib-base: '>=3.4,!=3.6.1' url: https://conda.anaconda.org/conda-forge/noarch/seaborn-base-0.13.2-pyhd8ed1ab_3.conda hash: md5: fd96da444e81f9e6fcaac38590f3dd42 @@ -17242,11 +17462,11 @@ package: manager: conda platform: osx-arm64 dependencies: - python: '>=3.9' + matplotlib-base: '>=3.4,!=3.6.1' + numpy: '>=1.20,!=1.24.0' pandas: '>=1.2' + python: '>=3.9' scipy: '>=1.7' - numpy: '>=1.20,!=1.24.0' - matplotlib-base: '>=3.4,!=3.6.1' url: https://conda.anaconda.org/conda-forge/noarch/seaborn-base-0.13.2-pyhd8ed1ab_3.conda hash: md5: fd96da444e81f9e6fcaac38590f3dd42 @@ -17273,8 +17493,8 @@ package: platform: osx-64 dependencies: numpy: '' - scipy: '' python: '>=3.9' + scipy: '' url: https://conda.anaconda.org/conda-forge/noarch/seawater-3.3.5-pyhd8ed1ab_1.conda hash: md5: 3917cd49c30278aad07536ee77084eb0 @@ -17287,8 +17507,8 @@ package: platform: osx-arm64 dependencies: numpy: '' - scipy: '' python: '>=3.9' + scipy: '' url: https://conda.anaconda.org/conda-forge/noarch/seawater-3.3.5-pyhd8ed1ab_1.conda hash: md5: 3917cd49c30278aad07536ee77084eb0 @@ -17296,39 +17516,39 @@ package: category: main optional: false - name: setuptools - version: 75.8.2 + version: 80.9.0 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.8.2-pyhff2d567_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda hash: - md5: 9bddfdbf4e061821a1a443f93223be61 - sha256: 91d664ace7c22e787775069418daa9f232ee8bafdd0a6a080a5ed2395a6fa6b2 + md5: 4de79c071274a53dcaf2a8c749d1499e + sha256: 972560fcf9657058e3e1f97186cc94389144b46dbdf58c807ce62e83f977e863 category: main optional: false - name: setuptools - version: 75.8.2 + version: 80.9.0 manager: conda platform: osx-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.8.2-pyhff2d567_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda hash: - md5: 9bddfdbf4e061821a1a443f93223be61 - sha256: 91d664ace7c22e787775069418daa9f232ee8bafdd0a6a080a5ed2395a6fa6b2 + md5: 4de79c071274a53dcaf2a8c749d1499e + sha256: 972560fcf9657058e3e1f97186cc94389144b46dbdf58c807ce62e83f977e863 category: main optional: false - name: setuptools - version: 75.8.2 + version: 80.9.0 manager: conda platform: osx-arm64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.8.2-pyhff2d567_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda hash: - md5: 9bddfdbf4e061821a1a443f93223be61 - sha256: 91d664ace7c22e787775069418daa9f232ee8bafdd0a6a080a5ed2395a6fa6b2 + md5: 4de79c071274a53dcaf2a8c749d1499e + sha256: 972560fcf9657058e3e1f97186cc94389144b46dbdf58c807ce62e83f977e863 category: main optional: false - name: shapely @@ -17386,13 +17606,13 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' + libgcc: '>=14' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/linux-64/simplejson-3.20.1-py312h66e93f0_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/simplejson-3.20.1-py312h4c3975b_1.conda hash: - md5: d1c95aa4908e88bd4216f04b6bb7e297 - sha256: 22041442f0659ef55073ca8536708115cdf6ac19d461a4db6840dc9b4d534ced + md5: fd84532a5e7f9517996faf21c037f5da + sha256: f5101588aab051f540db11e68d39cfdc9e26b428f022beae78f8d229f19fa533 category: main optional: false - name: simplejson @@ -17403,10 +17623,10 @@ package: __osx: '>=10.13' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-64/simplejson-3.20.1-py312h01d7ebd_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/simplejson-3.20.1-py312h2f459f6_1.conda hash: - md5: ce290364c93c54451a2cfc6c865541e7 - sha256: 9ccb5df70737e0d23524ae2e41b17952aa901a7446598640d148567e28d691dc + md5: 1ecc0c7ce3abf2779a984a7ce1d6a46b + sha256: 3810eedd4b6a414e07239d0f1bbafddc9f97065fd4fb8a840849a6a5f7a50e12 category: main optional: false - name: simplejson @@ -17417,10 +17637,10 @@ package: __osx: '>=11.0' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-arm64/simplejson-3.20.1-py312hea69d52_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/simplejson-3.20.1-py312h163523d_1.conda hash: - md5: 24b383298c111f2dab4ceaf2cd5cc166 - sha256: f5054ad8baa3a4cda2084c0b277fc9bfb6faec69ec61ccf67e63498b10509c76 + md5: e33b0b05c6ab5192ccd7a6f95b6ccf6f + sha256: d63ea62671bc7d17f77affa059d6825c84d479e24990d172c967ea122b4f82ef category: main optional: false - name: six @@ -17428,11 +17648,11 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda + python: '' + url: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda hash: - md5: a451d576819089b0d672f18768be0f65 - sha256: 41db0180680cc67c3fa76544ffd48d6a5679d96f4b71d7498a759e94edc9a2db + md5: 3339e3b65d58accf4ca4fb8748ab16b3 + sha256: 458227f759d5e3fcec5d9b7acce54e10c9e1f4f4b7ec978f3bfd54ce4ee9853d category: main optional: false - name: six @@ -17441,10 +17661,10 @@ package: platform: osx-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda hash: - md5: a451d576819089b0d672f18768be0f65 - sha256: 41db0180680cc67c3fa76544ffd48d6a5679d96f4b71d7498a759e94edc9a2db + md5: 3339e3b65d58accf4ca4fb8748ab16b3 + sha256: 458227f759d5e3fcec5d9b7acce54e10c9e1f4f4b7ec978f3bfd54ce4ee9853d category: main optional: false - name: six @@ -17453,50 +17673,50 @@ package: platform: osx-arm64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda hash: - md5: a451d576819089b0d672f18768be0f65 - sha256: 41db0180680cc67c3fa76544ffd48d6a5679d96f4b71d7498a759e94edc9a2db + md5: 3339e3b65d58accf4ca4fb8748ab16b3 + sha256: 458227f759d5e3fcec5d9b7acce54e10c9e1f4f4b7ec978f3bfd54ce4ee9853d category: main optional: false - name: snappy - version: 1.2.1 + version: 1.2.2 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - libstdcxx: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.1-h8bd8927_1.conda + libgcc: '>=14' + libstdcxx: '>=14' + url: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.2-h03e3b7b_0.conda hash: - md5: 3b3e64af585eadfb52bb90b553db5edf - sha256: ec91e86eeb2c6bbf09d51351b851e945185d70661d2ada67204c9a6419d282d3 + md5: 3d8da0248bdae970b4ade636a104b7f5 + sha256: 8b8acbde6814d1643da509e11afeb6bb30eb1e3004cf04a7c9ae43e9b097f063 category: main optional: false - name: snappy - version: 1.2.1 + version: 1.2.2 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' - libcxx: '>=18' - url: https://conda.anaconda.org/conda-forge/osx-64/snappy-1.2.1-haf3c120_1.conda + libcxx: '>=19' + url: https://conda.anaconda.org/conda-forge/osx-64/snappy-1.2.2-h25c286d_0.conda hash: - md5: 9d6ae6d5232233e1a01eb7db524078fb - sha256: 26e8a2edd2a12618d9adcdcfc6cfd9adaca8da71aa334615d29e803d225b52be + md5: e6544ab8824f58ca155a5b8225f0c780 + sha256: e9ccbdbfaa9abd21636decd524d9845dee5a67af593b1d54525a48f2b03d3d76 category: main optional: false - name: snappy - version: 1.2.1 + version: 1.2.2 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' - libcxx: '>=18' - url: https://conda.anaconda.org/conda-forge/osx-arm64/snappy-1.2.1-h98b9ce2_1.conda + libcxx: '>=19' + url: https://conda.anaconda.org/conda-forge/osx-arm64/snappy-1.2.2-hd121638_0.conda hash: - md5: ded86dee325290da2967a3fea3800eb5 - sha256: 4242f95b215127a006eb664fe26ed5a82df87e90cbdbc7ce7ff4971f0720997f + md5: ba9ca3813f4db8c0d85d3c84404e02ba + sha256: b3d447d72d2af824006f4ba78ae4188747886d6d95f2f165fe67b95541f02b05 category: main optional: false - name: snuggs @@ -17519,8 +17739,8 @@ package: platform: osx-64 dependencies: numpy: '' - python: '>=3.9' pyparsing: '>=2.1.6' + python: '>=3.9' url: https://conda.anaconda.org/conda-forge/noarch/snuggs-1.4.7-pyhd8ed1ab_2.conda hash: md5: 9aa358575bbd4be126eaa5e0039f835c @@ -17533,8 +17753,8 @@ package: platform: osx-arm64 dependencies: numpy: '' - python: '>=3.9' pyparsing: '>=2.1.6' + python: '>=3.9' url: https://conda.anaconda.org/conda-forge/noarch/snuggs-1.4.7-pyhd8ed1ab_2.conda hash: md5: 9aa358575bbd4be126eaa5e0039f835c @@ -17578,48 +17798,45 @@ package: category: main optional: false - name: sparse - version: 0.15.5 + version: 0.17.0 manager: conda platform: linux-64 dependencies: - python: '' - numpy: '>=1.17' - scipy: '>=0.19' numba: '>=0.49' - url: https://conda.anaconda.org/conda-forge/noarch/sparse-0.15.5-pyh72ffeb9_0.conda + numpy: '>=1.17' + python: '' + url: https://conda.anaconda.org/conda-forge/noarch/sparse-0.17.0-pyhcf101f3_0.conda hash: - md5: e640762c293807bbd75c003e18d8ff0c - sha256: 7cd9657cffe60891f418cc86d013c7872648a274c5957e626498e4e804272ec3 + md5: 1b59de14a7e5888f939611e1fe329e00 + sha256: 8406de1065e1d4ba206d611dae9a03de7f226f486ce9fb02ab0f29c3bd031a6a category: main optional: false - name: sparse - version: 0.15.5 + version: 0.17.0 manager: conda platform: osx-64 dependencies: - python: '>=3.8' - numpy: '>=1.17' - scipy: '>=0.19' numba: '>=0.49' - url: https://conda.anaconda.org/conda-forge/noarch/sparse-0.15.5-pyh72ffeb9_0.conda + numpy: '>=1.17' + python: '>=3.10' + url: https://conda.anaconda.org/conda-forge/noarch/sparse-0.17.0-pyhcf101f3_0.conda hash: - md5: e640762c293807bbd75c003e18d8ff0c - sha256: 7cd9657cffe60891f418cc86d013c7872648a274c5957e626498e4e804272ec3 + md5: 1b59de14a7e5888f939611e1fe329e00 + sha256: 8406de1065e1d4ba206d611dae9a03de7f226f486ce9fb02ab0f29c3bd031a6a category: main optional: false - name: sparse - version: 0.15.5 + version: 0.17.0 manager: conda platform: osx-arm64 dependencies: - python: '>=3.8' - numpy: '>=1.17' - scipy: '>=0.19' numba: '>=0.49' - url: https://conda.anaconda.org/conda-forge/noarch/sparse-0.15.5-pyh72ffeb9_0.conda + numpy: '>=1.17' + python: '>=3.10' + url: https://conda.anaconda.org/conda-forge/noarch/sparse-0.17.0-pyhcf101f3_0.conda hash: - md5: e640762c293807bbd75c003e18d8ff0c - sha256: 7cd9657cffe60891f418cc86d013c7872648a274c5957e626498e4e804272ec3 + md5: 1b59de14a7e5888f939611e1fe329e00 + sha256: 8406de1065e1d4ba206d611dae9a03de7f226f486ce9fb02ab0f29c3bd031a6a category: main optional: false - name: spdlog @@ -17628,7 +17845,7 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - fmt: '>=11.0.1,<12.0a0' + fmt: '>=11.0.1,<11.1a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' url: https://conda.anaconda.org/conda-forge/linux-64/spdlog-1.14.1-hed91bc2_1.conda @@ -17643,7 +17860,7 @@ package: platform: osx-64 dependencies: __osx: '>=10.13' - fmt: '>=11.0.1,<12.0a0' + fmt: '>=11.0.1,<11.1a0' libcxx: '>=16' url: https://conda.anaconda.org/conda-forge/osx-64/spdlog-1.14.1-h325aa07_1.conda hash: @@ -17657,7 +17874,7 @@ package: platform: osx-arm64 dependencies: __osx: '>=11.0' - fmt: '>=11.0.1,<12.0a0' + fmt: '>=11.0.1,<11.1a0' libcxx: '>=16' url: https://conda.anaconda.org/conda-forge/osx-arm64/spdlog-1.14.1-h6d8af72_1.conda hash: @@ -17666,52 +17883,53 @@ package: category: main optional: false - name: sqlite - version: 3.49.1 + version: 3.50.4 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - libsqlite: 3.49.1 + libgcc: '>=14' + libsqlite: 3.50.4 libzlib: '>=1.3.1,<2.0a0' ncurses: '>=6.5,<7.0a0' readline: '>=8.2,<9.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/sqlite-3.49.1-h9eae976_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/sqlite-3.50.4-hbc0de68_0.conda hash: - md5: 069213b4f57ec55bbcfaebe415c758f7 - sha256: e4535c13b082b6126330b4b8f323d308e24f454e4f218a2a6c6135fb10050b1c + md5: 8376bd3854542be0c8c7cd07525d31c6 + sha256: ea12e0714d70a536abe5968df612c57a966aa93c5a152cc4a1974046248d72a4 category: main optional: false - name: sqlite - version: 3.49.1 + version: 3.50.4 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' - libsqlite: 3.49.1 + libsqlite: 3.50.4 libzlib: '>=1.3.1,<2.0a0' ncurses: '>=6.5,<7.0a0' readline: '>=8.2,<9.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/sqlite-3.49.1-h2e4c9dc_1.conda + url: https://conda.anaconda.org/conda-forge/osx-64/sqlite-3.50.4-h64b5abc_0.conda hash: - md5: e05d692a4d8e50444d1c252d0ee56e0a - sha256: 8567f29b11cd1dede85eb026b0ae8d1d84467075b7c6b04b62423eb151cae736 + md5: 86f1188b2d041e950810593c2df753ec + sha256: d80b611bab9442aa6c745563e48a13781ef2abddb512892db899af344cf970de category: main optional: false - name: sqlite - version: 3.49.1 + version: 3.50.4 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' - libsqlite: 3.49.1 + icu: '>=75.1,<76.0a0' + libsqlite: 3.50.4 libzlib: '>=1.3.1,<2.0a0' ncurses: '>=6.5,<7.0a0' readline: '>=8.2,<9.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/sqlite-3.49.1-hd7222ec_1.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/sqlite-3.50.4-hb5dd463_0.conda hash: - md5: 03fcb37eec4fa42ea528cbfc8407bc83 - sha256: 725c38281dd9d5b2103bc50825eaac609e7a994fe523255188948b496186b20a + md5: 1da3d5a9ab6f1dbc8fd5b57fd65e0d3d + sha256: 3b25888b1fa1aac88571127a8a8e16d25a522f94114cb339d0f7a613a911cbe2 category: main optional: false - name: stack_data @@ -17760,209 +17978,209 @@ package: category: main optional: false - name: statsmodels - version: 0.14.4 + version: 0.14.5 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - numpy: '>=1.19,<3' + numpy: '>=1.23,<3' packaging: '>=21.3' pandas: '!=2.1.0,>=1.4' patsy: '>=0.5.6' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* scipy: '!=1.9.2,>=1.8' - url: https://conda.anaconda.org/conda-forge/linux-64/statsmodels-0.14.4-py312hc0a28a1_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/statsmodels-0.14.5-py312h8b63200_0.conda hash: - md5: 97dc960f3d9911964d73c2cf240baea5 - sha256: 6cc65ba902b32207e8a697b0e0408a28d6cc166be04f1882c40739a86a253d22 + md5: d3588408248f78db333a5b019a4ca696 + sha256: 71af2d8efae963c83f9cd49f4648087d0acd41a58972a5bd7b097273b895ed54 category: main optional: false - name: statsmodels - version: 0.14.4 + version: 0.14.5 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' - numpy: '>=1.19,<3' + numpy: '>=1.23,<3' packaging: '>=21.3' pandas: '!=2.1.0,>=1.4' patsy: '>=0.5.6' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* scipy: '!=1.9.2,>=1.8' - url: https://conda.anaconda.org/conda-forge/osx-64/statsmodels-0.14.4-py312h3a11e2b_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/statsmodels-0.14.5-py312h34a05c3_0.conda hash: - md5: 55fe30ca963ade785dd48348cfd2ad96 - sha256: 6ff98268e3d5e3c82167f3162c0788e5cbe2e28086ea58f98d2f9b013149b0bd + md5: d1782681f1d944cc1e8712591415304a + sha256: 5620ebca940ce29415489f3006c710a925d7f730879910b3071d2277cb2375e8 category: main optional: false - name: statsmodels - version: 0.14.4 + version: 0.14.5 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' - numpy: '>=1.19,<3' + numpy: '>=1.23,<3' packaging: '>=21.3' pandas: '!=2.1.0,>=1.4' patsy: '>=0.5.6' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* scipy: '!=1.9.2,>=1.8' - url: https://conda.anaconda.org/conda-forge/osx-arm64/statsmodels-0.14.4-py312h755e627_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/statsmodels-0.14.5-py312hcde60ef_0.conda hash: - md5: d9455b9eb18d4bda352265b42c142685 - sha256: 986f858bc1061a3eac019ccdbb9692cc1dedcacaf4f547a7a55a3c9cfa97b308 + md5: 79208bf3a11cedbe7dd53a6798cb88d2 + sha256: 911a6fcfa2c04de64d03378e705a0678bf511f25aa0f5f9c8e4570ccb071b241 category: main optional: false - name: svt-av1 - version: 3.0.0 + version: 3.1.2 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - libstdcxx: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/svt-av1-3.0.0-h5888daf_0.conda + libgcc: '>=14' + libstdcxx: '>=14' + url: https://conda.anaconda.org/conda-forge/linux-64/svt-av1-3.1.2-hecca717_0.conda hash: - md5: d86fc7eb811593abc06b328d3d72c001 - sha256: 01ae1e86f79e05b9e687ef3b963e7f4f8a7554ac9f5af4dc1e3dc11ed79548b2 + md5: 9859766c658e78fec9afa4a54891d920 + sha256: 34e2e9c505cd25dba0a9311eb332381b15147cf599d972322a7c197aedfc8ce2 category: main optional: false - name: svt-av1 - version: 3.0.0 + version: 3.1.2 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' - libcxx: '>=18' - url: https://conda.anaconda.org/conda-forge/osx-64/svt-av1-3.0.0-h240833e_0.conda + libcxx: '>=19' + url: https://conda.anaconda.org/conda-forge/osx-64/svt-av1-3.1.2-h21dd04a_0.conda hash: - md5: 797f99b016dcc86517c164bed832bfbc - sha256: e078109eda9dd6bd1690346ccbf97ad1c07d4a1ae6e8a52ccca421c7b3c25caf + md5: c11ebe332911d9642f0678da49bedf44 + sha256: e6fa8309eadc275aae8c456b9473be5b2b9413b43c6ef2fdbebe21fb3818dd55 category: main optional: false - name: svt-av1 - version: 3.0.0 + version: 3.1.2 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' - libcxx: '>=18' - url: https://conda.anaconda.org/conda-forge/osx-arm64/svt-av1-3.0.0-h8ab69cd_0.conda + libcxx: '>=19' + url: https://conda.anaconda.org/conda-forge/osx-arm64/svt-av1-3.1.2-h12ba402_0.conda hash: - md5: 419e4ba326a85ce687a6b038e442c744 - sha256: 94802f002ec504c4a8a8dc5bb59d992a53eaa41379d7258a409939f9bb84547d + md5: cb56c114b25f20bd09ef1c66a21136ff + sha256: 3b0f4f2a6697f0cdbbe0c0b5f5c7fa8064483d58b4d9674d5babda7f7146af7a category: main optional: false - name: tblib - version: 3.0.0 + version: 3.1.0 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/tblib-3.0.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/tblib-3.1.0-pyhd8ed1ab_0.conda hash: - md5: 60ce69f73f3e75b21f1c27b1b471320c - sha256: 6869cd2e043426d30c84d0ff6619f176b39728f9c75dc95dca89db994548bb8a + md5: a15c62b8a306b8978f094f76da2f903f + sha256: a83c83f5e622a2f34fb1d179c55c3ff912429cd0a54f9f3190ae44a0fdba2ad2 category: main optional: false - name: tblib - version: 3.0.0 + version: 3.1.0 manager: conda platform: osx-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/tblib-3.0.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/tblib-3.1.0-pyhd8ed1ab_0.conda hash: - md5: 60ce69f73f3e75b21f1c27b1b471320c - sha256: 6869cd2e043426d30c84d0ff6619f176b39728f9c75dc95dca89db994548bb8a + md5: a15c62b8a306b8978f094f76da2f903f + sha256: a83c83f5e622a2f34fb1d179c55c3ff912429cd0a54f9f3190ae44a0fdba2ad2 category: main optional: false - name: tblib - version: 3.0.0 + version: 3.1.0 manager: conda platform: osx-arm64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/tblib-3.0.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/tblib-3.1.0-pyhd8ed1ab_0.conda hash: - md5: 60ce69f73f3e75b21f1c27b1b471320c - sha256: 6869cd2e043426d30c84d0ff6619f176b39728f9c75dc95dca89db994548bb8a + md5: a15c62b8a306b8978f094f76da2f903f + sha256: a83c83f5e622a2f34fb1d179c55c3ff912429cd0a54f9f3190ae44a0fdba2ad2 category: main optional: false - name: termcolor - version: 2.5.0 + version: 3.1.0 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/termcolor-2.5.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/termcolor-3.1.0-pyhd8ed1ab_0.conda hash: - md5: 1ce02d60767af357e864ce61895268d2 - sha256: 4a7e13776ebd78afcdba3985ea42317e4e0a20722d2c27ecaae3d9f8849e6516 + md5: 951a99e94afe3d38bfdbd04902fe33b7 + sha256: 04c7b49fbe6a2421ca9126f3f880877e995c457aed8afeb5ad18f03990ca8738 category: main optional: false - name: termcolor - version: 2.5.0 + version: 3.1.0 manager: conda platform: osx-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/termcolor-2.5.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/termcolor-3.1.0-pyhd8ed1ab_0.conda hash: - md5: 1ce02d60767af357e864ce61895268d2 - sha256: 4a7e13776ebd78afcdba3985ea42317e4e0a20722d2c27ecaae3d9f8849e6516 + md5: 951a99e94afe3d38bfdbd04902fe33b7 + sha256: 04c7b49fbe6a2421ca9126f3f880877e995c457aed8afeb5ad18f03990ca8738 category: main optional: false - name: termcolor - version: 2.5.0 + version: 3.1.0 manager: conda platform: osx-arm64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/termcolor-2.5.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/termcolor-3.1.0-pyhd8ed1ab_0.conda hash: - md5: 1ce02d60767af357e864ce61895268d2 - sha256: 4a7e13776ebd78afcdba3985ea42317e4e0a20722d2c27ecaae3d9f8849e6516 + md5: 951a99e94afe3d38bfdbd04902fe33b7 + sha256: 04c7b49fbe6a2421ca9126f3f880877e995c457aed8afeb5ad18f03990ca8738 category: main optional: false - name: threadpoolctl - version: 3.5.0 + version: 3.6.0 manager: conda platform: linux-64 dependencies: - python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/threadpoolctl-3.5.0-pyhc1e730c_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/threadpoolctl-3.6.0-pyhecae5ae_0.conda hash: - md5: df68d78237980a159bd7149f33c0e8fd - sha256: 45e402941f6bed094022c5726a2ca494e6224b85180d2367fb6ddd9aea68079d + md5: 9d64911b31d57ca443e9f1e36b04385f + sha256: 6016672e0e72c4cf23c0cf7b1986283bd86a9c17e8d319212d78d8e9ae42fdfd category: main optional: false - name: threadpoolctl - version: 3.5.0 + version: 3.6.0 manager: conda platform: osx-64 dependencies: - python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/threadpoolctl-3.5.0-pyhc1e730c_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/threadpoolctl-3.6.0-pyhecae5ae_0.conda hash: - md5: df68d78237980a159bd7149f33c0e8fd - sha256: 45e402941f6bed094022c5726a2ca494e6224b85180d2367fb6ddd9aea68079d + md5: 9d64911b31d57ca443e9f1e36b04385f + sha256: 6016672e0e72c4cf23c0cf7b1986283bd86a9c17e8d319212d78d8e9ae42fdfd category: main optional: false - name: threadpoolctl - version: 3.5.0 + version: 3.6.0 manager: conda platform: osx-arm64 dependencies: - python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/threadpoolctl-3.5.0-pyhc1e730c_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/threadpoolctl-3.6.0-pyhecae5ae_0.conda hash: - md5: df68d78237980a159bd7149f33c0e8fd - sha256: 45e402941f6bed094022c5726a2ca494e6224b85180d2367fb6ddd9aea68079d + md5: 9d64911b31d57ca443e9f1e36b04385f + sha256: 6016672e0e72c4cf23c0cf7b1986283bd86a9c17e8d319212d78d8e9ae42fdfd category: main optional: false - name: tifffile @@ -17984,9 +18202,9 @@ package: manager: conda platform: osx-64 dependencies: - python: '>=3.10' - numpy: '>=1.19.2' imagecodecs: '>=2023.8.12' + numpy: '>=1.19.2' + python: '>=3.10' url: https://conda.anaconda.org/conda-forge/noarch/tifffile-2024.12.12-pyhd8ed1ab_0.conda hash: md5: 59d646aa704b6024cb965be43493ed45 @@ -17998,9 +18216,9 @@ package: manager: conda platform: osx-arm64 dependencies: - python: '>=3.10' - numpy: '>=1.19.2' imagecodecs: '>=2023.8.12' + numpy: '>=1.19.2' + python: '>=3.10' url: https://conda.anaconda.org/conda-forge/noarch/tifffile-2024.12.12-pyhd8ed1ab_0.conda hash: md5: 59d646aa704b6024cb965be43493ed45 @@ -18020,7 +18238,7 @@ package: azure-storage-blobs-cpp: '>=12.12.0,<12.12.1.0a0' azure-storage-common-cpp: '>=12.7.0,<12.7.1.0a0' bzip2: '>=1.0.8,<2.0a0' - fmt: '>=11.0.2,<12.0a0' + fmt: '>=11.0.2,<11.1a0' libabseil: '>=20240116.2,<20240117.0a0' libcurl: '>=8.9.1,<9.0a0' libgcc: '>=13' @@ -18052,7 +18270,7 @@ package: azure-storage-blobs-cpp: '>=12.12.0,<12.12.1.0a0' azure-storage-common-cpp: '>=12.7.0,<12.7.1.0a0' bzip2: '>=1.0.8,<2.0a0' - fmt: '>=11.0.2,<12.0a0' + fmt: '>=11.0.2,<11.1a0' libabseil: '>=20240116.2,<20240117.0a0' libcurl: '>=8.9.1,<9.0a0' libcxx: '>=17' @@ -18083,7 +18301,7 @@ package: azure-storage-blobs-cpp: '>=12.12.0,<12.12.1.0a0' azure-storage-common-cpp: '>=12.7.0,<12.7.1.0a0' bzip2: '>=1.0.8,<2.0a0' - fmt: '>=11.0.2,<12.0a0' + fmt: '>=11.0.2,<11.1a0' libabseil: '>=20240116.2,<20240117.0a0' libcurl: '>=8.9.1,<9.0a0' libcxx: '>=17' @@ -18106,12 +18324,13 @@ package: manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - libzlib: '>=1.2.13,<2.0.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=13' + libzlib: '>=1.3.1,<2.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_hd72426e_102.conda hash: - md5: d453b98d9c83e71da0741bb0ff4d76bc - sha256: e0569c9caa68bf476bead1bed3d79650bb080b532c64a4af7d8ca286c08dea4e + md5: a0116df4f4ed05c303811a837d5b39d8 + sha256: a84ff687119e6d8752346d1d408d5cf360dee0badd487a472aa8ddedfdc219e1 category: main optional: false - name: tk @@ -18119,11 +18338,12 @@ package: manager: conda platform: osx-64 dependencies: - libzlib: '>=1.2.13,<2.0.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-h1abcd95_1.conda + __osx: '>=10.13' + libzlib: '>=1.3.1,<2.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-hf689a15_2.conda hash: - md5: bf830ba5afc507c6232d4ef0fb1a882d - sha256: 30412b2e9de4ff82d8c2a7e5d06a15f4f4fef1809a72138b6ccb53a33b26faf5 + md5: 9864891a6946c2fe037c02fca7392ab4 + sha256: b24468006a96b71a5f4372205ea7ec4b399b0f2a543541e86f883de54cd623fc category: main optional: false - name: tk @@ -18131,11 +18351,12 @@ package: manager: conda platform: osx-arm64 dependencies: - libzlib: '>=1.2.13,<2.0.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h5083fa2_1.conda + __osx: '>=11.0' + libzlib: '>=1.3.1,<2.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h892fb3f_2.conda hash: - md5: b50a57ba89c32b62428b71a875291c9b - sha256: 72457ad031b4c048e5891f3f6cb27a53cb479db68a52d965f796910e71a403a8 + md5: 7362396c170252e7b7b0c8fb37fe9c78 + sha256: cb86c522576fa95c6db4c878849af0bccfd3264daf0cc40dd18e7f4a7bfced0e category: main optional: false - name: tomli @@ -18143,11 +18364,11 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda + python: '' + url: https://conda.anaconda.org/conda-forge/noarch/tomli-2.2.1-pyhe01879c_2.conda hash: - md5: ac944244f1fed2eb49bae07193ae8215 - sha256: 18636339a79656962723077df9a56c0ac7b8a864329eb8f847ee3d38495b863e + md5: 30a0a26c8abccf4b7991d590fe17c699 + sha256: 040a5a05c487647c089ad5e05ad5aff5942830db2a4e656f1e300d73436436f1 category: main optional: false - name: tomli @@ -18156,10 +18377,10 @@ package: platform: osx-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/tomli-2.2.1-pyhe01879c_2.conda hash: - md5: ac944244f1fed2eb49bae07193ae8215 - sha256: 18636339a79656962723077df9a56c0ac7b8a864329eb8f847ee3d38495b863e + md5: 30a0a26c8abccf4b7991d590fe17c699 + sha256: 040a5a05c487647c089ad5e05ad5aff5942830db2a4e656f1e300d73436436f1 category: main optional: false - name: tomli @@ -18168,10 +18389,10 @@ package: platform: osx-arm64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/tomli-2.2.1-pyhe01879c_2.conda hash: - md5: ac944244f1fed2eb49bae07193ae8215 - sha256: 18636339a79656962723077df9a56c0ac7b8a864329eb8f847ee3d38495b863e + md5: 30a0a26c8abccf4b7991d590fe17c699 + sha256: 040a5a05c487647c089ad5e05ad5aff5942830db2a4e656f1e300d73436436f1 category: main optional: false - name: toolz @@ -18211,46 +18432,46 @@ package: category: main optional: false - name: tornado - version: 6.4.2 + version: 6.5.2 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' + libgcc: '>=14' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/linux-64/tornado-6.4.2-py312h66e93f0_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/tornado-6.5.2-py312h4c3975b_1.conda hash: - md5: e417822cb989e80a0d2b1b576fdd1657 - sha256: 062a3a3a37fa8615ce57929ba7e982c76f5a5810bcebd435950f6d6c4147c310 + md5: 66b988f7f1dc9fcc9541483cb0ab985b + sha256: 7cd30a558a00293a33ab9bfe0e174311546f0a1573c9f6908553ecd9a9bc417b category: main optional: false - name: tornado - version: 6.4.2 + version: 6.5.2 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-64/tornado-6.4.2-py312h01d7ebd_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/tornado-6.5.2-py312h2f459f6_1.conda hash: - md5: 1b977164053085b356297127d3d6be49 - sha256: a7b0796b9f8a02121a866ee396f0f8674c302504ccb9a3a2830699eedbc000b0 + md5: 10c40fc904bbfd1d4f1f90b3f159b777 + sha256: 7951611120eb3d97d58a23bace89a88381792bbb23e7233c77163a86a5b058dc category: main optional: false - name: tornado - version: 6.4.2 + version: 6.5.2 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-arm64/tornado-6.4.2-py312hea69d52_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/tornado-6.5.2-py312h163523d_1.conda hash: - md5: fb0605888a475d6a380ae1d1a819d976 - sha256: 964a2705a36c50040c967b18b45b9cc8de3c2aff4af546979a574e0b38e58e39 + md5: e5f3e0a27abcae26a90645dfff8d68a4 + sha256: 00e9adcab3564cc579af09c6089c60e5abf5b1fbdca5e4f0fa7299d90f35dc13 category: main optional: false - name: tqdm @@ -18329,145 +18550,145 @@ package: category: main optional: false - name: typing-extensions - version: 4.12.2 + version: 4.15.0 manager: conda platform: linux-64 dependencies: - typing_extensions: 4.12.2 - url: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_1.conda + typing_extensions: ==4.15.0 + url: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda hash: - md5: b6a408c64b78ec7b779a3e5c7a902433 - sha256: c8e9c1c467b5f960b627d7adc1c65fece8e929a3de89967e91ef0f726422fd32 + md5: edd329d7d3a4ab45dcf905899a7a6115 + sha256: 7c2df5721c742c2a47b2c8f960e718c930031663ac1174da67c1ed5999f7938c category: main optional: false - name: typing-extensions - version: 4.12.2 + version: 4.15.0 manager: conda platform: osx-64 dependencies: - typing_extensions: 4.12.2 - url: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_1.conda + typing_extensions: ==4.15.0 + url: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda hash: - md5: b6a408c64b78ec7b779a3e5c7a902433 - sha256: c8e9c1c467b5f960b627d7adc1c65fece8e929a3de89967e91ef0f726422fd32 + md5: edd329d7d3a4ab45dcf905899a7a6115 + sha256: 7c2df5721c742c2a47b2c8f960e718c930031663ac1174da67c1ed5999f7938c category: main optional: false - name: typing-extensions - version: 4.12.2 + version: 4.15.0 manager: conda platform: osx-arm64 dependencies: - typing_extensions: 4.12.2 - url: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_1.conda + typing_extensions: ==4.15.0 + url: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda hash: - md5: b6a408c64b78ec7b779a3e5c7a902433 - sha256: c8e9c1c467b5f960b627d7adc1c65fece8e929a3de89967e91ef0f726422fd32 + md5: edd329d7d3a4ab45dcf905899a7a6115 + sha256: 7c2df5721c742c2a47b2c8f960e718c930031663ac1174da67c1ed5999f7938c category: main optional: false - name: typing_extensions - version: 4.12.2 + version: 4.15.0 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_1.conda + python: '' + url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda hash: - md5: d17f13df8b65464ca316cbc000a3cb64 - sha256: 337be7af5af8b2817f115b3b68870208b30c31d3439bec07bfb2d8f4823e3568 + md5: 0caa1af407ecff61170c9437a808404d + sha256: 032271135bca55aeb156cee361c81350c6f3fb203f57d024d7e5a1fc9ef18731 category: main optional: false - name: typing_extensions - version: 4.12.2 + version: 4.15.0 manager: conda platform: osx-64 dependencies: - python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_1.conda + python: '>=3.10' + url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda hash: - md5: d17f13df8b65464ca316cbc000a3cb64 - sha256: 337be7af5af8b2817f115b3b68870208b30c31d3439bec07bfb2d8f4823e3568 + md5: 0caa1af407ecff61170c9437a808404d + sha256: 032271135bca55aeb156cee361c81350c6f3fb203f57d024d7e5a1fc9ef18731 category: main optional: false - name: typing_extensions - version: 4.12.2 + version: 4.15.0 manager: conda platform: osx-arm64 dependencies: - python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_1.conda + python: '>=3.10' + url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda hash: - md5: d17f13df8b65464ca316cbc000a3cb64 - sha256: 337be7af5af8b2817f115b3b68870208b30c31d3439bec07bfb2d8f4823e3568 + md5: 0caa1af407ecff61170c9437a808404d + sha256: 032271135bca55aeb156cee361c81350c6f3fb203f57d024d7e5a1fc9ef18731 category: main optional: false - name: tzcode - version: 2025a + version: 2025b manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/tzcode-2025a-hb9d3cd8_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/tzcode-2025b-hb9d3cd8_0.conda hash: - md5: e18bdeebf29176790089b654cfedaaec - sha256: f88b90571f91c10adf3930252e8b281acab134dd8e03e94642df6565d0f58437 + md5: 83aa65f939a5cf4a82bfa510cbc38b3f + sha256: 324976aab17bee85979761f89457b6a43c11bd93dcebf950d65576b2ab44dd94 category: main optional: false - name: tzcode - version: 2025a + version: 2025b manager: conda platform: osx-64 dependencies: __osx: '>=10.13' - url: https://conda.anaconda.org/conda-forge/osx-64/tzcode-2025a-h6e16a3a_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/tzcode-2025b-h6e16a3a_0.conda hash: - md5: a407e9b7ca1c012f55ab20aed3e27f9a - sha256: 600ce259bf210fa175b3fc7fab65d45375b1478157b0d28bc04aa1b561d9f5cc + md5: 1054d90d9e8f4014be19f2b8ac4dc80d + sha256: 536745f5021bf0d1bbd2df908b35375f984b8ee71411a3d9808a69cdfc3ece4e category: main optional: false - name: tzcode - version: 2025a + version: 2025b manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/tzcode-2025a-h5505292_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/tzcode-2025b-h5505292_0.conda hash: - md5: 48f16d47f645df5cc5b883fd09299b6d - sha256: 7adbeadc4393a5e8d9b71db2963b4ebb7e5fb11e4b77baa79fc84052b4152422 + md5: 92461eb2adf90d8bfee2eff69267d5a2 + sha256: e3072195330076de5f1614db4baaeb52140d000f0a504de595d1f107038074d1 category: main optional: false - name: tzdata - version: 2025a + version: 2025b manager: conda platform: linux-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025a-h78e105d_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda hash: - md5: dbcace4706afdfb7eb891f7b37d07c04 - sha256: c4b1ae8a2931fe9b274c44af29c5475a85b37693999f8c792dad0f8c6734b1de + md5: 4222072737ccff51314b5ece9c7d6f5a + sha256: 5aaa366385d716557e365f0a4e9c3fca43ba196872abbbe3d56bb610d131e192 category: main optional: false - name: tzdata - version: 2025a + version: 2025b manager: conda platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025a-h78e105d_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda hash: - md5: dbcace4706afdfb7eb891f7b37d07c04 - sha256: c4b1ae8a2931fe9b274c44af29c5475a85b37693999f8c792dad0f8c6734b1de + md5: 4222072737ccff51314b5ece9c7d6f5a + sha256: 5aaa366385d716557e365f0a4e9c3fca43ba196872abbbe3d56bb610d131e192 category: main optional: false - name: tzdata - version: 2025a + version: 2025b manager: conda platform: osx-arm64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025a-h78e105d_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda hash: - md5: dbcace4706afdfb7eb891f7b37d07c04 - sha256: c4b1ae8a2931fe9b274c44af29c5475a85b37693999f8c792dad0f8c6734b1de + md5: 4222072737ccff51314b5ece9c7d6f5a + sha256: 5aaa366385d716557e365f0a4e9c3fca43ba196872abbbe3d56bb610d131e192 category: main optional: false - name: udunits2 @@ -18511,49 +18732,49 @@ package: category: main optional: false - name: ujson - version: 5.10.0 + version: 5.11.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - libstdcxx: '>=13' - python: '>=3.12,<3.13.0a0' + libgcc: '>=14' + libstdcxx: '>=14' + python: '' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/linux-64/ujson-5.10.0-py312h2ec8cdc_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/ujson-5.11.0-py312h8285ef7_1.conda hash: - md5: 96226f62dddc63226472b7477d783967 - sha256: 2c4a907fa335fe7c1062a15704e54416ae2411db43fa523fb761b1d7e0195858 + md5: fa0c24d72a29999a904c4463e53095d1 + sha256: 466761e04d5c4816d6d950684349bafdbcfb9820603cbf3f2e279212b0f21213 category: main optional: false - name: ujson - version: 5.10.0 + version: 5.11.0 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' - libcxx: '>=17' - python: '>=3.12,<3.13.0a0' + libcxx: '>=19' + python: '' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-64/ujson-5.10.0-py312h5861a67_1.conda + url: https://conda.anaconda.org/conda-forge/osx-64/ujson-5.11.0-py312h2ac44ba_1.conda hash: - md5: f1a05dfc4f626da6e6a3d29dc66dbec1 - sha256: 46a3a88a39f50901a552876bd62e0ddfca28dace001b8987c19e7bbbc95e6f0e + md5: 20b573a672a3ea3d481f9095f1bb4484 + sha256: af0c6a5002d053bc297a33fd5f9a100f5f474fdd4716048ca38a89121884eac7 category: main optional: false - name: ujson - version: 5.10.0 + version: 5.11.0 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' - libcxx: '>=17' - python: '>=3.12,<3.13.0a0' + libcxx: '>=19' + python: 3.12.* python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-arm64/ujson-5.10.0-py312hde4cb15_1.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/ujson-5.11.0-py312he360a15_1.conda hash: - md5: e0f2dfba17ab64ec0724f821584b1ea3 - sha256: 6bd2a9a6d63e45fa7418cbad01fe502b65a8a13da86630f420dd8993dc7c47dc + md5: 8d226a5811b0c5e311cad9bef423cc85 + sha256: bdd384f304d470d65e8e4a647845fd08b3c3868b5e6d71ae4edd373b0bb2035a category: main optional: false - name: unicodedata2 @@ -18562,13 +18783,13 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' + libgcc: '>=14' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/linux-64/unicodedata2-16.0.0-py312h66e93f0_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/unicodedata2-16.0.0-py312h4c3975b_1.conda hash: - md5: 617f5d608ff8c28ad546e5d9671cbb95 - sha256: 638916105a836973593547ba5cf4891d1f2cb82d1cf14354fcef93fd5b941cdc + md5: 4da303c1e91703d178817252615ca0a7 + sha256: cbf7d13819cf526a094f0cfe2da7f7ba22c4fbae4d231c9004520fbbf93f7027 category: main optional: false - name: unicodedata2 @@ -18579,10 +18800,10 @@ package: __osx: '>=10.13' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-64/unicodedata2-16.0.0-py312h01d7ebd_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/unicodedata2-16.0.0-py312h2f459f6_1.conda hash: - md5: 27740ecb2764b1cddbe1e7412ed16034 - sha256: ac5cc7728c3052777aa2d54dde8735f677386b38e3a4c09a805120274a8b3475 + md5: 40a411be2653f780dd8cc8f120027ef7 + sha256: d53d5e9589e07c7176c05f7e82ca12374a7e95da47cc037baaf5ff2baa32643c category: main optional: false - name: unicodedata2 @@ -18593,10 +18814,10 @@ package: __osx: '>=11.0' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-arm64/unicodedata2-16.0.0-py312hea69d52_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/unicodedata2-16.0.0-py312h163523d_1.conda hash: - md5: 9a835052506b91ea8f0d8e352cd12246 - sha256: c6ca9ea11eecc650df4bce4b3daa843821def6d753eeab6d81de35bb43f9d984 + md5: e7e792c655daeca54a98cf44fe0bbb5a + sha256: 6620dfce63e763460d586f8b04c986e2318a58d6be06f30591a0d41902dd39cf category: main optional: false - name: uriparser @@ -18639,100 +18860,109 @@ package: category: main optional: false - name: url-normalize - version: 1.4.3 + version: 2.2.1 manager: conda platform: linux-64 dependencies: + idna: '' python: '>=3.9' six: '' - url: https://conda.anaconda.org/conda-forge/noarch/url-normalize-1.4.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/url-normalize-2.2.1-pyhd8ed1ab_0.conda hash: - md5: c7b1961b139c21381764de4704b6bbfb - sha256: e21242ad845600a6b7f03184c25d7cb8d38e229d196da0345290fc3996e07b70 + md5: 5db19244300bf33e9471a0b13f9b94cb + sha256: cca5bed1abaf9b20f444dd5e140ed3c1ad9e27e6f4085499648c6545581a9d2a category: main optional: false - name: url-normalize - version: 1.4.3 + version: 2.2.1 manager: conda platform: osx-64 dependencies: - six: '' + idna: '' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/url-normalize-1.4.3-pyhd8ed1ab_1.conda + six: '' + url: https://conda.anaconda.org/conda-forge/noarch/url-normalize-2.2.1-pyhd8ed1ab_0.conda hash: - md5: c7b1961b139c21381764de4704b6bbfb - sha256: e21242ad845600a6b7f03184c25d7cb8d38e229d196da0345290fc3996e07b70 + md5: 5db19244300bf33e9471a0b13f9b94cb + sha256: cca5bed1abaf9b20f444dd5e140ed3c1ad9e27e6f4085499648c6545581a9d2a category: main optional: false - name: url-normalize - version: 1.4.3 + version: 2.2.1 manager: conda platform: osx-arm64 dependencies: - six: '' + idna: '' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/url-normalize-1.4.3-pyhd8ed1ab_1.conda + six: '' + url: https://conda.anaconda.org/conda-forge/noarch/url-normalize-2.2.1-pyhd8ed1ab_0.conda hash: - md5: c7b1961b139c21381764de4704b6bbfb - sha256: e21242ad845600a6b7f03184c25d7cb8d38e229d196da0345290fc3996e07b70 + md5: 5db19244300bf33e9471a0b13f9b94cb + sha256: cca5bed1abaf9b20f444dd5e140ed3c1ad9e27e6f4085499648c6545581a9d2a category: main optional: false - name: urllib3 - version: 2.2.2 + version: 2.5.0 manager: conda platform: linux-64 dependencies: brotli-python: '>=1.0.9' + h2: '>=4,<5' pysocks: '>=1.5.6,<2.0,!=1.5.7' - python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.2-pyhd8ed1ab_0.conda + python: '>=3.9' + zstandard: '>=0.18.0' + url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.5.0-pyhd8ed1ab_0.conda hash: - md5: 92cdb6fe54b78739ad70637e4f0deb07 - sha256: 8cd972048f297b8e0601158ce352f5ca9510dda9f2706a46560220aa58b9f038 + md5: 436c165519e140cb08d246a4472a9d6a + sha256: 4fb9789154bd666ca74e428d973df81087a697dbb987775bc3198d2215f240f8 category: main optional: false - name: urllib3 - version: 2.2.2 + version: 2.5.0 manager: conda platform: osx-64 dependencies: - python: '>=3.8' brotli-python: '>=1.0.9' + h2: '>=4,<5' pysocks: '>=1.5.6,<2.0,!=1.5.7' - url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.2-pyhd8ed1ab_0.conda + python: '>=3.9' + zstandard: '>=0.18.0' + url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.5.0-pyhd8ed1ab_0.conda hash: - md5: 92cdb6fe54b78739ad70637e4f0deb07 - sha256: 8cd972048f297b8e0601158ce352f5ca9510dda9f2706a46560220aa58b9f038 + md5: 436c165519e140cb08d246a4472a9d6a + sha256: 4fb9789154bd666ca74e428d973df81087a697dbb987775bc3198d2215f240f8 category: main optional: false - name: urllib3 - version: 2.2.2 + version: 2.5.0 manager: conda platform: osx-arm64 dependencies: - python: '>=3.8' brotli-python: '>=1.0.9' + h2: '>=4,<5' pysocks: '>=1.5.6,<2.0,!=1.5.7' - url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.2-pyhd8ed1ab_0.conda + python: '>=3.9' + zstandard: '>=0.18.0' + url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.5.0-pyhd8ed1ab_0.conda hash: - md5: 92cdb6fe54b78739ad70637e4f0deb07 - sha256: 8cd972048f297b8e0601158ce352f5ca9510dda9f2706a46560220aa58b9f038 + md5: 436c165519e140cb08d246a4472a9d6a + sha256: 4fb9789154bd666ca74e428d973df81087a697dbb987775bc3198d2215f240f8 category: main optional: false - name: wayland - version: 1.23.1 + version: 1.24.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libexpat: '>=2.6.2,<3.0a0' - libffi: '>=3.4,<4.0a0' - libgcc-ng: '>=13' - libstdcxx-ng: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/wayland-1.23.1-h3e06ad9_0.conda + libexpat: '>=2.7.0,<3.0a0' + libffi: '>=3.4.6,<3.5.0a0' + libgcc: '>=13' + libstdcxx: '>=13' + url: https://conda.anaconda.org/conda-forge/linux-64/wayland-1.24.0-h3e06ad9_0.conda hash: - md5: 0a732427643ae5e0486a727927791da1 - sha256: 0884b2023a32d2620192cf2e2fc6784b8d1e31cf9f137e49e00802d4daf7d1c1 + md5: 0f2ca7906bf166247d1d760c3422cb8a + sha256: ba673427dcd480cfa9bbc262fd04a9b1ad2ed59a159bd8f7e750d4c52282f34c category: main optional: false - name: wcwidth @@ -18789,8 +19019,8 @@ package: manager: conda platform: osx-64 dependencies: - python: '>=3.9' legacy-cgi: '>=2.6' + python: '>=3.9' url: https://conda.anaconda.org/conda-forge/noarch/webob-1.8.9-pyhd8ed1ab_1.conda hash: md5: 293718ddac83a0fbc0f2193ff77d1e1c @@ -18802,8 +19032,8 @@ package: manager: conda platform: osx-arm64 dependencies: - python: '>=3.9' legacy-cgi: '>=2.6' + python: '>=3.9' url: https://conda.anaconda.org/conda-forge/noarch/webob-1.8.9-pyhd8ed1ab_1.conda hash: md5: 293718ddac83a0fbc0f2193ff77d1e1c @@ -18847,91 +19077,136 @@ package: category: main optional: false - name: wrapt - version: 1.17.2 + version: 1.17.3 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' + libgcc: '>=14' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/linux-64/wrapt-1.17.2-py312h66e93f0_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/wrapt-1.17.3-py312h4c3975b_1.conda hash: - md5: 669e63af87710f8d52fdec9d4d63b404 - sha256: ed3a1700ecc5d38c7e7dc7d2802df1bc1da6ba3d6f6017448b8ded0affb4ae00 + md5: 8af3faf88325836e46c6cb79828e058c + sha256: 8320d5af37eb8933e5d129884ea013b2687e75b08aff5216193df3378eaea92f category: main optional: false - name: wrapt - version: 1.17.2 + version: 1.17.3 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-64/wrapt-1.17.2-py312h01d7ebd_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/wrapt-1.17.3-py312h2f459f6_1.conda hash: - md5: 6a860c98c6aea375eea574693a98d409 - sha256: 476ea998d7279d9f71ff7b2e30408e69e5a0b921090c07a124f3f52ff7d3424b + md5: a92e23c22f481e7c8bc5d2dc551c101d + sha256: df1430736e2b8ecfb559b7240478517c71d85697dee753628ef9ead84c3d1e52 category: main optional: false - name: wrapt - version: 1.17.2 + version: 1.17.3 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-arm64/wrapt-1.17.2-py312hea69d52_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/wrapt-1.17.3-py312h163523d_1.conda hash: - md5: e49608c832fcf438f70cbcae09c3adc5 - sha256: 6a3e68b57de29802e8703d1791dcacb7613bfdc17bbb087c6b2ea2796e6893ef + md5: 5658c0733acef1e0e2701aa1ebaa1f14 + sha256: b2be8bbfc1d7d63cd82f23c6aab0845b5dbbd835378b3c4e61b80b7d81ae9656 category: main optional: false - name: xarray - version: 2025.1.2 + version: 2025.8.0 manager: conda platform: linux-64 dependencies: - numpy: '>=1.24' - packaging: '>=23.2' - pandas: '>=2.1' - python: '>=3.10' - url: https://conda.anaconda.org/conda-forge/noarch/xarray-2025.1.2-pyhd8ed1ab_0.conda + numpy: '>=1.26' + packaging: '>=24.1' + pandas: '>=2.2' + python: '>=3.11' + url: https://conda.anaconda.org/conda-forge/noarch/xarray-2025.8.0-pyhd8ed1ab_0.conda hash: - md5: b8d9af89c48fa3359f05f3324809fcde - sha256: 0f59c2718573770b01d849e05a56a7fe1461f55bf7525c4df5552079c5c03427 + md5: a7b1b2ffdbf18922945874ccbe1420aa + sha256: 91c476aab9f878a243b4edb31a3cf6c7bb4e873ff537315f475769b890bbbb29 category: main optional: false - name: xarray - version: 2025.1.2 + version: 2025.8.0 manager: conda platform: osx-64 dependencies: - python: '>=3.10' - numpy: '>=1.24' - packaging: '>=23.2' - pandas: '>=2.1' - url: https://conda.anaconda.org/conda-forge/noarch/xarray-2025.1.2-pyhd8ed1ab_0.conda + numpy: '>=1.26' + packaging: '>=24.1' + pandas: '>=2.2' + python: '>=3.11' + url: https://conda.anaconda.org/conda-forge/noarch/xarray-2025.8.0-pyhd8ed1ab_0.conda hash: - md5: b8d9af89c48fa3359f05f3324809fcde - sha256: 0f59c2718573770b01d849e05a56a7fe1461f55bf7525c4df5552079c5c03427 + md5: a7b1b2ffdbf18922945874ccbe1420aa + sha256: 91c476aab9f878a243b4edb31a3cf6c7bb4e873ff537315f475769b890bbbb29 category: main optional: false - name: xarray - version: 2025.1.2 + version: 2025.8.0 manager: conda platform: osx-arm64 dependencies: - python: '>=3.10' - numpy: '>=1.24' - packaging: '>=23.2' - pandas: '>=2.1' - url: https://conda.anaconda.org/conda-forge/noarch/xarray-2025.1.2-pyhd8ed1ab_0.conda + numpy: '>=1.26' + packaging: '>=24.1' + pandas: '>=2.2' + python: '>=3.11' + url: https://conda.anaconda.org/conda-forge/noarch/xarray-2025.8.0-pyhd8ed1ab_0.conda + hash: + md5: a7b1b2ffdbf18922945874ccbe1420aa + sha256: 91c476aab9f878a243b4edb31a3cf6c7bb4e873ff537315f475769b890bbbb29 + category: main + optional: false +- name: xarray-einstats + version: 0.9.1 + manager: conda + platform: linux-64 + dependencies: + numpy: '>=1.25' + python: '>=3.11' + scipy: '>=1.11' + xarray: '>=2023.06.0' + url: https://conda.anaconda.org/conda-forge/noarch/xarray-einstats-0.9.1-pyhd8ed1ab_0.conda + hash: + md5: 18860b32ac96f7e9d8be1c91eb601462 + sha256: 3fefcdb5520c9f7127d67904894cccdc917449a3376f1ccf84127f02ad3aa61b + category: main + optional: false +- name: xarray-einstats + version: 0.9.1 + manager: conda + platform: osx-64 + dependencies: + numpy: '>=1.25' + python: '>=3.11' + scipy: '>=1.11' + xarray: '>=2023.06.0' + url: https://conda.anaconda.org/conda-forge/noarch/xarray-einstats-0.9.1-pyhd8ed1ab_0.conda + hash: + md5: 18860b32ac96f7e9d8be1c91eb601462 + sha256: 3fefcdb5520c9f7127d67904894cccdc917449a3376f1ccf84127f02ad3aa61b + category: main + optional: false +- name: xarray-einstats + version: 0.9.1 + manager: conda + platform: osx-arm64 + dependencies: + numpy: '>=1.25' + python: '>=3.11' + scipy: '>=1.11' + xarray: '>=2023.06.0' + url: https://conda.anaconda.org/conda-forge/noarch/xarray-einstats-0.9.1-pyhd8ed1ab_0.conda hash: - md5: b8d9af89c48fa3359f05f3324809fcde - sha256: 0f59c2718573770b01d849e05a56a7fe1461f55bf7525c4df5552079c5c03427 + md5: 18860b32ac96f7e9d8be1c91eb601462 + sha256: 3fefcdb5520c9f7127d67904894cccdc917449a3376f1ccf84127f02ad3aa61b category: main optional: false - name: xerces-c @@ -18979,7 +19254,7 @@ package: category: main optional: false - name: xesmf - version: 0.8.8 + version: 0.8.10 manager: conda platform: linux-64 dependencies: @@ -18991,138 +19266,137 @@ package: shapely: '' sparse: '>=0.8.0' xarray: '>=0.16.2' - url: https://conda.anaconda.org/conda-forge/noarch/xesmf-0.8.8-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/xesmf-0.8.10-pyhd8ed1ab_0.conda hash: - md5: 3a0254838eeda4b598c18f6b8e0551c5 - sha256: f0f467df9e561ce14c50bbdc6d8c063e62420e4b11da2bb0fc920d747d936836 + md5: 633873a69cdd56334c394f2299943d54 + sha256: 96c0b5dc0707068c6331aa5b78c42d44139a54b5fdd199f3e5ee2108d646b1ff category: main optional: false - name: xesmf - version: 0.8.8 + version: 0.8.10 manager: conda platform: osx-64 dependencies: - shapely: '' - python: '>=3.9' - numpy: '>=1.16' - numba: '>=0.55.2' cf_xarray: '>=0.5.1' - xarray: '>=0.16.2' - sparse: '>=0.8.0' esmpy: '>=8.0.0,!=8.4.0,!=8.4.1,!=8.4.2' - url: https://conda.anaconda.org/conda-forge/noarch/xesmf-0.8.8-pyhd8ed1ab_1.conda + numba: '>=0.55.2' + numpy: '>=1.16' + python: '>=3.9' + shapely: '' + sparse: '>=0.8.0' + xarray: '>=0.16.2' + url: https://conda.anaconda.org/conda-forge/noarch/xesmf-0.8.10-pyhd8ed1ab_0.conda hash: - md5: 3a0254838eeda4b598c18f6b8e0551c5 - sha256: f0f467df9e561ce14c50bbdc6d8c063e62420e4b11da2bb0fc920d747d936836 + md5: 633873a69cdd56334c394f2299943d54 + sha256: 96c0b5dc0707068c6331aa5b78c42d44139a54b5fdd199f3e5ee2108d646b1ff category: main optional: false - name: xesmf - version: 0.8.8 + version: 0.8.10 manager: conda platform: osx-arm64 dependencies: - shapely: '' - python: '>=3.9' - numpy: '>=1.16' - numba: '>=0.55.2' cf_xarray: '>=0.5.1' - xarray: '>=0.16.2' - sparse: '>=0.8.0' esmpy: '>=8.0.0,!=8.4.0,!=8.4.1,!=8.4.2' - url: https://conda.anaconda.org/conda-forge/noarch/xesmf-0.8.8-pyhd8ed1ab_1.conda + numba: '>=0.55.2' + numpy: '>=1.16' + python: '>=3.9' + shapely: '' + sparse: '>=0.8.0' + xarray: '>=0.16.2' + url: https://conda.anaconda.org/conda-forge/noarch/xesmf-0.8.10-pyhd8ed1ab_0.conda hash: - md5: 3a0254838eeda4b598c18f6b8e0551c5 - sha256: f0f467df9e561ce14c50bbdc6d8c063e62420e4b11da2bb0fc920d747d936836 + md5: 633873a69cdd56334c394f2299943d54 + sha256: 96c0b5dc0707068c6331aa5b78c42d44139a54b5fdd199f3e5ee2108d646b1ff category: main optional: false - name: xgboost - version: 2.1.4 + version: 3.0.4 manager: conda platform: linux-64 dependencies: - __cuda: '' - py-xgboost: 2.1.4 - python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/xgboost-2.1.4-cuda118_pyh7984362_0.conda + py-xgboost: 3.0.4 + python: '>=3.10' + url: https://conda.anaconda.org/conda-forge/noarch/xgboost-3.0.4-cpu_pyhb39878e_0.conda hash: - md5: 83e342056953e23c05f5551ce74bc97f - sha256: 5af738c359cfc37c40953b2bd04480b6a63a9c667ce5b2fa300c70e52366ad8d + md5: 00d0b030570269458c06b358abc3f984 + sha256: 476051931648fa853bf56405c4e4ab47a4f6747ad7ba869c130cd6b64e00c96c category: main optional: false - name: xgboost - version: 2.1.4 + version: 3.0.4 manager: conda platform: osx-64 dependencies: - python: '>=3.9' - py-xgboost: 2.1.4 - url: https://conda.anaconda.org/conda-forge/noarch/xgboost-2.1.4-cpu_pyhc1a9e11_0.conda + py-xgboost: 3.0.4 + python: '>=3.10' + url: https://conda.anaconda.org/conda-forge/noarch/xgboost-3.0.4-cpu_pyhb39878e_0.conda hash: - md5: 11dc2ad115d42657f6b62a74835f177d - sha256: 9aea3cc9e2bdaf42866ec8d4c40c1713f41028514837e3f86a27a8bf10c687a7 + md5: 00d0b030570269458c06b358abc3f984 + sha256: 476051931648fa853bf56405c4e4ab47a4f6747ad7ba869c130cd6b64e00c96c category: main optional: false - name: xgboost - version: 2.1.4 + version: 3.0.4 manager: conda platform: osx-arm64 dependencies: - python: '>=3.9' - py-xgboost: 2.1.4 - url: https://conda.anaconda.org/conda-forge/noarch/xgboost-2.1.4-cpu_pyhc1a9e11_0.conda + py-xgboost: 3.0.4 + python: '>=3.10' + url: https://conda.anaconda.org/conda-forge/noarch/xgboost-3.0.4-cpu_pyhb39878e_0.conda hash: - md5: 11dc2ad115d42657f6b62a74835f177d - sha256: 9aea3cc9e2bdaf42866ec8d4c40c1713f41028514837e3f86a27a8bf10c687a7 + md5: 00d0b030570269458c06b358abc3f984 + sha256: 476051931648fa853bf56405c4e4ab47a4f6747ad7ba869c130cd6b64e00c96c category: main optional: false - name: xkeyboard-config - version: '2.43' + version: '2.45' manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - xorg-libx11: '>=1.8.10,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/xkeyboard-config-2.43-hb9d3cd8_0.conda + xorg-libx11: '>=1.8.12,<2.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/xkeyboard-config-2.45-hb9d3cd8_0.conda hash: - md5: f725c7425d6d7c15e31f3b99a88ea02f - sha256: 0d89b5873515a1f05d311f37ea4e087bbccc0418afa38f2f6189e97280db3179 + md5: 397a013c2dc5145a70737871aaa87e98 + sha256: a5d4af601f71805ec67403406e147c48d6bad7aaeae92b0622b7e2396842d3fe category: main optional: false - name: xlsxwriter - version: 3.2.2 + version: 3.2.5 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/xlsxwriter-3.2.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/xlsxwriter-3.2.5-pyhd8ed1ab_0.conda hash: - md5: b1107890f5dcc5060f137eedf461bc1e - sha256: f49c4a9c645c5da2c7591a294e02b321bb4a4b1cdd224e7e59018a2867112c52 + md5: e1a4f5c954b3e157fe9575b512c54193 + sha256: 84e4bc185e61a9b76b4c4de4bdf3f4c31c8753a25fd98080e9c68768642a3958 category: main optional: false - name: xlsxwriter - version: 3.2.2 + version: 3.2.5 manager: conda platform: osx-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/xlsxwriter-3.2.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/xlsxwriter-3.2.5-pyhd8ed1ab_0.conda hash: - md5: b1107890f5dcc5060f137eedf461bc1e - sha256: f49c4a9c645c5da2c7591a294e02b321bb4a4b1cdd224e7e59018a2867112c52 + md5: e1a4f5c954b3e157fe9575b512c54193 + sha256: 84e4bc185e61a9b76b4c4de4bdf3f4c31c8753a25fd98080e9c68768642a3958 category: main optional: false - name: xlsxwriter - version: 3.2.2 + version: 3.2.5 manager: conda platform: osx-arm64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/xlsxwriter-3.2.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/xlsxwriter-3.2.5-pyhd8ed1ab_0.conda hash: - md5: b1107890f5dcc5060f137eedf461bc1e - sha256: f49c4a9c645c5da2c7591a294e02b321bb4a4b1cdd224e7e59018a2867112c52 + md5: e1a4f5c954b3e157fe9575b512c54193 + sha256: 84e4bc185e61a9b76b4c4de4bdf3f4c31c8753a25fd98080e9c68768642a3958 category: main optional: false - name: xorg-libice @@ -19139,7 +19413,7 @@ package: category: main optional: false - name: xorg-libsm - version: 1.2.5 + version: 1.2.6 manager: conda platform: linux-64 dependencies: @@ -19147,24 +19421,24 @@ package: libgcc: '>=13' libuuid: '>=2.38.1,<3.0a0' xorg-libice: '>=1.1.2,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libsm-1.2.5-he73a12e_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libsm-1.2.6-he73a12e_0.conda hash: - md5: 4c3e9fab69804ec6077697922d70c6e2 - sha256: 760f43df6c2ce8cbbbcb8f2f3b7fc0f306716c011e28d1d340f3dfa8ccf29185 + md5: 1c74ff8c35dcadf952a16f752ca5aa49 + sha256: 277841c43a39f738927145930ff963c5ce4c4dacf66637a3d95d802a64173250 category: main optional: false - name: xorg-libx11 - version: 1.8.11 + version: 1.8.12 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' libxcb: '>=1.17.0,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.11-h4f16b4b_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.12-h4f16b4b_0.conda hash: - md5: b6eb6d0cb323179af168df8fe16fb0a1 - sha256: a0e7fca9e341dc2455b20cd320fc1655e011f7f5f28367ecf8617cccd4bb2821 + md5: db038ce880f100acc74dba10302b5630 + sha256: 51909270b1a6c5474ed3978628b341b4d4472cd22610e5f22b506855a5e20f67 category: main optional: false - name: xorg-libxau @@ -19394,21 +19668,6 @@ package: sha256: 752fdaac5d58ed863bbf685bb6f98092fe1a488ea8ebb7ed7b606ccfce08637a category: main optional: false -- name: xorg-libxxf86vm - version: 1.1.6 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - xorg-libx11: '>=1.8.10,<2.0a0' - xorg-libxext: '>=1.3.6,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxxf86vm-1.1.6-hb9d3cd8_0.conda - hash: - md5: 5efa5fa6243a622445fdfd72aee15efa - sha256: 8a4e2ee642f884e6b78c20c0892b85dd9b2a6e64a6044e903297e616be6ca35b - category: main - optional: false - name: xxhash version: 0.8.3 manager: conda @@ -19416,10 +19675,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/xxhash-0.8.3-hb9d3cd8_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/xxhash-0.8.3-hb47aa4a_0.conda hash: - md5: 2ef1822d8168ed5d79ab1bf01088419a - sha256: 3bbc35b9ee44ffea1de441f906ba05139873a28325f8a8ed152e17af30e62232 + md5: 607e13a8caac17f9a664bcab5302ce06 + sha256: 08e12f140b1af540a6de03dd49173c0e5ae4ebc563cabdd35ead0679835baf6f category: main optional: false - name: xxhash @@ -19428,10 +19687,10 @@ package: platform: osx-64 dependencies: __osx: '>=10.13' - url: https://conda.anaconda.org/conda-forge/osx-64/xxhash-0.8.3-h6e16a3a_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/xxhash-0.8.3-h13e91ac_0.conda hash: - md5: db19c6e315d7bd00ff15a2aba475bb7c - sha256: 5d9a591ba47383d93f52a6098197a073c63b872a7a9a0409b406ceaa2825e354 + md5: 3e1f33316570709dac5d04bc4ad1b6d0 + sha256: 66745c92f34e20e559e1004ce0f2440ff8b511589a1ac16ebf1aca7e310003da category: main optional: false - name: xxhash @@ -19440,175 +19699,175 @@ package: platform: osx-arm64 dependencies: __osx: '>=11.0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/xxhash-0.8.3-h5505292_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/xxhash-0.8.3-haa4e116_0.conda hash: - md5: 92a98c1bbae4729dfd0216ca22c21858 - sha256: 43573d504e7edc4b876a9058dc316aa9851ced1d433c2b569d583c2db22c76e2 + md5: 54a24201d62fc17c73523e4b86f71ae8 + sha256: 5e2e58fbaa00eeab721a86cb163a54023b3b260e91293dde7e5334962c5c96e3 category: main optional: false - name: xyzservices - version: 2025.1.0 + version: 2025.4.0 manager: conda platform: linux-64 dependencies: python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/xyzservices-2025.1.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/xyzservices-2025.4.0-pyhd8ed1ab_0.conda hash: - md5: fdf07e281a9e5e10fc75b2dd444136e9 - sha256: 9978c22319e85026d5a4134944f73bac820c948ca6b6c32af6b6985b5221cd8a + md5: 5663fa346821cd06dc1ece2c2600be2c + sha256: ac6d4d4133b1e0f69075158cdf00fccad20e29fc6cc45faa480cec37a84af6ae category: main optional: false - name: xyzservices - version: 2025.1.0 + version: 2025.4.0 manager: conda platform: osx-64 dependencies: python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/xyzservices-2025.1.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/xyzservices-2025.4.0-pyhd8ed1ab_0.conda hash: - md5: fdf07e281a9e5e10fc75b2dd444136e9 - sha256: 9978c22319e85026d5a4134944f73bac820c948ca6b6c32af6b6985b5221cd8a + md5: 5663fa346821cd06dc1ece2c2600be2c + sha256: ac6d4d4133b1e0f69075158cdf00fccad20e29fc6cc45faa480cec37a84af6ae category: main optional: false - name: xyzservices - version: 2025.1.0 + version: 2025.4.0 manager: conda platform: osx-arm64 dependencies: python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/xyzservices-2025.1.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/xyzservices-2025.4.0-pyhd8ed1ab_0.conda hash: - md5: fdf07e281a9e5e10fc75b2dd444136e9 - sha256: 9978c22319e85026d5a4134944f73bac820c948ca6b6c32af6b6985b5221cd8a + md5: 5663fa346821cd06dc1ece2c2600be2c + sha256: ac6d4d4133b1e0f69075158cdf00fccad20e29fc6cc45faa480cec37a84af6ae category: main optional: false - name: xz - version: 5.6.4 + version: 5.8.1 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - liblzma: 5.6.4 - liblzma-devel: 5.6.4 - xz-gpl-tools: 5.6.4 - xz-tools: 5.6.4 - url: https://conda.anaconda.org/conda-forge/linux-64/xz-5.6.4-hbcc6ac9_0.conda + liblzma: 5.8.1 + liblzma-devel: 5.8.1 + xz-gpl-tools: 5.8.1 + xz-tools: 5.8.1 + url: https://conda.anaconda.org/conda-forge/linux-64/xz-5.8.1-hbcc6ac9_2.conda hash: - md5: bb511c87804cf7220246a3a6efc45c22 - sha256: 91fc251034fa5199919680aa50299296d89da54b2d066fb6e6a60461c17c0c4a + md5: 68eae977d7d1196d32b636a026dc015d + sha256: 802725371682ea06053971db5b4fb7fbbcaee9cb1804ec688f55e51d74660617 category: main optional: false - name: xz - version: 5.6.4 + version: 5.8.1 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' - liblzma: 5.6.4 - liblzma-devel: 5.6.4 - xz-gpl-tools: 5.6.4 - xz-tools: 5.6.4 - url: https://conda.anaconda.org/conda-forge/osx-64/xz-5.6.4-h357f2ed_0.conda + liblzma: 5.8.1 + liblzma-devel: 5.8.1 + xz-gpl-tools: 5.8.1 + xz-tools: 5.8.1 + url: https://conda.anaconda.org/conda-forge/osx-64/xz-5.8.1-h357f2ed_2.conda hash: - md5: 702db4b35cffa4f94b94414066ffbb2b - sha256: 6412811e1592b530e84ea5030dedd7088fbe3258fdad9e60253d681b5be367a2 + md5: 7eee908c7df8478c1f35b28efa2e42b1 + sha256: 89248de6c9417522b6fec011dc26b81c25af731a31ba91e668f72f1b9aab05d7 category: main optional: false - name: xz - version: 5.6.4 + version: 5.8.1 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' - liblzma: 5.6.4 - liblzma-devel: 5.6.4 - xz-gpl-tools: 5.6.4 - xz-tools: 5.6.4 - url: https://conda.anaconda.org/conda-forge/osx-arm64/xz-5.6.4-h9a6d368_0.conda + liblzma: 5.8.1 + liblzma-devel: 5.8.1 + xz-gpl-tools: 5.8.1 + xz-tools: 5.8.1 + url: https://conda.anaconda.org/conda-forge/osx-arm64/xz-5.8.1-h9a6d368_2.conda hash: - md5: b6e676c2c7fde19f56e052acb6acc540 - sha256: 0ca773e9d3af963414ac9d78c699c5048902bd336fbc989480c5e8a297cfcd10 + md5: 39435c82e5a007ef64cbb153ecc40cfd + sha256: afb747cf017b67cc31d54c6e6c4bd1b1e179fe487a3d23a856232ed7fd0b099b category: main optional: false - name: xz-gpl-tools - version: 5.6.4 + version: 5.8.1 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - liblzma: 5.6.4 - url: https://conda.anaconda.org/conda-forge/linux-64/xz-gpl-tools-5.6.4-hbcc6ac9_0.conda + liblzma: 5.8.1 + url: https://conda.anaconda.org/conda-forge/linux-64/xz-gpl-tools-5.8.1-hbcc6ac9_2.conda hash: - md5: 246840b451f7a66bd68869e56b066dd5 - sha256: 300fc4e5993a36c979e61b1a38d00f0c23c0c56d5989be537cbc7bd8658254ed + md5: bf627c16aa26231720af037a2709ab09 + sha256: 840838dca829ec53f1160f3fca6dbfc43f2388b85f15d3e867e69109b168b87b category: main optional: false - name: xz-gpl-tools - version: 5.6.4 + version: 5.8.1 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' - liblzma: 5.6.4 - url: https://conda.anaconda.org/conda-forge/osx-64/xz-gpl-tools-5.6.4-h357f2ed_0.conda + liblzma: 5.8.1 + url: https://conda.anaconda.org/conda-forge/osx-64/xz-gpl-tools-5.8.1-h357f2ed_2.conda hash: - md5: bbe2c5315d02654eb195bdf012bad66c - sha256: 57430768c0f26413dadec7fa4ac203984372a67e906a271f68777d1ad0085d20 + md5: d4044359fad6af47224e9ef483118378 + sha256: 5cdadfff31de7f50d1b2f919dd80697c0a08d90f8d6fb89f00c93751ec135c3c category: main optional: false - name: xz-gpl-tools - version: 5.6.4 + version: 5.8.1 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' - liblzma: 5.6.4 - url: https://conda.anaconda.org/conda-forge/osx-arm64/xz-gpl-tools-5.6.4-h9a6d368_0.conda + liblzma: 5.8.1 + url: https://conda.anaconda.org/conda-forge/osx-arm64/xz-gpl-tools-5.8.1-h9a6d368_2.conda hash: - md5: a2580f5af9e67d0e44a97c015eea94d3 - sha256: a380a32a392df8e9c03399197d3e3c6da1b98873b8733b8a9e22d3689a775471 + md5: 09b1442c1d49ac7c5f758c44695e77d1 + sha256: a0790cfb48d240e7b655b0d797a00040219cf39e3ee38e2104e548515df4f9c2 category: main optional: false - name: xz-tools - version: 5.6.4 + version: 5.8.1 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - liblzma: 5.6.4 - url: https://conda.anaconda.org/conda-forge/linux-64/xz-tools-5.6.4-hb9d3cd8_0.conda + liblzma: 5.8.1 + url: https://conda.anaconda.org/conda-forge/linux-64/xz-tools-5.8.1-hb9d3cd8_2.conda hash: - md5: a098f9f949af52610fdceb8e35b57513 - sha256: 57506a312d8cfbee98217fb382822bd49794ea6318dd4e0413a0d588dc6f4f69 + md5: 1bad2995c8f1c8075c6c331bf96e46fb + sha256: 58034f3fca491075c14e61568ad8b25de00cb3ae479de3e69be6d7ee5d3ace28 category: main optional: false - name: xz-tools - version: 5.6.4 + version: 5.8.1 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' - liblzma: 5.6.4 - url: https://conda.anaconda.org/conda-forge/osx-64/xz-tools-5.6.4-hd471939_0.conda + liblzma: 5.8.1 + url: https://conda.anaconda.org/conda-forge/osx-64/xz-tools-5.8.1-hd471939_2.conda hash: - md5: 479783497192d1ad6671cbd0080f6dcb - sha256: 5361cadd518a24a19b009cfea1c113bea979b040858a15bbbd3a58c4d4f9774a + md5: 349148960ad74aece88028f2b5c62c51 + sha256: 3b1d8958f8dceaa4442100d5326b2ec9bcc2e8d7ee55345bf7101dc362fb9868 category: main optional: false - name: xz-tools - version: 5.6.4 + version: 5.8.1 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' - liblzma: 5.6.4 - url: https://conda.anaconda.org/conda-forge/osx-arm64/xz-tools-5.6.4-h39f12f2_0.conda + liblzma: 5.8.1 + url: https://conda.anaconda.org/conda-forge/osx-arm64/xz-tools-5.8.1-h39f12f2_2.conda hash: - md5: e0ecdb9bfea05d0a763453071e375fc6 - sha256: 4f18cc820f63ad3783c38763eb84132db00940d3291c0d03dc66ec8582e0cf84 + md5: 37996935aa33138fca43e4b4563b6a28 + sha256: 9d1232705e3d175f600dc8e344af9182d0341cdaa73d25330591a28532951063 category: main optional: false - name: yamale @@ -19629,8 +19888,8 @@ package: manager: conda platform: osx-64 dependencies: - pyyaml: '' python: '>=3.9' + pyyaml: '' url: https://conda.anaconda.org/conda-forge/noarch/yamale-5.3.0-pyhd8ed1ab_0.conda hash: md5: d4b5f3a50decd28cd747f4b5f7aea33f @@ -19642,8 +19901,8 @@ package: manager: conda platform: osx-arm64 dependencies: - pyyaml: '' python: '>=3.9' + pyyaml: '' url: https://conda.anaconda.org/conda-forge/noarch/yamale-5.3.0-pyhd8ed1ab_0.conda hash: md5: d4b5f3a50decd28cd747f4b5f7aea33f @@ -19655,37 +19914,40 @@ package: manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=9.4.0' - url: https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2 + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=14' + url: https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h280c20c_3.conda hash: - md5: 4cb3ad778ec2d5a7acbdf254eb1c42ae - sha256: a4e34c710eeb26945bdbdaba82d3d74f60a78f54a874ec10d373811a5d217535 + md5: a77f85f77be52ff59391544bfe73390a + sha256: 6d9ea2f731e284e9316d95fa61869fe7bbba33df7929f82693c121022810f4ad category: main optional: false - name: yaml version: 0.2.5 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/yaml-0.2.5-h0d85af4_2.tar.bz2 + dependencies: + __osx: '>=10.13' + url: https://conda.anaconda.org/conda-forge/osx-64/yaml-0.2.5-h4132b18_3.conda hash: - md5: d7e08fcf8259d742156188e8762b4d20 - sha256: 5301417e2c8dea45b401ffee8df3957d2447d4ce80c83c5ff151fc6bfe1c4148 + md5: a645bb90997d3fc2aea0adf6517059bd + sha256: a335161bfa57b64e6794c3c354e7d49449b28b8d8a7c4ed02bf04c3f009953f9 category: main optional: false - name: yaml version: 0.2.5 manager: conda platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/yaml-0.2.5-h3422bc3_2.tar.bz2 + dependencies: + __osx: '>=11.0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/yaml-0.2.5-h925e9cb_3.conda hash: - md5: 4bb3f014845110883a3c5ee811fd84b4 - sha256: 93181a04ba8cfecfdfb162fc958436d868cc37db504c58078eab4c1a3e57fbb7 + md5: 78a0fe9e9c50d2c381e8ee47e3ea437d + sha256: b03433b13d89f5567e828ea9f1a7d5c5d697bf374c28a4168d71e9464f5dafac category: main optional: false - name: yarl - version: 1.18.3 + version: 1.20.1 manager: conda platform: linux-64 dependencies: @@ -19696,14 +19958,14 @@ package: propcache: '>=0.2.1' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/linux-64/yarl-1.18.3-py312h178313f_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/yarl-1.20.1-py312h178313f_0.conda hash: - md5: 6822c49f294d4355f19d314b8b6063d8 - sha256: 6b054c93dd19fd7544af51b41a8eacca2ab62271f6c0c5a2a0cffe80dc37a0ce + md5: 3b3fa80c71d6a8d0380e9e790f5a4a8a + sha256: f5c2c572423fac9ea74512f96a7c002c81fd2eb260608cfa1edfaeda4d81582e category: main optional: false - name: yarl - version: 1.18.3 + version: 1.20.1 manager: conda platform: osx-64 dependencies: @@ -19713,14 +19975,14 @@ package: propcache: '>=0.2.1' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-64/yarl-1.18.3-py312h3520af0_1.conda + url: https://conda.anaconda.org/conda-forge/osx-64/yarl-1.20.1-py312h3520af0_0.conda hash: - md5: c9c69a722e1cb1250608ed6c58bd2215 - sha256: 0aa40f238e282d8b0a549732722ec655b752ff1bf6c0e0b5248aba16cc57a527 + md5: 889fa353589442fb6eef00ae03285cae + sha256: 91011952c0e020ab56c012d9f7bfc245c348e9bf1669c30cc523736c8ec4fddd category: main optional: false - name: yarl - version: 1.18.3 + version: 1.20.1 manager: conda platform: osx-arm64 dependencies: @@ -19730,64 +19992,64 @@ package: propcache: '>=0.2.1' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-arm64/yarl-1.18.3-py312h998013c_1.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/yarl-1.20.1-py312h998013c_0.conda hash: - md5: 092d3b40acc67c470f379049be343a7a - sha256: 48821d23567ca0f853eee6f7812c74392867e123798b5b3c44f58758d8eb580e + md5: a2cba8a1c0e3fda1503437cc3f0c1bd6 + sha256: 3fb5693a501a950ef15a693a08577beee0165521bd9677b0e1380c36b6b6bd3a category: main optional: false - name: zarr - version: 3.0.4 + version: 3.1.2 manager: conda platform: linux-64 dependencies: crc32c: '' donfig: '>=0.8' numcodecs: '>=0.14' - numpy: '>=1.25' + numpy: '>=1.26' packaging: '>=22.0' - python: '>=3.11' + python: '' typing_extensions: '>=4.9' - url: https://conda.anaconda.org/conda-forge/noarch/zarr-3.0.4-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/zarr-3.1.2-pyhcf101f3_0.conda hash: - md5: 53d9e51678e67722cdd6b824e543048e - sha256: b2901d6ed8286123285a642ba191c0435c7c7e300a6c081398b3194438365fed + md5: 2bdb3950ea64a365bfe9e6414e748a9b + sha256: 1f8d84067a6814961326dc444be037b2b4aacde55c3344c765d4b3460b9356ae category: main optional: false - name: zarr - version: 3.0.4 + version: 3.1.2 manager: conda platform: osx-64 dependencies: crc32c: '' - python: '>=3.11' - packaging: '>=22.0' - numpy: '>=1.25' - typing_extensions: '>=4.9' donfig: '>=0.8' numcodecs: '>=0.14' - url: https://conda.anaconda.org/conda-forge/noarch/zarr-3.0.4-pyhd8ed1ab_0.conda + numpy: '>=1.26' + packaging: '>=22.0' + python: '>=3.11' + typing_extensions: '>=4.9' + url: https://conda.anaconda.org/conda-forge/noarch/zarr-3.1.2-pyhcf101f3_0.conda hash: - md5: 53d9e51678e67722cdd6b824e543048e - sha256: b2901d6ed8286123285a642ba191c0435c7c7e300a6c081398b3194438365fed + md5: 2bdb3950ea64a365bfe9e6414e748a9b + sha256: 1f8d84067a6814961326dc444be037b2b4aacde55c3344c765d4b3460b9356ae category: main optional: false - name: zarr - version: 3.0.4 + version: 3.1.2 manager: conda platform: osx-arm64 dependencies: crc32c: '' - python: '>=3.11' - packaging: '>=22.0' - numpy: '>=1.25' - typing_extensions: '>=4.9' donfig: '>=0.8' numcodecs: '>=0.14' - url: https://conda.anaconda.org/conda-forge/noarch/zarr-3.0.4-pyhd8ed1ab_0.conda + numpy: '>=1.26' + packaging: '>=22.0' + python: '>=3.11' + typing_extensions: '>=4.9' + url: https://conda.anaconda.org/conda-forge/noarch/zarr-3.1.2-pyhcf101f3_0.conda hash: - md5: 53d9e51678e67722cdd6b824e543048e - sha256: b2901d6ed8286123285a642ba191c0435c7c7e300a6c081398b3194438365fed + md5: 2bdb3950ea64a365bfe9e6414e748a9b + sha256: 1f8d84067a6814961326dc444be037b2b4aacde55c3344c765d4b3460b9356ae category: main optional: false - name: zfp @@ -19797,12 +20059,12 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' _openmp_mutex: '>=4.5' - libgcc: '>=13' - libstdcxx: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/zfp-1.0.1-h5888daf_2.conda + libgcc: '>=14' + libstdcxx: '>=14' + url: https://conda.anaconda.org/conda-forge/linux-64/zfp-1.0.1-h909a3a2_3.conda hash: - md5: e0409515c467b87176b070bff5d9442e - sha256: 0dfafc75c72f308c0200836f2b973766cdcb8741b1ab61e0b462a34dd6b6ad20 + md5: 03b04e4effefa41aee638f8ba30a6e78 + sha256: d9051184638fe0c24985b31b29b434ad52c77923e4802c7580da3a60ad9f167b category: main optional: false - name: zfp @@ -19811,12 +20073,12 @@ package: platform: osx-64 dependencies: __osx: '>=10.13' - libcxx: '>=17' - llvm-openmp: '>=17.0.6' - url: https://conda.anaconda.org/conda-forge/osx-64/zfp-1.0.1-h469392a_2.conda + libcxx: '>=19' + llvm-openmp: '>=19.1.7' + url: https://conda.anaconda.org/conda-forge/osx-64/zfp-1.0.1-h326e263_3.conda hash: - md5: 2c03b469587f7a2222e4879ccca3dcb4 - sha256: aa7cd8353640b4187dcc1e322b79f6b5c8450a036761208fb68a44f592337b6b + md5: f1d5bfda0ee685244c3e3fb27ba898c9 + sha256: 988cda2a248580176e9a8bf075cd8ca421b293ab0bfe32d1add8d1b369505344 category: main optional: false - name: zfp @@ -19825,12 +20087,12 @@ package: platform: osx-arm64 dependencies: __osx: '>=11.0' - libcxx: '>=17' - llvm-openmp: '>=17.0.6' - url: https://conda.anaconda.org/conda-forge/osx-arm64/zfp-1.0.1-h1c5d8ea_2.conda + libcxx: '>=19' + llvm-openmp: '>=19.1.7' + url: https://conda.anaconda.org/conda-forge/osx-arm64/zfp-1.0.1-hfd287c0_3.conda hash: - md5: 8066eb9d5acdbaf825cf8cf689517a33 - sha256: 814af9f9429cca403aa308cef46455e745284fb1ecbad83a5722bfc58db8b11a + md5: 5cf85324979643e4d7057bdac9ede019 + sha256: 170837ffa29268dad8bb8495eb0fe4e09a941af4ab48a84aff682b0b1f84b540 category: main optional: false - name: zict @@ -19870,39 +20132,39 @@ package: category: main optional: false - name: zipp - version: 3.21.0 + version: 3.23.0 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.23.0-pyhd8ed1ab_0.conda hash: - md5: 0c3cc595284c5e8f0f9900a9b228a332 - sha256: 567c04f124525c97a096b65769834b7acb047db24b15a56888a322bf3966c3e1 + md5: df5e78d904988eb55042c0c97446079f + sha256: 7560d21e1b021fd40b65bfb72f67945a3fcb83d78ad7ccf37b8b3165ec3b68ad category: main optional: false - name: zipp - version: 3.21.0 + version: 3.23.0 manager: conda platform: osx-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.23.0-pyhd8ed1ab_0.conda hash: - md5: 0c3cc595284c5e8f0f9900a9b228a332 - sha256: 567c04f124525c97a096b65769834b7acb047db24b15a56888a322bf3966c3e1 + md5: df5e78d904988eb55042c0c97446079f + sha256: 7560d21e1b021fd40b65bfb72f67945a3fcb83d78ad7ccf37b8b3165ec3b68ad category: main optional: false - name: zipp - version: 3.21.0 + version: 3.23.0 manager: conda platform: osx-arm64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.23.0-pyhd8ed1ab_0.conda hash: - md5: 0c3cc595284c5e8f0f9900a9b228a332 - sha256: 567c04f124525c97a096b65769834b7acb047db24b15a56888a322bf3966c3e1 + md5: df5e78d904988eb55042c0c97446079f + sha256: 7560d21e1b021fd40b65bfb72f67945a3fcb83d78ad7ccf37b8b3165ec3b68ad category: main optional: false - name: zlib @@ -19946,43 +20208,92 @@ package: category: main optional: false - name: zlib-ng - version: 2.2.4 + version: 2.2.5 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - libstdcxx: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/zlib-ng-2.2.4-h7955e40_0.conda + libgcc: '>=14' + libstdcxx: '>=14' + url: https://conda.anaconda.org/conda-forge/linux-64/zlib-ng-2.2.5-hde8ca8f_0.conda hash: - md5: c8a816dbf59eb8ba6346a8f10014b302 - sha256: acab8b9165e94393bcd46ed21763877754c8d450772315502504e4a94cd6a873 + md5: 1920c3502e7f6688d650ab81cd3775fd + sha256: 3a8e7798deafd0722b6b5da50c36b7f361a80b30165d600f7760d569a162ff95 category: main optional: false - name: zlib-ng - version: 2.2.4 + version: 2.2.5 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' - libcxx: '>=18' - url: https://conda.anaconda.org/conda-forge/osx-64/zlib-ng-2.2.4-h04d1b7c_0.conda + libcxx: '>=19' + url: https://conda.anaconda.org/conda-forge/osx-64/zlib-ng-2.2.5-he7f0fdc_0.conda hash: - md5: d64ff92dd092ae9647598e32827beef4 - sha256: a6ecd98f6bd4004da8e98631be3f92acfa8666a9bc8e6302dbaad3a6d03705b8 + md5: acdf87296c0cd71e61a740dbcd5b6ff5 + sha256: ed46538570cf655326a4e80f72a7c03185adc493b53ec58371d3ec6d0fa7b5d3 category: main optional: false - name: zlib-ng - version: 2.2.4 + version: 2.2.5 manager: conda platform: osx-arm64 dependencies: __osx: '>=11.0' - libcxx: '>=18' - url: https://conda.anaconda.org/conda-forge/osx-arm64/zlib-ng-2.2.4-h13dfb9a_0.conda + libcxx: '>=19' + url: https://conda.anaconda.org/conda-forge/osx-arm64/zlib-ng-2.2.5-hf787086_0.conda + hash: + md5: fb78d469f8e0f1eb5bbbfd249aeed447 + sha256: 4b4220f03844aaaffa7868023963415e14cddd456f00b8fa78ee4a16fecd1b60 + category: main + optional: false +- name: zstandard + version: 0.24.0 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + cffi: '>=1.11' + libgcc: '>=14' + python: '>=3.12,<3.13.0a0' + python_abi: 3.12.* + zstd: '>=1.5.7,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/zstandard-0.24.0-py312h3fa7853_1.conda + hash: + md5: e14ae4525748c648ba9cc6b6116349b6 + sha256: 0c9a5cd2a38361af58d29351dcaa9b16f45784b885562875ed96be315d025439 + category: main + optional: false +- name: zstandard + version: 0.24.0 + manager: conda + platform: osx-64 + dependencies: + __osx: '>=10.13' + cffi: '>=1.11' + python: '>=3.12,<3.13.0a0' + python_abi: 3.12.* + zstd: '>=1.5.7,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/zstandard-0.24.0-py312hcfdedb4_1.conda + hash: + md5: c1653a4efc423de95c9326f55829197e + sha256: ae6d18b775162cfbe2f7034b4375179005e91f2958ca1df71d53e419a3a4a32b + category: main + optional: false +- name: zstandard + version: 0.24.0 + manager: conda + platform: osx-arm64 + dependencies: + __osx: '>=11.0' + cffi: '>=1.11' + python: '>=3.12,<3.13.0a0' + python_abi: 3.12.* + zstd: '>=1.5.7,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/zstandard-0.24.0-py312h26de6b3_1.conda hash: - md5: 73ac419d43520743df271e1e7d5eb012 - sha256: 00d2321c74825e3c33cf95ed9d3322013fb253222d204d388f0c7d69cb69cb3f + md5: 1c7500a891878a61a136605b711af46b + sha256: d84e71855f8f0168e0e6f2b9c8eefc36d4df5b95f6f3e85ae85bd3c3e5132fc1 category: main optional: false - name: zstd @@ -19994,10 +20305,10 @@ package: libgcc: '>=13' libstdcxx: '>=13' libzlib: '>=1.3.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.7-hb8e6e7a_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.7-hb8e6e7a_2.conda hash: - md5: 02e4e2fa41a6528afba2e54cbc4280ff - sha256: 532d3623961e34c53aba98db2ad0a33b7a52ff90d6960e505fb2d2efc06bb7da + md5: 6432cb5d4ac0046c3ac0a8a0f95842f9 + sha256: a4166e3d8ff4e35932510aaff7aa90772f84b4d07e9f6f83c614cba7ceefe0eb category: main optional: false - name: zstd @@ -20007,10 +20318,10 @@ package: dependencies: __osx: '>=10.13' libzlib: '>=1.3.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.7-h8210216_1.conda + url: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.7-h8210216_2.conda hash: - md5: b6931d7aedc272edf329a632d840e3d9 - sha256: 60042f68a56124b72c7fedc3c45bf8da7a53665175fcebdf1e248f6d9a59f339 + md5: cd60a4a5a8d6a476b30d8aa4bb49251a + sha256: c171c43d0c47eed45085112cb00c8c7d4f0caa5a32d47f2daca727e45fb98dca category: main optional: false - name: zstd @@ -20020,9 +20331,9 @@ package: dependencies: __osx: '>=11.0' libzlib: '>=1.3.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.7-h6491c7d_1.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.7-h6491c7d_2.conda hash: - md5: 66e5c4b02aa97230459efdd4f64c8ce6 - sha256: f49bbeeb3a8ead81920e6c695fff1260cbd221e2cfcdf9fb34207260fbd60816 + md5: e6f69c7bcccdefa417f056fa593b40f0 + sha256: 0d02046f57f7a1a3feae3e9d1aa2113788311f3cf37a3244c71e61a93177ba67 category: main optional: false diff --git a/packages/climate-ref-esmvaltool/src/climate_ref_esmvaltool/requirements/environment.yml b/packages/climate-ref-esmvaltool/src/climate_ref_esmvaltool/requirements/environment.yml index 0b3c6338e..c2b1f87e2 100644 --- a/packages/climate-ref-esmvaltool/src/climate_ref_esmvaltool/requirements/environment.yml +++ b/packages/climate-ref-esmvaltool/src/climate_ref_esmvaltool/requirements/environment.yml @@ -4,3 +4,4 @@ channels: dependencies: - esmvaltool-python + - arviz diff --git a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/input_files_climate_drivers_for_fire.json b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/input_files_climate_drivers_for_fire.json new file mode 100644 index 000000000..1a52925ac --- /dev/null +++ b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/input_files_climate_drivers_for_fire.json @@ -0,0 +1,362 @@ +{ + "start_time":{ + "83":"2013-01-16T12:00:00.000", + "84":"2013-01-16T12:00:00.000", + "85":"2013-01-16T12:00:00.000", + "86":"2013-01-16T12:00:00.000", + "87":"2013-01-16T12:00:00.000", + "17":"1850-01-16T12:00:00.000", + "24":"1850-01-16T12:00:00.000", + "41":null + }, + "end_time":{ + "83":"2014-12-16T12:00:00.000", + "84":"2014-12-16T12:00:00.000", + "85":"2014-12-16T12:00:00.000", + "86":"2014-12-16T12:00:00.000", + "87":"2014-12-16T12:00:00.000", + "17":"2014-12-16T12:00:00.000", + "24":"2014-12-16T12:00:00.000", + "41":null + }, + "path":{ + "83":"\/home\/bandela\/src\/Climate-REF\/ref-sample-data\/data\/CMIP6\/CMIP\/CSIRO\/ACCESS-ESM1-5\/historical\/r1i1p1f1\/Amon\/hurs\/gn\/v20191115\/hurs_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc", + "84":"\/home\/bandela\/src\/Climate-REF\/ref-sample-data\/data\/CMIP6\/CMIP\/CSIRO\/ACCESS-ESM1-5\/historical\/r1i1p1f1\/Amon\/tasmax\/gn\/v20191115\/tasmax_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc", + "85":"\/home\/bandela\/src\/Climate-REF\/ref-sample-data\/data\/CMIP6\/CMIP\/CSIRO\/ACCESS-ESM1-5\/historical\/r1i1p1f1\/Emon\/vegFrac\/gn\/v20191115\/vegFrac_Emon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc", + "86":"\/home\/bandela\/src\/Climate-REF\/ref-sample-data\/data\/CMIP6\/CMIP\/CSIRO\/ACCESS-ESM1-5\/historical\/r1i1p1f1\/Lmon\/cVeg\/gn\/v20191115\/cVeg_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc", + "87":"\/home\/bandela\/src\/Climate-REF\/ref-sample-data\/data\/CMIP6\/CMIP\/CSIRO\/ACCESS-ESM1-5\/historical\/r1i1p1f1\/Lmon\/treeFrac\/gn\/v20191115\/treeFrac_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc", + "17":"\/home\/bandela\/src\/Climate-REF\/ref-sample-data\/data\/CMIP6\/CMIP\/CSIRO\/ACCESS-ESM1-5\/historical\/r1i1p1f1\/Amon\/pr\/gn\/v20191115\/pr_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc", + "24":"\/home\/bandela\/src\/Climate-REF\/ref-sample-data\/data\/CMIP6\/CMIP\/CSIRO\/ACCESS-ESM1-5\/historical\/r1i1p1f1\/Amon\/tas\/gn\/v20191115\/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc", + "41":"\/home\/bandela\/src\/Climate-REF\/ref-sample-data\/data\/CMIP6\/CMIP\/CSIRO\/ACCESS-ESM1-5\/historical\/r1i1p1f1\/fx\/sftlf\/gn\/v20191115\/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc" + }, + "activity_id":{ + "83":"CMIP", + "84":"CMIP", + "85":"CMIP", + "86":"CMIP", + "87":"CMIP", + "17":"CMIP", + "24":"CMIP", + "41":"CMIP" + }, + "branch_method":{ + "83":"standard", + "84":"standard", + "85":"standard", + "86":"standard", + "87":"standard", + "17":"standard", + "24":"standard", + "41":"standard" + }, + "branch_time_in_child":{ + "83":0.0, + "84":0.0, + "85":0.0, + "86":0.0, + "87":0.0, + "17":0.0, + "24":0.0, + "41":0.0 + }, + "branch_time_in_parent":{ + "83":21915.0, + "84":21915.0, + "85":21915.0, + "86":21915.0, + "87":21915.0, + "17":21915.0, + "24":21915.0, + "41":21915.0 + }, + "experiment":{ + "83":"all-forcing simulation of the recent past", + "84":"all-forcing simulation of the recent past", + "85":"all-forcing simulation of the recent past", + "86":"all-forcing simulation of the recent past", + "87":"all-forcing simulation of the recent past", + "17":"all-forcing simulation of the recent past", + "24":"all-forcing simulation of the recent past", + "41":"all-forcing simulation of the recent past" + }, + "experiment_id":{ + "83":"historical", + "84":"historical", + "85":"historical", + "86":"historical", + "87":"historical", + "17":"historical", + "24":"historical", + "41":"historical" + }, + "frequency":{ + "83":"mon", + "84":"mon", + "85":"mon", + "86":"mon", + "87":"mon", + "17":"mon", + "24":"mon", + "41":"fx" + }, + "grid":{ + "83":"native atmosphere N96 grid (145x192 latxlon)", + "84":"native atmosphere N96 grid (145x192 latxlon)", + "85":"native atmosphere N96 grid (145x192 latxlon)", + "86":"native atmosphere N96 grid (145x192 latxlon)", + "87":"native atmosphere N96 grid (145x192 latxlon)", + "17":"native atmosphere N96 grid (145x192 latxlon)", + "24":"native atmosphere N96 grid (145x192 latxlon)", + "41":"native atmosphere N96 grid (145x192 latxlon)" + }, + "grid_label":{ + "83":"gn", + "84":"gn", + "85":"gn", + "86":"gn", + "87":"gn", + "17":"gn", + "24":"gn", + "41":"gn" + }, + "institution_id":{ + "83":"CSIRO", + "84":"CSIRO", + "85":"CSIRO", + "86":"CSIRO", + "87":"CSIRO", + "17":"CSIRO", + "24":"CSIRO", + "41":"CSIRO" + }, + "nominal_resolution":{ + "83":"250 km", + "84":"250 km", + "85":"250 km", + "86":"250 km", + "87":"250 km", + "17":"250 km", + "24":"250 km", + "41":"250 km" + }, + "parent_activity_id":{ + "83":"CMIP", + "84":"CMIP", + "85":"CMIP", + "86":"CMIP", + "87":"CMIP", + "17":"CMIP", + "24":"CMIP", + "41":"CMIP" + }, + "parent_experiment_id":{ + "83":"piControl", + "84":"piControl", + "85":"piControl", + "86":"piControl", + "87":"piControl", + "17":"piControl", + "24":"piControl", + "41":"piControl" + }, + "parent_source_id":{ + "83":"ACCESS-ESM1-5", + "84":"ACCESS-ESM1-5", + "85":"ACCESS-ESM1-5", + "86":"ACCESS-ESM1-5", + "87":"ACCESS-ESM1-5", + "17":"ACCESS-ESM1-5", + "24":"ACCESS-ESM1-5", + "41":"ACCESS-ESM1-5" + }, + "parent_time_units":{ + "83":"days since 0101-1-1", + "84":"days since 0101-1-1", + "85":"days since 0101-1-1", + "86":"days since 0101-1-1", + "87":"days since 0101-1-1", + "17":"days since 0101-1-1", + "24":"days since 0101-1-1", + "41":"days since 0101-1-1" + }, + "parent_variant_label":{ + "83":"r1i1p1f1", + "84":"r1i1p1f1", + "85":"r1i1p1f1", + "86":"r1i1p1f1", + "87":"r1i1p1f1", + "17":"r1i1p1f1", + "24":"r1i1p1f1", + "41":"r1i1p1f1" + }, + "product":{ + "83":"model-output", + "84":"model-output", + "85":"model-output", + "86":"model-output", + "87":"model-output", + "17":"model-output", + "24":"model-output", + "41":"model-output" + }, + "realm":{ + "83":"atmos", + "84":"atmos", + "85":"land", + "86":"land", + "87":"land", + "17":"atmos", + "24":"atmos", + "41":"atmos" + }, + "source_id":{ + "83":"ACCESS-ESM1-5", + "84":"ACCESS-ESM1-5", + "85":"ACCESS-ESM1-5", + "86":"ACCESS-ESM1-5", + "87":"ACCESS-ESM1-5", + "17":"ACCESS-ESM1-5", + "24":"ACCESS-ESM1-5", + "41":"ACCESS-ESM1-5" + }, + "source_type":{ + "83":"AOGCM", + "84":"AOGCM", + "85":"AOGCM", + "86":"AOGCM", + "87":"AOGCM", + "17":"AOGCM", + "24":"AOGCM", + "41":"AOGCM" + }, + "sub_experiment":{ + "83":"none", + "84":"none", + "85":"none", + "86":"none", + "87":"none", + "17":"none", + "24":"none", + "41":"none" + }, + "sub_experiment_id":{ + "83":"none", + "84":"none", + "85":"none", + "86":"none", + "87":"none", + "17":"none", + "24":"none", + "41":"none" + }, + "table_id":{ + "83":"Amon", + "84":"Amon", + "85":"Emon", + "86":"Lmon", + "87":"Lmon", + "17":"Amon", + "24":"Amon", + "41":"fx" + }, + "variable_id":{ + "83":"hurs", + "84":"tasmax", + "85":"vegFrac", + "86":"cVeg", + "87":"treeFrac", + "17":"pr", + "24":"tas", + "41":"sftlf" + }, + "variant_label":{ + "83":"r1i1p1f1", + "84":"r1i1p1f1", + "85":"r1i1p1f1", + "86":"r1i1p1f1", + "87":"r1i1p1f1", + "17":"r1i1p1f1", + "24":"r1i1p1f1", + "41":"r1i1p1f1" + }, + "member_id":{ + "83":"r1i1p1f1", + "84":"r1i1p1f1", + "85":"r1i1p1f1", + "86":"r1i1p1f1", + "87":"r1i1p1f1", + "17":"r1i1p1f1", + "24":"r1i1p1f1", + "41":"r1i1p1f1" + }, + "vertical_levels":{ + "83":1, + "84":1, + "85":1, + "86":1, + "87":1, + "17":1, + "24":1, + "41":1 + }, + "version":{ + "83":"v20191115", + "84":"v20191115", + "85":"v20191115", + "86":"v20191115", + "87":"v20191115", + "17":"v20191115", + "24":"v20191115", + "41":"v20191115" + }, + "standard_name":{ + "83":"relative_humidity", + "84":"air_temperature", + "85":"area_fraction", + "86":"vegetation_carbon_content", + "87":"area_fraction", + "17":"precipitation_flux", + "24":"air_temperature", + "41":"land_area_fraction" + }, + "long_name":{ + "83":"Near-Surface Relative Humidity", + "84":"Daily Maximum Near-Surface Air Temperature", + "85":"Total Vegetated Percentage Cover", + "86":"Carbon Mass in Vegetation", + "87":"Tree Cover Percentage", + "17":"Precipitation", + "24":"Near-Surface Air Temperature", + "41":"Percentage of the grid cell occupied by land (including lakes)" + }, + "units":{ + "83":"%", + "84":"K", + "85":"%", + "86":"kg m-2", + "87":"%", + "17":"kg m-2 s-1", + "24":"K", + "41":"%" + }, + "finalised":{ + "83":true, + "84":true, + "85":true, + "86":true, + "87":true, + "17":true, + "24":true, + "41":true + }, + "instance_id":{ + "83":"CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical.r1i1p1f1.Amon.hurs.gn.v20191115", + "84":"CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical.r1i1p1f1.Amon.tasmax.gn.v20191115", + "85":"CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical.r1i1p1f1.Emon.vegFrac.gn.v20191115", + "86":"CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical.r1i1p1f1.Lmon.cVeg.gn.v20191115", + "87":"CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical.r1i1p1f1.Lmon.treeFrac.gn.v20191115", + "17":"CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical.r1i1p1f1.Amon.pr.gn.v20191115", + "24":"CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical.r1i1p1f1.Amon.tas.gn.v20191115", + "41":"CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical.r1i1p1f1.fx.sftlf.gn.v20191115" + } +} diff --git a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/test_climate_drivers_for_fire.py b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/test_climate_drivers_for_fire.py new file mode 100644 index 000000000..fa59eb90f --- /dev/null +++ b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/test_climate_drivers_for_fire.py @@ -0,0 +1,46 @@ +from pathlib import Path + +import pandas +import pytest +from climate_ref_esmvaltool.diagnostics.climate_drivers_for_fire import ClimateDriversForFire +from climate_ref_esmvaltool.recipe import load_recipe + +from climate_ref_core.datasets import ( + DatasetCollection, + ExecutionDatasetCollection, + SourceDatasetType, +) + + +@pytest.fixture +def metric_dataset(): + return ExecutionDatasetCollection( + { + SourceDatasetType.CMIP6: DatasetCollection( + datasets=pandas.read_json( + Path(__file__).parent / "input_files_climate_drivers_for_fire.json" + ), + slug_column="test", + ), + } + ) + + +def test_update_recipe(metric_dataset): + input_files = {k: v.datasets for k, v in metric_dataset.items()} + recipe = load_recipe(ClimateDriversForFire.base_recipe) + ClimateDriversForFire().update_recipe(recipe, input_files) + assert len(recipe["diagnostics"]) == 1 + assert recipe["datasets"] == [ + { + "activity": "CMIP", + "dataset": "ACCESS-ESM1-5", + "end_year": 2014, + "ensemble": "r1i1p1f1", + "exp": "historical", + "grid": "gn", + "institute": "CSIRO", + "project": "CMIP6", + "start_year": 2013, + }, + ] diff --git a/packages/climate-ref/src/climate_ref/dataset_registry/sample_data.txt b/packages/climate-ref/src/climate_ref/dataset_registry/sample_data.txt index 9aa720b31..b711e846c 100644 --- a/packages/climate-ref/src/climate_ref/dataset_registry/sample_data.txt +++ b/packages/climate-ref/src/climate_ref/dataset_registry/sample_data.txt @@ -19,6 +19,7 @@ CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/abrupt-4xCO2/r1i1p1f1/Amon/rsdt/gn/v20191115/rsdt CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/abrupt-4xCO2/r1i1p1f1/Amon/rsut/gn/v20191115/rsut_Amon_ACCESS-ESM1-5_abrupt-4xCO2_r1i1p1f1_gn_010101-012512.nc ddcab059b65e2b636c0f0745081dfdf79a0a95fd8c07c06a71f4bac87151ed01 CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/abrupt-4xCO2/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_abrupt-4xCO2_r1i1p1f1_gn_010101-012512.nc 01b3a29d9635b5949b5bc8d411b26e58f28176898c9c18cf2408ad25b04e475a CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/abrupt-4xCO2/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_abrupt-4xCO2_r1i1p1f1_gn.nc f97ff763f2aaf2da5ec162c42a02d6044ba20faae2d107a1e913e684c0358e00 +CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/hurs/gn/v20191115/hurs_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc cea9b3482165263e86dd90962b1b20b31057f91a487250b1030418378055a633 CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/hus/gn/v20191115/hus_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc 5c245d3ea5c30eeca2f5f1a602283ac332d0b76a6cf288cd6353dcf2e9b6eaaa CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/pr/gn/v20191115/pr_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc ec2a749432b77764d95547b74938823f39199b0ee6e48623057c8e5b408e9295 CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/psl/gn/v20191115/psl_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc 76d9214e669c54046d75cc6f2fd6ed66700046cef6bd40aa930b73fc26d9eafa @@ -28,15 +29,19 @@ CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/rsdt/gn/v20191115/rsdt_A CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/rsut/gn/v20191115/rsut_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_199601-201412.nc 9e4da7cf758e04be29e3f6b2ba2d720e720d74dda1b785834ace02c1f5c7f82b CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/rsutcs/gn/v20191115/rsutcs_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_199601-201412.nc c05839ff202a023757122c5dc5951cd1d56fdbff27f3c2bad7b94d5788e4f4c5 CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc 98350df354acbabdff5dcb03bafbc0e7312cb5c766941d371c42fd454b89842e +CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tasmax/gn/v20191115/tasmax_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc 7580552d5e3b1658ff97ba3fa33bd6172d8d963df76539c41461cc345aae9047 CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tauu/gn/v20191115/tauu_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc d72622c1811db2b522daa5f323acecf462cc46d7ba57f97fc2a1bf14475f1402 CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/ts/gn/v20191115/ts_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_200001-201412.nc 36953facff0a7336470c3e310f24a0e2137b5c6e4b2d57dcff9fe7dcc19e9c33 CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/ua/gn/v20191115/ua_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc 0a035d2eaee25586d741fb92ac61b603effb24d17be0e5564ab9f23a2b5396cf CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Emon/cSoil/gn/v20191115/cSoil_Emon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_200001-201412.nc d992e8be9160fb0af91baecde40d4ed9cef0fbff2dbaef0bd0df4a9c841f68a0 +CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Emon/vegFrac/gn/v20191115/vegFrac_Emon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc a006fec4f86f55bc60eb604b17fb46ff1f8805ca8d9b59723e8655eb9731108c +CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/cVeg/gn/v20191115/cVeg_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc dac42aa2529fbc9951cb2ab82fd1525996a6720c75f04f2eefea5d210fc5e3ab CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/gpp/gn/v20191115/gpp_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_200001-201412.nc 650088139dfaeefb13c22e9f4664c073f62b898203ea5ebe4ee1d1f9a33cea8a CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/lai/gn/v20191115/lai_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_200001-201412.nc 4344addd138835f4b17141ee94bc2f655254a0fbf3eb40682c2e7993dd04cb29 CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/mrro/gn/v20191115/mrro_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_200001-201412.nc 9b09ded26983b50744b13b8c2d2813c31a79bf475377c32fe325b2f653b992c4 CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/mrsos/gn/v20191115/mrsos_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_200001-201412.nc e1f8e9d983622c5a0dfbf7870c16449bb576bf41e685fbbe7bf8a566e298f5d9 CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/nbp/gn/v20191115/nbp_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc 9e1b3885544c5d8aa5f21a854b3dfdc11a32e6e3acf63b33bc331bd76d3e6992 +CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/treeFrac/gn/v20191115/treeFrac_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc 14b34644c775101b6ac5fa329d446178521e38cb47ad4022f4c971770398c251 CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Ofx/areacello/gn/v20191115/areacello_Ofx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc 6c81071e48fdbacb49207cbf09aa94eb3ede265ec95116aad3ff5af425a25b26 CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Ofx/sftof/gn/v20191115/sftof_Ofx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc 1bdac0745938a5b0cd474d39f4cdce8293fe923b680bcea88fb0dc4d47753684 CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Omon/msftmz/gn/v20191115/msftmz_Omon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_200001-200912.nc 8701fb7ec96033fb2f85dfd91db4529a95234f14e05defb27fc664e6f1b1e635 diff --git a/packages/climate-ref/src/climate_ref/testing.py b/packages/climate-ref/src/climate_ref/testing.py index 5d96cbf3c..774d170bb 100644 --- a/packages/climate-ref/src/climate_ref/testing.py +++ b/packages/climate-ref/src/climate_ref/testing.py @@ -27,7 +27,7 @@ def _determine_test_directory() -> Path | None: TEST_DATA_DIR = _determine_test_directory() -SAMPLE_DATA_VERSION = "v0.7.1" +SAMPLE_DATA_VERSION = "v0.7.2" def fetch_sample_data(force_cleanup: bool = False, symlink: bool = False) -> None: diff --git a/packages/climate-ref/tests/unit/datasets/test_cmip6/cmip6_catalog_db_complete.yml b/packages/climate-ref/tests/unit/datasets/test_cmip6/cmip6_catalog_db_complete.yml index 93c6f4e3f..c5b040654 100644 --- a/packages/climate-ref/tests/unit/datasets/test_cmip6/cmip6_catalog_db_complete.yml +++ b/packages/climate-ref/tests/unit/datasets/test_cmip6/cmip6_catalog_db_complete.yml @@ -766,6 +766,42 @@ variant_label: r1i1p1f1 version: v20191115 vertical_levels: 1 +- activity_id: CMIP + branch_method: standard + branch_time_in_child: 0.0 + branch_time_in_parent: 21915.0 + end_time: 2014-12-16 12:00:00 + experiment: all-forcing simulation of the recent past + experiment_id: historical + finalised: true + frequency: mon + grid: native atmosphere N96 grid (145x192 latxlon) + grid_label: gn + instance_id: CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical.r1i1p1f1.Amon.hurs.gn.v20191115 + institution_id: CSIRO + long_name: Near-Surface Relative Humidity + member_id: r1i1p1f1 + nominal_resolution: 250 km + parent_activity_id: CMIP + parent_experiment_id: piControl + parent_source_id: ACCESS-ESM1-5 + parent_time_units: days since 0101-1-1 + parent_variant_label: r1i1p1f1 + path: '{esgf_data_dir}/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/hurs/gn/v20191115/hurs_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc' + product: model-output + realm: atmos + source_id: ACCESS-ESM1-5 + source_type: AOGCM + standard_name: relative_humidity + start_time: 2013-01-16 12:00:00 + sub_experiment: none + sub_experiment_id: none + table_id: Amon + units: '%' + variable_id: hurs + variant_label: r1i1p1f1 + version: v20191115 + vertical_levels: 1 - activity_id: CMIP branch_method: standard branch_time_in_child: 0.0 @@ -1090,6 +1126,42 @@ variant_label: r1i1p1f1 version: v20191115 vertical_levels: 1 +- activity_id: CMIP + branch_method: standard + branch_time_in_child: 0.0 + branch_time_in_parent: 21915.0 + end_time: 2014-12-16 12:00:00 + experiment: all-forcing simulation of the recent past + experiment_id: historical + finalised: true + frequency: mon + grid: native atmosphere N96 grid (145x192 latxlon) + grid_label: gn + instance_id: CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical.r1i1p1f1.Amon.tasmax.gn.v20191115 + institution_id: CSIRO + long_name: Daily Maximum Near-Surface Air Temperature + member_id: r1i1p1f1 + nominal_resolution: 250 km + parent_activity_id: CMIP + parent_experiment_id: piControl + parent_source_id: ACCESS-ESM1-5 + parent_time_units: days since 0101-1-1 + parent_variant_label: r1i1p1f1 + path: '{esgf_data_dir}/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tasmax/gn/v20191115/tasmax_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc' + product: model-output + realm: atmos + source_id: ACCESS-ESM1-5 + source_type: AOGCM + standard_name: air_temperature + start_time: 2013-01-16 12:00:00 + sub_experiment: none + sub_experiment_id: none + table_id: Amon + units: K + variable_id: tasmax + variant_label: r1i1p1f1 + version: v20191115 + vertical_levels: 1 - activity_id: CMIP branch_method: standard branch_time_in_child: 0.0 @@ -1234,6 +1306,78 @@ variant_label: r1i1p1f1 version: v20191115 vertical_levels: 1 +- activity_id: CMIP + branch_method: standard + branch_time_in_child: 0.0 + branch_time_in_parent: 21915.0 + end_time: 2014-12-16 12:00:00 + experiment: all-forcing simulation of the recent past + experiment_id: historical + finalised: true + frequency: mon + grid: native atmosphere N96 grid (145x192 latxlon) + grid_label: gn + instance_id: CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical.r1i1p1f1.Emon.vegFrac.gn.v20191115 + institution_id: CSIRO + long_name: Total Vegetated Percentage Cover + member_id: r1i1p1f1 + nominal_resolution: 250 km + parent_activity_id: CMIP + parent_experiment_id: piControl + parent_source_id: ACCESS-ESM1-5 + parent_time_units: days since 0101-1-1 + parent_variant_label: r1i1p1f1 + path: '{esgf_data_dir}/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Emon/vegFrac/gn/v20191115/vegFrac_Emon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc' + product: model-output + realm: land + source_id: ACCESS-ESM1-5 + source_type: AOGCM + standard_name: area_fraction + start_time: 2013-01-16 12:00:00 + sub_experiment: none + sub_experiment_id: none + table_id: Emon + units: '%' + variable_id: vegFrac + variant_label: r1i1p1f1 + version: v20191115 + vertical_levels: 1 +- activity_id: CMIP + branch_method: standard + branch_time_in_child: 0.0 + branch_time_in_parent: 21915.0 + end_time: 2014-12-16 12:00:00 + experiment: all-forcing simulation of the recent past + experiment_id: historical + finalised: true + frequency: mon + grid: native atmosphere N96 grid (145x192 latxlon) + grid_label: gn + instance_id: CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical.r1i1p1f1.Lmon.cVeg.gn.v20191115 + institution_id: CSIRO + long_name: Carbon Mass in Vegetation + member_id: r1i1p1f1 + nominal_resolution: 250 km + parent_activity_id: CMIP + parent_experiment_id: piControl + parent_source_id: ACCESS-ESM1-5 + parent_time_units: days since 0101-1-1 + parent_variant_label: r1i1p1f1 + path: '{esgf_data_dir}/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/cVeg/gn/v20191115/cVeg_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc' + product: model-output + realm: land + source_id: ACCESS-ESM1-5 + source_type: AOGCM + standard_name: vegetation_carbon_content + start_time: 2013-01-16 12:00:00 + sub_experiment: none + sub_experiment_id: none + table_id: Lmon + units: kg m-2 + variable_id: cVeg + variant_label: r1i1p1f1 + version: v20191115 + vertical_levels: 1 - activity_id: CMIP branch_method: standard branch_time_in_child: 0.0 @@ -1416,6 +1560,42 @@ variant_label: r1i1p1f1 version: v20191115 vertical_levels: 1 +- activity_id: CMIP + branch_method: standard + branch_time_in_child: 0.0 + branch_time_in_parent: 21915.0 + end_time: 2014-12-16 12:00:00 + experiment: all-forcing simulation of the recent past + experiment_id: historical + finalised: true + frequency: mon + grid: native atmosphere N96 grid (145x192 latxlon) + grid_label: gn + instance_id: CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical.r1i1p1f1.Lmon.treeFrac.gn.v20191115 + institution_id: CSIRO + long_name: Tree Cover Percentage + member_id: r1i1p1f1 + nominal_resolution: 250 km + parent_activity_id: CMIP + parent_experiment_id: piControl + parent_source_id: ACCESS-ESM1-5 + parent_time_units: days since 0101-1-1 + parent_variant_label: r1i1p1f1 + path: '{esgf_data_dir}/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/treeFrac/gn/v20191115/treeFrac_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc' + product: model-output + realm: land + source_id: ACCESS-ESM1-5 + source_type: AOGCM + standard_name: area_fraction + start_time: 2013-01-16 12:00:00 + sub_experiment: none + sub_experiment_id: none + table_id: Lmon + units: '%' + variable_id: treeFrac + variant_label: r1i1p1f1 + version: v20191115 + vertical_levels: 1 - activity_id: CMIP branch_method: standard branch_time_in_child: 0.0 diff --git a/packages/climate-ref/tests/unit/datasets/test_cmip6/cmip6_catalog_db_drs.yml b/packages/climate-ref/tests/unit/datasets/test_cmip6/cmip6_catalog_db_drs.yml index 93c6f4e3f..c5b040654 100644 --- a/packages/climate-ref/tests/unit/datasets/test_cmip6/cmip6_catalog_db_drs.yml +++ b/packages/climate-ref/tests/unit/datasets/test_cmip6/cmip6_catalog_db_drs.yml @@ -766,6 +766,42 @@ variant_label: r1i1p1f1 version: v20191115 vertical_levels: 1 +- activity_id: CMIP + branch_method: standard + branch_time_in_child: 0.0 + branch_time_in_parent: 21915.0 + end_time: 2014-12-16 12:00:00 + experiment: all-forcing simulation of the recent past + experiment_id: historical + finalised: true + frequency: mon + grid: native atmosphere N96 grid (145x192 latxlon) + grid_label: gn + instance_id: CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical.r1i1p1f1.Amon.hurs.gn.v20191115 + institution_id: CSIRO + long_name: Near-Surface Relative Humidity + member_id: r1i1p1f1 + nominal_resolution: 250 km + parent_activity_id: CMIP + parent_experiment_id: piControl + parent_source_id: ACCESS-ESM1-5 + parent_time_units: days since 0101-1-1 + parent_variant_label: r1i1p1f1 + path: '{esgf_data_dir}/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/hurs/gn/v20191115/hurs_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc' + product: model-output + realm: atmos + source_id: ACCESS-ESM1-5 + source_type: AOGCM + standard_name: relative_humidity + start_time: 2013-01-16 12:00:00 + sub_experiment: none + sub_experiment_id: none + table_id: Amon + units: '%' + variable_id: hurs + variant_label: r1i1p1f1 + version: v20191115 + vertical_levels: 1 - activity_id: CMIP branch_method: standard branch_time_in_child: 0.0 @@ -1090,6 +1126,42 @@ variant_label: r1i1p1f1 version: v20191115 vertical_levels: 1 +- activity_id: CMIP + branch_method: standard + branch_time_in_child: 0.0 + branch_time_in_parent: 21915.0 + end_time: 2014-12-16 12:00:00 + experiment: all-forcing simulation of the recent past + experiment_id: historical + finalised: true + frequency: mon + grid: native atmosphere N96 grid (145x192 latxlon) + grid_label: gn + instance_id: CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical.r1i1p1f1.Amon.tasmax.gn.v20191115 + institution_id: CSIRO + long_name: Daily Maximum Near-Surface Air Temperature + member_id: r1i1p1f1 + nominal_resolution: 250 km + parent_activity_id: CMIP + parent_experiment_id: piControl + parent_source_id: ACCESS-ESM1-5 + parent_time_units: days since 0101-1-1 + parent_variant_label: r1i1p1f1 + path: '{esgf_data_dir}/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tasmax/gn/v20191115/tasmax_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc' + product: model-output + realm: atmos + source_id: ACCESS-ESM1-5 + source_type: AOGCM + standard_name: air_temperature + start_time: 2013-01-16 12:00:00 + sub_experiment: none + sub_experiment_id: none + table_id: Amon + units: K + variable_id: tasmax + variant_label: r1i1p1f1 + version: v20191115 + vertical_levels: 1 - activity_id: CMIP branch_method: standard branch_time_in_child: 0.0 @@ -1234,6 +1306,78 @@ variant_label: r1i1p1f1 version: v20191115 vertical_levels: 1 +- activity_id: CMIP + branch_method: standard + branch_time_in_child: 0.0 + branch_time_in_parent: 21915.0 + end_time: 2014-12-16 12:00:00 + experiment: all-forcing simulation of the recent past + experiment_id: historical + finalised: true + frequency: mon + grid: native atmosphere N96 grid (145x192 latxlon) + grid_label: gn + instance_id: CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical.r1i1p1f1.Emon.vegFrac.gn.v20191115 + institution_id: CSIRO + long_name: Total Vegetated Percentage Cover + member_id: r1i1p1f1 + nominal_resolution: 250 km + parent_activity_id: CMIP + parent_experiment_id: piControl + parent_source_id: ACCESS-ESM1-5 + parent_time_units: days since 0101-1-1 + parent_variant_label: r1i1p1f1 + path: '{esgf_data_dir}/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Emon/vegFrac/gn/v20191115/vegFrac_Emon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc' + product: model-output + realm: land + source_id: ACCESS-ESM1-5 + source_type: AOGCM + standard_name: area_fraction + start_time: 2013-01-16 12:00:00 + sub_experiment: none + sub_experiment_id: none + table_id: Emon + units: '%' + variable_id: vegFrac + variant_label: r1i1p1f1 + version: v20191115 + vertical_levels: 1 +- activity_id: CMIP + branch_method: standard + branch_time_in_child: 0.0 + branch_time_in_parent: 21915.0 + end_time: 2014-12-16 12:00:00 + experiment: all-forcing simulation of the recent past + experiment_id: historical + finalised: true + frequency: mon + grid: native atmosphere N96 grid (145x192 latxlon) + grid_label: gn + instance_id: CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical.r1i1p1f1.Lmon.cVeg.gn.v20191115 + institution_id: CSIRO + long_name: Carbon Mass in Vegetation + member_id: r1i1p1f1 + nominal_resolution: 250 km + parent_activity_id: CMIP + parent_experiment_id: piControl + parent_source_id: ACCESS-ESM1-5 + parent_time_units: days since 0101-1-1 + parent_variant_label: r1i1p1f1 + path: '{esgf_data_dir}/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/cVeg/gn/v20191115/cVeg_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc' + product: model-output + realm: land + source_id: ACCESS-ESM1-5 + source_type: AOGCM + standard_name: vegetation_carbon_content + start_time: 2013-01-16 12:00:00 + sub_experiment: none + sub_experiment_id: none + table_id: Lmon + units: kg m-2 + variable_id: cVeg + variant_label: r1i1p1f1 + version: v20191115 + vertical_levels: 1 - activity_id: CMIP branch_method: standard branch_time_in_child: 0.0 @@ -1416,6 +1560,42 @@ variant_label: r1i1p1f1 version: v20191115 vertical_levels: 1 +- activity_id: CMIP + branch_method: standard + branch_time_in_child: 0.0 + branch_time_in_parent: 21915.0 + end_time: 2014-12-16 12:00:00 + experiment: all-forcing simulation of the recent past + experiment_id: historical + finalised: true + frequency: mon + grid: native atmosphere N96 grid (145x192 latxlon) + grid_label: gn + instance_id: CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical.r1i1p1f1.Lmon.treeFrac.gn.v20191115 + institution_id: CSIRO + long_name: Tree Cover Percentage + member_id: r1i1p1f1 + nominal_resolution: 250 km + parent_activity_id: CMIP + parent_experiment_id: piControl + parent_source_id: ACCESS-ESM1-5 + parent_time_units: days since 0101-1-1 + parent_variant_label: r1i1p1f1 + path: '{esgf_data_dir}/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/treeFrac/gn/v20191115/treeFrac_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc' + product: model-output + realm: land + source_id: ACCESS-ESM1-5 + source_type: AOGCM + standard_name: area_fraction + start_time: 2013-01-16 12:00:00 + sub_experiment: none + sub_experiment_id: none + table_id: Lmon + units: '%' + variable_id: treeFrac + variant_label: r1i1p1f1 + version: v20191115 + vertical_levels: 1 - activity_id: CMIP branch_method: standard branch_time_in_child: 0.0 diff --git a/packages/climate-ref/tests/unit/datasets/test_cmip6/cmip6_catalog_local_complete.yml b/packages/climate-ref/tests/unit/datasets/test_cmip6/cmip6_catalog_local_complete.yml index e36e52ea5..cdf1e9974 100644 --- a/packages/climate-ref/tests/unit/datasets/test_cmip6/cmip6_catalog_local_complete.yml +++ b/packages/climate-ref/tests/unit/datasets/test_cmip6/cmip6_catalog_local_complete.yml @@ -787,6 +787,43 @@ variant_label: r1i1p1f1 version: v20191115 vertical_levels: 1 +- activity_id: CMIP + branch_method: standard + branch_time_in_child: 0.0 + branch_time_in_parent: 21915.0 + end_time: 2014-12-16 12:00:00 + experiment: all-forcing simulation of the recent past + experiment_id: historical + finalised: true + frequency: mon + grid: native atmosphere N96 grid (145x192 latxlon) + grid_label: gn + instance_id: CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical.r1i1p1f1.Amon.hurs.gn.v20191115 + institution_id: CSIRO + long_name: Near-Surface Relative Humidity + member_id: r1i1p1f1 + nominal_resolution: 250 km + parent_activity_id: CMIP + parent_experiment_id: piControl + parent_source_id: ACCESS-ESM1-5 + parent_time_units: days since 0101-1-1 + parent_variant_label: r1i1p1f1 + path: '{esgf_data_dir}/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/hurs/gn/v20191115/hurs_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc' + product: model-output + realm: atmos + source_id: ACCESS-ESM1-5 + source_type: AOGCM + standard_name: relative_humidity + start_time: 2013-01-16 12:00:00 + sub_experiment: none + sub_experiment_id: none + table_id: Amon + time_range: 2013-01-16 12:00:00-2014-12-16 12:00:00 + units: '%' + variable_id: hurs + variant_label: r1i1p1f1 + version: v20191115 + vertical_levels: 1 - activity_id: CMIP branch_method: standard branch_time_in_child: 0.0 @@ -1120,6 +1157,43 @@ variant_label: r1i1p1f1 version: v20191115 vertical_levels: 1 +- activity_id: CMIP + branch_method: standard + branch_time_in_child: 0.0 + branch_time_in_parent: 21915.0 + end_time: 2014-12-16 12:00:00 + experiment: all-forcing simulation of the recent past + experiment_id: historical + finalised: true + frequency: mon + grid: native atmosphere N96 grid (145x192 latxlon) + grid_label: gn + instance_id: CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical.r1i1p1f1.Amon.tasmax.gn.v20191115 + institution_id: CSIRO + long_name: Daily Maximum Near-Surface Air Temperature + member_id: r1i1p1f1 + nominal_resolution: 250 km + parent_activity_id: CMIP + parent_experiment_id: piControl + parent_source_id: ACCESS-ESM1-5 + parent_time_units: days since 0101-1-1 + parent_variant_label: r1i1p1f1 + path: '{esgf_data_dir}/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tasmax/gn/v20191115/tasmax_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc' + product: model-output + realm: atmos + source_id: ACCESS-ESM1-5 + source_type: AOGCM + standard_name: air_temperature + start_time: 2013-01-16 12:00:00 + sub_experiment: none + sub_experiment_id: none + table_id: Amon + time_range: 2013-01-16 12:00:00-2014-12-16 12:00:00 + units: K + variable_id: tasmax + variant_label: r1i1p1f1 + version: v20191115 + vertical_levels: 1 - activity_id: CMIP branch_method: standard branch_time_in_child: 0.0 @@ -1268,6 +1342,80 @@ variant_label: r1i1p1f1 version: v20191115 vertical_levels: 1 +- activity_id: CMIP + branch_method: standard + branch_time_in_child: 0.0 + branch_time_in_parent: 21915.0 + end_time: 2014-12-16 12:00:00 + experiment: all-forcing simulation of the recent past + experiment_id: historical + finalised: true + frequency: mon + grid: native atmosphere N96 grid (145x192 latxlon) + grid_label: gn + instance_id: CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical.r1i1p1f1.Emon.vegFrac.gn.v20191115 + institution_id: CSIRO + long_name: Total Vegetated Percentage Cover + member_id: r1i1p1f1 + nominal_resolution: 250 km + parent_activity_id: CMIP + parent_experiment_id: piControl + parent_source_id: ACCESS-ESM1-5 + parent_time_units: days since 0101-1-1 + parent_variant_label: r1i1p1f1 + path: '{esgf_data_dir}/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Emon/vegFrac/gn/v20191115/vegFrac_Emon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc' + product: model-output + realm: land + source_id: ACCESS-ESM1-5 + source_type: AOGCM + standard_name: area_fraction + start_time: 2013-01-16 12:00:00 + sub_experiment: none + sub_experiment_id: none + table_id: Emon + time_range: 2013-01-16 12:00:00-2014-12-16 12:00:00 + units: '%' + variable_id: vegFrac + variant_label: r1i1p1f1 + version: v20191115 + vertical_levels: 1 +- activity_id: CMIP + branch_method: standard + branch_time_in_child: 0.0 + branch_time_in_parent: 21915.0 + end_time: 2014-12-16 12:00:00 + experiment: all-forcing simulation of the recent past + experiment_id: historical + finalised: true + frequency: mon + grid: native atmosphere N96 grid (145x192 latxlon) + grid_label: gn + instance_id: CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical.r1i1p1f1.Lmon.cVeg.gn.v20191115 + institution_id: CSIRO + long_name: Carbon Mass in Vegetation + member_id: r1i1p1f1 + nominal_resolution: 250 km + parent_activity_id: CMIP + parent_experiment_id: piControl + parent_source_id: ACCESS-ESM1-5 + parent_time_units: days since 0101-1-1 + parent_variant_label: r1i1p1f1 + path: '{esgf_data_dir}/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/cVeg/gn/v20191115/cVeg_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc' + product: model-output + realm: land + source_id: ACCESS-ESM1-5 + source_type: AOGCM + standard_name: vegetation_carbon_content + start_time: 2013-01-16 12:00:00 + sub_experiment: none + sub_experiment_id: none + table_id: Lmon + time_range: 2013-01-16 12:00:00-2014-12-16 12:00:00 + units: kg m-2 + variable_id: cVeg + variant_label: r1i1p1f1 + version: v20191115 + vertical_levels: 1 - activity_id: CMIP branch_method: standard branch_time_in_child: 0.0 @@ -1455,6 +1603,43 @@ variant_label: r1i1p1f1 version: v20191115 vertical_levels: 1 +- activity_id: CMIP + branch_method: standard + branch_time_in_child: 0.0 + branch_time_in_parent: 21915.0 + end_time: 2014-12-16 12:00:00 + experiment: all-forcing simulation of the recent past + experiment_id: historical + finalised: true + frequency: mon + grid: native atmosphere N96 grid (145x192 latxlon) + grid_label: gn + instance_id: CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical.r1i1p1f1.Lmon.treeFrac.gn.v20191115 + institution_id: CSIRO + long_name: Tree Cover Percentage + member_id: r1i1p1f1 + nominal_resolution: 250 km + parent_activity_id: CMIP + parent_experiment_id: piControl + parent_source_id: ACCESS-ESM1-5 + parent_time_units: days since 0101-1-1 + parent_variant_label: r1i1p1f1 + path: '{esgf_data_dir}/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/treeFrac/gn/v20191115/treeFrac_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc' + product: model-output + realm: land + source_id: ACCESS-ESM1-5 + source_type: AOGCM + standard_name: area_fraction + start_time: 2013-01-16 12:00:00 + sub_experiment: none + sub_experiment_id: none + table_id: Lmon + time_range: 2013-01-16 12:00:00-2014-12-16 12:00:00 + units: '%' + variable_id: treeFrac + variant_label: r1i1p1f1 + version: v20191115 + vertical_levels: 1 - activity_id: CMIP branch_method: standard branch_time_in_child: 0.0 diff --git a/packages/climate-ref/tests/unit/datasets/test_cmip6/cmip6_catalog_local_drs.yml b/packages/climate-ref/tests/unit/datasets/test_cmip6/cmip6_catalog_local_drs.yml index 00ef62035..796af697f 100644 --- a/packages/climate-ref/tests/unit/datasets/test_cmip6/cmip6_catalog_local_drs.yml +++ b/packages/climate-ref/tests/unit/datasets/test_cmip6/cmip6_catalog_local_drs.yml @@ -775,6 +775,43 @@ variant_label: r1i1p1f1 version: v20191115 vertical_levels: .nan +- activity_id: CMIP + branch_method: .nan + branch_time_in_child: .nan + branch_time_in_parent: .nan + end_time: 2014-12-30 00:00:00 + experiment: .nan + experiment_id: historical + finalised: false + frequency: .nan + grid: .nan + grid_label: gn + instance_id: CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical.r1i1p1f1.Amon.hurs.gn.v20191115 + institution_id: CSIRO + long_name: .nan + member_id: r1i1p1f1 + nominal_resolution: .nan + parent_activity_id: .nan + parent_experiment_id: .nan + parent_source_id: .nan + parent_time_units: .nan + parent_variant_label: .nan + path: '{esgf_data_dir}/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/hurs/gn/v20191115/hurs_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc' + product: .nan + realm: .nan + source_id: ACCESS-ESM1-5 + source_type: .nan + standard_name: .nan + start_time: 2013-01-01 00:00:00 + sub_experiment: .nan + sub_experiment_id: .nan + table_id: Amon + time_range: 201301-201412 + units: .nan + variable_id: hurs + variant_label: r1i1p1f1 + version: v20191115 + vertical_levels: .nan - activity_id: CMIP branch_method: .nan branch_time_in_child: .nan @@ -1108,6 +1145,43 @@ variant_label: r1i1p1f1 version: v20191115 vertical_levels: .nan +- activity_id: CMIP + branch_method: .nan + branch_time_in_child: .nan + branch_time_in_parent: .nan + end_time: 2014-12-30 00:00:00 + experiment: .nan + experiment_id: historical + finalised: false + frequency: .nan + grid: .nan + grid_label: gn + instance_id: CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical.r1i1p1f1.Amon.tasmax.gn.v20191115 + institution_id: CSIRO + long_name: .nan + member_id: r1i1p1f1 + nominal_resolution: .nan + parent_activity_id: .nan + parent_experiment_id: .nan + parent_source_id: .nan + parent_time_units: .nan + parent_variant_label: .nan + path: '{esgf_data_dir}/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tasmax/gn/v20191115/tasmax_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc' + product: .nan + realm: .nan + source_id: ACCESS-ESM1-5 + source_type: .nan + standard_name: .nan + start_time: 2013-01-01 00:00:00 + sub_experiment: .nan + sub_experiment_id: .nan + table_id: Amon + time_range: 201301-201412 + units: .nan + variable_id: tasmax + variant_label: r1i1p1f1 + version: v20191115 + vertical_levels: .nan - activity_id: CMIP branch_method: .nan branch_time_in_child: .nan @@ -1256,6 +1330,80 @@ variant_label: r1i1p1f1 version: v20191115 vertical_levels: .nan +- activity_id: CMIP + branch_method: .nan + branch_time_in_child: .nan + branch_time_in_parent: .nan + end_time: 2014-12-30 00:00:00 + experiment: .nan + experiment_id: historical + finalised: false + frequency: .nan + grid: .nan + grid_label: gn + instance_id: CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical.r1i1p1f1.Emon.vegFrac.gn.v20191115 + institution_id: CSIRO + long_name: .nan + member_id: r1i1p1f1 + nominal_resolution: .nan + parent_activity_id: .nan + parent_experiment_id: .nan + parent_source_id: .nan + parent_time_units: .nan + parent_variant_label: .nan + path: '{esgf_data_dir}/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Emon/vegFrac/gn/v20191115/vegFrac_Emon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc' + product: .nan + realm: .nan + source_id: ACCESS-ESM1-5 + source_type: .nan + standard_name: .nan + start_time: 2013-01-01 00:00:00 + sub_experiment: .nan + sub_experiment_id: .nan + table_id: Emon + time_range: 201301-201412 + units: .nan + variable_id: vegFrac + variant_label: r1i1p1f1 + version: v20191115 + vertical_levels: .nan +- activity_id: CMIP + branch_method: .nan + branch_time_in_child: .nan + branch_time_in_parent: .nan + end_time: 2014-12-30 00:00:00 + experiment: .nan + experiment_id: historical + finalised: false + frequency: .nan + grid: .nan + grid_label: gn + instance_id: CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical.r1i1p1f1.Lmon.cVeg.gn.v20191115 + institution_id: CSIRO + long_name: .nan + member_id: r1i1p1f1 + nominal_resolution: .nan + parent_activity_id: .nan + parent_experiment_id: .nan + parent_source_id: .nan + parent_time_units: .nan + parent_variant_label: .nan + path: '{esgf_data_dir}/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/cVeg/gn/v20191115/cVeg_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc' + product: .nan + realm: .nan + source_id: ACCESS-ESM1-5 + source_type: .nan + standard_name: .nan + start_time: 2013-01-01 00:00:00 + sub_experiment: .nan + sub_experiment_id: .nan + table_id: Lmon + time_range: 201301-201412 + units: .nan + variable_id: cVeg + variant_label: r1i1p1f1 + version: v20191115 + vertical_levels: .nan - activity_id: CMIP branch_method: .nan branch_time_in_child: .nan @@ -1441,6 +1589,43 @@ variant_label: r1i1p1f1 version: v20191115 vertical_levels: .nan +- activity_id: CMIP + branch_method: .nan + branch_time_in_child: .nan + branch_time_in_parent: .nan + end_time: 2014-12-30 00:00:00 + experiment: .nan + experiment_id: historical + finalised: false + frequency: .nan + grid: .nan + grid_label: gn + instance_id: CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical.r1i1p1f1.Lmon.treeFrac.gn.v20191115 + institution_id: CSIRO + long_name: .nan + member_id: r1i1p1f1 + nominal_resolution: .nan + parent_activity_id: .nan + parent_experiment_id: .nan + parent_source_id: .nan + parent_time_units: .nan + parent_variant_label: .nan + path: '{esgf_data_dir}/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/treeFrac/gn/v20191115/treeFrac_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc' + product: .nan + realm: .nan + source_id: ACCESS-ESM1-5 + source_type: .nan + standard_name: .nan + start_time: 2013-01-01 00:00:00 + sub_experiment: .nan + sub_experiment_id: .nan + table_id: Lmon + time_range: 201301-201412 + units: .nan + variable_id: treeFrac + variant_label: r1i1p1f1 + version: v20191115 + vertical_levels: .nan - activity_id: CMIP branch_method: .nan branch_time_in_child: .nan diff --git a/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/config/config.yml b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/config/config.yml new file mode 100644 index 000000000..ded86a5a7 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/config/config.yml @@ -0,0 +1,16 @@ +drs: + CMIP6: ESGF + OBS: default + OBS6: default + native6: default + obs4MIPs: ESGF +output_dir: /executions +rootpath: + CMIP6: /climate_data + OBS: /home/bandela/.cache/climate_ref/ESMValTool/OBS + OBS6: /home/bandela/.cache/climate_ref/ESMValTool/OBS + native6: /home/bandela/.cache/climate_ref/ESMValTool/RAWOBS + obs4MIPs: + - /climate_data + - /home/bandela/.cache/climate_ref/ESMValTool +search_esgf: never diff --git a/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/diagnostic.json b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/diagnostic.json new file mode 100644 index 000000000..30503d8c2 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/diagnostic.json @@ -0,0 +1,9 @@ +{ + "DIMENSIONS": { + "json_structure": [] + }, + "RESULTS": {}, + "PROVENANCE": null, + "DISCLAIMER": null, + "NOTES": null +} \ No newline at end of file diff --git a/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/index.html b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/index.html new file mode 100644 index 000000000..c3e8ebdd2 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/index.html @@ -0,0 +1,418 @@ + + + + + + + + Recipe + + + + + + + + + +
+
+ ESMValTool logo. +
+
+ +

Climate drivers for fire.

+ +

+ Recipe that plots diagnostics regarding climate drivers for fire. The +diagnostic uses code for the ConFire model from the following GitHub +repository: +https://github.com/douglask3/Bayesian_fire_models/tree/AR7_REF +

+ +

Authors

+ + + +

Maintainers

+ + + +

Projects

+ +
    + +
+ +

References

+ +
    + +
+ + + + + +
+ + +
+

Fire_Evaluation

+

Climate drivers for fire

+ + + + +

Fire Evaluation: Fire Evaluation

+ + + +
+
+ + Burnt area fraction for the ACCESS-ESM1-5 (CMIP6-historical) for the time period 20130116T120000/20141216T120000 as computed with the ConFire model (Jones et al., 2024). + +
+ Burnt area fraction for the ACCESS-ESM1-5 (CMIP6-historical) for the time period 20130116T120000/20141216T120000 as computed with the ConFire model (Jones et al., 2024). +
+
+ download | + references | + extra data citation | + provenance +
+
+
+ + + +
+
+ + Fire weather control for the ACCESS-ESM1-5 (CMIP6-historical) for the time period 20130116T120000/20141216T120000 as computed with the ConFire model (Jones et al., 2024). + +
+ Fire weather control for the ACCESS-ESM1-5 (CMIP6-historical) for the time period 20130116T120000/20141216T120000 as computed with the ConFire model (Jones et al., 2024). +
+
+ download | + references | + extra data citation | + provenance +
+
+
+ + + +
+
+ + Fuel load continuity control for the ACCESS-ESM1-5 (CMIP6-historical) for the time period 20130116T120000/20141216T120000 as computed with the ConFire model (Jones et al., 2024). + +
+ Fuel load continuity control for the ACCESS-ESM1-5 (CMIP6-historical) for the time period 20130116T120000/20141216T120000 as computed with the ConFire model (Jones et al., 2024). +
+
+ download | + references | + extra data citation | + provenance +
+
+
+ + + + +

Data files

+ +
+
+ +
+
+ + + +
+ + +
+ +

Files

+ +

+ main_log.txt | + main_log_debug.txt | + recipe.yml | + figures | + data +

+ + + + + + \ No newline at end of file diff --git a/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/plots/fire_evaluation/fire_evaluation/burnt_fraction_ACCESS-ESM1-5_historical_2013_2014.png b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/plots/fire_evaluation/fire_evaluation/burnt_fraction_ACCESS-ESM1-5_historical_2013_2014.png new file mode 100644 index 000000000..03a716890 Binary files /dev/null and b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/plots/fire_evaluation/fire_evaluation/burnt_fraction_ACCESS-ESM1-5_historical_2013_2014.png differ diff --git a/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/plots/fire_evaluation/fire_evaluation/burnt_fraction_ACCESS-ESM1-5_historical_2013_2014_citation.bibtex b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/plots/fire_evaluation/fire_evaluation/burnt_fraction_ACCESS-ESM1-5_historical_2013_2014_citation.bibtex new file mode 100644 index 000000000..3aa17cfb6 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/plots/fire_evaluation/fire_evaluation/burnt_fraction_ACCESS-ESM1-5_historical_2013_2014_citation.bibtex @@ -0,0 +1,22 @@ +@article{righi20gmd, + doi = {10.5194/gmd-13-1179-2020}, + url = {https://doi.org/10.5194/gmd-13-1179-2020}, + year = {2020}, + month = mar, + publisher = {Copernicus {GmbH}}, + volume = {13}, + number = {3}, + pages = {1179--1199}, + author = {Mattia Righi and Bouwe Andela and Veronika Eyring and Axel Lauer and Valeriu Predoi and Manuel Schlund and Javier Vegas-Regidor and Lisa Bock and Bj"{o}rn Br"{o}tz and Lee de Mora and Faruk Diblen and Laura Dreyer and Niels Drost and Paul Earnshaw and Birgit Hassler and Nikolay Koldunov and Bill Little and Saskia Loosveldt Tomas and Klaus Zimmermann}, + title = {Earth System Model Evaluation Tool (ESMValTool) v2.0 -- technical overview}, + journal = {Geoscientific Model Development} +} + +@misc{https://doi.org/10.22033/ESGF/CMIP6.4272, + url = {https://doi.org/10.22033/ESGF/CMIP6.4272}, + title = {CSIRO ACCESS-ESM1.5 model output prepared for CMIP6 CMIP historical}, + publisher = {Earth System Grid Federation}, + year = 2019, + author = {Ziehn, Tilo and Chamberlain, Matthew and Lenton, Andrew and Law, Rachel and Bodman, Roger and Dix, Martin and Wang, Yingping and Dobrohotoff, Peter and Srbinovsky, Jhan and Stevens, Lauren and Vohralik, Peter and Mackallah, Chloe and Sullivan, Arnold and O'Farrell, Siobhan and Druken, Kelsey}, + doi = {10.22033/ESGF/CMIP6.4272}, +} diff --git a/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/plots/fire_evaluation/fire_evaluation/burnt_fraction_ACCESS-ESM1-5_historical_2013_2014_data_citation_info.txt b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/plots/fire_evaluation/fire_evaluation/burnt_fraction_ACCESS-ESM1-5_historical_2013_2014_data_citation_info.txt new file mode 100644 index 000000000..75dcd84a9 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/plots/fire_evaluation/fire_evaluation/burnt_fraction_ACCESS-ESM1-5_historical_2013_2014_data_citation_info.txt @@ -0,0 +1,2 @@ +Follow the links below to find more information about CMIP6 data: +- https://cera-www.dkrz.de/WDCC/ui/cerasearch/cmip6?input=CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical diff --git a/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/plots/fire_evaluation/fire_evaluation/burnt_fraction_ACCESS-ESM1-5_historical_2013_2014_provenance.xml b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/plots/fire_evaluation/fire_evaluation/burnt_fraction_ACCESS-ESM1-5_historical_2013_2014_provenance.xml new file mode 100644 index 000000000..408303773 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/plots/fire_evaluation/fire_evaluation/burnt_fraction_ACCESS-ESM1-5_historical_2013_2014_provenance.xml @@ -0,0 +1,876 @@ + + + + + + + + CMIP + ACCESS-ESM1-5 + ACCESS-ESM1-5 + fire_evaluation + 2014 + r1i1p1f1 + historical + /executions/recipe_20250904_145222/preproc/fire_evaluation/hurs/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_hurs_gn_20130116T120000-20141216T120000.nc + mon + gn + CSIRO + Near-Surface Relative Humidity + Amon + ['atmos'] + hurs + preproc + CMIP6 + 0 + hurs + relative_humidity + 2013 + 20130116T120000/20141216T120000 + % + hurs + v20191115 + {'mask_out': 'sea'} + {'target_grid': '2.5x2.5', 'scheme': 'nearest'} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250904_145222/preproc/fire_evaluation/hurs/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_hurs_gn_20130116T120000-20141216T120000.nc')} + + + + + + + + + + + + + + + + + SMHI, Sweden + https://orcid.org/0000-0002-9949-3989 + + + + + + + + Burnt area fraction for the ACCESS-ESM1-5 (CMIP6-historical) for the time period 20130116T120000/20141216T120000 as computed with the ConFire model (Jones et al., 2024). + https://zenodo.org/records/14917245 + historical + ACCESS-ESM1-5 + CMIP6 + True + tcp://127.0.0.1:44557 + fire_evaluation + fire/fire_diagnostic.py + 20130116T120000/20141216T120000 + ['pr', 'tasmax', 'treeFrac', 'vegFrac', 'vpd', 'cVeg'] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2019-11-15T12:50:49Z + 01.00.30 + all-forcing simulation of the recent past + historical + areacella + 1 + mon + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2019-11-15T12:50:49Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards. + 1 + Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia + CSIRO + CMIP6 model data produced by CSIRO is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (https://creativecommons.org/licenses/). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law. + CMIP6 + 250 km + Exp: ESM-historical; Local ID: HI-05; Variable: treeFrac (['fld_s03i317']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + land + forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, CFC113, HCFC22, HFC125, HFC134a) + ACCESS-ESM1.5 (2019): +aerosol: CLASSIC (v1.0) +atmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m) +atmosChem: none +land: CABLE2.4 +landIce: none +ocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m) +ocnBgchem: WOMBAT (same grid as ocean) +seaIce: CICE4.1 (same grid as ocean) + ACCESS-ESM1-5 + AOGCM + none + none + Lmon + Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/f180b88a-43c0-412c-9a56-c742459e9efe + treeFrac + r1i1p1f1 + v20191115 + + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2019-11-15T04:32:57Z + 01.00.30 + all-forcing simulation of the recent past + historical + areacella + 1 + mon + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2019-11-15T04:32:57Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards. + 1 + Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia + CSIRO + CMIP6 model data produced by CSIRO is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (https://creativecommons.org/licenses/). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law. + CMIP6 + 250 km + Exp: ESM-historical; Local ID: HI-05; Variable: hurs (['fld_s03i245']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + atmos + forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, CFC113, HCFC22, HFC125, HFC134a) + ACCESS-ESM1.5 (2019): +aerosol: CLASSIC (v1.0) +atmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m) +atmosChem: none +land: CABLE2.4 +landIce: none +ocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m) +ocnBgchem: WOMBAT (same grid as ocean) +seaIce: CICE4.1 (same grid as ocean) + ACCESS-ESM1-5 + AOGCM + none + none + Amon + Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/2a85fe34-e61e-4d23-87d1-742aa8be6142 + hurs + r1i1p1f1 + v20191115 + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2019-11-15T04:32:57Z + 01.00.30 + all-forcing simulation of the recent past + historical + areacella + 1 + mon + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2019-11-15T04:32:57Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards. + 1 + Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia + CSIRO + CMIP6 model data produced by CSIRO is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (https://creativecommons.org/licenses/). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law. + CMIP6 + 250 km + Exp: ESM-historical; Local ID: HI-05; Variable: pr (['fld_s05i216']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + atmos + forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, CFC113, HCFC22, HFC125, HFC134a) + ACCESS-ESM1.5 (2019): +aerosol: CLASSIC (v1.0) +atmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m) +atmosChem: none +land: CABLE2.4 +landIce: none +ocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m) +ocnBgchem: WOMBAT (same grid as ocean) +seaIce: CICE4.1 (same grid as ocean) + ACCESS-ESM1-5 + AOGCM + none + none + Amon + Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/e1bc1d0d-54d8-4a7f-adae-d3f6324a2366 + pr + r1i1p1f1 + v20191115 + + + UKCEH, UK + https://orcid.org/0000-0003-1413-4969 + + + + + + + + + + + + + + + + + + CMIP + ACCESS-ESM1-5 + ACCESS-ESM1-5 + fire_evaluation + 2014 + r1i1p1f1 + historical + /executions/recipe_20250904_145222/preproc/fire_evaluation/pr/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_pr_gn_20130116T120000-20141216T120000.nc + mon + gn + CSIRO + Precipitation + Amon + ['atmos'] + pr + preproc + CMIP6 + 0 + pr + precipitation_flux + 2013 + 20130116T120000/20141216T120000 + kg m-2 s-1 + pr + v20191115 + {'mask_out': 'sea'} + {'target_grid': '2.5x2.5', 'scheme': 'nearest'} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250904_145222/preproc/fire_evaluation/pr/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_pr_gn_20130116T120000-20141216T120000.nc')} + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2019-11-15T03:52:25Z + 01.00.30 + all-forcing simulation of the recent past + historical + areacella + 1 + mon + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2019-11-15T03:52:25Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards. + 1 + Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia + CSIRO + CMIP6 model data produced by CSIRO is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (https://creativecommons.org/licenses/). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law. + CMIP6 + 250 km + Exp: ESM-historical; Local ID: HI-05; Variable: tas (['fld_s03i236']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + atmos + forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, CFC113, HCFC22, HFC125, HFC134a) + ACCESS-ESM1.5 (2019): +aerosol: CLASSIC (v1.0) +atmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m) +atmosChem: none +land: CABLE2.4 +landIce: none +ocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m) +ocnBgchem: WOMBAT (same grid as ocean) +seaIce: CICE4.1 (same grid as ocean) + ACCESS-ESM1-5 + AOGCM + none + none + Amon + Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/d2debfa6-c0e2-4339-bac8-08d97867ae3a + tas + r1i1p1f1 + v20191115 + + + + + + + + + + + + + + + + + + + + + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2019-11-15T17:53:23Z + 01.00.30 + all-forcing simulation of the recent past + historical + areacella + 1 + fx + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2019-11-15T17:53:23Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards. + 1 + Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia + CSIRO + CMIP6 model data produced by CSIRO is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (https://creativecommons.org/licenses/). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law. + CMIP6 + 250 km + Exp: ESM-historical; Local ID: HI-05; Variable: sftlf (['fld_s03i395']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + atmos + forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, CFC113, HCFC22, HFC125, HFC134a) + ACCESS-ESM1.5 (2019): +aerosol: CLASSIC (v1.0) +atmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m) +atmosChem: none +land: CABLE2.4 +landIce: none +ocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m) +ocnBgchem: WOMBAT (same grid as ocean) +seaIce: CICE4.1 (same grid as ocean) + ACCESS-ESM1-5 + AOGCM + none + none + fx + Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/df560bac-0f00-461e-8e3c-640b17bfacfc + sftlf + r1i1p1f1 + v20191115 + + + + + + + + + + + + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2019-11-15T03:55:51Z + 01.00.30 + all-forcing simulation of the recent past + historical + areacella + 1 + mon + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2019-11-15T03:55:51Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards. + 1 + Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia + CSIRO + CMIP6 model data produced by CSIRO is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (https://creativecommons.org/licenses/). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law. + CMIP6 + 250 km + Exp: ESM-historical; Local ID: HI-05; Variable: tasmax (['fld_s03i236_max']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + atmos + forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, CFC113, HCFC22, HFC125, HFC134a) + ACCESS-ESM1.5 (2019): +aerosol: CLASSIC (v1.0) +atmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m) +atmosChem: none +land: CABLE2.4 +landIce: none +ocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m) +ocnBgchem: WOMBAT (same grid as ocean) +seaIce: CICE4.1 (same grid as ocean) + ACCESS-ESM1-5 + AOGCM + none + none + Amon + Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/49cd3d81-3ba4-4565-a3fe-f0dd1af93231 + tasmax + r1i1p1f1 + v20191115 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + CMIP + ACCESS-ESM1-5 + ACCESS-ESM1-5 + fire_evaluation + 2014 + r1i1p1f1 + historical + /executions/recipe_20250904_145222/preproc/fire_evaluation/cVeg/CMIP6_ACCESS-ESM1-5_Lmon_historical_r1i1p1f1_cVeg_gn_20130116T120000-20141216T120000.nc + mon + gn + CSIRO + Carbon Mass in Vegetation + Lmon + ['land'] + cVeg + preproc + CMIP6 + 0 + cVeg + vegetation_carbon_content + 2013 + 20130116T120000/20141216T120000 + kg m-2 + cVeg + v20191115 + {'mask_out': 'sea'} + {'target_grid': '2.5x2.5', 'scheme': 'nearest'} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250904_145222/preproc/fire_evaluation/cVeg/CMIP6_ACCESS-ESM1-5_Lmon_historical_r1i1p1f1_cVeg_gn_20130116T120000-20141216T120000.nc')} + + + + + + + + CMIP + ACCESS-ESM1-5 + ACCESS-ESM1-5 + fire_evaluation + 2014 + r1i1p1f1 + historical + /executions/recipe_20250904_145222/preproc/fire_evaluation/vegFrac/CMIP6_ACCESS-ESM1-5_Emon_historical_r1i1p1f1_vegFrac_gn_20130116T120000-20141216T120000.nc + mon + gn + CSIRO + Total Vegetated Percentage Cover + Emon + ['land'] + vegFrac + preproc_fraction + CMIP6 + 0 + vegFrac + area_fraction + 2013 + 20130116T120000/20141216T120000 + % + vegFrac + v20191115 + {'units': 1} + {'mask_out': 'sea'} + {'target_grid': '2.5x2.5', 'scheme': 'nearest'} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250904_145222/preproc/fire_evaluation/vegFrac/CMIP6_ACCESS-ESM1-5_Emon_historical_r1i1p1f1_vegFrac_gn_20130116T120000-20141216T120000.nc')} + + + CMIP + ACCESS-ESM1-5 + ACCESS-ESM1-5 + fire_evaluation + 2014 + r1i1p1f1 + historical + /executions/recipe_20250904_145222/preproc/fire_evaluation/treeFrac/CMIP6_ACCESS-ESM1-5_Lmon_historical_r1i1p1f1_treeFrac_gn_20130116T120000-20141216T120000.nc + mon + gn + CSIRO + Tree Cover Percentage + Lmon + ['land'] + treeFrac + preproc_fraction + CMIP6 + 0 + treeFrac + area_fraction + 2013 + 20130116T120000/20141216T120000 + % + treeFrac + v20191115 + {'units': 1} + {'mask_out': 'sea'} + {'target_grid': '2.5x2.5', 'scheme': 'nearest'} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250904_145222/preproc/fire_evaluation/treeFrac/CMIP6_ACCESS-ESM1-5_Lmon_historical_r1i1p1f1_treeFrac_gn_20130116T120000-20141216T120000.nc')} + + + Recipe that plots diagnostics regarding climate drivers for fire. +The diagnostic uses code for the ConFire model from the following GitHub repository: +https://github.com/douglask3/Bayesian_fire_models/tree/AR7_REF + + [] + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2019-11-15T13:20:16Z + 01.00.30 + all-forcing simulation of the recent past + historical + areacella + 1 + mon + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2019-11-15T13:20:16Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards. + 1 + Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia + CSIRO + CMIP6 model data produced by CSIRO is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (https://creativecommons.org/licenses/). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law. + CMIP6 + 250 km + Exp: ESM-historical; Local ID: HI-05; Variable: cVeg (['fld_s03i852', 'fld_s03i853', 'fld_s03i854', 'fld_s03i317']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + land + forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, CFC113, HCFC22, HFC125, HFC134a) + ACCESS-ESM1.5 (2019): +aerosol: CLASSIC (v1.0) +atmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m) +atmosChem: none +land: CABLE2.4 +landIce: none +ocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m) +ocnBgchem: WOMBAT (same grid as ocean) +seaIce: CICE4.1 (same grid as ocean) + ACCESS-ESM1-5 + AOGCM + none + none + Lmon + Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/91588af3-960f-49bd-8232-0e17bfa8796f + cVeg + r1i1p1f1 + v20191115 + + + + + + + + + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2019-11-15T10:46:32Z + 01.00.30 + all-forcing simulation of the recent past + historical + areacella + 1 + mon + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2019-11-15T10:46:32Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards. + 1 + Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia + CSIRO + CMIP6 model data produced by CSIRO is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (https://creativecommons.org/licenses/). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law. + CMIP6 + 250 km + Exp: ESM-historical; Local ID: HI-05; Variable: vegFrac (['fld_s03i317']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + land + forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, CFC113, HCFC22, HFC125, HFC134a) + ACCESS-ESM1.5 (2019): +aerosol: CLASSIC (v1.0) +atmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m) +atmosChem: none +land: CABLE2.4 +landIce: none +ocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m) +ocnBgchem: WOMBAT (same grid as ocean) +seaIce: CICE4.1 (same grid as ocean) + ACCESS-ESM1-5 + AOGCM + none + none + Emon + Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/c12b42a0-32f2-48ec-8376-a49df38f6300 + vegFrac + r1i1p1f1 + v20191115 + + + + + + + + + CMIP + ACCESS-ESM1-5 + ACCESS-ESM1-5 + fire_evaluation + 2014 + r1i1p1f1 + historical + /executions/recipe_20250904_145222/preproc/fire_evaluation/tasmax/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tasmax_gn_20130116T120000-20141216T120000.nc + mon + gn + CSIRO + Daily Maximum Near-Surface Air Temperature + Amon + ['atmos'] + tasmax + preproc + CMIP6 + 0 + tasmax + air_temperature + 2013 + 20130116T120000/20141216T120000 + K + tasmax + v20191115 + {'mask_out': 'sea'} + {'target_grid': '2.5x2.5', 'scheme': 'nearest'} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250904_145222/preproc/fire_evaluation/tasmax/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tasmax_gn_20130116T120000-20141216T120000.nc')} + + + CMIP + ACCESS-ESM1-5 + ACCESS-ESM1-5 + fire_evaluation + 2014 + r1i1p1f1 + historical + /executions/recipe_20250904_145222/preproc/fire_evaluation/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_20130116T120000-20141216T120000.nc + mon + gn + CSIRO + Near-Surface Air Temperature + Amon + ['atmos'] + tas + preproc + CMIP6 + 0 + tas + air_temperature + 2013 + 20130116T120000/20141216T120000 + K + tas + v20191115 + {'mask_out': 'sea'} + {'target_grid': '2.5x2.5', 'scheme': 'nearest'} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250904_145222/preproc/fire_evaluation/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_20130116T120000-20141216T120000.nc')} + + + + + + + + + + + diff --git a/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/plots/fire_evaluation/fire_evaluation/fire_weather_control_ACCESS-ESM1-5_historical_2013_2014.png b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/plots/fire_evaluation/fire_evaluation/fire_weather_control_ACCESS-ESM1-5_historical_2013_2014.png new file mode 100644 index 000000000..67333ed0e Binary files /dev/null and b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/plots/fire_evaluation/fire_evaluation/fire_weather_control_ACCESS-ESM1-5_historical_2013_2014.png differ diff --git a/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/plots/fire_evaluation/fire_evaluation/fire_weather_control_ACCESS-ESM1-5_historical_2013_2014_citation.bibtex b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/plots/fire_evaluation/fire_evaluation/fire_weather_control_ACCESS-ESM1-5_historical_2013_2014_citation.bibtex new file mode 100644 index 000000000..3aa17cfb6 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/plots/fire_evaluation/fire_evaluation/fire_weather_control_ACCESS-ESM1-5_historical_2013_2014_citation.bibtex @@ -0,0 +1,22 @@ +@article{righi20gmd, + doi = {10.5194/gmd-13-1179-2020}, + url = {https://doi.org/10.5194/gmd-13-1179-2020}, + year = {2020}, + month = mar, + publisher = {Copernicus {GmbH}}, + volume = {13}, + number = {3}, + pages = {1179--1199}, + author = {Mattia Righi and Bouwe Andela and Veronika Eyring and Axel Lauer and Valeriu Predoi and Manuel Schlund and Javier Vegas-Regidor and Lisa Bock and Bj"{o}rn Br"{o}tz and Lee de Mora and Faruk Diblen and Laura Dreyer and Niels Drost and Paul Earnshaw and Birgit Hassler and Nikolay Koldunov and Bill Little and Saskia Loosveldt Tomas and Klaus Zimmermann}, + title = {Earth System Model Evaluation Tool (ESMValTool) v2.0 -- technical overview}, + journal = {Geoscientific Model Development} +} + +@misc{https://doi.org/10.22033/ESGF/CMIP6.4272, + url = {https://doi.org/10.22033/ESGF/CMIP6.4272}, + title = {CSIRO ACCESS-ESM1.5 model output prepared for CMIP6 CMIP historical}, + publisher = {Earth System Grid Federation}, + year = 2019, + author = {Ziehn, Tilo and Chamberlain, Matthew and Lenton, Andrew and Law, Rachel and Bodman, Roger and Dix, Martin and Wang, Yingping and Dobrohotoff, Peter and Srbinovsky, Jhan and Stevens, Lauren and Vohralik, Peter and Mackallah, Chloe and Sullivan, Arnold and O'Farrell, Siobhan and Druken, Kelsey}, + doi = {10.22033/ESGF/CMIP6.4272}, +} diff --git a/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/plots/fire_evaluation/fire_evaluation/fire_weather_control_ACCESS-ESM1-5_historical_2013_2014_data_citation_info.txt b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/plots/fire_evaluation/fire_evaluation/fire_weather_control_ACCESS-ESM1-5_historical_2013_2014_data_citation_info.txt new file mode 100644 index 000000000..75dcd84a9 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/plots/fire_evaluation/fire_evaluation/fire_weather_control_ACCESS-ESM1-5_historical_2013_2014_data_citation_info.txt @@ -0,0 +1,2 @@ +Follow the links below to find more information about CMIP6 data: +- https://cera-www.dkrz.de/WDCC/ui/cerasearch/cmip6?input=CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical diff --git a/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/plots/fire_evaluation/fire_evaluation/fire_weather_control_ACCESS-ESM1-5_historical_2013_2014_provenance.xml b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/plots/fire_evaluation/fire_evaluation/fire_weather_control_ACCESS-ESM1-5_historical_2013_2014_provenance.xml new file mode 100644 index 000000000..ee9bcc409 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/plots/fire_evaluation/fire_evaluation/fire_weather_control_ACCESS-ESM1-5_historical_2013_2014_provenance.xml @@ -0,0 +1,876 @@ + + + + + + + + + + + + + CMIP + ACCESS-ESM1-5 + ACCESS-ESM1-5 + fire_evaluation + 2014 + r1i1p1f1 + historical + /executions/recipe_20250904_145222/preproc/fire_evaluation/hurs/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_hurs_gn_20130116T120000-20141216T120000.nc + mon + gn + CSIRO + Near-Surface Relative Humidity + Amon + ['atmos'] + hurs + preproc + CMIP6 + 0 + hurs + relative_humidity + 2013 + 20130116T120000/20141216T120000 + % + hurs + v20191115 + {'mask_out': 'sea'} + {'target_grid': '2.5x2.5', 'scheme': 'nearest'} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250904_145222/preproc/fire_evaluation/hurs/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_hurs_gn_20130116T120000-20141216T120000.nc')} + + + + + + + + SMHI, Sweden + https://orcid.org/0000-0002-9949-3989 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2019-11-15T12:50:49Z + 01.00.30 + all-forcing simulation of the recent past + historical + areacella + 1 + mon + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2019-11-15T12:50:49Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards. + 1 + Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia + CSIRO + CMIP6 model data produced by CSIRO is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (https://creativecommons.org/licenses/). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law. + CMIP6 + 250 km + Exp: ESM-historical; Local ID: HI-05; Variable: treeFrac (['fld_s03i317']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + land + forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, CFC113, HCFC22, HFC125, HFC134a) + ACCESS-ESM1.5 (2019): +aerosol: CLASSIC (v1.0) +atmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m) +atmosChem: none +land: CABLE2.4 +landIce: none +ocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m) +ocnBgchem: WOMBAT (same grid as ocean) +seaIce: CICE4.1 (same grid as ocean) + ACCESS-ESM1-5 + AOGCM + none + none + Lmon + Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/f180b88a-43c0-412c-9a56-c742459e9efe + treeFrac + r1i1p1f1 + v20191115 + + + + + + + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2019-11-15T04:32:57Z + 01.00.30 + all-forcing simulation of the recent past + historical + areacella + 1 + mon + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2019-11-15T04:32:57Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards. + 1 + Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia + CSIRO + CMIP6 model data produced by CSIRO is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (https://creativecommons.org/licenses/). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law. + CMIP6 + 250 km + Exp: ESM-historical; Local ID: HI-05; Variable: hurs (['fld_s03i245']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + atmos + forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, CFC113, HCFC22, HFC125, HFC134a) + ACCESS-ESM1.5 (2019): +aerosol: CLASSIC (v1.0) +atmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m) +atmosChem: none +land: CABLE2.4 +landIce: none +ocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m) +ocnBgchem: WOMBAT (same grid as ocean) +seaIce: CICE4.1 (same grid as ocean) + ACCESS-ESM1-5 + AOGCM + none + none + Amon + Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/2a85fe34-e61e-4d23-87d1-742aa8be6142 + hurs + r1i1p1f1 + v20191115 + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2019-11-15T04:32:57Z + 01.00.30 + all-forcing simulation of the recent past + historical + areacella + 1 + mon + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2019-11-15T04:32:57Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards. + 1 + Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia + CSIRO + CMIP6 model data produced by CSIRO is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (https://creativecommons.org/licenses/). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law. + CMIP6 + 250 km + Exp: ESM-historical; Local ID: HI-05; Variable: pr (['fld_s05i216']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + atmos + forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, CFC113, HCFC22, HFC125, HFC134a) + ACCESS-ESM1.5 (2019): +aerosol: CLASSIC (v1.0) +atmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m) +atmosChem: none +land: CABLE2.4 +landIce: none +ocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m) +ocnBgchem: WOMBAT (same grid as ocean) +seaIce: CICE4.1 (same grid as ocean) + ACCESS-ESM1-5 + AOGCM + none + none + Amon + Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/e1bc1d0d-54d8-4a7f-adae-d3f6324a2366 + pr + r1i1p1f1 + v20191115 + + + UKCEH, UK + https://orcid.org/0000-0003-1413-4969 + + + + + + + + + + + + + + + + + + CMIP + ACCESS-ESM1-5 + ACCESS-ESM1-5 + fire_evaluation + 2014 + r1i1p1f1 + historical + /executions/recipe_20250904_145222/preproc/fire_evaluation/pr/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_pr_gn_20130116T120000-20141216T120000.nc + mon + gn + CSIRO + Precipitation + Amon + ['atmos'] + pr + preproc + CMIP6 + 0 + pr + precipitation_flux + 2013 + 20130116T120000/20141216T120000 + kg m-2 s-1 + pr + v20191115 + {'mask_out': 'sea'} + {'target_grid': '2.5x2.5', 'scheme': 'nearest'} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250904_145222/preproc/fire_evaluation/pr/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_pr_gn_20130116T120000-20141216T120000.nc')} + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2019-11-15T03:52:25Z + 01.00.30 + all-forcing simulation of the recent past + historical + areacella + 1 + mon + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2019-11-15T03:52:25Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards. + 1 + Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia + CSIRO + CMIP6 model data produced by CSIRO is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (https://creativecommons.org/licenses/). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law. + CMIP6 + 250 km + Exp: ESM-historical; Local ID: HI-05; Variable: tas (['fld_s03i236']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + atmos + forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, CFC113, HCFC22, HFC125, HFC134a) + ACCESS-ESM1.5 (2019): +aerosol: CLASSIC (v1.0) +atmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m) +atmosChem: none +land: CABLE2.4 +landIce: none +ocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m) +ocnBgchem: WOMBAT (same grid as ocean) +seaIce: CICE4.1 (same grid as ocean) + ACCESS-ESM1-5 + AOGCM + none + none + Amon + Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/d2debfa6-c0e2-4339-bac8-08d97867ae3a + tas + r1i1p1f1 + v20191115 + + + + + + + + + + + + + + + + + + + + + + + + + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2019-11-15T17:53:23Z + 01.00.30 + all-forcing simulation of the recent past + historical + areacella + 1 + fx + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2019-11-15T17:53:23Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards. + 1 + Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia + CSIRO + CMIP6 model data produced by CSIRO is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (https://creativecommons.org/licenses/). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law. + CMIP6 + 250 km + Exp: ESM-historical; Local ID: HI-05; Variable: sftlf (['fld_s03i395']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + atmos + forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, CFC113, HCFC22, HFC125, HFC134a) + ACCESS-ESM1.5 (2019): +aerosol: CLASSIC (v1.0) +atmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m) +atmosChem: none +land: CABLE2.4 +landIce: none +ocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m) +ocnBgchem: WOMBAT (same grid as ocean) +seaIce: CICE4.1 (same grid as ocean) + ACCESS-ESM1-5 + AOGCM + none + none + fx + Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/df560bac-0f00-461e-8e3c-640b17bfacfc + sftlf + r1i1p1f1 + v20191115 + + + + + + + + + + + + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2019-11-15T03:55:51Z + 01.00.30 + all-forcing simulation of the recent past + historical + areacella + 1 + mon + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2019-11-15T03:55:51Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards. + 1 + Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia + CSIRO + CMIP6 model data produced by CSIRO is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (https://creativecommons.org/licenses/). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law. + CMIP6 + 250 km + Exp: ESM-historical; Local ID: HI-05; Variable: tasmax (['fld_s03i236_max']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + atmos + forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, CFC113, HCFC22, HFC125, HFC134a) + ACCESS-ESM1.5 (2019): +aerosol: CLASSIC (v1.0) +atmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m) +atmosChem: none +land: CABLE2.4 +landIce: none +ocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m) +ocnBgchem: WOMBAT (same grid as ocean) +seaIce: CICE4.1 (same grid as ocean) + ACCESS-ESM1-5 + AOGCM + none + none + Amon + Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/49cd3d81-3ba4-4565-a3fe-f0dd1af93231 + tasmax + r1i1p1f1 + v20191115 + + + + + + + + + + + + + + + + + + + + + + + + + + + + CMIP + ACCESS-ESM1-5 + ACCESS-ESM1-5 + fire_evaluation + 2014 + r1i1p1f1 + historical + /executions/recipe_20250904_145222/preproc/fire_evaluation/cVeg/CMIP6_ACCESS-ESM1-5_Lmon_historical_r1i1p1f1_cVeg_gn_20130116T120000-20141216T120000.nc + mon + gn + CSIRO + Carbon Mass in Vegetation + Lmon + ['land'] + cVeg + preproc + CMIP6 + 0 + cVeg + vegetation_carbon_content + 2013 + 20130116T120000/20141216T120000 + kg m-2 + cVeg + v20191115 + {'mask_out': 'sea'} + {'target_grid': '2.5x2.5', 'scheme': 'nearest'} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250904_145222/preproc/fire_evaluation/cVeg/CMIP6_ACCESS-ESM1-5_Lmon_historical_r1i1p1f1_cVeg_gn_20130116T120000-20141216T120000.nc')} + + + + + + + + CMIP + ACCESS-ESM1-5 + ACCESS-ESM1-5 + fire_evaluation + 2014 + r1i1p1f1 + historical + /executions/recipe_20250904_145222/preproc/fire_evaluation/vegFrac/CMIP6_ACCESS-ESM1-5_Emon_historical_r1i1p1f1_vegFrac_gn_20130116T120000-20141216T120000.nc + mon + gn + CSIRO + Total Vegetated Percentage Cover + Emon + ['land'] + vegFrac + preproc_fraction + CMIP6 + 0 + vegFrac + area_fraction + 2013 + 20130116T120000/20141216T120000 + % + vegFrac + v20191115 + {'units': 1} + {'mask_out': 'sea'} + {'target_grid': '2.5x2.5', 'scheme': 'nearest'} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250904_145222/preproc/fire_evaluation/vegFrac/CMIP6_ACCESS-ESM1-5_Emon_historical_r1i1p1f1_vegFrac_gn_20130116T120000-20141216T120000.nc')} + + + CMIP + ACCESS-ESM1-5 + ACCESS-ESM1-5 + fire_evaluation + 2014 + r1i1p1f1 + historical + /executions/recipe_20250904_145222/preproc/fire_evaluation/treeFrac/CMIP6_ACCESS-ESM1-5_Lmon_historical_r1i1p1f1_treeFrac_gn_20130116T120000-20141216T120000.nc + mon + gn + CSIRO + Tree Cover Percentage + Lmon + ['land'] + treeFrac + preproc_fraction + CMIP6 + 0 + treeFrac + area_fraction + 2013 + 20130116T120000/20141216T120000 + % + treeFrac + v20191115 + {'units': 1} + {'mask_out': 'sea'} + {'target_grid': '2.5x2.5', 'scheme': 'nearest'} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250904_145222/preproc/fire_evaluation/treeFrac/CMIP6_ACCESS-ESM1-5_Lmon_historical_r1i1p1f1_treeFrac_gn_20130116T120000-20141216T120000.nc')} + + + Recipe that plots diagnostics regarding climate drivers for fire. +The diagnostic uses code for the ConFire model from the following GitHub repository: +https://github.com/douglask3/Bayesian_fire_models/tree/AR7_REF + + [] + + + Fire weather control for the ACCESS-ESM1-5 (CMIP6-historical) for the time period 20130116T120000/20141216T120000 as computed with the ConFire model (Jones et al., 2024). + https://zenodo.org/records/14917245 + historical + ACCESS-ESM1-5 + CMIP6 + True + tcp://127.0.0.1:44557 + fire_evaluation + fire/fire_diagnostic.py + 20130116T120000/20141216T120000 + ['pr', 'tasmax', 'treeFrac', 'vegFrac', 'vpd', 'cVeg'] + + + + + + + + + + + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2019-11-15T13:20:16Z + 01.00.30 + all-forcing simulation of the recent past + historical + areacella + 1 + mon + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2019-11-15T13:20:16Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards. + 1 + Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia + CSIRO + CMIP6 model data produced by CSIRO is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (https://creativecommons.org/licenses/). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law. + CMIP6 + 250 km + Exp: ESM-historical; Local ID: HI-05; Variable: cVeg (['fld_s03i852', 'fld_s03i853', 'fld_s03i854', 'fld_s03i317']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + land + forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, CFC113, HCFC22, HFC125, HFC134a) + ACCESS-ESM1.5 (2019): +aerosol: CLASSIC (v1.0) +atmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m) +atmosChem: none +land: CABLE2.4 +landIce: none +ocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m) +ocnBgchem: WOMBAT (same grid as ocean) +seaIce: CICE4.1 (same grid as ocean) + ACCESS-ESM1-5 + AOGCM + none + none + Lmon + Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/91588af3-960f-49bd-8232-0e17bfa8796f + cVeg + r1i1p1f1 + v20191115 + + + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2019-11-15T10:46:32Z + 01.00.30 + all-forcing simulation of the recent past + historical + areacella + 1 + mon + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2019-11-15T10:46:32Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards. + 1 + Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia + CSIRO + CMIP6 model data produced by CSIRO is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (https://creativecommons.org/licenses/). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law. + CMIP6 + 250 km + Exp: ESM-historical; Local ID: HI-05; Variable: vegFrac (['fld_s03i317']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + land + forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, CFC113, HCFC22, HFC125, HFC134a) + ACCESS-ESM1.5 (2019): +aerosol: CLASSIC (v1.0) +atmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m) +atmosChem: none +land: CABLE2.4 +landIce: none +ocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m) +ocnBgchem: WOMBAT (same grid as ocean) +seaIce: CICE4.1 (same grid as ocean) + ACCESS-ESM1-5 + AOGCM + none + none + Emon + Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/c12b42a0-32f2-48ec-8376-a49df38f6300 + vegFrac + r1i1p1f1 + v20191115 + + + + + + + + + + + + + + CMIP + ACCESS-ESM1-5 + ACCESS-ESM1-5 + fire_evaluation + 2014 + r1i1p1f1 + historical + /executions/recipe_20250904_145222/preproc/fire_evaluation/tasmax/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tasmax_gn_20130116T120000-20141216T120000.nc + mon + gn + CSIRO + Daily Maximum Near-Surface Air Temperature + Amon + ['atmos'] + tasmax + preproc + CMIP6 + 0 + tasmax + air_temperature + 2013 + 20130116T120000/20141216T120000 + K + tasmax + v20191115 + {'mask_out': 'sea'} + {'target_grid': '2.5x2.5', 'scheme': 'nearest'} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250904_145222/preproc/fire_evaluation/tasmax/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tasmax_gn_20130116T120000-20141216T120000.nc')} + + + CMIP + ACCESS-ESM1-5 + ACCESS-ESM1-5 + fire_evaluation + 2014 + r1i1p1f1 + historical + /executions/recipe_20250904_145222/preproc/fire_evaluation/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_20130116T120000-20141216T120000.nc + mon + gn + CSIRO + Near-Surface Air Temperature + Amon + ['atmos'] + tas + preproc + CMIP6 + 0 + tas + air_temperature + 2013 + 20130116T120000/20141216T120000 + K + tas + v20191115 + {'mask_out': 'sea'} + {'target_grid': '2.5x2.5', 'scheme': 'nearest'} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250904_145222/preproc/fire_evaluation/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_20130116T120000-20141216T120000.nc')} + + + + + + + + + + + + diff --git a/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/plots/fire_evaluation/fire_evaluation/fuel_load_continuity_control_ACCESS-ESM1-5_historical_2013_2014.png b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/plots/fire_evaluation/fire_evaluation/fuel_load_continuity_control_ACCESS-ESM1-5_historical_2013_2014.png new file mode 100644 index 000000000..72b03a691 Binary files /dev/null and b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/plots/fire_evaluation/fire_evaluation/fuel_load_continuity_control_ACCESS-ESM1-5_historical_2013_2014.png differ diff --git a/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/plots/fire_evaluation/fire_evaluation/fuel_load_continuity_control_ACCESS-ESM1-5_historical_2013_2014_citation.bibtex b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/plots/fire_evaluation/fire_evaluation/fuel_load_continuity_control_ACCESS-ESM1-5_historical_2013_2014_citation.bibtex new file mode 100644 index 000000000..3aa17cfb6 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/plots/fire_evaluation/fire_evaluation/fuel_load_continuity_control_ACCESS-ESM1-5_historical_2013_2014_citation.bibtex @@ -0,0 +1,22 @@ +@article{righi20gmd, + doi = {10.5194/gmd-13-1179-2020}, + url = {https://doi.org/10.5194/gmd-13-1179-2020}, + year = {2020}, + month = mar, + publisher = {Copernicus {GmbH}}, + volume = {13}, + number = {3}, + pages = {1179--1199}, + author = {Mattia Righi and Bouwe Andela and Veronika Eyring and Axel Lauer and Valeriu Predoi and Manuel Schlund and Javier Vegas-Regidor and Lisa Bock and Bj"{o}rn Br"{o}tz and Lee de Mora and Faruk Diblen and Laura Dreyer and Niels Drost and Paul Earnshaw and Birgit Hassler and Nikolay Koldunov and Bill Little and Saskia Loosveldt Tomas and Klaus Zimmermann}, + title = {Earth System Model Evaluation Tool (ESMValTool) v2.0 -- technical overview}, + journal = {Geoscientific Model Development} +} + +@misc{https://doi.org/10.22033/ESGF/CMIP6.4272, + url = {https://doi.org/10.22033/ESGF/CMIP6.4272}, + title = {CSIRO ACCESS-ESM1.5 model output prepared for CMIP6 CMIP historical}, + publisher = {Earth System Grid Federation}, + year = 2019, + author = {Ziehn, Tilo and Chamberlain, Matthew and Lenton, Andrew and Law, Rachel and Bodman, Roger and Dix, Martin and Wang, Yingping and Dobrohotoff, Peter and Srbinovsky, Jhan and Stevens, Lauren and Vohralik, Peter and Mackallah, Chloe and Sullivan, Arnold and O'Farrell, Siobhan and Druken, Kelsey}, + doi = {10.22033/ESGF/CMIP6.4272}, +} diff --git a/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/plots/fire_evaluation/fire_evaluation/fuel_load_continuity_control_ACCESS-ESM1-5_historical_2013_2014_data_citation_info.txt b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/plots/fire_evaluation/fire_evaluation/fuel_load_continuity_control_ACCESS-ESM1-5_historical_2013_2014_data_citation_info.txt new file mode 100644 index 000000000..75dcd84a9 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/plots/fire_evaluation/fire_evaluation/fuel_load_continuity_control_ACCESS-ESM1-5_historical_2013_2014_data_citation_info.txt @@ -0,0 +1,2 @@ +Follow the links below to find more information about CMIP6 data: +- https://cera-www.dkrz.de/WDCC/ui/cerasearch/cmip6?input=CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical diff --git a/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/plots/fire_evaluation/fire_evaluation/fuel_load_continuity_control_ACCESS-ESM1-5_historical_2013_2014_provenance.xml b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/plots/fire_evaluation/fire_evaluation/fuel_load_continuity_control_ACCESS-ESM1-5_historical_2013_2014_provenance.xml new file mode 100644 index 000000000..4959ca71f --- /dev/null +++ b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/plots/fire_evaluation/fire_evaluation/fuel_load_continuity_control_ACCESS-ESM1-5_historical_2013_2014_provenance.xml @@ -0,0 +1,876 @@ + + + + + + + + + + + + + CMIP + ACCESS-ESM1-5 + ACCESS-ESM1-5 + fire_evaluation + 2014 + r1i1p1f1 + historical + /executions/recipe_20250904_145222/preproc/fire_evaluation/hurs/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_hurs_gn_20130116T120000-20141216T120000.nc + mon + gn + CSIRO + Near-Surface Relative Humidity + Amon + ['atmos'] + hurs + preproc + CMIP6 + 0 + hurs + relative_humidity + 2013 + 20130116T120000/20141216T120000 + % + hurs + v20191115 + {'mask_out': 'sea'} + {'target_grid': '2.5x2.5', 'scheme': 'nearest'} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250904_145222/preproc/fire_evaluation/hurs/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_hurs_gn_20130116T120000-20141216T120000.nc')} + + + + + + + + SMHI, Sweden + https://orcid.org/0000-0002-9949-3989 + + + + + + + + + + + + + + + + + + + + + + CMIP + ACCESS-ESM1-5 + ACCESS-ESM1-5 + fire_evaluation + 2014 + r1i1p1f1 + historical + /executions/recipe_20250904_145222/preproc/fire_evaluation/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_20130116T120000-20141216T120000.nc + mon + gn + CSIRO + Near-Surface Air Temperature + Amon + ['atmos'] + tas + preproc + CMIP6 + 0 + tas + air_temperature + 2013 + 20130116T120000/20141216T120000 + K + tas + v20191115 + {'mask_out': 'sea'} + {'target_grid': '2.5x2.5', 'scheme': 'nearest'} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250904_145222/preproc/fire_evaluation/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_20130116T120000-20141216T120000.nc')} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2019-11-15T12:50:49Z + 01.00.30 + all-forcing simulation of the recent past + historical + areacella + 1 + mon + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2019-11-15T12:50:49Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards. + 1 + Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia + CSIRO + CMIP6 model data produced by CSIRO is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (https://creativecommons.org/licenses/). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law. + CMIP6 + 250 km + Exp: ESM-historical; Local ID: HI-05; Variable: treeFrac (['fld_s03i317']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + land + forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, CFC113, HCFC22, HFC125, HFC134a) + ACCESS-ESM1.5 (2019): +aerosol: CLASSIC (v1.0) +atmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m) +atmosChem: none +land: CABLE2.4 +landIce: none +ocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m) +ocnBgchem: WOMBAT (same grid as ocean) +seaIce: CICE4.1 (same grid as ocean) + ACCESS-ESM1-5 + AOGCM + none + none + Lmon + Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/f180b88a-43c0-412c-9a56-c742459e9efe + treeFrac + r1i1p1f1 + v20191115 + + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2019-11-15T04:32:57Z + 01.00.30 + all-forcing simulation of the recent past + historical + areacella + 1 + mon + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2019-11-15T04:32:57Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards. + 1 + Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia + CSIRO + CMIP6 model data produced by CSIRO is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (https://creativecommons.org/licenses/). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law. + CMIP6 + 250 km + Exp: ESM-historical; Local ID: HI-05; Variable: hurs (['fld_s03i245']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + atmos + forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, CFC113, HCFC22, HFC125, HFC134a) + ACCESS-ESM1.5 (2019): +aerosol: CLASSIC (v1.0) +atmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m) +atmosChem: none +land: CABLE2.4 +landIce: none +ocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m) +ocnBgchem: WOMBAT (same grid as ocean) +seaIce: CICE4.1 (same grid as ocean) + ACCESS-ESM1-5 + AOGCM + none + none + Amon + Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/2a85fe34-e61e-4d23-87d1-742aa8be6142 + hurs + r1i1p1f1 + v20191115 + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2019-11-15T04:32:57Z + 01.00.30 + all-forcing simulation of the recent past + historical + areacella + 1 + mon + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2019-11-15T04:32:57Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards. + 1 + Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia + CSIRO + CMIP6 model data produced by CSIRO is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (https://creativecommons.org/licenses/). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law. + CMIP6 + 250 km + Exp: ESM-historical; Local ID: HI-05; Variable: pr (['fld_s05i216']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + atmos + forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, CFC113, HCFC22, HFC125, HFC134a) + ACCESS-ESM1.5 (2019): +aerosol: CLASSIC (v1.0) +atmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m) +atmosChem: none +land: CABLE2.4 +landIce: none +ocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m) +ocnBgchem: WOMBAT (same grid as ocean) +seaIce: CICE4.1 (same grid as ocean) + ACCESS-ESM1-5 + AOGCM + none + none + Amon + Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/e1bc1d0d-54d8-4a7f-adae-d3f6324a2366 + pr + r1i1p1f1 + v20191115 + + + UKCEH, UK + https://orcid.org/0000-0003-1413-4969 + + + + + + + + + + + + + + + + + + + + + + + CMIP + ACCESS-ESM1-5 + ACCESS-ESM1-5 + fire_evaluation + 2014 + r1i1p1f1 + historical + /executions/recipe_20250904_145222/preproc/fire_evaluation/pr/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_pr_gn_20130116T120000-20141216T120000.nc + mon + gn + CSIRO + Precipitation + Amon + ['atmos'] + pr + preproc + CMIP6 + 0 + pr + precipitation_flux + 2013 + 20130116T120000/20141216T120000 + kg m-2 s-1 + pr + v20191115 + {'mask_out': 'sea'} + {'target_grid': '2.5x2.5', 'scheme': 'nearest'} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250904_145222/preproc/fire_evaluation/pr/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_pr_gn_20130116T120000-20141216T120000.nc')} + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2019-11-15T03:52:25Z + 01.00.30 + all-forcing simulation of the recent past + historical + areacella + 1 + mon + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2019-11-15T03:52:25Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards. + 1 + Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia + CSIRO + CMIP6 model data produced by CSIRO is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (https://creativecommons.org/licenses/). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law. + CMIP6 + 250 km + Exp: ESM-historical; Local ID: HI-05; Variable: tas (['fld_s03i236']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + atmos + forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, CFC113, HCFC22, HFC125, HFC134a) + ACCESS-ESM1.5 (2019): +aerosol: CLASSIC (v1.0) +atmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m) +atmosChem: none +land: CABLE2.4 +landIce: none +ocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m) +ocnBgchem: WOMBAT (same grid as ocean) +seaIce: CICE4.1 (same grid as ocean) + ACCESS-ESM1-5 + AOGCM + none + none + Amon + Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/d2debfa6-c0e2-4339-bac8-08d97867ae3a + tas + r1i1p1f1 + v20191115 + + + + + + + + + + + + + + + + + + + + + + + + + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2019-11-15T17:53:23Z + 01.00.30 + all-forcing simulation of the recent past + historical + areacella + 1 + fx + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2019-11-15T17:53:23Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards. + 1 + Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia + CSIRO + CMIP6 model data produced by CSIRO is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (https://creativecommons.org/licenses/). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law. + CMIP6 + 250 km + Exp: ESM-historical; Local ID: HI-05; Variable: sftlf (['fld_s03i395']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + atmos + forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, CFC113, HCFC22, HFC125, HFC134a) + ACCESS-ESM1.5 (2019): +aerosol: CLASSIC (v1.0) +atmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m) +atmosChem: none +land: CABLE2.4 +landIce: none +ocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m) +ocnBgchem: WOMBAT (same grid as ocean) +seaIce: CICE4.1 (same grid as ocean) + ACCESS-ESM1-5 + AOGCM + none + none + fx + Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/df560bac-0f00-461e-8e3c-640b17bfacfc + sftlf + r1i1p1f1 + v20191115 + + + + + + + + + + + + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2019-11-15T03:55:51Z + 01.00.30 + all-forcing simulation of the recent past + historical + areacella + 1 + mon + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2019-11-15T03:55:51Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards. + 1 + Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia + CSIRO + CMIP6 model data produced by CSIRO is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (https://creativecommons.org/licenses/). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law. + CMIP6 + 250 km + Exp: ESM-historical; Local ID: HI-05; Variable: tasmax (['fld_s03i236_max']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + atmos + forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, CFC113, HCFC22, HFC125, HFC134a) + ACCESS-ESM1.5 (2019): +aerosol: CLASSIC (v1.0) +atmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m) +atmosChem: none +land: CABLE2.4 +landIce: none +ocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m) +ocnBgchem: WOMBAT (same grid as ocean) +seaIce: CICE4.1 (same grid as ocean) + ACCESS-ESM1-5 + AOGCM + none + none + Amon + Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/49cd3d81-3ba4-4565-a3fe-f0dd1af93231 + tasmax + r1i1p1f1 + v20191115 + + + + + + + + + + + + + + + + + + + + + + + CMIP + ACCESS-ESM1-5 + ACCESS-ESM1-5 + fire_evaluation + 2014 + r1i1p1f1 + historical + /executions/recipe_20250904_145222/preproc/fire_evaluation/cVeg/CMIP6_ACCESS-ESM1-5_Lmon_historical_r1i1p1f1_cVeg_gn_20130116T120000-20141216T120000.nc + mon + gn + CSIRO + Carbon Mass in Vegetation + Lmon + ['land'] + cVeg + preproc + CMIP6 + 0 + cVeg + vegetation_carbon_content + 2013 + 20130116T120000/20141216T120000 + kg m-2 + cVeg + v20191115 + {'mask_out': 'sea'} + {'target_grid': '2.5x2.5', 'scheme': 'nearest'} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250904_145222/preproc/fire_evaluation/cVeg/CMIP6_ACCESS-ESM1-5_Lmon_historical_r1i1p1f1_cVeg_gn_20130116T120000-20141216T120000.nc')} + + + + + + + + CMIP + ACCESS-ESM1-5 + ACCESS-ESM1-5 + fire_evaluation + 2014 + r1i1p1f1 + historical + /executions/recipe_20250904_145222/preproc/fire_evaluation/vegFrac/CMIP6_ACCESS-ESM1-5_Emon_historical_r1i1p1f1_vegFrac_gn_20130116T120000-20141216T120000.nc + mon + gn + CSIRO + Total Vegetated Percentage Cover + Emon + ['land'] + vegFrac + preproc_fraction + CMIP6 + 0 + vegFrac + area_fraction + 2013 + 20130116T120000/20141216T120000 + % + vegFrac + v20191115 + {'units': 1} + {'mask_out': 'sea'} + {'target_grid': '2.5x2.5', 'scheme': 'nearest'} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250904_145222/preproc/fire_evaluation/vegFrac/CMIP6_ACCESS-ESM1-5_Emon_historical_r1i1p1f1_vegFrac_gn_20130116T120000-20141216T120000.nc')} + + + + + + + + Recipe that plots diagnostics regarding climate drivers for fire. +The diagnostic uses code for the ConFire model from the following GitHub repository: +https://github.com/douglask3/Bayesian_fire_models/tree/AR7_REF + + [] + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2019-11-15T13:20:16Z + 01.00.30 + all-forcing simulation of the recent past + historical + areacella + 1 + mon + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2019-11-15T13:20:16Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards. + 1 + Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia + CSIRO + CMIP6 model data produced by CSIRO is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (https://creativecommons.org/licenses/). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law. + CMIP6 + 250 km + Exp: ESM-historical; Local ID: HI-05; Variable: cVeg (['fld_s03i852', 'fld_s03i853', 'fld_s03i854', 'fld_s03i317']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + land + forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, CFC113, HCFC22, HFC125, HFC134a) + ACCESS-ESM1.5 (2019): +aerosol: CLASSIC (v1.0) +atmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m) +atmosChem: none +land: CABLE2.4 +landIce: none +ocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m) +ocnBgchem: WOMBAT (same grid as ocean) +seaIce: CICE4.1 (same grid as ocean) + ACCESS-ESM1-5 + AOGCM + none + none + Lmon + Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/91588af3-960f-49bd-8232-0e17bfa8796f + cVeg + r1i1p1f1 + v20191115 + + + + CMIP + ACCESS-ESM1-5 + ACCESS-ESM1-5 + fire_evaluation + 2014 + r1i1p1f1 + historical + /executions/recipe_20250904_145222/preproc/fire_evaluation/treeFrac/CMIP6_ACCESS-ESM1-5_Lmon_historical_r1i1p1f1_treeFrac_gn_20130116T120000-20141216T120000.nc + mon + gn + CSIRO + Tree Cover Percentage + Lmon + ['land'] + treeFrac + preproc_fraction + CMIP6 + 0 + treeFrac + area_fraction + 2013 + 20130116T120000/20141216T120000 + % + treeFrac + v20191115 + {'units': 1} + {'mask_out': 'sea'} + {'target_grid': '2.5x2.5', 'scheme': 'nearest'} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250904_145222/preproc/fire_evaluation/treeFrac/CMIP6_ACCESS-ESM1-5_Lmon_historical_r1i1p1f1_treeFrac_gn_20130116T120000-20141216T120000.nc')} + + + + + + + + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2019-11-15T10:46:32Z + 01.00.30 + all-forcing simulation of the recent past + historical + areacella + 1 + mon + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2019-11-15T10:46:32Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards. + 1 + Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia + CSIRO + CMIP6 model data produced by CSIRO is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (https://creativecommons.org/licenses/). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law. + CMIP6 + 250 km + Exp: ESM-historical; Local ID: HI-05; Variable: vegFrac (['fld_s03i317']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + land + forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, CFC113, HCFC22, HFC125, HFC134a) + ACCESS-ESM1.5 (2019): +aerosol: CLASSIC (v1.0) +atmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m) +atmosChem: none +land: CABLE2.4 +landIce: none +ocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m) +ocnBgchem: WOMBAT (same grid as ocean) +seaIce: CICE4.1 (same grid as ocean) + ACCESS-ESM1-5 + AOGCM + none + none + Emon + Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/c12b42a0-32f2-48ec-8376-a49df38f6300 + vegFrac + r1i1p1f1 + v20191115 + + + + + + + + + CMIP + ACCESS-ESM1-5 + ACCESS-ESM1-5 + fire_evaluation + 2014 + r1i1p1f1 + historical + /executions/recipe_20250904_145222/preproc/fire_evaluation/tasmax/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tasmax_gn_20130116T120000-20141216T120000.nc + mon + gn + CSIRO + Daily Maximum Near-Surface Air Temperature + Amon + ['atmos'] + tasmax + preproc + CMIP6 + 0 + tasmax + air_temperature + 2013 + 20130116T120000/20141216T120000 + K + tasmax + v20191115 + {'mask_out': 'sea'} + {'target_grid': '2.5x2.5', 'scheme': 'nearest'} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250904_145222/preproc/fire_evaluation/tasmax/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tasmax_gn_20130116T120000-20141216T120000.nc')} + + + Fuel load continuity control for the ACCESS-ESM1-5 (CMIP6-historical) for the time period 20130116T120000/20141216T120000 as computed with the ConFire model (Jones et al., 2024). + https://zenodo.org/records/14917245 + historical + ACCESS-ESM1-5 + CMIP6 + True + tcp://127.0.0.1:44557 + fire_evaluation + fire/fire_diagnostic.py + 20130116T120000/20141216T120000 + ['pr', 'tasmax', 'treeFrac', 'vegFrac', 'vpd', 'cVeg'] + + + + + + + + + + + + diff --git a/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/run/cmor_log.txt b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/run/cmor_log.txt new file mode 100644 index 000000000..2c6958290 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/run/cmor_log.txt @@ -0,0 +1,14 @@ +WARNING [321904] Long name changed from 'Percentage of the grid cell occupied by land (including lakes)' to 'Percentage of the Grid Cell Occupied by Land (Including Lakes)' +(for file /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc) +WARNING [321904] Long name changed from 'Percentage of the grid cell occupied by land (including lakes)' to 'Percentage of the Grid Cell Occupied by Land (Including Lakes)' +(for file /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc) +WARNING [321904] Long name changed from 'Percentage of the grid cell occupied by land (including lakes)' to 'Percentage of the Grid Cell Occupied by Land (Including Lakes)' +(for file /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc) +WARNING [321904] Long name changed from 'Percentage of the grid cell occupied by land (including lakes)' to 'Percentage of the Grid Cell Occupied by Land (Including Lakes)' +(for file /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc) +WARNING [321904] Long name changed from 'Percentage of the grid cell occupied by land (including lakes)' to 'Percentage of the Grid Cell Occupied by Land (Including Lakes)' +(for file /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc) +WARNING [321904] Long name changed from 'Percentage of the grid cell occupied by land (including lakes)' to 'Percentage of the Grid Cell Occupied by Land (Including Lakes)' +(for file /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc) +WARNING [321904] Long name changed from 'Percentage of the grid cell occupied by land (including lakes)' to 'Percentage of the Grid Cell Occupied by Land (Including Lakes)' +(for file /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc) diff --git a/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/run/fire_evaluation/fire_evaluation/diagnostic_provenance.yml b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/run/fire_evaluation/fire_evaluation/diagnostic_provenance.yml new file mode 100644 index 000000000..a4fa49ce4 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/run/fire_evaluation/fire_evaluation/diagnostic_provenance.yml @@ -0,0 +1,71 @@ +? /executions/recipe_20250904_145222/plots/fire_evaluation/fire_evaluation/burnt_fraction_ACCESS-ESM1-5_historical_2013_2014.png +: ancestors: + - /executions/recipe_20250904_145222/preproc/fire_evaluation/pr/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_pr_gn_20130116T120000-20141216T120000.nc + - /executions/recipe_20250904_145222/preproc/fire_evaluation/tasmax/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tasmax_gn_20130116T120000-20141216T120000.nc + - /executions/recipe_20250904_145222/preproc/fire_evaluation/treeFrac/CMIP6_ACCESS-ESM1-5_Lmon_historical_r1i1p1f1_treeFrac_gn_20130116T120000-20141216T120000.nc + - /executions/recipe_20250904_145222/preproc/fire_evaluation/vegFrac/CMIP6_ACCESS-ESM1-5_Emon_historical_r1i1p1f1_vegFrac_gn_20130116T120000-20141216T120000.nc + - /executions/recipe_20250904_145222/preproc/fire_evaluation/cVeg/CMIP6_ACCESS-ESM1-5_Lmon_historical_r1i1p1f1_cVeg_gn_20130116T120000-20141216T120000.nc + - /executions/recipe_20250904_145222/preproc/fire_evaluation/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_20130116T120000-20141216T120000.nc + - /executions/recipe_20250904_145222/preproc/fire_evaluation/hurs/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_hurs_gn_20130116T120000-20141216T120000.nc + authors: + - lenhardt_julien + - kelley_douglas + caption: Burnt area fraction for the ACCESS-ESM1-5 (CMIP6-historical) for the time + period 20130116T120000/20141216T120000 as computed with the ConFire model (Jones + et al., 2024). + experiment: historical + model: ACCESS-ESM1-5 + project: CMIP6 + timerange: 20130116T120000/20141216T120000 +? /executions/recipe_20250904_145222/plots/fire_evaluation/fire_evaluation/fire_weather_control_ACCESS-ESM1-5_historical_2013_2014.png +: ancestors: + - /executions/recipe_20250904_145222/preproc/fire_evaluation/pr/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_pr_gn_20130116T120000-20141216T120000.nc + - /executions/recipe_20250904_145222/preproc/fire_evaluation/tasmax/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tasmax_gn_20130116T120000-20141216T120000.nc + - /executions/recipe_20250904_145222/preproc/fire_evaluation/treeFrac/CMIP6_ACCESS-ESM1-5_Lmon_historical_r1i1p1f1_treeFrac_gn_20130116T120000-20141216T120000.nc + - /executions/recipe_20250904_145222/preproc/fire_evaluation/vegFrac/CMIP6_ACCESS-ESM1-5_Emon_historical_r1i1p1f1_vegFrac_gn_20130116T120000-20141216T120000.nc + - /executions/recipe_20250904_145222/preproc/fire_evaluation/cVeg/CMIP6_ACCESS-ESM1-5_Lmon_historical_r1i1p1f1_cVeg_gn_20130116T120000-20141216T120000.nc + - /executions/recipe_20250904_145222/preproc/fire_evaluation/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_20130116T120000-20141216T120000.nc + - /executions/recipe_20250904_145222/preproc/fire_evaluation/hurs/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_hurs_gn_20130116T120000-20141216T120000.nc + authors: + - lenhardt_julien + - kelley_douglas + caption: Fire weather control for the ACCESS-ESM1-5 (CMIP6-historical) for the time + period 20130116T120000/20141216T120000 as computed with the ConFire model (Jones + et al., 2024). + experiment: historical + model: ACCESS-ESM1-5 + project: CMIP6 + timerange: 20130116T120000/20141216T120000 +? /executions/recipe_20250904_145222/plots/fire_evaluation/fire_evaluation/fuel_load_continuity_control_ACCESS-ESM1-5_historical_2013_2014.png +: ancestors: + - /executions/recipe_20250904_145222/preproc/fire_evaluation/pr/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_pr_gn_20130116T120000-20141216T120000.nc + - /executions/recipe_20250904_145222/preproc/fire_evaluation/tasmax/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tasmax_gn_20130116T120000-20141216T120000.nc + - /executions/recipe_20250904_145222/preproc/fire_evaluation/treeFrac/CMIP6_ACCESS-ESM1-5_Lmon_historical_r1i1p1f1_treeFrac_gn_20130116T120000-20141216T120000.nc + - /executions/recipe_20250904_145222/preproc/fire_evaluation/vegFrac/CMIP6_ACCESS-ESM1-5_Emon_historical_r1i1p1f1_vegFrac_gn_20130116T120000-20141216T120000.nc + - /executions/recipe_20250904_145222/preproc/fire_evaluation/cVeg/CMIP6_ACCESS-ESM1-5_Lmon_historical_r1i1p1f1_cVeg_gn_20130116T120000-20141216T120000.nc + - /executions/recipe_20250904_145222/preproc/fire_evaluation/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_20130116T120000-20141216T120000.nc + - /executions/recipe_20250904_145222/preproc/fire_evaluation/hurs/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_hurs_gn_20130116T120000-20141216T120000.nc + authors: + - lenhardt_julien + - kelley_douglas + caption: Fuel load continuity control for the ACCESS-ESM1-5 (CMIP6-historical) for + the time period 20130116T120000/20141216T120000 as computed with the ConFire model + (Jones et al., 2024). + experiment: historical + model: ACCESS-ESM1-5 + project: CMIP6 + timerange: 20130116T120000/20141216T120000 +? /executions/recipe_20250904_145222/work/fire_evaluation/fire_evaluation/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_vpd_gn_20130116T120000-20141216T120000.nc +: ancestors: + - /executions/recipe_20250904_145222/preproc/fire_evaluation/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_20130116T120000-20141216T120000.nc + - /executions/recipe_20250904_145222/preproc/fire_evaluation/hurs/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_hurs_gn_20130116T120000-20141216T120000.nc + authors: + - lenhardt_julien + - kelley_douglas + caption: '' + experiment: + - historical + model: ACCESS-ESM1-5 + project: + - CMIP6 + timerange: 20130116T120000/20141216T120000 diff --git a/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/run/fire_evaluation/fire_evaluation/log.txt b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/run/fire_evaluation/fire_evaluation/log.txt new file mode 100644 index 000000000..825347850 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/run/fire_evaluation/fire_evaluation/log.txt @@ -0,0 +1,352 @@ +INFO:esmvaltool.diag_scripts.shared._base:Starting diagnostic script fire_evaluation with configuration: +auxiliary_data_dir: /home/bandela/auxiliary_data +confire_param: https://zenodo.org/records/14917245 +input_data: + ? /executions/recipe_20250904_145222/preproc/fire_evaluation/cVeg/CMIP6_ACCESS-ESM1-5_Lmon_historical_r1i1p1f1_cVeg_gn_20130116T120000-20141216T120000.nc + : activity: CMIP + alias: ACCESS-ESM1-5 + dataset: ACCESS-ESM1-5 + diagnostic: fire_evaluation + end_year: 2014 + ensemble: r1i1p1f1 + exp: historical + filename: /executions/recipe_20250904_145222/preproc/fire_evaluation/cVeg/CMIP6_ACCESS-ESM1-5_Lmon_historical_r1i1p1f1_cVeg_gn_20130116T120000-20141216T120000.nc + frequency: mon + grid: gn + institute: CSIRO + long_name: Carbon Mass in Vegetation + mip: Lmon + modeling_realm: + - land + preprocessor: preproc + project: CMIP6 + recipe_dataset_index: 0 + short_name: cVeg + standard_name: vegetation_carbon_content + start_year: 2013 + timerange: 20130116T120000/20141216T120000 + units: kg m-2 + variable_group: cVeg + version: v20191115 + ? /executions/recipe_20250904_145222/preproc/fire_evaluation/hurs/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_hurs_gn_20130116T120000-20141216T120000.nc + : activity: CMIP + alias: ACCESS-ESM1-5 + dataset: ACCESS-ESM1-5 + diagnostic: fire_evaluation + end_year: 2014 + ensemble: r1i1p1f1 + exp: historical + filename: /executions/recipe_20250904_145222/preproc/fire_evaluation/hurs/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_hurs_gn_20130116T120000-20141216T120000.nc + frequency: mon + grid: gn + institute: CSIRO + long_name: Near-Surface Relative Humidity + mip: Amon + modeling_realm: + - atmos + preprocessor: preproc + project: CMIP6 + recipe_dataset_index: 0 + short_name: hurs + standard_name: relative_humidity + start_year: 2013 + timerange: 20130116T120000/20141216T120000 + units: '%' + variable_group: hurs + version: v20191115 + ? /executions/recipe_20250904_145222/preproc/fire_evaluation/pr/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_pr_gn_20130116T120000-20141216T120000.nc + : activity: CMIP + alias: ACCESS-ESM1-5 + dataset: ACCESS-ESM1-5 + diagnostic: fire_evaluation + end_year: 2014 + ensemble: r1i1p1f1 + exp: historical + filename: /executions/recipe_20250904_145222/preproc/fire_evaluation/pr/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_pr_gn_20130116T120000-20141216T120000.nc + frequency: mon + grid: gn + institute: CSIRO + long_name: Precipitation + mip: Amon + modeling_realm: + - atmos + preprocessor: preproc + project: CMIP6 + recipe_dataset_index: 0 + short_name: pr + standard_name: precipitation_flux + start_year: 2013 + timerange: 20130116T120000/20141216T120000 + units: kg m-2 s-1 + variable_group: pr + version: v20191115 + ? /executions/recipe_20250904_145222/preproc/fire_evaluation/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_20130116T120000-20141216T120000.nc + : activity: CMIP + alias: ACCESS-ESM1-5 + dataset: ACCESS-ESM1-5 + diagnostic: fire_evaluation + end_year: 2014 + ensemble: r1i1p1f1 + exp: historical + filename: /executions/recipe_20250904_145222/preproc/fire_evaluation/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_20130116T120000-20141216T120000.nc + frequency: mon + grid: gn + institute: CSIRO + long_name: Near-Surface Air Temperature + mip: Amon + modeling_realm: + - atmos + preprocessor: preproc + project: CMIP6 + recipe_dataset_index: 0 + short_name: tas + standard_name: air_temperature + start_year: 2013 + timerange: 20130116T120000/20141216T120000 + units: K + variable_group: tas + version: v20191115 + ? /executions/recipe_20250904_145222/preproc/fire_evaluation/tasmax/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tasmax_gn_20130116T120000-20141216T120000.nc + : activity: CMIP + alias: ACCESS-ESM1-5 + dataset: ACCESS-ESM1-5 + diagnostic: fire_evaluation + end_year: 2014 + ensemble: r1i1p1f1 + exp: historical + filename: /executions/recipe_20250904_145222/preproc/fire_evaluation/tasmax/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tasmax_gn_20130116T120000-20141216T120000.nc + frequency: mon + grid: gn + institute: CSIRO + long_name: Daily Maximum Near-Surface Air Temperature + mip: Amon + modeling_realm: + - atmos + preprocessor: preproc + project: CMIP6 + recipe_dataset_index: 0 + short_name: tasmax + standard_name: air_temperature + start_year: 2013 + timerange: 20130116T120000/20141216T120000 + units: K + variable_group: tasmax + version: v20191115 + ? /executions/recipe_20250904_145222/preproc/fire_evaluation/treeFrac/CMIP6_ACCESS-ESM1-5_Lmon_historical_r1i1p1f1_treeFrac_gn_20130116T120000-20141216T120000.nc + : activity: CMIP + alias: ACCESS-ESM1-5 + dataset: ACCESS-ESM1-5 + diagnostic: fire_evaluation + end_year: 2014 + ensemble: r1i1p1f1 + exp: historical + filename: /executions/recipe_20250904_145222/preproc/fire_evaluation/treeFrac/CMIP6_ACCESS-ESM1-5_Lmon_historical_r1i1p1f1_treeFrac_gn_20130116T120000-20141216T120000.nc + frequency: mon + grid: gn + institute: CSIRO + long_name: Tree Cover Percentage + mip: Lmon + modeling_realm: + - land + preprocessor: preproc_fraction + project: CMIP6 + recipe_dataset_index: 0 + short_name: treeFrac + standard_name: area_fraction + start_year: 2013 + timerange: 20130116T120000/20141216T120000 + units: '1' + variable_group: treeFrac + version: v20191115 + ? /executions/recipe_20250904_145222/preproc/fire_evaluation/vegFrac/CMIP6_ACCESS-ESM1-5_Emon_historical_r1i1p1f1_vegFrac_gn_20130116T120000-20141216T120000.nc + : activity: CMIP + alias: ACCESS-ESM1-5 + dataset: ACCESS-ESM1-5 + diagnostic: fire_evaluation + end_year: 2014 + ensemble: r1i1p1f1 + exp: historical + filename: /executions/recipe_20250904_145222/preproc/fire_evaluation/vegFrac/CMIP6_ACCESS-ESM1-5_Emon_historical_r1i1p1f1_vegFrac_gn_20130116T120000-20141216T120000.nc + frequency: mon + grid: gn + institute: CSIRO + long_name: Total Vegetated Percentage Cover + mip: Emon + modeling_realm: + - land + preprocessor: preproc_fraction + project: CMIP6 + recipe_dataset_index: 0 + short_name: vegFrac + standard_name: area_fraction + start_year: 2013 + timerange: 20130116T120000/20141216T120000 + units: '1' + variable_group: vegFrac + version: v20191115 +input_files: +- /executions/recipe_20250904_145222/preproc/fire_evaluation/pr/metadata.yml +- /executions/recipe_20250904_145222/preproc/fire_evaluation/tasmax/metadata.yml +- /executions/recipe_20250904_145222/preproc/fire_evaluation/treeFrac/metadata.yml +- /executions/recipe_20250904_145222/preproc/fire_evaluation/vegFrac/metadata.yml +- /executions/recipe_20250904_145222/preproc/fire_evaluation/cVeg/metadata.yml +- /executions/recipe_20250904_145222/preproc/fire_evaluation/tas/metadata.yml +- /executions/recipe_20250904_145222/preproc/fire_evaluation/hurs/metadata.yml +log_level: info +output_file_type: png +plot_dir: /executions/recipe_20250904_145222/plots/fire_evaluation/fire_evaluation +recipe: recipe.yml +remove_confire_files: true +run_dir: /executions/recipe_20250904_145222/run/fire_evaluation/fire_evaluation +scheduler_address: tcp://127.0.0.1:44557 +script: fire_evaluation +var_order: +- pr +- tasmax +- treeFrac +- vegFrac +- vpd +- cVeg +version: 2.12.0 +work_dir: /executions/recipe_20250904_145222/work/fire_evaluation/fire_evaluation + +INFO:esmvaltool.diag_scripts.shared._base:Creating /executions/recipe_20250904_145222/work/fire_evaluation/fire_evaluation +INFO:esmvaltool.diag_scripts.shared._base:Creating /executions/recipe_20250904_145222/plots/fire_evaluation/fire_evaluation +INFO:fire_diagnostic:{'confire_param': 'https://zenodo.org/records/14917245', 'var_order': ['pr', 'tasmax', 'treeFrac', 'vegFrac', 'vpd', 'cVeg'], 'remove_confire_files': True, 'recipe': 'recipe.yml', 'version': '2.12.0', 'script': 'fire_evaluation', 'run_dir': '/executions/recipe_20250904_145222/run/fire_evaluation/fire_evaluation', 'plot_dir': '/executions/recipe_20250904_145222/plots/fire_evaluation/fire_evaluation', 'work_dir': '/executions/recipe_20250904_145222/work/fire_evaluation/fire_evaluation', 'output_file_type': 'png', 'log_level': 'info', 'auxiliary_data_dir': '/home/bandela/auxiliary_data', 'scheduler_address': 'tcp://127.0.0.1:44557', 'input_files': ['/executions/recipe_20250904_145222/preproc/fire_evaluation/pr/metadata.yml', '/executions/recipe_20250904_145222/preproc/fire_evaluation/tasmax/metadata.yml', '/executions/recipe_20250904_145222/preproc/fire_evaluation/treeFrac/metadata.yml', '/executions/recipe_20250904_145222/preproc/fire_evaluation/vegFrac/metadata.yml', '/executions/recipe_20250904_145222/preproc/fire_evaluation/cVeg/metadata.yml', '/executions/recipe_20250904_145222/preproc/fire_evaluation/tas/metadata.yml', '/executions/recipe_20250904_145222/preproc/fire_evaluation/hurs/metadata.yml'], 'input_data': {'/executions/recipe_20250904_145222/preproc/fire_evaluation/pr/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_pr_gn_20130116T120000-20141216T120000.nc': {'activity': 'CMIP', 'alias': 'ACCESS-ESM1-5', 'dataset': 'ACCESS-ESM1-5', 'diagnostic': 'fire_evaluation', 'end_year': 2014, 'ensemble': 'r1i1p1f1', 'exp': 'historical', 'filename': '/executions/recipe_20250904_145222/preproc/fire_evaluation/pr/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_pr_gn_20130116T120000-20141216T120000.nc', 'frequency': 'mon', 'grid': 'gn', 'institute': 'CSIRO', 'long_name': 'Precipitation', 'mip': 'Amon', 'modeling_realm': ['atmos'], 'preprocessor': 'preproc', 'project': 'CMIP6', 'recipe_dataset_index': 0, 'short_name': 'pr', 'standard_name': 'precipitation_flux', 'start_year': 2013, 'timerange': '20130116T120000/20141216T120000', 'units': 'kg m-2 s-1', 'variable_group': 'pr', 'version': 'v20191115'}, '/executions/recipe_20250904_145222/preproc/fire_evaluation/tasmax/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tasmax_gn_20130116T120000-20141216T120000.nc': {'activity': 'CMIP', 'alias': 'ACCESS-ESM1-5', 'dataset': 'ACCESS-ESM1-5', 'diagnostic': 'fire_evaluation', 'end_year': 2014, 'ensemble': 'r1i1p1f1', 'exp': 'historical', 'filename': '/executions/recipe_20250904_145222/preproc/fire_evaluation/tasmax/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tasmax_gn_20130116T120000-20141216T120000.nc', 'frequency': 'mon', 'grid': 'gn', 'institute': 'CSIRO', 'long_name': 'Daily Maximum Near-Surface Air Temperature', 'mip': 'Amon', 'modeling_realm': ['atmos'], 'preprocessor': 'preproc', 'project': 'CMIP6', 'recipe_dataset_index': 0, 'short_name': 'tasmax', 'standard_name': 'air_temperature', 'start_year': 2013, 'timerange': '20130116T120000/20141216T120000', 'units': 'K', 'variable_group': 'tasmax', 'version': 'v20191115'}, '/executions/recipe_20250904_145222/preproc/fire_evaluation/treeFrac/CMIP6_ACCESS-ESM1-5_Lmon_historical_r1i1p1f1_treeFrac_gn_20130116T120000-20141216T120000.nc': {'activity': 'CMIP', 'alias': 'ACCESS-ESM1-5', 'dataset': 'ACCESS-ESM1-5', 'diagnostic': 'fire_evaluation', 'end_year': 2014, 'ensemble': 'r1i1p1f1', 'exp': 'historical', 'filename': '/executions/recipe_20250904_145222/preproc/fire_evaluation/treeFrac/CMIP6_ACCESS-ESM1-5_Lmon_historical_r1i1p1f1_treeFrac_gn_20130116T120000-20141216T120000.nc', 'frequency': 'mon', 'grid': 'gn', 'institute': 'CSIRO', 'long_name': 'Tree Cover Percentage', 'mip': 'Lmon', 'modeling_realm': ['land'], 'preprocessor': 'preproc_fraction', 'project': 'CMIP6', 'recipe_dataset_index': 0, 'short_name': 'treeFrac', 'standard_name': 'area_fraction', 'start_year': 2013, 'timerange': '20130116T120000/20141216T120000', 'units': '1', 'variable_group': 'treeFrac', 'version': 'v20191115'}, '/executions/recipe_20250904_145222/preproc/fire_evaluation/vegFrac/CMIP6_ACCESS-ESM1-5_Emon_historical_r1i1p1f1_vegFrac_gn_20130116T120000-20141216T120000.nc': {'activity': 'CMIP', 'alias': 'ACCESS-ESM1-5', 'dataset': 'ACCESS-ESM1-5', 'diagnostic': 'fire_evaluation', 'end_year': 2014, 'ensemble': 'r1i1p1f1', 'exp': 'historical', 'filename': '/executions/recipe_20250904_145222/preproc/fire_evaluation/vegFrac/CMIP6_ACCESS-ESM1-5_Emon_historical_r1i1p1f1_vegFrac_gn_20130116T120000-20141216T120000.nc', 'frequency': 'mon', 'grid': 'gn', 'institute': 'CSIRO', 'long_name': 'Total Vegetated Percentage Cover', 'mip': 'Emon', 'modeling_realm': ['land'], 'preprocessor': 'preproc_fraction', 'project': 'CMIP6', 'recipe_dataset_index': 0, 'short_name': 'vegFrac', 'standard_name': 'area_fraction', 'start_year': 2013, 'timerange': '20130116T120000/20141216T120000', 'units': '1', 'variable_group': 'vegFrac', 'version': 'v20191115'}, '/executions/recipe_20250904_145222/preproc/fire_evaluation/cVeg/CMIP6_ACCESS-ESM1-5_Lmon_historical_r1i1p1f1_cVeg_gn_20130116T120000-20141216T120000.nc': {'activity': 'CMIP', 'alias': 'ACCESS-ESM1-5', 'dataset': 'ACCESS-ESM1-5', 'diagnostic': 'fire_evaluation', 'end_year': 2014, 'ensemble': 'r1i1p1f1', 'exp': 'historical', 'filename': '/executions/recipe_20250904_145222/preproc/fire_evaluation/cVeg/CMIP6_ACCESS-ESM1-5_Lmon_historical_r1i1p1f1_cVeg_gn_20130116T120000-20141216T120000.nc', 'frequency': 'mon', 'grid': 'gn', 'institute': 'CSIRO', 'long_name': 'Carbon Mass in Vegetation', 'mip': 'Lmon', 'modeling_realm': ['land'], 'preprocessor': 'preproc', 'project': 'CMIP6', 'recipe_dataset_index': 0, 'short_name': 'cVeg', 'standard_name': 'vegetation_carbon_content', 'start_year': 2013, 'timerange': '20130116T120000/20141216T120000', 'units': 'kg m-2', 'variable_group': 'cVeg', 'version': 'v20191115'}, '/executions/recipe_20250904_145222/preproc/fire_evaluation/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_20130116T120000-20141216T120000.nc': {'activity': 'CMIP', 'alias': 'ACCESS-ESM1-5', 'dataset': 'ACCESS-ESM1-5', 'diagnostic': 'fire_evaluation', 'end_year': 2014, 'ensemble': 'r1i1p1f1', 'exp': 'historical', 'filename': '/executions/recipe_20250904_145222/preproc/fire_evaluation/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_20130116T120000-20141216T120000.nc', 'frequency': 'mon', 'grid': 'gn', 'institute': 'CSIRO', 'long_name': 'Near-Surface Air Temperature', 'mip': 'Amon', 'modeling_realm': ['atmos'], 'preprocessor': 'preproc', 'project': 'CMIP6', 'recipe_dataset_index': 0, 'short_name': 'tas', 'standard_name': 'air_temperature', 'start_year': 2013, 'timerange': '20130116T120000/20141216T120000', 'units': 'K', 'variable_group': 'tas', 'version': 'v20191115'}, '/executions/recipe_20250904_145222/preproc/fire_evaluation/hurs/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_hurs_gn_20130116T120000-20141216T120000.nc': {'activity': 'CMIP', 'alias': 'ACCESS-ESM1-5', 'dataset': 'ACCESS-ESM1-5', 'diagnostic': 'fire_evaluation', 'end_year': 2014, 'ensemble': 'r1i1p1f1', 'exp': 'historical', 'filename': '/executions/recipe_20250904_145222/preproc/fire_evaluation/hurs/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_hurs_gn_20130116T120000-20141216T120000.nc', 'frequency': 'mon', 'grid': 'gn', 'institute': 'CSIRO', 'long_name': 'Near-Surface Relative Humidity', 'mip': 'Amon', 'modeling_realm': ['atmos'], 'preprocessor': 'preproc', 'project': 'CMIP6', 'recipe_dataset_index': 0, 'short_name': 'hurs', 'standard_name': 'relative_humidity', 'start_year': 2013, 'timerange': '20130116T120000/20141216T120000', 'units': '%', 'variable_group': 'hurs', 'version': 'v20191115'}}} +INFO:fire_diagnostic:Retrieving ConFire model parameter files from https://zenodo.org/records/14917245 +INFO:fire_diagnostic:Downloaded none_trace-params-_6-frac_points_0.2-nvariables_-frac_random_sample0.2-nvars_6-niterations_5000.txt to /executions/recipe_20250904_145222/work/fire_evaluation/fire_evaluation/ConFire_parameter_files/. +INFO:fire_diagnostic:Downloaded trace-_6-frac_points_0.2-nvariables_-frac_random_sample0.2-nvars_6-niterations_5000.nc to /executions/recipe_20250904_145222/work/fire_evaluation/fire_evaluation/ConFire_parameter_files/. +INFO:fire_diagnostic:Downloaded scalers-_6-frac_points_0.2-nvariables_-frac_random_sample0.2-nvars_6-niterations_5000.csv to /executions/recipe_20250904_145222/work/fire_evaluation/fire_evaluation/ConFire_parameter_files/. +INFO:fire_diagnostic:Processing data for ACCESS-ESM1-5 +INFO:fire_diagnostic:[{'activity': 'CMIP', 'alias': 'ACCESS-ESM1-5', 'dataset': 'ACCESS-ESM1-5', 'diagnostic': 'fire_evaluation', 'end_year': 2014, 'ensemble': 'r1i1p1f1', 'exp': 'historical', 'filename': '/executions/recipe_20250904_145222/preproc/fire_evaluation/pr/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_pr_gn_20130116T120000-20141216T120000.nc', 'frequency': 'mon', 'grid': 'gn', 'institute': 'CSIRO', 'long_name': 'Precipitation', 'mip': 'Amon', 'modeling_realm': ['atmos'], 'preprocessor': 'preproc', 'project': 'CMIP6', 'recipe_dataset_index': 0, 'short_name': 'pr', 'standard_name': 'precipitation_flux', 'start_year': 2013, 'timerange': '20130116T120000/20141216T120000', 'units': 'kg m-2 s-1', 'variable_group': 'pr', 'version': 'v20191115'}, {'activity': 'CMIP', 'alias': 'ACCESS-ESM1-5', 'dataset': 'ACCESS-ESM1-5', 'diagnostic': 'fire_evaluation', 'end_year': 2014, 'ensemble': 'r1i1p1f1', 'exp': 'historical', 'filename': '/executions/recipe_20250904_145222/preproc/fire_evaluation/tasmax/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tasmax_gn_20130116T120000-20141216T120000.nc', 'frequency': 'mon', 'grid': 'gn', 'institute': 'CSIRO', 'long_name': 'Daily Maximum Near-Surface Air Temperature', 'mip': 'Amon', 'modeling_realm': ['atmos'], 'preprocessor': 'preproc', 'project': 'CMIP6', 'recipe_dataset_index': 0, 'short_name': 'tasmax', 'standard_name': 'air_temperature', 'start_year': 2013, 'timerange': '20130116T120000/20141216T120000', 'units': 'K', 'variable_group': 'tasmax', 'version': 'v20191115'}, {'activity': 'CMIP', 'alias': 'ACCESS-ESM1-5', 'dataset': 'ACCESS-ESM1-5', 'diagnostic': 'fire_evaluation', 'end_year': 2014, 'ensemble': 'r1i1p1f1', 'exp': 'historical', 'filename': '/executions/recipe_20250904_145222/preproc/fire_evaluation/treeFrac/CMIP6_ACCESS-ESM1-5_Lmon_historical_r1i1p1f1_treeFrac_gn_20130116T120000-20141216T120000.nc', 'frequency': 'mon', 'grid': 'gn', 'institute': 'CSIRO', 'long_name': 'Tree Cover Percentage', 'mip': 'Lmon', 'modeling_realm': ['land'], 'preprocessor': 'preproc_fraction', 'project': 'CMIP6', 'recipe_dataset_index': 0, 'short_name': 'treeFrac', 'standard_name': 'area_fraction', 'start_year': 2013, 'timerange': '20130116T120000/20141216T120000', 'units': '1', 'variable_group': 'treeFrac', 'version': 'v20191115'}, {'activity': 'CMIP', 'alias': 'ACCESS-ESM1-5', 'dataset': 'ACCESS-ESM1-5', 'diagnostic': 'fire_evaluation', 'end_year': 2014, 'ensemble': 'r1i1p1f1', 'exp': 'historical', 'filename': '/executions/recipe_20250904_145222/preproc/fire_evaluation/vegFrac/CMIP6_ACCESS-ESM1-5_Emon_historical_r1i1p1f1_vegFrac_gn_20130116T120000-20141216T120000.nc', 'frequency': 'mon', 'grid': 'gn', 'institute': 'CSIRO', 'long_name': 'Total Vegetated Percentage Cover', 'mip': 'Emon', 'modeling_realm': ['land'], 'preprocessor': 'preproc_fraction', 'project': 'CMIP6', 'recipe_dataset_index': 0, 'short_name': 'vegFrac', 'standard_name': 'area_fraction', 'start_year': 2013, 'timerange': '20130116T120000/20141216T120000', 'units': '1', 'variable_group': 'vegFrac', 'version': 'v20191115'}, {'activity': 'CMIP', 'alias': 'ACCESS-ESM1-5', 'dataset': 'ACCESS-ESM1-5', 'diagnostic': 'fire_evaluation', 'end_year': 2014, 'ensemble': 'r1i1p1f1', 'exp': 'historical', 'filename': '/executions/recipe_20250904_145222/preproc/fire_evaluation/cVeg/CMIP6_ACCESS-ESM1-5_Lmon_historical_r1i1p1f1_cVeg_gn_20130116T120000-20141216T120000.nc', 'frequency': 'mon', 'grid': 'gn', 'institute': 'CSIRO', 'long_name': 'Carbon Mass in Vegetation', 'mip': 'Lmon', 'modeling_realm': ['land'], 'preprocessor': 'preproc', 'project': 'CMIP6', 'recipe_dataset_index': 0, 'short_name': 'cVeg', 'standard_name': 'vegetation_carbon_content', 'start_year': 2013, 'timerange': '20130116T120000/20141216T120000', 'units': 'kg m-2', 'variable_group': 'cVeg', 'version': 'v20191115'}, {'activity': 'CMIP', 'alias': 'ACCESS-ESM1-5', 'dataset': 'ACCESS-ESM1-5', 'diagnostic': 'fire_evaluation', 'end_year': 2014, 'ensemble': 'r1i1p1f1', 'exp': 'historical', 'filename': '/executions/recipe_20250904_145222/preproc/fire_evaluation/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_20130116T120000-20141216T120000.nc', 'frequency': 'mon', 'grid': 'gn', 'institute': 'CSIRO', 'long_name': 'Near-Surface Air Temperature', 'mip': 'Amon', 'modeling_realm': ['atmos'], 'preprocessor': 'preproc', 'project': 'CMIP6', 'recipe_dataset_index': 0, 'short_name': 'tas', 'standard_name': 'air_temperature', 'start_year': 2013, 'timerange': '20130116T120000/20141216T120000', 'units': 'K', 'variable_group': 'tas', 'version': 'v20191115'}, {'activity': 'CMIP', 'alias': 'ACCESS-ESM1-5', 'dataset': 'ACCESS-ESM1-5', 'diagnostic': 'fire_evaluation', 'end_year': 2014, 'ensemble': 'r1i1p1f1', 'exp': 'historical', 'filename': '/executions/recipe_20250904_145222/preproc/fire_evaluation/hurs/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_hurs_gn_20130116T120000-20141216T120000.nc', 'frequency': 'mon', 'grid': 'gn', 'institute': 'CSIRO', 'long_name': 'Near-Surface Relative Humidity', 'mip': 'Amon', 'modeling_realm': ['atmos'], 'preprocessor': 'preproc', 'project': 'CMIP6', 'recipe_dataset_index': 0, 'short_name': 'hurs', 'standard_name': 'relative_humidity', 'start_year': 2013, 'timerange': '20130116T120000/20141216T120000', 'units': '%', 'variable_group': 'hurs', 'version': 'v20191115'}] +INFO:fire_diagnostic:Variable pr +INFO:fire_diagnostic:Variable tasmax +INFO:fire_diagnostic:Variable treeFrac +INFO:fire_diagnostic:Variable vegFrac +INFO:fire_diagnostic:Variable cVeg +INFO:fire_diagnostic:Variable tas +INFO:fire_diagnostic:Variable hurs +INFO:fire_diagnostic:dict_keys(['pr', 'tasmax', 'treeFrac', 'vegFrac', 'cVeg', 'tas', 'hurs']) +INFO:fire_diagnostic:Processing vapor_pressure_deficit for ACCESS-ESM1-5 +INFO:fire_diagnostic:Saving vapor_pressure_deficit in /executions/recipe_20250904_145222/work/fire_evaluation/fire_evaluation/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_vpd_gn_20130116T120000-20141216T120000 +INFO:fire_diagnostic:Input files used for diagnostic [['/executions/recipe_20250904_145222/preproc/fire_evaluation/pr/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_pr_gn_20130116T120000-20141216T120000.nc', 'pr'], ['/executions/recipe_20250904_145222/preproc/fire_evaluation/tasmax/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tasmax_gn_20130116T120000-20141216T120000.nc', 'tasmax'], ['/executions/recipe_20250904_145222/preproc/fire_evaluation/treeFrac/CMIP6_ACCESS-ESM1-5_Lmon_historical_r1i1p1f1_treeFrac_gn_20130116T120000-20141216T120000.nc', 'treeFrac'], ['/executions/recipe_20250904_145222/preproc/fire_evaluation/vegFrac/CMIP6_ACCESS-ESM1-5_Emon_historical_r1i1p1f1_vegFrac_gn_20130116T120000-20141216T120000.nc', 'vegFrac'], ['/executions/recipe_20250904_145222/work/fire_evaluation/fire_evaluation/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_vpd_gn_20130116T120000-20141216T120000.nc', 'vpd'], ['/executions/recipe_20250904_145222/preproc/fire_evaluation/cVeg/CMIP6_ACCESS-ESM1-5_Lmon_historical_r1i1p1f1_cVeg_gn_20130116T120000-20141216T120000.nc', 'cVeg']] +INFO:fire_diagnostic:Running diagnostic model ConFire. +INFO:diagnostic_run_confire:Loading data for ConFire model... +INFO:diagnostic_run_confire:Opening: +INFO:diagnostic_run_confire:['/executions/recipe_20250904_145222/preproc/fire_evaluation/pr/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_pr_gn_20130116T120000-20141216T120000.nc', 'pr'] +INFO:diagnostic_run_confire:Opening: +INFO:diagnostic_run_confire:['/executions/recipe_20250904_145222/preproc/fire_evaluation/pr/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_pr_gn_20130116T120000-20141216T120000.nc', 'pr'] +INFO:diagnostic_run_confire:Opening: +INFO:diagnostic_run_confire:['/executions/recipe_20250904_145222/preproc/fire_evaluation/tasmax/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tasmax_gn_20130116T120000-20141216T120000.nc', 'tasmax'] +INFO:diagnostic_run_confire:Opening: +INFO:diagnostic_run_confire:['/executions/recipe_20250904_145222/preproc/fire_evaluation/treeFrac/CMIP6_ACCESS-ESM1-5_Lmon_historical_r1i1p1f1_treeFrac_gn_20130116T120000-20141216T120000.nc', 'treeFrac'] +INFO:diagnostic_run_confire:Opening: +INFO:diagnostic_run_confire:['/executions/recipe_20250904_145222/preproc/fire_evaluation/vegFrac/CMIP6_ACCESS-ESM1-5_Emon_historical_r1i1p1f1_vegFrac_gn_20130116T120000-20141216T120000.nc', 'vegFrac'] +INFO:diagnostic_run_confire:Opening: +INFO:diagnostic_run_confire:['/executions/recipe_20250904_145222/work/fire_evaluation/fire_evaluation/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_vpd_gn_20130116T120000-20141216T120000.nc', 'vpd'] +INFO:diagnostic_run_confire:Opening: +INFO:diagnostic_run_confire:['/executions/recipe_20250904_145222/preproc/fire_evaluation/cVeg/CMIP6_ACCESS-ESM1-5_Lmon_historical_r1i1p1f1_cVeg_gn_20130116T120000-20141216T120000.nc', 'cVeg'] +INFO:diagnostic_run_confire:Opening: +INFO:diagnostic_run_confire:['/executions/recipe_20250904_145222/preproc/fire_evaluation/pr/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_pr_gn_20130116T120000-20141216T120000.nc', 'pr'] +INFO:diagnostic_run_confire:Loading ConFire model parameters... +INFO:diagnostic_run_confire:Running ConFire model... +WARNING:py.warnings:/home/bandela/climate_ref/software/conda/esmvaltool-1b3bf252de04f119f83bfe65fac5aa040d9d97b4/lib/python3.12/site-packages/esmvaltool/diag_scripts/fire/diagnostic_run_confire.py:818: RuntimeWarning: overflow encountered in exp + return 1.0 / (1.0 + self.numpck.exp(-data * factor)) + +INFO:diagnostic_run_confire:Saving ConFire output cubes... +WARNING:py.warnings:/home/bandela/climate_ref/software/conda/esmvaltool-1b3bf252de04f119f83bfe65fac5aa040d9d97b4/lib/python3.12/site-packages/distributed/client.py:3371: UserWarning: Sending large graph of size 93.24 MiB. +This may cause some slowdown. +Consider loading the data with Dask directly + or using futures or delayed objects to embed the data into the graph without repetition. +See also https://docs.dask.org/en/stable/best-practices.html#load-data-with-dask for more information. + warnings.warn( + +WARNING:py.warnings:/home/bandela/climate_ref/software/conda/esmvaltool-1b3bf252de04f119f83bfe65fac5aa040d9d97b4/lib/python3.12/site-packages/distributed/client.py:3371: UserWarning: Sending large graph of size 80.19 MiB. +This may cause some slowdown. +Consider loading the data with Dask directly + or using futures or delayed objects to embed the data into the graph without repetition. +See also https://docs.dask.org/en/stable/best-practices.html#load-data-with-dask for more information. + warnings.warn( + +INFO:diagnostic_run_confire:Plotting model diagnostic outputs... +WARNING:py.warnings:/home/bandela/climate_ref/software/conda/esmvaltool-1b3bf252de04f119f83bfe65fac5aa040d9d97b4/lib/python3.12/site-packages/iris/coords.py:2194: IrisVagueMetadataWarning: Cannot check if coordinate is contiguous: Invalid operation for 'time', with 0 bound(s). Contiguous bounds are only defined for 1D coordinates with 2 bounds. Metadata may not be fully descriptive for 'time'. Ignoring bounds. + warnings.warn( + +WARNING:py.warnings:/home/bandela/climate_ref/software/conda/esmvaltool-1b3bf252de04f119f83bfe65fac5aa040d9d97b4/lib/python3.12/site-packages/iris/coords.py:2194: IrisVagueMetadataWarning: Cannot check if coordinate is contiguous: Invalid operation for 'month', with 0 bound(s). Contiguous bounds are only defined for 1D coordinates with 2 bounds. Metadata may not be fully descriptive for 'month'. Ignoring bounds. + warnings.warn( + +WARNING:py.warnings:/home/bandela/climate_ref/software/conda/esmvaltool-1b3bf252de04f119f83bfe65fac5aa040d9d97b4/lib/python3.12/site-packages/iris/coords.py:2194: IrisVagueMetadataWarning: Cannot check if coordinate is contiguous: Invalid operation for 'year', with 0 bound(s). Contiguous bounds are only defined for 1D coordinates with 2 bounds. Metadata may not be fully descriptive for 'year'. Ignoring bounds. + warnings.warn( + +WARNING:py.warnings:/home/bandela/climate_ref/software/conda/esmvaltool-1b3bf252de04f119f83bfe65fac5aa040d9d97b4/lib/python3.12/site-packages/iris/coords.py:2194: IrisVagueMetadataWarning: Cannot check if coordinate is contiguous: Invalid operation for 'realization', with 0 bound(s). Contiguous bounds are only defined for 1D coordinates with 2 bounds. Metadata may not be fully descriptive for 'realization'. Ignoring bounds. + warnings.warn( + +WARNING:py.warnings:/home/bandela/climate_ref/software/conda/esmvaltool-1b3bf252de04f119f83bfe65fac5aa040d9d97b4/lib/python3.12/site-packages/iris/coords.py:2194: IrisVagueMetadataWarning: Cannot check if coordinate is contiguous: Invalid operation for 'time', with 0 bound(s). Contiguous bounds are only defined for 1D coordinates with 2 bounds. Metadata may not be fully descriptive for 'time'. Ignoring bounds. + warnings.warn( + +WARNING:py.warnings:/home/bandela/climate_ref/software/conda/esmvaltool-1b3bf252de04f119f83bfe65fac5aa040d9d97b4/lib/python3.12/site-packages/iris/coords.py:2194: IrisVagueMetadataWarning: Cannot check if coordinate is contiguous: Invalid operation for 'month', with 0 bound(s). Contiguous bounds are only defined for 1D coordinates with 2 bounds. Metadata may not be fully descriptive for 'month'. Ignoring bounds. + warnings.warn( + +WARNING:py.warnings:/home/bandela/climate_ref/software/conda/esmvaltool-1b3bf252de04f119f83bfe65fac5aa040d9d97b4/lib/python3.12/site-packages/iris/coords.py:2194: IrisVagueMetadataWarning: Cannot check if coordinate is contiguous: Invalid operation for 'year', with 0 bound(s). Contiguous bounds are only defined for 1D coordinates with 2 bounds. Metadata may not be fully descriptive for 'year'. Ignoring bounds. + warnings.warn( + +WARNING:py.warnings:/home/bandela/climate_ref/software/conda/esmvaltool-1b3bf252de04f119f83bfe65fac5aa040d9d97b4/lib/python3.12/site-packages/iris/coords.py:2194: IrisVagueMetadataWarning: Cannot check if coordinate is contiguous: Invalid operation for 'realization', with 0 bound(s). Contiguous bounds are only defined for 1D coordinates with 2 bounds. Metadata may not be fully descriptive for 'realization'. Ignoring bounds. + warnings.warn( + +WARNING:py.warnings:/home/bandela/climate_ref/software/conda/esmvaltool-1b3bf252de04f119f83bfe65fac5aa040d9d97b4/lib/python3.12/site-packages/iris/coords.py:2194: IrisVagueMetadataWarning: Cannot check if coordinate is contiguous: Invalid operation for 'time', with 0 bound(s). Contiguous bounds are only defined for 1D coordinates with 2 bounds. Metadata may not be fully descriptive for 'time'. Ignoring bounds. + warnings.warn( + +WARNING:py.warnings:/home/bandela/climate_ref/software/conda/esmvaltool-1b3bf252de04f119f83bfe65fac5aa040d9d97b4/lib/python3.12/site-packages/iris/coords.py:2194: IrisVagueMetadataWarning: Cannot check if coordinate is contiguous: Invalid operation for 'month', with 0 bound(s). Contiguous bounds are only defined for 1D coordinates with 2 bounds. Metadata may not be fully descriptive for 'month'. Ignoring bounds. + warnings.warn( + +WARNING:py.warnings:/home/bandela/climate_ref/software/conda/esmvaltool-1b3bf252de04f119f83bfe65fac5aa040d9d97b4/lib/python3.12/site-packages/iris/coords.py:2194: IrisVagueMetadataWarning: Cannot check if coordinate is contiguous: Invalid operation for 'year', with 0 bound(s). Contiguous bounds are only defined for 1D coordinates with 2 bounds. Metadata may not be fully descriptive for 'year'. Ignoring bounds. + warnings.warn( + +WARNING:py.warnings:/home/bandela/climate_ref/software/conda/esmvaltool-1b3bf252de04f119f83bfe65fac5aa040d9d97b4/lib/python3.12/site-packages/iris/coords.py:2194: IrisVagueMetadataWarning: Cannot check if coordinate is contiguous: Invalid operation for 'realization', with 0 bound(s). Contiguous bounds are only defined for 1D coordinates with 2 bounds. Metadata may not be fully descriptive for 'realization'. Ignoring bounds. + warnings.warn( + +WARNING:py.warnings:/home/bandela/climate_ref/software/conda/esmvaltool-1b3bf252de04f119f83bfe65fac5aa040d9d97b4/lib/python3.12/site-packages/iris/coords.py:2194: IrisVagueMetadataWarning: Cannot check if coordinate is contiguous: Invalid operation for 'time', with 0 bound(s). Contiguous bounds are only defined for 1D coordinates with 2 bounds. Metadata may not be fully descriptive for 'time'. Ignoring bounds. + warnings.warn( + +WARNING:py.warnings:/home/bandela/climate_ref/software/conda/esmvaltool-1b3bf252de04f119f83bfe65fac5aa040d9d97b4/lib/python3.12/site-packages/iris/coords.py:2194: IrisVagueMetadataWarning: Cannot check if coordinate is contiguous: Invalid operation for 'month', with 0 bound(s). Contiguous bounds are only defined for 1D coordinates with 2 bounds. Metadata may not be fully descriptive for 'month'. Ignoring bounds. + warnings.warn( + +WARNING:py.warnings:/home/bandela/climate_ref/software/conda/esmvaltool-1b3bf252de04f119f83bfe65fac5aa040d9d97b4/lib/python3.12/site-packages/iris/coords.py:2194: IrisVagueMetadataWarning: Cannot check if coordinate is contiguous: Invalid operation for 'year', with 0 bound(s). Contiguous bounds are only defined for 1D coordinates with 2 bounds. Metadata may not be fully descriptive for 'year'. Ignoring bounds. + warnings.warn( + +WARNING:py.warnings:/home/bandela/climate_ref/software/conda/esmvaltool-1b3bf252de04f119f83bfe65fac5aa040d9d97b4/lib/python3.12/site-packages/iris/coords.py:2194: IrisVagueMetadataWarning: Cannot check if coordinate is contiguous: Invalid operation for 'realization', with 0 bound(s). Contiguous bounds are only defined for 1D coordinates with 2 bounds. Metadata may not be fully descriptive for 'realization'. Ignoring bounds. + warnings.warn( + +WARNING:py.warnings:/home/bandela/climate_ref/software/conda/esmvaltool-1b3bf252de04f119f83bfe65fac5aa040d9d97b4/lib/python3.12/site-packages/iris/coords.py:2194: IrisVagueMetadataWarning: Cannot check if coordinate is contiguous: Invalid operation for 'time', with 0 bound(s). Contiguous bounds are only defined for 1D coordinates with 2 bounds. Metadata may not be fully descriptive for 'time'. Ignoring bounds. + warnings.warn( + +WARNING:py.warnings:/home/bandela/climate_ref/software/conda/esmvaltool-1b3bf252de04f119f83bfe65fac5aa040d9d97b4/lib/python3.12/site-packages/iris/coords.py:2194: IrisVagueMetadataWarning: Cannot check if coordinate is contiguous: Invalid operation for 'month', with 0 bound(s). Contiguous bounds are only defined for 1D coordinates with 2 bounds. Metadata may not be fully descriptive for 'month'. Ignoring bounds. + warnings.warn( + +WARNING:py.warnings:/home/bandela/climate_ref/software/conda/esmvaltool-1b3bf252de04f119f83bfe65fac5aa040d9d97b4/lib/python3.12/site-packages/iris/coords.py:2194: IrisVagueMetadataWarning: Cannot check if coordinate is contiguous: Invalid operation for 'year', with 0 bound(s). Contiguous bounds are only defined for 1D coordinates with 2 bounds. Metadata may not be fully descriptive for 'year'. Ignoring bounds. + warnings.warn( + +WARNING:py.warnings:/home/bandela/climate_ref/software/conda/esmvaltool-1b3bf252de04f119f83bfe65fac5aa040d9d97b4/lib/python3.12/site-packages/iris/coords.py:2194: IrisVagueMetadataWarning: Cannot check if coordinate is contiguous: Invalid operation for 'realization', with 0 bound(s). Contiguous bounds are only defined for 1D coordinates with 2 bounds. Metadata may not be fully descriptive for 'realization'. Ignoring bounds. + warnings.warn( + +WARNING:py.warnings:/home/bandela/climate_ref/software/conda/esmvaltool-1b3bf252de04f119f83bfe65fac5aa040d9d97b4/lib/python3.12/site-packages/iris/coords.py:2194: IrisVagueMetadataWarning: Cannot check if coordinate is contiguous: Invalid operation for 'time', with 0 bound(s). Contiguous bounds are only defined for 1D coordinates with 2 bounds. Metadata may not be fully descriptive for 'time'. Ignoring bounds. + warnings.warn( + +WARNING:py.warnings:/home/bandela/climate_ref/software/conda/esmvaltool-1b3bf252de04f119f83bfe65fac5aa040d9d97b4/lib/python3.12/site-packages/iris/coords.py:2194: IrisVagueMetadataWarning: Cannot check if coordinate is contiguous: Invalid operation for 'month', with 0 bound(s). Contiguous bounds are only defined for 1D coordinates with 2 bounds. Metadata may not be fully descriptive for 'month'. Ignoring bounds. + warnings.warn( + +WARNING:py.warnings:/home/bandela/climate_ref/software/conda/esmvaltool-1b3bf252de04f119f83bfe65fac5aa040d9d97b4/lib/python3.12/site-packages/iris/coords.py:2194: IrisVagueMetadataWarning: Cannot check if coordinate is contiguous: Invalid operation for 'year', with 0 bound(s). Contiguous bounds are only defined for 1D coordinates with 2 bounds. Metadata may not be fully descriptive for 'year'. Ignoring bounds. + warnings.warn( + +WARNING:py.warnings:/home/bandela/climate_ref/software/conda/esmvaltool-1b3bf252de04f119f83bfe65fac5aa040d9d97b4/lib/python3.12/site-packages/iris/coords.py:2194: IrisVagueMetadataWarning: Cannot check if coordinate is contiguous: Invalid operation for 'realization', with 0 bound(s). Contiguous bounds are only defined for 1D coordinates with 2 bounds. Metadata may not be fully descriptive for 'realization'. Ignoring bounds. + warnings.warn( + +INFO:fire_diagnostic:Removing files in /executions/recipe_20250904_145222/work/fire_evaluation/fire_evaluation/ConFire_outputs +INFO:fire_diagnostic:Removing fuel_load_continuity_control_ACCESS-ESM1-5_20130116T120000-20141216T120000.nc +INFO:fire_diagnostic:Removed fuel_load_continuity_control_ACCESS-ESM1-5_20130116T120000-20141216T120000.nc +INFO:fire_diagnostic:Removing fire_weather_control_ACCESS-ESM1-5_20130116T120000-20141216T120000.nc +INFO:fire_diagnostic:Removed fire_weather_control_ACCESS-ESM1-5_20130116T120000-20141216T120000.nc +INFO:fire_diagnostic:Removing burnt_fraction_ACCESS-ESM1-5_20130116T120000-20141216T120000.nc +INFO:fire_diagnostic:Removed burnt_fraction_ACCESS-ESM1-5_20130116T120000-20141216T120000.nc +INFO:fire_diagnostic:Files not removed: [] +INFO:esmvaltool.diag_scripts.shared._base:End of diagnostic script run. diff --git a/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/run/fire_evaluation/fire_evaluation/resource_usage.txt b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/run/fire_evaluation/fire_evaluation/resource_usage.txt new file mode 100644 index 000000000..a0e73e976 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/run/fire_evaluation/fire_evaluation/resource_usage.txt @@ -0,0 +1,23 @@ +Date and time (UTC) Real time (s) CPU time (s) CPU (%) Memory (GB) Memory (%) Disk read (GB) Disk write (GB) +2025-09-04 14:52:28.104111 1.0 0.9 0 0.2 2 0.013 0.001 +2025-09-04 14:52:29.109651 2.0 1.8 86 0.4 2 0.047 0.002 +2025-09-04 14:52:30.118123 3.0 2.5 76 0.5 3 0.05 0.002 +2025-09-04 14:52:31.126787 4.0 2.6 8 0.5 3 0.05 0.002 +2025-09-04 14:52:32.132193 5.0 3.0 41 0.5 3 0.05 0.002 +2025-09-04 14:52:33.138840 6.0 4.0 100 0.5 3 0.05 0.002 +2025-09-04 14:52:34.144153 7.0 5.0 100 0.5 3 0.05 0.002 +2025-09-04 14:52:35.149509 8.1 6.0 100 0.5 3 0.05 0.002 +2025-09-04 14:52:36.154919 9.1 7.0 100 0.5 3 0.05 0.002 +2025-09-04 14:52:37.161002 10.1 8.0 98 0.5 3 0.05 0.002 +2025-09-04 14:52:38.166063 11.1 9.0 100 0.6 4 0.05 0.002 +2025-09-04 14:52:39.171883 12.1 10.0 99 0.7 5 0.05 0.002 +2025-09-04 14:52:40.188591 13.1 10.6 59 0.8 5 0.051 0.002 +2025-09-04 14:52:41.198316 14.1 11.1 46 0.9 6 0.051 0.002 +2025-09-04 14:52:42.203927 15.1 11.3 18 0.9 6 0.051 0.002 +2025-09-04 14:52:43.209333 16.1 11.6 30 0.8 5 0.051 0.002 +2025-09-04 14:52:44.214625 17.1 12.0 38 0.9 6 0.051 0.002 +2025-09-04 14:52:45.220202 18.1 12.0 7 0.9 6 0.055 0.002 +2025-09-04 14:52:46.227202 19.1 12.1 9 0.9 6 0.055 0.002 +2025-09-04 14:52:47.233045 20.1 12.2 7 0.9 6 0.055 0.002 +2025-09-04 14:52:48.238353 21.1 12.5 30 0.6 4 0.058 0.002 +2025-09-04 14:52:49.243677 22.1 13.5 98 0.5 3 0.058 0.002 diff --git a/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/run/fire_evaluation/fire_evaluation/settings.yml b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/run/fire_evaluation/fire_evaluation/settings.yml new file mode 100644 index 000000000..687855983 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/run/fire_evaluation/fire_evaluation/settings.yml @@ -0,0 +1,27 @@ +confire_param: https://zenodo.org/records/14917245 +var_order: +- pr +- tasmax +- treeFrac +- vegFrac +- vpd +- cVeg +remove_confire_files: true +recipe: recipe.yml +version: 2.12.0 +script: fire_evaluation +run_dir: /executions/recipe_20250904_145222/run/fire_evaluation/fire_evaluation +plot_dir: /executions/recipe_20250904_145222/plots/fire_evaluation/fire_evaluation +work_dir: /executions/recipe_20250904_145222/work/fire_evaluation/fire_evaluation +output_file_type: png +log_level: info +auxiliary_data_dir: /home/bandela/auxiliary_data +scheduler_address: tcp://127.0.0.1:44557 +input_files: +- /executions/recipe_20250904_145222/preproc/fire_evaluation/pr/metadata.yml +- /executions/recipe_20250904_145222/preproc/fire_evaluation/tasmax/metadata.yml +- /executions/recipe_20250904_145222/preproc/fire_evaluation/treeFrac/metadata.yml +- /executions/recipe_20250904_145222/preproc/fire_evaluation/vegFrac/metadata.yml +- /executions/recipe_20250904_145222/preproc/fire_evaluation/cVeg/metadata.yml +- /executions/recipe_20250904_145222/preproc/fire_evaluation/tas/metadata.yml +- /executions/recipe_20250904_145222/preproc/fire_evaluation/hurs/metadata.yml diff --git a/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/run/main_log.txt b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/run/main_log.txt new file mode 100644 index 000000000..095b6301a --- /dev/null +++ b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/run/main_log.txt @@ -0,0 +1,135 @@ +INFO [321904] +______________________________________________________________________ + _____ ____ __ ____ __ _ _____ _ + | ____/ ___|| \/ \ \ / /_ _| |_ _|__ ___ | | + | _| \___ \| |\/| |\ \ / / _` | | | |/ _ \ / _ \| | + | |___ ___) | | | | \ V / (_| | | | | (_) | (_) | | + |_____|____/|_| |_| \_/ \__,_|_| |_|\___/ \___/|_| +______________________________________________________________________ + +Earth System Model Evaluation Tool + +A community tool for the evaluation of Earth system models. + +https://esmvaltool.org + +The Earth System Model Evaluation Tool (ESMValTool) is a community +diagnostics and performance metrics tool for the evaluation of Earth +System Models (ESMs) that allows for routine comparison of single or +multiple models, either against predecessor versions or against +observations. + +Tutorial: https://tutorial.esmvaltool.org +Documentation: https://docs.esmvaltool.org +Contact: esmvaltool-dev@listserv.dfn.de + +If you find this software useful for your research, please cite it using +https://doi.org/10.5281/zenodo.3387139 for ESMValCore or +https://doi.org/10.5281/zenodo.3401363 for ESMValTool or +any of the reference papers listed at https://esmvaltool.org/references/. + +Have fun! + +INFO [321904] Package versions +INFO [321904] ---------------- +INFO [321904] ESMValCore: 2.12.0 +INFO [321904] ESMValTool: 2.13.0.dev148+g2c438d0e0 +INFO [321904] ---------------- +INFO [321904] Reading configuration files from: +/home/bandela/climate_ref/software/conda/esmvaltool-1b3bf252de04f119f83bfe65fac5aa040d9d97b4/lib/python3.12/site-packages/esmvalcore/config/configurations/defaults (defaults) +/home/bandela/.config/esmvaltool (default user configuration directory) +/config (command line argument) +INFO [321904] Writing program log files to: +/executions/recipe_20250904_145222/run/main_log.txt +/executions/recipe_20250904_145222/run/main_log_debug.txt +/executions/recipe_20250904_145222/run/cmor_log.txt +INFO [321904] Starting the Earth System Model Evaluation Tool at time: 2025-09-04 14:52:23 UTC +INFO [321904] ---------------------------------------------------------------------- +INFO [321904] RECIPE = /recipe.yml +INFO [321904] RUNDIR = /executions/recipe_20250904_145222/run +INFO [321904] WORKDIR = /executions/recipe_20250904_145222/work +INFO [321904] PREPROCDIR = /executions/recipe_20250904_145222/preproc +INFO [321904] PLOTDIR = /executions/recipe_20250904_145222/plots +INFO [321904] ---------------------------------------------------------------------- +INFO [321904] Running tasks using at most 1 processes +INFO [321904] If your system hangs during execution, it may not have enough memory for keeping this number of tasks in memory. +INFO [321904] If you experience memory problems, try reducing 'max_parallel_tasks' in your configuration. +INFO [321904] Creating tasks from recipe +INFO [321904] Creating tasks for diagnostic fire_evaluation +INFO [321904] Creating diagnostic task fire_evaluation/fire_evaluation +INFO [321904] Creating preprocessor task fire_evaluation/pr +INFO [321904] Creating preprocessor 'preproc' task for variable 'pr' +INFO [321904] Found input files for Dataset: pr, Amon, CMIP6, ACCESS-ESM1-5, CMIP, historical, r1i1p1f1, gn, v20191115, supplementaries: sftlf, fx +INFO [321904] PreprocessingTask fire_evaluation/pr created. +INFO [321904] Creating preprocessor task fire_evaluation/tasmax +INFO [321904] Creating preprocessor 'preproc' task for variable 'tasmax' +INFO [321904] Found input files for Dataset: tasmax, Amon, CMIP6, ACCESS-ESM1-5, CMIP, historical, r1i1p1f1, gn, v20191115, supplementaries: sftlf, fx +INFO [321904] PreprocessingTask fire_evaluation/tasmax created. +INFO [321904] Creating preprocessor task fire_evaluation/treeFrac +INFO [321904] Creating preprocessor 'preproc_fraction' task for variable 'treeFrac' +INFO [321904] Found input files for Dataset: treeFrac, Lmon, CMIP6, ACCESS-ESM1-5, CMIP, historical, r1i1p1f1, gn, v20191115, supplementaries: sftlf, fx +INFO [321904] PreprocessingTask fire_evaluation/treeFrac created. +INFO [321904] Creating preprocessor task fire_evaluation/vegFrac +INFO [321904] Creating preprocessor 'preproc_fraction' task for variable 'vegFrac' +INFO [321904] Found input files for Dataset: vegFrac, Emon, CMIP6, ACCESS-ESM1-5, CMIP, historical, r1i1p1f1, gn, v20191115, supplementaries: sftlf, fx +INFO [321904] PreprocessingTask fire_evaluation/vegFrac created. +INFO [321904] Creating preprocessor task fire_evaluation/cVeg +INFO [321904] Creating preprocessor 'preproc' task for variable 'cVeg' +INFO [321904] Found input files for Dataset: cVeg, Lmon, CMIP6, ACCESS-ESM1-5, CMIP, historical, r1i1p1f1, gn, v20191115, supplementaries: sftlf, fx +INFO [321904] PreprocessingTask fire_evaluation/cVeg created. +INFO [321904] Creating preprocessor task fire_evaluation/tas +INFO [321904] Creating preprocessor 'preproc' task for variable 'tas' +INFO [321904] Found input files for Dataset: tas, Amon, CMIP6, ACCESS-ESM1-5, CMIP, historical, r1i1p1f1, gn, v20191115, supplementaries: sftlf, fx +INFO [321904] PreprocessingTask fire_evaluation/tas created. +INFO [321904] Creating preprocessor task fire_evaluation/hurs +INFO [321904] Creating preprocessor 'preproc' task for variable 'hurs' +INFO [321904] Found input files for Dataset: hurs, Amon, CMIP6, ACCESS-ESM1-5, CMIP, historical, r1i1p1f1, gn, v20191115, supplementaries: sftlf, fx +INFO [321904] PreprocessingTask fire_evaluation/hurs created. +INFO [321904] These tasks will be executed: fire_evaluation/hurs, fire_evaluation/fire_evaluation, fire_evaluation/vegFrac, fire_evaluation/tasmax, fire_evaluation/tas, fire_evaluation/treeFrac, fire_evaluation/pr, fire_evaluation/cVeg +INFO [321904] Wrote recipe with version numbers and wildcards to: +file:///executions/recipe_20250904_145222/run/recipe_filled.yml +INFO [321904] Using Dask distributed scheduler (address: tcp://127.0.0.1:44557, dashboard link: http://127.0.0.1:8787/status) +INFO [321904] Running 8 tasks sequentially +INFO [321904] Starting task fire_evaluation/pr in process [321904] +INFO [321904] Computing and saving data for preprocessing task fire_evaluation/pr +INFO [321904] Successfully completed task fire_evaluation/pr (priority 1) in 0:00:01.826181 +INFO [321904] Starting task fire_evaluation/tasmax in process [321904] +INFO [321904] Computing and saving data for preprocessing task fire_evaluation/tasmax +INFO [321904] Successfully completed task fire_evaluation/tasmax (priority 2) in 0:00:00.177418 +INFO [321904] Starting task fire_evaluation/treeFrac in process [321904] +INFO [321904] Computing and saving data for preprocessing task fire_evaluation/treeFrac +INFO [321904] Successfully completed task fire_evaluation/treeFrac (priority 3) in 0:00:00.160185 +INFO [321904] Starting task fire_evaluation/vegFrac in process [321904] +INFO [321904] Computing and saving data for preprocessing task fire_evaluation/vegFrac +INFO [321904] Successfully completed task fire_evaluation/vegFrac (priority 4) in 0:00:00.100906 +INFO [321904] Starting task fire_evaluation/cVeg in process [321904] +INFO [321904] Computing and saving data for preprocessing task fire_evaluation/cVeg +INFO [321904] Successfully completed task fire_evaluation/cVeg (priority 5) in 0:00:00.151676 +INFO [321904] Starting task fire_evaluation/tas in process [321904] +INFO [321904] Computing and saving data for preprocessing task fire_evaluation/tas +INFO [321904] Successfully completed task fire_evaluation/tas (priority 6) in 0:00:00.234984 +INFO [321904] Starting task fire_evaluation/hurs in process [321904] +INFO [321904] Computing and saving data for preprocessing task fire_evaluation/hurs +INFO [321904] Successfully completed task fire_evaluation/hurs (priority 7) in 0:00:00.253739 +INFO [321904] Starting task fire_evaluation/fire_evaluation in process [321904] +INFO [321904] Running command ['/home/bandela/climate_ref/software/conda/esmvaltool-1b3bf252de04f119f83bfe65fac5aa040d9d97b4/bin/python', '/home/bandela/climate_ref/software/conda/esmvaltool-1b3bf252de04f119f83bfe65fac5aa040d9d97b4/lib/python3.12/site-packages/esmvaltool/diag_scripts/fire/fire_diagnostic.py', '/executions/recipe_20250904_145222/run/fire_evaluation/fire_evaluation/settings.yml'] +INFO [321904] Writing output to /executions/recipe_20250904_145222/work/fire_evaluation/fire_evaluation +INFO [321904] Writing plots to /executions/recipe_20250904_145222/plots/fire_evaluation/fire_evaluation +INFO [321904] Writing log to /executions/recipe_20250904_145222/run/fire_evaluation/fire_evaluation/log.txt +INFO [321904] To re-run this diagnostic script, run: +cd /executions/recipe_20250904_145222/run/fire_evaluation/fire_evaluation; MPLBACKEND="Agg" /home/bandela/climate_ref/software/conda/esmvaltool-1b3bf252de04f119f83bfe65fac5aa040d9d97b4/bin/python /home/bandela/climate_ref/software/conda/esmvaltool-1b3bf252de04f119f83bfe65fac5aa040d9d97b4/lib/python3.12/site-packages/esmvaltool/diag_scripts/fire/fire_diagnostic.py /executions/recipe_20250904_145222/run/fire_evaluation/fire_evaluation/settings.yml +INFO [321904] Maximum memory used (estimate): 0.9 GB +INFO [321904] Sampled every second. It may be inaccurate if short but high spikes in memory consumption occur. +INFO [321904] Successfully completed task fire_evaluation/fire_evaluation (priority 0) in 0:00:23.777998 +INFO [321904] Wrote recipe with version numbers and wildcards to: +file:///executions/recipe_20250904_145222/run/recipe_filled.yml +INFO [321904] Wrote recipe output to: +file:///executions/recipe_20250904_145222/index.html +INFO [321904] Ending the Earth System Model Evaluation Tool at time: 2025-09-04 14:52:51 UTC +INFO [321904] Time for running the recipe was: 0:00:27.888279 +INFO [321904] Maximum memory used (estimate): 2.5 GB +INFO [321904] Sampled every second. It may be inaccurate if short but high spikes in memory consumption occur. +INFO [321904] Removing `preproc` directory containing preprocessed data +INFO [321904] If this data is further needed, then set `remove_preproc_dir` to `false` in your configuration +WARNING [321904] Input data is not (fully) CMOR-compliant, see /executions/recipe_20250904_145222/run/cmor_log.txt for details +INFO [321904] Run was successful diff --git a/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/run/main_log_debug.txt b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/run/main_log_debug.txt new file mode 100644 index 000000000..154fbda04 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/run/main_log_debug.txt @@ -0,0 +1,4704 @@ +2025-09-04 14:52:22,389 UTC [321904] INFO esmvalcore._main:576 +______________________________________________________________________ + _____ ____ __ ____ __ _ _____ _ + | ____/ ___|| \/ \ \ / /_ _| |_ _|__ ___ | | + | _| \___ \| |\/| |\ \ / / _` | | | |/ _ \ / _ \| | + | |___ ___) | | | | \ V / (_| | | | | (_) | (_) | | + |_____|____/|_| |_| \_/ \__,_|_| |_|\___/ \___/|_| +______________________________________________________________________ + +Earth System Model Evaluation Tool + +A community tool for the evaluation of Earth system models. + +https://esmvaltool.org + +The Earth System Model Evaluation Tool (ESMValTool) is a community +diagnostics and performance metrics tool for the evaluation of Earth +System Models (ESMs) that allows for routine comparison of single or +multiple models, either against predecessor versions or against +observations. + +Tutorial: https://tutorial.esmvaltool.org +Documentation: https://docs.esmvaltool.org +Contact: esmvaltool-dev@listserv.dfn.de + +If you find this software useful for your research, please cite it using +https://doi.org/10.5281/zenodo.3387139 for ESMValCore or +https://doi.org/10.5281/zenodo.3401363 for ESMValTool or +any of the reference papers listed at https://esmvaltool.org/references/. + +Have fun! + +2025-09-04 14:52:22,389 UTC [321904] INFO esmvalcore._main:577 Package versions +2025-09-04 14:52:22,389 UTC [321904] INFO esmvalcore._main:578 ---------------- +2025-09-04 14:52:22,389 UTC [321904] INFO esmvalcore._main:579 ESMValCore: 2.12.0 +2025-09-04 14:52:22,389 UTC [321904] INFO esmvalcore._main:581 ESMValTool: 2.13.0.dev148+g2c438d0e0 +2025-09-04 14:52:22,389 UTC [321904] INFO esmvalcore._main:582 ---------------- +2025-09-04 14:52:22,389 UTC [321904] INFO esmvalcore._main:583 Reading configuration files from: +/home/bandela/climate_ref/software/conda/esmvaltool-1b3bf252de04f119f83bfe65fac5aa040d9d97b4/lib/python3.12/site-packages/esmvalcore/config/configurations/defaults (defaults) +/home/bandela/.config/esmvaltool (default user configuration directory) +/config (command line argument) +2025-09-04 14:52:22,389 UTC [321904] INFO esmvalcore._main:587 Writing program log files to: +/executions/recipe_20250904_145222/run/main_log.txt +/executions/recipe_20250904_145222/run/main_log_debug.txt +/executions/recipe_20250904_145222/run/cmor_log.txt +2025-09-04 14:52:22,989 UTC [321904] DEBUG gribapi.bindings:58 eccodes lib search: trying to find binary wheel +2025-09-04 14:52:22,989 UTC [321904] DEBUG gribapi.bindings:65 eccodes lib search: looking in /home/bandela/climate_ref/software/conda/esmvaltool-1b3bf252de04f119f83bfe65fac5aa040d9d97b4/lib/python3.12/site-packages/eccodes.libs +2025-09-04 14:52:22,989 UTC [321904] DEBUG gribapi.bindings:65 eccodes lib search: looking in /home/bandela/climate_ref/software/conda/esmvaltool-1b3bf252de04f119f83bfe65fac5aa040d9d97b4/lib/python3.12/site-packages/eccodes/.dylibs +2025-09-04 14:52:22,989 UTC [321904] DEBUG gribapi.bindings:65 eccodes lib search: looking in /home/bandela/climate_ref/software/conda/esmvaltool-1b3bf252de04f119f83bfe65fac5aa040d9d97b4/lib/python3.12/site-packages/eccodes +2025-09-04 14:52:22,989 UTC [321904] DEBUG gribapi.bindings:91 eccodes lib search: did not find library from wheel; try to find as separate lib +2025-09-04 14:52:22,991 UTC [321904] DEBUG findlibs:301 about to search for libeccodes.so/eccodeslib in +2025-09-04 14:52:22,991 UTC [321904] DEBUG findlibs:301 about to search for libeccodes.so/eccodeslib in +2025-09-04 14:52:22,992 UTC [321904] DEBUG findlibs:303 found libeccodes.so/eccodeslib in +2025-09-04 14:52:22,992 UTC [321904] DEBUG gribapi.bindings:99 eccodes lib search: findlibs returned /home/bandela/climate_ref/software/conda/esmvaltool-1b3bf252de04f119f83bfe65fac5aa040d9d97b4/lib/libeccodes.so +2025-09-04 14:52:23,293 UTC [321904] INFO esmvalcore._main:93 Starting the Earth System Model Evaluation Tool at time: 2025-09-04 14:52:23 UTC +2025-09-04 14:52:23,293 UTC [321904] INFO esmvalcore._main:98 ---------------------------------------------------------------------- +2025-09-04 14:52:23,293 UTC [321904] INFO esmvalcore._main:99 RECIPE = /recipe.yml +2025-09-04 14:52:23,294 UTC [321904] INFO esmvalcore._main:100 RUNDIR = /executions/recipe_20250904_145222/run +2025-09-04 14:52:23,294 UTC [321904] INFO esmvalcore._main:101 WORKDIR = /executions/recipe_20250904_145222/work +2025-09-04 14:52:23,294 UTC [321904] INFO esmvalcore._main:102 PREPROCDIR = /executions/recipe_20250904_145222/preproc +2025-09-04 14:52:23,294 UTC [321904] INFO esmvalcore._main:103 PLOTDIR = /executions/recipe_20250904_145222/plots +2025-09-04 14:52:23,294 UTC [321904] INFO esmvalcore._main:104 ---------------------------------------------------------------------- +2025-09-04 14:52:23,294 UTC [321904] INFO esmvalcore._main:107 Running tasks using at most 1 processes +2025-09-04 14:52:23,294 UTC [321904] INFO esmvalcore._main:109 If your system hangs during execution, it may not have enough memory for keeping this number of tasks in memory. +2025-09-04 14:52:23,294 UTC [321904] INFO esmvalcore._main:113 If you experience memory problems, try reducing 'max_parallel_tasks' in your configuration. +2025-09-04 14:52:23,294 UTC [321904] DEBUG esmvalcore._recipe.check:67 Checking recipe against schema /home/bandela/climate_ref/software/conda/esmvaltool-1b3bf252de04f119f83bfe65fac5aa040d9d97b4/lib/python3.12/site-packages/esmvalcore/_recipe/recipe_schema.yml +2025-09-04 14:52:23,301 UTC [321904] DEBUG esmvalcore._recipe.to_datasets:360 Populating list of datasets for variable pr in diagnostic fire_evaluation +2025-09-04 14:52:23,302 UTC [321904] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/*/*/ACCESS-ESM1-5/*/*/fx/sftlf/gn/*/sftlf_fx_ACCESS-ESM1-5_*_*_gn*.nc')] +2025-09-04 14:52:23,302 UTC [321904] DEBUG esmvalcore._recipe.to_datasets:386 Found Dataset: pr, Amon, CMIP6, ACCESS-ESM1-5, CMIP, historical, r1i1p1f1, gn, supplementaries: sftlf, fx +2025-09-04 14:52:23,302 UTC [321904] DEBUG esmvalcore._recipe.to_datasets:360 Populating list of datasets for variable tasmax in diagnostic fire_evaluation +2025-09-04 14:52:23,302 UTC [321904] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/*/*/ACCESS-ESM1-5/*/*/fx/sftlf/gn/*/sftlf_fx_ACCESS-ESM1-5_*_*_gn*.nc')] +2025-09-04 14:52:23,303 UTC [321904] DEBUG esmvalcore._recipe.to_datasets:386 Found Dataset: tasmax, Amon, CMIP6, ACCESS-ESM1-5, CMIP, historical, r1i1p1f1, gn, supplementaries: sftlf, fx +2025-09-04 14:52:23,303 UTC [321904] DEBUG esmvalcore._recipe.to_datasets:360 Populating list of datasets for variable treeFrac in diagnostic fire_evaluation +2025-09-04 14:52:23,303 UTC [321904] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/*/*/ACCESS-ESM1-5/*/*/fx/sftlf/gn/*/sftlf_fx_ACCESS-ESM1-5_*_*_gn*.nc')] +2025-09-04 14:52:23,303 UTC [321904] DEBUG esmvalcore._recipe.to_datasets:386 Found Dataset: treeFrac, Lmon, CMIP6, ACCESS-ESM1-5, CMIP, historical, r1i1p1f1, gn, supplementaries: sftlf, fx +2025-09-04 14:52:23,303 UTC [321904] DEBUG esmvalcore._recipe.to_datasets:360 Populating list of datasets for variable vegFrac in diagnostic fire_evaluation +2025-09-04 14:52:23,303 UTC [321904] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/*/*/ACCESS-ESM1-5/*/*/fx/sftlf/gn/*/sftlf_fx_ACCESS-ESM1-5_*_*_gn*.nc')] +2025-09-04 14:52:23,303 UTC [321904] DEBUG esmvalcore._recipe.to_datasets:386 Found Dataset: vegFrac, Emon, CMIP6, ACCESS-ESM1-5, CMIP, historical, r1i1p1f1, gn, supplementaries: sftlf, fx +2025-09-04 14:52:23,303 UTC [321904] DEBUG esmvalcore._recipe.to_datasets:360 Populating list of datasets for variable cVeg in diagnostic fire_evaluation +2025-09-04 14:52:23,304 UTC [321904] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/*/*/ACCESS-ESM1-5/*/*/fx/sftlf/gn/*/sftlf_fx_ACCESS-ESM1-5_*_*_gn*.nc')] +2025-09-04 14:52:23,304 UTC [321904] DEBUG esmvalcore._recipe.to_datasets:386 Found Dataset: cVeg, Lmon, CMIP6, ACCESS-ESM1-5, CMIP, historical, r1i1p1f1, gn, supplementaries: sftlf, fx +2025-09-04 14:52:23,304 UTC [321904] DEBUG esmvalcore._recipe.to_datasets:360 Populating list of datasets for variable tas in diagnostic fire_evaluation +2025-09-04 14:52:23,304 UTC [321904] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/*/*/ACCESS-ESM1-5/*/*/fx/sftlf/gn/*/sftlf_fx_ACCESS-ESM1-5_*_*_gn*.nc')] +2025-09-04 14:52:23,304 UTC [321904] DEBUG esmvalcore._recipe.to_datasets:386 Found Dataset: tas, Amon, CMIP6, ACCESS-ESM1-5, CMIP, historical, r1i1p1f1, gn, supplementaries: sftlf, fx +2025-09-04 14:52:23,304 UTC [321904] DEBUG esmvalcore._recipe.to_datasets:360 Populating list of datasets for variable hurs in diagnostic fire_evaluation +2025-09-04 14:52:23,304 UTC [321904] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/*/*/ACCESS-ESM1-5/*/*/fx/sftlf/gn/*/sftlf_fx_ACCESS-ESM1-5_*_*_gn*.nc')] +2025-09-04 14:52:23,304 UTC [321904] DEBUG esmvalcore._recipe.to_datasets:386 Found Dataset: hurs, Amon, CMIP6, ACCESS-ESM1-5, CMIP, historical, r1i1p1f1, gn, supplementaries: sftlf, fx +2025-09-04 14:52:23,305 UTC [321904] DEBUG esmvalcore._recipe.recipe:879 Retrieving diagnostics from recipe +2025-09-04 14:52:23,305 UTC [321904] DEBUG esmvalcore._recipe.recipe:909 Setting script for diagnostic fire_evaluation +2025-09-04 14:52:23,305 UTC [321904] INFO esmvalcore._recipe.recipe:1119 Creating tasks from recipe +2025-09-04 14:52:23,305 UTC [321904] INFO esmvalcore._recipe.recipe:1128 Creating tasks for diagnostic fire_evaluation +2025-09-04 14:52:23,305 UTC [321904] INFO esmvalcore._recipe.recipe:1041 Creating diagnostic task fire_evaluation/fire_evaluation +2025-09-04 14:52:23,305 UTC [321904] DEBUG esmvalcore._task:397 No local diagnostic script found. Attempting to load the script from the base repository. +2025-09-04 14:52:23,305 UTC [321904] INFO esmvalcore._recipe.recipe:1103 Creating preprocessor task fire_evaluation/pr +2025-09-04 14:52:23,305 UTC [321904] INFO esmvalcore._recipe.recipe:739 Creating preprocessor 'preproc' task for variable 'pr' +2025-09-04 14:52:23,305 UTC [321904] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/pr/gn/*/pr_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn*.nc')] +2025-09-04 14:52:23,306 UTC [321904] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/*/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn*.nc')] +2025-09-04 14:52:23,306 UTC [321904] DEBUG esmvalcore._recipe.recipe:313 Using input files for variable pr of dataset ACCESS-ESM1-5: + /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/pr/gn/v20191115/pr_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc +with files for supplementary variable sftlf: + /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc +2025-09-04 14:52:23,306 UTC [321904] INFO esmvalcore._recipe.recipe:597 Found input files for Dataset: pr, Amon, CMIP6, ACCESS-ESM1-5, CMIP, historical, r1i1p1f1, gn, v20191115, supplementaries: sftlf, fx +2025-09-04 14:52:23,307 UTC [321904] INFO esmvalcore._recipe.recipe:766 PreprocessingTask fire_evaluation/pr created. +2025-09-04 14:52:23,307 UTC [321904] DEBUG esmvalcore._recipe.recipe:767 PreprocessingTask fire_evaluation/pr will create the files: +/executions/recipe_20250904_145222/preproc/fire_evaluation/pr/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_pr_gn_20130116T120000-20141216T120000.nc +2025-09-04 14:52:23,307 UTC [321904] INFO esmvalcore._recipe.recipe:1103 Creating preprocessor task fire_evaluation/tasmax +2025-09-04 14:52:23,307 UTC [321904] INFO esmvalcore._recipe.recipe:739 Creating preprocessor 'preproc' task for variable 'tasmax' +2025-09-04 14:52:23,307 UTC [321904] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tasmax/gn/*/tasmax_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn*.nc')] +2025-09-04 14:52:23,307 UTC [321904] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/*/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn*.nc')] +2025-09-04 14:52:23,307 UTC [321904] DEBUG esmvalcore._recipe.recipe:313 Using input files for variable tasmax of dataset ACCESS-ESM1-5: + /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tasmax/gn/v20191115/tasmax_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc +with files for supplementary variable sftlf: + /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc +2025-09-04 14:52:23,307 UTC [321904] INFO esmvalcore._recipe.recipe:597 Found input files for Dataset: tasmax, Amon, CMIP6, ACCESS-ESM1-5, CMIP, historical, r1i1p1f1, gn, v20191115, supplementaries: sftlf, fx +2025-09-04 14:52:23,308 UTC [321904] INFO esmvalcore._recipe.recipe:766 PreprocessingTask fire_evaluation/tasmax created. +2025-09-04 14:52:23,308 UTC [321904] DEBUG esmvalcore._recipe.recipe:767 PreprocessingTask fire_evaluation/tasmax will create the files: +/executions/recipe_20250904_145222/preproc/fire_evaluation/tasmax/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tasmax_gn_20130116T120000-20141216T120000.nc +2025-09-04 14:52:23,308 UTC [321904] INFO esmvalcore._recipe.recipe:1103 Creating preprocessor task fire_evaluation/treeFrac +2025-09-04 14:52:23,308 UTC [321904] INFO esmvalcore._recipe.recipe:739 Creating preprocessor 'preproc_fraction' task for variable 'treeFrac' +2025-09-04 14:52:23,308 UTC [321904] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/treeFrac/gn/*/treeFrac_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn*.nc')] +2025-09-04 14:52:23,308 UTC [321904] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/*/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn*.nc')] +2025-09-04 14:52:23,308 UTC [321904] DEBUG esmvalcore._recipe.recipe:313 Using input files for variable treeFrac of dataset ACCESS-ESM1-5: + /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/treeFrac/gn/v20191115/treeFrac_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc +with files for supplementary variable sftlf: + /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc +2025-09-04 14:52:23,308 UTC [321904] INFO esmvalcore._recipe.recipe:597 Found input files for Dataset: treeFrac, Lmon, CMIP6, ACCESS-ESM1-5, CMIP, historical, r1i1p1f1, gn, v20191115, supplementaries: sftlf, fx +2025-09-04 14:52:23,309 UTC [321904] INFO esmvalcore._recipe.recipe:766 PreprocessingTask fire_evaluation/treeFrac created. +2025-09-04 14:52:23,309 UTC [321904] DEBUG esmvalcore._recipe.recipe:767 PreprocessingTask fire_evaluation/treeFrac will create the files: +/executions/recipe_20250904_145222/preproc/fire_evaluation/treeFrac/CMIP6_ACCESS-ESM1-5_Lmon_historical_r1i1p1f1_treeFrac_gn_20130116T120000-20141216T120000.nc +2025-09-04 14:52:23,309 UTC [321904] INFO esmvalcore._recipe.recipe:1103 Creating preprocessor task fire_evaluation/vegFrac +2025-09-04 14:52:23,309 UTC [321904] INFO esmvalcore._recipe.recipe:739 Creating preprocessor 'preproc_fraction' task for variable 'vegFrac' +2025-09-04 14:52:23,309 UTC [321904] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Emon/vegFrac/gn/*/vegFrac_Emon_ACCESS-ESM1-5_historical_r1i1p1f1_gn*.nc')] +2025-09-04 14:52:23,309 UTC [321904] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/*/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn*.nc')] +2025-09-04 14:52:23,309 UTC [321904] DEBUG esmvalcore._recipe.recipe:313 Using input files for variable vegFrac of dataset ACCESS-ESM1-5: + /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Emon/vegFrac/gn/v20191115/vegFrac_Emon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc +with files for supplementary variable sftlf: + /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc +2025-09-04 14:52:23,309 UTC [321904] INFO esmvalcore._recipe.recipe:597 Found input files for Dataset: vegFrac, Emon, CMIP6, ACCESS-ESM1-5, CMIP, historical, r1i1p1f1, gn, v20191115, supplementaries: sftlf, fx +2025-09-04 14:52:23,310 UTC [321904] INFO esmvalcore._recipe.recipe:766 PreprocessingTask fire_evaluation/vegFrac created. +2025-09-04 14:52:23,310 UTC [321904] DEBUG esmvalcore._recipe.recipe:767 PreprocessingTask fire_evaluation/vegFrac will create the files: +/executions/recipe_20250904_145222/preproc/fire_evaluation/vegFrac/CMIP6_ACCESS-ESM1-5_Emon_historical_r1i1p1f1_vegFrac_gn_20130116T120000-20141216T120000.nc +2025-09-04 14:52:23,310 UTC [321904] INFO esmvalcore._recipe.recipe:1103 Creating preprocessor task fire_evaluation/cVeg +2025-09-04 14:52:23,310 UTC [321904] INFO esmvalcore._recipe.recipe:739 Creating preprocessor 'preproc' task for variable 'cVeg' +2025-09-04 14:52:23,310 UTC [321904] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/cVeg/gn/*/cVeg_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn*.nc')] +2025-09-04 14:52:23,310 UTC [321904] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/*/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn*.nc')] +2025-09-04 14:52:23,310 UTC [321904] DEBUG esmvalcore._recipe.recipe:313 Using input files for variable cVeg of dataset ACCESS-ESM1-5: + /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/cVeg/gn/v20191115/cVeg_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc +with files for supplementary variable sftlf: + /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc +2025-09-04 14:52:23,310 UTC [321904] INFO esmvalcore._recipe.recipe:597 Found input files for Dataset: cVeg, Lmon, CMIP6, ACCESS-ESM1-5, CMIP, historical, r1i1p1f1, gn, v20191115, supplementaries: sftlf, fx +2025-09-04 14:52:23,311 UTC [321904] INFO esmvalcore._recipe.recipe:766 PreprocessingTask fire_evaluation/cVeg created. +2025-09-04 14:52:23,311 UTC [321904] DEBUG esmvalcore._recipe.recipe:767 PreprocessingTask fire_evaluation/cVeg will create the files: +/executions/recipe_20250904_145222/preproc/fire_evaluation/cVeg/CMIP6_ACCESS-ESM1-5_Lmon_historical_r1i1p1f1_cVeg_gn_20130116T120000-20141216T120000.nc +2025-09-04 14:52:23,311 UTC [321904] INFO esmvalcore._recipe.recipe:1103 Creating preprocessor task fire_evaluation/tas +2025-09-04 14:52:23,311 UTC [321904] INFO esmvalcore._recipe.recipe:739 Creating preprocessor 'preproc' task for variable 'tas' +2025-09-04 14:52:23,311 UTC [321904] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/*/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn*.nc')] +2025-09-04 14:52:23,311 UTC [321904] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/*/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn*.nc')] +2025-09-04 14:52:23,311 UTC [321904] DEBUG esmvalcore._recipe.recipe:313 Using input files for variable tas of dataset ACCESS-ESM1-5: + /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc +with files for supplementary variable sftlf: + /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc +2025-09-04 14:52:23,312 UTC [321904] INFO esmvalcore._recipe.recipe:597 Found input files for Dataset: tas, Amon, CMIP6, ACCESS-ESM1-5, CMIP, historical, r1i1p1f1, gn, v20191115, supplementaries: sftlf, fx +2025-09-04 14:52:23,312 UTC [321904] INFO esmvalcore._recipe.recipe:766 PreprocessingTask fire_evaluation/tas created. +2025-09-04 14:52:23,312 UTC [321904] DEBUG esmvalcore._recipe.recipe:767 PreprocessingTask fire_evaluation/tas will create the files: +/executions/recipe_20250904_145222/preproc/fire_evaluation/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_20130116T120000-20141216T120000.nc +2025-09-04 14:52:23,312 UTC [321904] INFO esmvalcore._recipe.recipe:1103 Creating preprocessor task fire_evaluation/hurs +2025-09-04 14:52:23,312 UTC [321904] INFO esmvalcore._recipe.recipe:739 Creating preprocessor 'preproc' task for variable 'hurs' +2025-09-04 14:52:23,312 UTC [321904] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/hurs/gn/*/hurs_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn*.nc')] +2025-09-04 14:52:23,312 UTC [321904] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/*/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn*.nc')] +2025-09-04 14:52:23,313 UTC [321904] DEBUG esmvalcore._recipe.recipe:313 Using input files for variable hurs of dataset ACCESS-ESM1-5: + /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/hurs/gn/v20191115/hurs_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc +with files for supplementary variable sftlf: + /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc +2025-09-04 14:52:23,313 UTC [321904] INFO esmvalcore._recipe.recipe:597 Found input files for Dataset: hurs, Amon, CMIP6, ACCESS-ESM1-5, CMIP, historical, r1i1p1f1, gn, v20191115, supplementaries: sftlf, fx +2025-09-04 14:52:23,313 UTC [321904] INFO esmvalcore._recipe.recipe:766 PreprocessingTask fire_evaluation/hurs created. +2025-09-04 14:52:23,313 UTC [321904] DEBUG esmvalcore._recipe.recipe:767 PreprocessingTask fire_evaluation/hurs will create the files: +/executions/recipe_20250904_145222/preproc/fire_evaluation/hurs/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_hurs_gn_20130116T120000-20141216T120000.nc +2025-09-04 14:52:23,313 UTC [321904] DEBUG esmvalcore._recipe.recipe:962 Linking tasks for diagnostic fire_evaluation script fire_evaluation +2025-09-04 14:52:23,313 UTC [321904] DEBUG esmvalcore._recipe.recipe:975 Pattern fire_evaluation/pr matches ['fire_evaluation/pr'] +2025-09-04 14:52:23,313 UTC [321904] DEBUG esmvalcore._recipe.recipe:975 Pattern fire_evaluation/tasmax matches ['fire_evaluation/tasmax'] +2025-09-04 14:52:23,313 UTC [321904] DEBUG esmvalcore._recipe.recipe:975 Pattern fire_evaluation/treeFrac matches ['fire_evaluation/treeFrac'] +2025-09-04 14:52:23,313 UTC [321904] DEBUG esmvalcore._recipe.recipe:975 Pattern fire_evaluation/vegFrac matches ['fire_evaluation/vegFrac'] +2025-09-04 14:52:23,313 UTC [321904] DEBUG esmvalcore._recipe.recipe:975 Pattern fire_evaluation/cVeg matches ['fire_evaluation/cVeg'] +2025-09-04 14:52:23,313 UTC [321904] DEBUG esmvalcore._recipe.recipe:975 Pattern fire_evaluation/tas matches ['fire_evaluation/tas'] +2025-09-04 14:52:23,313 UTC [321904] DEBUG esmvalcore._recipe.recipe:975 Pattern fire_evaluation/hurs matches ['fire_evaluation/hurs'] +2025-09-04 14:52:23,313 UTC [321904] INFO esmvalcore._recipe.recipe:1171 These tasks will be executed: fire_evaluation/hurs, fire_evaluation/fire_evaluation, fire_evaluation/vegFrac, fire_evaluation/tasmax, fire_evaluation/tas, fire_evaluation/treeFrac, fire_evaluation/pr, fire_evaluation/cVeg +2025-09-04 14:52:23,315 UTC [321904] DEBUG esmvalcore._main:133 Recipe summary: +DiagnosticTask: fire_evaluation/fire_evaluation +script: fire/fire_diagnostic.py +settings: +{'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'confire_param': 'https://zenodo.org/records/14917245', + 'log_level': 'info', + 'output_file_type': 'png', + 'plot_dir': '/executions/recipe_20250904_145222/plots/fire_evaluation/fire_evaluation', + 'profile_diagnostic': False, + 'recipe': PosixPath('recipe.yml'), + 'remove_confire_files': True, + 'run_dir': '/executions/recipe_20250904_145222/run/fire_evaluation/fire_evaluation', + 'script': 'fire_evaluation', + 'var_order': ['pr', 'tasmax', 'treeFrac', 'vegFrac', 'vpd', 'cVeg'], + 'version': '2.12.0', + 'work_dir': '/executions/recipe_20250904_145222/work/fire_evaluation/fire_evaluation'} +ancestors: + PreprocessingTask: fire_evaluation/pr + order: ['mask_landsea', 'regrid', 'remove_supplementary_variables', 'save'] + PreprocessorFile: /executions/recipe_20250904_145222/preproc/fire_evaluation/pr/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_pr_gn_20130116T120000-20141216T120000.nc + input files: [LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/pr/gn/v20191115/pr_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] + settings: {'mask_landsea': {'mask_out': 'sea'}, + 'regrid': {'scheme': 'nearest', 'target_grid': '2.5x2.5'}, + 'remove_supplementary_variables': {}, + 'save': {'compress': False, + 'compute': False, + 'filename': PosixPath('/executions/recipe_20250904_145222/preproc/fire_evaluation/pr/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_pr_gn_20130116T120000-20141216T120000.nc')}} + ancestors: + None + + PreprocessingTask: fire_evaluation/tasmax + order: ['mask_landsea', 'regrid', 'remove_supplementary_variables', 'save'] + PreprocessorFile: /executions/recipe_20250904_145222/preproc/fire_evaluation/tasmax/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tasmax_gn_20130116T120000-20141216T120000.nc + input files: [LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tasmax/gn/v20191115/tasmax_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] + settings: {'mask_landsea': {'mask_out': 'sea'}, + 'regrid': {'scheme': 'nearest', 'target_grid': '2.5x2.5'}, + 'remove_supplementary_variables': {}, + 'save': {'compress': False, + 'compute': False, + 'filename': PosixPath('/executions/recipe_20250904_145222/preproc/fire_evaluation/tasmax/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tasmax_gn_20130116T120000-20141216T120000.nc')}} + ancestors: + None + + PreprocessingTask: fire_evaluation/treeFrac + order: ['mask_landsea', 'regrid', 'convert_units', 'remove_supplementary_variables', 'save'] + PreprocessorFile: /executions/recipe_20250904_145222/preproc/fire_evaluation/treeFrac/CMIP6_ACCESS-ESM1-5_Lmon_historical_r1i1p1f1_treeFrac_gn_20130116T120000-20141216T120000.nc + input files: [LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/treeFrac/gn/v20191115/treeFrac_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] + settings: {'convert_units': {'units': 1}, + 'mask_landsea': {'mask_out': 'sea'}, + 'regrid': {'scheme': 'nearest', 'target_grid': '2.5x2.5'}, + 'remove_supplementary_variables': {}, + 'save': {'compress': False, + 'compute': False, + 'filename': PosixPath('/executions/recipe_20250904_145222/preproc/fire_evaluation/treeFrac/CMIP6_ACCESS-ESM1-5_Lmon_historical_r1i1p1f1_treeFrac_gn_20130116T120000-20141216T120000.nc')}} + ancestors: + None + + PreprocessingTask: fire_evaluation/vegFrac + order: ['mask_landsea', 'regrid', 'convert_units', 'remove_supplementary_variables', 'save'] + PreprocessorFile: /executions/recipe_20250904_145222/preproc/fire_evaluation/vegFrac/CMIP6_ACCESS-ESM1-5_Emon_historical_r1i1p1f1_vegFrac_gn_20130116T120000-20141216T120000.nc + input files: [LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Emon/vegFrac/gn/v20191115/vegFrac_Emon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] + settings: {'convert_units': {'units': 1}, + 'mask_landsea': {'mask_out': 'sea'}, + 'regrid': {'scheme': 'nearest', 'target_grid': '2.5x2.5'}, + 'remove_supplementary_variables': {}, + 'save': {'compress': False, + 'compute': False, + 'filename': PosixPath('/executions/recipe_20250904_145222/preproc/fire_evaluation/vegFrac/CMIP6_ACCESS-ESM1-5_Emon_historical_r1i1p1f1_vegFrac_gn_20130116T120000-20141216T120000.nc')}} + ancestors: + None + + PreprocessingTask: fire_evaluation/cVeg + order: ['mask_landsea', 'regrid', 'remove_supplementary_variables', 'save'] + PreprocessorFile: /executions/recipe_20250904_145222/preproc/fire_evaluation/cVeg/CMIP6_ACCESS-ESM1-5_Lmon_historical_r1i1p1f1_cVeg_gn_20130116T120000-20141216T120000.nc + input files: [LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/cVeg/gn/v20191115/cVeg_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] + settings: {'mask_landsea': {'mask_out': 'sea'}, + 'regrid': {'scheme': 'nearest', 'target_grid': '2.5x2.5'}, + 'remove_supplementary_variables': {}, + 'save': {'compress': False, + 'compute': False, + 'filename': PosixPath('/executions/recipe_20250904_145222/preproc/fire_evaluation/cVeg/CMIP6_ACCESS-ESM1-5_Lmon_historical_r1i1p1f1_cVeg_gn_20130116T120000-20141216T120000.nc')}} + ancestors: + None + + PreprocessingTask: fire_evaluation/tas + order: ['mask_landsea', 'regrid', 'remove_supplementary_variables', 'save'] + PreprocessorFile: /executions/recipe_20250904_145222/preproc/fire_evaluation/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_20130116T120000-20141216T120000.nc + input files: [LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] + settings: {'mask_landsea': {'mask_out': 'sea'}, + 'regrid': {'scheme': 'nearest', 'target_grid': '2.5x2.5'}, + 'remove_supplementary_variables': {}, + 'save': {'compress': False, + 'compute': False, + 'filename': PosixPath('/executions/recipe_20250904_145222/preproc/fire_evaluation/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_20130116T120000-20141216T120000.nc')}} + ancestors: + None + + PreprocessingTask: fire_evaluation/hurs + order: ['mask_landsea', 'regrid', 'remove_supplementary_variables', 'save'] + PreprocessorFile: /executions/recipe_20250904_145222/preproc/fire_evaluation/hurs/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_hurs_gn_20130116T120000-20141216T120000.nc + input files: [LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/hurs/gn/v20191115/hurs_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] + settings: {'mask_landsea': {'mask_out': 'sea'}, + 'regrid': {'scheme': 'nearest', 'target_grid': '2.5x2.5'}, + 'remove_supplementary_variables': {}, + 'save': {'compress': False, + 'compute': False, + 'filename': PosixPath('/executions/recipe_20250904_145222/preproc/fire_evaluation/hurs/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_hurs_gn_20130116T120000-20141216T120000.nc')}} + ancestors: + None + +2025-09-04 14:52:23,318 UTC [321904] INFO esmvalcore._recipe.recipe:1238 Wrote recipe with version numbers and wildcards to: +file:///executions/recipe_20250904_145222/run/recipe_filled.yml +2025-09-04 14:52:23,318 UTC [321904] DEBUG esmvalcore.config._dask:170 Using Dask profile 'local_distributed' +2025-09-04 14:52:23,318 UTC [321904] DEBUG esmvalcore.config._dask:174 Using additional Dask settings {} +2025-09-04 14:52:23,319 UTC [321904] DEBUG asyncio:64 Using selector: EpollSelector +2025-09-04 14:52:24,158 UTC [321904] DEBUG esmvalcore.config._dask:192 Using Dask cluster LocalCluster(b8589b63, 'tcp://127.0.0.1:44557', workers=2, threads=4, memory=8.00 GiB) +2025-09-04 14:52:24,162 UTC [321904] DEBUG asyncio:64 Using selector: EpollSelector +2025-09-04 14:52:24,170 UTC [321904] INFO esmvalcore.config._dask:205 Using Dask distributed scheduler (address: tcp://127.0.0.1:44557, dashboard link: http://127.0.0.1:8787/status) +2025-09-04 14:52:24,171 UTC [321904] INFO esmvalcore._task:844 Running 8 tasks sequentially +2025-09-04 14:52:24,171 UTC [321904] INFO esmvalcore._task:289 Starting task fire_evaluation/pr in process [321904] +2025-09-04 14:52:24,186 UTC [321904] DEBUG esmvalcore.preprocessor:716 Running block ['mask_landsea', 'regrid'] +2025-09-04 14:52:24,186 UTC [321904] DEBUG esmvalcore.preprocessor:724 Applying single-model steps to PreprocessorFile: /executions/recipe_20250904_145222/preproc/fire_evaluation/pr/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_pr_gn_20130116T120000-20141216T120000.nc +2025-09-04 14:52:24,186 UTC [321904] DEBUG esmvalcore.esgf._download:560 All required data is available locally, not downloading anything. +2025-09-04 14:52:24,186 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-09-04 14:52:24,187 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/pr/gn/v20191115/pr_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/pr/gn/v20191115/pr_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250904_145222/preproc/fixed_files/pr_Amon_CMIP6_ACCESS-ESM1-5_CMIP_historical_r1i1p1f1_gn_v20191115_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_data')], + 'OBS': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'default': [PosixPath('/home/bandela/climate_data')], + 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/RAWOBS')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Amon', +preprocessor = 'preproc', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +timerange = '20130116T120000/20141216T120000', +short_name = 'pr', +variable_group = 'pr', +diagnostic = 'fire_evaluation', +recipe_dataset_index = 0, +alias = 'ACCESS-ESM1-5', +original_short_name = 'pr', +standard_name = 'precipitation_flux', +long_name = 'Precipitation', +units = 'kg m-2 s-1', +modeling_realm = ['atmos'], +frequency = 'mon', +version = 'v20191115' +2025-09-04 14:52:24,191 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-09-04 14:52:24,191 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/pr/gn/v20191115/pr_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/pr/gn/v20191115/pr_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc')] +with function argument(s) +ignore_warnings = None +2025-09-04 14:52:24,191 UTC [321904] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/pr/gn/v20191115/pr_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc +2025-09-04 14:52:24,214 UTC [321904] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/pr/gn/v20191115/pr_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc +2025-09-04 14:52:24,214 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-09-04 14:52:24,221 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_metadata' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/pr/gn/v20191115/pr_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_data')], + 'OBS': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'default': [PosixPath('/home/bandela/climate_data')], + 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/RAWOBS')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Amon', +preprocessor = 'preproc', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +timerange = '20130116T120000/20141216T120000', +short_name = 'pr', +variable_group = 'pr', +diagnostic = 'fire_evaluation', +recipe_dataset_index = 0, +alias = 'ACCESS-ESM1-5', +original_short_name = 'pr', +standard_name = 'precipitation_flux', +long_name = 'Precipitation', +units = 'kg m-2 s-1', +modeling_realm = ['atmos'], +frequency = 'mon', +version = 'v20191115' +2025-09-04 14:52:24,221 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-09-04 14:52:24,222 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'concatenate' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/pr/gn/v20191115/pr_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc')] +with function argument(s) +check_level = +2025-09-04 14:52:24,222 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-09-04 14:52:24,223 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_metadata' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/pr/gn/v20191115/pr_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'Amon', +frequency = 'mon', +short_name = 'pr' +2025-09-04 14:52:24,227 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step clip_timerange +2025-09-04 14:52:24,227 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'clip_timerange' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/pr/gn/v20191115/pr_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc')] +with function argument(s) +timerange = '20130116T120000/20141216T120000' +2025-09-04 14:52:24,234 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-09-04 14:52:24,235 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/pr/gn/v20191115/pr_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_data')], + 'OBS': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'default': [PosixPath('/home/bandela/climate_data')], + 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/RAWOBS')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Amon', +preprocessor = 'preproc', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +timerange = '20130116T120000/20141216T120000', +short_name = 'pr', +variable_group = 'pr', +diagnostic = 'fire_evaluation', +recipe_dataset_index = 0, +alias = 'ACCESS-ESM1-5', +original_short_name = 'pr', +standard_name = 'precipitation_flux', +long_name = 'Precipitation', +units = 'kg m-2 s-1', +modeling_realm = ['atmos'], +frequency = 'mon', +version = 'v20191115' +2025-09-04 14:52:24,235 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-09-04 14:52:24,236 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/pr/gn/v20191115/pr_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'Amon', +frequency = 'mon', +short_name = 'pr' +2025-09-04 14:52:24,236 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-09-04 14:52:24,236 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250904_145222/preproc/fixed_files/sftlf_fx_CMIP6_ACCESS-ESM1-5_CMIP_historical_r1i1p1f1_gn_v20191115_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_data')], + 'OBS': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'default': [PosixPath('/home/bandela/climate_data')], + 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/RAWOBS')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +short_name = 'sftlf', +original_short_name = 'sftlf', +standard_name = 'land_area_fraction', +long_name = 'Percentage of the Grid Cell Occupied by Land (Including Lakes)', +units = '%', +modeling_realm = ['atmos'], +frequency = 'fx', +version = 'v20191115' +2025-09-04 14:52:24,236 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-09-04 14:52:24,236 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +ignore_warnings = None +2025-09-04 14:52:24,236 UTC [321904] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc +2025-09-04 14:52:24,241 UTC [321904] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc +2025-09-04 14:52:24,241 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-09-04 14:52:24,241 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_metadata' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_data')], + 'OBS': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'default': [PosixPath('/home/bandela/climate_data')], + 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/RAWOBS')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +short_name = 'sftlf', +original_short_name = 'sftlf', +standard_name = 'land_area_fraction', +long_name = 'Percentage of the Grid Cell Occupied by Land (Including Lakes)', +units = '%', +modeling_realm = ['atmos'], +frequency = 'fx', +version = 'v20191115' +2025-09-04 14:52:24,242 UTC [321904] WARNING esmvalcore.cmor._fixes.fix.genericfix:417 Long name changed from 'Percentage of the grid cell occupied by land (including lakes)' to 'Percentage of the Grid Cell Occupied by Land (Including Lakes)' +(for file /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc) +2025-09-04 14:52:24,242 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-09-04 14:52:24,242 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'concatenate' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = +2025-09-04 14:52:24,242 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-09-04 14:52:24,242 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_metadata' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'fx', +frequency = 'fx', +short_name = 'sftlf' +2025-09-04 14:52:24,243 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-09-04 14:52:24,243 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_data')], + 'OBS': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'default': [PosixPath('/home/bandela/climate_data')], + 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/RAWOBS')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +short_name = 'sftlf', +original_short_name = 'sftlf', +standard_name = 'land_area_fraction', +long_name = 'Percentage of the Grid Cell Occupied by Land (Including Lakes)', +units = '%', +modeling_realm = ['atmos'], +frequency = 'fx', +version = 'v20191115' +2025-09-04 14:52:24,243 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-09-04 14:52:24,244 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'fx', +frequency = 'fx', +short_name = 'sftlf' +2025-09-04 14:52:24,244 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step add_supplementary_variables +2025-09-04 14:52:24,244 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'add_supplementary_variables' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/pr/gn/v20191115/pr_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +supplementary_cubes = [] +2025-09-04 14:52:24,245 UTC [321904] DEBUG esmvalcore.preprocessor._supplementary_vars:137 Added sftlf as ancillary variable in cube of pr. +2025-09-04 14:52:24,245 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step mask_landsea +2025-09-04 14:52:24,245 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'mask_landsea' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/pr/gn/v20191115/pr_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +mask_out = 'sea' +2025-09-04 14:52:24,247 UTC [321904] DEBUG esmvalcore.preprocessor._mask:137 Applying land-sea mask: sftlf +2025-09-04 14:52:24,247 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step regrid +2025-09-04 14:52:24,248 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'regrid' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/pr/gn/v20191115/pr_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +target_grid = '2.5x2.5', +scheme = 'nearest' +2025-09-04 14:52:24,249 UTC [321904] DEBUG esmvalcore.preprocessor._regrid:634 Loaded regridding scheme Nearest('mask') +2025-09-04 14:52:24,252 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step save +2025-09-04 14:52:24,253 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'save' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/pr/gn/v20191115/pr_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +compress = False, +compute = False, +filename = PosixPath('/executions/recipe_20250904_145222/preproc/fire_evaluation/pr/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_pr_gn_20130116T120000-20141216T120000.nc') +2025-09-04 14:52:24,253 UTC [321904] DEBUG esmvalcore.preprocessor._io:497 Saving cube: +precipitation_flux / (kg m-2 s-1) (time: 24; latitude: 72; longitude: 144) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Cell methods: + 0 area: time: mean + Attributes: + Conventions 'CF-1.7 CMIP-6.2' + activity_id 'CMIP' + branch_method 'standard' + branch_time_in_child np.float64(0.0) + branch_time_in_parent np.int64(-616894) + cmor_version '3.4.0' + data_specs_version '01.00.30' + experiment 'all-forcing simulation of the recent past' + experiment_id 'historical' + external_variables 'areacella' + forcing_index np.int32(1) + frequency 'mon' + further_info_url 'https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.no ...' + grid 'native atmosphere N96 grid (145x192 latxlon)' + grid_label 'gn' + initialization_index np.int32(1) + institution 'Commonwealth Scientific and Industrial Research Organisation, Aspendale, ...' + institution_id 'CSIRO' + license 'CMIP6 model data produced by CSIRO is licensed under a Creative Commons ...' + mip_era 'CMIP6' + nominal_resolution '250 km' + notes "Exp: ESM-historical; Local ID: HI-05; Variable: pr (['fld_s05i216'])" + parent_activity_id 'CMIP' + parent_experiment_id 'piControl' + parent_mip_era 'CMIP6' + parent_source_id 'ACCESS-ESM1-5' + parent_time_units 'days since 1850-1-1 00:00:00' + parent_variant_label 'r1i1p1f1' + physics_index np.int32(1) + product 'model-output' + realization_index np.int32(1) + realm 'atmos' + run_variant 'forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, ...' + source 'ACCESS-ESM1.5 (2019): \naerosol: CLASSIC (v1.0)\natmos: HadGAM2 (r1.1, ...' + source_id 'ACCESS-ESM1-5' + source_type 'AOGCM' + sub_experiment 'none' + sub_experiment_id 'none' + table_id 'Amon' + table_info 'Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371' + title 'ACCESS-ESM1-5 output prepared for CMIP6' + variable_id 'pr' + variant_label 'r1i1p1f1' + version 'v20191115' +with lazy data to /executions/recipe_20250904_145222/preproc/fire_evaluation/pr/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_pr_gn_20130116T120000-20141216T120000.nc +2025-09-04 14:52:24,367 UTC [321904] INFO esmvalcore.preprocessor:747 Computing and saving data for preprocessing task fire_evaluation/pr +2025-09-04 14:52:24,373 UTC [321904] DEBUG asyncio:64 Using selector: EpollSelector +2025-09-04 14:52:25,997 UTC [321904] INFO esmvalcore._task:295 Successfully completed task fire_evaluation/pr (priority 1) in 0:00:01.826181 +2025-09-04 14:52:25,997 UTC [321904] INFO esmvalcore._task:289 Starting task fire_evaluation/tasmax in process [321904] +2025-09-04 14:52:26,020 UTC [321904] DEBUG esmvalcore.preprocessor:716 Running block ['mask_landsea', 'regrid'] +2025-09-04 14:52:26,020 UTC [321904] DEBUG esmvalcore.preprocessor:724 Applying single-model steps to PreprocessorFile: /executions/recipe_20250904_145222/preproc/fire_evaluation/tasmax/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tasmax_gn_20130116T120000-20141216T120000.nc +2025-09-04 14:52:26,020 UTC [321904] DEBUG esmvalcore.esgf._download:560 All required data is available locally, not downloading anything. +2025-09-04 14:52:26,020 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-09-04 14:52:26,021 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tasmax/gn/v20191115/tasmax_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tasmax/gn/v20191115/tasmax_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250904_145222/preproc/fixed_files/tasmax_Amon_CMIP6_ACCESS-ESM1-5_CMIP_historical_r1i1p1f1_gn_v20191115_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_data')], + 'OBS': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'default': [PosixPath('/home/bandela/climate_data')], + 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/RAWOBS')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Amon', +preprocessor = 'preproc', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +timerange = '20130116T120000/20141216T120000', +short_name = 'tasmax', +variable_group = 'tasmax', +diagnostic = 'fire_evaluation', +recipe_dataset_index = 0, +alias = 'ACCESS-ESM1-5', +original_short_name = 'tasmax', +standard_name = 'air_temperature', +long_name = 'Daily Maximum Near-Surface Air Temperature', +units = 'K', +modeling_realm = ['atmos'], +frequency = 'mon', +version = 'v20191115' +2025-09-04 14:52:26,021 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-09-04 14:52:26,021 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tasmax/gn/v20191115/tasmax_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tasmax/gn/v20191115/tasmax_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc')] +with function argument(s) +ignore_warnings = None +2025-09-04 14:52:26,021 UTC [321904] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tasmax/gn/v20191115/tasmax_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc +2025-09-04 14:52:26,028 UTC [321904] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tasmax/gn/v20191115/tasmax_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc +2025-09-04 14:52:26,028 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-09-04 14:52:26,029 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_metadata' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tasmax/gn/v20191115/tasmax_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_data')], + 'OBS': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'default': [PosixPath('/home/bandela/climate_data')], + 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/RAWOBS')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Amon', +preprocessor = 'preproc', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +timerange = '20130116T120000/20141216T120000', +short_name = 'tasmax', +variable_group = 'tasmax', +diagnostic = 'fire_evaluation', +recipe_dataset_index = 0, +alias = 'ACCESS-ESM1-5', +original_short_name = 'tasmax', +standard_name = 'air_temperature', +long_name = 'Daily Maximum Near-Surface Air Temperature', +units = 'K', +modeling_realm = ['atmos'], +frequency = 'mon', +version = 'v20191115' +2025-09-04 14:52:26,030 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-09-04 14:52:26,030 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'concatenate' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tasmax/gn/v20191115/tasmax_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc')] +with function argument(s) +check_level = +2025-09-04 14:52:26,030 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-09-04 14:52:26,031 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_metadata' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tasmax/gn/v20191115/tasmax_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'Amon', +frequency = 'mon', +short_name = 'tasmax' +2025-09-04 14:52:26,031 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step clip_timerange +2025-09-04 14:52:26,032 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'clip_timerange' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tasmax/gn/v20191115/tasmax_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc')] +with function argument(s) +timerange = '20130116T120000/20141216T120000' +2025-09-04 14:52:26,034 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-09-04 14:52:26,035 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tasmax/gn/v20191115/tasmax_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_data')], + 'OBS': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'default': [PosixPath('/home/bandela/climate_data')], + 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/RAWOBS')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Amon', +preprocessor = 'preproc', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +timerange = '20130116T120000/20141216T120000', +short_name = 'tasmax', +variable_group = 'tasmax', +diagnostic = 'fire_evaluation', +recipe_dataset_index = 0, +alias = 'ACCESS-ESM1-5', +original_short_name = 'tasmax', +standard_name = 'air_temperature', +long_name = 'Daily Maximum Near-Surface Air Temperature', +units = 'K', +modeling_realm = ['atmos'], +frequency = 'mon', +version = 'v20191115' +2025-09-04 14:52:26,035 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-09-04 14:52:26,035 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tasmax/gn/v20191115/tasmax_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'Amon', +frequency = 'mon', +short_name = 'tasmax' +2025-09-04 14:52:26,035 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-09-04 14:52:26,036 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250904_145222/preproc/fixed_files/sftlf_fx_CMIP6_ACCESS-ESM1-5_CMIP_historical_r1i1p1f1_gn_v20191115_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_data')], + 'OBS': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'default': [PosixPath('/home/bandela/climate_data')], + 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/RAWOBS')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +short_name = 'sftlf', +original_short_name = 'sftlf', +standard_name = 'land_area_fraction', +long_name = 'Percentage of the Grid Cell Occupied by Land (Including Lakes)', +units = '%', +modeling_realm = ['atmos'], +frequency = 'fx', +version = 'v20191115' +2025-09-04 14:52:26,036 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-09-04 14:52:26,036 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +ignore_warnings = None +2025-09-04 14:52:26,036 UTC [321904] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc +2025-09-04 14:52:26,040 UTC [321904] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc +2025-09-04 14:52:26,040 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-09-04 14:52:26,041 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_metadata' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_data')], + 'OBS': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'default': [PosixPath('/home/bandela/climate_data')], + 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/RAWOBS')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +short_name = 'sftlf', +original_short_name = 'sftlf', +standard_name = 'land_area_fraction', +long_name = 'Percentage of the Grid Cell Occupied by Land (Including Lakes)', +units = '%', +modeling_realm = ['atmos'], +frequency = 'fx', +version = 'v20191115' +2025-09-04 14:52:26,041 UTC [321904] WARNING esmvalcore.cmor._fixes.fix.genericfix:417 Long name changed from 'Percentage of the grid cell occupied by land (including lakes)' to 'Percentage of the Grid Cell Occupied by Land (Including Lakes)' +(for file /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc) +2025-09-04 14:52:26,041 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-09-04 14:52:26,041 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'concatenate' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = +2025-09-04 14:52:26,041 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-09-04 14:52:26,041 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_metadata' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'fx', +frequency = 'fx', +short_name = 'sftlf' +2025-09-04 14:52:26,042 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-09-04 14:52:26,042 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_data')], + 'OBS': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'default': [PosixPath('/home/bandela/climate_data')], + 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/RAWOBS')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +short_name = 'sftlf', +original_short_name = 'sftlf', +standard_name = 'land_area_fraction', +long_name = 'Percentage of the Grid Cell Occupied by Land (Including Lakes)', +units = '%', +modeling_realm = ['atmos'], +frequency = 'fx', +version = 'v20191115' +2025-09-04 14:52:26,042 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-09-04 14:52:26,043 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'fx', +frequency = 'fx', +short_name = 'sftlf' +2025-09-04 14:52:26,043 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step add_supplementary_variables +2025-09-04 14:52:26,043 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'add_supplementary_variables' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tasmax/gn/v20191115/tasmax_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +supplementary_cubes = [] +2025-09-04 14:52:26,043 UTC [321904] DEBUG esmvalcore.preprocessor._supplementary_vars:137 Added sftlf as ancillary variable in cube of tasmax. +2025-09-04 14:52:26,044 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step mask_landsea +2025-09-04 14:52:26,044 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'mask_landsea' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tasmax/gn/v20191115/tasmax_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +mask_out = 'sea' +2025-09-04 14:52:26,046 UTC [321904] DEBUG esmvalcore.preprocessor._mask:137 Applying land-sea mask: sftlf +2025-09-04 14:52:26,046 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step regrid +2025-09-04 14:52:26,046 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'regrid' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tasmax/gn/v20191115/tasmax_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +target_grid = '2.5x2.5', +scheme = 'nearest' +2025-09-04 14:52:26,047 UTC [321904] DEBUG esmvalcore.preprocessor._regrid:634 Loaded regridding scheme Nearest('mask') +2025-09-04 14:52:26,050 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step save +2025-09-04 14:52:26,051 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'save' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tasmax/gn/v20191115/tasmax_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +compress = False, +compute = False, +filename = PosixPath('/executions/recipe_20250904_145222/preproc/fire_evaluation/tasmax/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tasmax_gn_20130116T120000-20141216T120000.nc') +2025-09-04 14:52:26,051 UTC [321904] DEBUG esmvalcore.preprocessor._io:497 Saving cube: +air_temperature / (K) (time: 24; latitude: 72; longitude: 144) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Scalar coordinates: + height 2.0 m + Cell methods: + 0 area: mean + 1 time: maximum within days + 2 time: mean over days + Attributes: + Conventions 'CF-1.7 CMIP-6.2' + activity_id 'CMIP' + branch_method 'standard' + branch_time_in_child np.float64(0.0) + branch_time_in_parent np.int64(-616894) + cmor_version '3.4.0' + data_specs_version '01.00.30' + experiment 'all-forcing simulation of the recent past' + experiment_id 'historical' + external_variables 'areacella' + forcing_index np.int32(1) + frequency 'mon' + further_info_url 'https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.no ...' + grid 'native atmosphere N96 grid (145x192 latxlon)' + grid_label 'gn' + initialization_index np.int32(1) + institution 'Commonwealth Scientific and Industrial Research Organisation, Aspendale, ...' + institution_id 'CSIRO' + license 'CMIP6 model data produced by CSIRO is licensed under a Creative Commons ...' + mip_era 'CMIP6' + nominal_resolution '250 km' + notes "Exp: ESM-historical; Local ID: HI-05; Variable: tasmax (['fld_s03i236_ ..." + parent_activity_id 'CMIP' + parent_experiment_id 'piControl' + parent_mip_era 'CMIP6' + parent_source_id 'ACCESS-ESM1-5' + parent_time_units 'days since 1850-1-1 00:00:00' + parent_variant_label 'r1i1p1f1' + physics_index np.int32(1) + product 'model-output' + realization_index np.int32(1) + realm 'atmos' + run_variant 'forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, ...' + source 'ACCESS-ESM1.5 (2019): \naerosol: CLASSIC (v1.0)\natmos: HadGAM2 (r1.1, ...' + source_id 'ACCESS-ESM1-5' + source_type 'AOGCM' + sub_experiment 'none' + sub_experiment_id 'none' + table_id 'Amon' + table_info 'Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371' + title 'ACCESS-ESM1-5 output prepared for CMIP6' + variable_id 'tasmax' + variant_label 'r1i1p1f1' + version 'v20191115' +with lazy data to /executions/recipe_20250904_145222/preproc/fire_evaluation/tasmax/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tasmax_gn_20130116T120000-20141216T120000.nc +2025-09-04 14:52:26,059 UTC [321904] INFO esmvalcore.preprocessor:747 Computing and saving data for preprocessing task fire_evaluation/tasmax +2025-09-04 14:52:26,062 UTC [321904] DEBUG asyncio:64 Using selector: EpollSelector +2025-09-04 14:52:26,175 UTC [321904] INFO esmvalcore._task:295 Successfully completed task fire_evaluation/tasmax (priority 2) in 0:00:00.177418 +2025-09-04 14:52:26,175 UTC [321904] INFO esmvalcore._task:289 Starting task fire_evaluation/treeFrac in process [321904] +2025-09-04 14:52:26,186 UTC [321904] DEBUG esmvalcore.preprocessor:716 Running block ['mask_landsea', 'regrid', 'convert_units'] +2025-09-04 14:52:26,186 UTC [321904] DEBUG esmvalcore.preprocessor:724 Applying single-model steps to PreprocessorFile: /executions/recipe_20250904_145222/preproc/fire_evaluation/treeFrac/CMIP6_ACCESS-ESM1-5_Lmon_historical_r1i1p1f1_treeFrac_gn_20130116T120000-20141216T120000.nc +2025-09-04 14:52:26,186 UTC [321904] DEBUG esmvalcore.esgf._download:560 All required data is available locally, not downloading anything. +2025-09-04 14:52:26,186 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-09-04 14:52:26,187 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/treeFrac/gn/v20191115/treeFrac_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/treeFrac/gn/v20191115/treeFrac_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250904_145222/preproc/fixed_files/treeFrac_Lmon_CMIP6_ACCESS-ESM1-5_CMIP_historical_r1i1p1f1_gn_v20191115_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_data')], + 'OBS': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'default': [PosixPath('/home/bandela/climate_data')], + 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/RAWOBS')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Lmon', +preprocessor = 'preproc_fraction', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +timerange = '20130116T120000/20141216T120000', +short_name = 'treeFrac', +variable_group = 'treeFrac', +diagnostic = 'fire_evaluation', +recipe_dataset_index = 0, +alias = 'ACCESS-ESM1-5', +original_short_name = 'treeFrac', +standard_name = 'area_fraction', +long_name = 'Tree Cover Percentage', +units = '%', +modeling_realm = ['land'], +frequency = 'mon', +version = 'v20191115' +2025-09-04 14:52:26,187 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-09-04 14:52:26,187 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/treeFrac/gn/v20191115/treeFrac_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/treeFrac/gn/v20191115/treeFrac_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc')] +with function argument(s) +ignore_warnings = None +2025-09-04 14:52:26,187 UTC [321904] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/treeFrac/gn/v20191115/treeFrac_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc +2025-09-04 14:52:26,195 UTC [321904] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/treeFrac/gn/v20191115/treeFrac_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc +2025-09-04 14:52:26,195 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-09-04 14:52:26,196 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_metadata' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/treeFrac/gn/v20191115/treeFrac_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_data')], + 'OBS': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'default': [PosixPath('/home/bandela/climate_data')], + 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/RAWOBS')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Lmon', +preprocessor = 'preproc_fraction', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +timerange = '20130116T120000/20141216T120000', +short_name = 'treeFrac', +variable_group = 'treeFrac', +diagnostic = 'fire_evaluation', +recipe_dataset_index = 0, +alias = 'ACCESS-ESM1-5', +original_short_name = 'treeFrac', +standard_name = 'area_fraction', +long_name = 'Tree Cover Percentage', +units = '%', +modeling_realm = ['land'], +frequency = 'mon', +version = 'v20191115' +2025-09-04 14:52:26,196 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-09-04 14:52:26,197 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'concatenate' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/treeFrac/gn/v20191115/treeFrac_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc')] +with function argument(s) +check_level = +2025-09-04 14:52:26,197 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-09-04 14:52:26,198 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_metadata' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/treeFrac/gn/v20191115/treeFrac_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'Lmon', +frequency = 'mon', +short_name = 'treeFrac' +2025-09-04 14:52:26,198 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step clip_timerange +2025-09-04 14:52:26,199 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'clip_timerange' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/treeFrac/gn/v20191115/treeFrac_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc')] +with function argument(s) +timerange = '20130116T120000/20141216T120000' +2025-09-04 14:52:26,200 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-09-04 14:52:26,201 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/treeFrac/gn/v20191115/treeFrac_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_data')], + 'OBS': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'default': [PosixPath('/home/bandela/climate_data')], + 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/RAWOBS')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Lmon', +preprocessor = 'preproc_fraction', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +timerange = '20130116T120000/20141216T120000', +short_name = 'treeFrac', +variable_group = 'treeFrac', +diagnostic = 'fire_evaluation', +recipe_dataset_index = 0, +alias = 'ACCESS-ESM1-5', +original_short_name = 'treeFrac', +standard_name = 'area_fraction', +long_name = 'Tree Cover Percentage', +units = '%', +modeling_realm = ['land'], +frequency = 'mon', +version = 'v20191115' +2025-09-04 14:52:26,201 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-09-04 14:52:26,202 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/treeFrac/gn/v20191115/treeFrac_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'Lmon', +frequency = 'mon', +short_name = 'treeFrac' +2025-09-04 14:52:26,202 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-09-04 14:52:26,202 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250904_145222/preproc/fixed_files/sftlf_fx_CMIP6_ACCESS-ESM1-5_CMIP_historical_r1i1p1f1_gn_v20191115_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_data')], + 'OBS': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'default': [PosixPath('/home/bandela/climate_data')], + 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/RAWOBS')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +short_name = 'sftlf', +original_short_name = 'sftlf', +standard_name = 'land_area_fraction', +long_name = 'Percentage of the Grid Cell Occupied by Land (Including Lakes)', +units = '%', +modeling_realm = ['atmos'], +frequency = 'fx', +version = 'v20191115' +2025-09-04 14:52:26,202 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-09-04 14:52:26,202 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +ignore_warnings = None +2025-09-04 14:52:26,202 UTC [321904] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc +2025-09-04 14:52:26,206 UTC [321904] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc +2025-09-04 14:52:26,206 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-09-04 14:52:26,207 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_metadata' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_data')], + 'OBS': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'default': [PosixPath('/home/bandela/climate_data')], + 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/RAWOBS')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +short_name = 'sftlf', +original_short_name = 'sftlf', +standard_name = 'land_area_fraction', +long_name = 'Percentage of the Grid Cell Occupied by Land (Including Lakes)', +units = '%', +modeling_realm = ['atmos'], +frequency = 'fx', +version = 'v20191115' +2025-09-04 14:52:26,207 UTC [321904] WARNING esmvalcore.cmor._fixes.fix.genericfix:417 Long name changed from 'Percentage of the grid cell occupied by land (including lakes)' to 'Percentage of the Grid Cell Occupied by Land (Including Lakes)' +(for file /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc) +2025-09-04 14:52:26,207 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-09-04 14:52:26,207 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'concatenate' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = +2025-09-04 14:52:26,207 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-09-04 14:52:26,208 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_metadata' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'fx', +frequency = 'fx', +short_name = 'sftlf' +2025-09-04 14:52:26,208 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-09-04 14:52:26,209 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_data')], + 'OBS': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'default': [PosixPath('/home/bandela/climate_data')], + 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/RAWOBS')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +short_name = 'sftlf', +original_short_name = 'sftlf', +standard_name = 'land_area_fraction', +long_name = 'Percentage of the Grid Cell Occupied by Land (Including Lakes)', +units = '%', +modeling_realm = ['atmos'], +frequency = 'fx', +version = 'v20191115' +2025-09-04 14:52:26,209 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-09-04 14:52:26,209 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'fx', +frequency = 'fx', +short_name = 'sftlf' +2025-09-04 14:52:26,209 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step add_supplementary_variables +2025-09-04 14:52:26,210 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'add_supplementary_variables' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/treeFrac/gn/v20191115/treeFrac_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +supplementary_cubes = [] +2025-09-04 14:52:26,210 UTC [321904] DEBUG esmvalcore.preprocessor._supplementary_vars:137 Added sftlf as ancillary variable in cube of treeFrac. +2025-09-04 14:52:26,210 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step mask_landsea +2025-09-04 14:52:26,210 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'mask_landsea' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/treeFrac/gn/v20191115/treeFrac_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +mask_out = 'sea' +2025-09-04 14:52:26,212 UTC [321904] DEBUG esmvalcore.preprocessor._mask:137 Applying land-sea mask: sftlf +2025-09-04 14:52:26,212 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step regrid +2025-09-04 14:52:26,213 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'regrid' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/treeFrac/gn/v20191115/treeFrac_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +target_grid = '2.5x2.5', +scheme = 'nearest' +2025-09-04 14:52:26,213 UTC [321904] DEBUG esmvalcore.preprocessor._regrid:634 Loaded regridding scheme Nearest('mask') +2025-09-04 14:52:26,216 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step convert_units +2025-09-04 14:52:26,216 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'convert_units' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/treeFrac/gn/v20191115/treeFrac_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +units = 1 +2025-09-04 14:52:26,217 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step save +2025-09-04 14:52:26,218 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'save' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/treeFrac/gn/v20191115/treeFrac_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +compress = False, +compute = False, +filename = PosixPath('/executions/recipe_20250904_145222/preproc/fire_evaluation/treeFrac/CMIP6_ACCESS-ESM1-5_Lmon_historical_r1i1p1f1_treeFrac_gn_20130116T120000-20141216T120000.nc') +2025-09-04 14:52:26,218 UTC [321904] DEBUG esmvalcore.preprocessor._io:497 Saving cube: +area_fraction / (1) (time: 24; latitude: 72; longitude: 144) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Scalar coordinates: + area_type trees + Cell methods: + 0 area: mean where land over all_area_types + 1 time: mean + Attributes: + Conventions 'CF-1.7 CMIP-6.2' + activity_id 'CMIP' + branch_method 'standard' + branch_time_in_child np.float64(0.0) + branch_time_in_parent np.int64(-616894) + cmor_version '3.4.0' + data_specs_version '01.00.30' + experiment 'all-forcing simulation of the recent past' + experiment_id 'historical' + external_variables 'areacella' + forcing_index np.int32(1) + frequency 'mon' + further_info_url 'https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.no ...' + grid 'native atmosphere N96 grid (145x192 latxlon)' + grid_label 'gn' + initialization_index np.int32(1) + institution 'Commonwealth Scientific and Industrial Research Organisation, Aspendale, ...' + institution_id 'CSIRO' + license 'CMIP6 model data produced by CSIRO is licensed under a Creative Commons ...' + mip_era 'CMIP6' + nominal_resolution '250 km' + notes "Exp: ESM-historical; Local ID: HI-05; Variable: treeFrac (['fld_s03i31 ..." + original_units '1' + parent_activity_id 'CMIP' + parent_experiment_id 'piControl' + parent_mip_era 'CMIP6' + parent_source_id 'ACCESS-ESM1-5' + parent_time_units 'days since 1850-1-1 00:00:00' + parent_variant_label 'r1i1p1f1' + physics_index np.int32(1) + product 'model-output' + realization_index np.int32(1) + realm 'land' + run_variant 'forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, ...' + source 'ACCESS-ESM1.5 (2019): \naerosol: CLASSIC (v1.0)\natmos: HadGAM2 (r1.1, ...' + source_id 'ACCESS-ESM1-5' + source_type 'AOGCM' + sub_experiment 'none' + sub_experiment_id 'none' + table_id 'Lmon' + table_info 'Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371' + title 'ACCESS-ESM1-5 output prepared for CMIP6' + variable_id 'treeFrac' + variant_label 'r1i1p1f1' + version 'v20191115' +with lazy data to /executions/recipe_20250904_145222/preproc/fire_evaluation/treeFrac/CMIP6_ACCESS-ESM1-5_Lmon_historical_r1i1p1f1_treeFrac_gn_20130116T120000-20141216T120000.nc +2025-09-04 14:52:26,225 UTC [321904] INFO esmvalcore.preprocessor:747 Computing and saving data for preprocessing task fire_evaluation/treeFrac +2025-09-04 14:52:26,227 UTC [321904] DEBUG asyncio:64 Using selector: EpollSelector +2025-09-04 14:52:26,335 UTC [321904] INFO esmvalcore._task:295 Successfully completed task fire_evaluation/treeFrac (priority 3) in 0:00:00.160185 +2025-09-04 14:52:26,335 UTC [321904] INFO esmvalcore._task:289 Starting task fire_evaluation/vegFrac in process [321904] +2025-09-04 14:52:26,341 UTC [321904] DEBUG esmvalcore.preprocessor:716 Running block ['mask_landsea', 'regrid', 'convert_units'] +2025-09-04 14:52:26,341 UTC [321904] DEBUG esmvalcore.preprocessor:724 Applying single-model steps to PreprocessorFile: /executions/recipe_20250904_145222/preproc/fire_evaluation/vegFrac/CMIP6_ACCESS-ESM1-5_Emon_historical_r1i1p1f1_vegFrac_gn_20130116T120000-20141216T120000.nc +2025-09-04 14:52:26,341 UTC [321904] DEBUG esmvalcore.esgf._download:560 All required data is available locally, not downloading anything. +2025-09-04 14:52:26,342 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-09-04 14:52:26,342 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Emon/vegFrac/gn/v20191115/vegFrac_Emon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Emon/vegFrac/gn/v20191115/vegFrac_Emon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250904_145222/preproc/fixed_files/vegFrac_Emon_CMIP6_ACCESS-ESM1-5_CMIP_historical_r1i1p1f1_gn_v20191115_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_data')], + 'OBS': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'default': [PosixPath('/home/bandela/climate_data')], + 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/RAWOBS')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Emon', +preprocessor = 'preproc_fraction', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +timerange = '20130116T120000/20141216T120000', +short_name = 'vegFrac', +variable_group = 'vegFrac', +diagnostic = 'fire_evaluation', +recipe_dataset_index = 0, +alias = 'ACCESS-ESM1-5', +original_short_name = 'vegFrac', +standard_name = 'area_fraction', +long_name = 'Total Vegetated Percentage Cover', +units = '%', +modeling_realm = ['land'], +frequency = 'mon', +version = 'v20191115' +2025-09-04 14:52:26,342 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-09-04 14:52:26,342 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Emon/vegFrac/gn/v20191115/vegFrac_Emon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Emon/vegFrac/gn/v20191115/vegFrac_Emon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc')] +with function argument(s) +ignore_warnings = None +2025-09-04 14:52:26,342 UTC [321904] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Emon/vegFrac/gn/v20191115/vegFrac_Emon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc +2025-09-04 14:52:26,348 UTC [321904] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Emon/vegFrac/gn/v20191115/vegFrac_Emon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc +2025-09-04 14:52:26,348 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-09-04 14:52:26,349 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_metadata' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Emon/vegFrac/gn/v20191115/vegFrac_Emon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_data')], + 'OBS': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'default': [PosixPath('/home/bandela/climate_data')], + 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/RAWOBS')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Emon', +preprocessor = 'preproc_fraction', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +timerange = '20130116T120000/20141216T120000', +short_name = 'vegFrac', +variable_group = 'vegFrac', +diagnostic = 'fire_evaluation', +recipe_dataset_index = 0, +alias = 'ACCESS-ESM1-5', +original_short_name = 'vegFrac', +standard_name = 'area_fraction', +long_name = 'Total Vegetated Percentage Cover', +units = '%', +modeling_realm = ['land'], +frequency = 'mon', +version = 'v20191115' +2025-09-04 14:52:26,350 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-09-04 14:52:26,350 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'concatenate' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Emon/vegFrac/gn/v20191115/vegFrac_Emon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc')] +with function argument(s) +check_level = +2025-09-04 14:52:26,350 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-09-04 14:52:26,351 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_metadata' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Emon/vegFrac/gn/v20191115/vegFrac_Emon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'Emon', +frequency = 'mon', +short_name = 'vegFrac' +2025-09-04 14:52:26,352 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step clip_timerange +2025-09-04 14:52:26,352 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'clip_timerange' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Emon/vegFrac/gn/v20191115/vegFrac_Emon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc')] +with function argument(s) +timerange = '20130116T120000/20141216T120000' +2025-09-04 14:52:26,353 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-09-04 14:52:26,354 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Emon/vegFrac/gn/v20191115/vegFrac_Emon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_data')], + 'OBS': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'default': [PosixPath('/home/bandela/climate_data')], + 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/RAWOBS')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Emon', +preprocessor = 'preproc_fraction', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +timerange = '20130116T120000/20141216T120000', +short_name = 'vegFrac', +variable_group = 'vegFrac', +diagnostic = 'fire_evaluation', +recipe_dataset_index = 0, +alias = 'ACCESS-ESM1-5', +original_short_name = 'vegFrac', +standard_name = 'area_fraction', +long_name = 'Total Vegetated Percentage Cover', +units = '%', +modeling_realm = ['land'], +frequency = 'mon', +version = 'v20191115' +2025-09-04 14:52:26,354 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-09-04 14:52:26,355 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Emon/vegFrac/gn/v20191115/vegFrac_Emon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'Emon', +frequency = 'mon', +short_name = 'vegFrac' +2025-09-04 14:52:26,355 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-09-04 14:52:26,355 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250904_145222/preproc/fixed_files/sftlf_fx_CMIP6_ACCESS-ESM1-5_CMIP_historical_r1i1p1f1_gn_v20191115_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_data')], + 'OBS': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'default': [PosixPath('/home/bandela/climate_data')], + 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/RAWOBS')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +short_name = 'sftlf', +original_short_name = 'sftlf', +standard_name = 'land_area_fraction', +long_name = 'Percentage of the Grid Cell Occupied by Land (Including Lakes)', +units = '%', +modeling_realm = ['atmos'], +frequency = 'fx', +version = 'v20191115' +2025-09-04 14:52:26,355 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-09-04 14:52:26,355 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +ignore_warnings = None +2025-09-04 14:52:26,355 UTC [321904] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc +2025-09-04 14:52:26,359 UTC [321904] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc +2025-09-04 14:52:26,359 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-09-04 14:52:26,360 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_metadata' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_data')], + 'OBS': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'default': [PosixPath('/home/bandela/climate_data')], + 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/RAWOBS')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +short_name = 'sftlf', +original_short_name = 'sftlf', +standard_name = 'land_area_fraction', +long_name = 'Percentage of the Grid Cell Occupied by Land (Including Lakes)', +units = '%', +modeling_realm = ['atmos'], +frequency = 'fx', +version = 'v20191115' +2025-09-04 14:52:26,360 UTC [321904] WARNING esmvalcore.cmor._fixes.fix.genericfix:417 Long name changed from 'Percentage of the grid cell occupied by land (including lakes)' to 'Percentage of the Grid Cell Occupied by Land (Including Lakes)' +(for file /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc) +2025-09-04 14:52:26,360 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-09-04 14:52:26,361 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'concatenate' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = +2025-09-04 14:52:26,361 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-09-04 14:52:26,361 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_metadata' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'fx', +frequency = 'fx', +short_name = 'sftlf' +2025-09-04 14:52:26,361 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-09-04 14:52:26,362 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_data')], + 'OBS': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'default': [PosixPath('/home/bandela/climate_data')], + 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/RAWOBS')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +short_name = 'sftlf', +original_short_name = 'sftlf', +standard_name = 'land_area_fraction', +long_name = 'Percentage of the Grid Cell Occupied by Land (Including Lakes)', +units = '%', +modeling_realm = ['atmos'], +frequency = 'fx', +version = 'v20191115' +2025-09-04 14:52:26,362 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-09-04 14:52:26,362 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'fx', +frequency = 'fx', +short_name = 'sftlf' +2025-09-04 14:52:26,362 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step add_supplementary_variables +2025-09-04 14:52:26,363 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'add_supplementary_variables' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Emon/vegFrac/gn/v20191115/vegFrac_Emon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +supplementary_cubes = [] +2025-09-04 14:52:26,363 UTC [321904] DEBUG esmvalcore.preprocessor._supplementary_vars:137 Added sftlf as ancillary variable in cube of vegFrac. +2025-09-04 14:52:26,363 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step mask_landsea +2025-09-04 14:52:26,364 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'mask_landsea' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Emon/vegFrac/gn/v20191115/vegFrac_Emon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +mask_out = 'sea' +2025-09-04 14:52:26,365 UTC [321904] DEBUG esmvalcore.preprocessor._mask:137 Applying land-sea mask: sftlf +2025-09-04 14:52:26,365 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step regrid +2025-09-04 14:52:26,366 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'regrid' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Emon/vegFrac/gn/v20191115/vegFrac_Emon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +target_grid = '2.5x2.5', +scheme = 'nearest' +2025-09-04 14:52:26,366 UTC [321904] DEBUG esmvalcore.preprocessor._regrid:634 Loaded regridding scheme Nearest('mask') +2025-09-04 14:52:26,369 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step convert_units +2025-09-04 14:52:26,369 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'convert_units' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Emon/vegFrac/gn/v20191115/vegFrac_Emon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +units = 1 +2025-09-04 14:52:26,370 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step save +2025-09-04 14:52:26,371 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'save' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Emon/vegFrac/gn/v20191115/vegFrac_Emon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +compress = False, +compute = False, +filename = PosixPath('/executions/recipe_20250904_145222/preproc/fire_evaluation/vegFrac/CMIP6_ACCESS-ESM1-5_Emon_historical_r1i1p1f1_vegFrac_gn_20130116T120000-20141216T120000.nc') +2025-09-04 14:52:26,371 UTC [321904] DEBUG esmvalcore.preprocessor._io:497 Saving cube: +area_fraction / (1) (time: 24; latitude: 72; longitude: 144) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Scalar coordinates: + area_type vegetation + Cell methods: + 0 area: mean where land over all_area_types + 1 time: mean + Attributes: + Conventions 'CF-1.7 CMIP-6.2' + activity_id 'CMIP' + branch_method 'standard' + branch_time_in_child np.float64(0.0) + branch_time_in_parent np.int64(-616894) + cmor_version '3.4.0' + data_specs_version '01.00.30' + experiment 'all-forcing simulation of the recent past' + experiment_id 'historical' + external_variables 'areacella' + forcing_index np.int32(1) + frequency 'mon' + further_info_url 'https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.no ...' + grid 'native atmosphere N96 grid (145x192 latxlon)' + grid_label 'gn' + initialization_index np.int32(1) + institution 'Commonwealth Scientific and Industrial Research Organisation, Aspendale, ...' + institution_id 'CSIRO' + license 'CMIP6 model data produced by CSIRO is licensed under a Creative Commons ...' + mip_era 'CMIP6' + nominal_resolution '250 km' + notes "Exp: ESM-historical; Local ID: HI-05; Variable: vegFrac (['fld_s03i317 ..." + original_units '1' + parent_activity_id 'CMIP' + parent_experiment_id 'piControl' + parent_mip_era 'CMIP6' + parent_source_id 'ACCESS-ESM1-5' + parent_time_units 'days since 1850-1-1 00:00:00' + parent_variant_label 'r1i1p1f1' + physics_index np.int32(1) + product 'model-output' + realization_index np.int32(1) + realm 'land' + run_variant 'forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, ...' + source 'ACCESS-ESM1.5 (2019): \naerosol: CLASSIC (v1.0)\natmos: HadGAM2 (r1.1, ...' + source_id 'ACCESS-ESM1-5' + source_type 'AOGCM' + sub_experiment 'none' + sub_experiment_id 'none' + table_id 'Emon' + table_info 'Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371' + title 'ACCESS-ESM1-5 output prepared for CMIP6' + variable_id 'vegFrac' + variant_label 'r1i1p1f1' + version 'v20191115' +with lazy data to /executions/recipe_20250904_145222/preproc/fire_evaluation/vegFrac/CMIP6_ACCESS-ESM1-5_Emon_historical_r1i1p1f1_vegFrac_gn_20130116T120000-20141216T120000.nc +2025-09-04 14:52:26,378 UTC [321904] INFO esmvalcore.preprocessor:747 Computing and saving data for preprocessing task fire_evaluation/vegFrac +2025-09-04 14:52:26,380 UTC [321904] DEBUG asyncio:64 Using selector: EpollSelector +2025-09-04 14:52:26,436 UTC [321904] INFO esmvalcore._task:295 Successfully completed task fire_evaluation/vegFrac (priority 4) in 0:00:00.100906 +2025-09-04 14:52:26,436 UTC [321904] INFO esmvalcore._task:289 Starting task fire_evaluation/cVeg in process [321904] +2025-09-04 14:52:26,441 UTC [321904] DEBUG esmvalcore.preprocessor:716 Running block ['mask_landsea', 'regrid'] +2025-09-04 14:52:26,441 UTC [321904] DEBUG esmvalcore.preprocessor:724 Applying single-model steps to PreprocessorFile: /executions/recipe_20250904_145222/preproc/fire_evaluation/cVeg/CMIP6_ACCESS-ESM1-5_Lmon_historical_r1i1p1f1_cVeg_gn_20130116T120000-20141216T120000.nc +2025-09-04 14:52:26,441 UTC [321904] DEBUG esmvalcore.esgf._download:560 All required data is available locally, not downloading anything. +2025-09-04 14:52:26,441 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-09-04 14:52:26,442 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/cVeg/gn/v20191115/cVeg_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/cVeg/gn/v20191115/cVeg_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250904_145222/preproc/fixed_files/cVeg_Lmon_CMIP6_ACCESS-ESM1-5_CMIP_historical_r1i1p1f1_gn_v20191115_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_data')], + 'OBS': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'default': [PosixPath('/home/bandela/climate_data')], + 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/RAWOBS')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Lmon', +preprocessor = 'preproc', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +timerange = '20130116T120000/20141216T120000', +short_name = 'cVeg', +variable_group = 'cVeg', +diagnostic = 'fire_evaluation', +recipe_dataset_index = 0, +alias = 'ACCESS-ESM1-5', +original_short_name = 'cVeg', +standard_name = 'vegetation_carbon_content', +long_name = 'Carbon Mass in Vegetation', +units = 'kg m-2', +modeling_realm = ['land'], +frequency = 'mon', +version = 'v20191115' +2025-09-04 14:52:26,442 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-09-04 14:52:26,442 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/cVeg/gn/v20191115/cVeg_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/cVeg/gn/v20191115/cVeg_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc')] +with function argument(s) +ignore_warnings = None +2025-09-04 14:52:26,442 UTC [321904] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/cVeg/gn/v20191115/cVeg_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc +2025-09-04 14:52:26,447 UTC [321904] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/cVeg/gn/v20191115/cVeg_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc +2025-09-04 14:52:26,447 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-09-04 14:52:26,448 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_metadata' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/cVeg/gn/v20191115/cVeg_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_data')], + 'OBS': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'default': [PosixPath('/home/bandela/climate_data')], + 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/RAWOBS')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Lmon', +preprocessor = 'preproc', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +timerange = '20130116T120000/20141216T120000', +short_name = 'cVeg', +variable_group = 'cVeg', +diagnostic = 'fire_evaluation', +recipe_dataset_index = 0, +alias = 'ACCESS-ESM1-5', +original_short_name = 'cVeg', +standard_name = 'vegetation_carbon_content', +long_name = 'Carbon Mass in Vegetation', +units = 'kg m-2', +modeling_realm = ['land'], +frequency = 'mon', +version = 'v20191115' +2025-09-04 14:52:26,449 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-09-04 14:52:26,449 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'concatenate' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/cVeg/gn/v20191115/cVeg_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc')] +with function argument(s) +check_level = +2025-09-04 14:52:26,449 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-09-04 14:52:26,450 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_metadata' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/cVeg/gn/v20191115/cVeg_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'Lmon', +frequency = 'mon', +short_name = 'cVeg' +2025-09-04 14:52:26,450 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step clip_timerange +2025-09-04 14:52:26,451 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'clip_timerange' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/cVeg/gn/v20191115/cVeg_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc')] +with function argument(s) +timerange = '20130116T120000/20141216T120000' +2025-09-04 14:52:26,453 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-09-04 14:52:26,453 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/cVeg/gn/v20191115/cVeg_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_data')], + 'OBS': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'default': [PosixPath('/home/bandela/climate_data')], + 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/RAWOBS')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Lmon', +preprocessor = 'preproc', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +timerange = '20130116T120000/20141216T120000', +short_name = 'cVeg', +variable_group = 'cVeg', +diagnostic = 'fire_evaluation', +recipe_dataset_index = 0, +alias = 'ACCESS-ESM1-5', +original_short_name = 'cVeg', +standard_name = 'vegetation_carbon_content', +long_name = 'Carbon Mass in Vegetation', +units = 'kg m-2', +modeling_realm = ['land'], +frequency = 'mon', +version = 'v20191115' +2025-09-04 14:52:26,453 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-09-04 14:52:26,454 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/cVeg/gn/v20191115/cVeg_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'Lmon', +frequency = 'mon', +short_name = 'cVeg' +2025-09-04 14:52:26,454 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-09-04 14:52:26,454 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250904_145222/preproc/fixed_files/sftlf_fx_CMIP6_ACCESS-ESM1-5_CMIP_historical_r1i1p1f1_gn_v20191115_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_data')], + 'OBS': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'default': [PosixPath('/home/bandela/climate_data')], + 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/RAWOBS')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +short_name = 'sftlf', +original_short_name = 'sftlf', +standard_name = 'land_area_fraction', +long_name = 'Percentage of the Grid Cell Occupied by Land (Including Lakes)', +units = '%', +modeling_realm = ['atmos'], +frequency = 'fx', +version = 'v20191115' +2025-09-04 14:52:26,455 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-09-04 14:52:26,455 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +ignore_warnings = None +2025-09-04 14:52:26,455 UTC [321904] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc +2025-09-04 14:52:26,459 UTC [321904] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc +2025-09-04 14:52:26,459 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-09-04 14:52:26,459 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_metadata' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_data')], + 'OBS': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'default': [PosixPath('/home/bandela/climate_data')], + 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/RAWOBS')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +short_name = 'sftlf', +original_short_name = 'sftlf', +standard_name = 'land_area_fraction', +long_name = 'Percentage of the Grid Cell Occupied by Land (Including Lakes)', +units = '%', +modeling_realm = ['atmos'], +frequency = 'fx', +version = 'v20191115' +2025-09-04 14:52:26,459 UTC [321904] WARNING esmvalcore.cmor._fixes.fix.genericfix:417 Long name changed from 'Percentage of the grid cell occupied by land (including lakes)' to 'Percentage of the Grid Cell Occupied by Land (Including Lakes)' +(for file /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc) +2025-09-04 14:52:26,459 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-09-04 14:52:26,460 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'concatenate' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = +2025-09-04 14:52:26,460 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-09-04 14:52:26,460 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_metadata' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'fx', +frequency = 'fx', +short_name = 'sftlf' +2025-09-04 14:52:26,460 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-09-04 14:52:26,461 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_data')], + 'OBS': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'default': [PosixPath('/home/bandela/climate_data')], + 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/RAWOBS')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +short_name = 'sftlf', +original_short_name = 'sftlf', +standard_name = 'land_area_fraction', +long_name = 'Percentage of the Grid Cell Occupied by Land (Including Lakes)', +units = '%', +modeling_realm = ['atmos'], +frequency = 'fx', +version = 'v20191115' +2025-09-04 14:52:26,461 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-09-04 14:52:26,461 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'fx', +frequency = 'fx', +short_name = 'sftlf' +2025-09-04 14:52:26,461 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step add_supplementary_variables +2025-09-04 14:52:26,462 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'add_supplementary_variables' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/cVeg/gn/v20191115/cVeg_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +supplementary_cubes = [] +2025-09-04 14:52:26,462 UTC [321904] DEBUG esmvalcore.preprocessor._supplementary_vars:137 Added sftlf as ancillary variable in cube of cVeg. +2025-09-04 14:52:26,462 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step mask_landsea +2025-09-04 14:52:26,463 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'mask_landsea' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/cVeg/gn/v20191115/cVeg_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +mask_out = 'sea' +2025-09-04 14:52:26,464 UTC [321904] DEBUG esmvalcore.preprocessor._mask:137 Applying land-sea mask: sftlf +2025-09-04 14:52:26,464 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step regrid +2025-09-04 14:52:26,465 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'regrid' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/cVeg/gn/v20191115/cVeg_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +target_grid = '2.5x2.5', +scheme = 'nearest' +2025-09-04 14:52:26,465 UTC [321904] DEBUG esmvalcore.preprocessor._regrid:634 Loaded regridding scheme Nearest('mask') +2025-09-04 14:52:26,468 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step save +2025-09-04 14:52:26,469 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'save' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Lmon/cVeg/gn/v20191115/cVeg_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +compress = False, +compute = False, +filename = PosixPath('/executions/recipe_20250904_145222/preproc/fire_evaluation/cVeg/CMIP6_ACCESS-ESM1-5_Lmon_historical_r1i1p1f1_cVeg_gn_20130116T120000-20141216T120000.nc') +2025-09-04 14:52:26,469 UTC [321904] DEBUG esmvalcore.preprocessor._io:497 Saving cube: +vegetation_carbon_content / (kg m-2) (time: 24; latitude: 72; longitude: 144) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Cell methods: + 0 area: mean where land + 1 time: mean + Attributes: + Conventions 'CF-1.7 CMIP-6.2' + activity_id 'CMIP' + branch_method 'standard' + branch_time_in_child np.float64(0.0) + branch_time_in_parent np.int64(-616894) + cmor_version '3.4.0' + data_specs_version '01.00.30' + experiment 'all-forcing simulation of the recent past' + experiment_id 'historical' + external_variables 'areacella' + forcing_index np.int32(1) + frequency 'mon' + further_info_url 'https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.no ...' + grid 'native atmosphere N96 grid (145x192 latxlon)' + grid_label 'gn' + initialization_index np.int32(1) + institution 'Commonwealth Scientific and Industrial Research Organisation, Aspendale, ...' + institution_id 'CSIRO' + license 'CMIP6 model data produced by CSIRO is licensed under a Creative Commons ...' + mip_era 'CMIP6' + nominal_resolution '250 km' + notes "Exp: ESM-historical; Local ID: HI-05; Variable: cVeg (['fld_s03i852', 'fld_s03i853', ..." + original_units 'g m-2' + parent_activity_id 'CMIP' + parent_experiment_id 'piControl' + parent_mip_era 'CMIP6' + parent_source_id 'ACCESS-ESM1-5' + parent_time_units 'days since 1850-1-1 00:00:00' + parent_variant_label 'r1i1p1f1' + physics_index np.int32(1) + product 'model-output' + realization_index np.int32(1) + realm 'land' + run_variant 'forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, ...' + source 'ACCESS-ESM1.5 (2019): \naerosol: CLASSIC (v1.0)\natmos: HadGAM2 (r1.1, ...' + source_id 'ACCESS-ESM1-5' + source_type 'AOGCM' + sub_experiment 'none' + sub_experiment_id 'none' + table_id 'Lmon' + table_info 'Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371' + title 'ACCESS-ESM1-5 output prepared for CMIP6' + variable_id 'cVeg' + variant_label 'r1i1p1f1' + version 'v20191115' +with lazy data to /executions/recipe_20250904_145222/preproc/fire_evaluation/cVeg/CMIP6_ACCESS-ESM1-5_Lmon_historical_r1i1p1f1_cVeg_gn_20130116T120000-20141216T120000.nc +2025-09-04 14:52:26,476 UTC [321904] INFO esmvalcore.preprocessor:747 Computing and saving data for preprocessing task fire_evaluation/cVeg +2025-09-04 14:52:26,477 UTC [321904] DEBUG asyncio:64 Using selector: EpollSelector +2025-09-04 14:52:26,588 UTC [321904] INFO esmvalcore._task:295 Successfully completed task fire_evaluation/cVeg (priority 5) in 0:00:00.151676 +2025-09-04 14:52:26,588 UTC [321904] INFO esmvalcore._task:289 Starting task fire_evaluation/tas in process [321904] +2025-09-04 14:52:26,609 UTC [321904] DEBUG esmvalcore.preprocessor:716 Running block ['mask_landsea', 'regrid'] +2025-09-04 14:52:26,609 UTC [321904] DEBUG esmvalcore.preprocessor:724 Applying single-model steps to PreprocessorFile: /executions/recipe_20250904_145222/preproc/fire_evaluation/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_20130116T120000-20141216T120000.nc +2025-09-04 14:52:26,609 UTC [321904] DEBUG esmvalcore.esgf._download:560 All required data is available locally, not downloading anything. +2025-09-04 14:52:26,609 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-09-04 14:52:26,609 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250904_145222/preproc/fixed_files/tas_Amon_CMIP6_ACCESS-ESM1-5_CMIP_historical_r1i1p1f1_gn_v20191115_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_data')], + 'OBS': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'default': [PosixPath('/home/bandela/climate_data')], + 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/RAWOBS')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Amon', +preprocessor = 'preproc', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +timerange = '20130116T120000/20141216T120000', +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'fire_evaluation', +recipe_dataset_index = 0, +alias = 'ACCESS-ESM1-5', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = ['atmos'], +frequency = 'mon', +version = 'v20191115' +2025-09-04 14:52:26,609 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-09-04 14:52:26,610 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc')] +with function argument(s) +ignore_warnings = None +2025-09-04 14:52:26,610 UTC [321904] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc +2025-09-04 14:52:26,624 UTC [321904] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc +2025-09-04 14:52:26,624 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-09-04 14:52:26,625 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_metadata' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_data')], + 'OBS': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'default': [PosixPath('/home/bandela/climate_data')], + 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/RAWOBS')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Amon', +preprocessor = 'preproc', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +timerange = '20130116T120000/20141216T120000', +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'fire_evaluation', +recipe_dataset_index = 0, +alias = 'ACCESS-ESM1-5', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = ['atmos'], +frequency = 'mon', +version = 'v20191115' +2025-09-04 14:52:26,626 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-09-04 14:52:26,626 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'concatenate' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc')] +with function argument(s) +check_level = +2025-09-04 14:52:26,626 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-09-04 14:52:26,627 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_metadata' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'Amon', +frequency = 'mon', +short_name = 'tas' +2025-09-04 14:52:26,630 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step clip_timerange +2025-09-04 14:52:26,630 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'clip_timerange' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc')] +with function argument(s) +timerange = '20130116T120000/20141216T120000' +2025-09-04 14:52:26,634 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-09-04 14:52:26,635 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_data')], + 'OBS': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'default': [PosixPath('/home/bandela/climate_data')], + 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/RAWOBS')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Amon', +preprocessor = 'preproc', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +timerange = '20130116T120000/20141216T120000', +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'fire_evaluation', +recipe_dataset_index = 0, +alias = 'ACCESS-ESM1-5', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = ['atmos'], +frequency = 'mon', +version = 'v20191115' +2025-09-04 14:52:26,635 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-09-04 14:52:26,636 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'Amon', +frequency = 'mon', +short_name = 'tas' +2025-09-04 14:52:26,636 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-09-04 14:52:26,636 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250904_145222/preproc/fixed_files/sftlf_fx_CMIP6_ACCESS-ESM1-5_CMIP_historical_r1i1p1f1_gn_v20191115_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_data')], + 'OBS': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'default': [PosixPath('/home/bandela/climate_data')], + 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/RAWOBS')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +short_name = 'sftlf', +original_short_name = 'sftlf', +standard_name = 'land_area_fraction', +long_name = 'Percentage of the Grid Cell Occupied by Land (Including Lakes)', +units = '%', +modeling_realm = ['atmos'], +frequency = 'fx', +version = 'v20191115' +2025-09-04 14:52:26,637 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-09-04 14:52:26,637 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +ignore_warnings = None +2025-09-04 14:52:26,637 UTC [321904] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc +2025-09-04 14:52:26,641 UTC [321904] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc +2025-09-04 14:52:26,641 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-09-04 14:52:26,642 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_metadata' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_data')], + 'OBS': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'default': [PosixPath('/home/bandela/climate_data')], + 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/RAWOBS')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +short_name = 'sftlf', +original_short_name = 'sftlf', +standard_name = 'land_area_fraction', +long_name = 'Percentage of the Grid Cell Occupied by Land (Including Lakes)', +units = '%', +modeling_realm = ['atmos'], +frequency = 'fx', +version = 'v20191115' +2025-09-04 14:52:26,642 UTC [321904] WARNING esmvalcore.cmor._fixes.fix.genericfix:417 Long name changed from 'Percentage of the grid cell occupied by land (including lakes)' to 'Percentage of the Grid Cell Occupied by Land (Including Lakes)' +(for file /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc) +2025-09-04 14:52:26,642 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-09-04 14:52:26,642 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'concatenate' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = +2025-09-04 14:52:26,642 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-09-04 14:52:26,643 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_metadata' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'fx', +frequency = 'fx', +short_name = 'sftlf' +2025-09-04 14:52:26,643 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-09-04 14:52:26,644 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_data')], + 'OBS': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'default': [PosixPath('/home/bandela/climate_data')], + 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/RAWOBS')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +short_name = 'sftlf', +original_short_name = 'sftlf', +standard_name = 'land_area_fraction', +long_name = 'Percentage of the Grid Cell Occupied by Land (Including Lakes)', +units = '%', +modeling_realm = ['atmos'], +frequency = 'fx', +version = 'v20191115' +2025-09-04 14:52:26,644 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-09-04 14:52:26,644 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'fx', +frequency = 'fx', +short_name = 'sftlf' +2025-09-04 14:52:26,644 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step add_supplementary_variables +2025-09-04 14:52:26,645 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'add_supplementary_variables' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +supplementary_cubes = [] +2025-09-04 14:52:26,645 UTC [321904] DEBUG esmvalcore.preprocessor._supplementary_vars:137 Added sftlf as ancillary variable in cube of tas. +2025-09-04 14:52:26,645 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step mask_landsea +2025-09-04 14:52:26,645 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'mask_landsea' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +mask_out = 'sea' +2025-09-04 14:52:26,647 UTC [321904] DEBUG esmvalcore.preprocessor._mask:137 Applying land-sea mask: sftlf +2025-09-04 14:52:26,647 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step regrid +2025-09-04 14:52:26,647 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'regrid' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +target_grid = '2.5x2.5', +scheme = 'nearest' +2025-09-04 14:52:26,648 UTC [321904] DEBUG esmvalcore.preprocessor._regrid:634 Loaded regridding scheme Nearest('mask') +2025-09-04 14:52:26,650 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step save +2025-09-04 14:52:26,651 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'save' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +compress = False, +compute = False, +filename = PosixPath('/executions/recipe_20250904_145222/preproc/fire_evaluation/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_20130116T120000-20141216T120000.nc') +2025-09-04 14:52:26,651 UTC [321904] DEBUG esmvalcore.preprocessor._io:497 Saving cube: +air_temperature / (K) (time: 24; latitude: 72; longitude: 144) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Scalar coordinates: + height 2.0 m + Cell methods: + 0 area: time: mean + Attributes: + Conventions 'CF-1.7 CMIP-6.2' + activity_id 'CMIP' + branch_method 'standard' + branch_time_in_child np.float64(0.0) + branch_time_in_parent np.int64(-616894) + cmor_version '3.4.0' + data_specs_version '01.00.30' + experiment 'all-forcing simulation of the recent past' + experiment_id 'historical' + external_variables 'areacella' + forcing_index np.int32(1) + frequency 'mon' + further_info_url 'https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.no ...' + grid 'native atmosphere N96 grid (145x192 latxlon)' + grid_label 'gn' + initialization_index np.int32(1) + institution 'Commonwealth Scientific and Industrial Research Organisation, Aspendale, ...' + institution_id 'CSIRO' + license 'CMIP6 model data produced by CSIRO is licensed under a Creative Commons ...' + mip_era 'CMIP6' + nominal_resolution '250 km' + notes "Exp: ESM-historical; Local ID: HI-05; Variable: tas (['fld_s03i236'])" + parent_activity_id 'CMIP' + parent_experiment_id 'piControl' + parent_mip_era 'CMIP6' + parent_source_id 'ACCESS-ESM1-5' + parent_time_units 'days since 1850-1-1 00:00:00' + parent_variant_label 'r1i1p1f1' + physics_index np.int32(1) + product 'model-output' + realization_index np.int32(1) + realm 'atmos' + run_variant 'forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, ...' + source 'ACCESS-ESM1.5 (2019): \naerosol: CLASSIC (v1.0)\natmos: HadGAM2 (r1.1, ...' + source_id 'ACCESS-ESM1-5' + source_type 'AOGCM' + sub_experiment 'none' + sub_experiment_id 'none' + table_id 'Amon' + table_info 'Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371' + title 'ACCESS-ESM1-5 output prepared for CMIP6' + variable_id 'tas' + variant_label 'r1i1p1f1' + version 'v20191115' +with lazy data to /executions/recipe_20250904_145222/preproc/fire_evaluation/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_20130116T120000-20141216T120000.nc +2025-09-04 14:52:26,659 UTC [321904] INFO esmvalcore.preprocessor:747 Computing and saving data for preprocessing task fire_evaluation/tas +2025-09-04 14:52:26,660 UTC [321904] DEBUG asyncio:64 Using selector: EpollSelector +2025-09-04 14:52:26,823 UTC [321904] INFO esmvalcore._task:295 Successfully completed task fire_evaluation/tas (priority 6) in 0:00:00.234984 +2025-09-04 14:52:26,823 UTC [321904] INFO esmvalcore._task:289 Starting task fire_evaluation/hurs in process [321904] +2025-09-04 14:52:26,830 UTC [321904] DEBUG esmvalcore.preprocessor:716 Running block ['mask_landsea', 'regrid'] +2025-09-04 14:52:26,831 UTC [321904] DEBUG esmvalcore.preprocessor:724 Applying single-model steps to PreprocessorFile: /executions/recipe_20250904_145222/preproc/fire_evaluation/hurs/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_hurs_gn_20130116T120000-20141216T120000.nc +2025-09-04 14:52:26,831 UTC [321904] DEBUG esmvalcore.esgf._download:560 All required data is available locally, not downloading anything. +2025-09-04 14:52:26,831 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-09-04 14:52:26,831 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/hurs/gn/v20191115/hurs_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/hurs/gn/v20191115/hurs_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250904_145222/preproc/fixed_files/hurs_Amon_CMIP6_ACCESS-ESM1-5_CMIP_historical_r1i1p1f1_gn_v20191115_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_data')], + 'OBS': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'default': [PosixPath('/home/bandela/climate_data')], + 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/RAWOBS')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Amon', +preprocessor = 'preproc', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +timerange = '20130116T120000/20141216T120000', +short_name = 'hurs', +variable_group = 'hurs', +diagnostic = 'fire_evaluation', +recipe_dataset_index = 0, +alias = 'ACCESS-ESM1-5', +original_short_name = 'hurs', +standard_name = 'relative_humidity', +long_name = 'Near-Surface Relative Humidity', +units = '%', +modeling_realm = ['atmos'], +frequency = 'mon', +version = 'v20191115' +2025-09-04 14:52:26,831 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-09-04 14:52:26,831 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/hurs/gn/v20191115/hurs_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/hurs/gn/v20191115/hurs_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc')] +with function argument(s) +ignore_warnings = None +2025-09-04 14:52:26,831 UTC [321904] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/hurs/gn/v20191115/hurs_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc +2025-09-04 14:52:26,837 UTC [321904] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/hurs/gn/v20191115/hurs_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc +2025-09-04 14:52:26,838 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-09-04 14:52:26,839 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_metadata' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/hurs/gn/v20191115/hurs_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_data')], + 'OBS': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'default': [PosixPath('/home/bandela/climate_data')], + 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/RAWOBS')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Amon', +preprocessor = 'preproc', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +timerange = '20130116T120000/20141216T120000', +short_name = 'hurs', +variable_group = 'hurs', +diagnostic = 'fire_evaluation', +recipe_dataset_index = 0, +alias = 'ACCESS-ESM1-5', +original_short_name = 'hurs', +standard_name = 'relative_humidity', +long_name = 'Near-Surface Relative Humidity', +units = '%', +modeling_realm = ['atmos'], +frequency = 'mon', +version = 'v20191115' +2025-09-04 14:52:26,839 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-09-04 14:52:26,840 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'concatenate' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/hurs/gn/v20191115/hurs_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc')] +with function argument(s) +check_level = +2025-09-04 14:52:26,840 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-09-04 14:52:26,840 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_metadata' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/hurs/gn/v20191115/hurs_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'Amon', +frequency = 'mon', +short_name = 'hurs' +2025-09-04 14:52:26,841 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step clip_timerange +2025-09-04 14:52:26,842 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'clip_timerange' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/hurs/gn/v20191115/hurs_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc')] +with function argument(s) +timerange = '20130116T120000/20141216T120000' +2025-09-04 14:52:26,843 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-09-04 14:52:26,844 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/hurs/gn/v20191115/hurs_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_data')], + 'OBS': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'default': [PosixPath('/home/bandela/climate_data')], + 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/RAWOBS')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Amon', +preprocessor = 'preproc', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +timerange = '20130116T120000/20141216T120000', +short_name = 'hurs', +variable_group = 'hurs', +diagnostic = 'fire_evaluation', +recipe_dataset_index = 0, +alias = 'ACCESS-ESM1-5', +original_short_name = 'hurs', +standard_name = 'relative_humidity', +long_name = 'Near-Surface Relative Humidity', +units = '%', +modeling_realm = ['atmos'], +frequency = 'mon', +version = 'v20191115' +2025-09-04 14:52:26,844 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-09-04 14:52:26,844 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/hurs/gn/v20191115/hurs_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'Amon', +frequency = 'mon', +short_name = 'hurs' +2025-09-04 14:52:26,845 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-09-04 14:52:26,845 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250904_145222/preproc/fixed_files/sftlf_fx_CMIP6_ACCESS-ESM1-5_CMIP_historical_r1i1p1f1_gn_v20191115_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_data')], + 'OBS': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'default': [PosixPath('/home/bandela/climate_data')], + 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/RAWOBS')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +short_name = 'sftlf', +original_short_name = 'sftlf', +standard_name = 'land_area_fraction', +long_name = 'Percentage of the Grid Cell Occupied by Land (Including Lakes)', +units = '%', +modeling_realm = ['atmos'], +frequency = 'fx', +version = 'v20191115' +2025-09-04 14:52:26,845 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-09-04 14:52:26,845 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +ignore_warnings = None +2025-09-04 14:52:26,845 UTC [321904] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc +2025-09-04 14:52:26,849 UTC [321904] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc +2025-09-04 14:52:26,849 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-09-04 14:52:26,850 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_metadata' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_data')], + 'OBS': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'default': [PosixPath('/home/bandela/climate_data')], + 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/RAWOBS')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +short_name = 'sftlf', +original_short_name = 'sftlf', +standard_name = 'land_area_fraction', +long_name = 'Percentage of the Grid Cell Occupied by Land (Including Lakes)', +units = '%', +modeling_realm = ['atmos'], +frequency = 'fx', +version = 'v20191115' +2025-09-04 14:52:26,850 UTC [321904] WARNING esmvalcore.cmor._fixes.fix.genericfix:417 Long name changed from 'Percentage of the grid cell occupied by land (including lakes)' to 'Percentage of the Grid Cell Occupied by Land (Including Lakes)' +(for file /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc) +2025-09-04 14:52:26,850 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-09-04 14:52:26,850 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'concatenate' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = +2025-09-04 14:52:26,850 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-09-04 14:52:26,850 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_metadata' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'fx', +frequency = 'fx', +short_name = 'sftlf' +2025-09-04 14:52:26,851 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-09-04 14:52:26,852 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_data')], + 'OBS': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], + 'default': [PosixPath('/home/bandela/climate_data')], + 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/RAWOBS')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +short_name = 'sftlf', +original_short_name = 'sftlf', +standard_name = 'land_area_fraction', +long_name = 'Percentage of the Grid Cell Occupied by Land (Including Lakes)', +units = '%', +modeling_realm = ['atmos'], +frequency = 'fx', +version = 'v20191115' +2025-09-04 14:52:26,852 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-09-04 14:52:26,852 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'fx', +frequency = 'fx', +short_name = 'sftlf' +2025-09-04 14:52:26,852 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step add_supplementary_variables +2025-09-04 14:52:26,853 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'add_supplementary_variables' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/hurs/gn/v20191115/hurs_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +supplementary_cubes = [] +2025-09-04 14:52:26,853 UTC [321904] DEBUG esmvalcore.preprocessor._supplementary_vars:137 Added sftlf as ancillary variable in cube of hurs. +2025-09-04 14:52:26,853 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step mask_landsea +2025-09-04 14:52:26,853 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'mask_landsea' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/hurs/gn/v20191115/hurs_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +mask_out = 'sea' +2025-09-04 14:52:26,855 UTC [321904] DEBUG esmvalcore.preprocessor._mask:137 Applying land-sea mask: sftlf +2025-09-04 14:52:26,855 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step regrid +2025-09-04 14:52:26,856 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'regrid' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/hurs/gn/v20191115/hurs_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +target_grid = '2.5x2.5', +scheme = 'nearest' +2025-09-04 14:52:26,856 UTC [321904] DEBUG esmvalcore.preprocessor._regrid:634 Loaded regridding scheme Nearest('mask') +2025-09-04 14:52:26,859 UTC [321904] DEBUG esmvalcore.preprocessor:411 Running preprocessor step save +2025-09-04 14:52:26,860 UTC [321904] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'save' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/hurs/gn/v20191115/hurs_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/sftlf/gn/v20191115/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +compress = False, +compute = False, +filename = PosixPath('/executions/recipe_20250904_145222/preproc/fire_evaluation/hurs/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_hurs_gn_20130116T120000-20141216T120000.nc') +2025-09-04 14:52:26,860 UTC [321904] DEBUG esmvalcore.preprocessor._io:497 Saving cube: +relative_humidity / (%) (time: 24; latitude: 72; longitude: 144) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Scalar coordinates: + height 2.0 m + Cell methods: + 0 area: time: mean + Attributes: + Conventions 'CF-1.7 CMIP-6.2' + activity_id 'CMIP' + branch_method 'standard' + branch_time_in_child np.float64(0.0) + branch_time_in_parent np.int64(-616894) + cmor_version '3.4.0' + data_specs_version '01.00.30' + experiment 'all-forcing simulation of the recent past' + experiment_id 'historical' + external_variables 'areacella' + forcing_index np.int32(1) + frequency 'mon' + further_info_url 'https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.no ...' + grid 'native atmosphere N96 grid (145x192 latxlon)' + grid_label 'gn' + initialization_index np.int32(1) + institution 'Commonwealth Scientific and Industrial Research Organisation, Aspendale, ...' + institution_id 'CSIRO' + license 'CMIP6 model data produced by CSIRO is licensed under a Creative Commons ...' + mip_era 'CMIP6' + nominal_resolution '250 km' + notes "Exp: ESM-historical; Local ID: HI-05; Variable: hurs (['fld_s03i245'])" + parent_activity_id 'CMIP' + parent_experiment_id 'piControl' + parent_mip_era 'CMIP6' + parent_source_id 'ACCESS-ESM1-5' + parent_time_units 'days since 1850-1-1 00:00:00' + parent_variant_label 'r1i1p1f1' + physics_index np.int32(1) + product 'model-output' + realization_index np.int32(1) + realm 'atmos' + run_variant 'forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, ...' + source 'ACCESS-ESM1.5 (2019): \naerosol: CLASSIC (v1.0)\natmos: HadGAM2 (r1.1, ...' + source_id 'ACCESS-ESM1-5' + source_type 'AOGCM' + sub_experiment 'none' + sub_experiment_id 'none' + table_id 'Amon' + table_info 'Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371' + title 'ACCESS-ESM1-5 output prepared for CMIP6' + variable_id 'hurs' + variant_label 'r1i1p1f1' + version 'v20191115' +with lazy data to /executions/recipe_20250904_145222/preproc/fire_evaluation/hurs/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_hurs_gn_20130116T120000-20141216T120000.nc +2025-09-04 14:52:26,867 UTC [321904] INFO esmvalcore.preprocessor:747 Computing and saving data for preprocessing task fire_evaluation/hurs +2025-09-04 14:52:26,869 UTC [321904] DEBUG asyncio:64 Using selector: EpollSelector +2025-09-04 14:52:27,077 UTC [321904] INFO esmvalcore._task:295 Successfully completed task fire_evaluation/hurs (priority 7) in 0:00:00.253739 +2025-09-04 14:52:27,077 UTC [321904] INFO esmvalcore._task:289 Starting task fire_evaluation/fire_evaluation in process [321904] +2025-09-04 14:52:27,080 UTC [321904] INFO esmvalcore._task:564 Running command ['/home/bandela/climate_ref/software/conda/esmvaltool-1b3bf252de04f119f83bfe65fac5aa040d9d97b4/bin/python', '/home/bandela/climate_ref/software/conda/esmvaltool-1b3bf252de04f119f83bfe65fac5aa040d9d97b4/lib/python3.12/site-packages/esmvaltool/diag_scripts/fire/fire_diagnostic.py', '/executions/recipe_20250904_145222/run/fire_evaluation/fire_evaluation/settings.yml'] +2025-09-04 14:52:27,080 UTC [321904] DEBUG esmvalcore._task:565 in environment +{'MPLBACKEND': 'Agg'} +2025-09-04 14:52:27,080 UTC [321904] DEBUG esmvalcore._task:567 in current working directory: /executions/recipe_20250904_145222/run/fire_evaluation/fire_evaluation +2025-09-04 14:52:27,080 UTC [321904] INFO esmvalcore._task:568 Writing output to /executions/recipe_20250904_145222/work/fire_evaluation/fire_evaluation +2025-09-04 14:52:27,080 UTC [321904] INFO esmvalcore._task:569 Writing plots to /executions/recipe_20250904_145222/plots/fire_evaluation/fire_evaluation +2025-09-04 14:52:27,080 UTC [321904] INFO esmvalcore._task:570 Writing log to /executions/recipe_20250904_145222/run/fire_evaluation/fire_evaluation/log.txt +2025-09-04 14:52:27,080 UTC [321904] INFO esmvalcore._task:580 To re-run this diagnostic script, run: +cd /executions/recipe_20250904_145222/run/fire_evaluation/fire_evaluation; MPLBACKEND="Agg" /home/bandela/climate_ref/software/conda/esmvaltool-1b3bf252de04f119f83bfe65fac5aa040d9d97b4/bin/python /home/bandela/climate_ref/software/conda/esmvaltool-1b3bf252de04f119f83bfe65fac5aa040d9d97b4/lib/python3.12/site-packages/esmvaltool/diag_scripts/fire/fire_diagnostic.py /executions/recipe_20250904_145222/run/fire_evaluation/fire_evaluation/settings.yml +2025-09-04 14:52:50,243 UTC [321904] INFO esmvalcore._task:141 Maximum memory used (estimate): 0.9 GB +2025-09-04 14:52:50,245 UTC [321904] INFO esmvalcore._task:144 Sampled every second. It may be inaccurate if short but high spikes in memory consumption occur. +2025-09-04 14:52:50,246 UTC [321904] DEBUG esmvalcore._task:657 Script fire/fire_diagnostic.py completed successfully +2025-09-04 14:52:50,246 UTC [321904] DEBUG esmvalcore._task:682 Collecting provenance from /executions/recipe_20250904_145222/run/fire_evaluation/fire_evaluation/diagnostic_provenance.yml +2025-09-04 14:52:50,283 UTC [321904] DEBUG urllib3.connectionpool:1049 Starting new HTTPS connection (1): cera-www.dkrz.de:443 +2025-09-04 14:52:50,389 UTC [321904] DEBUG urllib3.connectionpool:544 https://cera-www.dkrz.de:443 "GET /WDCC/ui/cerasearch/cerarest/exportcmip6?input=CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical HTTP/1.1" 302 280 +2025-09-04 14:52:50,411 UTC [321904] DEBUG urllib3.connectionpool:544 https://cera-www.dkrz.de:443 "GET /ui/cerarest/exportcmip6?input=CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical HTTP/1.1" 302 282 +2025-09-04 14:52:50,413 UTC [321904] DEBUG urllib3.connectionpool:1049 Starting new HTTPS connection (1): www.wdc-climate.de:443 +2025-09-04 14:52:50,492 UTC [321904] DEBUG urllib3.connectionpool:544 https://www.wdc-climate.de:443 "GET /ui/cerarest/exportcmip6?input=CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical HTTP/1.1" 200 12011 +2025-09-04 14:52:50,517 UTC [321904] DEBUG PIL.PngImagePlugin:201 STREAM b'IHDR' 16 13 +2025-09-04 14:52:50,517 UTC [321904] DEBUG PIL.PngImagePlugin:201 STREAM b'tEXt' 41 58 +2025-09-04 14:52:50,517 UTC [321904] DEBUG PIL.PngImagePlugin:201 STREAM b'pHYs' 111 9 +2025-09-04 14:52:50,517 UTC [321904] DEBUG PIL.PngImagePlugin:201 STREAM b'IDAT' 132 65536 +2025-09-04 14:52:50,638 UTC [321904] DEBUG PIL.PngImagePlugin:201 STREAM b'IHDR' 16 13 +2025-09-04 14:52:50,638 UTC [321904] DEBUG PIL.PngImagePlugin:201 STREAM b'tEXt' 41 58 +2025-09-04 14:52:50,638 UTC [321904] DEBUG PIL.PngImagePlugin:201 STREAM b'pHYs' 111 9 +2025-09-04 14:52:50,638 UTC [321904] DEBUG PIL.PngImagePlugin:201 STREAM b'IDAT' 132 65536 +2025-09-04 14:52:50,746 UTC [321904] DEBUG PIL.PngImagePlugin:201 STREAM b'IHDR' 16 13 +2025-09-04 14:52:50,746 UTC [321904] DEBUG PIL.PngImagePlugin:201 STREAM b'tEXt' 41 58 +2025-09-04 14:52:50,746 UTC [321904] DEBUG PIL.PngImagePlugin:201 STREAM b'pHYs' 111 9 +2025-09-04 14:52:50,746 UTC [321904] DEBUG PIL.PngImagePlugin:201 STREAM b'IDAT' 132 65536 +2025-09-04 14:52:50,855 UTC [321904] DEBUG esmvalcore._task:770 Collecting provenance of task fire_evaluation/fire_evaluation took 0.6 seconds +2025-09-04 14:52:50,855 UTC [321904] INFO esmvalcore._task:295 Successfully completed task fire_evaluation/fire_evaluation (priority 0) in 0:00:23.777998 +2025-09-04 14:52:51,119 UTC [321904] INFO esmvalcore._recipe.recipe:1201 Wrote recipe with version numbers and wildcards to: +file:///executions/recipe_20250904_145222/run/recipe_filled.yml +2025-09-04 14:52:51,181 UTC [321904] INFO esmvalcore.experimental.recipe_output:280 Wrote recipe output to: +file:///executions/recipe_20250904_145222/index.html +2025-09-04 14:52:51,181 UTC [321904] INFO esmvalcore._main:138 Ending the Earth System Model Evaluation Tool at time: 2025-09-04 14:52:51 UTC +2025-09-04 14:52:51,181 UTC [321904] INFO esmvalcore._main:142 Time for running the recipe was: 0:00:27.888279 +2025-09-04 14:52:51,603 UTC [321904] INFO esmvalcore._task:141 Maximum memory used (estimate): 2.5 GB +2025-09-04 14:52:51,603 UTC [321904] INFO esmvalcore._task:144 Sampled every second. It may be inaccurate if short but high spikes in memory consumption occur. +2025-09-04 14:52:51,604 UTC [321904] INFO esmvalcore._main:518 Removing `preproc` directory containing preprocessed data +2025-09-04 14:52:51,605 UTC [321904] INFO esmvalcore._main:521 If this data is further needed, then set `remove_preproc_dir` to `false` in your configuration +2025-09-04 14:52:51,607 UTC [321904] WARNING esmvalcore._main:491 Input data is not (fully) CMOR-compliant, see /executions/recipe_20250904_145222/run/cmor_log.txt for details +2025-09-04 14:52:51,607 UTC [321904] INFO esmvalcore._main:496 Run was successful diff --git a/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/run/recipe.yml b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/run/recipe.yml new file mode 100644 index 000000000..830cf3fcb --- /dev/null +++ b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/run/recipe.yml @@ -0,0 +1,72 @@ +documentation: + description: 'Recipe that plots diagnostics regarding climate drivers for fire. + + The diagnostic uses code for the ConFire model from the following GitHub repository: + + https://github.com/douglask3/Bayesian_fire_models/tree/AR7_REF + + ' + title: Climate drivers for fire. + authors: + - lenhardt_julien + - kelley_douglas + maintainer: + - lenhardt_julien +datasets: +- project: CMIP6 + activity: CMIP + dataset: ACCESS-ESM1-5 + ensemble: r1i1p1f1 + institute: CSIRO + exp: historical + grid: gn + timerange: 20130116T120000/20141216T120000 +preprocessors: + preproc: + regrid: &id001 + target_grid: 2.5x2.5 + scheme: nearest + mask_landsea: &id002 + mask_out: sea + preproc_fraction: + regrid: *id001 + mask_landsea: *id002 + convert_units: + units: 1 +diagnostics: + fire_evaluation: + description: Climate drivers for fire + variables: + pr: + mip: Amon + preprocessor: preproc + tasmax: + mip: Amon + preprocessor: preproc + treeFrac: + mip: Lmon + preprocessor: preproc_fraction + vegFrac: + mip: Emon + preprocessor: preproc_fraction + cVeg: + mip: Lmon + preprocessor: preproc + tas: + mip: Amon + preprocessor: preproc + hurs: + mip: Amon + preprocessor: preproc + scripts: + fire_evaluation: + script: fire/fire_diagnostic.py + confire_param: https://zenodo.org/records/14917245 + var_order: + - pr + - tasmax + - treeFrac + - vegFrac + - vpd + - cVeg + remove_confire_files: true diff --git a/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/run/recipe_filled.yml b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/run/recipe_filled.yml new file mode 100644 index 000000000..5d3e0f02d --- /dev/null +++ b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/run/recipe_filled.yml @@ -0,0 +1,144 @@ +documentation: + description: 'Recipe that plots diagnostics regarding climate drivers for fire. + + The diagnostic uses code for the ConFire model from the following GitHub repository: + + https://github.com/douglask3/Bayesian_fire_models/tree/AR7_REF' + title: Climate drivers for fire. + authors: + - lenhardt_julien + - kelley_douglas + maintainer: + - lenhardt_julien +preprocessors: + preproc: + regrid: + target_grid: 2.5x2.5 + scheme: nearest + mask_landsea: + mask_out: sea + preproc_fraction: + regrid: + target_grid: 2.5x2.5 + scheme: nearest + mask_landsea: + mask_out: sea + convert_units: + units: 1 + default: {} +diagnostics: + fire_evaluation: + description: Climate drivers for fire + variables: + pr: + mip: Amon + preprocessor: preproc + project: CMIP6 + activity: CMIP + ensemble: r1i1p1f1 + institute: CSIRO + exp: historical + grid: gn + timerange: 20130116T120000/20141216T120000 + version: v20191115 + supplementary_variables: + - mip: fx + short_name: sftlf + tasmax: + mip: Amon + preprocessor: preproc + project: CMIP6 + activity: CMIP + ensemble: r1i1p1f1 + institute: CSIRO + exp: historical + grid: gn + timerange: 20130116T120000/20141216T120000 + version: v20191115 + supplementary_variables: + - mip: fx + short_name: sftlf + treeFrac: + mip: Lmon + preprocessor: preproc_fraction + project: CMIP6 + activity: CMIP + ensemble: r1i1p1f1 + institute: CSIRO + exp: historical + grid: gn + timerange: 20130116T120000/20141216T120000 + version: v20191115 + supplementary_variables: + - mip: fx + short_name: sftlf + vegFrac: + mip: Emon + preprocessor: preproc_fraction + project: CMIP6 + activity: CMIP + ensemble: r1i1p1f1 + institute: CSIRO + exp: historical + grid: gn + timerange: 20130116T120000/20141216T120000 + version: v20191115 + supplementary_variables: + - mip: fx + short_name: sftlf + cVeg: + mip: Lmon + preprocessor: preproc + project: CMIP6 + activity: CMIP + ensemble: r1i1p1f1 + institute: CSIRO + exp: historical + grid: gn + timerange: 20130116T120000/20141216T120000 + version: v20191115 + supplementary_variables: + - mip: fx + short_name: sftlf + tas: + mip: Amon + preprocessor: preproc + project: CMIP6 + activity: CMIP + ensemble: r1i1p1f1 + institute: CSIRO + exp: historical + grid: gn + timerange: 20130116T120000/20141216T120000 + version: v20191115 + supplementary_variables: + - mip: fx + short_name: sftlf + hurs: + mip: Amon + preprocessor: preproc + project: CMIP6 + activity: CMIP + ensemble: r1i1p1f1 + institute: CSIRO + exp: historical + grid: gn + timerange: 20130116T120000/20141216T120000 + version: v20191115 + supplementary_variables: + - mip: fx + short_name: sftlf + scripts: + fire_evaluation: + script: fire/fire_diagnostic.py + confire_param: https://zenodo.org/records/14917245 + var_order: + - pr + - tasmax + - treeFrac + - vegFrac + - vpd + - cVeg + remove_confire_files: true +datasets: +- dataset: ACCESS-ESM1-5 diff --git a/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/run/resource_usage.txt b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/run/resource_usage.txt new file mode 100644 index 000000000..e37427411 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/run/resource_usage.txt @@ -0,0 +1,29 @@ +Date and time (UTC) Real time (s) CPU time (s) CPU (%) Memory (GB) Memory (%) Disk read (GB) Disk write (GB) +2025-09-04 14:52:23.415495 1.0 5.2 0 0.4 3 0.232 0.022 +2025-09-04 14:52:24.421293 2.0 6.4 57 0.6 4 0.241 0.025 +2025-09-04 14:52:25.426718 3.0 7.5 5 1.0 6 0.241 0.025 +2025-09-04 14:52:26.432616 4.0 8.5 27 1.1 7 0.242 0.025 +2025-09-04 14:52:27.438213 5.0 9.5 36 1.2 8 0.248 0.025 +2025-09-04 14:52:28.443866 6.1 10.5 5 1.3 9 0.286 0.026 +2025-09-04 14:52:29.449437 7.1 11.6 4 1.5 10 0.295 0.027 +2025-09-04 14:52:30.461077 8.1 12.4 10 1.5 10 0.297 0.027 +2025-09-04 14:52:31.474162 9.1 12.9 9 1.6 10 0.297 0.027 +2025-09-04 14:52:32.479892 10.1 14.1 8 1.6 11 0.298 0.027 +2025-09-04 14:52:33.485647 11.1 15.3 6 1.6 11 0.298 0.027 +2025-09-04 14:52:34.490980 12.1 16.5 4 1.6 11 0.298 0.027 +2025-09-04 14:52:35.496900 13.1 17.7 4 1.6 11 0.298 0.027 +2025-09-04 14:52:36.502647 14.1 18.8 5 1.6 11 0.298 0.027 +2025-09-04 14:52:37.508187 15.1 20.0 5 1.6 11 0.298 0.027 +2025-09-04 14:52:38.513833 16.1 21.2 4 1.7 12 0.298 0.027 +2025-09-04 14:52:39.519681 17.1 22.4 5 1.8 12 0.298 0.027 +2025-09-04 14:52:40.525356 18.1 23.9 27 2.4 16 0.299 0.027 +2025-09-04 14:52:41.534473 19.1 25.3 36 2.1 14 0.3 0.027 +2025-09-04 14:52:42.548030 20.2 26.7 28 2.1 14 0.3 0.027 +2025-09-04 14:52:43.553796 21.2 28.2 39 2.3 15 0.3 0.027 +2025-09-04 14:52:44.559810 22.2 29.4 5 2.2 15 0.305 0.027 +2025-09-04 14:52:45.565495 23.2 30.6 6 2.5 17 0.305 0.027 +2025-09-04 14:52:46.571907 24.2 31.8 5 2.2 15 0.305 0.027 +2025-09-04 14:52:47.577525 25.2 33.0 5 2.5 17 0.305 0.027 +2025-09-04 14:52:48.583292 26.2 34.2 3 1.9 13 0.307 0.027 +2025-09-04 14:52:49.597394 27.2 34.4 7 1.3 9 0.373 0.029 +2025-09-04 14:52:50.602957 28.2 35.1 26 1.3 9 0.373 0.029 diff --git a/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/work/fire_evaluation/fire_evaluation/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_vpd_gn_20130116T120000-20141216T120000.nc b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/work/fire_evaluation/fire_evaluation/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_vpd_gn_20130116T120000-20141216T120000.nc new file mode 100644 index 000000000..91a4a4f80 Binary files /dev/null and b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/work/fire_evaluation/fire_evaluation/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_vpd_gn_20130116T120000-20141216T120000.nc differ diff --git a/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/work/fire_evaluation/fire_evaluation/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_vpd_gn_20130116T120000-20141216T120000_citation.bibtex b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/work/fire_evaluation/fire_evaluation/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_vpd_gn_20130116T120000-20141216T120000_citation.bibtex new file mode 100644 index 000000000..3aa17cfb6 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/work/fire_evaluation/fire_evaluation/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_vpd_gn_20130116T120000-20141216T120000_citation.bibtex @@ -0,0 +1,22 @@ +@article{righi20gmd, + doi = {10.5194/gmd-13-1179-2020}, + url = {https://doi.org/10.5194/gmd-13-1179-2020}, + year = {2020}, + month = mar, + publisher = {Copernicus {GmbH}}, + volume = {13}, + number = {3}, + pages = {1179--1199}, + author = {Mattia Righi and Bouwe Andela and Veronika Eyring and Axel Lauer and Valeriu Predoi and Manuel Schlund and Javier Vegas-Regidor and Lisa Bock and Bj"{o}rn Br"{o}tz and Lee de Mora and Faruk Diblen and Laura Dreyer and Niels Drost and Paul Earnshaw and Birgit Hassler and Nikolay Koldunov and Bill Little and Saskia Loosveldt Tomas and Klaus Zimmermann}, + title = {Earth System Model Evaluation Tool (ESMValTool) v2.0 -- technical overview}, + journal = {Geoscientific Model Development} +} + +@misc{https://doi.org/10.22033/ESGF/CMIP6.4272, + url = {https://doi.org/10.22033/ESGF/CMIP6.4272}, + title = {CSIRO ACCESS-ESM1.5 model output prepared for CMIP6 CMIP historical}, + publisher = {Earth System Grid Federation}, + year = 2019, + author = {Ziehn, Tilo and Chamberlain, Matthew and Lenton, Andrew and Law, Rachel and Bodman, Roger and Dix, Martin and Wang, Yingping and Dobrohotoff, Peter and Srbinovsky, Jhan and Stevens, Lauren and Vohralik, Peter and Mackallah, Chloe and Sullivan, Arnold and O'Farrell, Siobhan and Druken, Kelsey}, + doi = {10.22033/ESGF/CMIP6.4272}, +} diff --git a/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/work/fire_evaluation/fire_evaluation/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_vpd_gn_20130116T120000-20141216T120000_data_citation_info.txt b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/work/fire_evaluation/fire_evaluation/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_vpd_gn_20130116T120000-20141216T120000_data_citation_info.txt new file mode 100644 index 000000000..75dcd84a9 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/work/fire_evaluation/fire_evaluation/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_vpd_gn_20130116T120000-20141216T120000_data_citation_info.txt @@ -0,0 +1,2 @@ +Follow the links below to find more information about CMIP6 data: +- https://cera-www.dkrz.de/WDCC/ui/cerasearch/cmip6?input=CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical diff --git a/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/work/fire_evaluation/fire_evaluation/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_vpd_gn_20130116T120000-20141216T120000_provenance.xml b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/work/fire_evaluation/fire_evaluation/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_vpd_gn_20130116T120000-20141216T120000_provenance.xml new file mode 100644 index 000000000..144339c31 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/work/fire_evaluation/fire_evaluation/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_vpd_gn_20130116T120000-20141216T120000_provenance.xml @@ -0,0 +1,329 @@ + + + + + + + + + + + + CMIP + ACCESS-ESM1-5 + ACCESS-ESM1-5 + fire_evaluation + 2014 + r1i1p1f1 + historical + /executions/recipe_20250904_145222/preproc/fire_evaluation/hurs/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_hurs_gn_20130116T120000-20141216T120000.nc + mon + gn + CSIRO + Near-Surface Relative Humidity + Amon + ['atmos'] + hurs + preproc + CMIP6 + 0 + hurs + relative_humidity + 2013 + 20130116T120000/20141216T120000 + % + hurs + v20191115 + {'mask_out': 'sea'} + {'target_grid': '2.5x2.5', 'scheme': 'nearest'} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250904_145222/preproc/fire_evaluation/hurs/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_hurs_gn_20130116T120000-20141216T120000.nc')} + + + SMHI, Sweden + https://orcid.org/0000-0002-9949-3989 + + + + + + + + + + https://zenodo.org/records/14917245 + ['historical'] + ACCESS-ESM1-5 + ['CMIP6'] + True + tcp://127.0.0.1:44557 + fire_evaluation + fire/fire_diagnostic.py + 20130116T120000/20141216T120000 + ['pr', 'tasmax', 'treeFrac', 'vegFrac', 'vpd', 'cVeg'] + + + + + + + + + + + + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2019-11-15T04:32:57Z + 01.00.30 + all-forcing simulation of the recent past + historical + areacella + 1 + mon + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2019-11-15T04:32:57Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards. + 1 + Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia + CSIRO + CMIP6 model data produced by CSIRO is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (https://creativecommons.org/licenses/). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law. + CMIP6 + 250 km + Exp: ESM-historical; Local ID: HI-05; Variable: hurs (['fld_s03i245']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + atmos + forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, CFC113, HCFC22, HFC125, HFC134a) + ACCESS-ESM1.5 (2019): +aerosol: CLASSIC (v1.0) +atmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m) +atmosChem: none +land: CABLE2.4 +landIce: none +ocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m) +ocnBgchem: WOMBAT (same grid as ocean) +seaIce: CICE4.1 (same grid as ocean) + ACCESS-ESM1-5 + AOGCM + none + none + Amon + Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/2a85fe34-e61e-4d23-87d1-742aa8be6142 + hurs + r1i1p1f1 + v20191115 + + + UKCEH, UK + https://orcid.org/0000-0003-1413-4969 + + + + + + + + + + + + + + + + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2019-11-15T03:52:25Z + 01.00.30 + all-forcing simulation of the recent past + historical + areacella + 1 + mon + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2019-11-15T03:52:25Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards. + 1 + Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia + CSIRO + CMIP6 model data produced by CSIRO is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (https://creativecommons.org/licenses/). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law. + CMIP6 + 250 km + Exp: ESM-historical; Local ID: HI-05; Variable: tas (['fld_s03i236']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + atmos + forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, CFC113, HCFC22, HFC125, HFC134a) + ACCESS-ESM1.5 (2019): +aerosol: CLASSIC (v1.0) +atmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m) +atmosChem: none +land: CABLE2.4 +landIce: none +ocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m) +ocnBgchem: WOMBAT (same grid as ocean) +seaIce: CICE4.1 (same grid as ocean) + ACCESS-ESM1-5 + AOGCM + none + none + Amon + Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/d2debfa6-c0e2-4339-bac8-08d97867ae3a + tas + r1i1p1f1 + v20191115 + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2019-11-15T17:53:23Z + 01.00.30 + all-forcing simulation of the recent past + historical + areacella + 1 + fx + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2019-11-15T17:53:23Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards. + 1 + Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia + CSIRO + CMIP6 model data produced by CSIRO is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (https://creativecommons.org/licenses/). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law. + CMIP6 + 250 km + Exp: ESM-historical; Local ID: HI-05; Variable: sftlf (['fld_s03i395']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + atmos + forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, CFC113, HCFC22, HFC125, HFC134a) + ACCESS-ESM1.5 (2019): +aerosol: CLASSIC (v1.0) +atmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m) +atmosChem: none +land: CABLE2.4 +landIce: none +ocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m) +ocnBgchem: WOMBAT (same grid as ocean) +seaIce: CICE4.1 (same grid as ocean) + ACCESS-ESM1-5 + AOGCM + none + none + fx + Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/df560bac-0f00-461e-8e3c-640b17bfacfc + sftlf + r1i1p1f1 + v20191115 + + + + + + + + + + + + + + + + + + + + + + + Recipe that plots diagnostics regarding climate drivers for fire. +The diagnostic uses code for the ConFire model from the following GitHub repository: +https://github.com/douglask3/Bayesian_fire_models/tree/AR7_REF + + [] + + + + + + + + CMIP + ACCESS-ESM1-5 + ACCESS-ESM1-5 + fire_evaluation + 2014 + r1i1p1f1 + historical + /executions/recipe_20250904_145222/preproc/fire_evaluation/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_20130116T120000-20141216T120000.nc + mon + gn + CSIRO + Near-Surface Air Temperature + Amon + ['atmos'] + tas + preproc + CMIP6 + 0 + tas + air_temperature + 2013 + 20130116T120000/20141216T120000 + K + tas + v20191115 + {'mask_out': 'sea'} + {'target_grid': '2.5x2.5', 'scheme': 'nearest'} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250904_145222/preproc/fire_evaluation/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_20130116T120000-20141216T120000.nc')} + + diff --git a/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/work/fire_evaluation/fire_evaluation/ConFire_parameter_files/none_trace-params-_6-frac_points_0.2-nvariables_-frac_random_sample0.2-nvars_6-niterations_5000.txt b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/work/fire_evaluation/fire_evaluation/ConFire_parameter_files/none_trace-params-_6-frac_points_0.2-nvariables_-frac_random_sample0.2-nvars_6-niterations_5000.txt new file mode 100644 index 000000000..e4119c960 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/work/fire_evaluation/fire_evaluation/ConFire_parameter_files/none_trace-params-_6-frac_points_0.2-nvariables_-frac_random_sample0.2-nvars_6-niterations_5000.txt @@ -0,0 +1,3 @@ +controlID:: [[0, 1, 2, 4], [3, 5]] +control_Direction:: [-1, 1] +driver_Direction:: [[1, -1, 1, -1], [1, 1]] diff --git a/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/work/fire_evaluation/fire_evaluation/ConFire_parameter_files/scalers-_6-frac_points_0.2-nvariables_-frac_random_sample0.2-nvars_6-niterations_5000.csv b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/work/fire_evaluation/fire_evaluation/ConFire_parameter_files/scalers-_6-frac_points_0.2-nvariables_-frac_random_sample0.2-nvars_6-niterations_5000.csv new file mode 100644 index 000000000..ef30b36a9 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/work/fire_evaluation/fire_evaluation/ConFire_parameter_files/scalers-_6-frac_points_0.2-nvariables_-frac_random_sample0.2-nvars_6-niterations_5000.csv @@ -0,0 +1,3 @@ +0,1,2,3,4,5 +-9.052642981854602e-05,229.2737182552942,-4.30847981071938e-07,-4.58348917196518e-07,4.26489343055783,-0.00022406270999004982 +0.0009059951900840491,315.8438201968542,0.9400004284637953,1.0000004583489173,9504.504354420478,488.84769720724125 diff --git a/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/work/fire_evaluation/fire_evaluation/ConFire_parameter_files/trace-_6-frac_points_0.2-nvariables_-frac_random_sample0.2-nvars_6-niterations_5000.nc b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/work/fire_evaluation/fire_evaluation/ConFire_parameter_files/trace-_6-frac_points_0.2-nvariables_-frac_random_sample0.2-nvars_6-niterations_5000.nc new file mode 100644 index 000000000..5181094f9 Binary files /dev/null and b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/executions/recipe_20250904_145222/work/fire_evaluation/fire_evaluation/ConFire_parameter_files/trace-_6-frac_points_0.2-nvariables_-frac_random_sample0.2-nvars_6-niterations_5000.nc differ diff --git a/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/out.log b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/out.log new file mode 100644 index 000000000..e69de29bb diff --git a/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/output.json b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/output.json new file mode 100644 index 000000000..0abc1ba5f --- /dev/null +++ b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/output.json @@ -0,0 +1,42 @@ +{ + "index": "/executions/recipe_20250904_145222/index.html", + "provenance": { + "environment": {}, + "modeldata": [], + "obsdata": {}, + "log": "/executions/recipe_20250904_145222/run/main_log_debug.txt" + }, + "data": { + "executions/recipe_20250904_145222/work/fire_evaluation/fire_evaluation/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_vpd_gn_20130116T120000-20141216T120000.nc": { + "filename": "executions/recipe_20250904_145222/work/fire_evaluation/fire_evaluation/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_vpd_gn_20130116T120000-20141216T120000.nc", + "long_name": "", + "description": "" + } + }, + "plots": { + "executions/recipe_20250904_145222/plots/fire_evaluation/fire_evaluation/burnt_fraction_ACCESS-ESM1-5_historical_2013_2014.png": { + "filename": "executions/recipe_20250904_145222/plots/fire_evaluation/fire_evaluation/burnt_fraction_ACCESS-ESM1-5_historical_2013_2014.png", + "long_name": "Burnt area fraction for the ACCESS-ESM1-5 (CMIP6-historical) for the time period 20130116T120000/20141216T120000 as computed with the ConFire model (Jones et al., 2024).", + "description": "" + }, + "executions/recipe_20250904_145222/plots/fire_evaluation/fire_evaluation/fire_weather_control_ACCESS-ESM1-5_historical_2013_2014.png": { + "filename": "executions/recipe_20250904_145222/plots/fire_evaluation/fire_evaluation/fire_weather_control_ACCESS-ESM1-5_historical_2013_2014.png", + "long_name": "Fire weather control for the ACCESS-ESM1-5 (CMIP6-historical) for the time period 20130116T120000/20141216T120000 as computed with the ConFire model (Jones et al., 2024).", + "description": "" + }, + "executions/recipe_20250904_145222/plots/fire_evaluation/fire_evaluation/fuel_load_continuity_control_ACCESS-ESM1-5_historical_2013_2014.png": { + "filename": "executions/recipe_20250904_145222/plots/fire_evaluation/fire_evaluation/fuel_load_continuity_control_ACCESS-ESM1-5_historical_2013_2014.png", + "long_name": "Fuel load continuity control for the ACCESS-ESM1-5 (CMIP6-historical) for the time period 20130116T120000/20141216T120000 as computed with the ConFire model (Jones et al., 2024).", + "description": "" + } + }, + "html": { + "/executions/recipe_20250904_145222/index.html": { + "filename": "/executions/recipe_20250904_145222/index.html", + "long_name": "Results page", + "description": "Page showing the executions of the ESMValTool run." + } + }, + "metrics": null, + "diagnostics": {} +} \ No newline at end of file diff --git a/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/recipe.yml b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/recipe.yml new file mode 100644 index 000000000..830cf3fcb --- /dev/null +++ b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/recipe.yml @@ -0,0 +1,72 @@ +documentation: + description: 'Recipe that plots diagnostics regarding climate drivers for fire. + + The diagnostic uses code for the ConFire model from the following GitHub repository: + + https://github.com/douglask3/Bayesian_fire_models/tree/AR7_REF + + ' + title: Climate drivers for fire. + authors: + - lenhardt_julien + - kelley_douglas + maintainer: + - lenhardt_julien +datasets: +- project: CMIP6 + activity: CMIP + dataset: ACCESS-ESM1-5 + ensemble: r1i1p1f1 + institute: CSIRO + exp: historical + grid: gn + timerange: 20130116T120000/20141216T120000 +preprocessors: + preproc: + regrid: &id001 + target_grid: 2.5x2.5 + scheme: nearest + mask_landsea: &id002 + mask_out: sea + preproc_fraction: + regrid: *id001 + mask_landsea: *id002 + convert_units: + units: 1 +diagnostics: + fire_evaluation: + description: Climate drivers for fire + variables: + pr: + mip: Amon + preprocessor: preproc + tasmax: + mip: Amon + preprocessor: preproc + treeFrac: + mip: Lmon + preprocessor: preproc_fraction + vegFrac: + mip: Emon + preprocessor: preproc_fraction + cVeg: + mip: Lmon + preprocessor: preproc + tas: + mip: Amon + preprocessor: preproc + hurs: + mip: Amon + preprocessor: preproc + scripts: + fire_evaluation: + script: fire/fire_diagnostic.py + confire_param: https://zenodo.org/records/14917245 + var_order: + - pr + - tasmax + - treeFrac + - vegFrac + - vpd + - cVeg + remove_confire_files: true diff --git a/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/series.json b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/series.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/tests/test-data/regression/esmvaltool/climate-drivers-for-fire/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5/series.json @@ -0,0 +1 @@ +[] \ No newline at end of file