From f9110114f73a4039120537856d7ee1c5db1bb9ab Mon Sep 17 00:00:00 2001 From: dominiquef Date: Wed, 27 Aug 2025 13:40:07 -0700 Subject: [PATCH 1/4] Move function to geoapps-utils --- .../electromagnetics/base_1d_driver.py | 3 +- simpeg_drivers/utils/utils.py | 48 ++----------------- 2 files changed, 5 insertions(+), 46 deletions(-) diff --git a/simpeg_drivers/electromagnetics/base_1d_driver.py b/simpeg_drivers/electromagnetics/base_1d_driver.py index 5bdcb8b53..b3b85c873 100644 --- a/simpeg_drivers/electromagnetics/base_1d_driver.py +++ b/simpeg_drivers/electromagnetics/base_1d_driver.py @@ -16,6 +16,7 @@ import numpy as np from discretize import TensorMesh from discretize.utils import mesh_utils +from geoapps_utils.utils.locations import topo_drape_elevation from geoh5py import Workspace from geoh5py.objects import FEMSurvey from geoh5py.shared.merging.drape_model import DrapeModelMerger @@ -24,7 +25,7 @@ from simpeg_drivers.components.factories import MisfitFactory, SimulationFactory from simpeg_drivers.components.meshes import InversionMesh from simpeg_drivers.driver import InversionDriver -from simpeg_drivers.utils.utils import topo_drape_elevation, xyz_2_drape_model +from simpeg_drivers.utils.utils import xyz_2_drape_model logger = getLogger(__name__) diff --git a/simpeg_drivers/utils/utils.py b/simpeg_drivers/utils/utils.py index 06e97fc72..0930c8cdb 100644 --- a/simpeg_drivers/utils/utils.py +++ b/simpeg_drivers/utils/utils.py @@ -17,7 +17,7 @@ import numpy as np from discretize import TensorMesh, TreeMesh from discretize.utils import mesh_utils -from geoapps_utils.utils.conversions import string_to_numeric +from geoapps_utils.utils.locations import mask_under_horizon from geoapps_utils.utils.numerical import running_mean, traveling_salesman from geoh5py import Workspace from geoh5py.data import NumericData @@ -463,10 +463,7 @@ def cell_size_z(drape_model: DrapeModel) -> np.ndarray: def active_from_xyz( - mesh: DrapeModel | Octree, - topo: np.ndarray, - grid_reference="center", - method="linear", + mesh: DrapeModel | Octree, topo: np.ndarray, grid_reference="center" ): """Returns an active cell index array below a surface @@ -494,47 +491,8 @@ def active_from_xyz( else: raise ValueError("'grid_reference' must be one of 'center', 'top', or 'bottom'") - z_locations = topo_drape_elevation(locations, topo, method=method) - # fill_nan(locations, z_locations, filler=topo[:, -1]) - # Return the active cell array - return locations[:, -1] < z_locations[:, -1] - - -def topo_drape_elevation(locations, topo, method="linear") -> np.ndarray: - """ - Get draped elevation at locations. - - Values are extrapolated to nearest neighbour if requested outside the - convex hull of the input topography points. - - :param locations: n x 3 array of locations - :param topo: n x 3 array of topography points - :param method: Type of topography interpolation, either 'linear' or 'nearest' - - :return: An array of z elevations for every input locations. - """ - if method == "linear": - delaunay_2d = Delaunay(topo[:, :-1]) - z_interpolate = LinearNDInterpolator(delaunay_2d, topo[:, -1]) - elif method == "nearest": - z_interpolate = NearestNDInterpolator(topo[:, :-1], topo[:, -1]) - else: - raise ValueError("Method must be 'linear', or 'nearest'") - - unique_locs, inds = np.unique( - locations[:, :-1].round(), axis=0, return_inverse=True - ) - z_locations = z_interpolate(unique_locs)[inds] - - # Apply nearest neighbour if in extrapolation - ind_nan = np.isnan(z_locations) - if any(ind_nan): - tree = cKDTree(topo) - _, ind = tree.query(locations[ind_nan, :]) - z_locations[ind_nan] = topo[ind, -1] - - return np.c_[locations[:, :-1], z_locations] + return mask_under_horizon(locations, topo) def truncate_locs_depths(locs: np.ndarray, depth_core: float) -> np.ndarray: From 9a30008fecabbda90fe055ef7aa89555d491b12d Mon Sep 17 00:00:00 2001 From: dominiquef Date: Fri, 29 Aug 2025 13:06:12 -0700 Subject: [PATCH 2/4] Update locks --- .../py-3.10-linux-64-dev.conda.lock.yml | 48 +- environments/py-3.10-linux-64.conda.lock.yml | 28 +- .../py-3.10-win-64-dev.conda.lock.yml | 50 +- environments/py-3.10-win-64.conda.lock.yml | 28 +- .../py-3.11-linux-64-dev.conda.lock.yml | 50 +- environments/py-3.11-linux-64.conda.lock.yml | 28 +- .../py-3.11-win-64-dev.conda.lock.yml | 52 +- environments/py-3.11-win-64.conda.lock.yml | 28 +- .../py-3.12-linux-64-dev.conda.lock.yml | 55 +- environments/py-3.12-linux-64.conda.lock.yml | 28 +- .../py-3.12-win-64-dev.conda.lock.yml | 56 +- environments/py-3.12-win-64.conda.lock.yml | 28 +- py-3.10.conda-lock.yml | 426 +++++++------- py-3.11.conda-lock.yml | 448 ++++++++------- py-3.12.conda-lock.yml | 531 ++++++++++-------- 15 files changed, 975 insertions(+), 909 deletions(-) diff --git a/environments/py-3.10-linux-64-dev.conda.lock.yml b/environments/py-3.10-linux-64-dev.conda.lock.yml index e3d12e7c5..ce1584fdd 100644 --- a/environments/py-3.10-linux-64-dev.conda.lock.yml +++ b/environments/py-3.10-linux-64-dev.conda.lock.yml @@ -1,12 +1,12 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: df903f8d5f97aa53e048a59653b36a5acf8ff615a3b907992eb74b753d8cf30a +# input_hash: c8f7ae0bddeffc0ce95aebb250579b216dcf022feb26f8e2d841be6b05442f87 channels: - conda-forge - nodefaults dependencies: - - _openmp_mutex=4.5=3_kmp_llvm + - _openmp_mutex=4.5=4_kmp_llvm - accessible-pygments=0.0.5=pyhd8ed1ab_1 - alabaster=0.7.16=pyhd8ed1ab_0 - annotated-types=0.7.0=pyhd8ed1ab_1 @@ -20,7 +20,7 @@ dependencies: - async-lru=2.0.5=pyh29332c3_0 - attrs=25.3.0=pyh71513ae_0 - babel=2.17.0=pyhd8ed1ab_0 - - beautifulsoup4=4.13.4=pyha770c72_0 + - beautifulsoup4=4.13.5=pyha770c72_0 - bleach=6.2.0=pyh29332c3_4 - bleach-with-css=6.2.0=h82add2a_4 - bokeh=3.6.3=pyhd8ed1ab_0 @@ -40,7 +40,7 @@ dependencies: - colorama=0.4.6=pyhd8ed1ab_1 - comm=0.2.3=pyhe01879c_0 - contourpy=1.3.2=py310h3788b33_0 - - coverage=7.10.4=py310h3406613_0 + - coverage=7.10.5=py310h3406613_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py310ha75aee5_0 - dask-core=2025.3.0=pyhd8ed1ab_0 @@ -55,14 +55,14 @@ dependencies: - exceptiongroup=1.3.0=pyhd8ed1ab_0 - executing=2.2.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.59.1=py310h3406613_0 + - fonttools=4.59.2=py310h3406613_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.13.3=ha770c72_1 - fsspec=2025.7.0=pyhd8ed1ab_0 - geoana=0.7.2=py310ha2bacc8_0 - greenlet=3.2.4=py310hea6c23e_0 - h11=0.16.0=pyhd8ed1ab_0 - - h2=4.2.0=pyhd8ed1ab_0 + - h2=4.3.0=pyhcf101f3_0 - h5py=3.14.0=nompi_py310hea1e86d_100 - hdf5=1.14.6=nompi_h6e4c0c1_103 - hpack=4.1.0=pyhd8ed1ab_0 @@ -82,7 +82,7 @@ dependencies: - isort=6.0.1=pyhd8ed1ab_1 - jedi=0.19.2=pyhd8ed1ab_1 - jinja2=3.1.6=pyhd8ed1ab_0 - - joblib=1.5.1=pyhd8ed1ab_0 + - joblib=1.5.2=pyhd8ed1ab_0 - json5=0.12.1=pyhd8ed1ab_0 - jsonpointer=3.0.0=py310hff52083_1 - jsonschema=4.25.1=pyhe01879c_0 @@ -90,7 +90,7 @@ dependencies: - jsonschema-with-format-nongpl=4.25.1=he01879c_0 - jupyter-book=1.0.3=pyhd8ed1ab_1 - jupyter-cache=1.0.1=pyhff2d567_0 - - jupyter-lsp=2.2.6=pyhe01879c_0 + - jupyter-lsp=2.3.0=pyhcf101f3_0 - jupyter_client=8.6.3=pyhd8ed1ab_1 - jupyter_core=5.8.1=pyh31011fe_0 - jupyter_events=0.12.0=pyh29332c3_0 @@ -100,9 +100,9 @@ dependencies: - jupyterlab_pygments=0.3.0=pyhd8ed1ab_2 - jupyterlab_server=2.27.3=pyhd8ed1ab_1 - jupyterlab_widgets=1.1.11=pyhd8ed1ab_0 - - jupytext=1.17.2=pyh80e38bb_0 + - jupytext=1.17.3=pyh80e38bb_0 - keyutils=1.6.3=hb9d3cd8_0 - - kiwisolver=1.4.9=py310haaf941d_0 + - kiwisolver=1.4.9=py310haaf941d_1 - krb5=1.21.3=h659f571_0 - lark=1.2.2=pyhd8ed1ab_1 - latexcodec=2.0.1=pyh9f0ad1d_0 @@ -151,7 +151,7 @@ dependencies: - libxml2=2.13.8=h2cb61b6_1 - libzlib=1.3.1=hb9d3cd8_2 - linkify-it-py=2.0.3=pyhd8ed1ab_1 - - llvm-openmp=20.1.8=h4922eb0_1 + - llvm-openmp=20.1.8=h4922eb0_2 - locket=1.0.0=pyhd8ed1ab_0 - markdown-it-py=2.2.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py310h89163eb_1 @@ -187,16 +187,16 @@ dependencies: - pandas=2.3.2=py310h0158d43_0 - pandoc=3.7.0.2=ha770c72_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 - - parso=0.8.4=pyhd8ed1ab_1 + - parso=0.8.5=pyhcf101f3_0 - partd=1.4.2=pyhd8ed1ab_0 - pexpect=4.9.0=pyhd8ed1ab_1 - pickleshare=0.7.5=pyhd8ed1ab_1004 - pillow=10.3.0=py310hebfe307_1 - pip=25.2=pyh8b19718_0 - - platformdirs=4.3.8=pyhe01879c_0 + - platformdirs=4.4.0=pyhcf101f3_0 - pluggy=1.6.0=pyhd8ed1ab_0 - prometheus_client=0.22.1=pyhd8ed1ab_0 - - prompt-toolkit=3.0.51=pyha770c72_0 + - prompt-toolkit=3.0.52=pyha770c72_0 - psutil=7.0.0=py310h7c4b9e2_1 - pthread-stubs=0.4=hb9d3cd8_1002 - ptyprocess=0.7.0=pyhd8ed1ab_1 @@ -224,7 +224,7 @@ dependencies: - python_abi=3.10=8_cp310 - pytz=2025.2=pyhd8ed1ab_0 - pyyaml=6.0.2=py310h89163eb_2 - - pyzmq=27.0.2=py310h9a5fd63_0 + - pyzmq=27.0.2=py310h4f33d48_2 - readline=8.2=h8c095d6_2 - readthedocs-sphinx-ext=2.2.5=pyhd8ed1ab_1 - referencing=0.36.2=pyh29332c3_0 @@ -232,7 +232,7 @@ dependencies: - rfc3339-validator=0.1.4=pyhd8ed1ab_1 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - rfc3987-syntax=1.1.0=pyhe01879c_1 - - rpds-py=0.27.0=py310hd8f68c5_0 + - rpds-py=0.27.1=py310hd8f68c5_0 - rtree=1.2.0=py310haf1e407_1 - scikit-learn=1.6.1=py310h27f47ee_0 - scipy=1.14.1=py310hfcf56fc_2 @@ -242,7 +242,7 @@ dependencies: - sniffio=1.3.1=pyhd8ed1ab_1 - snowballstemmer=3.0.1=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - - soupsieve=2.7=pyhd8ed1ab_0 + - soupsieve=2.8=pyhd8ed1ab_0 - sphinx=5.3.0=pyhd8ed1ab_0 - sphinx-book-theme=1.1.3=pyhd8ed1ab_1 - sphinx-comments=0.0.3=pyhd8ed1ab_1 @@ -278,9 +278,9 @@ dependencies: - traitlets=5.14.3=pyhd8ed1ab_1 - trimesh=4.1.8=pyhd8ed1ab_0 - types-python-dateutil=2.9.0.20250822=pyhd8ed1ab_0 - - typing-extensions=4.14.1=h4440ef1_0 + - typing-extensions=4.15.0=h396c80c_0 - typing-inspection=0.4.1=pyhd8ed1ab_0 - - typing_extensions=4.14.1=pyhe01879c_0 + - typing_extensions=4.15.0=pyhcf101f3_0 - typing_utils=0.1.0=pyhd8ed1ab_1 - tzdata=2025b=h78e105d_0 - uc-micro-py=1.0.3=pyhd8ed1ab_1 @@ -301,13 +301,13 @@ dependencies: - zeromq=4.3.5=h3b0a872_7 - zict=3.0.0=pyhd8ed1ab_1 - zipp=3.23.0=pyhd8ed1ab_0 - - zstandard=0.23.0=py310ha75aee5_2 + - zstandard=0.23.0=py310h7c4b9e2_3 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@25bf69c7afdfce5e9d4ac7d667c88790aad9c934 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@bdf223def86a077a7e3f02b631fbffd7727527f2 - - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@b950dd55b4fb70d2ef28488a3f684c374a170b9f - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@dc256f618543d8ee94fd36737749715fe497f8b7 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@655afd735989270d5d03b80a98cbe22844b47066 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@fd5f8fb1dcd764c01eb4d43ab26201c5bceb34ef + - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@416815352706add295a9d2b90814d2291068a85e + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@d794a0b24aafb4beccc7984e68b6904be44f860f variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.10-linux-64.conda.lock.yml b/environments/py-3.10-linux-64.conda.lock.yml index df5fd5176..d419ac059 100644 --- a/environments/py-3.10-linux-64.conda.lock.yml +++ b/environments/py-3.10-linux-64.conda.lock.yml @@ -1,12 +1,12 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: df903f8d5f97aa53e048a59653b36a5acf8ff615a3b907992eb74b753d8cf30a +# input_hash: c8f7ae0bddeffc0ce95aebb250579b216dcf022feb26f8e2d841be6b05442f87 channels: - conda-forge - nodefaults dependencies: - - _openmp_mutex=4.5=3_kmp_llvm + - _openmp_mutex=4.5=4_kmp_llvm - annotated-types=0.7.0=pyhd8ed1ab_1 - asciitree=0.3.3=py_2 - bokeh=3.6.3=pyhd8ed1ab_0 @@ -30,20 +30,20 @@ dependencies: - discretize=0.11.3=py310ha2bacc8_0 - distributed=2025.3.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.59.1=py310h3406613_0 + - fonttools=4.59.2=py310h3406613_0 - freetype=2.13.3=ha770c72_1 - fsspec=2025.7.0=pyhd8ed1ab_0 - geoana=0.7.2=py310ha2bacc8_0 - - h2=4.2.0=pyhd8ed1ab_0 + - h2=4.3.0=pyhcf101f3_0 - h5py=3.14.0=nompi_py310hea1e86d_100 - hdf5=1.14.6=nompi_h6e4c0c1_103 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - importlib-metadata=8.7.0=pyhe01879c_1 - jinja2=3.1.6=pyhd8ed1ab_0 - - joblib=1.5.1=pyhd8ed1ab_0 + - joblib=1.5.2=pyhd8ed1ab_0 - keyutils=1.6.3=hb9d3cd8_0 - - kiwisolver=1.4.9=py310haaf941d_0 + - kiwisolver=1.4.9=py310haaf941d_1 - krb5=1.21.3=h659f571_0 - lcms2=2.17=h717163a_0 - ld_impl_linux-64=2.44=h1423503_1 @@ -88,7 +88,7 @@ dependencies: - libxcrypt=4.4.36=hd590300_1 - libxml2=2.13.8=h2cb61b6_1 - libzlib=1.3.1=hb9d3cd8_2 - - llvm-openmp=20.1.8=h4922eb0_1 + - llvm-openmp=20.1.8=h4922eb0_2 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py310h89163eb_1 - matplotlib-base=3.8.4=py310hef631a5_2 @@ -139,9 +139,9 @@ dependencies: - tornado=6.5.2=py310h7c4b9e2_0 - tqdm=4.67.1=pyhd8ed1ab_1 - trimesh=4.1.8=pyhd8ed1ab_0 - - typing-extensions=4.14.1=h4440ef1_0 + - typing-extensions=4.15.0=h396c80c_0 - typing-inspection=0.4.1=pyhd8ed1ab_0 - - typing_extensions=4.14.1=pyhe01879c_0 + - typing_extensions=4.15.0=pyhcf101f3_0 - tzdata=2025b=h78e105d_0 - unicodedata2=16.0.0=py310ha75aee5_0 - urllib3=2.5.0=pyhd8ed1ab_0 @@ -153,13 +153,13 @@ dependencies: - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 - zipp=3.23.0=pyhd8ed1ab_0 - - zstandard=0.23.0=py310ha75aee5_2 + - zstandard=0.23.0=py310h7c4b9e2_3 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@25bf69c7afdfce5e9d4ac7d667c88790aad9c934 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@bdf223def86a077a7e3f02b631fbffd7727527f2 - - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@b950dd55b4fb70d2ef28488a3f684c374a170b9f - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@dc256f618543d8ee94fd36737749715fe497f8b7 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@655afd735989270d5d03b80a98cbe22844b47066 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@fd5f8fb1dcd764c01eb4d43ab26201c5bceb34ef + - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@416815352706add295a9d2b90814d2291068a85e + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@d794a0b24aafb4beccc7984e68b6904be44f860f variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.10-win-64-dev.conda.lock.yml b/environments/py-3.10-win-64-dev.conda.lock.yml index c4cf68d20..c2fdab609 100644 --- a/environments/py-3.10-win-64-dev.conda.lock.yml +++ b/environments/py-3.10-win-64-dev.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: 03d1f3ef4c61f2960917993a4919e1b140142b11a1eb751062ca845672f6e6b4 +# input_hash: 0e4eae48731ca9e26a194a0b731d4cbb5666ce7bac7a5003b542681283abdc39 channels: - conda-forge @@ -20,7 +20,7 @@ dependencies: - async-lru=2.0.5=pyh29332c3_0 - attrs=25.3.0=pyh71513ae_0 - babel=2.17.0=pyhd8ed1ab_0 - - beautifulsoup4=4.13.4=pyha770c72_0 + - beautifulsoup4=4.13.5=pyha770c72_0 - bleach=6.2.0=pyh29332c3_4 - bleach-with-css=6.2.0=h82add2a_4 - bokeh=3.6.3=pyhd8ed1ab_0 @@ -39,7 +39,7 @@ dependencies: - colorama=0.4.6=pyhd8ed1ab_1 - comm=0.2.3=pyhe01879c_0 - contourpy=1.3.2=py310hc19bc0b_0 - - coverage=7.10.4=py310hdb0e946_0 + - coverage=7.10.5=py310hdb0e946_0 - cpython=3.10.18=py310hd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py310ha8f682b_0 @@ -55,14 +55,14 @@ dependencies: - exceptiongroup=1.3.0=pyhd8ed1ab_0 - executing=2.2.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.59.1=py310hdb0e946_0 + - fonttools=4.59.2=py310hdb0e946_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.13.3=h57928b3_1 - fsspec=2025.7.0=pyhd8ed1ab_0 - geoana=0.7.2=py310h3e8ed56_0 - greenlet=3.2.4=py310h73ae2b4_0 - h11=0.16.0=pyhd8ed1ab_0 - - h2=4.2.0=pyhd8ed1ab_0 + - h2=4.3.0=pyhcf101f3_0 - h5py=3.14.0=nompi_py310h877c39c_100 - hdf5=1.14.6=nompi_he30205f_103 - hpack=4.1.0=pyhd8ed1ab_0 @@ -82,7 +82,7 @@ dependencies: - isort=6.0.1=pyhd8ed1ab_1 - jedi=0.19.2=pyhd8ed1ab_1 - jinja2=3.1.6=pyhd8ed1ab_0 - - joblib=1.5.1=pyhd8ed1ab_0 + - joblib=1.5.2=pyhd8ed1ab_0 - json5=0.12.1=pyhd8ed1ab_0 - jsonpointer=3.0.0=py310h5588dad_1 - jsonschema=4.25.1=pyhe01879c_0 @@ -90,7 +90,7 @@ dependencies: - jsonschema-with-format-nongpl=4.25.1=he01879c_0 - jupyter-book=1.0.3=pyhd8ed1ab_1 - jupyter-cache=1.0.1=pyhff2d567_0 - - jupyter-lsp=2.2.6=pyhe01879c_0 + - jupyter-lsp=2.3.0=pyhcf101f3_0 - jupyter_client=8.6.3=pyhd8ed1ab_1 - jupyter_core=5.8.1=pyh5737063_0 - jupyter_events=0.12.0=pyh29332c3_0 @@ -100,8 +100,8 @@ dependencies: - jupyterlab_pygments=0.3.0=pyhd8ed1ab_2 - jupyterlab_server=2.27.3=pyhd8ed1ab_1 - jupyterlab_widgets=1.1.11=pyhd8ed1ab_0 - - jupytext=1.17.2=pyh80e38bb_0 - - kiwisolver=1.4.9=py310h1e1005b_0 + - jupytext=1.17.3=pyh80e38bb_0 + - kiwisolver=1.4.9=py310h1e1005b_1 - krb5=1.21.3=hdf4eb48_0 - lark=1.2.2=pyhd8ed1ab_1 - latexcodec=2.0.1=pyh9f0ad1d_0 @@ -139,7 +139,7 @@ dependencies: - libxml2=2.13.8=h741aa76_1 - libzlib=1.3.1=h2466b09_2 - linkify-it-py=2.0.3=pyhd8ed1ab_1 - - llvm-openmp=20.1.8=hfa2b4ca_1 + - llvm-openmp=20.1.8=hfa2b4ca_2 - locket=1.0.0=pyhd8ed1ab_0 - markdown-it-py=2.2.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py310h38315fa_1 @@ -172,15 +172,15 @@ dependencies: - pandas=2.3.2=py310hed136d8_0 - pandoc=3.7.0.2=h57928b3_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 - - parso=0.8.4=pyhd8ed1ab_1 + - parso=0.8.5=pyhcf101f3_0 - partd=1.4.2=pyhd8ed1ab_0 - pickleshare=0.7.5=pyhd8ed1ab_1004 - pillow=10.3.0=py310h3e38d90_1 - pip=25.2=pyh8b19718_0 - - platformdirs=4.3.8=pyhe01879c_0 + - platformdirs=4.4.0=pyhcf101f3_0 - pluggy=1.6.0=pyhd8ed1ab_0 - prometheus_client=0.22.1=pyhd8ed1ab_0 - - prompt-toolkit=3.0.51=pyha770c72_0 + - prompt-toolkit=3.0.52=pyha770c72_0 - psutil=7.0.0=py310h29418f3_1 - pthread-stubs=0.4=h0e40799_1002 - pure_eval=0.2.3=pyhd8ed1ab_1 @@ -206,17 +206,17 @@ dependencies: - python-tzdata=2025.2=pyhd8ed1ab_0 - python_abi=3.10=8_cp310 - pytz=2025.2=pyhd8ed1ab_0 - - pywin32=311=py310h282bd7d_0 + - pywin32=311=py310h282bd7d_1 - pywinpty=2.0.15=py310h9e98ed7_0 - pyyaml=6.0.2=py310h38315fa_2 - - pyzmq=27.0.2=py310h49f0f51_0 + - pyzmq=27.0.2=py310h535538e_2 - readthedocs-sphinx-ext=2.2.5=pyhd8ed1ab_1 - referencing=0.36.2=pyh29332c3_0 - requests=2.32.5=pyhd8ed1ab_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.27.0=py310h034784e_0 + - rpds-py=0.27.1=py310h034784e_0 - rtree=1.2.0=py310h08d5ad2_1 - scikit-learn=1.6.1=py310hf2a6c47_0 - scipy=1.14.1=py310hbd0dde3_2 @@ -226,7 +226,7 @@ dependencies: - sniffio=1.3.1=pyhd8ed1ab_1 - snowballstemmer=3.0.1=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - - soupsieve=2.7=pyhd8ed1ab_0 + - soupsieve=2.8=pyhd8ed1ab_0 - sphinx=5.3.0=pyhd8ed1ab_0 - sphinx-book-theme=1.1.3=pyhd8ed1ab_1 - sphinx-comments=0.0.3=pyhd8ed1ab_1 @@ -262,13 +262,13 @@ dependencies: - traitlets=5.14.3=pyhd8ed1ab_1 - trimesh=4.1.8=pyhd8ed1ab_0 - types-python-dateutil=2.9.0.20250822=pyhd8ed1ab_0 - - typing-extensions=4.14.1=h4440ef1_0 + - typing-extensions=4.15.0=h396c80c_0 - typing-inspection=0.4.1=pyhd8ed1ab_0 - - typing_extensions=4.14.1=pyhe01879c_0 + - typing_extensions=4.15.0=pyhcf101f3_0 - typing_utils=0.1.0=pyhd8ed1ab_1 - tzdata=2025b=h78e105d_0 - uc-micro-py=1.0.3=pyhd8ed1ab_1 - - ucrt=10.0.22621.0=h57928b3_1 + - ucrt=10.0.26100.0=h57928b3_0 - unicodedata2=16.0.0=py310ha8f682b_0 - uri-template=1.3.0=pyhd8ed1ab_1 - urllib3=2.5.0=pyhd8ed1ab_0 @@ -291,13 +291,13 @@ dependencies: - zeromq=4.3.5=ha9f60a1_7 - zict=3.0.0=pyhd8ed1ab_1 - zipp=3.23.0=pyhd8ed1ab_0 - - zstandard=0.23.0=py310ha8f682b_2 + - zstandard=0.23.0=py310h29418f3_3 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@25bf69c7afdfce5e9d4ac7d667c88790aad9c934 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@bdf223def86a077a7e3f02b631fbffd7727527f2 - - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@b950dd55b4fb70d2ef28488a3f684c374a170b9f - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@dc256f618543d8ee94fd36737749715fe497f8b7 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@655afd735989270d5d03b80a98cbe22844b47066 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@fd5f8fb1dcd764c01eb4d43ab26201c5bceb34ef + - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@416815352706add295a9d2b90814d2291068a85e + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@d794a0b24aafb4beccc7984e68b6904be44f860f variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.10-win-64.conda.lock.yml b/environments/py-3.10-win-64.conda.lock.yml index 44583d3e9..df2704575 100644 --- a/environments/py-3.10-win-64.conda.lock.yml +++ b/environments/py-3.10-win-64.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: 03d1f3ef4c61f2960917993a4919e1b140142b11a1eb751062ca845672f6e6b4 +# input_hash: 0e4eae48731ca9e26a194a0b731d4cbb5666ce7bac7a5003b542681283abdc39 channels: - conda-forge @@ -29,19 +29,19 @@ dependencies: - discretize=0.11.3=py310h3e8ed56_0 - distributed=2025.3.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.59.1=py310hdb0e946_0 + - fonttools=4.59.2=py310hdb0e946_0 - freetype=2.13.3=h57928b3_1 - fsspec=2025.7.0=pyhd8ed1ab_0 - geoana=0.7.2=py310h3e8ed56_0 - - h2=4.2.0=pyhd8ed1ab_0 + - h2=4.3.0=pyhcf101f3_0 - h5py=3.14.0=nompi_py310h877c39c_100 - hdf5=1.14.6=nompi_he30205f_103 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - importlib-metadata=8.7.0=pyhe01879c_1 - jinja2=3.1.6=pyhd8ed1ab_0 - - joblib=1.5.1=pyhd8ed1ab_0 - - kiwisolver=1.4.9=py310h1e1005b_0 + - joblib=1.5.2=pyhd8ed1ab_0 + - kiwisolver=1.4.9=py310h1e1005b_1 - krb5=1.21.3=hdf4eb48_0 - lcms2=2.17=hbcf6048_0 - lerc=4.0.0=h6470a55_1 @@ -75,7 +75,7 @@ dependencies: - libxcb=1.17.0=h0e4246c_0 - libxml2=2.13.8=h741aa76_1 - libzlib=1.3.1=h2466b09_2 - - llvm-openmp=20.1.8=hfa2b4ca_1 + - llvm-openmp=20.1.8=hfa2b4ca_2 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py310h38315fa_1 - matplotlib-base=3.8.4=py310hadb10a8_2 @@ -122,11 +122,11 @@ dependencies: - tornado=6.5.2=py310h29418f3_0 - tqdm=4.67.1=pyhd8ed1ab_1 - trimesh=4.1.8=pyhd8ed1ab_0 - - typing-extensions=4.14.1=h4440ef1_0 + - typing-extensions=4.15.0=h396c80c_0 - typing-inspection=0.4.1=pyhd8ed1ab_0 - - typing_extensions=4.14.1=pyhe01879c_0 + - typing_extensions=4.15.0=pyhcf101f3_0 - tzdata=2025b=h78e105d_0 - - ucrt=10.0.22621.0=h57928b3_1 + - ucrt=10.0.26100.0=h57928b3_0 - unicodedata2=16.0.0=py310ha8f682b_0 - urllib3=2.5.0=pyhd8ed1ab_0 - vc=14.3=h41ae7f8_31 @@ -141,13 +141,13 @@ dependencies: - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 - zipp=3.23.0=pyhd8ed1ab_0 - - zstandard=0.23.0=py310ha8f682b_2 + - zstandard=0.23.0=py310h29418f3_3 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@25bf69c7afdfce5e9d4ac7d667c88790aad9c934 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@bdf223def86a077a7e3f02b631fbffd7727527f2 - - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@b950dd55b4fb70d2ef28488a3f684c374a170b9f - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@dc256f618543d8ee94fd36737749715fe497f8b7 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@655afd735989270d5d03b80a98cbe22844b47066 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@fd5f8fb1dcd764c01eb4d43ab26201c5bceb34ef + - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@416815352706add295a9d2b90814d2291068a85e + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@d794a0b24aafb4beccc7984e68b6904be44f860f variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.11-linux-64-dev.conda.lock.yml b/environments/py-3.11-linux-64-dev.conda.lock.yml index 0421cb2e1..16a9504d3 100644 --- a/environments/py-3.11-linux-64-dev.conda.lock.yml +++ b/environments/py-3.11-linux-64-dev.conda.lock.yml @@ -1,12 +1,12 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 3dbea284166720deb24b29cf2170db9a32f056b8075113cae4cc86949c2d551b +# input_hash: c3c882ab7106f1ac6d6821bf96f16035a0c501482813360bc7738edf05725ab9 channels: - conda-forge - nodefaults dependencies: - - _openmp_mutex=4.5=3_kmp_llvm + - _openmp_mutex=4.5=4_kmp_llvm - accessible-pygments=0.0.5=pyhd8ed1ab_1 - alabaster=0.7.16=pyhd8ed1ab_0 - annotated-types=0.7.0=pyhd8ed1ab_1 @@ -20,7 +20,7 @@ dependencies: - async-lru=2.0.5=pyh29332c3_0 - attrs=25.3.0=pyh71513ae_0 - babel=2.17.0=pyhd8ed1ab_0 - - beautifulsoup4=4.13.4=pyha770c72_0 + - beautifulsoup4=4.13.5=pyha770c72_0 - bleach=6.2.0=pyh29332c3_4 - bleach-with-css=6.2.0=h82add2a_4 - bokeh=3.6.3=pyhd8ed1ab_0 @@ -40,7 +40,7 @@ dependencies: - colorama=0.4.6=pyhd8ed1ab_1 - comm=0.2.3=pyhe01879c_0 - contourpy=1.3.3=py311hdf67eae_1 - - coverage=7.10.4=py311h3778330_0 + - coverage=7.10.5=py311h3778330_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py311h9ecbd09_0 - dask-core=2025.3.0=pyhd8ed1ab_0 @@ -56,14 +56,14 @@ dependencies: - exceptiongroup=1.3.0=pyhd8ed1ab_0 - executing=2.2.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.59.1=py311h3778330_0 + - fonttools=4.59.2=py311h3778330_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.13.3=ha770c72_1 - fsspec=2025.7.0=pyhd8ed1ab_0 - geoana=0.7.2=py311h5b7b71f_0 - greenlet=3.2.4=py311h1ddb823_0 - h11=0.16.0=pyhd8ed1ab_0 - - h2=4.2.0=pyhd8ed1ab_0 + - h2=4.3.0=pyhcf101f3_0 - h5py=3.14.0=nompi_py311h7f87ba5_100 - hdf5=1.14.6=nompi_h6e4c0c1_103 - hpack=4.1.0=pyhd8ed1ab_0 @@ -76,7 +76,7 @@ dependencies: - importlib_metadata=8.7.0=h40b2b14_1 - iniconfig=2.0.0=pyhd8ed1ab_1 - ipykernel=6.30.1=pyh82676e8_0 - - ipython=9.4.0=pyhfa0c392_0 + - ipython=9.5.0=pyhfa0c392_0 - ipython_genutils=0.2.0=pyhd8ed1ab_2 - ipython_pygments_lexers=1.1.1=pyhd8ed1ab_0 - ipywidgets=7.8.5=pyhd8ed1ab_0 @@ -84,7 +84,7 @@ dependencies: - isort=6.0.1=pyhd8ed1ab_1 - jedi=0.19.2=pyhd8ed1ab_1 - jinja2=3.1.6=pyhd8ed1ab_0 - - joblib=1.5.1=pyhd8ed1ab_0 + - joblib=1.5.2=pyhd8ed1ab_0 - json5=0.12.1=pyhd8ed1ab_0 - jsonpointer=3.0.0=py311h38be061_1 - jsonschema=4.25.1=pyhe01879c_0 @@ -92,7 +92,7 @@ dependencies: - jsonschema-with-format-nongpl=4.25.1=he01879c_0 - jupyter-book=1.0.3=pyhd8ed1ab_1 - jupyter-cache=1.0.1=pyhff2d567_0 - - jupyter-lsp=2.2.6=pyhe01879c_0 + - jupyter-lsp=2.3.0=pyhcf101f3_0 - jupyter_client=8.6.3=pyhd8ed1ab_1 - jupyter_core=5.8.1=pyh31011fe_0 - jupyter_events=0.12.0=pyh29332c3_0 @@ -102,9 +102,9 @@ dependencies: - jupyterlab_pygments=0.3.0=pyhd8ed1ab_2 - jupyterlab_server=2.27.3=pyhd8ed1ab_1 - jupyterlab_widgets=1.1.11=pyhd8ed1ab_0 - - jupytext=1.17.2=pyh80e38bb_0 + - jupytext=1.17.3=pyh80e38bb_0 - keyutils=1.6.3=hb9d3cd8_0 - - kiwisolver=1.4.9=py311h724c32c_0 + - kiwisolver=1.4.9=py311h724c32c_1 - krb5=1.21.3=h659f571_0 - lark=1.2.2=pyhd8ed1ab_1 - latexcodec=2.0.1=pyh9f0ad1d_0 @@ -153,7 +153,7 @@ dependencies: - libxml2=2.13.8=h2cb61b6_1 - libzlib=1.3.1=hb9d3cd8_2 - linkify-it-py=2.0.3=pyhd8ed1ab_1 - - llvm-openmp=20.1.8=h4922eb0_1 + - llvm-openmp=20.1.8=h4922eb0_2 - locket=1.0.0=pyhd8ed1ab_0 - markdown-it-py=2.2.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py311h2dc5d0c_1 @@ -189,16 +189,16 @@ dependencies: - pandas=2.3.2=py311hed34c8f_0 - pandoc=3.7.0.2=ha770c72_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 - - parso=0.8.4=pyhd8ed1ab_1 + - parso=0.8.5=pyhcf101f3_0 - partd=1.4.2=pyhd8ed1ab_0 - pexpect=4.9.0=pyhd8ed1ab_1 - pickleshare=0.7.5=pyhd8ed1ab_1004 - pillow=10.3.0=py311h82a398c_1 - pip=25.2=pyh8b19718_0 - - platformdirs=4.3.8=pyhe01879c_0 + - platformdirs=4.4.0=pyhcf101f3_0 - pluggy=1.6.0=pyhd8ed1ab_0 - prometheus_client=0.22.1=pyhd8ed1ab_0 - - prompt-toolkit=3.0.51=pyha770c72_0 + - prompt-toolkit=3.0.52=pyha770c72_0 - psutil=7.0.0=py311h49ec1c0_1 - pthread-stubs=0.4=hb9d3cd8_1002 - ptyprocess=0.7.0=pyhd8ed1ab_1 @@ -226,7 +226,7 @@ dependencies: - python_abi=3.11=8_cp311 - pytz=2025.2=pyhd8ed1ab_0 - pyyaml=6.0.2=py311h2dc5d0c_2 - - pyzmq=27.0.2=py311hc251a9f_0 + - pyzmq=27.0.2=py311h2315fbb_2 - readline=8.2=h8c095d6_2 - readthedocs-sphinx-ext=2.2.5=pyhd8ed1ab_1 - referencing=0.36.2=pyh29332c3_0 @@ -234,7 +234,7 @@ dependencies: - rfc3339-validator=0.1.4=pyhd8ed1ab_1 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - rfc3987-syntax=1.1.0=pyhe01879c_1 - - rpds-py=0.27.0=py311h902ca64_0 + - rpds-py=0.27.1=py311h902ca64_0 - rtree=1.2.0=py311ha1603b9_1 - scikit-learn=1.6.1=py311h57cc02b_0 - scipy=1.14.1=py311he9a78e4_2 @@ -244,7 +244,7 @@ dependencies: - sniffio=1.3.1=pyhd8ed1ab_1 - snowballstemmer=3.0.1=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - - soupsieve=2.7=pyhd8ed1ab_0 + - soupsieve=2.8=pyhd8ed1ab_0 - sphinx=5.3.0=pyhd8ed1ab_0 - sphinx-book-theme=1.1.3=pyhd8ed1ab_1 - sphinx-comments=0.0.3=pyhd8ed1ab_1 @@ -280,9 +280,9 @@ dependencies: - traitlets=5.14.3=pyhd8ed1ab_1 - trimesh=4.1.8=pyhd8ed1ab_0 - types-python-dateutil=2.9.0.20250822=pyhd8ed1ab_0 - - typing-extensions=4.14.1=h4440ef1_0 + - typing-extensions=4.15.0=h396c80c_0 - typing-inspection=0.4.1=pyhd8ed1ab_0 - - typing_extensions=4.14.1=pyhe01879c_0 + - typing_extensions=4.15.0=pyhcf101f3_0 - typing_utils=0.1.0=pyhd8ed1ab_1 - tzdata=2025b=h78e105d_0 - uc-micro-py=1.0.3=pyhd8ed1ab_1 @@ -304,13 +304,13 @@ dependencies: - zeromq=4.3.5=h3b0a872_7 - zict=3.0.0=pyhd8ed1ab_1 - zipp=3.23.0=pyhd8ed1ab_0 - - zstandard=0.23.0=py311h9ecbd09_2 + - zstandard=0.23.0=py311h49ec1c0_3 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@25bf69c7afdfce5e9d4ac7d667c88790aad9c934 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@bdf223def86a077a7e3f02b631fbffd7727527f2 - - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@b950dd55b4fb70d2ef28488a3f684c374a170b9f - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@dc256f618543d8ee94fd36737749715fe497f8b7 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@655afd735989270d5d03b80a98cbe22844b47066 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@fd5f8fb1dcd764c01eb4d43ab26201c5bceb34ef + - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@416815352706add295a9d2b90814d2291068a85e + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@d794a0b24aafb4beccc7984e68b6904be44f860f variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.11-linux-64.conda.lock.yml b/environments/py-3.11-linux-64.conda.lock.yml index 2abb80a49..bf8143984 100644 --- a/environments/py-3.11-linux-64.conda.lock.yml +++ b/environments/py-3.11-linux-64.conda.lock.yml @@ -1,12 +1,12 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 3dbea284166720deb24b29cf2170db9a32f056b8075113cae4cc86949c2d551b +# input_hash: c3c882ab7106f1ac6d6821bf96f16035a0c501482813360bc7738edf05725ab9 channels: - conda-forge - nodefaults dependencies: - - _openmp_mutex=4.5=3_kmp_llvm + - _openmp_mutex=4.5=4_kmp_llvm - annotated-types=0.7.0=pyhd8ed1ab_1 - asciitree=0.3.3=py_2 - bokeh=3.6.3=pyhd8ed1ab_0 @@ -31,20 +31,20 @@ dependencies: - discretize=0.11.3=py311h5b7b71f_0 - distributed=2025.3.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.59.1=py311h3778330_0 + - fonttools=4.59.2=py311h3778330_0 - freetype=2.13.3=ha770c72_1 - fsspec=2025.7.0=pyhd8ed1ab_0 - geoana=0.7.2=py311h5b7b71f_0 - - h2=4.2.0=pyhd8ed1ab_0 + - h2=4.3.0=pyhcf101f3_0 - h5py=3.14.0=nompi_py311h7f87ba5_100 - hdf5=1.14.6=nompi_h6e4c0c1_103 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - importlib-metadata=8.7.0=pyhe01879c_1 - jinja2=3.1.6=pyhd8ed1ab_0 - - joblib=1.5.1=pyhd8ed1ab_0 + - joblib=1.5.2=pyhd8ed1ab_0 - keyutils=1.6.3=hb9d3cd8_0 - - kiwisolver=1.4.9=py311h724c32c_0 + - kiwisolver=1.4.9=py311h724c32c_1 - krb5=1.21.3=h659f571_0 - lcms2=2.17=h717163a_0 - ld_impl_linux-64=2.44=h1423503_1 @@ -89,7 +89,7 @@ dependencies: - libxcrypt=4.4.36=hd590300_1 - libxml2=2.13.8=h2cb61b6_1 - libzlib=1.3.1=hb9d3cd8_2 - - llvm-openmp=20.1.8=h4922eb0_1 + - llvm-openmp=20.1.8=h4922eb0_2 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py311h2dc5d0c_1 - matplotlib-base=3.8.4=py311ha4ca890_2 @@ -140,9 +140,9 @@ dependencies: - tornado=6.5.2=py311h49ec1c0_0 - tqdm=4.67.1=pyhd8ed1ab_1 - trimesh=4.1.8=pyhd8ed1ab_0 - - typing-extensions=4.14.1=h4440ef1_0 + - typing-extensions=4.15.0=h396c80c_0 - typing-inspection=0.4.1=pyhd8ed1ab_0 - - typing_extensions=4.14.1=pyhe01879c_0 + - typing_extensions=4.15.0=pyhcf101f3_0 - tzdata=2025b=h78e105d_0 - unicodedata2=16.0.0=py311h9ecbd09_0 - urllib3=2.5.0=pyhd8ed1ab_0 @@ -155,13 +155,13 @@ dependencies: - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 - zipp=3.23.0=pyhd8ed1ab_0 - - zstandard=0.23.0=py311h9ecbd09_2 + - zstandard=0.23.0=py311h49ec1c0_3 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@25bf69c7afdfce5e9d4ac7d667c88790aad9c934 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@bdf223def86a077a7e3f02b631fbffd7727527f2 - - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@b950dd55b4fb70d2ef28488a3f684c374a170b9f - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@dc256f618543d8ee94fd36737749715fe497f8b7 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@655afd735989270d5d03b80a98cbe22844b47066 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@fd5f8fb1dcd764c01eb4d43ab26201c5bceb34ef + - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@416815352706add295a9d2b90814d2291068a85e + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@d794a0b24aafb4beccc7984e68b6904be44f860f variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.11-win-64-dev.conda.lock.yml b/environments/py-3.11-win-64-dev.conda.lock.yml index 26902a54c..2d788d637 100644 --- a/environments/py-3.11-win-64-dev.conda.lock.yml +++ b/environments/py-3.11-win-64-dev.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: a3ef3af1bb1d93eb8d5ac7e146beec4f1bc5d2f0f6af964c6b9d67be798ff119 +# input_hash: 106a2623766605c1a3c6aa7c479d1dd64f6d252df48e62b2a77761f8e247f0c4 channels: - conda-forge @@ -20,7 +20,7 @@ dependencies: - async-lru=2.0.5=pyh29332c3_0 - attrs=25.3.0=pyh71513ae_0 - babel=2.17.0=pyhd8ed1ab_0 - - beautifulsoup4=4.13.4=pyha770c72_0 + - beautifulsoup4=4.13.5=pyha770c72_0 - bleach=6.2.0=pyh29332c3_4 - bleach-with-css=6.2.0=h82add2a_4 - bokeh=3.6.3=pyhd8ed1ab_0 @@ -39,7 +39,7 @@ dependencies: - colorama=0.4.6=pyhd8ed1ab_1 - comm=0.2.3=pyhe01879c_0 - contourpy=1.3.3=py311h3fd045d_1 - - coverage=7.10.4=py311h3f79411_0 + - coverage=7.10.5=py311h3f79411_0 - cpython=3.11.13=py311hd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py311he736701_0 @@ -56,14 +56,14 @@ dependencies: - exceptiongroup=1.3.0=pyhd8ed1ab_0 - executing=2.2.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.59.1=py311h3f79411_0 + - fonttools=4.59.2=py311h3f79411_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.13.3=h57928b3_1 - fsspec=2025.7.0=pyhd8ed1ab_0 - geoana=0.7.2=py311h9b10771_0 - greenlet=3.2.4=py311h3e6a449_0 - h11=0.16.0=pyhd8ed1ab_0 - - h2=4.2.0=pyhd8ed1ab_0 + - h2=4.3.0=pyhcf101f3_0 - h5py=3.14.0=nompi_py311h97e6cc2_100 - hdf5=1.14.6=nompi_he30205f_103 - hpack=4.1.0=pyhd8ed1ab_0 @@ -76,7 +76,7 @@ dependencies: - importlib_metadata=8.7.0=h40b2b14_1 - iniconfig=2.0.0=pyhd8ed1ab_1 - ipykernel=6.30.1=pyh3521513_0 - - ipython=9.4.0=pyh6be1c34_0 + - ipython=9.5.0=pyh6be1c34_0 - ipython_genutils=0.2.0=pyhd8ed1ab_2 - ipython_pygments_lexers=1.1.1=pyhd8ed1ab_0 - ipywidgets=7.8.5=pyhd8ed1ab_0 @@ -84,7 +84,7 @@ dependencies: - isort=6.0.1=pyhd8ed1ab_1 - jedi=0.19.2=pyhd8ed1ab_1 - jinja2=3.1.6=pyhd8ed1ab_0 - - joblib=1.5.1=pyhd8ed1ab_0 + - joblib=1.5.2=pyhd8ed1ab_0 - json5=0.12.1=pyhd8ed1ab_0 - jsonpointer=3.0.0=py311h1ea47a8_1 - jsonschema=4.25.1=pyhe01879c_0 @@ -92,7 +92,7 @@ dependencies: - jsonschema-with-format-nongpl=4.25.1=he01879c_0 - jupyter-book=1.0.3=pyhd8ed1ab_1 - jupyter-cache=1.0.1=pyhff2d567_0 - - jupyter-lsp=2.2.6=pyhe01879c_0 + - jupyter-lsp=2.3.0=pyhcf101f3_0 - jupyter_client=8.6.3=pyhd8ed1ab_1 - jupyter_core=5.8.1=pyh5737063_0 - jupyter_events=0.12.0=pyh29332c3_0 @@ -102,8 +102,8 @@ dependencies: - jupyterlab_pygments=0.3.0=pyhd8ed1ab_2 - jupyterlab_server=2.27.3=pyhd8ed1ab_1 - jupyterlab_widgets=1.1.11=pyhd8ed1ab_0 - - jupytext=1.17.2=pyh80e38bb_0 - - kiwisolver=1.4.9=py311h275cad7_0 + - jupytext=1.17.3=pyh80e38bb_0 + - kiwisolver=1.4.9=py311h275cad7_1 - krb5=1.21.3=hdf4eb48_0 - lark=1.2.2=pyhd8ed1ab_1 - latexcodec=2.0.1=pyh9f0ad1d_0 @@ -141,7 +141,7 @@ dependencies: - libxml2=2.13.8=h741aa76_1 - libzlib=1.3.1=h2466b09_2 - linkify-it-py=2.0.3=pyhd8ed1ab_1 - - llvm-openmp=20.1.8=hfa2b4ca_1 + - llvm-openmp=20.1.8=hfa2b4ca_2 - locket=1.0.0=pyhd8ed1ab_0 - markdown-it-py=2.2.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py311h5082efb_1 @@ -174,15 +174,15 @@ dependencies: - pandas=2.3.2=py311h11fd7f3_0 - pandoc=3.7.0.2=h57928b3_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 - - parso=0.8.4=pyhd8ed1ab_1 + - parso=0.8.5=pyhcf101f3_0 - partd=1.4.2=pyhd8ed1ab_0 - pickleshare=0.7.5=pyhd8ed1ab_1004 - pillow=10.3.0=py311h5592be9_1 - pip=25.2=pyh8b19718_0 - - platformdirs=4.3.8=pyhe01879c_0 + - platformdirs=4.4.0=pyhcf101f3_0 - pluggy=1.6.0=pyhd8ed1ab_0 - prometheus_client=0.22.1=pyhd8ed1ab_0 - - prompt-toolkit=3.0.51=pyha770c72_0 + - prompt-toolkit=3.0.52=pyha770c72_0 - psutil=7.0.0=py311h3485c13_1 - pthread-stubs=0.4=h0e40799_1002 - pure_eval=0.2.3=pyhd8ed1ab_1 @@ -208,17 +208,17 @@ dependencies: - python-tzdata=2025.2=pyhd8ed1ab_0 - python_abi=3.11=8_cp311 - pytz=2025.2=pyhd8ed1ab_0 - - pywin32=311=py311hefeebc8_0 + - pywin32=311=py311hefeebc8_1 - pywinpty=2.0.15=py311hda3d55a_0 - pyyaml=6.0.2=py311h5082efb_2 - - pyzmq=27.0.2=py311ha362a94_0 + - pyzmq=27.0.2=py311hb77b9c8_2 - readthedocs-sphinx-ext=2.2.5=pyhd8ed1ab_1 - referencing=0.36.2=pyh29332c3_0 - requests=2.32.5=pyhd8ed1ab_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.27.0=py311hf51aa87_0 + - rpds-py=0.27.1=py311hf51aa87_0 - rtree=1.2.0=py311h44d53c4_1 - scikit-learn=1.6.1=py311hdcb8d17_0 - scipy=1.14.1=py311hf16d85f_2 @@ -228,7 +228,7 @@ dependencies: - sniffio=1.3.1=pyhd8ed1ab_1 - snowballstemmer=3.0.1=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - - soupsieve=2.7=pyhd8ed1ab_0 + - soupsieve=2.8=pyhd8ed1ab_0 - sphinx=5.3.0=pyhd8ed1ab_0 - sphinx-book-theme=1.1.3=pyhd8ed1ab_1 - sphinx-comments=0.0.3=pyhd8ed1ab_1 @@ -264,13 +264,13 @@ dependencies: - traitlets=5.14.3=pyhd8ed1ab_1 - trimesh=4.1.8=pyhd8ed1ab_0 - types-python-dateutil=2.9.0.20250822=pyhd8ed1ab_0 - - typing-extensions=4.14.1=h4440ef1_0 + - typing-extensions=4.15.0=h396c80c_0 - typing-inspection=0.4.1=pyhd8ed1ab_0 - - typing_extensions=4.14.1=pyhe01879c_0 + - typing_extensions=4.15.0=pyhcf101f3_0 - typing_utils=0.1.0=pyhd8ed1ab_1 - tzdata=2025b=h78e105d_0 - uc-micro-py=1.0.3=pyhd8ed1ab_1 - - ucrt=10.0.22621.0=h57928b3_1 + - ucrt=10.0.26100.0=h57928b3_0 - unicodedata2=16.0.0=py311he736701_0 - uri-template=1.3.0=pyhd8ed1ab_1 - urllib3=2.5.0=pyhd8ed1ab_0 @@ -294,13 +294,13 @@ dependencies: - zeromq=4.3.5=ha9f60a1_7 - zict=3.0.0=pyhd8ed1ab_1 - zipp=3.23.0=pyhd8ed1ab_0 - - zstandard=0.23.0=py311he736701_2 + - zstandard=0.23.0=py311h3485c13_3 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@25bf69c7afdfce5e9d4ac7d667c88790aad9c934 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@bdf223def86a077a7e3f02b631fbffd7727527f2 - - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@b950dd55b4fb70d2ef28488a3f684c374a170b9f - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@dc256f618543d8ee94fd36737749715fe497f8b7 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@655afd735989270d5d03b80a98cbe22844b47066 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@fd5f8fb1dcd764c01eb4d43ab26201c5bceb34ef + - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@416815352706add295a9d2b90814d2291068a85e + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@d794a0b24aafb4beccc7984e68b6904be44f860f variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.11-win-64.conda.lock.yml b/environments/py-3.11-win-64.conda.lock.yml index cbb3751ba..a79e0d8d3 100644 --- a/environments/py-3.11-win-64.conda.lock.yml +++ b/environments/py-3.11-win-64.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: a3ef3af1bb1d93eb8d5ac7e146beec4f1bc5d2f0f6af964c6b9d67be798ff119 +# input_hash: 106a2623766605c1a3c6aa7c479d1dd64f6d252df48e62b2a77761f8e247f0c4 channels: - conda-forge @@ -30,19 +30,19 @@ dependencies: - discretize=0.11.3=py311h9b10771_0 - distributed=2025.3.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.59.1=py311h3f79411_0 + - fonttools=4.59.2=py311h3f79411_0 - freetype=2.13.3=h57928b3_1 - fsspec=2025.7.0=pyhd8ed1ab_0 - geoana=0.7.2=py311h9b10771_0 - - h2=4.2.0=pyhd8ed1ab_0 + - h2=4.3.0=pyhcf101f3_0 - h5py=3.14.0=nompi_py311h97e6cc2_100 - hdf5=1.14.6=nompi_he30205f_103 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - importlib-metadata=8.7.0=pyhe01879c_1 - jinja2=3.1.6=pyhd8ed1ab_0 - - joblib=1.5.1=pyhd8ed1ab_0 - - kiwisolver=1.4.9=py311h275cad7_0 + - joblib=1.5.2=pyhd8ed1ab_0 + - kiwisolver=1.4.9=py311h275cad7_1 - krb5=1.21.3=hdf4eb48_0 - lcms2=2.17=hbcf6048_0 - lerc=4.0.0=h6470a55_1 @@ -76,7 +76,7 @@ dependencies: - libxcb=1.17.0=h0e4246c_0 - libxml2=2.13.8=h741aa76_1 - libzlib=1.3.1=h2466b09_2 - - llvm-openmp=20.1.8=hfa2b4ca_1 + - llvm-openmp=20.1.8=hfa2b4ca_2 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py311h5082efb_1 - matplotlib-base=3.8.4=py311h9b31f6e_2 @@ -123,11 +123,11 @@ dependencies: - tornado=6.5.2=py311h3485c13_0 - tqdm=4.67.1=pyhd8ed1ab_1 - trimesh=4.1.8=pyhd8ed1ab_0 - - typing-extensions=4.14.1=h4440ef1_0 + - typing-extensions=4.15.0=h396c80c_0 - typing-inspection=0.4.1=pyhd8ed1ab_0 - - typing_extensions=4.14.1=pyhe01879c_0 + - typing_extensions=4.15.0=pyhcf101f3_0 - tzdata=2025b=h78e105d_0 - - ucrt=10.0.22621.0=h57928b3_1 + - ucrt=10.0.26100.0=h57928b3_0 - unicodedata2=16.0.0=py311he736701_0 - urllib3=2.5.0=pyhd8ed1ab_0 - vc=14.3=h41ae7f8_31 @@ -143,13 +143,13 @@ dependencies: - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 - zipp=3.23.0=pyhd8ed1ab_0 - - zstandard=0.23.0=py311he736701_2 + - zstandard=0.23.0=py311h3485c13_3 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@25bf69c7afdfce5e9d4ac7d667c88790aad9c934 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@bdf223def86a077a7e3f02b631fbffd7727527f2 - - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@b950dd55b4fb70d2ef28488a3f684c374a170b9f - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@dc256f618543d8ee94fd36737749715fe497f8b7 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@655afd735989270d5d03b80a98cbe22844b47066 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@fd5f8fb1dcd764c01eb4d43ab26201c5bceb34ef + - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@416815352706add295a9d2b90814d2291068a85e + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@d794a0b24aafb4beccc7984e68b6904be44f860f variables: KMP_WARNINGS: 0 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 eaa6087db..fab21c549 100644 --- a/environments/py-3.12-linux-64-dev.conda.lock.yml +++ b/environments/py-3.12-linux-64-dev.conda.lock.yml @@ -1,12 +1,13 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: faba276316c29373b2d6b7b8c7642398283e4ca103c3aa3df2fd0358aea7e262 +# input_hash: 81aedccfb6112401b5a94619d03cb65bd3c0a1242f995c2c22516fc86dbbaec5 channels: - conda-forge - nodefaults dependencies: - - _openmp_mutex=4.5=3_kmp_llvm + - _openmp_mutex=4.5=4_kmp_llvm + - _python_abi3_support=1.0=hd8ed1ab_2 - accessible-pygments=0.0.5=pyhd8ed1ab_1 - alabaster=0.7.16=pyhd8ed1ab_0 - annotated-types=0.7.0=pyhd8ed1ab_1 @@ -20,7 +21,7 @@ dependencies: - async-lru=2.0.5=pyh29332c3_0 - attrs=25.3.0=pyh71513ae_0 - babel=2.17.0=pyhd8ed1ab_0 - - beautifulsoup4=4.13.4=pyha770c72_0 + - beautifulsoup4=4.13.5=pyha770c72_0 - bleach=6.2.0=pyh29332c3_4 - bleach-with-css=6.2.0=h82add2a_4 - bokeh=3.6.3=pyhd8ed1ab_0 @@ -40,7 +41,8 @@ dependencies: - colorama=0.4.6=pyhd8ed1ab_1 - comm=0.2.3=pyhe01879c_0 - contourpy=1.3.3=py312hd9148b4_1 - - coverage=7.10.4=py312h8a5da7c_0 + - coverage=7.10.5=py312h8a5da7c_0 + - cpython=3.12.11=py312hd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py312h66e93f0_0 - dask-core=2025.3.0=pyhd8ed1ab_0 @@ -52,18 +54,18 @@ dependencies: - dill=0.4.0=pyhd8ed1ab_0 - discretize=0.11.3=py312hc39e661_0 - distributed=2025.3.0=pyhd8ed1ab_0 - - docutils=0.18.1=py312h7900ff3_0 + - docutils=0.18.1=py312h7900ff3_1 - exceptiongroup=1.3.0=pyhd8ed1ab_0 - executing=2.2.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.59.1=py312h8a5da7c_0 + - fonttools=4.59.2=py312h8a5da7c_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.13.3=ha770c72_1 - fsspec=2025.7.0=pyhd8ed1ab_0 - geoana=0.7.2=py312hc39e661_0 - greenlet=3.2.4=py312h1289d80_0 - h11=0.16.0=pyhd8ed1ab_0 - - h2=4.2.0=pyhd8ed1ab_0 + - h2=4.3.0=pyhcf101f3_0 - h5py=3.14.0=nompi_py312h3faca00_100 - hdf5=1.14.6=nompi_h6e4c0c1_103 - hpack=4.1.0=pyhd8ed1ab_0 @@ -76,7 +78,7 @@ dependencies: - importlib_metadata=8.7.0=h40b2b14_1 - iniconfig=2.0.0=pyhd8ed1ab_1 - ipykernel=6.30.1=pyh82676e8_0 - - ipython=9.4.0=pyhfa0c392_0 + - ipython=9.5.0=pyhfa0c392_0 - ipython_genutils=0.2.0=pyhd8ed1ab_2 - ipython_pygments_lexers=1.1.1=pyhd8ed1ab_0 - ipywidgets=7.8.5=pyhd8ed1ab_0 @@ -84,7 +86,7 @@ dependencies: - isort=6.0.1=pyhd8ed1ab_1 - jedi=0.19.2=pyhd8ed1ab_1 - jinja2=3.1.6=pyhd8ed1ab_0 - - joblib=1.5.1=pyhd8ed1ab_0 + - joblib=1.5.2=pyhd8ed1ab_0 - json5=0.12.1=pyhd8ed1ab_0 - jsonpointer=3.0.0=py312h7900ff3_1 - jsonschema=4.25.1=pyhe01879c_0 @@ -92,7 +94,7 @@ dependencies: - jsonschema-with-format-nongpl=4.25.1=he01879c_0 - jupyter-book=1.0.3=pyhd8ed1ab_1 - jupyter-cache=1.0.1=pyhff2d567_0 - - jupyter-lsp=2.2.6=pyhe01879c_0 + - jupyter-lsp=2.3.0=pyhcf101f3_0 - jupyter_client=8.6.3=pyhd8ed1ab_1 - jupyter_core=5.8.1=pyh31011fe_0 - jupyter_events=0.12.0=pyh29332c3_0 @@ -102,9 +104,9 @@ dependencies: - jupyterlab_pygments=0.3.0=pyhd8ed1ab_2 - jupyterlab_server=2.27.3=pyhd8ed1ab_1 - jupyterlab_widgets=1.1.11=pyhd8ed1ab_0 - - jupytext=1.17.2=pyh80e38bb_0 + - jupytext=1.17.3=pyh80e38bb_0 - keyutils=1.6.3=hb9d3cd8_0 - - kiwisolver=1.4.9=py312h0a2e395_0 + - kiwisolver=1.4.9=py312h0a2e395_1 - krb5=1.21.3=h659f571_0 - lark=1.2.2=pyhd8ed1ab_1 - latexcodec=2.0.1=pyh9f0ad1d_0 @@ -153,7 +155,7 @@ dependencies: - libxml2=2.13.8=h2cb61b6_1 - libzlib=1.3.1=hb9d3cd8_2 - linkify-it-py=2.0.3=pyhd8ed1ab_1 - - llvm-openmp=20.1.8=h4922eb0_1 + - llvm-openmp=20.1.8=h4922eb0_2 - locket=1.0.0=pyhd8ed1ab_0 - markdown-it-py=2.2.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py312h178313f_1 @@ -189,16 +191,16 @@ dependencies: - pandas=2.3.2=py312hf79963d_0 - pandoc=3.7.0.2=ha770c72_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 - - parso=0.8.4=pyhd8ed1ab_1 + - parso=0.8.5=pyhcf101f3_0 - partd=1.4.2=pyhd8ed1ab_0 - pexpect=4.9.0=pyhd8ed1ab_1 - pickleshare=0.7.5=pyhd8ed1ab_1004 - pillow=10.3.0=py312h287a98d_1 - pip=25.2=pyh8b19718_0 - - platformdirs=4.3.8=pyhe01879c_0 + - platformdirs=4.4.0=pyhcf101f3_0 - pluggy=1.6.0=pyhd8ed1ab_0 - prometheus_client=0.22.1=pyhd8ed1ab_0 - - prompt-toolkit=3.0.51=pyha770c72_0 + - prompt-toolkit=3.0.52=pyha770c72_0 - psutil=7.0.0=py312h4c3975b_1 - pthread-stubs=0.4=hb9d3cd8_1002 - ptyprocess=0.7.0=pyhd8ed1ab_1 @@ -220,13 +222,14 @@ dependencies: - python=3.12.11=h9e4cc4f_0_cpython - python-dateutil=2.9.0.post0=pyhe01879c_2 - python-fastjsonschema=2.21.2=pyhe01879c_0 + - python-gil=3.12.11=hd8ed1ab_0 - python-json-logger=2.0.7=pyhd8ed1ab_0 - python-mumps=0.0.3=py312h6ad3ee3_0 - python-tzdata=2025.2=pyhd8ed1ab_0 - python_abi=3.12=8_cp312 - pytz=2025.2=pyhd8ed1ab_0 - pyyaml=6.0.2=py312h178313f_2 - - pyzmq=27.0.2=py312h6748674_0 + - pyzmq=27.0.2=py312hfb55c3c_2 - readline=8.2=h8c095d6_2 - readthedocs-sphinx-ext=2.2.5=pyhd8ed1ab_1 - referencing=0.36.2=pyh29332c3_0 @@ -234,7 +237,7 @@ dependencies: - rfc3339-validator=0.1.4=pyhd8ed1ab_1 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - rfc3987-syntax=1.1.0=pyhe01879c_1 - - rpds-py=0.27.0=py312h868fb18_0 + - rpds-py=0.27.1=py312h868fb18_0 - rtree=1.2.0=py312h3ed4c40_1 - scikit-learn=1.6.1=py312h7a48858_0 - scipy=1.14.1=py312h62794b6_2 @@ -244,7 +247,7 @@ dependencies: - sniffio=1.3.1=pyhd8ed1ab_1 - snowballstemmer=3.0.1=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - - soupsieve=2.7=pyhd8ed1ab_0 + - soupsieve=2.8=pyhd8ed1ab_0 - sphinx=5.3.0=pyhd8ed1ab_0 - sphinx-book-theme=1.1.3=pyhd8ed1ab_1 - sphinx-comments=0.0.3=pyhd8ed1ab_1 @@ -280,9 +283,9 @@ dependencies: - traitlets=5.14.3=pyhd8ed1ab_1 - trimesh=4.1.8=pyhd8ed1ab_0 - types-python-dateutil=2.9.0.20250822=pyhd8ed1ab_0 - - typing-extensions=4.14.1=h4440ef1_0 + - typing-extensions=4.15.0=h396c80c_0 - typing-inspection=0.4.1=pyhd8ed1ab_0 - - typing_extensions=4.14.1=pyhe01879c_0 + - typing_extensions=4.15.0=pyhcf101f3_0 - typing_utils=0.1.0=pyhd8ed1ab_1 - tzdata=2025b=h78e105d_0 - uc-micro-py=1.0.3=pyhd8ed1ab_1 @@ -304,13 +307,13 @@ dependencies: - zeromq=4.3.5=h3b0a872_7 - zict=3.0.0=pyhd8ed1ab_1 - zipp=3.23.0=pyhd8ed1ab_0 - - zstandard=0.23.0=py312h66e93f0_2 + - zstandard=0.23.0=py312h4c3975b_3 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@25bf69c7afdfce5e9d4ac7d667c88790aad9c934 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@bdf223def86a077a7e3f02b631fbffd7727527f2 - - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@b950dd55b4fb70d2ef28488a3f684c374a170b9f - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@dc256f618543d8ee94fd36737749715fe497f8b7 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@655afd735989270d5d03b80a98cbe22844b47066 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@fd5f8fb1dcd764c01eb4d43ab26201c5bceb34ef + - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@416815352706add295a9d2b90814d2291068a85e + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@d794a0b24aafb4beccc7984e68b6904be44f860f variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.12-linux-64.conda.lock.yml b/environments/py-3.12-linux-64.conda.lock.yml index beb520472..9123b7c4a 100644 --- a/environments/py-3.12-linux-64.conda.lock.yml +++ b/environments/py-3.12-linux-64.conda.lock.yml @@ -1,12 +1,12 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: faba276316c29373b2d6b7b8c7642398283e4ca103c3aa3df2fd0358aea7e262 +# input_hash: 81aedccfb6112401b5a94619d03cb65bd3c0a1242f995c2c22516fc86dbbaec5 channels: - conda-forge - nodefaults dependencies: - - _openmp_mutex=4.5=3_kmp_llvm + - _openmp_mutex=4.5=4_kmp_llvm - annotated-types=0.7.0=pyhd8ed1ab_1 - asciitree=0.3.3=py_2 - bokeh=3.6.3=pyhd8ed1ab_0 @@ -31,20 +31,20 @@ dependencies: - discretize=0.11.3=py312hc39e661_0 - distributed=2025.3.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.59.1=py312h8a5da7c_0 + - fonttools=4.59.2=py312h8a5da7c_0 - freetype=2.13.3=ha770c72_1 - fsspec=2025.7.0=pyhd8ed1ab_0 - geoana=0.7.2=py312hc39e661_0 - - h2=4.2.0=pyhd8ed1ab_0 + - h2=4.3.0=pyhcf101f3_0 - h5py=3.14.0=nompi_py312h3faca00_100 - hdf5=1.14.6=nompi_h6e4c0c1_103 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - importlib-metadata=8.7.0=pyhe01879c_1 - jinja2=3.1.6=pyhd8ed1ab_0 - - joblib=1.5.1=pyhd8ed1ab_0 + - joblib=1.5.2=pyhd8ed1ab_0 - keyutils=1.6.3=hb9d3cd8_0 - - kiwisolver=1.4.9=py312h0a2e395_0 + - kiwisolver=1.4.9=py312h0a2e395_1 - krb5=1.21.3=h659f571_0 - lcms2=2.17=h717163a_0 - ld_impl_linux-64=2.44=h1423503_1 @@ -89,7 +89,7 @@ dependencies: - libxcrypt=4.4.36=hd590300_1 - libxml2=2.13.8=h2cb61b6_1 - libzlib=1.3.1=hb9d3cd8_2 - - llvm-openmp=20.1.8=h4922eb0_1 + - llvm-openmp=20.1.8=h4922eb0_2 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py312h178313f_1 - matplotlib-base=3.8.4=py312h20ab3a6_2 @@ -140,9 +140,9 @@ dependencies: - tornado=6.5.2=py312h4c3975b_0 - tqdm=4.67.1=pyhd8ed1ab_1 - trimesh=4.1.8=pyhd8ed1ab_0 - - typing-extensions=4.14.1=h4440ef1_0 + - typing-extensions=4.15.0=h396c80c_0 - typing-inspection=0.4.1=pyhd8ed1ab_0 - - typing_extensions=4.14.1=pyhe01879c_0 + - typing_extensions=4.15.0=pyhcf101f3_0 - tzdata=2025b=h78e105d_0 - unicodedata2=16.0.0=py312h66e93f0_0 - urllib3=2.5.0=pyhd8ed1ab_0 @@ -155,13 +155,13 @@ dependencies: - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 - zipp=3.23.0=pyhd8ed1ab_0 - - zstandard=0.23.0=py312h66e93f0_2 + - zstandard=0.23.0=py312h4c3975b_3 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@25bf69c7afdfce5e9d4ac7d667c88790aad9c934 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@bdf223def86a077a7e3f02b631fbffd7727527f2 - - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@b950dd55b4fb70d2ef28488a3f684c374a170b9f - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@dc256f618543d8ee94fd36737749715fe497f8b7 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@655afd735989270d5d03b80a98cbe22844b47066 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@fd5f8fb1dcd764c01eb4d43ab26201c5bceb34ef + - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@416815352706add295a9d2b90814d2291068a85e + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@d794a0b24aafb4beccc7984e68b6904be44f860f variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.12-win-64-dev.conda.lock.yml b/environments/py-3.12-win-64-dev.conda.lock.yml index 52554c975..5d71a31e3 100644 --- a/environments/py-3.12-win-64-dev.conda.lock.yml +++ b/environments/py-3.12-win-64-dev.conda.lock.yml @@ -1,12 +1,13 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: e6a7f9b65a8eab774bcc6e97dd60c58d129bef69f0979db3e945d74561748784 +# input_hash: 1184306731b94290082a07ff69198b9bab01231154ed953a92d9f4ce512366a2 channels: - conda-forge - nodefaults dependencies: - _openmp_mutex=4.5=2_gnu + - _python_abi3_support=1.0=hd8ed1ab_2 - accessible-pygments=0.0.5=pyhd8ed1ab_1 - alabaster=0.7.16=pyhd8ed1ab_0 - annotated-types=0.7.0=pyhd8ed1ab_1 @@ -20,7 +21,7 @@ dependencies: - async-lru=2.0.5=pyh29332c3_0 - attrs=25.3.0=pyh71513ae_0 - babel=2.17.0=pyhd8ed1ab_0 - - beautifulsoup4=4.13.4=pyha770c72_0 + - beautifulsoup4=4.13.5=pyha770c72_0 - bleach=6.2.0=pyh29332c3_4 - bleach-with-css=6.2.0=h82add2a_4 - bokeh=3.6.3=pyhd8ed1ab_0 @@ -39,7 +40,7 @@ dependencies: - colorama=0.4.6=pyhd8ed1ab_1 - comm=0.2.3=pyhe01879c_0 - contourpy=1.3.3=py312hf90b1b7_1 - - coverage=7.10.4=py312h05f76fc_0 + - coverage=7.10.5=py312h05f76fc_0 - cpython=3.12.11=py312hd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py312h4389bb4_0 @@ -52,18 +53,18 @@ dependencies: - dill=0.4.0=pyhd8ed1ab_0 - discretize=0.11.3=py312hbaa7e33_0 - distributed=2025.3.0=pyhd8ed1ab_0 - - docutils=0.18.1=py312h2e8e312_0 + - docutils=0.18.1=py312h2e8e312_1 - exceptiongroup=1.3.0=pyhd8ed1ab_0 - executing=2.2.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.59.1=py312h05f76fc_0 + - fonttools=4.59.2=py312h05f76fc_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.13.3=h57928b3_1 - fsspec=2025.7.0=pyhd8ed1ab_0 - geoana=0.7.2=py312hbaa7e33_0 - greenlet=3.2.4=py312hbb81ca0_0 - h11=0.16.0=pyhd8ed1ab_0 - - h2=4.2.0=pyhd8ed1ab_0 + - h2=4.3.0=pyhcf101f3_0 - h5py=3.14.0=nompi_py312h6cc2a29_100 - hdf5=1.14.6=nompi_he30205f_103 - hpack=4.1.0=pyhd8ed1ab_0 @@ -76,7 +77,7 @@ dependencies: - importlib_metadata=8.7.0=h40b2b14_1 - iniconfig=2.0.0=pyhd8ed1ab_1 - ipykernel=6.30.1=pyh3521513_0 - - ipython=9.4.0=pyh6be1c34_0 + - ipython=9.5.0=pyh6be1c34_0 - ipython_genutils=0.2.0=pyhd8ed1ab_2 - ipython_pygments_lexers=1.1.1=pyhd8ed1ab_0 - ipywidgets=7.8.5=pyhd8ed1ab_0 @@ -84,7 +85,7 @@ dependencies: - isort=6.0.1=pyhd8ed1ab_1 - jedi=0.19.2=pyhd8ed1ab_1 - jinja2=3.1.6=pyhd8ed1ab_0 - - joblib=1.5.1=pyhd8ed1ab_0 + - joblib=1.5.2=pyhd8ed1ab_0 - json5=0.12.1=pyhd8ed1ab_0 - jsonpointer=3.0.0=py312h2e8e312_1 - jsonschema=4.25.1=pyhe01879c_0 @@ -92,7 +93,7 @@ dependencies: - jsonschema-with-format-nongpl=4.25.1=he01879c_0 - jupyter-book=1.0.3=pyhd8ed1ab_1 - jupyter-cache=1.0.1=pyhff2d567_0 - - jupyter-lsp=2.2.6=pyhe01879c_0 + - jupyter-lsp=2.3.0=pyhcf101f3_0 - jupyter_client=8.6.3=pyhd8ed1ab_1 - jupyter_core=5.8.1=pyh5737063_0 - jupyter_events=0.12.0=pyh29332c3_0 @@ -102,8 +103,8 @@ dependencies: - jupyterlab_pygments=0.3.0=pyhd8ed1ab_2 - jupyterlab_server=2.27.3=pyhd8ed1ab_1 - jupyterlab_widgets=1.1.11=pyhd8ed1ab_0 - - jupytext=1.17.2=pyh80e38bb_0 - - kiwisolver=1.4.9=py312h78d62e6_0 + - jupytext=1.17.3=pyh80e38bb_0 + - kiwisolver=1.4.9=py312h78d62e6_1 - krb5=1.21.3=hdf4eb48_0 - lark=1.2.2=pyhd8ed1ab_1 - latexcodec=2.0.1=pyh9f0ad1d_0 @@ -141,7 +142,7 @@ dependencies: - libxml2=2.13.8=h741aa76_1 - libzlib=1.3.1=h2466b09_2 - linkify-it-py=2.0.3=pyhd8ed1ab_1 - - llvm-openmp=20.1.8=hfa2b4ca_1 + - llvm-openmp=20.1.8=hfa2b4ca_2 - locket=1.0.0=pyhd8ed1ab_0 - markdown-it-py=2.2.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py312h31fea79_1 @@ -174,15 +175,15 @@ dependencies: - pandas=2.3.2=py312hc128f0a_0 - pandoc=3.7.0.2=h57928b3_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 - - parso=0.8.4=pyhd8ed1ab_1 + - parso=0.8.5=pyhcf101f3_0 - partd=1.4.2=pyhd8ed1ab_0 - pickleshare=0.7.5=pyhd8ed1ab_1004 - pillow=10.3.0=py312h381445a_1 - pip=25.2=pyh8b19718_0 - - platformdirs=4.3.8=pyhe01879c_0 + - platformdirs=4.4.0=pyhcf101f3_0 - pluggy=1.6.0=pyhd8ed1ab_0 - prometheus_client=0.22.1=pyhd8ed1ab_0 - - prompt-toolkit=3.0.51=pyha770c72_0 + - prompt-toolkit=3.0.52=pyha770c72_0 - psutil=7.0.0=py312he06e257_1 - pthread-stubs=0.4=h0e40799_1002 - pure_eval=0.2.3=pyhd8ed1ab_1 @@ -203,22 +204,23 @@ dependencies: - python=3.12.11=h3f84c4b_0_cpython - python-dateutil=2.9.0.post0=pyhe01879c_2 - python-fastjsonschema=2.21.2=pyhe01879c_0 + - python-gil=3.12.11=hd8ed1ab_0 - python-json-logger=2.0.7=pyhd8ed1ab_0 - python-mumps=0.0.3=py312h8095395_0 - python-tzdata=2025.2=pyhd8ed1ab_0 - python_abi=3.12=8_cp312 - pytz=2025.2=pyhd8ed1ab_0 - - pywin32=311=py312h829343e_0 + - pywin32=311=py312h829343e_1 - pywinpty=2.0.15=py312h275cf98_0 - pyyaml=6.0.2=py312h31fea79_2 - - pyzmq=27.0.2=py312h5b324a9_0 + - pyzmq=27.0.2=py312hbb5da91_2 - readthedocs-sphinx-ext=2.2.5=pyhd8ed1ab_1 - referencing=0.36.2=pyh29332c3_0 - requests=2.32.5=pyhd8ed1ab_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.27.0=py312hdabe01f_0 + - rpds-py=0.27.1=py312hdabe01f_0 - rtree=1.2.0=py312h50e5f8f_1 - scikit-learn=1.6.1=py312h816cc57_0 - scipy=1.14.1=py312h337df96_2 @@ -228,7 +230,7 @@ dependencies: - sniffio=1.3.1=pyhd8ed1ab_1 - snowballstemmer=3.0.1=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - - soupsieve=2.7=pyhd8ed1ab_0 + - soupsieve=2.8=pyhd8ed1ab_0 - sphinx=5.3.0=pyhd8ed1ab_0 - sphinx-book-theme=1.1.3=pyhd8ed1ab_1 - sphinx-comments=0.0.3=pyhd8ed1ab_1 @@ -264,13 +266,13 @@ dependencies: - traitlets=5.14.3=pyhd8ed1ab_1 - trimesh=4.1.8=pyhd8ed1ab_0 - types-python-dateutil=2.9.0.20250822=pyhd8ed1ab_0 - - typing-extensions=4.14.1=h4440ef1_0 + - typing-extensions=4.15.0=h396c80c_0 - typing-inspection=0.4.1=pyhd8ed1ab_0 - - typing_extensions=4.14.1=pyhe01879c_0 + - typing_extensions=4.15.0=pyhcf101f3_0 - typing_utils=0.1.0=pyhd8ed1ab_1 - tzdata=2025b=h78e105d_0 - uc-micro-py=1.0.3=pyhd8ed1ab_1 - - ucrt=10.0.22621.0=h57928b3_1 + - ucrt=10.0.26100.0=h57928b3_0 - unicodedata2=16.0.0=py312h4389bb4_0 - uri-template=1.3.0=pyhd8ed1ab_1 - urllib3=2.5.0=pyhd8ed1ab_0 @@ -294,13 +296,13 @@ dependencies: - zeromq=4.3.5=ha9f60a1_7 - zict=3.0.0=pyhd8ed1ab_1 - zipp=3.23.0=pyhd8ed1ab_0 - - zstandard=0.23.0=py312h4389bb4_2 + - zstandard=0.23.0=py312he06e257_3 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@25bf69c7afdfce5e9d4ac7d667c88790aad9c934 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@bdf223def86a077a7e3f02b631fbffd7727527f2 - - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@b950dd55b4fb70d2ef28488a3f684c374a170b9f - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@dc256f618543d8ee94fd36737749715fe497f8b7 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@655afd735989270d5d03b80a98cbe22844b47066 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@fd5f8fb1dcd764c01eb4d43ab26201c5bceb34ef + - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@416815352706add295a9d2b90814d2291068a85e + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@d794a0b24aafb4beccc7984e68b6904be44f860f variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.12-win-64.conda.lock.yml b/environments/py-3.12-win-64.conda.lock.yml index 61aa0e02f..4bc9c9da2 100644 --- a/environments/py-3.12-win-64.conda.lock.yml +++ b/environments/py-3.12-win-64.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: e6a7f9b65a8eab774bcc6e97dd60c58d129bef69f0979db3e945d74561748784 +# input_hash: 1184306731b94290082a07ff69198b9bab01231154ed953a92d9f4ce512366a2 channels: - conda-forge @@ -30,19 +30,19 @@ dependencies: - discretize=0.11.3=py312hbaa7e33_0 - distributed=2025.3.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.59.1=py312h05f76fc_0 + - fonttools=4.59.2=py312h05f76fc_0 - freetype=2.13.3=h57928b3_1 - fsspec=2025.7.0=pyhd8ed1ab_0 - geoana=0.7.2=py312hbaa7e33_0 - - h2=4.2.0=pyhd8ed1ab_0 + - h2=4.3.0=pyhcf101f3_0 - h5py=3.14.0=nompi_py312h6cc2a29_100 - hdf5=1.14.6=nompi_he30205f_103 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - importlib-metadata=8.7.0=pyhe01879c_1 - jinja2=3.1.6=pyhd8ed1ab_0 - - joblib=1.5.1=pyhd8ed1ab_0 - - kiwisolver=1.4.9=py312h78d62e6_0 + - joblib=1.5.2=pyhd8ed1ab_0 + - kiwisolver=1.4.9=py312h78d62e6_1 - krb5=1.21.3=hdf4eb48_0 - lcms2=2.17=hbcf6048_0 - lerc=4.0.0=h6470a55_1 @@ -76,7 +76,7 @@ dependencies: - libxcb=1.17.0=h0e4246c_0 - libxml2=2.13.8=h741aa76_1 - libzlib=1.3.1=h2466b09_2 - - llvm-openmp=20.1.8=hfa2b4ca_1 + - llvm-openmp=20.1.8=hfa2b4ca_2 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py312h31fea79_1 - matplotlib-base=3.8.4=py312hfee7060_2 @@ -123,11 +123,11 @@ dependencies: - tornado=6.5.2=py312he06e257_0 - tqdm=4.67.1=pyhd8ed1ab_1 - trimesh=4.1.8=pyhd8ed1ab_0 - - typing-extensions=4.14.1=h4440ef1_0 + - typing-extensions=4.15.0=h396c80c_0 - typing-inspection=0.4.1=pyhd8ed1ab_0 - - typing_extensions=4.14.1=pyhe01879c_0 + - typing_extensions=4.15.0=pyhcf101f3_0 - tzdata=2025b=h78e105d_0 - - ucrt=10.0.22621.0=h57928b3_1 + - ucrt=10.0.26100.0=h57928b3_0 - unicodedata2=16.0.0=py312h4389bb4_0 - urllib3=2.5.0=pyhd8ed1ab_0 - vc=14.3=h41ae7f8_31 @@ -143,13 +143,13 @@ dependencies: - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 - zipp=3.23.0=pyhd8ed1ab_0 - - zstandard=0.23.0=py312h4389bb4_2 + - zstandard=0.23.0=py312he06e257_3 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@25bf69c7afdfce5e9d4ac7d667c88790aad9c934 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@bdf223def86a077a7e3f02b631fbffd7727527f2 - - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@b950dd55b4fb70d2ef28488a3f684c374a170b9f - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@dc256f618543d8ee94fd36737749715fe497f8b7 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@655afd735989270d5d03b80a98cbe22844b47066 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@fd5f8fb1dcd764c01eb4d43ab26201c5bceb34ef + - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@416815352706add295a9d2b90814d2291068a85e + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@d794a0b24aafb4beccc7984e68b6904be44f860f variables: KMP_WARNINGS: 0 diff --git a/py-3.10.conda-lock.yml b/py-3.10.conda-lock.yml index 031cb6b56..d98ed5774 100644 --- a/py-3.10.conda-lock.yml +++ b/py-3.10.conda-lock.yml @@ -15,8 +15,8 @@ version: 1 metadata: content_hash: - win-64: 03d1f3ef4c61f2960917993a4919e1b140142b11a1eb751062ca845672f6e6b4 - linux-64: df903f8d5f97aa53e048a59653b36a5acf8ff615a3b907992eb74b753d8cf30a + win-64: 0e4eae48731ca9e26a194a0b731d4cbb5666ce7bac7a5003b542681283abdc39 + linux-64: c8f7ae0bddeffc0ce95aebb250579b216dcf022feb26f8e2d841be6b05442f87 channels: - url: conda-forge used_env_vars: [] @@ -35,10 +35,10 @@ package: platform: linux-64 dependencies: llvm-openmp: '>=9.0.1' - url: https://repo.prefix.dev/conda-forge/linux-64/_openmp_mutex-4.5-3_kmp_llvm.conda + url: https://repo.prefix.dev/conda-forge/linux-64/_openmp_mutex-4.5-4_kmp_llvm.conda hash: - md5: ee5c2118262e30b972bc0b4db8ef0ba5 - sha256: cec7343e76c9da6a42c7e7cba53391daa6b46155054ef61a5ef522ea27c5a058 + md5: cc86eba730b0e87ea9990985d45e60f9 + sha256: b5e8980dd5fd96607fcccd98217b1058ec54566845b757cc0ecef146b5f0a51e category: main optional: false - name: _openmp_mutex @@ -404,31 +404,31 @@ package: category: dev optional: true - name: beautifulsoup4 - version: 4.13.4 + version: 4.13.5 manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '>=3.10' soupsieve: '>=1.2' typing-extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/beautifulsoup4-4.13.4-pyha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/beautifulsoup4-4.13.5-pyha770c72_0.conda hash: - md5: 9f07c4fc992adb2d6c30da7fab3959a7 - sha256: ddb0df12fd30b2d36272f5daf6b6251c7625d6a99414d7ea930005bbaecad06d + md5: de0fd9702fd4c1186e930b8c35af6b6b + sha256: d2124c0ea13527c7f54582269b3ae19541141a3740d6d779e7aa95aa82eaf561 category: dev optional: true - name: beautifulsoup4 - version: 4.13.4 + version: 4.13.5 manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '>=3.10' soupsieve: '>=1.2' typing-extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/beautifulsoup4-4.13.4-pyha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/beautifulsoup4-4.13.5-pyha770c72_0.conda hash: - md5: 9f07c4fc992adb2d6c30da7fab3959a7 - sha256: ddb0df12fd30b2d36272f5daf6b6251c7625d6a99414d7ea930005bbaecad06d + md5: de0fd9702fd4c1186e930b8c35af6b6b + sha256: d2124c0ea13527c7f54582269b3ae19541141a3740d6d779e7aa95aa82eaf561 category: dev optional: true - name: bleach @@ -949,7 +949,7 @@ package: category: main optional: false - name: coverage - version: 7.10.4 + version: 7.10.5 manager: conda platform: linux-64 dependencies: @@ -958,14 +958,14 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* tomli: '' - url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.10.4-py310h3406613_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.10.5-py310h3406613_0.conda hash: - md5: ac9c681b16e9b9d24eca83a367b52fcd - sha256: caf25a0e293b86d93ff036f6e0b0769673031e136716faa0b7bae9fda125ff76 + md5: 8d397b33a3a90f52182807e04234ea10 + sha256: 1cfe98f11884062729c9b861ed3d4e9c771f6809d8fed8be68d8c585216fa147 category: dev optional: true - name: coverage - version: 7.10.4 + version: 7.10.5 manager: conda platform: win-64 dependencies: @@ -975,10 +975,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.10.4-py310hdb0e946_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.10.5-py310hdb0e946_0.conda hash: - md5: 31ceebbc098babf2d50d2745205c633b - sha256: a3887e59288526c8230a036af4f317bbc188ae11101ff2c00996eb5919ddcf89 + md5: df429c46178f2ac242180da4c4d2c821 + sha256: eb6013687b9940940d3b3292d14b77266bf5551de09cd8f32e4cf7ccf555c0e4 category: dev optional: true - name: cpython @@ -1412,7 +1412,7 @@ package: category: main optional: false - name: fonttools - version: 4.59.1 + version: 4.59.2 manager: conda platform: linux-64 dependencies: @@ -1423,14 +1423,14 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* unicodedata2: '>=15.1.0' - url: https://repo.prefix.dev/conda-forge/linux-64/fonttools-4.59.1-py310h3406613_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/fonttools-4.59.2-py310h3406613_0.conda hash: - md5: 14e450afac608165ced4b0b93cfc1df1 - sha256: b634c855e3308e3463d75d57ef8188b023c14778c6ede7fc2ddddd22f7ee2df7 + md5: 32dab042830c3c31f89cdb6273585165 + sha256: afbdc6fd696ce74a94dd558512f532a8e71c653a18f226b1bae9b37e447ae4f0 category: main optional: false - name: fonttools - version: 4.59.1 + version: 4.59.2 manager: conda platform: win-64 dependencies: @@ -1442,10 +1442,10 @@ package: unicodedata2: '>=15.1.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/fonttools-4.59.1-py310hdb0e946_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/fonttools-4.59.2-py310hdb0e946_0.conda hash: - md5: 6df5bf934873bcf1d2d2208a364afe1b - sha256: 67bb84f9aeb1ba4f2efced2cc3059faabc878d6d4a25bbcffc0a1134b702ab56 + md5: 2072c4ef8b99bee252d62c4bfbf6c2e6 + sha256: 93eaf4c063327cb9a47ed383608e34c79329eb1fcc030f4fa5c1d945c7878269 category: main optional: false - name: fqdn @@ -1621,31 +1621,31 @@ package: category: dev optional: true - name: h2 - version: 4.2.0 + version: 4.3.0 manager: conda platform: linux-64 dependencies: hpack: '>=4.1,<5' hyperframe: '>=6.1,<7' - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/h2-4.3.0-pyhcf101f3_0.conda hash: - md5: b4754fb1bdcb70c8fd54f918301582c6 - sha256: 0aa1cdc67a9fe75ea95b5644b734a756200d6ec9d0dff66530aec3d1c1e9df75 + md5: 164fc43f0b53b6e3a7bc7dce5e4f1dc9 + sha256: 84c64443368f84b600bfecc529a1194a3b14c3656ee2e832d15a20e0329b6da3 category: main optional: false - name: h2 - version: 4.2.0 + version: 4.3.0 manager: conda platform: win-64 dependencies: hpack: '>=4.1,<5' hyperframe: '>=6.1,<7' - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/h2-4.3.0-pyhcf101f3_0.conda hash: - md5: b4754fb1bdcb70c8fd54f918301582c6 - sha256: 0aa1cdc67a9fe75ea95b5644b734a756200d6ec9d0dff66530aec3d1c1e9df75 + md5: 164fc43f0b53b6e3a7bc7dce5e4f1dc9 + sha256: 84c64443368f84b600bfecc529a1194a3b14c3656ee2e832d15a20e0329b6da3 category: main optional: false - name: h5py @@ -2220,29 +2220,29 @@ package: category: main optional: false - name: joblib - version: 1.5.1 + version: 1.5.2 manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '>=3.10' setuptools: '' - url: https://repo.prefix.dev/conda-forge/noarch/joblib-1.5.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/joblib-1.5.2-pyhd8ed1ab_0.conda hash: - md5: fb1c14694de51a476ce8636d92b6f42c - sha256: e5a4eca9a5d8adfaa3d51e24eefd1a6d560cb3b33a7e1eee13e410bec457b7ed + md5: 4e717929cfa0d49cef92d911e31d0e90 + sha256: 6fc414c5ae7289739c2ba75ff569b79f72e38991d61eb67426a8a4b92f90462c category: main optional: false - name: joblib - version: 1.5.1 + version: 1.5.2 manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '>=3.10' setuptools: '' - url: https://repo.prefix.dev/conda-forge/noarch/joblib-1.5.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/joblib-1.5.2-pyhd8ed1ab_0.conda hash: - md5: fb1c14694de51a476ce8636d92b6f42c - sha256: e5a4eca9a5d8adfaa3d51e24eefd1a6d560cb3b33a7e1eee13e410bec457b7ed + md5: 4e717929cfa0d49cef92d911e31d0e90 + sha256: 6fc414c5ae7289739c2ba75ff569b79f72e38991d61eb67426a8a4b92f90462c category: main optional: false - name: json5 @@ -2498,31 +2498,31 @@ package: category: dev optional: true - name: jupyter-lsp - version: 2.2.6 + version: 2.3.0 manager: conda platform: linux-64 dependencies: importlib-metadata: '>=4.8.3' jupyter_server: '>=1.1.2' python: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter-lsp-2.2.6-pyhe01879c_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter-lsp-2.3.0-pyhcf101f3_0.conda hash: - md5: 7129ed52335cc7164baf4d6508a3f233 - sha256: 6f2d6c5983e013af68e7e1d7082cc46b11f55e28147bd0a72a44488972ed90a3 + md5: 62b7c96c6cd77f8173cc5cada6a9acaa + sha256: 897ad2e2c2335ef3c2826d7805e16002a1fd0d509b4ae0bc66617f0e0ff07bc2 category: dev optional: true - name: jupyter-lsp - version: 2.2.6 + version: 2.3.0 manager: conda platform: win-64 dependencies: importlib-metadata: '>=4.8.3' jupyter_server: '>=1.1.2' - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter-lsp-2.2.6-pyhe01879c_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/jupyter-lsp-2.3.0-pyhcf101f3_0.conda hash: - md5: 7129ed52335cc7164baf4d6508a3f233 - sha256: 6f2d6c5983e013af68e7e1d7082cc46b11f55e28147bd0a72a44488972ed90a3 + md5: 62b7c96c6cd77f8173cc5cada6a9acaa + sha256: 897ad2e2c2335ef3c2826d7805e16002a1fd0d509b4ae0bc66617f0e0ff07bc2 category: dev optional: true - name: jupyter_client @@ -2864,7 +2864,7 @@ package: category: dev optional: true - name: jupytext - version: 1.17.2 + version: 1.17.3 manager: conda platform: linux-64 dependencies: @@ -2872,17 +2872,17 @@ package: mdit-py-plugins: '' nbformat: '' packaging: '' - python: '>=3.9' + python: '>=3.10' pyyaml: '' tomli: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupytext-1.17.2-pyh80e38bb_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupytext-1.17.3-pyh80e38bb_0.conda hash: - md5: 6d0652a97ef103de0c77b9c610d0c20d - sha256: 48986a9c01f17d1d5a598af33814a877fd67a6a3287625718d76617a7d17f51d + md5: 3178d138046fbc2e4944d3642a326814 + sha256: 2da4cfec3f811a37caa583e572ad2dad0b1d5c34f5d7121b4c687692bf1a4a06 category: dev optional: true - name: jupytext - version: 1.17.2 + version: 1.17.3 manager: conda platform: win-64 dependencies: @@ -2890,13 +2890,13 @@ package: mdit-py-plugins: '' nbformat: '' packaging: '' - python: '>=3.9' + python: '>=3.10' pyyaml: '' tomli: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupytext-1.17.2-pyh80e38bb_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupytext-1.17.3-pyh80e38bb_0.conda hash: - md5: 6d0652a97ef103de0c77b9c610d0c20d - sha256: 48986a9c01f17d1d5a598af33814a877fd67a6a3287625718d76617a7d17f51d + md5: 3178d138046fbc2e4944d3642a326814 + sha256: 2da4cfec3f811a37caa583e572ad2dad0b1d5c34f5d7121b4c687692bf1a4a06 category: dev optional: true - name: keyutils @@ -2922,10 +2922,10 @@ package: libstdcxx: '>=14' python: '' python_abi: 3.10.* - url: https://repo.prefix.dev/conda-forge/linux-64/kiwisolver-1.4.9-py310haaf941d_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/kiwisolver-1.4.9-py310haaf941d_1.conda hash: - md5: b5e7e5df6544fc81102bdea6157a0689 - sha256: 26e51a62efbea5c5bb832443020cb2bec366477e1cf7ff324308835523c8fe1b + md5: dccb22849c78cbb9decc0af573c00a45 + sha256: 0d86d9a0b0d34604684197bf16cc1a7f41ebbf14025782708d78a6905e4177e6 category: main optional: false - name: kiwisolver @@ -2938,10 +2938,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/kiwisolver-1.4.9-py310h1e1005b_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/kiwisolver-1.4.9-py310h1e1005b_1.conda hash: - md5: 1dafe400279a912768c930ed12d65a29 - sha256: 077f534795d9c012f028523ad3fe23a269e127e2b66f04963ee2f887ecb38796 + md5: a0695050d0379e201f0c40b89d3b58dd + sha256: dfaae0985b9996c842837dbcadf5c9ef46f1605e752c1934f4cf775783f3f43f category: main optional: false - name: krb5 @@ -4136,10 +4136,10 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-20.1.8-h4922eb0_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-20.1.8-h4922eb0_2.conda hash: - md5: 5d5099916a3659a46cca8f974d0455b9 - sha256: 4539fd52a5f59039cd575caf222e22ebe57ab168cd102d182a970c1f1a72fe51 + md5: fab9b7d973248580e0300196a80c9a24 + sha256: fd5a656cfa064add64455e3b7ea046376046911c56d14dc04049e670f3b48190 category: main optional: false - name: llvm-openmp @@ -4150,10 +4150,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-20.1.8-hfa2b4ca_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-20.1.8-hfa2b4ca_2.conda hash: - md5: 2c3afd82c44b0bf59fa8f924e30c0513 - sha256: 568e9dec9078055adebf6c07202be079884b85780a4542f0f326763e6f642a2d + md5: 2dc2edf349464c8b83a576175fc2ad42 + sha256: 8970b7f9057a1c2c18bfd743c6f5ce73b86197d7724423de4fa3d03911d5874b category: main optional: false - name: locket @@ -5187,27 +5187,27 @@ package: category: dev optional: true - name: parso - version: 0.8.4 + version: 0.8.5 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_1.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/parso-0.8.5-pyhcf101f3_0.conda hash: - md5: 5c092057b6badd30f75b06244ecd01c9 - sha256: 17131120c10401a99205fc6fe436e7903c0fa092f1b3e80452927ab377239bcc + md5: a110716cdb11cf51482ff4000dc253d7 + sha256: 30de7b4d15fbe53ffe052feccde31223a236dae0495bab54ab2479de30b2990f category: dev optional: true - name: parso - version: 0.8.4 + version: 0.8.5 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_1.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/parso-0.8.5-pyhcf101f3_0.conda hash: - md5: 5c092057b6badd30f75b06244ecd01c9 - sha256: 17131120c10401a99205fc6fe436e7903c0fa092f1b3e80452927ab377239bcc + md5: a110716cdb11cf51482ff4000dc253d7 + sha256: 30de7b4d15fbe53ffe052feccde31223a236dae0495bab54ab2479de30b2990f category: dev optional: true - name: partd @@ -5352,27 +5352,27 @@ package: category: main optional: false - name: platformdirs - version: 4.3.8 + version: 4.4.0 manager: conda platform: linux-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.3.8-pyhe01879c_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.4.0-pyhcf101f3_0.conda hash: - md5: 424844562f5d337077b445ec6b1398a7 - sha256: 0f48999a28019c329cd3f6fd2f01f09fc32cc832f7d6bbe38087ddac858feaa3 + md5: cc9d9a3929503785403dbfad9f707145 + sha256: dfe0fa6e351d2b0cef95ac1a1533d4f960d3992f9e0f82aeb5ec3623a699896b category: dev optional: true - name: platformdirs - version: 4.3.8 + version: 4.4.0 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.3.8-pyhe01879c_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.4.0-pyhcf101f3_0.conda hash: - md5: 424844562f5d337077b445ec6b1398a7 - sha256: 0f48999a28019c329cd3f6fd2f01f09fc32cc832f7d6bbe38087ddac858feaa3 + md5: cc9d9a3929503785403dbfad9f707145 + sha256: dfe0fa6e351d2b0cef95ac1a1533d4f960d3992f9e0f82aeb5ec3623a699896b category: dev optional: true - name: pluggy @@ -5424,29 +5424,29 @@ package: category: dev optional: true - name: prompt-toolkit - version: 3.0.51 + version: 3.0.52 manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '>=3.10' wcwidth: '' - url: https://repo.prefix.dev/conda-forge/noarch/prompt-toolkit-3.0.51-pyha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/prompt-toolkit-3.0.52-pyha770c72_0.conda hash: - md5: d17ae9db4dc594267181bd199bf9a551 - sha256: ebc1bb62ac612af6d40667da266ff723662394c0ca78935340a5b5c14831227b + md5: edb16f14d920fb3faf17f5ce582942d6 + sha256: 4817651a276016f3838957bfdf963386438c70761e9faec7749d411635979bae category: dev optional: true - name: prompt-toolkit - version: 3.0.51 + version: 3.0.52 manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '>=3.10' wcwidth: '' - url: https://repo.prefix.dev/conda-forge/noarch/prompt-toolkit-3.0.51-pyha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/prompt-toolkit-3.0.52-pyha770c72_0.conda hash: - md5: d17ae9db4dc594267181bd199bf9a551 - sha256: ebc1bb62ac612af6d40667da266ff723662394c0ca78935340a5b5c14831227b + md5: edb16f14d920fb3faf17f5ce582942d6 + sha256: 4817651a276016f3838957bfdf963386438c70761e9faec7749d411635979bae category: dev optional: true - name: psutil @@ -6236,10 +6236,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/pywin32-311-py310h282bd7d_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/pywin32-311-py310h282bd7d_1.conda hash: - md5: 2aa8173e07509e44d39e5bc72c9a6237 - sha256: c53c9d4981f97f41b88c2969d8aeb14d7e2685081a0138bab6915f8a3284d602 + md5: 0289b272f8a22ad8fc29d6747383b503 + sha256: 2ce920e200699cc2a114106665451c05efcaf5cf0ca46685d9a7a5914616f7b5 category: dev optional: true - name: pywinpty @@ -6299,15 +6299,14 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - libsodium: '>=1.0.20,<1.0.21.0a0' libstdcxx: '>=14' - python: '>=3.10,<3.11.0a0' + python: '' python_abi: 3.10.* zeromq: '>=4.3.5,<4.4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/pyzmq-27.0.2-py310h9a5fd63_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pyzmq-27.0.2-py310h4f33d48_2.conda hash: - md5: 2abed91a0b6093e3f7d126f2c5d42e13 - sha256: c4831e0452782df790595c4a913ec58128f84fbfb98b1b6b81aaa63e3e28f535 + md5: 7fcd143231388aedb718be86b7e52ff7 + sha256: 0c3a0383ca8de17d927c942f42a945c764a9a2fdd23499ad5f851c5a03f46658 category: dev optional: true - name: pyzmq @@ -6315,17 +6314,16 @@ package: manager: conda platform: win-64 dependencies: - libsodium: '>=1.0.20,<1.0.21.0a0' - python: '>=3.10,<3.11.0a0' + python: '' python_abi: 3.10.* ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' zeromq: '>=4.3.5,<4.3.6.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/pyzmq-27.0.2-py310h49f0f51_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/pyzmq-27.0.2-py310h535538e_2.conda hash: - md5: 9dbada9f62cb38ba7bb0fb9140a85435 - sha256: 49d0b9cbff51911d85913cbd1de778868cf6aefab6c7d0c5f1c8a77883326dc4 + md5: 02bd7492b1146dd5a477b9dc15d9a30d + sha256: c945ad5518af5dc7eae2d3b21be2a32c7a2623e2d2806729f3b9fd2ea9727fff category: dev optional: true - name: readline @@ -6510,7 +6508,7 @@ package: category: dev optional: true - name: rpds-py - version: 0.27.0 + version: 0.27.1 manager: conda platform: linux-64 dependencies: @@ -6518,14 +6516,14 @@ package: libgcc: '>=14' python: '' python_abi: 3.10.* - url: https://repo.prefix.dev/conda-forge/linux-64/rpds-py-0.27.0-py310hd8f68c5_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/rpds-py-0.27.1-py310hd8f68c5_0.conda hash: - md5: 40a2626d9988362dfaa3c5e888735bc8 - sha256: b306b7781493ed219a313ac82c8e16860beb077bce193b08aaa30242022a7ce7 + md5: 4eed975c85e20068274d3c7a94072b8a + sha256: a4b7cc6656138c7a89a74f60a086f99abc013876fa57ebfff5f60c416aa8f14c category: dev optional: true - name: rpds-py - version: 0.27.0 + version: 0.27.1 manager: conda platform: win-64 dependencies: @@ -6534,10 +6532,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/rpds-py-0.27.0-py310h034784e_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/rpds-py-0.27.1-py310h034784e_0.conda hash: - md5: 351aba0937fb0ad39baafa89093fa134 - sha256: 12123ac68d90cdd4dfe79708860655bbc27551aea5ee6c8bc0d4de6e3456a016 + md5: 36c1dd306aae307a2ed6e4101012910e + sha256: 2ec9d6e3fee68ab5e781a2df706ac7c1c323b2b524fa6d4443443e986bd348a8 category: dev optional: true - name: rtree @@ -6799,27 +6797,27 @@ package: category: main optional: false - name: soupsieve - version: '2.7' + version: '2.8' manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.7-pyhd8ed1ab_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.8-pyhd8ed1ab_0.conda hash: - md5: fb32097c717486aa34b38a9db57eb49e - sha256: 7518506cce9a736042132f307b3f4abce63bf076f5fb07c1f4e506c0b214295a + md5: 18c019ccf43769d211f2cf78e9ad46c2 + sha256: c978576cf9366ba576349b93be1cfd9311c00537622a2f9e14ba2b90c97cae9c category: dev optional: true - name: soupsieve - version: '2.7' + version: '2.8' manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.7-pyhd8ed1ab_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.8-pyhd8ed1ab_0.conda hash: - md5: fb32097c717486aa34b38a9db57eb49e - sha256: 7518506cce9a736042132f307b3f4abce63bf076f5fb07c1f4e506c0b214295a + md5: 18c019ccf43769d211f2cf78e9ad46c2 + sha256: c978576cf9366ba576349b93be1cfd9311c00537622a2f9e14ba2b90c97cae9c category: dev optional: true - name: sphinx @@ -7793,27 +7791,27 @@ package: category: dev optional: true - name: typing-extensions - version: 4.14.1 + version: 4.15.0 manager: conda platform: linux-64 dependencies: - typing_extensions: ==4.14.1 - url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.14.1-h4440ef1_0.conda + typing_extensions: ==4.15.0 + url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda hash: - md5: 75be1a943e0a7f99fcf118309092c635 - sha256: 349951278fa8d0860ec6b61fcdc1e6f604e6fce74fabf73af2e39a37979d0223 + md5: edd329d7d3a4ab45dcf905899a7a6115 + sha256: 7c2df5721c742c2a47b2c8f960e718c930031663ac1174da67c1ed5999f7938c category: main optional: false - name: typing-extensions - version: 4.14.1 + version: 4.15.0 manager: conda platform: win-64 dependencies: - typing_extensions: ==4.14.1 - url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.14.1-h4440ef1_0.conda + typing_extensions: ==4.15.0 + url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda hash: - md5: 75be1a943e0a7f99fcf118309092c635 - sha256: 349951278fa8d0860ec6b61fcdc1e6f604e6fce74fabf73af2e39a37979d0223 + md5: edd329d7d3a4ab45dcf905899a7a6115 + sha256: 7c2df5721c742c2a47b2c8f960e718c930031663ac1174da67c1ed5999f7938c category: main optional: false - name: typing-inspection @@ -7843,27 +7841,27 @@ package: category: main optional: false - name: typing_extensions - version: 4.14.1 + version: 4.15.0 manager: conda platform: linux-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.14.1-pyhe01879c_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda hash: - md5: e523f4f1e980ed7a4240d7e27e9ec81f - sha256: 4f52390e331ea8b9019b87effaebc4f80c6466d09f68453f52d5cdc2a3e1194f + md5: 0caa1af407ecff61170c9437a808404d + sha256: 032271135bca55aeb156cee361c81350c6f3fb203f57d024d7e5a1fc9ef18731 category: main optional: false - name: typing_extensions - version: 4.14.1 + version: 4.15.0 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.14.1-pyhe01879c_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda hash: - md5: e523f4f1e980ed7a4240d7e27e9ec81f - sha256: 4f52390e331ea8b9019b87effaebc4f80c6466d09f68453f52d5cdc2a3e1194f + md5: 0caa1af407ecff61170c9437a808404d + sha256: 032271135bca55aeb156cee361c81350c6f3fb203f57d024d7e5a1fc9ef18731 category: main optional: false - name: typing_utils @@ -7937,14 +7935,14 @@ package: category: dev optional: true - name: ucrt - version: 10.0.22621.0 + version: 10.0.26100.0 manager: conda platform: win-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/ucrt-10.0.26100.0-h57928b3_0.conda hash: - md5: 6797b005cd0f439c4c5c9ac565783700 - sha256: db8dead3dd30fb1a032737554ce91e2819b43496a0db09927edf01c32b577450 + md5: 71b24316859acd00bdb8b38f5e2ce328 + sha256: 3005729dce6f3d3f5ec91dfc49fc75a0095f9cd23bab49efb899657297ac91a5 category: main optional: false - name: unicodedata2 @@ -8465,13 +8463,13 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' cffi: '>=1.11' - libgcc: '>=13' + libgcc: '>=14' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://repo.prefix.dev/conda-forge/linux-64/zstandard-0.23.0-py310ha75aee5_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/zstandard-0.23.0-py310h7c4b9e2_3.conda hash: - md5: f9254b5b0193982416b91edcb4b2676f - sha256: f9b76c2f8a0f96e656843553272e547170182f5b8aba1a6bcba28f7611d87c23 + md5: 64c494618303717a9a08e3238bcb8d68 + sha256: 0653ad7d53d8c7b85ef2dd38c01c78b6c9185cd688be06cd6315e76530310635 category: main optional: false - name: zstandard @@ -8483,12 +8481,12 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/zstandard-0.23.0-py310ha8f682b_2.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/zstandard-0.23.0-py310h29418f3_3.conda hash: - md5: fdc36a989175bb166109e400c106defa - sha256: 76bf75ef83e952ef4974e0e6656a7a90b4c4c1c22cea984cb9fc29aca05e5999 + md5: c7ced46235127f2ec7ea29b95840c343 + sha256: 1282801d99392c8e674151633c3120c12452a4ca6c2141b90b164c6b8a7f1724 category: main optional: false - name: zstd @@ -8522,41 +8520,41 @@ package: category: main optional: false - name: geoapps-utils - version: 0.6.0a1 + version: 0.6.0a2.dev61+655afd7 manager: pip platform: linux-64 dependencies: - geoh5py: 0.12.0a1 + geoh5py: 0.12.0a2.dev44+fd5f8fb1 numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@25bf69c7afdfce5e9d4ac7d667c88790aad9c934 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@655afd735989270d5d03b80a98cbe22844b47066 hash: - sha256: 25bf69c7afdfce5e9d4ac7d667c88790aad9c934 + sha256: 655afd735989270d5d03b80a98cbe22844b47066 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@25bf69c7afdfce5e9d4ac7d667c88790aad9c934 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@655afd735989270d5d03b80a98cbe22844b47066 category: main optional: false - name: geoapps-utils - version: 0.6.0a1 + version: 0.6.0a2.dev61+655afd7 manager: pip platform: win-64 dependencies: - geoh5py: 0.12.0a1 + geoh5py: 0.12.0a2.dev44+fd5f8fb1 numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@25bf69c7afdfce5e9d4ac7d667c88790aad9c934 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@655afd735989270d5d03b80a98cbe22844b47066 hash: - sha256: 25bf69c7afdfce5e9d4ac7d667c88790aad9c934 + sha256: 655afd735989270d5d03b80a98cbe22844b47066 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@25bf69c7afdfce5e9d4ac7d667c88790aad9c934 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@655afd735989270d5d03b80a98cbe22844b47066 category: main optional: false - name: geoh5py - version: 0.12.0a1 + version: 0.12.0a2.dev44+fd5f8fb1 manager: pip platform: linux-64 dependencies: @@ -8564,16 +8562,16 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@bdf223def86a077a7e3f02b631fbffd7727527f2 + url: git+https://github.com/MiraGeoscience/geoh5py.git@fd5f8fb1dcd764c01eb4d43ab26201c5bceb34ef hash: - sha256: bdf223def86a077a7e3f02b631fbffd7727527f2 + sha256: fd5f8fb1dcd764c01eb4d43ab26201c5bceb34ef source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@bdf223def86a077a7e3f02b631fbffd7727527f2 + url: git+https://github.com/MiraGeoscience/geoh5py.git@fd5f8fb1dcd764c01eb4d43ab26201c5bceb34ef category: main optional: false - name: geoh5py - version: 0.12.0a1 + version: 0.12.0a2.dev44+fd5f8fb1 manager: pip platform: win-64 dependencies: @@ -8581,91 +8579,91 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@bdf223def86a077a7e3f02b631fbffd7727527f2 + url: git+https://github.com/MiraGeoscience/geoh5py.git@fd5f8fb1dcd764c01eb4d43ab26201c5bceb34ef hash: - sha256: bdf223def86a077a7e3f02b631fbffd7727527f2 + sha256: fd5f8fb1dcd764c01eb4d43ab26201c5bceb34ef source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@bdf223def86a077a7e3f02b631fbffd7727527f2 + url: git+https://github.com/MiraGeoscience/geoh5py.git@fd5f8fb1dcd764c01eb4d43ab26201c5bceb34ef category: main optional: false - name: grid-apps - version: 0.1.0a1 + version: 0.1.0a1.dev60+4168153 manager: pip platform: linux-64 dependencies: discretize: '>=0.11.0,<0.12.dev' - geoapps-utils: 0.6.0a1 - geoh5py: 0.12.0a1 + geoapps-utils: 0.6.0a2.dev61+655afd7 + geoh5py: 0.12.0a2.dev44+fd5f8fb1 numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/grid-apps.git@b950dd55b4fb70d2ef28488a3f684c374a170b9f + url: git+https://github.com/MiraGeoscience/grid-apps.git@416815352706add295a9d2b90814d2291068a85e hash: - sha256: b950dd55b4fb70d2ef28488a3f684c374a170b9f + sha256: 416815352706add295a9d2b90814d2291068a85e source: type: url - url: git+https://github.com/MiraGeoscience/grid-apps.git@b950dd55b4fb70d2ef28488a3f684c374a170b9f + url: git+https://github.com/MiraGeoscience/grid-apps.git@416815352706add295a9d2b90814d2291068a85e category: main optional: false - name: grid-apps - version: 0.1.0a1 + version: 0.1.0a1.dev60+4168153 manager: pip platform: win-64 dependencies: discretize: '>=0.11.0,<0.12.dev' - geoapps-utils: 0.6.0a1 - geoh5py: 0.12.0a1 + geoapps-utils: 0.6.0a2.dev61+655afd7 + geoh5py: 0.12.0a2.dev44+fd5f8fb1 numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/grid-apps.git@b950dd55b4fb70d2ef28488a3f684c374a170b9f + url: git+https://github.com/MiraGeoscience/grid-apps.git@416815352706add295a9d2b90814d2291068a85e hash: - sha256: b950dd55b4fb70d2ef28488a3f684c374a170b9f + sha256: 416815352706add295a9d2b90814d2291068a85e source: type: url - url: git+https://github.com/MiraGeoscience/grid-apps.git@b950dd55b4fb70d2ef28488a3f684c374a170b9f + url: git+https://github.com/MiraGeoscience/grid-apps.git@416815352706add295a9d2b90814d2291068a85e category: main optional: false - name: mira-simpeg - version: 0.23.0.1.post2.dev57+mira.gdc256f618 + version: 0.23.0.1.post2.dev61+mira.gd794a0b24 manager: pip platform: linux-64 dependencies: discretize: '>=0.11' geoana: '>=0.7.0' - geoh5py: '>=0.12.0a1,<0.13.dev' + geoh5py: '>=0.12.0a0.dev0,<0.13.dev' libdlf: '*' matplotlib: '*' numpy: '>=1.22' pymatsolver: '>=0.3' scipy: '>=1.8' - url: git+https://github.com/MiraGeoscience/simpeg.git@dc256f618543d8ee94fd36737749715fe497f8b7 + url: git+https://github.com/MiraGeoscience/simpeg.git@d794a0b24aafb4beccc7984e68b6904be44f860f hash: - sha256: dc256f618543d8ee94fd36737749715fe497f8b7 + sha256: d794a0b24aafb4beccc7984e68b6904be44f860f source: type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@dc256f618543d8ee94fd36737749715fe497f8b7 + url: git+https://github.com/MiraGeoscience/simpeg.git@d794a0b24aafb4beccc7984e68b6904be44f860f category: main optional: false - name: mira-simpeg - version: 0.23.0.1.post2.dev57+mira.gdc256f618 + version: 0.23.0.1.post2.dev61+mira.gd794a0b24 manager: pip platform: win-64 dependencies: discretize: '>=0.11' geoana: '>=0.7.0' - geoh5py: '>=0.12.0a1,<0.13.dev' + geoh5py: '>=0.12.0a0.dev0,<0.13.dev' libdlf: '*' matplotlib: '*' numpy: '>=1.22' pymatsolver: '>=0.3' scipy: '>=1.8' - url: git+https://github.com/MiraGeoscience/simpeg.git@dc256f618543d8ee94fd36737749715fe497f8b7 + url: git+https://github.com/MiraGeoscience/simpeg.git@d794a0b24aafb4beccc7984e68b6904be44f860f hash: - sha256: dc256f618543d8ee94fd36737749715fe497f8b7 + sha256: d794a0b24aafb4beccc7984e68b6904be44f860f source: type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@dc256f618543d8ee94fd36737749715fe497f8b7 + url: git+https://github.com/MiraGeoscience/simpeg.git@d794a0b24aafb4beccc7984e68b6904be44f860f category: main optional: false diff --git a/py-3.11.conda-lock.yml b/py-3.11.conda-lock.yml index f67b7248c..0ac6be921 100644 --- a/py-3.11.conda-lock.yml +++ b/py-3.11.conda-lock.yml @@ -15,8 +15,8 @@ version: 1 metadata: content_hash: - win-64: a3ef3af1bb1d93eb8d5ac7e146beec4f1bc5d2f0f6af964c6b9d67be798ff119 - linux-64: 3dbea284166720deb24b29cf2170db9a32f056b8075113cae4cc86949c2d551b + win-64: 106a2623766605c1a3c6aa7c479d1dd64f6d252df48e62b2a77761f8e247f0c4 + linux-64: c3c882ab7106f1ac6d6821bf96f16035a0c501482813360bc7738edf05725ab9 channels: - url: conda-forge used_env_vars: [] @@ -35,10 +35,10 @@ package: platform: linux-64 dependencies: llvm-openmp: '>=9.0.1' - url: https://repo.prefix.dev/conda-forge/linux-64/_openmp_mutex-4.5-3_kmp_llvm.conda + url: https://repo.prefix.dev/conda-forge/linux-64/_openmp_mutex-4.5-4_kmp_llvm.conda hash: - md5: ee5c2118262e30b972bc0b4db8ef0ba5 - sha256: cec7343e76c9da6a42c7e7cba53391daa6b46155054ef61a5ef522ea27c5a058 + md5: cc86eba730b0e87ea9990985d45e60f9 + sha256: b5e8980dd5fd96607fcccd98217b1058ec54566845b757cc0ecef146b5f0a51e category: main optional: false - name: _openmp_mutex @@ -402,31 +402,31 @@ package: category: dev optional: true - name: beautifulsoup4 - version: 4.13.4 + version: 4.13.5 manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '>=3.10' soupsieve: '>=1.2' typing-extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/beautifulsoup4-4.13.4-pyha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/beautifulsoup4-4.13.5-pyha770c72_0.conda hash: - md5: 9f07c4fc992adb2d6c30da7fab3959a7 - sha256: ddb0df12fd30b2d36272f5daf6b6251c7625d6a99414d7ea930005bbaecad06d + md5: de0fd9702fd4c1186e930b8c35af6b6b + sha256: d2124c0ea13527c7f54582269b3ae19541141a3740d6d779e7aa95aa82eaf561 category: dev optional: true - name: beautifulsoup4 - version: 4.13.4 + version: 4.13.5 manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '>=3.10' soupsieve: '>=1.2' typing-extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/beautifulsoup4-4.13.4-pyha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/beautifulsoup4-4.13.5-pyha770c72_0.conda hash: - md5: 9f07c4fc992adb2d6c30da7fab3959a7 - sha256: ddb0df12fd30b2d36272f5daf6b6251c7625d6a99414d7ea930005bbaecad06d + md5: de0fd9702fd4c1186e930b8c35af6b6b + sha256: d2124c0ea13527c7f54582269b3ae19541141a3740d6d779e7aa95aa82eaf561 category: dev optional: true - name: bleach @@ -947,7 +947,7 @@ package: category: main optional: false - name: coverage - version: 7.10.4 + version: 7.10.5 manager: conda platform: linux-64 dependencies: @@ -956,14 +956,14 @@ package: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* tomli: '' - url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.10.4-py311h3778330_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.10.5-py311h3778330_0.conda hash: - md5: 9b03916fb3692cfed283361d809b8d56 - sha256: 121a56fcc30a295ca96f160925325d5611c06a70363d98dce1693e50497c9c32 + md5: f2d902e3e28e59a8a281b84ba7c74419 + sha256: bcd74f7a948bd189aa4517e3e03520adfa020bdcb91ef63e418cddbc45c162c7 category: dev optional: true - name: coverage - version: 7.10.4 + version: 7.10.5 manager: conda platform: win-64 dependencies: @@ -973,10 +973,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.10.4-py311h3f79411_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.10.5-py311h3f79411_0.conda hash: - md5: 81fa156b61a922d0bf7603ff13727dcd - sha256: 6699830c768103a5bb7be93eda055915965295923ed4006316a2926e551d26bd + md5: 44ebd376a0e3d335cec3ab9c26812d6b + sha256: 49c695a9ded7d1bc73c4d6c2924cd9a9d7333c3f2e9df4ab738f6f7545573e14 category: dev optional: true - name: cpython @@ -1436,7 +1436,7 @@ package: category: main optional: false - name: fonttools - version: 4.59.1 + version: 4.59.2 manager: conda platform: linux-64 dependencies: @@ -1447,14 +1447,14 @@ package: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* unicodedata2: '>=15.1.0' - url: https://repo.prefix.dev/conda-forge/linux-64/fonttools-4.59.1-py311h3778330_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/fonttools-4.59.2-py311h3778330_0.conda hash: - md5: a879d36924dd853bf855ed423b02d92b - sha256: a272826eb8bda4c7207db735448f67f1e5ce79a08eb5a78271c62d9ea452a275 + md5: 5be2463c4d16a021dd571d7bf56ac799 + sha256: f2685b212f3d84d2ba4fc89a03442724a94166ee8a9c1719efed0d7a07d474cb category: main optional: false - name: fonttools - version: 4.59.1 + version: 4.59.2 manager: conda platform: win-64 dependencies: @@ -1466,10 +1466,10 @@ package: unicodedata2: '>=15.1.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/fonttools-4.59.1-py311h3f79411_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/fonttools-4.59.2-py311h3f79411_0.conda hash: - md5: 3d3e2e033fff6713ab0764b096075216 - sha256: fe80ef99e7c4d7fcc1be28615a7d1e91396c3410cad245969633d1d1155f62ef + md5: 6c399663cab648a17883bf73f3057f04 + sha256: e835c0f2d9070a9262820e9cf5177324c7df2148c4d85d756f02b38e443bd9eb category: main optional: false - name: fqdn @@ -1645,31 +1645,31 @@ package: category: dev optional: true - name: h2 - version: 4.2.0 + version: 4.3.0 manager: conda platform: linux-64 dependencies: hpack: '>=4.1,<5' hyperframe: '>=6.1,<7' - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/h2-4.3.0-pyhcf101f3_0.conda hash: - md5: b4754fb1bdcb70c8fd54f918301582c6 - sha256: 0aa1cdc67a9fe75ea95b5644b734a756200d6ec9d0dff66530aec3d1c1e9df75 + md5: 164fc43f0b53b6e3a7bc7dce5e4f1dc9 + sha256: 84c64443368f84b600bfecc529a1194a3b14c3656ee2e832d15a20e0329b6da3 category: main optional: false - name: h2 - version: 4.2.0 + version: 4.3.0 manager: conda platform: win-64 dependencies: hpack: '>=4.1,<5' hyperframe: '>=6.1,<7' - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/h2-4.3.0-pyhcf101f3_0.conda hash: - md5: b4754fb1bdcb70c8fd54f918301582c6 - sha256: 0aa1cdc67a9fe75ea95b5644b734a756200d6ec9d0dff66530aec3d1c1e9df75 + md5: 164fc43f0b53b6e3a7bc7dce5e4f1dc9 + sha256: 84c64443368f84b600bfecc529a1194a3b14c3656ee2e832d15a20e0329b6da3 category: main optional: false - name: h5py @@ -2034,7 +2034,7 @@ package: category: dev optional: true - name: ipython - version: 9.4.0 + version: 9.5.0 manager: conda platform: linux-64 dependencies: @@ -2052,14 +2052,14 @@ package: stack_data: '' traitlets: '>=5.13.0' typing_extensions: '>=4.6' - url: https://repo.prefix.dev/conda-forge/noarch/ipython-9.4.0-pyhfa0c392_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ipython-9.5.0-pyhfa0c392_0.conda hash: - md5: cb7706b10f35e7507917cefa0978a66d - sha256: ff5138bf6071ca01d84e1329f6baa96f0723df6fe183cfa1ab3ebc96240e6d8f + md5: c0916cc4b733577cd41df93884d857b0 + sha256: e9ca009d3aab9d8a85f0241d6ada2c7fbc84072008e95f803fa59da3294aa863 category: dev optional: true - name: ipython - version: 9.4.0 + version: 9.5.0 manager: conda platform: win-64 dependencies: @@ -2077,10 +2077,10 @@ package: stack_data: '' traitlets: '>=5.13.0' typing_extensions: '>=4.6' - url: https://repo.prefix.dev/conda-forge/noarch/ipython-9.4.0-pyh6be1c34_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ipython-9.5.0-pyh6be1c34_0.conda hash: - md5: b551e25e4fb27ccb51aff2c5dcf178f4 - sha256: 8fb441c9f4b50e38b6059e8984e49208a4e2a4ec4e41b543ebaa894f8261d4c9 + md5: aec1868dd4cbe028b2c8cb11377895a6 + sha256: 658c547dafb10cd0989f2cdf72f8ee9fe8f66240307b64555ee43f6908e9d0ad category: dev optional: true - name: ipython_genutils @@ -2272,29 +2272,29 @@ package: category: main optional: false - name: joblib - version: 1.5.1 + version: 1.5.2 manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '>=3.10' setuptools: '' - url: https://repo.prefix.dev/conda-forge/noarch/joblib-1.5.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/joblib-1.5.2-pyhd8ed1ab_0.conda hash: - md5: fb1c14694de51a476ce8636d92b6f42c - sha256: e5a4eca9a5d8adfaa3d51e24eefd1a6d560cb3b33a7e1eee13e410bec457b7ed + md5: 4e717929cfa0d49cef92d911e31d0e90 + sha256: 6fc414c5ae7289739c2ba75ff569b79f72e38991d61eb67426a8a4b92f90462c category: main optional: false - name: joblib - version: 1.5.1 + version: 1.5.2 manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '>=3.10' setuptools: '' - url: https://repo.prefix.dev/conda-forge/noarch/joblib-1.5.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/joblib-1.5.2-pyhd8ed1ab_0.conda hash: - md5: fb1c14694de51a476ce8636d92b6f42c - sha256: e5a4eca9a5d8adfaa3d51e24eefd1a6d560cb3b33a7e1eee13e410bec457b7ed + md5: 4e717929cfa0d49cef92d911e31d0e90 + sha256: 6fc414c5ae7289739c2ba75ff569b79f72e38991d61eb67426a8a4b92f90462c category: main optional: false - name: json5 @@ -2550,31 +2550,31 @@ package: category: dev optional: true - name: jupyter-lsp - version: 2.2.6 + version: 2.3.0 manager: conda platform: linux-64 dependencies: importlib-metadata: '>=4.8.3' jupyter_server: '>=1.1.2' - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter-lsp-2.2.6-pyhe01879c_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/jupyter-lsp-2.3.0-pyhcf101f3_0.conda hash: - md5: 7129ed52335cc7164baf4d6508a3f233 - sha256: 6f2d6c5983e013af68e7e1d7082cc46b11f55e28147bd0a72a44488972ed90a3 + md5: 62b7c96c6cd77f8173cc5cada6a9acaa + sha256: 897ad2e2c2335ef3c2826d7805e16002a1fd0d509b4ae0bc66617f0e0ff07bc2 category: dev optional: true - name: jupyter-lsp - version: 2.2.6 + version: 2.3.0 manager: conda platform: win-64 dependencies: importlib-metadata: '>=4.8.3' jupyter_server: '>=1.1.2' - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter-lsp-2.2.6-pyhe01879c_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/jupyter-lsp-2.3.0-pyhcf101f3_0.conda hash: - md5: 7129ed52335cc7164baf4d6508a3f233 - sha256: 6f2d6c5983e013af68e7e1d7082cc46b11f55e28147bd0a72a44488972ed90a3 + md5: 62b7c96c6cd77f8173cc5cada6a9acaa + sha256: 897ad2e2c2335ef3c2826d7805e16002a1fd0d509b4ae0bc66617f0e0ff07bc2 category: dev optional: true - name: jupyter_client @@ -2916,7 +2916,7 @@ package: category: dev optional: true - name: jupytext - version: 1.17.2 + version: 1.17.3 manager: conda platform: linux-64 dependencies: @@ -2924,17 +2924,17 @@ package: mdit-py-plugins: '' nbformat: '' packaging: '' - python: '>=3.9' + python: '>=3.10' pyyaml: '' tomli: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupytext-1.17.2-pyh80e38bb_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupytext-1.17.3-pyh80e38bb_0.conda hash: - md5: 6d0652a97ef103de0c77b9c610d0c20d - sha256: 48986a9c01f17d1d5a598af33814a877fd67a6a3287625718d76617a7d17f51d + md5: 3178d138046fbc2e4944d3642a326814 + sha256: 2da4cfec3f811a37caa583e572ad2dad0b1d5c34f5d7121b4c687692bf1a4a06 category: dev optional: true - name: jupytext - version: 1.17.2 + version: 1.17.3 manager: conda platform: win-64 dependencies: @@ -2942,13 +2942,13 @@ package: mdit-py-plugins: '' nbformat: '' packaging: '' - python: '>=3.9' + python: '>=3.10' pyyaml: '' tomli: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupytext-1.17.2-pyh80e38bb_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupytext-1.17.3-pyh80e38bb_0.conda hash: - md5: 6d0652a97ef103de0c77b9c610d0c20d - sha256: 48986a9c01f17d1d5a598af33814a877fd67a6a3287625718d76617a7d17f51d + md5: 3178d138046fbc2e4944d3642a326814 + sha256: 2da4cfec3f811a37caa583e572ad2dad0b1d5c34f5d7121b4c687692bf1a4a06 category: dev optional: true - name: keyutils @@ -2974,10 +2974,10 @@ package: libstdcxx: '>=14' python: '' python_abi: 3.11.* - url: https://repo.prefix.dev/conda-forge/linux-64/kiwisolver-1.4.9-py311h724c32c_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/kiwisolver-1.4.9-py311h724c32c_1.conda hash: - md5: 9c869454a8fdb86fabd93df6cf6075a3 - sha256: 51813a024ff9ed172ebd8042ad5927400ece08da2498f815cb61f93c6a455b34 + md5: 92720706b174926bc7238cc24f3b5956 + sha256: 029a00a337e307256beab9cbaefc2c23cd28f040fff6f087703a63bc7487fc14 category: main optional: false - name: kiwisolver @@ -2990,10 +2990,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/kiwisolver-1.4.9-py311h275cad7_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/kiwisolver-1.4.9-py311h275cad7_1.conda hash: - md5: 6be4fb00d6e23f9d027262dc503efd11 - sha256: 8654a25270345bc32d72e4346bc923f25cd8791092736c32b2c82a68d81710a0 + md5: 62b8b3f148d7f47db02304a7de177d13 + sha256: e5e759b61a71e16ba4637c9b08bb8e5c01ee678a47f3e980a7cacb8b0bee58b8 category: main optional: false - name: krb5 @@ -4188,10 +4188,10 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-20.1.8-h4922eb0_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-20.1.8-h4922eb0_2.conda hash: - md5: 5d5099916a3659a46cca8f974d0455b9 - sha256: 4539fd52a5f59039cd575caf222e22ebe57ab168cd102d182a970c1f1a72fe51 + md5: fab9b7d973248580e0300196a80c9a24 + sha256: fd5a656cfa064add64455e3b7ea046376046911c56d14dc04049e670f3b48190 category: main optional: false - name: llvm-openmp @@ -4202,10 +4202,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-20.1.8-hfa2b4ca_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-20.1.8-hfa2b4ca_2.conda hash: - md5: 2c3afd82c44b0bf59fa8f924e30c0513 - sha256: 568e9dec9078055adebf6c07202be079884b85780a4542f0f326763e6f642a2d + md5: 2dc2edf349464c8b83a576175fc2ad42 + sha256: 8970b7f9057a1c2c18bfd743c6f5ce73b86197d7724423de4fa3d03911d5874b category: main optional: false - name: locket @@ -5241,27 +5241,27 @@ package: category: dev optional: true - name: parso - version: 0.8.4 + version: 0.8.5 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_1.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/parso-0.8.5-pyhcf101f3_0.conda hash: - md5: 5c092057b6badd30f75b06244ecd01c9 - sha256: 17131120c10401a99205fc6fe436e7903c0fa092f1b3e80452927ab377239bcc + md5: a110716cdb11cf51482ff4000dc253d7 + sha256: 30de7b4d15fbe53ffe052feccde31223a236dae0495bab54ab2479de30b2990f category: dev optional: true - name: parso - version: 0.8.4 + version: 0.8.5 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_1.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/parso-0.8.5-pyhcf101f3_0.conda hash: - md5: 5c092057b6badd30f75b06244ecd01c9 - sha256: 17131120c10401a99205fc6fe436e7903c0fa092f1b3e80452927ab377239bcc + md5: a110716cdb11cf51482ff4000dc253d7 + sha256: 30de7b4d15fbe53ffe052feccde31223a236dae0495bab54ab2479de30b2990f category: dev optional: true - name: partd @@ -5406,27 +5406,27 @@ package: category: main optional: false - name: platformdirs - version: 4.3.8 + version: 4.4.0 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.3.8-pyhe01879c_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.4.0-pyhcf101f3_0.conda hash: - md5: 424844562f5d337077b445ec6b1398a7 - sha256: 0f48999a28019c329cd3f6fd2f01f09fc32cc832f7d6bbe38087ddac858feaa3 + md5: cc9d9a3929503785403dbfad9f707145 + sha256: dfe0fa6e351d2b0cef95ac1a1533d4f960d3992f9e0f82aeb5ec3623a699896b category: dev optional: true - name: platformdirs - version: 4.3.8 + version: 4.4.0 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.3.8-pyhe01879c_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.4.0-pyhcf101f3_0.conda hash: - md5: 424844562f5d337077b445ec6b1398a7 - sha256: 0f48999a28019c329cd3f6fd2f01f09fc32cc832f7d6bbe38087ddac858feaa3 + md5: cc9d9a3929503785403dbfad9f707145 + sha256: dfe0fa6e351d2b0cef95ac1a1533d4f960d3992f9e0f82aeb5ec3623a699896b category: dev optional: true - name: pluggy @@ -5478,29 +5478,29 @@ package: category: dev optional: true - name: prompt-toolkit - version: 3.0.51 + version: 3.0.52 manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '>=3.10' wcwidth: '' - url: https://repo.prefix.dev/conda-forge/noarch/prompt-toolkit-3.0.51-pyha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/prompt-toolkit-3.0.52-pyha770c72_0.conda hash: - md5: d17ae9db4dc594267181bd199bf9a551 - sha256: ebc1bb62ac612af6d40667da266ff723662394c0ca78935340a5b5c14831227b + md5: edb16f14d920fb3faf17f5ce582942d6 + sha256: 4817651a276016f3838957bfdf963386438c70761e9faec7749d411635979bae category: dev optional: true - name: prompt-toolkit - version: 3.0.51 + version: 3.0.52 manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '>=3.10' wcwidth: '' - url: https://repo.prefix.dev/conda-forge/noarch/prompt-toolkit-3.0.51-pyha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/prompt-toolkit-3.0.52-pyha770c72_0.conda hash: - md5: d17ae9db4dc594267181bd199bf9a551 - sha256: ebc1bb62ac612af6d40667da266ff723662394c0ca78935340a5b5c14831227b + md5: edb16f14d920fb3faf17f5ce582942d6 + sha256: 4817651a276016f3838957bfdf963386438c70761e9faec7749d411635979bae category: dev optional: true - name: psutil @@ -6290,10 +6290,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/pywin32-311-py311hefeebc8_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/pywin32-311-py311hefeebc8_1.conda hash: - md5: 7b385a7ffbace41a3c9f723e2474ac33 - sha256: 2c215bb8f88d6c99050718e7acbaefa694609614a8d27f850b9e38394ee7fa54 + md5: c1cfe9f5d8e278cc4d2d4c7b0126634d + sha256: e3ef7e0cc53111ab81b8a9dd3eabc1374d7420d4c9fce3c8631e73310203ad55 category: dev optional: true - name: pywinpty @@ -6353,15 +6353,14 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - libsodium: '>=1.0.20,<1.0.21.0a0' libstdcxx: '>=14' - python: '>=3.11,<3.12.0a0' + python: '' python_abi: 3.11.* zeromq: '>=4.3.5,<4.4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/pyzmq-27.0.2-py311hc251a9f_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pyzmq-27.0.2-py311h2315fbb_2.conda hash: - md5: 127def291ff2117528691d5d078e736d - sha256: 8820e883ce2b44f6512dc8fab13c959ee7a1366ed97801020965f354e4c71372 + md5: 44ada6f1f3b276f5bb02a4765e4404f7 + sha256: bade0b8c71eb9e2fa56c22aea562c96135f44bd6335dd00b7198be7569968f8e category: dev optional: true - name: pyzmq @@ -6369,17 +6368,16 @@ package: manager: conda platform: win-64 dependencies: - libsodium: '>=1.0.20,<1.0.21.0a0' - python: '>=3.11,<3.12.0a0' + python: '' python_abi: 3.11.* ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' zeromq: '>=4.3.5,<4.3.6.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/pyzmq-27.0.2-py311ha362a94_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/pyzmq-27.0.2-py311hb77b9c8_2.conda hash: - md5: 365e79343bf4fdda64adbd6dba692712 - sha256: cc6e12a359c71586ec3e98820f6bd510e1bcd0e73faee36c41d6ed04b0c92174 + md5: 4e1dcb30debb578be76b7798296be3b3 + sha256: 7afc1ced3e240b0ba164023c4015638fc5cc23cb7af3c544a7890e367bc44322 category: dev optional: true - name: readline @@ -6564,7 +6562,7 @@ package: category: dev optional: true - name: rpds-py - version: 0.27.0 + version: 0.27.1 manager: conda platform: linux-64 dependencies: @@ -6572,14 +6570,14 @@ package: libgcc: '>=14' python: '' python_abi: 3.11.* - url: https://repo.prefix.dev/conda-forge/linux-64/rpds-py-0.27.0-py311h902ca64_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/rpds-py-0.27.1-py311h902ca64_0.conda hash: - md5: 397e7e07356db9425069fa86e8920404 - sha256: c32892bc6ec30f932424c6a02f2b6de1062581a1cc942127792ec7980ddc31aa + md5: 486cb477243a9538130c439e66277069 + sha256: 72231a2721aa5d1bcee36bf1a33e57e500f820feb09058700365ea8e5d9c982d category: dev optional: true - name: rpds-py - version: 0.27.0 + version: 0.27.1 manager: conda platform: win-64 dependencies: @@ -6588,10 +6586,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/rpds-py-0.27.0-py311hf51aa87_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/rpds-py-0.27.1-py311hf51aa87_0.conda hash: - md5: 2380617b3e31a99fff5fc05b1eef6b40 - sha256: ec07fee2b2d325b4a6c1284663eebfa2a85298c626a6040c86b5ea72f8bf7df5 + md5: 46f38e6cf7d54ba38d57400d72a3fe51 + sha256: 99984fb89ee84721a7d31e1346f4f973e71e284252e17d7c7a1806e945ab6e14 category: dev optional: true - name: rtree @@ -6853,27 +6851,27 @@ package: category: main optional: false - name: soupsieve - version: '2.7' + version: '2.8' manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.7-pyhd8ed1ab_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.8-pyhd8ed1ab_0.conda hash: - md5: fb32097c717486aa34b38a9db57eb49e - sha256: 7518506cce9a736042132f307b3f4abce63bf076f5fb07c1f4e506c0b214295a + md5: 18c019ccf43769d211f2cf78e9ad46c2 + sha256: c978576cf9366ba576349b93be1cfd9311c00537622a2f9e14ba2b90c97cae9c category: dev optional: true - name: soupsieve - version: '2.7' + version: '2.8' manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.7-pyhd8ed1ab_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.8-pyhd8ed1ab_0.conda hash: - md5: fb32097c717486aa34b38a9db57eb49e - sha256: 7518506cce9a736042132f307b3f4abce63bf076f5fb07c1f4e506c0b214295a + md5: 18c019ccf43769d211f2cf78e9ad46c2 + sha256: c978576cf9366ba576349b93be1cfd9311c00537622a2f9e14ba2b90c97cae9c category: dev optional: true - name: sphinx @@ -7847,27 +7845,27 @@ package: category: dev optional: true - name: typing-extensions - version: 4.14.1 + version: 4.15.0 manager: conda platform: linux-64 dependencies: - typing_extensions: ==4.14.1 - url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.14.1-h4440ef1_0.conda + typing_extensions: ==4.15.0 + url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda hash: - md5: 75be1a943e0a7f99fcf118309092c635 - sha256: 349951278fa8d0860ec6b61fcdc1e6f604e6fce74fabf73af2e39a37979d0223 + md5: edd329d7d3a4ab45dcf905899a7a6115 + sha256: 7c2df5721c742c2a47b2c8f960e718c930031663ac1174da67c1ed5999f7938c category: main optional: false - name: typing-extensions - version: 4.14.1 + version: 4.15.0 manager: conda platform: win-64 dependencies: - typing_extensions: ==4.14.1 - url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.14.1-h4440ef1_0.conda + typing_extensions: ==4.15.0 + url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda hash: - md5: 75be1a943e0a7f99fcf118309092c635 - sha256: 349951278fa8d0860ec6b61fcdc1e6f604e6fce74fabf73af2e39a37979d0223 + md5: edd329d7d3a4ab45dcf905899a7a6115 + sha256: 7c2df5721c742c2a47b2c8f960e718c930031663ac1174da67c1ed5999f7938c category: main optional: false - name: typing-inspection @@ -7897,27 +7895,27 @@ package: category: main optional: false - name: typing_extensions - version: 4.14.1 + version: 4.15.0 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.14.1-pyhe01879c_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda hash: - md5: e523f4f1e980ed7a4240d7e27e9ec81f - sha256: 4f52390e331ea8b9019b87effaebc4f80c6466d09f68453f52d5cdc2a3e1194f + md5: 0caa1af407ecff61170c9437a808404d + sha256: 032271135bca55aeb156cee361c81350c6f3fb203f57d024d7e5a1fc9ef18731 category: main optional: false - name: typing_extensions - version: 4.14.1 + version: 4.15.0 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.14.1-pyhe01879c_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda hash: - md5: e523f4f1e980ed7a4240d7e27e9ec81f - sha256: 4f52390e331ea8b9019b87effaebc4f80c6466d09f68453f52d5cdc2a3e1194f + md5: 0caa1af407ecff61170c9437a808404d + sha256: 032271135bca55aeb156cee361c81350c6f3fb203f57d024d7e5a1fc9ef18731 category: main optional: false - name: typing_utils @@ -7991,14 +7989,14 @@ package: category: dev optional: true - name: ucrt - version: 10.0.22621.0 + version: 10.0.26100.0 manager: conda platform: win-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/ucrt-10.0.26100.0-h57928b3_0.conda hash: - md5: 6797b005cd0f439c4c5c9ac565783700 - sha256: db8dead3dd30fb1a032737554ce91e2819b43496a0db09927edf01c32b577450 + md5: 71b24316859acd00bdb8b38f5e2ce328 + sha256: 3005729dce6f3d3f5ec91dfc49fc75a0095f9cd23bab49efb899657297ac91a5 category: main optional: false - name: unicodedata2 @@ -8550,13 +8548,13 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' cffi: '>=1.11' - libgcc: '>=13' + libgcc: '>=14' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://repo.prefix.dev/conda-forge/linux-64/zstandard-0.23.0-py311h9ecbd09_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/zstandard-0.23.0-py311h49ec1c0_3.conda hash: - md5: ca02de88df1cc3cfc8f24766ff50cb3c - sha256: 76d28240cc9fa0c3cb2cde750ecaf98716ce397afaf1ce90f8d18f5f43a122f1 + md5: 493d5b49a7b416746b2fe41c82e27dce + sha256: 2d2adc6539abbab7a599357b73faf8e3d8c9fc40f31d9fdf2e2927c315f02a6a category: main optional: false - name: zstandard @@ -8568,12 +8566,12 @@ package: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/zstandard-0.23.0-py311he736701_2.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/zstandard-0.23.0-py311h3485c13_3.conda hash: - md5: 8355ec073f73581e29adf77c49096aed - sha256: aaae40057eac5b5996db4e6b3d8eb00d38455e67571e796135d29702a19736bd + md5: 8265296d9de69a925580b651c0c717ae + sha256: 5b3a2666e21723b96b3637aef4d108c2996979efe5719998649184f01b20ed7e category: main optional: false - name: zstd @@ -8607,41 +8605,41 @@ package: category: main optional: false - name: geoapps-utils - version: 0.6.0a1 + version: 0.6.0a2.dev61+655afd7 manager: pip platform: linux-64 dependencies: - geoh5py: 0.12.0a1 + geoh5py: 0.12.0a2.dev44+fd5f8fb1 numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@25bf69c7afdfce5e9d4ac7d667c88790aad9c934 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@655afd735989270d5d03b80a98cbe22844b47066 hash: - sha256: 25bf69c7afdfce5e9d4ac7d667c88790aad9c934 + sha256: 655afd735989270d5d03b80a98cbe22844b47066 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@25bf69c7afdfce5e9d4ac7d667c88790aad9c934 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@655afd735989270d5d03b80a98cbe22844b47066 category: main optional: false - name: geoapps-utils - version: 0.6.0a1 + version: 0.6.0a2.dev61+655afd7 manager: pip platform: win-64 dependencies: - geoh5py: 0.12.0a1 + geoh5py: 0.12.0a2.dev44+fd5f8fb1 numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@25bf69c7afdfce5e9d4ac7d667c88790aad9c934 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@655afd735989270d5d03b80a98cbe22844b47066 hash: - sha256: 25bf69c7afdfce5e9d4ac7d667c88790aad9c934 + sha256: 655afd735989270d5d03b80a98cbe22844b47066 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@25bf69c7afdfce5e9d4ac7d667c88790aad9c934 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@655afd735989270d5d03b80a98cbe22844b47066 category: main optional: false - name: geoh5py - version: 0.12.0a1 + version: 0.12.0a2.dev44+fd5f8fb1 manager: pip platform: linux-64 dependencies: @@ -8649,16 +8647,16 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@bdf223def86a077a7e3f02b631fbffd7727527f2 + url: git+https://github.com/MiraGeoscience/geoh5py.git@fd5f8fb1dcd764c01eb4d43ab26201c5bceb34ef hash: - sha256: bdf223def86a077a7e3f02b631fbffd7727527f2 + sha256: fd5f8fb1dcd764c01eb4d43ab26201c5bceb34ef source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@bdf223def86a077a7e3f02b631fbffd7727527f2 + url: git+https://github.com/MiraGeoscience/geoh5py.git@fd5f8fb1dcd764c01eb4d43ab26201c5bceb34ef category: main optional: false - name: geoh5py - version: 0.12.0a1 + version: 0.12.0a2.dev44+fd5f8fb1 manager: pip platform: win-64 dependencies: @@ -8666,91 +8664,91 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@bdf223def86a077a7e3f02b631fbffd7727527f2 + url: git+https://github.com/MiraGeoscience/geoh5py.git@fd5f8fb1dcd764c01eb4d43ab26201c5bceb34ef hash: - sha256: bdf223def86a077a7e3f02b631fbffd7727527f2 + sha256: fd5f8fb1dcd764c01eb4d43ab26201c5bceb34ef source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@bdf223def86a077a7e3f02b631fbffd7727527f2 + url: git+https://github.com/MiraGeoscience/geoh5py.git@fd5f8fb1dcd764c01eb4d43ab26201c5bceb34ef category: main optional: false - name: grid-apps - version: 0.1.0a1 + version: 0.1.0a1.dev60+4168153 manager: pip platform: linux-64 dependencies: discretize: '>=0.11.0,<0.12.dev' - geoapps-utils: 0.6.0a1 - geoh5py: 0.12.0a1 + geoapps-utils: 0.6.0a2.dev61+655afd7 + geoh5py: 0.12.0a2.dev44+fd5f8fb1 numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/grid-apps.git@b950dd55b4fb70d2ef28488a3f684c374a170b9f + url: git+https://github.com/MiraGeoscience/grid-apps.git@416815352706add295a9d2b90814d2291068a85e hash: - sha256: b950dd55b4fb70d2ef28488a3f684c374a170b9f + sha256: 416815352706add295a9d2b90814d2291068a85e source: type: url - url: git+https://github.com/MiraGeoscience/grid-apps.git@b950dd55b4fb70d2ef28488a3f684c374a170b9f + url: git+https://github.com/MiraGeoscience/grid-apps.git@416815352706add295a9d2b90814d2291068a85e category: main optional: false - name: grid-apps - version: 0.1.0a1 + version: 0.1.0a1.dev60+4168153 manager: pip platform: win-64 dependencies: discretize: '>=0.11.0,<0.12.dev' - geoapps-utils: 0.6.0a1 - geoh5py: 0.12.0a1 + geoapps-utils: 0.6.0a2.dev61+655afd7 + geoh5py: 0.12.0a2.dev44+fd5f8fb1 numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/grid-apps.git@b950dd55b4fb70d2ef28488a3f684c374a170b9f + url: git+https://github.com/MiraGeoscience/grid-apps.git@416815352706add295a9d2b90814d2291068a85e hash: - sha256: b950dd55b4fb70d2ef28488a3f684c374a170b9f + sha256: 416815352706add295a9d2b90814d2291068a85e source: type: url - url: git+https://github.com/MiraGeoscience/grid-apps.git@b950dd55b4fb70d2ef28488a3f684c374a170b9f + url: git+https://github.com/MiraGeoscience/grid-apps.git@416815352706add295a9d2b90814d2291068a85e category: main optional: false - name: mira-simpeg - version: 0.23.0.1.post2.dev57+mira.gdc256f618 + version: 0.23.0.1.post2.dev61+mira.gd794a0b24 manager: pip platform: linux-64 dependencies: discretize: '>=0.11' geoana: '>=0.7.0' - geoh5py: '>=0.12.0a1,<0.13.dev' + geoh5py: '>=0.12.0a0.dev0,<0.13.dev' libdlf: '*' matplotlib: '*' numpy: '>=1.22' pymatsolver: '>=0.3' scipy: '>=1.8' - url: git+https://github.com/MiraGeoscience/simpeg.git@dc256f618543d8ee94fd36737749715fe497f8b7 + url: git+https://github.com/MiraGeoscience/simpeg.git@d794a0b24aafb4beccc7984e68b6904be44f860f hash: - sha256: dc256f618543d8ee94fd36737749715fe497f8b7 + sha256: d794a0b24aafb4beccc7984e68b6904be44f860f source: type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@dc256f618543d8ee94fd36737749715fe497f8b7 + url: git+https://github.com/MiraGeoscience/simpeg.git@d794a0b24aafb4beccc7984e68b6904be44f860f category: main optional: false - name: mira-simpeg - version: 0.23.0.1.post2.dev57+mira.gdc256f618 + version: 0.23.0.1.post2.dev61+mira.gd794a0b24 manager: pip platform: win-64 dependencies: discretize: '>=0.11' geoana: '>=0.7.0' - geoh5py: '>=0.12.0a1,<0.13.dev' + geoh5py: '>=0.12.0a0.dev0,<0.13.dev' libdlf: '*' matplotlib: '*' numpy: '>=1.22' pymatsolver: '>=0.3' scipy: '>=1.8' - url: git+https://github.com/MiraGeoscience/simpeg.git@dc256f618543d8ee94fd36737749715fe497f8b7 + url: git+https://github.com/MiraGeoscience/simpeg.git@d794a0b24aafb4beccc7984e68b6904be44f860f hash: - sha256: dc256f618543d8ee94fd36737749715fe497f8b7 + sha256: d794a0b24aafb4beccc7984e68b6904be44f860f source: type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@dc256f618543d8ee94fd36737749715fe497f8b7 + url: git+https://github.com/MiraGeoscience/simpeg.git@d794a0b24aafb4beccc7984e68b6904be44f860f category: main optional: false diff --git a/py-3.12.conda-lock.yml b/py-3.12.conda-lock.yml index 7ba2446ff..d771a9a3f 100644 --- a/py-3.12.conda-lock.yml +++ b/py-3.12.conda-lock.yml @@ -15,8 +15,8 @@ version: 1 metadata: content_hash: - win-64: e6a7f9b65a8eab774bcc6e97dd60c58d129bef69f0979db3e945d74561748784 - linux-64: faba276316c29373b2d6b7b8c7642398283e4ca103c3aa3df2fd0358aea7e262 + win-64: 1184306731b94290082a07ff69198b9bab01231154ed953a92d9f4ce512366a2 + linux-64: 81aedccfb6112401b5a94619d03cb65bd3c0a1242f995c2c22516fc86dbbaec5 channels: - url: conda-forge used_env_vars: [] @@ -35,10 +35,10 @@ package: platform: linux-64 dependencies: llvm-openmp: '>=9.0.1' - url: https://repo.prefix.dev/conda-forge/linux-64/_openmp_mutex-4.5-3_kmp_llvm.conda + url: https://repo.prefix.dev/conda-forge/linux-64/_openmp_mutex-4.5-4_kmp_llvm.conda hash: - md5: ee5c2118262e30b972bc0b4db8ef0ba5 - sha256: cec7343e76c9da6a42c7e7cba53391daa6b46155054ef61a5ef522ea27c5a058 + md5: cc86eba730b0e87ea9990985d45e60f9 + sha256: b5e8980dd5fd96607fcccd98217b1058ec54566845b757cc0ecef146b5f0a51e category: main optional: false - name: _openmp_mutex @@ -54,6 +54,32 @@ package: sha256: 1a62cd1f215fe0902e7004089693a78347a30ad687781dfda2289cab000e652d category: main optional: false +- name: _python_abi3_support + version: '1.0' + manager: conda + platform: linux-64 + dependencies: + cpython: '' + python-gil: '' + url: https://repo.prefix.dev/conda-forge/noarch/_python_abi3_support-1.0-hd8ed1ab_2.conda + hash: + md5: aaa2a381ccc56eac91d63b6c1240312f + sha256: a3967b937b9abf0f2a99f3173fa4630293979bd1644709d89580e7c62a544661 + category: dev + optional: true +- name: _python_abi3_support + version: '1.0' + manager: conda + platform: win-64 + dependencies: + cpython: '' + python-gil: '' + url: https://repo.prefix.dev/conda-forge/noarch/_python_abi3_support-1.0-hd8ed1ab_2.conda + hash: + md5: aaa2a381ccc56eac91d63b6c1240312f + sha256: a3967b937b9abf0f2a99f3173fa4630293979bd1644709d89580e7c62a544661 + category: dev + optional: true - name: accessible-pygments version: 0.0.5 manager: conda @@ -402,31 +428,31 @@ package: category: dev optional: true - name: beautifulsoup4 - version: 4.13.4 + version: 4.13.5 manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '>=3.10' soupsieve: '>=1.2' typing-extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/beautifulsoup4-4.13.4-pyha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/beautifulsoup4-4.13.5-pyha770c72_0.conda hash: - md5: 9f07c4fc992adb2d6c30da7fab3959a7 - sha256: ddb0df12fd30b2d36272f5daf6b6251c7625d6a99414d7ea930005bbaecad06d + md5: de0fd9702fd4c1186e930b8c35af6b6b + sha256: d2124c0ea13527c7f54582269b3ae19541141a3740d6d779e7aa95aa82eaf561 category: dev optional: true - name: beautifulsoup4 - version: 4.13.4 + version: 4.13.5 manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '>=3.10' soupsieve: '>=1.2' typing-extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/beautifulsoup4-4.13.4-pyha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/beautifulsoup4-4.13.5-pyha770c72_0.conda hash: - md5: 9f07c4fc992adb2d6c30da7fab3959a7 - sha256: ddb0df12fd30b2d36272f5daf6b6251c7625d6a99414d7ea930005bbaecad06d + md5: de0fd9702fd4c1186e930b8c35af6b6b + sha256: d2124c0ea13527c7f54582269b3ae19541141a3740d6d779e7aa95aa82eaf561 category: dev optional: true - name: bleach @@ -947,7 +973,7 @@ package: category: main optional: false - name: coverage - version: 7.10.4 + version: 7.10.5 manager: conda platform: linux-64 dependencies: @@ -956,14 +982,14 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* tomli: '' - url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.10.4-py312h8a5da7c_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.10.5-py312h8a5da7c_0.conda hash: - md5: bad9b9d3b7b39204823c3ec42bf58473 - sha256: 7411b5574c914eb9484e536d6fa211b2ec3694b74f4a36115ab848c997213cc0 + md5: 1534a930a40c7547dfcf477884c210d7 + sha256: 163996c0940ee58e605722ab08d47746cb6618a92c35287ad574cc3b7b20d928 category: dev optional: true - name: coverage - version: 7.10.4 + version: 7.10.5 manager: conda platform: win-64 dependencies: @@ -973,10 +999,23 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.10.4-py312h05f76fc_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.10.5-py312h05f76fc_0.conda + hash: + md5: b5df85abc3dd7cb713eecb7f49396e96 + sha256: 40526b427d6425558d6c9c71cdd6f009214322b96aa443fc9672947e15886f9e + category: dev + optional: true +- name: cpython + version: 3.12.11 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.12,<3.13.0a0' + python_abi: '*' + url: https://repo.prefix.dev/conda-forge/noarch/cpython-3.12.11-py312hd8ed1ab_0.conda hash: - md5: c8f541c460e8b5168ee894419571d0d3 - sha256: 7cd1280f8ced38d7523f97fe39a44dd8302d80359655d827452e76f844fa59a9 + md5: e5279009e7a7f7edd3cd2880c502b3cc + sha256: 7e7bc8e73a2f3736444a8564cbece7216464c00f0bc38e604b0c792ff60d621a category: dev optional: true - name: cpython @@ -1342,10 +1381,10 @@ package: dependencies: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/docutils-0.18.1-py312h7900ff3_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/docutils-0.18.1-py312h7900ff3_1.conda hash: - md5: b741a9f139d1ffd43cbb5da54252dae7 - sha256: 27088b406250e0189f271ed795ee929e3030a29ae67acbbf193d0e82ca7f210a + md5: 09365878b2c29a847deca0d9e1d56756 + sha256: f2c84f148afafdd07c67e03ff46262558cb02868d213dae53feb645fe0bdd183 category: dev optional: true - name: docutils @@ -1355,10 +1394,10 @@ package: dependencies: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/win-64/docutils-0.18.1-py312h2e8e312_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/docutils-0.18.1-py312h2e8e312_1.conda hash: - md5: 3bcf1239777952b112ef26f2b8e4d5a7 - sha256: 7638c8adbd1ef73bb3f9ef2df24d03464b5c9622bac4816581ca365ee96718ce + md5: 766c498c3e50dac8e4605d6ac9dcf5a8 + sha256: 517fe814fbfe570978369bc6dd9f951739293cf90905213204f30b2c29df7946 category: dev optional: true - name: exceptiongroup @@ -1436,7 +1475,7 @@ package: category: main optional: false - name: fonttools - version: 4.59.1 + version: 4.59.2 manager: conda platform: linux-64 dependencies: @@ -1447,14 +1486,14 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* unicodedata2: '>=15.1.0' - url: https://repo.prefix.dev/conda-forge/linux-64/fonttools-4.59.1-py312h8a5da7c_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/fonttools-4.59.2-py312h8a5da7c_0.conda hash: - md5: 313520338e97b747315b5be6a563c315 - sha256: 8c65a6c9592828ca767161b47e66e66fe8d32b8e1f8af37b10b6594ad1c77340 + md5: 4c3f3c752ec0cd37b0a0990af20fd952 + sha256: da1c642961e2cad6748266c55ee625062fbdec9f191dc16a29859b2b996a4eea category: main optional: false - name: fonttools - version: 4.59.1 + version: 4.59.2 manager: conda platform: win-64 dependencies: @@ -1466,10 +1505,10 @@ package: unicodedata2: '>=15.1.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/fonttools-4.59.1-py312h05f76fc_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/fonttools-4.59.2-py312h05f76fc_0.conda hash: - md5: 8994cea102b73b5bd7824e291056ebe3 - sha256: aa34796eb45b4c8ed12263f32bbadfdb9a02535c93067963374530035d31a505 + md5: f7580ac5d3ac28eb32de8f6fc08fbc75 + sha256: df2e931833a9ea21f265843c2315eacb4ece35c245fd408078949529abe6c8cb category: main optional: false - name: fqdn @@ -1645,31 +1684,31 @@ package: category: dev optional: true - name: h2 - version: 4.2.0 + version: 4.3.0 manager: conda platform: linux-64 dependencies: hpack: '>=4.1,<5' hyperframe: '>=6.1,<7' - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/h2-4.3.0-pyhcf101f3_0.conda hash: - md5: b4754fb1bdcb70c8fd54f918301582c6 - sha256: 0aa1cdc67a9fe75ea95b5644b734a756200d6ec9d0dff66530aec3d1c1e9df75 + md5: 164fc43f0b53b6e3a7bc7dce5e4f1dc9 + sha256: 84c64443368f84b600bfecc529a1194a3b14c3656ee2e832d15a20e0329b6da3 category: main optional: false - name: h2 - version: 4.2.0 + version: 4.3.0 manager: conda platform: win-64 dependencies: hpack: '>=4.1,<5' hyperframe: '>=6.1,<7' - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/h2-4.3.0-pyhcf101f3_0.conda hash: - md5: b4754fb1bdcb70c8fd54f918301582c6 - sha256: 0aa1cdc67a9fe75ea95b5644b734a756200d6ec9d0dff66530aec3d1c1e9df75 + md5: 164fc43f0b53b6e3a7bc7dce5e4f1dc9 + sha256: 84c64443368f84b600bfecc529a1194a3b14c3656ee2e832d15a20e0329b6da3 category: main optional: false - name: h5py @@ -2034,7 +2073,7 @@ package: category: dev optional: true - name: ipython - version: 9.4.0 + version: 9.5.0 manager: conda platform: linux-64 dependencies: @@ -2052,14 +2091,14 @@ package: stack_data: '' traitlets: '>=5.13.0' typing_extensions: '>=4.6' - url: https://repo.prefix.dev/conda-forge/noarch/ipython-9.4.0-pyhfa0c392_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ipython-9.5.0-pyhfa0c392_0.conda hash: - md5: cb7706b10f35e7507917cefa0978a66d - sha256: ff5138bf6071ca01d84e1329f6baa96f0723df6fe183cfa1ab3ebc96240e6d8f + md5: c0916cc4b733577cd41df93884d857b0 + sha256: e9ca009d3aab9d8a85f0241d6ada2c7fbc84072008e95f803fa59da3294aa863 category: dev optional: true - name: ipython - version: 9.4.0 + version: 9.5.0 manager: conda platform: win-64 dependencies: @@ -2077,10 +2116,10 @@ package: stack_data: '' traitlets: '>=5.13.0' typing_extensions: '>=4.6' - url: https://repo.prefix.dev/conda-forge/noarch/ipython-9.4.0-pyh6be1c34_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ipython-9.5.0-pyh6be1c34_0.conda hash: - md5: b551e25e4fb27ccb51aff2c5dcf178f4 - sha256: 8fb441c9f4b50e38b6059e8984e49208a4e2a4ec4e41b543ebaa894f8261d4c9 + md5: aec1868dd4cbe028b2c8cb11377895a6 + sha256: 658c547dafb10cd0989f2cdf72f8ee9fe8f66240307b64555ee43f6908e9d0ad category: dev optional: true - name: ipython_genutils @@ -2272,29 +2311,29 @@ package: category: main optional: false - name: joblib - version: 1.5.1 + version: 1.5.2 manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '>=3.10' setuptools: '' - url: https://repo.prefix.dev/conda-forge/noarch/joblib-1.5.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/joblib-1.5.2-pyhd8ed1ab_0.conda hash: - md5: fb1c14694de51a476ce8636d92b6f42c - sha256: e5a4eca9a5d8adfaa3d51e24eefd1a6d560cb3b33a7e1eee13e410bec457b7ed + md5: 4e717929cfa0d49cef92d911e31d0e90 + sha256: 6fc414c5ae7289739c2ba75ff569b79f72e38991d61eb67426a8a4b92f90462c category: main optional: false - name: joblib - version: 1.5.1 + version: 1.5.2 manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '>=3.10' setuptools: '' - url: https://repo.prefix.dev/conda-forge/noarch/joblib-1.5.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/joblib-1.5.2-pyhd8ed1ab_0.conda hash: - md5: fb1c14694de51a476ce8636d92b6f42c - sha256: e5a4eca9a5d8adfaa3d51e24eefd1a6d560cb3b33a7e1eee13e410bec457b7ed + md5: 4e717929cfa0d49cef92d911e31d0e90 + sha256: 6fc414c5ae7289739c2ba75ff569b79f72e38991d61eb67426a8a4b92f90462c category: main optional: false - name: json5 @@ -2550,31 +2589,31 @@ package: category: dev optional: true - name: jupyter-lsp - version: 2.2.6 + version: 2.3.0 manager: conda platform: linux-64 dependencies: importlib-metadata: '>=4.8.3' jupyter_server: '>=1.1.2' - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter-lsp-2.2.6-pyhe01879c_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/jupyter-lsp-2.3.0-pyhcf101f3_0.conda hash: - md5: 7129ed52335cc7164baf4d6508a3f233 - sha256: 6f2d6c5983e013af68e7e1d7082cc46b11f55e28147bd0a72a44488972ed90a3 + md5: 62b7c96c6cd77f8173cc5cada6a9acaa + sha256: 897ad2e2c2335ef3c2826d7805e16002a1fd0d509b4ae0bc66617f0e0ff07bc2 category: dev optional: true - name: jupyter-lsp - version: 2.2.6 + version: 2.3.0 manager: conda platform: win-64 dependencies: importlib-metadata: '>=4.8.3' jupyter_server: '>=1.1.2' - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter-lsp-2.2.6-pyhe01879c_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/jupyter-lsp-2.3.0-pyhcf101f3_0.conda hash: - md5: 7129ed52335cc7164baf4d6508a3f233 - sha256: 6f2d6c5983e013af68e7e1d7082cc46b11f55e28147bd0a72a44488972ed90a3 + md5: 62b7c96c6cd77f8173cc5cada6a9acaa + sha256: 897ad2e2c2335ef3c2826d7805e16002a1fd0d509b4ae0bc66617f0e0ff07bc2 category: dev optional: true - name: jupyter_client @@ -2916,7 +2955,7 @@ package: category: dev optional: true - name: jupytext - version: 1.17.2 + version: 1.17.3 manager: conda platform: linux-64 dependencies: @@ -2924,17 +2963,17 @@ package: mdit-py-plugins: '' nbformat: '' packaging: '' - python: '>=3.9' + python: '>=3.10' pyyaml: '' tomli: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupytext-1.17.2-pyh80e38bb_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupytext-1.17.3-pyh80e38bb_0.conda hash: - md5: 6d0652a97ef103de0c77b9c610d0c20d - sha256: 48986a9c01f17d1d5a598af33814a877fd67a6a3287625718d76617a7d17f51d + md5: 3178d138046fbc2e4944d3642a326814 + sha256: 2da4cfec3f811a37caa583e572ad2dad0b1d5c34f5d7121b4c687692bf1a4a06 category: dev optional: true - name: jupytext - version: 1.17.2 + version: 1.17.3 manager: conda platform: win-64 dependencies: @@ -2942,13 +2981,13 @@ package: mdit-py-plugins: '' nbformat: '' packaging: '' - python: '>=3.9' + python: '>=3.10' pyyaml: '' tomli: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupytext-1.17.2-pyh80e38bb_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupytext-1.17.3-pyh80e38bb_0.conda hash: - md5: 6d0652a97ef103de0c77b9c610d0c20d - sha256: 48986a9c01f17d1d5a598af33814a877fd67a6a3287625718d76617a7d17f51d + md5: 3178d138046fbc2e4944d3642a326814 + sha256: 2da4cfec3f811a37caa583e572ad2dad0b1d5c34f5d7121b4c687692bf1a4a06 category: dev optional: true - name: keyutils @@ -2974,10 +3013,10 @@ package: libstdcxx: '>=14' python: '' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/kiwisolver-1.4.9-py312h0a2e395_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/kiwisolver-1.4.9-py312h0a2e395_1.conda hash: - md5: f1f7cfc42b0fa6adb4c304d609077a78 - sha256: abe5ba0c956c5b830c237a5aaf50516ac9ebccf3f9fd9ffb18a5a11640f43677 + md5: cec5c1ea565944a94f82cdd6fba7cc76 + sha256: 42f856c17ea4b9bce5ac5e91d6e58e15d835a3cac32d71bc592dd5031f9c0fb8 category: main optional: false - name: kiwisolver @@ -2990,10 +3029,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/kiwisolver-1.4.9-py312h78d62e6_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/kiwisolver-1.4.9-py312h78d62e6_1.conda hash: - md5: 051ec1f2aae07891d9169fe9927c1cc5 - sha256: 6f7497788ade7349b30d78e4bd1aa017085fe84624240228f6287376d2714c85 + md5: c7c58703547905737c1ee1abf18c4644 + sha256: b47cbb03f268bf0a048df9d455f50bd2e790debf971c450a89a3a56d66a50468 category: main optional: false - name: krb5 @@ -4188,10 +4227,10 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-20.1.8-h4922eb0_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-20.1.8-h4922eb0_2.conda hash: - md5: 5d5099916a3659a46cca8f974d0455b9 - sha256: 4539fd52a5f59039cd575caf222e22ebe57ab168cd102d182a970c1f1a72fe51 + md5: fab9b7d973248580e0300196a80c9a24 + sha256: fd5a656cfa064add64455e3b7ea046376046911c56d14dc04049e670f3b48190 category: main optional: false - name: llvm-openmp @@ -4202,10 +4241,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-20.1.8-hfa2b4ca_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-20.1.8-hfa2b4ca_2.conda hash: - md5: 2c3afd82c44b0bf59fa8f924e30c0513 - sha256: 568e9dec9078055adebf6c07202be079884b85780a4542f0f326763e6f642a2d + md5: 2dc2edf349464c8b83a576175fc2ad42 + sha256: 8970b7f9057a1c2c18bfd743c6f5ce73b86197d7724423de4fa3d03911d5874b category: main optional: false - name: locket @@ -5241,27 +5280,27 @@ package: category: dev optional: true - name: parso - version: 0.8.4 + version: 0.8.5 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_1.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/parso-0.8.5-pyhcf101f3_0.conda hash: - md5: 5c092057b6badd30f75b06244ecd01c9 - sha256: 17131120c10401a99205fc6fe436e7903c0fa092f1b3e80452927ab377239bcc + md5: a110716cdb11cf51482ff4000dc253d7 + sha256: 30de7b4d15fbe53ffe052feccde31223a236dae0495bab54ab2479de30b2990f category: dev optional: true - name: parso - version: 0.8.4 + version: 0.8.5 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_1.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/parso-0.8.5-pyhcf101f3_0.conda hash: - md5: 5c092057b6badd30f75b06244ecd01c9 - sha256: 17131120c10401a99205fc6fe436e7903c0fa092f1b3e80452927ab377239bcc + md5: a110716cdb11cf51482ff4000dc253d7 + sha256: 30de7b4d15fbe53ffe052feccde31223a236dae0495bab54ab2479de30b2990f category: dev optional: true - name: partd @@ -5406,27 +5445,27 @@ package: category: main optional: false - name: platformdirs - version: 4.3.8 + version: 4.4.0 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.3.8-pyhe01879c_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.4.0-pyhcf101f3_0.conda hash: - md5: 424844562f5d337077b445ec6b1398a7 - sha256: 0f48999a28019c329cd3f6fd2f01f09fc32cc832f7d6bbe38087ddac858feaa3 + md5: cc9d9a3929503785403dbfad9f707145 + sha256: dfe0fa6e351d2b0cef95ac1a1533d4f960d3992f9e0f82aeb5ec3623a699896b category: dev optional: true - name: platformdirs - version: 4.3.8 + version: 4.4.0 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.3.8-pyhe01879c_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.4.0-pyhcf101f3_0.conda hash: - md5: 424844562f5d337077b445ec6b1398a7 - sha256: 0f48999a28019c329cd3f6fd2f01f09fc32cc832f7d6bbe38087ddac858feaa3 + md5: cc9d9a3929503785403dbfad9f707145 + sha256: dfe0fa6e351d2b0cef95ac1a1533d4f960d3992f9e0f82aeb5ec3623a699896b category: dev optional: true - name: pluggy @@ -5478,29 +5517,29 @@ package: category: dev optional: true - name: prompt-toolkit - version: 3.0.51 + version: 3.0.52 manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '>=3.10' wcwidth: '' - url: https://repo.prefix.dev/conda-forge/noarch/prompt-toolkit-3.0.51-pyha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/prompt-toolkit-3.0.52-pyha770c72_0.conda hash: - md5: d17ae9db4dc594267181bd199bf9a551 - sha256: ebc1bb62ac612af6d40667da266ff723662394c0ca78935340a5b5c14831227b + md5: edb16f14d920fb3faf17f5ce582942d6 + sha256: 4817651a276016f3838957bfdf963386438c70761e9faec7749d411635979bae category: dev optional: true - name: prompt-toolkit - version: 3.0.51 + version: 3.0.52 manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '>=3.10' wcwidth: '' - url: https://repo.prefix.dev/conda-forge/noarch/prompt-toolkit-3.0.51-pyha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/prompt-toolkit-3.0.52-pyha770c72_0.conda hash: - md5: d17ae9db4dc594267181bd199bf9a551 - sha256: ebc1bb62ac612af6d40667da266ff723662394c0ca78935340a5b5c14831227b + md5: edb16f14d920fb3faf17f5ce582942d6 + sha256: 4817651a276016f3838957bfdf963386438c70761e9faec7749d411635979bae category: dev optional: true - name: psutil @@ -6149,6 +6188,32 @@ package: sha256: df9aa74e9e28e8d1309274648aac08ec447a92512c33f61a8de0afa9ce32ebe8 category: dev optional: true +- name: python-gil + version: 3.12.11 + manager: conda + platform: linux-64 + dependencies: + cpython: 3.12.11.* + python_abi: '*' + url: https://repo.prefix.dev/conda-forge/noarch/python-gil-3.12.11-hd8ed1ab_0.conda + hash: + md5: 859c6bec94cd74119f12b961aba965a8 + sha256: b8afeaefe409d61fa4b68513b25a66bb17f3ca430d67cfea51083c7bfbe098ef + category: dev + optional: true +- name: python-gil + version: 3.12.11 + manager: conda + platform: win-64 + dependencies: + cpython: 3.12.11.* + python_abi: '*' + url: https://repo.prefix.dev/conda-forge/noarch/python-gil-3.12.11-hd8ed1ab_0.conda + hash: + md5: 859c6bec94cd74119f12b961aba965a8 + sha256: b8afeaefe409d61fa4b68513b25a66bb17f3ca430d67cfea51083c7bfbe098ef + category: dev + optional: true - name: python-json-logger version: 2.0.7 manager: conda @@ -6290,10 +6355,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/pywin32-311-py312h829343e_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/pywin32-311-py312h829343e_1.conda hash: - md5: e9c66e89c71bac06654d9215534e9b83 - sha256: 92d839c037f7aae1657528a9a71c686692251d41ee002132f96a05c923831844 + md5: 64cbe4ecbebe185a2261d3f298a60cde + sha256: a7505522048dad63940d06623f07eb357b9b65510a8d23ff32b99add05aac3a1 category: dev optional: true - name: pywinpty @@ -6352,16 +6417,16 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' + _python_abi3_support: 1.* + cpython: '>=3.12' libgcc: '>=14' - libsodium: '>=1.0.20,<1.0.21.0a0' libstdcxx: '>=14' - python: '>=3.12,<3.13.0a0' - python_abi: 3.12.* + python: '' zeromq: '>=4.3.5,<4.4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/pyzmq-27.0.2-py312h6748674_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pyzmq-27.0.2-py312hfb55c3c_2.conda hash: - md5: e0770749ec419e8e68e71716507c1be4 - sha256: d697fb7e36427b085feffd63288365be543f7c2a779e35205cb1e52d1ca49957 + md5: ba7305f9723cc16cf79288e0bb7b34b2 + sha256: dcf749dcf86feac506c32dc8469f0b8201f5c5077026ade7fe01bf3b90f74ecd category: dev optional: true - name: pyzmq @@ -6369,17 +6434,17 @@ package: manager: conda platform: win-64 dependencies: - libsodium: '>=1.0.20,<1.0.21.0a0' - python: '>=3.12,<3.13.0a0' - python_abi: 3.12.* + _python_abi3_support: 1.* + cpython: '>=3.12' + python: '' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' zeromq: '>=4.3.5,<4.3.6.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/pyzmq-27.0.2-py312h5b324a9_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/pyzmq-27.0.2-py312hbb5da91_2.conda hash: - md5: 75080ef44e38151a68c2993b2fe45041 - sha256: acae7d5e02cf1850b7a0d23cdfe4167aa9ff8c6e154c2f7413400e61e1614c6f + md5: 9648d45e60a9d47b17091fdfae12c4bc + sha256: f88274990a913c536c17fb03ed8256b33f8081dc62aed009260f1b031c5086ba category: dev optional: true - name: readline @@ -6564,7 +6629,7 @@ package: category: dev optional: true - name: rpds-py - version: 0.27.0 + version: 0.27.1 manager: conda platform: linux-64 dependencies: @@ -6572,14 +6637,14 @@ package: libgcc: '>=14' python: '' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/rpds-py-0.27.0-py312h868fb18_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/rpds-py-0.27.1-py312h868fb18_0.conda hash: - md5: 3d3d11430ec826a845a0e9d6ccefa294 - sha256: cfc9c79f0e2658754b02efb890fe3c835d865ed0535155787815ae16e56dbe9c + md5: 2c5c390ddeffeb6eecc79df2416783d0 + sha256: d9ace02196f551cbe608fd9d64628239a2101815a96a8a095e7a426b19956176 category: dev optional: true - name: rpds-py - version: 0.27.0 + version: 0.27.1 manager: conda platform: win-64 dependencies: @@ -6588,10 +6653,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/rpds-py-0.27.0-py312hdabe01f_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/rpds-py-0.27.1-py312hdabe01f_0.conda hash: - md5: f504b7d8f88ecdadb851a9cb77645b99 - sha256: 779d7b805ebf5f3ab48c2e4556f2b02861253ab4948266a55ba6e2c5c4642fc3 + md5: 995d26b9ef26e098ddb6a14d999a5a1b + sha256: 3d475dd9aba7517c744ba7e78e5a902dc37029de2b74be7e04d6885bfba65904 category: dev optional: true - name: rtree @@ -6853,27 +6918,27 @@ package: category: main optional: false - name: soupsieve - version: '2.7' + version: '2.8' manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.7-pyhd8ed1ab_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.8-pyhd8ed1ab_0.conda hash: - md5: fb32097c717486aa34b38a9db57eb49e - sha256: 7518506cce9a736042132f307b3f4abce63bf076f5fb07c1f4e506c0b214295a + md5: 18c019ccf43769d211f2cf78e9ad46c2 + sha256: c978576cf9366ba576349b93be1cfd9311c00537622a2f9e14ba2b90c97cae9c category: dev optional: true - name: soupsieve - version: '2.7' + version: '2.8' manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.7-pyhd8ed1ab_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.8-pyhd8ed1ab_0.conda hash: - md5: fb32097c717486aa34b38a9db57eb49e - sha256: 7518506cce9a736042132f307b3f4abce63bf076f5fb07c1f4e506c0b214295a + md5: 18c019ccf43769d211f2cf78e9ad46c2 + sha256: c978576cf9366ba576349b93be1cfd9311c00537622a2f9e14ba2b90c97cae9c category: dev optional: true - name: sphinx @@ -7847,27 +7912,27 @@ package: category: dev optional: true - name: typing-extensions - version: 4.14.1 + version: 4.15.0 manager: conda platform: linux-64 dependencies: - typing_extensions: ==4.14.1 - url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.14.1-h4440ef1_0.conda + typing_extensions: ==4.15.0 + url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda hash: - md5: 75be1a943e0a7f99fcf118309092c635 - sha256: 349951278fa8d0860ec6b61fcdc1e6f604e6fce74fabf73af2e39a37979d0223 + md5: edd329d7d3a4ab45dcf905899a7a6115 + sha256: 7c2df5721c742c2a47b2c8f960e718c930031663ac1174da67c1ed5999f7938c category: main optional: false - name: typing-extensions - version: 4.14.1 + version: 4.15.0 manager: conda platform: win-64 dependencies: - typing_extensions: ==4.14.1 - url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.14.1-h4440ef1_0.conda + typing_extensions: ==4.15.0 + url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda hash: - md5: 75be1a943e0a7f99fcf118309092c635 - sha256: 349951278fa8d0860ec6b61fcdc1e6f604e6fce74fabf73af2e39a37979d0223 + md5: edd329d7d3a4ab45dcf905899a7a6115 + sha256: 7c2df5721c742c2a47b2c8f960e718c930031663ac1174da67c1ed5999f7938c category: main optional: false - name: typing-inspection @@ -7897,27 +7962,27 @@ package: category: main optional: false - name: typing_extensions - version: 4.14.1 + version: 4.15.0 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.14.1-pyhe01879c_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda hash: - md5: e523f4f1e980ed7a4240d7e27e9ec81f - sha256: 4f52390e331ea8b9019b87effaebc4f80c6466d09f68453f52d5cdc2a3e1194f + md5: 0caa1af407ecff61170c9437a808404d + sha256: 032271135bca55aeb156cee361c81350c6f3fb203f57d024d7e5a1fc9ef18731 category: main optional: false - name: typing_extensions - version: 4.14.1 + version: 4.15.0 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.14.1-pyhe01879c_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda hash: - md5: e523f4f1e980ed7a4240d7e27e9ec81f - sha256: 4f52390e331ea8b9019b87effaebc4f80c6466d09f68453f52d5cdc2a3e1194f + md5: 0caa1af407ecff61170c9437a808404d + sha256: 032271135bca55aeb156cee361c81350c6f3fb203f57d024d7e5a1fc9ef18731 category: main optional: false - name: typing_utils @@ -7991,14 +8056,14 @@ package: category: dev optional: true - name: ucrt - version: 10.0.22621.0 + version: 10.0.26100.0 manager: conda platform: win-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/ucrt-10.0.26100.0-h57928b3_0.conda hash: - md5: 6797b005cd0f439c4c5c9ac565783700 - sha256: db8dead3dd30fb1a032737554ce91e2819b43496a0db09927edf01c32b577450 + md5: 71b24316859acd00bdb8b38f5e2ce328 + sha256: 3005729dce6f3d3f5ec91dfc49fc75a0095f9cd23bab49efb899657297ac91a5 category: main optional: false - name: unicodedata2 @@ -8550,13 +8615,13 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' cffi: '>=1.11' - libgcc: '>=13' + libgcc: '>=14' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/zstandard-0.23.0-py312h66e93f0_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/zstandard-0.23.0-py312h4c3975b_3.conda hash: - md5: 630db208bc7bbb96725ce9832c7423bb - sha256: ff62d2e1ed98a3ec18de7e5cf26c0634fd338cb87304cf03ad8cbafe6fe674ba + md5: 7a2c6e25a4fabf9fab62ee1977beabe5 + sha256: 40c76563f3a398f27b4036e468881a1f909a8c66d100a16a28c1379a0940a59c category: main optional: false - name: zstandard @@ -8568,12 +8633,12 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/zstandard-0.23.0-py312h4389bb4_2.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/zstandard-0.23.0-py312he06e257_3.conda hash: - md5: 24554d76d0efcca11faa0a013c16ed5a - sha256: 10f25f85f856dbc776b4a2cf801d31edd07cbfaa45b9cca14dd776a9f2887cb5 + md5: e23097165ce8ba29c30854c2a9e84449 + sha256: 13f43231e22173473ba300d9a128caf386ec73a18a5b9b192858ba18ea2e78f1 category: main optional: false - name: zstd @@ -8607,41 +8672,41 @@ package: category: main optional: false - name: geoapps-utils - version: 0.6.0a1 + version: 0.6.0a2.dev61+655afd7 manager: pip platform: linux-64 dependencies: - geoh5py: 0.12.0a1 + geoh5py: 0.12.0a2.dev44+fd5f8fb1 numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@25bf69c7afdfce5e9d4ac7d667c88790aad9c934 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@655afd735989270d5d03b80a98cbe22844b47066 hash: - sha256: 25bf69c7afdfce5e9d4ac7d667c88790aad9c934 + sha256: 655afd735989270d5d03b80a98cbe22844b47066 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@25bf69c7afdfce5e9d4ac7d667c88790aad9c934 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@655afd735989270d5d03b80a98cbe22844b47066 category: main optional: false - name: geoapps-utils - version: 0.6.0a1 + version: 0.6.0a2.dev61+655afd7 manager: pip platform: win-64 dependencies: - geoh5py: 0.12.0a1 + geoh5py: 0.12.0a2.dev44+fd5f8fb1 numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@25bf69c7afdfce5e9d4ac7d667c88790aad9c934 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@655afd735989270d5d03b80a98cbe22844b47066 hash: - sha256: 25bf69c7afdfce5e9d4ac7d667c88790aad9c934 + sha256: 655afd735989270d5d03b80a98cbe22844b47066 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@25bf69c7afdfce5e9d4ac7d667c88790aad9c934 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@655afd735989270d5d03b80a98cbe22844b47066 category: main optional: false - name: geoh5py - version: 0.12.0a1 + version: 0.12.0a2.dev44+fd5f8fb1 manager: pip platform: linux-64 dependencies: @@ -8649,16 +8714,16 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@bdf223def86a077a7e3f02b631fbffd7727527f2 + url: git+https://github.com/MiraGeoscience/geoh5py.git@fd5f8fb1dcd764c01eb4d43ab26201c5bceb34ef hash: - sha256: bdf223def86a077a7e3f02b631fbffd7727527f2 + sha256: fd5f8fb1dcd764c01eb4d43ab26201c5bceb34ef source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@bdf223def86a077a7e3f02b631fbffd7727527f2 + url: git+https://github.com/MiraGeoscience/geoh5py.git@fd5f8fb1dcd764c01eb4d43ab26201c5bceb34ef category: main optional: false - name: geoh5py - version: 0.12.0a1 + version: 0.12.0a2.dev44+fd5f8fb1 manager: pip platform: win-64 dependencies: @@ -8666,91 +8731,91 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@bdf223def86a077a7e3f02b631fbffd7727527f2 + url: git+https://github.com/MiraGeoscience/geoh5py.git@fd5f8fb1dcd764c01eb4d43ab26201c5bceb34ef hash: - sha256: bdf223def86a077a7e3f02b631fbffd7727527f2 + sha256: fd5f8fb1dcd764c01eb4d43ab26201c5bceb34ef source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@bdf223def86a077a7e3f02b631fbffd7727527f2 + url: git+https://github.com/MiraGeoscience/geoh5py.git@fd5f8fb1dcd764c01eb4d43ab26201c5bceb34ef category: main optional: false - name: grid-apps - version: 0.1.0a1 + version: 0.1.0a1.dev60+4168153 manager: pip platform: linux-64 dependencies: discretize: '>=0.11.0,<0.12.dev' - geoapps-utils: 0.6.0a1 - geoh5py: 0.12.0a1 + geoapps-utils: 0.6.0a2.dev61+655afd7 + geoh5py: 0.12.0a2.dev44+fd5f8fb1 numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/grid-apps.git@b950dd55b4fb70d2ef28488a3f684c374a170b9f + url: git+https://github.com/MiraGeoscience/grid-apps.git@416815352706add295a9d2b90814d2291068a85e hash: - sha256: b950dd55b4fb70d2ef28488a3f684c374a170b9f + sha256: 416815352706add295a9d2b90814d2291068a85e source: type: url - url: git+https://github.com/MiraGeoscience/grid-apps.git@b950dd55b4fb70d2ef28488a3f684c374a170b9f + url: git+https://github.com/MiraGeoscience/grid-apps.git@416815352706add295a9d2b90814d2291068a85e category: main optional: false - name: grid-apps - version: 0.1.0a1 + version: 0.1.0a1.dev60+4168153 manager: pip platform: win-64 dependencies: discretize: '>=0.11.0,<0.12.dev' - geoapps-utils: 0.6.0a1 - geoh5py: 0.12.0a1 + geoapps-utils: 0.6.0a2.dev61+655afd7 + geoh5py: 0.12.0a2.dev44+fd5f8fb1 numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/grid-apps.git@b950dd55b4fb70d2ef28488a3f684c374a170b9f + url: git+https://github.com/MiraGeoscience/grid-apps.git@416815352706add295a9d2b90814d2291068a85e hash: - sha256: b950dd55b4fb70d2ef28488a3f684c374a170b9f + sha256: 416815352706add295a9d2b90814d2291068a85e source: type: url - url: git+https://github.com/MiraGeoscience/grid-apps.git@b950dd55b4fb70d2ef28488a3f684c374a170b9f + url: git+https://github.com/MiraGeoscience/grid-apps.git@416815352706add295a9d2b90814d2291068a85e category: main optional: false - name: mira-simpeg - version: 0.23.0.1.post2.dev57+mira.gdc256f618 + version: 0.23.0.1.post2.dev61+mira.gd794a0b24 manager: pip platform: linux-64 dependencies: discretize: '>=0.11' geoana: '>=0.7.0' - geoh5py: '>=0.12.0a1,<0.13.dev' + geoh5py: '>=0.12.0a0.dev0,<0.13.dev' libdlf: '*' matplotlib: '*' numpy: '>=1.22' pymatsolver: '>=0.3' scipy: '>=1.8' - url: git+https://github.com/MiraGeoscience/simpeg.git@dc256f618543d8ee94fd36737749715fe497f8b7 + url: git+https://github.com/MiraGeoscience/simpeg.git@d794a0b24aafb4beccc7984e68b6904be44f860f hash: - sha256: dc256f618543d8ee94fd36737749715fe497f8b7 + sha256: d794a0b24aafb4beccc7984e68b6904be44f860f source: type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@dc256f618543d8ee94fd36737749715fe497f8b7 + url: git+https://github.com/MiraGeoscience/simpeg.git@d794a0b24aafb4beccc7984e68b6904be44f860f category: main optional: false - name: mira-simpeg - version: 0.23.0.1.post2.dev57+mira.gdc256f618 + version: 0.23.0.1.post2.dev61+mira.gd794a0b24 manager: pip platform: win-64 dependencies: discretize: '>=0.11' geoana: '>=0.7.0' - geoh5py: '>=0.12.0a1,<0.13.dev' + geoh5py: '>=0.12.0a0.dev0,<0.13.dev' libdlf: '*' matplotlib: '*' numpy: '>=1.22' pymatsolver: '>=0.3' scipy: '>=1.8' - url: git+https://github.com/MiraGeoscience/simpeg.git@dc256f618543d8ee94fd36737749715fe497f8b7 + url: git+https://github.com/MiraGeoscience/simpeg.git@d794a0b24aafb4beccc7984e68b6904be44f860f hash: - sha256: dc256f618543d8ee94fd36737749715fe497f8b7 + sha256: d794a0b24aafb4beccc7984e68b6904be44f860f source: type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@dc256f618543d8ee94fd36737749715fe497f8b7 + url: git+https://github.com/MiraGeoscience/simpeg.git@d794a0b24aafb4beccc7984e68b6904be44f860f category: main optional: false From ed44a536eb6ad601ada1c12eb231c0a0b3399031 Mon Sep 17 00:00:00 2001 From: dominiquef Date: Tue, 2 Sep 2025 10:47:47 -0700 Subject: [PATCH 3/4] Extend topo in tests --- simpeg_drivers/utils/synthetics/topography.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/simpeg_drivers/utils/synthetics/topography.py b/simpeg_drivers/utils/synthetics/topography.py index 98ba9236b..6fa1727c5 100644 --- a/simpeg_drivers/utils/synthetics/topography.py +++ b/simpeg_drivers/utils/synthetics/topography.py @@ -27,9 +27,9 @@ def get_topography_surface(geoh5: Workspace, options: SurveyOptions) -> Surface: """ X, Y, Z = grid_layout( - limits=[2 * k for k in options.limits], # type: ignore - station_spacing=int(np.ceil((options.limits[1] - options.limits[0]) / 4)), - line_spacing=int(np.ceil((options.limits[3] - options.limits[2]) / 4)), + limits=[16 * k for k in options.limits], # type: ignore + station_spacing=int(np.ceil((options.limits[1] - options.limits[0]) / 2)), + line_spacing=int(np.ceil((options.limits[3] - options.limits[2]) / 2)), topography=options.topography, ) From 73dc82536e9f5895d852e3cc439340e62ae48755 Mon Sep 17 00:00:00 2001 From: dominiquef Date: Tue, 2 Sep 2025 11:51:29 -0700 Subject: [PATCH 4/4] Change unittest Revert "Extend topo in tests" This reverts commit ed44a536eb6ad601ada1c12eb231c0a0b3399031. --- simpeg_drivers/utils/synthetics/topography.py | 6 +++--- tests/run_tests/driver_ground_tem_test.py | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/simpeg_drivers/utils/synthetics/topography.py b/simpeg_drivers/utils/synthetics/topography.py index 6fa1727c5..98ba9236b 100644 --- a/simpeg_drivers/utils/synthetics/topography.py +++ b/simpeg_drivers/utils/synthetics/topography.py @@ -27,9 +27,9 @@ def get_topography_surface(geoh5: Workspace, options: SurveyOptions) -> Surface: """ X, Y, Z = grid_layout( - limits=[16 * k for k in options.limits], # type: ignore - station_spacing=int(np.ceil((options.limits[1] - options.limits[0]) / 2)), - line_spacing=int(np.ceil((options.limits[3] - options.limits[2]) / 2)), + limits=[2 * k for k in options.limits], # type: ignore + station_spacing=int(np.ceil((options.limits[1] - options.limits[0]) / 4)), + line_spacing=int(np.ceil((options.limits[3] - options.limits[2]) / 4)), topography=options.topography, ) diff --git a/tests/run_tests/driver_ground_tem_test.py b/tests/run_tests/driver_ground_tem_test.py index 9437539d6..f8c430ac0 100644 --- a/tests/run_tests/driver_ground_tem_test.py +++ b/tests/run_tests/driver_ground_tem_test.py @@ -159,12 +159,12 @@ def test_ground_tem_fwr_run( assert fwr_driver.inversion_data.survey.source_list[0].n_segments == 16 if pytest: - assert len(caplog.records) == 2 - for record in caplog.records: + assert len(caplog.records) == 3 + for record in caplog.records[1:]: assert record.levelname == "INFO" assert "counter-clockwise" in record.message - assert "closed" in caplog.records[0].message + assert "closed" in caplog.records[1].message assert fwr_driver.data_misfit.objfcts[0].simulation.simulations[0].solver == Mumps fwr_driver.run()