From bc24eaf655df4f8f960ab14ddd014ffd75d36eac Mon Sep 17 00:00:00 2001 From: domfournier Date: Tue, 31 Mar 2026 10:39:44 -0700 Subject: [PATCH 1/4] Remove duplicate octree_extent function. Update extent for ndarray --- simpeg_drivers/components/topography.py | 4 +-- simpeg_drivers/utils/utils.py | 37 ++++--------------------- tests/utils_test.py | 31 ++------------------- 3 files changed, 9 insertions(+), 63 deletions(-) diff --git a/simpeg_drivers/components/topography.py b/simpeg_drivers/components/topography.py index 4e8e8125..a69a1d7c 100644 --- a/simpeg_drivers/components/topography.py +++ b/simpeg_drivers/components/topography.py @@ -39,7 +39,6 @@ get_containing_cells, get_neighbouring_cells, mask_vertices_and_cells, - octree_extents, ) @@ -113,9 +112,8 @@ def active_cells(self, mesh: InversionMesh, data: InversionData) -> np.ndarray: self.params.active_cells.topography_object, "cells", None ) else: - extent = octree_extents(mesh.entity)[:4] vertices, cells = mask_vertices_and_cells( - extent.ravel(order="F"), + mesh.entity.extent, self.locations, getattr(self.params.active_cells.topography_object, "cells", None), ) diff --git a/simpeg_drivers/utils/utils.py b/simpeg_drivers/utils/utils.py index eb117606..319f9fdb 100644 --- a/simpeg_drivers/utils/utils.py +++ b/simpeg_drivers/utils/utils.py @@ -12,7 +12,6 @@ from __future__ import annotations import multiprocessing -from collections.abc import Sequence from copy import deepcopy from pathlib import Path from typing import TYPE_CHECKING @@ -34,7 +33,7 @@ ) from geoh5py.objects.surveys.electromagnetics.base import LargeLoopGroundEMSurvey from geoh5py.shared import INTEGER_NDV -from geoh5py.shared.utils import fetch_active_workspace, stringify +from geoh5py.shared.utils import fetch_active_workspace, mask_by_extent, stringify from geoh5py.ui_json import InputFile from grid_apps.utils import octree_2_treemesh from scipy.interpolate import interp1d @@ -48,46 +47,20 @@ from simpeg_drivers.driver import InversionDriver -def octree_extents(octree: Octree) -> np.ndarray: - """ - Get the true extents of an octree (min/max of the perimeter). - - The octree.extents property returns min/max of the centroids - - :param octree: Octree mesh object. - - :returns: Array of [xmin, xmax, ymin, ymax]. - """ - - origin = np.array(list(octree.origin.tolist())) - span = np.array( - [ - getattr(octree, f"{axis}_cell_size") * getattr(octree, f"{axis}_count") - for axis in "uvw" - ] - ) - - return np.stack([origin, origin + span]).flatten(order="F") - - def mask_vertices_and_cells( - extent: Sequence, vertices: np.ndarray, cells: np.ndarray | None + extent: np.ndarray, vertices: np.ndarray, cells: np.ndarray | None ) -> tuple[np.ndarray, np.ndarray]: """ Mask vertices and remove cells whose vertices are all outside the extent. - :param extent: Array-like object of [xmin, xmax, ymin, ymax]. + :param extent: Array-like object of [[xmin, ymin], [xmax, ymax]]. :param vertices: Array of shape (n_vertices, 3) containing the x, y, z coordinates. :param cells: Array of shape (n_cells, 3) containing the indices of the vertices that make up each cell. """ - vertex_mask = ( - (vertices[:, 0] >= extent[0]) - & (vertices[:, 0] <= extent[1]) - & (vertices[:, 1] >= extent[2]) - & (vertices[:, 1] <= extent[3]) - ) + vertex_mask = mask_by_extent(vertices, extent=extent) + if cells is None: return vertices[vertex_mask], None diff --git a/tests/utils_test.py b/tests/utils_test.py index fdfb8014..c58e3b00 100644 --- a/tests/utils_test.py +++ b/tests/utils_test.py @@ -9,33 +9,8 @@ # ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' import numpy as np -from geoh5py import Workspace -from geoh5py.objects import Octree, Points -from grid_apps.octree_creation.driver import OctreeDriver -from grid_apps.octree_creation.options import OctreeOptions, RefinementOptions -from simpeg_drivers.utils.utils import mask_vertices_and_cells, octree_extents - - -def test_octree_extents(tmp_path): - with Workspace(tmp_path / "test.geoh5") as ws: - X, Y = np.meshgrid(np.linspace(0, 1000, 51), np.linspace(0, 1000, 51)) - Z = np.zeros_like(X) - vertices = np.column_stack([X.ravel(), Y.ravel(), Z.ravel()]) - pts = Points.create(ws, name="points", vertices=vertices) - options = OctreeOptions( - geoh5=ws, - objects=pts, - refinements=[ - RefinementOptions( - refinement_object=pts, levels=[4, 2], horizon=False, distance=100 - ), - ], - ) - octree = OctreeDriver.octree_from_params(options) - - extents = octree_extents(octree) - assert np.allclose(extents, [-1112.5, 2087.5, -1112.5, 2087.5, -1062.5, 537.5]) +from simpeg_drivers.utils.utils import mask_vertices_and_cells def test_mask_vertices_and_cells(): @@ -54,11 +29,11 @@ def test_mask_vertices_and_cells(): [7, 5, 8], ] ) - extent = [0.5, 2, 0, 2, 0, 1] + extent = np.vstack([[0.5, 0, 0], [2, 2, 1]]) masked_vertices, masked_cells = mask_vertices_and_cells(extent, vertices, cells) assert len(masked_vertices) == len(vertices) assert len(masked_cells) == len(cells) - extent = [1.5, 2, 0, 2, 0, 1] + extent = np.vstack([[1.5, 0, 0], [2, 2, 1]]) masked_vertices, masked_cells = mask_vertices_and_cells(extent, vertices, cells) assert len(masked_vertices) == 6 assert len(masked_cells) == 4 From 38f3042bf924db159ae965fba2d36fd5de8536e2 Mon Sep 17 00:00:00 2001 From: domfournier Date: Wed, 1 Apr 2026 07:54:24 -0700 Subject: [PATCH 2/4] Re-lock --- .../py-3.12-linux-64-dev.conda.lock.yml | 36 +- environments/py-3.12-linux-64.conda.lock.yml | 28 +- .../py-3.12-win-64-dev.conda.lock.yml | 33 +- environments/py-3.12-win-64.conda.lock.yml | 25 +- .../py-3.13-linux-64-dev.conda.lock.yml | 36 +- environments/py-3.13-linux-64.conda.lock.yml | 28 +- .../py-3.13-win-64-dev.conda.lock.yml | 33 +- environments/py-3.13-win-64.conda.lock.yml | 25 +- .../py-3.14-linux-64-dev.conda.lock.yml | 36 +- environments/py-3.14-linux-64.conda.lock.yml | 28 +- .../py-3.14-win-64-dev.conda.lock.yml | 33 +- environments/py-3.14-win-64.conda.lock.yml | 25 +- py-3.12.conda-lock.yml | 530 ++++++++++++++---- py-3.13.conda-lock.yml | 530 ++++++++++++++---- py-3.14.conda-lock.yml | 530 ++++++++++++++---- 15 files changed, 1506 insertions(+), 450 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 fa4ae248..b416da76 100644 --- a/environments/py-3.12-linux-64-dev.conda.lock.yml +++ b/environments/py-3.12-linux-64-dev.conda.lock.yml @@ -19,6 +19,15 @@ dependencies: - asttokens=3.0.1=pyhd8ed1ab_0 - async-lru=2.3.0=pyhcf101f3_0 - attrs=26.1.0=pyhcf101f3_0 + - aws-c-auth=0.10.1=h2d2dd48_2 + - 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.12=h4bacb7b_1 + - aws-c-io=0.26.3=hc87160b_0 + - aws-c-s3=0.11.5=h6d69fc9_5 + - aws-c-sdkutils=0.2.4=h8b1a151_4 + - aws-checksums=0.2.10=h8b1a151_0 - babel=2.18.0=pyhcf101f3_1 - backports.zstd=1.3.0=py312h90b7ffd_0 - beautifulsoup4=4.14.3=pyha770c72_0 @@ -61,12 +70,12 @@ dependencies: - fonttools=4.62.0=py312h8a5da7c_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.14.3=ha770c72_0 - - fsspec=2026.2.0=pyhd8ed1ab_0 + - fsspec=2026.3.0=pyhd8ed1ab_0 - geoana=0.8.1=np2py312h2a48985_0 - h11=0.16.0=pyhcf101f3_1 - h2=4.3.0=pyhcf101f3_0 - - h5py=3.16.0=nompi_py312ha4f8f14_100 - - hdf5=1.14.6=nompi_h19486de_108 + - h5py=3.16.0=nompi_py312ha829cd9_101 + - hdf5=2.1.0=nompi_hd4fcb43_103 - hpack=4.1.0=pyhd8ed1ab_0 - httpcore=1.0.9=pyh29332c3_0 - httpx=0.28.1=pyhd8ed1ab_0 @@ -78,7 +87,7 @@ dependencies: - importlib_resources=6.5.2=pyhd8ed1ab_0 - iniconfig=2.3.0=pyhd8ed1ab_0 - ipykernel=7.2.0=pyha191276_1 - - ipython=9.11.0=pyhecfbec7_0 + - ipython=9.12.0=pyhecfbec7_0 - ipython_genutils=0.2.0=pyhd8ed1ab_2 - ipython_pygments_lexers=1.1.1=pyhd8ed1ab_0 - ipywidgets=7.8.5=pyhd8ed1ab_0 @@ -87,7 +96,7 @@ dependencies: - jedi=0.19.2=pyhd8ed1ab_1 - jinja2=3.1.6=pyhcf101f3_1 - joblib=1.5.3=pyhd8ed1ab_0 - - json5=0.13.0=pyhd8ed1ab_0 + - json5=0.14.0=pyhd8ed1ab_0 - jsonpointer=3.1.1=pyhcf101f3_0 - jsonschema=4.26.0=pyhcf101f3_0 - jsonschema-specifications=2025.9.1=pyhcf101f3_0 @@ -122,7 +131,7 @@ dependencies: - libdlf=0.3.0=pyhd8ed1ab_1 - libedit=3.1.20250104=pl5321h7949ede_0 - libev=4.33=hd590300_2 - - libexpat=2.7.4=hecca717_0 + - libexpat=2.7.5=hecca717_0 - libffi=3.5.2=h3435931_0 - libfreetype=2.14.3=ha770c72_0 - libfreetype6=2.14.3=h73754d4_0 @@ -146,7 +155,7 @@ dependencies: - libstdcxx=15.2.0=h934c35e_18 - libstdcxx-ng=15.2.0=hdf11a46_18 - libtiff=4.7.1=h9d88235_1 - - libuuid=2.41.3=h5347b49_0 + - libuuid=2.41.4=h5347b49_0 - libuv=1.51.0=hb03c661_1 - libwebp-base=1.6.0=hd42ef1d_0 - libxcb=1.17.0=h8a09558_0 @@ -154,7 +163,7 @@ dependencies: - libxml2=2.15.1=h26afc86_0 - libxml2-16=2.15.1=ha9997c6_0 - libzlib=1.3.2=h25fd6f3_2 - - llvm-openmp=22.1.1=h4922eb0_0 + - llvm-openmp=22.1.2=h4922eb0_0 - locket=1.0.0=pyhd8ed1ab_0 - markdown-it-py=4.0.0=pyhd8ed1ab_0 - markupsafe=3.0.3=py312h8a5da7c_1 @@ -187,7 +196,7 @@ dependencies: - openssl=3.6.1=h35e630c_1 - overrides=7.7.0=pyhd8ed1ab_1 - packaging=26.0=pyhcf101f3_0 - - pandas=3.0.1=py312h8ecdadd_0 + - pandas=3.0.2=py312h8ecdadd_0 - pandoc=3.9.0.2=ha770c72_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.6=pyhcf101f3_0 @@ -207,7 +216,7 @@ dependencies: - pydantic=2.12.5=pyhcf101f3_1 - pydantic-core=2.41.5=py312h868fb18_1 - pydiso=0.2.0=np2py312h1cfd70e_1 - - pygments=2.19.2=pyhd8ed1ab_0 + - pygments=2.20.0=pyhd8ed1ab_0 - pylint=4.0.5=pyhcf101f3_0 - pymatsolver=0.3.1=pyh48887ae_201 - pyparsing=3.3.2=pyhcf101f3_0 @@ -228,12 +237,13 @@ dependencies: - readline=8.3=h853b02a_0 - readthedocs-sphinx-ext=2.2.5=pyhd8ed1ab_1 - referencing=0.37.0=pyhcf101f3_0 - - requests=2.33.0=pyhcf101f3_0 + - requests=2.33.1=pyhcf101f3_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_1 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - rfc3987-syntax=1.1.0=pyhe01879c_1 - rpds-py=0.30.0=py312h868fb18_0 - rtree=1.4.1=pyh11ca60a_0 + - s2n=1.7.1=h1cbb8d7_1 - scikit-learn=1.8.0=np2py312h3226591_1 - scipy=1.17.1=py312h54fa4ab_0 - send2trash=2.1.0=pyha191276_1 @@ -281,7 +291,7 @@ dependencies: - wrapt=2.1.2=py312h4c3975b_0 - xorg-libxau=1.0.12=hb03c661_1 - xorg-libxdmcp=1.1.5=hb03c661_1 - - xyzservices=2025.11.0=pyhd8ed1ab_0 + - xyzservices=2026.3.0=pyhd8ed1ab_0 - yaml=0.2.5=h280c20c_3 - zarr=2.14.2=pyhd8ed1ab_0 - zeromq=4.3.5=h41580af_10 @@ -292,7 +302,7 @@ dependencies: - zstd=1.5.7=hb78ec9c_6 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@eb0474175000819e93d8dc701ed0fd6101c44451 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@a4d826715e5f529242e2c7eac2805e05e1ec3027 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@f5eca3735bbca573f4cac3925c6f4c0c341d8e28 - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@0e66e6b7a44ede34563da6a77ccd87a4cc7b5185 - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f7dd0d37aac285dd9ece26396ee39ae72bd6d18d diff --git a/environments/py-3.12-linux-64.conda.lock.yml b/environments/py-3.12-linux-64.conda.lock.yml index 6f60a504..56d5584e 100644 --- a/environments/py-3.12-linux-64.conda.lock.yml +++ b/environments/py-3.12-linux-64.conda.lock.yml @@ -9,6 +9,15 @@ dependencies: - _openmp_mutex=4.5=7_kmp_llvm - annotated-types=0.7.0=pyhd8ed1ab_1 - asciitree=0.3.3=py_2 + - aws-c-auth=0.10.1=h2d2dd48_2 + - 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.12=h4bacb7b_1 + - aws-c-io=0.26.3=hc87160b_0 + - aws-c-s3=0.11.5=h6d69fc9_5 + - aws-c-sdkutils=0.2.4=h8b1a151_4 + - aws-checksums=0.2.10=h8b1a151_0 - backports.zstd=1.3.0=py312h90b7ffd_0 - bokeh=3.6.3=pyhd8ed1ab_0 - brotli=1.2.0=hed03a55_1 @@ -32,11 +41,11 @@ dependencies: - fasteners=0.19=pyhd8ed1ab_1 - fonttools=4.62.0=py312h8a5da7c_0 - freetype=2.14.3=ha770c72_0 - - fsspec=2026.2.0=pyhd8ed1ab_0 + - fsspec=2026.3.0=pyhd8ed1ab_0 - geoana=0.8.1=np2py312h2a48985_0 - h2=4.3.0=pyhcf101f3_0 - - h5py=3.16.0=nompi_py312ha4f8f14_100 - - hdf5=1.14.6=nompi_h19486de_108 + - h5py=3.16.0=nompi_py312ha829cd9_101 + - hdf5=2.1.0=nompi_hd4fcb43_103 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - icu=75.1=he02047a_0 @@ -60,7 +69,7 @@ dependencies: - libdlf=0.3.0=pyhd8ed1ab_1 - libedit=3.1.20250104=pl5321h7949ede_0 - libev=4.33=hd590300_2 - - libexpat=2.7.4=hecca717_0 + - libexpat=2.7.5=hecca717_0 - libffi=3.5.2=h3435931_0 - libfreetype=2.14.3=ha770c72_0 - libfreetype6=2.14.3=h73754d4_0 @@ -83,14 +92,14 @@ dependencies: - libstdcxx=15.2.0=h934c35e_18 - libstdcxx-ng=15.2.0=hdf11a46_18 - libtiff=4.7.1=h9d88235_1 - - libuuid=2.41.3=h5347b49_0 + - libuuid=2.41.4=h5347b49_0 - libwebp-base=1.6.0=hd42ef1d_0 - libxcb=1.17.0=h8a09558_0 - libxcrypt=4.4.36=hd590300_1 - libxml2=2.15.1=h26afc86_0 - libxml2-16=2.15.1=ha9997c6_0 - libzlib=1.3.2=h25fd6f3_2 - - llvm-openmp=22.1.1=h4922eb0_0 + - llvm-openmp=22.1.2=h4922eb0_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.3=py312h8a5da7c_1 - matplotlib-base=3.10.8=py312he3d6523_0 @@ -107,7 +116,7 @@ dependencies: - openpyxl=3.1.5=py312h7f6eeab_3 - openssl=3.6.1=h35e630c_1 - packaging=26.0=pyhcf101f3_0 - - pandas=3.0.1=py312h8ecdadd_0 + - pandas=3.0.2=py312h8ecdadd_0 - partd=1.4.2=pyhd8ed1ab_0 - pillow=12.1.1=py312h50c33e8_0 - pip=26.0.1=pyh8b19718_0 @@ -128,6 +137,7 @@ dependencies: - qhull=2020.2=h434a139_5 - readline=8.3=h853b02a_0 - rtree=1.4.1=pyh11ca60a_0 + - s2n=1.7.1=h1cbb8d7_1 - scikit-learn=1.8.0=np2py312h3226591_1 - scipy=1.17.1=py312h54fa4ab_0 - setuptools=82.0.1=pyh332efcf_0 @@ -151,7 +161,7 @@ dependencies: - wrapt=2.1.2=py312h4c3975b_0 - xorg-libxau=1.0.12=hb03c661_1 - xorg-libxdmcp=1.1.5=hb03c661_1 - - xyzservices=2025.11.0=pyhd8ed1ab_0 + - xyzservices=2026.3.0=pyhd8ed1ab_0 - yaml=0.2.5=h280c20c_3 - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 @@ -160,7 +170,7 @@ dependencies: - zstd=1.5.7=hb78ec9c_6 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@eb0474175000819e93d8dc701ed0fd6101c44451 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@a4d826715e5f529242e2c7eac2805e05e1ec3027 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@f5eca3735bbca573f4cac3925c6f4c0c341d8e28 - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@0e66e6b7a44ede34563da6a77ccd87a4cc7b5185 - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f7dd0d37aac285dd9ece26396ee39ae72bd6d18d 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 5772313d..97a301aa 100644 --- a/environments/py-3.12-win-64-dev.conda.lock.yml +++ b/environments/py-3.12-win-64-dev.conda.lock.yml @@ -19,6 +19,15 @@ dependencies: - asttokens=3.0.1=pyhd8ed1ab_0 - async-lru=2.3.0=pyhcf101f3_0 - attrs=26.1.0=pyhcf101f3_0 + - aws-c-auth=0.10.1=h5d51246_2 + - 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.12=h612f3e8_1 + - aws-c-io=0.26.3=h0d5b9f9_0 + - aws-c-s3=0.11.5=h87bd87b_5 + - aws-c-sdkutils=0.2.4=hcb3a2da_4 + - aws-checksums=0.2.10=hcb3a2da_0 - babel=2.18.0=pyhcf101f3_1 - backports.zstd=1.3.0=py312h06d0912_0 - beautifulsoup4=4.14.3=pyha770c72_0 @@ -60,12 +69,12 @@ dependencies: - fonttools=4.62.0=py312h05f76fc_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.14.3=h57928b3_0 - - fsspec=2026.2.0=pyhd8ed1ab_0 + - fsspec=2026.3.0=pyhd8ed1ab_0 - geoana=0.8.1=np2py312h7c90ba1_0 - h11=0.16.0=pyhcf101f3_1 - h2=4.3.0=pyhcf101f3_0 - - h5py=3.16.0=nompi_py312h03cd2ba_100 - - hdf5=1.14.6=nompi_hae35d4c_108 + - h5py=3.16.0=nompi_py312h5ddec8c_101 + - hdf5=2.1.0=nompi_hd96b29f_103 - hpack=4.1.0=pyhd8ed1ab_0 - httpcore=1.0.9=pyh29332c3_0 - httpx=0.28.1=pyhd8ed1ab_0 @@ -76,7 +85,7 @@ dependencies: - importlib_resources=6.5.2=pyhd8ed1ab_0 - iniconfig=2.3.0=pyhd8ed1ab_0 - ipykernel=7.2.0=pyh6dadd2b_1 - - ipython=9.11.0=pyhccfa634_0 + - ipython=9.12.0=pyhccfa634_0 - ipython_genutils=0.2.0=pyhd8ed1ab_2 - ipython_pygments_lexers=1.1.1=pyhd8ed1ab_0 - ipywidgets=7.8.5=pyhd8ed1ab_0 @@ -85,7 +94,7 @@ dependencies: - jedi=0.19.2=pyhd8ed1ab_1 - jinja2=3.1.6=pyhcf101f3_1 - joblib=1.5.3=pyhd8ed1ab_0 - - json5=0.13.0=pyhd8ed1ab_0 + - json5=0.14.0=pyhd8ed1ab_0 - jsonpointer=3.1.1=pyhcf101f3_0 - jsonschema=4.26.0=pyhcf101f3_0 - jsonschema-specifications=2025.9.1=pyhcf101f3_0 @@ -116,7 +125,7 @@ dependencies: - libcurl=8.19.0=h8206538_0 - libdeflate=1.25=h51727cc_0 - libdlf=0.3.0=pyhd8ed1ab_1 - - libexpat=2.7.4=hac47afa_0 + - libexpat=2.7.5=hac47afa_0 - libffi=3.5.2=h3d046cb_0 - libfreetype=2.14.3=h57928b3_0 - libfreetype6=2.14.3=hdbac1cb_0 @@ -139,7 +148,7 @@ dependencies: - libxml2=2.15.2=h5d26750_0 - libxml2-16=2.15.2=h692994f_0 - libzlib=1.3.2=hfd05255_2 - - llvm-openmp=22.1.1=h4fa8253_0 + - llvm-openmp=22.1.2=h4fa8253_0 - locket=1.0.0=pyhd8ed1ab_0 - markdown-it-py=4.0.0=pyhd8ed1ab_0 - markupsafe=3.0.3=py312h05f76fc_1 @@ -169,7 +178,7 @@ dependencies: - openssl=3.6.1=hf411b9b_1 - overrides=7.7.0=pyhd8ed1ab_1 - packaging=26.0=pyhcf101f3_0 - - pandas=3.0.1=py312h95189c4_0 + - pandas=3.0.2=py312h95189c4_0 - pandoc=3.9.0.2=h57928b3_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.6=pyhcf101f3_0 @@ -187,7 +196,7 @@ dependencies: - pydantic=2.12.5=pyhcf101f3_1 - pydantic-core=2.41.5=py312hdabe01f_1 - pydiso=0.2.0=np2py312hd8dafd6_1 - - pygments=2.19.2=pyhd8ed1ab_0 + - pygments=2.20.0=pyhd8ed1ab_0 - pylint=4.0.5=pyhcf101f3_0 - pymatsolver=0.3.1=pyh48887ae_201 - pyparsing=3.3.2=pyhcf101f3_0 @@ -209,7 +218,7 @@ dependencies: - qhull=2020.2=hc790b64_5 - readthedocs-sphinx-ext=2.2.5=pyhd8ed1ab_1 - referencing=0.37.0=pyhcf101f3_0 - - requests=2.33.0=pyhcf101f3_0 + - requests=2.33.1=pyhcf101f3_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_1 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - rfc3987-syntax=1.1.0=pyhe01879c_1 @@ -268,7 +277,7 @@ dependencies: - wrapt=2.1.2=py312he06e257_0 - xorg-libxau=1.0.12=hba3369d_1 - xorg-libxdmcp=1.1.5=hba3369d_1 - - xyzservices=2025.11.0=pyhd8ed1ab_0 + - xyzservices=2026.3.0=pyhd8ed1ab_0 - yaml=0.2.5=h6a83c73_3 - zarr=2.14.2=pyhd8ed1ab_0 - zeromq=4.3.5=h507cc87_10 @@ -278,7 +287,7 @@ dependencies: - zstd=1.5.7=h534d264_6 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@eb0474175000819e93d8dc701ed0fd6101c44451 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@a4d826715e5f529242e2c7eac2805e05e1ec3027 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@f5eca3735bbca573f4cac3925c6f4c0c341d8e28 - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@0e66e6b7a44ede34563da6a77ccd87a4cc7b5185 - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f7dd0d37aac285dd9ece26396ee39ae72bd6d18d diff --git a/environments/py-3.12-win-64.conda.lock.yml b/environments/py-3.12-win-64.conda.lock.yml index fbf26520..e5064bd7 100644 --- a/environments/py-3.12-win-64.conda.lock.yml +++ b/environments/py-3.12-win-64.conda.lock.yml @@ -9,6 +9,15 @@ dependencies: - _openmp_mutex=4.5=20_gnu - annotated-types=0.7.0=pyhd8ed1ab_1 - asciitree=0.3.3=py_2 + - aws-c-auth=0.10.1=h5d51246_2 + - 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.12=h612f3e8_1 + - aws-c-io=0.26.3=h0d5b9f9_0 + - aws-c-s3=0.11.5=h87bd87b_5 + - aws-c-sdkutils=0.2.4=hcb3a2da_4 + - aws-checksums=0.2.10=hcb3a2da_0 - backports.zstd=1.3.0=py312h06d0912_0 - bokeh=3.6.3=pyhd8ed1ab_0 - brotli=1.2.0=h2d644bc_1 @@ -32,11 +41,11 @@ dependencies: - fasteners=0.19=pyhd8ed1ab_1 - fonttools=4.62.0=py312h05f76fc_0 - freetype=2.14.3=h57928b3_0 - - fsspec=2026.2.0=pyhd8ed1ab_0 + - fsspec=2026.3.0=pyhd8ed1ab_0 - geoana=0.8.1=np2py312h7c90ba1_0 - h2=4.3.0=pyhcf101f3_0 - - h5py=3.16.0=nompi_py312h03cd2ba_100 - - hdf5=1.14.6=nompi_hae35d4c_108 + - h5py=3.16.0=nompi_py312h5ddec8c_101 + - hdf5=2.1.0=nompi_hd96b29f_103 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - importlib-metadata=8.8.0=pyhcf101f3_0 @@ -55,7 +64,7 @@ dependencies: - libcurl=8.19.0=h8206538_0 - libdeflate=1.25=h51727cc_0 - libdlf=0.3.0=pyhd8ed1ab_1 - - libexpat=2.7.4=hac47afa_0 + - libexpat=2.7.5=hac47afa_0 - libffi=3.5.2=h3d046cb_0 - libfreetype=2.14.3=h57928b3_0 - libfreetype6=2.14.3=hdbac1cb_0 @@ -77,7 +86,7 @@ dependencies: - libxml2=2.15.2=h5d26750_0 - libxml2-16=2.15.2=h692994f_0 - libzlib=1.3.2=hfd05255_2 - - llvm-openmp=22.1.1=h4fa8253_0 + - llvm-openmp=22.1.2=h4fa8253_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.3=py312h05f76fc_1 - matplotlib-base=3.10.8=py312h0ebf65c_0 @@ -91,7 +100,7 @@ dependencies: - openpyxl=3.1.5=py312h83acffa_3 - openssl=3.6.1=hf411b9b_1 - packaging=26.0=pyhcf101f3_0 - - pandas=3.0.1=py312h95189c4_0 + - pandas=3.0.2=py312h95189c4_0 - partd=1.4.2=pyhd8ed1ab_0 - pillow=12.1.1=py312h31f0997_0 - pip=26.0.1=pyh8b19718_0 @@ -139,7 +148,7 @@ dependencies: - wrapt=2.1.2=py312he06e257_0 - xorg-libxau=1.0.12=hba3369d_1 - xorg-libxdmcp=1.1.5=hba3369d_1 - - xyzservices=2025.11.0=pyhd8ed1ab_0 + - xyzservices=2026.3.0=pyhd8ed1ab_0 - yaml=0.2.5=h6a83c73_3 - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 @@ -148,7 +157,7 @@ dependencies: - zstd=1.5.7=h534d264_6 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@eb0474175000819e93d8dc701ed0fd6101c44451 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@a4d826715e5f529242e2c7eac2805e05e1ec3027 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@f5eca3735bbca573f4cac3925c6f4c0c341d8e28 - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@0e66e6b7a44ede34563da6a77ccd87a4cc7b5185 - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f7dd0d37aac285dd9ece26396ee39ae72bd6d18d 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 b1a50a88..589e2e1e 100644 --- a/environments/py-3.13-linux-64-dev.conda.lock.yml +++ b/environments/py-3.13-linux-64-dev.conda.lock.yml @@ -19,6 +19,15 @@ dependencies: - asttokens=3.0.1=pyhd8ed1ab_0 - async-lru=2.3.0=pyhcf101f3_0 - attrs=26.1.0=pyhcf101f3_0 + - aws-c-auth=0.10.1=h2d2dd48_2 + - 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.12=h4bacb7b_1 + - aws-c-io=0.26.3=hc87160b_0 + - aws-c-s3=0.11.5=h6d69fc9_5 + - aws-c-sdkutils=0.2.4=h8b1a151_4 + - aws-checksums=0.2.10=h8b1a151_0 - babel=2.18.0=pyhcf101f3_1 - backports.zstd=1.3.0=py313h18e8e13_0 - beautifulsoup4=4.14.3=pyha770c72_0 @@ -61,12 +70,12 @@ dependencies: - fonttools=4.62.0=py313h3dea7bd_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.14.3=ha770c72_0 - - fsspec=2026.2.0=pyhd8ed1ab_0 + - fsspec=2026.3.0=pyhd8ed1ab_0 - geoana=0.8.1=np2py313h0f78c12_0 - h11=0.16.0=pyhcf101f3_1 - h2=4.3.0=pyhcf101f3_0 - - h5py=3.16.0=nompi_py313h253c126_100 - - hdf5=1.14.6=nompi_h19486de_108 + - h5py=3.16.0=nompi_py313h22c32d4_101 + - hdf5=2.1.0=nompi_hd4fcb43_103 - hpack=4.1.0=pyhd8ed1ab_0 - httpcore=1.0.9=pyh29332c3_0 - httpx=0.28.1=pyhd8ed1ab_0 @@ -78,7 +87,7 @@ dependencies: - importlib_resources=6.5.2=pyhd8ed1ab_0 - iniconfig=2.3.0=pyhd8ed1ab_0 - ipykernel=7.2.0=pyha191276_1 - - ipython=9.11.0=pyhecfbec7_0 + - ipython=9.12.0=pyhecfbec7_0 - ipython_genutils=0.2.0=pyhd8ed1ab_2 - ipython_pygments_lexers=1.1.1=pyhd8ed1ab_0 - ipywidgets=7.8.5=pyhd8ed1ab_0 @@ -87,7 +96,7 @@ dependencies: - jedi=0.19.2=pyhd8ed1ab_1 - jinja2=3.1.6=pyhcf101f3_1 - joblib=1.5.3=pyhd8ed1ab_0 - - json5=0.13.0=pyhd8ed1ab_0 + - json5=0.14.0=pyhd8ed1ab_0 - jsonpointer=3.1.1=pyhcf101f3_0 - jsonschema=4.26.0=pyhcf101f3_0 - jsonschema-specifications=2025.9.1=pyhcf101f3_0 @@ -122,7 +131,7 @@ dependencies: - libdlf=0.3.0=pyhd8ed1ab_1 - libedit=3.1.20250104=pl5321h7949ede_0 - libev=4.33=hd590300_2 - - libexpat=2.7.4=hecca717_0 + - libexpat=2.7.5=hecca717_0 - libffi=3.5.2=h3435931_0 - libfreetype=2.14.3=ha770c72_0 - libfreetype6=2.14.3=h73754d4_0 @@ -146,14 +155,14 @@ dependencies: - libstdcxx=15.2.0=h934c35e_18 - libstdcxx-ng=15.2.0=hdf11a46_18 - libtiff=4.7.1=h9d88235_1 - - libuuid=2.41.3=h5347b49_0 + - libuuid=2.41.4=h5347b49_0 - libuv=1.51.0=hb03c661_1 - libwebp-base=1.6.0=hd42ef1d_0 - libxcb=1.17.0=h8a09558_0 - libxml2=2.15.1=h26afc86_0 - libxml2-16=2.15.1=ha9997c6_0 - libzlib=1.3.2=h25fd6f3_2 - - llvm-openmp=22.1.1=h4922eb0_0 + - llvm-openmp=22.1.2=h4922eb0_0 - locket=1.0.0=pyhd8ed1ab_0 - markdown-it-py=4.0.0=pyhd8ed1ab_0 - markupsafe=3.0.3=py313h3dea7bd_1 @@ -186,7 +195,7 @@ dependencies: - openssl=3.6.1=h35e630c_1 - overrides=7.7.0=pyhd8ed1ab_1 - packaging=26.0=pyhcf101f3_0 - - pandas=3.0.1=py313hbfd7664_0 + - pandas=3.0.2=py313hbfd7664_0 - pandoc=3.9.0.2=ha770c72_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.6=pyhcf101f3_0 @@ -206,7 +215,7 @@ dependencies: - pydantic=2.12.5=pyhcf101f3_1 - pydantic-core=2.41.5=py313h843e2db_1 - pydiso=0.2.0=np2py313h5fc5e36_1 - - pygments=2.19.2=pyhd8ed1ab_0 + - pygments=2.20.0=pyhd8ed1ab_0 - pylint=4.0.5=pyhcf101f3_0 - pymatsolver=0.3.1=pyh48887ae_201 - pyparsing=3.3.2=pyhcf101f3_0 @@ -227,12 +236,13 @@ dependencies: - readline=8.3=h853b02a_0 - readthedocs-sphinx-ext=2.2.5=pyhd8ed1ab_1 - referencing=0.37.0=pyhcf101f3_0 - - requests=2.33.0=pyhcf101f3_0 + - requests=2.33.1=pyhcf101f3_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_1 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - rfc3987-syntax=1.1.0=pyhe01879c_1 - rpds-py=0.30.0=py313h843e2db_0 - rtree=1.4.1=pyh11ca60a_0 + - s2n=1.7.1=h1cbb8d7_1 - scikit-learn=1.8.0=np2py313h16d504d_1 - scipy=1.17.1=py313h4b8bb8b_0 - send2trash=2.1.0=pyha191276_1 @@ -278,7 +288,7 @@ dependencies: - wrapt=2.1.2=py313h07c4f96_0 - xorg-libxau=1.0.12=hb03c661_1 - xorg-libxdmcp=1.1.5=hb03c661_1 - - xyzservices=2025.11.0=pyhd8ed1ab_0 + - xyzservices=2026.3.0=pyhd8ed1ab_0 - yaml=0.2.5=h280c20c_3 - zarr=2.14.2=pyhd8ed1ab_0 - zeromq=4.3.5=h41580af_10 @@ -289,7 +299,7 @@ dependencies: - zstd=1.5.7=hb78ec9c_6 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@eb0474175000819e93d8dc701ed0fd6101c44451 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@a4d826715e5f529242e2c7eac2805e05e1ec3027 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@f5eca3735bbca573f4cac3925c6f4c0c341d8e28 - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@0e66e6b7a44ede34563da6a77ccd87a4cc7b5185 - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f7dd0d37aac285dd9ece26396ee39ae72bd6d18d diff --git a/environments/py-3.13-linux-64.conda.lock.yml b/environments/py-3.13-linux-64.conda.lock.yml index 8f9ccd68..7b39839f 100644 --- a/environments/py-3.13-linux-64.conda.lock.yml +++ b/environments/py-3.13-linux-64.conda.lock.yml @@ -9,6 +9,15 @@ dependencies: - _openmp_mutex=4.5=7_kmp_llvm - annotated-types=0.7.0=pyhd8ed1ab_1 - asciitree=0.3.3=py_2 + - aws-c-auth=0.10.1=h2d2dd48_2 + - 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.12=h4bacb7b_1 + - aws-c-io=0.26.3=hc87160b_0 + - aws-c-s3=0.11.5=h6d69fc9_5 + - aws-c-sdkutils=0.2.4=h8b1a151_4 + - aws-checksums=0.2.10=h8b1a151_0 - backports.zstd=1.3.0=py313h18e8e13_0 - bokeh=3.6.3=pyhd8ed1ab_0 - brotli=1.2.0=hed03a55_1 @@ -32,11 +41,11 @@ dependencies: - fasteners=0.19=pyhd8ed1ab_1 - fonttools=4.62.0=py313h3dea7bd_0 - freetype=2.14.3=ha770c72_0 - - fsspec=2026.2.0=pyhd8ed1ab_0 + - fsspec=2026.3.0=pyhd8ed1ab_0 - geoana=0.8.1=np2py313h0f78c12_0 - h2=4.3.0=pyhcf101f3_0 - - h5py=3.16.0=nompi_py313h253c126_100 - - hdf5=1.14.6=nompi_h19486de_108 + - h5py=3.16.0=nompi_py313h22c32d4_101 + - hdf5=2.1.0=nompi_hd4fcb43_103 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - icu=75.1=he02047a_0 @@ -60,7 +69,7 @@ dependencies: - libdlf=0.3.0=pyhd8ed1ab_1 - libedit=3.1.20250104=pl5321h7949ede_0 - libev=4.33=hd590300_2 - - libexpat=2.7.4=hecca717_0 + - libexpat=2.7.5=hecca717_0 - libffi=3.5.2=h3435931_0 - libfreetype=2.14.3=ha770c72_0 - libfreetype6=2.14.3=h73754d4_0 @@ -83,13 +92,13 @@ dependencies: - libstdcxx=15.2.0=h934c35e_18 - libstdcxx-ng=15.2.0=hdf11a46_18 - libtiff=4.7.1=h9d88235_1 - - libuuid=2.41.3=h5347b49_0 + - libuuid=2.41.4=h5347b49_0 - libwebp-base=1.6.0=hd42ef1d_0 - libxcb=1.17.0=h8a09558_0 - libxml2=2.15.1=h26afc86_0 - libxml2-16=2.15.1=ha9997c6_0 - libzlib=1.3.2=h25fd6f3_2 - - llvm-openmp=22.1.1=h4922eb0_0 + - llvm-openmp=22.1.2=h4922eb0_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.3=py313h3dea7bd_1 - matplotlib-base=3.10.8=py313h683a580_0 @@ -106,7 +115,7 @@ dependencies: - openpyxl=3.1.5=py313ha4be090_3 - openssl=3.6.1=h35e630c_1 - packaging=26.0=pyhcf101f3_0 - - pandas=3.0.1=py313hbfd7664_0 + - pandas=3.0.2=py313hbfd7664_0 - partd=1.4.2=pyhd8ed1ab_0 - pillow=12.1.1=py313h80991f8_0 - pip=26.0.1=pyh145f28c_0 @@ -127,6 +136,7 @@ dependencies: - qhull=2020.2=h434a139_5 - readline=8.3=h853b02a_0 - rtree=1.4.1=pyh11ca60a_0 + - s2n=1.7.1=h1cbb8d7_1 - scikit-learn=1.8.0=np2py313h16d504d_1 - scipy=1.17.1=py313h4b8bb8b_0 - setuptools=82.0.1=pyh332efcf_0 @@ -148,7 +158,7 @@ dependencies: - wrapt=2.1.2=py313h07c4f96_0 - xorg-libxau=1.0.12=hb03c661_1 - xorg-libxdmcp=1.1.5=hb03c661_1 - - xyzservices=2025.11.0=pyhd8ed1ab_0 + - xyzservices=2026.3.0=pyhd8ed1ab_0 - yaml=0.2.5=h280c20c_3 - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 @@ -157,7 +167,7 @@ dependencies: - zstd=1.5.7=hb78ec9c_6 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@eb0474175000819e93d8dc701ed0fd6101c44451 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@a4d826715e5f529242e2c7eac2805e05e1ec3027 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@f5eca3735bbca573f4cac3925c6f4c0c341d8e28 - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@0e66e6b7a44ede34563da6a77ccd87a4cc7b5185 - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f7dd0d37aac285dd9ece26396ee39ae72bd6d18d 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 b1055cd6..224a81e4 100644 --- a/environments/py-3.13-win-64-dev.conda.lock.yml +++ b/environments/py-3.13-win-64-dev.conda.lock.yml @@ -19,6 +19,15 @@ dependencies: - asttokens=3.0.1=pyhd8ed1ab_0 - async-lru=2.3.0=pyhcf101f3_0 - attrs=26.1.0=pyhcf101f3_0 + - aws-c-auth=0.10.1=h5d51246_2 + - 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.12=h612f3e8_1 + - aws-c-io=0.26.3=h0d5b9f9_0 + - aws-c-s3=0.11.5=h87bd87b_5 + - aws-c-sdkutils=0.2.4=hcb3a2da_4 + - aws-checksums=0.2.10=hcb3a2da_0 - babel=2.18.0=pyhcf101f3_1 - backports.zstd=1.3.0=py313h2a31948_0 - beautifulsoup4=4.14.3=pyha770c72_0 @@ -60,12 +69,12 @@ dependencies: - fonttools=4.62.0=py313hd650c13_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.14.3=h57928b3_0 - - fsspec=2026.2.0=pyhd8ed1ab_0 + - fsspec=2026.3.0=pyhd8ed1ab_0 - geoana=0.8.1=np2py313hedd11bf_0 - h11=0.16.0=pyhcf101f3_1 - h2=4.3.0=pyhcf101f3_0 - - h5py=3.16.0=nompi_py313hf7f959b_100 - - hdf5=1.14.6=nompi_hae35d4c_108 + - h5py=3.16.0=nompi_py313hd050a09_101 + - hdf5=2.1.0=nompi_hd96b29f_103 - hpack=4.1.0=pyhd8ed1ab_0 - httpcore=1.0.9=pyh29332c3_0 - httpx=0.28.1=pyhd8ed1ab_0 @@ -76,7 +85,7 @@ dependencies: - importlib_resources=6.5.2=pyhd8ed1ab_0 - iniconfig=2.3.0=pyhd8ed1ab_0 - ipykernel=7.2.0=pyh6dadd2b_1 - - ipython=9.11.0=pyhccfa634_0 + - ipython=9.12.0=pyhccfa634_0 - ipython_genutils=0.2.0=pyhd8ed1ab_2 - ipython_pygments_lexers=1.1.1=pyhd8ed1ab_0 - ipywidgets=7.8.5=pyhd8ed1ab_0 @@ -85,7 +94,7 @@ dependencies: - jedi=0.19.2=pyhd8ed1ab_1 - jinja2=3.1.6=pyhcf101f3_1 - joblib=1.5.3=pyhd8ed1ab_0 - - json5=0.13.0=pyhd8ed1ab_0 + - json5=0.14.0=pyhd8ed1ab_0 - jsonpointer=3.1.1=pyhcf101f3_0 - jsonschema=4.26.0=pyhcf101f3_0 - jsonschema-specifications=2025.9.1=pyhcf101f3_0 @@ -116,7 +125,7 @@ dependencies: - libcurl=8.19.0=h8206538_0 - libdeflate=1.25=h51727cc_0 - libdlf=0.3.0=pyhd8ed1ab_1 - - libexpat=2.7.4=hac47afa_0 + - libexpat=2.7.5=hac47afa_0 - libffi=3.5.2=h3d046cb_0 - libfreetype=2.14.3=h57928b3_0 - libfreetype6=2.14.3=hdbac1cb_0 @@ -140,7 +149,7 @@ dependencies: - libxml2=2.15.2=h5d26750_0 - libxml2-16=2.15.2=h692994f_0 - libzlib=1.3.2=hfd05255_2 - - llvm-openmp=22.1.1=h4fa8253_0 + - llvm-openmp=22.1.2=h4fa8253_0 - locket=1.0.0=pyhd8ed1ab_0 - markdown-it-py=4.0.0=pyhd8ed1ab_0 - markupsafe=3.0.3=py313hd650c13_1 @@ -170,7 +179,7 @@ dependencies: - openssl=3.6.1=hf411b9b_1 - overrides=7.7.0=pyhd8ed1ab_1 - packaging=26.0=pyhcf101f3_0 - - pandas=3.0.1=py313h26f5e95_0 + - pandas=3.0.2=py313h26f5e95_0 - pandoc=3.9.0.2=h57928b3_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.6=pyhcf101f3_0 @@ -188,7 +197,7 @@ dependencies: - pydantic=2.12.5=pyhcf101f3_1 - pydantic-core=2.41.5=py313hfbe8231_1 - pydiso=0.2.0=np2py313h16cfc55_1 - - pygments=2.19.2=pyhd8ed1ab_0 + - pygments=2.20.0=pyhd8ed1ab_0 - pylint=4.0.5=pyhcf101f3_0 - pymatsolver=0.3.1=pyh48887ae_201 - pyparsing=3.3.2=pyhcf101f3_0 @@ -210,7 +219,7 @@ dependencies: - qhull=2020.2=hc790b64_5 - readthedocs-sphinx-ext=2.2.5=pyhd8ed1ab_1 - referencing=0.37.0=pyhcf101f3_0 - - requests=2.33.0=pyhcf101f3_0 + - requests=2.33.1=pyhcf101f3_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_1 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - rfc3987-syntax=1.1.0=pyhe01879c_1 @@ -267,7 +276,7 @@ dependencies: - wrapt=2.1.2=py313h5ea7bf4_0 - xorg-libxau=1.0.12=hba3369d_1 - xorg-libxdmcp=1.1.5=hba3369d_1 - - xyzservices=2025.11.0=pyhd8ed1ab_0 + - xyzservices=2026.3.0=pyhd8ed1ab_0 - yaml=0.2.5=h6a83c73_3 - zarr=2.14.2=pyhd8ed1ab_0 - zeromq=4.3.5=h507cc87_10 @@ -277,7 +286,7 @@ dependencies: - zstd=1.5.7=h534d264_6 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@eb0474175000819e93d8dc701ed0fd6101c44451 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@a4d826715e5f529242e2c7eac2805e05e1ec3027 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@f5eca3735bbca573f4cac3925c6f4c0c341d8e28 - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@0e66e6b7a44ede34563da6a77ccd87a4cc7b5185 - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f7dd0d37aac285dd9ece26396ee39ae72bd6d18d diff --git a/environments/py-3.13-win-64.conda.lock.yml b/environments/py-3.13-win-64.conda.lock.yml index ead9f5e2..c091a34c 100644 --- a/environments/py-3.13-win-64.conda.lock.yml +++ b/environments/py-3.13-win-64.conda.lock.yml @@ -9,6 +9,15 @@ dependencies: - _openmp_mutex=4.5=20_gnu - annotated-types=0.7.0=pyhd8ed1ab_1 - asciitree=0.3.3=py_2 + - aws-c-auth=0.10.1=h5d51246_2 + - 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.12=h612f3e8_1 + - aws-c-io=0.26.3=h0d5b9f9_0 + - aws-c-s3=0.11.5=h87bd87b_5 + - aws-c-sdkutils=0.2.4=hcb3a2da_4 + - aws-checksums=0.2.10=hcb3a2da_0 - backports.zstd=1.3.0=py313h2a31948_0 - bokeh=3.6.3=pyhd8ed1ab_0 - brotli=1.2.0=h2d644bc_1 @@ -32,11 +41,11 @@ dependencies: - fasteners=0.19=pyhd8ed1ab_1 - fonttools=4.62.0=py313hd650c13_0 - freetype=2.14.3=h57928b3_0 - - fsspec=2026.2.0=pyhd8ed1ab_0 + - fsspec=2026.3.0=pyhd8ed1ab_0 - geoana=0.8.1=np2py313hedd11bf_0 - h2=4.3.0=pyhcf101f3_0 - - h5py=3.16.0=nompi_py313hf7f959b_100 - - hdf5=1.14.6=nompi_hae35d4c_108 + - h5py=3.16.0=nompi_py313hd050a09_101 + - hdf5=2.1.0=nompi_hd96b29f_103 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - importlib-metadata=8.8.0=pyhcf101f3_0 @@ -55,7 +64,7 @@ dependencies: - libcurl=8.19.0=h8206538_0 - libdeflate=1.25=h51727cc_0 - libdlf=0.3.0=pyhd8ed1ab_1 - - libexpat=2.7.4=hac47afa_0 + - libexpat=2.7.5=hac47afa_0 - libffi=3.5.2=h3d046cb_0 - libfreetype=2.14.3=h57928b3_0 - libfreetype6=2.14.3=hdbac1cb_0 @@ -78,7 +87,7 @@ dependencies: - libxml2=2.15.2=h5d26750_0 - libxml2-16=2.15.2=h692994f_0 - libzlib=1.3.2=hfd05255_2 - - llvm-openmp=22.1.1=h4fa8253_0 + - llvm-openmp=22.1.2=h4fa8253_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.3=py313hd650c13_1 - matplotlib-base=3.10.8=py313he1ded55_0 @@ -92,7 +101,7 @@ dependencies: - openpyxl=3.1.5=py313hc624790_3 - openssl=3.6.1=hf411b9b_1 - packaging=26.0=pyhcf101f3_0 - - pandas=3.0.1=py313h26f5e95_0 + - pandas=3.0.2=py313h26f5e95_0 - partd=1.4.2=pyhd8ed1ab_0 - pillow=12.1.1=py313h38f99e1_0 - pip=26.0.1=pyh145f28c_0 @@ -138,7 +147,7 @@ dependencies: - wrapt=2.1.2=py313h5ea7bf4_0 - xorg-libxau=1.0.12=hba3369d_1 - xorg-libxdmcp=1.1.5=hba3369d_1 - - xyzservices=2025.11.0=pyhd8ed1ab_0 + - xyzservices=2026.3.0=pyhd8ed1ab_0 - yaml=0.2.5=h6a83c73_3 - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 @@ -147,7 +156,7 @@ dependencies: - zstd=1.5.7=h534d264_6 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@eb0474175000819e93d8dc701ed0fd6101c44451 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@a4d826715e5f529242e2c7eac2805e05e1ec3027 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@f5eca3735bbca573f4cac3925c6f4c0c341d8e28 - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@0e66e6b7a44ede34563da6a77ccd87a4cc7b5185 - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f7dd0d37aac285dd9ece26396ee39ae72bd6d18d 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 5dad8931..b71b4876 100644 --- a/environments/py-3.14-linux-64-dev.conda.lock.yml +++ b/environments/py-3.14-linux-64-dev.conda.lock.yml @@ -19,6 +19,15 @@ dependencies: - asttokens=3.0.1=pyhd8ed1ab_0 - async-lru=2.3.0=pyhcf101f3_0 - attrs=26.1.0=pyhcf101f3_0 + - aws-c-auth=0.10.1=h2d2dd48_2 + - 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.12=h4bacb7b_1 + - aws-c-io=0.26.3=hc87160b_0 + - aws-c-s3=0.11.5=h6d69fc9_5 + - aws-c-sdkutils=0.2.4=h8b1a151_4 + - aws-checksums=0.2.10=h8b1a151_0 - babel=2.18.0=pyhcf101f3_1 - backports.zstd=1.3.0=py314h680f03e_0 - beautifulsoup4=4.14.3=pyha770c72_0 @@ -61,12 +70,12 @@ dependencies: - fonttools=4.62.0=pyh7db6752_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.14.3=ha770c72_0 - - fsspec=2026.2.0=pyhd8ed1ab_0 + - fsspec=2026.3.0=pyhd8ed1ab_0 - geoana=0.8.1=np2py314hb287c12_0 - h11=0.16.0=pyhcf101f3_1 - h2=4.3.0=pyhcf101f3_0 - - h5py=3.16.0=nompi_py314hc32fe06_100 - - hdf5=1.14.6=nompi_h19486de_108 + - h5py=3.16.0=nompi_py314hddf7a69_101 + - hdf5=2.1.0=nompi_hd4fcb43_103 - hpack=4.1.0=pyhd8ed1ab_0 - httpcore=1.0.9=pyh29332c3_0 - httpx=0.28.1=pyhd8ed1ab_0 @@ -78,7 +87,7 @@ dependencies: - importlib_resources=6.5.2=pyhd8ed1ab_0 - iniconfig=2.3.0=pyhd8ed1ab_0 - ipykernel=7.2.0=pyha191276_1 - - ipython=9.11.0=pyhecfbec7_0 + - ipython=9.12.0=pyhecfbec7_0 - ipython_genutils=0.2.0=pyhd8ed1ab_2 - ipython_pygments_lexers=1.1.1=pyhd8ed1ab_0 - ipywidgets=7.8.5=pyhd8ed1ab_0 @@ -87,7 +96,7 @@ dependencies: - jedi=0.19.2=pyhd8ed1ab_1 - jinja2=3.1.6=pyhcf101f3_1 - joblib=1.5.3=pyhd8ed1ab_0 - - json5=0.13.0=pyhd8ed1ab_0 + - json5=0.14.0=pyhd8ed1ab_0 - jsonpointer=3.1.1=pyhcf101f3_0 - jsonschema=4.26.0=pyhcf101f3_0 - jsonschema-specifications=2025.9.1=pyhcf101f3_0 @@ -122,7 +131,7 @@ dependencies: - libdlf=0.3.0=pyhd8ed1ab_1 - libedit=3.1.20250104=pl5321h7949ede_0 - libev=4.33=hd590300_2 - - libexpat=2.7.4=hecca717_0 + - libexpat=2.7.5=hecca717_0 - libffi=3.5.2=h3435931_0 - libfreetype=2.14.3=ha770c72_0 - libfreetype6=2.14.3=h73754d4_0 @@ -146,14 +155,14 @@ dependencies: - libstdcxx=15.2.0=h934c35e_18 - libstdcxx-ng=15.2.0=hdf11a46_18 - libtiff=4.7.1=h9d88235_1 - - libuuid=2.41.3=h5347b49_0 + - libuuid=2.41.4=h5347b49_0 - libuv=1.51.0=hb03c661_1 - libwebp-base=1.6.0=hd42ef1d_0 - libxcb=1.17.0=h8a09558_0 - libxml2=2.15.1=h26afc86_0 - libxml2-16=2.15.1=ha9997c6_0 - libzlib=1.3.2=h25fd6f3_2 - - llvm-openmp=22.1.1=h4922eb0_0 + - llvm-openmp=22.1.2=h4922eb0_0 - locket=1.0.0=pyhd8ed1ab_0 - markdown-it-py=4.0.0=pyhd8ed1ab_0 - markupsafe=3.0.3=py314h67df5f8_1 @@ -186,7 +195,7 @@ dependencies: - openssl=3.6.1=h35e630c_1 - overrides=7.7.0=pyhd8ed1ab_1 - packaging=26.0=pyhcf101f3_0 - - pandas=3.0.1=py314hb4ffadd_0 + - pandas=3.0.2=py314hb4ffadd_0 - pandoc=3.9.0.2=ha770c72_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.6=pyhcf101f3_0 @@ -206,7 +215,7 @@ dependencies: - pydantic=2.12.5=pyhcf101f3_1 - pydantic-core=2.41.5=py314h2e6c369_1 - pydiso=0.2.0=np2py314h7d8def5_1 - - pygments=2.19.2=pyhd8ed1ab_0 + - pygments=2.20.0=pyhd8ed1ab_0 - pylint=4.0.5=pyhcf101f3_0 - pymatsolver=0.3.1=pyh48887ae_201 - pyparsing=3.3.2=pyhcf101f3_0 @@ -227,12 +236,13 @@ dependencies: - readline=8.3=h853b02a_0 - readthedocs-sphinx-ext=2.2.5=pyhd8ed1ab_1 - referencing=0.37.0=pyhcf101f3_0 - - requests=2.33.0=pyhcf101f3_0 + - requests=2.33.1=pyhcf101f3_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_1 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - rfc3987-syntax=1.1.0=pyhe01879c_1 - rpds-py=0.30.0=py314h2e6c369_0 - rtree=1.4.1=pyh11ca60a_0 + - s2n=1.7.1=h1cbb8d7_1 - scikit-learn=1.8.0=np2py314hf09ca88_1 - scipy=1.17.1=py314hf07bd8e_0 - send2trash=2.1.0=pyha191276_1 @@ -279,7 +289,7 @@ dependencies: - wrapt=2.1.2=py314h5bd0f2a_0 - xorg-libxau=1.0.12=hb03c661_1 - xorg-libxdmcp=1.1.5=hb03c661_1 - - xyzservices=2025.11.0=pyhd8ed1ab_0 + - xyzservices=2026.3.0=pyhd8ed1ab_0 - yaml=0.2.5=h280c20c_3 - zarr=2.14.2=pyhd8ed1ab_0 - zeromq=4.3.5=h41580af_10 @@ -290,7 +300,7 @@ dependencies: - zstd=1.5.7=hb78ec9c_6 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@eb0474175000819e93d8dc701ed0fd6101c44451 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@a4d826715e5f529242e2c7eac2805e05e1ec3027 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@f5eca3735bbca573f4cac3925c6f4c0c341d8e28 - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@0e66e6b7a44ede34563da6a77ccd87a4cc7b5185 - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f7dd0d37aac285dd9ece26396ee39ae72bd6d18d diff --git a/environments/py-3.14-linux-64.conda.lock.yml b/environments/py-3.14-linux-64.conda.lock.yml index ac0faca1..f42607f3 100644 --- a/environments/py-3.14-linux-64.conda.lock.yml +++ b/environments/py-3.14-linux-64.conda.lock.yml @@ -9,6 +9,15 @@ dependencies: - _openmp_mutex=4.5=7_kmp_llvm - annotated-types=0.7.0=pyhd8ed1ab_1 - asciitree=0.3.3=py_2 + - aws-c-auth=0.10.1=h2d2dd48_2 + - 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.12=h4bacb7b_1 + - aws-c-io=0.26.3=hc87160b_0 + - aws-c-s3=0.11.5=h6d69fc9_5 + - aws-c-sdkutils=0.2.4=h8b1a151_4 + - aws-checksums=0.2.10=h8b1a151_0 - backports.zstd=1.3.0=py314h680f03e_0 - bokeh=3.6.3=pyhd8ed1ab_0 - brotli=1.2.0=hed03a55_1 @@ -32,11 +41,11 @@ dependencies: - fasteners=0.19=pyhd8ed1ab_1 - fonttools=4.62.0=pyh7db6752_0 - freetype=2.14.3=ha770c72_0 - - fsspec=2026.2.0=pyhd8ed1ab_0 + - fsspec=2026.3.0=pyhd8ed1ab_0 - geoana=0.8.1=np2py314hb287c12_0 - h2=4.3.0=pyhcf101f3_0 - - h5py=3.16.0=nompi_py314hc32fe06_100 - - hdf5=1.14.6=nompi_h19486de_108 + - h5py=3.16.0=nompi_py314hddf7a69_101 + - hdf5=2.1.0=nompi_hd4fcb43_103 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - icu=75.1=he02047a_0 @@ -60,7 +69,7 @@ dependencies: - libdlf=0.3.0=pyhd8ed1ab_1 - libedit=3.1.20250104=pl5321h7949ede_0 - libev=4.33=hd590300_2 - - libexpat=2.7.4=hecca717_0 + - libexpat=2.7.5=hecca717_0 - libffi=3.5.2=h3435931_0 - libfreetype=2.14.3=ha770c72_0 - libfreetype6=2.14.3=h73754d4_0 @@ -83,13 +92,13 @@ dependencies: - libstdcxx=15.2.0=h934c35e_18 - libstdcxx-ng=15.2.0=hdf11a46_18 - libtiff=4.7.1=h9d88235_1 - - libuuid=2.41.3=h5347b49_0 + - libuuid=2.41.4=h5347b49_0 - libwebp-base=1.6.0=hd42ef1d_0 - libxcb=1.17.0=h8a09558_0 - libxml2=2.15.1=h26afc86_0 - libxml2-16=2.15.1=ha9997c6_0 - libzlib=1.3.2=h25fd6f3_2 - - llvm-openmp=22.1.1=h4922eb0_0 + - llvm-openmp=22.1.2=h4922eb0_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.3=py314h67df5f8_1 - matplotlib-base=3.10.8=py314h1194b4b_0 @@ -106,7 +115,7 @@ dependencies: - openpyxl=3.1.5=py314hf3b76af_3 - openssl=3.6.1=h35e630c_1 - packaging=26.0=pyhcf101f3_0 - - pandas=3.0.1=py314hb4ffadd_0 + - pandas=3.0.2=py314hb4ffadd_0 - partd=1.4.2=pyhd8ed1ab_0 - pillow=12.1.1=py314h8ec4b1a_0 - pip=26.0.1=pyh145f28c_0 @@ -127,6 +136,7 @@ dependencies: - qhull=2020.2=h434a139_5 - readline=8.3=h853b02a_0 - rtree=1.4.1=pyh11ca60a_0 + - s2n=1.7.1=h1cbb8d7_1 - scikit-learn=1.8.0=np2py314hf09ca88_1 - scipy=1.17.1=py314hf07bd8e_0 - setuptools=82.0.1=pyh332efcf_0 @@ -149,7 +159,7 @@ dependencies: - wrapt=2.1.2=py314h5bd0f2a_0 - xorg-libxau=1.0.12=hb03c661_1 - xorg-libxdmcp=1.1.5=hb03c661_1 - - xyzservices=2025.11.0=pyhd8ed1ab_0 + - xyzservices=2026.3.0=pyhd8ed1ab_0 - yaml=0.2.5=h280c20c_3 - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 @@ -158,7 +168,7 @@ dependencies: - zstd=1.5.7=hb78ec9c_6 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@eb0474175000819e93d8dc701ed0fd6101c44451 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@a4d826715e5f529242e2c7eac2805e05e1ec3027 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@f5eca3735bbca573f4cac3925c6f4c0c341d8e28 - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@0e66e6b7a44ede34563da6a77ccd87a4cc7b5185 - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f7dd0d37aac285dd9ece26396ee39ae72bd6d18d 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 38fcc558..697dae48 100644 --- a/environments/py-3.14-win-64-dev.conda.lock.yml +++ b/environments/py-3.14-win-64-dev.conda.lock.yml @@ -19,6 +19,15 @@ dependencies: - asttokens=3.0.1=pyhd8ed1ab_0 - async-lru=2.3.0=pyhcf101f3_0 - attrs=26.1.0=pyhcf101f3_0 + - aws-c-auth=0.10.1=h5d51246_2 + - 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.12=h612f3e8_1 + - aws-c-io=0.26.3=h0d5b9f9_0 + - aws-c-s3=0.11.5=h87bd87b_5 + - aws-c-sdkutils=0.2.4=hcb3a2da_4 + - aws-checksums=0.2.10=hcb3a2da_0 - babel=2.18.0=pyhcf101f3_1 - backports.zstd=1.3.0=py314h680f03e_0 - beautifulsoup4=4.14.3=pyha770c72_0 @@ -60,12 +69,12 @@ dependencies: - fonttools=4.62.0=pyh7db6752_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.14.3=h57928b3_0 - - fsspec=2026.2.0=pyhd8ed1ab_0 + - fsspec=2026.3.0=pyhd8ed1ab_0 - geoana=0.8.1=np2py314h1495373_0 - h11=0.16.0=pyhcf101f3_1 - h2=4.3.0=pyhcf101f3_0 - - h5py=3.16.0=nompi_py314hc249e69_100 - - hdf5=1.14.6=nompi_hae35d4c_108 + - h5py=3.16.0=nompi_py314h02517ec_101 + - hdf5=2.1.0=nompi_hd96b29f_103 - hpack=4.1.0=pyhd8ed1ab_0 - httpcore=1.0.9=pyh29332c3_0 - httpx=0.28.1=pyhd8ed1ab_0 @@ -76,7 +85,7 @@ dependencies: - importlib_resources=6.5.2=pyhd8ed1ab_0 - iniconfig=2.3.0=pyhd8ed1ab_0 - ipykernel=7.2.0=pyh6dadd2b_1 - - ipython=9.11.0=pyhccfa634_0 + - ipython=9.12.0=pyhccfa634_0 - ipython_genutils=0.2.0=pyhd8ed1ab_2 - ipython_pygments_lexers=1.1.1=pyhd8ed1ab_0 - ipywidgets=7.8.5=pyhd8ed1ab_0 @@ -85,7 +94,7 @@ dependencies: - jedi=0.19.2=pyhd8ed1ab_1 - jinja2=3.1.6=pyhcf101f3_1 - joblib=1.5.3=pyhd8ed1ab_0 - - json5=0.13.0=pyhd8ed1ab_0 + - json5=0.14.0=pyhd8ed1ab_0 - jsonpointer=3.1.1=pyhcf101f3_0 - jsonschema=4.26.0=pyhcf101f3_0 - jsonschema-specifications=2025.9.1=pyhcf101f3_0 @@ -116,7 +125,7 @@ dependencies: - libcurl=8.19.0=h8206538_0 - libdeflate=1.25=h51727cc_0 - libdlf=0.3.0=pyhd8ed1ab_1 - - libexpat=2.7.4=hac47afa_0 + - libexpat=2.7.5=hac47afa_0 - libffi=3.5.2=h3d046cb_0 - libfreetype=2.14.3=h57928b3_0 - libfreetype6=2.14.3=hdbac1cb_0 @@ -140,7 +149,7 @@ dependencies: - libxml2=2.15.2=h5d26750_0 - libxml2-16=2.15.2=h692994f_0 - libzlib=1.3.2=hfd05255_2 - - llvm-openmp=22.1.1=h4fa8253_0 + - llvm-openmp=22.1.2=h4fa8253_0 - locket=1.0.0=pyhd8ed1ab_0 - markdown-it-py=4.0.0=pyhd8ed1ab_0 - markupsafe=3.0.3=py314h2359020_1 @@ -170,7 +179,7 @@ dependencies: - openssl=3.6.1=hf411b9b_1 - overrides=7.7.0=pyhd8ed1ab_1 - packaging=26.0=pyhcf101f3_0 - - pandas=3.0.1=py314hf700ef7_0 + - pandas=3.0.2=py314hf700ef7_0 - pandoc=3.9.0.2=h57928b3_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.6=pyhcf101f3_0 @@ -188,7 +197,7 @@ dependencies: - pydantic=2.12.5=pyhcf101f3_1 - pydantic-core=2.41.5=py314h9f07db2_1 - pydiso=0.2.0=np2py314h2b9c9a4_1 - - pygments=2.19.2=pyhd8ed1ab_0 + - pygments=2.20.0=pyhd8ed1ab_0 - pylint=4.0.5=pyhcf101f3_0 - pymatsolver=0.3.1=pyh48887ae_201 - pyparsing=3.3.2=pyhcf101f3_0 @@ -210,7 +219,7 @@ dependencies: - qhull=2020.2=hc790b64_5 - readthedocs-sphinx-ext=2.2.5=pyhd8ed1ab_1 - referencing=0.37.0=pyhcf101f3_0 - - requests=2.33.0=pyhcf101f3_0 + - requests=2.33.1=pyhcf101f3_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_1 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - rfc3987-syntax=1.1.0=pyhe01879c_1 @@ -268,7 +277,7 @@ dependencies: - wrapt=2.1.2=py314h5a2d7ad_0 - xorg-libxau=1.0.12=hba3369d_1 - xorg-libxdmcp=1.1.5=hba3369d_1 - - xyzservices=2025.11.0=pyhd8ed1ab_0 + - xyzservices=2026.3.0=pyhd8ed1ab_0 - yaml=0.2.5=h6a83c73_3 - zarr=2.14.2=pyhd8ed1ab_0 - zeromq=4.3.5=h507cc87_10 @@ -278,7 +287,7 @@ dependencies: - zstd=1.5.7=h534d264_6 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@eb0474175000819e93d8dc701ed0fd6101c44451 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@a4d826715e5f529242e2c7eac2805e05e1ec3027 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@f5eca3735bbca573f4cac3925c6f4c0c341d8e28 - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@0e66e6b7a44ede34563da6a77ccd87a4cc7b5185 - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f7dd0d37aac285dd9ece26396ee39ae72bd6d18d diff --git a/environments/py-3.14-win-64.conda.lock.yml b/environments/py-3.14-win-64.conda.lock.yml index 9e2b77e3..9a9635a8 100644 --- a/environments/py-3.14-win-64.conda.lock.yml +++ b/environments/py-3.14-win-64.conda.lock.yml @@ -9,6 +9,15 @@ dependencies: - _openmp_mutex=4.5=20_gnu - annotated-types=0.7.0=pyhd8ed1ab_1 - asciitree=0.3.3=py_2 + - aws-c-auth=0.10.1=h5d51246_2 + - 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.12=h612f3e8_1 + - aws-c-io=0.26.3=h0d5b9f9_0 + - aws-c-s3=0.11.5=h87bd87b_5 + - aws-c-sdkutils=0.2.4=hcb3a2da_4 + - aws-checksums=0.2.10=hcb3a2da_0 - backports.zstd=1.3.0=py314h680f03e_0 - bokeh=3.6.3=pyhd8ed1ab_0 - brotli=1.2.0=h2d644bc_1 @@ -32,11 +41,11 @@ dependencies: - fasteners=0.19=pyhd8ed1ab_1 - fonttools=4.62.0=pyh7db6752_0 - freetype=2.14.3=h57928b3_0 - - fsspec=2026.2.0=pyhd8ed1ab_0 + - fsspec=2026.3.0=pyhd8ed1ab_0 - geoana=0.8.1=np2py314h1495373_0 - h2=4.3.0=pyhcf101f3_0 - - h5py=3.16.0=nompi_py314hc249e69_100 - - hdf5=1.14.6=nompi_hae35d4c_108 + - h5py=3.16.0=nompi_py314h02517ec_101 + - hdf5=2.1.0=nompi_hd96b29f_103 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - importlib-metadata=8.8.0=pyhcf101f3_0 @@ -55,7 +64,7 @@ dependencies: - libcurl=8.19.0=h8206538_0 - libdeflate=1.25=h51727cc_0 - libdlf=0.3.0=pyhd8ed1ab_1 - - libexpat=2.7.4=hac47afa_0 + - libexpat=2.7.5=hac47afa_0 - libffi=3.5.2=h3d046cb_0 - libfreetype=2.14.3=h57928b3_0 - libfreetype6=2.14.3=hdbac1cb_0 @@ -78,7 +87,7 @@ dependencies: - libxml2=2.15.2=h5d26750_0 - libxml2-16=2.15.2=h692994f_0 - libzlib=1.3.2=hfd05255_2 - - llvm-openmp=22.1.1=h4fa8253_0 + - llvm-openmp=22.1.2=h4fa8253_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.3=py314h2359020_1 - matplotlib-base=3.10.8=py314hfa45d96_0 @@ -92,7 +101,7 @@ dependencies: - openpyxl=3.1.5=py314hccc76fc_3 - openssl=3.6.1=hf411b9b_1 - packaging=26.0=pyhcf101f3_0 - - pandas=3.0.1=py314hf700ef7_0 + - pandas=3.0.2=py314hf700ef7_0 - partd=1.4.2=pyhd8ed1ab_0 - pillow=12.1.1=py314h61b30b5_0 - pip=26.0.1=pyh145f28c_0 @@ -139,7 +148,7 @@ dependencies: - wrapt=2.1.2=py314h5a2d7ad_0 - xorg-libxau=1.0.12=hba3369d_1 - xorg-libxdmcp=1.1.5=hba3369d_1 - - xyzservices=2025.11.0=pyhd8ed1ab_0 + - xyzservices=2026.3.0=pyhd8ed1ab_0 - yaml=0.2.5=h6a83c73_3 - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 @@ -148,7 +157,7 @@ dependencies: - zstd=1.5.7=h534d264_6 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@eb0474175000819e93d8dc701ed0fd6101c44451 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@a4d826715e5f529242e2c7eac2805e05e1ec3027 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@f5eca3735bbca573f4cac3925c6f4c0c341d8e28 - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@0e66e6b7a44ede34563da6a77ccd87a4cc7b5185 - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f7dd0d37aac285dd9ece26396ee39ae72bd6d18d diff --git a/py-3.12.conda-lock.yml b/py-3.12.conda-lock.yml index d6f8c2b5..21b86ecd 100644 --- a/py-3.12.conda-lock.yml +++ b/py-3.12.conda-lock.yml @@ -373,6 +373,294 @@ package: sha256: 1b6124230bb4e571b1b9401537ecff575b7b109cc3a21ee019f65e083b8399ab category: dev optional: true +- name: aws-c-auth + version: 0.10.1 + 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.12,<0.10.13.0a0' + aws-c-io: '>=0.26.3,<0.26.4.0a0' + aws-c-sdkutils: '>=0.2.4,<0.2.5.0a0' + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-auth-0.10.1-h2d2dd48_2.conda + hash: + md5: 675ea6d90900350b1dcfa8231a5ea2dd + sha256: 292aa18fe6ab5351710e6416fbd683eaef3aa5b1b7396da9350ff08efc660e4f + category: main + optional: false +- name: aws-c-auth + version: 0.10.1 + 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.12,<0.10.13.0a0' + aws-c-io: '>=0.26.3,<0.26.4.0a0' + aws-c-sdkutils: '>=0.2.4,<0.2.5.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-h5d51246_2.conda + hash: + md5: 908d5d8755564e2c3f3770fca7ff0736 + sha256: f937d40f01493c4799a673f56d70434d6cddb2ec967cf642a39e0e04282a9a1e + category: main + optional: false +- name: aws-c-cal + version: 0.9.13 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + aws-c-common: '>=0.12.6,<0.12.7.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 + hash: + md5: 3c3d02681058c3d206b562b2e3bc337f + sha256: f21d648349a318f4ae457ea5403d542ba6c0e0343b8642038523dd612b2a5064 + category: main + optional: false +- name: aws-c-cal + version: 0.9.13 + manager: conda + platform: win-64 + dependencies: + aws-c-common: '>=0.12.6,<0.12.7.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 + hash: + md5: 7cc4953d504d4e8f3d6f4facb8549465 + sha256: 5f61082caea9fbdd6ba02702935e9dea9997459a7e6c06fd47f21b81aac882fb + category: main + optional: false +- name: aws-c-common + version: 0.12.6 + 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 + hash: + md5: e36ad70a7e0b48f091ed6902f04c23b8 + sha256: 926a5b9de0a586e88669d81de717c8dd3218c51ce55658e8a16af7e7fe87c833 + category: main + optional: false +- name: aws-c-common + version: 0.12.6 + 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 + hash: + md5: b1465f33b05b9af02ad0887c01837831 + sha256: 0627691c34eb3d9fcd18c71346d9f16f83e8e58f9983e792138a2cccf387d18a + category: main + optional: false +- name: aws-c-compression + version: 0.3.2 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + aws-c-common: '>=0.12.6,<0.12.7.0a0' + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-compression-0.3.2-h8b1a151_0.conda + hash: + md5: f16f498641c9e05b645fe65902df661a + sha256: 1838bdc077b77168416801f4715335b65e9223f83641a2c28644f8acd8f9db0e + category: main + optional: false +- name: aws-c-compression + version: 0.3.2 + manager: conda + platform: win-64 + dependencies: + aws-c-common: '>=0.12.6,<0.12.7.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 + hash: + md5: 0385f2340be1776b513258adaf70e208 + sha256: f98fbb797d28de3ae41dbd42590549ee0a2a4e61772f9cc6d1a4fa45d47637de + category: main + optional: false +- name: aws-c-http + version: 0.10.12 + 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-compression: '>=0.3.2,<0.3.3.0a0' + aws-c-io: '>=0.26.3,<0.26.4.0a0' + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-http-0.10.12-h4bacb7b_1.conda + hash: + md5: 7bc920933e5fb225aba86a788164a8f1 + sha256: c6f910d400ef9034493988e8cd37bd4712e42d85921122bcda4ba68d4614b131 + category: main + optional: false +- name: aws-c-http + version: 0.10.12 + 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-compression: '>=0.3.2,<0.3.3.0a0' + aws-c-io: '>=0.26.3,<0.26.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.12-h612f3e8_1.conda + hash: + md5: 26af0e9d7853d27e909ce01c287692b4 + sha256: dc297fbce04335f5f80b30bcdee1925ed4a0d95e7a2382523870c6b4981ca1b2 + category: main + optional: false +- name: aws-c-io + version: 0.26.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' + libgcc: '>=14' + s2n: '>=1.7.1,<1.7.2.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-io-0.26.3-hc87160b_0.conda + hash: + md5: dde6a3e4fe6bb2ecd2a7050dd1e701fb + sha256: c66ebb7815949db72bab7c86bf477197e4bc6937c381cf32248bdd1ce496db00 + category: main + optional: false +- name: aws-c-io + version: 0.26.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' + 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_0.conda + hash: + md5: ce36c60ed6b15c8dbb7ccddec4ebf57f + sha256: 3c9d50fb7895df4edd72d177299551608c24d8b0b82db0cf34c8e2bf6644979c + category: main + optional: false +- name: aws-c-s3 + version: 0.11.5 + 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.12,<0.10.13.0a0' + aws-c-io: '>=0.26.3,<0.26.4.0a0' + aws-checksums: '>=0.2.10,<0.2.11.0a0' + libgcc: '>=14' + openssl: '>=3.5.5,<4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-s3-0.11.5-h6d69fc9_5.conda + hash: + md5: 4c5c16bf1133dcfe100f33dd4470998e + sha256: c15869656f5fbebe27cc5aa58b23831f75d85502d324fedd7ee7e552c79b495d + category: main + optional: false +- name: aws-c-s3 + version: 0.11.5 + 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.12,<0.10.13.0a0' + aws-c-io: '>=0.26.3,<0.26.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.11.5-h87bd87b_5.conda + hash: + md5: 2d90128559ec4b3c78d1b889b8b13b50 + sha256: 62367b6d4d8aa1b43fb63e51d779bb829dfdd53d908c1b6700efa23255dd38db + category: main + optional: false +- name: aws-c-sdkutils + version: 0.2.4 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + aws-c-common: '>=0.12.6,<0.12.7.0a0' + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-sdkutils-0.2.4-h8b1a151_4.conda + hash: + md5: c7e3e08b7b1b285524ab9d74162ce40b + sha256: 9d62c5029f6f8219368a8665f0a549da572dc777f52413b7d75609cacdbc02cc + category: main + optional: false +- name: aws-c-sdkutils + version: 0.2.4 + manager: conda + platform: win-64 + dependencies: + aws-c-common: '>=0.12.6,<0.12.7.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 + hash: + md5: 3c97faee5be6fd0069410cf2bca71c85 + sha256: c86c30edba7457e04d905c959328142603b62d7d1888aed893b2e21cca9c302c + category: main + optional: false +- name: aws-checksums + version: 0.2.10 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + aws-c-common: '>=0.12.6,<0.12.7.0a0' + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/aws-checksums-0.2.10-h8b1a151_0.conda + hash: + md5: f8e1bcc5c7d839c5882e94498791be08 + sha256: 09472dd5fa4473cffd44741ee4c1112f2c76d7168d1343de53c2ad283dc1efa6 + category: main + optional: false +- name: aws-checksums + version: 0.2.10 + manager: conda + platform: win-64 + dependencies: + aws-c-common: '>=0.12.6,<0.12.7.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 + hash: + md5: 96e950e5007fb691322db578736aba52 + sha256: 505b2365bbf3c197c9c2e007ba8262bcdaaddc970f84ce67cf73868ca2990989 + category: main + optional: false - name: babel version: 2.18.0 manager: conda @@ -1567,27 +1855,27 @@ package: category: main optional: false - name: fsspec - version: 2026.2.0 + version: 2026.3.0 manager: conda platform: linux-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2026.2.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2026.3.0-pyhd8ed1ab_0.conda hash: - md5: 496c6c9411a6284addf55c898d6ed8d7 - sha256: 239b67edf1c5e5caed52cf36e9bed47cb21b37721779828c130e6b3fd9793c1b + md5: c18d2ba7577cdc618a20d45f1e31d14b + sha256: b4a7aec32167502dd4a2d1fb1208c63760828d7111339aa5b305b2d776afa70f category: main optional: false - name: fsspec - version: 2026.2.0 + version: 2026.3.0 manager: conda platform: win-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2026.2.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2026.3.0-pyhd8ed1ab_0.conda hash: - md5: 496c6c9411a6284addf55c898d6ed8d7 - sha256: 239b67edf1c5e5caed52cf36e9bed47cb21b37721779828c130e6b3fd9793c1b + md5: c18d2ba7577cdc618a20d45f1e31d14b + sha256: b4a7aec32167502dd4a2d1fb1208c63760828d7111339aa5b305b2d776afa70f category: main optional: false - name: geoana @@ -1689,15 +1977,15 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' cached-property: '' - hdf5: '>=1.14.6,<1.14.7.0a0' + hdf5: '>=2.1.0,<3.0a0' libgcc: '>=14' numpy: '>=1.23,<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_py312ha4f8f14_100.conda + url: https://repo.prefix.dev/conda-forge/linux-64/h5py-3.16.0-nompi_py312ha829cd9_101.conda hash: - md5: 33fd97b513b9094dc91345a958bf6ede - sha256: dc76502fa3c069f4b411af61806f23fd0d4126b1f3c7bc4c3c87e90d65c8d42b + md5: ecb3d9fd8598b730103184f2559ecdc6 + sha256: 3779e40557eb6784750cf7c7a6dcfb2a1b0bee473eb096d5431840c2b6055a68 category: main optional: false - name: h5py @@ -1706,25 +1994,31 @@ package: platform: win-64 dependencies: cached-property: '' - hdf5: '>=1.14.6,<1.14.7.0a0' + hdf5: '>=2.1.0,<3.0a0' numpy: '>=1.23,<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_py312h03cd2ba_100.conda + url: https://repo.prefix.dev/conda-forge/win-64/h5py-3.16.0-nompi_py312h5ddec8c_101.conda hash: - md5: 0bb1f87796de63e8734f961ce42a34ba - sha256: e37a7482c74e1278b1570361237ab80d629d8299cc65be7e8e63fe42e9b823ff + md5: 29b2c5e3b262709ff1a36665b3542bdd + sha256: dce4cf11fdbb967008abe051d8ae774b01e39a0730f7ce775c0b6d8f1e780364 category: main optional: false - name: hdf5 - version: 1.14.6 + version: 2.1.0 manager: conda 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.12,<0.10.13.0a0' + aws-c-io: '>=0.26.3,<0.26.4.0a0' + aws-c-s3: '>=0.11.5,<0.11.6.0a0' + aws-c-sdkutils: '>=0.2.4,<0.2.5.0a0' libaec: '>=1.1.5,<2.0a0' libcurl: '>=8.19.0,<9.0a0' libgcc: '>=14' @@ -1733,17 +2027,23 @@ package: libstdcxx: '>=14' libzlib: '>=1.3.2,<2.0a0' openssl: '>=3.5.5,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/hdf5-1.14.6-nompi_h19486de_108.conda + url: https://repo.prefix.dev/conda-forge/linux-64/hdf5-2.1.0-nompi_hd4fcb43_103.conda hash: - md5: cbb2d15a6e9aeb85f18f1a8f01c29b81 - sha256: 795c3a34643aa766450b8363b8c5dd6e65ad40e5cc64d138c3678d05068a380a + md5: dcb50cd5fed839129afb25f1061f6b7f + sha256: 79c3592e00ce9974e3d08e4bd28bfbe9f86c03064880efe3cfcff807a633abd1 category: main optional: false - name: hdf5 - version: 1.14.6 + version: 2.1.0 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.12,<0.10.13.0a0' + aws-c-io: '>=0.26.3,<0.26.4.0a0' + aws-c-s3: '>=0.11.5,<0.11.6.0a0' + aws-c-sdkutils: '>=0.2.4,<0.2.5.0a0' libaec: '>=1.1.5,<2.0a0' libcurl: '>=8.19.0,<9.0a0' libzlib: '>=1.3.2,<2.0a0' @@ -1751,10 +2051,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-1.14.6-nompi_hae35d4c_108.conda + url: https://repo.prefix.dev/conda-forge/win-64/hdf5-2.1.0-nompi_hd96b29f_103.conda hash: - md5: 534b3fa3d3729d903746c258185650b5 - sha256: e85b8f7d3e1020f21eae0248723b887be986bbb6516aaa5678c5740f72b5d0e7 + md5: df70115bbcd247880467466ce665edb2 + sha256: e5af43e16ddd9d75a1f754e022f676dcda51c09dcf2a0bf14541d1ab214773fa category: main optional: false - name: hpack @@ -2060,7 +2360,7 @@ package: category: dev optional: true - name: ipython - version: 9.11.0 + version: 9.12.0 manager: conda platform: linux-64 dependencies: @@ -2075,14 +2375,14 @@ package: python: '' stack_data: '>=0.6.0' traitlets: '>=5.13.0' - url: https://repo.prefix.dev/conda-forge/noarch/ipython-9.11.0-pyhecfbec7_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ipython-9.12.0-pyhecfbec7_0.conda hash: - md5: 326c46b8ec2a1b4964927c7ea55ebf49 - sha256: 1f90e346baab7926bc52d7b60c0625087e96b4fab1bdb9a7fe83ac842312c930 + md5: b293210beb192c3024683bf6a998a0b8 + sha256: 932044bd893f7adce6c9b384b96a72fd3804cc381e76789398c2fae900f21df7 category: dev optional: true - name: ipython - version: 9.11.0 + version: 9.12.0 manager: conda platform: win-64 dependencies: @@ -2097,10 +2397,10 @@ package: python: '' stack_data: '>=0.6.0' traitlets: '>=5.13.0' - url: https://repo.prefix.dev/conda-forge/noarch/ipython-9.11.0-pyhccfa634_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ipython-9.12.0-pyhccfa634_0.conda hash: - md5: a522444721669fe6bb482f8814b969f4 - sha256: 558073f3ceba49ab67d9e698ff2b49ddf1d1d3259de46b50795be1b6d8ec9de4 + md5: 3734e3b6618ea6e04ad08678d8ed7a45 + sha256: a0d3e4c8e4d7b3801377a03de32951f68d77dd1bfe25082c7915f4e6b0aaa463 category: dev optional: true - name: ipython_genutils @@ -2320,27 +2620,27 @@ package: category: main optional: false - name: json5 - version: 0.13.0 + version: 0.14.0 manager: conda platform: linux-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/json5-0.13.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/json5-0.14.0-pyhd8ed1ab_0.conda hash: - md5: 8d5f66ebf832c4ce28d5c37a0e76605c - sha256: ba03ca5a6db38d9f48bd30172e8c512dea7a686a5c7701c6fcdb7b3023dae2ad + md5: 1269891272187518a0a75c286f7d0bbf + sha256: 9daa95bd164c8fa23b3ab196e906ef806141d749eddce2a08baa064f722d25fa category: dev optional: true - name: json5 - version: 0.13.0 + version: 0.14.0 manager: conda platform: win-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/json5-0.13.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/json5-0.14.0-pyhd8ed1ab_0.conda hash: - md5: 8d5f66ebf832c4ce28d5c37a0e76605c - sha256: ba03ca5a6db38d9f48bd30172e8c512dea7a686a5c7701c6fcdb7b3023dae2ad + md5: 1269891272187518a0a75c286f7d0bbf + sha256: 9daa95bd164c8fa23b3ab196e906ef806141d749eddce2a08baa064f722d25fa category: dev optional: true - name: jsonpointer @@ -3346,30 +3646,30 @@ package: category: main optional: false - name: libexpat - version: 2.7.4 + version: 2.7.5 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libexpat-2.7.4-hecca717_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libexpat-2.7.5-hecca717_0.conda hash: - md5: e7f7ce06ec24cfcfb9e36d28cf82ba57 - sha256: d78f1d3bea8c031d2f032b760f36676d87929b18146351c4464c66b0869df3f5 + md5: 49f570f3bc4c874a06ea69b7225753af + sha256: e8c2b57f6aacabdf2f1b0924bd4831ce5071ba080baa4a9e8c0d720588b6794c category: main optional: false - name: libexpat - version: 2.7.4 + version: 2.7.5 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/libexpat-2.7.4-hac47afa_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libexpat-2.7.5-hac47afa_0.conda hash: - md5: 1c1ced969021592407f16ada4573586d - sha256: b31f6fb629c4e17885aaf2082fb30384156d16b48b264e454de4a06a313b533d + md5: bfb43f52f13b7c56e7677aa7a8efdf0c + sha256: 6850c3a4d5dc215b86f58518cfb8752998533d6569b08da8df1da72e7c68e571 category: main optional: false - name: libffi @@ -3926,16 +4226,16 @@ package: category: main optional: false - name: libuuid - version: 2.41.3 + version: 2.41.4 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.41.3-h5347b49_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libuuid-2.41.4-h5347b49_0.conda hash: - md5: db409b7c1720428638e7c0d509d3e1b5 - sha256: 1a7539cfa7df00714e8943e18de0b06cceef6778e420a5ee3a2a145773758aee + md5: 2b4d2e6978dd06af374b50abca6d374b + sha256: eeadbc59678103a9405bae26f5251d744a114fcab79e79d9b68fec36c4cdb43b category: main optional: false - name: libuv @@ -4132,29 +4432,29 @@ package: category: main optional: false - name: llvm-openmp - version: 22.1.1 + version: 22.1.2 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.1-h4922eb0_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-22.1.2-h4922eb0_0.conda hash: - md5: 0e6b63a4861d9b63cde30993bfc0846d - sha256: a8ebe6d456d35bec241974d4268df2fcd108b9de8020cdbce4c74553ec13c126 + md5: 2a60ab96432bc74eedbcda8a528080a1 + sha256: 67fa0977eeb7f983b626aaa815b1e9eba3314f5ea5bf99ca0e91f26221dd9bbb category: main optional: false - name: llvm-openmp - version: 22.1.1 + version: 22.1.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/llvm-openmp-22.1.1-h4fa8253_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-22.1.2-h4fa8253_0.conda hash: - md5: d9f479404fe316e575f4a4575f3df406 - sha256: 64c7fe6490583f3c49c36c2f413e681072102db8abea13a3e1832f44eaf55518 + md5: 29407a30bd93dc8c11c03ca60249a340 + sha256: fa8bd542624507309cbdfc620bdfe546ed823d418e6ba878977d48da7a0f6212 category: main optional: false - name: locket @@ -5098,7 +5398,7 @@ package: category: main optional: false - name: pandas - version: 3.0.1 + version: 3.0.2 manager: conda platform: linux-64 dependencies: @@ -5109,14 +5409,14 @@ package: python: '' python-dateutil: '>=2.8.2' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/pandas-3.0.1-py312h8ecdadd_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pandas-3.0.2-py312h8ecdadd_0.conda hash: - md5: c15e7f8dd2e407188a8b7c0790211206 - sha256: 1fb54cec81ee950078d52ded35746ffd9d3db498321aae18277844fc95184fd9 + md5: 42050f82a0c0f6fa23eda3d93b251c18 + sha256: 4aad0f99a06e799acdd46af0df8f7c8273164cabce8b5c94a44b012b7d1a30a6 category: main optional: false - name: pandas - version: 3.0.1 + version: 3.0.2 manager: conda platform: win-64 dependencies: @@ -5128,10 +5428,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/pandas-3.0.1-py312h95189c4_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/pandas-3.0.2-py312h95189c4_0.conda hash: - md5: 5903912202f323d89021081c7695b467 - sha256: 37b00c754d787a0c67fbdc613d864b59d04ca05de775ab6db7da41a945b41d7e + md5: 40295a121673a91763b71603b26ba5dd + sha256: edb1f9a8dbe24426a23f6ffa0af9ef291c775d1c4c994a30ef60040680d61c11 category: main optional: false - name: pandoc @@ -5645,27 +5945,27 @@ package: category: main optional: false - name: pygments - version: 2.19.2 + version: 2.20.0 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.20.0-pyhd8ed1ab_0.conda hash: - md5: 6b6ece66ebcae2d5f326c77ef2c5a066 - sha256: 5577623b9f6685ece2697c6eb7511b4c9ac5fb607c9babc2646c811b428fd46a + md5: 16c18772b340887160c79a6acc022db0 + sha256: cf70b2f5ad9ae472b71235e5c8a736c9316df3705746de419b59d442e8348e86 category: dev optional: true - name: pygments - version: 2.19.2 + version: 2.20.0 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.20.0-pyhd8ed1ab_0.conda hash: - md5: 6b6ece66ebcae2d5f326c77ef2c5a066 - sha256: 5577623b9f6685ece2697c6eb7511b4c9ac5fb607c9babc2646c811b428fd46a + md5: 16c18772b340887160c79a6acc022db0 + sha256: cf70b2f5ad9ae472b71235e5c8a736c9316df3705746de419b59d442e8348e86 category: dev optional: true - name: pylint @@ -6300,7 +6600,7 @@ package: category: dev optional: true - name: requests - version: 2.33.0 + version: 2.33.1 manager: conda platform: linux-64 dependencies: @@ -6309,14 +6609,14 @@ package: idna: '>=2.5,<4' python: '' urllib3: '>=1.26,<3' - url: https://repo.prefix.dev/conda-forge/noarch/requests-2.33.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/requests-2.33.1-pyhcf101f3_0.conda hash: - md5: bee5ed456361bfe8af502beaf5db82e2 - sha256: fbc7183778e1f9976ae7d812986c227f9d43f841326ac03b5f43f1ac93fa8f3b + md5: 10afbb4dbf06ff959ad25a92ccee6e59 + sha256: c0249bc4bf4c0e8e06d0e7b4d117a5d593cc4ab2144d5006d6d47c83cb0af18e category: dev optional: true - name: requests - version: 2.33.0 + version: 2.33.1 manager: conda platform: win-64 dependencies: @@ -6325,10 +6625,10 @@ package: idna: '>=2.5,<4' python: '' urllib3: '>=1.26,<3' - url: https://repo.prefix.dev/conda-forge/noarch/requests-2.33.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/requests-2.33.1-pyhcf101f3_0.conda hash: - md5: bee5ed456361bfe8af502beaf5db82e2 - sha256: fbc7183778e1f9976ae7d812986c227f9d43f841326ac03b5f43f1ac93fa8f3b + md5: 10afbb4dbf06ff959ad25a92ccee6e59 + sha256: c0249bc4bf4c0e8e06d0e7b4d117a5d593cc4ab2144d5006d6d47c83cb0af18e category: dev optional: true - name: rfc3339-validator @@ -6464,6 +6764,20 @@ package: sha256: 461ddd1d84c180bb682560b50d538e9e264ee5cc78cab5eb2a0f21cc24815bed category: main optional: false +- name: s2n + version: 1.7.1 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=14' + openssl: '>=3.5.5,<4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/s2n-1.7.1-h1cbb8d7_1.conda + hash: + md5: 9d978822b57bafe72ebd3f8b527bba71 + sha256: dbbe4ab36b90427f12d69fc14a8b601b6bca4185c6c4dd67b8046a8da9daec03 + category: main + optional: false - name: scikit-learn version: 1.8.0 manager: conda @@ -7815,27 +8129,27 @@ package: category: main optional: false - name: xyzservices - version: 2025.11.0 + version: 2026.3.0 manager: conda platform: linux-64 dependencies: - python: '>=3.8' - url: https://repo.prefix.dev/conda-forge/noarch/xyzservices-2025.11.0-pyhd8ed1ab_0.conda + python: '>=3.9' + url: https://repo.prefix.dev/conda-forge/noarch/xyzservices-2026.3.0-pyhd8ed1ab_0.conda hash: - md5: 16933322051fa260285f1a44aae91dd6 - sha256: b194a1fbc38f29c563b102ece9d006f7a165bf9074cdfe50563d3bce8cae9f84 + md5: 4487b9c371d0161d54b5c7bbd890c0fc + sha256: 663ea9b00d68c2da309114923924686ab6d3f59ef1b196c5029ba16799e7bb07 category: main optional: false - name: xyzservices - version: 2025.11.0 + version: 2026.3.0 manager: conda platform: win-64 dependencies: - python: '>=3.8' - url: https://repo.prefix.dev/conda-forge/noarch/xyzservices-2025.11.0-pyhd8ed1ab_0.conda + python: '>=3.9' + url: https://repo.prefix.dev/conda-forge/noarch/xyzservices-2026.3.0-pyhd8ed1ab_0.conda hash: - md5: 16933322051fa260285f1a44aae91dd6 - sha256: b194a1fbc38f29c563b102ece9d006f7a165bf9074cdfe50563d3bce8cae9f84 + md5: 4487b9c371d0161d54b5c7bbd890c0fc + sha256: 663ea9b00d68c2da309114923924686ab6d3f59ef1b196c5029ba16799e7bb07 category: main optional: false - name: yaml @@ -8051,7 +8365,7 @@ package: manager: pip platform: linux-64 dependencies: - geoh5py: 0.12.1rc2.dev256+a4d82671 + geoh5py: 0.12.1rc2.dev296+f5eca373 matplotlib: '>=3.10.0,<3.11.0' numpy: '>=2.4.2,<2.5.0' pydantic: '>=2.12.0,<2.13.0' @@ -8069,7 +8383,7 @@ package: manager: pip platform: win-64 dependencies: - geoh5py: 0.12.1rc2.dev256+a4d82671 + geoh5py: 0.12.1rc2.dev296+f5eca373 matplotlib: '>=3.10.0,<3.11.0' numpy: '>=2.4.2,<2.5.0' pydantic: '>=2.12.0,<2.13.0' @@ -8083,7 +8397,7 @@ package: category: main optional: false - name: geoh5py - version: 0.12.1rc2.dev256+a4d82671 + version: 0.12.1rc2.dev296+f5eca373 manager: pip platform: linux-64 dependencies: @@ -8091,16 +8405,16 @@ package: numpy: '>=2.4.0,<2.5.0' pillow: '>=12.1.0,<12.2.0' pydantic: '>=2.12.0,<2.13.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@a4d826715e5f529242e2c7eac2805e05e1ec3027 + url: git+https://github.com/MiraGeoscience/geoh5py.git@f5eca3735bbca573f4cac3925c6f4c0c341d8e28 hash: - sha256: a4d826715e5f529242e2c7eac2805e05e1ec3027 + sha256: f5eca3735bbca573f4cac3925c6f4c0c341d8e28 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@a4d826715e5f529242e2c7eac2805e05e1ec3027 + url: git+https://github.com/MiraGeoscience/geoh5py.git@f5eca3735bbca573f4cac3925c6f4c0c341d8e28 category: main optional: false - name: geoh5py - version: 0.12.1rc2.dev256+a4d82671 + version: 0.12.1rc2.dev296+f5eca373 manager: pip platform: win-64 dependencies: @@ -8108,12 +8422,12 @@ package: numpy: '>=2.4.0,<2.5.0' pillow: '>=12.1.0,<12.2.0' pydantic: '>=2.12.0,<2.13.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@a4d826715e5f529242e2c7eac2805e05e1ec3027 + url: git+https://github.com/MiraGeoscience/geoh5py.git@f5eca3735bbca573f4cac3925c6f4c0c341d8e28 hash: - sha256: a4d826715e5f529242e2c7eac2805e05e1ec3027 + sha256: f5eca3735bbca573f4cac3925c6f4c0c341d8e28 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@a4d826715e5f529242e2c7eac2805e05e1ec3027 + url: git+https://github.com/MiraGeoscience/geoh5py.git@f5eca3735bbca573f4cac3925c6f4c0c341d8e28 category: main optional: false - name: grid-apps @@ -8123,7 +8437,7 @@ package: dependencies: discretize: '>=0.12.0,<0.13.0' geoapps-utils: 0.7.0a3.dev7+eb04741 - geoh5py: 0.12.1rc2.dev256+a4d82671 + geoh5py: 0.12.1rc2.dev296+f5eca373 numpy: '>=2.4.2,<2.5.0' pydantic: '>=2.12.0,<2.13.0' scipy: '>=1.17.0,<1.18.0' @@ -8142,7 +8456,7 @@ package: dependencies: discretize: '>=0.12.0,<0.13.0' geoapps-utils: 0.7.0a3.dev7+eb04741 - geoh5py: 0.12.1rc2.dev256+a4d82671 + geoh5py: 0.12.1rc2.dev296+f5eca373 numpy: '>=2.4.2,<2.5.0' pydantic: '>=2.12.0,<2.13.0' scipy: '>=1.17.0,<1.18.0' diff --git a/py-3.13.conda-lock.yml b/py-3.13.conda-lock.yml index ff185217..6eaf66ee 100644 --- a/py-3.13.conda-lock.yml +++ b/py-3.13.conda-lock.yml @@ -373,6 +373,294 @@ package: sha256: 1b6124230bb4e571b1b9401537ecff575b7b109cc3a21ee019f65e083b8399ab category: dev optional: true +- name: aws-c-auth + version: 0.10.1 + 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.12,<0.10.13.0a0' + aws-c-io: '>=0.26.3,<0.26.4.0a0' + aws-c-sdkutils: '>=0.2.4,<0.2.5.0a0' + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-auth-0.10.1-h2d2dd48_2.conda + hash: + md5: 675ea6d90900350b1dcfa8231a5ea2dd + sha256: 292aa18fe6ab5351710e6416fbd683eaef3aa5b1b7396da9350ff08efc660e4f + category: main + optional: false +- name: aws-c-auth + version: 0.10.1 + 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.12,<0.10.13.0a0' + aws-c-io: '>=0.26.3,<0.26.4.0a0' + aws-c-sdkutils: '>=0.2.4,<0.2.5.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-h5d51246_2.conda + hash: + md5: 908d5d8755564e2c3f3770fca7ff0736 + sha256: f937d40f01493c4799a673f56d70434d6cddb2ec967cf642a39e0e04282a9a1e + category: main + optional: false +- name: aws-c-cal + version: 0.9.13 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + aws-c-common: '>=0.12.6,<0.12.7.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 + hash: + md5: 3c3d02681058c3d206b562b2e3bc337f + sha256: f21d648349a318f4ae457ea5403d542ba6c0e0343b8642038523dd612b2a5064 + category: main + optional: false +- name: aws-c-cal + version: 0.9.13 + manager: conda + platform: win-64 + dependencies: + aws-c-common: '>=0.12.6,<0.12.7.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 + hash: + md5: 7cc4953d504d4e8f3d6f4facb8549465 + sha256: 5f61082caea9fbdd6ba02702935e9dea9997459a7e6c06fd47f21b81aac882fb + category: main + optional: false +- name: aws-c-common + version: 0.12.6 + 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 + hash: + md5: e36ad70a7e0b48f091ed6902f04c23b8 + sha256: 926a5b9de0a586e88669d81de717c8dd3218c51ce55658e8a16af7e7fe87c833 + category: main + optional: false +- name: aws-c-common + version: 0.12.6 + 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 + hash: + md5: b1465f33b05b9af02ad0887c01837831 + sha256: 0627691c34eb3d9fcd18c71346d9f16f83e8e58f9983e792138a2cccf387d18a + category: main + optional: false +- name: aws-c-compression + version: 0.3.2 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + aws-c-common: '>=0.12.6,<0.12.7.0a0' + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-compression-0.3.2-h8b1a151_0.conda + hash: + md5: f16f498641c9e05b645fe65902df661a + sha256: 1838bdc077b77168416801f4715335b65e9223f83641a2c28644f8acd8f9db0e + category: main + optional: false +- name: aws-c-compression + version: 0.3.2 + manager: conda + platform: win-64 + dependencies: + aws-c-common: '>=0.12.6,<0.12.7.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 + hash: + md5: 0385f2340be1776b513258adaf70e208 + sha256: f98fbb797d28de3ae41dbd42590549ee0a2a4e61772f9cc6d1a4fa45d47637de + category: main + optional: false +- name: aws-c-http + version: 0.10.12 + 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-compression: '>=0.3.2,<0.3.3.0a0' + aws-c-io: '>=0.26.3,<0.26.4.0a0' + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-http-0.10.12-h4bacb7b_1.conda + hash: + md5: 7bc920933e5fb225aba86a788164a8f1 + sha256: c6f910d400ef9034493988e8cd37bd4712e42d85921122bcda4ba68d4614b131 + category: main + optional: false +- name: aws-c-http + version: 0.10.12 + 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-compression: '>=0.3.2,<0.3.3.0a0' + aws-c-io: '>=0.26.3,<0.26.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.12-h612f3e8_1.conda + hash: + md5: 26af0e9d7853d27e909ce01c287692b4 + sha256: dc297fbce04335f5f80b30bcdee1925ed4a0d95e7a2382523870c6b4981ca1b2 + category: main + optional: false +- name: aws-c-io + version: 0.26.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' + libgcc: '>=14' + s2n: '>=1.7.1,<1.7.2.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-io-0.26.3-hc87160b_0.conda + hash: + md5: dde6a3e4fe6bb2ecd2a7050dd1e701fb + sha256: c66ebb7815949db72bab7c86bf477197e4bc6937c381cf32248bdd1ce496db00 + category: main + optional: false +- name: aws-c-io + version: 0.26.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' + 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_0.conda + hash: + md5: ce36c60ed6b15c8dbb7ccddec4ebf57f + sha256: 3c9d50fb7895df4edd72d177299551608c24d8b0b82db0cf34c8e2bf6644979c + category: main + optional: false +- name: aws-c-s3 + version: 0.11.5 + 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.12,<0.10.13.0a0' + aws-c-io: '>=0.26.3,<0.26.4.0a0' + aws-checksums: '>=0.2.10,<0.2.11.0a0' + libgcc: '>=14' + openssl: '>=3.5.5,<4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-s3-0.11.5-h6d69fc9_5.conda + hash: + md5: 4c5c16bf1133dcfe100f33dd4470998e + sha256: c15869656f5fbebe27cc5aa58b23831f75d85502d324fedd7ee7e552c79b495d + category: main + optional: false +- name: aws-c-s3 + version: 0.11.5 + 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.12,<0.10.13.0a0' + aws-c-io: '>=0.26.3,<0.26.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.11.5-h87bd87b_5.conda + hash: + md5: 2d90128559ec4b3c78d1b889b8b13b50 + sha256: 62367b6d4d8aa1b43fb63e51d779bb829dfdd53d908c1b6700efa23255dd38db + category: main + optional: false +- name: aws-c-sdkutils + version: 0.2.4 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + aws-c-common: '>=0.12.6,<0.12.7.0a0' + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-sdkutils-0.2.4-h8b1a151_4.conda + hash: + md5: c7e3e08b7b1b285524ab9d74162ce40b + sha256: 9d62c5029f6f8219368a8665f0a549da572dc777f52413b7d75609cacdbc02cc + category: main + optional: false +- name: aws-c-sdkutils + version: 0.2.4 + manager: conda + platform: win-64 + dependencies: + aws-c-common: '>=0.12.6,<0.12.7.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 + hash: + md5: 3c97faee5be6fd0069410cf2bca71c85 + sha256: c86c30edba7457e04d905c959328142603b62d7d1888aed893b2e21cca9c302c + category: main + optional: false +- name: aws-checksums + version: 0.2.10 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + aws-c-common: '>=0.12.6,<0.12.7.0a0' + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/aws-checksums-0.2.10-h8b1a151_0.conda + hash: + md5: f8e1bcc5c7d839c5882e94498791be08 + sha256: 09472dd5fa4473cffd44741ee4c1112f2c76d7168d1343de53c2ad283dc1efa6 + category: main + optional: false +- name: aws-checksums + version: 0.2.10 + manager: conda + platform: win-64 + dependencies: + aws-c-common: '>=0.12.6,<0.12.7.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 + hash: + md5: 96e950e5007fb691322db578736aba52 + sha256: 505b2365bbf3c197c9c2e007ba8262bcdaaddc970f84ce67cf73868ca2990989 + category: main + optional: false - name: babel version: 2.18.0 manager: conda @@ -1565,27 +1853,27 @@ package: category: main optional: false - name: fsspec - version: 2026.2.0 + version: 2026.3.0 manager: conda platform: linux-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2026.2.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2026.3.0-pyhd8ed1ab_0.conda hash: - md5: 496c6c9411a6284addf55c898d6ed8d7 - sha256: 239b67edf1c5e5caed52cf36e9bed47cb21b37721779828c130e6b3fd9793c1b + md5: c18d2ba7577cdc618a20d45f1e31d14b + sha256: b4a7aec32167502dd4a2d1fb1208c63760828d7111339aa5b305b2d776afa70f category: main optional: false - name: fsspec - version: 2026.2.0 + version: 2026.3.0 manager: conda platform: win-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2026.2.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2026.3.0-pyhd8ed1ab_0.conda hash: - md5: 496c6c9411a6284addf55c898d6ed8d7 - sha256: 239b67edf1c5e5caed52cf36e9bed47cb21b37721779828c130e6b3fd9793c1b + md5: c18d2ba7577cdc618a20d45f1e31d14b + sha256: b4a7aec32167502dd4a2d1fb1208c63760828d7111339aa5b305b2d776afa70f category: main optional: false - name: geoana @@ -1687,15 +1975,15 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' cached-property: '' - hdf5: '>=1.14.6,<1.14.7.0a0' + hdf5: '>=2.1.0,<3.0a0' libgcc: '>=14' numpy: '>=1.23,<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_py313h253c126_100.conda + url: https://repo.prefix.dev/conda-forge/linux-64/h5py-3.16.0-nompi_py313h22c32d4_101.conda hash: - md5: 0f91633d043df7c2fd077944ef483546 - sha256: 0a05551c6007d680e8f1a9b121e6ca100b950151437f3bb1639e1acec2dd02e5 + md5: 1ff13bf3fc5366d6c9de497379f424e4 + sha256: 1290902d886f4d19c929655e85fe01def942bb6ae2a4f37a2daff922d6b42d69 category: main optional: false - name: h5py @@ -1704,25 +1992,31 @@ package: platform: win-64 dependencies: cached-property: '' - hdf5: '>=1.14.6,<1.14.7.0a0' + hdf5: '>=2.1.0,<3.0a0' numpy: '>=1.23,<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_py313hf7f959b_100.conda + url: https://repo.prefix.dev/conda-forge/win-64/h5py-3.16.0-nompi_py313hd050a09_101.conda hash: - md5: 71eeb5400fe049254e20bb01c3d3ee61 - sha256: 4e31e6264a5f0af4f1703d3f10ba3c7ea8869c22e11c17bc58e485d8ec1a1899 + md5: c2a978228bf62d24e3355054ffec123b + sha256: 3f6a52ebb7e4498e32745171f41859bafd17d72700964f892f616c886eb4b855 category: main optional: false - name: hdf5 - version: 1.14.6 + version: 2.1.0 manager: conda 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.12,<0.10.13.0a0' + aws-c-io: '>=0.26.3,<0.26.4.0a0' + aws-c-s3: '>=0.11.5,<0.11.6.0a0' + aws-c-sdkutils: '>=0.2.4,<0.2.5.0a0' libaec: '>=1.1.5,<2.0a0' libcurl: '>=8.19.0,<9.0a0' libgcc: '>=14' @@ -1731,17 +2025,23 @@ package: libstdcxx: '>=14' libzlib: '>=1.3.2,<2.0a0' openssl: '>=3.5.5,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/hdf5-1.14.6-nompi_h19486de_108.conda + url: https://repo.prefix.dev/conda-forge/linux-64/hdf5-2.1.0-nompi_hd4fcb43_103.conda hash: - md5: cbb2d15a6e9aeb85f18f1a8f01c29b81 - sha256: 795c3a34643aa766450b8363b8c5dd6e65ad40e5cc64d138c3678d05068a380a + md5: dcb50cd5fed839129afb25f1061f6b7f + sha256: 79c3592e00ce9974e3d08e4bd28bfbe9f86c03064880efe3cfcff807a633abd1 category: main optional: false - name: hdf5 - version: 1.14.6 + version: 2.1.0 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.12,<0.10.13.0a0' + aws-c-io: '>=0.26.3,<0.26.4.0a0' + aws-c-s3: '>=0.11.5,<0.11.6.0a0' + aws-c-sdkutils: '>=0.2.4,<0.2.5.0a0' libaec: '>=1.1.5,<2.0a0' libcurl: '>=8.19.0,<9.0a0' libzlib: '>=1.3.2,<2.0a0' @@ -1749,10 +2049,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-1.14.6-nompi_hae35d4c_108.conda + url: https://repo.prefix.dev/conda-forge/win-64/hdf5-2.1.0-nompi_hd96b29f_103.conda hash: - md5: 534b3fa3d3729d903746c258185650b5 - sha256: e85b8f7d3e1020f21eae0248723b887be986bbb6516aaa5678c5740f72b5d0e7 + md5: df70115bbcd247880467466ce665edb2 + sha256: e5af43e16ddd9d75a1f754e022f676dcda51c09dcf2a0bf14541d1ab214773fa category: main optional: false - name: hpack @@ -2058,7 +2358,7 @@ package: category: dev optional: true - name: ipython - version: 9.11.0 + version: 9.12.0 manager: conda platform: linux-64 dependencies: @@ -2073,14 +2373,14 @@ package: python: '' stack_data: '>=0.6.0' traitlets: '>=5.13.0' - url: https://repo.prefix.dev/conda-forge/noarch/ipython-9.11.0-pyhecfbec7_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ipython-9.12.0-pyhecfbec7_0.conda hash: - md5: 326c46b8ec2a1b4964927c7ea55ebf49 - sha256: 1f90e346baab7926bc52d7b60c0625087e96b4fab1bdb9a7fe83ac842312c930 + md5: b293210beb192c3024683bf6a998a0b8 + sha256: 932044bd893f7adce6c9b384b96a72fd3804cc381e76789398c2fae900f21df7 category: dev optional: true - name: ipython - version: 9.11.0 + version: 9.12.0 manager: conda platform: win-64 dependencies: @@ -2095,10 +2395,10 @@ package: python: '' stack_data: '>=0.6.0' traitlets: '>=5.13.0' - url: https://repo.prefix.dev/conda-forge/noarch/ipython-9.11.0-pyhccfa634_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ipython-9.12.0-pyhccfa634_0.conda hash: - md5: a522444721669fe6bb482f8814b969f4 - sha256: 558073f3ceba49ab67d9e698ff2b49ddf1d1d3259de46b50795be1b6d8ec9de4 + md5: 3734e3b6618ea6e04ad08678d8ed7a45 + sha256: a0d3e4c8e4d7b3801377a03de32951f68d77dd1bfe25082c7915f4e6b0aaa463 category: dev optional: true - name: ipython_genutils @@ -2318,27 +2618,27 @@ package: category: main optional: false - name: json5 - version: 0.13.0 + version: 0.14.0 manager: conda platform: linux-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/json5-0.13.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/json5-0.14.0-pyhd8ed1ab_0.conda hash: - md5: 8d5f66ebf832c4ce28d5c37a0e76605c - sha256: ba03ca5a6db38d9f48bd30172e8c512dea7a686a5c7701c6fcdb7b3023dae2ad + md5: 1269891272187518a0a75c286f7d0bbf + sha256: 9daa95bd164c8fa23b3ab196e906ef806141d749eddce2a08baa064f722d25fa category: dev optional: true - name: json5 - version: 0.13.0 + version: 0.14.0 manager: conda platform: win-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/json5-0.13.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/json5-0.14.0-pyhd8ed1ab_0.conda hash: - md5: 8d5f66ebf832c4ce28d5c37a0e76605c - sha256: ba03ca5a6db38d9f48bd30172e8c512dea7a686a5c7701c6fcdb7b3023dae2ad + md5: 1269891272187518a0a75c286f7d0bbf + sha256: 9daa95bd164c8fa23b3ab196e906ef806141d749eddce2a08baa064f722d25fa category: dev optional: true - name: jsonpointer @@ -3344,30 +3644,30 @@ package: category: main optional: false - name: libexpat - version: 2.7.4 + version: 2.7.5 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libexpat-2.7.4-hecca717_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libexpat-2.7.5-hecca717_0.conda hash: - md5: e7f7ce06ec24cfcfb9e36d28cf82ba57 - sha256: d78f1d3bea8c031d2f032b760f36676d87929b18146351c4464c66b0869df3f5 + md5: 49f570f3bc4c874a06ea69b7225753af + sha256: e8c2b57f6aacabdf2f1b0924bd4831ce5071ba080baa4a9e8c0d720588b6794c category: main optional: false - name: libexpat - version: 2.7.4 + version: 2.7.5 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/libexpat-2.7.4-hac47afa_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libexpat-2.7.5-hac47afa_0.conda hash: - md5: 1c1ced969021592407f16ada4573586d - sha256: b31f6fb629c4e17885aaf2082fb30384156d16b48b264e454de4a06a313b533d + md5: bfb43f52f13b7c56e7677aa7a8efdf0c + sha256: 6850c3a4d5dc215b86f58518cfb8752998533d6569b08da8df1da72e7c68e571 category: main optional: false - name: libffi @@ -3938,16 +4238,16 @@ package: category: main optional: false - name: libuuid - version: 2.41.3 + version: 2.41.4 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.41.3-h5347b49_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libuuid-2.41.4-h5347b49_0.conda hash: - md5: db409b7c1720428638e7c0d509d3e1b5 - sha256: 1a7539cfa7df00714e8943e18de0b06cceef6778e420a5ee3a2a145773758aee + md5: 2b4d2e6978dd06af374b50abca6d374b + sha256: eeadbc59678103a9405bae26f5251d744a114fcab79e79d9b68fec36c4cdb43b category: main optional: false - name: libuv @@ -4132,29 +4432,29 @@ package: category: main optional: false - name: llvm-openmp - version: 22.1.1 + version: 22.1.2 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.1-h4922eb0_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-22.1.2-h4922eb0_0.conda hash: - md5: 0e6b63a4861d9b63cde30993bfc0846d - sha256: a8ebe6d456d35bec241974d4268df2fcd108b9de8020cdbce4c74553ec13c126 + md5: 2a60ab96432bc74eedbcda8a528080a1 + sha256: 67fa0977eeb7f983b626aaa815b1e9eba3314f5ea5bf99ca0e91f26221dd9bbb category: main optional: false - name: llvm-openmp - version: 22.1.1 + version: 22.1.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/llvm-openmp-22.1.1-h4fa8253_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-22.1.2-h4fa8253_0.conda hash: - md5: d9f479404fe316e575f4a4575f3df406 - sha256: 64c7fe6490583f3c49c36c2f413e681072102db8abea13a3e1832f44eaf55518 + md5: 29407a30bd93dc8c11c03ca60249a340 + sha256: fa8bd542624507309cbdfc620bdfe546ed823d418e6ba878977d48da7a0f6212 category: main optional: false - name: locket @@ -5098,7 +5398,7 @@ package: category: main optional: false - name: pandas - version: 3.0.1 + version: 3.0.2 manager: conda platform: linux-64 dependencies: @@ -5109,14 +5409,14 @@ package: python: '' python-dateutil: '>=2.8.2' python_abi: 3.13.* - url: https://repo.prefix.dev/conda-forge/linux-64/pandas-3.0.1-py313hbfd7664_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pandas-3.0.2-py313hbfd7664_0.conda hash: - md5: 1c8807728f0333228766dee685394e16 - sha256: 01a14cb74d9773674d07ab250b70a7fbd140edfb19cf3ec2ba70147bdaec13d2 + md5: 6a036e42f4e47720804f35d1897336a1 + sha256: 6aa7b7b234805c673fd63ef60432362e6cc130a3ae09b5ed2b40d74a2bd6c7bb category: main optional: false - name: pandas - version: 3.0.1 + version: 3.0.2 manager: conda platform: win-64 dependencies: @@ -5128,10 +5428,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/pandas-3.0.1-py313h26f5e95_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/pandas-3.0.2-py313h26f5e95_0.conda hash: - md5: af3049574f7e183a5aed311ecfa2c394 - sha256: 8f27705b1c152f2710e387c58e7c042c855ef3effd2d10e044dbaa63b3a6af65 + md5: 4e6201ece5bfb083570145791feab397 + sha256: 98dbd606c5c81e68e719f12d76959ebc0ed16466eb067be78d465865d1222277 category: main optional: false - name: pandoc @@ -5641,27 +5941,27 @@ package: category: main optional: false - name: pygments - version: 2.19.2 + version: 2.20.0 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.20.0-pyhd8ed1ab_0.conda hash: - md5: 6b6ece66ebcae2d5f326c77ef2c5a066 - sha256: 5577623b9f6685ece2697c6eb7511b4c9ac5fb607c9babc2646c811b428fd46a + md5: 16c18772b340887160c79a6acc022db0 + sha256: cf70b2f5ad9ae472b71235e5c8a736c9316df3705746de419b59d442e8348e86 category: dev optional: true - name: pygments - version: 2.19.2 + version: 2.20.0 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.20.0-pyhd8ed1ab_0.conda hash: - md5: 6b6ece66ebcae2d5f326c77ef2c5a066 - sha256: 5577623b9f6685ece2697c6eb7511b4c9ac5fb607c9babc2646c811b428fd46a + md5: 16c18772b340887160c79a6acc022db0 + sha256: cf70b2f5ad9ae472b71235e5c8a736c9316df3705746de419b59d442e8348e86 category: dev optional: true - name: pylint @@ -6298,7 +6598,7 @@ package: category: dev optional: true - name: requests - version: 2.33.0 + version: 2.33.1 manager: conda platform: linux-64 dependencies: @@ -6307,14 +6607,14 @@ package: idna: '>=2.5,<4' python: '' urllib3: '>=1.26,<3' - url: https://repo.prefix.dev/conda-forge/noarch/requests-2.33.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/requests-2.33.1-pyhcf101f3_0.conda hash: - md5: bee5ed456361bfe8af502beaf5db82e2 - sha256: fbc7183778e1f9976ae7d812986c227f9d43f841326ac03b5f43f1ac93fa8f3b + md5: 10afbb4dbf06ff959ad25a92ccee6e59 + sha256: c0249bc4bf4c0e8e06d0e7b4d117a5d593cc4ab2144d5006d6d47c83cb0af18e category: dev optional: true - name: requests - version: 2.33.0 + version: 2.33.1 manager: conda platform: win-64 dependencies: @@ -6323,10 +6623,10 @@ package: idna: '>=2.5,<4' python: '' urllib3: '>=1.26,<3' - url: https://repo.prefix.dev/conda-forge/noarch/requests-2.33.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/requests-2.33.1-pyhcf101f3_0.conda hash: - md5: bee5ed456361bfe8af502beaf5db82e2 - sha256: fbc7183778e1f9976ae7d812986c227f9d43f841326ac03b5f43f1ac93fa8f3b + md5: 10afbb4dbf06ff959ad25a92ccee6e59 + sha256: c0249bc4bf4c0e8e06d0e7b4d117a5d593cc4ab2144d5006d6d47c83cb0af18e category: dev optional: true - name: rfc3339-validator @@ -6462,6 +6762,20 @@ package: sha256: 461ddd1d84c180bb682560b50d538e9e264ee5cc78cab5eb2a0f21cc24815bed category: main optional: false +- name: s2n + version: 1.7.1 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=14' + openssl: '>=3.5.5,<4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/s2n-1.7.1-h1cbb8d7_1.conda + hash: + md5: 9d978822b57bafe72ebd3f8b527bba71 + sha256: dbbe4ab36b90427f12d69fc14a8b601b6bca4185c6c4dd67b8046a8da9daec03 + category: main + optional: false - name: scikit-learn version: 1.8.0 manager: conda @@ -7756,27 +8070,27 @@ package: category: main optional: false - name: xyzservices - version: 2025.11.0 + version: 2026.3.0 manager: conda platform: linux-64 dependencies: - python: '>=3.8' - url: https://repo.prefix.dev/conda-forge/noarch/xyzservices-2025.11.0-pyhd8ed1ab_0.conda + python: '>=3.9' + url: https://repo.prefix.dev/conda-forge/noarch/xyzservices-2026.3.0-pyhd8ed1ab_0.conda hash: - md5: 16933322051fa260285f1a44aae91dd6 - sha256: b194a1fbc38f29c563b102ece9d006f7a165bf9074cdfe50563d3bce8cae9f84 + md5: 4487b9c371d0161d54b5c7bbd890c0fc + sha256: 663ea9b00d68c2da309114923924686ab6d3f59ef1b196c5029ba16799e7bb07 category: main optional: false - name: xyzservices - version: 2025.11.0 + version: 2026.3.0 manager: conda platform: win-64 dependencies: - python: '>=3.8' - url: https://repo.prefix.dev/conda-forge/noarch/xyzservices-2025.11.0-pyhd8ed1ab_0.conda + python: '>=3.9' + url: https://repo.prefix.dev/conda-forge/noarch/xyzservices-2026.3.0-pyhd8ed1ab_0.conda hash: - md5: 16933322051fa260285f1a44aae91dd6 - sha256: b194a1fbc38f29c563b102ece9d006f7a165bf9074cdfe50563d3bce8cae9f84 + md5: 4487b9c371d0161d54b5c7bbd890c0fc + sha256: 663ea9b00d68c2da309114923924686ab6d3f59ef1b196c5029ba16799e7bb07 category: main optional: false - name: yaml @@ -7992,7 +8306,7 @@ package: manager: pip platform: linux-64 dependencies: - geoh5py: 0.12.1rc2.dev256+a4d82671 + geoh5py: 0.12.1rc2.dev296+f5eca373 matplotlib: '>=3.10.0,<3.11.0' numpy: '>=2.4.2,<2.5.0' pydantic: '>=2.12.0,<2.13.0' @@ -8010,7 +8324,7 @@ package: manager: pip platform: win-64 dependencies: - geoh5py: 0.12.1rc2.dev256+a4d82671 + geoh5py: 0.12.1rc2.dev296+f5eca373 matplotlib: '>=3.10.0,<3.11.0' numpy: '>=2.4.2,<2.5.0' pydantic: '>=2.12.0,<2.13.0' @@ -8024,7 +8338,7 @@ package: category: main optional: false - name: geoh5py - version: 0.12.1rc2.dev256+a4d82671 + version: 0.12.1rc2.dev296+f5eca373 manager: pip platform: linux-64 dependencies: @@ -8032,16 +8346,16 @@ package: numpy: '>=2.4.0,<2.5.0' pillow: '>=12.1.0,<12.2.0' pydantic: '>=2.12.0,<2.13.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@a4d826715e5f529242e2c7eac2805e05e1ec3027 + url: git+https://github.com/MiraGeoscience/geoh5py.git@f5eca3735bbca573f4cac3925c6f4c0c341d8e28 hash: - sha256: a4d826715e5f529242e2c7eac2805e05e1ec3027 + sha256: f5eca3735bbca573f4cac3925c6f4c0c341d8e28 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@a4d826715e5f529242e2c7eac2805e05e1ec3027 + url: git+https://github.com/MiraGeoscience/geoh5py.git@f5eca3735bbca573f4cac3925c6f4c0c341d8e28 category: main optional: false - name: geoh5py - version: 0.12.1rc2.dev256+a4d82671 + version: 0.12.1rc2.dev296+f5eca373 manager: pip platform: win-64 dependencies: @@ -8049,12 +8363,12 @@ package: numpy: '>=2.4.0,<2.5.0' pillow: '>=12.1.0,<12.2.0' pydantic: '>=2.12.0,<2.13.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@a4d826715e5f529242e2c7eac2805e05e1ec3027 + url: git+https://github.com/MiraGeoscience/geoh5py.git@f5eca3735bbca573f4cac3925c6f4c0c341d8e28 hash: - sha256: a4d826715e5f529242e2c7eac2805e05e1ec3027 + sha256: f5eca3735bbca573f4cac3925c6f4c0c341d8e28 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@a4d826715e5f529242e2c7eac2805e05e1ec3027 + url: git+https://github.com/MiraGeoscience/geoh5py.git@f5eca3735bbca573f4cac3925c6f4c0c341d8e28 category: main optional: false - name: grid-apps @@ -8064,7 +8378,7 @@ package: dependencies: discretize: '>=0.12.0,<0.13.0' geoapps-utils: 0.7.0a3.dev7+eb04741 - geoh5py: 0.12.1rc2.dev256+a4d82671 + geoh5py: 0.12.1rc2.dev296+f5eca373 numpy: '>=2.4.2,<2.5.0' pydantic: '>=2.12.0,<2.13.0' scipy: '>=1.17.0,<1.18.0' @@ -8083,7 +8397,7 @@ package: dependencies: discretize: '>=0.12.0,<0.13.0' geoapps-utils: 0.7.0a3.dev7+eb04741 - geoh5py: 0.12.1rc2.dev256+a4d82671 + geoh5py: 0.12.1rc2.dev296+f5eca373 numpy: '>=2.4.2,<2.5.0' pydantic: '>=2.12.0,<2.13.0' scipy: '>=1.17.0,<1.18.0' diff --git a/py-3.14.conda-lock.yml b/py-3.14.conda-lock.yml index 0e8fa6d5..149dfa99 100644 --- a/py-3.14.conda-lock.yml +++ b/py-3.14.conda-lock.yml @@ -373,6 +373,294 @@ package: sha256: 1b6124230bb4e571b1b9401537ecff575b7b109cc3a21ee019f65e083b8399ab category: dev optional: true +- name: aws-c-auth + version: 0.10.1 + 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.12,<0.10.13.0a0' + aws-c-io: '>=0.26.3,<0.26.4.0a0' + aws-c-sdkutils: '>=0.2.4,<0.2.5.0a0' + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-auth-0.10.1-h2d2dd48_2.conda + hash: + md5: 675ea6d90900350b1dcfa8231a5ea2dd + sha256: 292aa18fe6ab5351710e6416fbd683eaef3aa5b1b7396da9350ff08efc660e4f + category: main + optional: false +- name: aws-c-auth + version: 0.10.1 + 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.12,<0.10.13.0a0' + aws-c-io: '>=0.26.3,<0.26.4.0a0' + aws-c-sdkutils: '>=0.2.4,<0.2.5.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-h5d51246_2.conda + hash: + md5: 908d5d8755564e2c3f3770fca7ff0736 + sha256: f937d40f01493c4799a673f56d70434d6cddb2ec967cf642a39e0e04282a9a1e + category: main + optional: false +- name: aws-c-cal + version: 0.9.13 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + aws-c-common: '>=0.12.6,<0.12.7.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 + hash: + md5: 3c3d02681058c3d206b562b2e3bc337f + sha256: f21d648349a318f4ae457ea5403d542ba6c0e0343b8642038523dd612b2a5064 + category: main + optional: false +- name: aws-c-cal + version: 0.9.13 + manager: conda + platform: win-64 + dependencies: + aws-c-common: '>=0.12.6,<0.12.7.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 + hash: + md5: 7cc4953d504d4e8f3d6f4facb8549465 + sha256: 5f61082caea9fbdd6ba02702935e9dea9997459a7e6c06fd47f21b81aac882fb + category: main + optional: false +- name: aws-c-common + version: 0.12.6 + 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 + hash: + md5: e36ad70a7e0b48f091ed6902f04c23b8 + sha256: 926a5b9de0a586e88669d81de717c8dd3218c51ce55658e8a16af7e7fe87c833 + category: main + optional: false +- name: aws-c-common + version: 0.12.6 + 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 + hash: + md5: b1465f33b05b9af02ad0887c01837831 + sha256: 0627691c34eb3d9fcd18c71346d9f16f83e8e58f9983e792138a2cccf387d18a + category: main + optional: false +- name: aws-c-compression + version: 0.3.2 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + aws-c-common: '>=0.12.6,<0.12.7.0a0' + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-compression-0.3.2-h8b1a151_0.conda + hash: + md5: f16f498641c9e05b645fe65902df661a + sha256: 1838bdc077b77168416801f4715335b65e9223f83641a2c28644f8acd8f9db0e + category: main + optional: false +- name: aws-c-compression + version: 0.3.2 + manager: conda + platform: win-64 + dependencies: + aws-c-common: '>=0.12.6,<0.12.7.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 + hash: + md5: 0385f2340be1776b513258adaf70e208 + sha256: f98fbb797d28de3ae41dbd42590549ee0a2a4e61772f9cc6d1a4fa45d47637de + category: main + optional: false +- name: aws-c-http + version: 0.10.12 + 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-compression: '>=0.3.2,<0.3.3.0a0' + aws-c-io: '>=0.26.3,<0.26.4.0a0' + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-http-0.10.12-h4bacb7b_1.conda + hash: + md5: 7bc920933e5fb225aba86a788164a8f1 + sha256: c6f910d400ef9034493988e8cd37bd4712e42d85921122bcda4ba68d4614b131 + category: main + optional: false +- name: aws-c-http + version: 0.10.12 + 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-compression: '>=0.3.2,<0.3.3.0a0' + aws-c-io: '>=0.26.3,<0.26.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.12-h612f3e8_1.conda + hash: + md5: 26af0e9d7853d27e909ce01c287692b4 + sha256: dc297fbce04335f5f80b30bcdee1925ed4a0d95e7a2382523870c6b4981ca1b2 + category: main + optional: false +- name: aws-c-io + version: 0.26.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' + libgcc: '>=14' + s2n: '>=1.7.1,<1.7.2.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-io-0.26.3-hc87160b_0.conda + hash: + md5: dde6a3e4fe6bb2ecd2a7050dd1e701fb + sha256: c66ebb7815949db72bab7c86bf477197e4bc6937c381cf32248bdd1ce496db00 + category: main + optional: false +- name: aws-c-io + version: 0.26.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' + 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_0.conda + hash: + md5: ce36c60ed6b15c8dbb7ccddec4ebf57f + sha256: 3c9d50fb7895df4edd72d177299551608c24d8b0b82db0cf34c8e2bf6644979c + category: main + optional: false +- name: aws-c-s3 + version: 0.11.5 + 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.12,<0.10.13.0a0' + aws-c-io: '>=0.26.3,<0.26.4.0a0' + aws-checksums: '>=0.2.10,<0.2.11.0a0' + libgcc: '>=14' + openssl: '>=3.5.5,<4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-s3-0.11.5-h6d69fc9_5.conda + hash: + md5: 4c5c16bf1133dcfe100f33dd4470998e + sha256: c15869656f5fbebe27cc5aa58b23831f75d85502d324fedd7ee7e552c79b495d + category: main + optional: false +- name: aws-c-s3 + version: 0.11.5 + 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.12,<0.10.13.0a0' + aws-c-io: '>=0.26.3,<0.26.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.11.5-h87bd87b_5.conda + hash: + md5: 2d90128559ec4b3c78d1b889b8b13b50 + sha256: 62367b6d4d8aa1b43fb63e51d779bb829dfdd53d908c1b6700efa23255dd38db + category: main + optional: false +- name: aws-c-sdkutils + version: 0.2.4 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + aws-c-common: '>=0.12.6,<0.12.7.0a0' + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-sdkutils-0.2.4-h8b1a151_4.conda + hash: + md5: c7e3e08b7b1b285524ab9d74162ce40b + sha256: 9d62c5029f6f8219368a8665f0a549da572dc777f52413b7d75609cacdbc02cc + category: main + optional: false +- name: aws-c-sdkutils + version: 0.2.4 + manager: conda + platform: win-64 + dependencies: + aws-c-common: '>=0.12.6,<0.12.7.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 + hash: + md5: 3c97faee5be6fd0069410cf2bca71c85 + sha256: c86c30edba7457e04d905c959328142603b62d7d1888aed893b2e21cca9c302c + category: main + optional: false +- name: aws-checksums + version: 0.2.10 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + aws-c-common: '>=0.12.6,<0.12.7.0a0' + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/aws-checksums-0.2.10-h8b1a151_0.conda + hash: + md5: f8e1bcc5c7d839c5882e94498791be08 + sha256: 09472dd5fa4473cffd44741ee4c1112f2c76d7168d1343de53c2ad283dc1efa6 + category: main + optional: false +- name: aws-checksums + version: 0.2.10 + manager: conda + platform: win-64 + dependencies: + aws-c-common: '>=0.12.6,<0.12.7.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 + hash: + md5: 96e950e5007fb691322db578736aba52 + sha256: 505b2365bbf3c197c9c2e007ba8262bcdaaddc970f84ce67cf73868ca2990989 + category: main + optional: false - name: babel version: 2.18.0 manager: conda @@ -1551,27 +1839,27 @@ package: category: main optional: false - name: fsspec - version: 2026.2.0 + version: 2026.3.0 manager: conda platform: linux-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2026.2.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2026.3.0-pyhd8ed1ab_0.conda hash: - md5: 496c6c9411a6284addf55c898d6ed8d7 - sha256: 239b67edf1c5e5caed52cf36e9bed47cb21b37721779828c130e6b3fd9793c1b + md5: c18d2ba7577cdc618a20d45f1e31d14b + sha256: b4a7aec32167502dd4a2d1fb1208c63760828d7111339aa5b305b2d776afa70f category: main optional: false - name: fsspec - version: 2026.2.0 + version: 2026.3.0 manager: conda platform: win-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2026.2.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2026.3.0-pyhd8ed1ab_0.conda hash: - md5: 496c6c9411a6284addf55c898d6ed8d7 - sha256: 239b67edf1c5e5caed52cf36e9bed47cb21b37721779828c130e6b3fd9793c1b + md5: c18d2ba7577cdc618a20d45f1e31d14b + sha256: b4a7aec32167502dd4a2d1fb1208c63760828d7111339aa5b305b2d776afa70f category: main optional: false - name: geoana @@ -1673,15 +1961,15 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' cached-property: '' - hdf5: '>=1.14.6,<1.14.7.0a0' + hdf5: '>=2.1.0,<3.0a0' libgcc: '>=14' numpy: '>=1.23,<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_py314hc32fe06_100.conda + url: https://repo.prefix.dev/conda-forge/linux-64/h5py-3.16.0-nompi_py314hddf7a69_101.conda hash: - md5: eeeea74b06c3f0b1a5d0ae8cf44a01e5 - sha256: 735de61b2f0527b4198c8da177bff7b850f589131d3a285ce0da7e3496248577 + md5: 33711e500e3f38afb55c07b998682291 + sha256: b3a1e9eafce21ab69fc66bd1f818a010e2ecd4d6a40e8680208d14d8bd30d7c4 category: main optional: false - name: h5py @@ -1690,25 +1978,31 @@ package: platform: win-64 dependencies: cached-property: '' - hdf5: '>=1.14.6,<1.14.7.0a0' + hdf5: '>=2.1.0,<3.0a0' numpy: '>=1.23,<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_py314hc249e69_100.conda + url: https://repo.prefix.dev/conda-forge/win-64/h5py-3.16.0-nompi_py314h02517ec_101.conda hash: - md5: dc375f48a723a1f3266ee7efbc7d3173 - sha256: 0faddb8f298b77067d32690e48fdbc72ce327a52847436f03597899f9e448472 + md5: 66999c8dccb39c3857298a2009cf6954 + sha256: ba38a5b6f00e72755b4bef537f5ffa10e2947019000ee36a0a4cca466b7794c9 category: main optional: false - name: hdf5 - version: 1.14.6 + version: 2.1.0 manager: conda 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.12,<0.10.13.0a0' + aws-c-io: '>=0.26.3,<0.26.4.0a0' + aws-c-s3: '>=0.11.5,<0.11.6.0a0' + aws-c-sdkutils: '>=0.2.4,<0.2.5.0a0' libaec: '>=1.1.5,<2.0a0' libcurl: '>=8.19.0,<9.0a0' libgcc: '>=14' @@ -1717,17 +2011,23 @@ package: libstdcxx: '>=14' libzlib: '>=1.3.2,<2.0a0' openssl: '>=3.5.5,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/hdf5-1.14.6-nompi_h19486de_108.conda + url: https://repo.prefix.dev/conda-forge/linux-64/hdf5-2.1.0-nompi_hd4fcb43_103.conda hash: - md5: cbb2d15a6e9aeb85f18f1a8f01c29b81 - sha256: 795c3a34643aa766450b8363b8c5dd6e65ad40e5cc64d138c3678d05068a380a + md5: dcb50cd5fed839129afb25f1061f6b7f + sha256: 79c3592e00ce9974e3d08e4bd28bfbe9f86c03064880efe3cfcff807a633abd1 category: main optional: false - name: hdf5 - version: 1.14.6 + version: 2.1.0 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.12,<0.10.13.0a0' + aws-c-io: '>=0.26.3,<0.26.4.0a0' + aws-c-s3: '>=0.11.5,<0.11.6.0a0' + aws-c-sdkutils: '>=0.2.4,<0.2.5.0a0' libaec: '>=1.1.5,<2.0a0' libcurl: '>=8.19.0,<9.0a0' libzlib: '>=1.3.2,<2.0a0' @@ -1735,10 +2035,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-1.14.6-nompi_hae35d4c_108.conda + url: https://repo.prefix.dev/conda-forge/win-64/hdf5-2.1.0-nompi_hd96b29f_103.conda hash: - md5: 534b3fa3d3729d903746c258185650b5 - sha256: e85b8f7d3e1020f21eae0248723b887be986bbb6516aaa5678c5740f72b5d0e7 + md5: df70115bbcd247880467466ce665edb2 + sha256: e5af43e16ddd9d75a1f754e022f676dcda51c09dcf2a0bf14541d1ab214773fa category: main optional: false - name: hpack @@ -2044,7 +2344,7 @@ package: category: dev optional: true - name: ipython - version: 9.11.0 + version: 9.12.0 manager: conda platform: linux-64 dependencies: @@ -2059,14 +2359,14 @@ package: python: '' stack_data: '>=0.6.0' traitlets: '>=5.13.0' - url: https://repo.prefix.dev/conda-forge/noarch/ipython-9.11.0-pyhecfbec7_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ipython-9.12.0-pyhecfbec7_0.conda hash: - md5: 326c46b8ec2a1b4964927c7ea55ebf49 - sha256: 1f90e346baab7926bc52d7b60c0625087e96b4fab1bdb9a7fe83ac842312c930 + md5: b293210beb192c3024683bf6a998a0b8 + sha256: 932044bd893f7adce6c9b384b96a72fd3804cc381e76789398c2fae900f21df7 category: dev optional: true - name: ipython - version: 9.11.0 + version: 9.12.0 manager: conda platform: win-64 dependencies: @@ -2081,10 +2381,10 @@ package: python: '' stack_data: '>=0.6.0' traitlets: '>=5.13.0' - url: https://repo.prefix.dev/conda-forge/noarch/ipython-9.11.0-pyhccfa634_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ipython-9.12.0-pyhccfa634_0.conda hash: - md5: a522444721669fe6bb482f8814b969f4 - sha256: 558073f3ceba49ab67d9e698ff2b49ddf1d1d3259de46b50795be1b6d8ec9de4 + md5: 3734e3b6618ea6e04ad08678d8ed7a45 + sha256: a0d3e4c8e4d7b3801377a03de32951f68d77dd1bfe25082c7915f4e6b0aaa463 category: dev optional: true - name: ipython_genutils @@ -2304,27 +2604,27 @@ package: category: main optional: false - name: json5 - version: 0.13.0 + version: 0.14.0 manager: conda platform: linux-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/json5-0.13.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/json5-0.14.0-pyhd8ed1ab_0.conda hash: - md5: 8d5f66ebf832c4ce28d5c37a0e76605c - sha256: ba03ca5a6db38d9f48bd30172e8c512dea7a686a5c7701c6fcdb7b3023dae2ad + md5: 1269891272187518a0a75c286f7d0bbf + sha256: 9daa95bd164c8fa23b3ab196e906ef806141d749eddce2a08baa064f722d25fa category: dev optional: true - name: json5 - version: 0.13.0 + version: 0.14.0 manager: conda platform: win-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/json5-0.13.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/json5-0.14.0-pyhd8ed1ab_0.conda hash: - md5: 8d5f66ebf832c4ce28d5c37a0e76605c - sha256: ba03ca5a6db38d9f48bd30172e8c512dea7a686a5c7701c6fcdb7b3023dae2ad + md5: 1269891272187518a0a75c286f7d0bbf + sha256: 9daa95bd164c8fa23b3ab196e906ef806141d749eddce2a08baa064f722d25fa category: dev optional: true - name: jsonpointer @@ -3330,30 +3630,30 @@ package: category: main optional: false - name: libexpat - version: 2.7.4 + version: 2.7.5 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libexpat-2.7.4-hecca717_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libexpat-2.7.5-hecca717_0.conda hash: - md5: e7f7ce06ec24cfcfb9e36d28cf82ba57 - sha256: d78f1d3bea8c031d2f032b760f36676d87929b18146351c4464c66b0869df3f5 + md5: 49f570f3bc4c874a06ea69b7225753af + sha256: e8c2b57f6aacabdf2f1b0924bd4831ce5071ba080baa4a9e8c0d720588b6794c category: main optional: false - name: libexpat - version: 2.7.4 + version: 2.7.5 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/libexpat-2.7.4-hac47afa_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libexpat-2.7.5-hac47afa_0.conda hash: - md5: 1c1ced969021592407f16ada4573586d - sha256: b31f6fb629c4e17885aaf2082fb30384156d16b48b264e454de4a06a313b533d + md5: bfb43f52f13b7c56e7677aa7a8efdf0c + sha256: 6850c3a4d5dc215b86f58518cfb8752998533d6569b08da8df1da72e7c68e571 category: main optional: false - name: libffi @@ -3924,16 +4224,16 @@ package: category: main optional: false - name: libuuid - version: 2.41.3 + version: 2.41.4 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.41.3-h5347b49_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libuuid-2.41.4-h5347b49_0.conda hash: - md5: db409b7c1720428638e7c0d509d3e1b5 - sha256: 1a7539cfa7df00714e8943e18de0b06cceef6778e420a5ee3a2a145773758aee + md5: 2b4d2e6978dd06af374b50abca6d374b + sha256: eeadbc59678103a9405bae26f5251d744a114fcab79e79d9b68fec36c4cdb43b category: main optional: false - name: libuv @@ -4118,29 +4418,29 @@ package: category: main optional: false - name: llvm-openmp - version: 22.1.1 + version: 22.1.2 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.1-h4922eb0_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-22.1.2-h4922eb0_0.conda hash: - md5: 0e6b63a4861d9b63cde30993bfc0846d - sha256: a8ebe6d456d35bec241974d4268df2fcd108b9de8020cdbce4c74553ec13c126 + md5: 2a60ab96432bc74eedbcda8a528080a1 + sha256: 67fa0977eeb7f983b626aaa815b1e9eba3314f5ea5bf99ca0e91f26221dd9bbb category: main optional: false - name: llvm-openmp - version: 22.1.1 + version: 22.1.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/llvm-openmp-22.1.1-h4fa8253_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-22.1.2-h4fa8253_0.conda hash: - md5: d9f479404fe316e575f4a4575f3df406 - sha256: 64c7fe6490583f3c49c36c2f413e681072102db8abea13a3e1832f44eaf55518 + md5: 29407a30bd93dc8c11c03ca60249a340 + sha256: fa8bd542624507309cbdfc620bdfe546ed823d418e6ba878977d48da7a0f6212 category: main optional: false - name: locket @@ -5084,7 +5384,7 @@ package: category: main optional: false - name: pandas - version: 3.0.1 + version: 3.0.2 manager: conda platform: linux-64 dependencies: @@ -5095,14 +5395,14 @@ package: python: '' python-dateutil: '>=2.8.2' python_abi: 3.14.* - url: https://repo.prefix.dev/conda-forge/linux-64/pandas-3.0.1-py314hb4ffadd_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pandas-3.0.2-py314hb4ffadd_0.conda hash: - md5: 23fc526360815090f6bfcd7c6c8e4954 - sha256: dd9db3289123f38b2bbe8bfadf9bde8cd65e2bcb2d0e48683d543bf4925b2b20 + md5: 41ee6fe2a848876bc9f524c5a500b85b + sha256: e646e1c335d08f195bc7f551706e9b106996d5e1716c0554884e6a986f8b78d5 category: main optional: false - name: pandas - version: 3.0.1 + version: 3.0.2 manager: conda platform: win-64 dependencies: @@ -5114,10 +5414,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/pandas-3.0.1-py314hf700ef7_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/pandas-3.0.2-py314hf700ef7_0.conda hash: - md5: 8b45d9f6e30dc3ed2c930ef88f70bfe4 - sha256: 47527a1e21def10329fccd1d30b311d6edcdfa193028f72e02807299ea939643 + md5: f56832064d7b56c50e03e7a4b03037de + sha256: cbb57758af4fc7807beb392cd573981612f53543d81606d20c01cf3210d768b9 category: main optional: false - name: pandoc @@ -5627,27 +5927,27 @@ package: category: main optional: false - name: pygments - version: 2.19.2 + version: 2.20.0 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.20.0-pyhd8ed1ab_0.conda hash: - md5: 6b6ece66ebcae2d5f326c77ef2c5a066 - sha256: 5577623b9f6685ece2697c6eb7511b4c9ac5fb607c9babc2646c811b428fd46a + md5: 16c18772b340887160c79a6acc022db0 + sha256: cf70b2f5ad9ae472b71235e5c8a736c9316df3705746de419b59d442e8348e86 category: dev optional: true - name: pygments - version: 2.19.2 + version: 2.20.0 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.20.0-pyhd8ed1ab_0.conda hash: - md5: 6b6ece66ebcae2d5f326c77ef2c5a066 - sha256: 5577623b9f6685ece2697c6eb7511b4c9ac5fb607c9babc2646c811b428fd46a + md5: 16c18772b340887160c79a6acc022db0 + sha256: cf70b2f5ad9ae472b71235e5c8a736c9316df3705746de419b59d442e8348e86 category: dev optional: true - name: pylint @@ -6286,7 +6586,7 @@ package: category: dev optional: true - name: requests - version: 2.33.0 + version: 2.33.1 manager: conda platform: linux-64 dependencies: @@ -6295,14 +6595,14 @@ package: idna: '>=2.5,<4' python: '' urllib3: '>=1.26,<3' - url: https://repo.prefix.dev/conda-forge/noarch/requests-2.33.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/requests-2.33.1-pyhcf101f3_0.conda hash: - md5: bee5ed456361bfe8af502beaf5db82e2 - sha256: fbc7183778e1f9976ae7d812986c227f9d43f841326ac03b5f43f1ac93fa8f3b + md5: 10afbb4dbf06ff959ad25a92ccee6e59 + sha256: c0249bc4bf4c0e8e06d0e7b4d117a5d593cc4ab2144d5006d6d47c83cb0af18e category: dev optional: true - name: requests - version: 2.33.0 + version: 2.33.1 manager: conda platform: win-64 dependencies: @@ -6311,10 +6611,10 @@ package: idna: '>=2.5,<4' python: '' urllib3: '>=1.26,<3' - url: https://repo.prefix.dev/conda-forge/noarch/requests-2.33.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/requests-2.33.1-pyhcf101f3_0.conda hash: - md5: bee5ed456361bfe8af502beaf5db82e2 - sha256: fbc7183778e1f9976ae7d812986c227f9d43f841326ac03b5f43f1ac93fa8f3b + md5: 10afbb4dbf06ff959ad25a92ccee6e59 + sha256: c0249bc4bf4c0e8e06d0e7b4d117a5d593cc4ab2144d5006d6d47c83cb0af18e category: dev optional: true - name: rfc3339-validator @@ -6450,6 +6750,20 @@ package: sha256: 461ddd1d84c180bb682560b50d538e9e264ee5cc78cab5eb2a0f21cc24815bed category: main optional: false +- name: s2n + version: 1.7.1 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=14' + openssl: '>=3.5.5,<4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/s2n-1.7.1-h1cbb8d7_1.conda + hash: + md5: 9d978822b57bafe72ebd3f8b527bba71 + sha256: dbbe4ab36b90427f12d69fc14a8b601b6bca4185c6c4dd67b8046a8da9daec03 + category: main + optional: false - name: scikit-learn version: 1.8.0 manager: conda @@ -7775,27 +8089,27 @@ package: category: main optional: false - name: xyzservices - version: 2025.11.0 + version: 2026.3.0 manager: conda platform: linux-64 dependencies: - python: '>=3.8' - url: https://repo.prefix.dev/conda-forge/noarch/xyzservices-2025.11.0-pyhd8ed1ab_0.conda + python: '>=3.9' + url: https://repo.prefix.dev/conda-forge/noarch/xyzservices-2026.3.0-pyhd8ed1ab_0.conda hash: - md5: 16933322051fa260285f1a44aae91dd6 - sha256: b194a1fbc38f29c563b102ece9d006f7a165bf9074cdfe50563d3bce8cae9f84 + md5: 4487b9c371d0161d54b5c7bbd890c0fc + sha256: 663ea9b00d68c2da309114923924686ab6d3f59ef1b196c5029ba16799e7bb07 category: main optional: false - name: xyzservices - version: 2025.11.0 + version: 2026.3.0 manager: conda platform: win-64 dependencies: - python: '>=3.8' - url: https://repo.prefix.dev/conda-forge/noarch/xyzservices-2025.11.0-pyhd8ed1ab_0.conda + python: '>=3.9' + url: https://repo.prefix.dev/conda-forge/noarch/xyzservices-2026.3.0-pyhd8ed1ab_0.conda hash: - md5: 16933322051fa260285f1a44aae91dd6 - sha256: b194a1fbc38f29c563b102ece9d006f7a165bf9074cdfe50563d3bce8cae9f84 + md5: 4487b9c371d0161d54b5c7bbd890c0fc + sha256: 663ea9b00d68c2da309114923924686ab6d3f59ef1b196c5029ba16799e7bb07 category: main optional: false - name: yaml @@ -8011,7 +8325,7 @@ package: manager: pip platform: linux-64 dependencies: - geoh5py: 0.12.1rc2.dev256+a4d82671 + geoh5py: 0.12.1rc2.dev296+f5eca373 matplotlib: '>=3.10.0,<3.11.0' numpy: '>=2.4.2,<2.5.0' pydantic: '>=2.12.0,<2.13.0' @@ -8029,7 +8343,7 @@ package: manager: pip platform: win-64 dependencies: - geoh5py: 0.12.1rc2.dev256+a4d82671 + geoh5py: 0.12.1rc2.dev296+f5eca373 matplotlib: '>=3.10.0,<3.11.0' numpy: '>=2.4.2,<2.5.0' pydantic: '>=2.12.0,<2.13.0' @@ -8043,7 +8357,7 @@ package: category: main optional: false - name: geoh5py - version: 0.12.1rc2.dev256+a4d82671 + version: 0.12.1rc2.dev296+f5eca373 manager: pip platform: linux-64 dependencies: @@ -8051,16 +8365,16 @@ package: numpy: '>=2.4.0,<2.5.0' pillow: '>=12.1.0,<12.2.0' pydantic: '>=2.12.0,<2.13.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@a4d826715e5f529242e2c7eac2805e05e1ec3027 + url: git+https://github.com/MiraGeoscience/geoh5py.git@f5eca3735bbca573f4cac3925c6f4c0c341d8e28 hash: - sha256: a4d826715e5f529242e2c7eac2805e05e1ec3027 + sha256: f5eca3735bbca573f4cac3925c6f4c0c341d8e28 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@a4d826715e5f529242e2c7eac2805e05e1ec3027 + url: git+https://github.com/MiraGeoscience/geoh5py.git@f5eca3735bbca573f4cac3925c6f4c0c341d8e28 category: main optional: false - name: geoh5py - version: 0.12.1rc2.dev256+a4d82671 + version: 0.12.1rc2.dev296+f5eca373 manager: pip platform: win-64 dependencies: @@ -8068,12 +8382,12 @@ package: numpy: '>=2.4.0,<2.5.0' pillow: '>=12.1.0,<12.2.0' pydantic: '>=2.12.0,<2.13.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@a4d826715e5f529242e2c7eac2805e05e1ec3027 + url: git+https://github.com/MiraGeoscience/geoh5py.git@f5eca3735bbca573f4cac3925c6f4c0c341d8e28 hash: - sha256: a4d826715e5f529242e2c7eac2805e05e1ec3027 + sha256: f5eca3735bbca573f4cac3925c6f4c0c341d8e28 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@a4d826715e5f529242e2c7eac2805e05e1ec3027 + url: git+https://github.com/MiraGeoscience/geoh5py.git@f5eca3735bbca573f4cac3925c6f4c0c341d8e28 category: main optional: false - name: grid-apps @@ -8083,7 +8397,7 @@ package: dependencies: discretize: '>=0.12.0,<0.13.0' geoapps-utils: 0.7.0a3.dev7+eb04741 - geoh5py: 0.12.1rc2.dev256+a4d82671 + geoh5py: 0.12.1rc2.dev296+f5eca373 numpy: '>=2.4.2,<2.5.0' pydantic: '>=2.12.0,<2.13.0' scipy: '>=1.17.0,<1.18.0' @@ -8102,7 +8416,7 @@ package: dependencies: discretize: '>=0.12.0,<0.13.0' geoapps-utils: 0.7.0a3.dev7+eb04741 - geoh5py: 0.12.1rc2.dev256+a4d82671 + geoh5py: 0.12.1rc2.dev296+f5eca373 numpy: '>=2.4.2,<2.5.0' pydantic: '>=2.12.0,<2.13.0' scipy: '>=1.17.0,<1.18.0' From 695311f19de0af9b84be8cdafb41c734a0e9d01f Mon Sep 17 00:00:00 2001 From: domfournier Date: Wed, 1 Apr 2026 08:00:07 -0700 Subject: [PATCH 3/4] Update return type and docstrings --- simpeg_drivers/utils/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/simpeg_drivers/utils/utils.py b/simpeg_drivers/utils/utils.py index 319f9fdb..2c7f730e 100644 --- a/simpeg_drivers/utils/utils.py +++ b/simpeg_drivers/utils/utils.py @@ -49,11 +49,11 @@ def mask_vertices_and_cells( extent: np.ndarray, vertices: np.ndarray, cells: np.ndarray | None -) -> tuple[np.ndarray, np.ndarray]: +) -> tuple[np.ndarray, np.ndarray] | tuple[np.ndarray, None]: """ Mask vertices and remove cells whose vertices are all outside the extent. - :param extent: Array-like object of [[xmin, ymin], [xmax, ymax]]. + :param extent: Array of shape (2, 3) containing the lower SW and upper NE coordinates. :param vertices: Array of shape (n_vertices, 3) containing the x, y, z coordinates. :param cells: Array of shape (n_cells, 3) containing the indices of the vertices that make up each cell. From 5a89022cd2fa566352c4ae1ecdf64dba29d14196 Mon Sep 17 00:00:00 2001 From: domfournier Date: Wed, 1 Apr 2026 08:36:32 -0700 Subject: [PATCH 4/4] Only clip by 2D extent --- simpeg_drivers/components/topography.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simpeg_drivers/components/topography.py b/simpeg_drivers/components/topography.py index a69a1d7c..f94d351c 100644 --- a/simpeg_drivers/components/topography.py +++ b/simpeg_drivers/components/topography.py @@ -113,7 +113,7 @@ def active_cells(self, mesh: InversionMesh, data: InversionData) -> np.ndarray: ) else: vertices, cells = mask_vertices_and_cells( - mesh.entity.extent, + mesh.entity.extent[:, :2], self.locations, getattr(self.params.active_cells.topography_object, "cells", None), )