From b9c38c709554e0b770dbc7c18c34750ae6ae2070 Mon Sep 17 00:00:00 2001 From: domfournier Date: Tue, 14 Jul 2026 11:50:54 -0700 Subject: [PATCH 1/8] [GEOPY-2731] Adjust tests --- grid_apps/block_models/driver.py | 2 -- tests/parameters_test.py | 11 ++++------- tests/run_tests/block_2_octree_test.py | 8 ++++---- tests/run_tests/octree_creation/params_test.py | 14 +++++++------- tests/run_tests/octree_creation/run_test.py | 5 +++-- 5 files changed, 18 insertions(+), 22 deletions(-) diff --git a/grid_apps/block_models/driver.py b/grid_apps/block_models/driver.py index c29f4d9..367ab3b 100644 --- a/grid_apps/block_models/driver.py +++ b/grid_apps/block_models/driver.py @@ -31,8 +31,6 @@ class Driver(BaseDriver): """ Create BlockModel from parameters. - - :param parameters: BlockModelOptions or InputFile containing the parameters. """ _params_class = BlockModelOptions diff --git a/tests/parameters_test.py b/tests/parameters_test.py index 9bffc6a..9bb877e 100644 --- a/tests/parameters_test.py +++ b/tests/parameters_test.py @@ -9,7 +9,7 @@ from geoh5py import Workspace from geoh5py.objects import Points -from geoh5py.ui_json import InputFile +from geoh5py.ui_json import UIJson from grid_apps import assets_path from grid_apps.block_models.options import BlockModelOptions @@ -31,13 +31,10 @@ def test_block_model_params_from_uijson(tmp_path): "export_as": "my block model", } - ifile = InputFile.read_ui_json( - assets_path() / "uijson/block_models.ui.json", validate=False - ) - for k, v in updates.items(): - ifile.set_data_value(k, v) + ifile = UIJson.read(assets_path() / "uijson/block_models.ui.json") + ifile.set_values(**updates) - params = BlockModelOptions.build(ifile) + params = BlockModelOptions.build(ifile, workspace=ws) assert params.geoh5 == ws assert params.source.objects == updates["objects"] assert params.creation.cell_size_x == updates["cell_size_x"] diff --git a/tests/run_tests/block_2_octree_test.py b/tests/run_tests/block_2_octree_test.py index 4a6494d..65a2c26 100644 --- a/tests/run_tests/block_2_octree_test.py +++ b/tests/run_tests/block_2_octree_test.py @@ -12,7 +12,7 @@ from geoh5py import Workspace from geoh5py.groups import UIJsonGroup from geoh5py.objects import BlockModel -from geoh5py.ui_json import InputFile +from geoh5py.ui_json import UIJson from grid_apps.block_model_to_octree.driver import Driver as BlockModelToOctreeDriver from grid_apps.block_model_to_octree.options import BlockModel2OctreeOptions @@ -79,7 +79,7 @@ def test_block_model_to_octree(tmp_path): params.write_ui_json(ifile) - ifile_class = InputFile.read_ui_json(ifile) + ifile_class = UIJson.read(ifile) options = BlockModel2OctreeOptions.build(ifile_class) driver = BlockModelToOctreeDriver(options) octree = driver.make_grid() @@ -103,7 +103,7 @@ def test_float_refine_octree(tmp_path): float_data = block_model.add_data({"wave": {"values": wave.flatten()}}) params = BlockModel2OctreeOptions.build( - **{"geoh5": workspace, "entity": block_model, "data": float_data} + {"geoh5": workspace, "entity": block_model, "data": float_data} ) driver = BlockModelToOctreeDriver(params) @@ -127,7 +127,7 @@ def test_integer_refine_octree(tmp_path): ) params = BlockModel2OctreeOptions.build( - **{ + { "geoh5": workspace, "entity": block_model, "data": ref_data, diff --git a/tests/run_tests/octree_creation/params_test.py b/tests/run_tests/octree_creation/params_test.py index 37c0689..fa548a2 100644 --- a/tests/run_tests/octree_creation/params_test.py +++ b/tests/run_tests/octree_creation/params_test.py @@ -12,7 +12,7 @@ from geoh5py import Workspace from geoh5py.groups import UIJsonGroup from geoh5py.objects import Points -from geoh5py.ui_json import BaseUIJson, InputFile +from geoh5py.ui_json import UIJson from grid_apps import assets_path from grid_apps.octree_creation.driver import OctreeDriver @@ -123,18 +123,18 @@ def test_treemesh_from_params(tmp_path): with Workspace.create(tmp_path / f"{__name__}.geoh5") as ws: points = Points.create(ws, name="test", vertices=np.random.rand(100, 3)) uijson_path = assets_path() / "uijson/octree_mesh.ui.json" - ifile = InputFile.read_ui_json(uijson_path, validate=False) - ifile.update_ui_values( - { + ifile = UIJson.read(uijson_path) + ifile.set_values( + **{ "geoh5": ws, "objects": points, "Refinement A object": points, - "Refinement A levels": [4, 2], + "Refinement A levels": "4, 2", "Refinement A horizon": False, "Refinement A distance": 1000, } ) - params = OctreeOptions.build(ifile) + params = OctreeOptions.build(ifile, workspace=ws) mesh = OctreeDriver.octree_from_params(params) assert mesh.u_cell_size == 25.0 assert mesh.v_cell_size == 25.0 @@ -143,7 +143,7 @@ def test_treemesh_from_params(tmp_path): def test_params_from_uijson(tmp_path): - uijson = BaseUIJson.read(OctreeOptions.default_ui_json) + uijson = UIJson.read(OctreeOptions.default_ui_json) with Workspace.create(tmp_path / f"{__name__}.geoh5") as ws: points = Points.create(ws, name="test", vertices=np.random.rand(100, 3)) diff --git a/tests/run_tests/octree_creation/run_test.py b/tests/run_tests/octree_creation/run_test.py index 8733482..c8efad0 100644 --- a/tests/run_tests/octree_creation/run_test.py +++ b/tests/run_tests/octree_creation/run_test.py @@ -315,9 +315,10 @@ def test_octree_diagonal_balance( # pylint: disable=too-many-locals "distance": 1000.0, } ], + "diagonal_balance": diagonal_balance, } - params = OctreeOptions(**params_dict, diagonal_balance=diagonal_balance) + params = OctreeOptions(**params_dict) filename = "diag_balance.ui.json" @@ -327,7 +328,7 @@ def test_octree_diagonal_balance( # pylint: disable=too-many-locals with workspace.open(mode="r"): results = [] - mesh_obj = workspace.get_entity("Octree Mesh")[0] + mesh_obj = workspace.get_entity("Octree mesh")[0] assert isinstance(mesh_obj, Octree) From 580f9bf1302845d0ef16b894ce29efafe415fb5a Mon Sep 17 00:00:00 2001 From: domfournier Date: Tue, 14 Jul 2026 11:51:10 -0700 Subject: [PATCH 2/8] [GEOPY-2731] Remove unknown meshType --- grid_apps-assets/uijson/block_models.ui.json | 1 - 1 file changed, 1 deletion(-) diff --git a/grid_apps-assets/uijson/block_models.ui.json b/grid_apps-assets/uijson/block_models.ui.json index 8c03ed1..d6765ae 100644 --- a/grid_apps-assets/uijson/block_models.ui.json +++ b/grid_apps-assets/uijson/block_models.ui.json @@ -9,7 +9,6 @@ "main": true, "group": "Data", "meshType": [ - "{2e814779-c35f-4da0-ad6a-39a6912361f9}", "{202c5db1-a56d-4004-9cad-baafd8899406}", "{6a057fdc-b355-11e3-95be-fd84a7ffcb88}", "{f26feba3-aded-494b-b9e9-b2bbcbe298e1}", From d136edc6ff321a49828d0ffcc4b595a1127b316e Mon Sep 17 00:00:00 2001 From: domfournier Date: Tue, 14 Jul 2026 12:14:40 -0700 Subject: [PATCH 3/8] [GEOPY-2731] Consolidate tests --- tests/conftest.py | 24 +++++++++++++++++++++++ tests/run_tests/grid_model_merger_test.py | 20 +------------------ 2 files changed, 25 insertions(+), 19 deletions(-) diff --git a/tests/conftest.py b/tests/conftest.py index 6147833..03b124e 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -10,6 +10,30 @@ import numpy as np import pytest from discretize.utils import mesh_builder_xyz +from geoh5py.objects import BlockModel + +from grid_apps.block_models.driver import Driver as BlockModelDriver + + +def setup_block_model( + workspace, + *, + top=500, + depth_core=300.0, + height=300, + width=1000, + n=100, + pads=(100, 150, 200, 300, 0, 0), + cell_size=(50, 50, 50), +) -> BlockModel: + x_grid, y_grid = np.meshgrid(np.arange(0, width, n), np.arange(0, height, n)) + z_grid = np.around((top / 2) * np.sin(x_grid) + (top / 2), -1) + locs = np.c_[x_grid.ravel(), y_grid.ravel(), z_grid.ravel()] + + mesh = BlockModelDriver.get_block_model( + workspace, locs, cell_size, depth_core, pads, 1.1, name="test" + ) + return mesh @pytest.fixture diff --git a/tests/run_tests/grid_model_merger_test.py b/tests/run_tests/grid_model_merger_test.py index dcd6ec9..885118e 100644 --- a/tests/run_tests/grid_model_merger_test.py +++ b/tests/run_tests/grid_model_merger_test.py @@ -15,30 +15,12 @@ from geoh5py.objects import BlockModel, Octree, Points from geoh5py.workspace import Workspace -from grid_apps.block_models.driver import Driver as BlockModelDriver from grid_apps.grid_model_merger.driver import Driver from grid_apps.grid_model_merger.options import GridModelMergerOptions from grid_apps.octree_creation.driver import OctreeDriver from grid_apps.octree_creation.options import OctreeOptions - -def setup_block_model(workspace) -> BlockModel: - # padding in the W/E/N/S directions should make create locs at least as - # far as the core hull plus the padding distances - top = 500 - depth_core = 300.0 - height = 300 - width = 1000 - n = 100 - - x_grid, y_grid = np.meshgrid(np.arange(0, width, n), np.arange(0, height, n)) - z_grid = np.around((top / 2) * np.sin(x_grid) + (top / 2), -1) - locs = np.c_[x_grid.ravel(), y_grid.ravel(), z_grid.ravel()] - pads = [100, 150, 200, 300, 0, 0] - mesh = BlockModelDriver.get_block_model( - workspace, locs, [50, 50, 50], depth_core, pads, 1.1, name="test" - ) - return mesh +from ..conftest import setup_block_model def setup_octree(workspace, locations, refinement, params_dict) -> Octree: From fa10cac7960c5152ca92eaef72c640ea772e6f4c Mon Sep 17 00:00:00 2001 From: domfournier Date: Tue, 28 Jul 2026 14:24:58 -0700 Subject: [PATCH 4/8] [GEOPY-2731] Line up setup block model test with develop --- tests/conftest.py | 24 +++++++++++------------- 1 file changed, 11 insertions(+), 13 deletions(-) diff --git a/tests/conftest.py b/tests/conftest.py index 03b124e..0463308 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -15,23 +15,21 @@ from grid_apps.block_models.driver import Driver as BlockModelDriver -def setup_block_model( - workspace, - *, - top=500, - depth_core=300.0, - height=300, - width=1000, - n=100, - pads=(100, 150, 200, 300, 0, 0), - cell_size=(50, 50, 50), -) -> BlockModel: +def setup_block_model(workspace) -> BlockModel: + # padding in the W/E/N/S directions should make create locs at least as + # far as the core hull plus the padding distances + top = 200 + depth_core = 300.0 + height = 300 + width = 1000 + n = 100 + x_grid, y_grid = np.meshgrid(np.arange(0, width, n), np.arange(0, height, n)) z_grid = np.around((top / 2) * np.sin(x_grid) + (top / 2), -1) locs = np.c_[x_grid.ravel(), y_grid.ravel(), z_grid.ravel()] - + pads = [100, 150, 200, 300, 0, 0] mesh = BlockModelDriver.get_block_model( - workspace, locs, cell_size, depth_core, pads, 1.1, name="test" + workspace, locs, [50, 50, 50], depth_core, pads, 1.1, name="test" ) return mesh From bab8c5dd0d5177b56e6d5a5338786180377ea878 Mon Sep 17 00:00:00 2001 From: domfournier Date: Tue, 28 Jul 2026 14:37:11 -0700 Subject: [PATCH 5/8] [GEOPY-2731] Relock to feature/uijson --- .../py-3.12-linux-64-dev.conda.lock.yml | 128 +- environments/py-3.12-linux-64.conda.lock.yml | 91 +- .../py-3.12-win-64-dev.conda.lock.yml | 128 +- environments/py-3.12-win-64.conda.lock.yml | 91 +- .../py-3.13-linux-64-dev.conda.lock.yml | 128 +- environments/py-3.13-linux-64.conda.lock.yml | 91 +- .../py-3.13-win-64-dev.conda.lock.yml | 128 +- environments/py-3.13-win-64.conda.lock.yml | 91 +- .../py-3.14-linux-64-dev.conda.lock.yml | 128 +- environments/py-3.14-linux-64.conda.lock.yml | 91 +- .../py-3.14-win-64-dev.conda.lock.yml | 128 +- environments/py-3.14-win-64.conda.lock.yml | 91 +- py-3.12.conda-lock.yml | 1235 ++++++++-------- py-3.13.conda-lock.yml | 1255 +++++++++-------- py-3.14.conda-lock.yml | 1249 ++++++++-------- pyproject.toml | 4 +- 16 files changed, 2596 insertions(+), 2461 deletions(-) diff --git a/environments/py-3.12-linux-64-dev.conda.lock.yml b/environments/py-3.12-linux-64-dev.conda.lock.yml index b330ee0..76af445 100644 --- a/environments/py-3.12-linux-64-dev.conda.lock.yml +++ b/environments/py-3.12-linux-64-dev.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 1dafb147f14260ff03c478aa59889d8ec2ac87a5441e62134e01ab9a622bb436 +# input_hash: 630c4d5a518e6daae80e9b2f4d4c47435dfa161d9b0e7de645892876051027e9 channels: - conda-forge @@ -8,46 +8,46 @@ channels: dependencies: - _openmp_mutex=4.5=7_kmp_llvm - alabaster=1.0.0=pyhd8ed1ab_1 - - annotated-types=0.7.0=pyhd8ed1ab_1 + - annotated-types=0.8.0=pyhd8ed1ab_0 - astroid=4.0.4=py312h7900ff3_0 - - aws-c-auth=0.10.1=ha62d5e7_3 - - aws-c-cal=0.9.13=h2c9d079_1 - - aws-c-common=0.12.6=hb03c661_0 - - aws-c-compression=0.3.2=h8b1a151_0 - - aws-c-http=0.10.13=h4bacb7b_0 - - aws-c-io=0.26.3=hb18f61d_2 - - aws-c-s3=0.12.2=he6ee468_1 - - aws-c-sdkutils=0.2.4=h8b1a151_4 - - aws-checksums=0.2.10=h8b1a151_0 + - aws-c-auth=0.10.4=hb7a77c6_1 + - aws-c-cal=0.9.14=h2aa3ae6_4 + - aws-c-common=0.14.2=hb03c661_0 + - aws-c-compression=0.3.2=h720e601_4 + - aws-c-http=0.11.0=h38ae05a_4 + - aws-c-io=0.27.3=h6f4d18d_1 + - aws-c-s3=0.12.8=h46fcd08_1 + - aws-c-sdkutils=0.2.7=h720e601_2 + - aws-checksums=0.2.10=h720e601_4 - babel=2.18.0=pyhcf101f3_1 - - backports.zstd=1.5.0=py312h90b7ffd_0 + - backports.zstd=1.6.0=py312h90b7ffd_0 - brotli=1.2.0=hed03a55_1 - brotli-bin=1.2.0=hb03c661_1 - brotli-python=1.2.0=py312hdb49522_1 - bzip2=1.0.8=hda65f42_9 - - c-ares=1.34.6=hb03c661_0 - - ca-certificates=2026.5.20=hbd8a1cb_0 - - cached-property=1.5.2=hd8ed1ab_1 - - cached_property=1.5.2=pyha770c72_1 - - certifi=2026.5.20=pyhd8ed1ab_0 - - charset-normalizer=3.4.7=pyhd8ed1ab_0 + - c-ares=1.34.8=hb03c661_0 + - ca-certificates=2026.7.22=hbd8a1cb_0 + - cached-property=1.5.2=hd8ed1ab_2 + - cached_property=1.5.2=pyha770c72_2 + - certifi=2026.7.22=pyhd8ed1ab_0 + - charset-normalizer=3.4.9=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - contourpy=1.3.3=py312h0a2e395_4 - - coverage=7.14.1=py312h8a5da7c_0 + - coverage=7.15.2=py312h8a5da7c_0 - cycler=0.12.1=pyhcf101f3_2 - dill=0.4.1=pyhcf101f3_0 - discretize=0.12.0=np2py312h2a48985_1 - - docutils=0.21.2=pyhd8ed1ab_1 + - docutils=0.22.4=pyhd8ed1ab_0 - exceptiongroup=1.3.1=pyhd8ed1ab_0 - fonttools=4.63.0=py312h8a5da7c_0 - freetype=2.14.3=ha770c72_0 - - h2=4.3.0=pyhcf101f3_0 + - h2=4.4.0=pyhcf101f3_0 - h5py=3.16.0=nompi_py312ha829cd9_102 - - hdf5=2.1.0=nompi_h87a9417_105 - - hpack=4.1.0=pyhd8ed1ab_0 + - hdf5=2.1.0=nompi_h654f344_110 + - hpack=4.2.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - - icu=78.3=h33c6efd_0 - - idna=3.17=pyhcf101f3_0 + - icu=78.3=h54a6638_2 + - idna=3.18=pyhcf101f3_0 - imagesize=2.0.0=pyhd8ed1ab_0 - importlib-metadata=9.0.0=pyhcf101f3_0 - iniconfig=2.3.0=pyhd8ed1ab_0 @@ -55,73 +55,74 @@ dependencies: - jinja2=3.1.6=pyhcf101f3_1 - keyutils=1.6.3=hb9d3cd8_0 - kiwisolver=1.5.0=py312h0a2e395_0 - - krb5=1.22.2=ha1258a1_0 + - krb5=1.22.2=hbde042b_1 - lcms2=2.19.1=h0c24ade_1 - - ld_impl_linux-64=2.45.1=default_hbd61a6d_102 - - lerc=4.1.0=hdb68285_0 + - ld_impl_linux-64=2.46.1=default_hbd61a6d_102 + - lerc=4.2.0=hdb68285_0 - libaec=1.1.5=h088129d_0 - libblas=3.11.0=8_h5875eb1_mkl - libbrotlicommon=1.2.0=hb03c661_1 - libbrotlidec=1.2.0=hb03c661_1 - libbrotlienc=1.2.0=hb03c661_1 - libcblas=3.11.0=8_hfef963f_mkl - - libcurl=8.20.0=hcf29cc6_0 + - libcurl=8.21.0=hae6b9f4_2 - libdeflate=1.25=h17f619e_0 - libedit=3.1.20250104=pl5321h7949ede_0 - libev=4.33=hd590300_2 - - libexpat=2.8.1=hecca717_0 + - libexpat=2.8.1=hecca717_1 - libffi=3.5.2=h3435931_0 - libfreetype=2.14.3=ha770c72_0 - libfreetype6=2.14.3=h73754d4_0 - - libgcc=15.2.0=he0feb66_19 - - libgcc-ng=15.2.0=h69a702a_19 - - libgfortran=15.2.0=h69a702a_19 - - libgfortran5=15.2.0=h68bc16d_19 + - libgcc=15.2.0=he0feb66_20 + - libgcc-ng=15.2.0=h69a702a_20 + - libgfortran=15.2.0=h69a702a_20 + - libgfortran5=15.2.0=h68bc16d_20 - libhwloc=2.13.0=default_he001693_1000 - libiconv=1.18=h3b78370_2 - - libjpeg-turbo=3.1.4.1=hb03c661_0 + - libjpeg-turbo=3.2.0=hb03c661_0 - liblapack=3.11.0=8_h5e43f62_mkl - liblzma=5.8.3=hb03c661_0 - libnghttp2=1.68.1=h877daf1_0 - libnsl=2.0.1=hb9d3cd8_1 - libpng=1.6.58=h421ea60_0 - - libsqlite=3.53.1=h0c1763c_0 + - libpsl=0.22.0=h49b2146_1 + - libsqlite=3.53.4=hf4e2dac_0 - libssh2=1.11.1=hcf80075_0 - - libstdcxx=15.2.0=h934c35e_19 - - libstdcxx-ng=15.2.0=hdf11a46_19 - - libtiff=4.7.1=h9d88235_1 - - libuuid=2.42.1=h5347b49_0 + - libstdcxx=15.2.0=h934c35e_20 + - libstdcxx-ng=15.2.0=hdf11a46_20 + - libtiff=4.7.2=h9d88235_0 + - libuuid=2.42.2=h5347b49_0 - libwebp-base=1.6.0=hd42ef1d_0 - libxcb=1.17.0=h8a09558_0 - libxcrypt=4.4.36=hd590300_1 - libxml2=2.15.3=h49c6c72_0 - libxml2-16=2.15.3=hca6bf5a_0 - libzlib=1.3.2=h25fd6f3_2 - - llvm-openmp=22.1.6=h4922eb0_0 + - llvm-openmp=22.1.8=h4922eb0_0 - markupsafe=3.0.3=py312h8a5da7c_1 - matplotlib-base=3.10.9=py312he3d6523_0 - mccabe=0.7.0=pyhd8ed1ab_1 - - mkl=2026.0.0=h0e700b2_915 + - mkl=2026.1.0=hecca717_243 - munkres=1.1.4=pyhd8ed1ab_1 - ncurses=6.6=hdb14827_0 - numpy=2.4.6=py312h33ff503_0 - - onemkl-license=2026.0.0=hf2ce2f3_915 + - onemkl-license=2026.1.0=ha770c72_243 - openjpeg=2.5.4=h55fea9a_0 - - openssl=3.6.2=h35e630c_0 + - openssl=3.6.3=h35e630c_0 - packaging=26.2=pyhc364b38_0 - - pillow=12.2.0=py312h50c33e8_0 + - pillow=12.3.0=py312h50c33e8_0 - pip=26.1.2=pyh8b19718_0 - - platformdirs=4.10.0=pyhcf101f3_0 + - platformdirs=4.11.0=pyhcf101f3_0 - pluggy=1.6.0=pyhf9edf01_1 - psutil=7.2.2=py312h5253ce2_0 - pthread-stubs=0.4=hb9d3cd8_1002 - pydantic=2.12.5=pyhcf101f3_1 - pydantic-core=2.41.5=py312h868fb18_1 - pygments=2.20.0=pyhd8ed1ab_0 - - pylint=4.0.5=pyhcf101f3_0 + - pylint=4.0.6=pyhcf101f3_0 - pyparsing=3.3.2=pyhcf101f3_0 - pysocks=1.7.1=pyha55dd90_7 - - pytest=9.0.3=pyhc364b38_1 + - pytest=9.1.1=pyhc364b38_2 - pytest-cov=7.1.0=pyhcf101f3_0 - python=3.12.13=hd63d673_0_cpython - python-dateutil=2.9.0.post0=pyhe01879c_2 @@ -131,31 +132,30 @@ dependencies: - readline=8.3=h853b02a_0 - requests=2.34.2=pyhcf101f3_0 - roman-numerals=4.1.0=pyhd8ed1ab_0 - - roman-numerals-py=4.1.0=pyhd8ed1ab_0 - - s2n=1.7.3=hc5a330e_0 + - s2n=1.7.5=h7e3ee7f_1 - scipy=1.17.1=py312h54fa4ab_1 - - setuptools=82.0.1=pyh332efcf_0 + - setuptools=83.0.0=pyh332efcf_0 - six=1.17.0=pyhe01879c_1 - - snowballstemmer=3.1.0=pyhd8ed1ab_0 - - sphinx=8.3.0=pyhd8ed1ab_0 - - sphinx-autodoc-typehints=3.5.2=pyhd8ed1ab_0 - - sphinx-rtd-theme=3.1.0=hd8ed1ab_0 - - sphinx_rtd_theme=3.1.0=pyha770c72_0 + - snowballstemmer=3.1.1=pyhd8ed1ab_0 + - sphinx=9.1.0=pyhd8ed1ab_0 + - sphinx-autodoc-typehints=3.13.0=pyhd8ed1ab_0 + - sphinx-rtd-theme=3.1.0=hd8ed1ab_1 + - sphinx_rtd_theme=3.1.0=pyha770c72_1 - sphinxcontrib-applehelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-devhelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-htmlhelp=2.1.0=pyhd8ed1ab_1 - sphinxcontrib-jquery=4.1=pyhd8ed1ab_1 - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_1 - sphinxcontrib-qthelp=2.0.0=pyhd8ed1ab_1 - - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_1 + - sphinxcontrib-serializinghtml=2.0.0=pyhd8ed1ab_0 - tbb=2023.0.0=hab88423_2 - - tk=8.6.13=noxft_h366c992_103 + - tk=8.6.13=noxft_hd70dff1_3 - tomli=2.4.1=pyhcf101f3_0 - - tomlkit=0.15.0=pyha770c72_0 - - typing-extensions=4.15.0=h396c80c_0 + - tomlkit=0.15.1=pyhcf101f3_0 + - typing-extensions=4.16.0=h69aa097_0 - typing-inspection=0.4.2=pyhcf101f3_2 - - typing_extensions=4.15.0=pyhcf101f3_0 - - tzdata=2025c=hc9c84f9_1 + - typing_extensions=4.16.0=pyhcf101f3_0 + - tzdata=2026c=h151e31d_0 - unicodedata2=17.0.1=py312h4c3975b_0 - urllib3=2.7.0=pyhd8ed1ab_0 - wheel=0.47.0=pyhd8ed1ab_0 @@ -166,8 +166,8 @@ dependencies: - zlib-ng=2.3.3=hceb46e0_1 - zstd=1.5.7=hb78ec9c_6 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@6222ed5be1a26e8db288d91b4fbccc891e3ca5d2 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@cbdabab52382413a3d6176262a2bf189a9b4cd24 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@e51a703816e712f3c66147cb78fd16808b520f75 variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.12-linux-64.conda.lock.yml b/environments/py-3.12-linux-64.conda.lock.yml index beed02f..3bf9128 100644 --- a/environments/py-3.12-linux-64.conda.lock.yml +++ b/environments/py-3.12-linux-64.conda.lock.yml @@ -1,92 +1,93 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 1dafb147f14260ff03c478aa59889d8ec2ac87a5441e62134e01ab9a622bb436 +# input_hash: 630c4d5a518e6daae80e9b2f4d4c47435dfa161d9b0e7de645892876051027e9 channels: - conda-forge - nodefaults dependencies: - _openmp_mutex=4.5=7_kmp_llvm - - annotated-types=0.7.0=pyhd8ed1ab_1 - - aws-c-auth=0.10.1=ha62d5e7_3 - - aws-c-cal=0.9.13=h2c9d079_1 - - aws-c-common=0.12.6=hb03c661_0 - - aws-c-compression=0.3.2=h8b1a151_0 - - aws-c-http=0.10.13=h4bacb7b_0 - - aws-c-io=0.26.3=hb18f61d_2 - - aws-c-s3=0.12.2=he6ee468_1 - - aws-c-sdkutils=0.2.4=h8b1a151_4 - - aws-checksums=0.2.10=h8b1a151_0 + - annotated-types=0.8.0=pyhd8ed1ab_0 + - aws-c-auth=0.10.4=hb7a77c6_1 + - aws-c-cal=0.9.14=h2aa3ae6_4 + - aws-c-common=0.14.2=hb03c661_0 + - aws-c-compression=0.3.2=h720e601_4 + - aws-c-http=0.11.0=h38ae05a_4 + - aws-c-io=0.27.3=h6f4d18d_1 + - aws-c-s3=0.12.8=h46fcd08_1 + - aws-c-sdkutils=0.2.7=h720e601_2 + - aws-checksums=0.2.10=h720e601_4 - brotli=1.2.0=hed03a55_1 - brotli-bin=1.2.0=hb03c661_1 - bzip2=1.0.8=hda65f42_9 - - c-ares=1.34.6=hb03c661_0 - - ca-certificates=2026.5.20=hbd8a1cb_0 - - cached-property=1.5.2=hd8ed1ab_1 - - cached_property=1.5.2=pyha770c72_1 + - c-ares=1.34.8=hb03c661_0 + - ca-certificates=2026.7.22=hbd8a1cb_0 + - cached-property=1.5.2=hd8ed1ab_2 + - cached_property=1.5.2=pyha770c72_2 - contourpy=1.3.3=py312h0a2e395_4 - cycler=0.12.1=pyhcf101f3_2 - discretize=0.12.0=np2py312h2a48985_1 - fonttools=4.63.0=py312h8a5da7c_0 - freetype=2.14.3=ha770c72_0 - h5py=3.16.0=nompi_py312ha829cd9_102 - - hdf5=2.1.0=nompi_h87a9417_105 - - icu=78.3=h33c6efd_0 + - hdf5=2.1.0=nompi_h654f344_110 + - icu=78.3=h54a6638_2 - keyutils=1.6.3=hb9d3cd8_0 - kiwisolver=1.5.0=py312h0a2e395_0 - - krb5=1.22.2=ha1258a1_0 + - krb5=1.22.2=hbde042b_1 - lcms2=2.19.1=h0c24ade_1 - - ld_impl_linux-64=2.45.1=default_hbd61a6d_102 - - lerc=4.1.0=hdb68285_0 + - ld_impl_linux-64=2.46.1=default_hbd61a6d_102 + - lerc=4.2.0=hdb68285_0 - libaec=1.1.5=h088129d_0 - libblas=3.11.0=8_h5875eb1_mkl - libbrotlicommon=1.2.0=hb03c661_1 - libbrotlidec=1.2.0=hb03c661_1 - libbrotlienc=1.2.0=hb03c661_1 - libcblas=3.11.0=8_hfef963f_mkl - - libcurl=8.20.0=hcf29cc6_0 + - libcurl=8.21.0=hae6b9f4_2 - libdeflate=1.25=h17f619e_0 - libedit=3.1.20250104=pl5321h7949ede_0 - libev=4.33=hd590300_2 - - libexpat=2.8.1=hecca717_0 + - libexpat=2.8.1=hecca717_1 - libffi=3.5.2=h3435931_0 - libfreetype=2.14.3=ha770c72_0 - libfreetype6=2.14.3=h73754d4_0 - - libgcc=15.2.0=he0feb66_19 - - libgcc-ng=15.2.0=h69a702a_19 - - libgfortran=15.2.0=h69a702a_19 - - libgfortran5=15.2.0=h68bc16d_19 + - libgcc=15.2.0=he0feb66_20 + - libgcc-ng=15.2.0=h69a702a_20 + - libgfortran=15.2.0=h69a702a_20 + - libgfortran5=15.2.0=h68bc16d_20 - libhwloc=2.13.0=default_he001693_1000 - libiconv=1.18=h3b78370_2 - - libjpeg-turbo=3.1.4.1=hb03c661_0 + - libjpeg-turbo=3.2.0=hb03c661_0 - liblapack=3.11.0=8_h5e43f62_mkl - liblzma=5.8.3=hb03c661_0 - libnghttp2=1.68.1=h877daf1_0 - libnsl=2.0.1=hb9d3cd8_1 - libpng=1.6.58=h421ea60_0 - - libsqlite=3.53.1=h0c1763c_0 + - libpsl=0.22.0=h49b2146_1 + - libsqlite=3.53.4=hf4e2dac_0 - libssh2=1.11.1=hcf80075_0 - - libstdcxx=15.2.0=h934c35e_19 - - libstdcxx-ng=15.2.0=hdf11a46_19 - - libtiff=4.7.1=h9d88235_1 - - libuuid=2.42.1=h5347b49_0 + - libstdcxx=15.2.0=h934c35e_20 + - libstdcxx-ng=15.2.0=hdf11a46_20 + - libtiff=4.7.2=h9d88235_0 + - libuuid=2.42.2=h5347b49_0 - libwebp-base=1.6.0=hd42ef1d_0 - libxcb=1.17.0=h8a09558_0 - libxcrypt=4.4.36=hd590300_1 - libxml2=2.15.3=h49c6c72_0 - libxml2-16=2.15.3=hca6bf5a_0 - libzlib=1.3.2=h25fd6f3_2 - - llvm-openmp=22.1.6=h4922eb0_0 + - llvm-openmp=22.1.8=h4922eb0_0 - matplotlib-base=3.10.9=py312he3d6523_0 - - mkl=2026.0.0=h0e700b2_915 + - mkl=2026.1.0=hecca717_243 - munkres=1.1.4=pyhd8ed1ab_1 - ncurses=6.6=hdb14827_0 - numpy=2.4.6=py312h33ff503_0 - - onemkl-license=2026.0.0=hf2ce2f3_915 + - onemkl-license=2026.1.0=ha770c72_243 - openjpeg=2.5.4=h55fea9a_0 - - openssl=3.6.2=h35e630c_0 + - openssl=3.6.3=h35e630c_0 - packaging=26.2=pyhc364b38_0 - - pillow=12.2.0=py312h50c33e8_0 + - pillow=12.3.0=py312h50c33e8_0 - pip=26.1.2=pyh8b19718_0 - psutil=7.2.2=py312h5253ce2_0 - pthread-stubs=0.4=hb9d3cd8_1002 @@ -98,16 +99,16 @@ dependencies: - python_abi=3.12=8_cp312 - qhull=2020.2=h434a139_5 - readline=8.3=h853b02a_0 - - s2n=1.7.3=hc5a330e_0 + - s2n=1.7.5=h7e3ee7f_1 - scipy=1.17.1=py312h54fa4ab_1 - - setuptools=82.0.1=pyh332efcf_0 + - setuptools=83.0.0=pyh332efcf_0 - six=1.17.0=pyhe01879c_1 - tbb=2023.0.0=hab88423_2 - - tk=8.6.13=noxft_h366c992_103 - - typing-extensions=4.15.0=h396c80c_0 + - tk=8.6.13=noxft_hd70dff1_3 + - typing-extensions=4.16.0=h69aa097_0 - typing-inspection=0.4.2=pyhcf101f3_2 - - typing_extensions=4.15.0=pyhcf101f3_0 - - tzdata=2025c=hc9c84f9_1 + - typing_extensions=4.16.0=pyhcf101f3_0 + - tzdata=2026c=h151e31d_0 - unicodedata2=17.0.1=py312h4c3975b_0 - wheel=0.47.0=pyhd8ed1ab_0 - xorg-libxau=1.0.12=hb03c661_1 @@ -115,8 +116,8 @@ dependencies: - zlib-ng=2.3.3=hceb46e0_1 - zstd=1.5.7=hb78ec9c_6 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@6222ed5be1a26e8db288d91b4fbccc891e3ca5d2 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@cbdabab52382413a3d6176262a2bf189a9b4cd24 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@e51a703816e712f3c66147cb78fd16808b520f75 variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.12-win-64-dev.conda.lock.yml b/environments/py-3.12-win-64-dev.conda.lock.yml index 27792a3..95f793e 100644 --- a/environments/py-3.12-win-64-dev.conda.lock.yml +++ b/environments/py-3.12-win-64-dev.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: 397c50628cc8dff2e8046756bc5147894040408dd1fce6b2b7a6b8140d6182d5 +# input_hash: 2a1a0eb2d3351c9bfc713c5be968c4bcf6fc5604ea258fa943735a17053af93d channels: - conda-forge @@ -8,106 +8,108 @@ channels: dependencies: - _openmp_mutex=4.5=20_gnu - alabaster=1.0.0=pyhd8ed1ab_1 - - annotated-types=0.7.0=pyhd8ed1ab_1 + - annotated-types=0.8.0=pyhd8ed1ab_0 - astroid=4.0.4=py312h2e8e312_0 - - aws-c-auth=0.10.1=h8b39d88_3 - - aws-c-cal=0.9.13=h46f3b43_1 - - aws-c-common=0.12.6=hfd05255_0 - - aws-c-compression=0.3.2=hcb3a2da_0 - - aws-c-http=0.10.13=h612f3e8_0 - - aws-c-io=0.26.3=h0d5b9f9_2 - - aws-c-s3=0.12.2=h61b906f_1 - - aws-c-sdkutils=0.2.4=hcb3a2da_4 - - aws-checksums=0.2.10=hcb3a2da_0 + - aws-c-auth=0.10.4=hc6e9107_1 + - aws-c-cal=0.9.14=h032d170_4 + - aws-c-common=0.14.2=hfd05255_0 + - aws-c-compression=0.3.2=h1da161f_4 + - aws-c-http=0.11.0=h667fc28_4 + - aws-c-io=0.27.3=hbdc738f_1 + - aws-c-s3=0.12.8=hd7ee1a1_1 + - aws-c-sdkutils=0.2.7=h1da161f_2 + - aws-checksums=0.2.10=h1da161f_4 - babel=2.18.0=pyhcf101f3_1 - - backports.zstd=1.5.0=py312h06d0912_0 + - backports.zstd=1.6.0=py312h06d0912_0 - brotli=1.2.0=h2d644bc_1 - brotli-bin=1.2.0=hfd05255_1 - brotli-python=1.2.0=py312hc6d9e41_1 - bzip2=1.0.8=h0ad9c76_9 - - ca-certificates=2026.5.20=h4c7d964_0 - - cached-property=1.5.2=hd8ed1ab_1 - - cached_property=1.5.2=pyha770c72_1 - - certifi=2026.5.20=pyhd8ed1ab_0 - - charset-normalizer=3.4.7=pyhd8ed1ab_0 + - ca-certificates=2026.7.22=h4c7d964_0 + - cached-property=1.5.2=hd8ed1ab_2 + - cached_property=1.5.2=pyha770c72_2 + - certifi=2026.7.22=pyhd8ed1ab_0 + - charset-normalizer=3.4.9=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - contourpy=1.3.3=py312h78d62e6_4 - - coverage=7.14.1=py312h05f76fc_0 + - coverage=7.15.2=py312h05f76fc_0 - cycler=0.12.1=pyhcf101f3_2 - dill=0.4.1=pyhcf101f3_0 - discretize=0.12.0=np2py312h7c90ba1_1 - - docutils=0.21.2=pyhd8ed1ab_1 + - docutils=0.22.4=pyhd8ed1ab_0 - exceptiongroup=1.3.1=pyhd8ed1ab_0 - fonttools=4.63.0=py312h05f76fc_0 - - freetype=2.14.3=h57928b3_0 - - h2=4.3.0=pyhcf101f3_0 + - freetype=2.14.3=h57928b3_1 + - h2=4.4.0=pyhcf101f3_0 - h5py=3.16.0=nompi_py312h5ddec8c_102 - - hdf5=2.1.0=nompi_h0a39f1e_105 - - hpack=4.1.0=pyhd8ed1ab_0 + - hdf5=2.1.0=nompi_h0d3e4b2_110 + - hpack=4.2.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - - idna=3.17=pyhcf101f3_0 + - icu=78.3=h5112557_2 + - idna=3.18=pyhcf101f3_0 - imagesize=2.0.0=pyhd8ed1ab_0 - importlib-metadata=9.0.0=pyhcf101f3_0 - iniconfig=2.3.0=pyhd8ed1ab_0 - isort=8.0.1=pyhd8ed1ab_0 - jinja2=3.1.6=pyhcf101f3_1 - kiwisolver=1.5.0=py312h78d62e6_0 - - krb5=1.22.2=h0ea6238_0 + - krb5=1.22.2=h719d79b_1 - lcms2=2.19.1=hf2c6c5f_1 - - lerc=4.1.0=hd936e49_0 + - lerc=4.2.0=hd936e49_0 - libaec=1.1.5=haf901d7_0 - libblas=3.11.0=8_h8455456_mkl - libbrotlicommon=1.2.0=hfd05255_1 - libbrotlidec=1.2.0=hfd05255_1 - libbrotlienc=1.2.0=hfd05255_1 - libcblas=3.11.0=8_h2a3cdd5_mkl - - libcurl=8.20.0=h8206538_0 + - libcurl=8.21.0=h51a1c48_2 - libdeflate=1.25=h51727cc_0 - - libexpat=2.8.1=hac47afa_0 + - libexpat=2.8.1=hac47afa_1 - libffi=3.5.2=h3d046cb_0 - - libfreetype=2.14.3=h57928b3_0 - - libfreetype6=2.14.3=hdbac1cb_0 - - libgcc=15.2.0=h8ee18e1_19 - - libgomp=15.2.0=h8ee18e1_19 + - libfreetype=2.14.3=h57928b3_1 + - libfreetype6=2.14.3=hdbac1cb_1 + - libgcc=15.2.0=h8ee18e1_20 + - libgomp=15.2.0=h8ee18e1_20 - libhwloc=2.13.0=default_h049141e_1000 - libiconv=1.18=hc1393d2_2 - - libjpeg-turbo=3.1.4.1=hfd05255_0 + - libjpeg-turbo=3.2.0=hfd05255_0 - liblapack=3.11.0=8_hf9ab0e9_mkl - liblzma=5.8.3=hfd05255_0 - libpng=1.6.58=h7351971_0 - - libsqlite=3.53.1=hf5d6505_0 + - libpsl=0.22.0=h25e0afd_1 + - libsqlite=3.53.4=hf5d6505_0 - libssh2=1.11.1=h9aa295b_0 - - libtiff=4.7.1=h8f73337_1 + - libtiff=4.7.2=h8f73337_0 - libwebp-base=1.6.0=h4d5522a_0 - libwinpthread=12.0.0.r4.gg4f2fc60ca=h57928b3_10 - libxcb=1.17.0=h0e4246c_0 - - libxml2=2.15.3=hbc0d294_0 - - libxml2-16=2.15.3=h692994f_0 + - libxml2=2.15.3=h8ef44ab_0 + - libxml2-16=2.15.3=h3cfd58e_0 - libzlib=1.3.2=hfd05255_2 - - llvm-openmp=22.1.6=h4fa8253_0 + - llvm-openmp=22.1.8=h4fa8253_0 - markupsafe=3.0.3=py312h05f76fc_1 - matplotlib-base=3.10.9=py312h0ebf65c_0 - mccabe=0.7.0=pyhd8ed1ab_1 - - mkl=2026.0.0=hac47afa_908 + - mkl=2026.1.0=hac47afa_233 - munkres=1.1.4=pyhd8ed1ab_1 - numpy=2.4.6=py312ha3f287d_0 - - onemkl-license=2026.0.0=h57928b3_908 + - onemkl-license=2026.1.0=h57928b3_233 - openjpeg=2.5.4=h0e57b4f_0 - - openssl=3.6.2=hf411b9b_0 + - openssl=3.6.3=hf411b9b_0 - packaging=26.2=pyhc364b38_0 - - pillow=12.2.0=py312h31f0997_0 + - pillow=12.3.0=py312h31f0997_0 - pip=26.1.2=pyh8b19718_0 - - platformdirs=4.10.0=pyhcf101f3_0 + - platformdirs=4.11.0=pyhcf101f3_0 - pluggy=1.6.0=pyhf9edf01_1 - psutil=7.2.2=py312he5662c2_0 - pthread-stubs=0.4=h0e40799_1002 - pydantic=2.12.5=pyhcf101f3_1 - pydantic-core=2.41.5=py312hdabe01f_1 - pygments=2.20.0=pyhd8ed1ab_0 - - pylint=4.0.5=pyhcf101f3_0 + - pylint=4.0.6=pyhcf101f3_0 - pyparsing=3.3.2=pyhcf101f3_0 - pysocks=1.7.1=pyh09c184e_7 - - pytest=9.0.3=pyhc364b38_1 + - pytest=9.1.1=pyhc364b38_2 - pytest-cov=7.1.0=pyhcf101f3_0 - python=3.12.13=h0159041_0_cpython - python-dateutil=2.9.0.post0=pyhe01879c_2 @@ -116,47 +118,47 @@ dependencies: - qhull=2020.2=hc790b64_5 - requests=2.34.2=pyhcf101f3_0 - roman-numerals=4.1.0=pyhd8ed1ab_0 - - roman-numerals-py=4.1.0=pyhd8ed1ab_0 - scipy=1.17.1=py312h9b3c559_1 - - setuptools=82.0.1=pyh332efcf_0 + - setuptools=83.0.0=pyh332efcf_0 - six=1.17.0=pyhe01879c_1 - - snowballstemmer=3.1.0=pyhd8ed1ab_0 - - sphinx=8.3.0=pyhd8ed1ab_0 - - sphinx-autodoc-typehints=3.5.2=pyhd8ed1ab_0 - - sphinx-rtd-theme=3.1.0=hd8ed1ab_0 - - sphinx_rtd_theme=3.1.0=pyha770c72_0 + - snowballstemmer=3.1.1=pyhd8ed1ab_0 + - sphinx=9.1.0=pyhd8ed1ab_0 + - sphinx-autodoc-typehints=3.13.0=pyhd8ed1ab_0 + - sphinx-rtd-theme=3.1.0=hd8ed1ab_1 + - sphinx_rtd_theme=3.1.0=pyha770c72_1 - sphinxcontrib-applehelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-devhelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-htmlhelp=2.1.0=pyhd8ed1ab_1 - sphinxcontrib-jquery=4.1=pyhd8ed1ab_1 - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_1 - sphinxcontrib-qthelp=2.0.0=pyhd8ed1ab_1 - - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_1 + - sphinxcontrib-serializinghtml=2.0.0=pyhd8ed1ab_0 - tbb=2023.0.0=hd3d4ead_2 - - tk=8.6.13=h6ed50ae_3 + - tk=8.6.13=h967ab96_3 - tomli=2.4.1=pyhcf101f3_0 - - tomlkit=0.15.0=pyha770c72_0 - - typing-extensions=4.15.0=h396c80c_0 + - tomlkit=0.15.1=pyhcf101f3_0 + - typing-extensions=4.16.0=h69aa097_0 - typing-inspection=0.4.2=pyhcf101f3_2 - - typing_extensions=4.15.0=pyhcf101f3_0 - - tzdata=2025c=hc9c84f9_1 + - typing_extensions=4.16.0=pyhcf101f3_0 + - tzdata=2026c=h151e31d_0 - ucrt=10.0.26100.0=h57928b3_0 - unicodedata2=17.0.1=py312he06e257_0 - urllib3=2.7.0=pyhd8ed1ab_0 - - vc=14.5=h1b7c187_38 - - vc14_runtime=14.51.36231=h1b9f54f_38 - - vcomp14=14.51.36231=h1b9f54f_38 + - vc=14.5=h1b7c187_39 + - vc14_runtime=14.51.36231=h1b9f54f_39 + - vcomp14=14.51.36231=h1b9f54f_39 - wheel=0.47.0=pyhd8ed1ab_0 - win_inet_pton=1.1.0=pyh7428d3b_8 - xorg-libxau=1.0.12=hba3369d_1 - xorg-libxdmcp=1.1.5=hba3369d_1 - yaml=0.2.5=h6a83c73_3 - zipp=4.1.0=pyhcf101f3_0 + - zlib=1.3.2=hfd05255_2 - zlib-ng=2.3.3=h0261ad2_1 - zstd=1.5.7=h534d264_6 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@6222ed5be1a26e8db288d91b4fbccc891e3ca5d2 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@cbdabab52382413a3d6176262a2bf189a9b4cd24 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@e51a703816e712f3c66147cb78fd16808b520f75 variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.12-win-64.conda.lock.yml b/environments/py-3.12-win-64.conda.lock.yml index e9baadb..519ccde 100644 --- a/environments/py-3.12-win-64.conda.lock.yml +++ b/environments/py-3.12-win-64.conda.lock.yml @@ -1,78 +1,80 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: 397c50628cc8dff2e8046756bc5147894040408dd1fce6b2b7a6b8140d6182d5 +# input_hash: 2a1a0eb2d3351c9bfc713c5be968c4bcf6fc5604ea258fa943735a17053af93d channels: - conda-forge - nodefaults dependencies: - _openmp_mutex=4.5=20_gnu - - annotated-types=0.7.0=pyhd8ed1ab_1 - - aws-c-auth=0.10.1=h8b39d88_3 - - aws-c-cal=0.9.13=h46f3b43_1 - - aws-c-common=0.12.6=hfd05255_0 - - aws-c-compression=0.3.2=hcb3a2da_0 - - aws-c-http=0.10.13=h612f3e8_0 - - aws-c-io=0.26.3=h0d5b9f9_2 - - aws-c-s3=0.12.2=h61b906f_1 - - aws-c-sdkutils=0.2.4=hcb3a2da_4 - - aws-checksums=0.2.10=hcb3a2da_0 + - annotated-types=0.8.0=pyhd8ed1ab_0 + - aws-c-auth=0.10.4=hc6e9107_1 + - aws-c-cal=0.9.14=h032d170_4 + - aws-c-common=0.14.2=hfd05255_0 + - aws-c-compression=0.3.2=h1da161f_4 + - aws-c-http=0.11.0=h667fc28_4 + - aws-c-io=0.27.3=hbdc738f_1 + - aws-c-s3=0.12.8=hd7ee1a1_1 + - aws-c-sdkutils=0.2.7=h1da161f_2 + - aws-checksums=0.2.10=h1da161f_4 - brotli=1.2.0=h2d644bc_1 - brotli-bin=1.2.0=hfd05255_1 - bzip2=1.0.8=h0ad9c76_9 - - ca-certificates=2026.5.20=h4c7d964_0 - - cached-property=1.5.2=hd8ed1ab_1 - - cached_property=1.5.2=pyha770c72_1 + - ca-certificates=2026.7.22=h4c7d964_0 + - cached-property=1.5.2=hd8ed1ab_2 + - cached_property=1.5.2=pyha770c72_2 - contourpy=1.3.3=py312h78d62e6_4 - cycler=0.12.1=pyhcf101f3_2 - discretize=0.12.0=np2py312h7c90ba1_1 - fonttools=4.63.0=py312h05f76fc_0 - - freetype=2.14.3=h57928b3_0 + - freetype=2.14.3=h57928b3_1 - h5py=3.16.0=nompi_py312h5ddec8c_102 - - hdf5=2.1.0=nompi_h0a39f1e_105 + - hdf5=2.1.0=nompi_h0d3e4b2_110 + - icu=78.3=h5112557_2 - kiwisolver=1.5.0=py312h78d62e6_0 - - krb5=1.22.2=h0ea6238_0 + - krb5=1.22.2=h719d79b_1 - lcms2=2.19.1=hf2c6c5f_1 - - lerc=4.1.0=hd936e49_0 + - lerc=4.2.0=hd936e49_0 - libaec=1.1.5=haf901d7_0 - libblas=3.11.0=8_h8455456_mkl - libbrotlicommon=1.2.0=hfd05255_1 - libbrotlidec=1.2.0=hfd05255_1 - libbrotlienc=1.2.0=hfd05255_1 - libcblas=3.11.0=8_h2a3cdd5_mkl - - libcurl=8.20.0=h8206538_0 + - libcurl=8.21.0=h51a1c48_2 - libdeflate=1.25=h51727cc_0 - - libexpat=2.8.1=hac47afa_0 + - libexpat=2.8.1=hac47afa_1 - libffi=3.5.2=h3d046cb_0 - - libfreetype=2.14.3=h57928b3_0 - - libfreetype6=2.14.3=hdbac1cb_0 - - libgcc=15.2.0=h8ee18e1_19 - - libgomp=15.2.0=h8ee18e1_19 + - libfreetype=2.14.3=h57928b3_1 + - libfreetype6=2.14.3=hdbac1cb_1 + - libgcc=15.2.0=h8ee18e1_20 + - libgomp=15.2.0=h8ee18e1_20 - libhwloc=2.13.0=default_h049141e_1000 - libiconv=1.18=hc1393d2_2 - - libjpeg-turbo=3.1.4.1=hfd05255_0 + - libjpeg-turbo=3.2.0=hfd05255_0 - liblapack=3.11.0=8_hf9ab0e9_mkl - liblzma=5.8.3=hfd05255_0 - libpng=1.6.58=h7351971_0 - - libsqlite=3.53.1=hf5d6505_0 + - libpsl=0.22.0=h25e0afd_1 + - libsqlite=3.53.4=hf5d6505_0 - libssh2=1.11.1=h9aa295b_0 - - libtiff=4.7.1=h8f73337_1 + - libtiff=4.7.2=h8f73337_0 - libwebp-base=1.6.0=h4d5522a_0 - libwinpthread=12.0.0.r4.gg4f2fc60ca=h57928b3_10 - libxcb=1.17.0=h0e4246c_0 - - libxml2=2.15.3=hbc0d294_0 - - libxml2-16=2.15.3=h692994f_0 + - libxml2=2.15.3=h8ef44ab_0 + - libxml2-16=2.15.3=h3cfd58e_0 - libzlib=1.3.2=hfd05255_2 - - llvm-openmp=22.1.6=h4fa8253_0 + - llvm-openmp=22.1.8=h4fa8253_0 - matplotlib-base=3.10.9=py312h0ebf65c_0 - - mkl=2026.0.0=hac47afa_908 + - mkl=2026.1.0=hac47afa_233 - munkres=1.1.4=pyhd8ed1ab_1 - numpy=2.4.6=py312ha3f287d_0 - - onemkl-license=2026.0.0=h57928b3_908 + - onemkl-license=2026.1.0=h57928b3_233 - openjpeg=2.5.4=h0e57b4f_0 - - openssl=3.6.2=hf411b9b_0 + - openssl=3.6.3=hf411b9b_0 - packaging=26.2=pyhc364b38_0 - - pillow=12.2.0=py312h31f0997_0 + - pillow=12.3.0=py312h31f0997_0 - pip=26.1.2=pyh8b19718_0 - psutil=7.2.2=py312he5662c2_0 - pthread-stubs=0.4=h0e40799_1002 @@ -84,27 +86,28 @@ dependencies: - python_abi=3.12=8_cp312 - qhull=2020.2=hc790b64_5 - scipy=1.17.1=py312h9b3c559_1 - - setuptools=82.0.1=pyh332efcf_0 + - setuptools=83.0.0=pyh332efcf_0 - six=1.17.0=pyhe01879c_1 - tbb=2023.0.0=hd3d4ead_2 - - tk=8.6.13=h6ed50ae_3 - - typing-extensions=4.15.0=h396c80c_0 + - tk=8.6.13=h967ab96_3 + - typing-extensions=4.16.0=h69aa097_0 - typing-inspection=0.4.2=pyhcf101f3_2 - - typing_extensions=4.15.0=pyhcf101f3_0 - - tzdata=2025c=hc9c84f9_1 + - typing_extensions=4.16.0=pyhcf101f3_0 + - tzdata=2026c=h151e31d_0 - ucrt=10.0.26100.0=h57928b3_0 - unicodedata2=17.0.1=py312he06e257_0 - - vc=14.5=h1b7c187_38 - - vc14_runtime=14.51.36231=h1b9f54f_38 - - vcomp14=14.51.36231=h1b9f54f_38 + - vc=14.5=h1b7c187_39 + - vc14_runtime=14.51.36231=h1b9f54f_39 + - vcomp14=14.51.36231=h1b9f54f_39 - wheel=0.47.0=pyhd8ed1ab_0 - xorg-libxau=1.0.12=hba3369d_1 - xorg-libxdmcp=1.1.5=hba3369d_1 + - zlib=1.3.2=hfd05255_2 - zlib-ng=2.3.3=h0261ad2_1 - zstd=1.5.7=h534d264_6 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@6222ed5be1a26e8db288d91b4fbccc891e3ca5d2 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@cbdabab52382413a3d6176262a2bf189a9b4cd24 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@e51a703816e712f3c66147cb78fd16808b520f75 variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.13-linux-64-dev.conda.lock.yml b/environments/py-3.13-linux-64-dev.conda.lock.yml index 2e974af..a58e44a 100644 --- a/environments/py-3.13-linux-64-dev.conda.lock.yml +++ b/environments/py-3.13-linux-64-dev.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 30dc1a8729f1afe543ecb8b885261b2d4c9f6317cf69986c9efb5eb31ccaf142 +# input_hash: 59a8bed888c6e8bb7e4bf76aea22ce47c367defb14bb1ae454cc7cc8b7508c9a channels: - conda-forge @@ -8,46 +8,46 @@ channels: dependencies: - _openmp_mutex=4.5=7_kmp_llvm - alabaster=1.0.0=pyhd8ed1ab_1 - - annotated-types=0.7.0=pyhd8ed1ab_1 + - annotated-types=0.8.0=pyhd8ed1ab_0 - astroid=4.0.4=py313h78bf25f_0 - - aws-c-auth=0.10.1=ha62d5e7_3 - - aws-c-cal=0.9.13=h2c9d079_1 - - aws-c-common=0.12.6=hb03c661_0 - - aws-c-compression=0.3.2=h8b1a151_0 - - aws-c-http=0.10.13=h4bacb7b_0 - - aws-c-io=0.26.3=hb18f61d_2 - - aws-c-s3=0.12.2=he6ee468_1 - - aws-c-sdkutils=0.2.4=h8b1a151_4 - - aws-checksums=0.2.10=h8b1a151_0 + - aws-c-auth=0.10.4=hb7a77c6_1 + - aws-c-cal=0.9.14=h2aa3ae6_4 + - aws-c-common=0.14.2=hb03c661_0 + - aws-c-compression=0.3.2=h720e601_4 + - aws-c-http=0.11.0=h38ae05a_4 + - aws-c-io=0.27.3=h6f4d18d_1 + - aws-c-s3=0.12.8=h46fcd08_1 + - aws-c-sdkutils=0.2.7=h720e601_2 + - aws-checksums=0.2.10=h720e601_4 - babel=2.18.0=pyhcf101f3_1 - - backports.zstd=1.5.0=py313h18e8e13_0 + - backports.zstd=1.6.0=py313h18e8e13_0 - brotli=1.2.0=hed03a55_1 - brotli-bin=1.2.0=hb03c661_1 - brotli-python=1.2.0=py313hf159716_1 - bzip2=1.0.8=hda65f42_9 - - c-ares=1.34.6=hb03c661_0 - - ca-certificates=2026.5.20=hbd8a1cb_0 - - cached-property=1.5.2=hd8ed1ab_1 - - cached_property=1.5.2=pyha770c72_1 - - certifi=2026.5.20=pyhd8ed1ab_0 - - charset-normalizer=3.4.7=pyhd8ed1ab_0 + - c-ares=1.34.8=hb03c661_0 + - ca-certificates=2026.7.22=hbd8a1cb_0 + - cached-property=1.5.2=hd8ed1ab_2 + - cached_property=1.5.2=pyha770c72_2 + - certifi=2026.7.22=pyhd8ed1ab_0 + - charset-normalizer=3.4.9=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - contourpy=1.3.3=py313hc8edb43_4 - - coverage=7.14.1=py313h3dea7bd_0 + - coverage=7.15.2=py313h3dea7bd_0 - cycler=0.12.1=pyhcf101f3_2 - dill=0.4.1=pyhcf101f3_0 - discretize=0.12.0=np2py313h0f78c12_1 - - docutils=0.21.2=pyhd8ed1ab_1 + - docutils=0.22.4=pyhd8ed1ab_0 - exceptiongroup=1.3.1=pyhd8ed1ab_0 - fonttools=4.63.0=py313h3dea7bd_0 - freetype=2.14.3=ha770c72_0 - - h2=4.3.0=pyhcf101f3_0 + - h2=4.4.0=pyhcf101f3_0 - h5py=3.16.0=nompi_py313h22c32d4_102 - - hdf5=2.1.0=nompi_h87a9417_105 - - hpack=4.1.0=pyhd8ed1ab_0 + - hdf5=2.1.0=nompi_h654f344_110 + - hpack=4.2.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - - icu=78.3=h33c6efd_0 - - idna=3.17=pyhcf101f3_0 + - icu=78.3=h54a6638_2 + - idna=3.18=pyhcf101f3_0 - imagesize=2.0.0=pyhd8ed1ab_0 - importlib-metadata=9.0.0=pyhcf101f3_0 - iniconfig=2.3.0=pyhd8ed1ab_0 @@ -55,74 +55,75 @@ dependencies: - jinja2=3.1.6=pyhcf101f3_1 - keyutils=1.6.3=hb9d3cd8_0 - kiwisolver=1.5.0=py313hc8edb43_0 - - krb5=1.22.2=ha1258a1_0 + - krb5=1.22.2=hbde042b_1 - lcms2=2.19.1=h0c24ade_1 - - ld_impl_linux-64=2.45.1=default_hbd61a6d_102 - - lerc=4.1.0=hdb68285_0 + - ld_impl_linux-64=2.46.1=default_hbd61a6d_102 + - lerc=4.2.0=hdb68285_0 - libaec=1.1.5=h088129d_0 - libblas=3.11.0=8_h5875eb1_mkl - libbrotlicommon=1.2.0=hb03c661_1 - libbrotlidec=1.2.0=hb03c661_1 - libbrotlienc=1.2.0=hb03c661_1 - libcblas=3.11.0=8_hfef963f_mkl - - libcurl=8.20.0=hcf29cc6_0 + - libcurl=8.21.0=hae6b9f4_2 - libdeflate=1.25=h17f619e_0 - libedit=3.1.20250104=pl5321h7949ede_0 - libev=4.33=hd590300_2 - - libexpat=2.8.1=hecca717_0 + - libexpat=2.8.1=hecca717_1 - libffi=3.5.2=h3435931_0 - libfreetype=2.14.3=ha770c72_0 - libfreetype6=2.14.3=h73754d4_0 - - libgcc=15.2.0=he0feb66_19 - - libgcc-ng=15.2.0=h69a702a_19 - - libgfortran=15.2.0=h69a702a_19 - - libgfortran5=15.2.0=h68bc16d_19 + - libgcc=15.2.0=he0feb66_20 + - libgcc-ng=15.2.0=h69a702a_20 + - libgfortran=15.2.0=h69a702a_20 + - libgfortran5=15.2.0=h68bc16d_20 - libhwloc=2.13.0=default_he001693_1000 - libiconv=1.18=h3b78370_2 - - libjpeg-turbo=3.1.4.1=hb03c661_0 + - libjpeg-turbo=3.2.0=hb03c661_0 - liblapack=3.11.0=8_h5e43f62_mkl - liblzma=5.8.3=hb03c661_0 - libmpdec=4.0.0=hb03c661_1 - libnghttp2=1.68.1=h877daf1_0 - libpng=1.6.58=h421ea60_0 - - libsqlite=3.53.1=h0c1763c_0 + - libpsl=0.22.0=h49b2146_1 + - libsqlite=3.53.4=hf4e2dac_0 - libssh2=1.11.1=hcf80075_0 - - libstdcxx=15.2.0=h934c35e_19 - - libstdcxx-ng=15.2.0=hdf11a46_19 - - libtiff=4.7.1=h9d88235_1 - - libuuid=2.42.1=h5347b49_0 + - libstdcxx=15.2.0=h934c35e_20 + - libstdcxx-ng=15.2.0=hdf11a46_20 + - libtiff=4.7.2=h9d88235_0 + - libuuid=2.42.2=h5347b49_0 - libwebp-base=1.6.0=hd42ef1d_0 - libxcb=1.17.0=h8a09558_0 - libxml2=2.15.3=h49c6c72_0 - libxml2-16=2.15.3=hca6bf5a_0 - libzlib=1.3.2=h25fd6f3_2 - - llvm-openmp=22.1.6=h4922eb0_0 + - llvm-openmp=22.1.8=h4922eb0_0 - markupsafe=3.0.3=py313h3dea7bd_1 - matplotlib-base=3.10.9=py313h683a580_0 - mccabe=0.7.0=pyhd8ed1ab_1 - - mkl=2026.0.0=h0e700b2_915 + - mkl=2026.1.0=hecca717_243 - munkres=1.1.4=pyhd8ed1ab_1 - ncurses=6.6=hdb14827_0 - numpy=2.4.6=py313hf6604e3_0 - - onemkl-license=2026.0.0=hf2ce2f3_915 + - onemkl-license=2026.1.0=ha770c72_243 - openjpeg=2.5.4=h55fea9a_0 - - openssl=3.6.2=h35e630c_0 + - openssl=3.6.3=h35e630c_0 - packaging=26.2=pyhc364b38_0 - - pillow=12.2.0=py313h80991f8_0 + - pillow=12.3.0=py313h80991f8_0 - pip=26.1.2=pyh145f28c_0 - - platformdirs=4.10.0=pyhcf101f3_0 + - platformdirs=4.11.0=pyhcf101f3_0 - pluggy=1.6.0=pyhf9edf01_1 - psutil=7.2.2=py313h54dd161_0 - pthread-stubs=0.4=hb9d3cd8_1002 - pydantic=2.12.5=pyhcf101f3_1 - pydantic-core=2.41.5=py313h843e2db_1 - pygments=2.20.0=pyhd8ed1ab_0 - - pylint=4.0.5=pyhcf101f3_0 + - pylint=4.0.6=pyhcf101f3_0 - pyparsing=3.3.2=pyhcf101f3_0 - pysocks=1.7.1=pyha55dd90_7 - - pytest=9.0.3=pyhc364b38_1 + - pytest=9.1.1=pyhc364b38_2 - pytest-cov=7.1.0=pyhcf101f3_0 - - python=3.13.13=h6add32d_100_cp313 + - python=3.13.14=h6add32d_100_cp313 - python-dateutil=2.9.0.post0=pyhe01879c_2 - python_abi=3.13=8_cp313 - pyyaml=6.0.3=py313h3dea7bd_1 @@ -130,30 +131,29 @@ dependencies: - readline=8.3=h853b02a_0 - requests=2.34.2=pyhcf101f3_0 - roman-numerals=4.1.0=pyhd8ed1ab_0 - - roman-numerals-py=4.1.0=pyhd8ed1ab_0 - - s2n=1.7.3=hc5a330e_0 + - s2n=1.7.5=h7e3ee7f_1 - scipy=1.17.1=py313h4b8bb8b_1 - six=1.17.0=pyhe01879c_1 - - snowballstemmer=3.1.0=pyhd8ed1ab_0 - - sphinx=8.3.0=pyhd8ed1ab_0 - - sphinx-autodoc-typehints=3.5.2=pyhd8ed1ab_0 - - sphinx-rtd-theme=3.1.0=hd8ed1ab_0 - - sphinx_rtd_theme=3.1.0=pyha770c72_0 + - snowballstemmer=3.1.1=pyhd8ed1ab_0 + - sphinx=9.1.0=pyhd8ed1ab_0 + - sphinx-autodoc-typehints=3.13.0=pyhd8ed1ab_0 + - sphinx-rtd-theme=3.1.0=hd8ed1ab_1 + - sphinx_rtd_theme=3.1.0=pyha770c72_1 - sphinxcontrib-applehelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-devhelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-htmlhelp=2.1.0=pyhd8ed1ab_1 - sphinxcontrib-jquery=4.1=pyhd8ed1ab_1 - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_1 - sphinxcontrib-qthelp=2.0.0=pyhd8ed1ab_1 - - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_1 + - sphinxcontrib-serializinghtml=2.0.0=pyhd8ed1ab_0 - tbb=2023.0.0=hab88423_2 - - tk=8.6.13=noxft_h366c992_103 + - tk=8.6.13=noxft_hd70dff1_3 - tomli=2.4.1=pyhcf101f3_0 - - tomlkit=0.15.0=pyha770c72_0 - - typing-extensions=4.15.0=h396c80c_0 + - tomlkit=0.15.1=pyhcf101f3_0 + - typing-extensions=4.16.0=h69aa097_0 - typing-inspection=0.4.2=pyhcf101f3_2 - - typing_extensions=4.15.0=pyhcf101f3_0 - - tzdata=2025c=hc9c84f9_1 + - typing_extensions=4.16.0=pyhcf101f3_0 + - tzdata=2026c=h151e31d_0 - urllib3=2.7.0=pyhd8ed1ab_0 - xorg-libxau=1.0.12=hb03c661_1 - xorg-libxdmcp=1.1.5=hb03c661_1 @@ -162,8 +162,8 @@ dependencies: - zlib-ng=2.3.3=hceb46e0_1 - zstd=1.5.7=hb78ec9c_6 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@6222ed5be1a26e8db288d91b4fbccc891e3ca5d2 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@cbdabab52382413a3d6176262a2bf189a9b4cd24 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@e51a703816e712f3c66147cb78fd16808b520f75 variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.13-linux-64.conda.lock.yml b/environments/py-3.13-linux-64.conda.lock.yml index a265b52..8e1cb9f 100644 --- a/environments/py-3.13-linux-64.conda.lock.yml +++ b/environments/py-3.13-linux-64.conda.lock.yml @@ -1,118 +1,119 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 30dc1a8729f1afe543ecb8b885261b2d4c9f6317cf69986c9efb5eb31ccaf142 +# input_hash: 59a8bed888c6e8bb7e4bf76aea22ce47c367defb14bb1ae454cc7cc8b7508c9a channels: - conda-forge - nodefaults dependencies: - _openmp_mutex=4.5=7_kmp_llvm - - annotated-types=0.7.0=pyhd8ed1ab_1 - - aws-c-auth=0.10.1=ha62d5e7_3 - - aws-c-cal=0.9.13=h2c9d079_1 - - aws-c-common=0.12.6=hb03c661_0 - - aws-c-compression=0.3.2=h8b1a151_0 - - aws-c-http=0.10.13=h4bacb7b_0 - - aws-c-io=0.26.3=hb18f61d_2 - - aws-c-s3=0.12.2=he6ee468_1 - - aws-c-sdkutils=0.2.4=h8b1a151_4 - - aws-checksums=0.2.10=h8b1a151_0 + - annotated-types=0.8.0=pyhd8ed1ab_0 + - aws-c-auth=0.10.4=hb7a77c6_1 + - aws-c-cal=0.9.14=h2aa3ae6_4 + - aws-c-common=0.14.2=hb03c661_0 + - aws-c-compression=0.3.2=h720e601_4 + - aws-c-http=0.11.0=h38ae05a_4 + - aws-c-io=0.27.3=h6f4d18d_1 + - aws-c-s3=0.12.8=h46fcd08_1 + - aws-c-sdkutils=0.2.7=h720e601_2 + - aws-checksums=0.2.10=h720e601_4 - brotli=1.2.0=hed03a55_1 - brotli-bin=1.2.0=hb03c661_1 - bzip2=1.0.8=hda65f42_9 - - c-ares=1.34.6=hb03c661_0 - - ca-certificates=2026.5.20=hbd8a1cb_0 - - cached-property=1.5.2=hd8ed1ab_1 - - cached_property=1.5.2=pyha770c72_1 + - c-ares=1.34.8=hb03c661_0 + - ca-certificates=2026.7.22=hbd8a1cb_0 + - cached-property=1.5.2=hd8ed1ab_2 + - cached_property=1.5.2=pyha770c72_2 - contourpy=1.3.3=py313hc8edb43_4 - cycler=0.12.1=pyhcf101f3_2 - discretize=0.12.0=np2py313h0f78c12_1 - fonttools=4.63.0=py313h3dea7bd_0 - freetype=2.14.3=ha770c72_0 - h5py=3.16.0=nompi_py313h22c32d4_102 - - hdf5=2.1.0=nompi_h87a9417_105 - - icu=78.3=h33c6efd_0 + - hdf5=2.1.0=nompi_h654f344_110 + - icu=78.3=h54a6638_2 - keyutils=1.6.3=hb9d3cd8_0 - kiwisolver=1.5.0=py313hc8edb43_0 - - krb5=1.22.2=ha1258a1_0 + - krb5=1.22.2=hbde042b_1 - lcms2=2.19.1=h0c24ade_1 - - ld_impl_linux-64=2.45.1=default_hbd61a6d_102 - - lerc=4.1.0=hdb68285_0 + - ld_impl_linux-64=2.46.1=default_hbd61a6d_102 + - lerc=4.2.0=hdb68285_0 - libaec=1.1.5=h088129d_0 - libblas=3.11.0=8_h5875eb1_mkl - libbrotlicommon=1.2.0=hb03c661_1 - libbrotlidec=1.2.0=hb03c661_1 - libbrotlienc=1.2.0=hb03c661_1 - libcblas=3.11.0=8_hfef963f_mkl - - libcurl=8.20.0=hcf29cc6_0 + - libcurl=8.21.0=hae6b9f4_2 - libdeflate=1.25=h17f619e_0 - libedit=3.1.20250104=pl5321h7949ede_0 - libev=4.33=hd590300_2 - - libexpat=2.8.1=hecca717_0 + - libexpat=2.8.1=hecca717_1 - libffi=3.5.2=h3435931_0 - libfreetype=2.14.3=ha770c72_0 - libfreetype6=2.14.3=h73754d4_0 - - libgcc=15.2.0=he0feb66_19 - - libgcc-ng=15.2.0=h69a702a_19 - - libgfortran=15.2.0=h69a702a_19 - - libgfortran5=15.2.0=h68bc16d_19 + - libgcc=15.2.0=he0feb66_20 + - libgcc-ng=15.2.0=h69a702a_20 + - libgfortran=15.2.0=h69a702a_20 + - libgfortran5=15.2.0=h68bc16d_20 - libhwloc=2.13.0=default_he001693_1000 - libiconv=1.18=h3b78370_2 - - libjpeg-turbo=3.1.4.1=hb03c661_0 + - libjpeg-turbo=3.2.0=hb03c661_0 - liblapack=3.11.0=8_h5e43f62_mkl - liblzma=5.8.3=hb03c661_0 - libmpdec=4.0.0=hb03c661_1 - libnghttp2=1.68.1=h877daf1_0 - libpng=1.6.58=h421ea60_0 - - libsqlite=3.53.1=h0c1763c_0 + - libpsl=0.22.0=h49b2146_1 + - libsqlite=3.53.4=hf4e2dac_0 - libssh2=1.11.1=hcf80075_0 - - libstdcxx=15.2.0=h934c35e_19 - - libstdcxx-ng=15.2.0=hdf11a46_19 - - libtiff=4.7.1=h9d88235_1 - - libuuid=2.42.1=h5347b49_0 + - libstdcxx=15.2.0=h934c35e_20 + - libstdcxx-ng=15.2.0=hdf11a46_20 + - libtiff=4.7.2=h9d88235_0 + - libuuid=2.42.2=h5347b49_0 - libwebp-base=1.6.0=hd42ef1d_0 - libxcb=1.17.0=h8a09558_0 - libxml2=2.15.3=h49c6c72_0 - libxml2-16=2.15.3=hca6bf5a_0 - libzlib=1.3.2=h25fd6f3_2 - - llvm-openmp=22.1.6=h4922eb0_0 + - llvm-openmp=22.1.8=h4922eb0_0 - matplotlib-base=3.10.9=py313h683a580_0 - - mkl=2026.0.0=h0e700b2_915 + - mkl=2026.1.0=hecca717_243 - munkres=1.1.4=pyhd8ed1ab_1 - ncurses=6.6=hdb14827_0 - numpy=2.4.6=py313hf6604e3_0 - - onemkl-license=2026.0.0=hf2ce2f3_915 + - onemkl-license=2026.1.0=ha770c72_243 - openjpeg=2.5.4=h55fea9a_0 - - openssl=3.6.2=h35e630c_0 + - openssl=3.6.3=h35e630c_0 - packaging=26.2=pyhc364b38_0 - - pillow=12.2.0=py313h80991f8_0 + - pillow=12.3.0=py313h80991f8_0 - pip=26.1.2=pyh145f28c_0 - psutil=7.2.2=py313h54dd161_0 - pthread-stubs=0.4=hb9d3cd8_1002 - pydantic=2.12.5=pyhcf101f3_1 - pydantic-core=2.41.5=py313h843e2db_1 - pyparsing=3.3.2=pyhcf101f3_0 - - python=3.13.13=h6add32d_100_cp313 + - python=3.13.14=h6add32d_100_cp313 - python-dateutil=2.9.0.post0=pyhe01879c_2 - python_abi=3.13=8_cp313 - qhull=2020.2=h434a139_5 - readline=8.3=h853b02a_0 - - s2n=1.7.3=hc5a330e_0 + - s2n=1.7.5=h7e3ee7f_1 - scipy=1.17.1=py313h4b8bb8b_1 - six=1.17.0=pyhe01879c_1 - tbb=2023.0.0=hab88423_2 - - tk=8.6.13=noxft_h366c992_103 - - typing-extensions=4.15.0=h396c80c_0 + - tk=8.6.13=noxft_hd70dff1_3 + - typing-extensions=4.16.0=h69aa097_0 - typing-inspection=0.4.2=pyhcf101f3_2 - - typing_extensions=4.15.0=pyhcf101f3_0 - - tzdata=2025c=hc9c84f9_1 + - typing_extensions=4.16.0=pyhcf101f3_0 + - tzdata=2026c=h151e31d_0 - xorg-libxau=1.0.12=hb03c661_1 - xorg-libxdmcp=1.1.5=hb03c661_1 - zlib-ng=2.3.3=hceb46e0_1 - zstd=1.5.7=hb78ec9c_6 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@6222ed5be1a26e8db288d91b4fbccc891e3ca5d2 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@cbdabab52382413a3d6176262a2bf189a9b4cd24 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@e51a703816e712f3c66147cb78fd16808b520f75 variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.13-win-64-dev.conda.lock.yml b/environments/py-3.13-win-64-dev.conda.lock.yml index 8973467..2e8701d 100644 --- a/environments/py-3.13-win-64-dev.conda.lock.yml +++ b/environments/py-3.13-win-64-dev.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: bc6181b1344600521cd6f1dee8d2b47e8f823b04a119ab0616e60009357ff824 +# input_hash: fd533891192d09faea1ff9dd155c7cc2d3a664bddc5957902f89c988b479a633 channels: - conda-forge @@ -8,153 +8,155 @@ channels: dependencies: - _openmp_mutex=4.5=20_gnu - alabaster=1.0.0=pyhd8ed1ab_1 - - annotated-types=0.7.0=pyhd8ed1ab_1 + - annotated-types=0.8.0=pyhd8ed1ab_0 - astroid=4.0.4=py313hfa70ccb_0 - - aws-c-auth=0.10.1=h8b39d88_3 - - aws-c-cal=0.9.13=h46f3b43_1 - - aws-c-common=0.12.6=hfd05255_0 - - aws-c-compression=0.3.2=hcb3a2da_0 - - aws-c-http=0.10.13=h612f3e8_0 - - aws-c-io=0.26.3=h0d5b9f9_2 - - aws-c-s3=0.12.2=h61b906f_1 - - aws-c-sdkutils=0.2.4=hcb3a2da_4 - - aws-checksums=0.2.10=hcb3a2da_0 + - aws-c-auth=0.10.4=hc6e9107_1 + - aws-c-cal=0.9.14=h032d170_4 + - aws-c-common=0.14.2=hfd05255_0 + - aws-c-compression=0.3.2=h1da161f_4 + - aws-c-http=0.11.0=h667fc28_4 + - aws-c-io=0.27.3=hbdc738f_1 + - aws-c-s3=0.12.8=hd7ee1a1_1 + - aws-c-sdkutils=0.2.7=h1da161f_2 + - aws-checksums=0.2.10=h1da161f_4 - babel=2.18.0=pyhcf101f3_1 - - backports.zstd=1.5.0=py313h2a31948_0 + - backports.zstd=1.6.0=py313h2a31948_0 - brotli=1.2.0=h2d644bc_1 - brotli-bin=1.2.0=hfd05255_1 - brotli-python=1.2.0=py313h3ebfc14_1 - bzip2=1.0.8=h0ad9c76_9 - - ca-certificates=2026.5.20=h4c7d964_0 - - cached-property=1.5.2=hd8ed1ab_1 - - cached_property=1.5.2=pyha770c72_1 - - certifi=2026.5.20=pyhd8ed1ab_0 - - charset-normalizer=3.4.7=pyhd8ed1ab_0 + - ca-certificates=2026.7.22=h4c7d964_0 + - cached-property=1.5.2=hd8ed1ab_2 + - cached_property=1.5.2=pyha770c72_2 + - certifi=2026.7.22=pyhd8ed1ab_0 + - charset-normalizer=3.4.9=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - contourpy=1.3.3=py313h1a38498_4 - - coverage=7.14.1=py313hd650c13_0 + - coverage=7.15.2=py313hd650c13_0 - cycler=0.12.1=pyhcf101f3_2 - dill=0.4.1=pyhcf101f3_0 - discretize=0.12.0=np2py313hedd11bf_1 - - docutils=0.21.2=pyhd8ed1ab_1 + - docutils=0.22.4=pyhd8ed1ab_0 - exceptiongroup=1.3.1=pyhd8ed1ab_0 - fonttools=4.63.0=py313hd650c13_0 - - freetype=2.14.3=h57928b3_0 - - h2=4.3.0=pyhcf101f3_0 + - freetype=2.14.3=h57928b3_1 + - h2=4.4.0=pyhcf101f3_0 - h5py=3.16.0=nompi_py313hd050a09_102 - - hdf5=2.1.0=nompi_h0a39f1e_105 - - hpack=4.1.0=pyhd8ed1ab_0 + - hdf5=2.1.0=nompi_h0d3e4b2_110 + - hpack=4.2.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - - idna=3.17=pyhcf101f3_0 + - icu=78.3=h5112557_2 + - idna=3.18=pyhcf101f3_0 - imagesize=2.0.0=pyhd8ed1ab_0 - importlib-metadata=9.0.0=pyhcf101f3_0 - iniconfig=2.3.0=pyhd8ed1ab_0 - isort=8.0.1=pyhd8ed1ab_0 - jinja2=3.1.6=pyhcf101f3_1 - kiwisolver=1.5.0=py313h1a38498_0 - - krb5=1.22.2=h0ea6238_0 + - krb5=1.22.2=h719d79b_1 - lcms2=2.19.1=hf2c6c5f_1 - - lerc=4.1.0=hd936e49_0 + - lerc=4.2.0=hd936e49_0 - libaec=1.1.5=haf901d7_0 - libblas=3.11.0=8_h8455456_mkl - libbrotlicommon=1.2.0=hfd05255_1 - libbrotlidec=1.2.0=hfd05255_1 - libbrotlienc=1.2.0=hfd05255_1 - libcblas=3.11.0=8_h2a3cdd5_mkl - - libcurl=8.20.0=h8206538_0 + - libcurl=8.21.0=h51a1c48_2 - libdeflate=1.25=h51727cc_0 - - libexpat=2.8.1=hac47afa_0 + - libexpat=2.8.1=hac47afa_1 - libffi=3.5.2=h3d046cb_0 - - libfreetype=2.14.3=h57928b3_0 - - libfreetype6=2.14.3=hdbac1cb_0 - - libgcc=15.2.0=h8ee18e1_19 - - libgomp=15.2.0=h8ee18e1_19 + - libfreetype=2.14.3=h57928b3_1 + - libfreetype6=2.14.3=hdbac1cb_1 + - libgcc=15.2.0=h8ee18e1_20 + - libgomp=15.2.0=h8ee18e1_20 - libhwloc=2.13.0=default_h049141e_1000 - libiconv=1.18=hc1393d2_2 - - libjpeg-turbo=3.1.4.1=hfd05255_0 + - libjpeg-turbo=3.2.0=hfd05255_0 - liblapack=3.11.0=8_hf9ab0e9_mkl - liblzma=5.8.3=hfd05255_0 - libmpdec=4.0.0=hfd05255_1 - libpng=1.6.58=h7351971_0 - - libsqlite=3.53.1=hf5d6505_0 + - libpsl=0.22.0=h25e0afd_1 + - libsqlite=3.53.4=hf5d6505_0 - libssh2=1.11.1=h9aa295b_0 - - libtiff=4.7.1=h8f73337_1 + - libtiff=4.7.2=h8f73337_0 - libwebp-base=1.6.0=h4d5522a_0 - libwinpthread=12.0.0.r4.gg4f2fc60ca=h57928b3_10 - libxcb=1.17.0=h0e4246c_0 - - libxml2=2.15.3=hbc0d294_0 - - libxml2-16=2.15.3=h692994f_0 + - libxml2=2.15.3=h8ef44ab_0 + - libxml2-16=2.15.3=h3cfd58e_0 - libzlib=1.3.2=hfd05255_2 - - llvm-openmp=22.1.6=h4fa8253_0 + - llvm-openmp=22.1.8=h4fa8253_0 - markupsafe=3.0.3=py313hd650c13_1 - matplotlib-base=3.10.9=py313he1ded55_0 - mccabe=0.7.0=pyhd8ed1ab_1 - - mkl=2026.0.0=hac47afa_908 + - mkl=2026.1.0=hac47afa_233 - munkres=1.1.4=pyhd8ed1ab_1 - numpy=2.4.6=py313ha8dc839_0 - - onemkl-license=2026.0.0=h57928b3_908 + - onemkl-license=2026.1.0=h57928b3_233 - openjpeg=2.5.4=h0e57b4f_0 - - openssl=3.6.2=hf411b9b_0 + - openssl=3.6.3=hf411b9b_0 - packaging=26.2=pyhc364b38_0 - - pillow=12.2.0=py313h38f99e1_0 + - pillow=12.3.0=py313h38f99e1_0 - pip=26.1.2=pyh145f28c_0 - - platformdirs=4.10.0=pyhcf101f3_0 + - platformdirs=4.11.0=pyhcf101f3_0 - pluggy=1.6.0=pyhf9edf01_1 - psutil=7.2.2=py313h5fd188c_0 - pthread-stubs=0.4=h0e40799_1002 - pydantic=2.12.5=pyhcf101f3_1 - pydantic-core=2.41.5=py313hfbe8231_1 - pygments=2.20.0=pyhd8ed1ab_0 - - pylint=4.0.5=pyhcf101f3_0 + - pylint=4.0.6=pyhcf101f3_0 - pyparsing=3.3.2=pyhcf101f3_0 - pysocks=1.7.1=pyh09c184e_7 - - pytest=9.0.3=pyhc364b38_1 + - pytest=9.1.1=pyhc364b38_2 - pytest-cov=7.1.0=pyhcf101f3_0 - - python=3.13.13=h09917c8_100_cp313 + - python=3.13.14=h09917c8_100_cp313 - python-dateutil=2.9.0.post0=pyhe01879c_2 - python_abi=3.13=8_cp313 - pyyaml=6.0.3=py313hd650c13_1 - qhull=2020.2=hc790b64_5 - requests=2.34.2=pyhcf101f3_0 - roman-numerals=4.1.0=pyhd8ed1ab_0 - - roman-numerals-py=4.1.0=pyhd8ed1ab_0 - scipy=1.17.1=py313he51e9a2_1 - six=1.17.0=pyhe01879c_1 - - snowballstemmer=3.1.0=pyhd8ed1ab_0 - - sphinx=8.3.0=pyhd8ed1ab_0 - - sphinx-autodoc-typehints=3.5.2=pyhd8ed1ab_0 - - sphinx-rtd-theme=3.1.0=hd8ed1ab_0 - - sphinx_rtd_theme=3.1.0=pyha770c72_0 + - snowballstemmer=3.1.1=pyhd8ed1ab_0 + - sphinx=9.1.0=pyhd8ed1ab_0 + - sphinx-autodoc-typehints=3.13.0=pyhd8ed1ab_0 + - sphinx-rtd-theme=3.1.0=hd8ed1ab_1 + - sphinx_rtd_theme=3.1.0=pyha770c72_1 - sphinxcontrib-applehelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-devhelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-htmlhelp=2.1.0=pyhd8ed1ab_1 - sphinxcontrib-jquery=4.1=pyhd8ed1ab_1 - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_1 - sphinxcontrib-qthelp=2.0.0=pyhd8ed1ab_1 - - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_1 + - sphinxcontrib-serializinghtml=2.0.0=pyhd8ed1ab_0 - tbb=2023.0.0=hd3d4ead_2 - - tk=8.6.13=h6ed50ae_3 + - tk=8.6.13=h967ab96_3 - tomli=2.4.1=pyhcf101f3_0 - - tomlkit=0.15.0=pyha770c72_0 - - typing-extensions=4.15.0=h396c80c_0 + - tomlkit=0.15.1=pyhcf101f3_0 + - typing-extensions=4.16.0=h69aa097_0 - typing-inspection=0.4.2=pyhcf101f3_2 - - typing_extensions=4.15.0=pyhcf101f3_0 - - tzdata=2025c=hc9c84f9_1 + - typing_extensions=4.16.0=pyhcf101f3_0 + - tzdata=2026c=h151e31d_0 - ucrt=10.0.26100.0=h57928b3_0 - urllib3=2.7.0=pyhd8ed1ab_0 - - vc=14.5=h1b7c187_38 - - vc14_runtime=14.51.36231=h1b9f54f_38 - - vcomp14=14.51.36231=h1b9f54f_38 + - vc=14.5=h1b7c187_39 + - vc14_runtime=14.51.36231=h1b9f54f_39 + - vcomp14=14.51.36231=h1b9f54f_39 - win_inet_pton=1.1.0=pyh7428d3b_8 - xorg-libxau=1.0.12=hba3369d_1 - xorg-libxdmcp=1.1.5=hba3369d_1 - yaml=0.2.5=h6a83c73_3 - zipp=4.1.0=pyhcf101f3_0 + - zlib=1.3.2=hfd05255_2 - zlib-ng=2.3.3=h0261ad2_1 - zstd=1.5.7=h534d264_6 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@6222ed5be1a26e8db288d91b4fbccc891e3ca5d2 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@cbdabab52382413a3d6176262a2bf189a9b4cd24 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@e51a703816e712f3c66147cb78fd16808b520f75 variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.13-win-64.conda.lock.yml b/environments/py-3.13-win-64.conda.lock.yml index edfad56..0cbecbb 100644 --- a/environments/py-3.13-win-64.conda.lock.yml +++ b/environments/py-3.13-win-64.conda.lock.yml @@ -1,108 +1,111 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: bc6181b1344600521cd6f1dee8d2b47e8f823b04a119ab0616e60009357ff824 +# input_hash: fd533891192d09faea1ff9dd155c7cc2d3a664bddc5957902f89c988b479a633 channels: - conda-forge - nodefaults dependencies: - _openmp_mutex=4.5=20_gnu - - annotated-types=0.7.0=pyhd8ed1ab_1 - - aws-c-auth=0.10.1=h8b39d88_3 - - aws-c-cal=0.9.13=h46f3b43_1 - - aws-c-common=0.12.6=hfd05255_0 - - aws-c-compression=0.3.2=hcb3a2da_0 - - aws-c-http=0.10.13=h612f3e8_0 - - aws-c-io=0.26.3=h0d5b9f9_2 - - aws-c-s3=0.12.2=h61b906f_1 - - aws-c-sdkutils=0.2.4=hcb3a2da_4 - - aws-checksums=0.2.10=hcb3a2da_0 + - annotated-types=0.8.0=pyhd8ed1ab_0 + - aws-c-auth=0.10.4=hc6e9107_1 + - aws-c-cal=0.9.14=h032d170_4 + - aws-c-common=0.14.2=hfd05255_0 + - aws-c-compression=0.3.2=h1da161f_4 + - aws-c-http=0.11.0=h667fc28_4 + - aws-c-io=0.27.3=hbdc738f_1 + - aws-c-s3=0.12.8=hd7ee1a1_1 + - aws-c-sdkutils=0.2.7=h1da161f_2 + - aws-checksums=0.2.10=h1da161f_4 - brotli=1.2.0=h2d644bc_1 - brotli-bin=1.2.0=hfd05255_1 - bzip2=1.0.8=h0ad9c76_9 - - ca-certificates=2026.5.20=h4c7d964_0 - - cached-property=1.5.2=hd8ed1ab_1 - - cached_property=1.5.2=pyha770c72_1 + - ca-certificates=2026.7.22=h4c7d964_0 + - cached-property=1.5.2=hd8ed1ab_2 + - cached_property=1.5.2=pyha770c72_2 - contourpy=1.3.3=py313h1a38498_4 - cycler=0.12.1=pyhcf101f3_2 - discretize=0.12.0=np2py313hedd11bf_1 - fonttools=4.63.0=py313hd650c13_0 - - freetype=2.14.3=h57928b3_0 + - freetype=2.14.3=h57928b3_1 - h5py=3.16.0=nompi_py313hd050a09_102 - - hdf5=2.1.0=nompi_h0a39f1e_105 + - hdf5=2.1.0=nompi_h0d3e4b2_110 + - icu=78.3=h5112557_2 - kiwisolver=1.5.0=py313h1a38498_0 - - krb5=1.22.2=h0ea6238_0 + - krb5=1.22.2=h719d79b_1 - lcms2=2.19.1=hf2c6c5f_1 - - lerc=4.1.0=hd936e49_0 + - lerc=4.2.0=hd936e49_0 - libaec=1.1.5=haf901d7_0 - libblas=3.11.0=8_h8455456_mkl - libbrotlicommon=1.2.0=hfd05255_1 - libbrotlidec=1.2.0=hfd05255_1 - libbrotlienc=1.2.0=hfd05255_1 - libcblas=3.11.0=8_h2a3cdd5_mkl - - libcurl=8.20.0=h8206538_0 + - libcurl=8.21.0=h51a1c48_2 - libdeflate=1.25=h51727cc_0 - - libexpat=2.8.1=hac47afa_0 + - libexpat=2.8.1=hac47afa_1 - libffi=3.5.2=h3d046cb_0 - - libfreetype=2.14.3=h57928b3_0 - - libfreetype6=2.14.3=hdbac1cb_0 - - libgcc=15.2.0=h8ee18e1_19 - - libgomp=15.2.0=h8ee18e1_19 + - libfreetype=2.14.3=h57928b3_1 + - libfreetype6=2.14.3=hdbac1cb_1 + - libgcc=15.2.0=h8ee18e1_20 + - libgomp=15.2.0=h8ee18e1_20 - libhwloc=2.13.0=default_h049141e_1000 - libiconv=1.18=hc1393d2_2 - - libjpeg-turbo=3.1.4.1=hfd05255_0 + - libjpeg-turbo=3.2.0=hfd05255_0 - liblapack=3.11.0=8_hf9ab0e9_mkl - liblzma=5.8.3=hfd05255_0 - libmpdec=4.0.0=hfd05255_1 - libpng=1.6.58=h7351971_0 - - libsqlite=3.53.1=hf5d6505_0 + - libpsl=0.22.0=h25e0afd_1 + - libsqlite=3.53.4=hf5d6505_0 - libssh2=1.11.1=h9aa295b_0 - - libtiff=4.7.1=h8f73337_1 + - libtiff=4.7.2=h8f73337_0 - libwebp-base=1.6.0=h4d5522a_0 - libwinpthread=12.0.0.r4.gg4f2fc60ca=h57928b3_10 - libxcb=1.17.0=h0e4246c_0 - - libxml2=2.15.3=hbc0d294_0 - - libxml2-16=2.15.3=h692994f_0 + - libxml2=2.15.3=h8ef44ab_0 + - libxml2-16=2.15.3=h3cfd58e_0 - libzlib=1.3.2=hfd05255_2 - - llvm-openmp=22.1.6=h4fa8253_0 + - llvm-openmp=22.1.8=h4fa8253_0 - matplotlib-base=3.10.9=py313he1ded55_0 - - mkl=2026.0.0=hac47afa_908 + - mkl=2026.1.0=hac47afa_233 - munkres=1.1.4=pyhd8ed1ab_1 - numpy=2.4.6=py313ha8dc839_0 - - onemkl-license=2026.0.0=h57928b3_908 + - onemkl-license=2026.1.0=h57928b3_233 - openjpeg=2.5.4=h0e57b4f_0 - - openssl=3.6.2=hf411b9b_0 + - openssl=3.6.3=hf411b9b_0 - packaging=26.2=pyhc364b38_0 - - pillow=12.2.0=py313h38f99e1_0 + - pillow=12.3.0=py313h38f99e1_0 - pip=26.1.2=pyh145f28c_0 - psutil=7.2.2=py313h5fd188c_0 - pthread-stubs=0.4=h0e40799_1002 - pydantic=2.12.5=pyhcf101f3_1 - pydantic-core=2.41.5=py313hfbe8231_1 - pyparsing=3.3.2=pyhcf101f3_0 - - python=3.13.13=h09917c8_100_cp313 + - python=3.13.14=h09917c8_100_cp313 - python-dateutil=2.9.0.post0=pyhe01879c_2 - python_abi=3.13=8_cp313 - qhull=2020.2=hc790b64_5 - scipy=1.17.1=py313he51e9a2_1 - six=1.17.0=pyhe01879c_1 - tbb=2023.0.0=hd3d4ead_2 - - tk=8.6.13=h6ed50ae_3 - - typing-extensions=4.15.0=h396c80c_0 + - tk=8.6.13=h967ab96_3 + - typing-extensions=4.16.0=h69aa097_0 - typing-inspection=0.4.2=pyhcf101f3_2 - - typing_extensions=4.15.0=pyhcf101f3_0 - - tzdata=2025c=hc9c84f9_1 + - typing_extensions=4.16.0=pyhcf101f3_0 + - tzdata=2026c=h151e31d_0 - ucrt=10.0.26100.0=h57928b3_0 - - vc=14.5=h1b7c187_38 - - vc14_runtime=14.51.36231=h1b9f54f_38 - - vcomp14=14.51.36231=h1b9f54f_38 + - vc=14.5=h1b7c187_39 + - vc14_runtime=14.51.36231=h1b9f54f_39 + - vcomp14=14.51.36231=h1b9f54f_39 - xorg-libxau=1.0.12=hba3369d_1 - xorg-libxdmcp=1.1.5=hba3369d_1 + - zlib=1.3.2=hfd05255_2 - zlib-ng=2.3.3=h0261ad2_1 - zstd=1.5.7=h534d264_6 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@6222ed5be1a26e8db288d91b4fbccc891e3ca5d2 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@cbdabab52382413a3d6176262a2bf189a9b4cd24 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@e51a703816e712f3c66147cb78fd16808b520f75 variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.14-linux-64-dev.conda.lock.yml b/environments/py-3.14-linux-64-dev.conda.lock.yml index a5f355f..8131f0f 100644 --- a/environments/py-3.14-linux-64-dev.conda.lock.yml +++ b/environments/py-3.14-linux-64-dev.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: fcd8bd8bfb67823b63b86ab5edfda4a1914851c303660e815c91dd274d98eb15 +# input_hash: a608468484a8310f6d98ad38e3de4b12a4416e52a896ec324a1e4a0a5ff09968 channels: - conda-forge @@ -8,46 +8,46 @@ channels: dependencies: - _openmp_mutex=4.5=7_kmp_llvm - alabaster=1.0.0=pyhd8ed1ab_1 - - annotated-types=0.7.0=pyhd8ed1ab_1 + - annotated-types=0.8.0=pyhd8ed1ab_0 - astroid=4.0.4=py314hdafbbf9_0 - - aws-c-auth=0.10.1=ha62d5e7_3 - - aws-c-cal=0.9.13=h2c9d079_1 - - aws-c-common=0.12.6=hb03c661_0 - - aws-c-compression=0.3.2=h8b1a151_0 - - aws-c-http=0.10.13=h4bacb7b_0 - - aws-c-io=0.26.3=hb18f61d_2 - - aws-c-s3=0.12.2=he6ee468_1 - - aws-c-sdkutils=0.2.4=h8b1a151_4 - - aws-checksums=0.2.10=h8b1a151_0 + - aws-c-auth=0.10.4=hb7a77c6_1 + - aws-c-cal=0.9.14=h2aa3ae6_4 + - aws-c-common=0.14.2=hb03c661_0 + - aws-c-compression=0.3.2=h720e601_4 + - aws-c-http=0.11.0=h38ae05a_4 + - aws-c-io=0.27.3=h6f4d18d_1 + - aws-c-s3=0.12.8=h46fcd08_1 + - aws-c-sdkutils=0.2.7=h720e601_2 + - aws-checksums=0.2.10=h720e601_4 - babel=2.18.0=pyhcf101f3_1 - - backports.zstd=1.5.0=py314h680f03e_0 + - backports.zstd=1.6.0=py314h680f03e_0 - brotli=1.2.0=hed03a55_1 - brotli-bin=1.2.0=hb03c661_1 - brotli-python=1.2.0=py314h3de4e8d_1 - bzip2=1.0.8=hda65f42_9 - - c-ares=1.34.6=hb03c661_0 - - ca-certificates=2026.5.20=hbd8a1cb_0 - - cached-property=1.5.2=hd8ed1ab_1 - - cached_property=1.5.2=pyha770c72_1 - - certifi=2026.5.20=pyhd8ed1ab_0 - - charset-normalizer=3.4.7=pyhd8ed1ab_0 + - c-ares=1.34.8=hb03c661_0 + - ca-certificates=2026.7.22=hbd8a1cb_0 + - cached-property=1.5.2=hd8ed1ab_2 + - cached_property=1.5.2=pyha770c72_2 + - certifi=2026.7.22=pyhd8ed1ab_0 + - charset-normalizer=3.4.9=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - contourpy=1.3.3=py314h97ea11e_4 - - coverage=7.14.1=py314h67df5f8_0 + - coverage=7.15.2=py314h67df5f8_0 - cycler=0.12.1=pyhcf101f3_2 - dill=0.4.1=pyhcf101f3_0 - discretize=0.12.0=np2py314hb287c12_1 - - docutils=0.21.2=pyhd8ed1ab_1 + - docutils=0.22.4=pyhd8ed1ab_0 - exceptiongroup=1.3.1=pyhd8ed1ab_0 - fonttools=4.63.0=pyh7db6752_0 - freetype=2.14.3=ha770c72_0 - - h2=4.3.0=pyhcf101f3_0 + - h2=4.4.0=pyhcf101f3_0 - h5py=3.16.0=nompi_py314hddf7a69_102 - - hdf5=2.1.0=nompi_h87a9417_105 - - hpack=4.1.0=pyhd8ed1ab_0 + - hdf5=2.1.0=nompi_h654f344_110 + - hpack=4.2.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - - icu=78.3=h33c6efd_0 - - idna=3.17=pyhcf101f3_0 + - icu=78.3=h54a6638_2 + - idna=3.18=pyhcf101f3_0 - imagesize=2.0.0=pyhd8ed1ab_0 - importlib-metadata=9.0.0=pyhcf101f3_0 - iniconfig=2.3.0=pyhd8ed1ab_0 @@ -55,74 +55,75 @@ dependencies: - jinja2=3.1.6=pyhcf101f3_1 - keyutils=1.6.3=hb9d3cd8_0 - kiwisolver=1.5.0=py314h97ea11e_0 - - krb5=1.22.2=ha1258a1_0 + - krb5=1.22.2=hbde042b_1 - lcms2=2.19.1=h0c24ade_1 - - ld_impl_linux-64=2.45.1=default_hbd61a6d_102 - - lerc=4.1.0=hdb68285_0 + - ld_impl_linux-64=2.46.1=default_hbd61a6d_102 + - lerc=4.2.0=hdb68285_0 - libaec=1.1.5=h088129d_0 - libblas=3.11.0=8_h5875eb1_mkl - libbrotlicommon=1.2.0=hb03c661_1 - libbrotlidec=1.2.0=hb03c661_1 - libbrotlienc=1.2.0=hb03c661_1 - libcblas=3.11.0=8_hfef963f_mkl - - libcurl=8.20.0=hcf29cc6_0 + - libcurl=8.21.0=hae6b9f4_2 - libdeflate=1.25=h17f619e_0 - libedit=3.1.20250104=pl5321h7949ede_0 - libev=4.33=hd590300_2 - - libexpat=2.8.1=hecca717_0 + - libexpat=2.8.1=hecca717_1 - libffi=3.5.2=h3435931_0 - libfreetype=2.14.3=ha770c72_0 - libfreetype6=2.14.3=h73754d4_0 - - libgcc=15.2.0=he0feb66_19 - - libgcc-ng=15.2.0=h69a702a_19 - - libgfortran=15.2.0=h69a702a_19 - - libgfortran5=15.2.0=h68bc16d_19 + - libgcc=15.2.0=he0feb66_20 + - libgcc-ng=15.2.0=h69a702a_20 + - libgfortran=15.2.0=h69a702a_20 + - libgfortran5=15.2.0=h68bc16d_20 - libhwloc=2.13.0=default_he001693_1000 - libiconv=1.18=h3b78370_2 - - libjpeg-turbo=3.1.4.1=hb03c661_0 + - libjpeg-turbo=3.2.0=hb03c661_0 - liblapack=3.11.0=8_h5e43f62_mkl - liblzma=5.8.3=hb03c661_0 - libmpdec=4.0.0=hb03c661_1 - libnghttp2=1.68.1=h877daf1_0 - libpng=1.6.58=h421ea60_0 - - libsqlite=3.53.1=h0c1763c_0 + - libpsl=0.22.0=h49b2146_1 + - libsqlite=3.53.4=hf4e2dac_0 - libssh2=1.11.1=hcf80075_0 - - libstdcxx=15.2.0=h934c35e_19 - - libstdcxx-ng=15.2.0=hdf11a46_19 - - libtiff=4.7.1=h9d88235_1 - - libuuid=2.42.1=h5347b49_0 + - libstdcxx=15.2.0=h934c35e_20 + - libstdcxx-ng=15.2.0=hdf11a46_20 + - libtiff=4.7.2=h9d88235_0 + - libuuid=2.42.2=h5347b49_0 - libwebp-base=1.6.0=hd42ef1d_0 - libxcb=1.17.0=h8a09558_0 - libxml2=2.15.3=h49c6c72_0 - libxml2-16=2.15.3=hca6bf5a_0 - libzlib=1.3.2=h25fd6f3_2 - - llvm-openmp=22.1.6=h4922eb0_0 + - llvm-openmp=22.1.8=h4922eb0_0 - markupsafe=3.0.3=py314h67df5f8_1 - matplotlib-base=3.10.9=py314h1194b4b_0 - mccabe=0.7.0=pyhd8ed1ab_1 - - mkl=2026.0.0=h0e700b2_915 + - mkl=2026.1.0=hecca717_243 - munkres=1.1.4=pyhd8ed1ab_1 - ncurses=6.6=hdb14827_0 - numpy=2.4.6=py314h2b28147_0 - - onemkl-license=2026.0.0=hf2ce2f3_915 + - onemkl-license=2026.1.0=ha770c72_243 - openjpeg=2.5.4=h55fea9a_0 - - openssl=3.6.2=h35e630c_0 + - openssl=3.6.3=h35e630c_0 - packaging=26.2=pyhc364b38_0 - - pillow=12.2.0=py314h8ec4b1a_0 + - pillow=12.3.0=py314h8ec4b1a_0 - pip=26.1.2=pyh145f28c_0 - - platformdirs=4.10.0=pyhcf101f3_0 + - platformdirs=4.11.0=pyhcf101f3_0 - pluggy=1.6.0=pyhf9edf01_1 - psutil=7.2.2=py314h0f05182_0 - pthread-stubs=0.4=hb9d3cd8_1002 - pydantic=2.12.5=pyhcf101f3_1 - pydantic-core=2.41.5=py314h2e6c369_1 - pygments=2.20.0=pyhd8ed1ab_0 - - pylint=4.0.5=pyhcf101f3_0 + - pylint=4.0.6=pyhcf101f3_0 - pyparsing=3.3.2=pyhcf101f3_0 - pysocks=1.7.1=pyha55dd90_7 - - pytest=9.0.3=pyhc364b38_1 + - pytest=9.1.1=pyhc364b38_2 - pytest-cov=7.1.0=pyhcf101f3_0 - - python=3.14.5=habeac84_100_cp314 + - python=3.14.6=habeac84_101_cp314 - python-dateutil=2.9.0.post0=pyhe01879c_2 - python_abi=3.14=8_cp314 - pyyaml=6.0.3=py314h67df5f8_1 @@ -130,30 +131,29 @@ dependencies: - readline=8.3=h853b02a_0 - requests=2.34.2=pyhcf101f3_0 - roman-numerals=4.1.0=pyhd8ed1ab_0 - - roman-numerals-py=4.1.0=pyhd8ed1ab_0 - - s2n=1.7.3=hc5a330e_0 + - s2n=1.7.5=h7e3ee7f_1 - scipy=1.17.1=py314hf07bd8e_1 - six=1.17.0=pyhe01879c_1 - - snowballstemmer=3.1.0=pyhd8ed1ab_0 - - sphinx=8.3.0=pyhd8ed1ab_0 - - sphinx-autodoc-typehints=3.5.2=pyhd8ed1ab_0 - - sphinx-rtd-theme=3.1.0=hd8ed1ab_0 - - sphinx_rtd_theme=3.1.0=pyha770c72_0 + - snowballstemmer=3.1.1=pyhd8ed1ab_0 + - sphinx=9.1.0=pyhd8ed1ab_0 + - sphinx-autodoc-typehints=3.13.0=pyhd8ed1ab_0 + - sphinx-rtd-theme=3.1.0=hd8ed1ab_1 + - sphinx_rtd_theme=3.1.0=pyha770c72_1 - sphinxcontrib-applehelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-devhelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-htmlhelp=2.1.0=pyhd8ed1ab_1 - sphinxcontrib-jquery=4.1=pyhd8ed1ab_1 - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_1 - sphinxcontrib-qthelp=2.0.0=pyhd8ed1ab_1 - - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_1 + - sphinxcontrib-serializinghtml=2.0.0=pyhd8ed1ab_0 - tbb=2023.0.0=hab88423_2 - - tk=8.6.13=noxft_h366c992_103 + - tk=8.6.13=noxft_hd70dff1_3 - tomli=2.4.1=pyhcf101f3_0 - - tomlkit=0.15.0=pyha770c72_0 - - typing-extensions=4.15.0=h396c80c_0 + - tomlkit=0.15.1=pyhcf101f3_0 + - typing-extensions=4.16.0=h69aa097_0 - typing-inspection=0.4.2=pyhcf101f3_2 - - typing_extensions=4.15.0=pyhcf101f3_0 - - tzdata=2025c=hc9c84f9_1 + - typing_extensions=4.16.0=pyhcf101f3_0 + - tzdata=2026c=h151e31d_0 - unicodedata2=17.0.1=py314h5bd0f2a_0 - urllib3=2.7.0=pyhd8ed1ab_0 - xorg-libxau=1.0.12=hb03c661_1 @@ -163,8 +163,8 @@ dependencies: - zlib-ng=2.3.3=hceb46e0_1 - zstd=1.5.7=hb78ec9c_6 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@6222ed5be1a26e8db288d91b4fbccc891e3ca5d2 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@cbdabab52382413a3d6176262a2bf189a9b4cd24 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@e51a703816e712f3c66147cb78fd16808b520f75 variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.14-linux-64.conda.lock.yml b/environments/py-3.14-linux-64.conda.lock.yml index 731d462..2dc1b50 100644 --- a/environments/py-3.14-linux-64.conda.lock.yml +++ b/environments/py-3.14-linux-64.conda.lock.yml @@ -1,119 +1,120 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: fcd8bd8bfb67823b63b86ab5edfda4a1914851c303660e815c91dd274d98eb15 +# input_hash: a608468484a8310f6d98ad38e3de4b12a4416e52a896ec324a1e4a0a5ff09968 channels: - conda-forge - nodefaults dependencies: - _openmp_mutex=4.5=7_kmp_llvm - - annotated-types=0.7.0=pyhd8ed1ab_1 - - aws-c-auth=0.10.1=ha62d5e7_3 - - aws-c-cal=0.9.13=h2c9d079_1 - - aws-c-common=0.12.6=hb03c661_0 - - aws-c-compression=0.3.2=h8b1a151_0 - - aws-c-http=0.10.13=h4bacb7b_0 - - aws-c-io=0.26.3=hb18f61d_2 - - aws-c-s3=0.12.2=he6ee468_1 - - aws-c-sdkutils=0.2.4=h8b1a151_4 - - aws-checksums=0.2.10=h8b1a151_0 + - annotated-types=0.8.0=pyhd8ed1ab_0 + - aws-c-auth=0.10.4=hb7a77c6_1 + - aws-c-cal=0.9.14=h2aa3ae6_4 + - aws-c-common=0.14.2=hb03c661_0 + - aws-c-compression=0.3.2=h720e601_4 + - aws-c-http=0.11.0=h38ae05a_4 + - aws-c-io=0.27.3=h6f4d18d_1 + - aws-c-s3=0.12.8=h46fcd08_1 + - aws-c-sdkutils=0.2.7=h720e601_2 + - aws-checksums=0.2.10=h720e601_4 - brotli=1.2.0=hed03a55_1 - brotli-bin=1.2.0=hb03c661_1 - bzip2=1.0.8=hda65f42_9 - - c-ares=1.34.6=hb03c661_0 - - ca-certificates=2026.5.20=hbd8a1cb_0 - - cached-property=1.5.2=hd8ed1ab_1 - - cached_property=1.5.2=pyha770c72_1 + - c-ares=1.34.8=hb03c661_0 + - ca-certificates=2026.7.22=hbd8a1cb_0 + - cached-property=1.5.2=hd8ed1ab_2 + - cached_property=1.5.2=pyha770c72_2 - contourpy=1.3.3=py314h97ea11e_4 - cycler=0.12.1=pyhcf101f3_2 - discretize=0.12.0=np2py314hb287c12_1 - fonttools=4.63.0=pyh7db6752_0 - freetype=2.14.3=ha770c72_0 - h5py=3.16.0=nompi_py314hddf7a69_102 - - hdf5=2.1.0=nompi_h87a9417_105 - - icu=78.3=h33c6efd_0 + - hdf5=2.1.0=nompi_h654f344_110 + - icu=78.3=h54a6638_2 - keyutils=1.6.3=hb9d3cd8_0 - kiwisolver=1.5.0=py314h97ea11e_0 - - krb5=1.22.2=ha1258a1_0 + - krb5=1.22.2=hbde042b_1 - lcms2=2.19.1=h0c24ade_1 - - ld_impl_linux-64=2.45.1=default_hbd61a6d_102 - - lerc=4.1.0=hdb68285_0 + - ld_impl_linux-64=2.46.1=default_hbd61a6d_102 + - lerc=4.2.0=hdb68285_0 - libaec=1.1.5=h088129d_0 - libblas=3.11.0=8_h5875eb1_mkl - libbrotlicommon=1.2.0=hb03c661_1 - libbrotlidec=1.2.0=hb03c661_1 - libbrotlienc=1.2.0=hb03c661_1 - libcblas=3.11.0=8_hfef963f_mkl - - libcurl=8.20.0=hcf29cc6_0 + - libcurl=8.21.0=hae6b9f4_2 - libdeflate=1.25=h17f619e_0 - libedit=3.1.20250104=pl5321h7949ede_0 - libev=4.33=hd590300_2 - - libexpat=2.8.1=hecca717_0 + - libexpat=2.8.1=hecca717_1 - libffi=3.5.2=h3435931_0 - libfreetype=2.14.3=ha770c72_0 - libfreetype6=2.14.3=h73754d4_0 - - libgcc=15.2.0=he0feb66_19 - - libgcc-ng=15.2.0=h69a702a_19 - - libgfortran=15.2.0=h69a702a_19 - - libgfortran5=15.2.0=h68bc16d_19 + - libgcc=15.2.0=he0feb66_20 + - libgcc-ng=15.2.0=h69a702a_20 + - libgfortran=15.2.0=h69a702a_20 + - libgfortran5=15.2.0=h68bc16d_20 - libhwloc=2.13.0=default_he001693_1000 - libiconv=1.18=h3b78370_2 - - libjpeg-turbo=3.1.4.1=hb03c661_0 + - libjpeg-turbo=3.2.0=hb03c661_0 - liblapack=3.11.0=8_h5e43f62_mkl - liblzma=5.8.3=hb03c661_0 - libmpdec=4.0.0=hb03c661_1 - libnghttp2=1.68.1=h877daf1_0 - libpng=1.6.58=h421ea60_0 - - libsqlite=3.53.1=h0c1763c_0 + - libpsl=0.22.0=h49b2146_1 + - libsqlite=3.53.4=hf4e2dac_0 - libssh2=1.11.1=hcf80075_0 - - libstdcxx=15.2.0=h934c35e_19 - - libstdcxx-ng=15.2.0=hdf11a46_19 - - libtiff=4.7.1=h9d88235_1 - - libuuid=2.42.1=h5347b49_0 + - libstdcxx=15.2.0=h934c35e_20 + - libstdcxx-ng=15.2.0=hdf11a46_20 + - libtiff=4.7.2=h9d88235_0 + - libuuid=2.42.2=h5347b49_0 - libwebp-base=1.6.0=hd42ef1d_0 - libxcb=1.17.0=h8a09558_0 - libxml2=2.15.3=h49c6c72_0 - libxml2-16=2.15.3=hca6bf5a_0 - libzlib=1.3.2=h25fd6f3_2 - - llvm-openmp=22.1.6=h4922eb0_0 + - llvm-openmp=22.1.8=h4922eb0_0 - matplotlib-base=3.10.9=py314h1194b4b_0 - - mkl=2026.0.0=h0e700b2_915 + - mkl=2026.1.0=hecca717_243 - munkres=1.1.4=pyhd8ed1ab_1 - ncurses=6.6=hdb14827_0 - numpy=2.4.6=py314h2b28147_0 - - onemkl-license=2026.0.0=hf2ce2f3_915 + - onemkl-license=2026.1.0=ha770c72_243 - openjpeg=2.5.4=h55fea9a_0 - - openssl=3.6.2=h35e630c_0 + - openssl=3.6.3=h35e630c_0 - packaging=26.2=pyhc364b38_0 - - pillow=12.2.0=py314h8ec4b1a_0 + - pillow=12.3.0=py314h8ec4b1a_0 - pip=26.1.2=pyh145f28c_0 - psutil=7.2.2=py314h0f05182_0 - pthread-stubs=0.4=hb9d3cd8_1002 - pydantic=2.12.5=pyhcf101f3_1 - pydantic-core=2.41.5=py314h2e6c369_1 - pyparsing=3.3.2=pyhcf101f3_0 - - python=3.14.5=habeac84_100_cp314 + - python=3.14.6=habeac84_101_cp314 - python-dateutil=2.9.0.post0=pyhe01879c_2 - python_abi=3.14=8_cp314 - qhull=2020.2=h434a139_5 - readline=8.3=h853b02a_0 - - s2n=1.7.3=hc5a330e_0 + - s2n=1.7.5=h7e3ee7f_1 - scipy=1.17.1=py314hf07bd8e_1 - six=1.17.0=pyhe01879c_1 - tbb=2023.0.0=hab88423_2 - - tk=8.6.13=noxft_h366c992_103 - - typing-extensions=4.15.0=h396c80c_0 + - tk=8.6.13=noxft_hd70dff1_3 + - typing-extensions=4.16.0=h69aa097_0 - typing-inspection=0.4.2=pyhcf101f3_2 - - typing_extensions=4.15.0=pyhcf101f3_0 - - tzdata=2025c=hc9c84f9_1 + - typing_extensions=4.16.0=pyhcf101f3_0 + - tzdata=2026c=h151e31d_0 - unicodedata2=17.0.1=py314h5bd0f2a_0 - xorg-libxau=1.0.12=hb03c661_1 - xorg-libxdmcp=1.1.5=hb03c661_1 - zlib-ng=2.3.3=hceb46e0_1 - zstd=1.5.7=hb78ec9c_6 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@6222ed5be1a26e8db288d91b4fbccc891e3ca5d2 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@cbdabab52382413a3d6176262a2bf189a9b4cd24 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@e51a703816e712f3c66147cb78fd16808b520f75 variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.14-win-64-dev.conda.lock.yml b/environments/py-3.14-win-64-dev.conda.lock.yml index 518f4df..0576698 100644 --- a/environments/py-3.14-win-64-dev.conda.lock.yml +++ b/environments/py-3.14-win-64-dev.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: 7bfb0c555eec9c53e215c07b0292303434371dc40e1f6bea7ba60c052eb94601 +# input_hash: e66d294216992502d33eac01f4e0f16e38e55e580da213e0d612037121e193ac channels: - conda-forge @@ -8,154 +8,156 @@ channels: dependencies: - _openmp_mutex=4.5=20_gnu - alabaster=1.0.0=pyhd8ed1ab_1 - - annotated-types=0.7.0=pyhd8ed1ab_1 + - annotated-types=0.8.0=pyhd8ed1ab_0 - astroid=4.0.4=py314h86ab7b2_0 - - aws-c-auth=0.10.1=h8b39d88_3 - - aws-c-cal=0.9.13=h46f3b43_1 - - aws-c-common=0.12.6=hfd05255_0 - - aws-c-compression=0.3.2=hcb3a2da_0 - - aws-c-http=0.10.13=h612f3e8_0 - - aws-c-io=0.26.3=h0d5b9f9_2 - - aws-c-s3=0.12.2=h61b906f_1 - - aws-c-sdkutils=0.2.4=hcb3a2da_4 - - aws-checksums=0.2.10=hcb3a2da_0 + - aws-c-auth=0.10.4=hc6e9107_1 + - aws-c-cal=0.9.14=h032d170_4 + - aws-c-common=0.14.2=hfd05255_0 + - aws-c-compression=0.3.2=h1da161f_4 + - aws-c-http=0.11.0=h667fc28_4 + - aws-c-io=0.27.3=hbdc738f_1 + - aws-c-s3=0.12.8=hd7ee1a1_1 + - aws-c-sdkutils=0.2.7=h1da161f_2 + - aws-checksums=0.2.10=h1da161f_4 - babel=2.18.0=pyhcf101f3_1 - - backports.zstd=1.5.0=py314h680f03e_0 + - backports.zstd=1.6.0=py314h680f03e_0 - brotli=1.2.0=h2d644bc_1 - brotli-bin=1.2.0=hfd05255_1 - brotli-python=1.2.0=py314he701e3d_1 - bzip2=1.0.8=h0ad9c76_9 - - ca-certificates=2026.5.20=h4c7d964_0 - - cached-property=1.5.2=hd8ed1ab_1 - - cached_property=1.5.2=pyha770c72_1 - - certifi=2026.5.20=pyhd8ed1ab_0 - - charset-normalizer=3.4.7=pyhd8ed1ab_0 + - ca-certificates=2026.7.22=h4c7d964_0 + - cached-property=1.5.2=hd8ed1ab_2 + - cached_property=1.5.2=pyha770c72_2 + - certifi=2026.7.22=pyhd8ed1ab_0 + - charset-normalizer=3.4.9=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - contourpy=1.3.3=py314hf309875_4 - - coverage=7.14.1=py314h2359020_0 + - coverage=7.15.2=py314h2359020_0 - cycler=0.12.1=pyhcf101f3_2 - dill=0.4.1=pyhcf101f3_0 - discretize=0.12.0=np2py314h1495373_1 - - docutils=0.21.2=pyhd8ed1ab_1 + - docutils=0.22.4=pyhd8ed1ab_0 - exceptiongroup=1.3.1=pyhd8ed1ab_0 - fonttools=4.63.0=pyh7db6752_0 - - freetype=2.14.3=h57928b3_0 - - h2=4.3.0=pyhcf101f3_0 + - freetype=2.14.3=h57928b3_1 + - h2=4.4.0=pyhcf101f3_0 - h5py=3.16.0=nompi_py314h02517ec_102 - - hdf5=2.1.0=nompi_h0a39f1e_105 - - hpack=4.1.0=pyhd8ed1ab_0 + - hdf5=2.1.0=nompi_h0d3e4b2_110 + - hpack=4.2.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - - idna=3.17=pyhcf101f3_0 + - icu=78.3=h5112557_2 + - idna=3.18=pyhcf101f3_0 - imagesize=2.0.0=pyhd8ed1ab_0 - importlib-metadata=9.0.0=pyhcf101f3_0 - iniconfig=2.3.0=pyhd8ed1ab_0 - isort=8.0.1=pyhd8ed1ab_0 - jinja2=3.1.6=pyhcf101f3_1 - kiwisolver=1.5.0=py314hf309875_0 - - krb5=1.22.2=h0ea6238_0 + - krb5=1.22.2=h719d79b_1 - lcms2=2.19.1=hf2c6c5f_1 - - lerc=4.1.0=hd936e49_0 + - lerc=4.2.0=hd936e49_0 - libaec=1.1.5=haf901d7_0 - libblas=3.11.0=8_h8455456_mkl - libbrotlicommon=1.2.0=hfd05255_1 - libbrotlidec=1.2.0=hfd05255_1 - libbrotlienc=1.2.0=hfd05255_1 - libcblas=3.11.0=8_h2a3cdd5_mkl - - libcurl=8.20.0=h8206538_0 + - libcurl=8.21.0=h51a1c48_2 - libdeflate=1.25=h51727cc_0 - - libexpat=2.8.1=hac47afa_0 + - libexpat=2.8.1=hac47afa_1 - libffi=3.5.2=h3d046cb_0 - - libfreetype=2.14.3=h57928b3_0 - - libfreetype6=2.14.3=hdbac1cb_0 - - libgcc=15.2.0=h8ee18e1_19 - - libgomp=15.2.0=h8ee18e1_19 + - libfreetype=2.14.3=h57928b3_1 + - libfreetype6=2.14.3=hdbac1cb_1 + - libgcc=15.2.0=h8ee18e1_20 + - libgomp=15.2.0=h8ee18e1_20 - libhwloc=2.13.0=default_h049141e_1000 - libiconv=1.18=hc1393d2_2 - - libjpeg-turbo=3.1.4.1=hfd05255_0 + - libjpeg-turbo=3.2.0=hfd05255_0 - liblapack=3.11.0=8_hf9ab0e9_mkl - liblzma=5.8.3=hfd05255_0 - libmpdec=4.0.0=hfd05255_1 - libpng=1.6.58=h7351971_0 - - libsqlite=3.53.1=hf5d6505_0 + - libpsl=0.22.0=h25e0afd_1 + - libsqlite=3.53.4=hf5d6505_0 - libssh2=1.11.1=h9aa295b_0 - - libtiff=4.7.1=h8f73337_1 + - libtiff=4.7.2=h8f73337_0 - libwebp-base=1.6.0=h4d5522a_0 - libwinpthread=12.0.0.r4.gg4f2fc60ca=h57928b3_10 - libxcb=1.17.0=h0e4246c_0 - - libxml2=2.15.3=hbc0d294_0 - - libxml2-16=2.15.3=h692994f_0 + - libxml2=2.15.3=h8ef44ab_0 + - libxml2-16=2.15.3=h3cfd58e_0 - libzlib=1.3.2=hfd05255_2 - - llvm-openmp=22.1.6=h4fa8253_0 + - llvm-openmp=22.1.8=h4fa8253_0 - markupsafe=3.0.3=py314h2359020_1 - matplotlib-base=3.10.9=py314hfa45d96_0 - mccabe=0.7.0=pyhd8ed1ab_1 - - mkl=2026.0.0=hac47afa_908 + - mkl=2026.1.0=hac47afa_233 - munkres=1.1.4=pyhd8ed1ab_1 - numpy=2.4.6=py314h02f10f6_0 - - onemkl-license=2026.0.0=h57928b3_908 + - onemkl-license=2026.1.0=h57928b3_233 - openjpeg=2.5.4=h0e57b4f_0 - - openssl=3.6.2=hf411b9b_0 + - openssl=3.6.3=hf411b9b_0 - packaging=26.2=pyhc364b38_0 - - pillow=12.2.0=py314h61b30b5_0 + - pillow=12.3.0=py314h61b30b5_0 - pip=26.1.2=pyh145f28c_0 - - platformdirs=4.10.0=pyhcf101f3_0 + - platformdirs=4.11.0=pyhcf101f3_0 - pluggy=1.6.0=pyhf9edf01_1 - psutil=7.2.2=py314hc5dbbe4_0 - pthread-stubs=0.4=h0e40799_1002 - pydantic=2.12.5=pyhcf101f3_1 - pydantic-core=2.41.5=py314h9f07db2_1 - pygments=2.20.0=pyhd8ed1ab_0 - - pylint=4.0.5=pyhcf101f3_0 + - pylint=4.0.6=pyhcf101f3_0 - pyparsing=3.3.2=pyhcf101f3_0 - pysocks=1.7.1=pyh09c184e_7 - - pytest=9.0.3=pyhc364b38_1 + - pytest=9.1.1=pyhc364b38_2 - pytest-cov=7.1.0=pyhcf101f3_0 - - python=3.14.5=h4b44e0e_100_cp314 + - python=3.14.6=h4b44e0e_101_cp314 - python-dateutil=2.9.0.post0=pyhe01879c_2 - python_abi=3.14=8_cp314 - pyyaml=6.0.3=py314h2359020_1 - qhull=2020.2=hc790b64_5 - requests=2.34.2=pyhcf101f3_0 - roman-numerals=4.1.0=pyhd8ed1ab_0 - - roman-numerals-py=4.1.0=pyhd8ed1ab_0 - scipy=1.17.1=py314h221f224_1 - six=1.17.0=pyhe01879c_1 - - snowballstemmer=3.1.0=pyhd8ed1ab_0 - - sphinx=8.3.0=pyhd8ed1ab_0 - - sphinx-autodoc-typehints=3.5.2=pyhd8ed1ab_0 - - sphinx-rtd-theme=3.1.0=hd8ed1ab_0 - - sphinx_rtd_theme=3.1.0=pyha770c72_0 + - snowballstemmer=3.1.1=pyhd8ed1ab_0 + - sphinx=9.1.0=pyhd8ed1ab_0 + - sphinx-autodoc-typehints=3.13.0=pyhd8ed1ab_0 + - sphinx-rtd-theme=3.1.0=hd8ed1ab_1 + - sphinx_rtd_theme=3.1.0=pyha770c72_1 - sphinxcontrib-applehelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-devhelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-htmlhelp=2.1.0=pyhd8ed1ab_1 - sphinxcontrib-jquery=4.1=pyhd8ed1ab_1 - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_1 - sphinxcontrib-qthelp=2.0.0=pyhd8ed1ab_1 - - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_1 + - sphinxcontrib-serializinghtml=2.0.0=pyhd8ed1ab_0 - tbb=2023.0.0=hd3d4ead_2 - - tk=8.6.13=h6ed50ae_3 + - tk=8.6.13=h967ab96_3 - tomli=2.4.1=pyhcf101f3_0 - - tomlkit=0.15.0=pyha770c72_0 - - typing-extensions=4.15.0=h396c80c_0 + - tomlkit=0.15.1=pyhcf101f3_0 + - typing-extensions=4.16.0=h69aa097_0 - typing-inspection=0.4.2=pyhcf101f3_2 - - typing_extensions=4.15.0=pyhcf101f3_0 - - tzdata=2025c=hc9c84f9_1 + - typing_extensions=4.16.0=pyhcf101f3_0 + - tzdata=2026c=h151e31d_0 - ucrt=10.0.26100.0=h57928b3_0 - unicodedata2=17.0.1=py314h5a2d7ad_0 - urllib3=2.7.0=pyhd8ed1ab_0 - - vc=14.5=h1b7c187_38 - - vc14_runtime=14.51.36231=h1b9f54f_38 - - vcomp14=14.51.36231=h1b9f54f_38 + - vc=14.5=h1b7c187_39 + - vc14_runtime=14.51.36231=h1b9f54f_39 + - vcomp14=14.51.36231=h1b9f54f_39 - win_inet_pton=1.1.0=pyh7428d3b_8 - xorg-libxau=1.0.12=hba3369d_1 - xorg-libxdmcp=1.1.5=hba3369d_1 - yaml=0.2.5=h6a83c73_3 - zipp=4.1.0=pyhcf101f3_0 + - zlib=1.3.2=hfd05255_2 - zlib-ng=2.3.3=h0261ad2_1 - zstd=1.5.7=h534d264_6 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@6222ed5be1a26e8db288d91b4fbccc891e3ca5d2 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@cbdabab52382413a3d6176262a2bf189a9b4cd24 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@e51a703816e712f3c66147cb78fd16808b520f75 variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.14-win-64.conda.lock.yml b/environments/py-3.14-win-64.conda.lock.yml index 525167b..8b8b9d4 100644 --- a/environments/py-3.14-win-64.conda.lock.yml +++ b/environments/py-3.14-win-64.conda.lock.yml @@ -1,109 +1,112 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: 7bfb0c555eec9c53e215c07b0292303434371dc40e1f6bea7ba60c052eb94601 +# input_hash: e66d294216992502d33eac01f4e0f16e38e55e580da213e0d612037121e193ac channels: - conda-forge - nodefaults dependencies: - _openmp_mutex=4.5=20_gnu - - annotated-types=0.7.0=pyhd8ed1ab_1 - - aws-c-auth=0.10.1=h8b39d88_3 - - aws-c-cal=0.9.13=h46f3b43_1 - - aws-c-common=0.12.6=hfd05255_0 - - aws-c-compression=0.3.2=hcb3a2da_0 - - aws-c-http=0.10.13=h612f3e8_0 - - aws-c-io=0.26.3=h0d5b9f9_2 - - aws-c-s3=0.12.2=h61b906f_1 - - aws-c-sdkutils=0.2.4=hcb3a2da_4 - - aws-checksums=0.2.10=hcb3a2da_0 + - annotated-types=0.8.0=pyhd8ed1ab_0 + - aws-c-auth=0.10.4=hc6e9107_1 + - aws-c-cal=0.9.14=h032d170_4 + - aws-c-common=0.14.2=hfd05255_0 + - aws-c-compression=0.3.2=h1da161f_4 + - aws-c-http=0.11.0=h667fc28_4 + - aws-c-io=0.27.3=hbdc738f_1 + - aws-c-s3=0.12.8=hd7ee1a1_1 + - aws-c-sdkutils=0.2.7=h1da161f_2 + - aws-checksums=0.2.10=h1da161f_4 - brotli=1.2.0=h2d644bc_1 - brotli-bin=1.2.0=hfd05255_1 - bzip2=1.0.8=h0ad9c76_9 - - ca-certificates=2026.5.20=h4c7d964_0 - - cached-property=1.5.2=hd8ed1ab_1 - - cached_property=1.5.2=pyha770c72_1 + - ca-certificates=2026.7.22=h4c7d964_0 + - cached-property=1.5.2=hd8ed1ab_2 + - cached_property=1.5.2=pyha770c72_2 - contourpy=1.3.3=py314hf309875_4 - cycler=0.12.1=pyhcf101f3_2 - discretize=0.12.0=np2py314h1495373_1 - fonttools=4.63.0=pyh7db6752_0 - - freetype=2.14.3=h57928b3_0 + - freetype=2.14.3=h57928b3_1 - h5py=3.16.0=nompi_py314h02517ec_102 - - hdf5=2.1.0=nompi_h0a39f1e_105 + - hdf5=2.1.0=nompi_h0d3e4b2_110 + - icu=78.3=h5112557_2 - kiwisolver=1.5.0=py314hf309875_0 - - krb5=1.22.2=h0ea6238_0 + - krb5=1.22.2=h719d79b_1 - lcms2=2.19.1=hf2c6c5f_1 - - lerc=4.1.0=hd936e49_0 + - lerc=4.2.0=hd936e49_0 - libaec=1.1.5=haf901d7_0 - libblas=3.11.0=8_h8455456_mkl - libbrotlicommon=1.2.0=hfd05255_1 - libbrotlidec=1.2.0=hfd05255_1 - libbrotlienc=1.2.0=hfd05255_1 - libcblas=3.11.0=8_h2a3cdd5_mkl - - libcurl=8.20.0=h8206538_0 + - libcurl=8.21.0=h51a1c48_2 - libdeflate=1.25=h51727cc_0 - - libexpat=2.8.1=hac47afa_0 + - libexpat=2.8.1=hac47afa_1 - libffi=3.5.2=h3d046cb_0 - - libfreetype=2.14.3=h57928b3_0 - - libfreetype6=2.14.3=hdbac1cb_0 - - libgcc=15.2.0=h8ee18e1_19 - - libgomp=15.2.0=h8ee18e1_19 + - libfreetype=2.14.3=h57928b3_1 + - libfreetype6=2.14.3=hdbac1cb_1 + - libgcc=15.2.0=h8ee18e1_20 + - libgomp=15.2.0=h8ee18e1_20 - libhwloc=2.13.0=default_h049141e_1000 - libiconv=1.18=hc1393d2_2 - - libjpeg-turbo=3.1.4.1=hfd05255_0 + - libjpeg-turbo=3.2.0=hfd05255_0 - liblapack=3.11.0=8_hf9ab0e9_mkl - liblzma=5.8.3=hfd05255_0 - libmpdec=4.0.0=hfd05255_1 - libpng=1.6.58=h7351971_0 - - libsqlite=3.53.1=hf5d6505_0 + - libpsl=0.22.0=h25e0afd_1 + - libsqlite=3.53.4=hf5d6505_0 - libssh2=1.11.1=h9aa295b_0 - - libtiff=4.7.1=h8f73337_1 + - libtiff=4.7.2=h8f73337_0 - libwebp-base=1.6.0=h4d5522a_0 - libwinpthread=12.0.0.r4.gg4f2fc60ca=h57928b3_10 - libxcb=1.17.0=h0e4246c_0 - - libxml2=2.15.3=hbc0d294_0 - - libxml2-16=2.15.3=h692994f_0 + - libxml2=2.15.3=h8ef44ab_0 + - libxml2-16=2.15.3=h3cfd58e_0 - libzlib=1.3.2=hfd05255_2 - - llvm-openmp=22.1.6=h4fa8253_0 + - llvm-openmp=22.1.8=h4fa8253_0 - matplotlib-base=3.10.9=py314hfa45d96_0 - - mkl=2026.0.0=hac47afa_908 + - mkl=2026.1.0=hac47afa_233 - munkres=1.1.4=pyhd8ed1ab_1 - numpy=2.4.6=py314h02f10f6_0 - - onemkl-license=2026.0.0=h57928b3_908 + - onemkl-license=2026.1.0=h57928b3_233 - openjpeg=2.5.4=h0e57b4f_0 - - openssl=3.6.2=hf411b9b_0 + - openssl=3.6.3=hf411b9b_0 - packaging=26.2=pyhc364b38_0 - - pillow=12.2.0=py314h61b30b5_0 + - pillow=12.3.0=py314h61b30b5_0 - pip=26.1.2=pyh145f28c_0 - psutil=7.2.2=py314hc5dbbe4_0 - pthread-stubs=0.4=h0e40799_1002 - pydantic=2.12.5=pyhcf101f3_1 - pydantic-core=2.41.5=py314h9f07db2_1 - pyparsing=3.3.2=pyhcf101f3_0 - - python=3.14.5=h4b44e0e_100_cp314 + - python=3.14.6=h4b44e0e_101_cp314 - python-dateutil=2.9.0.post0=pyhe01879c_2 - python_abi=3.14=8_cp314 - qhull=2020.2=hc790b64_5 - scipy=1.17.1=py314h221f224_1 - six=1.17.0=pyhe01879c_1 - tbb=2023.0.0=hd3d4ead_2 - - tk=8.6.13=h6ed50ae_3 - - typing-extensions=4.15.0=h396c80c_0 + - tk=8.6.13=h967ab96_3 + - typing-extensions=4.16.0=h69aa097_0 - typing-inspection=0.4.2=pyhcf101f3_2 - - typing_extensions=4.15.0=pyhcf101f3_0 - - tzdata=2025c=hc9c84f9_1 + - typing_extensions=4.16.0=pyhcf101f3_0 + - tzdata=2026c=h151e31d_0 - ucrt=10.0.26100.0=h57928b3_0 - unicodedata2=17.0.1=py314h5a2d7ad_0 - - vc=14.5=h1b7c187_38 - - vc14_runtime=14.51.36231=h1b9f54f_38 - - vcomp14=14.51.36231=h1b9f54f_38 + - vc=14.5=h1b7c187_39 + - vc14_runtime=14.51.36231=h1b9f54f_39 + - vcomp14=14.51.36231=h1b9f54f_39 - xorg-libxau=1.0.12=hba3369d_1 - xorg-libxdmcp=1.1.5=hba3369d_1 + - zlib=1.3.2=hfd05255_2 - zlib-ng=2.3.3=h0261ad2_1 - zstd=1.5.7=h534d264_6 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@6222ed5be1a26e8db288d91b4fbccc891e3ca5d2 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@cbdabab52382413a3d6176262a2bf189a9b4cd24 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@e51a703816e712f3c66147cb78fd16808b520f75 variables: KMP_WARNINGS: 0 diff --git a/py-3.12.conda-lock.yml b/py-3.12.conda-lock.yml index 2a150e6..a7a7687 100644 --- a/py-3.12.conda-lock.yml +++ b/py-3.12.conda-lock.yml @@ -15,8 +15,8 @@ version: 1 metadata: content_hash: - win-64: 397c50628cc8dff2e8046756bc5147894040408dd1fce6b2b7a6b8140d6182d5 - linux-64: 1dafb147f14260ff03c478aa59889d8ec2ac87a5441e62134e01ab9a622bb436 + win-64: 2a1a0eb2d3351c9bfc713c5be968c4bcf6fc5604ea258fa943735a17053af93d + linux-64: 630c4d5a518e6daae80e9b2f4d4c47435dfa161d9b0e7de645892876051027e9 channels: - url: conda-forge used_env_vars: [] @@ -79,29 +79,29 @@ package: category: dev optional: true - name: annotated-types - version: 0.7.0 + version: 0.8.0 manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '>=3.10' typing-extensions: '>=4.0.0' - url: https://repo.prefix.dev/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/annotated-types-0.8.0-pyhd8ed1ab_0.conda hash: - md5: 2934f256a8acfe48f6ebb4fce6cde29c - sha256: e0ea1ba78fbb64f17062601edda82097fcf815012cf52bb704150a2668110d48 + md5: 108c928d2a8551832dbc762b535e90bb + sha256: b8fcb994134d3918d1c64a9d62f4168ff85d5bfb89e698102fe4ed679fe0df24 category: main optional: false - name: annotated-types - version: 0.7.0 + version: 0.8.0 manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '>=3.10' typing-extensions: '>=4.0.0' - url: https://repo.prefix.dev/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/annotated-types-0.8.0-pyhd8ed1ab_0.conda hash: - md5: 2934f256a8acfe48f6ebb4fce6cde29c - sha256: e0ea1ba78fbb64f17062601edda82097fcf815012cf52bb704150a2668110d48 + md5: 108c928d2a8551832dbc762b535e90bb + sha256: b8fcb994134d3918d1c64a9d62f4168ff85d5bfb89e698102fe4ed679fe0df24 category: main optional: false - name: astroid @@ -131,97 +131,97 @@ package: category: dev optional: true - name: aws-c-auth - version: 0.10.1 + version: 0.10.4 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - aws-c-cal: '>=0.9.13,<0.9.14.0a0' - aws-c-common: '>=0.12.6,<0.12.7.0a0' - aws-c-http: '>=0.10.13,<0.10.14.0a0' - aws-c-io: '>=0.26.3,<0.26.4.0a0' - aws-c-sdkutils: '>=0.2.4,<0.2.5.0a0' + aws-c-cal: '>=0.9.14,<0.9.15.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-http: '>=0.11.0,<0.11.1.0a0' + aws-c-io: '>=0.27.3,<0.27.4.0a0' + aws-c-sdkutils: '>=0.2.7,<0.2.8.0a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-auth-0.10.1-ha62d5e7_3.conda + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-auth-0.10.4-hb7a77c6_1.conda hash: - md5: 55eaf7066da1299d217ab32baedc7fa8 - sha256: ccbf2cc4bea4aab6e071d67ecc2743197759f6df855787e7a5f57f7973f913a2 + md5: 4347d5ffdf34adf9c5edd10837727d96 + sha256: 845fe32ee750d4a4d3efdb1d95a8c29c3388e3ea9787b77341ec4abe4e198b11 category: main optional: false - name: aws-c-auth - version: 0.10.1 + version: 0.10.4 manager: conda platform: win-64 dependencies: - aws-c-cal: '>=0.9.13,<0.9.14.0a0' - aws-c-common: '>=0.12.6,<0.12.7.0a0' - aws-c-http: '>=0.10.13,<0.10.14.0a0' - aws-c-io: '>=0.26.3,<0.26.4.0a0' - aws-c-sdkutils: '>=0.2.4,<0.2.5.0a0' + aws-c-cal: '>=0.9.14,<0.9.15.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-http: '>=0.11.0,<0.11.1.0a0' + aws-c-io: '>=0.27.3,<0.27.4.0a0' + aws-c-sdkutils: '>=0.2.7,<0.2.8.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-c-auth-0.10.1-h8b39d88_3.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-auth-0.10.4-hc6e9107_1.conda hash: - md5: 9f25944ccae498b7afbc81ce24f4c37a - sha256: ffa66e862ddcd8a825c3d44e83404daec7b8d36b7313650e09aa39443c312f5e + md5: f7069cdc81f7a5e781f1faf6aab6c171 + sha256: cf7ab8abaac6b462463310412cc37d087a767a95920809cbe6dc0a08fe4bcfbd category: main optional: false - name: aws-c-cal - version: 0.9.13 + version: 0.9.14 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - aws-c-common: '>=0.12.6,<0.12.7.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' libgcc: '>=14' - openssl: '>=3.5.4,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-cal-0.9.13-h2c9d079_1.conda + openssl: '>=3.5.7,<4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-cal-0.9.14-h2aa3ae6_4.conda hash: - md5: 3c3d02681058c3d206b562b2e3bc337f - sha256: f21d648349a318f4ae457ea5403d542ba6c0e0343b8642038523dd612b2a5064 + md5: 9c6072e7b882d35ac956c07e493d6a9e + sha256: a67c944be1728f576c02fe8f28b0cbb78b5353415075db3da4ef71bc9dd8c00c category: main optional: false - name: aws-c-cal - version: 0.9.13 + version: 0.9.14 manager: conda platform: win-64 dependencies: - aws-c-common: '>=0.12.6,<0.12.7.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-c-cal-0.9.13-h46f3b43_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-cal-0.9.14-h032d170_4.conda hash: - md5: 7cc4953d504d4e8f3d6f4facb8549465 - sha256: 5f61082caea9fbdd6ba02702935e9dea9997459a7e6c06fd47f21b81aac882fb + md5: fda8fa85ef5d8570d5a0aadea688bb82 + sha256: cda33360c71ab9a4b4e269004a5672d712fa1ae581ecca0404181805ce6762ce category: main optional: false - name: aws-c-common - version: 0.12.6 + version: 0.14.2 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-common-0.12.6-hb03c661_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-common-0.14.2-hb03c661_0.conda hash: - md5: e36ad70a7e0b48f091ed6902f04c23b8 - sha256: 926a5b9de0a586e88669d81de717c8dd3218c51ce55658e8a16af7e7fe87c833 + md5: f3e0b2e044485ae90d4a59c77e7a0182 + sha256: 701398f1c9978c41e93cb0947869a66b7f8004e9d6e548d63d11aedae83cfb02 category: main optional: false - name: aws-c-common - version: 0.12.6 + version: 0.14.2 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-c-common-0.12.6-hfd05255_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-common-0.14.2-hfd05255_0.conda hash: - md5: b1465f33b05b9af02ad0887c01837831 - sha256: 0627691c34eb3d9fcd18c71346d9f16f83e8e58f9983e792138a2cccf387d18a + md5: 75b4445fec6477b271920f87830d22a3 + sha256: 63fc3f34a3b3d21d5f6527ba5136e132f3ad50541d4d16e385d03f4e47e1db2b category: main optional: false - name: aws-c-compression @@ -230,12 +230,12 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - aws-c-common: '>=0.12.6,<0.12.7.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-compression-0.3.2-h8b1a151_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-compression-0.3.2-h720e601_4.conda hash: - md5: f16f498641c9e05b645fe65902df661a - sha256: 1838bdc077b77168416801f4715335b65e9223f83641a2c28644f8acd8f9db0e + md5: c9be3f5854f349ae77a1a174b59e11a8 + sha256: 8e0a5513cfc42df8bd16adbd8e83a37d3ca89b8e04cb20eb04eb177bbbfea365 category: main optional: false - name: aws-c-compression @@ -243,150 +243,150 @@ package: manager: conda platform: win-64 dependencies: - aws-c-common: '>=0.12.6,<0.12.7.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-c-compression-0.3.2-hcb3a2da_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-compression-0.3.2-h1da161f_4.conda hash: - md5: 0385f2340be1776b513258adaf70e208 - sha256: f98fbb797d28de3ae41dbd42590549ee0a2a4e61772f9cc6d1a4fa45d47637de + md5: 996e5c7da8f9e255eac094d2413b40c3 + sha256: 97eaf03572b61d118616e8ee8459823c7b0f5dc26295bbab3ac3f6d671f1547a category: main optional: false - name: aws-c-http - version: 0.10.13 + version: 0.11.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - aws-c-cal: '>=0.9.13,<0.9.14.0a0' - aws-c-common: '>=0.12.6,<0.12.7.0a0' + aws-c-cal: '>=0.9.14,<0.9.15.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' aws-c-compression: '>=0.3.2,<0.3.3.0a0' - aws-c-io: '>=0.26.3,<0.26.4.0a0' + aws-c-io: '>=0.27.3,<0.27.4.0a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-http-0.10.13-h4bacb7b_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-http-0.11.0-h38ae05a_4.conda hash: - md5: 77f70a9ab785a146dbf66fba00131403 - sha256: 38cfc8894db6729770ac18f900296c3f7c20f349a5586a8d8e1a62571fce61d5 + md5: 97f2799ae6ff7b6f52dfa321fef9676b + sha256: 4b939b4a76a11c9ec50c891ae9bf232da8dcaf8797701df1e79ae51c988be2d4 category: main optional: false - name: aws-c-http - version: 0.10.13 + version: 0.11.0 manager: conda platform: win-64 dependencies: - aws-c-cal: '>=0.9.13,<0.9.14.0a0' - aws-c-common: '>=0.12.6,<0.12.7.0a0' + aws-c-cal: '>=0.9.14,<0.9.15.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' aws-c-compression: '>=0.3.2,<0.3.3.0a0' - aws-c-io: '>=0.26.3,<0.26.4.0a0' + aws-c-io: '>=0.27.3,<0.27.4.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-c-http-0.10.13-h612f3e8_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-http-0.11.0-h667fc28_4.conda hash: - md5: 88626be3c14ac87c09629dcbf65e6279 - sha256: cf939d4a0849bc41421b4c380b2bbbc0beb1fd9b375bb9627b98d9415ec9ea69 + md5: c17a284b159959a8639298ed7da8ad0b + sha256: 304587d77daccde630fbdbb8ae2f3994cf583427f710c60d62e88bc97c4ff013 category: main optional: false - name: aws-c-io - version: 0.26.3 + version: 0.27.3 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - aws-c-cal: '>=0.9.13,<0.9.14.0a0' - aws-c-common: '>=0.12.6,<0.12.7.0a0' + aws-c-cal: '>=0.9.14,<0.9.15.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' libgcc: '>=14' - s2n: '>=1.7.3,<1.7.4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-io-0.26.3-hb18f61d_2.conda + s2n: '>=1.7.5,<1.7.6.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-io-0.27.3-h6f4d18d_1.conda hash: - md5: d1337309873c443bcc9f118b67eed84e - sha256: eee7f7aa2c5b9e0a31edba7b81482036fbe751c40bc6697fd057fbd2c656406b + md5: bd19b685b88557830f1a617a6d404eb2 + sha256: 94c32ca672ce290e250aea1cfb92582cca4658bdc3ec7cb1ceef254f34451595 category: main optional: false - name: aws-c-io - version: 0.26.3 + version: 0.27.3 manager: conda platform: win-64 dependencies: - aws-c-cal: '>=0.9.13,<0.9.14.0a0' - aws-c-common: '>=0.12.6,<0.12.7.0a0' + aws-c-cal: '>=0.9.14,<0.9.15.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-c-io-0.26.3-h0d5b9f9_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-io-0.27.3-hbdc738f_1.conda hash: - md5: 86eb8e8959c2d6053a50ad31ef6e5b5d - sha256: 7cf5aca930fc12f4e27bd4645d20224d608c2c650443e5633faea3bf8b0a7736 + md5: 579600368b15fb523d69e2a3f8a9bc55 + sha256: 36816ff394ee736fcf705db5b1c1491c98f6f77ef84791d73b71e78154df402d category: main optional: false - name: aws-c-s3 - version: 0.12.2 + version: 0.12.8 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - aws-c-auth: '>=0.10.1,<0.10.2.0a0' - aws-c-cal: '>=0.9.13,<0.9.14.0a0' - aws-c-common: '>=0.12.6,<0.12.7.0a0' - aws-c-http: '>=0.10.13,<0.10.14.0a0' - aws-c-io: '>=0.26.3,<0.26.4.0a0' + aws-c-auth: '>=0.10.4,<0.10.5.0a0' + aws-c-cal: '>=0.9.14,<0.9.15.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-http: '>=0.11.0,<0.11.1.0a0' + aws-c-io: '>=0.27.3,<0.27.4.0a0' aws-checksums: '>=0.2.10,<0.2.11.0a0' libgcc: '>=14' - openssl: '>=3.5.6,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-s3-0.12.2-he6ee468_1.conda + openssl: '>=3.5.7,<4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-s3-0.12.8-h46fcd08_1.conda hash: - md5: 50ae8372984b8b98e056ac8f6b70ab29 - sha256: 4cecb4d595b7cf558087c37b8131cae5204b2c64d75f6b951dc3731d3f872bb8 + md5: 706aa99414d18db5b23475b45cc93a0b + sha256: a423bffbb0e6cacb5e2a0861b918ba3180e5132509afb1faf225ee9f0ec8f981 category: main optional: false - name: aws-c-s3 - version: 0.12.2 + version: 0.12.8 manager: conda platform: win-64 dependencies: - aws-c-auth: '>=0.10.1,<0.10.2.0a0' - aws-c-cal: '>=0.9.13,<0.9.14.0a0' - aws-c-common: '>=0.12.6,<0.12.7.0a0' - aws-c-http: '>=0.10.13,<0.10.14.0a0' - aws-c-io: '>=0.26.3,<0.26.4.0a0' + aws-c-auth: '>=0.10.4,<0.10.5.0a0' + aws-c-cal: '>=0.9.14,<0.9.15.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-http: '>=0.11.0,<0.11.1.0a0' + aws-c-io: '>=0.27.3,<0.27.4.0a0' aws-checksums: '>=0.2.10,<0.2.11.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-c-s3-0.12.2-h61b906f_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-s3-0.12.8-hd7ee1a1_1.conda hash: - md5: 2c4cd5a0bb004c9975a4d7257a55c34a - sha256: 8d9c747d71c493e6d5e5a125a267c6ac51baba1e4b89c01c2a4084239267b8e1 + md5: 4ac02fa15bf3809101e2eeb340b6078c + sha256: c79e62931e163b65a01786d5ed7156ecca2ab748b7c7835756d34e438035706a category: main optional: false - name: aws-c-sdkutils - version: 0.2.4 + version: 0.2.7 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - aws-c-common: '>=0.12.6,<0.12.7.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-sdkutils-0.2.4-h8b1a151_4.conda + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-sdkutils-0.2.7-h720e601_2.conda hash: - md5: c7e3e08b7b1b285524ab9d74162ce40b - sha256: 9d62c5029f6f8219368a8665f0a549da572dc777f52413b7d75609cacdbc02cc + md5: 816f62fa82532118ebb2398382090945 + sha256: e419e179e04021fc680d98af23fac4b4c2369cea61171087e57a734e968dd9bd category: main optional: false - name: aws-c-sdkutils - version: 0.2.4 + version: 0.2.7 manager: conda platform: win-64 dependencies: - aws-c-common: '>=0.12.6,<0.12.7.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-c-sdkutils-0.2.4-hcb3a2da_4.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-sdkutils-0.2.7-h1da161f_2.conda hash: - md5: 3c97faee5be6fd0069410cf2bca71c85 - sha256: c86c30edba7457e04d905c959328142603b62d7d1888aed893b2e21cca9c302c + md5: 882d834f12e0abf4c7a0e9bb0c72e281 + sha256: d5da00123d9ceb082e61fd5bf82fff9cd5bec0b8e1ae91454f29155a59499bf5 category: main optional: false - name: aws-checksums @@ -395,12 +395,12 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - aws-c-common: '>=0.12.6,<0.12.7.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-checksums-0.2.10-h8b1a151_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/aws-checksums-0.2.10-h720e601_4.conda hash: - md5: f8e1bcc5c7d839c5882e94498791be08 - sha256: 09472dd5fa4473cffd44741ee4c1112f2c76d7168d1343de53c2ad283dc1efa6 + md5: 24ee781effc5779206a80139323c9caf + sha256: 6cc8617854a43040291dea791fe111ba408e7a5bbd9ee9e5a99375da7a16846b category: main optional: false - name: aws-checksums @@ -408,14 +408,14 @@ package: manager: conda platform: win-64 dependencies: - aws-c-common: '>=0.12.6,<0.12.7.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-checksums-0.2.10-hcb3a2da_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-checksums-0.2.10-h1da161f_4.conda hash: - md5: 96e950e5007fb691322db578736aba52 - sha256: 505b2365bbf3c197c9c2e007ba8262bcdaaddc970f84ce67cf73868ca2990989 + md5: a3c81085892f2983979836f2937291ce + sha256: 2227fa77f395f1b4699533709e7ef140a8292fccb31376ec5498565c7ad33225 category: main optional: false - name: babel @@ -443,7 +443,7 @@ package: category: dev optional: true - name: backports.zstd - version: 1.5.0 + version: 1.6.0 manager: conda platform: linux-64 dependencies: @@ -452,14 +452,14 @@ package: python: '' python_abi: 3.12.* zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/backports.zstd-1.5.0-py312h90b7ffd_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/backports.zstd-1.6.0-py312h90b7ffd_0.conda hash: - md5: b31dba71fe091e7201826e57e0f7b261 - sha256: a2b08a4e5e549b5f67c38edffd175437e2208547a7e67b5fa5373b67ef419e50 + md5: 55811da425538da800b89c0c588652fa + sha256: 95b3d6d44c17c4061db703289f39915646e455f75f0c8c9d949bf081d2e61579 category: dev optional: true - name: backports.zstd - version: 1.5.0 + version: 1.6.0 manager: conda platform: win-64 dependencies: @@ -469,10 +469,10 @@ package: vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/backports.zstd-1.5.0-py312h06d0912_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/backports.zstd-1.6.0-py312h06d0912_0.conda hash: - md5: 891112b1a79fc9800317c5d56e056a8b - sha256: 55173c22b24fd257851f2967d4b0256172be3455bd5246b6b7a5c21eb0863f98 + md5: 0d8bcdc0af72309fb998811f5f4db2c5 + sha256: 9926f274d8b642f5421e4536952cb158912517f40acf1df3a8fbd891c5f600ed category: dev optional: true - name: brotli @@ -599,40 +599,40 @@ package: category: main optional: false - name: c-ares - version: 1.34.6 + version: 1.34.8 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/c-ares-1.34.6-hb03c661_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/c-ares-1.34.8-hb03c661_0.conda hash: - md5: 920bb03579f15389b9e512095ad995b7 - sha256: cc9accf72fa028d31c2a038460787751127317dcfa991f8d1f1babf216bb454e + md5: 6130ad6705adc993b5d8482b7f66e01f + sha256: dee93a82d045f9aa8277829aa465224afa3c7a6ac18388de66099b2be7f705e7 category: main optional: false - name: ca-certificates - version: 2026.5.20 + version: 2026.7.22 manager: conda platform: linux-64 dependencies: __unix: '' - url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2026.5.20-hbd8a1cb_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2026.7.22-hbd8a1cb_0.conda hash: - md5: 489b8e97e666c93f68fdb35c3c9b957f - sha256: 9812a303a1395e1dafbd92e5bc8a1ff6013bcbba0a09c7f03a8d23e43560aa9b + md5: 0f51e2391ade309db462a55611263e9c + sha256: 0a0544cf95f64394fe4959286f5c71f5444ad58feb0602e53becb27448d24da6 category: main optional: false - name: ca-certificates - version: 2026.5.20 + version: 2026.7.22 manager: conda platform: win-64 dependencies: __win: '' - url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2026.5.20-h4c7d964_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2026.7.22-h4c7d964_0.conda hash: - md5: c9b86eece2f944541b86441c94117ab3 - sha256: 86981d764e4ea1883409d30447ff9da46127426d31a63df08315aaded768e652 + md5: e27d2ac27b096dc51fedfcf775a53f9b + sha256: 95e8e74062a5fe5f870ac8c90302b6e89945165fdaed7810606e84ddee6aac12 category: main optional: false - name: cached-property @@ -641,10 +641,10 @@ package: platform: linux-64 dependencies: cached_property: '>=1.5.2,<1.5.3.0a0' - url: https://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_2.conda hash: - md5: 9b347a7ec10940d3f7941ff6c460b551 - sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17 + md5: 1990eb3f49022846fbc7fc9624a0ee43 + sha256: 0d00dd61cb91b1bd1536600c64c9db4f94f3c699fec42864d0a2f4bc2ad8c3e8 category: main optional: false - name: cached-property @@ -653,10 +653,10 @@ package: platform: win-64 dependencies: cached_property: '>=1.5.2,<1.5.3.0a0' - url: https://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_2.conda hash: - md5: 9b347a7ec10940d3f7941ff6c460b551 - sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17 + md5: 1990eb3f49022846fbc7fc9624a0ee43 + sha256: 0d00dd61cb91b1bd1536600c64c9db4f94f3c699fec42864d0a2f4bc2ad8c3e8 category: main optional: false - name: cached_property @@ -664,11 +664,11 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.6' - url: https://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 + python: '>=3.9' + url: https://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_2.conda hash: - md5: 576d629e47797577ab0f1b351297ef4a - sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7 + md5: f71e6840332854fd2eac6c3229768a9c + sha256: b1808a7811b5688d045b204425bb7ee824b340b40025b4ad0a39b4db1f4f1c98 category: main optional: false - name: cached_property @@ -676,59 +676,59 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.6' - url: https://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 + python: '>=3.9' + url: https://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_2.conda hash: - md5: 576d629e47797577ab0f1b351297ef4a - sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7 + md5: f71e6840332854fd2eac6c3229768a9c + sha256: b1808a7811b5688d045b204425bb7ee824b340b40025b4ad0a39b4db1f4f1c98 category: main optional: false - name: certifi - version: 2026.5.20 + version: 2026.7.22 manager: conda platform: linux-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/certifi-2026.5.20-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/certifi-2026.7.22-pyhd8ed1ab_0.conda hash: - md5: 9fefff2f745ea1cc2ef15211a20c054a - sha256: 645655a3510e38e625da136595f3f16f2130c3263630cc3bc8f60f619ddbe490 + md5: 37e13edbe3b48f1095a9d085ef9cd83b + sha256: fb167de4388e64e52aa3907ed099afab944c1fa6e5f74b281a312dae1bcf7f3b category: dev optional: true - name: certifi - version: 2026.5.20 + version: 2026.7.22 manager: conda platform: win-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/certifi-2026.5.20-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/certifi-2026.7.22-pyhd8ed1ab_0.conda hash: - md5: 9fefff2f745ea1cc2ef15211a20c054a - sha256: 645655a3510e38e625da136595f3f16f2130c3263630cc3bc8f60f619ddbe490 + md5: 37e13edbe3b48f1095a9d085ef9cd83b + sha256: fb167de4388e64e52aa3907ed099afab944c1fa6e5f74b281a312dae1bcf7f3b category: dev optional: true - name: charset-normalizer - version: 3.4.7 + version: 3.4.9 manager: conda platform: linux-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.7-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.9-pyhd8ed1ab_0.conda hash: - md5: a9167b9571f3baa9d448faa2139d1089 - sha256: 3f9483d62ce24ecd063f8a5a714448445dc8d9e201147c46699fc0033e824457 + md5: d154b40b109e503430979e8a8d099eaf + sha256: 8d8813ef655b4e75e4fb897abd83ad548882efad7b4e836b021b797f42780799 category: dev optional: true - name: charset-normalizer - version: 3.4.7 + version: 3.4.9 manager: conda platform: win-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.7-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.9-pyhd8ed1ab_0.conda hash: - md5: a9167b9571f3baa9d448faa2139d1089 - sha256: 3f9483d62ce24ecd063f8a5a714448445dc8d9e201147c46699fc0033e824457 + md5: d154b40b109e503430979e8a8d099eaf + sha256: 8d8813ef655b4e75e4fb897abd83ad548882efad7b4e836b021b797f42780799 category: dev optional: true - name: colorama @@ -790,7 +790,7 @@ package: category: main optional: false - name: coverage - version: 7.14.1 + version: 7.15.2 manager: conda platform: linux-64 dependencies: @@ -799,14 +799,14 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* tomli: '' - url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.14.1-py312h8a5da7c_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.15.2-py312h8a5da7c_0.conda hash: - md5: 6668e2af2de730400bdce9cf2ea132f9 - sha256: 80b990c6870c721bcde5e14e71d3560bac3dad93b54d027f723dca2bb7ccda03 + md5: 11e8cba550d02296c444316f6ebd5255 + sha256: e89d003aafa069ff41885fb798495a411e8f99f10929c490457df0dcd255f964 category: dev optional: true - name: coverage - version: 7.14.1 + version: 7.15.2 manager: conda platform: win-64 dependencies: @@ -816,10 +816,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.14.1-py312h05f76fc_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.15.2-py312h05f76fc_0.conda hash: - md5: 4b355df4eedcf321296c32d8ca3fcfb7 - sha256: a37669c35673713cd5b1006958754d2f5ba8f0c10a85796579eea2dc9260f94c + md5: eb04595bd0c3634079ba51980657d75e + sha256: 5685583c45c43fafef253a65baf9e9d45863fbf5b9b8a970e2db0f39ad2c16e3 category: dev optional: true - name: cycler @@ -907,27 +907,27 @@ package: category: main optional: false - name: docutils - version: 0.21.2 + version: 0.22.4 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_1.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/docutils-0.22.4-pyhd8ed1ab_0.conda hash: - md5: 24c1ca34138ee57de72a943237cde4cc - sha256: fa5966bb1718bbf6967a85075e30e4547901410cc7cb7b16daf68942e9a94823 + md5: d6bd3cd217e62bbd7efe67ff224cd667 + sha256: 0d605569a77350fb681f9ed8d357cc71649b59a304099dc9d09fbeec5e84a65e category: dev optional: true - name: docutils - version: 0.21.2 + version: 0.22.4 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_1.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/docutils-0.22.4-pyhd8ed1ab_0.conda hash: - md5: 24c1ca34138ee57de72a943237cde4cc - sha256: fa5966bb1718bbf6967a85075e30e4547901410cc7cb7b16daf68942e9a94823 + md5: d6bd3cd217e62bbd7efe67ff224cd667 + sha256: 0d605569a77350fb681f9ed8d357cc71649b59a304099dc9d09fbeec5e84a65e category: dev optional: true - name: exceptiongroup @@ -1013,38 +1013,39 @@ package: dependencies: libfreetype: 2.14.3 libfreetype6: 2.14.3 - url: https://repo.prefix.dev/conda-forge/win-64/freetype-2.14.3-h57928b3_0.conda + zlib: '' + url: https://repo.prefix.dev/conda-forge/win-64/freetype-2.14.3-h57928b3_1.conda hash: - md5: 507b36518b5a595edda64066c820a6ef - sha256: 70815dbae6ccdfbb0a47269101a260b0a2e11a2ab5c0f7209f325d01bdb18fb7 + md5: e77293b32225b136a8be300f93d0e89f + sha256: a0e419e96146159f12344c870dca608d11bca36841f228092b986ffc2e1e0f02 category: main optional: false - name: h2 - version: 4.3.0 + version: 4.4.0 manager: conda platform: linux-64 dependencies: - hpack: '>=4.1,<5' + hpack: '>=4.2,<5' hyperframe: '>=6.1,<7' python: '' - url: https://repo.prefix.dev/conda-forge/noarch/h2-4.3.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/h2-4.4.0-pyhcf101f3_0.conda hash: - md5: 164fc43f0b53b6e3a7bc7dce5e4f1dc9 - sha256: 84c64443368f84b600bfecc529a1194a3b14c3656ee2e832d15a20e0329b6da3 + md5: aae3214aab65ae635fbb3cc455596a86 + sha256: 1bdffcb701cf1f4429733fc2e194995bab5ecc71073d84a434dcfb57049a4265 category: dev optional: true - name: h2 - version: 4.3.0 + version: 4.4.0 manager: conda platform: win-64 dependencies: - hpack: '>=4.1,<5' + hpack: '>=4.2,<5' hyperframe: '>=6.1,<7' python: '' - url: https://repo.prefix.dev/conda-forge/noarch/h2-4.3.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/h2-4.4.0-pyhcf101f3_0.conda hash: - md5: 164fc43f0b53b6e3a7bc7dce5e4f1dc9 - sha256: 84c64443368f84b600bfecc529a1194a3b14c3656ee2e832d15a20e0329b6da3 + md5: aae3214aab65ae635fbb3cc455596a86 + sha256: 1bdffcb701cf1f4429733fc2e194995bab5ecc71073d84a434dcfb57049a4265 category: dev optional: true - name: h5py @@ -1090,24 +1091,24 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - aws-c-auth: '>=0.10.1,<0.10.2.0a0' - aws-c-common: '>=0.12.6,<0.12.7.0a0' - aws-c-http: '>=0.10.13,<0.10.14.0a0' - aws-c-io: '>=0.26.3,<0.26.4.0a0' - aws-c-s3: '>=0.12.2,<0.12.3.0a0' - aws-c-sdkutils: '>=0.2.4,<0.2.5.0a0' + aws-c-auth: '>=0.10.4,<0.10.5.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-http: '>=0.11.0,<0.11.1.0a0' + aws-c-io: '>=0.27.3,<0.27.4.0a0' + aws-c-s3: '>=0.12.8,<0.12.9.0a0' + aws-c-sdkutils: '>=0.2.7,<0.2.8.0a0' libaec: '>=1.1.5,<2.0a0' - libcurl: '>=8.20.0,<9.0a0' + libcurl: '>=8.21.0,<9.0a0' libgcc: '>=14' libgfortran: '' libgfortran5: '>=14.3.0' libstdcxx: '>=14' libzlib: '>=1.3.2,<2.0a0' - openssl: '>=3.5.6,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/hdf5-2.1.0-nompi_h87a9417_105.conda + openssl: '>=3.5.7,<4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/hdf5-2.1.0-nompi_h654f344_110.conda hash: - md5: 0d0595612fa229dddb5fc565c260a11f - sha256: beb8a2fb18924ca7b5b82cfb50f008f882f577daef2c00ed88022abea35fec76 + md5: 58484580a0f626dbe7d5145f014dbfd4 + sha256: 548411cb10baf1122c46cfef555936c385137d3637b75bd322e7574eda933842 category: main optional: false - name: hdf5 @@ -1115,47 +1116,47 @@ package: manager: conda platform: win-64 dependencies: - aws-c-auth: '>=0.10.1,<0.10.2.0a0' - aws-c-common: '>=0.12.6,<0.12.7.0a0' - aws-c-http: '>=0.10.13,<0.10.14.0a0' - aws-c-io: '>=0.26.3,<0.26.4.0a0' - aws-c-s3: '>=0.12.2,<0.12.3.0a0' - aws-c-sdkutils: '>=0.2.4,<0.2.5.0a0' + aws-c-auth: '>=0.10.4,<0.10.5.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-http: '>=0.11.0,<0.11.1.0a0' + aws-c-io: '>=0.27.3,<0.27.4.0a0' + aws-c-s3: '>=0.12.8,<0.12.9.0a0' + aws-c-sdkutils: '>=0.2.7,<0.2.8.0a0' libaec: '>=1.1.5,<2.0a0' - libcurl: '>=8.20.0,<9.0a0' + libcurl: '>=8.21.0,<9.0a0' libzlib: '>=1.3.2,<2.0a0' - openssl: '>=3.5.6,<4.0a0' + openssl: '>=3.5.7,<4.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/hdf5-2.1.0-nompi_h0a39f1e_105.conda + url: https://repo.prefix.dev/conda-forge/win-64/hdf5-2.1.0-nompi_h0d3e4b2_110.conda hash: - md5: d5850b9e97b9a577441067628fb8d573 - sha256: 2f2d49ccf163a4bdf556662fb2949bdf408940e2db67a2d15be2d8be247b6e43 + md5: 146134e4db96613ecdc63cf44bec847d + sha256: f6c79581d03d2e2e0cbbb0391d21a149a1f9c311159a9f74c6be8a79e2f696d9 category: main optional: false - name: hpack - version: 4.1.0 + version: 4.2.0 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/hpack-4.2.0-pyhd8ed1ab_0.conda hash: - md5: 0a802cb9888dd14eeefc611f05c40b6e - sha256: 6ad78a180576c706aabeb5b4c8ceb97c0cb25f1e112d76495bff23e3779948ba + md5: b395909221b9bd1df066e5930e18855b + sha256: fdcea5d7cb314485d3907192ef024c704311548c5b0cbeb390cd1951051e29d2 category: dev optional: true - name: hpack - version: 4.1.0 + version: 4.2.0 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/hpack-4.2.0-pyhd8ed1ab_0.conda hash: - md5: 0a802cb9888dd14eeefc611f05c40b6e - sha256: 6ad78a180576c706aabeb5b4c8ceb97c0cb25f1e112d76495bff23e3779948ba + md5: b395909221b9bd1df066e5930e18855b + sha256: fdcea5d7cb314485d3907192ef024c704311548c5b0cbeb390cd1951051e29d2 category: dev optional: true - name: hyperframe @@ -1190,34 +1191,48 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' libstdcxx: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/icu-78.3-h33c6efd_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/icu-78.3-h54a6638_2.conda + hash: + md5: 4ef4b977bb216a3001a3334696a80850 + sha256: d7c260b7e1cf22ce04d6ba8a86eabf4e6c50bc96a5c27fe2ecb32298af3e88eb + category: main + optional: false +- name: icu + version: '78.3' + manager: conda + platform: win-64 + dependencies: + ucrt: '>=10.0.20348.0' + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/icu-78.3-h5112557_2.conda hash: - md5: c80d8a3b84358cb967fa81e7075fbc8a - sha256: fbf86c4a59c2ed05bbffb2ba25c7ed94f6185ec30ecb691615d42342baa1a16a + md5: e596942e8ee6ee17fdcf1e6a77757a66 + sha256: 75c549b55b673e15de8785a8e5dd85bca7eb612eee0ff4dc8d7bdaa15eacbdbb category: main optional: false - name: idna - version: '3.17' + version: '3.18' manager: conda platform: linux-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/idna-3.17-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/idna-3.18-pyhcf101f3_0.conda hash: - md5: c75e517ebd7a5c5272fe111e8b162228 - sha256: f9fe1f9e539c544405ccb7ba632d4ba79edf243c05554d76ace073158a80b691 + md5: 577b04680ae422adb86fc60d7b940659 + sha256: c75632ea624aa450a394f570749420c5a2e0997d0216bc29d5d45b0f39df0426 category: dev optional: true - name: idna - version: '3.17' + version: '3.18' manager: conda platform: win-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/idna-3.17-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/idna-3.18-pyhcf101f3_0.conda hash: - md5: c75e517ebd7a5c5272fe111e8b162228 - sha256: f9fe1f9e539c544405ccb7ba632d4ba79edf243c05554d76ace073158a80b691 + md5: 577b04680ae422adb86fc60d7b940659 + sha256: c75632ea624aa450a394f570749420c5a2e0997d0216bc29d5d45b0f39df0426 category: dev optional: true - name: imagesize @@ -1401,11 +1416,11 @@ package: libedit: '>=3.1.20250104,<4.0a0' libgcc: '>=14' libstdcxx: '>=14' - openssl: '>=3.5.5,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/krb5-1.22.2-ha1258a1_0.conda + openssl: '>=3.5.7,<4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/krb5-1.22.2-hbde042b_1.conda hash: - md5: fb53fb07ce46a575c5d004bbc96032c2 - sha256: 3e307628ca3527448dd1cb14ad7bb9d04d1d28c7d4c5f97ba196ae984571dd25 + md5: 54157a1c8c0bb70f62dd0b17fba7e7f2 + sha256: 9b07046870772f28740e3f6149f09ff222843733087a33c5540b169c6289652d category: main optional: false - name: krb5 @@ -1413,14 +1428,14 @@ package: manager: conda platform: win-64 dependencies: - openssl: '>=3.5.5,<4.0a0' + openssl: '>=3.5.7,<4.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/krb5-1.22.2-h0ea6238_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/krb5-1.22.2-h719d79b_1.conda hash: - md5: 4432f52dc0c8eb6a7a6abc00a037d93c - sha256: eb60f1ad8b597bcf95dee11bc11fe71a8325bc1204cf51d2bb1f2120ffd77761 + md5: 00335c2c4a98656554771aaf6f1a7400 + sha256: c55745796e762ba9e817ab1fc0f21f1a049e202f90fa762df39578f37923f6c2 category: main optional: false - name: lcms2 @@ -1455,44 +1470,44 @@ package: category: main optional: false - name: ld_impl_linux-64 - version: 2.45.1 + version: 2.46.1 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.45.1-default_hbd61a6d_102.conda + url: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.46.1-default_hbd61a6d_102.conda hash: - md5: 18335a698559cdbcd86150a48bf54ba6 - sha256: 3d584956604909ff5df353767f3a2a2f60e07d070b328d109f30ac40cd62df6c + md5: 449500f2c089da11c40f5c21312e3e07 + sha256: 27d83f1188cd19bcb7754a078b3fa7f4cfb8527f8eb2fde54dd01fc529d1adec category: main optional: false - name: lerc - version: 4.1.0 + version: 4.2.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' libstdcxx: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/lerc-4.1.0-hdb68285_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/lerc-4.2.0-hdb68285_0.conda hash: - md5: a752488c68f2e7c456bcbd8f16eec275 - sha256: f84cb54782f7e9cea95e810ea8fef186e0652d0fa73d3009914fa2c1262594e1 + md5: fb9d356b1a57d6d54768be7ebd5fce09 + sha256: bf9fdebf55d8bc99d83531cdffda00703f4dc5f93a1a956768c147362c72feda category: main optional: false - name: lerc - version: 4.1.0 + version: 4.2.0 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/lerc-4.1.0-hd936e49_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/lerc-4.2.0-hd936e49_0.conda hash: - md5: 54b231d595bc1ff9bff668dd443ee012 - sha256: 45df58fca800b552b17c3914cc9ab0d55a82c5172d72b5c44a59c710c06c5473 + md5: add59e2b60ac9d4299d17c938185c75a + sha256: 93d666f63f284ef77b87b0b1f77b70f7d36d315a132f9afa64bc0012d937ba39 category: main optional: false - name: libaec @@ -1657,7 +1672,7 @@ package: category: main optional: false - name: libcurl - version: 8.20.0 + version: 8.21.0 manager: conda platform: linux-64 dependencies: @@ -1665,31 +1680,33 @@ package: krb5: '>=1.22.2,<1.23.0a0' libgcc: '>=14' libnghttp2: '>=1.68.1,<2.0a0' + libpsl: '>=0.22.0,<0.23.0a0' libssh2: '>=1.11.1,<2.0a0' libzlib: '>=1.3.2,<2.0a0' - openssl: '>=3.5.6,<4.0a0' + openssl: '>=3.5.7,<4.0a0' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libcurl-8.20.0-hcf29cc6_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libcurl-8.21.0-hae6b9f4_2.conda hash: - md5: c3cc2864f82a944bc90a7beb4d3b0e88 - sha256: 75963a5dd913311f59a35dbd307592f4fa754c4808aff9c33edb430c415e38eb + md5: f9c59d277a16ec8f272b2d5dd2ec3335 + sha256: ba8354084b34fce56d5697982fce4a384c148e972e15c0ab891187617fe7ec29 category: main optional: false - name: libcurl - version: 8.20.0 + version: 8.21.0 manager: conda platform: win-64 dependencies: krb5: '>=1.22.2,<1.23.0a0' + libpsl: '>=0.22.0,<0.23.0a0' libssh2: '>=1.11.1,<2.0a0' libzlib: '>=1.3.2,<2.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libcurl-8.20.0-h8206538_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libcurl-8.21.0-h51a1c48_2.conda hash: - md5: 7bee27a8f0a295117ccb864f30d2d87e - sha256: f4ce5aa835a698532feaa368e804365a7e45a9edebe006a8e1c80505d893c24e + md5: 88c875a8f34785d6f6185ceb646154fa + sha256: e9a9231e6c04b82979a6a1a4f90b8a697dc3a42884e709dee8ba5d0355b45296 category: main optional: false - name: libdeflate @@ -1752,10 +1769,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libexpat-2.8.1-hecca717_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libexpat-2.8.1-hecca717_1.conda hash: - md5: 93764a5ca80616e9c10106cdaec92f74 - sha256: 363018b25fdb5534c79783d912bd4b685a3547f4fc5996357ad548899b0ee8e7 + md5: b24d3c612f71e7aa74158d92106318b2 + sha256: 16feffd9ddbbe5b718515d38ee376c685ba95491cd901244e24671d20b952a77 category: main optional: false - name: libexpat @@ -1766,10 +1783,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libexpat-2.8.1-hac47afa_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libexpat-2.8.1-hac47afa_1.conda hash: - md5: 23eb9474a16d4b9f6f27429989e82002 - sha256: a65e518c20d1482182bc0f1f6dd5d992f25ca44c3b32307be39ae8310db8f060 + md5: ccc490c81ffe14181861beac0e8f3169 + sha256: 1a54d874addda73b6f7164d5f3905821277a1831bcc05edd74b3085391688571 category: main optional: false - name: libffi @@ -1817,10 +1834,10 @@ package: platform: win-64 dependencies: libfreetype6: '>=2.14.3' - url: https://repo.prefix.dev/conda-forge/win-64/libfreetype-2.14.3-h57928b3_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libfreetype-2.14.3-h57928b3_1.conda hash: - md5: d9f70dd06674e26b6d5a657ddd22b568 - sha256: 71fae9ae05563ceec70adceb7bc66faa326a81a6590a8aac8a5074019070a2d8 + md5: e45b52fb9a81c9e2708465a706e05952 + sha256: 035d0c67bf9f7a16f4a1764f420c120f1a995d071bb265fcc66ef688ef709d7b category: main optional: false - name: libfreetype6 @@ -1843,15 +1860,15 @@ package: manager: conda platform: win-64 dependencies: - libpng: '>=1.6.55,<1.7.0a0' + libpng: '>=1.6.58,<1.7.0a0' libzlib: '>=1.3.2,<2.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libfreetype6-2.14.3-hdbac1cb_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libfreetype6-2.14.3-hdbac1cb_1.conda hash: - md5: f9975a0177ee6cdda10c86d1db1186b0 - sha256: 497e9ab7c80f579e1b2850523740d6a543b8020f6b43be6bd6e83b3a6fb7fb32 + md5: 4e4d54f9f98383d977ba56ef39ebf46d + sha256: 0bbd19c9f7c4d0232b31892e6a4d1f82b8d19d1b84d89725f1f491b336447758 category: main optional: false - name: libgcc @@ -1861,10 +1878,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' _openmp_mutex: '>=4.5' - url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-15.2.0-he0feb66_19.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-15.2.0-he0feb66_20.conda hash: - md5: 57736f29cc2b0ec0b6c2952d3f101b6a - sha256: 8e0a3b5e41272e5678499b5dfc4cddb673f9e935de01eb0767ce857001229f46 + md5: 3533de187cf7283f96bfdb28ad73e2bc + sha256: e3b7bb287d1685b15781a6d9e3408d6ddaff23f5a1d0d6c0140619dd3950fe72 category: main optional: false - name: libgcc @@ -1874,10 +1891,10 @@ package: dependencies: _openmp_mutex: '>=4.5' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' - url: https://repo.prefix.dev/conda-forge/win-64/libgcc-15.2.0-h8ee18e1_19.conda + url: https://repo.prefix.dev/conda-forge/win-64/libgcc-15.2.0-h8ee18e1_20.conda hash: - md5: cc5d690fc1c629038f13c68e88e65f44 - sha256: 80e80ef5e31b00b12539db3c5aaecde60dab91381abfc1060e323d5c3b016dce + md5: 00528c2577868b9cfefec85b8fe26d66 + sha256: 954dcca1cbf2ad1e7ac2129bf77f787bec0a2eb9edb3f8b79c9a93b492a20c40 category: main optional: false - name: libgcc-ng @@ -1886,10 +1903,10 @@ package: platform: linux-64 dependencies: libgcc: 15.2.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-ng-15.2.0-h69a702a_19.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-ng-15.2.0-h69a702a_20.conda hash: - md5: 331ee9b72b9dff570d56b1302c5ab37d - sha256: 9dcf54adfaa5e861123c2da4f2f0451a685464ea7e5a41ad91cf67b31d658d98 + md5: c099368d009e4d828449eaed7b2cb701 + sha256: e01a2a027fceea1011d2e74307845fb0c4bd6d195ff27fbf5baeafa55531d128 category: main optional: false - name: libgfortran @@ -1898,10 +1915,10 @@ package: platform: linux-64 dependencies: libgfortran5: 15.2.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran-15.2.0-h69a702a_19.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran-15.2.0-h69a702a_20.conda hash: - md5: 42bf7eca1a951735fa06c0e3c0d5c8e6 - sha256: 561a42758ef25b9ce308c4e2cf56daee4f06138385a17e29a492cd928e00be6f + md5: a450a08a63f940e9aa7b37692e71196a + sha256: 76d81032e264b74f519cc26962d5eb39547e0785fc9d2957bbc12e7a91214412 category: main optional: false - name: libgfortran5 @@ -1911,10 +1928,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=15.2.0' - url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran5-15.2.0-h68bc16d_19.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran5-15.2.0-h68bc16d_20.conda hash: - md5: 85072b0ad177c966294f129b7c04a2d5 - sha256: 057978bb69fea29ed715a9b98adf71015c31baecc4aeb2bfc20d4fd5d83579d4 + md5: 4edbcbea1a8790a7d58e648523b69546 + sha256: 95122f42566dc9a62b9615d2372b3f3c75fa7bd8bb1eda53aa7532ce60d545eb category: main optional: false - name: libgomp @@ -1923,10 +1940,10 @@ package: platform: win-64 dependencies: libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' - url: https://repo.prefix.dev/conda-forge/win-64/libgomp-15.2.0-h8ee18e1_19.conda + url: https://repo.prefix.dev/conda-forge/win-64/libgomp-15.2.0-h8ee18e1_20.conda hash: - md5: f1147651e3fdd585e2f442c0c2fc8f2d - sha256: 4dc958ced2fc7f42bc675b07e2c9abe3e150875ffdf62ca551d94fc6facf1fd7 + md5: 3b2b211930103e49d77da1a7d9ea9af9 + sha256: 33606594501174cc1677c7dbe39de739c2f04e9a8ddbd95aa82e48d1bd79b388 category: main optional: false - name: libhwloc @@ -1990,30 +2007,30 @@ package: category: main optional: false - name: libjpeg-turbo - version: 3.1.4.1 + version: 3.2.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libjpeg-turbo-3.1.4.1-hb03c661_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libjpeg-turbo-3.2.0-hb03c661_0.conda hash: - md5: 6178c6f2fb254558238ef4e6c56fb782 - sha256: 10056646c28115b174de81a44e23e3a0a3b95b5347d2e6c45cc6d49d35294256 + md5: 466badda5536d85ddc63ee9404f29735 + sha256: 716332fd31b3808da7a4235a05212a9e9da05e854864c3def2dea0b5d2bf7610 category: main optional: false - name: libjpeg-turbo - version: 3.1.4.1 + version: 3.2.0 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libjpeg-turbo-3.1.4.1-hfd05255_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libjpeg-turbo-3.2.0-hfd05255_0.conda hash: - md5: 25a127bad5470852b30b239f030ec95b - sha256: 698d57b5b90120270eaa401298319fcb25ea186ae95b340c2f4813ed9171083d + md5: cf219146d5bf2fee5907409ff9f5ac89 + sha256: 3d6635efa9497b9c5ba7957df8067c0a980d5cb10a6ea136931809eb410f8a99 category: main optional: false - name: liblapack @@ -2127,32 +2144,63 @@ package: sha256: 218913aeee391460bd0e341b834dbd9c6fa6ae0a4276c0c300266cc99a816a28 category: main optional: false +- name: libpsl + version: 0.22.0 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + icu: '>=78.3,<79.0a0' + libgcc: '>=14' + libstdcxx: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/libpsl-0.22.0-h49b2146_1.conda + hash: + md5: af5ddfb52ad25d833c70c7511478d4eb + sha256: 71118885feab91c61bea4e9532ec46e0653b24f02e563681f822915aee8435bb + category: main + optional: false +- name: libpsl + version: 0.22.0 + manager: conda + platform: win-64 + dependencies: + icu: '>=78.3,<79.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/libpsl-0.22.0-h25e0afd_1.conda + hash: + md5: ba200e33e10ccf0d730c4ce87badbdf1 + sha256: 040d4adabae2634b13183203e383c21f74ed98028b5d50bf9bae4968dd05aaa5 + category: main + optional: false - name: libsqlite - version: 3.53.1 + version: 3.53.4 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' + icu: '>=78.3,<79.0a0' libgcc: '>=14' libzlib: '>=1.3.2,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.53.1-h0c1763c_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.53.4-hf4e2dac_0.conda hash: - md5: 7dc38adcbf71e6b38748e919e16e0dce - sha256: 54cdcd3214313b62c2a8ee277e6f42150d9b748264c1b70d958bf735e420ef8d + md5: df088a279cd5e6fd2790b4c196434da1 + sha256: 72023efc207fe681e26b65fc9d668062cf0b4f0eacf3431e6eb099b95c1f2efd category: main optional: false - name: libsqlite - version: 3.53.1 + version: 3.53.4 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.53.1-hf5d6505_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.53.4-hf5d6505_0.conda hash: - md5: 7fea434a17c323256acc510a041b80d7 - sha256: e70562450332ca8954bc16f3455468cca5ef3695c7d7187ecc87f8fc3c70e9eb + md5: ca0d59f40a02a15e9b5d0ff8db0f85e3 + sha256: 62e1c45ec71ab2e5deeeb0e47e7df6a609991e91d46348f16df50c68fee145c8 category: main optional: false - name: libssh2 @@ -2193,10 +2241,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: 15.2.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-15.2.0-h934c35e_19.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-15.2.0-h934c35e_20.conda hash: - md5: 5794b3bdc38177caf969dabd3af08549 - sha256: dff1058c76ec6b8759e41cefa2508162d00e4a5e6721aa68ec3fd10094e702dc + md5: fbd3d5506b11b5cfc916b29263b6b6f7 + sha256: b5eadda8fb0df262f0d424c4a0c8c1c8d65d904ce622f07936c793ea1b8a39d9 category: main optional: false - name: libstdcxx-ng @@ -2205,64 +2253,64 @@ package: platform: linux-64 dependencies: libstdcxx: 15.2.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-15.2.0-hdf11a46_19.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-15.2.0-hdf11a46_20.conda hash: - md5: e5ce228e579726c07255dbf90dc62101 - sha256: 0672b6b6e1791c92e8eccad58081a99d614fcf82bca5841f9dfa3c3e658f83b9 + md5: 593dc263426eb14f16dc594bfdb9772a + sha256: 0b79903234f68410c11c33cb9829f7b3cb01a9ff2f42bf083dd2c51e886e6077 category: main optional: false - name: libtiff - version: 4.7.1 + version: 4.7.2 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - lerc: '>=4.0.0,<5.0a0' + lerc: '>=4.1.0,<5.0a0' libdeflate: '>=1.25,<1.26.0a0' libgcc: '>=14' - libjpeg-turbo: '>=3.1.0,<4.0a0' - liblzma: '>=5.8.1,<6.0a0' + libjpeg-turbo: '>=3.1.4.1,<4.0a0' + liblzma: '>=5.8.3,<6.0a0' libstdcxx: '>=14' libwebp-base: '>=1.6.0,<2.0a0' - libzlib: '>=1.3.1,<2.0a0' + libzlib: '>=1.3.2,<2.0a0' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libtiff-4.7.1-h9d88235_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libtiff-4.7.2-h9d88235_0.conda hash: - md5: cd5a90476766d53e901500df9215e927 - sha256: e5f8c38625aa6d567809733ae04bb71c161a42e44a9fa8227abe61fa5c60ebe0 + md5: c1fcb4a88bc15a9f77ad8d27d7af1df9 + sha256: b31346e1c01ab40a170e91147092ee8fd92b1dee3c66ee47ef025571c879b159 category: main optional: false - name: libtiff - version: 4.7.1 + version: 4.7.2 manager: conda platform: win-64 dependencies: - lerc: '>=4.0.0,<5.0a0' + lerc: '>=4.1.0,<5.0a0' libdeflate: '>=1.25,<1.26.0a0' - libjpeg-turbo: '>=3.1.0,<4.0a0' - liblzma: '>=5.8.1,<6.0a0' - libzlib: '>=1.3.1,<2.0a0' + libjpeg-turbo: '>=3.1.4.1,<4.0a0' + liblzma: '>=5.8.3,<6.0a0' + libzlib: '>=1.3.2,<2.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/libtiff-4.7.1-h8f73337_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/libtiff-4.7.2-h8f73337_0.conda hash: - md5: 549845d5133100142452812feb9ba2e8 - sha256: f1b8cccaaeea38a28b9cd496694b2e3d372bb5be0e9377c9e3d14b330d1cba8a + md5: e83f459471905a04ebe15e21d063c49d + sha256: ec6d66308a6d6abaf3225f2f185113e6172e77eb0fa8622af982d7a5d6d47a2c category: main optional: false - name: libuuid - version: 2.42.1 + version: 2.42.2 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libuuid-2.42.1-h5347b49_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libuuid-2.42.2-h5347b49_0.conda hash: - md5: 7d0a66598195ef00b6efc55aefc7453b - sha256: 3f0edf1280e2f6684a986f821eaa3e123d2694a00b31b96ca0d4a4c12c129231 + md5: 01bb81d12c957de066ea7362007df642 + sha256: 9b1bdce27a7e31f7d241aeecff67a1f3101d52a2b1e33ccc2cdf2613072bf81f category: main optional: false - name: libwebp-base @@ -2372,6 +2420,7 @@ package: manager: conda platform: win-64 dependencies: + icu: '>=78.3,<79.0a0' libiconv: '>=1.18,<2.0a0' liblzma: '>=5.8.3,<6.0a0' libxml2-16: 2.15.3 @@ -2379,10 +2428,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libxml2-2.15.3-hbc0d294_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libxml2-2.15.3-h8ef44ab_0.conda hash: - md5: e3b5acbb857a12f5d59e8d174bc536c0 - sha256: da68af9d9d28d65a6916db1bef68f8a25c64c4fdcf759f32a2d2f2f143220adf + md5: 95591ca5671d2213f5b2d5aa7818420d + sha256: a4599c6bbbbdd7db570896e520c557eec8e66d94e839a59d17dc1f24a3d5f82b category: main optional: false - name: libxml2-16 @@ -2407,16 +2456,17 @@ package: manager: conda platform: win-64 dependencies: + icu: '>=78.3,<79.0a0' libiconv: '>=1.18,<2.0a0' liblzma: '>=5.8.3,<6.0a0' libzlib: '>=1.3.2,<2.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libxml2-16-2.15.3-h692994f_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libxml2-16-2.15.3-h3cfd58e_0.conda hash: - md5: f7d6fcda29570e20851b78d92ea2154e - sha256: 8038084c60eda2006d0122d05e3364fe8db0a18935ca6ed0168b5ba5aa33f904 + md5: 9e8dd0d90ed830107b2c36801035b7db + sha256: 3b61ee3caba702d2ff432fa3920835db963026e5c99c4e6fdca0c6114f59e7ce category: main optional: false - name: libzlib @@ -2446,29 +2496,29 @@ package: category: main optional: false - name: llvm-openmp - version: 22.1.6 + version: 22.1.8 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-22.1.6-h4922eb0_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-22.1.8-h4922eb0_0.conda hash: - md5: a7f80a18bc21daad0f4d5c3fbad1e8c1 - sha256: e74dbafd2b420687cc913f5587050270c8f57042405b6b0d66c3a8013dc104ab + md5: 7bbfdc5a6eca997d3b0873a575c3e155 + sha256: a37aba21b85800af1e7c5b04ba76abab96b6e591eedf99dc6e4df83b0fefd7a5 category: main optional: false - name: llvm-openmp - version: 22.1.6 + version: 22.1.8 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-22.1.6-h4fa8253_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-22.1.8-h4fa8253_0.conda hash: - md5: 1966432ddb4d5e13890dae3758a112d3 - sha256: b12aa9c957fadf488888aa4cad6d424d499ffcceefe5d8e9077c4da46308f26b + md5: de3551bf6508d45ca46b714639e52823 + sha256: 50c02902bb516eeb56680358f052be38b5bf74b40e78ea4b2a675e84957e7307 category: main optional: false - name: markupsafe @@ -2586,7 +2636,7 @@ package: category: dev optional: true - name: mkl - version: 2026.0.0 + version: 2026.1.0 manager: conda platform: linux-64 dependencies: @@ -2594,30 +2644,30 @@ package: _openmp_mutex: '>=4.5' libgcc: '>=14' libstdcxx: '>=14' - llvm-openmp: '>=22.1.5' - onemkl-license: 2026.0.0 + llvm-openmp: '>=22.1.8' + onemkl-license: 2026.1.0 tbb: '>=2023.0.0' - url: https://repo.prefix.dev/conda-forge/linux-64/mkl-2026.0.0-h0e700b2_915.conda + url: https://repo.prefix.dev/conda-forge/linux-64/mkl-2026.1.0-hecca717_243.conda hash: - md5: 44208bd851118db1e20923441f1bb3bb - sha256: b23dc574c681cfa9708378b781d206fa790f1944cfb7b4c20177824b96938544 + md5: cef284d6d9fe0caf11638f5f0e4f9a64 + sha256: c68967a13488684d87fb7ac77b73c6f3f825f2da403707a14e75374c0ce3629f category: main optional: false - name: mkl - version: 2026.0.0 + version: 2026.1.0 manager: conda platform: win-64 dependencies: - llvm-openmp: '>=22.1.5' - onemkl-license: 2026.0.0 + llvm-openmp: '>=22.1.8' + onemkl-license: 2026.1.0 tbb: '>=2023.0.0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/mkl-2026.0.0-hac47afa_908.conda + url: https://repo.prefix.dev/conda-forge/win-64/mkl-2026.1.0-hac47afa_233.conda hash: - md5: 36ea6e1292e9d5e89374201da79646ef - sha256: f997bfc9bc4d4e14261cdcd1ad195d64a72ee44dca3145d24c1349f8d1311aa5 + md5: 5afbf28c4ca3e05b5469dbbd78c8e704 + sha256: ff355522fb0b6e33841167d9ca749147c8734d8be07b63b2ce25b0db043f42ed category: main optional: false - name: munkres @@ -2696,25 +2746,25 @@ package: category: main optional: false - name: onemkl-license - version: 2026.0.0 + version: 2026.1.0 manager: conda platform: linux-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/linux-64/onemkl-license-2026.0.0-hf2ce2f3_915.conda + url: https://repo.prefix.dev/conda-forge/linux-64/onemkl-license-2026.1.0-ha770c72_243.conda hash: - md5: f9a902d29c0980c672f77eff7be1794c - sha256: fd53c7f3e874b6fd2add63103028ed707b728cc275597d12951886cfcda46e7d + md5: 2617b8e56c82fe48be8951e7794f08bc + sha256: b560b1106416b7df0041144aad3842e8783e22c70418a46cbcc90fe67a96b229 category: main optional: false - name: onemkl-license - version: 2026.0.0 + version: 2026.1.0 manager: conda platform: win-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/win-64/onemkl-license-2026.0.0-h57928b3_908.conda + url: https://repo.prefix.dev/conda-forge/win-64/onemkl-license-2026.1.0-h57928b3_233.conda hash: - md5: 9c9303e08b50e09f5c23e1dac99d0936 - sha256: 42ad15cbb3bf31830efa04d4b86dd2d5c0dd590c86f98adcd3c8c1f75acf5dd5 + md5: 1566e2ce8c3bc23a2feb866c4d9e91e3 + sha256: 96dec1c878d6e6f835be8ed57152a37be9a5104ac79c2425815d71c64cf13ee4 category: main optional: false - name: openjpeg @@ -2752,21 +2802,21 @@ package: category: main optional: false - name: openssl - version: 3.6.2 + version: 3.6.3 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' ca-certificates: '' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/openssl-3.6.2-h35e630c_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/openssl-3.6.3-h35e630c_0.conda hash: - md5: da1b85b6a87e141f5140bb9924cecab0 - sha256: c0ef482280e38c71a08ad6d71448194b719630345b0c9c60744a2010e8a8e0cb + md5: 79dd2074b5cd5c5c6b2930514a11e22d + sha256: d48f5c22b9897c01e4dff3680f1f57ceb02711ab9c62f74339b080419dfad34b category: main optional: false - name: openssl - version: 3.6.2 + version: 3.6.3 manager: conda platform: win-64 dependencies: @@ -2774,10 +2824,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/openssl-3.6.2-hf411b9b_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/openssl-3.6.3-hf411b9b_0.conda hash: - md5: 05c7d624cff49dbd8db1ad5ba537a8a3 - sha256: feb5815125c60f2be4a411e532db1ed1cd2d7261a6a43c54cb6ae90724e2e154 + md5: e99f95734a326c0fd4d02bbd995150d4 + sha256: cb6e7ba0d010ee0d3249ce9886de3d7613d26d9965d4c95666fa66b9c4c31001 category: main optional: false - name: packaging @@ -2805,16 +2855,16 @@ package: category: main optional: false - name: pillow - version: 12.2.0 + version: 12.3.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - lcms2: '>=2.18,<3.0a0' + lcms2: '>=2.19.1,<3.0a0' libfreetype: '>=2.14.3' libfreetype6: '>=2.14.3' libgcc: '>=14' - libjpeg-turbo: '>=3.1.2,<4.0a0' + libjpeg-turbo: '>=3.1.4.1,<4.0a0' libtiff: '>=4.7.1,<4.8.0a0' libwebp-base: '>=1.6.0,<2.0a0' libxcb: '>=1.17.0,<2.0a0' @@ -2823,21 +2873,21 @@ package: python_abi: 3.12.* tk: '>=8.6.13,<8.7.0a0' zlib-ng: '>=2.3.3,<2.4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/pillow-12.2.0-py312h50c33e8_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pillow-12.3.0-py312h50c33e8_0.conda hash: - md5: 9e5609720e31213d4f39afe377f6217e - sha256: fa291f8915114733dc1df9f1627b8c63c517217c1eee1a6ede2ceb5e368cf27a + md5: d749d04e1965315078f29320565c595a + sha256: 76b2e56c7a903a06be1210d35f35c2a8dcdc57912fda5c96b2e68acfd2b281fe category: main optional: false - name: pillow - version: 12.2.0 + version: 12.3.0 manager: conda platform: win-64 dependencies: - lcms2: '>=2.18,<3.0a0' + lcms2: '>=2.19.1,<3.0a0' libfreetype: '>=2.14.3' libfreetype6: '>=2.14.3' - libjpeg-turbo: '>=3.1.2,<4.0a0' + libjpeg-turbo: '>=3.1.4.1,<4.0a0' libtiff: '>=4.7.1,<4.8.0a0' libwebp-base: '>=1.6.0,<2.0a0' libxcb: '>=1.17.0,<2.0a0' @@ -2849,10 +2899,10 @@ package: vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' zlib-ng: '>=2.3.3,<2.4.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/pillow-12.2.0-py312h31f0997_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/pillow-12.3.0-py312h31f0997_0.conda hash: - md5: ba3bcb72a269e7751cadbdd784f84dec - sha256: ab7c254e49d0999bbfc3d3b2c76e7d5f9f831692c864c641cf10c557b727ad7e + md5: 7e163dfd8d118658c0ca0ebffe80ad7d + sha256: 19e982ab2e3e43ca1506bd34ce516fd309d78068692e4770a1bb59cbda2d2710 category: main optional: false - name: pip @@ -2884,27 +2934,27 @@ package: category: main optional: false - name: platformdirs - version: 4.10.0 + version: 4.11.0 manager: conda platform: linux-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.10.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.11.0-pyhcf101f3_0.conda hash: - md5: 2c5ef45db85d34799771629bd5860fd7 - sha256: 9e5e1fd3506ccfc4d444fc4d2d39b0ed097d5d0e3bd3d4bdf6bcc81aaf66860d + md5: 1fadaa6dd1d03d062075f84157ac2cc7 + sha256: a4b8c7d3b3703d10f93187986d59aec09b22033978945845899beb7f849a7be6 category: dev optional: true - name: platformdirs - version: 4.10.0 + version: 4.11.0 manager: conda platform: win-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.10.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.11.0-pyhcf101f3_0.conda hash: - md5: 2c5ef45db85d34799771629bd5860fd7 - sha256: 9e5e1fd3506ccfc4d444fc4d2d39b0ed097d5d0e3bd3d4bdf6bcc81aaf66860d + md5: 1fadaa6dd1d03d062075f84157ac2cc7 + sha256: a4b8c7d3b3703d10f93187986d59aec09b22033978945845899beb7f849a7be6 category: dev optional: true - name: pluggy @@ -3081,7 +3131,7 @@ package: category: dev optional: true - name: pylint - version: 4.0.5 + version: 4.0.6 manager: conda platform: linux-64 dependencies: @@ -3094,14 +3144,14 @@ package: python: '' tomli: '>=1.1' tomlkit: '>=0.10.1' - url: https://repo.prefix.dev/conda-forge/noarch/pylint-4.0.5-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pylint-4.0.6-pyhcf101f3_0.conda hash: - md5: 7d9916ed19ecda71f0b00963365252a7 - sha256: a8e7736982409a56d2aa329d3052259fd45910f98fb7d3f2816f1a6d59624d60 + md5: ba6813f7d81828b7dcd03248a42d031d + sha256: 5393b20b76361efe49971a0081cad0f4256f875a14fe71b1ed93ba9e0193369c category: dev optional: true - name: pylint - version: 4.0.5 + version: 4.0.6 manager: conda platform: win-64 dependencies: @@ -3114,10 +3164,10 @@ package: python: '' tomli: '>=1.1' tomlkit: '>=0.10.1' - url: https://repo.prefix.dev/conda-forge/noarch/pylint-4.0.5-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pylint-4.0.6-pyhcf101f3_0.conda hash: - md5: 7d9916ed19ecda71f0b00963365252a7 - sha256: a8e7736982409a56d2aa329d3052259fd45910f98fb7d3f2816f1a6d59624d60 + md5: ba6813f7d81828b7dcd03248a42d031d + sha256: 5393b20b76361efe49971a0081cad0f4256f875a14fe71b1ed93ba9e0193369c category: dev optional: true - name: pyparsing @@ -3172,11 +3222,11 @@ package: category: dev optional: true - name: pytest - version: 9.0.3 + version: 9.1.1 manager: conda platform: linux-64 dependencies: - colorama: '>=0.4' + colorama: '' exceptiongroup: '>=1' iniconfig: '>=1.0.1' packaging: '>=22' @@ -3184,18 +3234,18 @@ package: pygments: '>=2.7.2' python: '' tomli: '>=1' - url: https://repo.prefix.dev/conda-forge/noarch/pytest-9.0.3-pyhc364b38_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytest-9.1.1-pyhc364b38_2.conda hash: - md5: 6a991452eadf2771952f39d43615bb3e - sha256: 960f59442173eee0731906a9077bd5ccf60f4b4226f05a22d1728ab9a21a879c + md5: 64c98a12c4e23eb238bf66bbecafdf3c + sha256: 430051d80765207a7d782b2b188230ba1489d35c6e75fd9903f76cb9fda4af16 category: dev optional: true - name: pytest - version: 9.0.3 + version: 9.1.1 manager: conda platform: win-64 dependencies: - colorama: '>=0.4' + colorama: '' exceptiongroup: '>=1' iniconfig: '>=1.0.1' packaging: '>=22' @@ -3203,10 +3253,10 @@ package: pygments: '>=2.7.2' python: '' tomli: '>=1' - url: https://repo.prefix.dev/conda-forge/noarch/pytest-9.0.3-pyhc364b38_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytest-9.1.1-pyhc364b38_2.conda hash: - md5: 6a991452eadf2771952f39d43615bb3e - sha256: 960f59442173eee0731906a9077bd5ccf60f4b4226f05a22d1728ab9a21a879c + md5: 64c98a12c4e23eb238bf66bbecafdf3c + sha256: 430051d80765207a7d782b2b188230ba1489d35c6e75fd9903f76cb9fda4af16 category: dev optional: true - name: pytest-cov @@ -3471,44 +3521,18 @@ package: sha256: 30f3c04fcfb64c44d821d392a4a0b8915650dbd900c8befc20ade8fde8ec6aa2 category: dev optional: true -- name: roman-numerals-py - version: 4.1.0 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.10' - roman-numerals: 4.1.0 - url: https://repo.prefix.dev/conda-forge/noarch/roman-numerals-py-4.1.0-pyhd8ed1ab_0.conda - hash: - md5: 28687768633154993d521aecfa4a56ac - sha256: ce21b50a412b87b388db9e8dfbf8eb16fc436c23750b29bf612ee1a74dd0beb2 - category: dev - optional: true -- name: roman-numerals-py - version: 4.1.0 - manager: conda - platform: win-64 - dependencies: - python: '>=3.10' - roman-numerals: 4.1.0 - url: https://repo.prefix.dev/conda-forge/noarch/roman-numerals-py-4.1.0-pyhd8ed1ab_0.conda - hash: - md5: 28687768633154993d521aecfa4a56ac - sha256: ce21b50a412b87b388db9e8dfbf8eb16fc436c23750b29bf612ee1a74dd0beb2 - category: dev - optional: true - name: s2n - version: 1.7.3 + version: 1.7.5 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - openssl: '>=3.5.6,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/s2n-1.7.3-hc5a330e_0.conda + openssl: '>=3.5.7,<4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/s2n-1.7.5-h7e3ee7f_1.conda hash: - md5: f2bd09e21c5844a12e2f5eefcd075555 - sha256: 150a0a5254e8b15ad737549721c7d13406cd96432f3f446e07073dbd98bb2491 + md5: fa1c00d999e83ec20173c9775f71a1f1 + sha256: 7369ac21f3561e2203f5b1600ef0671270057380783ca4b9e15f679ba25db575 category: main optional: false - name: scipy @@ -3554,27 +3578,27 @@ package: category: main optional: false - name: setuptools - version: 82.0.1 + version: 83.0.0 manager: conda platform: linux-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/setuptools-82.0.1-pyh332efcf_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/setuptools-83.0.0-pyh332efcf_0.conda hash: - md5: 8e194e7b992f99a5015edbd4ebd38efd - sha256: 82088a6e4daa33329a30bc26dc19a98c7c1d3f05c0f73ce9845d4eab4924e9e1 + md5: 6bf6acbab2499830180ec88c3aff2fa4 + sha256: 48a9f96016505debadfc67f06de7ac548decbc38d327409b24b0432ef6f16335 category: main optional: false - name: setuptools - version: 82.0.1 + version: 83.0.0 manager: conda platform: win-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/setuptools-82.0.1-pyh332efcf_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/setuptools-83.0.0-pyh332efcf_0.conda hash: - md5: 8e194e7b992f99a5015edbd4ebd38efd - sha256: 82088a6e4daa33329a30bc26dc19a98c7c1d3f05c0f73ce9845d4eab4924e9e1 + md5: 6bf6acbab2499830180ec88c3aff2fa4 + sha256: 48a9f96016505debadfc67f06de7ac548decbc38d327409b24b0432ef6f16335 category: main optional: false - name: six @@ -3602,45 +3626,45 @@ package: category: main optional: false - name: snowballstemmer - version: 3.1.0 + version: 3.1.1 manager: conda platform: linux-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/snowballstemmer-3.1.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/snowballstemmer-3.1.1-pyhd8ed1ab_0.conda hash: - md5: 1590bceae37377cecba443c83a44c404 - sha256: 6a2936f82e2ce5aef6b10fe2385330de2f8dc4b16832469bec83d5c90b2727e8 + md5: 46b6abe31482f6bca064b965696ae807 + sha256: ad89284ea94821c20ff87e64b948e4afc690cf5202d14c009355b0594cf23aea category: dev optional: true - name: snowballstemmer - version: 3.1.0 + version: 3.1.1 manager: conda platform: win-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/snowballstemmer-3.1.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/snowballstemmer-3.1.1-pyhd8ed1ab_0.conda hash: - md5: 1590bceae37377cecba443c83a44c404 - sha256: 6a2936f82e2ce5aef6b10fe2385330de2f8dc4b16832469bec83d5c90b2727e8 + md5: 46b6abe31482f6bca064b965696ae807 + sha256: ad89284ea94821c20ff87e64b948e4afc690cf5202d14c009355b0594cf23aea category: dev optional: true - name: sphinx - version: 8.3.0 + version: 9.1.0 manager: conda platform: linux-64 dependencies: alabaster: '>=0.7.14' babel: '>=2.13' colorama: '>=0.4.6' - docutils: '>=0.20,<0.22' + docutils: '>=0.21,<0.23' imagesize: '>=1.3' jinja2: '>=3.1' packaging: '>=23.0' pygments: '>=2.17' - python: '>=3.11' + python: '>=3.12' requests: '>=2.30.0' - roman-numerals-py: '>=1.0.0' + roman-numerals: '>=1.0.0' snowballstemmer: '>=2.2' sphinxcontrib-applehelp: '>=1.0.7' sphinxcontrib-devhelp: '>=1.0.6' @@ -3648,28 +3672,28 @@ package: sphinxcontrib-jsmath: '>=1.0.1' sphinxcontrib-qthelp: '>=1.0.6' sphinxcontrib-serializinghtml: '>=1.1.9' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-8.3.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-9.1.0-pyhd8ed1ab_0.conda hash: - md5: 6ce9ddee4c0f68bda548303196f4cf4c - sha256: 03c4d8b4cf3c5418e15f30f45be52bcde7c7e05baeec7dec5aaf6e238a411481 + md5: aabfbc2813712b71ba8beb217a978498 + sha256: 035ca4b17afca3d53650380dd94c564555b7ec2b4f8818111f98c15c7a991b7b category: dev optional: true - name: sphinx - version: 8.3.0 + version: 9.1.0 manager: conda platform: win-64 dependencies: alabaster: '>=0.7.14' babel: '>=2.13' colorama: '>=0.4.6' - docutils: '>=0.20,<0.22' + docutils: '>=0.21,<0.23' imagesize: '>=1.3' jinja2: '>=3.1' packaging: '>=23.0' pygments: '>=2.17' - python: '>=3.11' + python: '>=3.12' requests: '>=2.30.0' - roman-numerals-py: '>=1.0.0' + roman-numerals: '>=1.0.0' snowballstemmer: '>=2.2' sphinxcontrib-applehelp: '>=1.0.7' sphinxcontrib-devhelp: '>=1.0.6' @@ -3677,36 +3701,36 @@ package: sphinxcontrib-jsmath: '>=1.0.1' sphinxcontrib-qthelp: '>=1.0.6' sphinxcontrib-serializinghtml: '>=1.1.9' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-8.3.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-9.1.0-pyhd8ed1ab_0.conda hash: - md5: 6ce9ddee4c0f68bda548303196f4cf4c - sha256: 03c4d8b4cf3c5418e15f30f45be52bcde7c7e05baeec7dec5aaf6e238a411481 + md5: aabfbc2813712b71ba8beb217a978498 + sha256: 035ca4b17afca3d53650380dd94c564555b7ec2b4f8818111f98c15c7a991b7b category: dev optional: true - name: sphinx-autodoc-typehints - version: 3.5.2 + version: 3.13.0 manager: conda platform: linux-64 dependencies: - python: '>=3.11' - sphinx: '>=8.2.3' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-autodoc-typehints-3.5.2-pyhd8ed1ab_0.conda + python: '>=3.12' + sphinx: '>=9.1' + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-autodoc-typehints-3.13.0-pyhd8ed1ab_0.conda hash: - md5: abe9fc17e8bf83725cde006800c926de - sha256: 896309836e7b7682ac7ebf8783d7fde57869d28fa82e0a36413fff41f4049eac + md5: e91b69fd604f79f38f8c6cfdbc760755 + sha256: 62930995f2b6520fd14d5ce7c587d7fb5382987a3b7de0bb81e601490af35f50 category: dev optional: true - name: sphinx-autodoc-typehints - version: 3.5.2 + version: 3.13.0 manager: conda platform: win-64 dependencies: - python: '>=3.11' - sphinx: '>=8.2.3' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-autodoc-typehints-3.5.2-pyhd8ed1ab_0.conda + python: '>=3.12' + sphinx: '>=9.1' + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-autodoc-typehints-3.13.0-pyhd8ed1ab_0.conda hash: - md5: abe9fc17e8bf83725cde006800c926de - sha256: 896309836e7b7682ac7ebf8783d7fde57869d28fa82e0a36413fff41f4049eac + md5: e91b69fd604f79f38f8c6cfdbc760755 + sha256: 62930995f2b6520fd14d5ce7c587d7fb5382987a3b7de0bb81e601490af35f50 category: dev optional: true - name: sphinx-rtd-theme @@ -3715,10 +3739,10 @@ package: platform: linux-64 dependencies: sphinx_rtd_theme: 3.1.0 - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-rtd-theme-3.1.0-hd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-rtd-theme-3.1.0-hd8ed1ab_1.conda hash: - md5: 3b1a32d3d5c2064822203f2a6f3f1173 - sha256: ae5e8e514f21e6f62b63c13f684939ba007168bfd7742e8cb573fce69fbf62da + md5: 0a0c4864848d70ae012c0b3ba074aa46 + sha256: 05fc70e840c819c9755467e1b0386cca4afe84f4151aa446d083a29c81896df8 category: dev optional: true - name: sphinx-rtd-theme @@ -3727,10 +3751,10 @@ package: platform: win-64 dependencies: sphinx_rtd_theme: 3.1.0 - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-rtd-theme-3.1.0-hd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-rtd-theme-3.1.0-hd8ed1ab_1.conda hash: - md5: 3b1a32d3d5c2064822203f2a6f3f1173 - sha256: ae5e8e514f21e6f62b63c13f684939ba007168bfd7742e8cb573fce69fbf62da + md5: 0a0c4864848d70ae012c0b3ba074aa46 + sha256: 05fc70e840c819c9755467e1b0386cca4afe84f4151aa446d083a29c81896df8 category: dev optional: true - name: sphinx_rtd_theme @@ -3738,14 +3762,14 @@ package: manager: conda platform: linux-64 dependencies: - docutils: '>0.18,<0.22' - python: '>=3.8' - sphinx: '>=6,<9' + docutils: '>0.18,<0.23' + python: '>=3.10' + sphinx: '>=6,<10' sphinxcontrib-jquery: '>=4,<5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx_rtd_theme-3.1.0-pyha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx_rtd_theme-3.1.0-pyha770c72_1.conda hash: - md5: cede6bc99a0253fa676f03cfdc666d57 - sha256: 1d57a0cd74ecc0e5dc006f6591145d1abb6658464919d4aeb163d3db714f80e6 + md5: 14b91f7ff1d73c1b233e25e9fa262e5b + sha256: 3876c2b11360a1ee0f93d1449819c5a8cab8483abfed107a921cc188d3b29b4d category: dev optional: true - name: sphinx_rtd_theme @@ -3753,14 +3777,14 @@ package: manager: conda platform: win-64 dependencies: - docutils: '>0.18,<0.22' - python: '>=3.8' - sphinx: '>=6,<9' + docutils: '>0.18,<0.23' + python: '>=3.10' + sphinx: '>=6,<10' sphinxcontrib-jquery: '>=4,<5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx_rtd_theme-3.1.0-pyha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx_rtd_theme-3.1.0-pyha770c72_1.conda hash: - md5: cede6bc99a0253fa676f03cfdc666d57 - sha256: 1d57a0cd74ecc0e5dc006f6591145d1abb6658464919d4aeb163d3db714f80e6 + md5: 14b91f7ff1d73c1b233e25e9fa262e5b + sha256: 3876c2b11360a1ee0f93d1449819c5a8cab8483abfed107a921cc188d3b29b4d category: dev optional: true - name: sphinxcontrib-applehelp @@ -3918,29 +3942,29 @@ package: category: dev optional: true - name: sphinxcontrib-serializinghtml - version: 1.1.10 + version: 2.0.0 manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '>=3.10' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-serializinghtml-2.0.0-pyhd8ed1ab_0.conda hash: - md5: 3bc61f7161d28137797e038263c04c54 - sha256: 64d89ecc0264347486971a94487cb8d7c65bfc0176750cf7502b8a272f4ab557 + md5: f77df1fcf9af03b7287342638befca77 + sha256: 20b49741065fd7d3fabf98caf6d19b6436badb06b6d41f66b58f1fc2b52f37a1 category: dev optional: true - name: sphinxcontrib-serializinghtml - version: 1.1.10 + version: 2.0.0 manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '>=3.10' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-serializinghtml-2.0.0-pyhd8ed1ab_0.conda hash: - md5: 3bc61f7161d28137797e038263c04c54 - sha256: 64d89ecc0264347486971a94487cb8d7c65bfc0176750cf7502b8a272f4ab557 + md5: f77df1fcf9af03b7287342638befca77 + sha256: 20b49741065fd7d3fabf98caf6d19b6436badb06b6d41f66b58f1fc2b52f37a1 category: dev optional: true - name: tbb @@ -3980,11 +4004,11 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_h366c992_103.conda + libzlib: '>=1.3.2,<2.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_hd70dff1_3.conda hash: - md5: cffd3bdd58090148f4cfcd831f4b26ab - sha256: cafeec44494f842ffeca27e9c8b0c27ed714f93ac77ddadc6aaf726b5554ebac + md5: 48a1049e710857572fc2a832aa394d9f + sha256: 43624eab22f5f29df7d6ffe914cf442f28fd559b55b290906255492826e636e8 category: main optional: false - name: tk @@ -3995,10 +4019,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/tk-8.6.13-h6ed50ae_3.conda + url: https://repo.prefix.dev/conda-forge/win-64/tk-8.6.13-h967ab96_3.conda hash: - md5: 0481bfd9814bf525bd4b3ee4b51494c4 - sha256: 0e79810fae28f3b69fe7391b0d43f5474d6bd91d451d5f2bde02f55ae481d5e3 + md5: aaf79e2af50a151fb5b5a3e3f38b7a69 + sha256: 13fa29257d43f8e630a1e591ed77fae9bbbb236b011432f01e2034cf36e6bf03 category: main optional: false - name: tomli @@ -4026,51 +4050,51 @@ package: category: dev optional: true - name: tomlkit - version: 0.15.0 + version: 0.15.1 manager: conda platform: linux-64 dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.15.0-pyha770c72_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.15.1-pyhcf101f3_0.conda hash: - md5: 42ef10a8f7f5d55a2e267c0d5daa6387 - sha256: 1cd52f9ccb4854c4d731438afe0e833b6b71edaf5ede661152aa98efb3a7cc70 + md5: e4942e2de7436ff28be7f5645cf3c8d6 + sha256: 5cf833b4d199688b7652fb322ecc134de9555e9444d9249750de9a153421ad0a category: dev optional: true - name: tomlkit - version: 0.15.0 + version: 0.15.1 manager: conda platform: win-64 dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.15.0-pyha770c72_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.15.1-pyhcf101f3_0.conda hash: - md5: 42ef10a8f7f5d55a2e267c0d5daa6387 - sha256: 1cd52f9ccb4854c4d731438afe0e833b6b71edaf5ede661152aa98efb3a7cc70 + md5: e4942e2de7436ff28be7f5645cf3c8d6 + sha256: 5cf833b4d199688b7652fb322ecc134de9555e9444d9249750de9a153421ad0a category: dev optional: true - name: typing-extensions - version: 4.15.0 + version: 4.16.0 manager: conda platform: linux-64 dependencies: - typing_extensions: ==4.15.0 - url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda + typing_extensions: ==4.16.0 + url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.16.0-h69aa097_0.conda hash: - md5: edd329d7d3a4ab45dcf905899a7a6115 - sha256: 7c2df5721c742c2a47b2c8f960e718c930031663ac1174da67c1ed5999f7938c + md5: c680b5747e8c4c8f23dca0bb7042a8fc + sha256: b141933ece3518f6d7b75dfb59451e2f26b405a44c18e2518a83e9a02e09315c category: main optional: false - name: typing-extensions - version: 4.15.0 + version: 4.16.0 manager: conda platform: win-64 dependencies: - typing_extensions: ==4.15.0 - url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda + typing_extensions: ==4.16.0 + url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.16.0-h69aa097_0.conda hash: - md5: edd329d7d3a4ab45dcf905899a7a6115 - sha256: 7c2df5721c742c2a47b2c8f960e718c930031663ac1174da67c1ed5999f7938c + md5: c680b5747e8c4c8f23dca0bb7042a8fc + sha256: b141933ece3518f6d7b75dfb59451e2f26b405a44c18e2518a83e9a02e09315c category: main optional: false - name: typing-inspection @@ -4100,49 +4124,49 @@ package: category: main optional: false - name: typing_extensions - version: 4.15.0 + version: 4.16.0 manager: conda platform: linux-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.16.0-pyhcf101f3_0.conda hash: - md5: 0caa1af407ecff61170c9437a808404d - sha256: 032271135bca55aeb156cee361c81350c6f3fb203f57d024d7e5a1fc9ef18731 + md5: c70ad746c22219b9700931707482992c + sha256: 2d888f90af0686044882c74193ec80a90ec1943145d94a7b1b048958acda1848 category: main optional: false - name: typing_extensions - version: 4.15.0 + version: 4.16.0 manager: conda platform: win-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.16.0-pyhcf101f3_0.conda hash: - md5: 0caa1af407ecff61170c9437a808404d - sha256: 032271135bca55aeb156cee361c81350c6f3fb203f57d024d7e5a1fc9ef18731 + md5: c70ad746c22219b9700931707482992c + sha256: 2d888f90af0686044882c74193ec80a90ec1943145d94a7b1b048958acda1848 category: main optional: false - name: tzdata - version: 2025c + version: 2026c manager: conda platform: linux-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/tzdata-2026c-h151e31d_0.conda hash: - md5: ad659d0a2b3e47e38d829aa8cad2d610 - sha256: 1d30098909076af33a35017eed6f2953af1c769e273a0626a04722ac4acaba3c + md5: fcb489df604d100968b737f2cb6076c6 + sha256: b928c30ddcb0e3f544c6eade8352737e6e610e263276b90232db6a578ef899d8 category: main optional: false - name: tzdata - version: 2025c + version: 2026c manager: conda platform: win-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/tzdata-2026c-h151e31d_0.conda hash: - md5: ad659d0a2b3e47e38d829aa8cad2d610 - sha256: 1d30098909076af33a35017eed6f2953af1c769e273a0626a04722ac4acaba3c + md5: fcb489df604d100968b737f2cb6076c6 + sha256: b928c30ddcb0e3f544c6eade8352737e6e610e263276b90232db6a578ef899d8 category: main optional: false - name: ucrt @@ -4225,10 +4249,10 @@ package: platform: win-64 dependencies: vc14_runtime: '>=14.51.36231' - url: https://repo.prefix.dev/conda-forge/win-64/vc-14.5-h1b7c187_38.conda + url: https://repo.prefix.dev/conda-forge/win-64/vc-14.5-h1b7c187_39.conda hash: - md5: 774568633f3b26d7a4a6dd4f9ea6d3e1 - sha256: 61b68e5a4fc71a17f8d64b12e013a2f971ad980bd08e9c389d5e68efe1a67de0 + md5: 2eacea63f545b97342da520df6854276 + sha256: 17693b60cb54f80c60275f003f3bfc1b128af56dbfd65c4fae37c64eeb755ce1 category: main optional: false - name: vc14_runtime @@ -4238,10 +4262,10 @@ package: dependencies: ucrt: '>=10.0.20348.0' vcomp14: 14.51.36231 - url: https://repo.prefix.dev/conda-forge/win-64/vc14_runtime-14.51.36231-h1b9f54f_38.conda + url: https://repo.prefix.dev/conda-forge/win-64/vc14_runtime-14.51.36231-h1b9f54f_39.conda hash: - md5: 2cdcd8ea1010920911bb2eacb4c61227 - sha256: 957c7c65583c7107a5e76f39756c6361fcb7b0dc101ac7c0aea86e7ca09fe49c + md5: 06a5bf5a1ca16cce0df6eaa91fc42bc2 + sha256: 8153ed849c92e891eacac0f2f8d7ecb79f9b5fd7f7917fbb896f252a60a40390 category: main optional: false - name: vcomp14 @@ -4250,10 +4274,10 @@ package: platform: win-64 dependencies: ucrt: '>=10.0.20348.0' - url: https://repo.prefix.dev/conda-forge/win-64/vcomp14-14.51.36231-h1b9f54f_38.conda + url: https://repo.prefix.dev/conda-forge/win-64/vcomp14-14.51.36231-h1b9f54f_39.conda hash: - md5: 63ee70d69d7540e821940dac5d4d9ba2 - sha256: c645fdc1f0f47718431d973386e946754a10200e7ba2c32032560913a970cacd + md5: 8b53a83fda40ec679e4d63fa32fae989 + sha256: 07fb14713c4bc62e2533a2e23a363abfb0e65650681fba0ae4c840e2219350f3 category: main optional: false - name: wheel @@ -4400,6 +4424,21 @@ package: sha256: 210bd31c22bb88f5e2a167df24c95bb5f152b2ada7502f9b8c49d1f5366db423 category: dev optional: true +- name: zlib + version: 1.3.2 + manager: conda + platform: win-64 + dependencies: + libzlib: 1.3.2 + ucrt: '>=10.0.20348.0' + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/zlib-1.3.2-hfd05255_2.conda + hash: + md5: 5187ecf958be3c39110fe691cbd6873e + sha256: ef408f85f664a4b9c9dac3cb2e36154d9baa15a88984ea800e11060e0f2394a1 + category: main + optional: false - name: zlib-ng version: 2.3.3 manager: conda @@ -4457,43 +4496,43 @@ package: category: main optional: false - name: geoapps-utils - version: 0.8.0a1.dev3+6222ed5 + version: 0.7.1.dev85+89cd6f5 manager: pip platform: linux-64 dependencies: - geoh5py: 0.13.0b2.dev5+cbdabab5 + geoh5py: 0.13.1rc2.dev168+e51a7038 matplotlib: '>=3.10.0,<3.11.0' numpy: '>=2.4.2,<2.5.0' pydantic: '>=2.12.0,<2.13.0' scipy: '>=1.17.0,<1.18.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@6222ed5be1a26e8db288d91b4fbccc891e3ca5d2 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 hash: - sha256: 6222ed5be1a26e8db288d91b4fbccc891e3ca5d2 + sha256: 89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@6222ed5be1a26e8db288d91b4fbccc891e3ca5d2 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 category: main optional: false - name: geoapps-utils - version: 0.8.0a1.dev3+6222ed5 + version: 0.7.1.dev85+89cd6f5 manager: pip platform: win-64 dependencies: - geoh5py: 0.13.0b2.dev5+cbdabab5 + geoh5py: 0.13.1rc2.dev168+e51a7038 matplotlib: '>=3.10.0,<3.11.0' numpy: '>=2.4.2,<2.5.0' pydantic: '>=2.12.0,<2.13.0' scipy: '>=1.17.0,<1.18.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@6222ed5be1a26e8db288d91b4fbccc891e3ca5d2 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 hash: - sha256: 6222ed5be1a26e8db288d91b4fbccc891e3ca5d2 + sha256: 89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@6222ed5be1a26e8db288d91b4fbccc891e3ca5d2 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 category: main optional: false - name: geoh5py - version: 0.13.0b2.dev5+cbdabab5 + version: 0.13.1rc2.dev168+e51a7038 manager: pip platform: linux-64 dependencies: @@ -4502,16 +4541,16 @@ package: pillow: '>=12.2.0,<12.3.0' psutil: '>=7.2.2,<7.3.0' pydantic: '>=2.12.0,<2.13.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@cbdabab52382413a3d6176262a2bf189a9b4cd24 + url: git+https://github.com/MiraGeoscience/geoh5py.git@e51a703816e712f3c66147cb78fd16808b520f75 hash: - sha256: cbdabab52382413a3d6176262a2bf189a9b4cd24 + sha256: e51a703816e712f3c66147cb78fd16808b520f75 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@cbdabab52382413a3d6176262a2bf189a9b4cd24 + url: git+https://github.com/MiraGeoscience/geoh5py.git@e51a703816e712f3c66147cb78fd16808b520f75 category: main optional: false - name: geoh5py - version: 0.13.0b2.dev5+cbdabab5 + version: 0.13.1rc2.dev168+e51a7038 manager: pip platform: win-64 dependencies: @@ -4520,11 +4559,11 @@ package: pillow: '>=12.2.0,<12.3.0' psutil: '>=7.2.2,<7.3.0' pydantic: '>=2.12.0,<2.13.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@cbdabab52382413a3d6176262a2bf189a9b4cd24 + url: git+https://github.com/MiraGeoscience/geoh5py.git@e51a703816e712f3c66147cb78fd16808b520f75 hash: - sha256: cbdabab52382413a3d6176262a2bf189a9b4cd24 + sha256: e51a703816e712f3c66147cb78fd16808b520f75 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@cbdabab52382413a3d6176262a2bf189a9b4cd24 + url: git+https://github.com/MiraGeoscience/geoh5py.git@e51a703816e712f3c66147cb78fd16808b520f75 category: main optional: false diff --git a/py-3.13.conda-lock.yml b/py-3.13.conda-lock.yml index d01d258..4ff022c 100644 --- a/py-3.13.conda-lock.yml +++ b/py-3.13.conda-lock.yml @@ -15,8 +15,8 @@ version: 1 metadata: content_hash: - win-64: bc6181b1344600521cd6f1dee8d2b47e8f823b04a119ab0616e60009357ff824 - linux-64: 30dc1a8729f1afe543ecb8b885261b2d4c9f6317cf69986c9efb5eb31ccaf142 + win-64: fd533891192d09faea1ff9dd155c7cc2d3a664bddc5957902f89c988b479a633 + linux-64: 59a8bed888c6e8bb7e4bf76aea22ce47c367defb14bb1ae454cc7cc8b7508c9a channels: - url: conda-forge used_env_vars: [] @@ -79,29 +79,29 @@ package: category: dev optional: true - name: annotated-types - version: 0.7.0 + version: 0.8.0 manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '>=3.10' typing-extensions: '>=4.0.0' - url: https://repo.prefix.dev/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/annotated-types-0.8.0-pyhd8ed1ab_0.conda hash: - md5: 2934f256a8acfe48f6ebb4fce6cde29c - sha256: e0ea1ba78fbb64f17062601edda82097fcf815012cf52bb704150a2668110d48 + md5: 108c928d2a8551832dbc762b535e90bb + sha256: b8fcb994134d3918d1c64a9d62f4168ff85d5bfb89e698102fe4ed679fe0df24 category: main optional: false - name: annotated-types - version: 0.7.0 + version: 0.8.0 manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '>=3.10' typing-extensions: '>=4.0.0' - url: https://repo.prefix.dev/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/annotated-types-0.8.0-pyhd8ed1ab_0.conda hash: - md5: 2934f256a8acfe48f6ebb4fce6cde29c - sha256: e0ea1ba78fbb64f17062601edda82097fcf815012cf52bb704150a2668110d48 + md5: 108c928d2a8551832dbc762b535e90bb + sha256: b8fcb994134d3918d1c64a9d62f4168ff85d5bfb89e698102fe4ed679fe0df24 category: main optional: false - name: astroid @@ -131,97 +131,97 @@ package: category: dev optional: true - name: aws-c-auth - version: 0.10.1 + version: 0.10.4 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - aws-c-cal: '>=0.9.13,<0.9.14.0a0' - aws-c-common: '>=0.12.6,<0.12.7.0a0' - aws-c-http: '>=0.10.13,<0.10.14.0a0' - aws-c-io: '>=0.26.3,<0.26.4.0a0' - aws-c-sdkutils: '>=0.2.4,<0.2.5.0a0' + aws-c-cal: '>=0.9.14,<0.9.15.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-http: '>=0.11.0,<0.11.1.0a0' + aws-c-io: '>=0.27.3,<0.27.4.0a0' + aws-c-sdkutils: '>=0.2.7,<0.2.8.0a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-auth-0.10.1-ha62d5e7_3.conda + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-auth-0.10.4-hb7a77c6_1.conda hash: - md5: 55eaf7066da1299d217ab32baedc7fa8 - sha256: ccbf2cc4bea4aab6e071d67ecc2743197759f6df855787e7a5f57f7973f913a2 + md5: 4347d5ffdf34adf9c5edd10837727d96 + sha256: 845fe32ee750d4a4d3efdb1d95a8c29c3388e3ea9787b77341ec4abe4e198b11 category: main optional: false - name: aws-c-auth - version: 0.10.1 + version: 0.10.4 manager: conda platform: win-64 dependencies: - aws-c-cal: '>=0.9.13,<0.9.14.0a0' - aws-c-common: '>=0.12.6,<0.12.7.0a0' - aws-c-http: '>=0.10.13,<0.10.14.0a0' - aws-c-io: '>=0.26.3,<0.26.4.0a0' - aws-c-sdkutils: '>=0.2.4,<0.2.5.0a0' + aws-c-cal: '>=0.9.14,<0.9.15.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-http: '>=0.11.0,<0.11.1.0a0' + aws-c-io: '>=0.27.3,<0.27.4.0a0' + aws-c-sdkutils: '>=0.2.7,<0.2.8.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-c-auth-0.10.1-h8b39d88_3.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-auth-0.10.4-hc6e9107_1.conda hash: - md5: 9f25944ccae498b7afbc81ce24f4c37a - sha256: ffa66e862ddcd8a825c3d44e83404daec7b8d36b7313650e09aa39443c312f5e + md5: f7069cdc81f7a5e781f1faf6aab6c171 + sha256: cf7ab8abaac6b462463310412cc37d087a767a95920809cbe6dc0a08fe4bcfbd category: main optional: false - name: aws-c-cal - version: 0.9.13 + version: 0.9.14 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - aws-c-common: '>=0.12.6,<0.12.7.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' libgcc: '>=14' - openssl: '>=3.5.4,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-cal-0.9.13-h2c9d079_1.conda + openssl: '>=3.5.7,<4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-cal-0.9.14-h2aa3ae6_4.conda hash: - md5: 3c3d02681058c3d206b562b2e3bc337f - sha256: f21d648349a318f4ae457ea5403d542ba6c0e0343b8642038523dd612b2a5064 + md5: 9c6072e7b882d35ac956c07e493d6a9e + sha256: a67c944be1728f576c02fe8f28b0cbb78b5353415075db3da4ef71bc9dd8c00c category: main optional: false - name: aws-c-cal - version: 0.9.13 + version: 0.9.14 manager: conda platform: win-64 dependencies: - aws-c-common: '>=0.12.6,<0.12.7.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-c-cal-0.9.13-h46f3b43_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-cal-0.9.14-h032d170_4.conda hash: - md5: 7cc4953d504d4e8f3d6f4facb8549465 - sha256: 5f61082caea9fbdd6ba02702935e9dea9997459a7e6c06fd47f21b81aac882fb + md5: fda8fa85ef5d8570d5a0aadea688bb82 + sha256: cda33360c71ab9a4b4e269004a5672d712fa1ae581ecca0404181805ce6762ce category: main optional: false - name: aws-c-common - version: 0.12.6 + version: 0.14.2 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-common-0.12.6-hb03c661_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-common-0.14.2-hb03c661_0.conda hash: - md5: e36ad70a7e0b48f091ed6902f04c23b8 - sha256: 926a5b9de0a586e88669d81de717c8dd3218c51ce55658e8a16af7e7fe87c833 + md5: f3e0b2e044485ae90d4a59c77e7a0182 + sha256: 701398f1c9978c41e93cb0947869a66b7f8004e9d6e548d63d11aedae83cfb02 category: main optional: false - name: aws-c-common - version: 0.12.6 + version: 0.14.2 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-c-common-0.12.6-hfd05255_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-common-0.14.2-hfd05255_0.conda hash: - md5: b1465f33b05b9af02ad0887c01837831 - sha256: 0627691c34eb3d9fcd18c71346d9f16f83e8e58f9983e792138a2cccf387d18a + md5: 75b4445fec6477b271920f87830d22a3 + sha256: 63fc3f34a3b3d21d5f6527ba5136e132f3ad50541d4d16e385d03f4e47e1db2b category: main optional: false - name: aws-c-compression @@ -230,12 +230,12 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - aws-c-common: '>=0.12.6,<0.12.7.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-compression-0.3.2-h8b1a151_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-compression-0.3.2-h720e601_4.conda hash: - md5: f16f498641c9e05b645fe65902df661a - sha256: 1838bdc077b77168416801f4715335b65e9223f83641a2c28644f8acd8f9db0e + md5: c9be3f5854f349ae77a1a174b59e11a8 + sha256: 8e0a5513cfc42df8bd16adbd8e83a37d3ca89b8e04cb20eb04eb177bbbfea365 category: main optional: false - name: aws-c-compression @@ -243,150 +243,150 @@ package: manager: conda platform: win-64 dependencies: - aws-c-common: '>=0.12.6,<0.12.7.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-c-compression-0.3.2-hcb3a2da_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-compression-0.3.2-h1da161f_4.conda hash: - md5: 0385f2340be1776b513258adaf70e208 - sha256: f98fbb797d28de3ae41dbd42590549ee0a2a4e61772f9cc6d1a4fa45d47637de + md5: 996e5c7da8f9e255eac094d2413b40c3 + sha256: 97eaf03572b61d118616e8ee8459823c7b0f5dc26295bbab3ac3f6d671f1547a category: main optional: false - name: aws-c-http - version: 0.10.13 + version: 0.11.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - aws-c-cal: '>=0.9.13,<0.9.14.0a0' - aws-c-common: '>=0.12.6,<0.12.7.0a0' + aws-c-cal: '>=0.9.14,<0.9.15.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' aws-c-compression: '>=0.3.2,<0.3.3.0a0' - aws-c-io: '>=0.26.3,<0.26.4.0a0' + aws-c-io: '>=0.27.3,<0.27.4.0a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-http-0.10.13-h4bacb7b_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-http-0.11.0-h38ae05a_4.conda hash: - md5: 77f70a9ab785a146dbf66fba00131403 - sha256: 38cfc8894db6729770ac18f900296c3f7c20f349a5586a8d8e1a62571fce61d5 + md5: 97f2799ae6ff7b6f52dfa321fef9676b + sha256: 4b939b4a76a11c9ec50c891ae9bf232da8dcaf8797701df1e79ae51c988be2d4 category: main optional: false - name: aws-c-http - version: 0.10.13 + version: 0.11.0 manager: conda platform: win-64 dependencies: - aws-c-cal: '>=0.9.13,<0.9.14.0a0' - aws-c-common: '>=0.12.6,<0.12.7.0a0' + aws-c-cal: '>=0.9.14,<0.9.15.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' aws-c-compression: '>=0.3.2,<0.3.3.0a0' - aws-c-io: '>=0.26.3,<0.26.4.0a0' + aws-c-io: '>=0.27.3,<0.27.4.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-c-http-0.10.13-h612f3e8_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-http-0.11.0-h667fc28_4.conda hash: - md5: 88626be3c14ac87c09629dcbf65e6279 - sha256: cf939d4a0849bc41421b4c380b2bbbc0beb1fd9b375bb9627b98d9415ec9ea69 + md5: c17a284b159959a8639298ed7da8ad0b + sha256: 304587d77daccde630fbdbb8ae2f3994cf583427f710c60d62e88bc97c4ff013 category: main optional: false - name: aws-c-io - version: 0.26.3 + version: 0.27.3 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - aws-c-cal: '>=0.9.13,<0.9.14.0a0' - aws-c-common: '>=0.12.6,<0.12.7.0a0' + aws-c-cal: '>=0.9.14,<0.9.15.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' libgcc: '>=14' - s2n: '>=1.7.3,<1.7.4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-io-0.26.3-hb18f61d_2.conda + s2n: '>=1.7.5,<1.7.6.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-io-0.27.3-h6f4d18d_1.conda hash: - md5: d1337309873c443bcc9f118b67eed84e - sha256: eee7f7aa2c5b9e0a31edba7b81482036fbe751c40bc6697fd057fbd2c656406b + md5: bd19b685b88557830f1a617a6d404eb2 + sha256: 94c32ca672ce290e250aea1cfb92582cca4658bdc3ec7cb1ceef254f34451595 category: main optional: false - name: aws-c-io - version: 0.26.3 + version: 0.27.3 manager: conda platform: win-64 dependencies: - aws-c-cal: '>=0.9.13,<0.9.14.0a0' - aws-c-common: '>=0.12.6,<0.12.7.0a0' + aws-c-cal: '>=0.9.14,<0.9.15.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-c-io-0.26.3-h0d5b9f9_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-io-0.27.3-hbdc738f_1.conda hash: - md5: 86eb8e8959c2d6053a50ad31ef6e5b5d - sha256: 7cf5aca930fc12f4e27bd4645d20224d608c2c650443e5633faea3bf8b0a7736 + md5: 579600368b15fb523d69e2a3f8a9bc55 + sha256: 36816ff394ee736fcf705db5b1c1491c98f6f77ef84791d73b71e78154df402d category: main optional: false - name: aws-c-s3 - version: 0.12.2 + version: 0.12.8 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - aws-c-auth: '>=0.10.1,<0.10.2.0a0' - aws-c-cal: '>=0.9.13,<0.9.14.0a0' - aws-c-common: '>=0.12.6,<0.12.7.0a0' - aws-c-http: '>=0.10.13,<0.10.14.0a0' - aws-c-io: '>=0.26.3,<0.26.4.0a0' + aws-c-auth: '>=0.10.4,<0.10.5.0a0' + aws-c-cal: '>=0.9.14,<0.9.15.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-http: '>=0.11.0,<0.11.1.0a0' + aws-c-io: '>=0.27.3,<0.27.4.0a0' aws-checksums: '>=0.2.10,<0.2.11.0a0' libgcc: '>=14' - openssl: '>=3.5.6,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-s3-0.12.2-he6ee468_1.conda + openssl: '>=3.5.7,<4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-s3-0.12.8-h46fcd08_1.conda hash: - md5: 50ae8372984b8b98e056ac8f6b70ab29 - sha256: 4cecb4d595b7cf558087c37b8131cae5204b2c64d75f6b951dc3731d3f872bb8 + md5: 706aa99414d18db5b23475b45cc93a0b + sha256: a423bffbb0e6cacb5e2a0861b918ba3180e5132509afb1faf225ee9f0ec8f981 category: main optional: false - name: aws-c-s3 - version: 0.12.2 + version: 0.12.8 manager: conda platform: win-64 dependencies: - aws-c-auth: '>=0.10.1,<0.10.2.0a0' - aws-c-cal: '>=0.9.13,<0.9.14.0a0' - aws-c-common: '>=0.12.6,<0.12.7.0a0' - aws-c-http: '>=0.10.13,<0.10.14.0a0' - aws-c-io: '>=0.26.3,<0.26.4.0a0' + aws-c-auth: '>=0.10.4,<0.10.5.0a0' + aws-c-cal: '>=0.9.14,<0.9.15.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-http: '>=0.11.0,<0.11.1.0a0' + aws-c-io: '>=0.27.3,<0.27.4.0a0' aws-checksums: '>=0.2.10,<0.2.11.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-c-s3-0.12.2-h61b906f_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-s3-0.12.8-hd7ee1a1_1.conda hash: - md5: 2c4cd5a0bb004c9975a4d7257a55c34a - sha256: 8d9c747d71c493e6d5e5a125a267c6ac51baba1e4b89c01c2a4084239267b8e1 + md5: 4ac02fa15bf3809101e2eeb340b6078c + sha256: c79e62931e163b65a01786d5ed7156ecca2ab748b7c7835756d34e438035706a category: main optional: false - name: aws-c-sdkutils - version: 0.2.4 + version: 0.2.7 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - aws-c-common: '>=0.12.6,<0.12.7.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-sdkutils-0.2.4-h8b1a151_4.conda + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-sdkutils-0.2.7-h720e601_2.conda hash: - md5: c7e3e08b7b1b285524ab9d74162ce40b - sha256: 9d62c5029f6f8219368a8665f0a549da572dc777f52413b7d75609cacdbc02cc + md5: 816f62fa82532118ebb2398382090945 + sha256: e419e179e04021fc680d98af23fac4b4c2369cea61171087e57a734e968dd9bd category: main optional: false - name: aws-c-sdkutils - version: 0.2.4 + version: 0.2.7 manager: conda platform: win-64 dependencies: - aws-c-common: '>=0.12.6,<0.12.7.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-c-sdkutils-0.2.4-hcb3a2da_4.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-sdkutils-0.2.7-h1da161f_2.conda hash: - md5: 3c97faee5be6fd0069410cf2bca71c85 - sha256: c86c30edba7457e04d905c959328142603b62d7d1888aed893b2e21cca9c302c + md5: 882d834f12e0abf4c7a0e9bb0c72e281 + sha256: d5da00123d9ceb082e61fd5bf82fff9cd5bec0b8e1ae91454f29155a59499bf5 category: main optional: false - name: aws-checksums @@ -395,12 +395,12 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - aws-c-common: '>=0.12.6,<0.12.7.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-checksums-0.2.10-h8b1a151_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/aws-checksums-0.2.10-h720e601_4.conda hash: - md5: f8e1bcc5c7d839c5882e94498791be08 - sha256: 09472dd5fa4473cffd44741ee4c1112f2c76d7168d1343de53c2ad283dc1efa6 + md5: 24ee781effc5779206a80139323c9caf + sha256: 6cc8617854a43040291dea791fe111ba408e7a5bbd9ee9e5a99375da7a16846b category: main optional: false - name: aws-checksums @@ -408,14 +408,14 @@ package: manager: conda platform: win-64 dependencies: - aws-c-common: '>=0.12.6,<0.12.7.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-checksums-0.2.10-hcb3a2da_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-checksums-0.2.10-h1da161f_4.conda hash: - md5: 96e950e5007fb691322db578736aba52 - sha256: 505b2365bbf3c197c9c2e007ba8262bcdaaddc970f84ce67cf73868ca2990989 + md5: a3c81085892f2983979836f2937291ce + sha256: 2227fa77f395f1b4699533709e7ef140a8292fccb31376ec5498565c7ad33225 category: main optional: false - name: babel @@ -443,7 +443,7 @@ package: category: dev optional: true - name: backports.zstd - version: 1.5.0 + version: 1.6.0 manager: conda platform: linux-64 dependencies: @@ -452,14 +452,14 @@ package: python: '' python_abi: 3.13.* zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/backports.zstd-1.5.0-py313h18e8e13_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/backports.zstd-1.6.0-py313h18e8e13_0.conda hash: - md5: 0de0c2c1f2677ea074bdda91de5a4c01 - sha256: 310e114a783b249517d1dd6e74b3f339af30e947bc93446ae4e4e9c86fff7478 + md5: fbc7d3707f09cae6648e6eb1b6203a5c + sha256: d7aca2b34335035ef80eaaebff4e5a0ae524b6f3792a82a144d38c4a81f42916 category: dev optional: true - name: backports.zstd - version: 1.5.0 + version: 1.6.0 manager: conda platform: win-64 dependencies: @@ -469,10 +469,10 @@ package: vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/backports.zstd-1.5.0-py313h2a31948_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/backports.zstd-1.6.0-py313h2a31948_0.conda hash: - md5: e3aaaf11ae0e2e2bab3b418abc678158 - sha256: 254383b75bf920e72ff0629c6a1828aefbacc9e9f27a168357a98aa50ae16c23 + md5: 144ae232f6f920307f4aadc088137589 + sha256: 65eb354dbaba5925f536613c8d645a6254226eb6c6f16cc6e57033eb97cc0159 category: dev optional: true - name: brotli @@ -599,40 +599,40 @@ package: category: main optional: false - name: c-ares - version: 1.34.6 + version: 1.34.8 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/c-ares-1.34.6-hb03c661_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/c-ares-1.34.8-hb03c661_0.conda hash: - md5: 920bb03579f15389b9e512095ad995b7 - sha256: cc9accf72fa028d31c2a038460787751127317dcfa991f8d1f1babf216bb454e + md5: 6130ad6705adc993b5d8482b7f66e01f + sha256: dee93a82d045f9aa8277829aa465224afa3c7a6ac18388de66099b2be7f705e7 category: main optional: false - name: ca-certificates - version: 2026.5.20 + version: 2026.7.22 manager: conda platform: linux-64 dependencies: __unix: '' - url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2026.5.20-hbd8a1cb_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2026.7.22-hbd8a1cb_0.conda hash: - md5: 489b8e97e666c93f68fdb35c3c9b957f - sha256: 9812a303a1395e1dafbd92e5bc8a1ff6013bcbba0a09c7f03a8d23e43560aa9b + md5: 0f51e2391ade309db462a55611263e9c + sha256: 0a0544cf95f64394fe4959286f5c71f5444ad58feb0602e53becb27448d24da6 category: main optional: false - name: ca-certificates - version: 2026.5.20 + version: 2026.7.22 manager: conda platform: win-64 dependencies: __win: '' - url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2026.5.20-h4c7d964_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2026.7.22-h4c7d964_0.conda hash: - md5: c9b86eece2f944541b86441c94117ab3 - sha256: 86981d764e4ea1883409d30447ff9da46127426d31a63df08315aaded768e652 + md5: e27d2ac27b096dc51fedfcf775a53f9b + sha256: 95e8e74062a5fe5f870ac8c90302b6e89945165fdaed7810606e84ddee6aac12 category: main optional: false - name: cached-property @@ -641,10 +641,10 @@ package: platform: linux-64 dependencies: cached_property: '>=1.5.2,<1.5.3.0a0' - url: https://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_2.conda hash: - md5: 9b347a7ec10940d3f7941ff6c460b551 - sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17 + md5: 1990eb3f49022846fbc7fc9624a0ee43 + sha256: 0d00dd61cb91b1bd1536600c64c9db4f94f3c699fec42864d0a2f4bc2ad8c3e8 category: main optional: false - name: cached-property @@ -653,10 +653,10 @@ package: platform: win-64 dependencies: cached_property: '>=1.5.2,<1.5.3.0a0' - url: https://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_2.conda hash: - md5: 9b347a7ec10940d3f7941ff6c460b551 - sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17 + md5: 1990eb3f49022846fbc7fc9624a0ee43 + sha256: 0d00dd61cb91b1bd1536600c64c9db4f94f3c699fec42864d0a2f4bc2ad8c3e8 category: main optional: false - name: cached_property @@ -664,11 +664,11 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.6' - url: https://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 + python: '>=3.9' + url: https://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_2.conda hash: - md5: 576d629e47797577ab0f1b351297ef4a - sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7 + md5: f71e6840332854fd2eac6c3229768a9c + sha256: b1808a7811b5688d045b204425bb7ee824b340b40025b4ad0a39b4db1f4f1c98 category: main optional: false - name: cached_property @@ -676,59 +676,59 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.6' - url: https://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 + python: '>=3.9' + url: https://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_2.conda hash: - md5: 576d629e47797577ab0f1b351297ef4a - sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7 + md5: f71e6840332854fd2eac6c3229768a9c + sha256: b1808a7811b5688d045b204425bb7ee824b340b40025b4ad0a39b4db1f4f1c98 category: main optional: false - name: certifi - version: 2026.5.20 + version: 2026.7.22 manager: conda platform: linux-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/certifi-2026.5.20-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/certifi-2026.7.22-pyhd8ed1ab_0.conda hash: - md5: 9fefff2f745ea1cc2ef15211a20c054a - sha256: 645655a3510e38e625da136595f3f16f2130c3263630cc3bc8f60f619ddbe490 + md5: 37e13edbe3b48f1095a9d085ef9cd83b + sha256: fb167de4388e64e52aa3907ed099afab944c1fa6e5f74b281a312dae1bcf7f3b category: dev optional: true - name: certifi - version: 2026.5.20 + version: 2026.7.22 manager: conda platform: win-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/certifi-2026.5.20-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/certifi-2026.7.22-pyhd8ed1ab_0.conda hash: - md5: 9fefff2f745ea1cc2ef15211a20c054a - sha256: 645655a3510e38e625da136595f3f16f2130c3263630cc3bc8f60f619ddbe490 + md5: 37e13edbe3b48f1095a9d085ef9cd83b + sha256: fb167de4388e64e52aa3907ed099afab944c1fa6e5f74b281a312dae1bcf7f3b category: dev optional: true - name: charset-normalizer - version: 3.4.7 + version: 3.4.9 manager: conda platform: linux-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.7-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.9-pyhd8ed1ab_0.conda hash: - md5: a9167b9571f3baa9d448faa2139d1089 - sha256: 3f9483d62ce24ecd063f8a5a714448445dc8d9e201147c46699fc0033e824457 + md5: d154b40b109e503430979e8a8d099eaf + sha256: 8d8813ef655b4e75e4fb897abd83ad548882efad7b4e836b021b797f42780799 category: dev optional: true - name: charset-normalizer - version: 3.4.7 + version: 3.4.9 manager: conda platform: win-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.7-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.9-pyhd8ed1ab_0.conda hash: - md5: a9167b9571f3baa9d448faa2139d1089 - sha256: 3f9483d62ce24ecd063f8a5a714448445dc8d9e201147c46699fc0033e824457 + md5: d154b40b109e503430979e8a8d099eaf + sha256: 8d8813ef655b4e75e4fb897abd83ad548882efad7b4e836b021b797f42780799 category: dev optional: true - name: colorama @@ -790,7 +790,7 @@ package: category: main optional: false - name: coverage - version: 7.14.1 + version: 7.15.2 manager: conda platform: linux-64 dependencies: @@ -799,14 +799,14 @@ package: python: '>=3.13,<3.14.0a0' python_abi: 3.13.* tomli: '' - url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.14.1-py313h3dea7bd_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.15.2-py313h3dea7bd_0.conda hash: - md5: 86bbb569988f077e5cb30acac5799599 - sha256: b4ff99ffe4e60119c2f99fa29234b4267f7e0f43dbf5396dad0f8adaf95284e2 + md5: 0ca456463b87657599aecdb9c664b3d8 + sha256: 83ae7eb4af7533369cd373320be5973de018b5dee01a43c42c06bf5a773ca306 category: dev optional: true - name: coverage - version: 7.14.1 + version: 7.15.2 manager: conda platform: win-64 dependencies: @@ -816,10 +816,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.14.1-py313hd650c13_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.15.2-py313hd650c13_0.conda hash: - md5: b814bf3906ccacfef0904c17b8e46d69 - sha256: cda15c313312f6fe90489df9b37dd0277fa7dbd4d52f3ea0aad2c48806bc1e55 + md5: 02f704464af27eda68e63a4910bac78c + sha256: bed6036169a31b2b4171b165bc17e101cb9023bb66303b29306782b7f216619b category: dev optional: true - name: cycler @@ -907,27 +907,27 @@ package: category: main optional: false - name: docutils - version: 0.21.2 + version: 0.22.4 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_1.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/docutils-0.22.4-pyhd8ed1ab_0.conda hash: - md5: 24c1ca34138ee57de72a943237cde4cc - sha256: fa5966bb1718bbf6967a85075e30e4547901410cc7cb7b16daf68942e9a94823 + md5: d6bd3cd217e62bbd7efe67ff224cd667 + sha256: 0d605569a77350fb681f9ed8d357cc71649b59a304099dc9d09fbeec5e84a65e category: dev optional: true - name: docutils - version: 0.21.2 + version: 0.22.4 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_1.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/docutils-0.22.4-pyhd8ed1ab_0.conda hash: - md5: 24c1ca34138ee57de72a943237cde4cc - sha256: fa5966bb1718bbf6967a85075e30e4547901410cc7cb7b16daf68942e9a94823 + md5: d6bd3cd217e62bbd7efe67ff224cd667 + sha256: 0d605569a77350fb681f9ed8d357cc71649b59a304099dc9d09fbeec5e84a65e category: dev optional: true - name: exceptiongroup @@ -1011,38 +1011,39 @@ package: dependencies: libfreetype: 2.14.3 libfreetype6: 2.14.3 - url: https://repo.prefix.dev/conda-forge/win-64/freetype-2.14.3-h57928b3_0.conda + zlib: '' + url: https://repo.prefix.dev/conda-forge/win-64/freetype-2.14.3-h57928b3_1.conda hash: - md5: 507b36518b5a595edda64066c820a6ef - sha256: 70815dbae6ccdfbb0a47269101a260b0a2e11a2ab5c0f7209f325d01bdb18fb7 + md5: e77293b32225b136a8be300f93d0e89f + sha256: a0e419e96146159f12344c870dca608d11bca36841f228092b986ffc2e1e0f02 category: main optional: false - name: h2 - version: 4.3.0 + version: 4.4.0 manager: conda platform: linux-64 dependencies: - hpack: '>=4.1,<5' + hpack: '>=4.2,<5' hyperframe: '>=6.1,<7' python: '' - url: https://repo.prefix.dev/conda-forge/noarch/h2-4.3.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/h2-4.4.0-pyhcf101f3_0.conda hash: - md5: 164fc43f0b53b6e3a7bc7dce5e4f1dc9 - sha256: 84c64443368f84b600bfecc529a1194a3b14c3656ee2e832d15a20e0329b6da3 + md5: aae3214aab65ae635fbb3cc455596a86 + sha256: 1bdffcb701cf1f4429733fc2e194995bab5ecc71073d84a434dcfb57049a4265 category: dev optional: true - name: h2 - version: 4.3.0 + version: 4.4.0 manager: conda platform: win-64 dependencies: - hpack: '>=4.1,<5' + hpack: '>=4.2,<5' hyperframe: '>=6.1,<7' python: '' - url: https://repo.prefix.dev/conda-forge/noarch/h2-4.3.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/h2-4.4.0-pyhcf101f3_0.conda hash: - md5: 164fc43f0b53b6e3a7bc7dce5e4f1dc9 - sha256: 84c64443368f84b600bfecc529a1194a3b14c3656ee2e832d15a20e0329b6da3 + md5: aae3214aab65ae635fbb3cc455596a86 + sha256: 1bdffcb701cf1f4429733fc2e194995bab5ecc71073d84a434dcfb57049a4265 category: dev optional: true - name: h5py @@ -1088,24 +1089,24 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - aws-c-auth: '>=0.10.1,<0.10.2.0a0' - aws-c-common: '>=0.12.6,<0.12.7.0a0' - aws-c-http: '>=0.10.13,<0.10.14.0a0' - aws-c-io: '>=0.26.3,<0.26.4.0a0' - aws-c-s3: '>=0.12.2,<0.12.3.0a0' - aws-c-sdkutils: '>=0.2.4,<0.2.5.0a0' + aws-c-auth: '>=0.10.4,<0.10.5.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-http: '>=0.11.0,<0.11.1.0a0' + aws-c-io: '>=0.27.3,<0.27.4.0a0' + aws-c-s3: '>=0.12.8,<0.12.9.0a0' + aws-c-sdkutils: '>=0.2.7,<0.2.8.0a0' libaec: '>=1.1.5,<2.0a0' - libcurl: '>=8.20.0,<9.0a0' + libcurl: '>=8.21.0,<9.0a0' libgcc: '>=14' libgfortran: '' libgfortran5: '>=14.3.0' libstdcxx: '>=14' libzlib: '>=1.3.2,<2.0a0' - openssl: '>=3.5.6,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/hdf5-2.1.0-nompi_h87a9417_105.conda + openssl: '>=3.5.7,<4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/hdf5-2.1.0-nompi_h654f344_110.conda hash: - md5: 0d0595612fa229dddb5fc565c260a11f - sha256: beb8a2fb18924ca7b5b82cfb50f008f882f577daef2c00ed88022abea35fec76 + md5: 58484580a0f626dbe7d5145f014dbfd4 + sha256: 548411cb10baf1122c46cfef555936c385137d3637b75bd322e7574eda933842 category: main optional: false - name: hdf5 @@ -1113,47 +1114,47 @@ package: manager: conda platform: win-64 dependencies: - aws-c-auth: '>=0.10.1,<0.10.2.0a0' - aws-c-common: '>=0.12.6,<0.12.7.0a0' - aws-c-http: '>=0.10.13,<0.10.14.0a0' - aws-c-io: '>=0.26.3,<0.26.4.0a0' - aws-c-s3: '>=0.12.2,<0.12.3.0a0' - aws-c-sdkutils: '>=0.2.4,<0.2.5.0a0' + aws-c-auth: '>=0.10.4,<0.10.5.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-http: '>=0.11.0,<0.11.1.0a0' + aws-c-io: '>=0.27.3,<0.27.4.0a0' + aws-c-s3: '>=0.12.8,<0.12.9.0a0' + aws-c-sdkutils: '>=0.2.7,<0.2.8.0a0' libaec: '>=1.1.5,<2.0a0' - libcurl: '>=8.20.0,<9.0a0' + libcurl: '>=8.21.0,<9.0a0' libzlib: '>=1.3.2,<2.0a0' - openssl: '>=3.5.6,<4.0a0' + openssl: '>=3.5.7,<4.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/hdf5-2.1.0-nompi_h0a39f1e_105.conda + url: https://repo.prefix.dev/conda-forge/win-64/hdf5-2.1.0-nompi_h0d3e4b2_110.conda hash: - md5: d5850b9e97b9a577441067628fb8d573 - sha256: 2f2d49ccf163a4bdf556662fb2949bdf408940e2db67a2d15be2d8be247b6e43 + md5: 146134e4db96613ecdc63cf44bec847d + sha256: f6c79581d03d2e2e0cbbb0391d21a149a1f9c311159a9f74c6be8a79e2f696d9 category: main optional: false - name: hpack - version: 4.1.0 + version: 4.2.0 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/hpack-4.2.0-pyhd8ed1ab_0.conda hash: - md5: 0a802cb9888dd14eeefc611f05c40b6e - sha256: 6ad78a180576c706aabeb5b4c8ceb97c0cb25f1e112d76495bff23e3779948ba + md5: b395909221b9bd1df066e5930e18855b + sha256: fdcea5d7cb314485d3907192ef024c704311548c5b0cbeb390cd1951051e29d2 category: dev optional: true - name: hpack - version: 4.1.0 + version: 4.2.0 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/hpack-4.2.0-pyhd8ed1ab_0.conda hash: - md5: 0a802cb9888dd14eeefc611f05c40b6e - sha256: 6ad78a180576c706aabeb5b4c8ceb97c0cb25f1e112d76495bff23e3779948ba + md5: b395909221b9bd1df066e5930e18855b + sha256: fdcea5d7cb314485d3907192ef024c704311548c5b0cbeb390cd1951051e29d2 category: dev optional: true - name: hyperframe @@ -1188,34 +1189,48 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' libstdcxx: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/icu-78.3-h33c6efd_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/icu-78.3-h54a6638_2.conda hash: - md5: c80d8a3b84358cb967fa81e7075fbc8a - sha256: fbf86c4a59c2ed05bbffb2ba25c7ed94f6185ec30ecb691615d42342baa1a16a + md5: 4ef4b977bb216a3001a3334696a80850 + sha256: d7c260b7e1cf22ce04d6ba8a86eabf4e6c50bc96a5c27fe2ecb32298af3e88eb + category: main + optional: false +- name: icu + version: '78.3' + manager: conda + platform: win-64 + dependencies: + ucrt: '>=10.0.20348.0' + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/icu-78.3-h5112557_2.conda + hash: + md5: e596942e8ee6ee17fdcf1e6a77757a66 + sha256: 75c549b55b673e15de8785a8e5dd85bca7eb612eee0ff4dc8d7bdaa15eacbdbb category: main optional: false - name: idna - version: '3.17' + version: '3.18' manager: conda platform: linux-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/idna-3.17-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/idna-3.18-pyhcf101f3_0.conda hash: - md5: c75e517ebd7a5c5272fe111e8b162228 - sha256: f9fe1f9e539c544405ccb7ba632d4ba79edf243c05554d76ace073158a80b691 + md5: 577b04680ae422adb86fc60d7b940659 + sha256: c75632ea624aa450a394f570749420c5a2e0997d0216bc29d5d45b0f39df0426 category: dev optional: true - name: idna - version: '3.17' + version: '3.18' manager: conda platform: win-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/idna-3.17-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/idna-3.18-pyhcf101f3_0.conda hash: - md5: c75e517ebd7a5c5272fe111e8b162228 - sha256: f9fe1f9e539c544405ccb7ba632d4ba79edf243c05554d76ace073158a80b691 + md5: 577b04680ae422adb86fc60d7b940659 + sha256: c75632ea624aa450a394f570749420c5a2e0997d0216bc29d5d45b0f39df0426 category: dev optional: true - name: imagesize @@ -1399,11 +1414,11 @@ package: libedit: '>=3.1.20250104,<4.0a0' libgcc: '>=14' libstdcxx: '>=14' - openssl: '>=3.5.5,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/krb5-1.22.2-ha1258a1_0.conda + openssl: '>=3.5.7,<4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/krb5-1.22.2-hbde042b_1.conda hash: - md5: fb53fb07ce46a575c5d004bbc96032c2 - sha256: 3e307628ca3527448dd1cb14ad7bb9d04d1d28c7d4c5f97ba196ae984571dd25 + md5: 54157a1c8c0bb70f62dd0b17fba7e7f2 + sha256: 9b07046870772f28740e3f6149f09ff222843733087a33c5540b169c6289652d category: main optional: false - name: krb5 @@ -1411,14 +1426,14 @@ package: manager: conda platform: win-64 dependencies: - openssl: '>=3.5.5,<4.0a0' + openssl: '>=3.5.7,<4.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/krb5-1.22.2-h0ea6238_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/krb5-1.22.2-h719d79b_1.conda hash: - md5: 4432f52dc0c8eb6a7a6abc00a037d93c - sha256: eb60f1ad8b597bcf95dee11bc11fe71a8325bc1204cf51d2bb1f2120ffd77761 + md5: 00335c2c4a98656554771aaf6f1a7400 + sha256: c55745796e762ba9e817ab1fc0f21f1a049e202f90fa762df39578f37923f6c2 category: main optional: false - name: lcms2 @@ -1453,44 +1468,44 @@ package: category: main optional: false - name: ld_impl_linux-64 - version: 2.45.1 + version: 2.46.1 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.45.1-default_hbd61a6d_102.conda + url: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.46.1-default_hbd61a6d_102.conda hash: - md5: 18335a698559cdbcd86150a48bf54ba6 - sha256: 3d584956604909ff5df353767f3a2a2f60e07d070b328d109f30ac40cd62df6c + md5: 449500f2c089da11c40f5c21312e3e07 + sha256: 27d83f1188cd19bcb7754a078b3fa7f4cfb8527f8eb2fde54dd01fc529d1adec category: main optional: false - name: lerc - version: 4.1.0 + version: 4.2.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' libstdcxx: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/lerc-4.1.0-hdb68285_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/lerc-4.2.0-hdb68285_0.conda hash: - md5: a752488c68f2e7c456bcbd8f16eec275 - sha256: f84cb54782f7e9cea95e810ea8fef186e0652d0fa73d3009914fa2c1262594e1 + md5: fb9d356b1a57d6d54768be7ebd5fce09 + sha256: bf9fdebf55d8bc99d83531cdffda00703f4dc5f93a1a956768c147362c72feda category: main optional: false - name: lerc - version: 4.1.0 + version: 4.2.0 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/lerc-4.1.0-hd936e49_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/lerc-4.2.0-hd936e49_0.conda hash: - md5: 54b231d595bc1ff9bff668dd443ee012 - sha256: 45df58fca800b552b17c3914cc9ab0d55a82c5172d72b5c44a59c710c06c5473 + md5: add59e2b60ac9d4299d17c938185c75a + sha256: 93d666f63f284ef77b87b0b1f77b70f7d36d315a132f9afa64bc0012d937ba39 category: main optional: false - name: libaec @@ -1655,7 +1670,7 @@ package: category: main optional: false - name: libcurl - version: 8.20.0 + version: 8.21.0 manager: conda platform: linux-64 dependencies: @@ -1663,31 +1678,33 @@ package: krb5: '>=1.22.2,<1.23.0a0' libgcc: '>=14' libnghttp2: '>=1.68.1,<2.0a0' + libpsl: '>=0.22.0,<0.23.0a0' libssh2: '>=1.11.1,<2.0a0' libzlib: '>=1.3.2,<2.0a0' - openssl: '>=3.5.6,<4.0a0' + openssl: '>=3.5.7,<4.0a0' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libcurl-8.20.0-hcf29cc6_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libcurl-8.21.0-hae6b9f4_2.conda hash: - md5: c3cc2864f82a944bc90a7beb4d3b0e88 - sha256: 75963a5dd913311f59a35dbd307592f4fa754c4808aff9c33edb430c415e38eb + md5: f9c59d277a16ec8f272b2d5dd2ec3335 + sha256: ba8354084b34fce56d5697982fce4a384c148e972e15c0ab891187617fe7ec29 category: main optional: false - name: libcurl - version: 8.20.0 + version: 8.21.0 manager: conda platform: win-64 dependencies: krb5: '>=1.22.2,<1.23.0a0' + libpsl: '>=0.22.0,<0.23.0a0' libssh2: '>=1.11.1,<2.0a0' libzlib: '>=1.3.2,<2.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libcurl-8.20.0-h8206538_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libcurl-8.21.0-h51a1c48_2.conda hash: - md5: 7bee27a8f0a295117ccb864f30d2d87e - sha256: f4ce5aa835a698532feaa368e804365a7e45a9edebe006a8e1c80505d893c24e + md5: 88c875a8f34785d6f6185ceb646154fa + sha256: e9a9231e6c04b82979a6a1a4f90b8a697dc3a42884e709dee8ba5d0355b45296 category: main optional: false - name: libdeflate @@ -1750,10 +1767,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libexpat-2.8.1-hecca717_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libexpat-2.8.1-hecca717_1.conda hash: - md5: 93764a5ca80616e9c10106cdaec92f74 - sha256: 363018b25fdb5534c79783d912bd4b685a3547f4fc5996357ad548899b0ee8e7 + md5: b24d3c612f71e7aa74158d92106318b2 + sha256: 16feffd9ddbbe5b718515d38ee376c685ba95491cd901244e24671d20b952a77 category: main optional: false - name: libexpat @@ -1764,10 +1781,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libexpat-2.8.1-hac47afa_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libexpat-2.8.1-hac47afa_1.conda hash: - md5: 23eb9474a16d4b9f6f27429989e82002 - sha256: a65e518c20d1482182bc0f1f6dd5d992f25ca44c3b32307be39ae8310db8f060 + md5: ccc490c81ffe14181861beac0e8f3169 + sha256: 1a54d874addda73b6f7164d5f3905821277a1831bcc05edd74b3085391688571 category: main optional: false - name: libffi @@ -1815,10 +1832,10 @@ package: platform: win-64 dependencies: libfreetype6: '>=2.14.3' - url: https://repo.prefix.dev/conda-forge/win-64/libfreetype-2.14.3-h57928b3_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libfreetype-2.14.3-h57928b3_1.conda hash: - md5: d9f70dd06674e26b6d5a657ddd22b568 - sha256: 71fae9ae05563ceec70adceb7bc66faa326a81a6590a8aac8a5074019070a2d8 + md5: e45b52fb9a81c9e2708465a706e05952 + sha256: 035d0c67bf9f7a16f4a1764f420c120f1a995d071bb265fcc66ef688ef709d7b category: main optional: false - name: libfreetype6 @@ -1841,15 +1858,15 @@ package: manager: conda platform: win-64 dependencies: - libpng: '>=1.6.55,<1.7.0a0' + libpng: '>=1.6.58,<1.7.0a0' libzlib: '>=1.3.2,<2.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libfreetype6-2.14.3-hdbac1cb_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libfreetype6-2.14.3-hdbac1cb_1.conda hash: - md5: f9975a0177ee6cdda10c86d1db1186b0 - sha256: 497e9ab7c80f579e1b2850523740d6a543b8020f6b43be6bd6e83b3a6fb7fb32 + md5: 4e4d54f9f98383d977ba56ef39ebf46d + sha256: 0bbd19c9f7c4d0232b31892e6a4d1f82b8d19d1b84d89725f1f491b336447758 category: main optional: false - name: libgcc @@ -1859,10 +1876,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' _openmp_mutex: '>=4.5' - url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-15.2.0-he0feb66_19.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-15.2.0-he0feb66_20.conda hash: - md5: 57736f29cc2b0ec0b6c2952d3f101b6a - sha256: 8e0a3b5e41272e5678499b5dfc4cddb673f9e935de01eb0767ce857001229f46 + md5: 3533de187cf7283f96bfdb28ad73e2bc + sha256: e3b7bb287d1685b15781a6d9e3408d6ddaff23f5a1d0d6c0140619dd3950fe72 category: main optional: false - name: libgcc @@ -1872,10 +1889,10 @@ package: dependencies: _openmp_mutex: '>=4.5' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' - url: https://repo.prefix.dev/conda-forge/win-64/libgcc-15.2.0-h8ee18e1_19.conda + url: https://repo.prefix.dev/conda-forge/win-64/libgcc-15.2.0-h8ee18e1_20.conda hash: - md5: cc5d690fc1c629038f13c68e88e65f44 - sha256: 80e80ef5e31b00b12539db3c5aaecde60dab91381abfc1060e323d5c3b016dce + md5: 00528c2577868b9cfefec85b8fe26d66 + sha256: 954dcca1cbf2ad1e7ac2129bf77f787bec0a2eb9edb3f8b79c9a93b492a20c40 category: main optional: false - name: libgcc-ng @@ -1884,10 +1901,10 @@ package: platform: linux-64 dependencies: libgcc: 15.2.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-ng-15.2.0-h69a702a_19.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-ng-15.2.0-h69a702a_20.conda hash: - md5: 331ee9b72b9dff570d56b1302c5ab37d - sha256: 9dcf54adfaa5e861123c2da4f2f0451a685464ea7e5a41ad91cf67b31d658d98 + md5: c099368d009e4d828449eaed7b2cb701 + sha256: e01a2a027fceea1011d2e74307845fb0c4bd6d195ff27fbf5baeafa55531d128 category: main optional: false - name: libgfortran @@ -1896,10 +1913,10 @@ package: platform: linux-64 dependencies: libgfortran5: 15.2.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran-15.2.0-h69a702a_19.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran-15.2.0-h69a702a_20.conda hash: - md5: 42bf7eca1a951735fa06c0e3c0d5c8e6 - sha256: 561a42758ef25b9ce308c4e2cf56daee4f06138385a17e29a492cd928e00be6f + md5: a450a08a63f940e9aa7b37692e71196a + sha256: 76d81032e264b74f519cc26962d5eb39547e0785fc9d2957bbc12e7a91214412 category: main optional: false - name: libgfortran5 @@ -1909,10 +1926,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=15.2.0' - url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran5-15.2.0-h68bc16d_19.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran5-15.2.0-h68bc16d_20.conda hash: - md5: 85072b0ad177c966294f129b7c04a2d5 - sha256: 057978bb69fea29ed715a9b98adf71015c31baecc4aeb2bfc20d4fd5d83579d4 + md5: 4edbcbea1a8790a7d58e648523b69546 + sha256: 95122f42566dc9a62b9615d2372b3f3c75fa7bd8bb1eda53aa7532ce60d545eb category: main optional: false - name: libgomp @@ -1921,10 +1938,10 @@ package: platform: win-64 dependencies: libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' - url: https://repo.prefix.dev/conda-forge/win-64/libgomp-15.2.0-h8ee18e1_19.conda + url: https://repo.prefix.dev/conda-forge/win-64/libgomp-15.2.0-h8ee18e1_20.conda hash: - md5: f1147651e3fdd585e2f442c0c2fc8f2d - sha256: 4dc958ced2fc7f42bc675b07e2c9abe3e150875ffdf62ca551d94fc6facf1fd7 + md5: 3b2b211930103e49d77da1a7d9ea9af9 + sha256: 33606594501174cc1677c7dbe39de739c2f04e9a8ddbd95aa82e48d1bd79b388 category: main optional: false - name: libhwloc @@ -1988,30 +2005,30 @@ package: category: main optional: false - name: libjpeg-turbo - version: 3.1.4.1 + version: 3.2.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libjpeg-turbo-3.1.4.1-hb03c661_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libjpeg-turbo-3.2.0-hb03c661_0.conda hash: - md5: 6178c6f2fb254558238ef4e6c56fb782 - sha256: 10056646c28115b174de81a44e23e3a0a3b95b5347d2e6c45cc6d49d35294256 + md5: 466badda5536d85ddc63ee9404f29735 + sha256: 716332fd31b3808da7a4235a05212a9e9da05e854864c3def2dea0b5d2bf7610 category: main optional: false - name: libjpeg-turbo - version: 3.1.4.1 + version: 3.2.0 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libjpeg-turbo-3.1.4.1-hfd05255_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libjpeg-turbo-3.2.0-hfd05255_0.conda hash: - md5: 25a127bad5470852b30b239f030ec95b - sha256: 698d57b5b90120270eaa401298319fcb25ea186ae95b340c2f4813ed9171083d + md5: cf219146d5bf2fee5907409ff9f5ac89 + sha256: 3d6635efa9497b9c5ba7957df8067c0a980d5cb10a6ea136931809eb410f8a99 category: main optional: false - name: liblapack @@ -2139,32 +2156,63 @@ package: sha256: 218913aeee391460bd0e341b834dbd9c6fa6ae0a4276c0c300266cc99a816a28 category: main optional: false +- name: libpsl + version: 0.22.0 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + icu: '>=78.3,<79.0a0' + libgcc: '>=14' + libstdcxx: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/libpsl-0.22.0-h49b2146_1.conda + hash: + md5: af5ddfb52ad25d833c70c7511478d4eb + sha256: 71118885feab91c61bea4e9532ec46e0653b24f02e563681f822915aee8435bb + category: main + optional: false +- name: libpsl + version: 0.22.0 + manager: conda + platform: win-64 + dependencies: + icu: '>=78.3,<79.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/libpsl-0.22.0-h25e0afd_1.conda + hash: + md5: ba200e33e10ccf0d730c4ce87badbdf1 + sha256: 040d4adabae2634b13183203e383c21f74ed98028b5d50bf9bae4968dd05aaa5 + category: main + optional: false - name: libsqlite - version: 3.53.1 + version: 3.53.4 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' + icu: '>=78.3,<79.0a0' libgcc: '>=14' libzlib: '>=1.3.2,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.53.1-h0c1763c_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.53.4-hf4e2dac_0.conda hash: - md5: 7dc38adcbf71e6b38748e919e16e0dce - sha256: 54cdcd3214313b62c2a8ee277e6f42150d9b748264c1b70d958bf735e420ef8d + md5: df088a279cd5e6fd2790b4c196434da1 + sha256: 72023efc207fe681e26b65fc9d668062cf0b4f0eacf3431e6eb099b95c1f2efd category: main optional: false - name: libsqlite - version: 3.53.1 + version: 3.53.4 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.53.1-hf5d6505_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.53.4-hf5d6505_0.conda hash: - md5: 7fea434a17c323256acc510a041b80d7 - sha256: e70562450332ca8954bc16f3455468cca5ef3695c7d7187ecc87f8fc3c70e9eb + md5: ca0d59f40a02a15e9b5d0ff8db0f85e3 + sha256: 62e1c45ec71ab2e5deeeb0e47e7df6a609991e91d46348f16df50c68fee145c8 category: main optional: false - name: libssh2 @@ -2205,10 +2253,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: 15.2.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-15.2.0-h934c35e_19.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-15.2.0-h934c35e_20.conda hash: - md5: 5794b3bdc38177caf969dabd3af08549 - sha256: dff1058c76ec6b8759e41cefa2508162d00e4a5e6721aa68ec3fd10094e702dc + md5: fbd3d5506b11b5cfc916b29263b6b6f7 + sha256: b5eadda8fb0df262f0d424c4a0c8c1c8d65d904ce622f07936c793ea1b8a39d9 category: main optional: false - name: libstdcxx-ng @@ -2217,64 +2265,64 @@ package: platform: linux-64 dependencies: libstdcxx: 15.2.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-15.2.0-hdf11a46_19.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-15.2.0-hdf11a46_20.conda hash: - md5: e5ce228e579726c07255dbf90dc62101 - sha256: 0672b6b6e1791c92e8eccad58081a99d614fcf82bca5841f9dfa3c3e658f83b9 + md5: 593dc263426eb14f16dc594bfdb9772a + sha256: 0b79903234f68410c11c33cb9829f7b3cb01a9ff2f42bf083dd2c51e886e6077 category: main optional: false - name: libtiff - version: 4.7.1 + version: 4.7.2 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - lerc: '>=4.0.0,<5.0a0' + lerc: '>=4.1.0,<5.0a0' libdeflate: '>=1.25,<1.26.0a0' libgcc: '>=14' - libjpeg-turbo: '>=3.1.0,<4.0a0' - liblzma: '>=5.8.1,<6.0a0' + libjpeg-turbo: '>=3.1.4.1,<4.0a0' + liblzma: '>=5.8.3,<6.0a0' libstdcxx: '>=14' libwebp-base: '>=1.6.0,<2.0a0' - libzlib: '>=1.3.1,<2.0a0' + libzlib: '>=1.3.2,<2.0a0' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libtiff-4.7.1-h9d88235_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libtiff-4.7.2-h9d88235_0.conda hash: - md5: cd5a90476766d53e901500df9215e927 - sha256: e5f8c38625aa6d567809733ae04bb71c161a42e44a9fa8227abe61fa5c60ebe0 + md5: c1fcb4a88bc15a9f77ad8d27d7af1df9 + sha256: b31346e1c01ab40a170e91147092ee8fd92b1dee3c66ee47ef025571c879b159 category: main optional: false - name: libtiff - version: 4.7.1 + version: 4.7.2 manager: conda platform: win-64 dependencies: - lerc: '>=4.0.0,<5.0a0' + lerc: '>=4.1.0,<5.0a0' libdeflate: '>=1.25,<1.26.0a0' - libjpeg-turbo: '>=3.1.0,<4.0a0' - liblzma: '>=5.8.1,<6.0a0' - libzlib: '>=1.3.1,<2.0a0' + libjpeg-turbo: '>=3.1.4.1,<4.0a0' + liblzma: '>=5.8.3,<6.0a0' + libzlib: '>=1.3.2,<2.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/libtiff-4.7.1-h8f73337_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/libtiff-4.7.2-h8f73337_0.conda hash: - md5: 549845d5133100142452812feb9ba2e8 - sha256: f1b8cccaaeea38a28b9cd496694b2e3d372bb5be0e9377c9e3d14b330d1cba8a + md5: e83f459471905a04ebe15e21d063c49d + sha256: ec6d66308a6d6abaf3225f2f185113e6172e77eb0fa8622af982d7a5d6d47a2c category: main optional: false - name: libuuid - version: 2.42.1 + version: 2.42.2 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libuuid-2.42.1-h5347b49_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libuuid-2.42.2-h5347b49_0.conda hash: - md5: 7d0a66598195ef00b6efc55aefc7453b - sha256: 3f0edf1280e2f6684a986f821eaa3e123d2694a00b31b96ca0d4a4c12c129231 + md5: 01bb81d12c957de066ea7362007df642 + sha256: 9b1bdce27a7e31f7d241aeecff67a1f3101d52a2b1e33ccc2cdf2613072bf81f category: main optional: false - name: libwebp-base @@ -2372,6 +2420,7 @@ package: manager: conda platform: win-64 dependencies: + icu: '>=78.3,<79.0a0' libiconv: '>=1.18,<2.0a0' liblzma: '>=5.8.3,<6.0a0' libxml2-16: 2.15.3 @@ -2379,10 +2428,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libxml2-2.15.3-hbc0d294_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libxml2-2.15.3-h8ef44ab_0.conda hash: - md5: e3b5acbb857a12f5d59e8d174bc536c0 - sha256: da68af9d9d28d65a6916db1bef68f8a25c64c4fdcf759f32a2d2f2f143220adf + md5: 95591ca5671d2213f5b2d5aa7818420d + sha256: a4599c6bbbbdd7db570896e520c557eec8e66d94e839a59d17dc1f24a3d5f82b category: main optional: false - name: libxml2-16 @@ -2407,16 +2456,17 @@ package: manager: conda platform: win-64 dependencies: + icu: '>=78.3,<79.0a0' libiconv: '>=1.18,<2.0a0' liblzma: '>=5.8.3,<6.0a0' libzlib: '>=1.3.2,<2.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libxml2-16-2.15.3-h692994f_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libxml2-16-2.15.3-h3cfd58e_0.conda hash: - md5: f7d6fcda29570e20851b78d92ea2154e - sha256: 8038084c60eda2006d0122d05e3364fe8db0a18935ca6ed0168b5ba5aa33f904 + md5: 9e8dd0d90ed830107b2c36801035b7db + sha256: 3b61ee3caba702d2ff432fa3920835db963026e5c99c4e6fdca0c6114f59e7ce category: main optional: false - name: libzlib @@ -2446,29 +2496,29 @@ package: category: main optional: false - name: llvm-openmp - version: 22.1.6 + version: 22.1.8 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-22.1.6-h4922eb0_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-22.1.8-h4922eb0_0.conda hash: - md5: a7f80a18bc21daad0f4d5c3fbad1e8c1 - sha256: e74dbafd2b420687cc913f5587050270c8f57042405b6b0d66c3a8013dc104ab + md5: 7bbfdc5a6eca997d3b0873a575c3e155 + sha256: a37aba21b85800af1e7c5b04ba76abab96b6e591eedf99dc6e4df83b0fefd7a5 category: main optional: false - name: llvm-openmp - version: 22.1.6 + version: 22.1.8 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-22.1.6-h4fa8253_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-22.1.8-h4fa8253_0.conda hash: - md5: 1966432ddb4d5e13890dae3758a112d3 - sha256: b12aa9c957fadf488888aa4cad6d424d499ffcceefe5d8e9077c4da46308f26b + md5: de3551bf6508d45ca46b714639e52823 + sha256: 50c02902bb516eeb56680358f052be38b5bf74b40e78ea4b2a675e84957e7307 category: main optional: false - name: markupsafe @@ -2586,7 +2636,7 @@ package: category: dev optional: true - name: mkl - version: 2026.0.0 + version: 2026.1.0 manager: conda platform: linux-64 dependencies: @@ -2594,30 +2644,30 @@ package: _openmp_mutex: '>=4.5' libgcc: '>=14' libstdcxx: '>=14' - llvm-openmp: '>=22.1.5' - onemkl-license: 2026.0.0 + llvm-openmp: '>=22.1.8' + onemkl-license: 2026.1.0 tbb: '>=2023.0.0' - url: https://repo.prefix.dev/conda-forge/linux-64/mkl-2026.0.0-h0e700b2_915.conda + url: https://repo.prefix.dev/conda-forge/linux-64/mkl-2026.1.0-hecca717_243.conda hash: - md5: 44208bd851118db1e20923441f1bb3bb - sha256: b23dc574c681cfa9708378b781d206fa790f1944cfb7b4c20177824b96938544 + md5: cef284d6d9fe0caf11638f5f0e4f9a64 + sha256: c68967a13488684d87fb7ac77b73c6f3f825f2da403707a14e75374c0ce3629f category: main optional: false - name: mkl - version: 2026.0.0 + version: 2026.1.0 manager: conda platform: win-64 dependencies: - llvm-openmp: '>=22.1.5' - onemkl-license: 2026.0.0 + llvm-openmp: '>=22.1.8' + onemkl-license: 2026.1.0 tbb: '>=2023.0.0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/mkl-2026.0.0-hac47afa_908.conda + url: https://repo.prefix.dev/conda-forge/win-64/mkl-2026.1.0-hac47afa_233.conda hash: - md5: 36ea6e1292e9d5e89374201da79646ef - sha256: f997bfc9bc4d4e14261cdcd1ad195d64a72ee44dca3145d24c1349f8d1311aa5 + md5: 5afbf28c4ca3e05b5469dbbd78c8e704 + sha256: ff355522fb0b6e33841167d9ca749147c8734d8be07b63b2ce25b0db043f42ed category: main optional: false - name: munkres @@ -2696,25 +2746,25 @@ package: category: main optional: false - name: onemkl-license - version: 2026.0.0 + version: 2026.1.0 manager: conda platform: linux-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/linux-64/onemkl-license-2026.0.0-hf2ce2f3_915.conda + url: https://repo.prefix.dev/conda-forge/linux-64/onemkl-license-2026.1.0-ha770c72_243.conda hash: - md5: f9a902d29c0980c672f77eff7be1794c - sha256: fd53c7f3e874b6fd2add63103028ed707b728cc275597d12951886cfcda46e7d + md5: 2617b8e56c82fe48be8951e7794f08bc + sha256: b560b1106416b7df0041144aad3842e8783e22c70418a46cbcc90fe67a96b229 category: main optional: false - name: onemkl-license - version: 2026.0.0 + version: 2026.1.0 manager: conda platform: win-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/win-64/onemkl-license-2026.0.0-h57928b3_908.conda + url: https://repo.prefix.dev/conda-forge/win-64/onemkl-license-2026.1.0-h57928b3_233.conda hash: - md5: 9c9303e08b50e09f5c23e1dac99d0936 - sha256: 42ad15cbb3bf31830efa04d4b86dd2d5c0dd590c86f98adcd3c8c1f75acf5dd5 + md5: 1566e2ce8c3bc23a2feb866c4d9e91e3 + sha256: 96dec1c878d6e6f835be8ed57152a37be9a5104ac79c2425815d71c64cf13ee4 category: main optional: false - name: openjpeg @@ -2752,21 +2802,21 @@ package: category: main optional: false - name: openssl - version: 3.6.2 + version: 3.6.3 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' ca-certificates: '' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/openssl-3.6.2-h35e630c_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/openssl-3.6.3-h35e630c_0.conda hash: - md5: da1b85b6a87e141f5140bb9924cecab0 - sha256: c0ef482280e38c71a08ad6d71448194b719630345b0c9c60744a2010e8a8e0cb + md5: 79dd2074b5cd5c5c6b2930514a11e22d + sha256: d48f5c22b9897c01e4dff3680f1f57ceb02711ab9c62f74339b080419dfad34b category: main optional: false - name: openssl - version: 3.6.2 + version: 3.6.3 manager: conda platform: win-64 dependencies: @@ -2774,10 +2824,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/openssl-3.6.2-hf411b9b_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/openssl-3.6.3-hf411b9b_0.conda hash: - md5: 05c7d624cff49dbd8db1ad5ba537a8a3 - sha256: feb5815125c60f2be4a411e532db1ed1cd2d7261a6a43c54cb6ae90724e2e154 + md5: e99f95734a326c0fd4d02bbd995150d4 + sha256: cb6e7ba0d010ee0d3249ce9886de3d7613d26d9965d4c95666fa66b9c4c31001 category: main optional: false - name: packaging @@ -2805,16 +2855,16 @@ package: category: main optional: false - name: pillow - version: 12.2.0 + version: 12.3.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - lcms2: '>=2.18,<3.0a0' + lcms2: '>=2.19.1,<3.0a0' libfreetype: '>=2.14.3' libfreetype6: '>=2.14.3' libgcc: '>=14' - libjpeg-turbo: '>=3.1.2,<4.0a0' + libjpeg-turbo: '>=3.1.4.1,<4.0a0' libtiff: '>=4.7.1,<4.8.0a0' libwebp-base: '>=1.6.0,<2.0a0' libxcb: '>=1.17.0,<2.0a0' @@ -2823,21 +2873,21 @@ package: python_abi: 3.13.* tk: '>=8.6.13,<8.7.0a0' zlib-ng: '>=2.3.3,<2.4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/pillow-12.2.0-py313h80991f8_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pillow-12.3.0-py313h80991f8_0.conda hash: - md5: 7245f1bbf52ed5e3818d742f51b44a7d - sha256: 55a76548bb003ff6deac9bf209b279d428030f230632fb70f15ae153aed05158 + md5: 730e462e7e141813192b606cf07ebdd0 + sha256: cb3e51a639d19e04d0ea197ff6f6805a40eeef92d762642f28fa1cd1d25f672a category: main optional: false - name: pillow - version: 12.2.0 + version: 12.3.0 manager: conda platform: win-64 dependencies: - lcms2: '>=2.18,<3.0a0' + lcms2: '>=2.19.1,<3.0a0' libfreetype: '>=2.14.3' libfreetype6: '>=2.14.3' - libjpeg-turbo: '>=3.1.2,<4.0a0' + libjpeg-turbo: '>=3.1.4.1,<4.0a0' libtiff: '>=4.7.1,<4.8.0a0' libwebp-base: '>=1.6.0,<2.0a0' libxcb: '>=1.17.0,<2.0a0' @@ -2849,10 +2899,10 @@ package: vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' zlib-ng: '>=2.3.3,<2.4.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/pillow-12.2.0-py313h38f99e1_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/pillow-12.3.0-py313h38f99e1_0.conda hash: - md5: 72666a34e563494859af5c5fc10364a0 - sha256: 54df76a56eff31deab5e72350ca906c79dfb71f0ac9d84bf2f7420ab2ee00151 + md5: c9444f203e39d00c45fff0a57d684064 + sha256: 4d6f3ba9bb416869089bb69b6bcccde178d7fa2cbb27cd7f801bd08fe5584f64 category: main optional: false - name: pip @@ -2880,27 +2930,27 @@ package: category: main optional: false - name: platformdirs - version: 4.10.0 + version: 4.11.0 manager: conda platform: linux-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.10.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.11.0-pyhcf101f3_0.conda hash: - md5: 2c5ef45db85d34799771629bd5860fd7 - sha256: 9e5e1fd3506ccfc4d444fc4d2d39b0ed097d5d0e3bd3d4bdf6bcc81aaf66860d + md5: 1fadaa6dd1d03d062075f84157ac2cc7 + sha256: a4b8c7d3b3703d10f93187986d59aec09b22033978945845899beb7f849a7be6 category: dev optional: true - name: platformdirs - version: 4.10.0 + version: 4.11.0 manager: conda platform: win-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.10.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.11.0-pyhcf101f3_0.conda hash: - md5: 2c5ef45db85d34799771629bd5860fd7 - sha256: 9e5e1fd3506ccfc4d444fc4d2d39b0ed097d5d0e3bd3d4bdf6bcc81aaf66860d + md5: 1fadaa6dd1d03d062075f84157ac2cc7 + sha256: a4b8c7d3b3703d10f93187986d59aec09b22033978945845899beb7f849a7be6 category: dev optional: true - name: pluggy @@ -3077,7 +3127,7 @@ package: category: dev optional: true - name: pylint - version: 4.0.5 + version: 4.0.6 manager: conda platform: linux-64 dependencies: @@ -3090,14 +3140,14 @@ package: python: '' tomli: '>=1.1' tomlkit: '>=0.10.1' - url: https://repo.prefix.dev/conda-forge/noarch/pylint-4.0.5-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pylint-4.0.6-pyhcf101f3_0.conda hash: - md5: 7d9916ed19ecda71f0b00963365252a7 - sha256: a8e7736982409a56d2aa329d3052259fd45910f98fb7d3f2816f1a6d59624d60 + md5: ba6813f7d81828b7dcd03248a42d031d + sha256: 5393b20b76361efe49971a0081cad0f4256f875a14fe71b1ed93ba9e0193369c category: dev optional: true - name: pylint - version: 4.0.5 + version: 4.0.6 manager: conda platform: win-64 dependencies: @@ -3110,10 +3160,10 @@ package: python: '' tomli: '>=1.1' tomlkit: '>=0.10.1' - url: https://repo.prefix.dev/conda-forge/noarch/pylint-4.0.5-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pylint-4.0.6-pyhcf101f3_0.conda hash: - md5: 7d9916ed19ecda71f0b00963365252a7 - sha256: a8e7736982409a56d2aa329d3052259fd45910f98fb7d3f2816f1a6d59624d60 + md5: ba6813f7d81828b7dcd03248a42d031d + sha256: 5393b20b76361efe49971a0081cad0f4256f875a14fe71b1ed93ba9e0193369c category: dev optional: true - name: pyparsing @@ -3168,11 +3218,11 @@ package: category: dev optional: true - name: pytest - version: 9.0.3 + version: 9.1.1 manager: conda platform: linux-64 dependencies: - colorama: '>=0.4' + colorama: '' exceptiongroup: '>=1' iniconfig: '>=1.0.1' packaging: '>=22' @@ -3180,18 +3230,18 @@ package: pygments: '>=2.7.2' python: '' tomli: '>=1' - url: https://repo.prefix.dev/conda-forge/noarch/pytest-9.0.3-pyhc364b38_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytest-9.1.1-pyhc364b38_2.conda hash: - md5: 6a991452eadf2771952f39d43615bb3e - sha256: 960f59442173eee0731906a9077bd5ccf60f4b4226f05a22d1728ab9a21a879c + md5: 64c98a12c4e23eb238bf66bbecafdf3c + sha256: 430051d80765207a7d782b2b188230ba1489d35c6e75fd9903f76cb9fda4af16 category: dev optional: true - name: pytest - version: 9.0.3 + version: 9.1.1 manager: conda platform: win-64 dependencies: - colorama: '>=0.4' + colorama: '' exceptiongroup: '>=1' iniconfig: '>=1.0.1' packaging: '>=22' @@ -3199,10 +3249,10 @@ package: pygments: '>=2.7.2' python: '' tomli: '>=1' - url: https://repo.prefix.dev/conda-forge/noarch/pytest-9.0.3-pyhc364b38_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytest-9.1.1-pyhc364b38_2.conda hash: - md5: 6a991452eadf2771952f39d43615bb3e - sha256: 960f59442173eee0731906a9077bd5ccf60f4b4226f05a22d1728ab9a21a879c + md5: 64c98a12c4e23eb238bf66bbecafdf3c + sha256: 430051d80765207a7d782b2b188230ba1489d35c6e75fd9903f76cb9fda4af16 category: dev optional: true - name: pytest-cov @@ -3236,47 +3286,47 @@ package: category: dev optional: true - name: python - version: 3.13.13 + version: 3.13.14 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' bzip2: '>=1.0.8,<2.0a0' ld_impl_linux-64: '>=2.36.1' - libexpat: '>=2.7.5,<3.0a0' + libexpat: '>=2.8.1,<3.0a0' libffi: '>=3.5.2,<3.6.0a0' libgcc: '>=14' - liblzma: '>=5.8.2,<6.0a0' + liblzma: '>=5.8.3,<6.0a0' libmpdec: '>=4.0.0,<5.0a0' - libsqlite: '>=3.52.0,<4.0a0' - libuuid: '>=2.42,<3.0a0' + libsqlite: '>=3.53.2,<4.0a0' + libuuid: '>=2.42.1,<3.0a0' libzlib: '>=1.3.2,<2.0a0' - ncurses: '>=6.5,<7.0a0' - openssl: '>=3.5.6,<4.0a0' + ncurses: '>=6.6,<7.0a0' + openssl: '>=3.5.7,<4.0a0' pip: '' python_abi: 3.13.* readline: '>=8.3,<9.0a0' tk: '>=8.6.13,<8.7.0a0' tzdata: '' - url: https://repo.prefix.dev/conda-forge/linux-64/python-3.13.13-h6add32d_100_cp313.conda + url: https://repo.prefix.dev/conda-forge/linux-64/python-3.13.14-h6add32d_100_cp313.conda hash: - md5: 05051be49267378d2fcd12931e319ac3 - sha256: 7f77eb57648f545c1f58e10035d0d9d66b0a0efb7c4b58d3ed89ec7269afdde1 + md5: 93762cd272814a142cf21d794f8fb0c1 + sha256: f2146aff59ce4b571a8f1d1acf94f9bed6cc18ab5632d7dcc940fb48ecdeef99 category: main optional: false - name: python - version: 3.13.13 + version: 3.13.14 manager: conda platform: win-64 dependencies: bzip2: '>=1.0.8,<2.0a0' - libexpat: '>=2.7.5,<3.0a0' + libexpat: '>=2.8.1,<3.0a0' libffi: '>=3.5.2,<3.6.0a0' - liblzma: '>=5.8.2,<6.0a0' + liblzma: '>=5.8.3,<6.0a0' libmpdec: '>=4.0.0,<5.0a0' - libsqlite: '>=3.52.0,<4.0a0' + libsqlite: '>=3.53.2,<4.0a0' libzlib: '>=1.3.2,<2.0a0' - openssl: '>=3.5.6,<4.0a0' + openssl: '>=3.5.7,<4.0a0' pip: '' python_abi: 3.13.* tk: '>=8.6.13,<8.7.0a0' @@ -3284,10 +3334,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/python-3.13.13-h09917c8_100_cp313.conda + url: https://repo.prefix.dev/conda-forge/win-64/python-3.13.14-h09917c8_100_cp313.conda hash: - md5: 7065f7067762c4c2bda1912f18d16239 - sha256: b8108d7f83f71fb15fbb4a263406c2065a8990b3d7eba2cbd7a3075b9a6392ba + md5: 12e0de38e6bb7f7745ec0d19a20b8270 + sha256: 26442b2878df89f27cc9efd54c1322d111653683abf256b657dbefe089857b40 category: main optional: false - name: python-dateutil @@ -3469,44 +3519,18 @@ package: sha256: 30f3c04fcfb64c44d821d392a4a0b8915650dbd900c8befc20ade8fde8ec6aa2 category: dev optional: true -- name: roman-numerals-py - version: 4.1.0 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.10' - roman-numerals: 4.1.0 - url: https://repo.prefix.dev/conda-forge/noarch/roman-numerals-py-4.1.0-pyhd8ed1ab_0.conda - hash: - md5: 28687768633154993d521aecfa4a56ac - sha256: ce21b50a412b87b388db9e8dfbf8eb16fc436c23750b29bf612ee1a74dd0beb2 - category: dev - optional: true -- name: roman-numerals-py - version: 4.1.0 - manager: conda - platform: win-64 - dependencies: - python: '>=3.10' - roman-numerals: 4.1.0 - url: https://repo.prefix.dev/conda-forge/noarch/roman-numerals-py-4.1.0-pyhd8ed1ab_0.conda - hash: - md5: 28687768633154993d521aecfa4a56ac - sha256: ce21b50a412b87b388db9e8dfbf8eb16fc436c23750b29bf612ee1a74dd0beb2 - category: dev - optional: true - name: s2n - version: 1.7.3 + version: 1.7.5 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - openssl: '>=3.5.6,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/s2n-1.7.3-hc5a330e_0.conda + openssl: '>=3.5.7,<4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/s2n-1.7.5-h7e3ee7f_1.conda hash: - md5: f2bd09e21c5844a12e2f5eefcd075555 - sha256: 150a0a5254e8b15ad737549721c7d13406cd96432f3f446e07073dbd98bb2491 + md5: fa1c00d999e83ec20173c9775f71a1f1 + sha256: 7369ac21f3561e2203f5b1600ef0671270057380783ca4b9e15f679ba25db575 category: main optional: false - name: scipy @@ -3576,45 +3600,45 @@ package: category: main optional: false - name: snowballstemmer - version: 3.1.0 + version: 3.1.1 manager: conda platform: linux-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/snowballstemmer-3.1.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/snowballstemmer-3.1.1-pyhd8ed1ab_0.conda hash: - md5: 1590bceae37377cecba443c83a44c404 - sha256: 6a2936f82e2ce5aef6b10fe2385330de2f8dc4b16832469bec83d5c90b2727e8 + md5: 46b6abe31482f6bca064b965696ae807 + sha256: ad89284ea94821c20ff87e64b948e4afc690cf5202d14c009355b0594cf23aea category: dev optional: true - name: snowballstemmer - version: 3.1.0 + version: 3.1.1 manager: conda platform: win-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/snowballstemmer-3.1.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/snowballstemmer-3.1.1-pyhd8ed1ab_0.conda hash: - md5: 1590bceae37377cecba443c83a44c404 - sha256: 6a2936f82e2ce5aef6b10fe2385330de2f8dc4b16832469bec83d5c90b2727e8 + md5: 46b6abe31482f6bca064b965696ae807 + sha256: ad89284ea94821c20ff87e64b948e4afc690cf5202d14c009355b0594cf23aea category: dev optional: true - name: sphinx - version: 8.3.0 + version: 9.1.0 manager: conda platform: linux-64 dependencies: alabaster: '>=0.7.14' babel: '>=2.13' colorama: '>=0.4.6' - docutils: '>=0.20,<0.22' + docutils: '>=0.21,<0.23' imagesize: '>=1.3' jinja2: '>=3.1' packaging: '>=23.0' pygments: '>=2.17' - python: '>=3.11' + python: '>=3.12' requests: '>=2.30.0' - roman-numerals-py: '>=1.0.0' + roman-numerals: '>=1.0.0' snowballstemmer: '>=2.2' sphinxcontrib-applehelp: '>=1.0.7' sphinxcontrib-devhelp: '>=1.0.6' @@ -3622,28 +3646,28 @@ package: sphinxcontrib-jsmath: '>=1.0.1' sphinxcontrib-qthelp: '>=1.0.6' sphinxcontrib-serializinghtml: '>=1.1.9' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-8.3.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-9.1.0-pyhd8ed1ab_0.conda hash: - md5: 6ce9ddee4c0f68bda548303196f4cf4c - sha256: 03c4d8b4cf3c5418e15f30f45be52bcde7c7e05baeec7dec5aaf6e238a411481 + md5: aabfbc2813712b71ba8beb217a978498 + sha256: 035ca4b17afca3d53650380dd94c564555b7ec2b4f8818111f98c15c7a991b7b category: dev optional: true - name: sphinx - version: 8.3.0 + version: 9.1.0 manager: conda platform: win-64 dependencies: alabaster: '>=0.7.14' babel: '>=2.13' colorama: '>=0.4.6' - docutils: '>=0.20,<0.22' + docutils: '>=0.21,<0.23' imagesize: '>=1.3' jinja2: '>=3.1' packaging: '>=23.0' pygments: '>=2.17' - python: '>=3.11' + python: '>=3.12' requests: '>=2.30.0' - roman-numerals-py: '>=1.0.0' + roman-numerals: '>=1.0.0' snowballstemmer: '>=2.2' sphinxcontrib-applehelp: '>=1.0.7' sphinxcontrib-devhelp: '>=1.0.6' @@ -3651,36 +3675,36 @@ package: sphinxcontrib-jsmath: '>=1.0.1' sphinxcontrib-qthelp: '>=1.0.6' sphinxcontrib-serializinghtml: '>=1.1.9' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-8.3.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-9.1.0-pyhd8ed1ab_0.conda hash: - md5: 6ce9ddee4c0f68bda548303196f4cf4c - sha256: 03c4d8b4cf3c5418e15f30f45be52bcde7c7e05baeec7dec5aaf6e238a411481 + md5: aabfbc2813712b71ba8beb217a978498 + sha256: 035ca4b17afca3d53650380dd94c564555b7ec2b4f8818111f98c15c7a991b7b category: dev optional: true - name: sphinx-autodoc-typehints - version: 3.5.2 + version: 3.13.0 manager: conda platform: linux-64 dependencies: - python: '>=3.11' - sphinx: '>=8.2.3' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-autodoc-typehints-3.5.2-pyhd8ed1ab_0.conda + python: '>=3.12' + sphinx: '>=9.1' + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-autodoc-typehints-3.13.0-pyhd8ed1ab_0.conda hash: - md5: abe9fc17e8bf83725cde006800c926de - sha256: 896309836e7b7682ac7ebf8783d7fde57869d28fa82e0a36413fff41f4049eac + md5: e91b69fd604f79f38f8c6cfdbc760755 + sha256: 62930995f2b6520fd14d5ce7c587d7fb5382987a3b7de0bb81e601490af35f50 category: dev optional: true - name: sphinx-autodoc-typehints - version: 3.5.2 + version: 3.13.0 manager: conda platform: win-64 dependencies: - python: '>=3.11' - sphinx: '>=8.2.3' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-autodoc-typehints-3.5.2-pyhd8ed1ab_0.conda + python: '>=3.12' + sphinx: '>=9.1' + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-autodoc-typehints-3.13.0-pyhd8ed1ab_0.conda hash: - md5: abe9fc17e8bf83725cde006800c926de - sha256: 896309836e7b7682ac7ebf8783d7fde57869d28fa82e0a36413fff41f4049eac + md5: e91b69fd604f79f38f8c6cfdbc760755 + sha256: 62930995f2b6520fd14d5ce7c587d7fb5382987a3b7de0bb81e601490af35f50 category: dev optional: true - name: sphinx-rtd-theme @@ -3689,10 +3713,10 @@ package: platform: linux-64 dependencies: sphinx_rtd_theme: 3.1.0 - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-rtd-theme-3.1.0-hd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-rtd-theme-3.1.0-hd8ed1ab_1.conda hash: - md5: 3b1a32d3d5c2064822203f2a6f3f1173 - sha256: ae5e8e514f21e6f62b63c13f684939ba007168bfd7742e8cb573fce69fbf62da + md5: 0a0c4864848d70ae012c0b3ba074aa46 + sha256: 05fc70e840c819c9755467e1b0386cca4afe84f4151aa446d083a29c81896df8 category: dev optional: true - name: sphinx-rtd-theme @@ -3701,10 +3725,10 @@ package: platform: win-64 dependencies: sphinx_rtd_theme: 3.1.0 - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-rtd-theme-3.1.0-hd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-rtd-theme-3.1.0-hd8ed1ab_1.conda hash: - md5: 3b1a32d3d5c2064822203f2a6f3f1173 - sha256: ae5e8e514f21e6f62b63c13f684939ba007168bfd7742e8cb573fce69fbf62da + md5: 0a0c4864848d70ae012c0b3ba074aa46 + sha256: 05fc70e840c819c9755467e1b0386cca4afe84f4151aa446d083a29c81896df8 category: dev optional: true - name: sphinx_rtd_theme @@ -3712,14 +3736,14 @@ package: manager: conda platform: linux-64 dependencies: - docutils: '>0.18,<0.22' - python: '>=3.8' - sphinx: '>=6,<9' + docutils: '>0.18,<0.23' + python: '>=3.10' + sphinx: '>=6,<10' sphinxcontrib-jquery: '>=4,<5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx_rtd_theme-3.1.0-pyha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx_rtd_theme-3.1.0-pyha770c72_1.conda hash: - md5: cede6bc99a0253fa676f03cfdc666d57 - sha256: 1d57a0cd74ecc0e5dc006f6591145d1abb6658464919d4aeb163d3db714f80e6 + md5: 14b91f7ff1d73c1b233e25e9fa262e5b + sha256: 3876c2b11360a1ee0f93d1449819c5a8cab8483abfed107a921cc188d3b29b4d category: dev optional: true - name: sphinx_rtd_theme @@ -3727,14 +3751,14 @@ package: manager: conda platform: win-64 dependencies: - docutils: '>0.18,<0.22' - python: '>=3.8' - sphinx: '>=6,<9' + docutils: '>0.18,<0.23' + python: '>=3.10' + sphinx: '>=6,<10' sphinxcontrib-jquery: '>=4,<5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx_rtd_theme-3.1.0-pyha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx_rtd_theme-3.1.0-pyha770c72_1.conda hash: - md5: cede6bc99a0253fa676f03cfdc666d57 - sha256: 1d57a0cd74ecc0e5dc006f6591145d1abb6658464919d4aeb163d3db714f80e6 + md5: 14b91f7ff1d73c1b233e25e9fa262e5b + sha256: 3876c2b11360a1ee0f93d1449819c5a8cab8483abfed107a921cc188d3b29b4d category: dev optional: true - name: sphinxcontrib-applehelp @@ -3892,29 +3916,29 @@ package: category: dev optional: true - name: sphinxcontrib-serializinghtml - version: 1.1.10 + version: 2.0.0 manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '>=3.10' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-serializinghtml-2.0.0-pyhd8ed1ab_0.conda hash: - md5: 3bc61f7161d28137797e038263c04c54 - sha256: 64d89ecc0264347486971a94487cb8d7c65bfc0176750cf7502b8a272f4ab557 + md5: f77df1fcf9af03b7287342638befca77 + sha256: 20b49741065fd7d3fabf98caf6d19b6436badb06b6d41f66b58f1fc2b52f37a1 category: dev optional: true - name: sphinxcontrib-serializinghtml - version: 1.1.10 + version: 2.0.0 manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '>=3.10' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-serializinghtml-2.0.0-pyhd8ed1ab_0.conda hash: - md5: 3bc61f7161d28137797e038263c04c54 - sha256: 64d89ecc0264347486971a94487cb8d7c65bfc0176750cf7502b8a272f4ab557 + md5: f77df1fcf9af03b7287342638befca77 + sha256: 20b49741065fd7d3fabf98caf6d19b6436badb06b6d41f66b58f1fc2b52f37a1 category: dev optional: true - name: tbb @@ -3954,11 +3978,11 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_h366c992_103.conda + libzlib: '>=1.3.2,<2.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_hd70dff1_3.conda hash: - md5: cffd3bdd58090148f4cfcd831f4b26ab - sha256: cafeec44494f842ffeca27e9c8b0c27ed714f93ac77ddadc6aaf726b5554ebac + md5: 48a1049e710857572fc2a832aa394d9f + sha256: 43624eab22f5f29df7d6ffe914cf442f28fd559b55b290906255492826e636e8 category: main optional: false - name: tk @@ -3969,10 +3993,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/tk-8.6.13-h6ed50ae_3.conda + url: https://repo.prefix.dev/conda-forge/win-64/tk-8.6.13-h967ab96_3.conda hash: - md5: 0481bfd9814bf525bd4b3ee4b51494c4 - sha256: 0e79810fae28f3b69fe7391b0d43f5474d6bd91d451d5f2bde02f55ae481d5e3 + md5: aaf79e2af50a151fb5b5a3e3f38b7a69 + sha256: 13fa29257d43f8e630a1e591ed77fae9bbbb236b011432f01e2034cf36e6bf03 category: main optional: false - name: tomli @@ -4000,51 +4024,51 @@ package: category: dev optional: true - name: tomlkit - version: 0.15.0 + version: 0.15.1 manager: conda platform: linux-64 dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.15.0-pyha770c72_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.15.1-pyhcf101f3_0.conda hash: - md5: 42ef10a8f7f5d55a2e267c0d5daa6387 - sha256: 1cd52f9ccb4854c4d731438afe0e833b6b71edaf5ede661152aa98efb3a7cc70 + md5: e4942e2de7436ff28be7f5645cf3c8d6 + sha256: 5cf833b4d199688b7652fb322ecc134de9555e9444d9249750de9a153421ad0a category: dev optional: true - name: tomlkit - version: 0.15.0 + version: 0.15.1 manager: conda platform: win-64 dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.15.0-pyha770c72_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.15.1-pyhcf101f3_0.conda hash: - md5: 42ef10a8f7f5d55a2e267c0d5daa6387 - sha256: 1cd52f9ccb4854c4d731438afe0e833b6b71edaf5ede661152aa98efb3a7cc70 + md5: e4942e2de7436ff28be7f5645cf3c8d6 + sha256: 5cf833b4d199688b7652fb322ecc134de9555e9444d9249750de9a153421ad0a category: dev optional: true - name: typing-extensions - version: 4.15.0 + version: 4.16.0 manager: conda platform: linux-64 dependencies: - typing_extensions: ==4.15.0 - url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda + typing_extensions: ==4.16.0 + url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.16.0-h69aa097_0.conda hash: - md5: edd329d7d3a4ab45dcf905899a7a6115 - sha256: 7c2df5721c742c2a47b2c8f960e718c930031663ac1174da67c1ed5999f7938c + md5: c680b5747e8c4c8f23dca0bb7042a8fc + sha256: b141933ece3518f6d7b75dfb59451e2f26b405a44c18e2518a83e9a02e09315c category: main optional: false - name: typing-extensions - version: 4.15.0 + version: 4.16.0 manager: conda platform: win-64 dependencies: - typing_extensions: ==4.15.0 - url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda + typing_extensions: ==4.16.0 + url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.16.0-h69aa097_0.conda hash: - md5: edd329d7d3a4ab45dcf905899a7a6115 - sha256: 7c2df5721c742c2a47b2c8f960e718c930031663ac1174da67c1ed5999f7938c + md5: c680b5747e8c4c8f23dca0bb7042a8fc + sha256: b141933ece3518f6d7b75dfb59451e2f26b405a44c18e2518a83e9a02e09315c category: main optional: false - name: typing-inspection @@ -4074,49 +4098,49 @@ package: category: main optional: false - name: typing_extensions - version: 4.15.0 + version: 4.16.0 manager: conda platform: linux-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.16.0-pyhcf101f3_0.conda hash: - md5: 0caa1af407ecff61170c9437a808404d - sha256: 032271135bca55aeb156cee361c81350c6f3fb203f57d024d7e5a1fc9ef18731 + md5: c70ad746c22219b9700931707482992c + sha256: 2d888f90af0686044882c74193ec80a90ec1943145d94a7b1b048958acda1848 category: main optional: false - name: typing_extensions - version: 4.15.0 + version: 4.16.0 manager: conda platform: win-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.16.0-pyhcf101f3_0.conda hash: - md5: 0caa1af407ecff61170c9437a808404d - sha256: 032271135bca55aeb156cee361c81350c6f3fb203f57d024d7e5a1fc9ef18731 + md5: c70ad746c22219b9700931707482992c + sha256: 2d888f90af0686044882c74193ec80a90ec1943145d94a7b1b048958acda1848 category: main optional: false - name: tzdata - version: 2025c + version: 2026c manager: conda platform: linux-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/tzdata-2026c-h151e31d_0.conda hash: - md5: ad659d0a2b3e47e38d829aa8cad2d610 - sha256: 1d30098909076af33a35017eed6f2953af1c769e273a0626a04722ac4acaba3c + md5: fcb489df604d100968b737f2cb6076c6 + sha256: b928c30ddcb0e3f544c6eade8352737e6e610e263276b90232db6a578ef899d8 category: main optional: false - name: tzdata - version: 2025c + version: 2026c manager: conda platform: win-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/tzdata-2026c-h151e31d_0.conda hash: - md5: ad659d0a2b3e47e38d829aa8cad2d610 - sha256: 1d30098909076af33a35017eed6f2953af1c769e273a0626a04722ac4acaba3c + md5: fcb489df604d100968b737f2cb6076c6 + sha256: b928c30ddcb0e3f544c6eade8352737e6e610e263276b90232db6a578ef899d8 category: main optional: false - name: ucrt @@ -4168,10 +4192,10 @@ package: platform: win-64 dependencies: vc14_runtime: '>=14.51.36231' - url: https://repo.prefix.dev/conda-forge/win-64/vc-14.5-h1b7c187_38.conda + url: https://repo.prefix.dev/conda-forge/win-64/vc-14.5-h1b7c187_39.conda hash: - md5: 774568633f3b26d7a4a6dd4f9ea6d3e1 - sha256: 61b68e5a4fc71a17f8d64b12e013a2f971ad980bd08e9c389d5e68efe1a67de0 + md5: 2eacea63f545b97342da520df6854276 + sha256: 17693b60cb54f80c60275f003f3bfc1b128af56dbfd65c4fae37c64eeb755ce1 category: main optional: false - name: vc14_runtime @@ -4181,10 +4205,10 @@ package: dependencies: ucrt: '>=10.0.20348.0' vcomp14: 14.51.36231 - url: https://repo.prefix.dev/conda-forge/win-64/vc14_runtime-14.51.36231-h1b9f54f_38.conda + url: https://repo.prefix.dev/conda-forge/win-64/vc14_runtime-14.51.36231-h1b9f54f_39.conda hash: - md5: 2cdcd8ea1010920911bb2eacb4c61227 - sha256: 957c7c65583c7107a5e76f39756c6361fcb7b0dc101ac7c0aea86e7ca09fe49c + md5: 06a5bf5a1ca16cce0df6eaa91fc42bc2 + sha256: 8153ed849c92e891eacac0f2f8d7ecb79f9b5fd7f7917fbb896f252a60a40390 category: main optional: false - name: vcomp14 @@ -4193,10 +4217,10 @@ package: platform: win-64 dependencies: ucrt: '>=10.0.20348.0' - url: https://repo.prefix.dev/conda-forge/win-64/vcomp14-14.51.36231-h1b9f54f_38.conda + url: https://repo.prefix.dev/conda-forge/win-64/vcomp14-14.51.36231-h1b9f54f_39.conda hash: - md5: 63ee70d69d7540e821940dac5d4d9ba2 - sha256: c645fdc1f0f47718431d973386e946754a10200e7ba2c32032560913a970cacd + md5: 8b53a83fda40ec679e4d63fa32fae989 + sha256: 07fb14713c4bc62e2533a2e23a363abfb0e65650681fba0ae4c840e2219350f3 category: main optional: false - name: win_inet_pton @@ -4317,6 +4341,21 @@ package: sha256: 210bd31c22bb88f5e2a167df24c95bb5f152b2ada7502f9b8c49d1f5366db423 category: dev optional: true +- name: zlib + version: 1.3.2 + manager: conda + platform: win-64 + dependencies: + libzlib: 1.3.2 + ucrt: '>=10.0.20348.0' + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/zlib-1.3.2-hfd05255_2.conda + hash: + md5: 5187ecf958be3c39110fe691cbd6873e + sha256: ef408f85f664a4b9c9dac3cb2e36154d9baa15a88984ea800e11060e0f2394a1 + category: main + optional: false - name: zlib-ng version: 2.3.3 manager: conda @@ -4374,43 +4413,43 @@ package: category: main optional: false - name: geoapps-utils - version: 0.8.0a1.dev3+6222ed5 + version: 0.7.1.dev85+89cd6f5 manager: pip platform: linux-64 dependencies: - geoh5py: 0.13.0b2.dev5+cbdabab5 + geoh5py: 0.13.1rc2.dev168+e51a7038 matplotlib: '>=3.10.0,<3.11.0' numpy: '>=2.4.2,<2.5.0' pydantic: '>=2.12.0,<2.13.0' scipy: '>=1.17.0,<1.18.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@6222ed5be1a26e8db288d91b4fbccc891e3ca5d2 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 hash: - sha256: 6222ed5be1a26e8db288d91b4fbccc891e3ca5d2 + sha256: 89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@6222ed5be1a26e8db288d91b4fbccc891e3ca5d2 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 category: main optional: false - name: geoapps-utils - version: 0.8.0a1.dev3+6222ed5 + version: 0.7.1.dev85+89cd6f5 manager: pip platform: win-64 dependencies: - geoh5py: 0.13.0b2.dev5+cbdabab5 + geoh5py: 0.13.1rc2.dev168+e51a7038 matplotlib: '>=3.10.0,<3.11.0' numpy: '>=2.4.2,<2.5.0' pydantic: '>=2.12.0,<2.13.0' scipy: '>=1.17.0,<1.18.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@6222ed5be1a26e8db288d91b4fbccc891e3ca5d2 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 hash: - sha256: 6222ed5be1a26e8db288d91b4fbccc891e3ca5d2 + sha256: 89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@6222ed5be1a26e8db288d91b4fbccc891e3ca5d2 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 category: main optional: false - name: geoh5py - version: 0.13.0b2.dev5+cbdabab5 + version: 0.13.1rc2.dev168+e51a7038 manager: pip platform: linux-64 dependencies: @@ -4419,16 +4458,16 @@ package: pillow: '>=12.2.0,<12.3.0' psutil: '>=7.2.2,<7.3.0' pydantic: '>=2.12.0,<2.13.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@cbdabab52382413a3d6176262a2bf189a9b4cd24 + url: git+https://github.com/MiraGeoscience/geoh5py.git@e51a703816e712f3c66147cb78fd16808b520f75 hash: - sha256: cbdabab52382413a3d6176262a2bf189a9b4cd24 + sha256: e51a703816e712f3c66147cb78fd16808b520f75 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@cbdabab52382413a3d6176262a2bf189a9b4cd24 + url: git+https://github.com/MiraGeoscience/geoh5py.git@e51a703816e712f3c66147cb78fd16808b520f75 category: main optional: false - name: geoh5py - version: 0.13.0b2.dev5+cbdabab5 + version: 0.13.1rc2.dev168+e51a7038 manager: pip platform: win-64 dependencies: @@ -4437,11 +4476,11 @@ package: pillow: '>=12.2.0,<12.3.0' psutil: '>=7.2.2,<7.3.0' pydantic: '>=2.12.0,<2.13.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@cbdabab52382413a3d6176262a2bf189a9b4cd24 + url: git+https://github.com/MiraGeoscience/geoh5py.git@e51a703816e712f3c66147cb78fd16808b520f75 hash: - sha256: cbdabab52382413a3d6176262a2bf189a9b4cd24 + sha256: e51a703816e712f3c66147cb78fd16808b520f75 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@cbdabab52382413a3d6176262a2bf189a9b4cd24 + url: git+https://github.com/MiraGeoscience/geoh5py.git@e51a703816e712f3c66147cb78fd16808b520f75 category: main optional: false diff --git a/py-3.14.conda-lock.yml b/py-3.14.conda-lock.yml index a723bb1..f86c9dc 100644 --- a/py-3.14.conda-lock.yml +++ b/py-3.14.conda-lock.yml @@ -15,8 +15,8 @@ version: 1 metadata: content_hash: - win-64: 7bfb0c555eec9c53e215c07b0292303434371dc40e1f6bea7ba60c052eb94601 - linux-64: fcd8bd8bfb67823b63b86ab5edfda4a1914851c303660e815c91dd274d98eb15 + win-64: e66d294216992502d33eac01f4e0f16e38e55e580da213e0d612037121e193ac + linux-64: a608468484a8310f6d98ad38e3de4b12a4416e52a896ec324a1e4a0a5ff09968 channels: - url: conda-forge used_env_vars: [] @@ -79,29 +79,29 @@ package: category: dev optional: true - name: annotated-types - version: 0.7.0 + version: 0.8.0 manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '>=3.10' typing-extensions: '>=4.0.0' - url: https://repo.prefix.dev/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/annotated-types-0.8.0-pyhd8ed1ab_0.conda hash: - md5: 2934f256a8acfe48f6ebb4fce6cde29c - sha256: e0ea1ba78fbb64f17062601edda82097fcf815012cf52bb704150a2668110d48 + md5: 108c928d2a8551832dbc762b535e90bb + sha256: b8fcb994134d3918d1c64a9d62f4168ff85d5bfb89e698102fe4ed679fe0df24 category: main optional: false - name: annotated-types - version: 0.7.0 + version: 0.8.0 manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '>=3.10' typing-extensions: '>=4.0.0' - url: https://repo.prefix.dev/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/annotated-types-0.8.0-pyhd8ed1ab_0.conda hash: - md5: 2934f256a8acfe48f6ebb4fce6cde29c - sha256: e0ea1ba78fbb64f17062601edda82097fcf815012cf52bb704150a2668110d48 + md5: 108c928d2a8551832dbc762b535e90bb + sha256: b8fcb994134d3918d1c64a9d62f4168ff85d5bfb89e698102fe4ed679fe0df24 category: main optional: false - name: astroid @@ -131,97 +131,97 @@ package: category: dev optional: true - name: aws-c-auth - version: 0.10.1 + version: 0.10.4 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - aws-c-cal: '>=0.9.13,<0.9.14.0a0' - aws-c-common: '>=0.12.6,<0.12.7.0a0' - aws-c-http: '>=0.10.13,<0.10.14.0a0' - aws-c-io: '>=0.26.3,<0.26.4.0a0' - aws-c-sdkutils: '>=0.2.4,<0.2.5.0a0' + aws-c-cal: '>=0.9.14,<0.9.15.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-http: '>=0.11.0,<0.11.1.0a0' + aws-c-io: '>=0.27.3,<0.27.4.0a0' + aws-c-sdkutils: '>=0.2.7,<0.2.8.0a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-auth-0.10.1-ha62d5e7_3.conda + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-auth-0.10.4-hb7a77c6_1.conda hash: - md5: 55eaf7066da1299d217ab32baedc7fa8 - sha256: ccbf2cc4bea4aab6e071d67ecc2743197759f6df855787e7a5f57f7973f913a2 + md5: 4347d5ffdf34adf9c5edd10837727d96 + sha256: 845fe32ee750d4a4d3efdb1d95a8c29c3388e3ea9787b77341ec4abe4e198b11 category: main optional: false - name: aws-c-auth - version: 0.10.1 + version: 0.10.4 manager: conda platform: win-64 dependencies: - aws-c-cal: '>=0.9.13,<0.9.14.0a0' - aws-c-common: '>=0.12.6,<0.12.7.0a0' - aws-c-http: '>=0.10.13,<0.10.14.0a0' - aws-c-io: '>=0.26.3,<0.26.4.0a0' - aws-c-sdkutils: '>=0.2.4,<0.2.5.0a0' + aws-c-cal: '>=0.9.14,<0.9.15.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-http: '>=0.11.0,<0.11.1.0a0' + aws-c-io: '>=0.27.3,<0.27.4.0a0' + aws-c-sdkutils: '>=0.2.7,<0.2.8.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-c-auth-0.10.1-h8b39d88_3.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-auth-0.10.4-hc6e9107_1.conda hash: - md5: 9f25944ccae498b7afbc81ce24f4c37a - sha256: ffa66e862ddcd8a825c3d44e83404daec7b8d36b7313650e09aa39443c312f5e + md5: f7069cdc81f7a5e781f1faf6aab6c171 + sha256: cf7ab8abaac6b462463310412cc37d087a767a95920809cbe6dc0a08fe4bcfbd category: main optional: false - name: aws-c-cal - version: 0.9.13 + version: 0.9.14 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - aws-c-common: '>=0.12.6,<0.12.7.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' libgcc: '>=14' - openssl: '>=3.5.4,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-cal-0.9.13-h2c9d079_1.conda + openssl: '>=3.5.7,<4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-cal-0.9.14-h2aa3ae6_4.conda hash: - md5: 3c3d02681058c3d206b562b2e3bc337f - sha256: f21d648349a318f4ae457ea5403d542ba6c0e0343b8642038523dd612b2a5064 + md5: 9c6072e7b882d35ac956c07e493d6a9e + sha256: a67c944be1728f576c02fe8f28b0cbb78b5353415075db3da4ef71bc9dd8c00c category: main optional: false - name: aws-c-cal - version: 0.9.13 + version: 0.9.14 manager: conda platform: win-64 dependencies: - aws-c-common: '>=0.12.6,<0.12.7.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-c-cal-0.9.13-h46f3b43_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-cal-0.9.14-h032d170_4.conda hash: - md5: 7cc4953d504d4e8f3d6f4facb8549465 - sha256: 5f61082caea9fbdd6ba02702935e9dea9997459a7e6c06fd47f21b81aac882fb + md5: fda8fa85ef5d8570d5a0aadea688bb82 + sha256: cda33360c71ab9a4b4e269004a5672d712fa1ae581ecca0404181805ce6762ce category: main optional: false - name: aws-c-common - version: 0.12.6 + version: 0.14.2 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-common-0.12.6-hb03c661_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-common-0.14.2-hb03c661_0.conda hash: - md5: e36ad70a7e0b48f091ed6902f04c23b8 - sha256: 926a5b9de0a586e88669d81de717c8dd3218c51ce55658e8a16af7e7fe87c833 + md5: f3e0b2e044485ae90d4a59c77e7a0182 + sha256: 701398f1c9978c41e93cb0947869a66b7f8004e9d6e548d63d11aedae83cfb02 category: main optional: false - name: aws-c-common - version: 0.12.6 + version: 0.14.2 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-c-common-0.12.6-hfd05255_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-common-0.14.2-hfd05255_0.conda hash: - md5: b1465f33b05b9af02ad0887c01837831 - sha256: 0627691c34eb3d9fcd18c71346d9f16f83e8e58f9983e792138a2cccf387d18a + md5: 75b4445fec6477b271920f87830d22a3 + sha256: 63fc3f34a3b3d21d5f6527ba5136e132f3ad50541d4d16e385d03f4e47e1db2b category: main optional: false - name: aws-c-compression @@ -230,12 +230,12 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - aws-c-common: '>=0.12.6,<0.12.7.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-compression-0.3.2-h8b1a151_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-compression-0.3.2-h720e601_4.conda hash: - md5: f16f498641c9e05b645fe65902df661a - sha256: 1838bdc077b77168416801f4715335b65e9223f83641a2c28644f8acd8f9db0e + md5: c9be3f5854f349ae77a1a174b59e11a8 + sha256: 8e0a5513cfc42df8bd16adbd8e83a37d3ca89b8e04cb20eb04eb177bbbfea365 category: main optional: false - name: aws-c-compression @@ -243,150 +243,150 @@ package: manager: conda platform: win-64 dependencies: - aws-c-common: '>=0.12.6,<0.12.7.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-c-compression-0.3.2-hcb3a2da_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-compression-0.3.2-h1da161f_4.conda hash: - md5: 0385f2340be1776b513258adaf70e208 - sha256: f98fbb797d28de3ae41dbd42590549ee0a2a4e61772f9cc6d1a4fa45d47637de + md5: 996e5c7da8f9e255eac094d2413b40c3 + sha256: 97eaf03572b61d118616e8ee8459823c7b0f5dc26295bbab3ac3f6d671f1547a category: main optional: false - name: aws-c-http - version: 0.10.13 + version: 0.11.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - aws-c-cal: '>=0.9.13,<0.9.14.0a0' - aws-c-common: '>=0.12.6,<0.12.7.0a0' + aws-c-cal: '>=0.9.14,<0.9.15.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' aws-c-compression: '>=0.3.2,<0.3.3.0a0' - aws-c-io: '>=0.26.3,<0.26.4.0a0' + aws-c-io: '>=0.27.3,<0.27.4.0a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-http-0.10.13-h4bacb7b_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-http-0.11.0-h38ae05a_4.conda hash: - md5: 77f70a9ab785a146dbf66fba00131403 - sha256: 38cfc8894db6729770ac18f900296c3f7c20f349a5586a8d8e1a62571fce61d5 + md5: 97f2799ae6ff7b6f52dfa321fef9676b + sha256: 4b939b4a76a11c9ec50c891ae9bf232da8dcaf8797701df1e79ae51c988be2d4 category: main optional: false - name: aws-c-http - version: 0.10.13 + version: 0.11.0 manager: conda platform: win-64 dependencies: - aws-c-cal: '>=0.9.13,<0.9.14.0a0' - aws-c-common: '>=0.12.6,<0.12.7.0a0' + aws-c-cal: '>=0.9.14,<0.9.15.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' aws-c-compression: '>=0.3.2,<0.3.3.0a0' - aws-c-io: '>=0.26.3,<0.26.4.0a0' + aws-c-io: '>=0.27.3,<0.27.4.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-c-http-0.10.13-h612f3e8_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-http-0.11.0-h667fc28_4.conda hash: - md5: 88626be3c14ac87c09629dcbf65e6279 - sha256: cf939d4a0849bc41421b4c380b2bbbc0beb1fd9b375bb9627b98d9415ec9ea69 + md5: c17a284b159959a8639298ed7da8ad0b + sha256: 304587d77daccde630fbdbb8ae2f3994cf583427f710c60d62e88bc97c4ff013 category: main optional: false - name: aws-c-io - version: 0.26.3 + version: 0.27.3 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - aws-c-cal: '>=0.9.13,<0.9.14.0a0' - aws-c-common: '>=0.12.6,<0.12.7.0a0' + aws-c-cal: '>=0.9.14,<0.9.15.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' libgcc: '>=14' - s2n: '>=1.7.3,<1.7.4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-io-0.26.3-hb18f61d_2.conda + s2n: '>=1.7.5,<1.7.6.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-io-0.27.3-h6f4d18d_1.conda hash: - md5: d1337309873c443bcc9f118b67eed84e - sha256: eee7f7aa2c5b9e0a31edba7b81482036fbe751c40bc6697fd057fbd2c656406b + md5: bd19b685b88557830f1a617a6d404eb2 + sha256: 94c32ca672ce290e250aea1cfb92582cca4658bdc3ec7cb1ceef254f34451595 category: main optional: false - name: aws-c-io - version: 0.26.3 + version: 0.27.3 manager: conda platform: win-64 dependencies: - aws-c-cal: '>=0.9.13,<0.9.14.0a0' - aws-c-common: '>=0.12.6,<0.12.7.0a0' + aws-c-cal: '>=0.9.14,<0.9.15.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-c-io-0.26.3-h0d5b9f9_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-io-0.27.3-hbdc738f_1.conda hash: - md5: 86eb8e8959c2d6053a50ad31ef6e5b5d - sha256: 7cf5aca930fc12f4e27bd4645d20224d608c2c650443e5633faea3bf8b0a7736 + md5: 579600368b15fb523d69e2a3f8a9bc55 + sha256: 36816ff394ee736fcf705db5b1c1491c98f6f77ef84791d73b71e78154df402d category: main optional: false - name: aws-c-s3 - version: 0.12.2 + version: 0.12.8 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - aws-c-auth: '>=0.10.1,<0.10.2.0a0' - aws-c-cal: '>=0.9.13,<0.9.14.0a0' - aws-c-common: '>=0.12.6,<0.12.7.0a0' - aws-c-http: '>=0.10.13,<0.10.14.0a0' - aws-c-io: '>=0.26.3,<0.26.4.0a0' + aws-c-auth: '>=0.10.4,<0.10.5.0a0' + aws-c-cal: '>=0.9.14,<0.9.15.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-http: '>=0.11.0,<0.11.1.0a0' + aws-c-io: '>=0.27.3,<0.27.4.0a0' aws-checksums: '>=0.2.10,<0.2.11.0a0' libgcc: '>=14' - openssl: '>=3.5.6,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-s3-0.12.2-he6ee468_1.conda + openssl: '>=3.5.7,<4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-s3-0.12.8-h46fcd08_1.conda hash: - md5: 50ae8372984b8b98e056ac8f6b70ab29 - sha256: 4cecb4d595b7cf558087c37b8131cae5204b2c64d75f6b951dc3731d3f872bb8 + md5: 706aa99414d18db5b23475b45cc93a0b + sha256: a423bffbb0e6cacb5e2a0861b918ba3180e5132509afb1faf225ee9f0ec8f981 category: main optional: false - name: aws-c-s3 - version: 0.12.2 + version: 0.12.8 manager: conda platform: win-64 dependencies: - aws-c-auth: '>=0.10.1,<0.10.2.0a0' - aws-c-cal: '>=0.9.13,<0.9.14.0a0' - aws-c-common: '>=0.12.6,<0.12.7.0a0' - aws-c-http: '>=0.10.13,<0.10.14.0a0' - aws-c-io: '>=0.26.3,<0.26.4.0a0' + aws-c-auth: '>=0.10.4,<0.10.5.0a0' + aws-c-cal: '>=0.9.14,<0.9.15.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-http: '>=0.11.0,<0.11.1.0a0' + aws-c-io: '>=0.27.3,<0.27.4.0a0' aws-checksums: '>=0.2.10,<0.2.11.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-c-s3-0.12.2-h61b906f_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-s3-0.12.8-hd7ee1a1_1.conda hash: - md5: 2c4cd5a0bb004c9975a4d7257a55c34a - sha256: 8d9c747d71c493e6d5e5a125a267c6ac51baba1e4b89c01c2a4084239267b8e1 + md5: 4ac02fa15bf3809101e2eeb340b6078c + sha256: c79e62931e163b65a01786d5ed7156ecca2ab748b7c7835756d34e438035706a category: main optional: false - name: aws-c-sdkutils - version: 0.2.4 + version: 0.2.7 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - aws-c-common: '>=0.12.6,<0.12.7.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-sdkutils-0.2.4-h8b1a151_4.conda + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-sdkutils-0.2.7-h720e601_2.conda hash: - md5: c7e3e08b7b1b285524ab9d74162ce40b - sha256: 9d62c5029f6f8219368a8665f0a549da572dc777f52413b7d75609cacdbc02cc + md5: 816f62fa82532118ebb2398382090945 + sha256: e419e179e04021fc680d98af23fac4b4c2369cea61171087e57a734e968dd9bd category: main optional: false - name: aws-c-sdkutils - version: 0.2.4 + version: 0.2.7 manager: conda platform: win-64 dependencies: - aws-c-common: '>=0.12.6,<0.12.7.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-c-sdkutils-0.2.4-hcb3a2da_4.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-sdkutils-0.2.7-h1da161f_2.conda hash: - md5: 3c97faee5be6fd0069410cf2bca71c85 - sha256: c86c30edba7457e04d905c959328142603b62d7d1888aed893b2e21cca9c302c + md5: 882d834f12e0abf4c7a0e9bb0c72e281 + sha256: d5da00123d9ceb082e61fd5bf82fff9cd5bec0b8e1ae91454f29155a59499bf5 category: main optional: false - name: aws-checksums @@ -395,12 +395,12 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - aws-c-common: '>=0.12.6,<0.12.7.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-checksums-0.2.10-h8b1a151_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/aws-checksums-0.2.10-h720e601_4.conda hash: - md5: f8e1bcc5c7d839c5882e94498791be08 - sha256: 09472dd5fa4473cffd44741ee4c1112f2c76d7168d1343de53c2ad283dc1efa6 + md5: 24ee781effc5779206a80139323c9caf + sha256: 6cc8617854a43040291dea791fe111ba408e7a5bbd9ee9e5a99375da7a16846b category: main optional: false - name: aws-checksums @@ -408,14 +408,14 @@ package: manager: conda platform: win-64 dependencies: - aws-c-common: '>=0.12.6,<0.12.7.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-checksums-0.2.10-hcb3a2da_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-checksums-0.2.10-h1da161f_4.conda hash: - md5: 96e950e5007fb691322db578736aba52 - sha256: 505b2365bbf3c197c9c2e007ba8262bcdaaddc970f84ce67cf73868ca2990989 + md5: a3c81085892f2983979836f2937291ce + sha256: 2227fa77f395f1b4699533709e7ef140a8292fccb31376ec5498565c7ad33225 category: main optional: false - name: babel @@ -443,27 +443,27 @@ package: category: dev optional: true - name: backports.zstd - version: 1.5.0 + version: 1.6.0 manager: conda platform: linux-64 dependencies: python: '>=3.14' - url: https://repo.prefix.dev/conda-forge/noarch/backports.zstd-1.5.0-py314h680f03e_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/backports.zstd-1.6.0-py314h680f03e_0.conda hash: - md5: 1133126d840e75287d83947be3fc3e71 - sha256: a1c97297e867776760489537bc5ae36fa83a154be30e3b79385a39ca4cb058fe + md5: 40d89d8546ad6e139e73ec8f6d56068b + sha256: 709cac7434d1c5a8828105036212a2a36022a07d807e89e2e99cac939c2d2526 category: dev optional: true - name: backports.zstd - version: 1.5.0 + version: 1.6.0 manager: conda platform: win-64 dependencies: python: '>=3.14' - url: https://repo.prefix.dev/conda-forge/noarch/backports.zstd-1.5.0-py314h680f03e_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/backports.zstd-1.6.0-py314h680f03e_0.conda hash: - md5: 1133126d840e75287d83947be3fc3e71 - sha256: a1c97297e867776760489537bc5ae36fa83a154be30e3b79385a39ca4cb058fe + md5: 40d89d8546ad6e139e73ec8f6d56068b + sha256: 709cac7434d1c5a8828105036212a2a36022a07d807e89e2e99cac939c2d2526 category: dev optional: true - name: brotli @@ -590,40 +590,40 @@ package: category: main optional: false - name: c-ares - version: 1.34.6 + version: 1.34.8 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/c-ares-1.34.6-hb03c661_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/c-ares-1.34.8-hb03c661_0.conda hash: - md5: 920bb03579f15389b9e512095ad995b7 - sha256: cc9accf72fa028d31c2a038460787751127317dcfa991f8d1f1babf216bb454e + md5: 6130ad6705adc993b5d8482b7f66e01f + sha256: dee93a82d045f9aa8277829aa465224afa3c7a6ac18388de66099b2be7f705e7 category: main optional: false - name: ca-certificates - version: 2026.5.20 + version: 2026.7.22 manager: conda platform: linux-64 dependencies: __unix: '' - url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2026.5.20-hbd8a1cb_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2026.7.22-hbd8a1cb_0.conda hash: - md5: 489b8e97e666c93f68fdb35c3c9b957f - sha256: 9812a303a1395e1dafbd92e5bc8a1ff6013bcbba0a09c7f03a8d23e43560aa9b + md5: 0f51e2391ade309db462a55611263e9c + sha256: 0a0544cf95f64394fe4959286f5c71f5444ad58feb0602e53becb27448d24da6 category: main optional: false - name: ca-certificates - version: 2026.5.20 + version: 2026.7.22 manager: conda platform: win-64 dependencies: __win: '' - url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2026.5.20-h4c7d964_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2026.7.22-h4c7d964_0.conda hash: - md5: c9b86eece2f944541b86441c94117ab3 - sha256: 86981d764e4ea1883409d30447ff9da46127426d31a63df08315aaded768e652 + md5: e27d2ac27b096dc51fedfcf775a53f9b + sha256: 95e8e74062a5fe5f870ac8c90302b6e89945165fdaed7810606e84ddee6aac12 category: main optional: false - name: cached-property @@ -632,10 +632,10 @@ package: platform: linux-64 dependencies: cached_property: '>=1.5.2,<1.5.3.0a0' - url: https://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_2.conda hash: - md5: 9b347a7ec10940d3f7941ff6c460b551 - sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17 + md5: 1990eb3f49022846fbc7fc9624a0ee43 + sha256: 0d00dd61cb91b1bd1536600c64c9db4f94f3c699fec42864d0a2f4bc2ad8c3e8 category: main optional: false - name: cached-property @@ -644,10 +644,10 @@ package: platform: win-64 dependencies: cached_property: '>=1.5.2,<1.5.3.0a0' - url: https://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_2.conda hash: - md5: 9b347a7ec10940d3f7941ff6c460b551 - sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17 + md5: 1990eb3f49022846fbc7fc9624a0ee43 + sha256: 0d00dd61cb91b1bd1536600c64c9db4f94f3c699fec42864d0a2f4bc2ad8c3e8 category: main optional: false - name: cached_property @@ -655,11 +655,11 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.6' - url: https://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 + python: '>=3.9' + url: https://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_2.conda hash: - md5: 576d629e47797577ab0f1b351297ef4a - sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7 + md5: f71e6840332854fd2eac6c3229768a9c + sha256: b1808a7811b5688d045b204425bb7ee824b340b40025b4ad0a39b4db1f4f1c98 category: main optional: false - name: cached_property @@ -667,59 +667,59 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.6' - url: https://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 + python: '>=3.9' + url: https://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_2.conda hash: - md5: 576d629e47797577ab0f1b351297ef4a - sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7 + md5: f71e6840332854fd2eac6c3229768a9c + sha256: b1808a7811b5688d045b204425bb7ee824b340b40025b4ad0a39b4db1f4f1c98 category: main optional: false - name: certifi - version: 2026.5.20 + version: 2026.7.22 manager: conda platform: linux-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/certifi-2026.5.20-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/certifi-2026.7.22-pyhd8ed1ab_0.conda hash: - md5: 9fefff2f745ea1cc2ef15211a20c054a - sha256: 645655a3510e38e625da136595f3f16f2130c3263630cc3bc8f60f619ddbe490 + md5: 37e13edbe3b48f1095a9d085ef9cd83b + sha256: fb167de4388e64e52aa3907ed099afab944c1fa6e5f74b281a312dae1bcf7f3b category: dev optional: true - name: certifi - version: 2026.5.20 + version: 2026.7.22 manager: conda platform: win-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/certifi-2026.5.20-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/certifi-2026.7.22-pyhd8ed1ab_0.conda hash: - md5: 9fefff2f745ea1cc2ef15211a20c054a - sha256: 645655a3510e38e625da136595f3f16f2130c3263630cc3bc8f60f619ddbe490 + md5: 37e13edbe3b48f1095a9d085ef9cd83b + sha256: fb167de4388e64e52aa3907ed099afab944c1fa6e5f74b281a312dae1bcf7f3b category: dev optional: true - name: charset-normalizer - version: 3.4.7 + version: 3.4.9 manager: conda platform: linux-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.7-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.9-pyhd8ed1ab_0.conda hash: - md5: a9167b9571f3baa9d448faa2139d1089 - sha256: 3f9483d62ce24ecd063f8a5a714448445dc8d9e201147c46699fc0033e824457 + md5: d154b40b109e503430979e8a8d099eaf + sha256: 8d8813ef655b4e75e4fb897abd83ad548882efad7b4e836b021b797f42780799 category: dev optional: true - name: charset-normalizer - version: 3.4.7 + version: 3.4.9 manager: conda platform: win-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.7-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.9-pyhd8ed1ab_0.conda hash: - md5: a9167b9571f3baa9d448faa2139d1089 - sha256: 3f9483d62ce24ecd063f8a5a714448445dc8d9e201147c46699fc0033e824457 + md5: d154b40b109e503430979e8a8d099eaf + sha256: 8d8813ef655b4e75e4fb897abd83ad548882efad7b4e836b021b797f42780799 category: dev optional: true - name: colorama @@ -781,7 +781,7 @@ package: category: main optional: false - name: coverage - version: 7.14.1 + version: 7.15.2 manager: conda platform: linux-64 dependencies: @@ -790,14 +790,14 @@ package: python: '>=3.14,<3.15.0a0' python_abi: 3.14.* tomli: '' - url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.14.1-py314h67df5f8_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.15.2-py314h67df5f8_0.conda hash: - md5: 2af0e1fec00680b1b6ef3859585ca8fa - sha256: 4fb298517c0aff45eb449bf4bd484c0f4d0ab36d4e5c1005b7f0312e68330b57 + md5: bfdf708270d764fd920b6f4d163a1bf4 + sha256: a0238837cd192661dde05ff18d6c6a8e1d33036d6020e2d158e7963bf3f013f8 category: dev optional: true - name: coverage - version: 7.14.1 + version: 7.15.2 manager: conda platform: win-64 dependencies: @@ -807,10 +807,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.14.1-py314h2359020_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.15.2-py314h2359020_0.conda hash: - md5: 442d8dfea629c6a1c46347db9a5ec974 - sha256: 9bd2e2e705d44961482bc58339fe3d456cbbdbc16520c607be9609601c39e5ba + md5: a2f60cd8a6b2f3af76d2e8b463c820c6 + sha256: 1003bfdef9442d187f13479d8831ec6dd064726671fbc33a2f6adf53a357bb3d category: dev optional: true - name: cycler @@ -898,27 +898,27 @@ package: category: main optional: false - name: docutils - version: 0.21.2 + version: 0.22.4 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_1.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/docutils-0.22.4-pyhd8ed1ab_0.conda hash: - md5: 24c1ca34138ee57de72a943237cde4cc - sha256: fa5966bb1718bbf6967a85075e30e4547901410cc7cb7b16daf68942e9a94823 + md5: d6bd3cd217e62bbd7efe67ff224cd667 + sha256: 0d605569a77350fb681f9ed8d357cc71649b59a304099dc9d09fbeec5e84a65e category: dev optional: true - name: docutils - version: 0.21.2 + version: 0.22.4 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_1.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/docutils-0.22.4-pyhd8ed1ab_0.conda hash: - md5: 24c1ca34138ee57de72a943237cde4cc - sha256: fa5966bb1718bbf6967a85075e30e4547901410cc7cb7b16daf68942e9a94823 + md5: d6bd3cd217e62bbd7efe67ff224cd667 + sha256: 0d605569a77350fb681f9ed8d357cc71649b59a304099dc9d09fbeec5e84a65e category: dev optional: true - name: exceptiongroup @@ -997,38 +997,39 @@ package: dependencies: libfreetype: 2.14.3 libfreetype6: 2.14.3 - url: https://repo.prefix.dev/conda-forge/win-64/freetype-2.14.3-h57928b3_0.conda + zlib: '' + url: https://repo.prefix.dev/conda-forge/win-64/freetype-2.14.3-h57928b3_1.conda hash: - md5: 507b36518b5a595edda64066c820a6ef - sha256: 70815dbae6ccdfbb0a47269101a260b0a2e11a2ab5c0f7209f325d01bdb18fb7 + md5: e77293b32225b136a8be300f93d0e89f + sha256: a0e419e96146159f12344c870dca608d11bca36841f228092b986ffc2e1e0f02 category: main optional: false - name: h2 - version: 4.3.0 + version: 4.4.0 manager: conda platform: linux-64 dependencies: - hpack: '>=4.1,<5' + hpack: '>=4.2,<5' hyperframe: '>=6.1,<7' python: '' - url: https://repo.prefix.dev/conda-forge/noarch/h2-4.3.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/h2-4.4.0-pyhcf101f3_0.conda hash: - md5: 164fc43f0b53b6e3a7bc7dce5e4f1dc9 - sha256: 84c64443368f84b600bfecc529a1194a3b14c3656ee2e832d15a20e0329b6da3 + md5: aae3214aab65ae635fbb3cc455596a86 + sha256: 1bdffcb701cf1f4429733fc2e194995bab5ecc71073d84a434dcfb57049a4265 category: dev optional: true - name: h2 - version: 4.3.0 + version: 4.4.0 manager: conda platform: win-64 dependencies: - hpack: '>=4.1,<5' + hpack: '>=4.2,<5' hyperframe: '>=6.1,<7' python: '' - url: https://repo.prefix.dev/conda-forge/noarch/h2-4.3.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/h2-4.4.0-pyhcf101f3_0.conda hash: - md5: 164fc43f0b53b6e3a7bc7dce5e4f1dc9 - sha256: 84c64443368f84b600bfecc529a1194a3b14c3656ee2e832d15a20e0329b6da3 + md5: aae3214aab65ae635fbb3cc455596a86 + sha256: 1bdffcb701cf1f4429733fc2e194995bab5ecc71073d84a434dcfb57049a4265 category: dev optional: true - name: h5py @@ -1074,24 +1075,24 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - aws-c-auth: '>=0.10.1,<0.10.2.0a0' - aws-c-common: '>=0.12.6,<0.12.7.0a0' - aws-c-http: '>=0.10.13,<0.10.14.0a0' - aws-c-io: '>=0.26.3,<0.26.4.0a0' - aws-c-s3: '>=0.12.2,<0.12.3.0a0' - aws-c-sdkutils: '>=0.2.4,<0.2.5.0a0' + aws-c-auth: '>=0.10.4,<0.10.5.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-http: '>=0.11.0,<0.11.1.0a0' + aws-c-io: '>=0.27.3,<0.27.4.0a0' + aws-c-s3: '>=0.12.8,<0.12.9.0a0' + aws-c-sdkutils: '>=0.2.7,<0.2.8.0a0' libaec: '>=1.1.5,<2.0a0' - libcurl: '>=8.20.0,<9.0a0' + libcurl: '>=8.21.0,<9.0a0' libgcc: '>=14' libgfortran: '' libgfortran5: '>=14.3.0' libstdcxx: '>=14' libzlib: '>=1.3.2,<2.0a0' - openssl: '>=3.5.6,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/hdf5-2.1.0-nompi_h87a9417_105.conda + openssl: '>=3.5.7,<4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/hdf5-2.1.0-nompi_h654f344_110.conda hash: - md5: 0d0595612fa229dddb5fc565c260a11f - sha256: beb8a2fb18924ca7b5b82cfb50f008f882f577daef2c00ed88022abea35fec76 + md5: 58484580a0f626dbe7d5145f014dbfd4 + sha256: 548411cb10baf1122c46cfef555936c385137d3637b75bd322e7574eda933842 category: main optional: false - name: hdf5 @@ -1099,47 +1100,47 @@ package: manager: conda platform: win-64 dependencies: - aws-c-auth: '>=0.10.1,<0.10.2.0a0' - aws-c-common: '>=0.12.6,<0.12.7.0a0' - aws-c-http: '>=0.10.13,<0.10.14.0a0' - aws-c-io: '>=0.26.3,<0.26.4.0a0' - aws-c-s3: '>=0.12.2,<0.12.3.0a0' - aws-c-sdkutils: '>=0.2.4,<0.2.5.0a0' + aws-c-auth: '>=0.10.4,<0.10.5.0a0' + aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-http: '>=0.11.0,<0.11.1.0a0' + aws-c-io: '>=0.27.3,<0.27.4.0a0' + aws-c-s3: '>=0.12.8,<0.12.9.0a0' + aws-c-sdkutils: '>=0.2.7,<0.2.8.0a0' libaec: '>=1.1.5,<2.0a0' - libcurl: '>=8.20.0,<9.0a0' + libcurl: '>=8.21.0,<9.0a0' libzlib: '>=1.3.2,<2.0a0' - openssl: '>=3.5.6,<4.0a0' + openssl: '>=3.5.7,<4.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/hdf5-2.1.0-nompi_h0a39f1e_105.conda + url: https://repo.prefix.dev/conda-forge/win-64/hdf5-2.1.0-nompi_h0d3e4b2_110.conda hash: - md5: d5850b9e97b9a577441067628fb8d573 - sha256: 2f2d49ccf163a4bdf556662fb2949bdf408940e2db67a2d15be2d8be247b6e43 + md5: 146134e4db96613ecdc63cf44bec847d + sha256: f6c79581d03d2e2e0cbbb0391d21a149a1f9c311159a9f74c6be8a79e2f696d9 category: main optional: false - name: hpack - version: 4.1.0 + version: 4.2.0 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/hpack-4.2.0-pyhd8ed1ab_0.conda hash: - md5: 0a802cb9888dd14eeefc611f05c40b6e - sha256: 6ad78a180576c706aabeb5b4c8ceb97c0cb25f1e112d76495bff23e3779948ba + md5: b395909221b9bd1df066e5930e18855b + sha256: fdcea5d7cb314485d3907192ef024c704311548c5b0cbeb390cd1951051e29d2 category: dev optional: true - name: hpack - version: 4.1.0 + version: 4.2.0 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/hpack-4.2.0-pyhd8ed1ab_0.conda hash: - md5: 0a802cb9888dd14eeefc611f05c40b6e - sha256: 6ad78a180576c706aabeb5b4c8ceb97c0cb25f1e112d76495bff23e3779948ba + md5: b395909221b9bd1df066e5930e18855b + sha256: fdcea5d7cb314485d3907192ef024c704311548c5b0cbeb390cd1951051e29d2 category: dev optional: true - name: hyperframe @@ -1174,34 +1175,48 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' libstdcxx: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/icu-78.3-h33c6efd_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/icu-78.3-h54a6638_2.conda + hash: + md5: 4ef4b977bb216a3001a3334696a80850 + sha256: d7c260b7e1cf22ce04d6ba8a86eabf4e6c50bc96a5c27fe2ecb32298af3e88eb + category: main + optional: false +- name: icu + version: '78.3' + manager: conda + platform: win-64 + dependencies: + ucrt: '>=10.0.20348.0' + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/icu-78.3-h5112557_2.conda hash: - md5: c80d8a3b84358cb967fa81e7075fbc8a - sha256: fbf86c4a59c2ed05bbffb2ba25c7ed94f6185ec30ecb691615d42342baa1a16a + md5: e596942e8ee6ee17fdcf1e6a77757a66 + sha256: 75c549b55b673e15de8785a8e5dd85bca7eb612eee0ff4dc8d7bdaa15eacbdbb category: main optional: false - name: idna - version: '3.17' + version: '3.18' manager: conda platform: linux-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/idna-3.17-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/idna-3.18-pyhcf101f3_0.conda hash: - md5: c75e517ebd7a5c5272fe111e8b162228 - sha256: f9fe1f9e539c544405ccb7ba632d4ba79edf243c05554d76ace073158a80b691 + md5: 577b04680ae422adb86fc60d7b940659 + sha256: c75632ea624aa450a394f570749420c5a2e0997d0216bc29d5d45b0f39df0426 category: dev optional: true - name: idna - version: '3.17' + version: '3.18' manager: conda platform: win-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/idna-3.17-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/idna-3.18-pyhcf101f3_0.conda hash: - md5: c75e517ebd7a5c5272fe111e8b162228 - sha256: f9fe1f9e539c544405ccb7ba632d4ba79edf243c05554d76ace073158a80b691 + md5: 577b04680ae422adb86fc60d7b940659 + sha256: c75632ea624aa450a394f570749420c5a2e0997d0216bc29d5d45b0f39df0426 category: dev optional: true - name: imagesize @@ -1385,11 +1400,11 @@ package: libedit: '>=3.1.20250104,<4.0a0' libgcc: '>=14' libstdcxx: '>=14' - openssl: '>=3.5.5,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/krb5-1.22.2-ha1258a1_0.conda + openssl: '>=3.5.7,<4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/krb5-1.22.2-hbde042b_1.conda hash: - md5: fb53fb07ce46a575c5d004bbc96032c2 - sha256: 3e307628ca3527448dd1cb14ad7bb9d04d1d28c7d4c5f97ba196ae984571dd25 + md5: 54157a1c8c0bb70f62dd0b17fba7e7f2 + sha256: 9b07046870772f28740e3f6149f09ff222843733087a33c5540b169c6289652d category: main optional: false - name: krb5 @@ -1397,14 +1412,14 @@ package: manager: conda platform: win-64 dependencies: - openssl: '>=3.5.5,<4.0a0' + openssl: '>=3.5.7,<4.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/krb5-1.22.2-h0ea6238_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/krb5-1.22.2-h719d79b_1.conda hash: - md5: 4432f52dc0c8eb6a7a6abc00a037d93c - sha256: eb60f1ad8b597bcf95dee11bc11fe71a8325bc1204cf51d2bb1f2120ffd77761 + md5: 00335c2c4a98656554771aaf6f1a7400 + sha256: c55745796e762ba9e817ab1fc0f21f1a049e202f90fa762df39578f37923f6c2 category: main optional: false - name: lcms2 @@ -1439,44 +1454,44 @@ package: category: main optional: false - name: ld_impl_linux-64 - version: 2.45.1 + version: 2.46.1 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.45.1-default_hbd61a6d_102.conda + url: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.46.1-default_hbd61a6d_102.conda hash: - md5: 18335a698559cdbcd86150a48bf54ba6 - sha256: 3d584956604909ff5df353767f3a2a2f60e07d070b328d109f30ac40cd62df6c + md5: 449500f2c089da11c40f5c21312e3e07 + sha256: 27d83f1188cd19bcb7754a078b3fa7f4cfb8527f8eb2fde54dd01fc529d1adec category: main optional: false - name: lerc - version: 4.1.0 + version: 4.2.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' libstdcxx: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/lerc-4.1.0-hdb68285_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/lerc-4.2.0-hdb68285_0.conda hash: - md5: a752488c68f2e7c456bcbd8f16eec275 - sha256: f84cb54782f7e9cea95e810ea8fef186e0652d0fa73d3009914fa2c1262594e1 + md5: fb9d356b1a57d6d54768be7ebd5fce09 + sha256: bf9fdebf55d8bc99d83531cdffda00703f4dc5f93a1a956768c147362c72feda category: main optional: false - name: lerc - version: 4.1.0 + version: 4.2.0 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/lerc-4.1.0-hd936e49_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/lerc-4.2.0-hd936e49_0.conda hash: - md5: 54b231d595bc1ff9bff668dd443ee012 - sha256: 45df58fca800b552b17c3914cc9ab0d55a82c5172d72b5c44a59c710c06c5473 + md5: add59e2b60ac9d4299d17c938185c75a + sha256: 93d666f63f284ef77b87b0b1f77b70f7d36d315a132f9afa64bc0012d937ba39 category: main optional: false - name: libaec @@ -1641,7 +1656,7 @@ package: category: main optional: false - name: libcurl - version: 8.20.0 + version: 8.21.0 manager: conda platform: linux-64 dependencies: @@ -1649,31 +1664,33 @@ package: krb5: '>=1.22.2,<1.23.0a0' libgcc: '>=14' libnghttp2: '>=1.68.1,<2.0a0' + libpsl: '>=0.22.0,<0.23.0a0' libssh2: '>=1.11.1,<2.0a0' libzlib: '>=1.3.2,<2.0a0' - openssl: '>=3.5.6,<4.0a0' + openssl: '>=3.5.7,<4.0a0' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libcurl-8.20.0-hcf29cc6_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libcurl-8.21.0-hae6b9f4_2.conda hash: - md5: c3cc2864f82a944bc90a7beb4d3b0e88 - sha256: 75963a5dd913311f59a35dbd307592f4fa754c4808aff9c33edb430c415e38eb + md5: f9c59d277a16ec8f272b2d5dd2ec3335 + sha256: ba8354084b34fce56d5697982fce4a384c148e972e15c0ab891187617fe7ec29 category: main optional: false - name: libcurl - version: 8.20.0 + version: 8.21.0 manager: conda platform: win-64 dependencies: krb5: '>=1.22.2,<1.23.0a0' + libpsl: '>=0.22.0,<0.23.0a0' libssh2: '>=1.11.1,<2.0a0' libzlib: '>=1.3.2,<2.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libcurl-8.20.0-h8206538_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libcurl-8.21.0-h51a1c48_2.conda hash: - md5: 7bee27a8f0a295117ccb864f30d2d87e - sha256: f4ce5aa835a698532feaa368e804365a7e45a9edebe006a8e1c80505d893c24e + md5: 88c875a8f34785d6f6185ceb646154fa + sha256: e9a9231e6c04b82979a6a1a4f90b8a697dc3a42884e709dee8ba5d0355b45296 category: main optional: false - name: libdeflate @@ -1736,10 +1753,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libexpat-2.8.1-hecca717_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libexpat-2.8.1-hecca717_1.conda hash: - md5: 93764a5ca80616e9c10106cdaec92f74 - sha256: 363018b25fdb5534c79783d912bd4b685a3547f4fc5996357ad548899b0ee8e7 + md5: b24d3c612f71e7aa74158d92106318b2 + sha256: 16feffd9ddbbe5b718515d38ee376c685ba95491cd901244e24671d20b952a77 category: main optional: false - name: libexpat @@ -1750,10 +1767,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libexpat-2.8.1-hac47afa_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libexpat-2.8.1-hac47afa_1.conda hash: - md5: 23eb9474a16d4b9f6f27429989e82002 - sha256: a65e518c20d1482182bc0f1f6dd5d992f25ca44c3b32307be39ae8310db8f060 + md5: ccc490c81ffe14181861beac0e8f3169 + sha256: 1a54d874addda73b6f7164d5f3905821277a1831bcc05edd74b3085391688571 category: main optional: false - name: libffi @@ -1801,10 +1818,10 @@ package: platform: win-64 dependencies: libfreetype6: '>=2.14.3' - url: https://repo.prefix.dev/conda-forge/win-64/libfreetype-2.14.3-h57928b3_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libfreetype-2.14.3-h57928b3_1.conda hash: - md5: d9f70dd06674e26b6d5a657ddd22b568 - sha256: 71fae9ae05563ceec70adceb7bc66faa326a81a6590a8aac8a5074019070a2d8 + md5: e45b52fb9a81c9e2708465a706e05952 + sha256: 035d0c67bf9f7a16f4a1764f420c120f1a995d071bb265fcc66ef688ef709d7b category: main optional: false - name: libfreetype6 @@ -1827,15 +1844,15 @@ package: manager: conda platform: win-64 dependencies: - libpng: '>=1.6.55,<1.7.0a0' + libpng: '>=1.6.58,<1.7.0a0' libzlib: '>=1.3.2,<2.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libfreetype6-2.14.3-hdbac1cb_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libfreetype6-2.14.3-hdbac1cb_1.conda hash: - md5: f9975a0177ee6cdda10c86d1db1186b0 - sha256: 497e9ab7c80f579e1b2850523740d6a543b8020f6b43be6bd6e83b3a6fb7fb32 + md5: 4e4d54f9f98383d977ba56ef39ebf46d + sha256: 0bbd19c9f7c4d0232b31892e6a4d1f82b8d19d1b84d89725f1f491b336447758 category: main optional: false - name: libgcc @@ -1845,10 +1862,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' _openmp_mutex: '>=4.5' - url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-15.2.0-he0feb66_19.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-15.2.0-he0feb66_20.conda hash: - md5: 57736f29cc2b0ec0b6c2952d3f101b6a - sha256: 8e0a3b5e41272e5678499b5dfc4cddb673f9e935de01eb0767ce857001229f46 + md5: 3533de187cf7283f96bfdb28ad73e2bc + sha256: e3b7bb287d1685b15781a6d9e3408d6ddaff23f5a1d0d6c0140619dd3950fe72 category: main optional: false - name: libgcc @@ -1858,10 +1875,10 @@ package: dependencies: _openmp_mutex: '>=4.5' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' - url: https://repo.prefix.dev/conda-forge/win-64/libgcc-15.2.0-h8ee18e1_19.conda + url: https://repo.prefix.dev/conda-forge/win-64/libgcc-15.2.0-h8ee18e1_20.conda hash: - md5: cc5d690fc1c629038f13c68e88e65f44 - sha256: 80e80ef5e31b00b12539db3c5aaecde60dab91381abfc1060e323d5c3b016dce + md5: 00528c2577868b9cfefec85b8fe26d66 + sha256: 954dcca1cbf2ad1e7ac2129bf77f787bec0a2eb9edb3f8b79c9a93b492a20c40 category: main optional: false - name: libgcc-ng @@ -1870,10 +1887,10 @@ package: platform: linux-64 dependencies: libgcc: 15.2.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-ng-15.2.0-h69a702a_19.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-ng-15.2.0-h69a702a_20.conda hash: - md5: 331ee9b72b9dff570d56b1302c5ab37d - sha256: 9dcf54adfaa5e861123c2da4f2f0451a685464ea7e5a41ad91cf67b31d658d98 + md5: c099368d009e4d828449eaed7b2cb701 + sha256: e01a2a027fceea1011d2e74307845fb0c4bd6d195ff27fbf5baeafa55531d128 category: main optional: false - name: libgfortran @@ -1882,10 +1899,10 @@ package: platform: linux-64 dependencies: libgfortran5: 15.2.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran-15.2.0-h69a702a_19.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran-15.2.0-h69a702a_20.conda hash: - md5: 42bf7eca1a951735fa06c0e3c0d5c8e6 - sha256: 561a42758ef25b9ce308c4e2cf56daee4f06138385a17e29a492cd928e00be6f + md5: a450a08a63f940e9aa7b37692e71196a + sha256: 76d81032e264b74f519cc26962d5eb39547e0785fc9d2957bbc12e7a91214412 category: main optional: false - name: libgfortran5 @@ -1895,10 +1912,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=15.2.0' - url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran5-15.2.0-h68bc16d_19.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran5-15.2.0-h68bc16d_20.conda hash: - md5: 85072b0ad177c966294f129b7c04a2d5 - sha256: 057978bb69fea29ed715a9b98adf71015c31baecc4aeb2bfc20d4fd5d83579d4 + md5: 4edbcbea1a8790a7d58e648523b69546 + sha256: 95122f42566dc9a62b9615d2372b3f3c75fa7bd8bb1eda53aa7532ce60d545eb category: main optional: false - name: libgomp @@ -1907,10 +1924,10 @@ package: platform: win-64 dependencies: libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' - url: https://repo.prefix.dev/conda-forge/win-64/libgomp-15.2.0-h8ee18e1_19.conda + url: https://repo.prefix.dev/conda-forge/win-64/libgomp-15.2.0-h8ee18e1_20.conda hash: - md5: f1147651e3fdd585e2f442c0c2fc8f2d - sha256: 4dc958ced2fc7f42bc675b07e2c9abe3e150875ffdf62ca551d94fc6facf1fd7 + md5: 3b2b211930103e49d77da1a7d9ea9af9 + sha256: 33606594501174cc1677c7dbe39de739c2f04e9a8ddbd95aa82e48d1bd79b388 category: main optional: false - name: libhwloc @@ -1974,30 +1991,30 @@ package: category: main optional: false - name: libjpeg-turbo - version: 3.1.4.1 + version: 3.2.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libjpeg-turbo-3.1.4.1-hb03c661_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libjpeg-turbo-3.2.0-hb03c661_0.conda hash: - md5: 6178c6f2fb254558238ef4e6c56fb782 - sha256: 10056646c28115b174de81a44e23e3a0a3b95b5347d2e6c45cc6d49d35294256 + md5: 466badda5536d85ddc63ee9404f29735 + sha256: 716332fd31b3808da7a4235a05212a9e9da05e854864c3def2dea0b5d2bf7610 category: main optional: false - name: libjpeg-turbo - version: 3.1.4.1 + version: 3.2.0 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libjpeg-turbo-3.1.4.1-hfd05255_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libjpeg-turbo-3.2.0-hfd05255_0.conda hash: - md5: 25a127bad5470852b30b239f030ec95b - sha256: 698d57b5b90120270eaa401298319fcb25ea186ae95b340c2f4813ed9171083d + md5: cf219146d5bf2fee5907409ff9f5ac89 + sha256: 3d6635efa9497b9c5ba7957df8067c0a980d5cb10a6ea136931809eb410f8a99 category: main optional: false - name: liblapack @@ -2125,32 +2142,63 @@ package: sha256: 218913aeee391460bd0e341b834dbd9c6fa6ae0a4276c0c300266cc99a816a28 category: main optional: false +- name: libpsl + version: 0.22.0 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + icu: '>=78.3,<79.0a0' + libgcc: '>=14' + libstdcxx: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/libpsl-0.22.0-h49b2146_1.conda + hash: + md5: af5ddfb52ad25d833c70c7511478d4eb + sha256: 71118885feab91c61bea4e9532ec46e0653b24f02e563681f822915aee8435bb + category: main + optional: false +- name: libpsl + version: 0.22.0 + manager: conda + platform: win-64 + dependencies: + icu: '>=78.3,<79.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/libpsl-0.22.0-h25e0afd_1.conda + hash: + md5: ba200e33e10ccf0d730c4ce87badbdf1 + sha256: 040d4adabae2634b13183203e383c21f74ed98028b5d50bf9bae4968dd05aaa5 + category: main + optional: false - name: libsqlite - version: 3.53.1 + version: 3.53.4 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' + icu: '>=78.3,<79.0a0' libgcc: '>=14' libzlib: '>=1.3.2,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.53.1-h0c1763c_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.53.4-hf4e2dac_0.conda hash: - md5: 7dc38adcbf71e6b38748e919e16e0dce - sha256: 54cdcd3214313b62c2a8ee277e6f42150d9b748264c1b70d958bf735e420ef8d + md5: df088a279cd5e6fd2790b4c196434da1 + sha256: 72023efc207fe681e26b65fc9d668062cf0b4f0eacf3431e6eb099b95c1f2efd category: main optional: false - name: libsqlite - version: 3.53.1 + version: 3.53.4 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.53.1-hf5d6505_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.53.4-hf5d6505_0.conda hash: - md5: 7fea434a17c323256acc510a041b80d7 - sha256: e70562450332ca8954bc16f3455468cca5ef3695c7d7187ecc87f8fc3c70e9eb + md5: ca0d59f40a02a15e9b5d0ff8db0f85e3 + sha256: 62e1c45ec71ab2e5deeeb0e47e7df6a609991e91d46348f16df50c68fee145c8 category: main optional: false - name: libssh2 @@ -2191,10 +2239,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: 15.2.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-15.2.0-h934c35e_19.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-15.2.0-h934c35e_20.conda hash: - md5: 5794b3bdc38177caf969dabd3af08549 - sha256: dff1058c76ec6b8759e41cefa2508162d00e4a5e6721aa68ec3fd10094e702dc + md5: fbd3d5506b11b5cfc916b29263b6b6f7 + sha256: b5eadda8fb0df262f0d424c4a0c8c1c8d65d904ce622f07936c793ea1b8a39d9 category: main optional: false - name: libstdcxx-ng @@ -2203,64 +2251,64 @@ package: platform: linux-64 dependencies: libstdcxx: 15.2.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-15.2.0-hdf11a46_19.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-15.2.0-hdf11a46_20.conda hash: - md5: e5ce228e579726c07255dbf90dc62101 - sha256: 0672b6b6e1791c92e8eccad58081a99d614fcf82bca5841f9dfa3c3e658f83b9 + md5: 593dc263426eb14f16dc594bfdb9772a + sha256: 0b79903234f68410c11c33cb9829f7b3cb01a9ff2f42bf083dd2c51e886e6077 category: main optional: false - name: libtiff - version: 4.7.1 + version: 4.7.2 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - lerc: '>=4.0.0,<5.0a0' + lerc: '>=4.1.0,<5.0a0' libdeflate: '>=1.25,<1.26.0a0' libgcc: '>=14' - libjpeg-turbo: '>=3.1.0,<4.0a0' - liblzma: '>=5.8.1,<6.0a0' + libjpeg-turbo: '>=3.1.4.1,<4.0a0' + liblzma: '>=5.8.3,<6.0a0' libstdcxx: '>=14' libwebp-base: '>=1.6.0,<2.0a0' - libzlib: '>=1.3.1,<2.0a0' + libzlib: '>=1.3.2,<2.0a0' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libtiff-4.7.1-h9d88235_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libtiff-4.7.2-h9d88235_0.conda hash: - md5: cd5a90476766d53e901500df9215e927 - sha256: e5f8c38625aa6d567809733ae04bb71c161a42e44a9fa8227abe61fa5c60ebe0 + md5: c1fcb4a88bc15a9f77ad8d27d7af1df9 + sha256: b31346e1c01ab40a170e91147092ee8fd92b1dee3c66ee47ef025571c879b159 category: main optional: false - name: libtiff - version: 4.7.1 + version: 4.7.2 manager: conda platform: win-64 dependencies: - lerc: '>=4.0.0,<5.0a0' + lerc: '>=4.1.0,<5.0a0' libdeflate: '>=1.25,<1.26.0a0' - libjpeg-turbo: '>=3.1.0,<4.0a0' - liblzma: '>=5.8.1,<6.0a0' - libzlib: '>=1.3.1,<2.0a0' + libjpeg-turbo: '>=3.1.4.1,<4.0a0' + liblzma: '>=5.8.3,<6.0a0' + libzlib: '>=1.3.2,<2.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/libtiff-4.7.1-h8f73337_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/libtiff-4.7.2-h8f73337_0.conda hash: - md5: 549845d5133100142452812feb9ba2e8 - sha256: f1b8cccaaeea38a28b9cd496694b2e3d372bb5be0e9377c9e3d14b330d1cba8a + md5: e83f459471905a04ebe15e21d063c49d + sha256: ec6d66308a6d6abaf3225f2f185113e6172e77eb0fa8622af982d7a5d6d47a2c category: main optional: false - name: libuuid - version: 2.42.1 + version: 2.42.2 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libuuid-2.42.1-h5347b49_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libuuid-2.42.2-h5347b49_0.conda hash: - md5: 7d0a66598195ef00b6efc55aefc7453b - sha256: 3f0edf1280e2f6684a986f821eaa3e123d2694a00b31b96ca0d4a4c12c129231 + md5: 01bb81d12c957de066ea7362007df642 + sha256: 9b1bdce27a7e31f7d241aeecff67a1f3101d52a2b1e33ccc2cdf2613072bf81f category: main optional: false - name: libwebp-base @@ -2358,6 +2406,7 @@ package: manager: conda platform: win-64 dependencies: + icu: '>=78.3,<79.0a0' libiconv: '>=1.18,<2.0a0' liblzma: '>=5.8.3,<6.0a0' libxml2-16: 2.15.3 @@ -2365,10 +2414,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libxml2-2.15.3-hbc0d294_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libxml2-2.15.3-h8ef44ab_0.conda hash: - md5: e3b5acbb857a12f5d59e8d174bc536c0 - sha256: da68af9d9d28d65a6916db1bef68f8a25c64c4fdcf759f32a2d2f2f143220adf + md5: 95591ca5671d2213f5b2d5aa7818420d + sha256: a4599c6bbbbdd7db570896e520c557eec8e66d94e839a59d17dc1f24a3d5f82b category: main optional: false - name: libxml2-16 @@ -2393,16 +2442,17 @@ package: manager: conda platform: win-64 dependencies: + icu: '>=78.3,<79.0a0' libiconv: '>=1.18,<2.0a0' liblzma: '>=5.8.3,<6.0a0' libzlib: '>=1.3.2,<2.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libxml2-16-2.15.3-h692994f_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libxml2-16-2.15.3-h3cfd58e_0.conda hash: - md5: f7d6fcda29570e20851b78d92ea2154e - sha256: 8038084c60eda2006d0122d05e3364fe8db0a18935ca6ed0168b5ba5aa33f904 + md5: 9e8dd0d90ed830107b2c36801035b7db + sha256: 3b61ee3caba702d2ff432fa3920835db963026e5c99c4e6fdca0c6114f59e7ce category: main optional: false - name: libzlib @@ -2432,29 +2482,29 @@ package: category: main optional: false - name: llvm-openmp - version: 22.1.6 + version: 22.1.8 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-22.1.6-h4922eb0_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-22.1.8-h4922eb0_0.conda hash: - md5: a7f80a18bc21daad0f4d5c3fbad1e8c1 - sha256: e74dbafd2b420687cc913f5587050270c8f57042405b6b0d66c3a8013dc104ab + md5: 7bbfdc5a6eca997d3b0873a575c3e155 + sha256: a37aba21b85800af1e7c5b04ba76abab96b6e591eedf99dc6e4df83b0fefd7a5 category: main optional: false - name: llvm-openmp - version: 22.1.6 + version: 22.1.8 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-22.1.6-h4fa8253_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-22.1.8-h4fa8253_0.conda hash: - md5: 1966432ddb4d5e13890dae3758a112d3 - sha256: b12aa9c957fadf488888aa4cad6d424d499ffcceefe5d8e9077c4da46308f26b + md5: de3551bf6508d45ca46b714639e52823 + sha256: 50c02902bb516eeb56680358f052be38b5bf74b40e78ea4b2a675e84957e7307 category: main optional: false - name: markupsafe @@ -2572,7 +2622,7 @@ package: category: dev optional: true - name: mkl - version: 2026.0.0 + version: 2026.1.0 manager: conda platform: linux-64 dependencies: @@ -2580,30 +2630,30 @@ package: _openmp_mutex: '>=4.5' libgcc: '>=14' libstdcxx: '>=14' - llvm-openmp: '>=22.1.5' - onemkl-license: 2026.0.0 + llvm-openmp: '>=22.1.8' + onemkl-license: 2026.1.0 tbb: '>=2023.0.0' - url: https://repo.prefix.dev/conda-forge/linux-64/mkl-2026.0.0-h0e700b2_915.conda + url: https://repo.prefix.dev/conda-forge/linux-64/mkl-2026.1.0-hecca717_243.conda hash: - md5: 44208bd851118db1e20923441f1bb3bb - sha256: b23dc574c681cfa9708378b781d206fa790f1944cfb7b4c20177824b96938544 + md5: cef284d6d9fe0caf11638f5f0e4f9a64 + sha256: c68967a13488684d87fb7ac77b73c6f3f825f2da403707a14e75374c0ce3629f category: main optional: false - name: mkl - version: 2026.0.0 + version: 2026.1.0 manager: conda platform: win-64 dependencies: - llvm-openmp: '>=22.1.5' - onemkl-license: 2026.0.0 + llvm-openmp: '>=22.1.8' + onemkl-license: 2026.1.0 tbb: '>=2023.0.0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/mkl-2026.0.0-hac47afa_908.conda + url: https://repo.prefix.dev/conda-forge/win-64/mkl-2026.1.0-hac47afa_233.conda hash: - md5: 36ea6e1292e9d5e89374201da79646ef - sha256: f997bfc9bc4d4e14261cdcd1ad195d64a72ee44dca3145d24c1349f8d1311aa5 + md5: 5afbf28c4ca3e05b5469dbbd78c8e704 + sha256: ff355522fb0b6e33841167d9ca749147c8734d8be07b63b2ce25b0db043f42ed category: main optional: false - name: munkres @@ -2682,25 +2732,25 @@ package: category: main optional: false - name: onemkl-license - version: 2026.0.0 + version: 2026.1.0 manager: conda platform: linux-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/linux-64/onemkl-license-2026.0.0-hf2ce2f3_915.conda + url: https://repo.prefix.dev/conda-forge/linux-64/onemkl-license-2026.1.0-ha770c72_243.conda hash: - md5: f9a902d29c0980c672f77eff7be1794c - sha256: fd53c7f3e874b6fd2add63103028ed707b728cc275597d12951886cfcda46e7d + md5: 2617b8e56c82fe48be8951e7794f08bc + sha256: b560b1106416b7df0041144aad3842e8783e22c70418a46cbcc90fe67a96b229 category: main optional: false - name: onemkl-license - version: 2026.0.0 + version: 2026.1.0 manager: conda platform: win-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/win-64/onemkl-license-2026.0.0-h57928b3_908.conda + url: https://repo.prefix.dev/conda-forge/win-64/onemkl-license-2026.1.0-h57928b3_233.conda hash: - md5: 9c9303e08b50e09f5c23e1dac99d0936 - sha256: 42ad15cbb3bf31830efa04d4b86dd2d5c0dd590c86f98adcd3c8c1f75acf5dd5 + md5: 1566e2ce8c3bc23a2feb866c4d9e91e3 + sha256: 96dec1c878d6e6f835be8ed57152a37be9a5104ac79c2425815d71c64cf13ee4 category: main optional: false - name: openjpeg @@ -2738,21 +2788,21 @@ package: category: main optional: false - name: openssl - version: 3.6.2 + version: 3.6.3 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' ca-certificates: '' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/openssl-3.6.2-h35e630c_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/openssl-3.6.3-h35e630c_0.conda hash: - md5: da1b85b6a87e141f5140bb9924cecab0 - sha256: c0ef482280e38c71a08ad6d71448194b719630345b0c9c60744a2010e8a8e0cb + md5: 79dd2074b5cd5c5c6b2930514a11e22d + sha256: d48f5c22b9897c01e4dff3680f1f57ceb02711ab9c62f74339b080419dfad34b category: main optional: false - name: openssl - version: 3.6.2 + version: 3.6.3 manager: conda platform: win-64 dependencies: @@ -2760,10 +2810,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/openssl-3.6.2-hf411b9b_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/openssl-3.6.3-hf411b9b_0.conda hash: - md5: 05c7d624cff49dbd8db1ad5ba537a8a3 - sha256: feb5815125c60f2be4a411e532db1ed1cd2d7261a6a43c54cb6ae90724e2e154 + md5: e99f95734a326c0fd4d02bbd995150d4 + sha256: cb6e7ba0d010ee0d3249ce9886de3d7613d26d9965d4c95666fa66b9c4c31001 category: main optional: false - name: packaging @@ -2791,16 +2841,16 @@ package: category: main optional: false - name: pillow - version: 12.2.0 + version: 12.3.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - lcms2: '>=2.18,<3.0a0' + lcms2: '>=2.19.1,<3.0a0' libfreetype: '>=2.14.3' libfreetype6: '>=2.14.3' libgcc: '>=14' - libjpeg-turbo: '>=3.1.2,<4.0a0' + libjpeg-turbo: '>=3.1.4.1,<4.0a0' libtiff: '>=4.7.1,<4.8.0a0' libwebp-base: '>=1.6.0,<2.0a0' libxcb: '>=1.17.0,<2.0a0' @@ -2809,21 +2859,21 @@ package: python_abi: 3.14.* tk: '>=8.6.13,<8.7.0a0' zlib-ng: '>=2.3.3,<2.4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/pillow-12.2.0-py314h8ec4b1a_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pillow-12.3.0-py314h8ec4b1a_0.conda hash: - md5: 76c4757c0ec9d11f969e8eb44899307b - sha256: 123d8a7c16c88658b4f29e9f115a047598c941708dade74fbaff373a32dbec5e + md5: 233e62a8eb894b79b5c93f4f8dec4dcd + sha256: bcab128df8980514061a78b9c67f5004954048f584da20df8c5a78de9e3f5abb category: main optional: false - name: pillow - version: 12.2.0 + version: 12.3.0 manager: conda platform: win-64 dependencies: - lcms2: '>=2.18,<3.0a0' + lcms2: '>=2.19.1,<3.0a0' libfreetype: '>=2.14.3' libfreetype6: '>=2.14.3' - libjpeg-turbo: '>=3.1.2,<4.0a0' + libjpeg-turbo: '>=3.1.4.1,<4.0a0' libtiff: '>=4.7.1,<4.8.0a0' libwebp-base: '>=1.6.0,<2.0a0' libxcb: '>=1.17.0,<2.0a0' @@ -2835,10 +2885,10 @@ package: vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' zlib-ng: '>=2.3.3,<2.4.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/pillow-12.2.0-py314h61b30b5_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/pillow-12.3.0-py314h61b30b5_0.conda hash: - md5: 23ce08e46c625eb523ffef8939cb3ca9 - sha256: d122b2a91402d72cf7f9d256e805e3533b2cf307c067e0072d9cc83ae789da48 + md5: 09b8e6ac8f4a257b59e5d3025f3c9c1d + sha256: c9dc3212ed0021974541072ee3765a5097a0721191c34ee485d7d7e94449648f category: main optional: false - name: pip @@ -2866,27 +2916,27 @@ package: category: main optional: false - name: platformdirs - version: 4.10.0 + version: 4.11.0 manager: conda platform: linux-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.10.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.11.0-pyhcf101f3_0.conda hash: - md5: 2c5ef45db85d34799771629bd5860fd7 - sha256: 9e5e1fd3506ccfc4d444fc4d2d39b0ed097d5d0e3bd3d4bdf6bcc81aaf66860d + md5: 1fadaa6dd1d03d062075f84157ac2cc7 + sha256: a4b8c7d3b3703d10f93187986d59aec09b22033978945845899beb7f849a7be6 category: dev optional: true - name: platformdirs - version: 4.10.0 + version: 4.11.0 manager: conda platform: win-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.10.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.11.0-pyhcf101f3_0.conda hash: - md5: 2c5ef45db85d34799771629bd5860fd7 - sha256: 9e5e1fd3506ccfc4d444fc4d2d39b0ed097d5d0e3bd3d4bdf6bcc81aaf66860d + md5: 1fadaa6dd1d03d062075f84157ac2cc7 + sha256: a4b8c7d3b3703d10f93187986d59aec09b22033978945845899beb7f849a7be6 category: dev optional: true - name: pluggy @@ -3063,7 +3113,7 @@ package: category: dev optional: true - name: pylint - version: 4.0.5 + version: 4.0.6 manager: conda platform: linux-64 dependencies: @@ -3076,14 +3126,14 @@ package: python: '' tomli: '>=1.1' tomlkit: '>=0.10.1' - url: https://repo.prefix.dev/conda-forge/noarch/pylint-4.0.5-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pylint-4.0.6-pyhcf101f3_0.conda hash: - md5: 7d9916ed19ecda71f0b00963365252a7 - sha256: a8e7736982409a56d2aa329d3052259fd45910f98fb7d3f2816f1a6d59624d60 + md5: ba6813f7d81828b7dcd03248a42d031d + sha256: 5393b20b76361efe49971a0081cad0f4256f875a14fe71b1ed93ba9e0193369c category: dev optional: true - name: pylint - version: 4.0.5 + version: 4.0.6 manager: conda platform: win-64 dependencies: @@ -3096,10 +3146,10 @@ package: python: '' tomli: '>=1.1' tomlkit: '>=0.10.1' - url: https://repo.prefix.dev/conda-forge/noarch/pylint-4.0.5-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pylint-4.0.6-pyhcf101f3_0.conda hash: - md5: 7d9916ed19ecda71f0b00963365252a7 - sha256: a8e7736982409a56d2aa329d3052259fd45910f98fb7d3f2816f1a6d59624d60 + md5: ba6813f7d81828b7dcd03248a42d031d + sha256: 5393b20b76361efe49971a0081cad0f4256f875a14fe71b1ed93ba9e0193369c category: dev optional: true - name: pyparsing @@ -3154,11 +3204,11 @@ package: category: dev optional: true - name: pytest - version: 9.0.3 + version: 9.1.1 manager: conda platform: linux-64 dependencies: - colorama: '>=0.4' + colorama: '' exceptiongroup: '>=1' iniconfig: '>=1.0.1' packaging: '>=22' @@ -3166,18 +3216,18 @@ package: pygments: '>=2.7.2' python: '' tomli: '>=1' - url: https://repo.prefix.dev/conda-forge/noarch/pytest-9.0.3-pyhc364b38_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytest-9.1.1-pyhc364b38_2.conda hash: - md5: 6a991452eadf2771952f39d43615bb3e - sha256: 960f59442173eee0731906a9077bd5ccf60f4b4226f05a22d1728ab9a21a879c + md5: 64c98a12c4e23eb238bf66bbecafdf3c + sha256: 430051d80765207a7d782b2b188230ba1489d35c6e75fd9903f76cb9fda4af16 category: dev optional: true - name: pytest - version: 9.0.3 + version: 9.1.1 manager: conda platform: win-64 dependencies: - colorama: '>=0.4' + colorama: '' exceptiongroup: '>=1' iniconfig: '>=1.0.1' packaging: '>=22' @@ -3185,10 +3235,10 @@ package: pygments: '>=2.7.2' python: '' tomli: '>=1' - url: https://repo.prefix.dev/conda-forge/noarch/pytest-9.0.3-pyhc364b38_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytest-9.1.1-pyhc364b38_2.conda hash: - md5: 6a991452eadf2771952f39d43615bb3e - sha256: 960f59442173eee0731906a9077bd5ccf60f4b4226f05a22d1728ab9a21a879c + md5: 64c98a12c4e23eb238bf66bbecafdf3c + sha256: 430051d80765207a7d782b2b188230ba1489d35c6e75fd9903f76cb9fda4af16 category: dev optional: true - name: pytest-cov @@ -3222,48 +3272,48 @@ package: category: dev optional: true - name: python - version: 3.14.5 + version: 3.14.6 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' bzip2: '>=1.0.8,<2.0a0' ld_impl_linux-64: '>=2.36.1' - libexpat: '>=2.8.0,<3.0a0' + libexpat: '>=2.8.1,<3.0a0' libffi: '>=3.5.2,<3.6.0a0' libgcc: '>=14' liblzma: '>=5.8.3,<6.0a0' libmpdec: '>=4.0.0,<5.0a0' - libsqlite: '>=3.53.1,<4.0a0' - libuuid: '>=2.42.1,<3.0a0' + libsqlite: '>=3.53.3,<4.0a0' + libuuid: '>=2.42.2,<3.0a0' libzlib: '>=1.3.2,<2.0a0' ncurses: '>=6.6,<7.0a0' - openssl: '>=3.5.6,<4.0a0' + openssl: '>=3.5.7,<4.0a0' pip: '' python_abi: 3.14.* readline: '>=8.3,<9.0a0' tk: '>=8.6.13,<8.7.0a0' tzdata: '' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/python-3.14.5-habeac84_100_cp314.conda + url: https://repo.prefix.dev/conda-forge/linux-64/python-3.14.6-habeac84_101_cp314.conda hash: - md5: da92e59ff92f2d5ede4f612af20f583f - sha256: 55eed9bf2a3f6e90311276f0834737fe7c2d9ec3e5e2e557507858df4c7521e6 + md5: 78975a41cf3c525da654f17e35bfca9e + sha256: ee8f2006e1724b1f2e9e0ccc5a7cfdcab973460faa2f63ac1f6e44fdad4c0344 category: main optional: false - name: python - version: 3.14.5 + version: 3.14.6 manager: conda platform: win-64 dependencies: bzip2: '>=1.0.8,<2.0a0' - libexpat: '>=2.8.0,<3.0a0' + libexpat: '>=2.8.1,<3.0a0' libffi: '>=3.5.2,<3.6.0a0' liblzma: '>=5.8.3,<6.0a0' libmpdec: '>=4.0.0,<5.0a0' - libsqlite: '>=3.53.1,<4.0a0' + libsqlite: '>=3.53.3,<4.0a0' libzlib: '>=1.3.2,<2.0a0' - openssl: '>=3.5.6,<4.0a0' + openssl: '>=3.5.7,<4.0a0' pip: '' python_abi: 3.14.* tk: '>=8.6.13,<8.7.0a0' @@ -3272,10 +3322,10 @@ package: vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/python-3.14.5-h4b44e0e_100_cp314.conda + url: https://repo.prefix.dev/conda-forge/win-64/python-3.14.6-h4b44e0e_101_cp314.conda hash: - md5: 3f76bc298eebc1ec1497852f4d7f09d9 - sha256: c561d171e5d1f1bb1a83ca6fa6aa49577a2956a245c5040dfaf8ca20c10a096e + md5: 67bbf51f88a2053513d7c78f485f7479 + sha256: 3a9ae901cd853d507d97aa8b72af4b9a572a3f92dcc5bad8a1318f77ff4e0e64 category: main optional: false - name: python-dateutil @@ -3457,44 +3507,18 @@ package: sha256: 30f3c04fcfb64c44d821d392a4a0b8915650dbd900c8befc20ade8fde8ec6aa2 category: dev optional: true -- name: roman-numerals-py - version: 4.1.0 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.10' - roman-numerals: 4.1.0 - url: https://repo.prefix.dev/conda-forge/noarch/roman-numerals-py-4.1.0-pyhd8ed1ab_0.conda - hash: - md5: 28687768633154993d521aecfa4a56ac - sha256: ce21b50a412b87b388db9e8dfbf8eb16fc436c23750b29bf612ee1a74dd0beb2 - category: dev - optional: true -- name: roman-numerals-py - version: 4.1.0 - manager: conda - platform: win-64 - dependencies: - python: '>=3.10' - roman-numerals: 4.1.0 - url: https://repo.prefix.dev/conda-forge/noarch/roman-numerals-py-4.1.0-pyhd8ed1ab_0.conda - hash: - md5: 28687768633154993d521aecfa4a56ac - sha256: ce21b50a412b87b388db9e8dfbf8eb16fc436c23750b29bf612ee1a74dd0beb2 - category: dev - optional: true - name: s2n - version: 1.7.3 + version: 1.7.5 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - openssl: '>=3.5.6,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/s2n-1.7.3-hc5a330e_0.conda + openssl: '>=3.5.7,<4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/s2n-1.7.5-h7e3ee7f_1.conda hash: - md5: f2bd09e21c5844a12e2f5eefcd075555 - sha256: 150a0a5254e8b15ad737549721c7d13406cd96432f3f446e07073dbd98bb2491 + md5: fa1c00d999e83ec20173c9775f71a1f1 + sha256: 7369ac21f3561e2203f5b1600ef0671270057380783ca4b9e15f679ba25db575 category: main optional: false - name: scipy @@ -3564,45 +3588,45 @@ package: category: main optional: false - name: snowballstemmer - version: 3.1.0 + version: 3.1.1 manager: conda platform: linux-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/snowballstemmer-3.1.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/snowballstemmer-3.1.1-pyhd8ed1ab_0.conda hash: - md5: 1590bceae37377cecba443c83a44c404 - sha256: 6a2936f82e2ce5aef6b10fe2385330de2f8dc4b16832469bec83d5c90b2727e8 + md5: 46b6abe31482f6bca064b965696ae807 + sha256: ad89284ea94821c20ff87e64b948e4afc690cf5202d14c009355b0594cf23aea category: dev optional: true - name: snowballstemmer - version: 3.1.0 + version: 3.1.1 manager: conda platform: win-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/snowballstemmer-3.1.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/snowballstemmer-3.1.1-pyhd8ed1ab_0.conda hash: - md5: 1590bceae37377cecba443c83a44c404 - sha256: 6a2936f82e2ce5aef6b10fe2385330de2f8dc4b16832469bec83d5c90b2727e8 + md5: 46b6abe31482f6bca064b965696ae807 + sha256: ad89284ea94821c20ff87e64b948e4afc690cf5202d14c009355b0594cf23aea category: dev optional: true - name: sphinx - version: 8.3.0 + version: 9.1.0 manager: conda platform: linux-64 dependencies: alabaster: '>=0.7.14' babel: '>=2.13' colorama: '>=0.4.6' - docutils: '>=0.20,<0.22' + docutils: '>=0.21,<0.23' imagesize: '>=1.3' jinja2: '>=3.1' packaging: '>=23.0' pygments: '>=2.17' - python: '>=3.11' + python: '>=3.12' requests: '>=2.30.0' - roman-numerals-py: '>=1.0.0' + roman-numerals: '>=1.0.0' snowballstemmer: '>=2.2' sphinxcontrib-applehelp: '>=1.0.7' sphinxcontrib-devhelp: '>=1.0.6' @@ -3610,28 +3634,28 @@ package: sphinxcontrib-jsmath: '>=1.0.1' sphinxcontrib-qthelp: '>=1.0.6' sphinxcontrib-serializinghtml: '>=1.1.9' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-8.3.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-9.1.0-pyhd8ed1ab_0.conda hash: - md5: 6ce9ddee4c0f68bda548303196f4cf4c - sha256: 03c4d8b4cf3c5418e15f30f45be52bcde7c7e05baeec7dec5aaf6e238a411481 + md5: aabfbc2813712b71ba8beb217a978498 + sha256: 035ca4b17afca3d53650380dd94c564555b7ec2b4f8818111f98c15c7a991b7b category: dev optional: true - name: sphinx - version: 8.3.0 + version: 9.1.0 manager: conda platform: win-64 dependencies: alabaster: '>=0.7.14' babel: '>=2.13' colorama: '>=0.4.6' - docutils: '>=0.20,<0.22' + docutils: '>=0.21,<0.23' imagesize: '>=1.3' jinja2: '>=3.1' packaging: '>=23.0' pygments: '>=2.17' - python: '>=3.11' + python: '>=3.12' requests: '>=2.30.0' - roman-numerals-py: '>=1.0.0' + roman-numerals: '>=1.0.0' snowballstemmer: '>=2.2' sphinxcontrib-applehelp: '>=1.0.7' sphinxcontrib-devhelp: '>=1.0.6' @@ -3639,36 +3663,36 @@ package: sphinxcontrib-jsmath: '>=1.0.1' sphinxcontrib-qthelp: '>=1.0.6' sphinxcontrib-serializinghtml: '>=1.1.9' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-8.3.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-9.1.0-pyhd8ed1ab_0.conda hash: - md5: 6ce9ddee4c0f68bda548303196f4cf4c - sha256: 03c4d8b4cf3c5418e15f30f45be52bcde7c7e05baeec7dec5aaf6e238a411481 + md5: aabfbc2813712b71ba8beb217a978498 + sha256: 035ca4b17afca3d53650380dd94c564555b7ec2b4f8818111f98c15c7a991b7b category: dev optional: true - name: sphinx-autodoc-typehints - version: 3.5.2 + version: 3.13.0 manager: conda platform: linux-64 dependencies: - python: '>=3.11' - sphinx: '>=8.2.3' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-autodoc-typehints-3.5.2-pyhd8ed1ab_0.conda + python: '>=3.12' + sphinx: '>=9.1' + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-autodoc-typehints-3.13.0-pyhd8ed1ab_0.conda hash: - md5: abe9fc17e8bf83725cde006800c926de - sha256: 896309836e7b7682ac7ebf8783d7fde57869d28fa82e0a36413fff41f4049eac + md5: e91b69fd604f79f38f8c6cfdbc760755 + sha256: 62930995f2b6520fd14d5ce7c587d7fb5382987a3b7de0bb81e601490af35f50 category: dev optional: true - name: sphinx-autodoc-typehints - version: 3.5.2 + version: 3.13.0 manager: conda platform: win-64 dependencies: - python: '>=3.11' - sphinx: '>=8.2.3' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-autodoc-typehints-3.5.2-pyhd8ed1ab_0.conda + python: '>=3.12' + sphinx: '>=9.1' + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-autodoc-typehints-3.13.0-pyhd8ed1ab_0.conda hash: - md5: abe9fc17e8bf83725cde006800c926de - sha256: 896309836e7b7682ac7ebf8783d7fde57869d28fa82e0a36413fff41f4049eac + md5: e91b69fd604f79f38f8c6cfdbc760755 + sha256: 62930995f2b6520fd14d5ce7c587d7fb5382987a3b7de0bb81e601490af35f50 category: dev optional: true - name: sphinx-rtd-theme @@ -3677,10 +3701,10 @@ package: platform: linux-64 dependencies: sphinx_rtd_theme: 3.1.0 - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-rtd-theme-3.1.0-hd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-rtd-theme-3.1.0-hd8ed1ab_1.conda hash: - md5: 3b1a32d3d5c2064822203f2a6f3f1173 - sha256: ae5e8e514f21e6f62b63c13f684939ba007168bfd7742e8cb573fce69fbf62da + md5: 0a0c4864848d70ae012c0b3ba074aa46 + sha256: 05fc70e840c819c9755467e1b0386cca4afe84f4151aa446d083a29c81896df8 category: dev optional: true - name: sphinx-rtd-theme @@ -3689,10 +3713,10 @@ package: platform: win-64 dependencies: sphinx_rtd_theme: 3.1.0 - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-rtd-theme-3.1.0-hd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-rtd-theme-3.1.0-hd8ed1ab_1.conda hash: - md5: 3b1a32d3d5c2064822203f2a6f3f1173 - sha256: ae5e8e514f21e6f62b63c13f684939ba007168bfd7742e8cb573fce69fbf62da + md5: 0a0c4864848d70ae012c0b3ba074aa46 + sha256: 05fc70e840c819c9755467e1b0386cca4afe84f4151aa446d083a29c81896df8 category: dev optional: true - name: sphinx_rtd_theme @@ -3700,14 +3724,14 @@ package: manager: conda platform: linux-64 dependencies: - docutils: '>0.18,<0.22' - python: '>=3.8' - sphinx: '>=6,<9' + docutils: '>0.18,<0.23' + python: '>=3.10' + sphinx: '>=6,<10' sphinxcontrib-jquery: '>=4,<5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx_rtd_theme-3.1.0-pyha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx_rtd_theme-3.1.0-pyha770c72_1.conda hash: - md5: cede6bc99a0253fa676f03cfdc666d57 - sha256: 1d57a0cd74ecc0e5dc006f6591145d1abb6658464919d4aeb163d3db714f80e6 + md5: 14b91f7ff1d73c1b233e25e9fa262e5b + sha256: 3876c2b11360a1ee0f93d1449819c5a8cab8483abfed107a921cc188d3b29b4d category: dev optional: true - name: sphinx_rtd_theme @@ -3715,14 +3739,14 @@ package: manager: conda platform: win-64 dependencies: - docutils: '>0.18,<0.22' - python: '>=3.8' - sphinx: '>=6,<9' + docutils: '>0.18,<0.23' + python: '>=3.10' + sphinx: '>=6,<10' sphinxcontrib-jquery: '>=4,<5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx_rtd_theme-3.1.0-pyha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx_rtd_theme-3.1.0-pyha770c72_1.conda hash: - md5: cede6bc99a0253fa676f03cfdc666d57 - sha256: 1d57a0cd74ecc0e5dc006f6591145d1abb6658464919d4aeb163d3db714f80e6 + md5: 14b91f7ff1d73c1b233e25e9fa262e5b + sha256: 3876c2b11360a1ee0f93d1449819c5a8cab8483abfed107a921cc188d3b29b4d category: dev optional: true - name: sphinxcontrib-applehelp @@ -3880,29 +3904,29 @@ package: category: dev optional: true - name: sphinxcontrib-serializinghtml - version: 1.1.10 + version: 2.0.0 manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '>=3.10' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-serializinghtml-2.0.0-pyhd8ed1ab_0.conda hash: - md5: 3bc61f7161d28137797e038263c04c54 - sha256: 64d89ecc0264347486971a94487cb8d7c65bfc0176750cf7502b8a272f4ab557 + md5: f77df1fcf9af03b7287342638befca77 + sha256: 20b49741065fd7d3fabf98caf6d19b6436badb06b6d41f66b58f1fc2b52f37a1 category: dev optional: true - name: sphinxcontrib-serializinghtml - version: 1.1.10 + version: 2.0.0 manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '>=3.10' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-serializinghtml-2.0.0-pyhd8ed1ab_0.conda hash: - md5: 3bc61f7161d28137797e038263c04c54 - sha256: 64d89ecc0264347486971a94487cb8d7c65bfc0176750cf7502b8a272f4ab557 + md5: f77df1fcf9af03b7287342638befca77 + sha256: 20b49741065fd7d3fabf98caf6d19b6436badb06b6d41f66b58f1fc2b52f37a1 category: dev optional: true - name: tbb @@ -3942,11 +3966,11 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_h366c992_103.conda + libzlib: '>=1.3.2,<2.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_hd70dff1_3.conda hash: - md5: cffd3bdd58090148f4cfcd831f4b26ab - sha256: cafeec44494f842ffeca27e9c8b0c27ed714f93ac77ddadc6aaf726b5554ebac + md5: 48a1049e710857572fc2a832aa394d9f + sha256: 43624eab22f5f29df7d6ffe914cf442f28fd559b55b290906255492826e636e8 category: main optional: false - name: tk @@ -3957,10 +3981,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/tk-8.6.13-h6ed50ae_3.conda + url: https://repo.prefix.dev/conda-forge/win-64/tk-8.6.13-h967ab96_3.conda hash: - md5: 0481bfd9814bf525bd4b3ee4b51494c4 - sha256: 0e79810fae28f3b69fe7391b0d43f5474d6bd91d451d5f2bde02f55ae481d5e3 + md5: aaf79e2af50a151fb5b5a3e3f38b7a69 + sha256: 13fa29257d43f8e630a1e591ed77fae9bbbb236b011432f01e2034cf36e6bf03 category: main optional: false - name: tomli @@ -3988,51 +4012,51 @@ package: category: dev optional: true - name: tomlkit - version: 0.15.0 + version: 0.15.1 manager: conda platform: linux-64 dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.15.0-pyha770c72_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.15.1-pyhcf101f3_0.conda hash: - md5: 42ef10a8f7f5d55a2e267c0d5daa6387 - sha256: 1cd52f9ccb4854c4d731438afe0e833b6b71edaf5ede661152aa98efb3a7cc70 + md5: e4942e2de7436ff28be7f5645cf3c8d6 + sha256: 5cf833b4d199688b7652fb322ecc134de9555e9444d9249750de9a153421ad0a category: dev optional: true - name: tomlkit - version: 0.15.0 + version: 0.15.1 manager: conda platform: win-64 dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.15.0-pyha770c72_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.15.1-pyhcf101f3_0.conda hash: - md5: 42ef10a8f7f5d55a2e267c0d5daa6387 - sha256: 1cd52f9ccb4854c4d731438afe0e833b6b71edaf5ede661152aa98efb3a7cc70 + md5: e4942e2de7436ff28be7f5645cf3c8d6 + sha256: 5cf833b4d199688b7652fb322ecc134de9555e9444d9249750de9a153421ad0a category: dev optional: true - name: typing-extensions - version: 4.15.0 + version: 4.16.0 manager: conda platform: linux-64 dependencies: - typing_extensions: ==4.15.0 - url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda + typing_extensions: ==4.16.0 + url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.16.0-h69aa097_0.conda hash: - md5: edd329d7d3a4ab45dcf905899a7a6115 - sha256: 7c2df5721c742c2a47b2c8f960e718c930031663ac1174da67c1ed5999f7938c + md5: c680b5747e8c4c8f23dca0bb7042a8fc + sha256: b141933ece3518f6d7b75dfb59451e2f26b405a44c18e2518a83e9a02e09315c category: main optional: false - name: typing-extensions - version: 4.15.0 + version: 4.16.0 manager: conda platform: win-64 dependencies: - typing_extensions: ==4.15.0 - url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda + typing_extensions: ==4.16.0 + url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.16.0-h69aa097_0.conda hash: - md5: edd329d7d3a4ab45dcf905899a7a6115 - sha256: 7c2df5721c742c2a47b2c8f960e718c930031663ac1174da67c1ed5999f7938c + md5: c680b5747e8c4c8f23dca0bb7042a8fc + sha256: b141933ece3518f6d7b75dfb59451e2f26b405a44c18e2518a83e9a02e09315c category: main optional: false - name: typing-inspection @@ -4062,49 +4086,49 @@ package: category: main optional: false - name: typing_extensions - version: 4.15.0 + version: 4.16.0 manager: conda platform: linux-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.16.0-pyhcf101f3_0.conda hash: - md5: 0caa1af407ecff61170c9437a808404d - sha256: 032271135bca55aeb156cee361c81350c6f3fb203f57d024d7e5a1fc9ef18731 + md5: c70ad746c22219b9700931707482992c + sha256: 2d888f90af0686044882c74193ec80a90ec1943145d94a7b1b048958acda1848 category: main optional: false - name: typing_extensions - version: 4.15.0 + version: 4.16.0 manager: conda platform: win-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.16.0-pyhcf101f3_0.conda hash: - md5: 0caa1af407ecff61170c9437a808404d - sha256: 032271135bca55aeb156cee361c81350c6f3fb203f57d024d7e5a1fc9ef18731 + md5: c70ad746c22219b9700931707482992c + sha256: 2d888f90af0686044882c74193ec80a90ec1943145d94a7b1b048958acda1848 category: main optional: false - name: tzdata - version: 2025c + version: 2026c manager: conda platform: linux-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/tzdata-2026c-h151e31d_0.conda hash: - md5: ad659d0a2b3e47e38d829aa8cad2d610 - sha256: 1d30098909076af33a35017eed6f2953af1c769e273a0626a04722ac4acaba3c + md5: fcb489df604d100968b737f2cb6076c6 + sha256: b928c30ddcb0e3f544c6eade8352737e6e610e263276b90232db6a578ef899d8 category: main optional: false - name: tzdata - version: 2025c + version: 2026c manager: conda platform: win-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/tzdata-2026c-h151e31d_0.conda hash: - md5: ad659d0a2b3e47e38d829aa8cad2d610 - sha256: 1d30098909076af33a35017eed6f2953af1c769e273a0626a04722ac4acaba3c + md5: fcb489df604d100968b737f2cb6076c6 + sha256: b928c30ddcb0e3f544c6eade8352737e6e610e263276b90232db6a578ef899d8 category: main optional: false - name: ucrt @@ -4187,10 +4211,10 @@ package: platform: win-64 dependencies: vc14_runtime: '>=14.51.36231' - url: https://repo.prefix.dev/conda-forge/win-64/vc-14.5-h1b7c187_38.conda + url: https://repo.prefix.dev/conda-forge/win-64/vc-14.5-h1b7c187_39.conda hash: - md5: 774568633f3b26d7a4a6dd4f9ea6d3e1 - sha256: 61b68e5a4fc71a17f8d64b12e013a2f971ad980bd08e9c389d5e68efe1a67de0 + md5: 2eacea63f545b97342da520df6854276 + sha256: 17693b60cb54f80c60275f003f3bfc1b128af56dbfd65c4fae37c64eeb755ce1 category: main optional: false - name: vc14_runtime @@ -4200,10 +4224,10 @@ package: dependencies: ucrt: '>=10.0.20348.0' vcomp14: 14.51.36231 - url: https://repo.prefix.dev/conda-forge/win-64/vc14_runtime-14.51.36231-h1b9f54f_38.conda + url: https://repo.prefix.dev/conda-forge/win-64/vc14_runtime-14.51.36231-h1b9f54f_39.conda hash: - md5: 2cdcd8ea1010920911bb2eacb4c61227 - sha256: 957c7c65583c7107a5e76f39756c6361fcb7b0dc101ac7c0aea86e7ca09fe49c + md5: 06a5bf5a1ca16cce0df6eaa91fc42bc2 + sha256: 8153ed849c92e891eacac0f2f8d7ecb79f9b5fd7f7917fbb896f252a60a40390 category: main optional: false - name: vcomp14 @@ -4212,10 +4236,10 @@ package: platform: win-64 dependencies: ucrt: '>=10.0.20348.0' - url: https://repo.prefix.dev/conda-forge/win-64/vcomp14-14.51.36231-h1b9f54f_38.conda + url: https://repo.prefix.dev/conda-forge/win-64/vcomp14-14.51.36231-h1b9f54f_39.conda hash: - md5: 63ee70d69d7540e821940dac5d4d9ba2 - sha256: c645fdc1f0f47718431d973386e946754a10200e7ba2c32032560913a970cacd + md5: 8b53a83fda40ec679e4d63fa32fae989 + sha256: 07fb14713c4bc62e2533a2e23a363abfb0e65650681fba0ae4c840e2219350f3 category: main optional: false - name: win_inet_pton @@ -4336,6 +4360,21 @@ package: sha256: 210bd31c22bb88f5e2a167df24c95bb5f152b2ada7502f9b8c49d1f5366db423 category: dev optional: true +- name: zlib + version: 1.3.2 + manager: conda + platform: win-64 + dependencies: + libzlib: 1.3.2 + ucrt: '>=10.0.20348.0' + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/zlib-1.3.2-hfd05255_2.conda + hash: + md5: 5187ecf958be3c39110fe691cbd6873e + sha256: ef408f85f664a4b9c9dac3cb2e36154d9baa15a88984ea800e11060e0f2394a1 + category: main + optional: false - name: zlib-ng version: 2.3.3 manager: conda @@ -4393,43 +4432,43 @@ package: category: main optional: false - name: geoapps-utils - version: 0.8.0a1.dev3+6222ed5 + version: 0.7.1.dev85+89cd6f5 manager: pip platform: linux-64 dependencies: - geoh5py: 0.13.0b2.dev5+cbdabab5 + geoh5py: 0.13.1rc2.dev168+e51a7038 matplotlib: '>=3.10.0,<3.11.0' numpy: '>=2.4.2,<2.5.0' pydantic: '>=2.12.0,<2.13.0' scipy: '>=1.17.0,<1.18.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@6222ed5be1a26e8db288d91b4fbccc891e3ca5d2 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 hash: - sha256: 6222ed5be1a26e8db288d91b4fbccc891e3ca5d2 + sha256: 89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@6222ed5be1a26e8db288d91b4fbccc891e3ca5d2 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 category: main optional: false - name: geoapps-utils - version: 0.8.0a1.dev3+6222ed5 + version: 0.7.1.dev85+89cd6f5 manager: pip platform: win-64 dependencies: - geoh5py: 0.13.0b2.dev5+cbdabab5 + geoh5py: 0.13.1rc2.dev168+e51a7038 matplotlib: '>=3.10.0,<3.11.0' numpy: '>=2.4.2,<2.5.0' pydantic: '>=2.12.0,<2.13.0' scipy: '>=1.17.0,<1.18.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@6222ed5be1a26e8db288d91b4fbccc891e3ca5d2 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 hash: - sha256: 6222ed5be1a26e8db288d91b4fbccc891e3ca5d2 + sha256: 89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@6222ed5be1a26e8db288d91b4fbccc891e3ca5d2 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 category: main optional: false - name: geoh5py - version: 0.13.0b2.dev5+cbdabab5 + version: 0.13.1rc2.dev168+e51a7038 manager: pip platform: linux-64 dependencies: @@ -4438,16 +4477,16 @@ package: pillow: '>=12.2.0,<12.3.0' psutil: '>=7.2.2,<7.3.0' pydantic: '>=2.12.0,<2.13.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@cbdabab52382413a3d6176262a2bf189a9b4cd24 + url: git+https://github.com/MiraGeoscience/geoh5py.git@e51a703816e712f3c66147cb78fd16808b520f75 hash: - sha256: cbdabab52382413a3d6176262a2bf189a9b4cd24 + sha256: e51a703816e712f3c66147cb78fd16808b520f75 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@cbdabab52382413a3d6176262a2bf189a9b4cd24 + url: git+https://github.com/MiraGeoscience/geoh5py.git@e51a703816e712f3c66147cb78fd16808b520f75 category: main optional: false - name: geoh5py - version: 0.13.0b2.dev5+cbdabab5 + version: 0.13.1rc2.dev168+e51a7038 manager: pip platform: win-64 dependencies: @@ -4456,11 +4495,11 @@ package: pillow: '>=12.2.0,<12.3.0' psutil: '>=7.2.2,<7.3.0' pydantic: '>=2.12.0,<2.13.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@cbdabab52382413a3d6176262a2bf189a9b4cd24 + url: git+https://github.com/MiraGeoscience/geoh5py.git@e51a703816e712f3c66147cb78fd16808b520f75 hash: - sha256: cbdabab52382413a3d6176262a2bf189a9b4cd24 + sha256: e51a703816e712f3c66147cb78fd16808b520f75 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@cbdabab52382413a3d6176262a2bf189a9b4cd24 + url: git+https://github.com/MiraGeoscience/geoh5py.git@e51a703816e712f3c66147cb78fd16808b520f75 category: main optional: false diff --git a/pyproject.toml b/pyproject.toml index 1cb3f9c..d7f4d9c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -72,10 +72,10 @@ scipy = "~1.17.0" ## pip dependencies from Git repositories #---------------------------------------- # geoh5py = { version = ">=0.14.0a, 0.14.*", source = "pypi", allow-prereleases = true } -geoh5py = { git = "https://github.com/MiraGeoscience/geoh5py.git", rev = "develop" } +geoh5py = { git = "https://github.com/MiraGeoscience/geoh5py.git", rev = "feature/uijson" } # geoapps-utils = { version = ">=0.8.0a, 0.8.*", source = "pypi", allow-prereleases = true } -geoapps-utils = { git = "https://github.com/MiraGeoscience/geoapps-utils.git", rev = "develop" } +geoapps-utils = { git = "https://github.com/MiraGeoscience/geoapps-utils.git", rev = "feature/uijson" } ## about pip dependencies # to be specified to work with conda-lock From c4fa548f95bbc73cbf776048ac5ccef3f2740462 Mon Sep 17 00:00:00 2001 From: domfournier Date: Wed, 29 Jul 2026 13:35:07 -0700 Subject: [PATCH 6/8] [GEOPY-2731] Copilot suggestion for brittleness --- tests/run_tests/octree_creation/run_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/run_tests/octree_creation/run_test.py b/tests/run_tests/octree_creation/run_test.py index c8efad0..f4bbd3c 100644 --- a/tests/run_tests/octree_creation/run_test.py +++ b/tests/run_tests/octree_creation/run_test.py @@ -328,7 +328,7 @@ def test_octree_diagonal_balance( # pylint: disable=too-many-locals with workspace.open(mode="r"): results = [] - mesh_obj = workspace.get_entity("Octree mesh")[0] + mesh_obj = next(obj for obj in workspace.objects if isinstance(obj, Octree)) assert isinstance(mesh_obj, Octree) From 7d7ad6007a6e1e9dd87d684fa17c9183dd03c93d Mon Sep 17 00:00:00 2001 From: domfournier Date: Tue, 4 Aug 2026 15:35:46 -0700 Subject: [PATCH 7/8] Simplify run methods --- grid_apps/block_model_to_octree/driver.py | 13 +------------ grid_apps/block_models/driver.py | 11 ----------- grid_apps/grid_model_merger/driver.py | 2 -- grid_apps/octree_creation/driver.py | 6 ------ tests/run_tests/block_2_octree_test.py | 6 +++--- 5 files changed, 4 insertions(+), 34 deletions(-) diff --git a/grid_apps/block_model_to_octree/driver.py b/grid_apps/block_model_to_octree/driver.py index c8d88b0..faf1674 100644 --- a/grid_apps/block_model_to_octree/driver.py +++ b/grid_apps/block_model_to_octree/driver.py @@ -38,18 +38,7 @@ class Driver(BaseDriver): _params_class = BlockModel2OctreeOptions - def run(self): - """Create an octree mesh from input values.""" - with fetch_active_workspace(self.params.geoh5, mode="r+"): - logger.info("Converting BlockModel to Octree mesh . . .") - octree = self.make_grid() - output = self.params.out_group or octree - self.update_monitoring_directory(output) - logger.info("Done.") - - return octree - - def make_grid(self) -> Octree: + def run(self) -> Octree: """ Convert the block model and output the octree mesh. diff --git a/grid_apps/block_models/driver.py b/grid_apps/block_models/driver.py index 367ab3b..46900a5 100644 --- a/grid_apps/block_models/driver.py +++ b/grid_apps/block_models/driver.py @@ -36,17 +36,6 @@ class Driver(BaseDriver): _params_class = BlockModelOptions def run(self): - """Create an octree mesh from input values.""" - with fetch_active_workspace(self.params.geoh5, mode="r+"): - logger.info("Creating BlockModel mesh from parameters . . .") - block = self.make_grid() - output = self.params.out_group or block - self.update_monitoring_directory(output) - logger.info("Done.") - - return block - - def make_grid(self): """ Make block model object from input data. """ diff --git a/grid_apps/grid_model_merger/driver.py b/grid_apps/grid_model_merger/driver.py index 38775a2..e20cd3c 100644 --- a/grid_apps/grid_model_merger/driver.py +++ b/grid_apps/grid_model_merger/driver.py @@ -54,8 +54,6 @@ def run(self): with fetch_active_workspace(self.params.geoh5, mode="r+"): self.output_grid = self.get_output_grid() self.interpolate_models_to_output_grid() - output = self.params.out_group or self.output_grid - self.update_monitoring_directory(output) logger.info("Done.") return self.output_grid diff --git a/grid_apps/octree_creation/driver.py b/grid_apps/octree_creation/driver.py index a05ddbc..8cd0e34 100644 --- a/grid_apps/octree_creation/driver.py +++ b/grid_apps/octree_creation/driver.py @@ -37,17 +37,11 @@ class OctreeDriver(BaseDriver): _params_class = OctreeOptions - def __init__(self, params: OctreeOptions): - super().__init__(params) - self.params: OctreeOptions = params - def run(self) -> Octree: """Create an octree mesh from input values.""" with fetch_active_workspace(self.params.geoh5, mode="r+"): logger.info("Creating octree mesh from params . . .") octree = self.octree_from_params(self.params) - output = self.params.out_group or octree - self.update_monitoring_directory(output) logger.info("Done.") return octree diff --git a/tests/run_tests/block_2_octree_test.py b/tests/run_tests/block_2_octree_test.py index 65a2c26..7fe4bc1 100644 --- a/tests/run_tests/block_2_octree_test.py +++ b/tests/run_tests/block_2_octree_test.py @@ -82,7 +82,7 @@ def test_block_model_to_octree(tmp_path): ifile_class = UIJson.read(ifile) options = BlockModel2OctreeOptions.build(ifile_class) driver = BlockModelToOctreeDriver(options) - octree = driver.make_grid() + octree = driver.run() assert octree.n_cells == 13987 @@ -107,7 +107,7 @@ def test_float_refine_octree(tmp_path): ) driver = BlockModelToOctreeDriver(params) - octree = driver.make_grid() + octree = driver.run() assert octree.n_cells == 6140 @@ -136,7 +136,7 @@ def test_integer_refine_octree(tmp_path): ) driver = BlockModelToOctreeDriver(params) - octree = driver.make_grid() + octree = driver.run() assert octree.n_cells == 5223 assert octree.parent == out_group From 91b49802d54403fae01171bdaf100e67fcea8942 Mon Sep 17 00:00:00 2001 From: domfournier Date: Mon, 24 Aug 2026 08:27:14 -0700 Subject: [PATCH 8/8] Re-lock on develops --- .../py-3.12-linux-64-dev.conda.lock.yml | 175 ++- environments/py-3.12-linux-64.conda.lock.yml | 149 +- .../py-3.12-win-64-dev.conda.lock.yml | 153 +- environments/py-3.12-win-64.conda.lock.yml | 129 +- .../py-3.13-linux-64-dev.conda.lock.yml | 171 +- environments/py-3.13-linux-64.conda.lock.yml | 145 +- .../py-3.13-win-64-dev.conda.lock.yml | 151 +- environments/py-3.13-win-64.conda.lock.yml | 127 +- .../py-3.14-linux-64-dev.conda.lock.yml | 171 +- environments/py-3.14-linux-64.conda.lock.yml | 145 +- .../py-3.14-win-64-dev.conda.lock.yml | 151 +- environments/py-3.14-win-64.conda.lock.yml | 127 +- py-3.12.conda-lock.yml | 1382 ++++++++--------- py-3.13.conda-lock.yml | 1331 ++++++++-------- py-3.14.conda-lock.yml | 1329 ++++++++-------- pyproject.toml | 4 +- 16 files changed, 2880 insertions(+), 2960 deletions(-) diff --git a/environments/py-3.12-linux-64-dev.conda.lock.yml b/environments/py-3.12-linux-64-dev.conda.lock.yml index 76af445..d8782ed 100644 --- a/environments/py-3.12-linux-64-dev.conda.lock.yml +++ b/environments/py-3.12-linux-64-dev.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 630c4d5a518e6daae80e9b2f4d4c47435dfa161d9b0e7de645892876051027e9 +# input_hash: 1dafb147f14260ff03c478aa59889d8ec2ac87a5441e62134e01ab9a622bb436 channels: - conda-forge @@ -10,137 +10,136 @@ dependencies: - alabaster=1.0.0=pyhd8ed1ab_1 - annotated-types=0.8.0=pyhd8ed1ab_0 - astroid=4.0.4=py312h7900ff3_0 - - aws-c-auth=0.10.4=hb7a77c6_1 - - aws-c-cal=0.9.14=h2aa3ae6_4 - - aws-c-common=0.14.2=hb03c661_0 - - aws-c-compression=0.3.2=h720e601_4 - - aws-c-http=0.11.0=h38ae05a_4 - - aws-c-io=0.27.3=h6f4d18d_1 - - aws-c-s3=0.12.8=h46fcd08_1 - - aws-c-sdkutils=0.2.7=h720e601_2 - - aws-checksums=0.2.10=h720e601_4 + - aws-c-auth=0.10.4=h4610da3_2 + - aws-c-cal=0.9.15=h6bbde05_1 + - aws-c-common=0.14.3=hb03c661_0 + - aws-c-compression=0.3.2=h01ee8f8_5 + - aws-c-http=0.11.0=hbe094ff_5 + - aws-c-io=0.27.5=h4f381ba_1 + - aws-c-s3=0.13.1=h7508075_1 + - aws-c-sdkutils=0.2.7=h01ee8f8_3 + - aws-checksums=0.2.10=h01ee8f8_5 - babel=2.18.0=pyhcf101f3_1 - - backports.zstd=1.6.0=py312h90b7ffd_0 - - brotli=1.2.0=hed03a55_1 - - brotli-bin=1.2.0=hb03c661_1 - - brotli-python=1.2.0=py312hdb49522_1 - - bzip2=1.0.8=hda65f42_9 - - c-ares=1.34.8=hb03c661_0 + - backports.zstd=1.7.0=py312h3f22e6b_0 + - brotli=1.2.0=h505cf86_3 + - brotli-bin=1.2.0=h9908984_3 + - brotli-python=1.2.0=py312he9c40d5_3 + - bzip2=1.0.8=hda65f42_10 + - c-ares=1.34.8=hebe6cf0_2 - ca-certificates=2026.7.22=hbd8a1cb_0 - cached-property=1.5.2=hd8ed1ab_2 - cached_property=1.5.2=pyha770c72_2 - certifi=2026.7.22=pyhd8ed1ab_0 - - charset-normalizer=3.4.9=pyhd8ed1ab_0 + - charset-normalizer=3.5.1=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - contourpy=1.3.3=py312h0a2e395_4 - - coverage=7.15.2=py312h8a5da7c_0 + - coverage=7.15.4=py312h589e9ff_1 - cycler=0.12.1=pyhcf101f3_2 - dill=0.4.1=pyhcf101f3_0 - discretize=0.12.0=np2py312h2a48985_1 - docutils=0.22.4=pyhd8ed1ab_0 - exceptiongroup=1.3.1=pyhd8ed1ab_0 - fonttools=4.63.0=py312h8a5da7c_0 - - freetype=2.14.3=ha770c72_0 - - h2=4.4.0=pyhcf101f3_0 - - h5py=3.16.0=nompi_py312ha829cd9_102 - - hdf5=2.1.0=nompi_h654f344_110 + - freetype=2.14.3=ha770c72_2 + - h2=4.4.1=pyhcf101f3_0 + - h5py=3.16.0=nompi_py312h7082e50_104 + - hdf5=2.2.0=nompi_hc529623_100 - hpack=4.2.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - - icu=78.3=h54a6638_2 - - idna=3.18=pyhcf101f3_0 + - icu=78.3=py310h44b86e0_2 + - idna=3.19=pyhcf101f3_0 - imagesize=2.0.0=pyhd8ed1ab_0 - importlib-metadata=9.0.0=pyhcf101f3_0 - iniconfig=2.3.0=pyhd8ed1ab_0 - isort=8.0.1=pyhd8ed1ab_0 - jinja2=3.1.6=pyhcf101f3_1 - - keyutils=1.6.3=hb9d3cd8_0 + - keyutils=1.6.3=h7cc23a3_1 - kiwisolver=1.5.0=py312h0a2e395_0 - - krb5=1.22.2=hbde042b_1 + - krb5=1.22.2=hbc21106_2 - lcms2=2.19.1=h0c24ade_1 - ld_impl_linux-64=2.46.1=default_hbd61a6d_102 - lerc=4.2.0=hdb68285_0 - libaec=1.1.5=h088129d_0 - - libblas=3.11.0=8_h5875eb1_mkl - - libbrotlicommon=1.2.0=hb03c661_1 - - libbrotlidec=1.2.0=hb03c661_1 - - libbrotlienc=1.2.0=hb03c661_1 - - libcblas=3.11.0=8_hfef963f_mkl - - libcurl=8.21.0=hae6b9f4_2 - - libdeflate=1.25=h17f619e_0 - - libedit=3.1.20250104=pl5321h7949ede_0 - - libev=4.33=hd590300_2 + - libblas=3.11.0=9_h5875eb1_mkl + - libbrotlicommon=1.2.0=h39a168f_3 + - libbrotlidec=1.2.0=ha411449_3 + - libbrotlienc=1.2.0=h018ffa1_3 + - libcblas=3.11.0=9_hfef963f_mkl + - libcurl=8.21.0=ha042cf0_5 + - libdeflate=1.25=hd45a770_1 + - libedit=3.1.20250104=pl5321h373387f_1 + - libev=4.33=h280c20c_3 - libexpat=2.8.1=hecca717_1 - - libffi=3.5.2=h3435931_0 - - libfreetype=2.14.3=ha770c72_0 - - libfreetype6=2.14.3=h73754d4_0 - - libgcc=15.2.0=he0feb66_20 - - libgcc-ng=15.2.0=h69a702a_20 - - libgfortran=15.2.0=h69a702a_20 - - libgfortran5=15.2.0=h68bc16d_20 + - libffi=3.7.0=h3435931_0 + - libfreetype=2.14.3=ha770c72_2 + - libfreetype6=2.14.3=h5e6c136_2 + - libgcc=16.1.0=ha9f2e26_3 + - libgcc-ng=16.1.0=h69a702a_3 + - libgfortran=16.1.0=h69a702a_3 + - libgfortran5=16.1.0=h79bb938_3 - libhwloc=2.13.0=default_he001693_1000 - - libiconv=1.18=h3b78370_2 - - libjpeg-turbo=3.2.0=hb03c661_0 - - liblapack=3.11.0=8_h5e43f62_mkl - - liblzma=5.8.3=hb03c661_0 - - libnghttp2=1.68.1=h877daf1_0 + - libiconv=1.18=h0cb94f2_3 + - libjpeg-turbo=3.2.0=hb03c661_1 + - liblapack=3.11.0=9_h5e43f62_mkl + - liblzma=5.8.3=hb03c661_1 + - libnghttp2=1.68.1=h74cf4be_1 - libnsl=2.0.1=hb9d3cd8_1 - - libpng=1.6.58=h421ea60_0 - - libpsl=0.22.0=h49b2146_1 - - libsqlite=3.53.4=hf4e2dac_0 - - libssh2=1.11.1=hcf80075_0 - - libstdcxx=15.2.0=h934c35e_20 - - libstdcxx-ng=15.2.0=hdf11a46_20 + - libpng=1.6.58=h922cc85_1 + - libpsl=0.23.1=hd9e3e90_1 + - libsqlite=3.53.4=h13e7031_1 + - libssh2=1.11.1=h6154650_1 + - libstdcxx=16.1.0=h934c35e_3 + - libstdcxx-ng=16.1.0=hdf11a46_3 - libtiff=4.7.2=h9d88235_0 - libuuid=2.42.2=h5347b49_0 - - libwebp-base=1.6.0=hd42ef1d_0 - - libxcb=1.17.0=h8a09558_0 - - libxcrypt=4.4.36=hd590300_1 - - libxml2=2.15.3=h49c6c72_0 - - libxml2-16=2.15.3=hca6bf5a_0 - - libzlib=1.3.2=h25fd6f3_2 - - llvm-openmp=22.1.8=h4922eb0_0 + - libwebp-base=1.6.0=hd42ef1d_1 + - libxcb=1.17.0=hb83e432_1 + - libxcrypt=4.4.38=h280c20c_0 + - libxml2=2.15.3=h49c6c72_1 + - libxml2-16=2.15.3=hca6bf5a_1 + - libzlib=1.3.2=h25fd6f3_3 + - llvm-openmp=22.1.8=h3206bd6_1 - markupsafe=3.0.3=py312h8a5da7c_1 - matplotlib-base=3.10.9=py312he3d6523_0 - mccabe=0.7.0=pyhd8ed1ab_1 - - mkl=2026.1.0=hecca717_243 + - mkl=2026.1.0=hecca717_244 - munkres=1.1.4=pyhd8ed1ab_1 - - ncurses=6.6=hdb14827_0 + - ncurses=6.6=hdb14827_1 - numpy=2.4.6=py312h33ff503_0 - - onemkl-license=2026.1.0=ha770c72_243 - openjpeg=2.5.4=h55fea9a_0 - - openssl=3.6.3=h35e630c_0 - - packaging=26.2=pyhc364b38_0 + - openssl=3.6.3=h35e630c_1 + - packaging=26.3=pyhc364b38_0 - pillow=12.3.0=py312h50c33e8_0 - - pip=26.1.2=pyh8b19718_0 - - platformdirs=4.11.0=pyhcf101f3_0 + - pip=26.2.1=pyh8b19718_0 + - platformdirs=4.11.3=pyhcf101f3_0 - pluggy=1.6.0=pyhf9edf01_1 - - psutil=7.2.2=py312h5253ce2_0 - - pthread-stubs=0.4=hb9d3cd8_1002 + - psutil=7.2.2=py312h1b36aeb_1 + - pthread-stubs=0.4=hb03c661_1003 - pydantic=2.12.5=pyhcf101f3_1 - pydantic-core=2.41.5=py312h868fb18_1 - - pygments=2.20.0=pyhd8ed1ab_0 - - pylint=4.0.6=pyhcf101f3_0 + - pygments=2.21.0=pyhcf101f3_0 + - pylint=4.0.7=pyhcf101f3_0 - pyparsing=3.3.2=pyhcf101f3_0 - pysocks=1.7.1=pyha55dd90_7 - pytest=9.1.1=pyhc364b38_2 - pytest-cov=7.1.0=pyhcf101f3_0 - - python=3.12.13=hd63d673_0_cpython + - python=3.12.14=h8ab3286_0_cpython - python-dateutil=2.9.0.post0=pyhe01879c_2 - python_abi=3.12=8_cp312 - pyyaml=6.0.3=py312h8a5da7c_1 - qhull=2020.2=h434a139_5 - - readline=8.3=h853b02a_0 + - readline=8.3=hd6e31c0_1 - requests=2.34.2=pyhcf101f3_0 - roman-numerals=4.1.0=pyhd8ed1ab_0 - - s2n=1.7.5=h7e3ee7f_1 + - s2n=1.7.6=h7e3ee7f_0 - scipy=1.17.1=py312h54fa4ab_1 - - setuptools=83.0.0=pyh332efcf_0 + - setuptools=84.0.0=pyh332efcf_0 - six=1.17.0=pyhe01879c_1 - snowballstemmer=3.1.1=pyhd8ed1ab_0 - sphinx=9.1.0=pyhd8ed1ab_0 - - sphinx-autodoc-typehints=3.13.0=pyhd8ed1ab_0 - - sphinx-rtd-theme=3.1.0=hd8ed1ab_1 - - sphinx_rtd_theme=3.1.0=pyha770c72_1 + - sphinx-autodoc-typehints=3.13.2=pyhd8ed1ab_0 + - sphinx-rtd-theme=3.1.0=h9eada29_2 + - sphinx_rtd_theme=3.1.0=pyhcf101f3_2 - sphinxcontrib-applehelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-devhelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-htmlhelp=2.1.0=pyhd8ed1ab_1 @@ -149,25 +148,25 @@ dependencies: - sphinxcontrib-qthelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-serializinghtml=2.0.0=pyhd8ed1ab_0 - tbb=2023.0.0=hab88423_2 - - tk=8.6.13=noxft_hd70dff1_3 + - tk=8.6.13=noxft_h1df4ec4_4 - tomli=2.4.1=pyhcf101f3_0 - tomlkit=0.15.1=pyhcf101f3_0 - typing-extensions=4.16.0=h69aa097_0 - - typing-inspection=0.4.2=pyhcf101f3_2 + - typing-inspection=0.4.4=pyhcf101f3_0 - typing_extensions=4.16.0=pyhcf101f3_0 - tzdata=2026c=h151e31d_0 - unicodedata2=17.0.1=py312h4c3975b_0 - urllib3=2.7.0=pyhd8ed1ab_0 - - wheel=0.47.0=pyhd8ed1ab_0 - - xorg-libxau=1.0.12=hb03c661_1 - - xorg-libxdmcp=1.1.5=hb03c661_1 - - yaml=0.2.5=h280c20c_3 + - wheel=0.48.0=pyhd8ed1ab_0 + - xorg-libxau=1.0.12=hb03c661_2 + - xorg-libxdmcp=1.1.5=hb03c661_2 + - yaml=0.2.5=hebe6cf0_3 - zipp=4.1.0=pyhcf101f3_0 - - zlib-ng=2.3.3=hceb46e0_1 - - zstd=1.5.7=hb78ec9c_6 + - zlib-ng=2.3.3=hce19668_1 + - zstd=1.5.7=hb78ec9c_7 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@e51a703816e712f3c66147cb78fd16808b520f75 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@2e758b9671671160c76d182b72ae18ee735bd214 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@6c850c89972154a08c2ee39ad2dd62e8d9c3afef variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.12-linux-64.conda.lock.yml b/environments/py-3.12-linux-64.conda.lock.yml index 3bf9128..766644d 100644 --- a/environments/py-3.12-linux-64.conda.lock.yml +++ b/environments/py-3.12-linux-64.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 630c4d5a518e6daae80e9b2f4d4c47435dfa161d9b0e7de645892876051027e9 +# input_hash: 1dafb147f14260ff03c478aa59889d8ec2ac87a5441e62134e01ab9a622bb436 channels: - conda-forge @@ -8,19 +8,19 @@ channels: dependencies: - _openmp_mutex=4.5=7_kmp_llvm - annotated-types=0.8.0=pyhd8ed1ab_0 - - aws-c-auth=0.10.4=hb7a77c6_1 - - aws-c-cal=0.9.14=h2aa3ae6_4 - - aws-c-common=0.14.2=hb03c661_0 - - aws-c-compression=0.3.2=h720e601_4 - - aws-c-http=0.11.0=h38ae05a_4 - - aws-c-io=0.27.3=h6f4d18d_1 - - aws-c-s3=0.12.8=h46fcd08_1 - - aws-c-sdkutils=0.2.7=h720e601_2 - - aws-checksums=0.2.10=h720e601_4 - - brotli=1.2.0=hed03a55_1 - - brotli-bin=1.2.0=hb03c661_1 - - bzip2=1.0.8=hda65f42_9 - - c-ares=1.34.8=hb03c661_0 + - aws-c-auth=0.10.4=h4610da3_2 + - aws-c-cal=0.9.15=h6bbde05_1 + - aws-c-common=0.14.3=hb03c661_0 + - aws-c-compression=0.3.2=h01ee8f8_5 + - aws-c-http=0.11.0=hbe094ff_5 + - aws-c-io=0.27.5=h4f381ba_1 + - aws-c-s3=0.13.1=h7508075_1 + - aws-c-sdkutils=0.2.7=h01ee8f8_3 + - aws-checksums=0.2.10=h01ee8f8_5 + - brotli=1.2.0=h505cf86_3 + - brotli-bin=1.2.0=h9908984_3 + - bzip2=1.0.8=hda65f42_10 + - c-ares=1.34.8=hebe6cf0_2 - ca-certificates=2026.7.22=hbd8a1cb_0 - cached-property=1.5.2=hd8ed1ab_2 - cached_property=1.5.2=pyha770c72_2 @@ -28,96 +28,95 @@ dependencies: - cycler=0.12.1=pyhcf101f3_2 - discretize=0.12.0=np2py312h2a48985_1 - fonttools=4.63.0=py312h8a5da7c_0 - - freetype=2.14.3=ha770c72_0 - - h5py=3.16.0=nompi_py312ha829cd9_102 - - hdf5=2.1.0=nompi_h654f344_110 - - icu=78.3=h54a6638_2 - - keyutils=1.6.3=hb9d3cd8_0 + - freetype=2.14.3=ha770c72_2 + - h5py=3.16.0=nompi_py312h7082e50_104 + - hdf5=2.2.0=nompi_hc529623_100 + - icu=78.3=py310h44b86e0_2 + - keyutils=1.6.3=h7cc23a3_1 - kiwisolver=1.5.0=py312h0a2e395_0 - - krb5=1.22.2=hbde042b_1 + - krb5=1.22.2=hbc21106_2 - lcms2=2.19.1=h0c24ade_1 - ld_impl_linux-64=2.46.1=default_hbd61a6d_102 - lerc=4.2.0=hdb68285_0 - libaec=1.1.5=h088129d_0 - - libblas=3.11.0=8_h5875eb1_mkl - - libbrotlicommon=1.2.0=hb03c661_1 - - libbrotlidec=1.2.0=hb03c661_1 - - libbrotlienc=1.2.0=hb03c661_1 - - libcblas=3.11.0=8_hfef963f_mkl - - libcurl=8.21.0=hae6b9f4_2 - - libdeflate=1.25=h17f619e_0 - - libedit=3.1.20250104=pl5321h7949ede_0 - - libev=4.33=hd590300_2 + - libblas=3.11.0=9_h5875eb1_mkl + - libbrotlicommon=1.2.0=h39a168f_3 + - libbrotlidec=1.2.0=ha411449_3 + - libbrotlienc=1.2.0=h018ffa1_3 + - libcblas=3.11.0=9_hfef963f_mkl + - libcurl=8.21.0=ha042cf0_5 + - libdeflate=1.25=hd45a770_1 + - libedit=3.1.20250104=pl5321h373387f_1 + - libev=4.33=h280c20c_3 - libexpat=2.8.1=hecca717_1 - - libffi=3.5.2=h3435931_0 - - libfreetype=2.14.3=ha770c72_0 - - libfreetype6=2.14.3=h73754d4_0 - - libgcc=15.2.0=he0feb66_20 - - libgcc-ng=15.2.0=h69a702a_20 - - libgfortran=15.2.0=h69a702a_20 - - libgfortran5=15.2.0=h68bc16d_20 + - libffi=3.7.0=h3435931_0 + - libfreetype=2.14.3=ha770c72_2 + - libfreetype6=2.14.3=h5e6c136_2 + - libgcc=16.1.0=ha9f2e26_3 + - libgcc-ng=16.1.0=h69a702a_3 + - libgfortran=16.1.0=h69a702a_3 + - libgfortran5=16.1.0=h79bb938_3 - libhwloc=2.13.0=default_he001693_1000 - - libiconv=1.18=h3b78370_2 - - libjpeg-turbo=3.2.0=hb03c661_0 - - liblapack=3.11.0=8_h5e43f62_mkl - - liblzma=5.8.3=hb03c661_0 - - libnghttp2=1.68.1=h877daf1_0 + - libiconv=1.18=h0cb94f2_3 + - libjpeg-turbo=3.2.0=hb03c661_1 + - liblapack=3.11.0=9_h5e43f62_mkl + - liblzma=5.8.3=hb03c661_1 + - libnghttp2=1.68.1=h74cf4be_1 - libnsl=2.0.1=hb9d3cd8_1 - - libpng=1.6.58=h421ea60_0 - - libpsl=0.22.0=h49b2146_1 - - libsqlite=3.53.4=hf4e2dac_0 - - libssh2=1.11.1=hcf80075_0 - - libstdcxx=15.2.0=h934c35e_20 - - libstdcxx-ng=15.2.0=hdf11a46_20 + - libpng=1.6.58=h922cc85_1 + - libpsl=0.23.1=hd9e3e90_1 + - libsqlite=3.53.4=h13e7031_1 + - libssh2=1.11.1=h6154650_1 + - libstdcxx=16.1.0=h934c35e_3 + - libstdcxx-ng=16.1.0=hdf11a46_3 - libtiff=4.7.2=h9d88235_0 - libuuid=2.42.2=h5347b49_0 - - libwebp-base=1.6.0=hd42ef1d_0 - - libxcb=1.17.0=h8a09558_0 - - libxcrypt=4.4.36=hd590300_1 - - libxml2=2.15.3=h49c6c72_0 - - libxml2-16=2.15.3=hca6bf5a_0 - - libzlib=1.3.2=h25fd6f3_2 - - llvm-openmp=22.1.8=h4922eb0_0 + - libwebp-base=1.6.0=hd42ef1d_1 + - libxcb=1.17.0=hb83e432_1 + - libxcrypt=4.4.38=h280c20c_0 + - libxml2=2.15.3=h49c6c72_1 + - libxml2-16=2.15.3=hca6bf5a_1 + - libzlib=1.3.2=h25fd6f3_3 + - llvm-openmp=22.1.8=h3206bd6_1 - matplotlib-base=3.10.9=py312he3d6523_0 - - mkl=2026.1.0=hecca717_243 + - mkl=2026.1.0=hecca717_244 - munkres=1.1.4=pyhd8ed1ab_1 - - ncurses=6.6=hdb14827_0 + - ncurses=6.6=hdb14827_1 - numpy=2.4.6=py312h33ff503_0 - - onemkl-license=2026.1.0=ha770c72_243 - openjpeg=2.5.4=h55fea9a_0 - - openssl=3.6.3=h35e630c_0 - - packaging=26.2=pyhc364b38_0 + - openssl=3.6.3=h35e630c_1 + - packaging=26.3=pyhc364b38_0 - pillow=12.3.0=py312h50c33e8_0 - - pip=26.1.2=pyh8b19718_0 - - psutil=7.2.2=py312h5253ce2_0 - - pthread-stubs=0.4=hb9d3cd8_1002 + - pip=26.2.1=pyh8b19718_0 + - psutil=7.2.2=py312h1b36aeb_1 + - pthread-stubs=0.4=hb03c661_1003 - pydantic=2.12.5=pyhcf101f3_1 - pydantic-core=2.41.5=py312h868fb18_1 - pyparsing=3.3.2=pyhcf101f3_0 - - python=3.12.13=hd63d673_0_cpython + - python=3.12.14=h8ab3286_0_cpython - python-dateutil=2.9.0.post0=pyhe01879c_2 - python_abi=3.12=8_cp312 - qhull=2020.2=h434a139_5 - - readline=8.3=h853b02a_0 - - s2n=1.7.5=h7e3ee7f_1 + - readline=8.3=hd6e31c0_1 + - s2n=1.7.6=h7e3ee7f_0 - scipy=1.17.1=py312h54fa4ab_1 - - setuptools=83.0.0=pyh332efcf_0 + - setuptools=84.0.0=pyh332efcf_0 - six=1.17.0=pyhe01879c_1 - tbb=2023.0.0=hab88423_2 - - tk=8.6.13=noxft_hd70dff1_3 + - tk=8.6.13=noxft_h1df4ec4_4 - typing-extensions=4.16.0=h69aa097_0 - - typing-inspection=0.4.2=pyhcf101f3_2 + - typing-inspection=0.4.4=pyhcf101f3_0 - typing_extensions=4.16.0=pyhcf101f3_0 - tzdata=2026c=h151e31d_0 - unicodedata2=17.0.1=py312h4c3975b_0 - - wheel=0.47.0=pyhd8ed1ab_0 - - xorg-libxau=1.0.12=hb03c661_1 - - xorg-libxdmcp=1.1.5=hb03c661_1 - - zlib-ng=2.3.3=hceb46e0_1 - - zstd=1.5.7=hb78ec9c_6 + - wheel=0.48.0=pyhd8ed1ab_0 + - xorg-libxau=1.0.12=hb03c661_2 + - xorg-libxdmcp=1.1.5=hb03c661_2 + - zlib-ng=2.3.3=hce19668_1 + - zstd=1.5.7=hb78ec9c_7 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@e51a703816e712f3c66147cb78fd16808b520f75 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@2e758b9671671160c76d182b72ae18ee735bd214 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@6c850c89972154a08c2ee39ad2dd62e8d9c3afef variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.12-win-64-dev.conda.lock.yml b/environments/py-3.12-win-64-dev.conda.lock.yml index 95f793e..339101f 100644 --- a/environments/py-3.12-win-64-dev.conda.lock.yml +++ b/environments/py-3.12-win-64-dev.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: 2a1a0eb2d3351c9bfc713c5be968c4bcf6fc5604ea258fa943735a17053af93d +# input_hash: 397c50628cc8dff2e8046756bc5147894040408dd1fce6b2b7a6b8140d6182d5 channels: - conda-forge @@ -10,108 +10,107 @@ dependencies: - alabaster=1.0.0=pyhd8ed1ab_1 - annotated-types=0.8.0=pyhd8ed1ab_0 - astroid=4.0.4=py312h2e8e312_0 - - aws-c-auth=0.10.4=hc6e9107_1 - - aws-c-cal=0.9.14=h032d170_4 - - aws-c-common=0.14.2=hfd05255_0 - - aws-c-compression=0.3.2=h1da161f_4 - - aws-c-http=0.11.0=h667fc28_4 - - aws-c-io=0.27.3=hbdc738f_1 - - aws-c-s3=0.12.8=hd7ee1a1_1 - - aws-c-sdkutils=0.2.7=h1da161f_2 - - aws-checksums=0.2.10=h1da161f_4 + - aws-c-auth=0.10.4=h98da7c9_2 + - aws-c-cal=0.9.15=hf2e3468_1 + - aws-c-common=0.14.3=hfd05255_0 + - aws-c-compression=0.3.2=h0d56620_5 + - aws-c-http=0.11.0=he024045_5 + - aws-c-io=0.27.5=hef21f9d_1 + - aws-c-s3=0.13.1=h0deae5e_1 + - aws-c-sdkutils=0.2.7=h0d56620_3 + - aws-checksums=0.2.10=h0d56620_5 - babel=2.18.0=pyhcf101f3_1 - - backports.zstd=1.6.0=py312h06d0912_0 - - brotli=1.2.0=h2d644bc_1 - - brotli-bin=1.2.0=hfd05255_1 - - brotli-python=1.2.0=py312hc6d9e41_1 - - bzip2=1.0.8=h0ad9c76_9 + - backports.zstd=1.7.0=py312h06d0912_0 + - brotli=1.2.0=hc8c2fe1_3 + - brotli-bin=1.2.0=hd477307_3 + - brotli-python=1.2.0=py312ha763cb9_3 + - bzip2=1.0.8=h0ad9c76_10 - ca-certificates=2026.7.22=h4c7d964_0 - cached-property=1.5.2=hd8ed1ab_2 - cached_property=1.5.2=pyha770c72_2 - certifi=2026.7.22=pyhd8ed1ab_0 - - charset-normalizer=3.4.9=pyhd8ed1ab_0 + - charset-normalizer=3.5.1=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - contourpy=1.3.3=py312h78d62e6_4 - - coverage=7.15.2=py312h05f76fc_0 + - coverage=7.15.4=py312h6fa65f5_1 - cycler=0.12.1=pyhcf101f3_2 - dill=0.4.1=pyhcf101f3_0 - discretize=0.12.0=np2py312h7c90ba1_1 - docutils=0.22.4=pyhd8ed1ab_0 - exceptiongroup=1.3.1=pyhd8ed1ab_0 - fonttools=4.63.0=py312h05f76fc_0 - - freetype=2.14.3=h57928b3_1 - - h2=4.4.0=pyhcf101f3_0 - - h5py=3.16.0=nompi_py312h5ddec8c_102 - - hdf5=2.1.0=nompi_h0d3e4b2_110 + - freetype=2.14.3=h57928b3_2 + - h2=4.4.1=pyhcf101f3_0 + - h5py=3.16.0=nompi_py312h5ddec8c_104 + - hdf5=2.2.0=nompi_hf525611_100 - hpack=4.2.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - icu=78.3=h5112557_2 - - idna=3.18=pyhcf101f3_0 + - idna=3.19=pyhcf101f3_0 - imagesize=2.0.0=pyhd8ed1ab_0 - importlib-metadata=9.0.0=pyhcf101f3_0 - iniconfig=2.3.0=pyhd8ed1ab_0 - isort=8.0.1=pyhd8ed1ab_0 - jinja2=3.1.6=pyhcf101f3_1 - kiwisolver=1.5.0=py312h78d62e6_0 - - krb5=1.22.2=h719d79b_1 + - krb5=1.22.2=h719d79b_2 - lcms2=2.19.1=hf2c6c5f_1 - lerc=4.2.0=hd936e49_0 - libaec=1.1.5=haf901d7_0 - - libblas=3.11.0=8_h8455456_mkl - - libbrotlicommon=1.2.0=hfd05255_1 - - libbrotlidec=1.2.0=hfd05255_1 - - libbrotlienc=1.2.0=hfd05255_1 - - libcblas=3.11.0=8_h2a3cdd5_mkl - - libcurl=8.21.0=h51a1c48_2 - - libdeflate=1.25=h51727cc_0 + - libblas=3.11.0=9_h8455456_mkl + - libbrotlicommon=1.2.0=hf02afa3_3 + - libbrotlidec=1.2.0=h84f9c24_3 + - libbrotlienc=1.2.0=he2a975b_3 + - libcblas=3.11.0=9_h2a3cdd5_mkl + - libcurl=8.21.0=hdb0ef4a_5 + - libdeflate=1.25=h1a1d4e4_1 - libexpat=2.8.1=hac47afa_1 - - libffi=3.5.2=h3d046cb_0 - - libfreetype=2.14.3=h57928b3_1 - - libfreetype6=2.14.3=hdbac1cb_1 - - libgcc=15.2.0=h8ee18e1_20 - - libgomp=15.2.0=h8ee18e1_20 + - libffi=3.7.0=h3d046cb_0 + - libfreetype=2.14.3=h57928b3_2 + - libfreetype6=2.14.3=hdbac1cb_2 + - libgcc=16.1.0=h110b43a_3 + - libgomp=16.1.0=h8ee18e1_3 - libhwloc=2.13.0=default_h049141e_1000 - - libiconv=1.18=hc1393d2_2 - - libjpeg-turbo=3.2.0=hfd05255_0 - - liblapack=3.11.0=8_hf9ab0e9_mkl - - liblzma=5.8.3=hfd05255_0 - - libpng=1.6.58=h7351971_0 - - libpsl=0.22.0=h25e0afd_1 - - libsqlite=3.53.4=hf5d6505_0 - - libssh2=1.11.1=h9aa295b_0 + - libiconv=1.18=hc1393d2_3 + - libjpeg-turbo=3.2.0=hfd05255_1 + - liblapack=3.11.0=9_hf9ab0e9_mkl + - liblzma=5.8.3=hfd05255_1 + - libpng=1.6.58=hdc8cecf_1 + - libpsl=0.23.1=h9b16d47_1 + - libsqlite=3.53.4=hf5d6505_1 + - libssh2=1.11.1=h734d217_1 - libtiff=4.7.2=h8f73337_0 - - libwebp-base=1.6.0=h4d5522a_0 - - libwinpthread=12.0.0.r4.gg4f2fc60ca=h57928b3_10 - - libxcb=1.17.0=h0e4246c_0 - - libxml2=2.15.3=h8ef44ab_0 - - libxml2-16=2.15.3=h3cfd58e_0 - - libzlib=1.3.2=hfd05255_2 - - llvm-openmp=22.1.8=h4fa8253_0 + - libwebp-base=1.6.0=h4d5522a_1 + - libwinpthread=12.0.0.r4.gg4f2fc60ca=h11686cb_11 + - libxcb=1.17.0=h874e120_1 + - libxml2=2.15.3=h8ef44ab_1 + - libxml2-16=2.15.3=h3cfd58e_1 + - libzlib=1.3.2=hfd05255_3 + - llvm-openmp=22.1.8=h4fa8253_1 - markupsafe=3.0.3=py312h05f76fc_1 - matplotlib-base=3.10.9=py312h0ebf65c_0 - mccabe=0.7.0=pyhd8ed1ab_1 - - mkl=2026.1.0=hac47afa_233 + - mkl=2026.1.0=hac47afa_234 - munkres=1.1.4=pyhd8ed1ab_1 - numpy=2.4.6=py312ha3f287d_0 - - onemkl-license=2026.1.0=h57928b3_233 - openjpeg=2.5.4=h0e57b4f_0 - - openssl=3.6.3=hf411b9b_0 - - packaging=26.2=pyhc364b38_0 + - openssl=3.6.3=hf411b9b_1 + - packaging=26.3=pyhc364b38_0 - pillow=12.3.0=py312h31f0997_0 - - pip=26.1.2=pyh8b19718_0 - - platformdirs=4.11.0=pyhcf101f3_0 + - pip=26.2.1=pyh8b19718_0 + - platformdirs=4.11.3=pyhcf101f3_0 - pluggy=1.6.0=pyhf9edf01_1 - - psutil=7.2.2=py312he5662c2_0 - - pthread-stubs=0.4=h0e40799_1002 + - psutil=7.2.2=py312he5662c2_1 + - pthread-stubs=0.4=hba3369d_1003 - pydantic=2.12.5=pyhcf101f3_1 - pydantic-core=2.41.5=py312hdabe01f_1 - - pygments=2.20.0=pyhd8ed1ab_0 - - pylint=4.0.6=pyhcf101f3_0 + - pygments=2.21.0=pyhcf101f3_0 + - pylint=4.0.7=pyhcf101f3_0 - pyparsing=3.3.2=pyhcf101f3_0 - pysocks=1.7.1=pyh09c184e_7 - pytest=9.1.1=pyhc364b38_2 - pytest-cov=7.1.0=pyhcf101f3_0 - - python=3.12.13=h0159041_0_cpython + - python=3.12.14=hb12b558_0_cpython - python-dateutil=2.9.0.post0=pyhe01879c_2 - python_abi=3.12=8_cp312 - pyyaml=6.0.3=py312h05f76fc_1 @@ -119,13 +118,13 @@ dependencies: - requests=2.34.2=pyhcf101f3_0 - roman-numerals=4.1.0=pyhd8ed1ab_0 - scipy=1.17.1=py312h9b3c559_1 - - setuptools=83.0.0=pyh332efcf_0 + - setuptools=84.0.0=pyh332efcf_0 - six=1.17.0=pyhe01879c_1 - snowballstemmer=3.1.1=pyhd8ed1ab_0 - sphinx=9.1.0=pyhd8ed1ab_0 - - sphinx-autodoc-typehints=3.13.0=pyhd8ed1ab_0 - - sphinx-rtd-theme=3.1.0=hd8ed1ab_1 - - sphinx_rtd_theme=3.1.0=pyha770c72_1 + - sphinx-autodoc-typehints=3.13.2=pyhd8ed1ab_0 + - sphinx-rtd-theme=3.1.0=h9eada29_2 + - sphinx_rtd_theme=3.1.0=pyhcf101f3_2 - sphinxcontrib-applehelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-devhelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-htmlhelp=2.1.0=pyhd8ed1ab_1 @@ -134,31 +133,31 @@ dependencies: - sphinxcontrib-qthelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-serializinghtml=2.0.0=pyhd8ed1ab_0 - tbb=2023.0.0=hd3d4ead_2 - - tk=8.6.13=h967ab96_3 + - tk=8.6.13=h967ab96_4 - tomli=2.4.1=pyhcf101f3_0 - tomlkit=0.15.1=pyhcf101f3_0 - typing-extensions=4.16.0=h69aa097_0 - - typing-inspection=0.4.2=pyhcf101f3_2 + - typing-inspection=0.4.4=pyhcf101f3_0 - typing_extensions=4.16.0=pyhcf101f3_0 - tzdata=2026c=h151e31d_0 - ucrt=10.0.26100.0=h57928b3_0 - unicodedata2=17.0.1=py312he06e257_0 - urllib3=2.7.0=pyhd8ed1ab_0 - - vc=14.5=h1b7c187_39 - - vc14_runtime=14.51.36231=h1b9f54f_39 - - vcomp14=14.51.36231=h1b9f54f_39 - - wheel=0.47.0=pyhd8ed1ab_0 + - vc=14.5=ha367084_41 + - vc14_runtime=14.51.36247=habf1de7_41 + - vcomp14=14.51.36247=habf1de7_41 + - wheel=0.48.0=pyhd8ed1ab_0 - win_inet_pton=1.1.0=pyh7428d3b_8 - - xorg-libxau=1.0.12=hba3369d_1 - - xorg-libxdmcp=1.1.5=hba3369d_1 + - xorg-libxau=1.0.12=hba3369d_2 + - xorg-libxdmcp=1.1.5=hba3369d_2 - yaml=0.2.5=h6a83c73_3 - zipp=4.1.0=pyhcf101f3_0 - - zlib=1.3.2=hfd05255_2 + - zlib=1.3.2=hfd05255_3 - zlib-ng=2.3.3=h0261ad2_1 - - zstd=1.5.7=h534d264_6 + - zstd=1.5.7=h534d264_7 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@e51a703816e712f3c66147cb78fd16808b520f75 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@2e758b9671671160c76d182b72ae18ee735bd214 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@6c850c89972154a08c2ee39ad2dd62e8d9c3afef variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.12-win-64.conda.lock.yml b/environments/py-3.12-win-64.conda.lock.yml index 519ccde..04917ce 100644 --- a/environments/py-3.12-win-64.conda.lock.yml +++ b/environments/py-3.12-win-64.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: 2a1a0eb2d3351c9bfc713c5be968c4bcf6fc5604ea258fa943735a17053af93d +# input_hash: 397c50628cc8dff2e8046756bc5147894040408dd1fce6b2b7a6b8140d6182d5 channels: - conda-forge @@ -8,18 +8,18 @@ channels: dependencies: - _openmp_mutex=4.5=20_gnu - annotated-types=0.8.0=pyhd8ed1ab_0 - - aws-c-auth=0.10.4=hc6e9107_1 - - aws-c-cal=0.9.14=h032d170_4 - - aws-c-common=0.14.2=hfd05255_0 - - aws-c-compression=0.3.2=h1da161f_4 - - aws-c-http=0.11.0=h667fc28_4 - - aws-c-io=0.27.3=hbdc738f_1 - - aws-c-s3=0.12.8=hd7ee1a1_1 - - aws-c-sdkutils=0.2.7=h1da161f_2 - - aws-checksums=0.2.10=h1da161f_4 - - brotli=1.2.0=h2d644bc_1 - - brotli-bin=1.2.0=hfd05255_1 - - bzip2=1.0.8=h0ad9c76_9 + - aws-c-auth=0.10.4=h98da7c9_2 + - aws-c-cal=0.9.15=hf2e3468_1 + - aws-c-common=0.14.3=hfd05255_0 + - aws-c-compression=0.3.2=h0d56620_5 + - aws-c-http=0.11.0=he024045_5 + - aws-c-io=0.27.5=hef21f9d_1 + - aws-c-s3=0.13.1=h0deae5e_1 + - aws-c-sdkutils=0.2.7=h0d56620_3 + - aws-checksums=0.2.10=h0d56620_5 + - brotli=1.2.0=hc8c2fe1_3 + - brotli-bin=1.2.0=hd477307_3 + - bzip2=1.0.8=h0ad9c76_10 - ca-certificates=2026.7.22=h4c7d964_0 - cached-property=1.5.2=hd8ed1ab_2 - cached_property=1.5.2=pyha770c72_2 @@ -27,87 +27,86 @@ dependencies: - cycler=0.12.1=pyhcf101f3_2 - discretize=0.12.0=np2py312h7c90ba1_1 - fonttools=4.63.0=py312h05f76fc_0 - - freetype=2.14.3=h57928b3_1 - - h5py=3.16.0=nompi_py312h5ddec8c_102 - - hdf5=2.1.0=nompi_h0d3e4b2_110 + - freetype=2.14.3=h57928b3_2 + - h5py=3.16.0=nompi_py312h5ddec8c_104 + - hdf5=2.2.0=nompi_hf525611_100 - icu=78.3=h5112557_2 - kiwisolver=1.5.0=py312h78d62e6_0 - - krb5=1.22.2=h719d79b_1 + - krb5=1.22.2=h719d79b_2 - lcms2=2.19.1=hf2c6c5f_1 - lerc=4.2.0=hd936e49_0 - libaec=1.1.5=haf901d7_0 - - libblas=3.11.0=8_h8455456_mkl - - libbrotlicommon=1.2.0=hfd05255_1 - - libbrotlidec=1.2.0=hfd05255_1 - - libbrotlienc=1.2.0=hfd05255_1 - - libcblas=3.11.0=8_h2a3cdd5_mkl - - libcurl=8.21.0=h51a1c48_2 - - libdeflate=1.25=h51727cc_0 + - libblas=3.11.0=9_h8455456_mkl + - libbrotlicommon=1.2.0=hf02afa3_3 + - libbrotlidec=1.2.0=h84f9c24_3 + - libbrotlienc=1.2.0=he2a975b_3 + - libcblas=3.11.0=9_h2a3cdd5_mkl + - libcurl=8.21.0=hdb0ef4a_5 + - libdeflate=1.25=h1a1d4e4_1 - libexpat=2.8.1=hac47afa_1 - - libffi=3.5.2=h3d046cb_0 - - libfreetype=2.14.3=h57928b3_1 - - libfreetype6=2.14.3=hdbac1cb_1 - - libgcc=15.2.0=h8ee18e1_20 - - libgomp=15.2.0=h8ee18e1_20 + - libffi=3.7.0=h3d046cb_0 + - libfreetype=2.14.3=h57928b3_2 + - libfreetype6=2.14.3=hdbac1cb_2 + - libgcc=16.1.0=h110b43a_3 + - libgomp=16.1.0=h8ee18e1_3 - libhwloc=2.13.0=default_h049141e_1000 - - libiconv=1.18=hc1393d2_2 - - libjpeg-turbo=3.2.0=hfd05255_0 - - liblapack=3.11.0=8_hf9ab0e9_mkl - - liblzma=5.8.3=hfd05255_0 - - libpng=1.6.58=h7351971_0 - - libpsl=0.22.0=h25e0afd_1 - - libsqlite=3.53.4=hf5d6505_0 - - libssh2=1.11.1=h9aa295b_0 + - libiconv=1.18=hc1393d2_3 + - libjpeg-turbo=3.2.0=hfd05255_1 + - liblapack=3.11.0=9_hf9ab0e9_mkl + - liblzma=5.8.3=hfd05255_1 + - libpng=1.6.58=hdc8cecf_1 + - libpsl=0.23.1=h9b16d47_1 + - libsqlite=3.53.4=hf5d6505_1 + - libssh2=1.11.1=h734d217_1 - libtiff=4.7.2=h8f73337_0 - - libwebp-base=1.6.0=h4d5522a_0 - - libwinpthread=12.0.0.r4.gg4f2fc60ca=h57928b3_10 - - libxcb=1.17.0=h0e4246c_0 - - libxml2=2.15.3=h8ef44ab_0 - - libxml2-16=2.15.3=h3cfd58e_0 - - libzlib=1.3.2=hfd05255_2 - - llvm-openmp=22.1.8=h4fa8253_0 + - libwebp-base=1.6.0=h4d5522a_1 + - libwinpthread=12.0.0.r4.gg4f2fc60ca=h11686cb_11 + - libxcb=1.17.0=h874e120_1 + - libxml2=2.15.3=h8ef44ab_1 + - libxml2-16=2.15.3=h3cfd58e_1 + - libzlib=1.3.2=hfd05255_3 + - llvm-openmp=22.1.8=h4fa8253_1 - matplotlib-base=3.10.9=py312h0ebf65c_0 - - mkl=2026.1.0=hac47afa_233 + - mkl=2026.1.0=hac47afa_234 - munkres=1.1.4=pyhd8ed1ab_1 - numpy=2.4.6=py312ha3f287d_0 - - onemkl-license=2026.1.0=h57928b3_233 - openjpeg=2.5.4=h0e57b4f_0 - - openssl=3.6.3=hf411b9b_0 - - packaging=26.2=pyhc364b38_0 + - openssl=3.6.3=hf411b9b_1 + - packaging=26.3=pyhc364b38_0 - pillow=12.3.0=py312h31f0997_0 - - pip=26.1.2=pyh8b19718_0 - - psutil=7.2.2=py312he5662c2_0 - - pthread-stubs=0.4=h0e40799_1002 + - pip=26.2.1=pyh8b19718_0 + - psutil=7.2.2=py312he5662c2_1 + - pthread-stubs=0.4=hba3369d_1003 - pydantic=2.12.5=pyhcf101f3_1 - pydantic-core=2.41.5=py312hdabe01f_1 - pyparsing=3.3.2=pyhcf101f3_0 - - python=3.12.13=h0159041_0_cpython + - python=3.12.14=hb12b558_0_cpython - python-dateutil=2.9.0.post0=pyhe01879c_2 - python_abi=3.12=8_cp312 - qhull=2020.2=hc790b64_5 - scipy=1.17.1=py312h9b3c559_1 - - setuptools=83.0.0=pyh332efcf_0 + - setuptools=84.0.0=pyh332efcf_0 - six=1.17.0=pyhe01879c_1 - tbb=2023.0.0=hd3d4ead_2 - - tk=8.6.13=h967ab96_3 + - tk=8.6.13=h967ab96_4 - typing-extensions=4.16.0=h69aa097_0 - - typing-inspection=0.4.2=pyhcf101f3_2 + - typing-inspection=0.4.4=pyhcf101f3_0 - typing_extensions=4.16.0=pyhcf101f3_0 - tzdata=2026c=h151e31d_0 - ucrt=10.0.26100.0=h57928b3_0 - unicodedata2=17.0.1=py312he06e257_0 - - vc=14.5=h1b7c187_39 - - vc14_runtime=14.51.36231=h1b9f54f_39 - - vcomp14=14.51.36231=h1b9f54f_39 - - wheel=0.47.0=pyhd8ed1ab_0 - - xorg-libxau=1.0.12=hba3369d_1 - - xorg-libxdmcp=1.1.5=hba3369d_1 - - zlib=1.3.2=hfd05255_2 + - vc=14.5=ha367084_41 + - vc14_runtime=14.51.36247=habf1de7_41 + - vcomp14=14.51.36247=habf1de7_41 + - wheel=0.48.0=pyhd8ed1ab_0 + - xorg-libxau=1.0.12=hba3369d_2 + - xorg-libxdmcp=1.1.5=hba3369d_2 + - zlib=1.3.2=hfd05255_3 - zlib-ng=2.3.3=h0261ad2_1 - - zstd=1.5.7=h534d264_6 + - zstd=1.5.7=h534d264_7 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@e51a703816e712f3c66147cb78fd16808b520f75 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@2e758b9671671160c76d182b72ae18ee735bd214 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@6c850c89972154a08c2ee39ad2dd62e8d9c3afef variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.13-linux-64-dev.conda.lock.yml b/environments/py-3.13-linux-64-dev.conda.lock.yml index a58e44a..f04a513 100644 --- a/environments/py-3.13-linux-64-dev.conda.lock.yml +++ b/environments/py-3.13-linux-64-dev.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 59a8bed888c6e8bb7e4bf76aea22ce47c367defb14bb1ae454cc7cc8b7508c9a +# input_hash: 30dc1a8729f1afe543ecb8b885261b2d4c9f6317cf69986c9efb5eb31ccaf142 channels: - conda-forge @@ -10,135 +10,134 @@ dependencies: - alabaster=1.0.0=pyhd8ed1ab_1 - annotated-types=0.8.0=pyhd8ed1ab_0 - astroid=4.0.4=py313h78bf25f_0 - - aws-c-auth=0.10.4=hb7a77c6_1 - - aws-c-cal=0.9.14=h2aa3ae6_4 - - aws-c-common=0.14.2=hb03c661_0 - - aws-c-compression=0.3.2=h720e601_4 - - aws-c-http=0.11.0=h38ae05a_4 - - aws-c-io=0.27.3=h6f4d18d_1 - - aws-c-s3=0.12.8=h46fcd08_1 - - aws-c-sdkutils=0.2.7=h720e601_2 - - aws-checksums=0.2.10=h720e601_4 + - aws-c-auth=0.10.4=h4610da3_2 + - aws-c-cal=0.9.15=h6bbde05_1 + - aws-c-common=0.14.3=hb03c661_0 + - aws-c-compression=0.3.2=h01ee8f8_5 + - aws-c-http=0.11.0=hbe094ff_5 + - aws-c-io=0.27.5=h4f381ba_1 + - aws-c-s3=0.13.1=h7508075_1 + - aws-c-sdkutils=0.2.7=h01ee8f8_3 + - aws-checksums=0.2.10=h01ee8f8_5 - babel=2.18.0=pyhcf101f3_1 - - backports.zstd=1.6.0=py313h18e8e13_0 - - brotli=1.2.0=hed03a55_1 - - brotli-bin=1.2.0=hb03c661_1 - - brotli-python=1.2.0=py313hf159716_1 - - bzip2=1.0.8=hda65f42_9 - - c-ares=1.34.8=hb03c661_0 + - backports.zstd=1.7.0=py313h8f72f4d_0 + - brotli=1.2.0=h505cf86_3 + - brotli-bin=1.2.0=h9908984_3 + - brotli-python=1.2.0=py313h2fc2bef_3 + - bzip2=1.0.8=hda65f42_10 + - c-ares=1.34.8=hebe6cf0_2 - ca-certificates=2026.7.22=hbd8a1cb_0 - cached-property=1.5.2=hd8ed1ab_2 - cached_property=1.5.2=pyha770c72_2 - certifi=2026.7.22=pyhd8ed1ab_0 - - charset-normalizer=3.4.9=pyhd8ed1ab_0 + - charset-normalizer=3.5.1=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - contourpy=1.3.3=py313hc8edb43_4 - - coverage=7.15.2=py313h3dea7bd_0 + - coverage=7.15.4=py313h55b89ea_1 - cycler=0.12.1=pyhcf101f3_2 - dill=0.4.1=pyhcf101f3_0 - discretize=0.12.0=np2py313h0f78c12_1 - docutils=0.22.4=pyhd8ed1ab_0 - exceptiongroup=1.3.1=pyhd8ed1ab_0 - fonttools=4.63.0=py313h3dea7bd_0 - - freetype=2.14.3=ha770c72_0 - - h2=4.4.0=pyhcf101f3_0 - - h5py=3.16.0=nompi_py313h22c32d4_102 - - hdf5=2.1.0=nompi_h654f344_110 + - freetype=2.14.3=ha770c72_2 + - h2=4.4.1=pyhcf101f3_0 + - h5py=3.16.0=nompi_py313hce4e9db_104 + - hdf5=2.2.0=nompi_hc529623_100 - hpack=4.2.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - - icu=78.3=h54a6638_2 - - idna=3.18=pyhcf101f3_0 + - icu=78.3=py310h44b86e0_2 + - idna=3.19=pyhcf101f3_0 - imagesize=2.0.0=pyhd8ed1ab_0 - importlib-metadata=9.0.0=pyhcf101f3_0 - iniconfig=2.3.0=pyhd8ed1ab_0 - isort=8.0.1=pyhd8ed1ab_0 - jinja2=3.1.6=pyhcf101f3_1 - - keyutils=1.6.3=hb9d3cd8_0 + - keyutils=1.6.3=h7cc23a3_1 - kiwisolver=1.5.0=py313hc8edb43_0 - - krb5=1.22.2=hbde042b_1 + - krb5=1.22.2=hbc21106_2 - lcms2=2.19.1=h0c24ade_1 - ld_impl_linux-64=2.46.1=default_hbd61a6d_102 - lerc=4.2.0=hdb68285_0 - libaec=1.1.5=h088129d_0 - - libblas=3.11.0=8_h5875eb1_mkl - - libbrotlicommon=1.2.0=hb03c661_1 - - libbrotlidec=1.2.0=hb03c661_1 - - libbrotlienc=1.2.0=hb03c661_1 - - libcblas=3.11.0=8_hfef963f_mkl - - libcurl=8.21.0=hae6b9f4_2 - - libdeflate=1.25=h17f619e_0 - - libedit=3.1.20250104=pl5321h7949ede_0 - - libev=4.33=hd590300_2 + - libblas=3.11.0=9_h5875eb1_mkl + - libbrotlicommon=1.2.0=h39a168f_3 + - libbrotlidec=1.2.0=ha411449_3 + - libbrotlienc=1.2.0=h018ffa1_3 + - libcblas=3.11.0=9_hfef963f_mkl + - libcurl=8.21.0=ha042cf0_5 + - libdeflate=1.25=hd45a770_1 + - libedit=3.1.20250104=pl5321h373387f_1 + - libev=4.33=h280c20c_3 - libexpat=2.8.1=hecca717_1 - - libffi=3.5.2=h3435931_0 - - libfreetype=2.14.3=ha770c72_0 - - libfreetype6=2.14.3=h73754d4_0 - - libgcc=15.2.0=he0feb66_20 - - libgcc-ng=15.2.0=h69a702a_20 - - libgfortran=15.2.0=h69a702a_20 - - libgfortran5=15.2.0=h68bc16d_20 + - libffi=3.7.0=h3435931_0 + - libfreetype=2.14.3=ha770c72_2 + - libfreetype6=2.14.3=h5e6c136_2 + - libgcc=16.1.0=ha9f2e26_3 + - libgcc-ng=16.1.0=h69a702a_3 + - libgfortran=16.1.0=h69a702a_3 + - libgfortran5=16.1.0=h79bb938_3 - libhwloc=2.13.0=default_he001693_1000 - - libiconv=1.18=h3b78370_2 - - libjpeg-turbo=3.2.0=hb03c661_0 - - liblapack=3.11.0=8_h5e43f62_mkl - - liblzma=5.8.3=hb03c661_0 - - libmpdec=4.0.0=hb03c661_1 - - libnghttp2=1.68.1=h877daf1_0 - - libpng=1.6.58=h421ea60_0 - - libpsl=0.22.0=h49b2146_1 - - libsqlite=3.53.4=hf4e2dac_0 - - libssh2=1.11.1=hcf80075_0 - - libstdcxx=15.2.0=h934c35e_20 - - libstdcxx-ng=15.2.0=hdf11a46_20 + - libiconv=1.18=h0cb94f2_3 + - libjpeg-turbo=3.2.0=hb03c661_1 + - liblapack=3.11.0=9_h5e43f62_mkl + - liblzma=5.8.3=hb03c661_1 + - libmpdec=4.0.0=hb03c661_2 + - libnghttp2=1.68.1=h74cf4be_1 + - libpng=1.6.58=h922cc85_1 + - libpsl=0.23.1=hd9e3e90_1 + - libsqlite=3.53.4=h13e7031_1 + - libssh2=1.11.1=h6154650_1 + - libstdcxx=16.1.0=h934c35e_3 + - libstdcxx-ng=16.1.0=hdf11a46_3 - libtiff=4.7.2=h9d88235_0 - libuuid=2.42.2=h5347b49_0 - - libwebp-base=1.6.0=hd42ef1d_0 - - libxcb=1.17.0=h8a09558_0 - - libxml2=2.15.3=h49c6c72_0 - - libxml2-16=2.15.3=hca6bf5a_0 - - libzlib=1.3.2=h25fd6f3_2 - - llvm-openmp=22.1.8=h4922eb0_0 + - libwebp-base=1.6.0=hd42ef1d_1 + - libxcb=1.17.0=hb83e432_1 + - libxml2=2.15.3=h49c6c72_1 + - libxml2-16=2.15.3=hca6bf5a_1 + - libzlib=1.3.2=h25fd6f3_3 + - llvm-openmp=22.1.8=h3206bd6_1 - markupsafe=3.0.3=py313h3dea7bd_1 - matplotlib-base=3.10.9=py313h683a580_0 - mccabe=0.7.0=pyhd8ed1ab_1 - - mkl=2026.1.0=hecca717_243 + - mkl=2026.1.0=hecca717_244 - munkres=1.1.4=pyhd8ed1ab_1 - - ncurses=6.6=hdb14827_0 + - ncurses=6.6=hdb14827_1 - numpy=2.4.6=py313hf6604e3_0 - - onemkl-license=2026.1.0=ha770c72_243 - openjpeg=2.5.4=h55fea9a_0 - - openssl=3.6.3=h35e630c_0 - - packaging=26.2=pyhc364b38_0 + - openssl=3.6.3=h35e630c_1 + - packaging=26.3=pyhc364b38_0 - pillow=12.3.0=py313h80991f8_0 - - pip=26.1.2=pyh145f28c_0 - - platformdirs=4.11.0=pyhcf101f3_0 + - pip=26.2.1=pyh145f28c_0 + - platformdirs=4.11.3=pyhcf101f3_0 - pluggy=1.6.0=pyhf9edf01_1 - - psutil=7.2.2=py313h54dd161_0 - - pthread-stubs=0.4=hb9d3cd8_1002 + - psutil=7.2.2=py313hd42f317_1 + - pthread-stubs=0.4=hb03c661_1003 - pydantic=2.12.5=pyhcf101f3_1 - pydantic-core=2.41.5=py313h843e2db_1 - - pygments=2.20.0=pyhd8ed1ab_0 - - pylint=4.0.6=pyhcf101f3_0 + - pygments=2.21.0=pyhcf101f3_0 + - pylint=4.0.7=pyhcf101f3_0 - pyparsing=3.3.2=pyhcf101f3_0 - pysocks=1.7.1=pyha55dd90_7 - pytest=9.1.1=pyhc364b38_2 - pytest-cov=7.1.0=pyhcf101f3_0 - - python=3.13.14=h6add32d_100_cp313 + - python=3.13.15=hb101c97_101_cp313 - python-dateutil=2.9.0.post0=pyhe01879c_2 - python_abi=3.13=8_cp313 - pyyaml=6.0.3=py313h3dea7bd_1 - qhull=2020.2=h434a139_5 - - readline=8.3=h853b02a_0 + - readline=8.3=hd6e31c0_1 - requests=2.34.2=pyhcf101f3_0 - roman-numerals=4.1.0=pyhd8ed1ab_0 - - s2n=1.7.5=h7e3ee7f_1 + - s2n=1.7.6=h7e3ee7f_0 - scipy=1.17.1=py313h4b8bb8b_1 - six=1.17.0=pyhe01879c_1 - snowballstemmer=3.1.1=pyhd8ed1ab_0 - sphinx=9.1.0=pyhd8ed1ab_0 - - sphinx-autodoc-typehints=3.13.0=pyhd8ed1ab_0 - - sphinx-rtd-theme=3.1.0=hd8ed1ab_1 - - sphinx_rtd_theme=3.1.0=pyha770c72_1 + - sphinx-autodoc-typehints=3.13.2=pyhd8ed1ab_0 + - sphinx-rtd-theme=3.1.0=h9eada29_2 + - sphinx_rtd_theme=3.1.0=pyhcf101f3_2 - sphinxcontrib-applehelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-devhelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-htmlhelp=2.1.0=pyhd8ed1ab_1 @@ -147,23 +146,23 @@ dependencies: - sphinxcontrib-qthelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-serializinghtml=2.0.0=pyhd8ed1ab_0 - tbb=2023.0.0=hab88423_2 - - tk=8.6.13=noxft_hd70dff1_3 + - tk=8.6.13=noxft_h1df4ec4_4 - tomli=2.4.1=pyhcf101f3_0 - tomlkit=0.15.1=pyhcf101f3_0 - typing-extensions=4.16.0=h69aa097_0 - - typing-inspection=0.4.2=pyhcf101f3_2 + - typing-inspection=0.4.4=pyhcf101f3_0 - typing_extensions=4.16.0=pyhcf101f3_0 - tzdata=2026c=h151e31d_0 - urllib3=2.7.0=pyhd8ed1ab_0 - - xorg-libxau=1.0.12=hb03c661_1 - - xorg-libxdmcp=1.1.5=hb03c661_1 - - yaml=0.2.5=h280c20c_3 + - xorg-libxau=1.0.12=hb03c661_2 + - xorg-libxdmcp=1.1.5=hb03c661_2 + - yaml=0.2.5=hebe6cf0_3 - zipp=4.1.0=pyhcf101f3_0 - - zlib-ng=2.3.3=hceb46e0_1 - - zstd=1.5.7=hb78ec9c_6 + - zlib-ng=2.3.3=hce19668_1 + - zstd=1.5.7=hb78ec9c_7 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@e51a703816e712f3c66147cb78fd16808b520f75 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@2e758b9671671160c76d182b72ae18ee735bd214 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@6c850c89972154a08c2ee39ad2dd62e8d9c3afef variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.13-linux-64.conda.lock.yml b/environments/py-3.13-linux-64.conda.lock.yml index 8e1cb9f..20c9969 100644 --- a/environments/py-3.13-linux-64.conda.lock.yml +++ b/environments/py-3.13-linux-64.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 59a8bed888c6e8bb7e4bf76aea22ce47c367defb14bb1ae454cc7cc8b7508c9a +# input_hash: 30dc1a8729f1afe543ecb8b885261b2d4c9f6317cf69986c9efb5eb31ccaf142 channels: - conda-forge @@ -8,19 +8,19 @@ channels: dependencies: - _openmp_mutex=4.5=7_kmp_llvm - annotated-types=0.8.0=pyhd8ed1ab_0 - - aws-c-auth=0.10.4=hb7a77c6_1 - - aws-c-cal=0.9.14=h2aa3ae6_4 - - aws-c-common=0.14.2=hb03c661_0 - - aws-c-compression=0.3.2=h720e601_4 - - aws-c-http=0.11.0=h38ae05a_4 - - aws-c-io=0.27.3=h6f4d18d_1 - - aws-c-s3=0.12.8=h46fcd08_1 - - aws-c-sdkutils=0.2.7=h720e601_2 - - aws-checksums=0.2.10=h720e601_4 - - brotli=1.2.0=hed03a55_1 - - brotli-bin=1.2.0=hb03c661_1 - - bzip2=1.0.8=hda65f42_9 - - c-ares=1.34.8=hb03c661_0 + - aws-c-auth=0.10.4=h4610da3_2 + - aws-c-cal=0.9.15=h6bbde05_1 + - aws-c-common=0.14.3=hb03c661_0 + - aws-c-compression=0.3.2=h01ee8f8_5 + - aws-c-http=0.11.0=hbe094ff_5 + - aws-c-io=0.27.5=h4f381ba_1 + - aws-c-s3=0.13.1=h7508075_1 + - aws-c-sdkutils=0.2.7=h01ee8f8_3 + - aws-checksums=0.2.10=h01ee8f8_5 + - brotli=1.2.0=h505cf86_3 + - brotli-bin=1.2.0=h9908984_3 + - bzip2=1.0.8=hda65f42_10 + - c-ares=1.34.8=hebe6cf0_2 - ca-certificates=2026.7.22=hbd8a1cb_0 - cached-property=1.5.2=hd8ed1ab_2 - cached_property=1.5.2=pyha770c72_2 @@ -28,92 +28,91 @@ dependencies: - cycler=0.12.1=pyhcf101f3_2 - discretize=0.12.0=np2py313h0f78c12_1 - fonttools=4.63.0=py313h3dea7bd_0 - - freetype=2.14.3=ha770c72_0 - - h5py=3.16.0=nompi_py313h22c32d4_102 - - hdf5=2.1.0=nompi_h654f344_110 - - icu=78.3=h54a6638_2 - - keyutils=1.6.3=hb9d3cd8_0 + - freetype=2.14.3=ha770c72_2 + - h5py=3.16.0=nompi_py313hce4e9db_104 + - hdf5=2.2.0=nompi_hc529623_100 + - icu=78.3=py310h44b86e0_2 + - keyutils=1.6.3=h7cc23a3_1 - kiwisolver=1.5.0=py313hc8edb43_0 - - krb5=1.22.2=hbde042b_1 + - krb5=1.22.2=hbc21106_2 - lcms2=2.19.1=h0c24ade_1 - ld_impl_linux-64=2.46.1=default_hbd61a6d_102 - lerc=4.2.0=hdb68285_0 - libaec=1.1.5=h088129d_0 - - libblas=3.11.0=8_h5875eb1_mkl - - libbrotlicommon=1.2.0=hb03c661_1 - - libbrotlidec=1.2.0=hb03c661_1 - - libbrotlienc=1.2.0=hb03c661_1 - - libcblas=3.11.0=8_hfef963f_mkl - - libcurl=8.21.0=hae6b9f4_2 - - libdeflate=1.25=h17f619e_0 - - libedit=3.1.20250104=pl5321h7949ede_0 - - libev=4.33=hd590300_2 + - libblas=3.11.0=9_h5875eb1_mkl + - libbrotlicommon=1.2.0=h39a168f_3 + - libbrotlidec=1.2.0=ha411449_3 + - libbrotlienc=1.2.0=h018ffa1_3 + - libcblas=3.11.0=9_hfef963f_mkl + - libcurl=8.21.0=ha042cf0_5 + - libdeflate=1.25=hd45a770_1 + - libedit=3.1.20250104=pl5321h373387f_1 + - libev=4.33=h280c20c_3 - libexpat=2.8.1=hecca717_1 - - libffi=3.5.2=h3435931_0 - - libfreetype=2.14.3=ha770c72_0 - - libfreetype6=2.14.3=h73754d4_0 - - libgcc=15.2.0=he0feb66_20 - - libgcc-ng=15.2.0=h69a702a_20 - - libgfortran=15.2.0=h69a702a_20 - - libgfortran5=15.2.0=h68bc16d_20 + - libffi=3.7.0=h3435931_0 + - libfreetype=2.14.3=ha770c72_2 + - libfreetype6=2.14.3=h5e6c136_2 + - libgcc=16.1.0=ha9f2e26_3 + - libgcc-ng=16.1.0=h69a702a_3 + - libgfortran=16.1.0=h69a702a_3 + - libgfortran5=16.1.0=h79bb938_3 - libhwloc=2.13.0=default_he001693_1000 - - libiconv=1.18=h3b78370_2 - - libjpeg-turbo=3.2.0=hb03c661_0 - - liblapack=3.11.0=8_h5e43f62_mkl - - liblzma=5.8.3=hb03c661_0 - - libmpdec=4.0.0=hb03c661_1 - - libnghttp2=1.68.1=h877daf1_0 - - libpng=1.6.58=h421ea60_0 - - libpsl=0.22.0=h49b2146_1 - - libsqlite=3.53.4=hf4e2dac_0 - - libssh2=1.11.1=hcf80075_0 - - libstdcxx=15.2.0=h934c35e_20 - - libstdcxx-ng=15.2.0=hdf11a46_20 + - libiconv=1.18=h0cb94f2_3 + - libjpeg-turbo=3.2.0=hb03c661_1 + - liblapack=3.11.0=9_h5e43f62_mkl + - liblzma=5.8.3=hb03c661_1 + - libmpdec=4.0.0=hb03c661_2 + - libnghttp2=1.68.1=h74cf4be_1 + - libpng=1.6.58=h922cc85_1 + - libpsl=0.23.1=hd9e3e90_1 + - libsqlite=3.53.4=h13e7031_1 + - libssh2=1.11.1=h6154650_1 + - libstdcxx=16.1.0=h934c35e_3 + - libstdcxx-ng=16.1.0=hdf11a46_3 - libtiff=4.7.2=h9d88235_0 - libuuid=2.42.2=h5347b49_0 - - libwebp-base=1.6.0=hd42ef1d_0 - - libxcb=1.17.0=h8a09558_0 - - libxml2=2.15.3=h49c6c72_0 - - libxml2-16=2.15.3=hca6bf5a_0 - - libzlib=1.3.2=h25fd6f3_2 - - llvm-openmp=22.1.8=h4922eb0_0 + - libwebp-base=1.6.0=hd42ef1d_1 + - libxcb=1.17.0=hb83e432_1 + - libxml2=2.15.3=h49c6c72_1 + - libxml2-16=2.15.3=hca6bf5a_1 + - libzlib=1.3.2=h25fd6f3_3 + - llvm-openmp=22.1.8=h3206bd6_1 - matplotlib-base=3.10.9=py313h683a580_0 - - mkl=2026.1.0=hecca717_243 + - mkl=2026.1.0=hecca717_244 - munkres=1.1.4=pyhd8ed1ab_1 - - ncurses=6.6=hdb14827_0 + - ncurses=6.6=hdb14827_1 - numpy=2.4.6=py313hf6604e3_0 - - onemkl-license=2026.1.0=ha770c72_243 - openjpeg=2.5.4=h55fea9a_0 - - openssl=3.6.3=h35e630c_0 - - packaging=26.2=pyhc364b38_0 + - openssl=3.6.3=h35e630c_1 + - packaging=26.3=pyhc364b38_0 - pillow=12.3.0=py313h80991f8_0 - - pip=26.1.2=pyh145f28c_0 - - psutil=7.2.2=py313h54dd161_0 - - pthread-stubs=0.4=hb9d3cd8_1002 + - pip=26.2.1=pyh145f28c_0 + - psutil=7.2.2=py313hd42f317_1 + - pthread-stubs=0.4=hb03c661_1003 - pydantic=2.12.5=pyhcf101f3_1 - pydantic-core=2.41.5=py313h843e2db_1 - pyparsing=3.3.2=pyhcf101f3_0 - - python=3.13.14=h6add32d_100_cp313 + - python=3.13.15=hb101c97_101_cp313 - python-dateutil=2.9.0.post0=pyhe01879c_2 - python_abi=3.13=8_cp313 - qhull=2020.2=h434a139_5 - - readline=8.3=h853b02a_0 - - s2n=1.7.5=h7e3ee7f_1 + - readline=8.3=hd6e31c0_1 + - s2n=1.7.6=h7e3ee7f_0 - scipy=1.17.1=py313h4b8bb8b_1 - six=1.17.0=pyhe01879c_1 - tbb=2023.0.0=hab88423_2 - - tk=8.6.13=noxft_hd70dff1_3 + - tk=8.6.13=noxft_h1df4ec4_4 - typing-extensions=4.16.0=h69aa097_0 - - typing-inspection=0.4.2=pyhcf101f3_2 + - typing-inspection=0.4.4=pyhcf101f3_0 - typing_extensions=4.16.0=pyhcf101f3_0 - tzdata=2026c=h151e31d_0 - - xorg-libxau=1.0.12=hb03c661_1 - - xorg-libxdmcp=1.1.5=hb03c661_1 - - zlib-ng=2.3.3=hceb46e0_1 - - zstd=1.5.7=hb78ec9c_6 + - xorg-libxau=1.0.12=hb03c661_2 + - xorg-libxdmcp=1.1.5=hb03c661_2 + - zlib-ng=2.3.3=hce19668_1 + - zstd=1.5.7=hb78ec9c_7 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@e51a703816e712f3c66147cb78fd16808b520f75 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@2e758b9671671160c76d182b72ae18ee735bd214 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@6c850c89972154a08c2ee39ad2dd62e8d9c3afef variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.13-win-64-dev.conda.lock.yml b/environments/py-3.13-win-64-dev.conda.lock.yml index 2e8701d..4d9c6b8 100644 --- a/environments/py-3.13-win-64-dev.conda.lock.yml +++ b/environments/py-3.13-win-64-dev.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: fd533891192d09faea1ff9dd155c7cc2d3a664bddc5957902f89c988b479a633 +# input_hash: bc6181b1344600521cd6f1dee8d2b47e8f823b04a119ab0616e60009357ff824 channels: - conda-forge @@ -10,109 +10,108 @@ dependencies: - alabaster=1.0.0=pyhd8ed1ab_1 - annotated-types=0.8.0=pyhd8ed1ab_0 - astroid=4.0.4=py313hfa70ccb_0 - - aws-c-auth=0.10.4=hc6e9107_1 - - aws-c-cal=0.9.14=h032d170_4 - - aws-c-common=0.14.2=hfd05255_0 - - aws-c-compression=0.3.2=h1da161f_4 - - aws-c-http=0.11.0=h667fc28_4 - - aws-c-io=0.27.3=hbdc738f_1 - - aws-c-s3=0.12.8=hd7ee1a1_1 - - aws-c-sdkutils=0.2.7=h1da161f_2 - - aws-checksums=0.2.10=h1da161f_4 + - aws-c-auth=0.10.4=h98da7c9_2 + - aws-c-cal=0.9.15=hf2e3468_1 + - aws-c-common=0.14.3=hfd05255_0 + - aws-c-compression=0.3.2=h0d56620_5 + - aws-c-http=0.11.0=he024045_5 + - aws-c-io=0.27.5=hef21f9d_1 + - aws-c-s3=0.13.1=h0deae5e_1 + - aws-c-sdkutils=0.2.7=h0d56620_3 + - aws-checksums=0.2.10=h0d56620_5 - babel=2.18.0=pyhcf101f3_1 - - backports.zstd=1.6.0=py313h2a31948_0 - - brotli=1.2.0=h2d644bc_1 - - brotli-bin=1.2.0=hfd05255_1 - - brotli-python=1.2.0=py313h3ebfc14_1 - - bzip2=1.0.8=h0ad9c76_9 + - backports.zstd=1.7.0=py313h2a31948_0 + - brotli=1.2.0=hc8c2fe1_3 + - brotli-bin=1.2.0=hd477307_3 + - brotli-python=1.2.0=py313h3c654a2_3 + - bzip2=1.0.8=h0ad9c76_10 - ca-certificates=2026.7.22=h4c7d964_0 - cached-property=1.5.2=hd8ed1ab_2 - cached_property=1.5.2=pyha770c72_2 - certifi=2026.7.22=pyhd8ed1ab_0 - - charset-normalizer=3.4.9=pyhd8ed1ab_0 + - charset-normalizer=3.5.1=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - contourpy=1.3.3=py313h1a38498_4 - - coverage=7.15.2=py313hd650c13_0 + - coverage=7.15.4=py313h868807b_1 - cycler=0.12.1=pyhcf101f3_2 - dill=0.4.1=pyhcf101f3_0 - discretize=0.12.0=np2py313hedd11bf_1 - docutils=0.22.4=pyhd8ed1ab_0 - exceptiongroup=1.3.1=pyhd8ed1ab_0 - fonttools=4.63.0=py313hd650c13_0 - - freetype=2.14.3=h57928b3_1 - - h2=4.4.0=pyhcf101f3_0 - - h5py=3.16.0=nompi_py313hd050a09_102 - - hdf5=2.1.0=nompi_h0d3e4b2_110 + - freetype=2.14.3=h57928b3_2 + - h2=4.4.1=pyhcf101f3_0 + - h5py=3.16.0=nompi_py313hd050a09_104 + - hdf5=2.2.0=nompi_hf525611_100 - hpack=4.2.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - icu=78.3=h5112557_2 - - idna=3.18=pyhcf101f3_0 + - idna=3.19=pyhcf101f3_0 - imagesize=2.0.0=pyhd8ed1ab_0 - importlib-metadata=9.0.0=pyhcf101f3_0 - iniconfig=2.3.0=pyhd8ed1ab_0 - isort=8.0.1=pyhd8ed1ab_0 - jinja2=3.1.6=pyhcf101f3_1 - kiwisolver=1.5.0=py313h1a38498_0 - - krb5=1.22.2=h719d79b_1 + - krb5=1.22.2=h719d79b_2 - lcms2=2.19.1=hf2c6c5f_1 - lerc=4.2.0=hd936e49_0 - libaec=1.1.5=haf901d7_0 - - libblas=3.11.0=8_h8455456_mkl - - libbrotlicommon=1.2.0=hfd05255_1 - - libbrotlidec=1.2.0=hfd05255_1 - - libbrotlienc=1.2.0=hfd05255_1 - - libcblas=3.11.0=8_h2a3cdd5_mkl - - libcurl=8.21.0=h51a1c48_2 - - libdeflate=1.25=h51727cc_0 + - libblas=3.11.0=9_h8455456_mkl + - libbrotlicommon=1.2.0=hf02afa3_3 + - libbrotlidec=1.2.0=h84f9c24_3 + - libbrotlienc=1.2.0=he2a975b_3 + - libcblas=3.11.0=9_h2a3cdd5_mkl + - libcurl=8.21.0=hdb0ef4a_5 + - libdeflate=1.25=h1a1d4e4_1 - libexpat=2.8.1=hac47afa_1 - - libffi=3.5.2=h3d046cb_0 - - libfreetype=2.14.3=h57928b3_1 - - libfreetype6=2.14.3=hdbac1cb_1 - - libgcc=15.2.0=h8ee18e1_20 - - libgomp=15.2.0=h8ee18e1_20 + - libffi=3.7.0=h3d046cb_0 + - libfreetype=2.14.3=h57928b3_2 + - libfreetype6=2.14.3=hdbac1cb_2 + - libgcc=16.1.0=h110b43a_3 + - libgomp=16.1.0=h8ee18e1_3 - libhwloc=2.13.0=default_h049141e_1000 - - libiconv=1.18=hc1393d2_2 - - libjpeg-turbo=3.2.0=hfd05255_0 - - liblapack=3.11.0=8_hf9ab0e9_mkl - - liblzma=5.8.3=hfd05255_0 - - libmpdec=4.0.0=hfd05255_1 - - libpng=1.6.58=h7351971_0 - - libpsl=0.22.0=h25e0afd_1 - - libsqlite=3.53.4=hf5d6505_0 - - libssh2=1.11.1=h9aa295b_0 + - libiconv=1.18=hc1393d2_3 + - libjpeg-turbo=3.2.0=hfd05255_1 + - liblapack=3.11.0=9_hf9ab0e9_mkl + - liblzma=5.8.3=hfd05255_1 + - libmpdec=4.0.0=hfd05255_2 + - libpng=1.6.58=hdc8cecf_1 + - libpsl=0.23.1=h9b16d47_1 + - libsqlite=3.53.4=hf5d6505_1 + - libssh2=1.11.1=h734d217_1 - libtiff=4.7.2=h8f73337_0 - - libwebp-base=1.6.0=h4d5522a_0 - - libwinpthread=12.0.0.r4.gg4f2fc60ca=h57928b3_10 - - libxcb=1.17.0=h0e4246c_0 - - libxml2=2.15.3=h8ef44ab_0 - - libxml2-16=2.15.3=h3cfd58e_0 - - libzlib=1.3.2=hfd05255_2 - - llvm-openmp=22.1.8=h4fa8253_0 + - libwebp-base=1.6.0=h4d5522a_1 + - libwinpthread=12.0.0.r4.gg4f2fc60ca=h11686cb_11 + - libxcb=1.17.0=h874e120_1 + - libxml2=2.15.3=h8ef44ab_1 + - libxml2-16=2.15.3=h3cfd58e_1 + - libzlib=1.3.2=hfd05255_3 + - llvm-openmp=22.1.8=h4fa8253_1 - markupsafe=3.0.3=py313hd650c13_1 - matplotlib-base=3.10.9=py313he1ded55_0 - mccabe=0.7.0=pyhd8ed1ab_1 - - mkl=2026.1.0=hac47afa_233 + - mkl=2026.1.0=hac47afa_234 - munkres=1.1.4=pyhd8ed1ab_1 - numpy=2.4.6=py313ha8dc839_0 - - onemkl-license=2026.1.0=h57928b3_233 - openjpeg=2.5.4=h0e57b4f_0 - - openssl=3.6.3=hf411b9b_0 - - packaging=26.2=pyhc364b38_0 + - openssl=3.6.3=hf411b9b_1 + - packaging=26.3=pyhc364b38_0 - pillow=12.3.0=py313h38f99e1_0 - - pip=26.1.2=pyh145f28c_0 - - platformdirs=4.11.0=pyhcf101f3_0 + - pip=26.2.1=pyh145f28c_0 + - platformdirs=4.11.3=pyhcf101f3_0 - pluggy=1.6.0=pyhf9edf01_1 - - psutil=7.2.2=py313h5fd188c_0 - - pthread-stubs=0.4=h0e40799_1002 + - psutil=7.2.2=py313h5fd188c_1 + - pthread-stubs=0.4=hba3369d_1003 - pydantic=2.12.5=pyhcf101f3_1 - pydantic-core=2.41.5=py313hfbe8231_1 - - pygments=2.20.0=pyhd8ed1ab_0 - - pylint=4.0.6=pyhcf101f3_0 + - pygments=2.21.0=pyhcf101f3_0 + - pylint=4.0.7=pyhcf101f3_0 - pyparsing=3.3.2=pyhcf101f3_0 - pysocks=1.7.1=pyh09c184e_7 - pytest=9.1.1=pyhc364b38_2 - pytest-cov=7.1.0=pyhcf101f3_0 - - python=3.13.14=h09917c8_100_cp313 + - python=3.13.15=h254dcb4_101_cp313 - python-dateutil=2.9.0.post0=pyhe01879c_2 - python_abi=3.13=8_cp313 - pyyaml=6.0.3=py313hd650c13_1 @@ -123,9 +122,9 @@ dependencies: - six=1.17.0=pyhe01879c_1 - snowballstemmer=3.1.1=pyhd8ed1ab_0 - sphinx=9.1.0=pyhd8ed1ab_0 - - sphinx-autodoc-typehints=3.13.0=pyhd8ed1ab_0 - - sphinx-rtd-theme=3.1.0=hd8ed1ab_1 - - sphinx_rtd_theme=3.1.0=pyha770c72_1 + - sphinx-autodoc-typehints=3.13.2=pyhd8ed1ab_0 + - sphinx-rtd-theme=3.1.0=h9eada29_2 + - sphinx_rtd_theme=3.1.0=pyhcf101f3_2 - sphinxcontrib-applehelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-devhelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-htmlhelp=2.1.0=pyhd8ed1ab_1 @@ -134,29 +133,29 @@ dependencies: - sphinxcontrib-qthelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-serializinghtml=2.0.0=pyhd8ed1ab_0 - tbb=2023.0.0=hd3d4ead_2 - - tk=8.6.13=h967ab96_3 + - tk=8.6.13=h967ab96_4 - tomli=2.4.1=pyhcf101f3_0 - tomlkit=0.15.1=pyhcf101f3_0 - typing-extensions=4.16.0=h69aa097_0 - - typing-inspection=0.4.2=pyhcf101f3_2 + - typing-inspection=0.4.4=pyhcf101f3_0 - typing_extensions=4.16.0=pyhcf101f3_0 - tzdata=2026c=h151e31d_0 - ucrt=10.0.26100.0=h57928b3_0 - urllib3=2.7.0=pyhd8ed1ab_0 - - vc=14.5=h1b7c187_39 - - vc14_runtime=14.51.36231=h1b9f54f_39 - - vcomp14=14.51.36231=h1b9f54f_39 + - vc=14.5=ha367084_41 + - vc14_runtime=14.51.36247=habf1de7_41 + - vcomp14=14.51.36247=habf1de7_41 - win_inet_pton=1.1.0=pyh7428d3b_8 - - xorg-libxau=1.0.12=hba3369d_1 - - xorg-libxdmcp=1.1.5=hba3369d_1 + - xorg-libxau=1.0.12=hba3369d_2 + - xorg-libxdmcp=1.1.5=hba3369d_2 - yaml=0.2.5=h6a83c73_3 - zipp=4.1.0=pyhcf101f3_0 - - zlib=1.3.2=hfd05255_2 + - zlib=1.3.2=hfd05255_3 - zlib-ng=2.3.3=h0261ad2_1 - - zstd=1.5.7=h534d264_6 + - zstd=1.5.7=h534d264_7 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@e51a703816e712f3c66147cb78fd16808b520f75 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@2e758b9671671160c76d182b72ae18ee735bd214 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@6c850c89972154a08c2ee39ad2dd62e8d9c3afef variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.13-win-64.conda.lock.yml b/environments/py-3.13-win-64.conda.lock.yml index 0cbecbb..bb55bba 100644 --- a/environments/py-3.13-win-64.conda.lock.yml +++ b/environments/py-3.13-win-64.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: fd533891192d09faea1ff9dd155c7cc2d3a664bddc5957902f89c988b479a633 +# input_hash: bc6181b1344600521cd6f1dee8d2b47e8f823b04a119ab0616e60009357ff824 channels: - conda-forge @@ -8,18 +8,18 @@ channels: dependencies: - _openmp_mutex=4.5=20_gnu - annotated-types=0.8.0=pyhd8ed1ab_0 - - aws-c-auth=0.10.4=hc6e9107_1 - - aws-c-cal=0.9.14=h032d170_4 - - aws-c-common=0.14.2=hfd05255_0 - - aws-c-compression=0.3.2=h1da161f_4 - - aws-c-http=0.11.0=h667fc28_4 - - aws-c-io=0.27.3=hbdc738f_1 - - aws-c-s3=0.12.8=hd7ee1a1_1 - - aws-c-sdkutils=0.2.7=h1da161f_2 - - aws-checksums=0.2.10=h1da161f_4 - - brotli=1.2.0=h2d644bc_1 - - brotli-bin=1.2.0=hfd05255_1 - - bzip2=1.0.8=h0ad9c76_9 + - aws-c-auth=0.10.4=h98da7c9_2 + - aws-c-cal=0.9.15=hf2e3468_1 + - aws-c-common=0.14.3=hfd05255_0 + - aws-c-compression=0.3.2=h0d56620_5 + - aws-c-http=0.11.0=he024045_5 + - aws-c-io=0.27.5=hef21f9d_1 + - aws-c-s3=0.13.1=h0deae5e_1 + - aws-c-sdkutils=0.2.7=h0d56620_3 + - aws-checksums=0.2.10=h0d56620_5 + - brotli=1.2.0=hc8c2fe1_3 + - brotli-bin=1.2.0=hd477307_3 + - bzip2=1.0.8=h0ad9c76_10 - ca-certificates=2026.7.22=h4c7d964_0 - cached-property=1.5.2=hd8ed1ab_2 - cached_property=1.5.2=pyha770c72_2 @@ -27,85 +27,84 @@ dependencies: - cycler=0.12.1=pyhcf101f3_2 - discretize=0.12.0=np2py313hedd11bf_1 - fonttools=4.63.0=py313hd650c13_0 - - freetype=2.14.3=h57928b3_1 - - h5py=3.16.0=nompi_py313hd050a09_102 - - hdf5=2.1.0=nompi_h0d3e4b2_110 + - freetype=2.14.3=h57928b3_2 + - h5py=3.16.0=nompi_py313hd050a09_104 + - hdf5=2.2.0=nompi_hf525611_100 - icu=78.3=h5112557_2 - kiwisolver=1.5.0=py313h1a38498_0 - - krb5=1.22.2=h719d79b_1 + - krb5=1.22.2=h719d79b_2 - lcms2=2.19.1=hf2c6c5f_1 - lerc=4.2.0=hd936e49_0 - libaec=1.1.5=haf901d7_0 - - libblas=3.11.0=8_h8455456_mkl - - libbrotlicommon=1.2.0=hfd05255_1 - - libbrotlidec=1.2.0=hfd05255_1 - - libbrotlienc=1.2.0=hfd05255_1 - - libcblas=3.11.0=8_h2a3cdd5_mkl - - libcurl=8.21.0=h51a1c48_2 - - libdeflate=1.25=h51727cc_0 + - libblas=3.11.0=9_h8455456_mkl + - libbrotlicommon=1.2.0=hf02afa3_3 + - libbrotlidec=1.2.0=h84f9c24_3 + - libbrotlienc=1.2.0=he2a975b_3 + - libcblas=3.11.0=9_h2a3cdd5_mkl + - libcurl=8.21.0=hdb0ef4a_5 + - libdeflate=1.25=h1a1d4e4_1 - libexpat=2.8.1=hac47afa_1 - - libffi=3.5.2=h3d046cb_0 - - libfreetype=2.14.3=h57928b3_1 - - libfreetype6=2.14.3=hdbac1cb_1 - - libgcc=15.2.0=h8ee18e1_20 - - libgomp=15.2.0=h8ee18e1_20 + - libffi=3.7.0=h3d046cb_0 + - libfreetype=2.14.3=h57928b3_2 + - libfreetype6=2.14.3=hdbac1cb_2 + - libgcc=16.1.0=h110b43a_3 + - libgomp=16.1.0=h8ee18e1_3 - libhwloc=2.13.0=default_h049141e_1000 - - libiconv=1.18=hc1393d2_2 - - libjpeg-turbo=3.2.0=hfd05255_0 - - liblapack=3.11.0=8_hf9ab0e9_mkl - - liblzma=5.8.3=hfd05255_0 - - libmpdec=4.0.0=hfd05255_1 - - libpng=1.6.58=h7351971_0 - - libpsl=0.22.0=h25e0afd_1 - - libsqlite=3.53.4=hf5d6505_0 - - libssh2=1.11.1=h9aa295b_0 + - libiconv=1.18=hc1393d2_3 + - libjpeg-turbo=3.2.0=hfd05255_1 + - liblapack=3.11.0=9_hf9ab0e9_mkl + - liblzma=5.8.3=hfd05255_1 + - libmpdec=4.0.0=hfd05255_2 + - libpng=1.6.58=hdc8cecf_1 + - libpsl=0.23.1=h9b16d47_1 + - libsqlite=3.53.4=hf5d6505_1 + - libssh2=1.11.1=h734d217_1 - libtiff=4.7.2=h8f73337_0 - - libwebp-base=1.6.0=h4d5522a_0 - - libwinpthread=12.0.0.r4.gg4f2fc60ca=h57928b3_10 - - libxcb=1.17.0=h0e4246c_0 - - libxml2=2.15.3=h8ef44ab_0 - - libxml2-16=2.15.3=h3cfd58e_0 - - libzlib=1.3.2=hfd05255_2 - - llvm-openmp=22.1.8=h4fa8253_0 + - libwebp-base=1.6.0=h4d5522a_1 + - libwinpthread=12.0.0.r4.gg4f2fc60ca=h11686cb_11 + - libxcb=1.17.0=h874e120_1 + - libxml2=2.15.3=h8ef44ab_1 + - libxml2-16=2.15.3=h3cfd58e_1 + - libzlib=1.3.2=hfd05255_3 + - llvm-openmp=22.1.8=h4fa8253_1 - matplotlib-base=3.10.9=py313he1ded55_0 - - mkl=2026.1.0=hac47afa_233 + - mkl=2026.1.0=hac47afa_234 - munkres=1.1.4=pyhd8ed1ab_1 - numpy=2.4.6=py313ha8dc839_0 - - onemkl-license=2026.1.0=h57928b3_233 - openjpeg=2.5.4=h0e57b4f_0 - - openssl=3.6.3=hf411b9b_0 - - packaging=26.2=pyhc364b38_0 + - openssl=3.6.3=hf411b9b_1 + - packaging=26.3=pyhc364b38_0 - pillow=12.3.0=py313h38f99e1_0 - - pip=26.1.2=pyh145f28c_0 - - psutil=7.2.2=py313h5fd188c_0 - - pthread-stubs=0.4=h0e40799_1002 + - pip=26.2.1=pyh145f28c_0 + - psutil=7.2.2=py313h5fd188c_1 + - pthread-stubs=0.4=hba3369d_1003 - pydantic=2.12.5=pyhcf101f3_1 - pydantic-core=2.41.5=py313hfbe8231_1 - pyparsing=3.3.2=pyhcf101f3_0 - - python=3.13.14=h09917c8_100_cp313 + - python=3.13.15=h254dcb4_101_cp313 - python-dateutil=2.9.0.post0=pyhe01879c_2 - python_abi=3.13=8_cp313 - qhull=2020.2=hc790b64_5 - scipy=1.17.1=py313he51e9a2_1 - six=1.17.0=pyhe01879c_1 - tbb=2023.0.0=hd3d4ead_2 - - tk=8.6.13=h967ab96_3 + - tk=8.6.13=h967ab96_4 - typing-extensions=4.16.0=h69aa097_0 - - typing-inspection=0.4.2=pyhcf101f3_2 + - typing-inspection=0.4.4=pyhcf101f3_0 - typing_extensions=4.16.0=pyhcf101f3_0 - tzdata=2026c=h151e31d_0 - ucrt=10.0.26100.0=h57928b3_0 - - vc=14.5=h1b7c187_39 - - vc14_runtime=14.51.36231=h1b9f54f_39 - - vcomp14=14.51.36231=h1b9f54f_39 - - xorg-libxau=1.0.12=hba3369d_1 - - xorg-libxdmcp=1.1.5=hba3369d_1 - - zlib=1.3.2=hfd05255_2 + - vc=14.5=ha367084_41 + - vc14_runtime=14.51.36247=habf1de7_41 + - vcomp14=14.51.36247=habf1de7_41 + - xorg-libxau=1.0.12=hba3369d_2 + - xorg-libxdmcp=1.1.5=hba3369d_2 + - zlib=1.3.2=hfd05255_3 - zlib-ng=2.3.3=h0261ad2_1 - - zstd=1.5.7=h534d264_6 + - zstd=1.5.7=h534d264_7 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@e51a703816e712f3c66147cb78fd16808b520f75 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@2e758b9671671160c76d182b72ae18ee735bd214 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@6c850c89972154a08c2ee39ad2dd62e8d9c3afef variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.14-linux-64-dev.conda.lock.yml b/environments/py-3.14-linux-64-dev.conda.lock.yml index 8131f0f..51aa8b6 100644 --- a/environments/py-3.14-linux-64-dev.conda.lock.yml +++ b/environments/py-3.14-linux-64-dev.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: a608468484a8310f6d98ad38e3de4b12a4416e52a896ec324a1e4a0a5ff09968 +# input_hash: fcd8bd8bfb67823b63b86ab5edfda4a1914851c303660e815c91dd274d98eb15 channels: - conda-forge @@ -10,135 +10,134 @@ dependencies: - alabaster=1.0.0=pyhd8ed1ab_1 - annotated-types=0.8.0=pyhd8ed1ab_0 - astroid=4.0.4=py314hdafbbf9_0 - - aws-c-auth=0.10.4=hb7a77c6_1 - - aws-c-cal=0.9.14=h2aa3ae6_4 - - aws-c-common=0.14.2=hb03c661_0 - - aws-c-compression=0.3.2=h720e601_4 - - aws-c-http=0.11.0=h38ae05a_4 - - aws-c-io=0.27.3=h6f4d18d_1 - - aws-c-s3=0.12.8=h46fcd08_1 - - aws-c-sdkutils=0.2.7=h720e601_2 - - aws-checksums=0.2.10=h720e601_4 + - aws-c-auth=0.10.4=h4610da3_2 + - aws-c-cal=0.9.15=h6bbde05_1 + - aws-c-common=0.14.3=hb03c661_0 + - aws-c-compression=0.3.2=h01ee8f8_5 + - aws-c-http=0.11.0=hbe094ff_5 + - aws-c-io=0.27.5=h4f381ba_1 + - aws-c-s3=0.13.1=h7508075_1 + - aws-c-sdkutils=0.2.7=h01ee8f8_3 + - aws-checksums=0.2.10=h01ee8f8_5 - babel=2.18.0=pyhcf101f3_1 - - backports.zstd=1.6.0=py314h680f03e_0 - - brotli=1.2.0=hed03a55_1 - - brotli-bin=1.2.0=hb03c661_1 - - brotli-python=1.2.0=py314h3de4e8d_1 - - bzip2=1.0.8=hda65f42_9 - - c-ares=1.34.8=hb03c661_0 + - backports.zstd=1.7.0=py314h680f03e_0 + - brotli=1.2.0=h505cf86_3 + - brotli-bin=1.2.0=h9908984_3 + - brotli-python=1.2.0=py314hcd2bdb6_3 + - bzip2=1.0.8=hda65f42_10 + - c-ares=1.34.8=hebe6cf0_2 - ca-certificates=2026.7.22=hbd8a1cb_0 - cached-property=1.5.2=hd8ed1ab_2 - cached_property=1.5.2=pyha770c72_2 - certifi=2026.7.22=pyhd8ed1ab_0 - - charset-normalizer=3.4.9=pyhd8ed1ab_0 + - charset-normalizer=3.5.1=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - contourpy=1.3.3=py314h97ea11e_4 - - coverage=7.15.2=py314h67df5f8_0 + - coverage=7.15.4=py314h0993b80_1 - cycler=0.12.1=pyhcf101f3_2 - dill=0.4.1=pyhcf101f3_0 - discretize=0.12.0=np2py314hb287c12_1 - docutils=0.22.4=pyhd8ed1ab_0 - exceptiongroup=1.3.1=pyhd8ed1ab_0 - fonttools=4.63.0=pyh7db6752_0 - - freetype=2.14.3=ha770c72_0 - - h2=4.4.0=pyhcf101f3_0 - - h5py=3.16.0=nompi_py314hddf7a69_102 - - hdf5=2.1.0=nompi_h654f344_110 + - freetype=2.14.3=ha770c72_2 + - h2=4.4.1=pyhcf101f3_0 + - h5py=3.16.0=nompi_py314h77fd174_104 + - hdf5=2.2.0=nompi_hc529623_100 - hpack=4.2.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - - icu=78.3=h54a6638_2 - - idna=3.18=pyhcf101f3_0 + - icu=78.3=py310h44b86e0_2 + - idna=3.19=pyhcf101f3_0 - imagesize=2.0.0=pyhd8ed1ab_0 - importlib-metadata=9.0.0=pyhcf101f3_0 - iniconfig=2.3.0=pyhd8ed1ab_0 - isort=8.0.1=pyhd8ed1ab_0 - jinja2=3.1.6=pyhcf101f3_1 - - keyutils=1.6.3=hb9d3cd8_0 + - keyutils=1.6.3=h7cc23a3_1 - kiwisolver=1.5.0=py314h97ea11e_0 - - krb5=1.22.2=hbde042b_1 + - krb5=1.22.2=hbc21106_2 - lcms2=2.19.1=h0c24ade_1 - ld_impl_linux-64=2.46.1=default_hbd61a6d_102 - lerc=4.2.0=hdb68285_0 - libaec=1.1.5=h088129d_0 - - libblas=3.11.0=8_h5875eb1_mkl - - libbrotlicommon=1.2.0=hb03c661_1 - - libbrotlidec=1.2.0=hb03c661_1 - - libbrotlienc=1.2.0=hb03c661_1 - - libcblas=3.11.0=8_hfef963f_mkl - - libcurl=8.21.0=hae6b9f4_2 - - libdeflate=1.25=h17f619e_0 - - libedit=3.1.20250104=pl5321h7949ede_0 - - libev=4.33=hd590300_2 + - libblas=3.11.0=9_h5875eb1_mkl + - libbrotlicommon=1.2.0=h39a168f_3 + - libbrotlidec=1.2.0=ha411449_3 + - libbrotlienc=1.2.0=h018ffa1_3 + - libcblas=3.11.0=9_hfef963f_mkl + - libcurl=8.21.0=ha042cf0_5 + - libdeflate=1.25=hd45a770_1 + - libedit=3.1.20250104=pl5321h373387f_1 + - libev=4.33=h280c20c_3 - libexpat=2.8.1=hecca717_1 - - libffi=3.5.2=h3435931_0 - - libfreetype=2.14.3=ha770c72_0 - - libfreetype6=2.14.3=h73754d4_0 - - libgcc=15.2.0=he0feb66_20 - - libgcc-ng=15.2.0=h69a702a_20 - - libgfortran=15.2.0=h69a702a_20 - - libgfortran5=15.2.0=h68bc16d_20 + - libffi=3.7.0=h3435931_0 + - libfreetype=2.14.3=ha770c72_2 + - libfreetype6=2.14.3=h5e6c136_2 + - libgcc=16.1.0=ha9f2e26_3 + - libgcc-ng=16.1.0=h69a702a_3 + - libgfortran=16.1.0=h69a702a_3 + - libgfortran5=16.1.0=h79bb938_3 - libhwloc=2.13.0=default_he001693_1000 - - libiconv=1.18=h3b78370_2 - - libjpeg-turbo=3.2.0=hb03c661_0 - - liblapack=3.11.0=8_h5e43f62_mkl - - liblzma=5.8.3=hb03c661_0 - - libmpdec=4.0.0=hb03c661_1 - - libnghttp2=1.68.1=h877daf1_0 - - libpng=1.6.58=h421ea60_0 - - libpsl=0.22.0=h49b2146_1 - - libsqlite=3.53.4=hf4e2dac_0 - - libssh2=1.11.1=hcf80075_0 - - libstdcxx=15.2.0=h934c35e_20 - - libstdcxx-ng=15.2.0=hdf11a46_20 + - libiconv=1.18=h0cb94f2_3 + - libjpeg-turbo=3.2.0=hb03c661_1 + - liblapack=3.11.0=9_h5e43f62_mkl + - liblzma=5.8.3=hb03c661_1 + - libmpdec=4.0.0=hb03c661_2 + - libnghttp2=1.68.1=h74cf4be_1 + - libpng=1.6.58=h922cc85_1 + - libpsl=0.23.1=hd9e3e90_1 + - libsqlite=3.53.4=h13e7031_1 + - libssh2=1.11.1=h6154650_1 + - libstdcxx=16.1.0=h934c35e_3 + - libstdcxx-ng=16.1.0=hdf11a46_3 - libtiff=4.7.2=h9d88235_0 - libuuid=2.42.2=h5347b49_0 - - libwebp-base=1.6.0=hd42ef1d_0 - - libxcb=1.17.0=h8a09558_0 - - libxml2=2.15.3=h49c6c72_0 - - libxml2-16=2.15.3=hca6bf5a_0 - - libzlib=1.3.2=h25fd6f3_2 - - llvm-openmp=22.1.8=h4922eb0_0 + - libwebp-base=1.6.0=hd42ef1d_1 + - libxcb=1.17.0=hb83e432_1 + - libxml2=2.15.3=h49c6c72_1 + - libxml2-16=2.15.3=hca6bf5a_1 + - libzlib=1.3.2=h25fd6f3_3 + - llvm-openmp=22.1.8=h3206bd6_1 - markupsafe=3.0.3=py314h67df5f8_1 - matplotlib-base=3.10.9=py314h1194b4b_0 - mccabe=0.7.0=pyhd8ed1ab_1 - - mkl=2026.1.0=hecca717_243 + - mkl=2026.1.0=hecca717_244 - munkres=1.1.4=pyhd8ed1ab_1 - - ncurses=6.6=hdb14827_0 + - ncurses=6.6=hdb14827_1 - numpy=2.4.6=py314h2b28147_0 - - onemkl-license=2026.1.0=ha770c72_243 - openjpeg=2.5.4=h55fea9a_0 - - openssl=3.6.3=h35e630c_0 - - packaging=26.2=pyhc364b38_0 + - openssl=3.6.3=h35e630c_1 + - packaging=26.3=pyhc364b38_0 - pillow=12.3.0=py314h8ec4b1a_0 - - pip=26.1.2=pyh145f28c_0 - - platformdirs=4.11.0=pyhcf101f3_0 + - pip=26.2.1=pyh145f28c_0 + - platformdirs=4.11.3=pyhcf101f3_0 - pluggy=1.6.0=pyhf9edf01_1 - - psutil=7.2.2=py314h0f05182_0 - - pthread-stubs=0.4=hb9d3cd8_1002 + - psutil=7.2.2=py314hfe1a184_1 + - pthread-stubs=0.4=hb03c661_1003 - pydantic=2.12.5=pyhcf101f3_1 - pydantic-core=2.41.5=py314h2e6c369_1 - - pygments=2.20.0=pyhd8ed1ab_0 - - pylint=4.0.6=pyhcf101f3_0 + - pygments=2.21.0=pyhcf101f3_0 + - pylint=4.0.7=pyhcf101f3_0 - pyparsing=3.3.2=pyhcf101f3_0 - pysocks=1.7.1=pyha55dd90_7 - pytest=9.1.1=pyhc364b38_2 - pytest-cov=7.1.0=pyhcf101f3_0 - - python=3.14.6=habeac84_101_cp314 + - python=3.14.7=h399a421_100_cp314 - python-dateutil=2.9.0.post0=pyhe01879c_2 - python_abi=3.14=8_cp314 - pyyaml=6.0.3=py314h67df5f8_1 - qhull=2020.2=h434a139_5 - - readline=8.3=h853b02a_0 + - readline=8.3=hd6e31c0_1 - requests=2.34.2=pyhcf101f3_0 - roman-numerals=4.1.0=pyhd8ed1ab_0 - - s2n=1.7.5=h7e3ee7f_1 + - s2n=1.7.6=h7e3ee7f_0 - scipy=1.17.1=py314hf07bd8e_1 - six=1.17.0=pyhe01879c_1 - snowballstemmer=3.1.1=pyhd8ed1ab_0 - sphinx=9.1.0=pyhd8ed1ab_0 - - sphinx-autodoc-typehints=3.13.0=pyhd8ed1ab_0 - - sphinx-rtd-theme=3.1.0=hd8ed1ab_1 - - sphinx_rtd_theme=3.1.0=pyha770c72_1 + - sphinx-autodoc-typehints=3.13.2=pyhd8ed1ab_0 + - sphinx-rtd-theme=3.1.0=h9eada29_2 + - sphinx_rtd_theme=3.1.0=pyhcf101f3_2 - sphinxcontrib-applehelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-devhelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-htmlhelp=2.1.0=pyhd8ed1ab_1 @@ -147,24 +146,24 @@ dependencies: - sphinxcontrib-qthelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-serializinghtml=2.0.0=pyhd8ed1ab_0 - tbb=2023.0.0=hab88423_2 - - tk=8.6.13=noxft_hd70dff1_3 + - tk=8.6.13=noxft_h1df4ec4_4 - tomli=2.4.1=pyhcf101f3_0 - tomlkit=0.15.1=pyhcf101f3_0 - typing-extensions=4.16.0=h69aa097_0 - - typing-inspection=0.4.2=pyhcf101f3_2 + - typing-inspection=0.4.4=pyhcf101f3_0 - typing_extensions=4.16.0=pyhcf101f3_0 - tzdata=2026c=h151e31d_0 - unicodedata2=17.0.1=py314h5bd0f2a_0 - urllib3=2.7.0=pyhd8ed1ab_0 - - xorg-libxau=1.0.12=hb03c661_1 - - xorg-libxdmcp=1.1.5=hb03c661_1 - - yaml=0.2.5=h280c20c_3 + - xorg-libxau=1.0.12=hb03c661_2 + - xorg-libxdmcp=1.1.5=hb03c661_2 + - yaml=0.2.5=hebe6cf0_3 - zipp=4.1.0=pyhcf101f3_0 - - zlib-ng=2.3.3=hceb46e0_1 - - zstd=1.5.7=hb78ec9c_6 + - zlib-ng=2.3.3=hce19668_1 + - zstd=1.5.7=hb78ec9c_7 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@e51a703816e712f3c66147cb78fd16808b520f75 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@2e758b9671671160c76d182b72ae18ee735bd214 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@6c850c89972154a08c2ee39ad2dd62e8d9c3afef variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.14-linux-64.conda.lock.yml b/environments/py-3.14-linux-64.conda.lock.yml index 2dc1b50..7d8646a 100644 --- a/environments/py-3.14-linux-64.conda.lock.yml +++ b/environments/py-3.14-linux-64.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: a608468484a8310f6d98ad38e3de4b12a4416e52a896ec324a1e4a0a5ff09968 +# input_hash: fcd8bd8bfb67823b63b86ab5edfda4a1914851c303660e815c91dd274d98eb15 channels: - conda-forge @@ -8,19 +8,19 @@ channels: dependencies: - _openmp_mutex=4.5=7_kmp_llvm - annotated-types=0.8.0=pyhd8ed1ab_0 - - aws-c-auth=0.10.4=hb7a77c6_1 - - aws-c-cal=0.9.14=h2aa3ae6_4 - - aws-c-common=0.14.2=hb03c661_0 - - aws-c-compression=0.3.2=h720e601_4 - - aws-c-http=0.11.0=h38ae05a_4 - - aws-c-io=0.27.3=h6f4d18d_1 - - aws-c-s3=0.12.8=h46fcd08_1 - - aws-c-sdkutils=0.2.7=h720e601_2 - - aws-checksums=0.2.10=h720e601_4 - - brotli=1.2.0=hed03a55_1 - - brotli-bin=1.2.0=hb03c661_1 - - bzip2=1.0.8=hda65f42_9 - - c-ares=1.34.8=hb03c661_0 + - aws-c-auth=0.10.4=h4610da3_2 + - aws-c-cal=0.9.15=h6bbde05_1 + - aws-c-common=0.14.3=hb03c661_0 + - aws-c-compression=0.3.2=h01ee8f8_5 + - aws-c-http=0.11.0=hbe094ff_5 + - aws-c-io=0.27.5=h4f381ba_1 + - aws-c-s3=0.13.1=h7508075_1 + - aws-c-sdkutils=0.2.7=h01ee8f8_3 + - aws-checksums=0.2.10=h01ee8f8_5 + - brotli=1.2.0=h505cf86_3 + - brotli-bin=1.2.0=h9908984_3 + - bzip2=1.0.8=hda65f42_10 + - c-ares=1.34.8=hebe6cf0_2 - ca-certificates=2026.7.22=hbd8a1cb_0 - cached-property=1.5.2=hd8ed1ab_2 - cached_property=1.5.2=pyha770c72_2 @@ -28,93 +28,92 @@ dependencies: - cycler=0.12.1=pyhcf101f3_2 - discretize=0.12.0=np2py314hb287c12_1 - fonttools=4.63.0=pyh7db6752_0 - - freetype=2.14.3=ha770c72_0 - - h5py=3.16.0=nompi_py314hddf7a69_102 - - hdf5=2.1.0=nompi_h654f344_110 - - icu=78.3=h54a6638_2 - - keyutils=1.6.3=hb9d3cd8_0 + - freetype=2.14.3=ha770c72_2 + - h5py=3.16.0=nompi_py314h77fd174_104 + - hdf5=2.2.0=nompi_hc529623_100 + - icu=78.3=py310h44b86e0_2 + - keyutils=1.6.3=h7cc23a3_1 - kiwisolver=1.5.0=py314h97ea11e_0 - - krb5=1.22.2=hbde042b_1 + - krb5=1.22.2=hbc21106_2 - lcms2=2.19.1=h0c24ade_1 - ld_impl_linux-64=2.46.1=default_hbd61a6d_102 - lerc=4.2.0=hdb68285_0 - libaec=1.1.5=h088129d_0 - - libblas=3.11.0=8_h5875eb1_mkl - - libbrotlicommon=1.2.0=hb03c661_1 - - libbrotlidec=1.2.0=hb03c661_1 - - libbrotlienc=1.2.0=hb03c661_1 - - libcblas=3.11.0=8_hfef963f_mkl - - libcurl=8.21.0=hae6b9f4_2 - - libdeflate=1.25=h17f619e_0 - - libedit=3.1.20250104=pl5321h7949ede_0 - - libev=4.33=hd590300_2 + - libblas=3.11.0=9_h5875eb1_mkl + - libbrotlicommon=1.2.0=h39a168f_3 + - libbrotlidec=1.2.0=ha411449_3 + - libbrotlienc=1.2.0=h018ffa1_3 + - libcblas=3.11.0=9_hfef963f_mkl + - libcurl=8.21.0=ha042cf0_5 + - libdeflate=1.25=hd45a770_1 + - libedit=3.1.20250104=pl5321h373387f_1 + - libev=4.33=h280c20c_3 - libexpat=2.8.1=hecca717_1 - - libffi=3.5.2=h3435931_0 - - libfreetype=2.14.3=ha770c72_0 - - libfreetype6=2.14.3=h73754d4_0 - - libgcc=15.2.0=he0feb66_20 - - libgcc-ng=15.2.0=h69a702a_20 - - libgfortran=15.2.0=h69a702a_20 - - libgfortran5=15.2.0=h68bc16d_20 + - libffi=3.7.0=h3435931_0 + - libfreetype=2.14.3=ha770c72_2 + - libfreetype6=2.14.3=h5e6c136_2 + - libgcc=16.1.0=ha9f2e26_3 + - libgcc-ng=16.1.0=h69a702a_3 + - libgfortran=16.1.0=h69a702a_3 + - libgfortran5=16.1.0=h79bb938_3 - libhwloc=2.13.0=default_he001693_1000 - - libiconv=1.18=h3b78370_2 - - libjpeg-turbo=3.2.0=hb03c661_0 - - liblapack=3.11.0=8_h5e43f62_mkl - - liblzma=5.8.3=hb03c661_0 - - libmpdec=4.0.0=hb03c661_1 - - libnghttp2=1.68.1=h877daf1_0 - - libpng=1.6.58=h421ea60_0 - - libpsl=0.22.0=h49b2146_1 - - libsqlite=3.53.4=hf4e2dac_0 - - libssh2=1.11.1=hcf80075_0 - - libstdcxx=15.2.0=h934c35e_20 - - libstdcxx-ng=15.2.0=hdf11a46_20 + - libiconv=1.18=h0cb94f2_3 + - libjpeg-turbo=3.2.0=hb03c661_1 + - liblapack=3.11.0=9_h5e43f62_mkl + - liblzma=5.8.3=hb03c661_1 + - libmpdec=4.0.0=hb03c661_2 + - libnghttp2=1.68.1=h74cf4be_1 + - libpng=1.6.58=h922cc85_1 + - libpsl=0.23.1=hd9e3e90_1 + - libsqlite=3.53.4=h13e7031_1 + - libssh2=1.11.1=h6154650_1 + - libstdcxx=16.1.0=h934c35e_3 + - libstdcxx-ng=16.1.0=hdf11a46_3 - libtiff=4.7.2=h9d88235_0 - libuuid=2.42.2=h5347b49_0 - - libwebp-base=1.6.0=hd42ef1d_0 - - libxcb=1.17.0=h8a09558_0 - - libxml2=2.15.3=h49c6c72_0 - - libxml2-16=2.15.3=hca6bf5a_0 - - libzlib=1.3.2=h25fd6f3_2 - - llvm-openmp=22.1.8=h4922eb0_0 + - libwebp-base=1.6.0=hd42ef1d_1 + - libxcb=1.17.0=hb83e432_1 + - libxml2=2.15.3=h49c6c72_1 + - libxml2-16=2.15.3=hca6bf5a_1 + - libzlib=1.3.2=h25fd6f3_3 + - llvm-openmp=22.1.8=h3206bd6_1 - matplotlib-base=3.10.9=py314h1194b4b_0 - - mkl=2026.1.0=hecca717_243 + - mkl=2026.1.0=hecca717_244 - munkres=1.1.4=pyhd8ed1ab_1 - - ncurses=6.6=hdb14827_0 + - ncurses=6.6=hdb14827_1 - numpy=2.4.6=py314h2b28147_0 - - onemkl-license=2026.1.0=ha770c72_243 - openjpeg=2.5.4=h55fea9a_0 - - openssl=3.6.3=h35e630c_0 - - packaging=26.2=pyhc364b38_0 + - openssl=3.6.3=h35e630c_1 + - packaging=26.3=pyhc364b38_0 - pillow=12.3.0=py314h8ec4b1a_0 - - pip=26.1.2=pyh145f28c_0 - - psutil=7.2.2=py314h0f05182_0 - - pthread-stubs=0.4=hb9d3cd8_1002 + - pip=26.2.1=pyh145f28c_0 + - psutil=7.2.2=py314hfe1a184_1 + - pthread-stubs=0.4=hb03c661_1003 - pydantic=2.12.5=pyhcf101f3_1 - pydantic-core=2.41.5=py314h2e6c369_1 - pyparsing=3.3.2=pyhcf101f3_0 - - python=3.14.6=habeac84_101_cp314 + - python=3.14.7=h399a421_100_cp314 - python-dateutil=2.9.0.post0=pyhe01879c_2 - python_abi=3.14=8_cp314 - qhull=2020.2=h434a139_5 - - readline=8.3=h853b02a_0 - - s2n=1.7.5=h7e3ee7f_1 + - readline=8.3=hd6e31c0_1 + - s2n=1.7.6=h7e3ee7f_0 - scipy=1.17.1=py314hf07bd8e_1 - six=1.17.0=pyhe01879c_1 - tbb=2023.0.0=hab88423_2 - - tk=8.6.13=noxft_hd70dff1_3 + - tk=8.6.13=noxft_h1df4ec4_4 - typing-extensions=4.16.0=h69aa097_0 - - typing-inspection=0.4.2=pyhcf101f3_2 + - typing-inspection=0.4.4=pyhcf101f3_0 - typing_extensions=4.16.0=pyhcf101f3_0 - tzdata=2026c=h151e31d_0 - unicodedata2=17.0.1=py314h5bd0f2a_0 - - xorg-libxau=1.0.12=hb03c661_1 - - xorg-libxdmcp=1.1.5=hb03c661_1 - - zlib-ng=2.3.3=hceb46e0_1 - - zstd=1.5.7=hb78ec9c_6 + - xorg-libxau=1.0.12=hb03c661_2 + - xorg-libxdmcp=1.1.5=hb03c661_2 + - zlib-ng=2.3.3=hce19668_1 + - zstd=1.5.7=hb78ec9c_7 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@e51a703816e712f3c66147cb78fd16808b520f75 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@2e758b9671671160c76d182b72ae18ee735bd214 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@6c850c89972154a08c2ee39ad2dd62e8d9c3afef variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.14-win-64-dev.conda.lock.yml b/environments/py-3.14-win-64-dev.conda.lock.yml index 0576698..0e30779 100644 --- a/environments/py-3.14-win-64-dev.conda.lock.yml +++ b/environments/py-3.14-win-64-dev.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: e66d294216992502d33eac01f4e0f16e38e55e580da213e0d612037121e193ac +# input_hash: 7bfb0c555eec9c53e215c07b0292303434371dc40e1f6bea7ba60c052eb94601 channels: - conda-forge @@ -10,109 +10,108 @@ dependencies: - alabaster=1.0.0=pyhd8ed1ab_1 - annotated-types=0.8.0=pyhd8ed1ab_0 - astroid=4.0.4=py314h86ab7b2_0 - - aws-c-auth=0.10.4=hc6e9107_1 - - aws-c-cal=0.9.14=h032d170_4 - - aws-c-common=0.14.2=hfd05255_0 - - aws-c-compression=0.3.2=h1da161f_4 - - aws-c-http=0.11.0=h667fc28_4 - - aws-c-io=0.27.3=hbdc738f_1 - - aws-c-s3=0.12.8=hd7ee1a1_1 - - aws-c-sdkutils=0.2.7=h1da161f_2 - - aws-checksums=0.2.10=h1da161f_4 + - aws-c-auth=0.10.4=h98da7c9_2 + - aws-c-cal=0.9.15=hf2e3468_1 + - aws-c-common=0.14.3=hfd05255_0 + - aws-c-compression=0.3.2=h0d56620_5 + - aws-c-http=0.11.0=he024045_5 + - aws-c-io=0.27.5=hef21f9d_1 + - aws-c-s3=0.13.1=h0deae5e_1 + - aws-c-sdkutils=0.2.7=h0d56620_3 + - aws-checksums=0.2.10=h0d56620_5 - babel=2.18.0=pyhcf101f3_1 - - backports.zstd=1.6.0=py314h680f03e_0 - - brotli=1.2.0=h2d644bc_1 - - brotli-bin=1.2.0=hfd05255_1 - - brotli-python=1.2.0=py314he701e3d_1 - - bzip2=1.0.8=h0ad9c76_9 + - backports.zstd=1.7.0=py314h680f03e_0 + - brotli=1.2.0=hc8c2fe1_3 + - brotli-bin=1.2.0=hd477307_3 + - brotli-python=1.2.0=py314h85cf176_3 + - bzip2=1.0.8=h0ad9c76_10 - ca-certificates=2026.7.22=h4c7d964_0 - cached-property=1.5.2=hd8ed1ab_2 - cached_property=1.5.2=pyha770c72_2 - certifi=2026.7.22=pyhd8ed1ab_0 - - charset-normalizer=3.4.9=pyhd8ed1ab_0 + - charset-normalizer=3.5.1=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - contourpy=1.3.3=py314hf309875_4 - - coverage=7.15.2=py314h2359020_0 + - coverage=7.15.4=py314h9aa99d3_1 - cycler=0.12.1=pyhcf101f3_2 - dill=0.4.1=pyhcf101f3_0 - discretize=0.12.0=np2py314h1495373_1 - docutils=0.22.4=pyhd8ed1ab_0 - exceptiongroup=1.3.1=pyhd8ed1ab_0 - fonttools=4.63.0=pyh7db6752_0 - - freetype=2.14.3=h57928b3_1 - - h2=4.4.0=pyhcf101f3_0 - - h5py=3.16.0=nompi_py314h02517ec_102 - - hdf5=2.1.0=nompi_h0d3e4b2_110 + - freetype=2.14.3=h57928b3_2 + - h2=4.4.1=pyhcf101f3_0 + - h5py=3.16.0=nompi_py314h02517ec_104 + - hdf5=2.2.0=nompi_hf525611_100 - hpack=4.2.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - icu=78.3=h5112557_2 - - idna=3.18=pyhcf101f3_0 + - idna=3.19=pyhcf101f3_0 - imagesize=2.0.0=pyhd8ed1ab_0 - importlib-metadata=9.0.0=pyhcf101f3_0 - iniconfig=2.3.0=pyhd8ed1ab_0 - isort=8.0.1=pyhd8ed1ab_0 - jinja2=3.1.6=pyhcf101f3_1 - kiwisolver=1.5.0=py314hf309875_0 - - krb5=1.22.2=h719d79b_1 + - krb5=1.22.2=h719d79b_2 - lcms2=2.19.1=hf2c6c5f_1 - lerc=4.2.0=hd936e49_0 - libaec=1.1.5=haf901d7_0 - - libblas=3.11.0=8_h8455456_mkl - - libbrotlicommon=1.2.0=hfd05255_1 - - libbrotlidec=1.2.0=hfd05255_1 - - libbrotlienc=1.2.0=hfd05255_1 - - libcblas=3.11.0=8_h2a3cdd5_mkl - - libcurl=8.21.0=h51a1c48_2 - - libdeflate=1.25=h51727cc_0 + - libblas=3.11.0=9_h8455456_mkl + - libbrotlicommon=1.2.0=hf02afa3_3 + - libbrotlidec=1.2.0=h84f9c24_3 + - libbrotlienc=1.2.0=he2a975b_3 + - libcblas=3.11.0=9_h2a3cdd5_mkl + - libcurl=8.21.0=hdb0ef4a_5 + - libdeflate=1.25=h1a1d4e4_1 - libexpat=2.8.1=hac47afa_1 - - libffi=3.5.2=h3d046cb_0 - - libfreetype=2.14.3=h57928b3_1 - - libfreetype6=2.14.3=hdbac1cb_1 - - libgcc=15.2.0=h8ee18e1_20 - - libgomp=15.2.0=h8ee18e1_20 + - libffi=3.7.0=h3d046cb_0 + - libfreetype=2.14.3=h57928b3_2 + - libfreetype6=2.14.3=hdbac1cb_2 + - libgcc=16.1.0=h110b43a_3 + - libgomp=16.1.0=h8ee18e1_3 - libhwloc=2.13.0=default_h049141e_1000 - - libiconv=1.18=hc1393d2_2 - - libjpeg-turbo=3.2.0=hfd05255_0 - - liblapack=3.11.0=8_hf9ab0e9_mkl - - liblzma=5.8.3=hfd05255_0 - - libmpdec=4.0.0=hfd05255_1 - - libpng=1.6.58=h7351971_0 - - libpsl=0.22.0=h25e0afd_1 - - libsqlite=3.53.4=hf5d6505_0 - - libssh2=1.11.1=h9aa295b_0 + - libiconv=1.18=hc1393d2_3 + - libjpeg-turbo=3.2.0=hfd05255_1 + - liblapack=3.11.0=9_hf9ab0e9_mkl + - liblzma=5.8.3=hfd05255_1 + - libmpdec=4.0.0=hfd05255_2 + - libpng=1.6.58=hdc8cecf_1 + - libpsl=0.23.1=h9b16d47_1 + - libsqlite=3.53.4=hf5d6505_1 + - libssh2=1.11.1=h734d217_1 - libtiff=4.7.2=h8f73337_0 - - libwebp-base=1.6.0=h4d5522a_0 - - libwinpthread=12.0.0.r4.gg4f2fc60ca=h57928b3_10 - - libxcb=1.17.0=h0e4246c_0 - - libxml2=2.15.3=h8ef44ab_0 - - libxml2-16=2.15.3=h3cfd58e_0 - - libzlib=1.3.2=hfd05255_2 - - llvm-openmp=22.1.8=h4fa8253_0 + - libwebp-base=1.6.0=h4d5522a_1 + - libwinpthread=12.0.0.r4.gg4f2fc60ca=h11686cb_11 + - libxcb=1.17.0=h874e120_1 + - libxml2=2.15.3=h8ef44ab_1 + - libxml2-16=2.15.3=h3cfd58e_1 + - libzlib=1.3.2=hfd05255_3 + - llvm-openmp=22.1.8=h4fa8253_1 - markupsafe=3.0.3=py314h2359020_1 - matplotlib-base=3.10.9=py314hfa45d96_0 - mccabe=0.7.0=pyhd8ed1ab_1 - - mkl=2026.1.0=hac47afa_233 + - mkl=2026.1.0=hac47afa_234 - munkres=1.1.4=pyhd8ed1ab_1 - numpy=2.4.6=py314h02f10f6_0 - - onemkl-license=2026.1.0=h57928b3_233 - openjpeg=2.5.4=h0e57b4f_0 - - openssl=3.6.3=hf411b9b_0 - - packaging=26.2=pyhc364b38_0 + - openssl=3.6.3=hf411b9b_1 + - packaging=26.3=pyhc364b38_0 - pillow=12.3.0=py314h61b30b5_0 - - pip=26.1.2=pyh145f28c_0 - - platformdirs=4.11.0=pyhcf101f3_0 + - pip=26.2.1=pyh145f28c_0 + - platformdirs=4.11.3=pyhcf101f3_0 - pluggy=1.6.0=pyhf9edf01_1 - - psutil=7.2.2=py314hc5dbbe4_0 - - pthread-stubs=0.4=h0e40799_1002 + - psutil=7.2.2=py314hc5dbbe4_1 + - pthread-stubs=0.4=hba3369d_1003 - pydantic=2.12.5=pyhcf101f3_1 - pydantic-core=2.41.5=py314h9f07db2_1 - - pygments=2.20.0=pyhd8ed1ab_0 - - pylint=4.0.6=pyhcf101f3_0 + - pygments=2.21.0=pyhcf101f3_0 + - pylint=4.0.7=pyhcf101f3_0 - pyparsing=3.3.2=pyhcf101f3_0 - pysocks=1.7.1=pyh09c184e_7 - pytest=9.1.1=pyhc364b38_2 - pytest-cov=7.1.0=pyhcf101f3_0 - - python=3.14.6=h4b44e0e_101_cp314 + - python=3.14.7=h53f6dd8_100_cp314 - python-dateutil=2.9.0.post0=pyhe01879c_2 - python_abi=3.14=8_cp314 - pyyaml=6.0.3=py314h2359020_1 @@ -123,9 +122,9 @@ dependencies: - six=1.17.0=pyhe01879c_1 - snowballstemmer=3.1.1=pyhd8ed1ab_0 - sphinx=9.1.0=pyhd8ed1ab_0 - - sphinx-autodoc-typehints=3.13.0=pyhd8ed1ab_0 - - sphinx-rtd-theme=3.1.0=hd8ed1ab_1 - - sphinx_rtd_theme=3.1.0=pyha770c72_1 + - sphinx-autodoc-typehints=3.13.2=pyhd8ed1ab_0 + - sphinx-rtd-theme=3.1.0=h9eada29_2 + - sphinx_rtd_theme=3.1.0=pyhcf101f3_2 - sphinxcontrib-applehelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-devhelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-htmlhelp=2.1.0=pyhd8ed1ab_1 @@ -134,30 +133,30 @@ dependencies: - sphinxcontrib-qthelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-serializinghtml=2.0.0=pyhd8ed1ab_0 - tbb=2023.0.0=hd3d4ead_2 - - tk=8.6.13=h967ab96_3 + - tk=8.6.13=h967ab96_4 - tomli=2.4.1=pyhcf101f3_0 - tomlkit=0.15.1=pyhcf101f3_0 - typing-extensions=4.16.0=h69aa097_0 - - typing-inspection=0.4.2=pyhcf101f3_2 + - typing-inspection=0.4.4=pyhcf101f3_0 - typing_extensions=4.16.0=pyhcf101f3_0 - tzdata=2026c=h151e31d_0 - ucrt=10.0.26100.0=h57928b3_0 - unicodedata2=17.0.1=py314h5a2d7ad_0 - urllib3=2.7.0=pyhd8ed1ab_0 - - vc=14.5=h1b7c187_39 - - vc14_runtime=14.51.36231=h1b9f54f_39 - - vcomp14=14.51.36231=h1b9f54f_39 + - vc=14.5=ha367084_41 + - vc14_runtime=14.51.36247=habf1de7_41 + - vcomp14=14.51.36247=habf1de7_41 - win_inet_pton=1.1.0=pyh7428d3b_8 - - xorg-libxau=1.0.12=hba3369d_1 - - xorg-libxdmcp=1.1.5=hba3369d_1 + - xorg-libxau=1.0.12=hba3369d_2 + - xorg-libxdmcp=1.1.5=hba3369d_2 - yaml=0.2.5=h6a83c73_3 - zipp=4.1.0=pyhcf101f3_0 - - zlib=1.3.2=hfd05255_2 + - zlib=1.3.2=hfd05255_3 - zlib-ng=2.3.3=h0261ad2_1 - - zstd=1.5.7=h534d264_6 + - zstd=1.5.7=h534d264_7 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@e51a703816e712f3c66147cb78fd16808b520f75 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@2e758b9671671160c76d182b72ae18ee735bd214 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@6c850c89972154a08c2ee39ad2dd62e8d9c3afef variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.14-win-64.conda.lock.yml b/environments/py-3.14-win-64.conda.lock.yml index 8b8b9d4..aff75bb 100644 --- a/environments/py-3.14-win-64.conda.lock.yml +++ b/environments/py-3.14-win-64.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: e66d294216992502d33eac01f4e0f16e38e55e580da213e0d612037121e193ac +# input_hash: 7bfb0c555eec9c53e215c07b0292303434371dc40e1f6bea7ba60c052eb94601 channels: - conda-forge @@ -8,18 +8,18 @@ channels: dependencies: - _openmp_mutex=4.5=20_gnu - annotated-types=0.8.0=pyhd8ed1ab_0 - - aws-c-auth=0.10.4=hc6e9107_1 - - aws-c-cal=0.9.14=h032d170_4 - - aws-c-common=0.14.2=hfd05255_0 - - aws-c-compression=0.3.2=h1da161f_4 - - aws-c-http=0.11.0=h667fc28_4 - - aws-c-io=0.27.3=hbdc738f_1 - - aws-c-s3=0.12.8=hd7ee1a1_1 - - aws-c-sdkutils=0.2.7=h1da161f_2 - - aws-checksums=0.2.10=h1da161f_4 - - brotli=1.2.0=h2d644bc_1 - - brotli-bin=1.2.0=hfd05255_1 - - bzip2=1.0.8=h0ad9c76_9 + - aws-c-auth=0.10.4=h98da7c9_2 + - aws-c-cal=0.9.15=hf2e3468_1 + - aws-c-common=0.14.3=hfd05255_0 + - aws-c-compression=0.3.2=h0d56620_5 + - aws-c-http=0.11.0=he024045_5 + - aws-c-io=0.27.5=hef21f9d_1 + - aws-c-s3=0.13.1=h0deae5e_1 + - aws-c-sdkutils=0.2.7=h0d56620_3 + - aws-checksums=0.2.10=h0d56620_5 + - brotli=1.2.0=hc8c2fe1_3 + - brotli-bin=1.2.0=hd477307_3 + - bzip2=1.0.8=h0ad9c76_10 - ca-certificates=2026.7.22=h4c7d964_0 - cached-property=1.5.2=hd8ed1ab_2 - cached_property=1.5.2=pyha770c72_2 @@ -27,86 +27,85 @@ dependencies: - cycler=0.12.1=pyhcf101f3_2 - discretize=0.12.0=np2py314h1495373_1 - fonttools=4.63.0=pyh7db6752_0 - - freetype=2.14.3=h57928b3_1 - - h5py=3.16.0=nompi_py314h02517ec_102 - - hdf5=2.1.0=nompi_h0d3e4b2_110 + - freetype=2.14.3=h57928b3_2 + - h5py=3.16.0=nompi_py314h02517ec_104 + - hdf5=2.2.0=nompi_hf525611_100 - icu=78.3=h5112557_2 - kiwisolver=1.5.0=py314hf309875_0 - - krb5=1.22.2=h719d79b_1 + - krb5=1.22.2=h719d79b_2 - lcms2=2.19.1=hf2c6c5f_1 - lerc=4.2.0=hd936e49_0 - libaec=1.1.5=haf901d7_0 - - libblas=3.11.0=8_h8455456_mkl - - libbrotlicommon=1.2.0=hfd05255_1 - - libbrotlidec=1.2.0=hfd05255_1 - - libbrotlienc=1.2.0=hfd05255_1 - - libcblas=3.11.0=8_h2a3cdd5_mkl - - libcurl=8.21.0=h51a1c48_2 - - libdeflate=1.25=h51727cc_0 + - libblas=3.11.0=9_h8455456_mkl + - libbrotlicommon=1.2.0=hf02afa3_3 + - libbrotlidec=1.2.0=h84f9c24_3 + - libbrotlienc=1.2.0=he2a975b_3 + - libcblas=3.11.0=9_h2a3cdd5_mkl + - libcurl=8.21.0=hdb0ef4a_5 + - libdeflate=1.25=h1a1d4e4_1 - libexpat=2.8.1=hac47afa_1 - - libffi=3.5.2=h3d046cb_0 - - libfreetype=2.14.3=h57928b3_1 - - libfreetype6=2.14.3=hdbac1cb_1 - - libgcc=15.2.0=h8ee18e1_20 - - libgomp=15.2.0=h8ee18e1_20 + - libffi=3.7.0=h3d046cb_0 + - libfreetype=2.14.3=h57928b3_2 + - libfreetype6=2.14.3=hdbac1cb_2 + - libgcc=16.1.0=h110b43a_3 + - libgomp=16.1.0=h8ee18e1_3 - libhwloc=2.13.0=default_h049141e_1000 - - libiconv=1.18=hc1393d2_2 - - libjpeg-turbo=3.2.0=hfd05255_0 - - liblapack=3.11.0=8_hf9ab0e9_mkl - - liblzma=5.8.3=hfd05255_0 - - libmpdec=4.0.0=hfd05255_1 - - libpng=1.6.58=h7351971_0 - - libpsl=0.22.0=h25e0afd_1 - - libsqlite=3.53.4=hf5d6505_0 - - libssh2=1.11.1=h9aa295b_0 + - libiconv=1.18=hc1393d2_3 + - libjpeg-turbo=3.2.0=hfd05255_1 + - liblapack=3.11.0=9_hf9ab0e9_mkl + - liblzma=5.8.3=hfd05255_1 + - libmpdec=4.0.0=hfd05255_2 + - libpng=1.6.58=hdc8cecf_1 + - libpsl=0.23.1=h9b16d47_1 + - libsqlite=3.53.4=hf5d6505_1 + - libssh2=1.11.1=h734d217_1 - libtiff=4.7.2=h8f73337_0 - - libwebp-base=1.6.0=h4d5522a_0 - - libwinpthread=12.0.0.r4.gg4f2fc60ca=h57928b3_10 - - libxcb=1.17.0=h0e4246c_0 - - libxml2=2.15.3=h8ef44ab_0 - - libxml2-16=2.15.3=h3cfd58e_0 - - libzlib=1.3.2=hfd05255_2 - - llvm-openmp=22.1.8=h4fa8253_0 + - libwebp-base=1.6.0=h4d5522a_1 + - libwinpthread=12.0.0.r4.gg4f2fc60ca=h11686cb_11 + - libxcb=1.17.0=h874e120_1 + - libxml2=2.15.3=h8ef44ab_1 + - libxml2-16=2.15.3=h3cfd58e_1 + - libzlib=1.3.2=hfd05255_3 + - llvm-openmp=22.1.8=h4fa8253_1 - matplotlib-base=3.10.9=py314hfa45d96_0 - - mkl=2026.1.0=hac47afa_233 + - mkl=2026.1.0=hac47afa_234 - munkres=1.1.4=pyhd8ed1ab_1 - numpy=2.4.6=py314h02f10f6_0 - - onemkl-license=2026.1.0=h57928b3_233 - openjpeg=2.5.4=h0e57b4f_0 - - openssl=3.6.3=hf411b9b_0 - - packaging=26.2=pyhc364b38_0 + - openssl=3.6.3=hf411b9b_1 + - packaging=26.3=pyhc364b38_0 - pillow=12.3.0=py314h61b30b5_0 - - pip=26.1.2=pyh145f28c_0 - - psutil=7.2.2=py314hc5dbbe4_0 - - pthread-stubs=0.4=h0e40799_1002 + - pip=26.2.1=pyh145f28c_0 + - psutil=7.2.2=py314hc5dbbe4_1 + - pthread-stubs=0.4=hba3369d_1003 - pydantic=2.12.5=pyhcf101f3_1 - pydantic-core=2.41.5=py314h9f07db2_1 - pyparsing=3.3.2=pyhcf101f3_0 - - python=3.14.6=h4b44e0e_101_cp314 + - python=3.14.7=h53f6dd8_100_cp314 - python-dateutil=2.9.0.post0=pyhe01879c_2 - python_abi=3.14=8_cp314 - qhull=2020.2=hc790b64_5 - scipy=1.17.1=py314h221f224_1 - six=1.17.0=pyhe01879c_1 - tbb=2023.0.0=hd3d4ead_2 - - tk=8.6.13=h967ab96_3 + - tk=8.6.13=h967ab96_4 - typing-extensions=4.16.0=h69aa097_0 - - typing-inspection=0.4.2=pyhcf101f3_2 + - typing-inspection=0.4.4=pyhcf101f3_0 - typing_extensions=4.16.0=pyhcf101f3_0 - tzdata=2026c=h151e31d_0 - ucrt=10.0.26100.0=h57928b3_0 - unicodedata2=17.0.1=py314h5a2d7ad_0 - - vc=14.5=h1b7c187_39 - - vc14_runtime=14.51.36231=h1b9f54f_39 - - vcomp14=14.51.36231=h1b9f54f_39 - - xorg-libxau=1.0.12=hba3369d_1 - - xorg-libxdmcp=1.1.5=hba3369d_1 - - zlib=1.3.2=hfd05255_2 + - vc=14.5=ha367084_41 + - vc14_runtime=14.51.36247=habf1de7_41 + - vcomp14=14.51.36247=habf1de7_41 + - xorg-libxau=1.0.12=hba3369d_2 + - xorg-libxdmcp=1.1.5=hba3369d_2 + - zlib=1.3.2=hfd05255_3 - zlib-ng=2.3.3=h0261ad2_1 - - zstd=1.5.7=h534d264_6 + - zstd=1.5.7=h534d264_7 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@e51a703816e712f3c66147cb78fd16808b520f75 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@2e758b9671671160c76d182b72ae18ee735bd214 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@6c850c89972154a08c2ee39ad2dd62e8d9c3afef variables: KMP_WARNINGS: 0 diff --git a/py-3.12.conda-lock.yml b/py-3.12.conda-lock.yml index a7a7687..6360695 100644 --- a/py-3.12.conda-lock.yml +++ b/py-3.12.conda-lock.yml @@ -15,8 +15,8 @@ version: 1 metadata: content_hash: - win-64: 2a1a0eb2d3351c9bfc713c5be968c4bcf6fc5604ea258fa943735a17053af93d - linux-64: 630c4d5a518e6daae80e9b2f4d4c47435dfa161d9b0e7de645892876051027e9 + win-64: 397c50628cc8dff2e8046756bc5147894040408dd1fce6b2b7a6b8140d6182d5 + linux-64: 1dafb147f14260ff03c478aa59889d8ec2ac87a5441e62134e01ab9a622bb436 channels: - url: conda-forge used_env_vars: [] @@ -136,16 +136,16 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - aws-c-cal: '>=0.9.14,<0.9.15.0a0' - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-cal: '>=0.9.15,<0.9.16.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' aws-c-http: '>=0.11.0,<0.11.1.0a0' - aws-c-io: '>=0.27.3,<0.27.4.0a0' + aws-c-io: '>=0.27.5,<0.27.6.0a0' aws-c-sdkutils: '>=0.2.7,<0.2.8.0a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-auth-0.10.4-hb7a77c6_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-auth-0.10.4-h4610da3_2.conda hash: - md5: 4347d5ffdf34adf9c5edd10837727d96 - sha256: 845fe32ee750d4a4d3efdb1d95a8c29c3388e3ea9787b77341ec4abe4e198b11 + md5: cefa84dbf94066e7a6902af288a2fedd + sha256: 0c92dc5ddf4edd4038a63adb79f9f0b03f61e9455ce3253b7d2cf708e06ff99e category: main optional: false - name: aws-c-auth @@ -153,75 +153,75 @@ package: manager: conda platform: win-64 dependencies: - aws-c-cal: '>=0.9.14,<0.9.15.0a0' - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-cal: '>=0.9.15,<0.9.16.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' aws-c-http: '>=0.11.0,<0.11.1.0a0' - aws-c-io: '>=0.27.3,<0.27.4.0a0' + aws-c-io: '>=0.27.5,<0.27.6.0a0' aws-c-sdkutils: '>=0.2.7,<0.2.8.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-c-auth-0.10.4-hc6e9107_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-auth-0.10.4-h98da7c9_2.conda hash: - md5: f7069cdc81f7a5e781f1faf6aab6c171 - sha256: cf7ab8abaac6b462463310412cc37d087a767a95920809cbe6dc0a08fe4bcfbd + md5: 48df5a892ef44189ff64744c944884f9 + sha256: ba0b53ad46a7ba157888454c9bf76e1f0e5de368fb0bfbc0bd710156ac741dff category: main optional: false - name: aws-c-cal - version: 0.9.14 + version: 0.9.15 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' libgcc: '>=14' openssl: '>=3.5.7,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-cal-0.9.14-h2aa3ae6_4.conda + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-cal-0.9.15-h6bbde05_1.conda hash: - md5: 9c6072e7b882d35ac956c07e493d6a9e - sha256: a67c944be1728f576c02fe8f28b0cbb78b5353415075db3da4ef71bc9dd8c00c + md5: 8f2b374c79908f271be3d0e9f1c462a8 + sha256: 6eb21a0129e0aa7c6be733c7f2d1de6bc97a60c8382c1016f19dced722600d73 category: main optional: false - name: aws-c-cal - version: 0.9.14 + version: 0.9.15 manager: conda platform: win-64 dependencies: - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-c-cal-0.9.14-h032d170_4.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-cal-0.9.15-hf2e3468_1.conda hash: - md5: fda8fa85ef5d8570d5a0aadea688bb82 - sha256: cda33360c71ab9a4b4e269004a5672d712fa1ae581ecca0404181805ce6762ce + md5: 2c70e5e0b0a87a674b2a1a20fd80c04c + sha256: 2ffb1a78a9deddf937ea70096ef5b6672918a9153a21b0a9d069533850b0a49f category: main optional: false - name: aws-c-common - version: 0.14.2 + version: 0.14.3 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-common-0.14.2-hb03c661_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-common-0.14.3-hb03c661_0.conda hash: - md5: f3e0b2e044485ae90d4a59c77e7a0182 - sha256: 701398f1c9978c41e93cb0947869a66b7f8004e9d6e548d63d11aedae83cfb02 + md5: ce8664d7c01d4a598ad38107b289b5ec + sha256: 8ea79f36d50ba90d7147fe1a047f9a7f2d33b114a3d4bacf1360cd8df43986e4 category: main optional: false - name: aws-c-common - version: 0.14.2 + version: 0.14.3 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-c-common-0.14.2-hfd05255_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-common-0.14.3-hfd05255_0.conda hash: - md5: 75b4445fec6477b271920f87830d22a3 - sha256: 63fc3f34a3b3d21d5f6527ba5136e132f3ad50541d4d16e385d03f4e47e1db2b + md5: eda5facd8e8545b7dacc1dc740ac0e54 + sha256: 5c55090f9c2b28eeac0e9f40a2b1a7aeaae10ba96fa6c7c0e4caef69a6a9cfa2 category: main optional: false - name: aws-c-compression @@ -230,12 +230,12 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-compression-0.3.2-h720e601_4.conda + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-compression-0.3.2-h01ee8f8_5.conda hash: - md5: c9be3f5854f349ae77a1a174b59e11a8 - sha256: 8e0a5513cfc42df8bd16adbd8e83a37d3ca89b8e04cb20eb04eb177bbbfea365 + md5: ae862abdbb3160f97478d3d4749164c0 + sha256: 27f8581573c533a92a1a9619516ebb66d390b9923d296331985cfd342dc32d29 category: main optional: false - name: aws-c-compression @@ -243,14 +243,14 @@ package: manager: conda platform: win-64 dependencies: - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-c-compression-0.3.2-h1da161f_4.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-compression-0.3.2-h0d56620_5.conda hash: - md5: 996e5c7da8f9e255eac094d2413b40c3 - sha256: 97eaf03572b61d118616e8ee8459823c7b0f5dc26295bbab3ac3f6d671f1547a + md5: 3a93885c9f57e04ff78d29f7dc830fb2 + sha256: 43a538303486de0621c543c38a28c60ac3a65bbba35793321e0a825a65d460fc category: main optional: false - name: aws-c-http @@ -259,15 +259,15 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - aws-c-cal: '>=0.9.14,<0.9.15.0a0' - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-cal: '>=0.9.15,<0.9.16.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' aws-c-compression: '>=0.3.2,<0.3.3.0a0' - aws-c-io: '>=0.27.3,<0.27.4.0a0' + aws-c-io: '>=0.27.5,<0.27.6.0a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-http-0.11.0-h38ae05a_4.conda + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-http-0.11.0-hbe094ff_5.conda hash: - md5: 97f2799ae6ff7b6f52dfa321fef9676b - sha256: 4b939b4a76a11c9ec50c891ae9bf232da8dcaf8797701df1e79ae51c988be2d4 + md5: c09f7ec7327b8bd52fc2d6eacaa18d3b + sha256: a4a5e24b398e7c0ef64de5a341ecb3f0fa87c2879177695c5d0bcbde0c4f8b5e category: main optional: false - name: aws-c-http @@ -275,89 +275,89 @@ package: manager: conda platform: win-64 dependencies: - aws-c-cal: '>=0.9.14,<0.9.15.0a0' - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-cal: '>=0.9.15,<0.9.16.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' aws-c-compression: '>=0.3.2,<0.3.3.0a0' - aws-c-io: '>=0.27.3,<0.27.4.0a0' + aws-c-io: '>=0.27.5,<0.27.6.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-c-http-0.11.0-h667fc28_4.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-http-0.11.0-he024045_5.conda hash: - md5: c17a284b159959a8639298ed7da8ad0b - sha256: 304587d77daccde630fbdbb8ae2f3994cf583427f710c60d62e88bc97c4ff013 + md5: ad215edbb53ea01805b103d66aee21ec + sha256: d1d6b9213980eab8403354cab5d515fddb8c0cbdf88226c8c353499c699692b0 category: main optional: false - name: aws-c-io - version: 0.27.3 + version: 0.27.5 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - aws-c-cal: '>=0.9.14,<0.9.15.0a0' - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-cal: '>=0.9.15,<0.9.16.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' libgcc: '>=14' - s2n: '>=1.7.5,<1.7.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-io-0.27.3-h6f4d18d_1.conda + s2n: '>=1.7.6,<1.7.7.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-io-0.27.5-h4f381ba_1.conda hash: - md5: bd19b685b88557830f1a617a6d404eb2 - sha256: 94c32ca672ce290e250aea1cfb92582cca4658bdc3ec7cb1ceef254f34451595 + md5: 948f5a4fddac779b7942626e5807caba + sha256: 76ab4eb6cae12e14244cb1fe11ecccc2f103f8ffa7e80e222099c6b16c19ae20 category: main optional: false - name: aws-c-io - version: 0.27.3 + version: 0.27.5 manager: conda platform: win-64 dependencies: - aws-c-cal: '>=0.9.14,<0.9.15.0a0' - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-cal: '>=0.9.15,<0.9.16.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-c-io-0.27.3-hbdc738f_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-io-0.27.5-hef21f9d_1.conda hash: - md5: 579600368b15fb523d69e2a3f8a9bc55 - sha256: 36816ff394ee736fcf705db5b1c1491c98f6f77ef84791d73b71e78154df402d + md5: e51b38fd757d34b61daf4e848ee0d8f1 + sha256: e689379cc92a4b7dbe01f8c8fbbe12142f6a0cdeee1080d099c4fb80e8e3b090 category: main optional: false - name: aws-c-s3 - version: 0.12.8 + version: 0.13.1 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' aws-c-auth: '>=0.10.4,<0.10.5.0a0' - aws-c-cal: '>=0.9.14,<0.9.15.0a0' - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-cal: '>=0.9.15,<0.9.16.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' aws-c-http: '>=0.11.0,<0.11.1.0a0' - aws-c-io: '>=0.27.3,<0.27.4.0a0' + aws-c-io: '>=0.27.5,<0.27.6.0a0' aws-checksums: '>=0.2.10,<0.2.11.0a0' libgcc: '>=14' openssl: '>=3.5.7,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-s3-0.12.8-h46fcd08_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-s3-0.13.1-h7508075_1.conda hash: - md5: 706aa99414d18db5b23475b45cc93a0b - sha256: a423bffbb0e6cacb5e2a0861b918ba3180e5132509afb1faf225ee9f0ec8f981 + md5: 2daf54d3eef87b757f68d7597534dd2f + sha256: d24f7f34b3b564535b533b17176e71f71b6944aa2cb71813283bece139908d9f category: main optional: false - name: aws-c-s3 - version: 0.12.8 + version: 0.13.1 manager: conda platform: win-64 dependencies: aws-c-auth: '>=0.10.4,<0.10.5.0a0' - aws-c-cal: '>=0.9.14,<0.9.15.0a0' - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-cal: '>=0.9.15,<0.9.16.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' aws-c-http: '>=0.11.0,<0.11.1.0a0' - aws-c-io: '>=0.27.3,<0.27.4.0a0' + aws-c-io: '>=0.27.5,<0.27.6.0a0' aws-checksums: '>=0.2.10,<0.2.11.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-c-s3-0.12.8-hd7ee1a1_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-s3-0.13.1-h0deae5e_1.conda hash: - md5: 4ac02fa15bf3809101e2eeb340b6078c - sha256: c79e62931e163b65a01786d5ed7156ecca2ab748b7c7835756d34e438035706a + md5: e2adedc506b0298afbbe75e5a7bb32c4 + sha256: 90da84f84953d53ed58f41381dd05ba36724db69c9885f1265d3b9d4651a398e category: main optional: false - name: aws-c-sdkutils @@ -366,12 +366,12 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-sdkutils-0.2.7-h720e601_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-sdkutils-0.2.7-h01ee8f8_3.conda hash: - md5: 816f62fa82532118ebb2398382090945 - sha256: e419e179e04021fc680d98af23fac4b4c2369cea61171087e57a734e968dd9bd + md5: 412f0cf18cc4c4945655dba954ca2d76 + sha256: b308c393a3db78cef29942c6b83ca7321f86d357fbb47504d59f55254601c87a category: main optional: false - name: aws-c-sdkutils @@ -379,14 +379,14 @@ package: manager: conda platform: win-64 dependencies: - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-c-sdkutils-0.2.7-h1da161f_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-sdkutils-0.2.7-h0d56620_3.conda hash: - md5: 882d834f12e0abf4c7a0e9bb0c72e281 - sha256: d5da00123d9ceb082e61fd5bf82fff9cd5bec0b8e1ae91454f29155a59499bf5 + md5: e66b4cbfcc747b9ba8ecefb9bed862af + sha256: 3d87a3474f08da5613eabccd0d2604fdb127a232498e76e33a74bc417f0b049a category: main optional: false - name: aws-checksums @@ -395,12 +395,12 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-checksums-0.2.10-h720e601_4.conda + url: https://repo.prefix.dev/conda-forge/linux-64/aws-checksums-0.2.10-h01ee8f8_5.conda hash: - md5: 24ee781effc5779206a80139323c9caf - sha256: 6cc8617854a43040291dea791fe111ba408e7a5bbd9ee9e5a99375da7a16846b + md5: 4d70caf5260e0787675c3bf61ae5b64c + sha256: f8d2cd9faccb273df739fc28431b484a90aca10027ef44f7fec1d4f0bd229a76 category: main optional: false - name: aws-checksums @@ -408,14 +408,14 @@ package: manager: conda platform: win-64 dependencies: - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-checksums-0.2.10-h1da161f_4.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-checksums-0.2.10-h0d56620_5.conda hash: - md5: a3c81085892f2983979836f2937291ce - sha256: 2227fa77f395f1b4699533709e7ef140a8292fccb31376ec5498565c7ad33225 + md5: 9d82651327244c59ab89c0ec1aa327a2 + sha256: 06e96edd75595eb2898d2399ec73cf255aab4d27b1f08e806d480efe01d64a71 category: main optional: false - name: babel @@ -443,23 +443,23 @@ package: category: dev optional: true - name: backports.zstd - version: 1.6.0 + version: 1.7.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' + libgcc: '>=15' python: '' python_abi: 3.12.* zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/backports.zstd-1.6.0-py312h90b7ffd_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/backports.zstd-1.7.0-py312h3f22e6b_0.conda hash: - md5: 55811da425538da800b89c0c588652fa - sha256: 95b3d6d44c17c4061db703289f39915646e455f75f0c8c9d949bf081d2e61579 + md5: e7eb25765bdf21397cc6e30828871625 + sha256: c10df0467f534472f0aa39013850d6dd9dd38ea5a6fb5c0812afb6f3fc768924 category: dev optional: true - name: backports.zstd - version: 1.6.0 + version: 1.7.0 manager: conda platform: win-64 dependencies: @@ -469,10 +469,10 @@ package: vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/backports.zstd-1.6.0-py312h06d0912_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/backports.zstd-1.7.0-py312h06d0912_0.conda hash: - md5: 0d8bcdc0af72309fb998811f5f4db2c5 - sha256: 9926f274d8b642f5421e4536952cb158912517f40acf1df3a8fbd891c5f600ed + md5: d7c56279ddf11b597934de1b928e799d + sha256: 492b36f6c1380562f16e7ac0b2aae2f74a6d66eb4806689a791ccdbd0b4fb162 category: dev optional: true - name: brotli @@ -484,11 +484,11 @@ package: brotli-bin: 1.2.0 libbrotlidec: 1.2.0 libbrotlienc: 1.2.0 - libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/brotli-1.2.0-hed03a55_1.conda + libgcc: '>=15' + url: https://repo.prefix.dev/conda-forge/linux-64/brotli-1.2.0-h505cf86_3.conda hash: - md5: 8ccf913aaba749a5496c17629d859ed1 - sha256: e511644d691f05eb12ebe1e971fd6dc3ae55a4df5c253b4e1788b789bdf2dfa6 + md5: 6ff307b78fbfb7dcafb7e25ff8bc9c10 + sha256: 1f2ccfebe6e0113bfc473b21906372c1ee4eb69bf6faef0ad7f3d4d79af63a98 category: main optional: false - name: brotli @@ -502,10 +502,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/brotli-1.2.0-h2d644bc_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/brotli-1.2.0-hc8c2fe1_3.conda hash: - md5: bc58fdbced45bb096364de0fba1637af - sha256: a4fffdf1c9b9d3d0d787e20c724cff3a284dfa3773f9ce609c93b1cfd0ce8933 + md5: 9eba56a007c44dc32d0b9d0a820871ea + sha256: 85e12348d058791aabd6eeb6abc1d7ab44b8f6308f91c8475f44f778f2a158af category: main optional: false - name: brotli-bin @@ -516,11 +516,11 @@ package: __glibc: '>=2.17,<3.0.a0' libbrotlidec: 1.2.0 libbrotlienc: 1.2.0 - libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/brotli-bin-1.2.0-hb03c661_1.conda + libgcc: '>=15' + url: https://repo.prefix.dev/conda-forge/linux-64/brotli-bin-1.2.0-h9908984_3.conda hash: - md5: af39b9a8711d4a8d437b52c1d78eb6a1 - sha256: 64b137f30b83b1dd61db6c946ae7511657eead59fdf74e84ef0ded219605aa94 + md5: 8929291d9efc59715df1cfa7daf5e3ed + sha256: 56b2e5e8a49f9887af74cc63e0d55a3654e60b667ad5558da089549a36ae6a0c category: main optional: false - name: brotli-bin @@ -533,10 +533,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/brotli-bin-1.2.0-hfd05255_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/brotli-bin-1.2.0-hd477307_3.conda hash: - md5: 6abd7089eb3f0c790235fe469558d190 - sha256: e76966232ef9612de33c2087e3c92c2dc42ea5f300050735a3c646f33bce0429 + md5: dc04f7b3d82c6fb3fdf4d93e45b6ea2a + sha256: 5328e0576c729813d28efc15613f4be94d029d77c4fe5afda16cab0b8d0c9d05 category: main optional: false - name: brotli-python @@ -545,14 +545,14 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' - libstdcxx: '>=14' + libgcc: '>=15' + libstdcxx: '>=15' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/brotli-python-1.2.0-py312hdb49522_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/brotli-python-1.2.0-py312he9c40d5_3.conda hash: - md5: 64088dffd7413a2dd557ce837b4cbbdb - sha256: 49df13a1bb5e388ca0e4e87022260f9501ed4192656d23dc9d9a1b4bf3787918 + md5: d176f3ed2824f930b524c45eb8f158bb + sha256: 32ae6e002843704af9f39395f3116815fa66f2b27de1bd9044fb2a2d53fbe3d3 category: dev optional: true - name: brotli-python @@ -565,10 +565,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/brotli-python-1.2.0-py312hc6d9e41_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/brotli-python-1.2.0-py312ha763cb9_3.conda hash: - md5: e8e7a6346a9e50d19b4daf41f367366f - sha256: 2bb6f384a51929ef2d5d6039fcf6c294874f20aaab2f63ca768cbe462ed4b379 + md5: 4d0e6b94ff31b79f35a7f341e4eb73b0 + sha256: ab6bc41db5efb67b68d54dc2631131e210ac8c1930ab30c4c6a6e2470c16be0c category: dev optional: true - name: bzip2 @@ -578,10 +578,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/bzip2-1.0.8-hda65f42_9.conda + url: https://repo.prefix.dev/conda-forge/linux-64/bzip2-1.0.8-hda65f42_10.conda hash: - md5: d2ffd7602c02f2b316fd921d39876885 - sha256: 0b75d45f0bba3e95dc693336fa51f40ea28c980131fec438afb7ce6118ed05f6 + md5: e675fabcf81499adc7edf58124fb1e01 + sha256: 1a0d382c515ebf55f8ee1f38c8b81bc95af5c2acc42ad53b66bc5df932032f96 category: main optional: false - name: bzip2 @@ -592,10 +592,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/bzip2-1.0.8-h0ad9c76_9.conda + url: https://repo.prefix.dev/conda-forge/win-64/bzip2-1.0.8-h0ad9c76_10.conda hash: - md5: 4cb8e6b48f67de0b018719cdf1136306 - sha256: 76dfb71df5e8d1c4eded2dbb5ba15bb8fb2e2b0fe42d94145d5eed4c75c35902 + md5: c3301c058362f340100d91cd8be0393f + sha256: 04767466ee9227c9c57ab2c6503e0149177d34111c7418d2f420297acb1eb229 category: main optional: false - name: c-ares @@ -604,11 +604,11 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/c-ares-1.34.8-hb03c661_0.conda + libgcc: '>=15' + url: https://repo.prefix.dev/conda-forge/linux-64/c-ares-1.34.8-hebe6cf0_2.conda hash: - md5: 6130ad6705adc993b5d8482b7f66e01f - sha256: dee93a82d045f9aa8277829aa465224afa3c7a6ac18388de66099b2be7f705e7 + md5: 3ad2b403be8fc5612b9159e2ce621f69 + sha256: 9c37cc233238adf366ea75b0e845662a5be07ceadf62e458183516369340274b category: main optional: false - name: ca-certificates @@ -708,27 +708,27 @@ package: category: dev optional: true - name: charset-normalizer - version: 3.4.9 + version: 3.5.1 manager: conda platform: linux-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.9-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.5.1-pyhd8ed1ab_0.conda hash: - md5: d154b40b109e503430979e8a8d099eaf - sha256: 8d8813ef655b4e75e4fb897abd83ad548882efad7b4e836b021b797f42780799 + md5: e0ac3accc64e23e40969d660e5f58ac8 + sha256: cb60ef3e0631c8bacb4f7057196dee4496091a22baa3bb4b9bccb12c7e1c921b category: dev optional: true - name: charset-normalizer - version: 3.4.9 + version: 3.5.1 manager: conda platform: win-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.9-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.5.1-pyhd8ed1ab_0.conda hash: - md5: d154b40b109e503430979e8a8d099eaf - sha256: 8d8813ef655b4e75e4fb897abd83ad548882efad7b4e836b021b797f42780799 + md5: e0ac3accc64e23e40969d660e5f58ac8 + sha256: cb60ef3e0631c8bacb4f7057196dee4496091a22baa3bb4b9bccb12c7e1c921b category: dev optional: true - name: colorama @@ -790,36 +790,36 @@ package: category: main optional: false - name: coverage - version: 7.15.2 + version: 7.15.4 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - python: '>=3.12,<3.13.0a0' + python: '' python_abi: 3.12.* tomli: '' - url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.15.2-py312h8a5da7c_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.15.4-py312h589e9ff_1.conda hash: - md5: 11e8cba550d02296c444316f6ebd5255 - sha256: e89d003aafa069ff41885fb798495a411e8f99f10929c490457df0dcd255f964 + md5: da913109cf05fb71022186f534874a5d + sha256: 12157c219d58e85b0454705ba23caed5b6a1e1129715fab1a38d1c974a82a5ff category: dev optional: true - name: coverage - version: 7.15.2 + version: 7.15.4 manager: conda platform: win-64 dependencies: - python: '>=3.12,<3.13.0a0' + python: '' python_abi: 3.12.* tomli: '' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.15.2-py312h05f76fc_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.15.4-py312h6fa65f5_1.conda hash: - md5: eb04595bd0c3634079ba51980657d75e - sha256: 5685583c45c43fafef253a65baf9e9d45863fbf5b9b8a970e2db0f39ad2c16e3 + md5: a8780743191eaee55c337c36a385ef5e + sha256: 72155f060e2647f5795f7aff2a624e88137280428cea0046219480a2d57838bf category: dev optional: true - name: cycler @@ -1000,10 +1000,10 @@ package: dependencies: libfreetype: 2.14.3 libfreetype6: 2.14.3 - url: https://repo.prefix.dev/conda-forge/linux-64/freetype-2.14.3-ha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/freetype-2.14.3-ha770c72_2.conda hash: - md5: 8462b5322567212beeb025f3519fb3e2 - sha256: c934c385889c7836f034039b43b05ccfa98f53c900db03d8411189892ced090b + md5: 2d0ea23b23603e07ca47f23f949f67b6 + sha256: 612a8e0c1a6ecae23da54d81ef395f6ebb5c8e4468ec2611593ebce75876a4e0 category: main optional: false - name: freetype @@ -1014,38 +1014,38 @@ package: libfreetype: 2.14.3 libfreetype6: 2.14.3 zlib: '' - url: https://repo.prefix.dev/conda-forge/win-64/freetype-2.14.3-h57928b3_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/freetype-2.14.3-h57928b3_2.conda hash: - md5: e77293b32225b136a8be300f93d0e89f - sha256: a0e419e96146159f12344c870dca608d11bca36841f228092b986ffc2e1e0f02 + md5: 6fc6c09c05a099d58efd9b2e96598e41 + sha256: 32f7dd8ffe62fd485e9e6570e871f5be45af74c84fde62241a2417046a373efd category: main optional: false - name: h2 - version: 4.4.0 + version: 4.4.1 manager: conda platform: linux-64 dependencies: hpack: '>=4.2,<5' hyperframe: '>=6.1,<7' python: '' - url: https://repo.prefix.dev/conda-forge/noarch/h2-4.4.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/h2-4.4.1-pyhcf101f3_0.conda hash: - md5: aae3214aab65ae635fbb3cc455596a86 - sha256: 1bdffcb701cf1f4429733fc2e194995bab5ecc71073d84a434dcfb57049a4265 + md5: e652ac7756069c456d0da2a922cd7df5 + sha256: 307dd6ec90140c3cf4171071b0e5e870abec314f4565c1edd5bc433e942cdcc0 category: dev optional: true - name: h2 - version: 4.4.0 + version: 4.4.1 manager: conda platform: win-64 dependencies: hpack: '>=4.2,<5' hyperframe: '>=6.1,<7' python: '' - url: https://repo.prefix.dev/conda-forge/noarch/h2-4.4.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/h2-4.4.1-pyhcf101f3_0.conda hash: - md5: aae3214aab65ae635fbb3cc455596a86 - sha256: 1bdffcb701cf1f4429733fc2e194995bab5ecc71073d84a434dcfb57049a4265 + md5: e652ac7756069c456d0da2a922cd7df5 + sha256: 307dd6ec90140c3cf4171071b0e5e870abec314f4565c1edd5bc433e942cdcc0 category: dev optional: true - name: h5py @@ -1055,15 +1055,15 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' cached-property: '' - hdf5: '>=2.1.0,<3.0a0' - libgcc: '>=14' - numpy: '>=1.23,<3' + hdf5: '>=2.2.0,<3.0a0' + libgcc: '>=15' + numpy: '>=1.25,<3' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/h5py-3.16.0-nompi_py312ha829cd9_102.conda + url: https://repo.prefix.dev/conda-forge/linux-64/h5py-3.16.0-nompi_py312h7082e50_104.conda hash: - md5: c6e5cf708b01707fe4cd5e4dc56cf4cc - sha256: 578ab0db104435ac003061e103789299720fc49b8b3e8401dabd5130a1ef8663 + md5: 5ff86c0aab697f7ebf36c0be5cde30b9 + sha256: 89f02df4fe64e8aa2ea9c16d682687c850a9393bfc4b57e71b5758a2ae389e6e category: main optional: false - name: h5py @@ -1072,55 +1072,55 @@ package: platform: win-64 dependencies: cached-property: '' - hdf5: '>=2.1.0,<3.0a0' - numpy: '>=1.23,<3' + hdf5: '>=2.2.0,<3.0a0' + numpy: '>=1.25,<3' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/h5py-3.16.0-nompi_py312h5ddec8c_102.conda + url: https://repo.prefix.dev/conda-forge/win-64/h5py-3.16.0-nompi_py312h5ddec8c_104.conda hash: - md5: c1973eb20afef124242b807fd28dea43 - sha256: 721837b0a457a399d43a431fb55203f5b0adc640c7ffa453d0aa921f9b61f1c9 + md5: 96ec291f7612ee9cb0c39ec6d424b2e9 + sha256: 04d09361c1575d4637dd33098dd42b147f312a04ba33c148916cece7bc163b42 category: main optional: false - name: hdf5 - version: 2.1.0 + version: 2.2.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' aws-c-auth: '>=0.10.4,<0.10.5.0a0' - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' aws-c-http: '>=0.11.0,<0.11.1.0a0' - aws-c-io: '>=0.27.3,<0.27.4.0a0' - aws-c-s3: '>=0.12.8,<0.12.9.0a0' + aws-c-io: '>=0.27.5,<0.27.6.0a0' + aws-c-s3: '>=0.13.1,<0.13.2.0a0' aws-c-sdkutils: '>=0.2.7,<0.2.8.0a0' libaec: '>=1.1.5,<2.0a0' libcurl: '>=8.21.0,<9.0a0' libgcc: '>=14' libgfortran: '' - libgfortran5: '>=14.3.0' + libgfortran5: '>=14.4.0' libstdcxx: '>=14' libzlib: '>=1.3.2,<2.0a0' openssl: '>=3.5.7,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/hdf5-2.1.0-nompi_h654f344_110.conda + url: https://repo.prefix.dev/conda-forge/linux-64/hdf5-2.2.0-nompi_hc529623_100.conda hash: - md5: 58484580a0f626dbe7d5145f014dbfd4 - sha256: 548411cb10baf1122c46cfef555936c385137d3637b75bd322e7574eda933842 + md5: 336f7fb9af0c49cc246e2cff0992c3c4 + sha256: 786d126bfb33b923dd1341a92c2a3edd0ff5d0a71db8557fca9324ea4e93d677 category: main optional: false - name: hdf5 - version: 2.1.0 + version: 2.2.0 manager: conda platform: win-64 dependencies: aws-c-auth: '>=0.10.4,<0.10.5.0a0' - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' aws-c-http: '>=0.11.0,<0.11.1.0a0' - aws-c-io: '>=0.27.3,<0.27.4.0a0' - aws-c-s3: '>=0.12.8,<0.12.9.0a0' + aws-c-io: '>=0.27.5,<0.27.6.0a0' + aws-c-s3: '>=0.13.1,<0.13.2.0a0' aws-c-sdkutils: '>=0.2.7,<0.2.8.0a0' libaec: '>=1.1.5,<2.0a0' libcurl: '>=8.21.0,<9.0a0' @@ -1129,10 +1129,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/hdf5-2.1.0-nompi_h0d3e4b2_110.conda + url: https://repo.prefix.dev/conda-forge/win-64/hdf5-2.2.0-nompi_hf525611_100.conda hash: - md5: 146134e4db96613ecdc63cf44bec847d - sha256: f6c79581d03d2e2e0cbbb0391d21a149a1f9c311159a9f74c6be8a79e2f696d9 + md5: e8a351f16983732043b55f0a12b2a7d9 + sha256: 44d0cda0efcf783780b7b0b5cece0c4a0bf106bc6db66a1dcde39b409ef0d08d category: main optional: false - name: hpack @@ -1191,10 +1191,10 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' libstdcxx: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/icu-78.3-h54a6638_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/icu-78.3-py310h44b86e0_2.conda hash: - md5: 4ef4b977bb216a3001a3334696a80850 - sha256: d7c260b7e1cf22ce04d6ba8a86eabf4e6c50bc96a5c27fe2ecb32298af3e88eb + md5: 72a381cbad04f24b1c2a43ef707f45b4 + sha256: 9f07834f0c546ab14d885ce0366285f61f44e326c0edd1fc63b8294e113ae432 category: main optional: false - name: icu @@ -1212,27 +1212,27 @@ package: category: main optional: false - name: idna - version: '3.18' + version: '3.19' manager: conda platform: linux-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/idna-3.18-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/idna-3.19-pyhcf101f3_0.conda hash: - md5: 577b04680ae422adb86fc60d7b940659 - sha256: c75632ea624aa450a394f570749420c5a2e0997d0216bc29d5d45b0f39df0426 + md5: a39ae05027e9b707742e41b30d296b75 + sha256: 1c35a59c1545ad0fdaddf1fbde7bcfa6ef41a8d68c3a2b0b4a291be00676163e category: dev optional: true - name: idna - version: '3.18' + version: '3.19' manager: conda platform: win-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/idna-3.18-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/idna-3.19-pyhcf101f3_0.conda hash: - md5: 577b04680ae422adb86fc60d7b940659 - sha256: c75632ea624aa450a394f570749420c5a2e0997d0216bc29d5d45b0f39df0426 + md5: a39ae05027e9b707742e41b30d296b75 + sha256: 1c35a59c1545ad0fdaddf1fbde7bcfa6ef41a8d68c3a2b0b4a291be00676163e category: dev optional: true - name: imagesize @@ -1367,11 +1367,11 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/keyutils-1.6.3-hb9d3cd8_0.conda + libgcc: '>=15' + url: https://repo.prefix.dev/conda-forge/linux-64/keyutils-1.6.3-h7cc23a3_1.conda hash: - md5: b38117a3c920364aff79f870c984b4a3 - sha256: 0960d06048a7185d3542d850986d807c6e37ca2e644342dd0c72feefcf26c2a4 + md5: ba55d1b89fd7775e67de8291029b4059 + sha256: dd053c96dcb0dcfd59422aefea9d2fe937a190167f34fba7893ec1e10a7e8963 category: main optional: false - name: kiwisolver @@ -1414,13 +1414,13 @@ package: __glibc: '>=2.17,<3.0.a0' keyutils: '>=1.6.3,<2.0a0' libedit: '>=3.1.20250104,<4.0a0' - libgcc: '>=14' - libstdcxx: '>=14' + libgcc: '>=15' + libstdcxx: '>=15' openssl: '>=3.5.7,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/krb5-1.22.2-hbde042b_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/krb5-1.22.2-hbc21106_2.conda hash: - md5: 54157a1c8c0bb70f62dd0b17fba7e7f2 - sha256: 9b07046870772f28740e3f6149f09ff222843733087a33c5540b169c6289652d + md5: 53318d715316929a574f83591308b1f8 + sha256: 2a5c38c85e63df84c4e69ee71439841ce570d259ae3060627bb9a49a938d66f4 category: main optional: false - name: krb5 @@ -1432,10 +1432,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/krb5-1.22.2-h719d79b_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/krb5-1.22.2-h719d79b_2.conda hash: - md5: 00335c2c4a98656554771aaf6f1a7400 - sha256: c55745796e762ba9e817ab1fc0f21f1a049e202f90fa762df39578f37923f6c2 + md5: 93f5a01dec294a2228f757fe2f3432d4 + sha256: 63ff03324e903eb01a715ccf357df56d66224e61952fd6615d86490ebefb3285 category: main optional: false - name: lcms2 @@ -1543,11 +1543,11 @@ package: manager: conda platform: linux-64 dependencies: - mkl: '>=2026.0.0,<2027.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libblas-3.11.0-8_h5875eb1_mkl.conda + mkl: '>=2026.1.0,<2027.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/libblas-3.11.0-9_h5875eb1_mkl.conda hash: - md5: 8ae84a87356b604a62f1aee136ef8efb - sha256: e30f7fa2a2fb6985f9ac6604575cb318b9ae44e263f6cacc282daee9dbd6127d + md5: 1c05815b5b3742a5f4398d94fec7aa11 + sha256: a8c8b832fb56469221612e1f33c1c01868146c85721966b663a35d4248121e7e category: main optional: false - name: libblas @@ -1555,11 +1555,11 @@ package: manager: conda platform: win-64 dependencies: - mkl: '>=2026.0.0,<2027.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/libblas-3.11.0-8_h8455456_mkl.conda + mkl: '>=2026.1.0,<2027.0a0' + url: https://repo.prefix.dev/conda-forge/win-64/libblas-3.11.0-9_h8455456_mkl.conda hash: - md5: 4a0ce24b1a946ff77ae9eaa7ef015a33 - sha256: 43a87b59e6d4c68d80b2e4de487b1b54d66fe1f9a06636909b5a5ab9eae27269 + md5: 17b26a4ad064259983bec1eaa36f40d3 + sha256: a99c640f10a3f77efe5c6605676ddc8d365d020eec4fdf1c803d34bdaf49b357 category: main optional: false - name: libbrotlicommon @@ -1568,11 +1568,11 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlicommon-1.2.0-hb03c661_1.conda + libgcc: '>=15' + url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlicommon-1.2.0-h39a168f_3.conda hash: - md5: 72c8fd1af66bd67bf580645b426513ed - sha256: 318f36bd49ca8ad85e6478bd8506c88d82454cc008c1ac1c6bf00a3c42fa610e + md5: 7a2499a177753582fb7ae7e9dc4a908a + sha256: e5864f257f839ffc27d681659bac95901f524f602b9121e5dcc5e2df18437f2d category: main optional: false - name: libbrotlicommon @@ -1583,10 +1583,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libbrotlicommon-1.2.0-hfd05255_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/libbrotlicommon-1.2.0-hf02afa3_3.conda hash: - md5: 444b0a45bbd1cb24f82eedb56721b9c4 - sha256: 5097303c2fc8ebf9f9ea9731520aa5ce4847d0be41764edd7f6dee2100b82986 + md5: 8ef4beb3cb18e1a876b9af9a757cc1a5 + sha256: c739589318a1f8a88cd1b66d385176fd1ec2c4609e9f90d23d748be94b547e4e category: main optional: false - name: libbrotlidec @@ -1596,11 +1596,11 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libbrotlicommon: 1.2.0 - libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlidec-1.2.0-hb03c661_1.conda + libgcc: '>=15' + url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlidec-1.2.0-ha411449_3.conda hash: - md5: 366b40a69f0ad6072561c1d09301c886 - sha256: 12fff21d38f98bc446d82baa890e01fd82e3b750378fedc720ff93522ffb752b + md5: 6ab3315dc56618d652c1da42a648a129 + sha256: dad31b6d104973deb89710929a35651033aad692d4e7793cdb5b786a9bd54678 category: main optional: false - name: libbrotlidec @@ -1612,10 +1612,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libbrotlidec-1.2.0-hfd05255_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/libbrotlidec-1.2.0-h84f9c24_3.conda hash: - md5: 450e3ae947fc46b60f1d8f8f318b40d4 - sha256: 3239ce545cf1c32af6fffb7fc7c75cb1ef5b6ea8221c66c85416bb2d46f5cccb + md5: 10c479888ee4e960587967b2d0c8143a + sha256: f4bdb7ec97c3122e531fc867efae5ec928b649d047aa70d42893f0d8eb110fd9 category: main optional: false - name: libbrotlienc @@ -1625,11 +1625,11 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libbrotlicommon: 1.2.0 - libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlienc-1.2.0-hb03c661_1.conda + libgcc: '>=15' + url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlienc-1.2.0-h018ffa1_3.conda hash: - md5: 4ffbb341c8b616aa2494b6afb26a0c5f - sha256: a0c15c79997820bbd3fbc8ecf146f4fe0eca36cc60b62b63ac6cf78857f1dd0d + md5: 2ac965638d4c6b2b38383bb1aebaf543 + sha256: d37124d0f51816e7d5e3a94bfc9ed3d6174d077f9b4f832d20c5a08b52bebf1f category: main optional: false - name: libbrotlienc @@ -1641,10 +1641,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libbrotlienc-1.2.0-hfd05255_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/libbrotlienc-1.2.0-he2a975b_3.conda hash: - md5: ccd93cfa8e54fd9df4e83dbe55ff6e8c - sha256: 3226df6b7df98734440739f75527d585d42ca2bfe912fbe8d1954c512f75341a + md5: cb5d08dc81f52e87c27914b5636cd995 + sha256: c5e638ea9704c94b316238b425a3439ba38d4d8fba81682842e6d7d464472848 category: main optional: false - name: libcblas @@ -1653,10 +1653,10 @@ package: platform: linux-64 dependencies: libblas: 3.11.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libcblas-3.11.0-8_hfef963f_mkl.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libcblas-3.11.0-9_hfef963f_mkl.conda hash: - md5: 2101410a3915785b2c1595d1ae94e32c - sha256: a3ea22126a74321ddf754a0efaf998486ffb8b9ec69fc735b3f0eacb6ffc8a4e + md5: cbdd209a7b8cef670cc50830428a3b9d + sha256: 8ce1b4cdc6e0feb53c5f8e3cf69b1b2c034f5e2726a4027b2fa6feeb0e7fb93e category: main optional: false - name: libcblas @@ -1665,10 +1665,10 @@ package: platform: win-64 dependencies: libblas: 3.11.0 - url: https://repo.prefix.dev/conda-forge/win-64/libcblas-3.11.0-8_h2a3cdd5_mkl.conda + url: https://repo.prefix.dev/conda-forge/win-64/libcblas-3.11.0-9_h2a3cdd5_mkl.conda hash: - md5: 09f1d8e4d2675d34ad2acb115211d10c - sha256: 2a5b6555b481df4603e44cba49a6ef727584fd2f3c5235dd4bcb3028fffbdfb5 + md5: 9d1d0c22e9ed8c31ec2efc0d063d6f48 + sha256: 8c20714bbb85c8a109e9002e76c32be64a82d9867beb1a35a20c85258cc2b535 category: main optional: false - name: libcurl @@ -1678,17 +1678,17 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' krb5: '>=1.22.2,<1.23.0a0' - libgcc: '>=14' + libgcc: '>=15' libnghttp2: '>=1.68.1,<2.0a0' - libpsl: '>=0.22.0,<0.23.0a0' + libpsl: '>=0.23.1,<0.24.0a0' libssh2: '>=1.11.1,<2.0a0' libzlib: '>=1.3.2,<2.0a0' openssl: '>=3.5.7,<4.0a0' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libcurl-8.21.0-hae6b9f4_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libcurl-8.21.0-ha042cf0_5.conda hash: - md5: f9c59d277a16ec8f272b2d5dd2ec3335 - sha256: ba8354084b34fce56d5697982fce4a384c148e972e15c0ab891187617fe7ec29 + md5: 0ed167049513943d078a6c997df2b4e0 + sha256: 0b6cc13e36cf19ae9b764740112fc591682e189c99353be9f72f3d96ccf29d79 category: main optional: false - name: libcurl @@ -1697,16 +1697,16 @@ package: platform: win-64 dependencies: krb5: '>=1.22.2,<1.23.0a0' - libpsl: '>=0.22.0,<0.23.0a0' + libpsl: '>=0.23.1,<0.24.0a0' libssh2: '>=1.11.1,<2.0a0' libzlib: '>=1.3.2,<2.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libcurl-8.21.0-h51a1c48_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/libcurl-8.21.0-hdb0ef4a_5.conda hash: - md5: 88c875a8f34785d6f6185ceb646154fa - sha256: e9a9231e6c04b82979a6a1a4f90b8a697dc3a42884e709dee8ba5d0355b45296 + md5: 50861643cbe90dc7267feb7854b8efdf + sha256: bf5445ab8acfaccaf511d774f131cf0d99c5eef6b8def270e832ad26970d5011 category: main optional: false - name: libdeflate @@ -1716,10 +1716,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libdeflate-1.25-h17f619e_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libdeflate-1.25-hd45a770_1.conda hash: - md5: 6c77a605a7a689d17d4819c0f8ac9a00 - sha256: aa8e8c4be9a2e81610ddf574e05b64ee131fab5e0e3693210c9d6d2fba32c680 + md5: 40f9b31aa9cf007789867df0decd0492 + sha256: 82e134c8a08b1eed9a2ed8ab578b89aa1730dcde3dea8dd87645ed0637878e54 category: main optional: false - name: libdeflate @@ -1730,10 +1730,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libdeflate-1.25-h51727cc_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libdeflate-1.25-h1a1d4e4_1.conda hash: - md5: e77030e67343e28b084fabd7db0ce43e - sha256: 834e4881a18b690d5ec36f44852facd38e13afe599e369be62d29bd675f107ee + md5: e4e122e124676a49eebf241399ad8393 + sha256: af1cda21d4653f594fbef20aa4e1ff158a546902b3307ef8af9a9b44b43862d2 category: main optional: false - name: libedit @@ -1742,12 +1742,12 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - ncurses: '>=6.5,<7.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.conda + libgcc: '>=14' + ncurses: '>=6.6,<7.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/libedit-3.1.20250104-pl5321h373387f_1.conda hash: - md5: c277e0a4d549b03ac1e9d6cbbe3d017b - sha256: d789471216e7aba3c184cd054ed61ce3f6dac6f87a50ec69291b9297f8c18724 + md5: 50708d3b951d0f8e2d7f2df5b5edc040 + sha256: 6473eb8caf2aae830f37caa93db9b26dddf7ac84b63229e8bf7fc0e5c3ab95b0 category: main optional: false - name: libev @@ -1755,11 +1755,12 @@ package: manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - url: https://repo.prefix.dev/conda-forge/linux-64/libev-4.33-hd590300_2.conda + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/libev-4.33-h280c20c_3.conda hash: - md5: 172bf1cd1ff8629f2b1179945ed45055 - sha256: 1cd6048169fa0395af74ed5d8f1716e22c19a81a8a36f934c110ca3ad4dd27b4 + md5: 7bc31538d6e3fb349e897353969237ec + sha256: e4418f68d01a6307c4431b585c71b584f40189877364e542ee87deb777f5e85b category: main optional: false - name: libexpat @@ -1790,30 +1791,30 @@ package: category: main optional: false - name: libffi - version: 3.5.2 + version: 3.7.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libffi-3.5.2-h3435931_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libffi-3.7.0-h3435931_0.conda hash: - md5: a360c33a5abe61c07959e449fa1453eb - sha256: 31f19b6a88ce40ebc0d5a992c131f57d919f73c0b92cd1617a5bec83f6e961e6 + md5: 0abe40a9880086ca4d2e5daf09dceff9 + sha256: ac38603008bf1e99b8ed379b1a656a67a70e2841f2b6a069c630cdf6316012d2 category: main optional: false - name: libffi - version: 3.5.2 + version: 3.7.0 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libffi-3.5.2-h3d046cb_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libffi-3.7.0-h3d046cb_0.conda hash: - md5: 720b39f5ec0610457b725eb3f396219a - sha256: 59d01f2dfa8b77491b5888a5ab88ff4e1574c9359f7e229da254cdfe27ddc190 + md5: 92bdfc0e5012660892b0e0eaf3069a5c + sha256: 2ea8d2fe7b84ca37653777e15ac1e7abd35f0c90d3efbe7f6c4de9b489606369 category: main optional: false - name: libfreetype @@ -1822,10 +1823,10 @@ package: platform: linux-64 dependencies: libfreetype6: '>=2.14.3' - url: https://repo.prefix.dev/conda-forge/linux-64/libfreetype-2.14.3-ha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libfreetype-2.14.3-ha770c72_2.conda hash: - md5: e289f3d17880e44b633ba911d57a321b - sha256: 38f014a7129e644636e46064ecd6b1945e729c2140e21d75bb476af39e692db2 + md5: f8054e759d0ddddaf34a5c8fedc900a1 + sha256: fb12ecb46c30d18d928c0e8fc346ab13b5f6fc8a9cacae4f2f4bb188782586f5 category: main optional: false - name: libfreetype @@ -1834,10 +1835,10 @@ package: platform: win-64 dependencies: libfreetype6: '>=2.14.3' - url: https://repo.prefix.dev/conda-forge/win-64/libfreetype-2.14.3-h57928b3_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/libfreetype-2.14.3-h57928b3_2.conda hash: - md5: e45b52fb9a81c9e2708465a706e05952 - sha256: 035d0c67bf9f7a16f4a1764f420c120f1a995d071bb265fcc66ef688ef709d7b + md5: 740f99c3c91079c03874b809fedace1b + sha256: d794d7fddb6eea50e18a62fa27ab3819f40d51bad00b90cf4ca591fb0d4006c2 category: main optional: false - name: libfreetype6 @@ -1846,13 +1847,13 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' - libpng: '>=1.6.55,<1.7.0a0' + libgcc: '>=15' + libpng: '>=1.6.58,<1.7.0a0' libzlib: '>=1.3.2,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libfreetype6-2.14.3-h73754d4_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libfreetype6-2.14.3-h5e6c136_2.conda hash: - md5: fb16b4b69e3f1dcfe79d80db8fd0c55d - sha256: 16f020f96da79db1863fcdd8f2b8f4f7d52f177dd4c58601e38e9182e91adf1d + md5: b72a266a9317036fd0464cb98b027cd0 + sha256: ec607dd5445dd17ff6bf8b7fe6832e5504c226dd91d3aaea7ba83569808b0ce4 category: main optional: false - name: libfreetype6 @@ -1865,85 +1866,85 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libfreetype6-2.14.3-hdbac1cb_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/libfreetype6-2.14.3-hdbac1cb_2.conda hash: - md5: 4e4d54f9f98383d977ba56ef39ebf46d - sha256: 0bbd19c9f7c4d0232b31892e6a4d1f82b8d19d1b84d89725f1f491b336447758 + md5: 8157483eb7ed3fcba71aad3b50a97131 + sha256: cbc650854003e434d4ff6c7b1a2667e38a4242ad8a391a1c5ff89721624065ce category: main optional: false - name: libgcc - version: 15.2.0 + version: 16.1.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' _openmp_mutex: '>=4.5' - url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-15.2.0-he0feb66_20.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-16.1.0-ha9f2e26_3.conda hash: - md5: 3533de187cf7283f96bfdb28ad73e2bc - sha256: e3b7bb287d1685b15781a6d9e3408d6ddaff23f5a1d0d6c0140619dd3950fe72 + md5: c471b242d299f8bc1e2b3e0f6e9f4b77 + sha256: af35751596409fc1a1a81a32b7f1e195bca7f648dfe7c64f8ec4848b3a5003f8 category: main optional: false - name: libgcc - version: 15.2.0 + version: 16.1.0 manager: conda platform: win-64 dependencies: _openmp_mutex: '>=4.5' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' - url: https://repo.prefix.dev/conda-forge/win-64/libgcc-15.2.0-h8ee18e1_20.conda + url: https://repo.prefix.dev/conda-forge/win-64/libgcc-16.1.0-h110b43a_3.conda hash: - md5: 00528c2577868b9cfefec85b8fe26d66 - sha256: 954dcca1cbf2ad1e7ac2129bf77f787bec0a2eb9edb3f8b79c9a93b492a20c40 + md5: e8d20d3561601e827dc754481294f40c + sha256: 125a3ea39e7308680a494416c5b8868bafefafc5f82987fae282c300614d979e category: main optional: false - name: libgcc-ng - version: 15.2.0 + version: 16.1.0 manager: conda platform: linux-64 dependencies: - libgcc: 15.2.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-ng-15.2.0-h69a702a_20.conda + libgcc: 16.1.0 + url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-ng-16.1.0-h69a702a_3.conda hash: - md5: c099368d009e4d828449eaed7b2cb701 - sha256: e01a2a027fceea1011d2e74307845fb0c4bd6d195ff27fbf5baeafa55531d128 + md5: 824e26366da140518fdc55816eaef929 + sha256: d3368af8b654073a0937fc7d3add75dbd09aae0b6e225596685756885b171309 category: main optional: false - name: libgfortran - version: 15.2.0 + version: 16.1.0 manager: conda platform: linux-64 dependencies: - libgfortran5: 15.2.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran-15.2.0-h69a702a_20.conda + libgfortran5: 16.1.0 + url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran-16.1.0-h69a702a_3.conda hash: - md5: a450a08a63f940e9aa7b37692e71196a - sha256: 76d81032e264b74f519cc26962d5eb39547e0785fc9d2957bbc12e7a91214412 + md5: 3eae88e54adbd0448f865a74b2771192 + sha256: 0731a92037731af603b3653a67ffc98e07efc65765ebb603aa2e8fd1250ef21b category: main optional: false - name: libgfortran5 - version: 15.2.0 + version: 16.1.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=15.2.0' - url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran5-15.2.0-h68bc16d_20.conda + libgcc: '>=16.1.0' + url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran5-16.1.0-h79bb938_3.conda hash: - md5: 4edbcbea1a8790a7d58e648523b69546 - sha256: 95122f42566dc9a62b9615d2372b3f3c75fa7bd8bb1eda53aa7532ce60d545eb + md5: 0f1c5c900eb7fbee86871c1f80dbccd3 + sha256: 879e354ea894fe36c18160b000e35316cb3f196ff597f30dca209027ecf0fac2 category: main optional: false - name: libgomp - version: 15.2.0 + version: 16.1.0 manager: conda platform: win-64 dependencies: libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' - url: https://repo.prefix.dev/conda-forge/win-64/libgomp-15.2.0-h8ee18e1_20.conda + url: https://repo.prefix.dev/conda-forge/win-64/libgomp-16.1.0-h8ee18e1_3.conda hash: - md5: 3b2b211930103e49d77da1a7d9ea9af9 - sha256: 33606594501174cc1677c7dbe39de739c2f04e9a8ddbd95aa82e48d1bd79b388 + md5: fa88e8a67d2f6370f7b3cd45e8861dfd + sha256: 6ede93ef60404209453cddf8f1cae5b8d05dcc0c39e1021db1dace88db7543cf category: main optional: false - name: libhwloc @@ -1985,11 +1986,11 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libiconv-1.18-h3b78370_2.conda + libgcc: '>=15' + url: https://repo.prefix.dev/conda-forge/linux-64/libiconv-1.18-h0cb94f2_3.conda hash: - md5: 915f5995e94f60e9a4826e0b0920ee88 - sha256: c467851a7312765447155e071752d7bf9bf44d610a5687e32706f480aad2833f + md5: f92233bf33e24a25668bb2119e2c51f9 + sha256: f943117edb9cd4d9c61cc972eee5a34291dc55ea7a6e9e38da104995841cbcb6 category: main optional: false - name: libiconv @@ -2000,10 +2001,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libiconv-1.18-hc1393d2_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/libiconv-1.18-hc1393d2_3.conda hash: - md5: 64571d1dd6cdcfa25d0664a5950fdaa2 - sha256: 0dcdb1a5f01863ac4e8ba006a8b0dc1a02d2221ec3319b5915a1863254d7efa7 + md5: a8a2abdf0f901bc4779d9b7be0845921 + sha256: 35e04e3ddac7720fc7c550a1c9f998604299d6a7bd1f3ec9b2825d825061daa2 category: main optional: false - name: libjpeg-turbo @@ -2013,10 +2014,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libjpeg-turbo-3.2.0-hb03c661_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libjpeg-turbo-3.2.0-hb03c661_1.conda hash: - md5: 466badda5536d85ddc63ee9404f29735 - sha256: 716332fd31b3808da7a4235a05212a9e9da05e854864c3def2dea0b5d2bf7610 + md5: 898d1c9793eaa52efc4727bd84d2e39a + sha256: bba8538e6538ed58a8479b332337b96986561f975d06cfa2039a016c2d246ee4 category: main optional: false - name: libjpeg-turbo @@ -2027,10 +2028,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libjpeg-turbo-3.2.0-hfd05255_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libjpeg-turbo-3.2.0-hfd05255_1.conda hash: - md5: cf219146d5bf2fee5907409ff9f5ac89 - sha256: 3d6635efa9497b9c5ba7957df8067c0a980d5cb10a6ea136931809eb410f8a99 + md5: fc2c23bacefd1e733f1e1d6cd3b2aaeb + sha256: df78ab4c0eecb3dd9331898f96baeed8e5ca1c363346332517abeb0b614b9a53 category: main optional: false - name: liblapack @@ -2039,10 +2040,10 @@ package: platform: linux-64 dependencies: libblas: 3.11.0 - url: https://repo.prefix.dev/conda-forge/linux-64/liblapack-3.11.0-8_h5e43f62_mkl.conda + url: https://repo.prefix.dev/conda-forge/linux-64/liblapack-3.11.0-9_h5e43f62_mkl.conda hash: - md5: 370e81464714060008e60ee53825bb3e - sha256: 0cb26d433dfa15a392eaeeb8a96ac468f4d007d7e7e37ef7bf46856aaf9a9785 + md5: 255025c2d2df85b72c9ab3105f7611e4 + sha256: 3060d9393e7013a192eb55354def1a522348baa57c3ce4dc9cb904bf392a9ac1 category: main optional: false - name: liblapack @@ -2051,10 +2052,10 @@ package: platform: win-64 dependencies: libblas: 3.11.0 - url: https://repo.prefix.dev/conda-forge/win-64/liblapack-3.11.0-8_hf9ab0e9_mkl.conda + url: https://repo.prefix.dev/conda-forge/win-64/liblapack-3.11.0-9_hf9ab0e9_mkl.conda hash: - md5: d584799b920ecae9b75a2b70743a3de7 - sha256: 44999ed04bc0a56de44ee0ac8bd5b3702efd411a8b29491c0e3d3deb8619c94e + md5: bee6f13ab945c4034bdd0f722ad14dd5 + sha256: 62d0a7a70ee13c554d5d7ff94a2ba758c4111439822dcc81324dd4cfaf576071 category: main optional: false - name: liblzma @@ -2064,10 +2065,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/liblzma-5.8.3-hb03c661_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/liblzma-5.8.3-hb03c661_1.conda hash: - md5: b88d90cad08e6bc8ad540cb310a761fb - sha256: ec30e52a3c1bf7d0425380a189d209a52baa03f22fb66dd3eb587acaa765bd6d + md5: 1390b7c5ac0b1d8e447bc5efa6d3c8c2 + sha256: 9787df8c22a59c9a70d3e5a10db9ad663485e75e9ccc3f09bd092cb7b95e0dab category: main optional: false - name: liblzma @@ -2078,10 +2079,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/liblzma-5.8.3-hfd05255_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/liblzma-5.8.3-hfd05255_1.conda hash: - md5: 8f83619ab1588b98dd99c90b0bfc5c6d - sha256: d636d1a25234063642f9c531a7bb58d84c1c496411280a36ea000bd122f078f1 + md5: 880a0c8549479b198af21ba5dc49b109 + sha256: d36c4a1e1f80fd08e18a407e03622ff2f34dfdd022da6488ad19603dea19e6d5 category: main optional: false - name: libnghttp2 @@ -2090,16 +2091,16 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - c-ares: '>=1.34.6,<2.0a0' + c-ares: '>=1.34.8,<2.0a0' libev: '>=4.33,<5.0a0' - libgcc: '>=14' - libstdcxx: '>=14' - libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.5.5,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libnghttp2-1.68.1-h877daf1_0.conda + libgcc: '>=15' + libstdcxx: '>=15' + libzlib: '>=1.3.2,<2.0a0' + openssl: '>=3.5.7,<4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/libnghttp2-1.68.1-h74cf4be_1.conda hash: - md5: 2a45e7f8af083626f009645a6481f12d - sha256: 663444d77a42f2265f54fb8b48c5450bfff4388d9c0f8253dd7855f0d993153f + md5: 75d211f04ac87506f1f43420712a69fe + sha256: 11a2f54a6f391e25738bce0023e6ef499600147bbcf21c1fa69d2e251b03cc6a category: main optional: false - name: libnsl @@ -2121,12 +2122,12 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' + libgcc: '>=15' libzlib: '>=1.3.2,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libpng-1.6.58-h421ea60_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libpng-1.6.58-h922cc85_1.conda hash: - md5: eba48a68a1a2b9d3c0d9511548db85db - sha256: 377cfe037f3eeb3b1bf3ad333f724a64d32f315ee1958581fc671891d63d3f89 + md5: fcf71c8d979148873f6f8ad4cfc73d86 + sha256: c19eefb87d70d9b4b0629fa48414a155a47a1be4f04583ae71ed8c5a9a32fdcb category: main optional: false - name: libpng @@ -2138,29 +2139,29 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libpng-1.6.58-h7351971_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libpng-1.6.58-hdc8cecf_1.conda hash: - md5: 52f1280563f3b48b5f75414cd2d15dd1 - sha256: 218913aeee391460bd0e341b834dbd9c6fa6ae0a4276c0c300266cc99a816a28 + md5: 5aa7348e73691187c81d51616f17e48a + sha256: 8c49c32adf3ba2c59783630b82377f54ab72204ea99e2bafc90a47a8e25c1032 category: main optional: false - name: libpsl - version: 0.22.0 + version: 0.23.1 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' icu: '>=78.3,<79.0a0' - libgcc: '>=14' - libstdcxx: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libpsl-0.22.0-h49b2146_1.conda + libgcc: '>=15' + libstdcxx: '>=15' + url: https://repo.prefix.dev/conda-forge/linux-64/libpsl-0.23.1-hd9e3e90_1.conda hash: - md5: af5ddfb52ad25d833c70c7511478d4eb - sha256: 71118885feab91c61bea4e9532ec46e0653b24f02e563681f822915aee8435bb + md5: 77be60417aa572afcb48cbe0f967401d + sha256: 09e8effdc89bc5d021349318d32b85594f5b8d8e3ab8f90a85b81f8fe695a566 category: main optional: false - name: libpsl - version: 0.22.0 + version: 0.23.1 manager: conda platform: win-64 dependencies: @@ -2168,10 +2169,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libpsl-0.22.0-h25e0afd_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/libpsl-0.23.1-h9b16d47_1.conda hash: - md5: ba200e33e10ccf0d730c4ce87badbdf1 - sha256: 040d4adabae2634b13183203e383c21f74ed98028b5d50bf9bae4968dd05aaa5 + md5: 39cdf8c4f59e4d253cfa8091c8b3d7de + sha256: e53fe3b09f82b59b644264133d6d148ac31bb5451b7583cff55690bf038f2f62 category: main optional: false - name: libsqlite @@ -2181,12 +2182,12 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' icu: '>=78.3,<79.0a0' - libgcc: '>=14' + libgcc: '>=15' libzlib: '>=1.3.2,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.53.4-hf4e2dac_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.53.4-h13e7031_1.conda hash: - md5: df088a279cd5e6fd2790b4c196434da1 - sha256: 72023efc207fe681e26b65fc9d668062cf0b4f0eacf3431e6eb099b95c1f2efd + md5: e72bbec309c2b0f37823ee7d4fabfcd3 + sha256: f20d70da54e5b31dd4a51fb1efeaafafd5ab6dd8d7ac9d1438eaa2526ac4ed3d category: main optional: false - name: libsqlite @@ -2197,10 +2198,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.53.4-hf5d6505_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.53.4-hf5d6505_1.conda hash: - md5: ca0d59f40a02a15e9b5d0ff8db0f85e3 - sha256: 62e1c45ec71ab2e5deeeb0e47e7df6a609991e91d46348f16df50c68fee145c8 + md5: a72d495965b144bb7da033642d389047 + sha256: 0a45d7c0f20146fff787a106f8fa187872e309c70975ff8f0936e188914c26ad category: main optional: false - name: libssh2 @@ -2209,13 +2210,13 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.5.0,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libssh2-1.11.1-hcf80075_0.conda + libgcc: '>=14' + libzlib: '>=1.3.2,<2.0a0' + openssl: '>=3.5.7,<4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/libssh2-1.11.1-h6154650_1.conda hash: - md5: eecce068c7e4eddeb169591baac20ac4 - sha256: fa39bfd69228a13e553bd24601332b7cfeb30ca11a3ca50bb028108fe90a7661 + md5: 5c526561e1d2a2e071941174eae84557 + sha256: 7e463000fa1cba3f3a6597b776f6ab301d425a96e3bc20d0d9d76a3b9f237aa3 category: main optional: false - name: libssh2 @@ -2223,40 +2224,40 @@ package: manager: conda platform: win-64 dependencies: - libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.5.0,<4.0a0' + libzlib: '>=1.3.2,<2.0a0' + openssl: '>=3.5.7,<4.0a0' ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libssh2-1.11.1-h9aa295b_0.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/libssh2-1.11.1-h734d217_1.conda hash: - md5: 9dce2f112bfd3400f4f432b3d0ac07b2 - sha256: cbdf93898f2e27cefca5f3fe46519335d1fab25c4ea2a11b11502ff63e602c09 + md5: a21dd9ca39e74910bb96989feb916420 + sha256: 1097b08429b4f53f5751a32c6d99a083d227ca7f7812c0b239eea124cec073a0 category: main optional: false - name: libstdcxx - version: 15.2.0 + version: 16.1.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: 15.2.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-15.2.0-h934c35e_20.conda + libgcc: 16.1.0 + url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-16.1.0-h934c35e_3.conda hash: - md5: fbd3d5506b11b5cfc916b29263b6b6f7 - sha256: b5eadda8fb0df262f0d424c4a0c8c1c8d65d904ce622f07936c793ea1b8a39d9 + md5: 470d16b28d90ad4368df1aa5bc7ec18d + sha256: 6e98c0283244b5f8bbc0e86f7cba4d4921136bfbabf8da42b898a7a1f10be949 category: main optional: false - name: libstdcxx-ng - version: 15.2.0 + version: 16.1.0 manager: conda platform: linux-64 dependencies: - libstdcxx: 15.2.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-15.2.0-hdf11a46_20.conda + libstdcxx: 16.1.0 + url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-16.1.0-hdf11a46_3.conda hash: - md5: 593dc263426eb14f16dc594bfdb9772a - sha256: 0b79903234f68410c11c33cb9829f7b3cb01a9ff2f42bf083dd2c51e886e6077 + md5: 3e4550b8d69e0477b618825525189cfc + sha256: 11df057f95c6d9c52ba16fd291b1608eb3ccf7eedf0c8647a8048c9416449e26 category: main optional: false - name: libtiff @@ -2320,10 +2321,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libwebp-base-1.6.0-hd42ef1d_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libwebp-base-1.6.0-hd42ef1d_1.conda hash: - md5: aea31d2e5b1091feca96fcfe945c3cf9 - sha256: 3aed21ab28eddffdaf7f804f49be7a7d701e8f0e46c856d801270b470820a37b + md5: 9332b53d0ea93c5d39e33be03a0c611a + sha256: 8415001414f488c85b72b9d8cc2071dfb3981a47bc3c8eb56ef91a57d12eae7f category: main optional: false - name: libwebp-base @@ -2334,10 +2335,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libwebp-base-1.6.0-h4d5522a_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libwebp-base-1.6.0-h4d5522a_1.conda hash: - md5: f9bbae5e2537e3b06e0f7310ba76c893 - sha256: 7b6316abfea1007e100922760e9b8c820d6fc19df3f42fb5aca684cfacb31843 + md5: 35a9475e4cc999d52921f57c181979fc + sha256: 4470d98d3178b0d45492eed4808afe421d2e7808352b8d06c2dc29166b75d94d category: main optional: false - name: libwinpthread @@ -2346,10 +2347,10 @@ package: platform: win-64 dependencies: ucrt: '' - url: https://repo.prefix.dev/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h57928b3_10.conda + url: https://repo.prefix.dev/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h11686cb_11.conda hash: - md5: 8a86073cf3b343b87d03f41790d8b4e5 - sha256: 0fccf2d17026255b6e10ace1f191d0a2a18f2d65088fd02430be17c701f8ffe0 + md5: fc1e6626817ba55a0d141858d6c0ef5d + sha256: 988c8fe5fca9e3510fd0b5671d67ae42c1fd632f8bd28f832a6735970eb69a36 category: main optional: false - name: libxcb @@ -2358,14 +2359,14 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' + libgcc: '>=15' pthread-stubs: '' - xorg-libxau: '>=1.0.11,<2.0a0' - xorg-libxdmcp: '' - url: https://repo.prefix.dev/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda + xorg-libxau: '>=1.0.12,<2.0a0' + xorg-libxdmcp: '>=1.1.5,<2.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/libxcb-1.17.0-hb83e432_1.conda hash: - md5: 92ed62436b625154323d40d5f2f11dd7 - sha256: 666c0c431b23c6cec6e492840b176dde533d48b7e6fb8883f5071223433776aa + md5: 64e856c420205b009da26471d3ac161d + sha256: ce25a1efa85a78a3ce3b16721d9c36153814adbf2fb004a15f72ec69894b4cb1 category: main optional: false - name: libxcb @@ -2377,24 +2378,25 @@ package: libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' pthread-stubs: '' ucrt: '>=10.0.20348.0' - xorg-libxau: '>=1.0.11,<2.0a0' - xorg-libxdmcp: '' - url: https://repo.prefix.dev/conda-forge/win-64/libxcb-1.17.0-h0e4246c_0.conda + xorg-libxau: '>=1.0.12,<2.0a0' + xorg-libxdmcp: '>=1.1.5,<2.0a0' + url: https://repo.prefix.dev/conda-forge/win-64/libxcb-1.17.0-h874e120_1.conda hash: - md5: a69bbf778a462da324489976c84cfc8c - sha256: 08dec73df0e161c96765468847298a420933a36bc4f09b50e062df8793290737 + md5: 98046512ad7f2c44e48ff77bce854052 + sha256: a99f266ade1140c3106cca0f71ae2b5627ff77e1e791db3837129d28d596800e category: main optional: false - name: libxcrypt - version: 4.4.36 + version: 4.4.38 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - url: https://repo.prefix.dev/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/libxcrypt-4.4.38-h280c20c_0.conda hash: - md5: 5aa797f8787fe7a17d1b0821485b5adc - sha256: 6ae68e0b86423ef188196fff6207ed0c8195dd84273cb5623b85aa08033a410c + md5: f7a7ff5a6ab331e037abd34f379a631d + sha256: f7e9292dd219a6435bbb1223da9586c3e70d66d169c5a92f08db3f2127df04e9 category: main optional: false - name: libxml2 @@ -2409,10 +2411,10 @@ package: liblzma: '>=5.8.3,<6.0a0' libxml2-16: 2.15.3 libzlib: '>=1.3.2,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libxml2-2.15.3-h49c6c72_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libxml2-2.15.3-h49c6c72_1.conda hash: - md5: 995d8c8bad2a3cc8db14675a153dec2b - sha256: 3bc5551720c58591f6ea1146f7d1539c734ed1c40e7b9f5cb8cb7e900c509aba + md5: 2d34cdb31014cbc8f1e9384c89ede0a5 + sha256: a16a576a5844a3a0e1cdfc5e162b9fe9c64dccf6a93f44c293bb42851aebe2b4 category: main optional: false - name: libxml2 @@ -2428,10 +2430,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libxml2-2.15.3-h8ef44ab_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libxml2-2.15.3-h8ef44ab_1.conda hash: - md5: 95591ca5671d2213f5b2d5aa7818420d - sha256: a4599c6bbbbdd7db570896e520c557eec8e66d94e839a59d17dc1f24a3d5f82b + md5: 45a5a1c709a69f14cf176220788d18a9 + sha256: a83e9adcf7c50f20289dc6890707c8e4e84151b4204b0f7344998138807458d1 category: main optional: false - name: libxml2-16 @@ -2445,10 +2447,10 @@ package: libiconv: '>=1.18,<2.0a0' liblzma: '>=5.8.3,<6.0a0' libzlib: '>=1.3.2,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libxml2-16-2.15.3-hca6bf5a_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libxml2-16-2.15.3-hca6bf5a_1.conda hash: - md5: e79d2c2f24b027aa8d5ab1b1ba3061e7 - sha256: 3d44f737c5ae52d5af32682cc1530df433f401f8e58a7533926536244127572a + md5: 20e4d67ec908f0405124f11612c48305 + sha256: 087d4de023f22d6a28b9e1b818961dd41e9bda6e9793590600ff16ca150bf9cb category: main optional: false - name: libxml2-16 @@ -2463,10 +2465,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libxml2-16-2.15.3-h3cfd58e_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libxml2-16-2.15.3-h3cfd58e_1.conda hash: - md5: 9e8dd0d90ed830107b2c36801035b7db - sha256: 3b61ee3caba702d2ff432fa3920835db963026e5c99c4e6fdca0c6114f59e7ce + md5: 6e7dadff3f3bde2d29d29a3ec34f2d58 + sha256: 8163de24a7ddb4ebf9587c3a45ba950caf3690b9646b76f007ca15e6e52b5881 category: main optional: false - name: libzlib @@ -2475,10 +2477,10 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libzlib-1.3.2-h25fd6f3_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libzlib-1.3.2-h25fd6f3_3.conda hash: - md5: d87ff7921124eccd67248aa483c23fec - sha256: 55044c403570f0dc26e6364de4dc5368e5f3fc7ff103e867c487e2b5ab2bcda9 + md5: 0de0122d9570a8ab637c6b73db268389 + sha256: eb8a0db0aa570124f7d2a93d7c7f596e3390df5e047818d873baad32985fc736 category: main optional: false - name: libzlib @@ -2489,10 +2491,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libzlib-1.3.2-hfd05255_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/libzlib-1.3.2-hfd05255_3.conda hash: - md5: dbabbd6234dea34040e631f87676292f - sha256: 88609816e0cc7452bac637aaf65783e5edf4fee8a9f8e22bdc3a75882c536061 + md5: 5d2ff29d465097458cc3ff6569151991 + sha256: 0629c2cc0404d3bb29d6baa7b4ba62da80797015e86de050db81ea5a07050527 category: main optional: false - name: llvm-openmp @@ -2501,10 +2503,10 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-22.1.8-h4922eb0_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-22.1.8-h3206bd6_1.conda hash: - md5: 7bbfdc5a6eca997d3b0873a575c3e155 - sha256: a37aba21b85800af1e7c5b04ba76abab96b6e591eedf99dc6e4df83b0fefd7a5 + md5: dc2ace17c0da02fbb8273e139f84e7ce + sha256: cf74ea3b6c8f0c01ae3cea10ff9451e4475eb39ee99a2c0f1f1627630ef888e5 category: main optional: false - name: llvm-openmp @@ -2515,10 +2517,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-22.1.8-h4fa8253_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-22.1.8-h4fa8253_1.conda hash: - md5: de3551bf6508d45ca46b714639e52823 - sha256: 50c02902bb516eeb56680358f052be38b5bf74b40e78ea4b2a675e84957e7307 + md5: 8135c070cad2ee5bb28ea50c12e81ce9 + sha256: 41a804136fdade8cfa9db006f3c41cac1199a387e609c465d779cef271fda85e category: main optional: false - name: markupsafe @@ -2645,12 +2647,11 @@ package: libgcc: '>=14' libstdcxx: '>=14' llvm-openmp: '>=22.1.8' - onemkl-license: 2026.1.0 tbb: '>=2023.0.0' - url: https://repo.prefix.dev/conda-forge/linux-64/mkl-2026.1.0-hecca717_243.conda + url: https://repo.prefix.dev/conda-forge/linux-64/mkl-2026.1.0-hecca717_244.conda hash: - md5: cef284d6d9fe0caf11638f5f0e4f9a64 - sha256: c68967a13488684d87fb7ac77b73c6f3f825f2da403707a14e75374c0ce3629f + md5: 3575c034d908c0567c53ed6a33e9dfd9 + sha256: 0b903cfa21b1a3396b3468d41b8112d49a5bd7ff6642305791caca3af33fbaf2 category: main optional: false - name: mkl @@ -2659,15 +2660,14 @@ package: platform: win-64 dependencies: llvm-openmp: '>=22.1.8' - onemkl-license: 2026.1.0 tbb: '>=2023.0.0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/mkl-2026.1.0-hac47afa_233.conda + url: https://repo.prefix.dev/conda-forge/win-64/mkl-2026.1.0-hac47afa_234.conda hash: - md5: 5afbf28c4ca3e05b5469dbbd78c8e704 - sha256: ff355522fb0b6e33841167d9ca749147c8734d8be07b63b2ce25b0db043f42ed + md5: f0510f9d5e501462d72a5c0c798dbcc3 + sha256: f7568a5ebf9f4a401a6d9da7be4f82a8794cf305e870e77923a5712ba7f4b964 category: main optional: false - name: munkres @@ -2701,10 +2701,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/ncurses-6.6-hdb14827_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/ncurses-6.6-hdb14827_1.conda hash: - md5: fc21868a1a5aacc937e7a18747acb8a5 - sha256: fc89f74bbe362fb29fa3c037697a89bec140b346a2469a90f7936d1d7ea4d8a3 + md5: ee6c0cd80a60961a1f48aa3e0b91f986 + sha256: 5d46557214ed184381dafe835b7c94a474a1c3b307a08a250b1ea4779b44ffb3 category: main optional: false - name: numpy @@ -2745,28 +2745,6 @@ package: sha256: 9abf760418f2497f87715fa35d1c9cea5416be9edd1b166a218dfabe3b16e5be category: main optional: false -- name: onemkl-license - version: 2026.1.0 - manager: conda - platform: linux-64 - dependencies: {} - url: https://repo.prefix.dev/conda-forge/linux-64/onemkl-license-2026.1.0-ha770c72_243.conda - hash: - md5: 2617b8e56c82fe48be8951e7794f08bc - sha256: b560b1106416b7df0041144aad3842e8783e22c70418a46cbcc90fe67a96b229 - category: main - optional: false -- name: onemkl-license - version: 2026.1.0 - manager: conda - platform: win-64 - dependencies: {} - url: https://repo.prefix.dev/conda-forge/win-64/onemkl-license-2026.1.0-h57928b3_233.conda - hash: - md5: 1566e2ce8c3bc23a2feb866c4d9e91e3 - sha256: 96dec1c878d6e6f835be8ed57152a37be9a5104ac79c2425815d71c64cf13ee4 - category: main - optional: false - name: openjpeg version: 2.5.4 manager: conda @@ -2809,10 +2787,10 @@ package: __glibc: '>=2.17,<3.0.a0' ca-certificates: '' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/openssl-3.6.3-h35e630c_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/openssl-3.6.3-h35e630c_1.conda hash: - md5: 79dd2074b5cd5c5c6b2930514a11e22d - sha256: d48f5c22b9897c01e4dff3680f1f57ceb02711ab9c62f74339b080419dfad34b + md5: c5955c27917ff2234def47f075e71e02 + sha256: 012096056b97abf1f68c46b7146bd2cbd68c1be762340b4f5dad4fbbe99177bc category: main optional: false - name: openssl @@ -2824,34 +2802,34 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/openssl-3.6.3-hf411b9b_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/openssl-3.6.3-hf411b9b_1.conda hash: - md5: e99f95734a326c0fd4d02bbd995150d4 - sha256: cb6e7ba0d010ee0d3249ce9886de3d7613d26d9965d4c95666fa66b9c4c31001 + md5: a978392692a910ba1c8920ccb1e784b3 + sha256: 2ebff5a1b5793e82495bf33c91fba040e11ff23333c2385ac66d0c3aee2cc14c category: main optional: false - name: packaging - version: '26.2' + version: '26.3' manager: conda platform: linux-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/packaging-26.2-pyhc364b38_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/packaging-26.3-pyhc364b38_0.conda hash: - md5: 4c06a92e74452cfa53623a81592e8934 - sha256: 3906abfb6511a3bb309e39b9b1b7bc38f50a723971de2395489fd1f379255890 + md5: 936687ed80f295a1f5dbcf8bd34c252c + sha256: c432626b16768b8dab228bfb706f7060c2d462a21c516d240f68f2f902b5a044 category: main optional: false - name: packaging - version: '26.2' + version: '26.3' manager: conda platform: win-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/packaging-26.2-pyhc364b38_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/packaging-26.3-pyhc364b38_0.conda hash: - md5: 4c06a92e74452cfa53623a81592e8934 - sha256: 3906abfb6511a3bb309e39b9b1b7bc38f50a723971de2395489fd1f379255890 + md5: 936687ed80f295a1f5dbcf8bd34c252c + sha256: c432626b16768b8dab228bfb706f7060c2d462a21c516d240f68f2f902b5a044 category: main optional: false - name: pillow @@ -2906,55 +2884,55 @@ package: category: main optional: false - name: pip - version: 26.1.2 + version: 26.2.1 manager: conda platform: linux-64 dependencies: python: '>=3.10,<3.13.0a0' setuptools: '' wheel: '' - url: https://repo.prefix.dev/conda-forge/noarch/pip-26.1.2-pyh8b19718_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pip-26.2.1-pyh8b19718_0.conda hash: - md5: 511fbc2c63d2c73650ad1755e4d357ba - sha256: 29b7d75bf81ad11645a8e320b369abdc90a92b93f2a9178e853d9dddf82e5106 + md5: 77b6cf3b0689d9fc68561df0db9b856d + sha256: c205bae42eb11b364fe3663a817cbcbc20a8ef544c6b2ff6f391013487117259 category: main optional: false - name: pip - version: 26.1.2 + version: 26.2.1 manager: conda platform: win-64 dependencies: python: '>=3.10,<3.13.0a0' setuptools: '' wheel: '' - url: https://repo.prefix.dev/conda-forge/noarch/pip-26.1.2-pyh8b19718_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pip-26.2.1-pyh8b19718_0.conda hash: - md5: 511fbc2c63d2c73650ad1755e4d357ba - sha256: 29b7d75bf81ad11645a8e320b369abdc90a92b93f2a9178e853d9dddf82e5106 + md5: 77b6cf3b0689d9fc68561df0db9b856d + sha256: c205bae42eb11b364fe3663a817cbcbc20a8ef544c6b2ff6f391013487117259 category: main optional: false - name: platformdirs - version: 4.11.0 + version: 4.11.3 manager: conda platform: linux-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.11.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.11.3-pyhcf101f3_0.conda hash: - md5: 1fadaa6dd1d03d062075f84157ac2cc7 - sha256: a4b8c7d3b3703d10f93187986d59aec09b22033978945845899beb7f849a7be6 + md5: 31474b00d0ca5accac14eda09ba11216 + sha256: 810511c90649ca59fa0174958a210fd5051c0a7848cfbd42c87054a6836726b5 category: dev optional: true - name: platformdirs - version: 4.11.0 + version: 4.11.3 manager: conda platform: win-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.11.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.11.3-pyhcf101f3_0.conda hash: - md5: 1fadaa6dd1d03d062075f84157ac2cc7 - sha256: a4b8c7d3b3703d10f93187986d59aec09b22033978945845899beb7f849a7be6 + md5: 31474b00d0ca5accac14eda09ba11216 + sha256: 810511c90649ca59fa0174958a210fd5051c0a7848cfbd42c87054a6836726b5 category: dev optional: true - name: pluggy @@ -2987,13 +2965,13 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' + libgcc: '>=15' python: '' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/psutil-7.2.2-py312h5253ce2_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/psutil-7.2.2-py312h1b36aeb_1.conda hash: - md5: dd94c506b119130aef5a9382aed648e7 - sha256: d834fd656133c9e4eaf63ffe9a117c7d0917d86d89f7d64073f4e3a0020bd8a7 + md5: 1653ce584b7859810f116e592eba9c0c + sha256: 2c6e88ac7aa5384fb843cb96023deb4382d6d5afbc81f5db1c7a1ef09c9e3090 category: main optional: false - name: psutil @@ -3006,10 +2984,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/psutil-7.2.2-py312he5662c2_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/psutil-7.2.2-py312he5662c2_1.conda hash: - md5: a2724c93b745fc7861948eb8b9f6679a - sha256: edffc84c001a05b996b5f8607c8164432754e86ec9224e831cd00ebabdec04e7 + md5: 14ea08081e760cf916895c6bd80e4500 + sha256: f0df1874d646c57ef1c4908a1e8fa4139b76fb260a2001332bf145cff753f0bb category: main optional: false - name: pthread-stubs @@ -3018,11 +2996,11 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/pthread-stubs-0.4-hb03c661_1003.conda hash: - md5: b3c17d95b5a10c6e64a21fa17573e70e - sha256: 9c88f8c64590e9567c6c80823f0328e58d3b1efb0e1c539c0315ceca764e0973 + md5: df2c27f36bdb0dde779f55b5df76a352 + sha256: afc3b27b2cbb0487c1d0e963f96e71181ecfb623a24fb393bb19ff974a6382a1 category: main optional: false - name: pthread-stubs @@ -3030,13 +3008,13 @@ package: manager: conda platform: win-64 dependencies: - libgcc: '>=13' + libgcc: '>=14' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' ucrt: '>=10.0.20348.0' - url: https://repo.prefix.dev/conda-forge/win-64/pthread-stubs-0.4-h0e40799_1002.conda + url: https://repo.prefix.dev/conda-forge/win-64/pthread-stubs-0.4-hba3369d_1003.conda hash: - md5: 3c8f2573569bb816483e5cf57efbbe29 - sha256: 7e446bafb4d692792310ed022fe284e848c6a868c861655a92435af7368bae7b + md5: bc97d497656c9c661ffd3043aca90aa4 + sha256: 5546927a2e337d2903d6cdb028fb33723cdbcc45bf9abe1770fbde2c4ea8bce6 category: main optional: false - name: pydantic @@ -3107,31 +3085,31 @@ package: category: main optional: false - name: pygments - version: 2.20.0 + version: 2.21.0 manager: conda platform: linux-64 dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.20.0-pyhd8ed1ab_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.21.0-pyhcf101f3_0.conda hash: - md5: 16c18772b340887160c79a6acc022db0 - sha256: cf70b2f5ad9ae472b71235e5c8a736c9316df3705746de419b59d442e8348e86 + md5: 2882dee445dfa45b0c5afce3ffb7730a + sha256: f5f015ff1bc3e1b7fc08eee096b1865234189ae0b82bebdb86a5369116e42fa0 category: dev optional: true - name: pygments - version: 2.20.0 + version: 2.21.0 manager: conda platform: win-64 dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.20.0-pyhd8ed1ab_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.21.0-pyhcf101f3_0.conda hash: - md5: 16c18772b340887160c79a6acc022db0 - sha256: cf70b2f5ad9ae472b71235e5c8a736c9316df3705746de419b59d442e8348e86 + md5: 2882dee445dfa45b0c5afce3ffb7730a + sha256: f5f015ff1bc3e1b7fc08eee096b1865234189ae0b82bebdb86a5369116e42fa0 category: dev optional: true - name: pylint - version: 4.0.6 + version: 4.0.7 manager: conda platform: linux-64 dependencies: @@ -3144,14 +3122,14 @@ package: python: '' tomli: '>=1.1' tomlkit: '>=0.10.1' - url: https://repo.prefix.dev/conda-forge/noarch/pylint-4.0.6-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pylint-4.0.7-pyhcf101f3_0.conda hash: - md5: ba6813f7d81828b7dcd03248a42d031d - sha256: 5393b20b76361efe49971a0081cad0f4256f875a14fe71b1ed93ba9e0193369c + md5: 7aaab460cb599b2370a782b4eff8127d + sha256: 9c9ba2e6f17193ede911f8c095232a8c5a1edb3cc6cc49d07cfdde0b86e7c97f category: dev optional: true - name: pylint - version: 4.0.6 + version: 4.0.7 manager: conda platform: win-64 dependencies: @@ -3164,10 +3142,10 @@ package: python: '' tomli: '>=1.1' tomlkit: '>=0.10.1' - url: https://repo.prefix.dev/conda-forge/noarch/pylint-4.0.6-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pylint-4.0.7-pyhcf101f3_0.conda hash: - md5: ba6813f7d81828b7dcd03248a42d031d - sha256: 5393b20b76361efe49971a0081cad0f4256f875a14fe71b1ed93ba9e0193369c + md5: 7aaab460cb599b2370a782b4eff8127d + sha256: 9c9ba2e6f17193ede911f8c095232a8c5a1edb3cc6cc49d07cfdde0b86e7c97f category: dev optional: true - name: pyparsing @@ -3290,56 +3268,56 @@ package: category: dev optional: true - name: python - version: 3.12.13 + version: 3.12.14 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' bzip2: '>=1.0.8,<2.0a0' ld_impl_linux-64: '>=2.36.1' - libexpat: '>=2.7.4,<3.0a0' - libffi: '>=3.5.2,<3.6.0a0' + libexpat: '>=2.8.1,<3.0a0' + libffi: '>=3.7.0,<3.8.0a0' libgcc: '>=14' - liblzma: '>=5.8.2,<6.0a0' + liblzma: '>=5.8.3,<6.0a0' libnsl: '>=2.0.1,<2.1.0a0' - libsqlite: '>=3.51.2,<4.0a0' - libuuid: '>=2.41.3,<3.0a0' - libxcrypt: '>=4.4.36' - libzlib: '>=1.3.1,<2.0a0' - ncurses: '>=6.5,<7.0a0' - openssl: '>=3.5.5,<4.0a0' + libsqlite: '>=3.53.4,<4.0a0' + libuuid: '>=2.42.2,<3.0a0' + libxcrypt: '>=4.4.38' + libzlib: '>=1.3.2,<2.0a0' + ncurses: '>=6.6,<7.0a0' + openssl: '>=3.5.7,<4.0a0' pip: '' readline: '>=8.3,<9.0a0' tk: '>=8.6.13,<8.7.0a0' tzdata: '' - url: https://repo.prefix.dev/conda-forge/linux-64/python-3.12.13-hd63d673_0_cpython.conda + url: https://repo.prefix.dev/conda-forge/linux-64/python-3.12.14-h8ab3286_0_cpython.conda hash: - md5: 7eccb41177e15cc672e1babe9056018e - sha256: a44655c1c3e1d43ed8704890a91e12afd68130414ea2c0872e154e5633a13d7e + md5: e9dcdd23a1c68738eb3257d23d5f7285 + sha256: ceb9c724de53ee3560f121dbfcb00fe8acb22c08691158fce7b6c32425855626 category: main optional: false - name: python - version: 3.12.13 + version: 3.12.14 manager: conda platform: win-64 dependencies: bzip2: '>=1.0.8,<2.0a0' - libexpat: '>=2.7.4,<3.0a0' - libffi: '>=3.5.2,<3.6.0a0' - liblzma: '>=5.8.2,<6.0a0' - libsqlite: '>=3.51.2,<4.0a0' - libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.5.5,<4.0a0' + libexpat: '>=2.8.1,<3.0a0' + libffi: '>=3.7.0,<3.8.0a0' + liblzma: '>=5.8.3,<6.0a0' + libsqlite: '>=3.53.4,<4.0a0' + libzlib: '>=1.3.2,<2.0a0' + openssl: '>=3.5.7,<4.0a0' pip: '' tk: '>=8.6.13,<8.7.0a0' tzdata: '' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/python-3.12.13-h0159041_0_cpython.conda + url: https://repo.prefix.dev/conda-forge/win-64/python-3.12.14-hb12b558_0_cpython.conda hash: - md5: 2956dff38eb9f8332ad4caeba941cfe7 - sha256: a02b446d8b7b167b61733a3de3be5de1342250403e72a63b18dac89e99e6180e + md5: 1948cdb3b317f50c8c8c4b6b96ce8a72 + sha256: 0911d8c3e93d5746e7cb1d8f76ba680aa7cbdf90a68dcd697e641e9f761642af category: main optional: false - name: python-dateutil @@ -3457,12 +3435,12 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' - ncurses: '>=6.5,<7.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/readline-8.3-h853b02a_0.conda + libgcc: '>=15' + ncurses: '>=6.6,<7.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/readline-8.3-hd6e31c0_1.conda hash: - md5: d7d95fc8287ea7bf33e0e7116d2b95ec - sha256: 12ffde5a6f958e285aa22c191ca01bbd3d6e710aa852e00618fa6ddc59149002 + md5: 69c01c781e7c8190bbdaf79e3848c5ca + sha256: 01b3fe073a66e321970d09e04b388708f8cbdca5cdfbfcb7c9eeb470ad10383d category: main optional: false - name: requests @@ -3522,17 +3500,17 @@ package: category: dev optional: true - name: s2n - version: 1.7.5 + version: 1.7.6 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' openssl: '>=3.5.7,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/s2n-1.7.5-h7e3ee7f_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/s2n-1.7.6-h7e3ee7f_0.conda hash: - md5: fa1c00d999e83ec20173c9775f71a1f1 - sha256: 7369ac21f3561e2203f5b1600ef0671270057380783ca4b9e15f679ba25db575 + md5: e112cadcd79412d81496e784884bddf0 + sha256: 1e1ccc56fdf3fe82150b4eac1d626c806e612af208fbf40ce3abfe9a2eb2a626 category: main optional: false - name: scipy @@ -3578,27 +3556,27 @@ package: category: main optional: false - name: setuptools - version: 83.0.0 + version: 84.0.0 manager: conda platform: linux-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/setuptools-83.0.0-pyh332efcf_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/setuptools-84.0.0-pyh332efcf_0.conda hash: - md5: 6bf6acbab2499830180ec88c3aff2fa4 - sha256: 48a9f96016505debadfc67f06de7ac548decbc38d327409b24b0432ef6f16335 + md5: 62ac906f1cd582c6c264c95625cb9d6f + sha256: 9e200ee5f9ff19a4d94e4b51c4856d53dec849f91032f345cf0c6bc3d51a7183 category: main optional: false - name: setuptools - version: 83.0.0 + version: 84.0.0 manager: conda platform: win-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/setuptools-83.0.0-pyh332efcf_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/setuptools-84.0.0-pyh332efcf_0.conda hash: - md5: 6bf6acbab2499830180ec88c3aff2fa4 - sha256: 48a9f96016505debadfc67f06de7ac548decbc38d327409b24b0432ef6f16335 + md5: 62ac906f1cd582c6c264c95625cb9d6f + sha256: 9e200ee5f9ff19a4d94e4b51c4856d53dec849f91032f345cf0c6bc3d51a7183 category: main optional: false - name: six @@ -3708,29 +3686,29 @@ package: category: dev optional: true - name: sphinx-autodoc-typehints - version: 3.13.0 + version: 3.13.2 manager: conda platform: linux-64 dependencies: python: '>=3.12' sphinx: '>=9.1' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-autodoc-typehints-3.13.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-autodoc-typehints-3.13.2-pyhd8ed1ab_0.conda hash: - md5: e91b69fd604f79f38f8c6cfdbc760755 - sha256: 62930995f2b6520fd14d5ce7c587d7fb5382987a3b7de0bb81e601490af35f50 + md5: 10f7b3850485df2e82af076a365fcfee + sha256: 9fa29cba2bfa3ae46681f7998d0e4a0d679fabda612b47abb5f7ed472f3ff723 category: dev optional: true - name: sphinx-autodoc-typehints - version: 3.13.0 + version: 3.13.2 manager: conda platform: win-64 dependencies: python: '>=3.12' sphinx: '>=9.1' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-autodoc-typehints-3.13.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-autodoc-typehints-3.13.2-pyhd8ed1ab_0.conda hash: - md5: e91b69fd604f79f38f8c6cfdbc760755 - sha256: 62930995f2b6520fd14d5ce7c587d7fb5382987a3b7de0bb81e601490af35f50 + md5: 10f7b3850485df2e82af076a365fcfee + sha256: 9fa29cba2bfa3ae46681f7998d0e4a0d679fabda612b47abb5f7ed472f3ff723 category: dev optional: true - name: sphinx-rtd-theme @@ -3738,11 +3716,11 @@ package: manager: conda platform: linux-64 dependencies: - sphinx_rtd_theme: 3.1.0 - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-rtd-theme-3.1.0-hd8ed1ab_1.conda + sphinx_rtd_theme: ==3.1.0 + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-rtd-theme-3.1.0-h9eada29_2.conda hash: - md5: 0a0c4864848d70ae012c0b3ba074aa46 - sha256: 05fc70e840c819c9755467e1b0386cca4afe84f4151aa446d083a29c81896df8 + md5: ab7ab7348274fc4af1c6bc4961cbf692 + sha256: 22154483c70c02172e032ce46e74f98bff4073030ea63af39f6af4c87528f7cf category: dev optional: true - name: sphinx-rtd-theme @@ -3750,11 +3728,11 @@ package: manager: conda platform: win-64 dependencies: - sphinx_rtd_theme: 3.1.0 - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-rtd-theme-3.1.0-hd8ed1ab_1.conda + sphinx_rtd_theme: ==3.1.0 + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-rtd-theme-3.1.0-h9eada29_2.conda hash: - md5: 0a0c4864848d70ae012c0b3ba074aa46 - sha256: 05fc70e840c819c9755467e1b0386cca4afe84f4151aa446d083a29c81896df8 + md5: ab7ab7348274fc4af1c6bc4961cbf692 + sha256: 22154483c70c02172e032ce46e74f98bff4073030ea63af39f6af4c87528f7cf category: dev optional: true - name: sphinx_rtd_theme @@ -3763,13 +3741,13 @@ package: platform: linux-64 dependencies: docutils: '>0.18,<0.23' - python: '>=3.10' + python: '' sphinx: '>=6,<10' sphinxcontrib-jquery: '>=4,<5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx_rtd_theme-3.1.0-pyha770c72_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx_rtd_theme-3.1.0-pyhcf101f3_2.conda hash: - md5: 14b91f7ff1d73c1b233e25e9fa262e5b - sha256: 3876c2b11360a1ee0f93d1449819c5a8cab8483abfed107a921cc188d3b29b4d + md5: 787507b1d0f5c00c186b2f66adacc3ab + sha256: 3581a8335a0da4de41f4344c4f1113a11fcbbb7933577ace813602e263842b02 category: dev optional: true - name: sphinx_rtd_theme @@ -3778,13 +3756,13 @@ package: platform: win-64 dependencies: docutils: '>0.18,<0.23' - python: '>=3.10' + python: '' sphinx: '>=6,<10' sphinxcontrib-jquery: '>=4,<5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx_rtd_theme-3.1.0-pyha770c72_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx_rtd_theme-3.1.0-pyhcf101f3_2.conda hash: - md5: 14b91f7ff1d73c1b233e25e9fa262e5b - sha256: 3876c2b11360a1ee0f93d1449819c5a8cab8483abfed107a921cc188d3b29b4d + md5: 787507b1d0f5c00c186b2f66adacc3ab + sha256: 3581a8335a0da4de41f4344c4f1113a11fcbbb7933577ace813602e263842b02 category: dev optional: true - name: sphinxcontrib-applehelp @@ -4003,12 +3981,12 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' + libgcc: '>=15' libzlib: '>=1.3.2,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_hd70dff1_3.conda + url: https://repo.prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_h1df4ec4_4.conda hash: - md5: 48a1049e710857572fc2a832aa394d9f - sha256: 43624eab22f5f29df7d6ffe914cf442f28fd559b55b290906255492826e636e8 + md5: 676a2f9b1c4fcf57b70aa5c65f6c60d0 + sha256: a1a241d172c1ccab067ba245206dd048bc3c2d1b84504b53c9468e99adfc16a1 category: main optional: false - name: tk @@ -4019,10 +3997,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/tk-8.6.13-h967ab96_3.conda + url: https://repo.prefix.dev/conda-forge/win-64/tk-8.6.13-h967ab96_4.conda hash: - md5: aaf79e2af50a151fb5b5a3e3f38b7a69 - sha256: 13fa29257d43f8e630a1e591ed77fae9bbbb236b011432f01e2034cf36e6bf03 + md5: dd9eb33c99d352b6356f86964d6040f7 + sha256: f19618a3a82cc483dacf1c70a30367ee7b0c7e71b90f1f80e14feff44fbd3688 category: main optional: false - name: tomli @@ -4098,29 +4076,29 @@ package: category: main optional: false - name: typing-inspection - version: 0.4.2 + version: 0.4.4 manager: conda platform: linux-64 dependencies: python: '' - typing_extensions: '>=4.12.0' - url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.2-pyhcf101f3_2.conda + typing_extensions: '>=4.15.0' + url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.4-pyhcf101f3_0.conda hash: - md5: 53f5409c5cfd6c5a66417d68e3f0a864 - sha256: 8b90d2f19f9458b8c58a55e1fcdc1d90c1603a847a47654d8a454549413ba60a + md5: 880e91eac5d926568ef278e20554148e + sha256: 293c66b208468d186a94ff486c2ffbf67859a2bde8c88e965fc9d06c517191b2 category: main optional: false - name: typing-inspection - version: 0.4.2 + version: 0.4.4 manager: conda platform: win-64 dependencies: python: '' - typing_extensions: '>=4.12.0' - url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.2-pyhcf101f3_2.conda + typing_extensions: '>=4.15.0' + url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.4-pyhcf101f3_0.conda hash: - md5: 53f5409c5cfd6c5a66417d68e3f0a864 - sha256: 8b90d2f19f9458b8c58a55e1fcdc1d90c1603a847a47654d8a454549413ba60a + md5: 880e91eac5d926568ef278e20554148e + sha256: 293c66b208468d186a94ff486c2ffbf67859a2bde8c88e965fc9d06c517191b2 category: main optional: false - name: typing_extensions @@ -4248,62 +4226,62 @@ package: manager: conda platform: win-64 dependencies: - vc14_runtime: '>=14.51.36231' - url: https://repo.prefix.dev/conda-forge/win-64/vc-14.5-h1b7c187_39.conda + vc14_runtime: '>=14.51.36247' + url: https://repo.prefix.dev/conda-forge/win-64/vc-14.5-ha367084_41.conda hash: - md5: 2eacea63f545b97342da520df6854276 - sha256: 17693b60cb54f80c60275f003f3bfc1b128af56dbfd65c4fae37c64eeb755ce1 + md5: aa805b5522c2a98fa286e551a1f48546 + sha256: 35444c55a92e2f7f7ba26bc70f81e56e52344f7d064c0fd4b40a46a58517b79c category: main optional: false - name: vc14_runtime - version: 14.51.36231 + version: 14.51.36247 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' - vcomp14: 14.51.36231 - url: https://repo.prefix.dev/conda-forge/win-64/vc14_runtime-14.51.36231-h1b9f54f_39.conda + vcomp14: 14.51.36247 + url: https://repo.prefix.dev/conda-forge/win-64/vc14_runtime-14.51.36247-habf1de7_41.conda hash: - md5: 06a5bf5a1ca16cce0df6eaa91fc42bc2 - sha256: 8153ed849c92e891eacac0f2f8d7ecb79f9b5fd7f7917fbb896f252a60a40390 + md5: ac5333bb3d429361f23adf704cc49a78 + sha256: 4e4cb599cdc41bf2109d1464c127b5bcbddf548ce3e322e612afb691338b48f8 category: main optional: false - name: vcomp14 - version: 14.51.36231 + version: 14.51.36247 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' - url: https://repo.prefix.dev/conda-forge/win-64/vcomp14-14.51.36231-h1b9f54f_39.conda + url: https://repo.prefix.dev/conda-forge/win-64/vcomp14-14.51.36247-habf1de7_41.conda hash: - md5: 8b53a83fda40ec679e4d63fa32fae989 - sha256: 07fb14713c4bc62e2533a2e23a363abfb0e65650681fba0ae4c840e2219350f3 + md5: 350bb67a5c8e5f1c53347ac544ab6600 + sha256: 731e043390c9457299484d39e427221fc868a9249540a498a5a4f6456c7744d1 category: main optional: false - name: wheel - version: 0.47.0 + version: 0.48.0 manager: conda platform: linux-64 dependencies: packaging: '>=24.0' python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/wheel-0.47.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/wheel-0.48.0-pyhd8ed1ab_0.conda hash: - md5: d0e3b2f0030cf4fca58bde71d246e94c - sha256: 9e156ffaefb8463437144326ada4b85d1de17961b9997ac5f1cbbaf747bd8bed + md5: 9a2124517bfd5d792e0f7b86eefdfeb8 + sha256: ba64b29b6d418024cb565081a1799262cb2780d2534ff4c14f76aa858c4286cd category: main optional: false - name: wheel - version: 0.47.0 + version: 0.48.0 manager: conda platform: win-64 dependencies: packaging: '>=24.0' python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/wheel-0.47.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/wheel-0.48.0-pyhd8ed1ab_0.conda hash: - md5: d0e3b2f0030cf4fca58bde71d246e94c - sha256: 9e156ffaefb8463437144326ada4b85d1de17961b9997ac5f1cbbaf747bd8bed + md5: 9a2124517bfd5d792e0f7b86eefdfeb8 + sha256: ba64b29b6d418024cb565081a1799262cb2780d2534ff4c14f76aa858c4286cd category: main optional: false - name: win_inet_pton @@ -4326,10 +4304,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxau-1.0.12-hb03c661_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxau-1.0.12-hb03c661_2.conda hash: - md5: b2895afaf55bf96a8c8282a2e47a5de0 - sha256: 6bc6ab7a90a5d8ac94c7e300cc10beb0500eeba4b99822768ca2f2ef356f731b + md5: f06ef439c280a5f90b8bf62355008dbc + sha256: cbf891f6cc1a859347680af1c8562bc6b033bf182a2a3bb536016932be3206de category: main optional: false - name: xorg-libxau @@ -4340,10 +4318,10 @@ package: libgcc: '>=14' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' ucrt: '>=10.0.20348.0' - url: https://repo.prefix.dev/conda-forge/win-64/xorg-libxau-1.0.12-hba3369d_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/xorg-libxau-1.0.12-hba3369d_2.conda hash: - md5: 8436cab9a76015dfe7208d3c9f97c156 - sha256: 156a583fa43609507146de1c4926172286d92458c307bb90871579601f6bc568 + md5: 87aee04978ab77bf4c0f42b983c216cc + sha256: 892ad69b1a9ecc3903ed5a1b18fa097013eaf462eeed3c6ff31bf5c12e71e84b category: main optional: false - name: xorg-libxdmcp @@ -4353,10 +4331,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb03c661_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb03c661_2.conda hash: - md5: 1dafce8548e38671bea82e3f5c6ce22f - sha256: 25d255fb2eef929d21ff660a0c687d38a6d2ccfbcbf0cc6aa738b12af6e9d142 + md5: 2e66c929f3d879708335b6ea4557c838 + sha256: c50a16c05ccd7fe7dd6d6cfb539f4e9a491d50f9ed7a5c902fec638f7d0d27be category: main optional: false - name: xorg-libxdmcp @@ -4367,10 +4345,10 @@ package: libgcc: '>=14' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' ucrt: '>=10.0.20348.0' - url: https://repo.prefix.dev/conda-forge/win-64/xorg-libxdmcp-1.1.5-hba3369d_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/xorg-libxdmcp-1.1.5-hba3369d_2.conda hash: - md5: a7c03e38aa9c0e84d41881b9236eacfb - sha256: 366b8ae202c3b48958f0b8784bbfdc37243d3ee1b1cd4b8e76c10abe41fa258b + md5: 0e21a45f1bb429b6e35e82631e60554a + sha256: 21b11bb98c41ece4ce6069d86d826b50b3d73020fb631b97e59a0521dd9d08a1 category: main optional: false - name: yaml @@ -4379,11 +4357,11 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/yaml-0.2.5-h280c20c_3.conda + libgcc: '>=15' + url: https://repo.prefix.dev/conda-forge/linux-64/yaml-0.2.5-hebe6cf0_3.conda hash: - md5: a77f85f77be52ff59391544bfe73390a - sha256: 6d9ea2f731e284e9316d95fa61869fe7bbba33df7929f82693c121022810f4ad + md5: e741576fb8f89821ac7c1c537322a33d + sha256: d164dfa75ecd538f6fd68765defcc06aa875bc697b9b215362d79a2a73125dd0 category: dev optional: true - name: yaml @@ -4433,10 +4411,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/zlib-1.3.2-hfd05255_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/zlib-1.3.2-hfd05255_3.conda hash: - md5: 5187ecf958be3c39110fe691cbd6873e - sha256: ef408f85f664a4b9c9dac3cb2e36154d9baa15a88984ea800e11060e0f2394a1 + md5: 945092a9bc1d0f250f7d5ecf51ecd471 + sha256: 5a0b55df66ff07b4342e04967cef69f8bf348f6a0fb1cc1eca741c7b015dfe77 category: main optional: false - name: zlib-ng @@ -4445,12 +4423,12 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' - libstdcxx: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/zlib-ng-2.3.3-hceb46e0_1.conda + libgcc: '>=15' + libstdcxx: '>=15' + url: https://repo.prefix.dev/conda-forge/linux-64/zlib-ng-2.3.3-hce19668_1.conda hash: - md5: 2aadb0d17215603a82a2a6b0afd9a4cb - sha256: ea4e50c465d70236408cb0bfe0115609fd14db1adcd8bd30d8918e0291f8a75f + md5: 1726acec19beeed1c764385cd8622405 + sha256: 8b786bb4380fa69a718b08a400040b865bc9207eda337e0a1955717c3c3a9403 category: main optional: false - name: zlib-ng @@ -4473,11 +4451,11 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb78ec9c_6.conda + libzlib: '>=1.3.2,<2.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb78ec9c_7.conda hash: - md5: 4a13eeac0b5c8e5b8ab496e6c4ddd829 - sha256: 68f0206ca6e98fea941e5717cec780ed2873ffabc0e1ed34428c061e2c6268c7 + md5: aa459086047c0e5e27023ab19f8cb86a + sha256: 47d682b9f6d6ec9eb1a6e6c3e75ea6273e899e78fb7fc59f81d39745009fbc60 category: main optional: false - name: zstd @@ -4485,54 +4463,54 @@ package: manager: conda platform: win-64 dependencies: - libzlib: '>=1.3.1,<2.0a0' + libzlib: '>=1.3.2,<2.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/zstd-1.5.7-h534d264_6.conda + url: https://repo.prefix.dev/conda-forge/win-64/zstd-1.5.7-h534d264_7.conda hash: - md5: 053b84beec00b71ea8ff7a4f84b55207 - sha256: 368d8628424966fd8f9c8018326a9c779e06913dd39e646cf331226acc90e5b2 + md5: e4ac308c39d6d0e131154976da67cf3b + sha256: ca7daae4f218a11fab82cc2857f0ea518ec3f46acec60490485347a4c22c6b3e category: main optional: false - name: geoapps-utils - version: 0.7.1.dev85+89cd6f5 + version: 0.7.1.dev95+2e758b9 manager: pip platform: linux-64 dependencies: - geoh5py: 0.13.1rc2.dev168+e51a7038 + geoh5py: 0.14.0a1.dev264+6c850c89 matplotlib: '>=3.10.0,<3.11.0' numpy: '>=2.4.2,<2.5.0' pydantic: '>=2.12.0,<2.13.0' scipy: '>=1.17.0,<1.18.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@2e758b9671671160c76d182b72ae18ee735bd214 hash: - sha256: 89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 + sha256: 2e758b9671671160c76d182b72ae18ee735bd214 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@2e758b9671671160c76d182b72ae18ee735bd214 category: main optional: false - name: geoapps-utils - version: 0.7.1.dev85+89cd6f5 + version: 0.7.1.dev95+2e758b9 manager: pip platform: win-64 dependencies: - geoh5py: 0.13.1rc2.dev168+e51a7038 + geoh5py: 0.14.0a1.dev264+6c850c89 matplotlib: '>=3.10.0,<3.11.0' numpy: '>=2.4.2,<2.5.0' pydantic: '>=2.12.0,<2.13.0' scipy: '>=1.17.0,<1.18.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@2e758b9671671160c76d182b72ae18ee735bd214 hash: - sha256: 89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 + sha256: 2e758b9671671160c76d182b72ae18ee735bd214 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@2e758b9671671160c76d182b72ae18ee735bd214 category: main optional: false - name: geoh5py - version: 0.13.1rc2.dev168+e51a7038 + version: 0.14.0a1.dev264+6c850c89 manager: pip platform: linux-64 dependencies: @@ -4541,16 +4519,16 @@ package: pillow: '>=12.2.0,<12.3.0' psutil: '>=7.2.2,<7.3.0' pydantic: '>=2.12.0,<2.13.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@e51a703816e712f3c66147cb78fd16808b520f75 + url: git+https://github.com/MiraGeoscience/geoh5py.git@6c850c89972154a08c2ee39ad2dd62e8d9c3afef hash: - sha256: e51a703816e712f3c66147cb78fd16808b520f75 + sha256: 6c850c89972154a08c2ee39ad2dd62e8d9c3afef source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@e51a703816e712f3c66147cb78fd16808b520f75 + url: git+https://github.com/MiraGeoscience/geoh5py.git@6c850c89972154a08c2ee39ad2dd62e8d9c3afef category: main optional: false - name: geoh5py - version: 0.13.1rc2.dev168+e51a7038 + version: 0.14.0a1.dev264+6c850c89 manager: pip platform: win-64 dependencies: @@ -4559,11 +4537,11 @@ package: pillow: '>=12.2.0,<12.3.0' psutil: '>=7.2.2,<7.3.0' pydantic: '>=2.12.0,<2.13.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@e51a703816e712f3c66147cb78fd16808b520f75 + url: git+https://github.com/MiraGeoscience/geoh5py.git@6c850c89972154a08c2ee39ad2dd62e8d9c3afef hash: - sha256: e51a703816e712f3c66147cb78fd16808b520f75 + sha256: 6c850c89972154a08c2ee39ad2dd62e8d9c3afef source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@e51a703816e712f3c66147cb78fd16808b520f75 + url: git+https://github.com/MiraGeoscience/geoh5py.git@6c850c89972154a08c2ee39ad2dd62e8d9c3afef category: main optional: false diff --git a/py-3.13.conda-lock.yml b/py-3.13.conda-lock.yml index 4ff022c..9724d47 100644 --- a/py-3.13.conda-lock.yml +++ b/py-3.13.conda-lock.yml @@ -15,8 +15,8 @@ version: 1 metadata: content_hash: - win-64: fd533891192d09faea1ff9dd155c7cc2d3a664bddc5957902f89c988b479a633 - linux-64: 59a8bed888c6e8bb7e4bf76aea22ce47c367defb14bb1ae454cc7cc8b7508c9a + win-64: bc6181b1344600521cd6f1dee8d2b47e8f823b04a119ab0616e60009357ff824 + linux-64: 30dc1a8729f1afe543ecb8b885261b2d4c9f6317cf69986c9efb5eb31ccaf142 channels: - url: conda-forge used_env_vars: [] @@ -136,16 +136,16 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - aws-c-cal: '>=0.9.14,<0.9.15.0a0' - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-cal: '>=0.9.15,<0.9.16.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' aws-c-http: '>=0.11.0,<0.11.1.0a0' - aws-c-io: '>=0.27.3,<0.27.4.0a0' + aws-c-io: '>=0.27.5,<0.27.6.0a0' aws-c-sdkutils: '>=0.2.7,<0.2.8.0a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-auth-0.10.4-hb7a77c6_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-auth-0.10.4-h4610da3_2.conda hash: - md5: 4347d5ffdf34adf9c5edd10837727d96 - sha256: 845fe32ee750d4a4d3efdb1d95a8c29c3388e3ea9787b77341ec4abe4e198b11 + md5: cefa84dbf94066e7a6902af288a2fedd + sha256: 0c92dc5ddf4edd4038a63adb79f9f0b03f61e9455ce3253b7d2cf708e06ff99e category: main optional: false - name: aws-c-auth @@ -153,75 +153,75 @@ package: manager: conda platform: win-64 dependencies: - aws-c-cal: '>=0.9.14,<0.9.15.0a0' - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-cal: '>=0.9.15,<0.9.16.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' aws-c-http: '>=0.11.0,<0.11.1.0a0' - aws-c-io: '>=0.27.3,<0.27.4.0a0' + aws-c-io: '>=0.27.5,<0.27.6.0a0' aws-c-sdkutils: '>=0.2.7,<0.2.8.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-c-auth-0.10.4-hc6e9107_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-auth-0.10.4-h98da7c9_2.conda hash: - md5: f7069cdc81f7a5e781f1faf6aab6c171 - sha256: cf7ab8abaac6b462463310412cc37d087a767a95920809cbe6dc0a08fe4bcfbd + md5: 48df5a892ef44189ff64744c944884f9 + sha256: ba0b53ad46a7ba157888454c9bf76e1f0e5de368fb0bfbc0bd710156ac741dff category: main optional: false - name: aws-c-cal - version: 0.9.14 + version: 0.9.15 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' libgcc: '>=14' openssl: '>=3.5.7,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-cal-0.9.14-h2aa3ae6_4.conda + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-cal-0.9.15-h6bbde05_1.conda hash: - md5: 9c6072e7b882d35ac956c07e493d6a9e - sha256: a67c944be1728f576c02fe8f28b0cbb78b5353415075db3da4ef71bc9dd8c00c + md5: 8f2b374c79908f271be3d0e9f1c462a8 + sha256: 6eb21a0129e0aa7c6be733c7f2d1de6bc97a60c8382c1016f19dced722600d73 category: main optional: false - name: aws-c-cal - version: 0.9.14 + version: 0.9.15 manager: conda platform: win-64 dependencies: - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-c-cal-0.9.14-h032d170_4.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-cal-0.9.15-hf2e3468_1.conda hash: - md5: fda8fa85ef5d8570d5a0aadea688bb82 - sha256: cda33360c71ab9a4b4e269004a5672d712fa1ae581ecca0404181805ce6762ce + md5: 2c70e5e0b0a87a674b2a1a20fd80c04c + sha256: 2ffb1a78a9deddf937ea70096ef5b6672918a9153a21b0a9d069533850b0a49f category: main optional: false - name: aws-c-common - version: 0.14.2 + version: 0.14.3 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-common-0.14.2-hb03c661_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-common-0.14.3-hb03c661_0.conda hash: - md5: f3e0b2e044485ae90d4a59c77e7a0182 - sha256: 701398f1c9978c41e93cb0947869a66b7f8004e9d6e548d63d11aedae83cfb02 + md5: ce8664d7c01d4a598ad38107b289b5ec + sha256: 8ea79f36d50ba90d7147fe1a047f9a7f2d33b114a3d4bacf1360cd8df43986e4 category: main optional: false - name: aws-c-common - version: 0.14.2 + version: 0.14.3 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-c-common-0.14.2-hfd05255_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-common-0.14.3-hfd05255_0.conda hash: - md5: 75b4445fec6477b271920f87830d22a3 - sha256: 63fc3f34a3b3d21d5f6527ba5136e132f3ad50541d4d16e385d03f4e47e1db2b + md5: eda5facd8e8545b7dacc1dc740ac0e54 + sha256: 5c55090f9c2b28eeac0e9f40a2b1a7aeaae10ba96fa6c7c0e4caef69a6a9cfa2 category: main optional: false - name: aws-c-compression @@ -230,12 +230,12 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-compression-0.3.2-h720e601_4.conda + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-compression-0.3.2-h01ee8f8_5.conda hash: - md5: c9be3f5854f349ae77a1a174b59e11a8 - sha256: 8e0a5513cfc42df8bd16adbd8e83a37d3ca89b8e04cb20eb04eb177bbbfea365 + md5: ae862abdbb3160f97478d3d4749164c0 + sha256: 27f8581573c533a92a1a9619516ebb66d390b9923d296331985cfd342dc32d29 category: main optional: false - name: aws-c-compression @@ -243,14 +243,14 @@ package: manager: conda platform: win-64 dependencies: - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-c-compression-0.3.2-h1da161f_4.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-compression-0.3.2-h0d56620_5.conda hash: - md5: 996e5c7da8f9e255eac094d2413b40c3 - sha256: 97eaf03572b61d118616e8ee8459823c7b0f5dc26295bbab3ac3f6d671f1547a + md5: 3a93885c9f57e04ff78d29f7dc830fb2 + sha256: 43a538303486de0621c543c38a28c60ac3a65bbba35793321e0a825a65d460fc category: main optional: false - name: aws-c-http @@ -259,15 +259,15 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - aws-c-cal: '>=0.9.14,<0.9.15.0a0' - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-cal: '>=0.9.15,<0.9.16.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' aws-c-compression: '>=0.3.2,<0.3.3.0a0' - aws-c-io: '>=0.27.3,<0.27.4.0a0' + aws-c-io: '>=0.27.5,<0.27.6.0a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-http-0.11.0-h38ae05a_4.conda + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-http-0.11.0-hbe094ff_5.conda hash: - md5: 97f2799ae6ff7b6f52dfa321fef9676b - sha256: 4b939b4a76a11c9ec50c891ae9bf232da8dcaf8797701df1e79ae51c988be2d4 + md5: c09f7ec7327b8bd52fc2d6eacaa18d3b + sha256: a4a5e24b398e7c0ef64de5a341ecb3f0fa87c2879177695c5d0bcbde0c4f8b5e category: main optional: false - name: aws-c-http @@ -275,89 +275,89 @@ package: manager: conda platform: win-64 dependencies: - aws-c-cal: '>=0.9.14,<0.9.15.0a0' - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-cal: '>=0.9.15,<0.9.16.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' aws-c-compression: '>=0.3.2,<0.3.3.0a0' - aws-c-io: '>=0.27.3,<0.27.4.0a0' + aws-c-io: '>=0.27.5,<0.27.6.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-c-http-0.11.0-h667fc28_4.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-http-0.11.0-he024045_5.conda hash: - md5: c17a284b159959a8639298ed7da8ad0b - sha256: 304587d77daccde630fbdbb8ae2f3994cf583427f710c60d62e88bc97c4ff013 + md5: ad215edbb53ea01805b103d66aee21ec + sha256: d1d6b9213980eab8403354cab5d515fddb8c0cbdf88226c8c353499c699692b0 category: main optional: false - name: aws-c-io - version: 0.27.3 + version: 0.27.5 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - aws-c-cal: '>=0.9.14,<0.9.15.0a0' - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-cal: '>=0.9.15,<0.9.16.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' libgcc: '>=14' - s2n: '>=1.7.5,<1.7.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-io-0.27.3-h6f4d18d_1.conda + s2n: '>=1.7.6,<1.7.7.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-io-0.27.5-h4f381ba_1.conda hash: - md5: bd19b685b88557830f1a617a6d404eb2 - sha256: 94c32ca672ce290e250aea1cfb92582cca4658bdc3ec7cb1ceef254f34451595 + md5: 948f5a4fddac779b7942626e5807caba + sha256: 76ab4eb6cae12e14244cb1fe11ecccc2f103f8ffa7e80e222099c6b16c19ae20 category: main optional: false - name: aws-c-io - version: 0.27.3 + version: 0.27.5 manager: conda platform: win-64 dependencies: - aws-c-cal: '>=0.9.14,<0.9.15.0a0' - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-cal: '>=0.9.15,<0.9.16.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-c-io-0.27.3-hbdc738f_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-io-0.27.5-hef21f9d_1.conda hash: - md5: 579600368b15fb523d69e2a3f8a9bc55 - sha256: 36816ff394ee736fcf705db5b1c1491c98f6f77ef84791d73b71e78154df402d + md5: e51b38fd757d34b61daf4e848ee0d8f1 + sha256: e689379cc92a4b7dbe01f8c8fbbe12142f6a0cdeee1080d099c4fb80e8e3b090 category: main optional: false - name: aws-c-s3 - version: 0.12.8 + version: 0.13.1 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' aws-c-auth: '>=0.10.4,<0.10.5.0a0' - aws-c-cal: '>=0.9.14,<0.9.15.0a0' - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-cal: '>=0.9.15,<0.9.16.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' aws-c-http: '>=0.11.0,<0.11.1.0a0' - aws-c-io: '>=0.27.3,<0.27.4.0a0' + aws-c-io: '>=0.27.5,<0.27.6.0a0' aws-checksums: '>=0.2.10,<0.2.11.0a0' libgcc: '>=14' openssl: '>=3.5.7,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-s3-0.12.8-h46fcd08_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-s3-0.13.1-h7508075_1.conda hash: - md5: 706aa99414d18db5b23475b45cc93a0b - sha256: a423bffbb0e6cacb5e2a0861b918ba3180e5132509afb1faf225ee9f0ec8f981 + md5: 2daf54d3eef87b757f68d7597534dd2f + sha256: d24f7f34b3b564535b533b17176e71f71b6944aa2cb71813283bece139908d9f category: main optional: false - name: aws-c-s3 - version: 0.12.8 + version: 0.13.1 manager: conda platform: win-64 dependencies: aws-c-auth: '>=0.10.4,<0.10.5.0a0' - aws-c-cal: '>=0.9.14,<0.9.15.0a0' - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-cal: '>=0.9.15,<0.9.16.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' aws-c-http: '>=0.11.0,<0.11.1.0a0' - aws-c-io: '>=0.27.3,<0.27.4.0a0' + aws-c-io: '>=0.27.5,<0.27.6.0a0' aws-checksums: '>=0.2.10,<0.2.11.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-c-s3-0.12.8-hd7ee1a1_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-s3-0.13.1-h0deae5e_1.conda hash: - md5: 4ac02fa15bf3809101e2eeb340b6078c - sha256: c79e62931e163b65a01786d5ed7156ecca2ab748b7c7835756d34e438035706a + md5: e2adedc506b0298afbbe75e5a7bb32c4 + sha256: 90da84f84953d53ed58f41381dd05ba36724db69c9885f1265d3b9d4651a398e category: main optional: false - name: aws-c-sdkutils @@ -366,12 +366,12 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-sdkutils-0.2.7-h720e601_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-sdkutils-0.2.7-h01ee8f8_3.conda hash: - md5: 816f62fa82532118ebb2398382090945 - sha256: e419e179e04021fc680d98af23fac4b4c2369cea61171087e57a734e968dd9bd + md5: 412f0cf18cc4c4945655dba954ca2d76 + sha256: b308c393a3db78cef29942c6b83ca7321f86d357fbb47504d59f55254601c87a category: main optional: false - name: aws-c-sdkutils @@ -379,14 +379,14 @@ package: manager: conda platform: win-64 dependencies: - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-c-sdkutils-0.2.7-h1da161f_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-sdkutils-0.2.7-h0d56620_3.conda hash: - md5: 882d834f12e0abf4c7a0e9bb0c72e281 - sha256: d5da00123d9ceb082e61fd5bf82fff9cd5bec0b8e1ae91454f29155a59499bf5 + md5: e66b4cbfcc747b9ba8ecefb9bed862af + sha256: 3d87a3474f08da5613eabccd0d2604fdb127a232498e76e33a74bc417f0b049a category: main optional: false - name: aws-checksums @@ -395,12 +395,12 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-checksums-0.2.10-h720e601_4.conda + url: https://repo.prefix.dev/conda-forge/linux-64/aws-checksums-0.2.10-h01ee8f8_5.conda hash: - md5: 24ee781effc5779206a80139323c9caf - sha256: 6cc8617854a43040291dea791fe111ba408e7a5bbd9ee9e5a99375da7a16846b + md5: 4d70caf5260e0787675c3bf61ae5b64c + sha256: f8d2cd9faccb273df739fc28431b484a90aca10027ef44f7fec1d4f0bd229a76 category: main optional: false - name: aws-checksums @@ -408,14 +408,14 @@ package: manager: conda platform: win-64 dependencies: - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-checksums-0.2.10-h1da161f_4.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-checksums-0.2.10-h0d56620_5.conda hash: - md5: a3c81085892f2983979836f2937291ce - sha256: 2227fa77f395f1b4699533709e7ef140a8292fccb31376ec5498565c7ad33225 + md5: 9d82651327244c59ab89c0ec1aa327a2 + sha256: 06e96edd75595eb2898d2399ec73cf255aab4d27b1f08e806d480efe01d64a71 category: main optional: false - name: babel @@ -443,23 +443,23 @@ package: category: dev optional: true - name: backports.zstd - version: 1.6.0 + version: 1.7.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' + libgcc: '>=15' python: '' python_abi: 3.13.* zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/backports.zstd-1.6.0-py313h18e8e13_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/backports.zstd-1.7.0-py313h8f72f4d_0.conda hash: - md5: fbc7d3707f09cae6648e6eb1b6203a5c - sha256: d7aca2b34335035ef80eaaebff4e5a0ae524b6f3792a82a144d38c4a81f42916 + md5: 40454ef16bb96ae63f063b50c8b68603 + sha256: 69c1d1a8c3c30acd2fc14cd9667241c038b0f2fd5a2caf2f210fa160f8291b84 category: dev optional: true - name: backports.zstd - version: 1.6.0 + version: 1.7.0 manager: conda platform: win-64 dependencies: @@ -469,10 +469,10 @@ package: vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/backports.zstd-1.6.0-py313h2a31948_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/backports.zstd-1.7.0-py313h2a31948_0.conda hash: - md5: 144ae232f6f920307f4aadc088137589 - sha256: 65eb354dbaba5925f536613c8d645a6254226eb6c6f16cc6e57033eb97cc0159 + md5: bc4ec8a41845e3addacf146ab1d89c31 + sha256: b8c94acb6dc8ca29bbb0f76d476e1c9a602bfb706e05fe6d231734c8ba45652b category: dev optional: true - name: brotli @@ -484,11 +484,11 @@ package: brotli-bin: 1.2.0 libbrotlidec: 1.2.0 libbrotlienc: 1.2.0 - libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/brotli-1.2.0-hed03a55_1.conda + libgcc: '>=15' + url: https://repo.prefix.dev/conda-forge/linux-64/brotli-1.2.0-h505cf86_3.conda hash: - md5: 8ccf913aaba749a5496c17629d859ed1 - sha256: e511644d691f05eb12ebe1e971fd6dc3ae55a4df5c253b4e1788b789bdf2dfa6 + md5: 6ff307b78fbfb7dcafb7e25ff8bc9c10 + sha256: 1f2ccfebe6e0113bfc473b21906372c1ee4eb69bf6faef0ad7f3d4d79af63a98 category: main optional: false - name: brotli @@ -502,10 +502,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/brotli-1.2.0-h2d644bc_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/brotli-1.2.0-hc8c2fe1_3.conda hash: - md5: bc58fdbced45bb096364de0fba1637af - sha256: a4fffdf1c9b9d3d0d787e20c724cff3a284dfa3773f9ce609c93b1cfd0ce8933 + md5: 9eba56a007c44dc32d0b9d0a820871ea + sha256: 85e12348d058791aabd6eeb6abc1d7ab44b8f6308f91c8475f44f778f2a158af category: main optional: false - name: brotli-bin @@ -516,11 +516,11 @@ package: __glibc: '>=2.17,<3.0.a0' libbrotlidec: 1.2.0 libbrotlienc: 1.2.0 - libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/brotli-bin-1.2.0-hb03c661_1.conda + libgcc: '>=15' + url: https://repo.prefix.dev/conda-forge/linux-64/brotli-bin-1.2.0-h9908984_3.conda hash: - md5: af39b9a8711d4a8d437b52c1d78eb6a1 - sha256: 64b137f30b83b1dd61db6c946ae7511657eead59fdf74e84ef0ded219605aa94 + md5: 8929291d9efc59715df1cfa7daf5e3ed + sha256: 56b2e5e8a49f9887af74cc63e0d55a3654e60b667ad5558da089549a36ae6a0c category: main optional: false - name: brotli-bin @@ -533,10 +533,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/brotli-bin-1.2.0-hfd05255_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/brotli-bin-1.2.0-hd477307_3.conda hash: - md5: 6abd7089eb3f0c790235fe469558d190 - sha256: e76966232ef9612de33c2087e3c92c2dc42ea5f300050735a3c646f33bce0429 + md5: dc04f7b3d82c6fb3fdf4d93e45b6ea2a + sha256: 5328e0576c729813d28efc15613f4be94d029d77c4fe5afda16cab0b8d0c9d05 category: main optional: false - name: brotli-python @@ -545,14 +545,14 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' - libstdcxx: '>=14' + libgcc: '>=15' + libstdcxx: '>=15' python: '>=3.13,<3.14.0a0' python_abi: 3.13.* - url: https://repo.prefix.dev/conda-forge/linux-64/brotli-python-1.2.0-py313hf159716_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/brotli-python-1.2.0-py313h2fc2bef_3.conda hash: - md5: 6c4d3597cf43f3439a51b2b13e29a4ba - sha256: dadec2879492adede0a9af0191203f9b023f788c18efd45ecac676d424c458ae + md5: 3bc8e37c6272e48b6eb6d15267b8a377 + sha256: 6b51c465b404e2f1ae3633ad48dc791f8c2c9352fd5adb57c8f0ac027da24336 category: dev optional: true - name: brotli-python @@ -565,10 +565,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/brotli-python-1.2.0-py313h3ebfc14_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/brotli-python-1.2.0-py313h3c654a2_3.conda hash: - md5: 916a39a0261621b8c33e9db2366dd427 - sha256: 3558006cd6e836de8dff53cbe5f0b9959f96ea6a6776b4e14f1c524916dd956c + md5: 23164ae3365d9c129e54530330bfeb4f + sha256: b92954b6ce876fb84a4447d01afe717143001622e40d95fd9cedc4ae67002e86 category: dev optional: true - name: bzip2 @@ -578,10 +578,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/bzip2-1.0.8-hda65f42_9.conda + url: https://repo.prefix.dev/conda-forge/linux-64/bzip2-1.0.8-hda65f42_10.conda hash: - md5: d2ffd7602c02f2b316fd921d39876885 - sha256: 0b75d45f0bba3e95dc693336fa51f40ea28c980131fec438afb7ce6118ed05f6 + md5: e675fabcf81499adc7edf58124fb1e01 + sha256: 1a0d382c515ebf55f8ee1f38c8b81bc95af5c2acc42ad53b66bc5df932032f96 category: main optional: false - name: bzip2 @@ -592,10 +592,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/bzip2-1.0.8-h0ad9c76_9.conda + url: https://repo.prefix.dev/conda-forge/win-64/bzip2-1.0.8-h0ad9c76_10.conda hash: - md5: 4cb8e6b48f67de0b018719cdf1136306 - sha256: 76dfb71df5e8d1c4eded2dbb5ba15bb8fb2e2b0fe42d94145d5eed4c75c35902 + md5: c3301c058362f340100d91cd8be0393f + sha256: 04767466ee9227c9c57ab2c6503e0149177d34111c7418d2f420297acb1eb229 category: main optional: false - name: c-ares @@ -604,11 +604,11 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/c-ares-1.34.8-hb03c661_0.conda + libgcc: '>=15' + url: https://repo.prefix.dev/conda-forge/linux-64/c-ares-1.34.8-hebe6cf0_2.conda hash: - md5: 6130ad6705adc993b5d8482b7f66e01f - sha256: dee93a82d045f9aa8277829aa465224afa3c7a6ac18388de66099b2be7f705e7 + md5: 3ad2b403be8fc5612b9159e2ce621f69 + sha256: 9c37cc233238adf366ea75b0e845662a5be07ceadf62e458183516369340274b category: main optional: false - name: ca-certificates @@ -708,27 +708,27 @@ package: category: dev optional: true - name: charset-normalizer - version: 3.4.9 + version: 3.5.1 manager: conda platform: linux-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.9-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.5.1-pyhd8ed1ab_0.conda hash: - md5: d154b40b109e503430979e8a8d099eaf - sha256: 8d8813ef655b4e75e4fb897abd83ad548882efad7b4e836b021b797f42780799 + md5: e0ac3accc64e23e40969d660e5f58ac8 + sha256: cb60ef3e0631c8bacb4f7057196dee4496091a22baa3bb4b9bccb12c7e1c921b category: dev optional: true - name: charset-normalizer - version: 3.4.9 + version: 3.5.1 manager: conda platform: win-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.9-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.5.1-pyhd8ed1ab_0.conda hash: - md5: d154b40b109e503430979e8a8d099eaf - sha256: 8d8813ef655b4e75e4fb897abd83ad548882efad7b4e836b021b797f42780799 + md5: e0ac3accc64e23e40969d660e5f58ac8 + sha256: cb60ef3e0631c8bacb4f7057196dee4496091a22baa3bb4b9bccb12c7e1c921b category: dev optional: true - name: colorama @@ -790,36 +790,36 @@ package: category: main optional: false - name: coverage - version: 7.15.2 + version: 7.15.4 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - python: '>=3.13,<3.14.0a0' + python: '' python_abi: 3.13.* tomli: '' - url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.15.2-py313h3dea7bd_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.15.4-py313h55b89ea_1.conda hash: - md5: 0ca456463b87657599aecdb9c664b3d8 - sha256: 83ae7eb4af7533369cd373320be5973de018b5dee01a43c42c06bf5a773ca306 + md5: b8f4dc4f7a959ab778cd11e463d90e0f + sha256: 04f234ebf4d9b697b1674108263ad5d651f7ec467ef93f09f34c26be8a32dbf7 category: dev optional: true - name: coverage - version: 7.15.2 + version: 7.15.4 manager: conda platform: win-64 dependencies: - python: '>=3.13,<3.14.0a0' + python: '' python_abi: 3.13.* tomli: '' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.15.2-py313hd650c13_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.15.4-py313h868807b_1.conda hash: - md5: 02f704464af27eda68e63a4910bac78c - sha256: bed6036169a31b2b4171b165bc17e101cb9023bb66303b29306782b7f216619b + md5: f96b7d02d9935b5e9fed8f4de37ce5c7 + sha256: 9f43c7c2005145fc5d6041a7e9c3ec407fe570f62d142f667ad2df7dd12a3e9a category: dev optional: true - name: cycler @@ -998,10 +998,10 @@ package: dependencies: libfreetype: 2.14.3 libfreetype6: 2.14.3 - url: https://repo.prefix.dev/conda-forge/linux-64/freetype-2.14.3-ha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/freetype-2.14.3-ha770c72_2.conda hash: - md5: 8462b5322567212beeb025f3519fb3e2 - sha256: c934c385889c7836f034039b43b05ccfa98f53c900db03d8411189892ced090b + md5: 2d0ea23b23603e07ca47f23f949f67b6 + sha256: 612a8e0c1a6ecae23da54d81ef395f6ebb5c8e4468ec2611593ebce75876a4e0 category: main optional: false - name: freetype @@ -1012,38 +1012,38 @@ package: libfreetype: 2.14.3 libfreetype6: 2.14.3 zlib: '' - url: https://repo.prefix.dev/conda-forge/win-64/freetype-2.14.3-h57928b3_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/freetype-2.14.3-h57928b3_2.conda hash: - md5: e77293b32225b136a8be300f93d0e89f - sha256: a0e419e96146159f12344c870dca608d11bca36841f228092b986ffc2e1e0f02 + md5: 6fc6c09c05a099d58efd9b2e96598e41 + sha256: 32f7dd8ffe62fd485e9e6570e871f5be45af74c84fde62241a2417046a373efd category: main optional: false - name: h2 - version: 4.4.0 + version: 4.4.1 manager: conda platform: linux-64 dependencies: hpack: '>=4.2,<5' hyperframe: '>=6.1,<7' python: '' - url: https://repo.prefix.dev/conda-forge/noarch/h2-4.4.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/h2-4.4.1-pyhcf101f3_0.conda hash: - md5: aae3214aab65ae635fbb3cc455596a86 - sha256: 1bdffcb701cf1f4429733fc2e194995bab5ecc71073d84a434dcfb57049a4265 + md5: e652ac7756069c456d0da2a922cd7df5 + sha256: 307dd6ec90140c3cf4171071b0e5e870abec314f4565c1edd5bc433e942cdcc0 category: dev optional: true - name: h2 - version: 4.4.0 + version: 4.4.1 manager: conda platform: win-64 dependencies: hpack: '>=4.2,<5' hyperframe: '>=6.1,<7' python: '' - url: https://repo.prefix.dev/conda-forge/noarch/h2-4.4.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/h2-4.4.1-pyhcf101f3_0.conda hash: - md5: aae3214aab65ae635fbb3cc455596a86 - sha256: 1bdffcb701cf1f4429733fc2e194995bab5ecc71073d84a434dcfb57049a4265 + md5: e652ac7756069c456d0da2a922cd7df5 + sha256: 307dd6ec90140c3cf4171071b0e5e870abec314f4565c1edd5bc433e942cdcc0 category: dev optional: true - name: h5py @@ -1053,15 +1053,15 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' cached-property: '' - hdf5: '>=2.1.0,<3.0a0' - libgcc: '>=14' - numpy: '>=1.23,<3' + hdf5: '>=2.2.0,<3.0a0' + libgcc: '>=15' + numpy: '>=1.25,<3' python: '>=3.13,<3.14.0a0' python_abi: 3.13.* - url: https://repo.prefix.dev/conda-forge/linux-64/h5py-3.16.0-nompi_py313h22c32d4_102.conda + url: https://repo.prefix.dev/conda-forge/linux-64/h5py-3.16.0-nompi_py313hce4e9db_104.conda hash: - md5: 37727e0bcda5059c33c83fdf5b13a9a1 - sha256: 3def6d562885610497befa9dd81c685c53bb027309407797ad9918d4179dda21 + md5: 7dfbf9e531653851f910ca031b9435c3 + sha256: 9607bed2b2aa655a739ae5dea23ec888193d04d500b527a5cb0e3981ae641352 category: main optional: false - name: h5py @@ -1070,55 +1070,55 @@ package: platform: win-64 dependencies: cached-property: '' - hdf5: '>=2.1.0,<3.0a0' - numpy: '>=1.23,<3' + hdf5: '>=2.2.0,<3.0a0' + numpy: '>=1.25,<3' python: '>=3.13,<3.14.0a0' python_abi: 3.13.* ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/h5py-3.16.0-nompi_py313hd050a09_102.conda + url: https://repo.prefix.dev/conda-forge/win-64/h5py-3.16.0-nompi_py313hd050a09_104.conda hash: - md5: 9e9b344f00e7fa96311ae54de9370a6e - sha256: 5ee4b5608dd1c65b21268627cd590989e4de972ffe2b8e4fe5a93c8c8ed7f54e + md5: 41479c21dc1dee160147330952227442 + sha256: 921b640d97d3592e1b778e734ca33c885a5fe6d46c694ae0aaf785202b72159a category: main optional: false - name: hdf5 - version: 2.1.0 + version: 2.2.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' aws-c-auth: '>=0.10.4,<0.10.5.0a0' - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' aws-c-http: '>=0.11.0,<0.11.1.0a0' - aws-c-io: '>=0.27.3,<0.27.4.0a0' - aws-c-s3: '>=0.12.8,<0.12.9.0a0' + aws-c-io: '>=0.27.5,<0.27.6.0a0' + aws-c-s3: '>=0.13.1,<0.13.2.0a0' aws-c-sdkutils: '>=0.2.7,<0.2.8.0a0' libaec: '>=1.1.5,<2.0a0' libcurl: '>=8.21.0,<9.0a0' libgcc: '>=14' libgfortran: '' - libgfortran5: '>=14.3.0' + libgfortran5: '>=14.4.0' libstdcxx: '>=14' libzlib: '>=1.3.2,<2.0a0' openssl: '>=3.5.7,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/hdf5-2.1.0-nompi_h654f344_110.conda + url: https://repo.prefix.dev/conda-forge/linux-64/hdf5-2.2.0-nompi_hc529623_100.conda hash: - md5: 58484580a0f626dbe7d5145f014dbfd4 - sha256: 548411cb10baf1122c46cfef555936c385137d3637b75bd322e7574eda933842 + md5: 336f7fb9af0c49cc246e2cff0992c3c4 + sha256: 786d126bfb33b923dd1341a92c2a3edd0ff5d0a71db8557fca9324ea4e93d677 category: main optional: false - name: hdf5 - version: 2.1.0 + version: 2.2.0 manager: conda platform: win-64 dependencies: aws-c-auth: '>=0.10.4,<0.10.5.0a0' - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' aws-c-http: '>=0.11.0,<0.11.1.0a0' - aws-c-io: '>=0.27.3,<0.27.4.0a0' - aws-c-s3: '>=0.12.8,<0.12.9.0a0' + aws-c-io: '>=0.27.5,<0.27.6.0a0' + aws-c-s3: '>=0.13.1,<0.13.2.0a0' aws-c-sdkutils: '>=0.2.7,<0.2.8.0a0' libaec: '>=1.1.5,<2.0a0' libcurl: '>=8.21.0,<9.0a0' @@ -1127,10 +1127,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/hdf5-2.1.0-nompi_h0d3e4b2_110.conda + url: https://repo.prefix.dev/conda-forge/win-64/hdf5-2.2.0-nompi_hf525611_100.conda hash: - md5: 146134e4db96613ecdc63cf44bec847d - sha256: f6c79581d03d2e2e0cbbb0391d21a149a1f9c311159a9f74c6be8a79e2f696d9 + md5: e8a351f16983732043b55f0a12b2a7d9 + sha256: 44d0cda0efcf783780b7b0b5cece0c4a0bf106bc6db66a1dcde39b409ef0d08d category: main optional: false - name: hpack @@ -1189,10 +1189,10 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' libstdcxx: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/icu-78.3-h54a6638_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/icu-78.3-py310h44b86e0_2.conda hash: - md5: 4ef4b977bb216a3001a3334696a80850 - sha256: d7c260b7e1cf22ce04d6ba8a86eabf4e6c50bc96a5c27fe2ecb32298af3e88eb + md5: 72a381cbad04f24b1c2a43ef707f45b4 + sha256: 9f07834f0c546ab14d885ce0366285f61f44e326c0edd1fc63b8294e113ae432 category: main optional: false - name: icu @@ -1210,27 +1210,27 @@ package: category: main optional: false - name: idna - version: '3.18' + version: '3.19' manager: conda platform: linux-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/idna-3.18-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/idna-3.19-pyhcf101f3_0.conda hash: - md5: 577b04680ae422adb86fc60d7b940659 - sha256: c75632ea624aa450a394f570749420c5a2e0997d0216bc29d5d45b0f39df0426 + md5: a39ae05027e9b707742e41b30d296b75 + sha256: 1c35a59c1545ad0fdaddf1fbde7bcfa6ef41a8d68c3a2b0b4a291be00676163e category: dev optional: true - name: idna - version: '3.18' + version: '3.19' manager: conda platform: win-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/idna-3.18-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/idna-3.19-pyhcf101f3_0.conda hash: - md5: 577b04680ae422adb86fc60d7b940659 - sha256: c75632ea624aa450a394f570749420c5a2e0997d0216bc29d5d45b0f39df0426 + md5: a39ae05027e9b707742e41b30d296b75 + sha256: 1c35a59c1545ad0fdaddf1fbde7bcfa6ef41a8d68c3a2b0b4a291be00676163e category: dev optional: true - name: imagesize @@ -1365,11 +1365,11 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/keyutils-1.6.3-hb9d3cd8_0.conda + libgcc: '>=15' + url: https://repo.prefix.dev/conda-forge/linux-64/keyutils-1.6.3-h7cc23a3_1.conda hash: - md5: b38117a3c920364aff79f870c984b4a3 - sha256: 0960d06048a7185d3542d850986d807c6e37ca2e644342dd0c72feefcf26c2a4 + md5: ba55d1b89fd7775e67de8291029b4059 + sha256: dd053c96dcb0dcfd59422aefea9d2fe937a190167f34fba7893ec1e10a7e8963 category: main optional: false - name: kiwisolver @@ -1412,13 +1412,13 @@ package: __glibc: '>=2.17,<3.0.a0' keyutils: '>=1.6.3,<2.0a0' libedit: '>=3.1.20250104,<4.0a0' - libgcc: '>=14' - libstdcxx: '>=14' + libgcc: '>=15' + libstdcxx: '>=15' openssl: '>=3.5.7,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/krb5-1.22.2-hbde042b_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/krb5-1.22.2-hbc21106_2.conda hash: - md5: 54157a1c8c0bb70f62dd0b17fba7e7f2 - sha256: 9b07046870772f28740e3f6149f09ff222843733087a33c5540b169c6289652d + md5: 53318d715316929a574f83591308b1f8 + sha256: 2a5c38c85e63df84c4e69ee71439841ce570d259ae3060627bb9a49a938d66f4 category: main optional: false - name: krb5 @@ -1430,10 +1430,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/krb5-1.22.2-h719d79b_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/krb5-1.22.2-h719d79b_2.conda hash: - md5: 00335c2c4a98656554771aaf6f1a7400 - sha256: c55745796e762ba9e817ab1fc0f21f1a049e202f90fa762df39578f37923f6c2 + md5: 93f5a01dec294a2228f757fe2f3432d4 + sha256: 63ff03324e903eb01a715ccf357df56d66224e61952fd6615d86490ebefb3285 category: main optional: false - name: lcms2 @@ -1541,11 +1541,11 @@ package: manager: conda platform: linux-64 dependencies: - mkl: '>=2026.0.0,<2027.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libblas-3.11.0-8_h5875eb1_mkl.conda + mkl: '>=2026.1.0,<2027.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/libblas-3.11.0-9_h5875eb1_mkl.conda hash: - md5: 8ae84a87356b604a62f1aee136ef8efb - sha256: e30f7fa2a2fb6985f9ac6604575cb318b9ae44e263f6cacc282daee9dbd6127d + md5: 1c05815b5b3742a5f4398d94fec7aa11 + sha256: a8c8b832fb56469221612e1f33c1c01868146c85721966b663a35d4248121e7e category: main optional: false - name: libblas @@ -1553,11 +1553,11 @@ package: manager: conda platform: win-64 dependencies: - mkl: '>=2026.0.0,<2027.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/libblas-3.11.0-8_h8455456_mkl.conda + mkl: '>=2026.1.0,<2027.0a0' + url: https://repo.prefix.dev/conda-forge/win-64/libblas-3.11.0-9_h8455456_mkl.conda hash: - md5: 4a0ce24b1a946ff77ae9eaa7ef015a33 - sha256: 43a87b59e6d4c68d80b2e4de487b1b54d66fe1f9a06636909b5a5ab9eae27269 + md5: 17b26a4ad064259983bec1eaa36f40d3 + sha256: a99c640f10a3f77efe5c6605676ddc8d365d020eec4fdf1c803d34bdaf49b357 category: main optional: false - name: libbrotlicommon @@ -1566,11 +1566,11 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlicommon-1.2.0-hb03c661_1.conda + libgcc: '>=15' + url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlicommon-1.2.0-h39a168f_3.conda hash: - md5: 72c8fd1af66bd67bf580645b426513ed - sha256: 318f36bd49ca8ad85e6478bd8506c88d82454cc008c1ac1c6bf00a3c42fa610e + md5: 7a2499a177753582fb7ae7e9dc4a908a + sha256: e5864f257f839ffc27d681659bac95901f524f602b9121e5dcc5e2df18437f2d category: main optional: false - name: libbrotlicommon @@ -1581,10 +1581,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libbrotlicommon-1.2.0-hfd05255_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/libbrotlicommon-1.2.0-hf02afa3_3.conda hash: - md5: 444b0a45bbd1cb24f82eedb56721b9c4 - sha256: 5097303c2fc8ebf9f9ea9731520aa5ce4847d0be41764edd7f6dee2100b82986 + md5: 8ef4beb3cb18e1a876b9af9a757cc1a5 + sha256: c739589318a1f8a88cd1b66d385176fd1ec2c4609e9f90d23d748be94b547e4e category: main optional: false - name: libbrotlidec @@ -1594,11 +1594,11 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libbrotlicommon: 1.2.0 - libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlidec-1.2.0-hb03c661_1.conda + libgcc: '>=15' + url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlidec-1.2.0-ha411449_3.conda hash: - md5: 366b40a69f0ad6072561c1d09301c886 - sha256: 12fff21d38f98bc446d82baa890e01fd82e3b750378fedc720ff93522ffb752b + md5: 6ab3315dc56618d652c1da42a648a129 + sha256: dad31b6d104973deb89710929a35651033aad692d4e7793cdb5b786a9bd54678 category: main optional: false - name: libbrotlidec @@ -1610,10 +1610,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libbrotlidec-1.2.0-hfd05255_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/libbrotlidec-1.2.0-h84f9c24_3.conda hash: - md5: 450e3ae947fc46b60f1d8f8f318b40d4 - sha256: 3239ce545cf1c32af6fffb7fc7c75cb1ef5b6ea8221c66c85416bb2d46f5cccb + md5: 10c479888ee4e960587967b2d0c8143a + sha256: f4bdb7ec97c3122e531fc867efae5ec928b649d047aa70d42893f0d8eb110fd9 category: main optional: false - name: libbrotlienc @@ -1623,11 +1623,11 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libbrotlicommon: 1.2.0 - libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlienc-1.2.0-hb03c661_1.conda + libgcc: '>=15' + url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlienc-1.2.0-h018ffa1_3.conda hash: - md5: 4ffbb341c8b616aa2494b6afb26a0c5f - sha256: a0c15c79997820bbd3fbc8ecf146f4fe0eca36cc60b62b63ac6cf78857f1dd0d + md5: 2ac965638d4c6b2b38383bb1aebaf543 + sha256: d37124d0f51816e7d5e3a94bfc9ed3d6174d077f9b4f832d20c5a08b52bebf1f category: main optional: false - name: libbrotlienc @@ -1639,10 +1639,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libbrotlienc-1.2.0-hfd05255_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/libbrotlienc-1.2.0-he2a975b_3.conda hash: - md5: ccd93cfa8e54fd9df4e83dbe55ff6e8c - sha256: 3226df6b7df98734440739f75527d585d42ca2bfe912fbe8d1954c512f75341a + md5: cb5d08dc81f52e87c27914b5636cd995 + sha256: c5e638ea9704c94b316238b425a3439ba38d4d8fba81682842e6d7d464472848 category: main optional: false - name: libcblas @@ -1651,10 +1651,10 @@ package: platform: linux-64 dependencies: libblas: 3.11.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libcblas-3.11.0-8_hfef963f_mkl.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libcblas-3.11.0-9_hfef963f_mkl.conda hash: - md5: 2101410a3915785b2c1595d1ae94e32c - sha256: a3ea22126a74321ddf754a0efaf998486ffb8b9ec69fc735b3f0eacb6ffc8a4e + md5: cbdd209a7b8cef670cc50830428a3b9d + sha256: 8ce1b4cdc6e0feb53c5f8e3cf69b1b2c034f5e2726a4027b2fa6feeb0e7fb93e category: main optional: false - name: libcblas @@ -1663,10 +1663,10 @@ package: platform: win-64 dependencies: libblas: 3.11.0 - url: https://repo.prefix.dev/conda-forge/win-64/libcblas-3.11.0-8_h2a3cdd5_mkl.conda + url: https://repo.prefix.dev/conda-forge/win-64/libcblas-3.11.0-9_h2a3cdd5_mkl.conda hash: - md5: 09f1d8e4d2675d34ad2acb115211d10c - sha256: 2a5b6555b481df4603e44cba49a6ef727584fd2f3c5235dd4bcb3028fffbdfb5 + md5: 9d1d0c22e9ed8c31ec2efc0d063d6f48 + sha256: 8c20714bbb85c8a109e9002e76c32be64a82d9867beb1a35a20c85258cc2b535 category: main optional: false - name: libcurl @@ -1676,17 +1676,17 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' krb5: '>=1.22.2,<1.23.0a0' - libgcc: '>=14' + libgcc: '>=15' libnghttp2: '>=1.68.1,<2.0a0' - libpsl: '>=0.22.0,<0.23.0a0' + libpsl: '>=0.23.1,<0.24.0a0' libssh2: '>=1.11.1,<2.0a0' libzlib: '>=1.3.2,<2.0a0' openssl: '>=3.5.7,<4.0a0' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libcurl-8.21.0-hae6b9f4_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libcurl-8.21.0-ha042cf0_5.conda hash: - md5: f9c59d277a16ec8f272b2d5dd2ec3335 - sha256: ba8354084b34fce56d5697982fce4a384c148e972e15c0ab891187617fe7ec29 + md5: 0ed167049513943d078a6c997df2b4e0 + sha256: 0b6cc13e36cf19ae9b764740112fc591682e189c99353be9f72f3d96ccf29d79 category: main optional: false - name: libcurl @@ -1695,16 +1695,16 @@ package: platform: win-64 dependencies: krb5: '>=1.22.2,<1.23.0a0' - libpsl: '>=0.22.0,<0.23.0a0' + libpsl: '>=0.23.1,<0.24.0a0' libssh2: '>=1.11.1,<2.0a0' libzlib: '>=1.3.2,<2.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libcurl-8.21.0-h51a1c48_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/libcurl-8.21.0-hdb0ef4a_5.conda hash: - md5: 88c875a8f34785d6f6185ceb646154fa - sha256: e9a9231e6c04b82979a6a1a4f90b8a697dc3a42884e709dee8ba5d0355b45296 + md5: 50861643cbe90dc7267feb7854b8efdf + sha256: bf5445ab8acfaccaf511d774f131cf0d99c5eef6b8def270e832ad26970d5011 category: main optional: false - name: libdeflate @@ -1714,10 +1714,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libdeflate-1.25-h17f619e_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libdeflate-1.25-hd45a770_1.conda hash: - md5: 6c77a605a7a689d17d4819c0f8ac9a00 - sha256: aa8e8c4be9a2e81610ddf574e05b64ee131fab5e0e3693210c9d6d2fba32c680 + md5: 40f9b31aa9cf007789867df0decd0492 + sha256: 82e134c8a08b1eed9a2ed8ab578b89aa1730dcde3dea8dd87645ed0637878e54 category: main optional: false - name: libdeflate @@ -1728,10 +1728,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libdeflate-1.25-h51727cc_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libdeflate-1.25-h1a1d4e4_1.conda hash: - md5: e77030e67343e28b084fabd7db0ce43e - sha256: 834e4881a18b690d5ec36f44852facd38e13afe599e369be62d29bd675f107ee + md5: e4e122e124676a49eebf241399ad8393 + sha256: af1cda21d4653f594fbef20aa4e1ff158a546902b3307ef8af9a9b44b43862d2 category: main optional: false - name: libedit @@ -1740,12 +1740,12 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - ncurses: '>=6.5,<7.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.conda + libgcc: '>=14' + ncurses: '>=6.6,<7.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/libedit-3.1.20250104-pl5321h373387f_1.conda hash: - md5: c277e0a4d549b03ac1e9d6cbbe3d017b - sha256: d789471216e7aba3c184cd054ed61ce3f6dac6f87a50ec69291b9297f8c18724 + md5: 50708d3b951d0f8e2d7f2df5b5edc040 + sha256: 6473eb8caf2aae830f37caa93db9b26dddf7ac84b63229e8bf7fc0e5c3ab95b0 category: main optional: false - name: libev @@ -1753,11 +1753,12 @@ package: manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - url: https://repo.prefix.dev/conda-forge/linux-64/libev-4.33-hd590300_2.conda + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/libev-4.33-h280c20c_3.conda hash: - md5: 172bf1cd1ff8629f2b1179945ed45055 - sha256: 1cd6048169fa0395af74ed5d8f1716e22c19a81a8a36f934c110ca3ad4dd27b4 + md5: 7bc31538d6e3fb349e897353969237ec + sha256: e4418f68d01a6307c4431b585c71b584f40189877364e542ee87deb777f5e85b category: main optional: false - name: libexpat @@ -1788,30 +1789,30 @@ package: category: main optional: false - name: libffi - version: 3.5.2 + version: 3.7.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libffi-3.5.2-h3435931_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libffi-3.7.0-h3435931_0.conda hash: - md5: a360c33a5abe61c07959e449fa1453eb - sha256: 31f19b6a88ce40ebc0d5a992c131f57d919f73c0b92cd1617a5bec83f6e961e6 + md5: 0abe40a9880086ca4d2e5daf09dceff9 + sha256: ac38603008bf1e99b8ed379b1a656a67a70e2841f2b6a069c630cdf6316012d2 category: main optional: false - name: libffi - version: 3.5.2 + version: 3.7.0 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libffi-3.5.2-h3d046cb_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libffi-3.7.0-h3d046cb_0.conda hash: - md5: 720b39f5ec0610457b725eb3f396219a - sha256: 59d01f2dfa8b77491b5888a5ab88ff4e1574c9359f7e229da254cdfe27ddc190 + md5: 92bdfc0e5012660892b0e0eaf3069a5c + sha256: 2ea8d2fe7b84ca37653777e15ac1e7abd35f0c90d3efbe7f6c4de9b489606369 category: main optional: false - name: libfreetype @@ -1820,10 +1821,10 @@ package: platform: linux-64 dependencies: libfreetype6: '>=2.14.3' - url: https://repo.prefix.dev/conda-forge/linux-64/libfreetype-2.14.3-ha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libfreetype-2.14.3-ha770c72_2.conda hash: - md5: e289f3d17880e44b633ba911d57a321b - sha256: 38f014a7129e644636e46064ecd6b1945e729c2140e21d75bb476af39e692db2 + md5: f8054e759d0ddddaf34a5c8fedc900a1 + sha256: fb12ecb46c30d18d928c0e8fc346ab13b5f6fc8a9cacae4f2f4bb188782586f5 category: main optional: false - name: libfreetype @@ -1832,10 +1833,10 @@ package: platform: win-64 dependencies: libfreetype6: '>=2.14.3' - url: https://repo.prefix.dev/conda-forge/win-64/libfreetype-2.14.3-h57928b3_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/libfreetype-2.14.3-h57928b3_2.conda hash: - md5: e45b52fb9a81c9e2708465a706e05952 - sha256: 035d0c67bf9f7a16f4a1764f420c120f1a995d071bb265fcc66ef688ef709d7b + md5: 740f99c3c91079c03874b809fedace1b + sha256: d794d7fddb6eea50e18a62fa27ab3819f40d51bad00b90cf4ca591fb0d4006c2 category: main optional: false - name: libfreetype6 @@ -1844,13 +1845,13 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' - libpng: '>=1.6.55,<1.7.0a0' + libgcc: '>=15' + libpng: '>=1.6.58,<1.7.0a0' libzlib: '>=1.3.2,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libfreetype6-2.14.3-h73754d4_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libfreetype6-2.14.3-h5e6c136_2.conda hash: - md5: fb16b4b69e3f1dcfe79d80db8fd0c55d - sha256: 16f020f96da79db1863fcdd8f2b8f4f7d52f177dd4c58601e38e9182e91adf1d + md5: b72a266a9317036fd0464cb98b027cd0 + sha256: ec607dd5445dd17ff6bf8b7fe6832e5504c226dd91d3aaea7ba83569808b0ce4 category: main optional: false - name: libfreetype6 @@ -1863,85 +1864,85 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libfreetype6-2.14.3-hdbac1cb_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/libfreetype6-2.14.3-hdbac1cb_2.conda hash: - md5: 4e4d54f9f98383d977ba56ef39ebf46d - sha256: 0bbd19c9f7c4d0232b31892e6a4d1f82b8d19d1b84d89725f1f491b336447758 + md5: 8157483eb7ed3fcba71aad3b50a97131 + sha256: cbc650854003e434d4ff6c7b1a2667e38a4242ad8a391a1c5ff89721624065ce category: main optional: false - name: libgcc - version: 15.2.0 + version: 16.1.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' _openmp_mutex: '>=4.5' - url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-15.2.0-he0feb66_20.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-16.1.0-ha9f2e26_3.conda hash: - md5: 3533de187cf7283f96bfdb28ad73e2bc - sha256: e3b7bb287d1685b15781a6d9e3408d6ddaff23f5a1d0d6c0140619dd3950fe72 + md5: c471b242d299f8bc1e2b3e0f6e9f4b77 + sha256: af35751596409fc1a1a81a32b7f1e195bca7f648dfe7c64f8ec4848b3a5003f8 category: main optional: false - name: libgcc - version: 15.2.0 + version: 16.1.0 manager: conda platform: win-64 dependencies: _openmp_mutex: '>=4.5' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' - url: https://repo.prefix.dev/conda-forge/win-64/libgcc-15.2.0-h8ee18e1_20.conda + url: https://repo.prefix.dev/conda-forge/win-64/libgcc-16.1.0-h110b43a_3.conda hash: - md5: 00528c2577868b9cfefec85b8fe26d66 - sha256: 954dcca1cbf2ad1e7ac2129bf77f787bec0a2eb9edb3f8b79c9a93b492a20c40 + md5: e8d20d3561601e827dc754481294f40c + sha256: 125a3ea39e7308680a494416c5b8868bafefafc5f82987fae282c300614d979e category: main optional: false - name: libgcc-ng - version: 15.2.0 + version: 16.1.0 manager: conda platform: linux-64 dependencies: - libgcc: 15.2.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-ng-15.2.0-h69a702a_20.conda + libgcc: 16.1.0 + url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-ng-16.1.0-h69a702a_3.conda hash: - md5: c099368d009e4d828449eaed7b2cb701 - sha256: e01a2a027fceea1011d2e74307845fb0c4bd6d195ff27fbf5baeafa55531d128 + md5: 824e26366da140518fdc55816eaef929 + sha256: d3368af8b654073a0937fc7d3add75dbd09aae0b6e225596685756885b171309 category: main optional: false - name: libgfortran - version: 15.2.0 + version: 16.1.0 manager: conda platform: linux-64 dependencies: - libgfortran5: 15.2.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran-15.2.0-h69a702a_20.conda + libgfortran5: 16.1.0 + url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran-16.1.0-h69a702a_3.conda hash: - md5: a450a08a63f940e9aa7b37692e71196a - sha256: 76d81032e264b74f519cc26962d5eb39547e0785fc9d2957bbc12e7a91214412 + md5: 3eae88e54adbd0448f865a74b2771192 + sha256: 0731a92037731af603b3653a67ffc98e07efc65765ebb603aa2e8fd1250ef21b category: main optional: false - name: libgfortran5 - version: 15.2.0 + version: 16.1.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=15.2.0' - url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran5-15.2.0-h68bc16d_20.conda + libgcc: '>=16.1.0' + url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran5-16.1.0-h79bb938_3.conda hash: - md5: 4edbcbea1a8790a7d58e648523b69546 - sha256: 95122f42566dc9a62b9615d2372b3f3c75fa7bd8bb1eda53aa7532ce60d545eb + md5: 0f1c5c900eb7fbee86871c1f80dbccd3 + sha256: 879e354ea894fe36c18160b000e35316cb3f196ff597f30dca209027ecf0fac2 category: main optional: false - name: libgomp - version: 15.2.0 + version: 16.1.0 manager: conda platform: win-64 dependencies: libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' - url: https://repo.prefix.dev/conda-forge/win-64/libgomp-15.2.0-h8ee18e1_20.conda + url: https://repo.prefix.dev/conda-forge/win-64/libgomp-16.1.0-h8ee18e1_3.conda hash: - md5: 3b2b211930103e49d77da1a7d9ea9af9 - sha256: 33606594501174cc1677c7dbe39de739c2f04e9a8ddbd95aa82e48d1bd79b388 + md5: fa88e8a67d2f6370f7b3cd45e8861dfd + sha256: 6ede93ef60404209453cddf8f1cae5b8d05dcc0c39e1021db1dace88db7543cf category: main optional: false - name: libhwloc @@ -1983,11 +1984,11 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libiconv-1.18-h3b78370_2.conda + libgcc: '>=15' + url: https://repo.prefix.dev/conda-forge/linux-64/libiconv-1.18-h0cb94f2_3.conda hash: - md5: 915f5995e94f60e9a4826e0b0920ee88 - sha256: c467851a7312765447155e071752d7bf9bf44d610a5687e32706f480aad2833f + md5: f92233bf33e24a25668bb2119e2c51f9 + sha256: f943117edb9cd4d9c61cc972eee5a34291dc55ea7a6e9e38da104995841cbcb6 category: main optional: false - name: libiconv @@ -1998,10 +1999,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libiconv-1.18-hc1393d2_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/libiconv-1.18-hc1393d2_3.conda hash: - md5: 64571d1dd6cdcfa25d0664a5950fdaa2 - sha256: 0dcdb1a5f01863ac4e8ba006a8b0dc1a02d2221ec3319b5915a1863254d7efa7 + md5: a8a2abdf0f901bc4779d9b7be0845921 + sha256: 35e04e3ddac7720fc7c550a1c9f998604299d6a7bd1f3ec9b2825d825061daa2 category: main optional: false - name: libjpeg-turbo @@ -2011,10 +2012,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libjpeg-turbo-3.2.0-hb03c661_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libjpeg-turbo-3.2.0-hb03c661_1.conda hash: - md5: 466badda5536d85ddc63ee9404f29735 - sha256: 716332fd31b3808da7a4235a05212a9e9da05e854864c3def2dea0b5d2bf7610 + md5: 898d1c9793eaa52efc4727bd84d2e39a + sha256: bba8538e6538ed58a8479b332337b96986561f975d06cfa2039a016c2d246ee4 category: main optional: false - name: libjpeg-turbo @@ -2025,10 +2026,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libjpeg-turbo-3.2.0-hfd05255_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libjpeg-turbo-3.2.0-hfd05255_1.conda hash: - md5: cf219146d5bf2fee5907409ff9f5ac89 - sha256: 3d6635efa9497b9c5ba7957df8067c0a980d5cb10a6ea136931809eb410f8a99 + md5: fc2c23bacefd1e733f1e1d6cd3b2aaeb + sha256: df78ab4c0eecb3dd9331898f96baeed8e5ca1c363346332517abeb0b614b9a53 category: main optional: false - name: liblapack @@ -2037,10 +2038,10 @@ package: platform: linux-64 dependencies: libblas: 3.11.0 - url: https://repo.prefix.dev/conda-forge/linux-64/liblapack-3.11.0-8_h5e43f62_mkl.conda + url: https://repo.prefix.dev/conda-forge/linux-64/liblapack-3.11.0-9_h5e43f62_mkl.conda hash: - md5: 370e81464714060008e60ee53825bb3e - sha256: 0cb26d433dfa15a392eaeeb8a96ac468f4d007d7e7e37ef7bf46856aaf9a9785 + md5: 255025c2d2df85b72c9ab3105f7611e4 + sha256: 3060d9393e7013a192eb55354def1a522348baa57c3ce4dc9cb904bf392a9ac1 category: main optional: false - name: liblapack @@ -2049,10 +2050,10 @@ package: platform: win-64 dependencies: libblas: 3.11.0 - url: https://repo.prefix.dev/conda-forge/win-64/liblapack-3.11.0-8_hf9ab0e9_mkl.conda + url: https://repo.prefix.dev/conda-forge/win-64/liblapack-3.11.0-9_hf9ab0e9_mkl.conda hash: - md5: d584799b920ecae9b75a2b70743a3de7 - sha256: 44999ed04bc0a56de44ee0ac8bd5b3702efd411a8b29491c0e3d3deb8619c94e + md5: bee6f13ab945c4034bdd0f722ad14dd5 + sha256: 62d0a7a70ee13c554d5d7ff94a2ba758c4111439822dcc81324dd4cfaf576071 category: main optional: false - name: liblzma @@ -2062,10 +2063,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/liblzma-5.8.3-hb03c661_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/liblzma-5.8.3-hb03c661_1.conda hash: - md5: b88d90cad08e6bc8ad540cb310a761fb - sha256: ec30e52a3c1bf7d0425380a189d209a52baa03f22fb66dd3eb587acaa765bd6d + md5: 1390b7c5ac0b1d8e447bc5efa6d3c8c2 + sha256: 9787df8c22a59c9a70d3e5a10db9ad663485e75e9ccc3f09bd092cb7b95e0dab category: main optional: false - name: liblzma @@ -2076,10 +2077,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/liblzma-5.8.3-hfd05255_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/liblzma-5.8.3-hfd05255_1.conda hash: - md5: 8f83619ab1588b98dd99c90b0bfc5c6d - sha256: d636d1a25234063642f9c531a7bb58d84c1c496411280a36ea000bd122f078f1 + md5: 880a0c8549479b198af21ba5dc49b109 + sha256: d36c4a1e1f80fd08e18a407e03622ff2f34dfdd022da6488ad19603dea19e6d5 category: main optional: false - name: libmpdec @@ -2089,10 +2090,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libmpdec-4.0.0-hb03c661_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libmpdec-4.0.0-hb03c661_2.conda hash: - md5: 2c21e66f50753a083cbe6b80f38268fa - sha256: fe171ed5cf5959993d43ff72de7596e8ac2853e9021dec0344e583734f1e0843 + md5: fcfed1dc5053eb1901b66e7b1fc32588 + sha256: 46820b4a835e175940ae20bec00fdddaff804cda27a1408ab1b95e77a2196437 category: main optional: false - name: libmpdec @@ -2103,10 +2104,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libmpdec-4.0.0-hfd05255_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/libmpdec-4.0.0-hfd05255_2.conda hash: - md5: e4a9fc2bba3b022dad998c78856afe47 - sha256: 40dcd0b9522a6e0af72a9db0ced619176e7cfdb114855c7a64f278e73f8a7514 + md5: 5ae92fd6614edd024576e14069d7ad4c + sha256: f07e451de3db1836b87f7aedf95c8e65cdb06c0e6105329ba24bb5f7b5c75e2a category: main optional: false - name: libnghttp2 @@ -2115,16 +2116,16 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - c-ares: '>=1.34.6,<2.0a0' + c-ares: '>=1.34.8,<2.0a0' libev: '>=4.33,<5.0a0' - libgcc: '>=14' - libstdcxx: '>=14' - libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.5.5,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libnghttp2-1.68.1-h877daf1_0.conda + libgcc: '>=15' + libstdcxx: '>=15' + libzlib: '>=1.3.2,<2.0a0' + openssl: '>=3.5.7,<4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/libnghttp2-1.68.1-h74cf4be_1.conda hash: - md5: 2a45e7f8af083626f009645a6481f12d - sha256: 663444d77a42f2265f54fb8b48c5450bfff4388d9c0f8253dd7855f0d993153f + md5: 75d211f04ac87506f1f43420712a69fe + sha256: 11a2f54a6f391e25738bce0023e6ef499600147bbcf21c1fa69d2e251b03cc6a category: main optional: false - name: libpng @@ -2133,12 +2134,12 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' + libgcc: '>=15' libzlib: '>=1.3.2,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libpng-1.6.58-h421ea60_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libpng-1.6.58-h922cc85_1.conda hash: - md5: eba48a68a1a2b9d3c0d9511548db85db - sha256: 377cfe037f3eeb3b1bf3ad333f724a64d32f315ee1958581fc671891d63d3f89 + md5: fcf71c8d979148873f6f8ad4cfc73d86 + sha256: c19eefb87d70d9b4b0629fa48414a155a47a1be4f04583ae71ed8c5a9a32fdcb category: main optional: false - name: libpng @@ -2150,29 +2151,29 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libpng-1.6.58-h7351971_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libpng-1.6.58-hdc8cecf_1.conda hash: - md5: 52f1280563f3b48b5f75414cd2d15dd1 - sha256: 218913aeee391460bd0e341b834dbd9c6fa6ae0a4276c0c300266cc99a816a28 + md5: 5aa7348e73691187c81d51616f17e48a + sha256: 8c49c32adf3ba2c59783630b82377f54ab72204ea99e2bafc90a47a8e25c1032 category: main optional: false - name: libpsl - version: 0.22.0 + version: 0.23.1 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' icu: '>=78.3,<79.0a0' - libgcc: '>=14' - libstdcxx: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libpsl-0.22.0-h49b2146_1.conda + libgcc: '>=15' + libstdcxx: '>=15' + url: https://repo.prefix.dev/conda-forge/linux-64/libpsl-0.23.1-hd9e3e90_1.conda hash: - md5: af5ddfb52ad25d833c70c7511478d4eb - sha256: 71118885feab91c61bea4e9532ec46e0653b24f02e563681f822915aee8435bb + md5: 77be60417aa572afcb48cbe0f967401d + sha256: 09e8effdc89bc5d021349318d32b85594f5b8d8e3ab8f90a85b81f8fe695a566 category: main optional: false - name: libpsl - version: 0.22.0 + version: 0.23.1 manager: conda platform: win-64 dependencies: @@ -2180,10 +2181,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libpsl-0.22.0-h25e0afd_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/libpsl-0.23.1-h9b16d47_1.conda hash: - md5: ba200e33e10ccf0d730c4ce87badbdf1 - sha256: 040d4adabae2634b13183203e383c21f74ed98028b5d50bf9bae4968dd05aaa5 + md5: 39cdf8c4f59e4d253cfa8091c8b3d7de + sha256: e53fe3b09f82b59b644264133d6d148ac31bb5451b7583cff55690bf038f2f62 category: main optional: false - name: libsqlite @@ -2193,12 +2194,12 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' icu: '>=78.3,<79.0a0' - libgcc: '>=14' + libgcc: '>=15' libzlib: '>=1.3.2,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.53.4-hf4e2dac_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.53.4-h13e7031_1.conda hash: - md5: df088a279cd5e6fd2790b4c196434da1 - sha256: 72023efc207fe681e26b65fc9d668062cf0b4f0eacf3431e6eb099b95c1f2efd + md5: e72bbec309c2b0f37823ee7d4fabfcd3 + sha256: f20d70da54e5b31dd4a51fb1efeaafafd5ab6dd8d7ac9d1438eaa2526ac4ed3d category: main optional: false - name: libsqlite @@ -2209,10 +2210,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.53.4-hf5d6505_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.53.4-hf5d6505_1.conda hash: - md5: ca0d59f40a02a15e9b5d0ff8db0f85e3 - sha256: 62e1c45ec71ab2e5deeeb0e47e7df6a609991e91d46348f16df50c68fee145c8 + md5: a72d495965b144bb7da033642d389047 + sha256: 0a45d7c0f20146fff787a106f8fa187872e309c70975ff8f0936e188914c26ad category: main optional: false - name: libssh2 @@ -2221,13 +2222,13 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.5.0,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libssh2-1.11.1-hcf80075_0.conda + libgcc: '>=14' + libzlib: '>=1.3.2,<2.0a0' + openssl: '>=3.5.7,<4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/libssh2-1.11.1-h6154650_1.conda hash: - md5: eecce068c7e4eddeb169591baac20ac4 - sha256: fa39bfd69228a13e553bd24601332b7cfeb30ca11a3ca50bb028108fe90a7661 + md5: 5c526561e1d2a2e071941174eae84557 + sha256: 7e463000fa1cba3f3a6597b776f6ab301d425a96e3bc20d0d9d76a3b9f237aa3 category: main optional: false - name: libssh2 @@ -2235,40 +2236,40 @@ package: manager: conda platform: win-64 dependencies: - libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.5.0,<4.0a0' + libzlib: '>=1.3.2,<2.0a0' + openssl: '>=3.5.7,<4.0a0' ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libssh2-1.11.1-h9aa295b_0.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/libssh2-1.11.1-h734d217_1.conda hash: - md5: 9dce2f112bfd3400f4f432b3d0ac07b2 - sha256: cbdf93898f2e27cefca5f3fe46519335d1fab25c4ea2a11b11502ff63e602c09 + md5: a21dd9ca39e74910bb96989feb916420 + sha256: 1097b08429b4f53f5751a32c6d99a083d227ca7f7812c0b239eea124cec073a0 category: main optional: false - name: libstdcxx - version: 15.2.0 + version: 16.1.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: 15.2.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-15.2.0-h934c35e_20.conda + libgcc: 16.1.0 + url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-16.1.0-h934c35e_3.conda hash: - md5: fbd3d5506b11b5cfc916b29263b6b6f7 - sha256: b5eadda8fb0df262f0d424c4a0c8c1c8d65d904ce622f07936c793ea1b8a39d9 + md5: 470d16b28d90ad4368df1aa5bc7ec18d + sha256: 6e98c0283244b5f8bbc0e86f7cba4d4921136bfbabf8da42b898a7a1f10be949 category: main optional: false - name: libstdcxx-ng - version: 15.2.0 + version: 16.1.0 manager: conda platform: linux-64 dependencies: - libstdcxx: 15.2.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-15.2.0-hdf11a46_20.conda + libstdcxx: 16.1.0 + url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-16.1.0-hdf11a46_3.conda hash: - md5: 593dc263426eb14f16dc594bfdb9772a - sha256: 0b79903234f68410c11c33cb9829f7b3cb01a9ff2f42bf083dd2c51e886e6077 + md5: 3e4550b8d69e0477b618825525189cfc + sha256: 11df057f95c6d9c52ba16fd291b1608eb3ccf7eedf0c8647a8048c9416449e26 category: main optional: false - name: libtiff @@ -2332,10 +2333,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libwebp-base-1.6.0-hd42ef1d_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libwebp-base-1.6.0-hd42ef1d_1.conda hash: - md5: aea31d2e5b1091feca96fcfe945c3cf9 - sha256: 3aed21ab28eddffdaf7f804f49be7a7d701e8f0e46c856d801270b470820a37b + md5: 9332b53d0ea93c5d39e33be03a0c611a + sha256: 8415001414f488c85b72b9d8cc2071dfb3981a47bc3c8eb56ef91a57d12eae7f category: main optional: false - name: libwebp-base @@ -2346,10 +2347,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libwebp-base-1.6.0-h4d5522a_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libwebp-base-1.6.0-h4d5522a_1.conda hash: - md5: f9bbae5e2537e3b06e0f7310ba76c893 - sha256: 7b6316abfea1007e100922760e9b8c820d6fc19df3f42fb5aca684cfacb31843 + md5: 35a9475e4cc999d52921f57c181979fc + sha256: 4470d98d3178b0d45492eed4808afe421d2e7808352b8d06c2dc29166b75d94d category: main optional: false - name: libwinpthread @@ -2358,10 +2359,10 @@ package: platform: win-64 dependencies: ucrt: '' - url: https://repo.prefix.dev/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h57928b3_10.conda + url: https://repo.prefix.dev/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h11686cb_11.conda hash: - md5: 8a86073cf3b343b87d03f41790d8b4e5 - sha256: 0fccf2d17026255b6e10ace1f191d0a2a18f2d65088fd02430be17c701f8ffe0 + md5: fc1e6626817ba55a0d141858d6c0ef5d + sha256: 988c8fe5fca9e3510fd0b5671d67ae42c1fd632f8bd28f832a6735970eb69a36 category: main optional: false - name: libxcb @@ -2370,14 +2371,14 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' + libgcc: '>=15' pthread-stubs: '' - xorg-libxau: '>=1.0.11,<2.0a0' - xorg-libxdmcp: '' - url: https://repo.prefix.dev/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda + xorg-libxau: '>=1.0.12,<2.0a0' + xorg-libxdmcp: '>=1.1.5,<2.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/libxcb-1.17.0-hb83e432_1.conda hash: - md5: 92ed62436b625154323d40d5f2f11dd7 - sha256: 666c0c431b23c6cec6e492840b176dde533d48b7e6fb8883f5071223433776aa + md5: 64e856c420205b009da26471d3ac161d + sha256: ce25a1efa85a78a3ce3b16721d9c36153814adbf2fb004a15f72ec69894b4cb1 category: main optional: false - name: libxcb @@ -2389,12 +2390,12 @@ package: libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' pthread-stubs: '' ucrt: '>=10.0.20348.0' - xorg-libxau: '>=1.0.11,<2.0a0' - xorg-libxdmcp: '' - url: https://repo.prefix.dev/conda-forge/win-64/libxcb-1.17.0-h0e4246c_0.conda + xorg-libxau: '>=1.0.12,<2.0a0' + xorg-libxdmcp: '>=1.1.5,<2.0a0' + url: https://repo.prefix.dev/conda-forge/win-64/libxcb-1.17.0-h874e120_1.conda hash: - md5: a69bbf778a462da324489976c84cfc8c - sha256: 08dec73df0e161c96765468847298a420933a36bc4f09b50e062df8793290737 + md5: 98046512ad7f2c44e48ff77bce854052 + sha256: a99f266ade1140c3106cca0f71ae2b5627ff77e1e791db3837129d28d596800e category: main optional: false - name: libxml2 @@ -2409,10 +2410,10 @@ package: liblzma: '>=5.8.3,<6.0a0' libxml2-16: 2.15.3 libzlib: '>=1.3.2,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libxml2-2.15.3-h49c6c72_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libxml2-2.15.3-h49c6c72_1.conda hash: - md5: 995d8c8bad2a3cc8db14675a153dec2b - sha256: 3bc5551720c58591f6ea1146f7d1539c734ed1c40e7b9f5cb8cb7e900c509aba + md5: 2d34cdb31014cbc8f1e9384c89ede0a5 + sha256: a16a576a5844a3a0e1cdfc5e162b9fe9c64dccf6a93f44c293bb42851aebe2b4 category: main optional: false - name: libxml2 @@ -2428,10 +2429,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libxml2-2.15.3-h8ef44ab_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libxml2-2.15.3-h8ef44ab_1.conda hash: - md5: 95591ca5671d2213f5b2d5aa7818420d - sha256: a4599c6bbbbdd7db570896e520c557eec8e66d94e839a59d17dc1f24a3d5f82b + md5: 45a5a1c709a69f14cf176220788d18a9 + sha256: a83e9adcf7c50f20289dc6890707c8e4e84151b4204b0f7344998138807458d1 category: main optional: false - name: libxml2-16 @@ -2445,10 +2446,10 @@ package: libiconv: '>=1.18,<2.0a0' liblzma: '>=5.8.3,<6.0a0' libzlib: '>=1.3.2,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libxml2-16-2.15.3-hca6bf5a_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libxml2-16-2.15.3-hca6bf5a_1.conda hash: - md5: e79d2c2f24b027aa8d5ab1b1ba3061e7 - sha256: 3d44f737c5ae52d5af32682cc1530df433f401f8e58a7533926536244127572a + md5: 20e4d67ec908f0405124f11612c48305 + sha256: 087d4de023f22d6a28b9e1b818961dd41e9bda6e9793590600ff16ca150bf9cb category: main optional: false - name: libxml2-16 @@ -2463,10 +2464,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libxml2-16-2.15.3-h3cfd58e_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libxml2-16-2.15.3-h3cfd58e_1.conda hash: - md5: 9e8dd0d90ed830107b2c36801035b7db - sha256: 3b61ee3caba702d2ff432fa3920835db963026e5c99c4e6fdca0c6114f59e7ce + md5: 6e7dadff3f3bde2d29d29a3ec34f2d58 + sha256: 8163de24a7ddb4ebf9587c3a45ba950caf3690b9646b76f007ca15e6e52b5881 category: main optional: false - name: libzlib @@ -2475,10 +2476,10 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libzlib-1.3.2-h25fd6f3_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libzlib-1.3.2-h25fd6f3_3.conda hash: - md5: d87ff7921124eccd67248aa483c23fec - sha256: 55044c403570f0dc26e6364de4dc5368e5f3fc7ff103e867c487e2b5ab2bcda9 + md5: 0de0122d9570a8ab637c6b73db268389 + sha256: eb8a0db0aa570124f7d2a93d7c7f596e3390df5e047818d873baad32985fc736 category: main optional: false - name: libzlib @@ -2489,10 +2490,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libzlib-1.3.2-hfd05255_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/libzlib-1.3.2-hfd05255_3.conda hash: - md5: dbabbd6234dea34040e631f87676292f - sha256: 88609816e0cc7452bac637aaf65783e5edf4fee8a9f8e22bdc3a75882c536061 + md5: 5d2ff29d465097458cc3ff6569151991 + sha256: 0629c2cc0404d3bb29d6baa7b4ba62da80797015e86de050db81ea5a07050527 category: main optional: false - name: llvm-openmp @@ -2501,10 +2502,10 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-22.1.8-h4922eb0_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-22.1.8-h3206bd6_1.conda hash: - md5: 7bbfdc5a6eca997d3b0873a575c3e155 - sha256: a37aba21b85800af1e7c5b04ba76abab96b6e591eedf99dc6e4df83b0fefd7a5 + md5: dc2ace17c0da02fbb8273e139f84e7ce + sha256: cf74ea3b6c8f0c01ae3cea10ff9451e4475eb39ee99a2c0f1f1627630ef888e5 category: main optional: false - name: llvm-openmp @@ -2515,10 +2516,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-22.1.8-h4fa8253_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-22.1.8-h4fa8253_1.conda hash: - md5: de3551bf6508d45ca46b714639e52823 - sha256: 50c02902bb516eeb56680358f052be38b5bf74b40e78ea4b2a675e84957e7307 + md5: 8135c070cad2ee5bb28ea50c12e81ce9 + sha256: 41a804136fdade8cfa9db006f3c41cac1199a387e609c465d779cef271fda85e category: main optional: false - name: markupsafe @@ -2645,12 +2646,11 @@ package: libgcc: '>=14' libstdcxx: '>=14' llvm-openmp: '>=22.1.8' - onemkl-license: 2026.1.0 tbb: '>=2023.0.0' - url: https://repo.prefix.dev/conda-forge/linux-64/mkl-2026.1.0-hecca717_243.conda + url: https://repo.prefix.dev/conda-forge/linux-64/mkl-2026.1.0-hecca717_244.conda hash: - md5: cef284d6d9fe0caf11638f5f0e4f9a64 - sha256: c68967a13488684d87fb7ac77b73c6f3f825f2da403707a14e75374c0ce3629f + md5: 3575c034d908c0567c53ed6a33e9dfd9 + sha256: 0b903cfa21b1a3396b3468d41b8112d49a5bd7ff6642305791caca3af33fbaf2 category: main optional: false - name: mkl @@ -2659,15 +2659,14 @@ package: platform: win-64 dependencies: llvm-openmp: '>=22.1.8' - onemkl-license: 2026.1.0 tbb: '>=2023.0.0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/mkl-2026.1.0-hac47afa_233.conda + url: https://repo.prefix.dev/conda-forge/win-64/mkl-2026.1.0-hac47afa_234.conda hash: - md5: 5afbf28c4ca3e05b5469dbbd78c8e704 - sha256: ff355522fb0b6e33841167d9ca749147c8734d8be07b63b2ce25b0db043f42ed + md5: f0510f9d5e501462d72a5c0c798dbcc3 + sha256: f7568a5ebf9f4a401a6d9da7be4f82a8794cf305e870e77923a5712ba7f4b964 category: main optional: false - name: munkres @@ -2701,10 +2700,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/ncurses-6.6-hdb14827_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/ncurses-6.6-hdb14827_1.conda hash: - md5: fc21868a1a5aacc937e7a18747acb8a5 - sha256: fc89f74bbe362fb29fa3c037697a89bec140b346a2469a90f7936d1d7ea4d8a3 + md5: ee6c0cd80a60961a1f48aa3e0b91f986 + sha256: 5d46557214ed184381dafe835b7c94a474a1c3b307a08a250b1ea4779b44ffb3 category: main optional: false - name: numpy @@ -2745,28 +2744,6 @@ package: sha256: 012fabf6b70d8a58ce608ae5ece3a59f8cc6d582847f9a8ff42d9a10b4215a51 category: main optional: false -- name: onemkl-license - version: 2026.1.0 - manager: conda - platform: linux-64 - dependencies: {} - url: https://repo.prefix.dev/conda-forge/linux-64/onemkl-license-2026.1.0-ha770c72_243.conda - hash: - md5: 2617b8e56c82fe48be8951e7794f08bc - sha256: b560b1106416b7df0041144aad3842e8783e22c70418a46cbcc90fe67a96b229 - category: main - optional: false -- name: onemkl-license - version: 2026.1.0 - manager: conda - platform: win-64 - dependencies: {} - url: https://repo.prefix.dev/conda-forge/win-64/onemkl-license-2026.1.0-h57928b3_233.conda - hash: - md5: 1566e2ce8c3bc23a2feb866c4d9e91e3 - sha256: 96dec1c878d6e6f835be8ed57152a37be9a5104ac79c2425815d71c64cf13ee4 - category: main - optional: false - name: openjpeg version: 2.5.4 manager: conda @@ -2809,10 +2786,10 @@ package: __glibc: '>=2.17,<3.0.a0' ca-certificates: '' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/openssl-3.6.3-h35e630c_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/openssl-3.6.3-h35e630c_1.conda hash: - md5: 79dd2074b5cd5c5c6b2930514a11e22d - sha256: d48f5c22b9897c01e4dff3680f1f57ceb02711ab9c62f74339b080419dfad34b + md5: c5955c27917ff2234def47f075e71e02 + sha256: 012096056b97abf1f68c46b7146bd2cbd68c1be762340b4f5dad4fbbe99177bc category: main optional: false - name: openssl @@ -2824,34 +2801,34 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/openssl-3.6.3-hf411b9b_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/openssl-3.6.3-hf411b9b_1.conda hash: - md5: e99f95734a326c0fd4d02bbd995150d4 - sha256: cb6e7ba0d010ee0d3249ce9886de3d7613d26d9965d4c95666fa66b9c4c31001 + md5: a978392692a910ba1c8920ccb1e784b3 + sha256: 2ebff5a1b5793e82495bf33c91fba040e11ff23333c2385ac66d0c3aee2cc14c category: main optional: false - name: packaging - version: '26.2' + version: '26.3' manager: conda platform: linux-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/packaging-26.2-pyhc364b38_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/packaging-26.3-pyhc364b38_0.conda hash: - md5: 4c06a92e74452cfa53623a81592e8934 - sha256: 3906abfb6511a3bb309e39b9b1b7bc38f50a723971de2395489fd1f379255890 + md5: 936687ed80f295a1f5dbcf8bd34c252c + sha256: c432626b16768b8dab228bfb706f7060c2d462a21c516d240f68f2f902b5a044 category: main optional: false - name: packaging - version: '26.2' + version: '26.3' manager: conda platform: win-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/packaging-26.2-pyhc364b38_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/packaging-26.3-pyhc364b38_0.conda hash: - md5: 4c06a92e74452cfa53623a81592e8934 - sha256: 3906abfb6511a3bb309e39b9b1b7bc38f50a723971de2395489fd1f379255890 + md5: 936687ed80f295a1f5dbcf8bd34c252c + sha256: c432626b16768b8dab228bfb706f7060c2d462a21c516d240f68f2f902b5a044 category: main optional: false - name: pillow @@ -2906,51 +2883,51 @@ package: category: main optional: false - name: pip - version: 26.1.2 + version: 26.2.1 manager: conda platform: linux-64 dependencies: python: '>=3.13.0a0' - url: https://repo.prefix.dev/conda-forge/noarch/pip-26.1.2-pyh145f28c_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pip-26.2.1-pyh145f28c_0.conda hash: - md5: 733cc07ed34162ac50b936464b163366 - sha256: 9e673d3c6003f416df11670a14b026a04e3a45ebec55357987e15b860f138f2a + md5: 573cb3ed111004230ed3de650653cd4d + sha256: 0f7021cfb3ff454c91a5e28e1f5060906a52c6d1cde3f879a7d03ac33c28b1c3 category: main optional: false - name: pip - version: 26.1.2 + version: 26.2.1 manager: conda platform: win-64 dependencies: python: '>=3.13.0a0' - url: https://repo.prefix.dev/conda-forge/noarch/pip-26.1.2-pyh145f28c_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pip-26.2.1-pyh145f28c_0.conda hash: - md5: 733cc07ed34162ac50b936464b163366 - sha256: 9e673d3c6003f416df11670a14b026a04e3a45ebec55357987e15b860f138f2a + md5: 573cb3ed111004230ed3de650653cd4d + sha256: 0f7021cfb3ff454c91a5e28e1f5060906a52c6d1cde3f879a7d03ac33c28b1c3 category: main optional: false - name: platformdirs - version: 4.11.0 + version: 4.11.3 manager: conda platform: linux-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.11.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.11.3-pyhcf101f3_0.conda hash: - md5: 1fadaa6dd1d03d062075f84157ac2cc7 - sha256: a4b8c7d3b3703d10f93187986d59aec09b22033978945845899beb7f849a7be6 + md5: 31474b00d0ca5accac14eda09ba11216 + sha256: 810511c90649ca59fa0174958a210fd5051c0a7848cfbd42c87054a6836726b5 category: dev optional: true - name: platformdirs - version: 4.11.0 + version: 4.11.3 manager: conda platform: win-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.11.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.11.3-pyhcf101f3_0.conda hash: - md5: 1fadaa6dd1d03d062075f84157ac2cc7 - sha256: a4b8c7d3b3703d10f93187986d59aec09b22033978945845899beb7f849a7be6 + md5: 31474b00d0ca5accac14eda09ba11216 + sha256: 810511c90649ca59fa0174958a210fd5051c0a7848cfbd42c87054a6836726b5 category: dev optional: true - name: pluggy @@ -2983,13 +2960,13 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' + libgcc: '>=15' python: '' python_abi: 3.13.* - url: https://repo.prefix.dev/conda-forge/linux-64/psutil-7.2.2-py313h54dd161_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/psutil-7.2.2-py313hd42f317_1.conda hash: - md5: 25fe6e02c2083497b3239e21b49d8093 - sha256: f19fd682d874689dfde20bf46d7ec1a28084af34583e0405685981363af47c91 + md5: 04b0a2e271f49b0463be6d57ae4c2b56 + sha256: 23a4931a85e82bd1cfd96267e68a663ee366ed61f5447829616cec38268c2146 category: main optional: false - name: psutil @@ -3002,10 +2979,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/psutil-7.2.2-py313h5fd188c_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/psutil-7.2.2-py313h5fd188c_1.conda hash: - md5: 761b299a6289c77459defea3563f8fc0 - sha256: 3ec3373748f83069bef93b540de416e637ee30231b222d5df8f712e93f2f9195 + md5: 6f595daca6c327de634a3e7ee31a4954 + sha256: eb29ef488e3d502aed7797f970734d8ade25f3edb8eafc4562a925fb57cc99b6 category: main optional: false - name: pthread-stubs @@ -3014,11 +2991,11 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/pthread-stubs-0.4-hb03c661_1003.conda hash: - md5: b3c17d95b5a10c6e64a21fa17573e70e - sha256: 9c88f8c64590e9567c6c80823f0328e58d3b1efb0e1c539c0315ceca764e0973 + md5: df2c27f36bdb0dde779f55b5df76a352 + sha256: afc3b27b2cbb0487c1d0e963f96e71181ecfb623a24fb393bb19ff974a6382a1 category: main optional: false - name: pthread-stubs @@ -3026,13 +3003,13 @@ package: manager: conda platform: win-64 dependencies: - libgcc: '>=13' + libgcc: '>=14' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' ucrt: '>=10.0.20348.0' - url: https://repo.prefix.dev/conda-forge/win-64/pthread-stubs-0.4-h0e40799_1002.conda + url: https://repo.prefix.dev/conda-forge/win-64/pthread-stubs-0.4-hba3369d_1003.conda hash: - md5: 3c8f2573569bb816483e5cf57efbbe29 - sha256: 7e446bafb4d692792310ed022fe284e848c6a868c861655a92435af7368bae7b + md5: bc97d497656c9c661ffd3043aca90aa4 + sha256: 5546927a2e337d2903d6cdb028fb33723cdbcc45bf9abe1770fbde2c4ea8bce6 category: main optional: false - name: pydantic @@ -3103,31 +3080,31 @@ package: category: main optional: false - name: pygments - version: 2.20.0 + version: 2.21.0 manager: conda platform: linux-64 dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.20.0-pyhd8ed1ab_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.21.0-pyhcf101f3_0.conda hash: - md5: 16c18772b340887160c79a6acc022db0 - sha256: cf70b2f5ad9ae472b71235e5c8a736c9316df3705746de419b59d442e8348e86 + md5: 2882dee445dfa45b0c5afce3ffb7730a + sha256: f5f015ff1bc3e1b7fc08eee096b1865234189ae0b82bebdb86a5369116e42fa0 category: dev optional: true - name: pygments - version: 2.20.0 + version: 2.21.0 manager: conda platform: win-64 dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.20.0-pyhd8ed1ab_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.21.0-pyhcf101f3_0.conda hash: - md5: 16c18772b340887160c79a6acc022db0 - sha256: cf70b2f5ad9ae472b71235e5c8a736c9316df3705746de419b59d442e8348e86 + md5: 2882dee445dfa45b0c5afce3ffb7730a + sha256: f5f015ff1bc3e1b7fc08eee096b1865234189ae0b82bebdb86a5369116e42fa0 category: dev optional: true - name: pylint - version: 4.0.6 + version: 4.0.7 manager: conda platform: linux-64 dependencies: @@ -3140,14 +3117,14 @@ package: python: '' tomli: '>=1.1' tomlkit: '>=0.10.1' - url: https://repo.prefix.dev/conda-forge/noarch/pylint-4.0.6-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pylint-4.0.7-pyhcf101f3_0.conda hash: - md5: ba6813f7d81828b7dcd03248a42d031d - sha256: 5393b20b76361efe49971a0081cad0f4256f875a14fe71b1ed93ba9e0193369c + md5: 7aaab460cb599b2370a782b4eff8127d + sha256: 9c9ba2e6f17193ede911f8c095232a8c5a1edb3cc6cc49d07cfdde0b86e7c97f category: dev optional: true - name: pylint - version: 4.0.6 + version: 4.0.7 manager: conda platform: win-64 dependencies: @@ -3160,10 +3137,10 @@ package: python: '' tomli: '>=1.1' tomlkit: '>=0.10.1' - url: https://repo.prefix.dev/conda-forge/noarch/pylint-4.0.6-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pylint-4.0.7-pyhcf101f3_0.conda hash: - md5: ba6813f7d81828b7dcd03248a42d031d - sha256: 5393b20b76361efe49971a0081cad0f4256f875a14fe71b1ed93ba9e0193369c + md5: 7aaab460cb599b2370a782b4eff8127d + sha256: 9c9ba2e6f17193ede911f8c095232a8c5a1edb3cc6cc49d07cfdde0b86e7c97f category: dev optional: true - name: pyparsing @@ -3286,7 +3263,7 @@ package: category: dev optional: true - name: python - version: 3.13.14 + version: 3.13.15 manager: conda platform: linux-64 dependencies: @@ -3294,12 +3271,12 @@ package: bzip2: '>=1.0.8,<2.0a0' ld_impl_linux-64: '>=2.36.1' libexpat: '>=2.8.1,<3.0a0' - libffi: '>=3.5.2,<3.6.0a0' + libffi: '>=3.7.0,<3.8.0a0' libgcc: '>=14' liblzma: '>=5.8.3,<6.0a0' libmpdec: '>=4.0.0,<5.0a0' - libsqlite: '>=3.53.2,<4.0a0' - libuuid: '>=2.42.1,<3.0a0' + libsqlite: '>=3.53.4,<4.0a0' + libuuid: '>=2.42.2,<3.0a0' libzlib: '>=1.3.2,<2.0a0' ncurses: '>=6.6,<7.0a0' openssl: '>=3.5.7,<4.0a0' @@ -3308,23 +3285,23 @@ package: readline: '>=8.3,<9.0a0' tk: '>=8.6.13,<8.7.0a0' tzdata: '' - url: https://repo.prefix.dev/conda-forge/linux-64/python-3.13.14-h6add32d_100_cp313.conda + url: https://repo.prefix.dev/conda-forge/linux-64/python-3.13.15-hb101c97_101_cp313.conda hash: - md5: 93762cd272814a142cf21d794f8fb0c1 - sha256: f2146aff59ce4b571a8f1d1acf94f9bed6cc18ab5632d7dcc940fb48ecdeef99 + md5: ad58731521aa42f9e70f3fc6c898e134 + sha256: b7c23d7446502a267f341b27e6820d5e2d53e78c61e721f4af713168ee544cb2 category: main optional: false - name: python - version: 3.13.14 + version: 3.13.15 manager: conda platform: win-64 dependencies: bzip2: '>=1.0.8,<2.0a0' libexpat: '>=2.8.1,<3.0a0' - libffi: '>=3.5.2,<3.6.0a0' + libffi: '>=3.7.0,<3.8.0a0' liblzma: '>=5.8.3,<6.0a0' libmpdec: '>=4.0.0,<5.0a0' - libsqlite: '>=3.53.2,<4.0a0' + libsqlite: '>=3.53.4,<4.0a0' libzlib: '>=1.3.2,<2.0a0' openssl: '>=3.5.7,<4.0a0' pip: '' @@ -3334,10 +3311,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/python-3.13.14-h09917c8_100_cp313.conda + url: https://repo.prefix.dev/conda-forge/win-64/python-3.13.15-h254dcb4_101_cp313.conda hash: - md5: 12e0de38e6bb7f7745ec0d19a20b8270 - sha256: 26442b2878df89f27cc9efd54c1322d111653683abf256b657dbefe089857b40 + md5: 902cbce1ea5391331671a2e6686a58de + sha256: 9e90afd4b0ce8dbc01ce2c38d3988d344cc5764550b00d6d4a377556435d8f32 category: main optional: false - name: python-dateutil @@ -3455,12 +3432,12 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' - ncurses: '>=6.5,<7.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/readline-8.3-h853b02a_0.conda + libgcc: '>=15' + ncurses: '>=6.6,<7.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/readline-8.3-hd6e31c0_1.conda hash: - md5: d7d95fc8287ea7bf33e0e7116d2b95ec - sha256: 12ffde5a6f958e285aa22c191ca01bbd3d6e710aa852e00618fa6ddc59149002 + md5: 69c01c781e7c8190bbdaf79e3848c5ca + sha256: 01b3fe073a66e321970d09e04b388708f8cbdca5cdfbfcb7c9eeb470ad10383d category: main optional: false - name: requests @@ -3520,17 +3497,17 @@ package: category: dev optional: true - name: s2n - version: 1.7.5 + version: 1.7.6 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' openssl: '>=3.5.7,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/s2n-1.7.5-h7e3ee7f_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/s2n-1.7.6-h7e3ee7f_0.conda hash: - md5: fa1c00d999e83ec20173c9775f71a1f1 - sha256: 7369ac21f3561e2203f5b1600ef0671270057380783ca4b9e15f679ba25db575 + md5: e112cadcd79412d81496e784884bddf0 + sha256: 1e1ccc56fdf3fe82150b4eac1d626c806e612af208fbf40ce3abfe9a2eb2a626 category: main optional: false - name: scipy @@ -3682,29 +3659,29 @@ package: category: dev optional: true - name: sphinx-autodoc-typehints - version: 3.13.0 + version: 3.13.2 manager: conda platform: linux-64 dependencies: python: '>=3.12' sphinx: '>=9.1' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-autodoc-typehints-3.13.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-autodoc-typehints-3.13.2-pyhd8ed1ab_0.conda hash: - md5: e91b69fd604f79f38f8c6cfdbc760755 - sha256: 62930995f2b6520fd14d5ce7c587d7fb5382987a3b7de0bb81e601490af35f50 + md5: 10f7b3850485df2e82af076a365fcfee + sha256: 9fa29cba2bfa3ae46681f7998d0e4a0d679fabda612b47abb5f7ed472f3ff723 category: dev optional: true - name: sphinx-autodoc-typehints - version: 3.13.0 + version: 3.13.2 manager: conda platform: win-64 dependencies: python: '>=3.12' sphinx: '>=9.1' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-autodoc-typehints-3.13.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-autodoc-typehints-3.13.2-pyhd8ed1ab_0.conda hash: - md5: e91b69fd604f79f38f8c6cfdbc760755 - sha256: 62930995f2b6520fd14d5ce7c587d7fb5382987a3b7de0bb81e601490af35f50 + md5: 10f7b3850485df2e82af076a365fcfee + sha256: 9fa29cba2bfa3ae46681f7998d0e4a0d679fabda612b47abb5f7ed472f3ff723 category: dev optional: true - name: sphinx-rtd-theme @@ -3712,11 +3689,11 @@ package: manager: conda platform: linux-64 dependencies: - sphinx_rtd_theme: 3.1.0 - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-rtd-theme-3.1.0-hd8ed1ab_1.conda + sphinx_rtd_theme: ==3.1.0 + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-rtd-theme-3.1.0-h9eada29_2.conda hash: - md5: 0a0c4864848d70ae012c0b3ba074aa46 - sha256: 05fc70e840c819c9755467e1b0386cca4afe84f4151aa446d083a29c81896df8 + md5: ab7ab7348274fc4af1c6bc4961cbf692 + sha256: 22154483c70c02172e032ce46e74f98bff4073030ea63af39f6af4c87528f7cf category: dev optional: true - name: sphinx-rtd-theme @@ -3724,11 +3701,11 @@ package: manager: conda platform: win-64 dependencies: - sphinx_rtd_theme: 3.1.0 - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-rtd-theme-3.1.0-hd8ed1ab_1.conda + sphinx_rtd_theme: ==3.1.0 + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-rtd-theme-3.1.0-h9eada29_2.conda hash: - md5: 0a0c4864848d70ae012c0b3ba074aa46 - sha256: 05fc70e840c819c9755467e1b0386cca4afe84f4151aa446d083a29c81896df8 + md5: ab7ab7348274fc4af1c6bc4961cbf692 + sha256: 22154483c70c02172e032ce46e74f98bff4073030ea63af39f6af4c87528f7cf category: dev optional: true - name: sphinx_rtd_theme @@ -3737,13 +3714,13 @@ package: platform: linux-64 dependencies: docutils: '>0.18,<0.23' - python: '>=3.10' + python: '' sphinx: '>=6,<10' sphinxcontrib-jquery: '>=4,<5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx_rtd_theme-3.1.0-pyha770c72_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx_rtd_theme-3.1.0-pyhcf101f3_2.conda hash: - md5: 14b91f7ff1d73c1b233e25e9fa262e5b - sha256: 3876c2b11360a1ee0f93d1449819c5a8cab8483abfed107a921cc188d3b29b4d + md5: 787507b1d0f5c00c186b2f66adacc3ab + sha256: 3581a8335a0da4de41f4344c4f1113a11fcbbb7933577ace813602e263842b02 category: dev optional: true - name: sphinx_rtd_theme @@ -3752,13 +3729,13 @@ package: platform: win-64 dependencies: docutils: '>0.18,<0.23' - python: '>=3.10' + python: '' sphinx: '>=6,<10' sphinxcontrib-jquery: '>=4,<5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx_rtd_theme-3.1.0-pyha770c72_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx_rtd_theme-3.1.0-pyhcf101f3_2.conda hash: - md5: 14b91f7ff1d73c1b233e25e9fa262e5b - sha256: 3876c2b11360a1ee0f93d1449819c5a8cab8483abfed107a921cc188d3b29b4d + md5: 787507b1d0f5c00c186b2f66adacc3ab + sha256: 3581a8335a0da4de41f4344c4f1113a11fcbbb7933577ace813602e263842b02 category: dev optional: true - name: sphinxcontrib-applehelp @@ -3977,12 +3954,12 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' + libgcc: '>=15' libzlib: '>=1.3.2,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_hd70dff1_3.conda + url: https://repo.prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_h1df4ec4_4.conda hash: - md5: 48a1049e710857572fc2a832aa394d9f - sha256: 43624eab22f5f29df7d6ffe914cf442f28fd559b55b290906255492826e636e8 + md5: 676a2f9b1c4fcf57b70aa5c65f6c60d0 + sha256: a1a241d172c1ccab067ba245206dd048bc3c2d1b84504b53c9468e99adfc16a1 category: main optional: false - name: tk @@ -3993,10 +3970,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/tk-8.6.13-h967ab96_3.conda + url: https://repo.prefix.dev/conda-forge/win-64/tk-8.6.13-h967ab96_4.conda hash: - md5: aaf79e2af50a151fb5b5a3e3f38b7a69 - sha256: 13fa29257d43f8e630a1e591ed77fae9bbbb236b011432f01e2034cf36e6bf03 + md5: dd9eb33c99d352b6356f86964d6040f7 + sha256: f19618a3a82cc483dacf1c70a30367ee7b0c7e71b90f1f80e14feff44fbd3688 category: main optional: false - name: tomli @@ -4072,29 +4049,29 @@ package: category: main optional: false - name: typing-inspection - version: 0.4.2 + version: 0.4.4 manager: conda platform: linux-64 dependencies: python: '' - typing_extensions: '>=4.12.0' - url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.2-pyhcf101f3_2.conda + typing_extensions: '>=4.15.0' + url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.4-pyhcf101f3_0.conda hash: - md5: 53f5409c5cfd6c5a66417d68e3f0a864 - sha256: 8b90d2f19f9458b8c58a55e1fcdc1d90c1603a847a47654d8a454549413ba60a + md5: 880e91eac5d926568ef278e20554148e + sha256: 293c66b208468d186a94ff486c2ffbf67859a2bde8c88e965fc9d06c517191b2 category: main optional: false - name: typing-inspection - version: 0.4.2 + version: 0.4.4 manager: conda platform: win-64 dependencies: python: '' - typing_extensions: '>=4.12.0' - url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.2-pyhcf101f3_2.conda + typing_extensions: '>=4.15.0' + url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.4-pyhcf101f3_0.conda hash: - md5: 53f5409c5cfd6c5a66417d68e3f0a864 - sha256: 8b90d2f19f9458b8c58a55e1fcdc1d90c1603a847a47654d8a454549413ba60a + md5: 880e91eac5d926568ef278e20554148e + sha256: 293c66b208468d186a94ff486c2ffbf67859a2bde8c88e965fc9d06c517191b2 category: main optional: false - name: typing_extensions @@ -4191,36 +4168,36 @@ package: manager: conda platform: win-64 dependencies: - vc14_runtime: '>=14.51.36231' - url: https://repo.prefix.dev/conda-forge/win-64/vc-14.5-h1b7c187_39.conda + vc14_runtime: '>=14.51.36247' + url: https://repo.prefix.dev/conda-forge/win-64/vc-14.5-ha367084_41.conda hash: - md5: 2eacea63f545b97342da520df6854276 - sha256: 17693b60cb54f80c60275f003f3bfc1b128af56dbfd65c4fae37c64eeb755ce1 + md5: aa805b5522c2a98fa286e551a1f48546 + sha256: 35444c55a92e2f7f7ba26bc70f81e56e52344f7d064c0fd4b40a46a58517b79c category: main optional: false - name: vc14_runtime - version: 14.51.36231 + version: 14.51.36247 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' - vcomp14: 14.51.36231 - url: https://repo.prefix.dev/conda-forge/win-64/vc14_runtime-14.51.36231-h1b9f54f_39.conda + vcomp14: 14.51.36247 + url: https://repo.prefix.dev/conda-forge/win-64/vc14_runtime-14.51.36247-habf1de7_41.conda hash: - md5: 06a5bf5a1ca16cce0df6eaa91fc42bc2 - sha256: 8153ed849c92e891eacac0f2f8d7ecb79f9b5fd7f7917fbb896f252a60a40390 + md5: ac5333bb3d429361f23adf704cc49a78 + sha256: 4e4cb599cdc41bf2109d1464c127b5bcbddf548ce3e322e612afb691338b48f8 category: main optional: false - name: vcomp14 - version: 14.51.36231 + version: 14.51.36247 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' - url: https://repo.prefix.dev/conda-forge/win-64/vcomp14-14.51.36231-h1b9f54f_39.conda + url: https://repo.prefix.dev/conda-forge/win-64/vcomp14-14.51.36247-habf1de7_41.conda hash: - md5: 8b53a83fda40ec679e4d63fa32fae989 - sha256: 07fb14713c4bc62e2533a2e23a363abfb0e65650681fba0ae4c840e2219350f3 + md5: 350bb67a5c8e5f1c53347ac544ab6600 + sha256: 731e043390c9457299484d39e427221fc868a9249540a498a5a4f6456c7744d1 category: main optional: false - name: win_inet_pton @@ -4243,10 +4220,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxau-1.0.12-hb03c661_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxau-1.0.12-hb03c661_2.conda hash: - md5: b2895afaf55bf96a8c8282a2e47a5de0 - sha256: 6bc6ab7a90a5d8ac94c7e300cc10beb0500eeba4b99822768ca2f2ef356f731b + md5: f06ef439c280a5f90b8bf62355008dbc + sha256: cbf891f6cc1a859347680af1c8562bc6b033bf182a2a3bb536016932be3206de category: main optional: false - name: xorg-libxau @@ -4257,10 +4234,10 @@ package: libgcc: '>=14' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' ucrt: '>=10.0.20348.0' - url: https://repo.prefix.dev/conda-forge/win-64/xorg-libxau-1.0.12-hba3369d_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/xorg-libxau-1.0.12-hba3369d_2.conda hash: - md5: 8436cab9a76015dfe7208d3c9f97c156 - sha256: 156a583fa43609507146de1c4926172286d92458c307bb90871579601f6bc568 + md5: 87aee04978ab77bf4c0f42b983c216cc + sha256: 892ad69b1a9ecc3903ed5a1b18fa097013eaf462eeed3c6ff31bf5c12e71e84b category: main optional: false - name: xorg-libxdmcp @@ -4270,10 +4247,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb03c661_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb03c661_2.conda hash: - md5: 1dafce8548e38671bea82e3f5c6ce22f - sha256: 25d255fb2eef929d21ff660a0c687d38a6d2ccfbcbf0cc6aa738b12af6e9d142 + md5: 2e66c929f3d879708335b6ea4557c838 + sha256: c50a16c05ccd7fe7dd6d6cfb539f4e9a491d50f9ed7a5c902fec638f7d0d27be category: main optional: false - name: xorg-libxdmcp @@ -4284,10 +4261,10 @@ package: libgcc: '>=14' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' ucrt: '>=10.0.20348.0' - url: https://repo.prefix.dev/conda-forge/win-64/xorg-libxdmcp-1.1.5-hba3369d_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/xorg-libxdmcp-1.1.5-hba3369d_2.conda hash: - md5: a7c03e38aa9c0e84d41881b9236eacfb - sha256: 366b8ae202c3b48958f0b8784bbfdc37243d3ee1b1cd4b8e76c10abe41fa258b + md5: 0e21a45f1bb429b6e35e82631e60554a + sha256: 21b11bb98c41ece4ce6069d86d826b50b3d73020fb631b97e59a0521dd9d08a1 category: main optional: false - name: yaml @@ -4296,11 +4273,11 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/yaml-0.2.5-h280c20c_3.conda + libgcc: '>=15' + url: https://repo.prefix.dev/conda-forge/linux-64/yaml-0.2.5-hebe6cf0_3.conda hash: - md5: a77f85f77be52ff59391544bfe73390a - sha256: 6d9ea2f731e284e9316d95fa61869fe7bbba33df7929f82693c121022810f4ad + md5: e741576fb8f89821ac7c1c537322a33d + sha256: d164dfa75ecd538f6fd68765defcc06aa875bc697b9b215362d79a2a73125dd0 category: dev optional: true - name: yaml @@ -4350,10 +4327,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/zlib-1.3.2-hfd05255_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/zlib-1.3.2-hfd05255_3.conda hash: - md5: 5187ecf958be3c39110fe691cbd6873e - sha256: ef408f85f664a4b9c9dac3cb2e36154d9baa15a88984ea800e11060e0f2394a1 + md5: 945092a9bc1d0f250f7d5ecf51ecd471 + sha256: 5a0b55df66ff07b4342e04967cef69f8bf348f6a0fb1cc1eca741c7b015dfe77 category: main optional: false - name: zlib-ng @@ -4362,12 +4339,12 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' - libstdcxx: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/zlib-ng-2.3.3-hceb46e0_1.conda + libgcc: '>=15' + libstdcxx: '>=15' + url: https://repo.prefix.dev/conda-forge/linux-64/zlib-ng-2.3.3-hce19668_1.conda hash: - md5: 2aadb0d17215603a82a2a6b0afd9a4cb - sha256: ea4e50c465d70236408cb0bfe0115609fd14db1adcd8bd30d8918e0291f8a75f + md5: 1726acec19beeed1c764385cd8622405 + sha256: 8b786bb4380fa69a718b08a400040b865bc9207eda337e0a1955717c3c3a9403 category: main optional: false - name: zlib-ng @@ -4390,11 +4367,11 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb78ec9c_6.conda + libzlib: '>=1.3.2,<2.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb78ec9c_7.conda hash: - md5: 4a13eeac0b5c8e5b8ab496e6c4ddd829 - sha256: 68f0206ca6e98fea941e5717cec780ed2873ffabc0e1ed34428c061e2c6268c7 + md5: aa459086047c0e5e27023ab19f8cb86a + sha256: 47d682b9f6d6ec9eb1a6e6c3e75ea6273e899e78fb7fc59f81d39745009fbc60 category: main optional: false - name: zstd @@ -4402,54 +4379,54 @@ package: manager: conda platform: win-64 dependencies: - libzlib: '>=1.3.1,<2.0a0' + libzlib: '>=1.3.2,<2.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/zstd-1.5.7-h534d264_6.conda + url: https://repo.prefix.dev/conda-forge/win-64/zstd-1.5.7-h534d264_7.conda hash: - md5: 053b84beec00b71ea8ff7a4f84b55207 - sha256: 368d8628424966fd8f9c8018326a9c779e06913dd39e646cf331226acc90e5b2 + md5: e4ac308c39d6d0e131154976da67cf3b + sha256: ca7daae4f218a11fab82cc2857f0ea518ec3f46acec60490485347a4c22c6b3e category: main optional: false - name: geoapps-utils - version: 0.7.1.dev85+89cd6f5 + version: 0.7.1.dev95+2e758b9 manager: pip platform: linux-64 dependencies: - geoh5py: 0.13.1rc2.dev168+e51a7038 + geoh5py: 0.14.0a1.dev264+6c850c89 matplotlib: '>=3.10.0,<3.11.0' numpy: '>=2.4.2,<2.5.0' pydantic: '>=2.12.0,<2.13.0' scipy: '>=1.17.0,<1.18.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@2e758b9671671160c76d182b72ae18ee735bd214 hash: - sha256: 89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 + sha256: 2e758b9671671160c76d182b72ae18ee735bd214 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@2e758b9671671160c76d182b72ae18ee735bd214 category: main optional: false - name: geoapps-utils - version: 0.7.1.dev85+89cd6f5 + version: 0.7.1.dev95+2e758b9 manager: pip platform: win-64 dependencies: - geoh5py: 0.13.1rc2.dev168+e51a7038 + geoh5py: 0.14.0a1.dev264+6c850c89 matplotlib: '>=3.10.0,<3.11.0' numpy: '>=2.4.2,<2.5.0' pydantic: '>=2.12.0,<2.13.0' scipy: '>=1.17.0,<1.18.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@2e758b9671671160c76d182b72ae18ee735bd214 hash: - sha256: 89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 + sha256: 2e758b9671671160c76d182b72ae18ee735bd214 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@2e758b9671671160c76d182b72ae18ee735bd214 category: main optional: false - name: geoh5py - version: 0.13.1rc2.dev168+e51a7038 + version: 0.14.0a1.dev264+6c850c89 manager: pip platform: linux-64 dependencies: @@ -4458,16 +4435,16 @@ package: pillow: '>=12.2.0,<12.3.0' psutil: '>=7.2.2,<7.3.0' pydantic: '>=2.12.0,<2.13.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@e51a703816e712f3c66147cb78fd16808b520f75 + url: git+https://github.com/MiraGeoscience/geoh5py.git@6c850c89972154a08c2ee39ad2dd62e8d9c3afef hash: - sha256: e51a703816e712f3c66147cb78fd16808b520f75 + sha256: 6c850c89972154a08c2ee39ad2dd62e8d9c3afef source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@e51a703816e712f3c66147cb78fd16808b520f75 + url: git+https://github.com/MiraGeoscience/geoh5py.git@6c850c89972154a08c2ee39ad2dd62e8d9c3afef category: main optional: false - name: geoh5py - version: 0.13.1rc2.dev168+e51a7038 + version: 0.14.0a1.dev264+6c850c89 manager: pip platform: win-64 dependencies: @@ -4476,11 +4453,11 @@ package: pillow: '>=12.2.0,<12.3.0' psutil: '>=7.2.2,<7.3.0' pydantic: '>=2.12.0,<2.13.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@e51a703816e712f3c66147cb78fd16808b520f75 + url: git+https://github.com/MiraGeoscience/geoh5py.git@6c850c89972154a08c2ee39ad2dd62e8d9c3afef hash: - sha256: e51a703816e712f3c66147cb78fd16808b520f75 + sha256: 6c850c89972154a08c2ee39ad2dd62e8d9c3afef source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@e51a703816e712f3c66147cb78fd16808b520f75 + url: git+https://github.com/MiraGeoscience/geoh5py.git@6c850c89972154a08c2ee39ad2dd62e8d9c3afef category: main optional: false diff --git a/py-3.14.conda-lock.yml b/py-3.14.conda-lock.yml index f86c9dc..2e97097 100644 --- a/py-3.14.conda-lock.yml +++ b/py-3.14.conda-lock.yml @@ -15,8 +15,8 @@ version: 1 metadata: content_hash: - win-64: e66d294216992502d33eac01f4e0f16e38e55e580da213e0d612037121e193ac - linux-64: a608468484a8310f6d98ad38e3de4b12a4416e52a896ec324a1e4a0a5ff09968 + win-64: 7bfb0c555eec9c53e215c07b0292303434371dc40e1f6bea7ba60c052eb94601 + linux-64: fcd8bd8bfb67823b63b86ab5edfda4a1914851c303660e815c91dd274d98eb15 channels: - url: conda-forge used_env_vars: [] @@ -136,16 +136,16 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - aws-c-cal: '>=0.9.14,<0.9.15.0a0' - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-cal: '>=0.9.15,<0.9.16.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' aws-c-http: '>=0.11.0,<0.11.1.0a0' - aws-c-io: '>=0.27.3,<0.27.4.0a0' + aws-c-io: '>=0.27.5,<0.27.6.0a0' aws-c-sdkutils: '>=0.2.7,<0.2.8.0a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-auth-0.10.4-hb7a77c6_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-auth-0.10.4-h4610da3_2.conda hash: - md5: 4347d5ffdf34adf9c5edd10837727d96 - sha256: 845fe32ee750d4a4d3efdb1d95a8c29c3388e3ea9787b77341ec4abe4e198b11 + md5: cefa84dbf94066e7a6902af288a2fedd + sha256: 0c92dc5ddf4edd4038a63adb79f9f0b03f61e9455ce3253b7d2cf708e06ff99e category: main optional: false - name: aws-c-auth @@ -153,75 +153,75 @@ package: manager: conda platform: win-64 dependencies: - aws-c-cal: '>=0.9.14,<0.9.15.0a0' - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-cal: '>=0.9.15,<0.9.16.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' aws-c-http: '>=0.11.0,<0.11.1.0a0' - aws-c-io: '>=0.27.3,<0.27.4.0a0' + aws-c-io: '>=0.27.5,<0.27.6.0a0' aws-c-sdkutils: '>=0.2.7,<0.2.8.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-c-auth-0.10.4-hc6e9107_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-auth-0.10.4-h98da7c9_2.conda hash: - md5: f7069cdc81f7a5e781f1faf6aab6c171 - sha256: cf7ab8abaac6b462463310412cc37d087a767a95920809cbe6dc0a08fe4bcfbd + md5: 48df5a892ef44189ff64744c944884f9 + sha256: ba0b53ad46a7ba157888454c9bf76e1f0e5de368fb0bfbc0bd710156ac741dff category: main optional: false - name: aws-c-cal - version: 0.9.14 + version: 0.9.15 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' libgcc: '>=14' openssl: '>=3.5.7,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-cal-0.9.14-h2aa3ae6_4.conda + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-cal-0.9.15-h6bbde05_1.conda hash: - md5: 9c6072e7b882d35ac956c07e493d6a9e - sha256: a67c944be1728f576c02fe8f28b0cbb78b5353415075db3da4ef71bc9dd8c00c + md5: 8f2b374c79908f271be3d0e9f1c462a8 + sha256: 6eb21a0129e0aa7c6be733c7f2d1de6bc97a60c8382c1016f19dced722600d73 category: main optional: false - name: aws-c-cal - version: 0.9.14 + version: 0.9.15 manager: conda platform: win-64 dependencies: - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-c-cal-0.9.14-h032d170_4.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-cal-0.9.15-hf2e3468_1.conda hash: - md5: fda8fa85ef5d8570d5a0aadea688bb82 - sha256: cda33360c71ab9a4b4e269004a5672d712fa1ae581ecca0404181805ce6762ce + md5: 2c70e5e0b0a87a674b2a1a20fd80c04c + sha256: 2ffb1a78a9deddf937ea70096ef5b6672918a9153a21b0a9d069533850b0a49f category: main optional: false - name: aws-c-common - version: 0.14.2 + version: 0.14.3 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-common-0.14.2-hb03c661_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-common-0.14.3-hb03c661_0.conda hash: - md5: f3e0b2e044485ae90d4a59c77e7a0182 - sha256: 701398f1c9978c41e93cb0947869a66b7f8004e9d6e548d63d11aedae83cfb02 + md5: ce8664d7c01d4a598ad38107b289b5ec + sha256: 8ea79f36d50ba90d7147fe1a047f9a7f2d33b114a3d4bacf1360cd8df43986e4 category: main optional: false - name: aws-c-common - version: 0.14.2 + version: 0.14.3 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-c-common-0.14.2-hfd05255_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-common-0.14.3-hfd05255_0.conda hash: - md5: 75b4445fec6477b271920f87830d22a3 - sha256: 63fc3f34a3b3d21d5f6527ba5136e132f3ad50541d4d16e385d03f4e47e1db2b + md5: eda5facd8e8545b7dacc1dc740ac0e54 + sha256: 5c55090f9c2b28eeac0e9f40a2b1a7aeaae10ba96fa6c7c0e4caef69a6a9cfa2 category: main optional: false - name: aws-c-compression @@ -230,12 +230,12 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-compression-0.3.2-h720e601_4.conda + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-compression-0.3.2-h01ee8f8_5.conda hash: - md5: c9be3f5854f349ae77a1a174b59e11a8 - sha256: 8e0a5513cfc42df8bd16adbd8e83a37d3ca89b8e04cb20eb04eb177bbbfea365 + md5: ae862abdbb3160f97478d3d4749164c0 + sha256: 27f8581573c533a92a1a9619516ebb66d390b9923d296331985cfd342dc32d29 category: main optional: false - name: aws-c-compression @@ -243,14 +243,14 @@ package: manager: conda platform: win-64 dependencies: - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-c-compression-0.3.2-h1da161f_4.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-compression-0.3.2-h0d56620_5.conda hash: - md5: 996e5c7da8f9e255eac094d2413b40c3 - sha256: 97eaf03572b61d118616e8ee8459823c7b0f5dc26295bbab3ac3f6d671f1547a + md5: 3a93885c9f57e04ff78d29f7dc830fb2 + sha256: 43a538303486de0621c543c38a28c60ac3a65bbba35793321e0a825a65d460fc category: main optional: false - name: aws-c-http @@ -259,15 +259,15 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - aws-c-cal: '>=0.9.14,<0.9.15.0a0' - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-cal: '>=0.9.15,<0.9.16.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' aws-c-compression: '>=0.3.2,<0.3.3.0a0' - aws-c-io: '>=0.27.3,<0.27.4.0a0' + aws-c-io: '>=0.27.5,<0.27.6.0a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-http-0.11.0-h38ae05a_4.conda + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-http-0.11.0-hbe094ff_5.conda hash: - md5: 97f2799ae6ff7b6f52dfa321fef9676b - sha256: 4b939b4a76a11c9ec50c891ae9bf232da8dcaf8797701df1e79ae51c988be2d4 + md5: c09f7ec7327b8bd52fc2d6eacaa18d3b + sha256: a4a5e24b398e7c0ef64de5a341ecb3f0fa87c2879177695c5d0bcbde0c4f8b5e category: main optional: false - name: aws-c-http @@ -275,89 +275,89 @@ package: manager: conda platform: win-64 dependencies: - aws-c-cal: '>=0.9.14,<0.9.15.0a0' - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-cal: '>=0.9.15,<0.9.16.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' aws-c-compression: '>=0.3.2,<0.3.3.0a0' - aws-c-io: '>=0.27.3,<0.27.4.0a0' + aws-c-io: '>=0.27.5,<0.27.6.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-c-http-0.11.0-h667fc28_4.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-http-0.11.0-he024045_5.conda hash: - md5: c17a284b159959a8639298ed7da8ad0b - sha256: 304587d77daccde630fbdbb8ae2f3994cf583427f710c60d62e88bc97c4ff013 + md5: ad215edbb53ea01805b103d66aee21ec + sha256: d1d6b9213980eab8403354cab5d515fddb8c0cbdf88226c8c353499c699692b0 category: main optional: false - name: aws-c-io - version: 0.27.3 + version: 0.27.5 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - aws-c-cal: '>=0.9.14,<0.9.15.0a0' - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-cal: '>=0.9.15,<0.9.16.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' libgcc: '>=14' - s2n: '>=1.7.5,<1.7.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-io-0.27.3-h6f4d18d_1.conda + s2n: '>=1.7.6,<1.7.7.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-io-0.27.5-h4f381ba_1.conda hash: - md5: bd19b685b88557830f1a617a6d404eb2 - sha256: 94c32ca672ce290e250aea1cfb92582cca4658bdc3ec7cb1ceef254f34451595 + md5: 948f5a4fddac779b7942626e5807caba + sha256: 76ab4eb6cae12e14244cb1fe11ecccc2f103f8ffa7e80e222099c6b16c19ae20 category: main optional: false - name: aws-c-io - version: 0.27.3 + version: 0.27.5 manager: conda platform: win-64 dependencies: - aws-c-cal: '>=0.9.14,<0.9.15.0a0' - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-cal: '>=0.9.15,<0.9.16.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-c-io-0.27.3-hbdc738f_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-io-0.27.5-hef21f9d_1.conda hash: - md5: 579600368b15fb523d69e2a3f8a9bc55 - sha256: 36816ff394ee736fcf705db5b1c1491c98f6f77ef84791d73b71e78154df402d + md5: e51b38fd757d34b61daf4e848ee0d8f1 + sha256: e689379cc92a4b7dbe01f8c8fbbe12142f6a0cdeee1080d099c4fb80e8e3b090 category: main optional: false - name: aws-c-s3 - version: 0.12.8 + version: 0.13.1 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' aws-c-auth: '>=0.10.4,<0.10.5.0a0' - aws-c-cal: '>=0.9.14,<0.9.15.0a0' - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-cal: '>=0.9.15,<0.9.16.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' aws-c-http: '>=0.11.0,<0.11.1.0a0' - aws-c-io: '>=0.27.3,<0.27.4.0a0' + aws-c-io: '>=0.27.5,<0.27.6.0a0' aws-checksums: '>=0.2.10,<0.2.11.0a0' libgcc: '>=14' openssl: '>=3.5.7,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-s3-0.12.8-h46fcd08_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-s3-0.13.1-h7508075_1.conda hash: - md5: 706aa99414d18db5b23475b45cc93a0b - sha256: a423bffbb0e6cacb5e2a0861b918ba3180e5132509afb1faf225ee9f0ec8f981 + md5: 2daf54d3eef87b757f68d7597534dd2f + sha256: d24f7f34b3b564535b533b17176e71f71b6944aa2cb71813283bece139908d9f category: main optional: false - name: aws-c-s3 - version: 0.12.8 + version: 0.13.1 manager: conda platform: win-64 dependencies: aws-c-auth: '>=0.10.4,<0.10.5.0a0' - aws-c-cal: '>=0.9.14,<0.9.15.0a0' - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-cal: '>=0.9.15,<0.9.16.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' aws-c-http: '>=0.11.0,<0.11.1.0a0' - aws-c-io: '>=0.27.3,<0.27.4.0a0' + aws-c-io: '>=0.27.5,<0.27.6.0a0' aws-checksums: '>=0.2.10,<0.2.11.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-c-s3-0.12.8-hd7ee1a1_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-s3-0.13.1-h0deae5e_1.conda hash: - md5: 4ac02fa15bf3809101e2eeb340b6078c - sha256: c79e62931e163b65a01786d5ed7156ecca2ab748b7c7835756d34e438035706a + md5: e2adedc506b0298afbbe75e5a7bb32c4 + sha256: 90da84f84953d53ed58f41381dd05ba36724db69c9885f1265d3b9d4651a398e category: main optional: false - name: aws-c-sdkutils @@ -366,12 +366,12 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-sdkutils-0.2.7-h720e601_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-sdkutils-0.2.7-h01ee8f8_3.conda hash: - md5: 816f62fa82532118ebb2398382090945 - sha256: e419e179e04021fc680d98af23fac4b4c2369cea61171087e57a734e968dd9bd + md5: 412f0cf18cc4c4945655dba954ca2d76 + sha256: b308c393a3db78cef29942c6b83ca7321f86d357fbb47504d59f55254601c87a category: main optional: false - name: aws-c-sdkutils @@ -379,14 +379,14 @@ package: manager: conda platform: win-64 dependencies: - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-c-sdkutils-0.2.7-h1da161f_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-sdkutils-0.2.7-h0d56620_3.conda hash: - md5: 882d834f12e0abf4c7a0e9bb0c72e281 - sha256: d5da00123d9ceb082e61fd5bf82fff9cd5bec0b8e1ae91454f29155a59499bf5 + md5: e66b4cbfcc747b9ba8ecefb9bed862af + sha256: 3d87a3474f08da5613eabccd0d2604fdb127a232498e76e33a74bc417f0b049a category: main optional: false - name: aws-checksums @@ -395,12 +395,12 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/aws-checksums-0.2.10-h720e601_4.conda + url: https://repo.prefix.dev/conda-forge/linux-64/aws-checksums-0.2.10-h01ee8f8_5.conda hash: - md5: 24ee781effc5779206a80139323c9caf - sha256: 6cc8617854a43040291dea791fe111ba408e7a5bbd9ee9e5a99375da7a16846b + md5: 4d70caf5260e0787675c3bf61ae5b64c + sha256: f8d2cd9faccb273df739fc28431b484a90aca10027ef44f7fec1d4f0bd229a76 category: main optional: false - name: aws-checksums @@ -408,14 +408,14 @@ package: manager: conda platform: win-64 dependencies: - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/aws-checksums-0.2.10-h1da161f_4.conda + url: https://repo.prefix.dev/conda-forge/win-64/aws-checksums-0.2.10-h0d56620_5.conda hash: - md5: a3c81085892f2983979836f2937291ce - sha256: 2227fa77f395f1b4699533709e7ef140a8292fccb31376ec5498565c7ad33225 + md5: 9d82651327244c59ab89c0ec1aa327a2 + sha256: 06e96edd75595eb2898d2399ec73cf255aab4d27b1f08e806d480efe01d64a71 category: main optional: false - name: babel @@ -443,27 +443,27 @@ package: category: dev optional: true - name: backports.zstd - version: 1.6.0 + version: 1.7.0 manager: conda platform: linux-64 dependencies: python: '>=3.14' - url: https://repo.prefix.dev/conda-forge/noarch/backports.zstd-1.6.0-py314h680f03e_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/backports.zstd-1.7.0-py314h680f03e_0.conda hash: - md5: 40d89d8546ad6e139e73ec8f6d56068b - sha256: 709cac7434d1c5a8828105036212a2a36022a07d807e89e2e99cac939c2d2526 + md5: 92adf685875ab717f68ad4172ef6de27 + sha256: 19514d89d1e725e44b0650d31a4d43da8e070e4e93e4131e3b16bd139404f2b2 category: dev optional: true - name: backports.zstd - version: 1.6.0 + version: 1.7.0 manager: conda platform: win-64 dependencies: python: '>=3.14' - url: https://repo.prefix.dev/conda-forge/noarch/backports.zstd-1.6.0-py314h680f03e_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/backports.zstd-1.7.0-py314h680f03e_0.conda hash: - md5: 40d89d8546ad6e139e73ec8f6d56068b - sha256: 709cac7434d1c5a8828105036212a2a36022a07d807e89e2e99cac939c2d2526 + md5: 92adf685875ab717f68ad4172ef6de27 + sha256: 19514d89d1e725e44b0650d31a4d43da8e070e4e93e4131e3b16bd139404f2b2 category: dev optional: true - name: brotli @@ -475,11 +475,11 @@ package: brotli-bin: 1.2.0 libbrotlidec: 1.2.0 libbrotlienc: 1.2.0 - libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/brotli-1.2.0-hed03a55_1.conda + libgcc: '>=15' + url: https://repo.prefix.dev/conda-forge/linux-64/brotli-1.2.0-h505cf86_3.conda hash: - md5: 8ccf913aaba749a5496c17629d859ed1 - sha256: e511644d691f05eb12ebe1e971fd6dc3ae55a4df5c253b4e1788b789bdf2dfa6 + md5: 6ff307b78fbfb7dcafb7e25ff8bc9c10 + sha256: 1f2ccfebe6e0113bfc473b21906372c1ee4eb69bf6faef0ad7f3d4d79af63a98 category: main optional: false - name: brotli @@ -493,10 +493,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/brotli-1.2.0-h2d644bc_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/brotli-1.2.0-hc8c2fe1_3.conda hash: - md5: bc58fdbced45bb096364de0fba1637af - sha256: a4fffdf1c9b9d3d0d787e20c724cff3a284dfa3773f9ce609c93b1cfd0ce8933 + md5: 9eba56a007c44dc32d0b9d0a820871ea + sha256: 85e12348d058791aabd6eeb6abc1d7ab44b8f6308f91c8475f44f778f2a158af category: main optional: false - name: brotli-bin @@ -507,11 +507,11 @@ package: __glibc: '>=2.17,<3.0.a0' libbrotlidec: 1.2.0 libbrotlienc: 1.2.0 - libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/brotli-bin-1.2.0-hb03c661_1.conda + libgcc: '>=15' + url: https://repo.prefix.dev/conda-forge/linux-64/brotli-bin-1.2.0-h9908984_3.conda hash: - md5: af39b9a8711d4a8d437b52c1d78eb6a1 - sha256: 64b137f30b83b1dd61db6c946ae7511657eead59fdf74e84ef0ded219605aa94 + md5: 8929291d9efc59715df1cfa7daf5e3ed + sha256: 56b2e5e8a49f9887af74cc63e0d55a3654e60b667ad5558da089549a36ae6a0c category: main optional: false - name: brotli-bin @@ -524,10 +524,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/brotli-bin-1.2.0-hfd05255_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/brotli-bin-1.2.0-hd477307_3.conda hash: - md5: 6abd7089eb3f0c790235fe469558d190 - sha256: e76966232ef9612de33c2087e3c92c2dc42ea5f300050735a3c646f33bce0429 + md5: dc04f7b3d82c6fb3fdf4d93e45b6ea2a + sha256: 5328e0576c729813d28efc15613f4be94d029d77c4fe5afda16cab0b8d0c9d05 category: main optional: false - name: brotli-python @@ -536,14 +536,14 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' - libstdcxx: '>=14' + libgcc: '>=15' + libstdcxx: '>=15' python: '>=3.14,<3.15.0a0' python_abi: 3.14.* - url: https://repo.prefix.dev/conda-forge/linux-64/brotli-python-1.2.0-py314h3de4e8d_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/brotli-python-1.2.0-py314hcd2bdb6_3.conda hash: - md5: 8910d2c46f7e7b519129f486e0fe927a - sha256: 3ad3500bff54a781c29f16ce1b288b36606e2189d0b0ef2f67036554f47f12b0 + md5: bd1be0851060138e038f6f4e09cc1eb4 + sha256: e52ff7e1e3c5f4423421fbcd1f1ebf1d6ce123e22890ceb225d6552b7bbc551f category: dev optional: true - name: brotli-python @@ -556,10 +556,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/brotli-python-1.2.0-py314he701e3d_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/brotli-python-1.2.0-py314h85cf176_3.conda hash: - md5: 1302b74b93c44791403cbeee6a0f62a3 - sha256: 6854ee7675135c57c73a04849c29cbebc2fb6a3a3bfee1f308e64bf23074719b + md5: b1ff58c1f0deedd3f25c103e37049cee + sha256: f96c411313beb92a6a9066b823f7e8ea085f3e3889219b44306c44d59f99e611 category: dev optional: true - name: bzip2 @@ -569,10 +569,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/bzip2-1.0.8-hda65f42_9.conda + url: https://repo.prefix.dev/conda-forge/linux-64/bzip2-1.0.8-hda65f42_10.conda hash: - md5: d2ffd7602c02f2b316fd921d39876885 - sha256: 0b75d45f0bba3e95dc693336fa51f40ea28c980131fec438afb7ce6118ed05f6 + md5: e675fabcf81499adc7edf58124fb1e01 + sha256: 1a0d382c515ebf55f8ee1f38c8b81bc95af5c2acc42ad53b66bc5df932032f96 category: main optional: false - name: bzip2 @@ -583,10 +583,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/bzip2-1.0.8-h0ad9c76_9.conda + url: https://repo.prefix.dev/conda-forge/win-64/bzip2-1.0.8-h0ad9c76_10.conda hash: - md5: 4cb8e6b48f67de0b018719cdf1136306 - sha256: 76dfb71df5e8d1c4eded2dbb5ba15bb8fb2e2b0fe42d94145d5eed4c75c35902 + md5: c3301c058362f340100d91cd8be0393f + sha256: 04767466ee9227c9c57ab2c6503e0149177d34111c7418d2f420297acb1eb229 category: main optional: false - name: c-ares @@ -595,11 +595,11 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/c-ares-1.34.8-hb03c661_0.conda + libgcc: '>=15' + url: https://repo.prefix.dev/conda-forge/linux-64/c-ares-1.34.8-hebe6cf0_2.conda hash: - md5: 6130ad6705adc993b5d8482b7f66e01f - sha256: dee93a82d045f9aa8277829aa465224afa3c7a6ac18388de66099b2be7f705e7 + md5: 3ad2b403be8fc5612b9159e2ce621f69 + sha256: 9c37cc233238adf366ea75b0e845662a5be07ceadf62e458183516369340274b category: main optional: false - name: ca-certificates @@ -699,27 +699,27 @@ package: category: dev optional: true - name: charset-normalizer - version: 3.4.9 + version: 3.5.1 manager: conda platform: linux-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.9-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.5.1-pyhd8ed1ab_0.conda hash: - md5: d154b40b109e503430979e8a8d099eaf - sha256: 8d8813ef655b4e75e4fb897abd83ad548882efad7b4e836b021b797f42780799 + md5: e0ac3accc64e23e40969d660e5f58ac8 + sha256: cb60ef3e0631c8bacb4f7057196dee4496091a22baa3bb4b9bccb12c7e1c921b category: dev optional: true - name: charset-normalizer - version: 3.4.9 + version: 3.5.1 manager: conda platform: win-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.9-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.5.1-pyhd8ed1ab_0.conda hash: - md5: d154b40b109e503430979e8a8d099eaf - sha256: 8d8813ef655b4e75e4fb897abd83ad548882efad7b4e836b021b797f42780799 + md5: e0ac3accc64e23e40969d660e5f58ac8 + sha256: cb60ef3e0631c8bacb4f7057196dee4496091a22baa3bb4b9bccb12c7e1c921b category: dev optional: true - name: colorama @@ -781,36 +781,36 @@ package: category: main optional: false - name: coverage - version: 7.15.2 + version: 7.15.4 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - python: '>=3.14,<3.15.0a0' + python: '' python_abi: 3.14.* tomli: '' - url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.15.2-py314h67df5f8_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.15.4-py314h0993b80_1.conda hash: - md5: bfdf708270d764fd920b6f4d163a1bf4 - sha256: a0238837cd192661dde05ff18d6c6a8e1d33036d6020e2d158e7963bf3f013f8 + md5: 62952eeee98667a34a53c3080085d584 + sha256: 5e14cc313a3ee648ad38e0db0a32f6f662a011bcefeac057ac1049102597ba8f category: dev optional: true - name: coverage - version: 7.15.2 + version: 7.15.4 manager: conda platform: win-64 dependencies: - python: '>=3.14,<3.15.0a0' + python: '' python_abi: 3.14.* tomli: '' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.15.2-py314h2359020_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.15.4-py314h9aa99d3_1.conda hash: - md5: a2f60cd8a6b2f3af76d2e8b463c820c6 - sha256: 1003bfdef9442d187f13479d8831ec6dd064726671fbc33a2f6adf53a357bb3d + md5: 8ece07fb4aa5c9dcec2235642caeba23 + sha256: 783bb12c1b20446a0886e35b15b5976d45cbe6fe19325be02288612aa71f698e category: dev optional: true - name: cycler @@ -984,10 +984,10 @@ package: dependencies: libfreetype: 2.14.3 libfreetype6: 2.14.3 - url: https://repo.prefix.dev/conda-forge/linux-64/freetype-2.14.3-ha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/freetype-2.14.3-ha770c72_2.conda hash: - md5: 8462b5322567212beeb025f3519fb3e2 - sha256: c934c385889c7836f034039b43b05ccfa98f53c900db03d8411189892ced090b + md5: 2d0ea23b23603e07ca47f23f949f67b6 + sha256: 612a8e0c1a6ecae23da54d81ef395f6ebb5c8e4468ec2611593ebce75876a4e0 category: main optional: false - name: freetype @@ -998,38 +998,38 @@ package: libfreetype: 2.14.3 libfreetype6: 2.14.3 zlib: '' - url: https://repo.prefix.dev/conda-forge/win-64/freetype-2.14.3-h57928b3_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/freetype-2.14.3-h57928b3_2.conda hash: - md5: e77293b32225b136a8be300f93d0e89f - sha256: a0e419e96146159f12344c870dca608d11bca36841f228092b986ffc2e1e0f02 + md5: 6fc6c09c05a099d58efd9b2e96598e41 + sha256: 32f7dd8ffe62fd485e9e6570e871f5be45af74c84fde62241a2417046a373efd category: main optional: false - name: h2 - version: 4.4.0 + version: 4.4.1 manager: conda platform: linux-64 dependencies: hpack: '>=4.2,<5' hyperframe: '>=6.1,<7' python: '' - url: https://repo.prefix.dev/conda-forge/noarch/h2-4.4.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/h2-4.4.1-pyhcf101f3_0.conda hash: - md5: aae3214aab65ae635fbb3cc455596a86 - sha256: 1bdffcb701cf1f4429733fc2e194995bab5ecc71073d84a434dcfb57049a4265 + md5: e652ac7756069c456d0da2a922cd7df5 + sha256: 307dd6ec90140c3cf4171071b0e5e870abec314f4565c1edd5bc433e942cdcc0 category: dev optional: true - name: h2 - version: 4.4.0 + version: 4.4.1 manager: conda platform: win-64 dependencies: hpack: '>=4.2,<5' hyperframe: '>=6.1,<7' python: '' - url: https://repo.prefix.dev/conda-forge/noarch/h2-4.4.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/h2-4.4.1-pyhcf101f3_0.conda hash: - md5: aae3214aab65ae635fbb3cc455596a86 - sha256: 1bdffcb701cf1f4429733fc2e194995bab5ecc71073d84a434dcfb57049a4265 + md5: e652ac7756069c456d0da2a922cd7df5 + sha256: 307dd6ec90140c3cf4171071b0e5e870abec314f4565c1edd5bc433e942cdcc0 category: dev optional: true - name: h5py @@ -1039,15 +1039,15 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' cached-property: '' - hdf5: '>=2.1.0,<3.0a0' - libgcc: '>=14' - numpy: '>=1.23,<3' + hdf5: '>=2.2.0,<3.0a0' + libgcc: '>=15' + numpy: '>=1.25,<3' python: '>=3.14,<3.15.0a0' python_abi: 3.14.* - url: https://repo.prefix.dev/conda-forge/linux-64/h5py-3.16.0-nompi_py314hddf7a69_102.conda + url: https://repo.prefix.dev/conda-forge/linux-64/h5py-3.16.0-nompi_py314h77fd174_104.conda hash: - md5: d93afa30018997705dd04513eeb5ac0f - sha256: 48e18f20bc1ff15433299dd77c20a4160eb29572eea799ae5a73632c6c3d7dfd + md5: 051e686d87f5ca8265045e31d387af8e + sha256: 1363d40b13f7fc9423306d1ff46c4f2546f4f3d14e8248cc256210e6509b6313 category: main optional: false - name: h5py @@ -1056,55 +1056,55 @@ package: platform: win-64 dependencies: cached-property: '' - hdf5: '>=2.1.0,<3.0a0' - numpy: '>=1.23,<3' + hdf5: '>=2.2.0,<3.0a0' + numpy: '>=1.25,<3' python: '>=3.14,<3.15.0a0' python_abi: 3.14.* ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/h5py-3.16.0-nompi_py314h02517ec_102.conda + url: https://repo.prefix.dev/conda-forge/win-64/h5py-3.16.0-nompi_py314h02517ec_104.conda hash: - md5: 19bdd6358ce2be9ef29f92b1564db61d - sha256: 5ee88f1f691829d2430761a26a690c3d880e7cd41e40a4057131360a8904e0bd + md5: 9d3da3e8e095ee4dda7511b74a18c1a5 + sha256: a9a742f83f7899091f9e7903b5c7cda4f06f020bdb61857a701a518a37d239f6 category: main optional: false - name: hdf5 - version: 2.1.0 + version: 2.2.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' aws-c-auth: '>=0.10.4,<0.10.5.0a0' - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' aws-c-http: '>=0.11.0,<0.11.1.0a0' - aws-c-io: '>=0.27.3,<0.27.4.0a0' - aws-c-s3: '>=0.12.8,<0.12.9.0a0' + aws-c-io: '>=0.27.5,<0.27.6.0a0' + aws-c-s3: '>=0.13.1,<0.13.2.0a0' aws-c-sdkutils: '>=0.2.7,<0.2.8.0a0' libaec: '>=1.1.5,<2.0a0' libcurl: '>=8.21.0,<9.0a0' libgcc: '>=14' libgfortran: '' - libgfortran5: '>=14.3.0' + libgfortran5: '>=14.4.0' libstdcxx: '>=14' libzlib: '>=1.3.2,<2.0a0' openssl: '>=3.5.7,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/hdf5-2.1.0-nompi_h654f344_110.conda + url: https://repo.prefix.dev/conda-forge/linux-64/hdf5-2.2.0-nompi_hc529623_100.conda hash: - md5: 58484580a0f626dbe7d5145f014dbfd4 - sha256: 548411cb10baf1122c46cfef555936c385137d3637b75bd322e7574eda933842 + md5: 336f7fb9af0c49cc246e2cff0992c3c4 + sha256: 786d126bfb33b923dd1341a92c2a3edd0ff5d0a71db8557fca9324ea4e93d677 category: main optional: false - name: hdf5 - version: 2.1.0 + version: 2.2.0 manager: conda platform: win-64 dependencies: aws-c-auth: '>=0.10.4,<0.10.5.0a0' - aws-c-common: '>=0.14.2,<0.14.3.0a0' + aws-c-common: '>=0.14.3,<0.14.4.0a0' aws-c-http: '>=0.11.0,<0.11.1.0a0' - aws-c-io: '>=0.27.3,<0.27.4.0a0' - aws-c-s3: '>=0.12.8,<0.12.9.0a0' + aws-c-io: '>=0.27.5,<0.27.6.0a0' + aws-c-s3: '>=0.13.1,<0.13.2.0a0' aws-c-sdkutils: '>=0.2.7,<0.2.8.0a0' libaec: '>=1.1.5,<2.0a0' libcurl: '>=8.21.0,<9.0a0' @@ -1113,10 +1113,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/hdf5-2.1.0-nompi_h0d3e4b2_110.conda + url: https://repo.prefix.dev/conda-forge/win-64/hdf5-2.2.0-nompi_hf525611_100.conda hash: - md5: 146134e4db96613ecdc63cf44bec847d - sha256: f6c79581d03d2e2e0cbbb0391d21a149a1f9c311159a9f74c6be8a79e2f696d9 + md5: e8a351f16983732043b55f0a12b2a7d9 + sha256: 44d0cda0efcf783780b7b0b5cece0c4a0bf106bc6db66a1dcde39b409ef0d08d category: main optional: false - name: hpack @@ -1175,10 +1175,10 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' libstdcxx: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/icu-78.3-h54a6638_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/icu-78.3-py310h44b86e0_2.conda hash: - md5: 4ef4b977bb216a3001a3334696a80850 - sha256: d7c260b7e1cf22ce04d6ba8a86eabf4e6c50bc96a5c27fe2ecb32298af3e88eb + md5: 72a381cbad04f24b1c2a43ef707f45b4 + sha256: 9f07834f0c546ab14d885ce0366285f61f44e326c0edd1fc63b8294e113ae432 category: main optional: false - name: icu @@ -1196,27 +1196,27 @@ package: category: main optional: false - name: idna - version: '3.18' + version: '3.19' manager: conda platform: linux-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/idna-3.18-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/idna-3.19-pyhcf101f3_0.conda hash: - md5: 577b04680ae422adb86fc60d7b940659 - sha256: c75632ea624aa450a394f570749420c5a2e0997d0216bc29d5d45b0f39df0426 + md5: a39ae05027e9b707742e41b30d296b75 + sha256: 1c35a59c1545ad0fdaddf1fbde7bcfa6ef41a8d68c3a2b0b4a291be00676163e category: dev optional: true - name: idna - version: '3.18' + version: '3.19' manager: conda platform: win-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/idna-3.18-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/idna-3.19-pyhcf101f3_0.conda hash: - md5: 577b04680ae422adb86fc60d7b940659 - sha256: c75632ea624aa450a394f570749420c5a2e0997d0216bc29d5d45b0f39df0426 + md5: a39ae05027e9b707742e41b30d296b75 + sha256: 1c35a59c1545ad0fdaddf1fbde7bcfa6ef41a8d68c3a2b0b4a291be00676163e category: dev optional: true - name: imagesize @@ -1351,11 +1351,11 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/keyutils-1.6.3-hb9d3cd8_0.conda + libgcc: '>=15' + url: https://repo.prefix.dev/conda-forge/linux-64/keyutils-1.6.3-h7cc23a3_1.conda hash: - md5: b38117a3c920364aff79f870c984b4a3 - sha256: 0960d06048a7185d3542d850986d807c6e37ca2e644342dd0c72feefcf26c2a4 + md5: ba55d1b89fd7775e67de8291029b4059 + sha256: dd053c96dcb0dcfd59422aefea9d2fe937a190167f34fba7893ec1e10a7e8963 category: main optional: false - name: kiwisolver @@ -1398,13 +1398,13 @@ package: __glibc: '>=2.17,<3.0.a0' keyutils: '>=1.6.3,<2.0a0' libedit: '>=3.1.20250104,<4.0a0' - libgcc: '>=14' - libstdcxx: '>=14' + libgcc: '>=15' + libstdcxx: '>=15' openssl: '>=3.5.7,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/krb5-1.22.2-hbde042b_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/krb5-1.22.2-hbc21106_2.conda hash: - md5: 54157a1c8c0bb70f62dd0b17fba7e7f2 - sha256: 9b07046870772f28740e3f6149f09ff222843733087a33c5540b169c6289652d + md5: 53318d715316929a574f83591308b1f8 + sha256: 2a5c38c85e63df84c4e69ee71439841ce570d259ae3060627bb9a49a938d66f4 category: main optional: false - name: krb5 @@ -1416,10 +1416,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/krb5-1.22.2-h719d79b_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/krb5-1.22.2-h719d79b_2.conda hash: - md5: 00335c2c4a98656554771aaf6f1a7400 - sha256: c55745796e762ba9e817ab1fc0f21f1a049e202f90fa762df39578f37923f6c2 + md5: 93f5a01dec294a2228f757fe2f3432d4 + sha256: 63ff03324e903eb01a715ccf357df56d66224e61952fd6615d86490ebefb3285 category: main optional: false - name: lcms2 @@ -1527,11 +1527,11 @@ package: manager: conda platform: linux-64 dependencies: - mkl: '>=2026.0.0,<2027.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libblas-3.11.0-8_h5875eb1_mkl.conda + mkl: '>=2026.1.0,<2027.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/libblas-3.11.0-9_h5875eb1_mkl.conda hash: - md5: 8ae84a87356b604a62f1aee136ef8efb - sha256: e30f7fa2a2fb6985f9ac6604575cb318b9ae44e263f6cacc282daee9dbd6127d + md5: 1c05815b5b3742a5f4398d94fec7aa11 + sha256: a8c8b832fb56469221612e1f33c1c01868146c85721966b663a35d4248121e7e category: main optional: false - name: libblas @@ -1539,11 +1539,11 @@ package: manager: conda platform: win-64 dependencies: - mkl: '>=2026.0.0,<2027.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/libblas-3.11.0-8_h8455456_mkl.conda + mkl: '>=2026.1.0,<2027.0a0' + url: https://repo.prefix.dev/conda-forge/win-64/libblas-3.11.0-9_h8455456_mkl.conda hash: - md5: 4a0ce24b1a946ff77ae9eaa7ef015a33 - sha256: 43a87b59e6d4c68d80b2e4de487b1b54d66fe1f9a06636909b5a5ab9eae27269 + md5: 17b26a4ad064259983bec1eaa36f40d3 + sha256: a99c640f10a3f77efe5c6605676ddc8d365d020eec4fdf1c803d34bdaf49b357 category: main optional: false - name: libbrotlicommon @@ -1552,11 +1552,11 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlicommon-1.2.0-hb03c661_1.conda + libgcc: '>=15' + url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlicommon-1.2.0-h39a168f_3.conda hash: - md5: 72c8fd1af66bd67bf580645b426513ed - sha256: 318f36bd49ca8ad85e6478bd8506c88d82454cc008c1ac1c6bf00a3c42fa610e + md5: 7a2499a177753582fb7ae7e9dc4a908a + sha256: e5864f257f839ffc27d681659bac95901f524f602b9121e5dcc5e2df18437f2d category: main optional: false - name: libbrotlicommon @@ -1567,10 +1567,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libbrotlicommon-1.2.0-hfd05255_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/libbrotlicommon-1.2.0-hf02afa3_3.conda hash: - md5: 444b0a45bbd1cb24f82eedb56721b9c4 - sha256: 5097303c2fc8ebf9f9ea9731520aa5ce4847d0be41764edd7f6dee2100b82986 + md5: 8ef4beb3cb18e1a876b9af9a757cc1a5 + sha256: c739589318a1f8a88cd1b66d385176fd1ec2c4609e9f90d23d748be94b547e4e category: main optional: false - name: libbrotlidec @@ -1580,11 +1580,11 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libbrotlicommon: 1.2.0 - libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlidec-1.2.0-hb03c661_1.conda + libgcc: '>=15' + url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlidec-1.2.0-ha411449_3.conda hash: - md5: 366b40a69f0ad6072561c1d09301c886 - sha256: 12fff21d38f98bc446d82baa890e01fd82e3b750378fedc720ff93522ffb752b + md5: 6ab3315dc56618d652c1da42a648a129 + sha256: dad31b6d104973deb89710929a35651033aad692d4e7793cdb5b786a9bd54678 category: main optional: false - name: libbrotlidec @@ -1596,10 +1596,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libbrotlidec-1.2.0-hfd05255_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/libbrotlidec-1.2.0-h84f9c24_3.conda hash: - md5: 450e3ae947fc46b60f1d8f8f318b40d4 - sha256: 3239ce545cf1c32af6fffb7fc7c75cb1ef5b6ea8221c66c85416bb2d46f5cccb + md5: 10c479888ee4e960587967b2d0c8143a + sha256: f4bdb7ec97c3122e531fc867efae5ec928b649d047aa70d42893f0d8eb110fd9 category: main optional: false - name: libbrotlienc @@ -1609,11 +1609,11 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libbrotlicommon: 1.2.0 - libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlienc-1.2.0-hb03c661_1.conda + libgcc: '>=15' + url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlienc-1.2.0-h018ffa1_3.conda hash: - md5: 4ffbb341c8b616aa2494b6afb26a0c5f - sha256: a0c15c79997820bbd3fbc8ecf146f4fe0eca36cc60b62b63ac6cf78857f1dd0d + md5: 2ac965638d4c6b2b38383bb1aebaf543 + sha256: d37124d0f51816e7d5e3a94bfc9ed3d6174d077f9b4f832d20c5a08b52bebf1f category: main optional: false - name: libbrotlienc @@ -1625,10 +1625,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libbrotlienc-1.2.0-hfd05255_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/libbrotlienc-1.2.0-he2a975b_3.conda hash: - md5: ccd93cfa8e54fd9df4e83dbe55ff6e8c - sha256: 3226df6b7df98734440739f75527d585d42ca2bfe912fbe8d1954c512f75341a + md5: cb5d08dc81f52e87c27914b5636cd995 + sha256: c5e638ea9704c94b316238b425a3439ba38d4d8fba81682842e6d7d464472848 category: main optional: false - name: libcblas @@ -1637,10 +1637,10 @@ package: platform: linux-64 dependencies: libblas: 3.11.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libcblas-3.11.0-8_hfef963f_mkl.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libcblas-3.11.0-9_hfef963f_mkl.conda hash: - md5: 2101410a3915785b2c1595d1ae94e32c - sha256: a3ea22126a74321ddf754a0efaf998486ffb8b9ec69fc735b3f0eacb6ffc8a4e + md5: cbdd209a7b8cef670cc50830428a3b9d + sha256: 8ce1b4cdc6e0feb53c5f8e3cf69b1b2c034f5e2726a4027b2fa6feeb0e7fb93e category: main optional: false - name: libcblas @@ -1649,10 +1649,10 @@ package: platform: win-64 dependencies: libblas: 3.11.0 - url: https://repo.prefix.dev/conda-forge/win-64/libcblas-3.11.0-8_h2a3cdd5_mkl.conda + url: https://repo.prefix.dev/conda-forge/win-64/libcblas-3.11.0-9_h2a3cdd5_mkl.conda hash: - md5: 09f1d8e4d2675d34ad2acb115211d10c - sha256: 2a5b6555b481df4603e44cba49a6ef727584fd2f3c5235dd4bcb3028fffbdfb5 + md5: 9d1d0c22e9ed8c31ec2efc0d063d6f48 + sha256: 8c20714bbb85c8a109e9002e76c32be64a82d9867beb1a35a20c85258cc2b535 category: main optional: false - name: libcurl @@ -1662,17 +1662,17 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' krb5: '>=1.22.2,<1.23.0a0' - libgcc: '>=14' + libgcc: '>=15' libnghttp2: '>=1.68.1,<2.0a0' - libpsl: '>=0.22.0,<0.23.0a0' + libpsl: '>=0.23.1,<0.24.0a0' libssh2: '>=1.11.1,<2.0a0' libzlib: '>=1.3.2,<2.0a0' openssl: '>=3.5.7,<4.0a0' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libcurl-8.21.0-hae6b9f4_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libcurl-8.21.0-ha042cf0_5.conda hash: - md5: f9c59d277a16ec8f272b2d5dd2ec3335 - sha256: ba8354084b34fce56d5697982fce4a384c148e972e15c0ab891187617fe7ec29 + md5: 0ed167049513943d078a6c997df2b4e0 + sha256: 0b6cc13e36cf19ae9b764740112fc591682e189c99353be9f72f3d96ccf29d79 category: main optional: false - name: libcurl @@ -1681,16 +1681,16 @@ package: platform: win-64 dependencies: krb5: '>=1.22.2,<1.23.0a0' - libpsl: '>=0.22.0,<0.23.0a0' + libpsl: '>=0.23.1,<0.24.0a0' libssh2: '>=1.11.1,<2.0a0' libzlib: '>=1.3.2,<2.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libcurl-8.21.0-h51a1c48_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/libcurl-8.21.0-hdb0ef4a_5.conda hash: - md5: 88c875a8f34785d6f6185ceb646154fa - sha256: e9a9231e6c04b82979a6a1a4f90b8a697dc3a42884e709dee8ba5d0355b45296 + md5: 50861643cbe90dc7267feb7854b8efdf + sha256: bf5445ab8acfaccaf511d774f131cf0d99c5eef6b8def270e832ad26970d5011 category: main optional: false - name: libdeflate @@ -1700,10 +1700,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libdeflate-1.25-h17f619e_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libdeflate-1.25-hd45a770_1.conda hash: - md5: 6c77a605a7a689d17d4819c0f8ac9a00 - sha256: aa8e8c4be9a2e81610ddf574e05b64ee131fab5e0e3693210c9d6d2fba32c680 + md5: 40f9b31aa9cf007789867df0decd0492 + sha256: 82e134c8a08b1eed9a2ed8ab578b89aa1730dcde3dea8dd87645ed0637878e54 category: main optional: false - name: libdeflate @@ -1714,10 +1714,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libdeflate-1.25-h51727cc_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libdeflate-1.25-h1a1d4e4_1.conda hash: - md5: e77030e67343e28b084fabd7db0ce43e - sha256: 834e4881a18b690d5ec36f44852facd38e13afe599e369be62d29bd675f107ee + md5: e4e122e124676a49eebf241399ad8393 + sha256: af1cda21d4653f594fbef20aa4e1ff158a546902b3307ef8af9a9b44b43862d2 category: main optional: false - name: libedit @@ -1726,12 +1726,12 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - ncurses: '>=6.5,<7.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.conda + libgcc: '>=14' + ncurses: '>=6.6,<7.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/libedit-3.1.20250104-pl5321h373387f_1.conda hash: - md5: c277e0a4d549b03ac1e9d6cbbe3d017b - sha256: d789471216e7aba3c184cd054ed61ce3f6dac6f87a50ec69291b9297f8c18724 + md5: 50708d3b951d0f8e2d7f2df5b5edc040 + sha256: 6473eb8caf2aae830f37caa93db9b26dddf7ac84b63229e8bf7fc0e5c3ab95b0 category: main optional: false - name: libev @@ -1739,11 +1739,12 @@ package: manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - url: https://repo.prefix.dev/conda-forge/linux-64/libev-4.33-hd590300_2.conda + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/libev-4.33-h280c20c_3.conda hash: - md5: 172bf1cd1ff8629f2b1179945ed45055 - sha256: 1cd6048169fa0395af74ed5d8f1716e22c19a81a8a36f934c110ca3ad4dd27b4 + md5: 7bc31538d6e3fb349e897353969237ec + sha256: e4418f68d01a6307c4431b585c71b584f40189877364e542ee87deb777f5e85b category: main optional: false - name: libexpat @@ -1774,30 +1775,30 @@ package: category: main optional: false - name: libffi - version: 3.5.2 + version: 3.7.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libffi-3.5.2-h3435931_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libffi-3.7.0-h3435931_0.conda hash: - md5: a360c33a5abe61c07959e449fa1453eb - sha256: 31f19b6a88ce40ebc0d5a992c131f57d919f73c0b92cd1617a5bec83f6e961e6 + md5: 0abe40a9880086ca4d2e5daf09dceff9 + sha256: ac38603008bf1e99b8ed379b1a656a67a70e2841f2b6a069c630cdf6316012d2 category: main optional: false - name: libffi - version: 3.5.2 + version: 3.7.0 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libffi-3.5.2-h3d046cb_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libffi-3.7.0-h3d046cb_0.conda hash: - md5: 720b39f5ec0610457b725eb3f396219a - sha256: 59d01f2dfa8b77491b5888a5ab88ff4e1574c9359f7e229da254cdfe27ddc190 + md5: 92bdfc0e5012660892b0e0eaf3069a5c + sha256: 2ea8d2fe7b84ca37653777e15ac1e7abd35f0c90d3efbe7f6c4de9b489606369 category: main optional: false - name: libfreetype @@ -1806,10 +1807,10 @@ package: platform: linux-64 dependencies: libfreetype6: '>=2.14.3' - url: https://repo.prefix.dev/conda-forge/linux-64/libfreetype-2.14.3-ha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libfreetype-2.14.3-ha770c72_2.conda hash: - md5: e289f3d17880e44b633ba911d57a321b - sha256: 38f014a7129e644636e46064ecd6b1945e729c2140e21d75bb476af39e692db2 + md5: f8054e759d0ddddaf34a5c8fedc900a1 + sha256: fb12ecb46c30d18d928c0e8fc346ab13b5f6fc8a9cacae4f2f4bb188782586f5 category: main optional: false - name: libfreetype @@ -1818,10 +1819,10 @@ package: platform: win-64 dependencies: libfreetype6: '>=2.14.3' - url: https://repo.prefix.dev/conda-forge/win-64/libfreetype-2.14.3-h57928b3_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/libfreetype-2.14.3-h57928b3_2.conda hash: - md5: e45b52fb9a81c9e2708465a706e05952 - sha256: 035d0c67bf9f7a16f4a1764f420c120f1a995d071bb265fcc66ef688ef709d7b + md5: 740f99c3c91079c03874b809fedace1b + sha256: d794d7fddb6eea50e18a62fa27ab3819f40d51bad00b90cf4ca591fb0d4006c2 category: main optional: false - name: libfreetype6 @@ -1830,13 +1831,13 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' - libpng: '>=1.6.55,<1.7.0a0' + libgcc: '>=15' + libpng: '>=1.6.58,<1.7.0a0' libzlib: '>=1.3.2,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libfreetype6-2.14.3-h73754d4_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libfreetype6-2.14.3-h5e6c136_2.conda hash: - md5: fb16b4b69e3f1dcfe79d80db8fd0c55d - sha256: 16f020f96da79db1863fcdd8f2b8f4f7d52f177dd4c58601e38e9182e91adf1d + md5: b72a266a9317036fd0464cb98b027cd0 + sha256: ec607dd5445dd17ff6bf8b7fe6832e5504c226dd91d3aaea7ba83569808b0ce4 category: main optional: false - name: libfreetype6 @@ -1849,85 +1850,85 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libfreetype6-2.14.3-hdbac1cb_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/libfreetype6-2.14.3-hdbac1cb_2.conda hash: - md5: 4e4d54f9f98383d977ba56ef39ebf46d - sha256: 0bbd19c9f7c4d0232b31892e6a4d1f82b8d19d1b84d89725f1f491b336447758 + md5: 8157483eb7ed3fcba71aad3b50a97131 + sha256: cbc650854003e434d4ff6c7b1a2667e38a4242ad8a391a1c5ff89721624065ce category: main optional: false - name: libgcc - version: 15.2.0 + version: 16.1.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' _openmp_mutex: '>=4.5' - url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-15.2.0-he0feb66_20.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-16.1.0-ha9f2e26_3.conda hash: - md5: 3533de187cf7283f96bfdb28ad73e2bc - sha256: e3b7bb287d1685b15781a6d9e3408d6ddaff23f5a1d0d6c0140619dd3950fe72 + md5: c471b242d299f8bc1e2b3e0f6e9f4b77 + sha256: af35751596409fc1a1a81a32b7f1e195bca7f648dfe7c64f8ec4848b3a5003f8 category: main optional: false - name: libgcc - version: 15.2.0 + version: 16.1.0 manager: conda platform: win-64 dependencies: _openmp_mutex: '>=4.5' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' - url: https://repo.prefix.dev/conda-forge/win-64/libgcc-15.2.0-h8ee18e1_20.conda + url: https://repo.prefix.dev/conda-forge/win-64/libgcc-16.1.0-h110b43a_3.conda hash: - md5: 00528c2577868b9cfefec85b8fe26d66 - sha256: 954dcca1cbf2ad1e7ac2129bf77f787bec0a2eb9edb3f8b79c9a93b492a20c40 + md5: e8d20d3561601e827dc754481294f40c + sha256: 125a3ea39e7308680a494416c5b8868bafefafc5f82987fae282c300614d979e category: main optional: false - name: libgcc-ng - version: 15.2.0 + version: 16.1.0 manager: conda platform: linux-64 dependencies: - libgcc: 15.2.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-ng-15.2.0-h69a702a_20.conda + libgcc: 16.1.0 + url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-ng-16.1.0-h69a702a_3.conda hash: - md5: c099368d009e4d828449eaed7b2cb701 - sha256: e01a2a027fceea1011d2e74307845fb0c4bd6d195ff27fbf5baeafa55531d128 + md5: 824e26366da140518fdc55816eaef929 + sha256: d3368af8b654073a0937fc7d3add75dbd09aae0b6e225596685756885b171309 category: main optional: false - name: libgfortran - version: 15.2.0 + version: 16.1.0 manager: conda platform: linux-64 dependencies: - libgfortran5: 15.2.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran-15.2.0-h69a702a_20.conda + libgfortran5: 16.1.0 + url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran-16.1.0-h69a702a_3.conda hash: - md5: a450a08a63f940e9aa7b37692e71196a - sha256: 76d81032e264b74f519cc26962d5eb39547e0785fc9d2957bbc12e7a91214412 + md5: 3eae88e54adbd0448f865a74b2771192 + sha256: 0731a92037731af603b3653a67ffc98e07efc65765ebb603aa2e8fd1250ef21b category: main optional: false - name: libgfortran5 - version: 15.2.0 + version: 16.1.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=15.2.0' - url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran5-15.2.0-h68bc16d_20.conda + libgcc: '>=16.1.0' + url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran5-16.1.0-h79bb938_3.conda hash: - md5: 4edbcbea1a8790a7d58e648523b69546 - sha256: 95122f42566dc9a62b9615d2372b3f3c75fa7bd8bb1eda53aa7532ce60d545eb + md5: 0f1c5c900eb7fbee86871c1f80dbccd3 + sha256: 879e354ea894fe36c18160b000e35316cb3f196ff597f30dca209027ecf0fac2 category: main optional: false - name: libgomp - version: 15.2.0 + version: 16.1.0 manager: conda platform: win-64 dependencies: libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' - url: https://repo.prefix.dev/conda-forge/win-64/libgomp-15.2.0-h8ee18e1_20.conda + url: https://repo.prefix.dev/conda-forge/win-64/libgomp-16.1.0-h8ee18e1_3.conda hash: - md5: 3b2b211930103e49d77da1a7d9ea9af9 - sha256: 33606594501174cc1677c7dbe39de739c2f04e9a8ddbd95aa82e48d1bd79b388 + md5: fa88e8a67d2f6370f7b3cd45e8861dfd + sha256: 6ede93ef60404209453cddf8f1cae5b8d05dcc0c39e1021db1dace88db7543cf category: main optional: false - name: libhwloc @@ -1969,11 +1970,11 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libiconv-1.18-h3b78370_2.conda + libgcc: '>=15' + url: https://repo.prefix.dev/conda-forge/linux-64/libiconv-1.18-h0cb94f2_3.conda hash: - md5: 915f5995e94f60e9a4826e0b0920ee88 - sha256: c467851a7312765447155e071752d7bf9bf44d610a5687e32706f480aad2833f + md5: f92233bf33e24a25668bb2119e2c51f9 + sha256: f943117edb9cd4d9c61cc972eee5a34291dc55ea7a6e9e38da104995841cbcb6 category: main optional: false - name: libiconv @@ -1984,10 +1985,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libiconv-1.18-hc1393d2_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/libiconv-1.18-hc1393d2_3.conda hash: - md5: 64571d1dd6cdcfa25d0664a5950fdaa2 - sha256: 0dcdb1a5f01863ac4e8ba006a8b0dc1a02d2221ec3319b5915a1863254d7efa7 + md5: a8a2abdf0f901bc4779d9b7be0845921 + sha256: 35e04e3ddac7720fc7c550a1c9f998604299d6a7bd1f3ec9b2825d825061daa2 category: main optional: false - name: libjpeg-turbo @@ -1997,10 +1998,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libjpeg-turbo-3.2.0-hb03c661_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libjpeg-turbo-3.2.0-hb03c661_1.conda hash: - md5: 466badda5536d85ddc63ee9404f29735 - sha256: 716332fd31b3808da7a4235a05212a9e9da05e854864c3def2dea0b5d2bf7610 + md5: 898d1c9793eaa52efc4727bd84d2e39a + sha256: bba8538e6538ed58a8479b332337b96986561f975d06cfa2039a016c2d246ee4 category: main optional: false - name: libjpeg-turbo @@ -2011,10 +2012,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libjpeg-turbo-3.2.0-hfd05255_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libjpeg-turbo-3.2.0-hfd05255_1.conda hash: - md5: cf219146d5bf2fee5907409ff9f5ac89 - sha256: 3d6635efa9497b9c5ba7957df8067c0a980d5cb10a6ea136931809eb410f8a99 + md5: fc2c23bacefd1e733f1e1d6cd3b2aaeb + sha256: df78ab4c0eecb3dd9331898f96baeed8e5ca1c363346332517abeb0b614b9a53 category: main optional: false - name: liblapack @@ -2023,10 +2024,10 @@ package: platform: linux-64 dependencies: libblas: 3.11.0 - url: https://repo.prefix.dev/conda-forge/linux-64/liblapack-3.11.0-8_h5e43f62_mkl.conda + url: https://repo.prefix.dev/conda-forge/linux-64/liblapack-3.11.0-9_h5e43f62_mkl.conda hash: - md5: 370e81464714060008e60ee53825bb3e - sha256: 0cb26d433dfa15a392eaeeb8a96ac468f4d007d7e7e37ef7bf46856aaf9a9785 + md5: 255025c2d2df85b72c9ab3105f7611e4 + sha256: 3060d9393e7013a192eb55354def1a522348baa57c3ce4dc9cb904bf392a9ac1 category: main optional: false - name: liblapack @@ -2035,10 +2036,10 @@ package: platform: win-64 dependencies: libblas: 3.11.0 - url: https://repo.prefix.dev/conda-forge/win-64/liblapack-3.11.0-8_hf9ab0e9_mkl.conda + url: https://repo.prefix.dev/conda-forge/win-64/liblapack-3.11.0-9_hf9ab0e9_mkl.conda hash: - md5: d584799b920ecae9b75a2b70743a3de7 - sha256: 44999ed04bc0a56de44ee0ac8bd5b3702efd411a8b29491c0e3d3deb8619c94e + md5: bee6f13ab945c4034bdd0f722ad14dd5 + sha256: 62d0a7a70ee13c554d5d7ff94a2ba758c4111439822dcc81324dd4cfaf576071 category: main optional: false - name: liblzma @@ -2048,10 +2049,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/liblzma-5.8.3-hb03c661_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/liblzma-5.8.3-hb03c661_1.conda hash: - md5: b88d90cad08e6bc8ad540cb310a761fb - sha256: ec30e52a3c1bf7d0425380a189d209a52baa03f22fb66dd3eb587acaa765bd6d + md5: 1390b7c5ac0b1d8e447bc5efa6d3c8c2 + sha256: 9787df8c22a59c9a70d3e5a10db9ad663485e75e9ccc3f09bd092cb7b95e0dab category: main optional: false - name: liblzma @@ -2062,10 +2063,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/liblzma-5.8.3-hfd05255_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/liblzma-5.8.3-hfd05255_1.conda hash: - md5: 8f83619ab1588b98dd99c90b0bfc5c6d - sha256: d636d1a25234063642f9c531a7bb58d84c1c496411280a36ea000bd122f078f1 + md5: 880a0c8549479b198af21ba5dc49b109 + sha256: d36c4a1e1f80fd08e18a407e03622ff2f34dfdd022da6488ad19603dea19e6d5 category: main optional: false - name: libmpdec @@ -2075,10 +2076,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libmpdec-4.0.0-hb03c661_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libmpdec-4.0.0-hb03c661_2.conda hash: - md5: 2c21e66f50753a083cbe6b80f38268fa - sha256: fe171ed5cf5959993d43ff72de7596e8ac2853e9021dec0344e583734f1e0843 + md5: fcfed1dc5053eb1901b66e7b1fc32588 + sha256: 46820b4a835e175940ae20bec00fdddaff804cda27a1408ab1b95e77a2196437 category: main optional: false - name: libmpdec @@ -2089,10 +2090,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libmpdec-4.0.0-hfd05255_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/libmpdec-4.0.0-hfd05255_2.conda hash: - md5: e4a9fc2bba3b022dad998c78856afe47 - sha256: 40dcd0b9522a6e0af72a9db0ced619176e7cfdb114855c7a64f278e73f8a7514 + md5: 5ae92fd6614edd024576e14069d7ad4c + sha256: f07e451de3db1836b87f7aedf95c8e65cdb06c0e6105329ba24bb5f7b5c75e2a category: main optional: false - name: libnghttp2 @@ -2101,16 +2102,16 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - c-ares: '>=1.34.6,<2.0a0' + c-ares: '>=1.34.8,<2.0a0' libev: '>=4.33,<5.0a0' - libgcc: '>=14' - libstdcxx: '>=14' - libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.5.5,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libnghttp2-1.68.1-h877daf1_0.conda + libgcc: '>=15' + libstdcxx: '>=15' + libzlib: '>=1.3.2,<2.0a0' + openssl: '>=3.5.7,<4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/libnghttp2-1.68.1-h74cf4be_1.conda hash: - md5: 2a45e7f8af083626f009645a6481f12d - sha256: 663444d77a42f2265f54fb8b48c5450bfff4388d9c0f8253dd7855f0d993153f + md5: 75d211f04ac87506f1f43420712a69fe + sha256: 11a2f54a6f391e25738bce0023e6ef499600147bbcf21c1fa69d2e251b03cc6a category: main optional: false - name: libpng @@ -2119,12 +2120,12 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' + libgcc: '>=15' libzlib: '>=1.3.2,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libpng-1.6.58-h421ea60_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libpng-1.6.58-h922cc85_1.conda hash: - md5: eba48a68a1a2b9d3c0d9511548db85db - sha256: 377cfe037f3eeb3b1bf3ad333f724a64d32f315ee1958581fc671891d63d3f89 + md5: fcf71c8d979148873f6f8ad4cfc73d86 + sha256: c19eefb87d70d9b4b0629fa48414a155a47a1be4f04583ae71ed8c5a9a32fdcb category: main optional: false - name: libpng @@ -2136,29 +2137,29 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libpng-1.6.58-h7351971_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libpng-1.6.58-hdc8cecf_1.conda hash: - md5: 52f1280563f3b48b5f75414cd2d15dd1 - sha256: 218913aeee391460bd0e341b834dbd9c6fa6ae0a4276c0c300266cc99a816a28 + md5: 5aa7348e73691187c81d51616f17e48a + sha256: 8c49c32adf3ba2c59783630b82377f54ab72204ea99e2bafc90a47a8e25c1032 category: main optional: false - name: libpsl - version: 0.22.0 + version: 0.23.1 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' icu: '>=78.3,<79.0a0' - libgcc: '>=14' - libstdcxx: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libpsl-0.22.0-h49b2146_1.conda + libgcc: '>=15' + libstdcxx: '>=15' + url: https://repo.prefix.dev/conda-forge/linux-64/libpsl-0.23.1-hd9e3e90_1.conda hash: - md5: af5ddfb52ad25d833c70c7511478d4eb - sha256: 71118885feab91c61bea4e9532ec46e0653b24f02e563681f822915aee8435bb + md5: 77be60417aa572afcb48cbe0f967401d + sha256: 09e8effdc89bc5d021349318d32b85594f5b8d8e3ab8f90a85b81f8fe695a566 category: main optional: false - name: libpsl - version: 0.22.0 + version: 0.23.1 manager: conda platform: win-64 dependencies: @@ -2166,10 +2167,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libpsl-0.22.0-h25e0afd_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/libpsl-0.23.1-h9b16d47_1.conda hash: - md5: ba200e33e10ccf0d730c4ce87badbdf1 - sha256: 040d4adabae2634b13183203e383c21f74ed98028b5d50bf9bae4968dd05aaa5 + md5: 39cdf8c4f59e4d253cfa8091c8b3d7de + sha256: e53fe3b09f82b59b644264133d6d148ac31bb5451b7583cff55690bf038f2f62 category: main optional: false - name: libsqlite @@ -2179,12 +2180,12 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' icu: '>=78.3,<79.0a0' - libgcc: '>=14' + libgcc: '>=15' libzlib: '>=1.3.2,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.53.4-hf4e2dac_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.53.4-h13e7031_1.conda hash: - md5: df088a279cd5e6fd2790b4c196434da1 - sha256: 72023efc207fe681e26b65fc9d668062cf0b4f0eacf3431e6eb099b95c1f2efd + md5: e72bbec309c2b0f37823ee7d4fabfcd3 + sha256: f20d70da54e5b31dd4a51fb1efeaafafd5ab6dd8d7ac9d1438eaa2526ac4ed3d category: main optional: false - name: libsqlite @@ -2195,10 +2196,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.53.4-hf5d6505_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.53.4-hf5d6505_1.conda hash: - md5: ca0d59f40a02a15e9b5d0ff8db0f85e3 - sha256: 62e1c45ec71ab2e5deeeb0e47e7df6a609991e91d46348f16df50c68fee145c8 + md5: a72d495965b144bb7da033642d389047 + sha256: 0a45d7c0f20146fff787a106f8fa187872e309c70975ff8f0936e188914c26ad category: main optional: false - name: libssh2 @@ -2207,13 +2208,13 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.5.0,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libssh2-1.11.1-hcf80075_0.conda + libgcc: '>=14' + libzlib: '>=1.3.2,<2.0a0' + openssl: '>=3.5.7,<4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/libssh2-1.11.1-h6154650_1.conda hash: - md5: eecce068c7e4eddeb169591baac20ac4 - sha256: fa39bfd69228a13e553bd24601332b7cfeb30ca11a3ca50bb028108fe90a7661 + md5: 5c526561e1d2a2e071941174eae84557 + sha256: 7e463000fa1cba3f3a6597b776f6ab301d425a96e3bc20d0d9d76a3b9f237aa3 category: main optional: false - name: libssh2 @@ -2221,40 +2222,40 @@ package: manager: conda platform: win-64 dependencies: - libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.5.0,<4.0a0' + libzlib: '>=1.3.2,<2.0a0' + openssl: '>=3.5.7,<4.0a0' ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libssh2-1.11.1-h9aa295b_0.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/libssh2-1.11.1-h734d217_1.conda hash: - md5: 9dce2f112bfd3400f4f432b3d0ac07b2 - sha256: cbdf93898f2e27cefca5f3fe46519335d1fab25c4ea2a11b11502ff63e602c09 + md5: a21dd9ca39e74910bb96989feb916420 + sha256: 1097b08429b4f53f5751a32c6d99a083d227ca7f7812c0b239eea124cec073a0 category: main optional: false - name: libstdcxx - version: 15.2.0 + version: 16.1.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: 15.2.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-15.2.0-h934c35e_20.conda + libgcc: 16.1.0 + url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-16.1.0-h934c35e_3.conda hash: - md5: fbd3d5506b11b5cfc916b29263b6b6f7 - sha256: b5eadda8fb0df262f0d424c4a0c8c1c8d65d904ce622f07936c793ea1b8a39d9 + md5: 470d16b28d90ad4368df1aa5bc7ec18d + sha256: 6e98c0283244b5f8bbc0e86f7cba4d4921136bfbabf8da42b898a7a1f10be949 category: main optional: false - name: libstdcxx-ng - version: 15.2.0 + version: 16.1.0 manager: conda platform: linux-64 dependencies: - libstdcxx: 15.2.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-15.2.0-hdf11a46_20.conda + libstdcxx: 16.1.0 + url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-16.1.0-hdf11a46_3.conda hash: - md5: 593dc263426eb14f16dc594bfdb9772a - sha256: 0b79903234f68410c11c33cb9829f7b3cb01a9ff2f42bf083dd2c51e886e6077 + md5: 3e4550b8d69e0477b618825525189cfc + sha256: 11df057f95c6d9c52ba16fd291b1608eb3ccf7eedf0c8647a8048c9416449e26 category: main optional: false - name: libtiff @@ -2318,10 +2319,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libwebp-base-1.6.0-hd42ef1d_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libwebp-base-1.6.0-hd42ef1d_1.conda hash: - md5: aea31d2e5b1091feca96fcfe945c3cf9 - sha256: 3aed21ab28eddffdaf7f804f49be7a7d701e8f0e46c856d801270b470820a37b + md5: 9332b53d0ea93c5d39e33be03a0c611a + sha256: 8415001414f488c85b72b9d8cc2071dfb3981a47bc3c8eb56ef91a57d12eae7f category: main optional: false - name: libwebp-base @@ -2332,10 +2333,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libwebp-base-1.6.0-h4d5522a_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libwebp-base-1.6.0-h4d5522a_1.conda hash: - md5: f9bbae5e2537e3b06e0f7310ba76c893 - sha256: 7b6316abfea1007e100922760e9b8c820d6fc19df3f42fb5aca684cfacb31843 + md5: 35a9475e4cc999d52921f57c181979fc + sha256: 4470d98d3178b0d45492eed4808afe421d2e7808352b8d06c2dc29166b75d94d category: main optional: false - name: libwinpthread @@ -2344,10 +2345,10 @@ package: platform: win-64 dependencies: ucrt: '' - url: https://repo.prefix.dev/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h57928b3_10.conda + url: https://repo.prefix.dev/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h11686cb_11.conda hash: - md5: 8a86073cf3b343b87d03f41790d8b4e5 - sha256: 0fccf2d17026255b6e10ace1f191d0a2a18f2d65088fd02430be17c701f8ffe0 + md5: fc1e6626817ba55a0d141858d6c0ef5d + sha256: 988c8fe5fca9e3510fd0b5671d67ae42c1fd632f8bd28f832a6735970eb69a36 category: main optional: false - name: libxcb @@ -2356,14 +2357,14 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' + libgcc: '>=15' pthread-stubs: '' - xorg-libxau: '>=1.0.11,<2.0a0' - xorg-libxdmcp: '' - url: https://repo.prefix.dev/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda + xorg-libxau: '>=1.0.12,<2.0a0' + xorg-libxdmcp: '>=1.1.5,<2.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/libxcb-1.17.0-hb83e432_1.conda hash: - md5: 92ed62436b625154323d40d5f2f11dd7 - sha256: 666c0c431b23c6cec6e492840b176dde533d48b7e6fb8883f5071223433776aa + md5: 64e856c420205b009da26471d3ac161d + sha256: ce25a1efa85a78a3ce3b16721d9c36153814adbf2fb004a15f72ec69894b4cb1 category: main optional: false - name: libxcb @@ -2375,12 +2376,12 @@ package: libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' pthread-stubs: '' ucrt: '>=10.0.20348.0' - xorg-libxau: '>=1.0.11,<2.0a0' - xorg-libxdmcp: '' - url: https://repo.prefix.dev/conda-forge/win-64/libxcb-1.17.0-h0e4246c_0.conda + xorg-libxau: '>=1.0.12,<2.0a0' + xorg-libxdmcp: '>=1.1.5,<2.0a0' + url: https://repo.prefix.dev/conda-forge/win-64/libxcb-1.17.0-h874e120_1.conda hash: - md5: a69bbf778a462da324489976c84cfc8c - sha256: 08dec73df0e161c96765468847298a420933a36bc4f09b50e062df8793290737 + md5: 98046512ad7f2c44e48ff77bce854052 + sha256: a99f266ade1140c3106cca0f71ae2b5627ff77e1e791db3837129d28d596800e category: main optional: false - name: libxml2 @@ -2395,10 +2396,10 @@ package: liblzma: '>=5.8.3,<6.0a0' libxml2-16: 2.15.3 libzlib: '>=1.3.2,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libxml2-2.15.3-h49c6c72_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libxml2-2.15.3-h49c6c72_1.conda hash: - md5: 995d8c8bad2a3cc8db14675a153dec2b - sha256: 3bc5551720c58591f6ea1146f7d1539c734ed1c40e7b9f5cb8cb7e900c509aba + md5: 2d34cdb31014cbc8f1e9384c89ede0a5 + sha256: a16a576a5844a3a0e1cdfc5e162b9fe9c64dccf6a93f44c293bb42851aebe2b4 category: main optional: false - name: libxml2 @@ -2414,10 +2415,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libxml2-2.15.3-h8ef44ab_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libxml2-2.15.3-h8ef44ab_1.conda hash: - md5: 95591ca5671d2213f5b2d5aa7818420d - sha256: a4599c6bbbbdd7db570896e520c557eec8e66d94e839a59d17dc1f24a3d5f82b + md5: 45a5a1c709a69f14cf176220788d18a9 + sha256: a83e9adcf7c50f20289dc6890707c8e4e84151b4204b0f7344998138807458d1 category: main optional: false - name: libxml2-16 @@ -2431,10 +2432,10 @@ package: libiconv: '>=1.18,<2.0a0' liblzma: '>=5.8.3,<6.0a0' libzlib: '>=1.3.2,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libxml2-16-2.15.3-hca6bf5a_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libxml2-16-2.15.3-hca6bf5a_1.conda hash: - md5: e79d2c2f24b027aa8d5ab1b1ba3061e7 - sha256: 3d44f737c5ae52d5af32682cc1530df433f401f8e58a7533926536244127572a + md5: 20e4d67ec908f0405124f11612c48305 + sha256: 087d4de023f22d6a28b9e1b818961dd41e9bda6e9793590600ff16ca150bf9cb category: main optional: false - name: libxml2-16 @@ -2449,10 +2450,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libxml2-16-2.15.3-h3cfd58e_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libxml2-16-2.15.3-h3cfd58e_1.conda hash: - md5: 9e8dd0d90ed830107b2c36801035b7db - sha256: 3b61ee3caba702d2ff432fa3920835db963026e5c99c4e6fdca0c6114f59e7ce + md5: 6e7dadff3f3bde2d29d29a3ec34f2d58 + sha256: 8163de24a7ddb4ebf9587c3a45ba950caf3690b9646b76f007ca15e6e52b5881 category: main optional: false - name: libzlib @@ -2461,10 +2462,10 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libzlib-1.3.2-h25fd6f3_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libzlib-1.3.2-h25fd6f3_3.conda hash: - md5: d87ff7921124eccd67248aa483c23fec - sha256: 55044c403570f0dc26e6364de4dc5368e5f3fc7ff103e867c487e2b5ab2bcda9 + md5: 0de0122d9570a8ab637c6b73db268389 + sha256: eb8a0db0aa570124f7d2a93d7c7f596e3390df5e047818d873baad32985fc736 category: main optional: false - name: libzlib @@ -2475,10 +2476,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libzlib-1.3.2-hfd05255_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/libzlib-1.3.2-hfd05255_3.conda hash: - md5: dbabbd6234dea34040e631f87676292f - sha256: 88609816e0cc7452bac637aaf65783e5edf4fee8a9f8e22bdc3a75882c536061 + md5: 5d2ff29d465097458cc3ff6569151991 + sha256: 0629c2cc0404d3bb29d6baa7b4ba62da80797015e86de050db81ea5a07050527 category: main optional: false - name: llvm-openmp @@ -2487,10 +2488,10 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-22.1.8-h4922eb0_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-22.1.8-h3206bd6_1.conda hash: - md5: 7bbfdc5a6eca997d3b0873a575c3e155 - sha256: a37aba21b85800af1e7c5b04ba76abab96b6e591eedf99dc6e4df83b0fefd7a5 + md5: dc2ace17c0da02fbb8273e139f84e7ce + sha256: cf74ea3b6c8f0c01ae3cea10ff9451e4475eb39ee99a2c0f1f1627630ef888e5 category: main optional: false - name: llvm-openmp @@ -2501,10 +2502,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-22.1.8-h4fa8253_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-22.1.8-h4fa8253_1.conda hash: - md5: de3551bf6508d45ca46b714639e52823 - sha256: 50c02902bb516eeb56680358f052be38b5bf74b40e78ea4b2a675e84957e7307 + md5: 8135c070cad2ee5bb28ea50c12e81ce9 + sha256: 41a804136fdade8cfa9db006f3c41cac1199a387e609c465d779cef271fda85e category: main optional: false - name: markupsafe @@ -2631,12 +2632,11 @@ package: libgcc: '>=14' libstdcxx: '>=14' llvm-openmp: '>=22.1.8' - onemkl-license: 2026.1.0 tbb: '>=2023.0.0' - url: https://repo.prefix.dev/conda-forge/linux-64/mkl-2026.1.0-hecca717_243.conda + url: https://repo.prefix.dev/conda-forge/linux-64/mkl-2026.1.0-hecca717_244.conda hash: - md5: cef284d6d9fe0caf11638f5f0e4f9a64 - sha256: c68967a13488684d87fb7ac77b73c6f3f825f2da403707a14e75374c0ce3629f + md5: 3575c034d908c0567c53ed6a33e9dfd9 + sha256: 0b903cfa21b1a3396b3468d41b8112d49a5bd7ff6642305791caca3af33fbaf2 category: main optional: false - name: mkl @@ -2645,15 +2645,14 @@ package: platform: win-64 dependencies: llvm-openmp: '>=22.1.8' - onemkl-license: 2026.1.0 tbb: '>=2023.0.0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/mkl-2026.1.0-hac47afa_233.conda + url: https://repo.prefix.dev/conda-forge/win-64/mkl-2026.1.0-hac47afa_234.conda hash: - md5: 5afbf28c4ca3e05b5469dbbd78c8e704 - sha256: ff355522fb0b6e33841167d9ca749147c8734d8be07b63b2ce25b0db043f42ed + md5: f0510f9d5e501462d72a5c0c798dbcc3 + sha256: f7568a5ebf9f4a401a6d9da7be4f82a8794cf305e870e77923a5712ba7f4b964 category: main optional: false - name: munkres @@ -2687,10 +2686,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/ncurses-6.6-hdb14827_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/ncurses-6.6-hdb14827_1.conda hash: - md5: fc21868a1a5aacc937e7a18747acb8a5 - sha256: fc89f74bbe362fb29fa3c037697a89bec140b346a2469a90f7936d1d7ea4d8a3 + md5: ee6c0cd80a60961a1f48aa3e0b91f986 + sha256: 5d46557214ed184381dafe835b7c94a474a1c3b307a08a250b1ea4779b44ffb3 category: main optional: false - name: numpy @@ -2731,28 +2730,6 @@ package: sha256: de0eee21d902fb45a58454e3739e04ede7d02bf7575ca0ae9f959f20fa15c76b category: main optional: false -- name: onemkl-license - version: 2026.1.0 - manager: conda - platform: linux-64 - dependencies: {} - url: https://repo.prefix.dev/conda-forge/linux-64/onemkl-license-2026.1.0-ha770c72_243.conda - hash: - md5: 2617b8e56c82fe48be8951e7794f08bc - sha256: b560b1106416b7df0041144aad3842e8783e22c70418a46cbcc90fe67a96b229 - category: main - optional: false -- name: onemkl-license - version: 2026.1.0 - manager: conda - platform: win-64 - dependencies: {} - url: https://repo.prefix.dev/conda-forge/win-64/onemkl-license-2026.1.0-h57928b3_233.conda - hash: - md5: 1566e2ce8c3bc23a2feb866c4d9e91e3 - sha256: 96dec1c878d6e6f835be8ed57152a37be9a5104ac79c2425815d71c64cf13ee4 - category: main - optional: false - name: openjpeg version: 2.5.4 manager: conda @@ -2795,10 +2772,10 @@ package: __glibc: '>=2.17,<3.0.a0' ca-certificates: '' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/openssl-3.6.3-h35e630c_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/openssl-3.6.3-h35e630c_1.conda hash: - md5: 79dd2074b5cd5c5c6b2930514a11e22d - sha256: d48f5c22b9897c01e4dff3680f1f57ceb02711ab9c62f74339b080419dfad34b + md5: c5955c27917ff2234def47f075e71e02 + sha256: 012096056b97abf1f68c46b7146bd2cbd68c1be762340b4f5dad4fbbe99177bc category: main optional: false - name: openssl @@ -2810,34 +2787,34 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/openssl-3.6.3-hf411b9b_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/openssl-3.6.3-hf411b9b_1.conda hash: - md5: e99f95734a326c0fd4d02bbd995150d4 - sha256: cb6e7ba0d010ee0d3249ce9886de3d7613d26d9965d4c95666fa66b9c4c31001 + md5: a978392692a910ba1c8920ccb1e784b3 + sha256: 2ebff5a1b5793e82495bf33c91fba040e11ff23333c2385ac66d0c3aee2cc14c category: main optional: false - name: packaging - version: '26.2' + version: '26.3' manager: conda platform: linux-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/packaging-26.2-pyhc364b38_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/packaging-26.3-pyhc364b38_0.conda hash: - md5: 4c06a92e74452cfa53623a81592e8934 - sha256: 3906abfb6511a3bb309e39b9b1b7bc38f50a723971de2395489fd1f379255890 + md5: 936687ed80f295a1f5dbcf8bd34c252c + sha256: c432626b16768b8dab228bfb706f7060c2d462a21c516d240f68f2f902b5a044 category: main optional: false - name: packaging - version: '26.2' + version: '26.3' manager: conda platform: win-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/packaging-26.2-pyhc364b38_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/packaging-26.3-pyhc364b38_0.conda hash: - md5: 4c06a92e74452cfa53623a81592e8934 - sha256: 3906abfb6511a3bb309e39b9b1b7bc38f50a723971de2395489fd1f379255890 + md5: 936687ed80f295a1f5dbcf8bd34c252c + sha256: c432626b16768b8dab228bfb706f7060c2d462a21c516d240f68f2f902b5a044 category: main optional: false - name: pillow @@ -2892,51 +2869,51 @@ package: category: main optional: false - name: pip - version: 26.1.2 + version: 26.2.1 manager: conda platform: linux-64 dependencies: python: '>=3.13.0a0' - url: https://repo.prefix.dev/conda-forge/noarch/pip-26.1.2-pyh145f28c_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pip-26.2.1-pyh145f28c_0.conda hash: - md5: 733cc07ed34162ac50b936464b163366 - sha256: 9e673d3c6003f416df11670a14b026a04e3a45ebec55357987e15b860f138f2a + md5: 573cb3ed111004230ed3de650653cd4d + sha256: 0f7021cfb3ff454c91a5e28e1f5060906a52c6d1cde3f879a7d03ac33c28b1c3 category: main optional: false - name: pip - version: 26.1.2 + version: 26.2.1 manager: conda platform: win-64 dependencies: python: '>=3.13.0a0' - url: https://repo.prefix.dev/conda-forge/noarch/pip-26.1.2-pyh145f28c_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pip-26.2.1-pyh145f28c_0.conda hash: - md5: 733cc07ed34162ac50b936464b163366 - sha256: 9e673d3c6003f416df11670a14b026a04e3a45ebec55357987e15b860f138f2a + md5: 573cb3ed111004230ed3de650653cd4d + sha256: 0f7021cfb3ff454c91a5e28e1f5060906a52c6d1cde3f879a7d03ac33c28b1c3 category: main optional: false - name: platformdirs - version: 4.11.0 + version: 4.11.3 manager: conda platform: linux-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.11.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.11.3-pyhcf101f3_0.conda hash: - md5: 1fadaa6dd1d03d062075f84157ac2cc7 - sha256: a4b8c7d3b3703d10f93187986d59aec09b22033978945845899beb7f849a7be6 + md5: 31474b00d0ca5accac14eda09ba11216 + sha256: 810511c90649ca59fa0174958a210fd5051c0a7848cfbd42c87054a6836726b5 category: dev optional: true - name: platformdirs - version: 4.11.0 + version: 4.11.3 manager: conda platform: win-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.11.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.11.3-pyhcf101f3_0.conda hash: - md5: 1fadaa6dd1d03d062075f84157ac2cc7 - sha256: a4b8c7d3b3703d10f93187986d59aec09b22033978945845899beb7f849a7be6 + md5: 31474b00d0ca5accac14eda09ba11216 + sha256: 810511c90649ca59fa0174958a210fd5051c0a7848cfbd42c87054a6836726b5 category: dev optional: true - name: pluggy @@ -2969,13 +2946,13 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' + libgcc: '>=15' python: '' python_abi: 3.14.* - url: https://repo.prefix.dev/conda-forge/linux-64/psutil-7.2.2-py314h0f05182_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/psutil-7.2.2-py314hfe1a184_1.conda hash: - md5: 4f225a966cfee267a79c5cb6382bd121 - sha256: f15574ed6c8c8ed8c15a0c5a00102b1efe8b867c0bd286b498cd98d95bd69ae5 + md5: 1dadeb3cb86afd90e106395730cd87aa + sha256: d4c4c9e1bcaeb38e4c4b6a17e8e0b25f8083e03d11813b872427bd47c9bfe1ca category: main optional: false - name: psutil @@ -2988,10 +2965,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/psutil-7.2.2-py314hc5dbbe4_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/psutil-7.2.2-py314hc5dbbe4_1.conda hash: - md5: fd539ac231820f64066839251aa9fa48 - sha256: 17c8274ce5a32c9793f73a5a0094bd6188f3a13026a93147655143d4df034214 + md5: deeef9494cfffa58f5fd20bc6eb57664 + sha256: c975e08da7627e95d1f0b70ef9787e9153118e67bb5b31f5530c5c3827d9afe8 category: main optional: false - name: pthread-stubs @@ -3000,11 +2977,11 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/pthread-stubs-0.4-hb03c661_1003.conda hash: - md5: b3c17d95b5a10c6e64a21fa17573e70e - sha256: 9c88f8c64590e9567c6c80823f0328e58d3b1efb0e1c539c0315ceca764e0973 + md5: df2c27f36bdb0dde779f55b5df76a352 + sha256: afc3b27b2cbb0487c1d0e963f96e71181ecfb623a24fb393bb19ff974a6382a1 category: main optional: false - name: pthread-stubs @@ -3012,13 +2989,13 @@ package: manager: conda platform: win-64 dependencies: - libgcc: '>=13' + libgcc: '>=14' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' ucrt: '>=10.0.20348.0' - url: https://repo.prefix.dev/conda-forge/win-64/pthread-stubs-0.4-h0e40799_1002.conda + url: https://repo.prefix.dev/conda-forge/win-64/pthread-stubs-0.4-hba3369d_1003.conda hash: - md5: 3c8f2573569bb816483e5cf57efbbe29 - sha256: 7e446bafb4d692792310ed022fe284e848c6a868c861655a92435af7368bae7b + md5: bc97d497656c9c661ffd3043aca90aa4 + sha256: 5546927a2e337d2903d6cdb028fb33723cdbcc45bf9abe1770fbde2c4ea8bce6 category: main optional: false - name: pydantic @@ -3089,31 +3066,31 @@ package: category: main optional: false - name: pygments - version: 2.20.0 + version: 2.21.0 manager: conda platform: linux-64 dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.20.0-pyhd8ed1ab_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.21.0-pyhcf101f3_0.conda hash: - md5: 16c18772b340887160c79a6acc022db0 - sha256: cf70b2f5ad9ae472b71235e5c8a736c9316df3705746de419b59d442e8348e86 + md5: 2882dee445dfa45b0c5afce3ffb7730a + sha256: f5f015ff1bc3e1b7fc08eee096b1865234189ae0b82bebdb86a5369116e42fa0 category: dev optional: true - name: pygments - version: 2.20.0 + version: 2.21.0 manager: conda platform: win-64 dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.20.0-pyhd8ed1ab_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.21.0-pyhcf101f3_0.conda hash: - md5: 16c18772b340887160c79a6acc022db0 - sha256: cf70b2f5ad9ae472b71235e5c8a736c9316df3705746de419b59d442e8348e86 + md5: 2882dee445dfa45b0c5afce3ffb7730a + sha256: f5f015ff1bc3e1b7fc08eee096b1865234189ae0b82bebdb86a5369116e42fa0 category: dev optional: true - name: pylint - version: 4.0.6 + version: 4.0.7 manager: conda platform: linux-64 dependencies: @@ -3126,14 +3103,14 @@ package: python: '' tomli: '>=1.1' tomlkit: '>=0.10.1' - url: https://repo.prefix.dev/conda-forge/noarch/pylint-4.0.6-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pylint-4.0.7-pyhcf101f3_0.conda hash: - md5: ba6813f7d81828b7dcd03248a42d031d - sha256: 5393b20b76361efe49971a0081cad0f4256f875a14fe71b1ed93ba9e0193369c + md5: 7aaab460cb599b2370a782b4eff8127d + sha256: 9c9ba2e6f17193ede911f8c095232a8c5a1edb3cc6cc49d07cfdde0b86e7c97f category: dev optional: true - name: pylint - version: 4.0.6 + version: 4.0.7 manager: conda platform: win-64 dependencies: @@ -3146,10 +3123,10 @@ package: python: '' tomli: '>=1.1' tomlkit: '>=0.10.1' - url: https://repo.prefix.dev/conda-forge/noarch/pylint-4.0.6-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pylint-4.0.7-pyhcf101f3_0.conda hash: - md5: ba6813f7d81828b7dcd03248a42d031d - sha256: 5393b20b76361efe49971a0081cad0f4256f875a14fe71b1ed93ba9e0193369c + md5: 7aaab460cb599b2370a782b4eff8127d + sha256: 9c9ba2e6f17193ede911f8c095232a8c5a1edb3cc6cc49d07cfdde0b86e7c97f category: dev optional: true - name: pyparsing @@ -3272,7 +3249,7 @@ package: category: dev optional: true - name: python - version: 3.14.6 + version: 3.14.7 manager: conda platform: linux-64 dependencies: @@ -3280,11 +3257,11 @@ package: bzip2: '>=1.0.8,<2.0a0' ld_impl_linux-64: '>=2.36.1' libexpat: '>=2.8.1,<3.0a0' - libffi: '>=3.5.2,<3.6.0a0' - libgcc: '>=14' + libffi: '>=3.7.0,<3.8.0a0' + libgcc: '>=15' liblzma: '>=5.8.3,<6.0a0' libmpdec: '>=4.0.0,<5.0a0' - libsqlite: '>=3.53.3,<4.0a0' + libsqlite: '>=3.53.4,<4.0a0' libuuid: '>=2.42.2,<3.0a0' libzlib: '>=1.3.2,<2.0a0' ncurses: '>=6.6,<7.0a0' @@ -3295,23 +3272,23 @@ package: tk: '>=8.6.13,<8.7.0a0' tzdata: '' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/python-3.14.6-habeac84_101_cp314.conda + url: https://repo.prefix.dev/conda-forge/linux-64/python-3.14.7-h399a421_100_cp314.conda hash: - md5: 78975a41cf3c525da654f17e35bfca9e - sha256: ee8f2006e1724b1f2e9e0ccc5a7cfdcab973460faa2f63ac1f6e44fdad4c0344 + md5: a9d6f626c591a56d7b7b36d2465f646d + sha256: ee59fa05898243b9a068476f4bed9461abef4487ebcdc094f569c4c47dc4a732 category: main optional: false - name: python - version: 3.14.6 + version: 3.14.7 manager: conda platform: win-64 dependencies: bzip2: '>=1.0.8,<2.0a0' libexpat: '>=2.8.1,<3.0a0' - libffi: '>=3.5.2,<3.6.0a0' + libffi: '>=3.7.0,<3.8.0a0' liblzma: '>=5.8.3,<6.0a0' libmpdec: '>=4.0.0,<5.0a0' - libsqlite: '>=3.53.3,<4.0a0' + libsqlite: '>=3.53.4,<4.0a0' libzlib: '>=1.3.2,<2.0a0' openssl: '>=3.5.7,<4.0a0' pip: '' @@ -3322,10 +3299,10 @@ package: vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/python-3.14.6-h4b44e0e_101_cp314.conda + url: https://repo.prefix.dev/conda-forge/win-64/python-3.14.7-h53f6dd8_100_cp314.conda hash: - md5: 67bbf51f88a2053513d7c78f485f7479 - sha256: 3a9ae901cd853d507d97aa8b72af4b9a572a3f92dcc5bad8a1318f77ff4e0e64 + md5: 99dcbb9c65cb1fb10340bc7f6984ddfa + sha256: 01cd1d39e5a24f029df0a8db0878dd442d552a82f584e18fd2ed366bc881633f category: main optional: false - name: python-dateutil @@ -3443,12 +3420,12 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' - ncurses: '>=6.5,<7.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/readline-8.3-h853b02a_0.conda + libgcc: '>=15' + ncurses: '>=6.6,<7.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/readline-8.3-hd6e31c0_1.conda hash: - md5: d7d95fc8287ea7bf33e0e7116d2b95ec - sha256: 12ffde5a6f958e285aa22c191ca01bbd3d6e710aa852e00618fa6ddc59149002 + md5: 69c01c781e7c8190bbdaf79e3848c5ca + sha256: 01b3fe073a66e321970d09e04b388708f8cbdca5cdfbfcb7c9eeb470ad10383d category: main optional: false - name: requests @@ -3508,17 +3485,17 @@ package: category: dev optional: true - name: s2n - version: 1.7.5 + version: 1.7.6 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' openssl: '>=3.5.7,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/s2n-1.7.5-h7e3ee7f_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/s2n-1.7.6-h7e3ee7f_0.conda hash: - md5: fa1c00d999e83ec20173c9775f71a1f1 - sha256: 7369ac21f3561e2203f5b1600ef0671270057380783ca4b9e15f679ba25db575 + md5: e112cadcd79412d81496e784884bddf0 + sha256: 1e1ccc56fdf3fe82150b4eac1d626c806e612af208fbf40ce3abfe9a2eb2a626 category: main optional: false - name: scipy @@ -3670,29 +3647,29 @@ package: category: dev optional: true - name: sphinx-autodoc-typehints - version: 3.13.0 + version: 3.13.2 manager: conda platform: linux-64 dependencies: python: '>=3.12' sphinx: '>=9.1' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-autodoc-typehints-3.13.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-autodoc-typehints-3.13.2-pyhd8ed1ab_0.conda hash: - md5: e91b69fd604f79f38f8c6cfdbc760755 - sha256: 62930995f2b6520fd14d5ce7c587d7fb5382987a3b7de0bb81e601490af35f50 + md5: 10f7b3850485df2e82af076a365fcfee + sha256: 9fa29cba2bfa3ae46681f7998d0e4a0d679fabda612b47abb5f7ed472f3ff723 category: dev optional: true - name: sphinx-autodoc-typehints - version: 3.13.0 + version: 3.13.2 manager: conda platform: win-64 dependencies: python: '>=3.12' sphinx: '>=9.1' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-autodoc-typehints-3.13.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-autodoc-typehints-3.13.2-pyhd8ed1ab_0.conda hash: - md5: e91b69fd604f79f38f8c6cfdbc760755 - sha256: 62930995f2b6520fd14d5ce7c587d7fb5382987a3b7de0bb81e601490af35f50 + md5: 10f7b3850485df2e82af076a365fcfee + sha256: 9fa29cba2bfa3ae46681f7998d0e4a0d679fabda612b47abb5f7ed472f3ff723 category: dev optional: true - name: sphinx-rtd-theme @@ -3700,11 +3677,11 @@ package: manager: conda platform: linux-64 dependencies: - sphinx_rtd_theme: 3.1.0 - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-rtd-theme-3.1.0-hd8ed1ab_1.conda + sphinx_rtd_theme: ==3.1.0 + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-rtd-theme-3.1.0-h9eada29_2.conda hash: - md5: 0a0c4864848d70ae012c0b3ba074aa46 - sha256: 05fc70e840c819c9755467e1b0386cca4afe84f4151aa446d083a29c81896df8 + md5: ab7ab7348274fc4af1c6bc4961cbf692 + sha256: 22154483c70c02172e032ce46e74f98bff4073030ea63af39f6af4c87528f7cf category: dev optional: true - name: sphinx-rtd-theme @@ -3712,11 +3689,11 @@ package: manager: conda platform: win-64 dependencies: - sphinx_rtd_theme: 3.1.0 - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-rtd-theme-3.1.0-hd8ed1ab_1.conda + sphinx_rtd_theme: ==3.1.0 + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-rtd-theme-3.1.0-h9eada29_2.conda hash: - md5: 0a0c4864848d70ae012c0b3ba074aa46 - sha256: 05fc70e840c819c9755467e1b0386cca4afe84f4151aa446d083a29c81896df8 + md5: ab7ab7348274fc4af1c6bc4961cbf692 + sha256: 22154483c70c02172e032ce46e74f98bff4073030ea63af39f6af4c87528f7cf category: dev optional: true - name: sphinx_rtd_theme @@ -3725,13 +3702,13 @@ package: platform: linux-64 dependencies: docutils: '>0.18,<0.23' - python: '>=3.10' + python: '' sphinx: '>=6,<10' sphinxcontrib-jquery: '>=4,<5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx_rtd_theme-3.1.0-pyha770c72_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx_rtd_theme-3.1.0-pyhcf101f3_2.conda hash: - md5: 14b91f7ff1d73c1b233e25e9fa262e5b - sha256: 3876c2b11360a1ee0f93d1449819c5a8cab8483abfed107a921cc188d3b29b4d + md5: 787507b1d0f5c00c186b2f66adacc3ab + sha256: 3581a8335a0da4de41f4344c4f1113a11fcbbb7933577ace813602e263842b02 category: dev optional: true - name: sphinx_rtd_theme @@ -3740,13 +3717,13 @@ package: platform: win-64 dependencies: docutils: '>0.18,<0.23' - python: '>=3.10' + python: '' sphinx: '>=6,<10' sphinxcontrib-jquery: '>=4,<5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx_rtd_theme-3.1.0-pyha770c72_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx_rtd_theme-3.1.0-pyhcf101f3_2.conda hash: - md5: 14b91f7ff1d73c1b233e25e9fa262e5b - sha256: 3876c2b11360a1ee0f93d1449819c5a8cab8483abfed107a921cc188d3b29b4d + md5: 787507b1d0f5c00c186b2f66adacc3ab + sha256: 3581a8335a0da4de41f4344c4f1113a11fcbbb7933577ace813602e263842b02 category: dev optional: true - name: sphinxcontrib-applehelp @@ -3965,12 +3942,12 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' + libgcc: '>=15' libzlib: '>=1.3.2,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_hd70dff1_3.conda + url: https://repo.prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_h1df4ec4_4.conda hash: - md5: 48a1049e710857572fc2a832aa394d9f - sha256: 43624eab22f5f29df7d6ffe914cf442f28fd559b55b290906255492826e636e8 + md5: 676a2f9b1c4fcf57b70aa5c65f6c60d0 + sha256: a1a241d172c1ccab067ba245206dd048bc3c2d1b84504b53c9468e99adfc16a1 category: main optional: false - name: tk @@ -3981,10 +3958,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/tk-8.6.13-h967ab96_3.conda + url: https://repo.prefix.dev/conda-forge/win-64/tk-8.6.13-h967ab96_4.conda hash: - md5: aaf79e2af50a151fb5b5a3e3f38b7a69 - sha256: 13fa29257d43f8e630a1e591ed77fae9bbbb236b011432f01e2034cf36e6bf03 + md5: dd9eb33c99d352b6356f86964d6040f7 + sha256: f19618a3a82cc483dacf1c70a30367ee7b0c7e71b90f1f80e14feff44fbd3688 category: main optional: false - name: tomli @@ -4060,29 +4037,29 @@ package: category: main optional: false - name: typing-inspection - version: 0.4.2 + version: 0.4.4 manager: conda platform: linux-64 dependencies: python: '' - typing_extensions: '>=4.12.0' - url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.2-pyhcf101f3_2.conda + typing_extensions: '>=4.15.0' + url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.4-pyhcf101f3_0.conda hash: - md5: 53f5409c5cfd6c5a66417d68e3f0a864 - sha256: 8b90d2f19f9458b8c58a55e1fcdc1d90c1603a847a47654d8a454549413ba60a + md5: 880e91eac5d926568ef278e20554148e + sha256: 293c66b208468d186a94ff486c2ffbf67859a2bde8c88e965fc9d06c517191b2 category: main optional: false - name: typing-inspection - version: 0.4.2 + version: 0.4.4 manager: conda platform: win-64 dependencies: python: '' - typing_extensions: '>=4.12.0' - url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.2-pyhcf101f3_2.conda + typing_extensions: '>=4.15.0' + url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.4-pyhcf101f3_0.conda hash: - md5: 53f5409c5cfd6c5a66417d68e3f0a864 - sha256: 8b90d2f19f9458b8c58a55e1fcdc1d90c1603a847a47654d8a454549413ba60a + md5: 880e91eac5d926568ef278e20554148e + sha256: 293c66b208468d186a94ff486c2ffbf67859a2bde8c88e965fc9d06c517191b2 category: main optional: false - name: typing_extensions @@ -4210,36 +4187,36 @@ package: manager: conda platform: win-64 dependencies: - vc14_runtime: '>=14.51.36231' - url: https://repo.prefix.dev/conda-forge/win-64/vc-14.5-h1b7c187_39.conda + vc14_runtime: '>=14.51.36247' + url: https://repo.prefix.dev/conda-forge/win-64/vc-14.5-ha367084_41.conda hash: - md5: 2eacea63f545b97342da520df6854276 - sha256: 17693b60cb54f80c60275f003f3bfc1b128af56dbfd65c4fae37c64eeb755ce1 + md5: aa805b5522c2a98fa286e551a1f48546 + sha256: 35444c55a92e2f7f7ba26bc70f81e56e52344f7d064c0fd4b40a46a58517b79c category: main optional: false - name: vc14_runtime - version: 14.51.36231 + version: 14.51.36247 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' - vcomp14: 14.51.36231 - url: https://repo.prefix.dev/conda-forge/win-64/vc14_runtime-14.51.36231-h1b9f54f_39.conda + vcomp14: 14.51.36247 + url: https://repo.prefix.dev/conda-forge/win-64/vc14_runtime-14.51.36247-habf1de7_41.conda hash: - md5: 06a5bf5a1ca16cce0df6eaa91fc42bc2 - sha256: 8153ed849c92e891eacac0f2f8d7ecb79f9b5fd7f7917fbb896f252a60a40390 + md5: ac5333bb3d429361f23adf704cc49a78 + sha256: 4e4cb599cdc41bf2109d1464c127b5bcbddf548ce3e322e612afb691338b48f8 category: main optional: false - name: vcomp14 - version: 14.51.36231 + version: 14.51.36247 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' - url: https://repo.prefix.dev/conda-forge/win-64/vcomp14-14.51.36231-h1b9f54f_39.conda + url: https://repo.prefix.dev/conda-forge/win-64/vcomp14-14.51.36247-habf1de7_41.conda hash: - md5: 8b53a83fda40ec679e4d63fa32fae989 - sha256: 07fb14713c4bc62e2533a2e23a363abfb0e65650681fba0ae4c840e2219350f3 + md5: 350bb67a5c8e5f1c53347ac544ab6600 + sha256: 731e043390c9457299484d39e427221fc868a9249540a498a5a4f6456c7744d1 category: main optional: false - name: win_inet_pton @@ -4262,10 +4239,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxau-1.0.12-hb03c661_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxau-1.0.12-hb03c661_2.conda hash: - md5: b2895afaf55bf96a8c8282a2e47a5de0 - sha256: 6bc6ab7a90a5d8ac94c7e300cc10beb0500eeba4b99822768ca2f2ef356f731b + md5: f06ef439c280a5f90b8bf62355008dbc + sha256: cbf891f6cc1a859347680af1c8562bc6b033bf182a2a3bb536016932be3206de category: main optional: false - name: xorg-libxau @@ -4276,10 +4253,10 @@ package: libgcc: '>=14' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' ucrt: '>=10.0.20348.0' - url: https://repo.prefix.dev/conda-forge/win-64/xorg-libxau-1.0.12-hba3369d_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/xorg-libxau-1.0.12-hba3369d_2.conda hash: - md5: 8436cab9a76015dfe7208d3c9f97c156 - sha256: 156a583fa43609507146de1c4926172286d92458c307bb90871579601f6bc568 + md5: 87aee04978ab77bf4c0f42b983c216cc + sha256: 892ad69b1a9ecc3903ed5a1b18fa097013eaf462eeed3c6ff31bf5c12e71e84b category: main optional: false - name: xorg-libxdmcp @@ -4289,10 +4266,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb03c661_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb03c661_2.conda hash: - md5: 1dafce8548e38671bea82e3f5c6ce22f - sha256: 25d255fb2eef929d21ff660a0c687d38a6d2ccfbcbf0cc6aa738b12af6e9d142 + md5: 2e66c929f3d879708335b6ea4557c838 + sha256: c50a16c05ccd7fe7dd6d6cfb539f4e9a491d50f9ed7a5c902fec638f7d0d27be category: main optional: false - name: xorg-libxdmcp @@ -4303,10 +4280,10 @@ package: libgcc: '>=14' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' ucrt: '>=10.0.20348.0' - url: https://repo.prefix.dev/conda-forge/win-64/xorg-libxdmcp-1.1.5-hba3369d_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/xorg-libxdmcp-1.1.5-hba3369d_2.conda hash: - md5: a7c03e38aa9c0e84d41881b9236eacfb - sha256: 366b8ae202c3b48958f0b8784bbfdc37243d3ee1b1cd4b8e76c10abe41fa258b + md5: 0e21a45f1bb429b6e35e82631e60554a + sha256: 21b11bb98c41ece4ce6069d86d826b50b3d73020fb631b97e59a0521dd9d08a1 category: main optional: false - name: yaml @@ -4315,11 +4292,11 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/yaml-0.2.5-h280c20c_3.conda + libgcc: '>=15' + url: https://repo.prefix.dev/conda-forge/linux-64/yaml-0.2.5-hebe6cf0_3.conda hash: - md5: a77f85f77be52ff59391544bfe73390a - sha256: 6d9ea2f731e284e9316d95fa61869fe7bbba33df7929f82693c121022810f4ad + md5: e741576fb8f89821ac7c1c537322a33d + sha256: d164dfa75ecd538f6fd68765defcc06aa875bc697b9b215362d79a2a73125dd0 category: dev optional: true - name: yaml @@ -4369,10 +4346,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/zlib-1.3.2-hfd05255_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/zlib-1.3.2-hfd05255_3.conda hash: - md5: 5187ecf958be3c39110fe691cbd6873e - sha256: ef408f85f664a4b9c9dac3cb2e36154d9baa15a88984ea800e11060e0f2394a1 + md5: 945092a9bc1d0f250f7d5ecf51ecd471 + sha256: 5a0b55df66ff07b4342e04967cef69f8bf348f6a0fb1cc1eca741c7b015dfe77 category: main optional: false - name: zlib-ng @@ -4381,12 +4358,12 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' - libstdcxx: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/zlib-ng-2.3.3-hceb46e0_1.conda + libgcc: '>=15' + libstdcxx: '>=15' + url: https://repo.prefix.dev/conda-forge/linux-64/zlib-ng-2.3.3-hce19668_1.conda hash: - md5: 2aadb0d17215603a82a2a6b0afd9a4cb - sha256: ea4e50c465d70236408cb0bfe0115609fd14db1adcd8bd30d8918e0291f8a75f + md5: 1726acec19beeed1c764385cd8622405 + sha256: 8b786bb4380fa69a718b08a400040b865bc9207eda337e0a1955717c3c3a9403 category: main optional: false - name: zlib-ng @@ -4409,11 +4386,11 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb78ec9c_6.conda + libzlib: '>=1.3.2,<2.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb78ec9c_7.conda hash: - md5: 4a13eeac0b5c8e5b8ab496e6c4ddd829 - sha256: 68f0206ca6e98fea941e5717cec780ed2873ffabc0e1ed34428c061e2c6268c7 + md5: aa459086047c0e5e27023ab19f8cb86a + sha256: 47d682b9f6d6ec9eb1a6e6c3e75ea6273e899e78fb7fc59f81d39745009fbc60 category: main optional: false - name: zstd @@ -4421,54 +4398,54 @@ package: manager: conda platform: win-64 dependencies: - libzlib: '>=1.3.1,<2.0a0' + libzlib: '>=1.3.2,<2.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/zstd-1.5.7-h534d264_6.conda + url: https://repo.prefix.dev/conda-forge/win-64/zstd-1.5.7-h534d264_7.conda hash: - md5: 053b84beec00b71ea8ff7a4f84b55207 - sha256: 368d8628424966fd8f9c8018326a9c779e06913dd39e646cf331226acc90e5b2 + md5: e4ac308c39d6d0e131154976da67cf3b + sha256: ca7daae4f218a11fab82cc2857f0ea518ec3f46acec60490485347a4c22c6b3e category: main optional: false - name: geoapps-utils - version: 0.7.1.dev85+89cd6f5 + version: 0.7.1.dev95+2e758b9 manager: pip platform: linux-64 dependencies: - geoh5py: 0.13.1rc2.dev168+e51a7038 + geoh5py: 0.14.0a1.dev264+6c850c89 matplotlib: '>=3.10.0,<3.11.0' numpy: '>=2.4.2,<2.5.0' pydantic: '>=2.12.0,<2.13.0' scipy: '>=1.17.0,<1.18.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@2e758b9671671160c76d182b72ae18ee735bd214 hash: - sha256: 89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 + sha256: 2e758b9671671160c76d182b72ae18ee735bd214 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@2e758b9671671160c76d182b72ae18ee735bd214 category: main optional: false - name: geoapps-utils - version: 0.7.1.dev85+89cd6f5 + version: 0.7.1.dev95+2e758b9 manager: pip platform: win-64 dependencies: - geoh5py: 0.13.1rc2.dev168+e51a7038 + geoh5py: 0.14.0a1.dev264+6c850c89 matplotlib: '>=3.10.0,<3.11.0' numpy: '>=2.4.2,<2.5.0' pydantic: '>=2.12.0,<2.13.0' scipy: '>=1.17.0,<1.18.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@2e758b9671671160c76d182b72ae18ee735bd214 hash: - sha256: 89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 + sha256: 2e758b9671671160c76d182b72ae18ee735bd214 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@89cd6f5bae2b5aa9bfd6fc6e6bdd3f5db147f142 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@2e758b9671671160c76d182b72ae18ee735bd214 category: main optional: false - name: geoh5py - version: 0.13.1rc2.dev168+e51a7038 + version: 0.14.0a1.dev264+6c850c89 manager: pip platform: linux-64 dependencies: @@ -4477,16 +4454,16 @@ package: pillow: '>=12.2.0,<12.3.0' psutil: '>=7.2.2,<7.3.0' pydantic: '>=2.12.0,<2.13.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@e51a703816e712f3c66147cb78fd16808b520f75 + url: git+https://github.com/MiraGeoscience/geoh5py.git@6c850c89972154a08c2ee39ad2dd62e8d9c3afef hash: - sha256: e51a703816e712f3c66147cb78fd16808b520f75 + sha256: 6c850c89972154a08c2ee39ad2dd62e8d9c3afef source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@e51a703816e712f3c66147cb78fd16808b520f75 + url: git+https://github.com/MiraGeoscience/geoh5py.git@6c850c89972154a08c2ee39ad2dd62e8d9c3afef category: main optional: false - name: geoh5py - version: 0.13.1rc2.dev168+e51a7038 + version: 0.14.0a1.dev264+6c850c89 manager: pip platform: win-64 dependencies: @@ -4495,11 +4472,11 @@ package: pillow: '>=12.2.0,<12.3.0' psutil: '>=7.2.2,<7.3.0' pydantic: '>=2.12.0,<2.13.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@e51a703816e712f3c66147cb78fd16808b520f75 + url: git+https://github.com/MiraGeoscience/geoh5py.git@6c850c89972154a08c2ee39ad2dd62e8d9c3afef hash: - sha256: e51a703816e712f3c66147cb78fd16808b520f75 + sha256: 6c850c89972154a08c2ee39ad2dd62e8d9c3afef source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@e51a703816e712f3c66147cb78fd16808b520f75 + url: git+https://github.com/MiraGeoscience/geoh5py.git@6c850c89972154a08c2ee39ad2dd62e8d9c3afef category: main optional: false diff --git a/pyproject.toml b/pyproject.toml index d7f4d9c..1cb3f9c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -72,10 +72,10 @@ scipy = "~1.17.0" ## pip dependencies from Git repositories #---------------------------------------- # geoh5py = { version = ">=0.14.0a, 0.14.*", source = "pypi", allow-prereleases = true } -geoh5py = { git = "https://github.com/MiraGeoscience/geoh5py.git", rev = "feature/uijson" } +geoh5py = { git = "https://github.com/MiraGeoscience/geoh5py.git", rev = "develop" } # geoapps-utils = { version = ">=0.8.0a, 0.8.*", source = "pypi", allow-prereleases = true } -geoapps-utils = { git = "https://github.com/MiraGeoscience/geoapps-utils.git", rev = "feature/uijson" } +geoapps-utils = { git = "https://github.com/MiraGeoscience/geoapps-utils.git", rev = "develop" } ## about pip dependencies # to be specified to work with conda-lock