From 74af729db5ddb1b0dd5d03a57f551c051a076590 Mon Sep 17 00:00:00 2001 From: dominiquef Date: Thu, 12 Jun 2025 13:06:21 -0700 Subject: [PATCH 1/9] Create BaseJointModel option class to deal with optional reg parameters --- .../joint/joint_cross_gradient/options.py | 15 ++------- .../joint/joint_petrophysics/options.py | 5 ++- simpeg_drivers/joint/options.py | 31 +++++++++++++++++-- 3 files changed, 33 insertions(+), 18 deletions(-) diff --git a/simpeg_drivers/joint/joint_cross_gradient/options.py b/simpeg_drivers/joint/joint_cross_gradient/options.py index fec6ce54..16027879 100644 --- a/simpeg_drivers/joint/joint_cross_gradient/options.py +++ b/simpeg_drivers/joint/joint_cross_gradient/options.py @@ -17,18 +17,7 @@ from geoh5py.objects import Octree from simpeg_drivers import assets_path -from simpeg_drivers.joint.options import BaseJointOptions -from simpeg_drivers.options import ModelOptions - - -class JointCrossGradientModelOptions(ModelOptions): - """ - Model options with petrophysics reference model. - - :param petrophysical: The reference geology data. - """ - - starting_model: None = None +from simpeg_drivers.joint.options import BaseJointOptions, JointModelOptions class JointCrossGradientOptions(BaseJointOptions): @@ -56,4 +45,4 @@ class JointCrossGradientOptions(BaseJointOptions): cross_gradient_weight_c_a: float | None = None cross_gradient_weight_c_b: float | None = None - models: JointCrossGradientModelOptions = JointCrossGradientModelOptions() + models: JointModelOptions = JointModelOptions() diff --git a/simpeg_drivers/joint/joint_petrophysics/options.py b/simpeg_drivers/joint/joint_petrophysics/options.py index d51e6d06..65251923 100644 --- a/simpeg_drivers/joint/joint_petrophysics/options.py +++ b/simpeg_drivers/joint/joint_petrophysics/options.py @@ -18,18 +18,17 @@ from geoh5py.objects import Octree from simpeg_drivers import assets_path -from simpeg_drivers.joint.options import BaseJointOptions +from simpeg_drivers.joint.options import BaseJointOptions, JointModelOptions from simpeg_drivers.options import ModelOptions -class JointPetrophysicsModelOptions(ModelOptions): +class JointPetrophysicsModelOptions(JointModelOptions): """ Model options with petrophysics reference model. :param petrophysical: The reference geology data. """ - starting_model: None = None petrophysical_model: ReferencedData diff --git a/simpeg_drivers/joint/options.py b/simpeg_drivers/joint/options.py index 2a22f4b9..9855eb00 100644 --- a/simpeg_drivers/joint/options.py +++ b/simpeg_drivers/joint/options.py @@ -11,7 +11,8 @@ from __future__ import annotations -from geoh5py.groups import SimPEGGroup +from geoh5py.data import FloatData +from geoh5py.groups import PropertyGroup, SimPEGGroup from pydantic import ConfigDict from simpeg_drivers.options import ( @@ -24,6 +25,32 @@ ) +class JointModelOptions(ModelOptions): + """ + Model options with petrophysics reference model. + + :param petrophysical: The reference geology data. + """ + + starting_model: None = None + reference_model: None = None + lower_bound: float | FloatData | None = None + upper_bound: float | FloatData | None = None + + # Model values for regularization + alpha_s: float | FloatData | None | None = None + length_scale_x: float | FloatData | None = None + length_scale_y: float | FloatData | None = None + length_scale_z: float | FloatData | None = None + gradient_rotation: PropertyGroup | None = None + + # Model values for IRLS + s_norm: float | FloatData | None = None + x_norm: float | FloatData | None = None + y_norm: float | FloatData | None = None + z_norm: float | FloatData | None = None + + class BaseJointOptions(CoreOptions): """ Base Joint Options. @@ -39,7 +66,7 @@ class BaseJointOptions(CoreOptions): model_config = ConfigDict(frozen=False) forward_only: bool = False - physical_property: str = "" + physical_property: str | None = "" group_a: SimPEGGroup group_a_multiplier: float = 1.0 From 0df45744f8cb3d8af60e5d28e60e231d431bf7c5 Mon Sep 17 00:00:00 2001 From: dominiquef Date: Thu, 12 Jun 2025 13:08:06 -0700 Subject: [PATCH 2/9] Update ui.json --- .../uijson/direct_current_2d_forward.ui.json | 1 - .../uijson/direct_current_2d_inversion.ui.json | 1 - .../uijson/direct_current_batch2d_forward.ui.json | 1 - .../uijson/induced_polarization_2d_forward.ui.json | 1 - .../uijson/induced_polarization_batch2d_forward.ui.json | 1 - .../uijson/induced_polarization_batch2d_inversion.ui.json | 1 - .../uijson/joint_cross_gradient_inversion.ui.json | 2 -- .../uijson/joint_petrophysics_inversion.ui.json | 7 ++++--- .../uijson/joint_surveys_inversion.ui.json | 2 -- 9 files changed, 4 insertions(+), 13 deletions(-) diff --git a/simpeg_drivers-assets/uijson/direct_current_2d_forward.ui.json b/simpeg_drivers-assets/uijson/direct_current_2d_forward.ui.json index b46df77d..44831191 100644 --- a/simpeg_drivers-assets/uijson/direct_current_2d_forward.ui.json +++ b/simpeg_drivers-assets/uijson/direct_current_2d_forward.ui.json @@ -194,7 +194,6 @@ "tooltip": "Direct solver to use for the forward calculations", "value": "Pardiso" }, - "tile_spatial": 1, "max_chunk_size": { "min": 0, "group": "Compute", diff --git a/simpeg_drivers-assets/uijson/direct_current_2d_inversion.ui.json b/simpeg_drivers-assets/uijson/direct_current_2d_inversion.ui.json index b7ae8fab..1ea2d1ea 100644 --- a/simpeg_drivers-assets/uijson/direct_current_2d_inversion.ui.json +++ b/simpeg_drivers-assets/uijson/direct_current_2d_inversion.ui.json @@ -529,7 +529,6 @@ "tooltip": "Direct solver to use for the forward calculations", "value": "Pardiso" }, - "tile_spatial": 1, "store_sensitivities": { "choiceList": [ "disk", diff --git a/simpeg_drivers-assets/uijson/direct_current_batch2d_forward.ui.json b/simpeg_drivers-assets/uijson/direct_current_batch2d_forward.ui.json index d9fb5357..7bc0ad60 100644 --- a/simpeg_drivers-assets/uijson/direct_current_batch2d_forward.ui.json +++ b/simpeg_drivers-assets/uijson/direct_current_batch2d_forward.ui.json @@ -177,7 +177,6 @@ "tooltip": "Direct solver to use for the forward calculations", "value": "Pardiso" }, - "tile_spatial": 1, "max_chunk_size": { "min": 0, "group": "Compute", diff --git a/simpeg_drivers-assets/uijson/induced_polarization_2d_forward.ui.json b/simpeg_drivers-assets/uijson/induced_polarization_2d_forward.ui.json index 471faf4a..7e6c3378 100644 --- a/simpeg_drivers-assets/uijson/induced_polarization_2d_forward.ui.json +++ b/simpeg_drivers-assets/uijson/induced_polarization_2d_forward.ui.json @@ -206,7 +206,6 @@ "tooltip": "Direct solver to use for the forward calculations", "value": "Pardiso" }, - "tile_spatial": 1, "max_chunk_size": { "min": 0, "group": "Compute", diff --git a/simpeg_drivers-assets/uijson/induced_polarization_batch2d_forward.ui.json b/simpeg_drivers-assets/uijson/induced_polarization_batch2d_forward.ui.json index 1cc1505a..75f28476 100644 --- a/simpeg_drivers-assets/uijson/induced_polarization_batch2d_forward.ui.json +++ b/simpeg_drivers-assets/uijson/induced_polarization_batch2d_forward.ui.json @@ -188,7 +188,6 @@ "tooltip": "Direct solver to use for the forward calculations", "value": "Pardiso" }, - "tile_spatial": 1, "max_chunk_size": { "min": 0, "group": "Compute", diff --git a/simpeg_drivers-assets/uijson/induced_polarization_batch2d_inversion.ui.json b/simpeg_drivers-assets/uijson/induced_polarization_batch2d_inversion.ui.json index f34894ce..b23883fc 100644 --- a/simpeg_drivers-assets/uijson/induced_polarization_batch2d_inversion.ui.json +++ b/simpeg_drivers-assets/uijson/induced_polarization_batch2d_inversion.ui.json @@ -523,7 +523,6 @@ "tooltip": "Direct solver to use for the forward calculations", "value": "Pardiso" }, - "tile_spatial": 1, "store_sensitivities": { "choiceList": [ "disk", diff --git a/simpeg_drivers-assets/uijson/joint_cross_gradient_inversion.ui.json b/simpeg_drivers-assets/uijson/joint_cross_gradient_inversion.ui.json index 18e8234f..dcb99252 100644 --- a/simpeg_drivers-assets/uijson/joint_cross_gradient_inversion.ui.json +++ b/simpeg_drivers-assets/uijson/joint_cross_gradient_inversion.ui.json @@ -425,8 +425,6 @@ "tooltip": "Direct solver to use for the forward calculations", "value": "Pardiso" }, - "tile_spatial": 1, - "parallelized": true, "store_sensitivities": { "choiceList": [ "disk", diff --git a/simpeg_drivers-assets/uijson/joint_petrophysics_inversion.ui.json b/simpeg_drivers-assets/uijson/joint_petrophysics_inversion.ui.json index 7ab7d224..0594414b 100644 --- a/simpeg_drivers-assets/uijson/joint_petrophysics_inversion.ui.json +++ b/simpeg_drivers-assets/uijson/joint_petrophysics_inversion.ui.json @@ -7,6 +7,9 @@ "run_command": "simpeg_drivers.driver", "geoh5": "", "monitoring_directory": "", + "inversion_type": "joint petrophysics", + "physical_property": "", + "forward_only": false, "group_a": { "main": true, "group": "Joint", @@ -74,7 +77,7 @@ "enabled": true, "tooltip": "Select a mesh containing a reference model representing homogeneous units" }, - "petrophysics_model": { + "petrophysical_model": { "association": [ "Cell" ], @@ -408,8 +411,6 @@ "tooltip": "Direct solver to use for the forward calculations", "value": "Pardiso" }, - "tile_spatial": 1, - "parallelized": true, "store_sensitivities": { "choiceList": [ "disk", diff --git a/simpeg_drivers-assets/uijson/joint_surveys_inversion.ui.json b/simpeg_drivers-assets/uijson/joint_surveys_inversion.ui.json index 2ffd200c..78f43d15 100644 --- a/simpeg_drivers-assets/uijson/joint_surveys_inversion.ui.json +++ b/simpeg_drivers-assets/uijson/joint_surveys_inversion.ui.json @@ -504,8 +504,6 @@ "tooltip": "Direct solver to use for the forward calculations", "value": "Pardiso" }, - "parallelized": true, - "tile_spatial": 1, "store_sensitivities": { "choiceList": [ "disk", From 616aa5b09ba0ce667ed10526ccc02dde05c06174 Mon Sep 17 00:00:00 2001 From: dominiquef Date: Thu, 12 Jun 2025 14:00:14 -0700 Subject: [PATCH 3/9] Change default for alpha_s on petrophysics --- simpeg_drivers/joint/joint_petrophysics/options.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/simpeg_drivers/joint/joint_petrophysics/options.py b/simpeg_drivers/joint/joint_petrophysics/options.py index 65251923..ab901db0 100644 --- a/simpeg_drivers/joint/joint_petrophysics/options.py +++ b/simpeg_drivers/joint/joint_petrophysics/options.py @@ -14,7 +14,7 @@ from pathlib import Path from typing import ClassVar -from geoh5py.data import ReferencedData +from geoh5py.data import FloatData, ReferencedData from geoh5py.objects import Octree from simpeg_drivers import assets_path @@ -29,6 +29,7 @@ class JointPetrophysicsModelOptions(JointModelOptions): :param petrophysical: The reference geology data. """ + alpha_s: float | FloatData = 1.0 petrophysical_model: ReferencedData From 188007a97749e701abaf403574e7c7b9c51722cb Mon Sep 17 00:00:00 2001 From: dominiquef Date: Mon, 16 Jun 2025 10:15:50 -0700 Subject: [PATCH 4/9] Fix UIjsons for cross and pgi --- .../joint_cross_gradient_inversion.ui.json | 66 ++++++++++++++----- .../joint_petrophysics_inversion.ui.json | 39 +++++++---- 2 files changed, 75 insertions(+), 30 deletions(-) diff --git a/simpeg_drivers-assets/uijson/joint_cross_gradient_inversion.ui.json b/simpeg_drivers-assets/uijson/joint_cross_gradient_inversion.ui.json index dcb99252..9d20419e 100644 --- a/simpeg_drivers-assets/uijson/joint_cross_gradient_inversion.ui.json +++ b/simpeg_drivers-assets/uijson/joint_cross_gradient_inversion.ui.json @@ -153,10 +153,15 @@ "alpha_s": { "min": 0.0, "group": "Regularization", - "groupOptional": true, - "label": "Smallness weight", + "label": "Reference weight", "value": 1.0, + "groupOptional": true, "tooltip": "Constant ratio compared to other weights. Larger values result in models that remain close to the reference model", + "isValue": true, + "parent": "mesh", + "association": "Cell", + "dataType": "Float", + "property": "", "enabled": false }, "length_scale_x": { @@ -165,7 +170,12 @@ "label": "X-smoothness weight", "tooltip": "Larger values relative to other smoothness weights will result in x biased smoothness", "value": 1.0, - "enabled": false + "isValue": true, + "parent": "mesh", + "association": "Cell", + "dataType": "Float", + "property": "", + "enabled": true }, "length_scale_y": { "min": 0.0, @@ -173,7 +183,12 @@ "label": "Y-smoothness weight", "tooltip": "Larger values relative to other smoothness weights will result in y biased smoothness", "value": 1.0, - "enabled": false + "isValue": true, + "parent": "mesh", + "association": "Cell", + "dataType": "Float", + "property": "", + "enabled": true }, "length_scale_z": { "min": 0.0, @@ -181,7 +196,12 @@ "label": "Z-smoothness weight", "tooltip": "Larger values relative to other smoothness weights will result in z biased smoothess", "value": 1.0, - "enabled": false + "isValue": true, + "parent": "mesh", + "association": "Cell", + "dataType": "Float", + "property": "", + "enabled": true }, "gradient_rotation": { "group": "Regularization", @@ -204,9 +224,12 @@ "group": "Regularization", "label": "Smallness norm", "value": 0.0, - "precision": 2, - "lineEdit": false, - "enabled": false + "isValue": true, + "parent": "mesh", + "association": "Cell", + "dataType": "Float", + "property": "", + "enabled": true }, "x_norm": { "min": 0.0, @@ -214,9 +237,12 @@ "group": "Regularization", "label": "X-smoothness norm", "value": 2.0, - "precision": 2, - "lineEdit": false, - "enabled": false + "isValue": true, + "parent": "mesh", + "association": "Cell", + "dataType": "Float", + "property": "", + "enabled": true }, "y_norm": { "min": 0.0, @@ -224,9 +250,12 @@ "group": "Regularization", "label": "Y-smoothness norm", "value": 2.0, - "precision": 2, - "lineEdit": false, - "enabled": false + "isValue": true, + "parent": "mesh", + "association": "Cell", + "dataType": "Float", + "property": "", + "enabled": true }, "z_norm": { "min": 0.0, @@ -234,9 +263,12 @@ "group": "Regularization", "label": "Z-smoothness norm", "value": 2.0, - "precision": 2, - "lineEdit": false, - "enabled": false + "isValue": true, + "parent": "mesh", + "association": "Cell", + "dataType": "Float", + "property": "", + "enabled": true }, "max_irls_iterations": { "min": 0, diff --git a/simpeg_drivers-assets/uijson/joint_petrophysics_inversion.ui.json b/simpeg_drivers-assets/uijson/joint_petrophysics_inversion.ui.json index 0594414b..09dbf1d9 100644 --- a/simpeg_drivers-assets/uijson/joint_petrophysics_inversion.ui.json +++ b/simpeg_drivers-assets/uijson/joint_petrophysics_inversion.ui.json @@ -144,7 +144,7 @@ "alpha_s": { "min": 0.0, "group": "Petrophysical model", - "label": "Reference weight", + "label": "Weight", "value": 1.0, "tooltip": "Constant ratio compared to other weights. Larger values result in models that remain close to the reference model" }, @@ -190,9 +190,13 @@ "group": "Regularization", "label": "Smallness norm", "value": 0.0, - "precision": 2, - "lineEdit": false, - "enabled": false + "isValue": true, + "parent": "mesh", + "association": "Cell", + "dataType": "Float", + "property": "", + "enabled": true, + "visible": false }, "x_norm": { "min": 0.0, @@ -200,9 +204,12 @@ "group": "Regularization", "label": "X-smoothness norm", "value": 2.0, - "precision": 2, - "lineEdit": false, - "enabled": false + "isValue": true, + "parent": "mesh", + "association": "Cell", + "dataType": "Float", + "property": "", + "enabled": true }, "y_norm": { "min": 0.0, @@ -210,9 +217,12 @@ "group": "Regularization", "label": "Y-smoothness norm", "value": 2.0, - "precision": 2, - "lineEdit": false, - "enabled": false + "isValue": true, + "parent": "mesh", + "association": "Cell", + "dataType": "Float", + "property": "", + "enabled": true }, "z_norm": { "min": 0.0, @@ -220,9 +230,12 @@ "group": "Regularization", "label": "Z-smoothness norm", "value": 2.0, - "precision": 2, - "lineEdit": false, - "enabled": false + "isValue": true, + "parent": "mesh", + "association": "Cell", + "dataType": "Float", + "property": "", + "enabled": true }, "max_irls_iterations": { "min": 0, From 39991cdecbf5dd09a47f3d6454a03a9b47fdc633 Mon Sep 17 00:00:00 2001 From: dominiquef Date: Tue, 17 Jun 2025 15:44:06 -0700 Subject: [PATCH 5/9] [TEST] Fix asssignemnt on rotated gradients to global mesh --- tests/run_tests/driver_joint_pgi_homogeneous_test.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/tests/run_tests/driver_joint_pgi_homogeneous_test.py b/tests/run_tests/driver_joint_pgi_homogeneous_test.py index e1cfe7eb..6431556f 100644 --- a/tests/run_tests/driver_joint_pgi_homogeneous_test.py +++ b/tests/run_tests/driver_joint_pgi_homogeneous_test.py @@ -127,6 +127,7 @@ def test_homogeneous_run( orig_data = [] petrophysics = None gradient_rotation = None + mesh = None for group_name in [ "Gravity Forward", "Magnetic Vector Forward", @@ -159,17 +160,17 @@ def test_homogeneous_run( } } ) - dip, direction = mesh.add_data( + dip, direction = global_mesh.add_data( { - "dip": {"values": np.zeros(mesh.n_cells)}, - "direction": {"values": np.zeros(mesh.n_cells)}, + "dip": {"values": np.zeros(global_mesh.n_cells)}, + "direction": {"values": np.zeros(global_mesh.n_cells)}, } ) gradient_rotation = PropertyGroup( name="gradient_rotations", property_group_type=GroupTypeEnum.DIPDIR, properties=[dip, direction], - parent=mesh, + parent=global_mesh, ) data = None From c6e852a0302be53a092fe346f179954ec419a26f Mon Sep 17 00:00:00 2001 From: dominiquef Date: Tue, 17 Jun 2025 15:45:45 -0700 Subject: [PATCH 6/9] Move weight on petro model to main --- .../uijson/joint_petrophysics_inversion.ui.json | 1 + 1 file changed, 1 insertion(+) diff --git a/simpeg_drivers-assets/uijson/joint_petrophysics_inversion.ui.json b/simpeg_drivers-assets/uijson/joint_petrophysics_inversion.ui.json index 09dbf1d9..683b3c0c 100644 --- a/simpeg_drivers-assets/uijson/joint_petrophysics_inversion.ui.json +++ b/simpeg_drivers-assets/uijson/joint_petrophysics_inversion.ui.json @@ -142,6 +142,7 @@ "value": "" }, "alpha_s": { + "main": true, "min": 0.0, "group": "Petrophysical model", "label": "Weight", From b25732b13d02bdef9b6a7950b389ef3effdf83c1 Mon Sep 17 00:00:00 2001 From: dominiquef Date: Wed, 18 Jun 2025 17:01:04 -0700 Subject: [PATCH 7/9] Re-lock --- .../py-3.10-linux-64-dev.conda.lock.yml | 36 +-- environments/py-3.10-linux-64.conda.lock.yml | 28 +- .../py-3.10-win-64-dev.conda.lock.yml | 32 +-- environments/py-3.10-win-64.conda.lock.yml | 24 +- .../py-3.11-linux-64-dev.conda.lock.yml | 36 +-- environments/py-3.11-linux-64.conda.lock.yml | 28 +- .../py-3.11-win-64-dev.conda.lock.yml | 32 +-- environments/py-3.11-win-64.conda.lock.yml | 24 +- .../py-3.12-linux-64-dev.conda.lock.yml | 36 +-- environments/py-3.12-linux-64.conda.lock.yml | 28 +- .../py-3.12-win-64-dev.conda.lock.yml | 32 +-- environments/py-3.12-win-64.conda.lock.yml | 24 +- py-3.10.conda-lock.yml | 268 +++++++++--------- py-3.11.conda-lock.yml | 268 +++++++++--------- py-3.12.conda-lock.yml | 268 +++++++++--------- 15 files changed, 585 insertions(+), 579 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 ae1cc0ce..9f739f2b 100644 --- a/environments/py-3.10-linux-64-dev.conda.lock.yml +++ b/environments/py-3.10-linux-64-dev.conda.lock.yml @@ -29,10 +29,10 @@ dependencies: - brotli-python=1.1.0=py310hf71b8c6_3 - bzip2=1.0.8=h4bc722e_7 - c-ares=1.34.5=hb9d3cd8_0 - - ca-certificates=2025.4.26=hbd8a1cb_0 + - ca-certificates=2025.6.15=hbd8a1cb_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2025.4.26=pyhd8ed1ab_0 + - certifi=2025.6.15=pyhd8ed1ab_0 - cffi=1.17.1=py310h8deb56e_0 - charset-normalizer=3.4.2=pyhd8ed1ab_0 - click=8.2.1=pyh707e725_0 @@ -40,7 +40,7 @@ dependencies: - colorama=0.4.6=pyhd8ed1ab_1 - comm=0.2.2=pyhd8ed1ab_1 - contourpy=1.3.2=py310h3788b33_0 - - coverage=7.8.2=py310h89163eb_0 + - coverage=7.9.1=py310h89163eb_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py310ha75aee5_0 - dask-core=2025.3.0=pyhd8ed1ab_0 @@ -55,7 +55,7 @@ dependencies: - exceptiongroup=1.3.0=pyhd8ed1ab_0 - executing=2.2.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.58.2=py310h89163eb_0 + - fonttools=4.58.4=py310h89163eb_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.13.3=ha770c72_1 - fsspec=2025.5.1=pyhd8ed1ab_0 @@ -108,9 +108,9 @@ dependencies: - krb5=1.21.3=h659f571_0 - latexcodec=2.0.1=pyh9f0ad1d_0 - lcms2=2.17=h717163a_0 - - ld_impl_linux-64=2.43=h712a8e2_4 + - ld_impl_linux-64=2.43=h1423503_5 - lerc=4.0.0=h0aef613_1 - - libaec=1.1.3=h59595ed_0 + - libaec=1.1.4=h3f801dc_0 - libblas=3.9.0=31_hfdb39a5_mkl - libbrotlicommon=1.1.0=hb9d3cd8_3 - libbrotlidec=1.1.0=hb9d3cd8_3 @@ -135,8 +135,8 @@ dependencies: - liblapack=3.9.0=31_hc41d3b0_mkl - liblzma=5.8.1=hb9d3cd8_2 - libnghttp2=1.64.0=h161d5f1_0 - - libnsl=2.0.1=hd590300_0 - - libpng=1.6.47=h943b412_0 + - libnsl=2.0.1=hb9d3cd8_1 + - libpng=1.6.49=h943b412_0 - libscotch=7.0.6=hea33c07_1 - libsodium=1.0.20=h4ab18f5_0 - libsqlite=3.50.1=hee588c1_0 @@ -151,7 +151,7 @@ dependencies: - libxml2=2.13.8=h4bc477f_0 - libzlib=1.3.1=hb9d3cd8_2 - linkify-it-py=2.0.3=pyhd8ed1ab_1 - - llvm-openmp=20.1.6=h024ca30_0 + - llvm-openmp=20.1.7=h024ca30_0 - locket=1.0.0=pyhd8ed1ab_0 - markdown-it-py=2.2.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py310h89163eb_1 @@ -163,10 +163,10 @@ dependencies: - metis=5.1.0=hd0bcaf9_1007 - mistune=3.1.3=pyh29332c3_0 - mkl=2024.2.2=ha957f24_16 - - msgpack-python=1.1.0=py310h3788b33_0 + - msgpack-python=1.1.1=py310h3788b33_0 - mumps-include=5.7.3=h82cca05_10 - mumps-seq=5.7.3=h06cbf8f_10 - - munkres=1.1.4=pyh9f0ad1d_0 + - munkres=1.1.4=pyhd8ed1ab_1 - myst-nb=1.2.0=pyh29332c3_0 - myst-parser=1.0.0=pyhd8ed1ab_0 - nbclient=0.10.2=pyhd8ed1ab_0 @@ -205,7 +205,7 @@ dependencies: - pybtex=0.24.0=pyhd8ed1ab_3 - pybtex-docutils=1.0.3=py310hff52083_2 - pycparser=2.22=pyh29332c3_1 - - pydantic=2.11.4=pyh3cfb1c2_0 + - pydantic=2.11.7=pyh3cfb1c2_0 - pydantic-core=2.33.2=py310hbcd0ec0_0 - pydata-sphinx-theme=0.15.4=pyhd8ed1ab_0 - pydiso=0.1.2=py310h69a6472_0 @@ -214,8 +214,8 @@ dependencies: - pymatsolver=0.3.1=pyh48887ae_201 - pyparsing=3.2.3=pyhd8ed1ab_1 - pysocks=1.7.1=pyha55dd90_7 - - pytest=8.4.0=pyhd8ed1ab_0 - - pytest-cov=6.1.1=pyhd8ed1ab_0 + - pytest=8.4.1=pyhd8ed1ab_0 + - pytest-cov=6.2.1=pyhd8ed1ab_0 - python=3.10.18=hd6af730_0_cpython - python-dateutil=2.9.0.post0=pyhff2d567_1 - python-fastjsonschema=2.21.1=pyhd8ed1ab_0 @@ -225,7 +225,7 @@ dependencies: - python_abi=3.10=7_cp310 - pytz=2025.2=pyhd8ed1ab_0 - pyyaml=6.0.2=py310h89163eb_2 - - pyzmq=26.4.0=py310h71f11fc_0 + - pyzmq=27.0.0=py310h71f11fc_0 - readline=8.2=h8c095d6_2 - readthedocs-sphinx-ext=2.2.5=pyhd8ed1ab_1 - referencing=0.36.2=pyh29332c3_0 @@ -284,7 +284,7 @@ dependencies: - uc-micro-py=1.0.3=pyhd8ed1ab_1 - unicodedata2=16.0.0=py310ha75aee5_0 - uri-template=1.3.0=pyhd8ed1ab_1 - - urllib3=2.4.0=pyhd8ed1ab_0 + - urllib3=2.5.0=pyhd8ed1ab_0 - wcwidth=0.2.13=pyhd8ed1ab_1 - webcolors=24.11.1=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_3 @@ -302,8 +302,8 @@ dependencies: - zstandard=0.23.0=py310ha75aee5_2 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@8d46ccb686e4206683862ec803fc709b26271cd8 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@585c89094e3eff35df10d3076964bf154b24d575 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 diff --git a/environments/py-3.10-linux-64.conda.lock.yml b/environments/py-3.10-linux-64.conda.lock.yml index 702e8c21..60ce0d5f 100644 --- a/environments/py-3.10-linux-64.conda.lock.yml +++ b/environments/py-3.10-linux-64.conda.lock.yml @@ -15,10 +15,10 @@ dependencies: - brotli-python=1.1.0=py310hf71b8c6_3 - bzip2=1.0.8=h4bc722e_7 - c-ares=1.34.5=hb9d3cd8_0 - - ca-certificates=2025.4.26=hbd8a1cb_0 + - ca-certificates=2025.6.15=hbd8a1cb_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2025.4.26=pyhd8ed1ab_0 + - certifi=2025.6.15=pyhd8ed1ab_0 - cffi=1.17.1=py310h8deb56e_0 - click=8.2.1=pyh707e725_0 - cloudpickle=3.1.1=pyhd8ed1ab_0 @@ -30,7 +30,7 @@ dependencies: - discretize=0.11.3=py310ha2bacc8_0 - distributed=2025.3.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.58.2=py310h89163eb_0 + - fonttools=4.58.4=py310h89163eb_0 - freetype=2.13.3=ha770c72_1 - fsspec=2025.5.1=pyhd8ed1ab_0 - geoana=0.7.2=py310ha2bacc8_0 @@ -47,9 +47,9 @@ dependencies: - kiwisolver=1.4.7=py310h3788b33_0 - krb5=1.21.3=h659f571_0 - lcms2=2.17=h717163a_0 - - ld_impl_linux-64=2.43=h712a8e2_4 + - ld_impl_linux-64=2.43=h1423503_5 - lerc=4.0.0=h0aef613_1 - - libaec=1.1.3=h59595ed_0 + - libaec=1.1.4=h3f801dc_0 - libblas=3.9.0=31_hfdb39a5_mkl - libbrotlicommon=1.1.0=hb9d3cd8_3 - libbrotlidec=1.1.0=hb9d3cd8_3 @@ -74,8 +74,8 @@ dependencies: - liblapack=3.9.0=31_hc41d3b0_mkl - liblzma=5.8.1=hb9d3cd8_2 - libnghttp2=1.64.0=h161d5f1_0 - - libnsl=2.0.1=hd590300_0 - - libpng=1.6.47=h943b412_0 + - libnsl=2.0.1=hb9d3cd8_1 + - libpng=1.6.49=h943b412_0 - libscotch=7.0.6=hea33c07_1 - libsqlite=3.50.1=hee588c1_0 - libssh2=1.11.1=hcf80075_0 @@ -88,16 +88,16 @@ dependencies: - libxcrypt=4.4.36=hd590300_1 - libxml2=2.13.8=h4bc477f_0 - libzlib=1.3.1=hb9d3cd8_2 - - llvm-openmp=20.1.6=h024ca30_0 + - llvm-openmp=20.1.7=h024ca30_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py310h89163eb_1 - matplotlib-base=3.8.4=py310hef631a5_2 - metis=5.1.0=hd0bcaf9_1007 - mkl=2024.2.2=ha957f24_16 - - msgpack-python=1.1.0=py310h3788b33_0 + - msgpack-python=1.1.1=py310h3788b33_0 - mumps-include=5.7.3=h82cca05_10 - mumps-seq=5.7.3=h06cbf8f_10 - - munkres=1.1.4=pyh9f0ad1d_0 + - munkres=1.1.4=pyhd8ed1ab_1 - ncurses=6.5=h2d0b736_3 - numcodecs=0.13.1=py310h5eaa309_0 - numpy=1.26.4=py310hb13e2d6_0 @@ -111,7 +111,7 @@ dependencies: - psutil=7.0.0=py310ha75aee5_0 - pthread-stubs=0.4=hb9d3cd8_1002 - pycparser=2.22=pyh29332c3_1 - - pydantic=2.11.4=pyh3cfb1c2_0 + - pydantic=2.11.7=pyh3cfb1c2_0 - pydantic-core=2.33.2=py310hbcd0ec0_0 - pydiso=0.1.2=py310h69a6472_0 - pymatsolver=0.3.1=pyh48887ae_201 @@ -142,7 +142,7 @@ dependencies: - typing_extensions=4.14.0=pyhe01879c_0 - tzdata=2025b=h78e105d_0 - unicodedata2=16.0.0=py310ha75aee5_0 - - urllib3=2.4.0=pyhd8ed1ab_0 + - urllib3=2.5.0=pyhd8ed1ab_0 - wheel=0.45.1=pyhd8ed1ab_1 - xorg-libxau=1.0.12=hb9d3cd8_0 - xorg-libxdmcp=1.1.5=hb9d3cd8_0 @@ -154,8 +154,8 @@ dependencies: - zstandard=0.23.0=py310ha75aee5_2 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@8d46ccb686e4206683862ec803fc709b26271cd8 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@585c89094e3eff35df10d3076964bf154b24d575 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 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 77493fd5..cce84f40 100644 --- a/environments/py-3.10-win-64-dev.conda.lock.yml +++ b/environments/py-3.10-win-64-dev.conda.lock.yml @@ -28,10 +28,10 @@ dependencies: - brotli-bin=1.1.0=h2466b09_3 - brotli-python=1.1.0=py310h9e98ed7_3 - bzip2=1.0.8=h2466b09_7 - - ca-certificates=2025.4.26=h4c7d964_0 + - ca-certificates=2025.6.15=h4c7d964_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2025.4.26=pyhd8ed1ab_0 + - certifi=2025.6.15=pyhd8ed1ab_0 - cffi=1.17.1=py310ha8f682b_0 - charset-normalizer=3.4.2=pyhd8ed1ab_0 - click=8.2.1=pyh7428d3b_0 @@ -39,7 +39,7 @@ dependencies: - colorama=0.4.6=pyhd8ed1ab_1 - comm=0.2.2=pyhd8ed1ab_1 - contourpy=1.3.2=py310hc19bc0b_0 - - coverage=7.8.2=py310h38315fa_0 + - coverage=7.9.1=py310h38315fa_0 - cpython=3.10.18=py310hd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py310ha8f682b_0 @@ -55,7 +55,7 @@ dependencies: - exceptiongroup=1.3.0=pyhd8ed1ab_0 - executing=2.2.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.58.2=py310h38315fa_0 + - fonttools=4.58.4=py310h38315fa_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.13.3=h57928b3_1 - fsspec=2025.5.1=pyhd8ed1ab_0 @@ -108,7 +108,7 @@ dependencies: - latexcodec=2.0.1=pyh9f0ad1d_0 - lcms2=2.17=hbcf6048_0 - lerc=4.0.0=h6470a55_1 - - libaec=1.1.3=h63175ca_0 + - libaec=1.1.4=h20038f6_0 - libblas=3.9.0=31_h641d27c_mkl - libbrotlicommon=1.1.0=h2466b09_3 - libbrotlidec=1.1.0=h2466b09_3 @@ -128,7 +128,7 @@ dependencies: - libjpeg-turbo=3.1.0=h2466b09_0 - liblapack=3.9.0=31_h1aa476e_mkl - liblzma=5.8.1=h2466b09_2 - - libpng=1.6.47=h7a4582a_0 + - libpng=1.6.49=h7a4582a_0 - libsodium=1.0.20=hc70643c_0 - libsqlite=3.50.1=h67fdade_0 - libssh2=1.11.1=h9aa295b_0 @@ -139,7 +139,7 @@ dependencies: - libxml2=2.13.8=h442d1da_0 - libzlib=1.3.1=h2466b09_2 - linkify-it-py=2.0.3=pyhd8ed1ab_1 - - llvm-openmp=20.1.6=h30eaf37_0 + - llvm-openmp=20.1.7=h30eaf37_0 - locket=1.0.0=pyhd8ed1ab_0 - markdown-it-py=2.2.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py310h38315fa_1 @@ -150,9 +150,9 @@ dependencies: - mdurl=0.1.2=pyhd8ed1ab_1 - mistune=3.1.3=pyh29332c3_0 - mkl=2024.2.2=h66d3029_15 - - msgpack-python=1.1.0=py310hc19bc0b_0 + - msgpack-python=1.1.1=py310hc19bc0b_0 - mumps-seq=5.7.3=hbaa6519_10 - - munkres=1.1.4=pyh9f0ad1d_0 + - munkres=1.1.4=pyhd8ed1ab_1 - myst-nb=1.2.0=pyh29332c3_0 - myst-parser=1.0.0=pyhd8ed1ab_0 - nbclient=0.10.2=pyhd8ed1ab_0 @@ -188,7 +188,7 @@ dependencies: - pybtex=0.24.0=pyhd8ed1ab_3 - pybtex-docutils=1.0.3=py310h5588dad_2 - pycparser=2.22=pyh29332c3_1 - - pydantic=2.11.4=pyh3cfb1c2_0 + - pydantic=2.11.7=pyh3cfb1c2_0 - pydantic-core=2.33.2=py310hed05c55_0 - pydata-sphinx-theme=0.15.4=pyhd8ed1ab_0 - pydiso=0.1.2=py310h8f92c26_0 @@ -197,8 +197,8 @@ dependencies: - pymatsolver=0.3.1=pyh48887ae_201 - pyparsing=3.2.3=pyhd8ed1ab_1 - pysocks=1.7.1=pyh09c184e_7 - - pytest=8.4.0=pyhd8ed1ab_0 - - pytest-cov=6.1.1=pyhd8ed1ab_0 + - pytest=8.4.1=pyhd8ed1ab_0 + - pytest-cov=6.2.1=pyhd8ed1ab_0 - python=3.10.18=h8c5b53a_0_cpython - python-dateutil=2.9.0.post0=pyhff2d567_1 - python-fastjsonschema=2.21.1=pyhd8ed1ab_0 @@ -210,7 +210,7 @@ dependencies: - pywin32=307=py310h9e98ed7_3 - pywinpty=2.0.15=py310h9e98ed7_0 - pyyaml=6.0.2=py310h38315fa_2 - - pyzmq=26.4.0=py310h656833d_0 + - pyzmq=27.0.0=py310h656833d_0 - readthedocs-sphinx-ext=2.2.5=pyhd8ed1ab_1 - referencing=0.36.2=pyh29332c3_0 - requests=2.32.4=pyhd8ed1ab_0 @@ -269,7 +269,7 @@ dependencies: - ucrt=10.0.22621.0=h57928b3_1 - unicodedata2=16.0.0=py310ha8f682b_0 - uri-template=1.3.0=pyhd8ed1ab_1 - - urllib3=2.4.0=pyhd8ed1ab_0 + - urllib3=2.5.0=pyhd8ed1ab_0 - vc=14.3=h2b53caa_26 - vc14_runtime=14.42.34438=hfd919c2_26 - vs2015_runtime=14.42.34438=h7142326_26 @@ -292,8 +292,8 @@ dependencies: - zstandard=0.23.0=py310ha8f682b_2 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@8d46ccb686e4206683862ec803fc709b26271cd8 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@585c89094e3eff35df10d3076964bf154b24d575 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 diff --git a/environments/py-3.10-win-64.conda.lock.yml b/environments/py-3.10-win-64.conda.lock.yml index 41323b48..fb1d30f7 100644 --- a/environments/py-3.10-win-64.conda.lock.yml +++ b/environments/py-3.10-win-64.conda.lock.yml @@ -14,10 +14,10 @@ dependencies: - brotli-bin=1.1.0=h2466b09_3 - brotli-python=1.1.0=py310h9e98ed7_3 - bzip2=1.0.8=h2466b09_7 - - ca-certificates=2025.4.26=h4c7d964_0 + - ca-certificates=2025.6.15=h4c7d964_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2025.4.26=pyhd8ed1ab_0 + - certifi=2025.6.15=pyhd8ed1ab_0 - cffi=1.17.1=py310ha8f682b_0 - click=8.2.1=pyh7428d3b_0 - cloudpickle=3.1.1=pyhd8ed1ab_0 @@ -29,7 +29,7 @@ dependencies: - discretize=0.11.3=py310h3e8ed56_0 - distributed=2025.3.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.58.2=py310h38315fa_0 + - fonttools=4.58.4=py310h38315fa_0 - freetype=2.13.3=h57928b3_1 - fsspec=2025.5.1=pyhd8ed1ab_0 - geoana=0.7.2=py310h3e8ed56_0 @@ -46,7 +46,7 @@ dependencies: - krb5=1.21.3=hdf4eb48_0 - lcms2=2.17=hbcf6048_0 - lerc=4.0.0=h6470a55_1 - - libaec=1.1.3=h63175ca_0 + - libaec=1.1.4=h20038f6_0 - libblas=3.9.0=31_h641d27c_mkl - libbrotlicommon=1.1.0=h2466b09_3 - libbrotlidec=1.1.0=h2466b09_3 @@ -66,7 +66,7 @@ dependencies: - libjpeg-turbo=3.1.0=h2466b09_0 - liblapack=3.9.0=31_h1aa476e_mkl - liblzma=5.8.1=h2466b09_2 - - libpng=1.6.47=h7a4582a_0 + - libpng=1.6.49=h7a4582a_0 - libsqlite=3.50.1=h67fdade_0 - libssh2=1.11.1=h9aa295b_0 - libtiff=4.7.0=h05922d8_5 @@ -75,14 +75,14 @@ dependencies: - libxcb=1.17.0=h0e4246c_0 - libxml2=2.13.8=h442d1da_0 - libzlib=1.3.1=h2466b09_2 - - llvm-openmp=20.1.6=h30eaf37_0 + - llvm-openmp=20.1.7=h30eaf37_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py310h38315fa_1 - matplotlib-base=3.8.4=py310hadb10a8_2 - mkl=2024.2.2=h66d3029_15 - - msgpack-python=1.1.0=py310hc19bc0b_0 + - msgpack-python=1.1.1=py310hc19bc0b_0 - mumps-seq=5.7.3=hbaa6519_10 - - munkres=1.1.4=pyh9f0ad1d_0 + - munkres=1.1.4=pyhd8ed1ab_1 - numcodecs=0.13.1=py310hb4db72f_0 - numpy=1.26.4=py310hf667824_0 - openjpeg=2.5.3=h4d64b90_0 @@ -95,7 +95,7 @@ dependencies: - psutil=7.0.0=py310ha8f682b_0 - pthread-stubs=0.4=h0e40799_1002 - pycparser=2.22=pyh29332c3_1 - - pydantic=2.11.4=pyh3cfb1c2_0 + - pydantic=2.11.7=pyh3cfb1c2_0 - pydantic-core=2.33.2=py310hed05c55_0 - pydiso=0.1.2=py310h8f92c26_0 - pymatsolver=0.3.1=pyh48887ae_201 @@ -126,7 +126,7 @@ dependencies: - tzdata=2025b=h78e105d_0 - ucrt=10.0.22621.0=h57928b3_1 - unicodedata2=16.0.0=py310ha8f682b_0 - - urllib3=2.4.0=pyhd8ed1ab_0 + - urllib3=2.5.0=pyhd8ed1ab_0 - vc=14.3=h2b53caa_26 - vc14_runtime=14.42.34438=hfd919c2_26 - vs2015_runtime=14.42.34438=h7142326_26 @@ -142,8 +142,8 @@ dependencies: - zstandard=0.23.0=py310ha8f682b_2 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@8d46ccb686e4206683862ec803fc709b26271cd8 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@585c89094e3eff35df10d3076964bf154b24d575 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 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 c550e8bc..04675743 100644 --- a/environments/py-3.11-linux-64-dev.conda.lock.yml +++ b/environments/py-3.11-linux-64-dev.conda.lock.yml @@ -29,10 +29,10 @@ dependencies: - brotli-python=1.1.0=py311hfdbb021_3 - bzip2=1.0.8=h4bc722e_7 - c-ares=1.34.5=hb9d3cd8_0 - - ca-certificates=2025.4.26=hbd8a1cb_0 + - ca-certificates=2025.6.15=hbd8a1cb_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2025.4.26=pyhd8ed1ab_0 + - certifi=2025.6.15=pyhd8ed1ab_0 - cffi=1.17.1=py311hf29c0ef_0 - charset-normalizer=3.4.2=pyhd8ed1ab_0 - click=8.2.1=pyh707e725_0 @@ -40,7 +40,7 @@ dependencies: - colorama=0.4.6=pyhd8ed1ab_1 - comm=0.2.2=pyhd8ed1ab_1 - contourpy=1.3.2=py311hd18a35c_0 - - coverage=7.8.2=py311h2dc5d0c_0 + - coverage=7.9.1=py311h2dc5d0c_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py311h9ecbd09_0 - dask-core=2025.3.0=pyhd8ed1ab_0 @@ -56,7 +56,7 @@ dependencies: - exceptiongroup=1.3.0=pyhd8ed1ab_0 - executing=2.2.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.58.2=py311h2dc5d0c_0 + - fonttools=4.58.4=py311h2dc5d0c_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.13.3=ha770c72_1 - fsspec=2025.5.1=pyhd8ed1ab_0 @@ -110,9 +110,9 @@ dependencies: - krb5=1.21.3=h659f571_0 - latexcodec=2.0.1=pyh9f0ad1d_0 - lcms2=2.17=h717163a_0 - - ld_impl_linux-64=2.43=h712a8e2_4 + - ld_impl_linux-64=2.43=h1423503_5 - lerc=4.0.0=h0aef613_1 - - libaec=1.1.3=h59595ed_0 + - libaec=1.1.4=h3f801dc_0 - libblas=3.9.0=31_hfdb39a5_mkl - libbrotlicommon=1.1.0=hb9d3cd8_3 - libbrotlidec=1.1.0=hb9d3cd8_3 @@ -137,8 +137,8 @@ dependencies: - liblapack=3.9.0=31_hc41d3b0_mkl - liblzma=5.8.1=hb9d3cd8_2 - libnghttp2=1.64.0=h161d5f1_0 - - libnsl=2.0.1=hd590300_0 - - libpng=1.6.47=h943b412_0 + - libnsl=2.0.1=hb9d3cd8_1 + - libpng=1.6.49=h943b412_0 - libscotch=7.0.6=hea33c07_1 - libsodium=1.0.20=h4ab18f5_0 - libsqlite=3.50.1=hee588c1_0 @@ -153,7 +153,7 @@ dependencies: - libxml2=2.13.8=h4bc477f_0 - libzlib=1.3.1=hb9d3cd8_2 - linkify-it-py=2.0.3=pyhd8ed1ab_1 - - llvm-openmp=20.1.6=h024ca30_0 + - llvm-openmp=20.1.7=h024ca30_0 - locket=1.0.0=pyhd8ed1ab_0 - markdown-it-py=2.2.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py311h2dc5d0c_1 @@ -165,10 +165,10 @@ dependencies: - metis=5.1.0=hd0bcaf9_1007 - mistune=3.1.3=pyh29332c3_0 - mkl=2024.2.2=ha957f24_16 - - msgpack-python=1.1.0=py311hd18a35c_0 + - msgpack-python=1.1.1=py311hd18a35c_0 - mumps-include=5.7.3=h82cca05_10 - mumps-seq=5.7.3=h06cbf8f_10 - - munkres=1.1.4=pyh9f0ad1d_0 + - munkres=1.1.4=pyhd8ed1ab_1 - myst-nb=1.2.0=pyh29332c3_0 - myst-parser=1.0.0=pyhd8ed1ab_0 - nbclient=0.10.2=pyhd8ed1ab_0 @@ -207,7 +207,7 @@ dependencies: - pybtex=0.24.0=pyhd8ed1ab_3 - pybtex-docutils=1.0.3=py311h38be061_2 - pycparser=2.22=pyh29332c3_1 - - pydantic=2.11.4=pyh3cfb1c2_0 + - pydantic=2.11.7=pyh3cfb1c2_0 - pydantic-core=2.33.2=py311hdae7d1d_0 - pydata-sphinx-theme=0.15.4=pyhd8ed1ab_0 - pydiso=0.1.2=py311h19ea254_0 @@ -216,8 +216,8 @@ dependencies: - pymatsolver=0.3.1=pyh48887ae_201 - pyparsing=3.2.3=pyhd8ed1ab_1 - pysocks=1.7.1=pyha55dd90_7 - - pytest=8.4.0=pyhd8ed1ab_0 - - pytest-cov=6.1.1=pyhd8ed1ab_0 + - pytest=8.4.1=pyhd8ed1ab_0 + - pytest-cov=6.2.1=pyhd8ed1ab_0 - python=3.11.13=h9e4cc4f_0_cpython - python-dateutil=2.9.0.post0=pyhff2d567_1 - python-fastjsonschema=2.21.1=pyhd8ed1ab_0 @@ -227,7 +227,7 @@ dependencies: - python_abi=3.11=7_cp311 - pytz=2025.2=pyhd8ed1ab_0 - pyyaml=6.0.2=py311h2dc5d0c_2 - - pyzmq=26.4.0=py311h7deb3e3_0 + - pyzmq=27.0.0=py311h7deb3e3_0 - readline=8.2=h8c095d6_2 - readthedocs-sphinx-ext=2.2.5=pyhd8ed1ab_1 - referencing=0.36.2=pyh29332c3_0 @@ -286,7 +286,7 @@ dependencies: - uc-micro-py=1.0.3=pyhd8ed1ab_1 - unicodedata2=16.0.0=py311h9ecbd09_0 - uri-template=1.3.0=pyhd8ed1ab_1 - - urllib3=2.4.0=pyhd8ed1ab_0 + - urllib3=2.5.0=pyhd8ed1ab_0 - wcwidth=0.2.13=pyhd8ed1ab_1 - webcolors=24.11.1=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_3 @@ -305,8 +305,8 @@ dependencies: - zstandard=0.23.0=py311h9ecbd09_2 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@8d46ccb686e4206683862ec803fc709b26271cd8 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@585c89094e3eff35df10d3076964bf154b24d575 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 diff --git a/environments/py-3.11-linux-64.conda.lock.yml b/environments/py-3.11-linux-64.conda.lock.yml index d9e9a7e3..aa682dc6 100644 --- a/environments/py-3.11-linux-64.conda.lock.yml +++ b/environments/py-3.11-linux-64.conda.lock.yml @@ -15,10 +15,10 @@ dependencies: - brotli-python=1.1.0=py311hfdbb021_3 - bzip2=1.0.8=h4bc722e_7 - c-ares=1.34.5=hb9d3cd8_0 - - ca-certificates=2025.4.26=hbd8a1cb_0 + - ca-certificates=2025.6.15=hbd8a1cb_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2025.4.26=pyhd8ed1ab_0 + - certifi=2025.6.15=pyhd8ed1ab_0 - cffi=1.17.1=py311hf29c0ef_0 - click=8.2.1=pyh707e725_0 - cloudpickle=3.1.1=pyhd8ed1ab_0 @@ -31,7 +31,7 @@ dependencies: - discretize=0.11.3=py311h5b7b71f_0 - distributed=2025.3.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.58.2=py311h2dc5d0c_0 + - fonttools=4.58.4=py311h2dc5d0c_0 - freetype=2.13.3=ha770c72_1 - fsspec=2025.5.1=pyhd8ed1ab_0 - geoana=0.7.2=py311h5b7b71f_0 @@ -48,9 +48,9 @@ dependencies: - kiwisolver=1.4.7=py311hd18a35c_0 - krb5=1.21.3=h659f571_0 - lcms2=2.17=h717163a_0 - - ld_impl_linux-64=2.43=h712a8e2_4 + - ld_impl_linux-64=2.43=h1423503_5 - lerc=4.0.0=h0aef613_1 - - libaec=1.1.3=h59595ed_0 + - libaec=1.1.4=h3f801dc_0 - libblas=3.9.0=31_hfdb39a5_mkl - libbrotlicommon=1.1.0=hb9d3cd8_3 - libbrotlidec=1.1.0=hb9d3cd8_3 @@ -75,8 +75,8 @@ dependencies: - liblapack=3.9.0=31_hc41d3b0_mkl - liblzma=5.8.1=hb9d3cd8_2 - libnghttp2=1.64.0=h161d5f1_0 - - libnsl=2.0.1=hd590300_0 - - libpng=1.6.47=h943b412_0 + - libnsl=2.0.1=hb9d3cd8_1 + - libpng=1.6.49=h943b412_0 - libscotch=7.0.6=hea33c07_1 - libsqlite=3.50.1=hee588c1_0 - libssh2=1.11.1=hcf80075_0 @@ -89,16 +89,16 @@ dependencies: - libxcrypt=4.4.36=hd590300_1 - libxml2=2.13.8=h4bc477f_0 - libzlib=1.3.1=hb9d3cd8_2 - - llvm-openmp=20.1.6=h024ca30_0 + - llvm-openmp=20.1.7=h024ca30_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py311h2dc5d0c_1 - matplotlib-base=3.8.4=py311ha4ca890_2 - metis=5.1.0=hd0bcaf9_1007 - mkl=2024.2.2=ha957f24_16 - - msgpack-python=1.1.0=py311hd18a35c_0 + - msgpack-python=1.1.1=py311hd18a35c_0 - mumps-include=5.7.3=h82cca05_10 - mumps-seq=5.7.3=h06cbf8f_10 - - munkres=1.1.4=pyh9f0ad1d_0 + - munkres=1.1.4=pyhd8ed1ab_1 - ncurses=6.5=h2d0b736_3 - numcodecs=0.15.1=py311h7db5c69_0 - numpy=1.26.4=py311h64a7726_0 @@ -112,7 +112,7 @@ dependencies: - psutil=7.0.0=py311h9ecbd09_0 - pthread-stubs=0.4=hb9d3cd8_1002 - pycparser=2.22=pyh29332c3_1 - - pydantic=2.11.4=pyh3cfb1c2_0 + - pydantic=2.11.7=pyh3cfb1c2_0 - pydantic-core=2.33.2=py311hdae7d1d_0 - pydiso=0.1.2=py311h19ea254_0 - pymatsolver=0.3.1=pyh48887ae_201 @@ -143,7 +143,7 @@ dependencies: - typing_extensions=4.14.0=pyhe01879c_0 - tzdata=2025b=h78e105d_0 - unicodedata2=16.0.0=py311h9ecbd09_0 - - urllib3=2.4.0=pyhd8ed1ab_0 + - urllib3=2.5.0=pyhd8ed1ab_0 - wheel=0.45.1=pyhd8ed1ab_1 - wrapt=1.17.2=py311h9ecbd09_0 - xorg-libxau=1.0.12=hb9d3cd8_0 @@ -156,8 +156,8 @@ dependencies: - zstandard=0.23.0=py311h9ecbd09_2 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@8d46ccb686e4206683862ec803fc709b26271cd8 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@585c89094e3eff35df10d3076964bf154b24d575 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 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 4a2286a8..38dc35c5 100644 --- a/environments/py-3.11-win-64-dev.conda.lock.yml +++ b/environments/py-3.11-win-64-dev.conda.lock.yml @@ -28,10 +28,10 @@ dependencies: - brotli-bin=1.1.0=h2466b09_3 - brotli-python=1.1.0=py311hda3d55a_3 - bzip2=1.0.8=h2466b09_7 - - ca-certificates=2025.4.26=h4c7d964_0 + - ca-certificates=2025.6.15=h4c7d964_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2025.4.26=pyhd8ed1ab_0 + - certifi=2025.6.15=pyhd8ed1ab_0 - cffi=1.17.1=py311he736701_0 - charset-normalizer=3.4.2=pyhd8ed1ab_0 - click=8.2.1=pyh7428d3b_0 @@ -39,7 +39,7 @@ dependencies: - colorama=0.4.6=pyhd8ed1ab_1 - comm=0.2.2=pyhd8ed1ab_1 - contourpy=1.3.2=py311h3257749_0 - - coverage=7.8.2=py311h5082efb_0 + - coverage=7.9.1=py311h5082efb_0 - cpython=3.11.13=py311hd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py311he736701_0 @@ -56,7 +56,7 @@ dependencies: - exceptiongroup=1.3.0=pyhd8ed1ab_0 - executing=2.2.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.58.2=py311h5082efb_0 + - fonttools=4.58.4=py311h5082efb_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.13.3=h57928b3_1 - fsspec=2025.5.1=pyhd8ed1ab_0 @@ -110,7 +110,7 @@ dependencies: - latexcodec=2.0.1=pyh9f0ad1d_0 - lcms2=2.17=hbcf6048_0 - lerc=4.0.0=h6470a55_1 - - libaec=1.1.3=h63175ca_0 + - libaec=1.1.4=h20038f6_0 - libblas=3.9.0=31_h641d27c_mkl - libbrotlicommon=1.1.0=h2466b09_3 - libbrotlidec=1.1.0=h2466b09_3 @@ -130,7 +130,7 @@ dependencies: - libjpeg-turbo=3.1.0=h2466b09_0 - liblapack=3.9.0=31_h1aa476e_mkl - liblzma=5.8.1=h2466b09_2 - - libpng=1.6.47=h7a4582a_0 + - libpng=1.6.49=h7a4582a_0 - libsodium=1.0.20=hc70643c_0 - libsqlite=3.50.1=h67fdade_0 - libssh2=1.11.1=h9aa295b_0 @@ -141,7 +141,7 @@ dependencies: - libxml2=2.13.8=h442d1da_0 - libzlib=1.3.1=h2466b09_2 - linkify-it-py=2.0.3=pyhd8ed1ab_1 - - llvm-openmp=20.1.6=h30eaf37_0 + - llvm-openmp=20.1.7=h30eaf37_0 - locket=1.0.0=pyhd8ed1ab_0 - markdown-it-py=2.2.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py311h5082efb_1 @@ -152,9 +152,9 @@ dependencies: - mdurl=0.1.2=pyhd8ed1ab_1 - mistune=3.1.3=pyh29332c3_0 - mkl=2024.2.2=h66d3029_15 - - msgpack-python=1.1.0=py311h3257749_0 + - msgpack-python=1.1.1=py311h3257749_0 - mumps-seq=5.7.3=hbaa6519_10 - - munkres=1.1.4=pyh9f0ad1d_0 + - munkres=1.1.4=pyhd8ed1ab_1 - myst-nb=1.2.0=pyh29332c3_0 - myst-parser=1.0.0=pyhd8ed1ab_0 - nbclient=0.10.2=pyhd8ed1ab_0 @@ -190,7 +190,7 @@ dependencies: - pybtex=0.24.0=pyhd8ed1ab_3 - pybtex-docutils=1.0.3=py311h1ea47a8_2 - pycparser=2.22=pyh29332c3_1 - - pydantic=2.11.4=pyh3cfb1c2_0 + - pydantic=2.11.7=pyh3cfb1c2_0 - pydantic-core=2.33.2=py311hc4022dc_0 - pydata-sphinx-theme=0.15.4=pyhd8ed1ab_0 - pydiso=0.1.2=py311h66870c1_0 @@ -199,8 +199,8 @@ dependencies: - pymatsolver=0.3.1=pyh48887ae_201 - pyparsing=3.2.3=pyhd8ed1ab_1 - pysocks=1.7.1=pyh09c184e_7 - - pytest=8.4.0=pyhd8ed1ab_0 - - pytest-cov=6.1.1=pyhd8ed1ab_0 + - pytest=8.4.1=pyhd8ed1ab_0 + - pytest-cov=6.2.1=pyhd8ed1ab_0 - python=3.11.13=h3f84c4b_0_cpython - python-dateutil=2.9.0.post0=pyhff2d567_1 - python-fastjsonschema=2.21.1=pyhd8ed1ab_0 @@ -212,7 +212,7 @@ dependencies: - pywin32=307=py311hda3d55a_3 - pywinpty=2.0.15=py311hda3d55a_0 - pyyaml=6.0.2=py311h5082efb_2 - - pyzmq=26.4.0=py311h484c95c_0 + - pyzmq=27.0.0=py311h484c95c_0 - readthedocs-sphinx-ext=2.2.5=pyhd8ed1ab_1 - referencing=0.36.2=pyh29332c3_0 - requests=2.32.4=pyhd8ed1ab_0 @@ -271,7 +271,7 @@ dependencies: - ucrt=10.0.22621.0=h57928b3_1 - unicodedata2=16.0.0=py311he736701_0 - uri-template=1.3.0=pyhd8ed1ab_1 - - urllib3=2.4.0=pyhd8ed1ab_0 + - urllib3=2.5.0=pyhd8ed1ab_0 - vc=14.3=h2b53caa_26 - vc14_runtime=14.42.34438=hfd919c2_26 - vs2015_runtime=14.42.34438=h7142326_26 @@ -295,8 +295,8 @@ dependencies: - zstandard=0.23.0=py311he736701_2 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@8d46ccb686e4206683862ec803fc709b26271cd8 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@585c89094e3eff35df10d3076964bf154b24d575 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 diff --git a/environments/py-3.11-win-64.conda.lock.yml b/environments/py-3.11-win-64.conda.lock.yml index 0d709ab1..9b0916a4 100644 --- a/environments/py-3.11-win-64.conda.lock.yml +++ b/environments/py-3.11-win-64.conda.lock.yml @@ -14,10 +14,10 @@ dependencies: - brotli-bin=1.1.0=h2466b09_3 - brotli-python=1.1.0=py311hda3d55a_3 - bzip2=1.0.8=h2466b09_7 - - ca-certificates=2025.4.26=h4c7d964_0 + - ca-certificates=2025.6.15=h4c7d964_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2025.4.26=pyhd8ed1ab_0 + - certifi=2025.6.15=pyhd8ed1ab_0 - cffi=1.17.1=py311he736701_0 - click=8.2.1=pyh7428d3b_0 - cloudpickle=3.1.1=pyhd8ed1ab_0 @@ -30,7 +30,7 @@ dependencies: - discretize=0.11.3=py311h9b10771_0 - distributed=2025.3.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.58.2=py311h5082efb_0 + - fonttools=4.58.4=py311h5082efb_0 - freetype=2.13.3=h57928b3_1 - fsspec=2025.5.1=pyhd8ed1ab_0 - geoana=0.7.2=py311h9b10771_0 @@ -47,7 +47,7 @@ dependencies: - krb5=1.21.3=hdf4eb48_0 - lcms2=2.17=hbcf6048_0 - lerc=4.0.0=h6470a55_1 - - libaec=1.1.3=h63175ca_0 + - libaec=1.1.4=h20038f6_0 - libblas=3.9.0=31_h641d27c_mkl - libbrotlicommon=1.1.0=h2466b09_3 - libbrotlidec=1.1.0=h2466b09_3 @@ -67,7 +67,7 @@ dependencies: - libjpeg-turbo=3.1.0=h2466b09_0 - liblapack=3.9.0=31_h1aa476e_mkl - liblzma=5.8.1=h2466b09_2 - - libpng=1.6.47=h7a4582a_0 + - libpng=1.6.49=h7a4582a_0 - libsqlite=3.50.1=h67fdade_0 - libssh2=1.11.1=h9aa295b_0 - libtiff=4.7.0=h05922d8_5 @@ -76,14 +76,14 @@ dependencies: - libxcb=1.17.0=h0e4246c_0 - libxml2=2.13.8=h442d1da_0 - libzlib=1.3.1=h2466b09_2 - - llvm-openmp=20.1.6=h30eaf37_0 + - llvm-openmp=20.1.7=h30eaf37_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py311h5082efb_1 - matplotlib-base=3.8.4=py311h9b31f6e_2 - mkl=2024.2.2=h66d3029_15 - - msgpack-python=1.1.0=py311h3257749_0 + - msgpack-python=1.1.1=py311h3257749_0 - mumps-seq=5.7.3=hbaa6519_10 - - munkres=1.1.4=pyh9f0ad1d_0 + - munkres=1.1.4=pyhd8ed1ab_1 - numcodecs=0.15.1=py311hcf9f919_0 - numpy=1.26.4=py311h0b4df5a_0 - openjpeg=2.5.3=h4d64b90_0 @@ -96,7 +96,7 @@ dependencies: - psutil=7.0.0=py311he736701_0 - pthread-stubs=0.4=h0e40799_1002 - pycparser=2.22=pyh29332c3_1 - - pydantic=2.11.4=pyh3cfb1c2_0 + - pydantic=2.11.7=pyh3cfb1c2_0 - pydantic-core=2.33.2=py311hc4022dc_0 - pydiso=0.1.2=py311h66870c1_0 - pymatsolver=0.3.1=pyh48887ae_201 @@ -127,7 +127,7 @@ dependencies: - tzdata=2025b=h78e105d_0 - ucrt=10.0.22621.0=h57928b3_1 - unicodedata2=16.0.0=py311he736701_0 - - urllib3=2.4.0=pyhd8ed1ab_0 + - urllib3=2.5.0=pyhd8ed1ab_0 - vc=14.3=h2b53caa_26 - vc14_runtime=14.42.34438=hfd919c2_26 - vs2015_runtime=14.42.34438=h7142326_26 @@ -144,8 +144,8 @@ dependencies: - zstandard=0.23.0=py311he736701_2 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@8d46ccb686e4206683862ec803fc709b26271cd8 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@585c89094e3eff35df10d3076964bf154b24d575 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 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 6ce8b051..a6cd355f 100644 --- a/environments/py-3.12-linux-64-dev.conda.lock.yml +++ b/environments/py-3.12-linux-64-dev.conda.lock.yml @@ -29,10 +29,10 @@ dependencies: - brotli-python=1.1.0=py312h2ec8cdc_3 - bzip2=1.0.8=h4bc722e_7 - c-ares=1.34.5=hb9d3cd8_0 - - ca-certificates=2025.4.26=hbd8a1cb_0 + - ca-certificates=2025.6.15=hbd8a1cb_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2025.4.26=pyhd8ed1ab_0 + - certifi=2025.6.15=pyhd8ed1ab_0 - cffi=1.17.1=py312h06ac9bb_0 - charset-normalizer=3.4.2=pyhd8ed1ab_0 - click=8.2.1=pyh707e725_0 @@ -40,7 +40,7 @@ dependencies: - colorama=0.4.6=pyhd8ed1ab_1 - comm=0.2.2=pyhd8ed1ab_1 - contourpy=1.3.2=py312h68727a3_0 - - coverage=7.8.2=py312h178313f_0 + - coverage=7.9.1=py312h178313f_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py312h66e93f0_0 - dask-core=2025.3.0=pyhd8ed1ab_0 @@ -56,7 +56,7 @@ dependencies: - exceptiongroup=1.3.0=pyhd8ed1ab_0 - executing=2.2.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.58.2=py312h178313f_0 + - fonttools=4.58.4=py312h178313f_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.13.3=ha770c72_1 - fsspec=2025.5.1=pyhd8ed1ab_0 @@ -110,9 +110,9 @@ dependencies: - krb5=1.21.3=h659f571_0 - latexcodec=2.0.1=pyh9f0ad1d_0 - lcms2=2.17=h717163a_0 - - ld_impl_linux-64=2.43=h712a8e2_4 + - ld_impl_linux-64=2.43=h1423503_5 - lerc=4.0.0=h0aef613_1 - - libaec=1.1.3=h59595ed_0 + - libaec=1.1.4=h3f801dc_0 - libblas=3.9.0=31_hfdb39a5_mkl - libbrotlicommon=1.1.0=hb9d3cd8_3 - libbrotlidec=1.1.0=hb9d3cd8_3 @@ -137,8 +137,8 @@ dependencies: - liblapack=3.9.0=31_hc41d3b0_mkl - liblzma=5.8.1=hb9d3cd8_2 - libnghttp2=1.64.0=h161d5f1_0 - - libnsl=2.0.1=hd590300_0 - - libpng=1.6.47=h943b412_0 + - libnsl=2.0.1=hb9d3cd8_1 + - libpng=1.6.49=h943b412_0 - libscotch=7.0.6=hea33c07_1 - libsodium=1.0.20=h4ab18f5_0 - libsqlite=3.50.1=hee588c1_0 @@ -153,7 +153,7 @@ dependencies: - libxml2=2.13.8=h4bc477f_0 - libzlib=1.3.1=hb9d3cd8_2 - linkify-it-py=2.0.3=pyhd8ed1ab_1 - - llvm-openmp=20.1.6=h024ca30_0 + - llvm-openmp=20.1.7=h024ca30_0 - locket=1.0.0=pyhd8ed1ab_0 - markdown-it-py=2.2.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py312h178313f_1 @@ -165,10 +165,10 @@ dependencies: - metis=5.1.0=hd0bcaf9_1007 - mistune=3.1.3=pyh29332c3_0 - mkl=2024.2.2=ha957f24_16 - - msgpack-python=1.1.0=py312h68727a3_0 + - msgpack-python=1.1.1=py312h68727a3_0 - mumps-include=5.7.3=h82cca05_10 - mumps-seq=5.7.3=h06cbf8f_10 - - munkres=1.1.4=pyh9f0ad1d_0 + - munkres=1.1.4=pyhd8ed1ab_1 - myst-nb=1.2.0=pyh29332c3_0 - myst-parser=1.0.0=pyhd8ed1ab_0 - nbclient=0.10.2=pyhd8ed1ab_0 @@ -207,7 +207,7 @@ dependencies: - pybtex=0.24.0=pyhd8ed1ab_3 - pybtex-docutils=1.0.3=py312h7900ff3_2 - pycparser=2.22=pyh29332c3_1 - - pydantic=2.11.4=pyh3cfb1c2_0 + - pydantic=2.11.7=pyh3cfb1c2_0 - pydantic-core=2.33.2=py312h680f630_0 - pydata-sphinx-theme=0.15.4=pyhd8ed1ab_0 - pydiso=0.1.2=py312h772f2df_0 @@ -216,8 +216,8 @@ dependencies: - pymatsolver=0.3.1=pyh48887ae_201 - pyparsing=3.2.3=pyhd8ed1ab_1 - pysocks=1.7.1=pyha55dd90_7 - - pytest=8.4.0=pyhd8ed1ab_0 - - pytest-cov=6.1.1=pyhd8ed1ab_0 + - pytest=8.4.1=pyhd8ed1ab_0 + - pytest-cov=6.2.1=pyhd8ed1ab_0 - python=3.12.11=h9e4cc4f_0_cpython - python-dateutil=2.9.0.post0=pyhff2d567_1 - python-fastjsonschema=2.21.1=pyhd8ed1ab_0 @@ -227,7 +227,7 @@ dependencies: - python_abi=3.12=7_cp312 - pytz=2025.2=pyhd8ed1ab_0 - pyyaml=6.0.2=py312h178313f_2 - - pyzmq=26.4.0=py312hbf22597_0 + - pyzmq=27.0.0=py312hbf22597_0 - readline=8.2=h8c095d6_2 - readthedocs-sphinx-ext=2.2.5=pyhd8ed1ab_1 - referencing=0.36.2=pyh29332c3_0 @@ -286,7 +286,7 @@ dependencies: - uc-micro-py=1.0.3=pyhd8ed1ab_1 - unicodedata2=16.0.0=py312h66e93f0_0 - uri-template=1.3.0=pyhd8ed1ab_1 - - urllib3=2.4.0=pyhd8ed1ab_0 + - urllib3=2.5.0=pyhd8ed1ab_0 - wcwidth=0.2.13=pyhd8ed1ab_1 - webcolors=24.11.1=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_3 @@ -305,8 +305,8 @@ dependencies: - zstandard=0.23.0=py312h66e93f0_2 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@8d46ccb686e4206683862ec803fc709b26271cd8 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@585c89094e3eff35df10d3076964bf154b24d575 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 diff --git a/environments/py-3.12-linux-64.conda.lock.yml b/environments/py-3.12-linux-64.conda.lock.yml index d9c84d00..c77eac25 100644 --- a/environments/py-3.12-linux-64.conda.lock.yml +++ b/environments/py-3.12-linux-64.conda.lock.yml @@ -15,10 +15,10 @@ dependencies: - brotli-python=1.1.0=py312h2ec8cdc_3 - bzip2=1.0.8=h4bc722e_7 - c-ares=1.34.5=hb9d3cd8_0 - - ca-certificates=2025.4.26=hbd8a1cb_0 + - ca-certificates=2025.6.15=hbd8a1cb_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2025.4.26=pyhd8ed1ab_0 + - certifi=2025.6.15=pyhd8ed1ab_0 - cffi=1.17.1=py312h06ac9bb_0 - click=8.2.1=pyh707e725_0 - cloudpickle=3.1.1=pyhd8ed1ab_0 @@ -31,7 +31,7 @@ dependencies: - discretize=0.11.3=py312hc39e661_0 - distributed=2025.3.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.58.2=py312h178313f_0 + - fonttools=4.58.4=py312h178313f_0 - freetype=2.13.3=ha770c72_1 - fsspec=2025.5.1=pyhd8ed1ab_0 - geoana=0.7.2=py312hc39e661_0 @@ -48,9 +48,9 @@ dependencies: - kiwisolver=1.4.8=py312h84d6215_0 - krb5=1.21.3=h659f571_0 - lcms2=2.17=h717163a_0 - - ld_impl_linux-64=2.43=h712a8e2_4 + - ld_impl_linux-64=2.43=h1423503_5 - lerc=4.0.0=h0aef613_1 - - libaec=1.1.3=h59595ed_0 + - libaec=1.1.4=h3f801dc_0 - libblas=3.9.0=31_hfdb39a5_mkl - libbrotlicommon=1.1.0=hb9d3cd8_3 - libbrotlidec=1.1.0=hb9d3cd8_3 @@ -75,8 +75,8 @@ dependencies: - liblapack=3.9.0=31_hc41d3b0_mkl - liblzma=5.8.1=hb9d3cd8_2 - libnghttp2=1.64.0=h161d5f1_0 - - libnsl=2.0.1=hd590300_0 - - libpng=1.6.47=h943b412_0 + - libnsl=2.0.1=hb9d3cd8_1 + - libpng=1.6.49=h943b412_0 - libscotch=7.0.6=hea33c07_1 - libsqlite=3.50.1=hee588c1_0 - libssh2=1.11.1=hcf80075_0 @@ -89,16 +89,16 @@ dependencies: - libxcrypt=4.4.36=hd590300_1 - libxml2=2.13.8=h4bc477f_0 - libzlib=1.3.1=hb9d3cd8_2 - - llvm-openmp=20.1.6=h024ca30_0 + - llvm-openmp=20.1.7=h024ca30_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py312h178313f_1 - matplotlib-base=3.8.4=py312h20ab3a6_2 - metis=5.1.0=hd0bcaf9_1007 - mkl=2024.2.2=ha957f24_16 - - msgpack-python=1.1.0=py312h68727a3_0 + - msgpack-python=1.1.1=py312h68727a3_0 - mumps-include=5.7.3=h82cca05_10 - mumps-seq=5.7.3=h06cbf8f_10 - - munkres=1.1.4=pyh9f0ad1d_0 + - munkres=1.1.4=pyhd8ed1ab_1 - ncurses=6.5=h2d0b736_3 - numcodecs=0.15.1=py312hf9745cd_0 - numpy=1.26.4=py312heda63a1_0 @@ -112,7 +112,7 @@ dependencies: - psutil=7.0.0=py312h66e93f0_0 - pthread-stubs=0.4=hb9d3cd8_1002 - pycparser=2.22=pyh29332c3_1 - - pydantic=2.11.4=pyh3cfb1c2_0 + - pydantic=2.11.7=pyh3cfb1c2_0 - pydantic-core=2.33.2=py312h680f630_0 - pydiso=0.1.2=py312h772f2df_0 - pymatsolver=0.3.1=pyh48887ae_201 @@ -143,7 +143,7 @@ dependencies: - typing_extensions=4.14.0=pyhe01879c_0 - tzdata=2025b=h78e105d_0 - unicodedata2=16.0.0=py312h66e93f0_0 - - urllib3=2.4.0=pyhd8ed1ab_0 + - urllib3=2.5.0=pyhd8ed1ab_0 - wheel=0.45.1=pyhd8ed1ab_1 - wrapt=1.17.2=py312h66e93f0_0 - xorg-libxau=1.0.12=hb9d3cd8_0 @@ -156,8 +156,8 @@ dependencies: - zstandard=0.23.0=py312h66e93f0_2 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@8d46ccb686e4206683862ec803fc709b26271cd8 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@585c89094e3eff35df10d3076964bf154b24d575 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 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 73237185..b9b9637f 100644 --- a/environments/py-3.12-win-64-dev.conda.lock.yml +++ b/environments/py-3.12-win-64-dev.conda.lock.yml @@ -28,10 +28,10 @@ dependencies: - brotli-bin=1.1.0=h2466b09_3 - brotli-python=1.1.0=py312h275cf98_3 - bzip2=1.0.8=h2466b09_7 - - ca-certificates=2025.4.26=h4c7d964_0 + - ca-certificates=2025.6.15=h4c7d964_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2025.4.26=pyhd8ed1ab_0 + - certifi=2025.6.15=pyhd8ed1ab_0 - cffi=1.17.1=py312h4389bb4_0 - charset-normalizer=3.4.2=pyhd8ed1ab_0 - click=8.2.1=pyh7428d3b_0 @@ -39,7 +39,7 @@ dependencies: - colorama=0.4.6=pyhd8ed1ab_1 - comm=0.2.2=pyhd8ed1ab_1 - contourpy=1.3.2=py312hd5eb7cc_0 - - coverage=7.8.2=py312h31fea79_0 + - coverage=7.9.1=py312h31fea79_0 - cpython=3.12.11=py312hd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py312h4389bb4_0 @@ -56,7 +56,7 @@ dependencies: - exceptiongroup=1.3.0=pyhd8ed1ab_0 - executing=2.2.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.58.2=py312h31fea79_0 + - fonttools=4.58.4=py312h31fea79_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.13.3=h57928b3_1 - fsspec=2025.5.1=pyhd8ed1ab_0 @@ -110,7 +110,7 @@ dependencies: - latexcodec=2.0.1=pyh9f0ad1d_0 - lcms2=2.17=hbcf6048_0 - lerc=4.0.0=h6470a55_1 - - libaec=1.1.3=h63175ca_0 + - libaec=1.1.4=h20038f6_0 - libblas=3.9.0=31_h641d27c_mkl - libbrotlicommon=1.1.0=h2466b09_3 - libbrotlidec=1.1.0=h2466b09_3 @@ -130,7 +130,7 @@ dependencies: - libjpeg-turbo=3.1.0=h2466b09_0 - liblapack=3.9.0=31_h1aa476e_mkl - liblzma=5.8.1=h2466b09_2 - - libpng=1.6.47=h7a4582a_0 + - libpng=1.6.49=h7a4582a_0 - libsodium=1.0.20=hc70643c_0 - libsqlite=3.50.1=h67fdade_0 - libssh2=1.11.1=h9aa295b_0 @@ -141,7 +141,7 @@ dependencies: - libxml2=2.13.8=h442d1da_0 - libzlib=1.3.1=h2466b09_2 - linkify-it-py=2.0.3=pyhd8ed1ab_1 - - llvm-openmp=20.1.6=h30eaf37_0 + - llvm-openmp=20.1.7=h30eaf37_0 - locket=1.0.0=pyhd8ed1ab_0 - markdown-it-py=2.2.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py312h31fea79_1 @@ -152,9 +152,9 @@ dependencies: - mdurl=0.1.2=pyhd8ed1ab_1 - mistune=3.1.3=pyh29332c3_0 - mkl=2024.2.2=h66d3029_15 - - msgpack-python=1.1.0=py312hd5eb7cc_0 + - msgpack-python=1.1.1=py312hd5eb7cc_0 - mumps-seq=5.7.3=hbaa6519_10 - - munkres=1.1.4=pyh9f0ad1d_0 + - munkres=1.1.4=pyhd8ed1ab_1 - myst-nb=1.2.0=pyh29332c3_0 - myst-parser=1.0.0=pyhd8ed1ab_0 - nbclient=0.10.2=pyhd8ed1ab_0 @@ -190,7 +190,7 @@ dependencies: - pybtex=0.24.0=pyhd8ed1ab_3 - pybtex-docutils=1.0.3=py312h2e8e312_2 - pycparser=2.22=pyh29332c3_1 - - pydantic=2.11.4=pyh3cfb1c2_0 + - pydantic=2.11.7=pyh3cfb1c2_0 - pydantic-core=2.33.2=py312h8422cdd_0 - pydata-sphinx-theme=0.15.4=pyhd8ed1ab_0 - pydiso=0.1.2=py312h01acb21_0 @@ -199,8 +199,8 @@ dependencies: - pymatsolver=0.3.1=pyh48887ae_201 - pyparsing=3.2.3=pyhd8ed1ab_1 - pysocks=1.7.1=pyh09c184e_7 - - pytest=8.4.0=pyhd8ed1ab_0 - - pytest-cov=6.1.1=pyhd8ed1ab_0 + - pytest=8.4.1=pyhd8ed1ab_0 + - pytest-cov=6.2.1=pyhd8ed1ab_0 - python=3.12.11=h3f84c4b_0_cpython - python-dateutil=2.9.0.post0=pyhff2d567_1 - python-fastjsonschema=2.21.1=pyhd8ed1ab_0 @@ -212,7 +212,7 @@ dependencies: - pywin32=307=py312h275cf98_3 - pywinpty=2.0.15=py312h275cf98_0 - pyyaml=6.0.2=py312h31fea79_2 - - pyzmq=26.4.0=py312hd7027bb_0 + - pyzmq=27.0.0=py312hd7027bb_0 - readthedocs-sphinx-ext=2.2.5=pyhd8ed1ab_1 - referencing=0.36.2=pyh29332c3_0 - requests=2.32.4=pyhd8ed1ab_0 @@ -271,7 +271,7 @@ dependencies: - ucrt=10.0.22621.0=h57928b3_1 - unicodedata2=16.0.0=py312h4389bb4_0 - uri-template=1.3.0=pyhd8ed1ab_1 - - urllib3=2.4.0=pyhd8ed1ab_0 + - urllib3=2.5.0=pyhd8ed1ab_0 - vc=14.3=h2b53caa_26 - vc14_runtime=14.42.34438=hfd919c2_26 - vs2015_runtime=14.42.34438=h7142326_26 @@ -295,8 +295,8 @@ dependencies: - zstandard=0.23.0=py312h4389bb4_2 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@8d46ccb686e4206683862ec803fc709b26271cd8 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@585c89094e3eff35df10d3076964bf154b24d575 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 diff --git a/environments/py-3.12-win-64.conda.lock.yml b/environments/py-3.12-win-64.conda.lock.yml index 58dc0ef4..2f59ccf5 100644 --- a/environments/py-3.12-win-64.conda.lock.yml +++ b/environments/py-3.12-win-64.conda.lock.yml @@ -14,10 +14,10 @@ dependencies: - brotli-bin=1.1.0=h2466b09_3 - brotli-python=1.1.0=py312h275cf98_3 - bzip2=1.0.8=h2466b09_7 - - ca-certificates=2025.4.26=h4c7d964_0 + - ca-certificates=2025.6.15=h4c7d964_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2025.4.26=pyhd8ed1ab_0 + - certifi=2025.6.15=pyhd8ed1ab_0 - cffi=1.17.1=py312h4389bb4_0 - click=8.2.1=pyh7428d3b_0 - cloudpickle=3.1.1=pyhd8ed1ab_0 @@ -30,7 +30,7 @@ dependencies: - discretize=0.11.3=py312hbaa7e33_0 - distributed=2025.3.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.58.2=py312h31fea79_0 + - fonttools=4.58.4=py312h31fea79_0 - freetype=2.13.3=h57928b3_1 - fsspec=2025.5.1=pyhd8ed1ab_0 - geoana=0.7.2=py312hbaa7e33_0 @@ -47,7 +47,7 @@ dependencies: - krb5=1.21.3=hdf4eb48_0 - lcms2=2.17=hbcf6048_0 - lerc=4.0.0=h6470a55_1 - - libaec=1.1.3=h63175ca_0 + - libaec=1.1.4=h20038f6_0 - libblas=3.9.0=31_h641d27c_mkl - libbrotlicommon=1.1.0=h2466b09_3 - libbrotlidec=1.1.0=h2466b09_3 @@ -67,7 +67,7 @@ dependencies: - libjpeg-turbo=3.1.0=h2466b09_0 - liblapack=3.9.0=31_h1aa476e_mkl - liblzma=5.8.1=h2466b09_2 - - libpng=1.6.47=h7a4582a_0 + - libpng=1.6.49=h7a4582a_0 - libsqlite=3.50.1=h67fdade_0 - libssh2=1.11.1=h9aa295b_0 - libtiff=4.7.0=h05922d8_5 @@ -76,14 +76,14 @@ dependencies: - libxcb=1.17.0=h0e4246c_0 - libxml2=2.13.8=h442d1da_0 - libzlib=1.3.1=h2466b09_2 - - llvm-openmp=20.1.6=h30eaf37_0 + - llvm-openmp=20.1.7=h30eaf37_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py312h31fea79_1 - matplotlib-base=3.8.4=py312hfee7060_2 - mkl=2024.2.2=h66d3029_15 - - msgpack-python=1.1.0=py312hd5eb7cc_0 + - msgpack-python=1.1.1=py312hd5eb7cc_0 - mumps-seq=5.7.3=hbaa6519_10 - - munkres=1.1.4=pyh9f0ad1d_0 + - munkres=1.1.4=pyhd8ed1ab_1 - numcodecs=0.15.1=py312h72972c8_0 - numpy=1.26.4=py312h8753938_0 - openjpeg=2.5.3=h4d64b90_0 @@ -96,7 +96,7 @@ dependencies: - psutil=7.0.0=py312h4389bb4_0 - pthread-stubs=0.4=h0e40799_1002 - pycparser=2.22=pyh29332c3_1 - - pydantic=2.11.4=pyh3cfb1c2_0 + - pydantic=2.11.7=pyh3cfb1c2_0 - pydantic-core=2.33.2=py312h8422cdd_0 - pydiso=0.1.2=py312h01acb21_0 - pymatsolver=0.3.1=pyh48887ae_201 @@ -127,7 +127,7 @@ dependencies: - tzdata=2025b=h78e105d_0 - ucrt=10.0.22621.0=h57928b3_1 - unicodedata2=16.0.0=py312h4389bb4_0 - - urllib3=2.4.0=pyhd8ed1ab_0 + - urllib3=2.5.0=pyhd8ed1ab_0 - vc=14.3=h2b53caa_26 - vc14_runtime=14.42.34438=hfd919c2_26 - vs2015_runtime=14.42.34438=h7142326_26 @@ -144,8 +144,8 @@ dependencies: - zstandard=0.23.0=py312h4389bb4_2 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@8d46ccb686e4206683862ec803fc709b26271cd8 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@585c89094e3eff35df10d3076964bf154b24d575 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 diff --git a/py-3.10.conda-lock.yml b/py-3.10.conda-lock.yml index 1a472f53..8db66222 100644 --- a/py-3.10.conda-lock.yml +++ b/py-3.10.conda-lock.yml @@ -662,27 +662,27 @@ package: category: main optional: false - name: ca-certificates - version: 2025.4.26 + version: 2025.6.15 manager: conda platform: linux-64 dependencies: __unix: '' - url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.4.26-hbd8a1cb_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.6.15-hbd8a1cb_0.conda hash: - md5: 95db94f75ba080a22eb623590993167b - sha256: 2a70ed95ace8a3f8a29e6cd1476a943df294a7111dfb3e152e3478c4c889b7ac + md5: 72525f07d72806e3b639ad4504c30ce5 + sha256: 7cfec9804c84844ea544d98bda1d9121672b66ff7149141b8415ca42dfcd44f6 category: main optional: false - name: ca-certificates - version: 2025.4.26 + version: 2025.6.15 manager: conda platform: win-64 dependencies: __win: '' - url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.4.26-h4c7d964_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.6.15-h4c7d964_0.conda hash: - md5: 23c7fd5062b48d8294fc7f61bf157fba - sha256: 1454f3f53a3b828d3cb68a3440cb0fa9f1cc0e3c8c26e9e023773dc19d88cc06 + md5: b01649832f7bc7ff94f8df8bd2ee6457 + sha256: 065241ba03ef3ee8200084c075cbff50955a7e711765395ff34876dbc51a6bb9 category: main optional: false - name: cached-property @@ -734,27 +734,27 @@ package: category: main optional: false - name: certifi - version: 2025.4.26 + version: 2025.6.15 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.4.26-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.6.15-pyhd8ed1ab_0.conda hash: - md5: c33eeaaa33f45031be34cda513df39b6 - sha256: 52aa837642fd851b3f7ad3b1f66afc5366d133c1d452323f786b0378a391915c + md5: 781d068df0cc2407d4db0ecfbb29225b + sha256: d71c85835813072cd6d7ce4b24be34215cd90c104785b15a5d58f4cd0cb50778 category: main optional: false - name: certifi - version: 2025.4.26 + version: 2025.6.15 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.4.26-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.6.15-pyhd8ed1ab_0.conda hash: - md5: c33eeaaa33f45031be34cda513df39b6 - sha256: 52aa837642fd851b3f7ad3b1f66afc5366d133c1d452323f786b0378a391915c + md5: 781d068df0cc2407d4db0ecfbb29225b + sha256: d71c85835813072cd6d7ce4b24be34215cd90c104785b15a5d58f4cd0cb50778 category: main optional: false - name: cffi @@ -951,7 +951,7 @@ package: category: main optional: false - name: coverage - version: 7.8.2 + version: 7.9.1 manager: conda platform: linux-64 dependencies: @@ -960,14 +960,14 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* tomli: '' - url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.8.2-py310h89163eb_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.9.1-py310h89163eb_0.conda hash: - md5: 5ca8ab35287adc83b2d1996e5c2ac14c - sha256: 1e89236cd1ea9bbfcefa62a7225486301f18711e59e44dd802825ec53630c777 + md5: 0acae6de150b85b7f3119ec88558d22a + sha256: 6464f0923860a0e5fcbba990244c022e7477df1822c11d8b523559c76a07b7d1 category: dev optional: true - name: coverage - version: 7.8.2 + version: 7.9.1 manager: conda platform: win-64 dependencies: @@ -977,10 +977,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.8.2-py310h38315fa_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.9.1-py310h38315fa_0.conda hash: - md5: 5e09090744ab0b70b2882bc415c0d5ad - sha256: 561e5fd17f164928948107550856347ba4ed5c16b50c363bf8fbd0c1f2310893 + md5: b8b10af95ba002ab90bbf61f20eaffab + sha256: a847093fb9a7b82502313a208c5338443573ee47b32dad9d38baab660494149c category: dev optional: true - name: cpython @@ -1414,7 +1414,7 @@ package: category: main optional: false - name: fonttools - version: 4.58.2 + version: 4.58.4 manager: conda platform: linux-64 dependencies: @@ -1425,14 +1425,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.58.2-py310h89163eb_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/fonttools-4.58.4-py310h89163eb_0.conda hash: - md5: 3af603de53814258a536b268ad2ae5ff - sha256: e01ccdcfcb6c6aa57fadee4475bbbf9a66fa942abc46a677a27926df851f1679 + md5: 723a77ff55b436601008d28acc982547 + sha256: 7e44c7c215fb14c6ab5f8a018fdaa1ce39d45c85c7e837e42d1adec6ce3708b0 category: main optional: false - name: fonttools - version: 4.58.2 + version: 4.58.4 manager: conda platform: win-64 dependencies: @@ -1444,10 +1444,10 @@ package: unicodedata2: '>=15.1.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/fonttools-4.58.2-py310h38315fa_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/fonttools-4.58.4-py310h38315fa_0.conda hash: - md5: b8f853b33c315e7cab172ab4303ecf06 - sha256: 85cf312fd1ebe07bae419b3b5a84fba72da077587d270046a1595ef8698177ee + md5: f7a8769f5923bebdc10acbbb41d28628 + sha256: 73c733190be8d59c7dd11c7bf1040e9585894ae7693d509f10f234675fd19ad5 category: main optional: false - name: fqdn @@ -3092,10 +3092,10 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_4.conda + url: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.43-h1423503_5.conda hash: - md5: 01f8d123c96816249efd255a31ad7712 - sha256: db73f38155d901a610b2320525b9dd3b31e4949215c870685fd92ea61b5ce472 + md5: 6dc9e1305e7d3129af4ad0dabda30e56 + sha256: dcd2b1a065bbf5c54004ddf6551c775a8eb6993c8298ca8a6b92041ed413f785 category: main optional: false - name: lerc @@ -3127,30 +3127,31 @@ package: category: main optional: false - name: libaec - version: 1.1.3 + version: 1.1.4 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://repo.prefix.dev/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=13' + libstdcxx: '>=13' + url: https://repo.prefix.dev/conda-forge/linux-64/libaec-1.1.4-h3f801dc_0.conda hash: - md5: 5e97e271911b8b2001a8b71860c32faa - sha256: 2ef420a655528bca9d269086cf33b7e90d2f54ad941b437fb1ed5eca87cee017 + md5: 01ba04e414e47f95c03d6ddd81fd37be + sha256: 410ab78fe89bc869d435de04c9ffa189598ac15bb0fe1ea8ace8fb1b860a2aa3 category: main optional: false - name: libaec - version: 1.1.3 + version: 1.1.4 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libaec-1.1.3-h63175ca_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libaec-1.1.4-h20038f6_0.conda hash: - md5: 8723000f6ffdbdaef16025f0a01b64c5 - sha256: f5c293d3cfc00f71dfdb64bd65ab53625565f8778fc2d5790575bef238976ebf + md5: 85a2bed45827d77d5b308cb2b165404f + sha256: 0be89085effce9fdcbb6aea7acdb157b18793162f68266ee0a75acf615d4929b category: main optional: false - name: libblas @@ -3744,29 +3745,30 @@ package: manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - url: https://repo.prefix.dev/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=13' + url: https://repo.prefix.dev/conda-forge/linux-64/libnsl-2.0.1-hb9d3cd8_1.conda hash: - md5: 30fd6e37fe21f86f4bd26d6ee73eeec7 - sha256: 26d77a3bb4dceeedc2a41bd688564fe71bf2d149fdcf117049970bc02ff1add6 + md5: d864d34357c3b65a4b731f78c0801dc4 + sha256: 927fe72b054277cde6cb82597d0fcf6baf127dcbce2e0a9d8925a68f1265eef5 category: main optional: false - name: libpng - version: 1.6.47 + version: 1.6.49 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libpng-1.6.47-h943b412_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libpng-1.6.49-h943b412_0.conda hash: - md5: 55199e2ae2c3651f6f9b2a447b47bdc9 - sha256: 23367d71da58c9a61c8cbd963fcffb92768d4ae5ffbef9a47cdf1f54f98c5c36 + md5: 37511c874cf3b8d0034c8d24e73c0884 + sha256: c8f5dc929ba5fcee525a66777498e03bbcbfefc05a0773e5163bb08ac5122f1a category: main optional: false - name: libpng - version: 1.6.47 + version: 1.6.49 manager: conda platform: win-64 dependencies: @@ -3774,10 +3776,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libpng-1.6.47-h7a4582a_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libpng-1.6.49-h7a4582a_0.conda hash: - md5: ad620e92b82d2948bc019e029c574ebb - sha256: e12c46ca882080d901392ae45e0e5a1c96fc3e5acd5cd1a23c2632eb7f024f26 + md5: 27269977c8f25d499727ceabc47cee3d + sha256: 8876a2d32d3538675e035b6560691471a1571835c0bcbf23816c24c460d31439 category: main optional: false - name: libscotch @@ -4132,29 +4134,29 @@ package: category: dev optional: true - name: llvm-openmp - version: 20.1.6 + version: 20.1.7 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-20.1.6-h024ca30_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-20.1.7-h024ca30_0.conda hash: - md5: e4ece7ed81e43ae97a3b58ac4230c3c5 - sha256: 43ad6a0772c0fc554d2712ae00ea788a391a40c494e9c04ec13f4aea17c95ffc + md5: b9c9b2f494533250a9eb7ece830f4422 + sha256: 10f2f6be8ba4c018e1fc741637a8d45c0e58bea96954c25e91fbe4238b7c9f60 category: main optional: false - name: llvm-openmp - version: 20.1.6 + version: 20.1.7 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-20.1.6-h30eaf37_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-20.1.7-h30eaf37_0.conda hash: - md5: b95ac67b4a85052c54268ba4b80be753 - sha256: de24f885d918455eb510da054658531bbf69a2bc5ee5945314d0451f375a881d + md5: 6fd1d310402e936aa9aecb065f21cc6b + sha256: 1820ca99e8b126b3c656ff3c527822be8348f6452edcddd91615cba285540f6c category: main optional: false - name: locket @@ -4462,7 +4464,7 @@ package: category: main optional: false - name: msgpack-python - version: 1.1.0 + version: 1.1.1 manager: conda platform: linux-64 dependencies: @@ -4471,14 +4473,14 @@ package: libstdcxx: '>=13' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://repo.prefix.dev/conda-forge/linux-64/msgpack-python-1.1.0-py310h3788b33_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/msgpack-python-1.1.1-py310h3788b33_0.conda hash: - md5: 6b586fb03d84e5bfbb1a8a3d9e2c9b60 - sha256: 73ca5f0c7d0727a57dcc3c402823ce3aa159ca075210be83078fcc485971e259 + md5: 6028c7df37691cdf6e953968646195b7 + sha256: 8069bb45b1eb11a2421ee0db76b16ae2a634a470c7a77011263b9df270645293 category: main optional: false - name: msgpack-python - version: 1.1.0 + version: 1.1.1 manager: conda platform: win-64 dependencies: @@ -4487,10 +4489,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/msgpack-python-1.1.0-py310hc19bc0b_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/msgpack-python-1.1.1-py310hc19bc0b_0.conda hash: - md5: 2cfcbd596afd76879de4824c2c24f4a2 - sha256: db5c3d5e2d28ba0e4e1633f6d52079f0e397bdb60a6f58a2fa942e88071182d2 + md5: 061803553d610adf1c4c545c71aa9a85 + sha256: 83e0bcf2f4cddc3421ad1cff30058ce7100210821b279bd3ad458bfc8c59eefe category: main optional: false - name: mumps-include @@ -4547,11 +4549,11 @@ package: manager: conda platform: linux-64 dependencies: - python: '' - url: https://repo.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 + python: '>=3.9' + url: https://repo.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyhd8ed1ab_1.conda hash: - md5: 2ba8498c1018c1e9c61eb99b973dfe19 - sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 + md5: 37293a85a0f4f77bbd9cf7aaefc62609 + sha256: d09c47c2cf456de5c09fa66d2c3c5035aa1fa228a1983a433c47b876aa16ce90 category: main optional: false - name: munkres @@ -4559,11 +4561,11 @@ package: manager: conda platform: win-64 dependencies: - python: '' - url: https://repo.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 + python: '>=3.9' + url: https://repo.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyhd8ed1ab_1.conda hash: - md5: 2ba8498c1018c1e9c61eb99b973dfe19 - sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 + md5: 37293a85a0f4f77bbd9cf7aaefc62609 + sha256: d09c47c2cf456de5c09fa66d2c3c5035aa1fa228a1983a433c47b876aa16ce90 category: main optional: false - name: myst-nb @@ -5657,7 +5659,7 @@ package: category: main optional: false - name: pydantic - version: 2.11.4 + version: 2.11.7 manager: conda platform: linux-64 dependencies: @@ -5667,14 +5669,14 @@ package: typing-extensions: '>=4.6.1' typing-inspection: '>=0.4.0' typing_extensions: '>=4.12.2' - url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.4-pyh3cfb1c2_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.7-pyh3cfb1c2_0.conda hash: - md5: 8ad3ad8db5ce2ba470c9facc37af00a9 - sha256: a522473505ac6a9c10bb304d7338459a406ba22a6d3bb1a355c1b5283553a372 + md5: 1b337e3d378cde62889bb735c024b7a2 + sha256: ee7823e8bc227f804307169870905ce062531d36c1dcf3d431acd65c6e0bd674 category: main optional: false - name: pydantic - version: 2.11.4 + version: 2.11.7 manager: conda platform: win-64 dependencies: @@ -5684,10 +5686,10 @@ package: typing-extensions: '>=4.6.1' typing-inspection: '>=0.4.0' typing_extensions: '>=4.12.2' - url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.4-pyh3cfb1c2_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.7-pyh3cfb1c2_0.conda hash: - md5: 8ad3ad8db5ce2ba470c9facc37af00a9 - sha256: a522473505ac6a9c10bb304d7338459a406ba22a6d3bb1a355c1b5283553a372 + md5: 1b337e3d378cde62889bb735c024b7a2 + sha256: ee7823e8bc227f804307169870905ce062531d36c1dcf3d431acd65c6e0bd674 category: main optional: false - name: pydantic-core @@ -5950,7 +5952,7 @@ package: category: main optional: false - name: pytest - version: 8.4.0 + version: 8.4.1 manager: conda platform: linux-64 dependencies: @@ -5962,14 +5964,14 @@ package: pygments: '>=2.7.2' python: '>=3.9' tomli: '>=1' - url: https://repo.prefix.dev/conda-forge/noarch/pytest-8.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytest-8.4.1-pyhd8ed1ab_0.conda hash: - md5: 516d31f063ce7e49ced17f105b63a1f1 - sha256: f8c5a65ff4216f7c0a9be1708be1ee1446ad678da5a01eeb2437551156e32a06 + md5: a49c2283f24696a7b30367b7346a0144 + sha256: 93e267e4ec35353e81df707938a6527d5eb55c97bf54c3b87229b69523afb59d category: dev optional: true - name: pytest - version: 8.4.0 + version: 8.4.1 manager: conda platform: win-64 dependencies: @@ -5981,14 +5983,14 @@ package: pygments: '>=2.7.2' python: '>=3.9' tomli: '>=1' - url: https://repo.prefix.dev/conda-forge/noarch/pytest-8.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytest-8.4.1-pyhd8ed1ab_0.conda hash: - md5: 516d31f063ce7e49ced17f105b63a1f1 - sha256: f8c5a65ff4216f7c0a9be1708be1ee1446ad678da5a01eeb2437551156e32a06 + md5: a49c2283f24696a7b30367b7346a0144 + sha256: 93e267e4ec35353e81df707938a6527d5eb55c97bf54c3b87229b69523afb59d category: dev optional: true - name: pytest-cov - version: 6.1.1 + version: 6.2.1 manager: conda platform: linux-64 dependencies: @@ -5996,14 +5998,14 @@ package: pytest: '>=4.6' python: '>=3.9' toml: '' - url: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-6.1.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-6.2.1-pyhd8ed1ab_0.conda hash: - md5: 1e35d8f975bc0e984a19819aa91c440a - sha256: 9961a1524f63d10bc29efdc52013ec06b0e95fb2619a250e250ff3618261d5cd + md5: ce978e1b9ed8b8d49164e90a5cdc94cd + sha256: 3a9fc07be76bc67aef355b78816b5117bfe686e7d8c6f28b45a1f89afe104761 category: dev optional: true - name: pytest-cov - version: 6.1.1 + version: 6.2.1 manager: conda platform: win-64 dependencies: @@ -6011,10 +6013,10 @@ package: pytest: '>=4.6' python: '>=3.9' toml: '' - url: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-6.1.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-6.2.1-pyhd8ed1ab_0.conda hash: - md5: 1e35d8f975bc0e984a19819aa91c440a - sha256: 9961a1524f63d10bc29efdc52013ec06b0e95fb2619a250e250ff3618261d5cd + md5: ce978e1b9ed8b8d49164e90a5cdc94cd + sha256: 3a9fc07be76bc67aef355b78816b5117bfe686e7d8c6f28b45a1f89afe104761 category: dev optional: true - name: python @@ -6318,7 +6320,7 @@ package: category: main optional: false - name: pyzmq - version: 26.4.0 + version: 27.0.0 manager: conda platform: linux-64 dependencies: @@ -6329,14 +6331,14 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* zeromq: '>=4.3.5,<4.4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/pyzmq-26.4.0-py310h71f11fc_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pyzmq-27.0.0-py310h71f11fc_0.conda hash: - md5: 4859978df0e6408e439cb6badfbb3c5d - sha256: 2c93bcd81c1dadeb9b57bc4c833b3638f518f9b960fc1a928d4670abffd25017 + md5: de862cdd8a959ac9a751fd8a5f7dc82d + sha256: dfcd2fc9c015b220da06a96886c7d7185794cb6383a75dbb90704d8a974ec2a8 category: dev optional: true - name: pyzmq - version: 26.4.0 + version: 27.0.0 manager: conda platform: win-64 dependencies: @@ -6347,10 +6349,10 @@ package: vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' zeromq: '>=4.3.5,<4.3.6.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/pyzmq-26.4.0-py310h656833d_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/pyzmq-27.0.0-py310h656833d_0.conda hash: - md5: dd340eeec5732405db972695aceb24f5 - sha256: 02657a2503ebdc5ed6d64f14f50f129d27309ded9862c214dd5cfd45ed64398c + md5: 3a89550776350a08c0763ee60a0f07dd + sha256: d3ead56c27a0aba2432343cde83aa4bc7948cf525ace92f676043c25a87b224b category: dev optional: true - name: readline @@ -7947,7 +7949,7 @@ package: category: dev optional: true - name: urllib3 - version: 2.4.0 + version: 2.5.0 manager: conda platform: linux-64 dependencies: @@ -7956,14 +7958,14 @@ package: pysocks: '>=1.5.6,<2.0,!=1.5.7' python: '>=3.9' zstandard: '>=0.18.0' - url: https://repo.prefix.dev/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/urllib3-2.5.0-pyhd8ed1ab_0.conda hash: - md5: c1e349028e0052c4eea844e94f773065 - sha256: a25403b76f7f03ca1a906e1ef0f88521edded991b9897e7fed56a3e334b3db8c + md5: 436c165519e140cb08d246a4472a9d6a + sha256: 4fb9789154bd666ca74e428d973df81087a697dbb987775bc3198d2215f240f8 category: main optional: false - name: urllib3 - version: 2.4.0 + version: 2.5.0 manager: conda platform: win-64 dependencies: @@ -7972,10 +7974,10 @@ package: pysocks: '>=1.5.6,<2.0,!=1.5.7' python: '>=3.9' zstandard: '>=0.18.0' - url: https://repo.prefix.dev/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/urllib3-2.5.0-pyhd8ed1ab_0.conda hash: - md5: c1e349028e0052c4eea844e94f773065 - sha256: a25403b76f7f03ca1a906e1ef0f88521edded991b9897e7fed56a3e334b3db8c + md5: 436c165519e140cb08d246a4472a9d6a + sha256: 4fb9789154bd666ca74e428d973df81087a697dbb987775bc3198d2215f240f8 category: main optional: false - name: vc @@ -8471,12 +8473,12 @@ package: 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@8d46ccb686e4206683862ec803fc709b26271cd8 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 hash: - sha256: 8d46ccb686e4206683862ec803fc709b26271cd8 + sha256: 91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@8d46ccb686e4206683862ec803fc709b26271cd8 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 category: main optional: false - name: geoapps-utils @@ -8488,12 +8490,12 @@ package: 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@8d46ccb686e4206683862ec803fc709b26271cd8 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 hash: - sha256: 8d46ccb686e4206683862ec803fc709b26271cd8 + sha256: 91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@8d46ccb686e4206683862ec803fc709b26271cd8 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 category: main optional: false - name: geoh5py @@ -8505,12 +8507,12 @@ 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@585c89094e3eff35df10d3076964bf154b24d575 + url: git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e hash: - sha256: 585c89094e3eff35df10d3076964bf154b24d575 + sha256: 1190a239fd7406fbe0b73169c3d8406a1aacae3e source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@585c89094e3eff35df10d3076964bf154b24d575 + url: git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e category: main optional: false - name: geoh5py @@ -8522,12 +8524,12 @@ 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@585c89094e3eff35df10d3076964bf154b24d575 + url: git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e hash: - sha256: 585c89094e3eff35df10d3076964bf154b24d575 + sha256: 1190a239fd7406fbe0b73169c3d8406a1aacae3e source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@585c89094e3eff35df10d3076964bf154b24d575 + url: git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e category: main optional: false - name: mira-simpeg diff --git a/py-3.11.conda-lock.yml b/py-3.11.conda-lock.yml index 45bd452a..87a77029 100644 --- a/py-3.11.conda-lock.yml +++ b/py-3.11.conda-lock.yml @@ -660,27 +660,27 @@ package: category: main optional: false - name: ca-certificates - version: 2025.4.26 + version: 2025.6.15 manager: conda platform: linux-64 dependencies: __unix: '' - url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.4.26-hbd8a1cb_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.6.15-hbd8a1cb_0.conda hash: - md5: 95db94f75ba080a22eb623590993167b - sha256: 2a70ed95ace8a3f8a29e6cd1476a943df294a7111dfb3e152e3478c4c889b7ac + md5: 72525f07d72806e3b639ad4504c30ce5 + sha256: 7cfec9804c84844ea544d98bda1d9121672b66ff7149141b8415ca42dfcd44f6 category: main optional: false - name: ca-certificates - version: 2025.4.26 + version: 2025.6.15 manager: conda platform: win-64 dependencies: __win: '' - url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.4.26-h4c7d964_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.6.15-h4c7d964_0.conda hash: - md5: 23c7fd5062b48d8294fc7f61bf157fba - sha256: 1454f3f53a3b828d3cb68a3440cb0fa9f1cc0e3c8c26e9e023773dc19d88cc06 + md5: b01649832f7bc7ff94f8df8bd2ee6457 + sha256: 065241ba03ef3ee8200084c075cbff50955a7e711765395ff34876dbc51a6bb9 category: main optional: false - name: cached-property @@ -732,27 +732,27 @@ package: category: main optional: false - name: certifi - version: 2025.4.26 + version: 2025.6.15 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.4.26-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.6.15-pyhd8ed1ab_0.conda hash: - md5: c33eeaaa33f45031be34cda513df39b6 - sha256: 52aa837642fd851b3f7ad3b1f66afc5366d133c1d452323f786b0378a391915c + md5: 781d068df0cc2407d4db0ecfbb29225b + sha256: d71c85835813072cd6d7ce4b24be34215cd90c104785b15a5d58f4cd0cb50778 category: main optional: false - name: certifi - version: 2025.4.26 + version: 2025.6.15 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.4.26-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.6.15-pyhd8ed1ab_0.conda hash: - md5: c33eeaaa33f45031be34cda513df39b6 - sha256: 52aa837642fd851b3f7ad3b1f66afc5366d133c1d452323f786b0378a391915c + md5: 781d068df0cc2407d4db0ecfbb29225b + sha256: d71c85835813072cd6d7ce4b24be34215cd90c104785b15a5d58f4cd0cb50778 category: main optional: false - name: cffi @@ -949,7 +949,7 @@ package: category: main optional: false - name: coverage - version: 7.8.2 + version: 7.9.1 manager: conda platform: linux-64 dependencies: @@ -958,14 +958,14 @@ package: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* tomli: '' - url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.8.2-py311h2dc5d0c_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.9.1-py311h2dc5d0c_0.conda hash: - md5: 21c1ef48cc2bf485e6d38c5611e91da2 - sha256: 1da68668a274d87003cb1c3281269fa930e952cda1711426c4240517d98177c8 + md5: f524bd18889f169f2fa8dc70df1c53c3 + sha256: 09245391f91135f4eea87d64107e82d4fb4b7d4fbd6596ea6cc126645191220c category: dev optional: true - name: coverage - version: 7.8.2 + version: 7.9.1 manager: conda platform: win-64 dependencies: @@ -975,10 +975,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.8.2-py311h5082efb_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.9.1-py311h5082efb_0.conda hash: - md5: dfd09752e23b9e8c1389ee8655c26f87 - sha256: ca270ce3d6e450dd638d03cbbf532c7ba8ef9243279b00ff0c2e3e19be1b71fc + md5: a12491bec053dd704f8e467127e20b6a + sha256: 821c280024834cdf88038452e3c131140c9e8bc310617349c0deecffca2c2196 category: dev optional: true - name: cpython @@ -1438,7 +1438,7 @@ package: category: main optional: false - name: fonttools - version: 4.58.2 + version: 4.58.4 manager: conda platform: linux-64 dependencies: @@ -1449,14 +1449,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.58.2-py311h2dc5d0c_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/fonttools-4.58.4-py311h2dc5d0c_0.conda hash: - md5: c58ce3ab3833471964d7ee6b83203425 - sha256: 50a028c44427d51c467905d01129f0ca234007359331282aac374370e1e2e158 + md5: dd3ef31d2bf022668f30859d5e11c83e + sha256: f57df9d0573fa04b53afdaa5253bc4f1902357cca9265951f9d6ebe46567a40e category: main optional: false - name: fonttools - version: 4.58.2 + version: 4.58.4 manager: conda platform: win-64 dependencies: @@ -1468,10 +1468,10 @@ package: unicodedata2: '>=15.1.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/fonttools-4.58.2-py311h5082efb_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/fonttools-4.58.4-py311h5082efb_0.conda hash: - md5: b2aa1abdfadfdf8deb04ac6a9b64e11d - sha256: 40d319bdb90178680e91046dce7cbdb1764489e7ba7efad4ecc2d9cd00690f18 + md5: 0619fa68408637bbfb263aa8396a61a9 + sha256: 0381a0b6c32cddbeaab39750590205a97604b52faae1c7db7d7891ac4710be60 category: main optional: false - name: fqdn @@ -3144,10 +3144,10 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_4.conda + url: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.43-h1423503_5.conda hash: - md5: 01f8d123c96816249efd255a31ad7712 - sha256: db73f38155d901a610b2320525b9dd3b31e4949215c870685fd92ea61b5ce472 + md5: 6dc9e1305e7d3129af4ad0dabda30e56 + sha256: dcd2b1a065bbf5c54004ddf6551c775a8eb6993c8298ca8a6b92041ed413f785 category: main optional: false - name: lerc @@ -3179,30 +3179,31 @@ package: category: main optional: false - name: libaec - version: 1.1.3 + version: 1.1.4 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://repo.prefix.dev/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=13' + libstdcxx: '>=13' + url: https://repo.prefix.dev/conda-forge/linux-64/libaec-1.1.4-h3f801dc_0.conda hash: - md5: 5e97e271911b8b2001a8b71860c32faa - sha256: 2ef420a655528bca9d269086cf33b7e90d2f54ad941b437fb1ed5eca87cee017 + md5: 01ba04e414e47f95c03d6ddd81fd37be + sha256: 410ab78fe89bc869d435de04c9ffa189598ac15bb0fe1ea8ace8fb1b860a2aa3 category: main optional: false - name: libaec - version: 1.1.3 + version: 1.1.4 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libaec-1.1.3-h63175ca_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libaec-1.1.4-h20038f6_0.conda hash: - md5: 8723000f6ffdbdaef16025f0a01b64c5 - sha256: f5c293d3cfc00f71dfdb64bd65ab53625565f8778fc2d5790575bef238976ebf + md5: 85a2bed45827d77d5b308cb2b165404f + sha256: 0be89085effce9fdcbb6aea7acdb157b18793162f68266ee0a75acf615d4929b category: main optional: false - name: libblas @@ -3796,29 +3797,30 @@ package: manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - url: https://repo.prefix.dev/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=13' + url: https://repo.prefix.dev/conda-forge/linux-64/libnsl-2.0.1-hb9d3cd8_1.conda hash: - md5: 30fd6e37fe21f86f4bd26d6ee73eeec7 - sha256: 26d77a3bb4dceeedc2a41bd688564fe71bf2d149fdcf117049970bc02ff1add6 + md5: d864d34357c3b65a4b731f78c0801dc4 + sha256: 927fe72b054277cde6cb82597d0fcf6baf127dcbce2e0a9d8925a68f1265eef5 category: main optional: false - name: libpng - version: 1.6.47 + version: 1.6.49 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libpng-1.6.47-h943b412_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libpng-1.6.49-h943b412_0.conda hash: - md5: 55199e2ae2c3651f6f9b2a447b47bdc9 - sha256: 23367d71da58c9a61c8cbd963fcffb92768d4ae5ffbef9a47cdf1f54f98c5c36 + md5: 37511c874cf3b8d0034c8d24e73c0884 + sha256: c8f5dc929ba5fcee525a66777498e03bbcbfefc05a0773e5163bb08ac5122f1a category: main optional: false - name: libpng - version: 1.6.47 + version: 1.6.49 manager: conda platform: win-64 dependencies: @@ -3826,10 +3828,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libpng-1.6.47-h7a4582a_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libpng-1.6.49-h7a4582a_0.conda hash: - md5: ad620e92b82d2948bc019e029c574ebb - sha256: e12c46ca882080d901392ae45e0e5a1c96fc3e5acd5cd1a23c2632eb7f024f26 + md5: 27269977c8f25d499727ceabc47cee3d + sha256: 8876a2d32d3538675e035b6560691471a1571835c0bcbf23816c24c460d31439 category: main optional: false - name: libscotch @@ -4184,29 +4186,29 @@ package: category: dev optional: true - name: llvm-openmp - version: 20.1.6 + version: 20.1.7 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-20.1.6-h024ca30_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-20.1.7-h024ca30_0.conda hash: - md5: e4ece7ed81e43ae97a3b58ac4230c3c5 - sha256: 43ad6a0772c0fc554d2712ae00ea788a391a40c494e9c04ec13f4aea17c95ffc + md5: b9c9b2f494533250a9eb7ece830f4422 + sha256: 10f2f6be8ba4c018e1fc741637a8d45c0e58bea96954c25e91fbe4238b7c9f60 category: main optional: false - name: llvm-openmp - version: 20.1.6 + version: 20.1.7 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-20.1.6-h30eaf37_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-20.1.7-h30eaf37_0.conda hash: - md5: b95ac67b4a85052c54268ba4b80be753 - sha256: de24f885d918455eb510da054658531bbf69a2bc5ee5945314d0451f375a881d + md5: 6fd1d310402e936aa9aecb065f21cc6b + sha256: 1820ca99e8b126b3c656ff3c527822be8348f6452edcddd91615cba285540f6c category: main optional: false - name: locket @@ -4514,7 +4516,7 @@ package: category: main optional: false - name: msgpack-python - version: 1.1.0 + version: 1.1.1 manager: conda platform: linux-64 dependencies: @@ -4523,14 +4525,14 @@ package: libstdcxx: '>=13' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://repo.prefix.dev/conda-forge/linux-64/msgpack-python-1.1.0-py311hd18a35c_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/msgpack-python-1.1.1-py311hd18a35c_0.conda hash: - md5: 682f76920687f7d9283039eb542fdacf - sha256: 9033fa7084cbfd10e1b7ed3b74cee17169a0731ec98244d05c372fc4a935d5c9 + md5: d0898973440adc2ad25917028669126d + sha256: f07aafd9e9adddf66b75630b4f68784e22ce63ae9e0887711a7386ceb2506fca category: main optional: false - name: msgpack-python - version: 1.1.0 + version: 1.1.1 manager: conda platform: win-64 dependencies: @@ -4539,10 +4541,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/msgpack-python-1.1.0-py311h3257749_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/msgpack-python-1.1.1-py311h3257749_0.conda hash: - md5: 36562593204b081d0da8a8bfabfb278b - sha256: 4e6a7979b434308ce5588970cb613952e3340bb2f9e63aaad7e5069ef1f08d1d + md5: 236c48eab3925b666eed26a3ba94bcb6 + sha256: a0ba6da7e31c406c39da1258d0c4304b58e791b3836529e51dc56d7d8f542de4 category: main optional: false - name: mumps-include @@ -4599,11 +4601,11 @@ package: manager: conda platform: linux-64 dependencies: - python: '' - url: https://repo.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 + python: '>=3.9' + url: https://repo.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyhd8ed1ab_1.conda hash: - md5: 2ba8498c1018c1e9c61eb99b973dfe19 - sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 + md5: 37293a85a0f4f77bbd9cf7aaefc62609 + sha256: d09c47c2cf456de5c09fa66d2c3c5035aa1fa228a1983a433c47b876aa16ce90 category: main optional: false - name: munkres @@ -4611,11 +4613,11 @@ package: manager: conda platform: win-64 dependencies: - python: '' - url: https://repo.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 + python: '>=3.9' + url: https://repo.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyhd8ed1ab_1.conda hash: - md5: 2ba8498c1018c1e9c61eb99b973dfe19 - sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 + md5: 37293a85a0f4f77bbd9cf7aaefc62609 + sha256: d09c47c2cf456de5c09fa66d2c3c5035aa1fa228a1983a433c47b876aa16ce90 category: main optional: false - name: myst-nb @@ -5711,7 +5713,7 @@ package: category: main optional: false - name: pydantic - version: 2.11.4 + version: 2.11.7 manager: conda platform: linux-64 dependencies: @@ -5721,14 +5723,14 @@ package: typing-extensions: '>=4.6.1' typing-inspection: '>=0.4.0' typing_extensions: '>=4.12.2' - url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.4-pyh3cfb1c2_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.7-pyh3cfb1c2_0.conda hash: - md5: 8ad3ad8db5ce2ba470c9facc37af00a9 - sha256: a522473505ac6a9c10bb304d7338459a406ba22a6d3bb1a355c1b5283553a372 + md5: 1b337e3d378cde62889bb735c024b7a2 + sha256: ee7823e8bc227f804307169870905ce062531d36c1dcf3d431acd65c6e0bd674 category: main optional: false - name: pydantic - version: 2.11.4 + version: 2.11.7 manager: conda platform: win-64 dependencies: @@ -5738,10 +5740,10 @@ package: typing-extensions: '>=4.6.1' typing-inspection: '>=0.4.0' typing_extensions: '>=4.12.2' - url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.4-pyh3cfb1c2_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.7-pyh3cfb1c2_0.conda hash: - md5: 8ad3ad8db5ce2ba470c9facc37af00a9 - sha256: a522473505ac6a9c10bb304d7338459a406ba22a6d3bb1a355c1b5283553a372 + md5: 1b337e3d378cde62889bb735c024b7a2 + sha256: ee7823e8bc227f804307169870905ce062531d36c1dcf3d431acd65c6e0bd674 category: main optional: false - name: pydantic-core @@ -6004,7 +6006,7 @@ package: category: main optional: false - name: pytest - version: 8.4.0 + version: 8.4.1 manager: conda platform: linux-64 dependencies: @@ -6016,14 +6018,14 @@ package: pygments: '>=2.7.2' python: '>=3.9' tomli: '>=1' - url: https://repo.prefix.dev/conda-forge/noarch/pytest-8.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytest-8.4.1-pyhd8ed1ab_0.conda hash: - md5: 516d31f063ce7e49ced17f105b63a1f1 - sha256: f8c5a65ff4216f7c0a9be1708be1ee1446ad678da5a01eeb2437551156e32a06 + md5: a49c2283f24696a7b30367b7346a0144 + sha256: 93e267e4ec35353e81df707938a6527d5eb55c97bf54c3b87229b69523afb59d category: dev optional: true - name: pytest - version: 8.4.0 + version: 8.4.1 manager: conda platform: win-64 dependencies: @@ -6035,14 +6037,14 @@ package: pygments: '>=2.7.2' python: '>=3.9' tomli: '>=1' - url: https://repo.prefix.dev/conda-forge/noarch/pytest-8.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytest-8.4.1-pyhd8ed1ab_0.conda hash: - md5: 516d31f063ce7e49ced17f105b63a1f1 - sha256: f8c5a65ff4216f7c0a9be1708be1ee1446ad678da5a01eeb2437551156e32a06 + md5: a49c2283f24696a7b30367b7346a0144 + sha256: 93e267e4ec35353e81df707938a6527d5eb55c97bf54c3b87229b69523afb59d category: dev optional: true - name: pytest-cov - version: 6.1.1 + version: 6.2.1 manager: conda platform: linux-64 dependencies: @@ -6050,14 +6052,14 @@ package: pytest: '>=4.6' python: '>=3.9' toml: '' - url: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-6.1.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-6.2.1-pyhd8ed1ab_0.conda hash: - md5: 1e35d8f975bc0e984a19819aa91c440a - sha256: 9961a1524f63d10bc29efdc52013ec06b0e95fb2619a250e250ff3618261d5cd + md5: ce978e1b9ed8b8d49164e90a5cdc94cd + sha256: 3a9fc07be76bc67aef355b78816b5117bfe686e7d8c6f28b45a1f89afe104761 category: dev optional: true - name: pytest-cov - version: 6.1.1 + version: 6.2.1 manager: conda platform: win-64 dependencies: @@ -6065,10 +6067,10 @@ package: pytest: '>=4.6' python: '>=3.9' toml: '' - url: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-6.1.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-6.2.1-pyhd8ed1ab_0.conda hash: - md5: 1e35d8f975bc0e984a19819aa91c440a - sha256: 9961a1524f63d10bc29efdc52013ec06b0e95fb2619a250e250ff3618261d5cd + md5: ce978e1b9ed8b8d49164e90a5cdc94cd + sha256: 3a9fc07be76bc67aef355b78816b5117bfe686e7d8c6f28b45a1f89afe104761 category: dev optional: true - name: python @@ -6372,7 +6374,7 @@ package: category: main optional: false - name: pyzmq - version: 26.4.0 + version: 27.0.0 manager: conda platform: linux-64 dependencies: @@ -6383,14 +6385,14 @@ package: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* zeromq: '>=4.3.5,<4.4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/pyzmq-26.4.0-py311h7deb3e3_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pyzmq-27.0.0-py311h7deb3e3_0.conda hash: - md5: eb719a63f26215bba3ee5b0227c6452b - sha256: e78fc8c500b96070359311082b4ebc5d66e52ddb2891861c728a247cf52892ba + md5: 43618006ed69ec49e144206b34ab93e6 + sha256: 1bf06369b9c22caf69351aecef3aed2282ba5224338aa6a8316dc5754f3f9a85 category: dev optional: true - name: pyzmq - version: 26.4.0 + version: 27.0.0 manager: conda platform: win-64 dependencies: @@ -6401,10 +6403,10 @@ package: vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' zeromq: '>=4.3.5,<4.3.6.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/pyzmq-26.4.0-py311h484c95c_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/pyzmq-27.0.0-py311h484c95c_0.conda hash: - md5: 0497becb33761fca9b8cfcb9f7278361 - sha256: d917b120cb10b32d90d40fc2b6a612cf75a9298d159e11da3a8672a3474b4f93 + md5: 5ff8a3328db08043afb64b77cdc4b6ea + sha256: cc47fc0264c839c9062423406d8c2e4b25360041bb47d33277daeaeab3f88101 category: dev optional: true - name: readline @@ -8001,7 +8003,7 @@ package: category: dev optional: true - name: urllib3 - version: 2.4.0 + version: 2.5.0 manager: conda platform: linux-64 dependencies: @@ -8010,14 +8012,14 @@ package: pysocks: '>=1.5.6,<2.0,!=1.5.7' python: '>=3.9' zstandard: '>=0.18.0' - url: https://repo.prefix.dev/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/urllib3-2.5.0-pyhd8ed1ab_0.conda hash: - md5: c1e349028e0052c4eea844e94f773065 - sha256: a25403b76f7f03ca1a906e1ef0f88521edded991b9897e7fed56a3e334b3db8c + md5: 436c165519e140cb08d246a4472a9d6a + sha256: 4fb9789154bd666ca74e428d973df81087a697dbb987775bc3198d2215f240f8 category: main optional: false - name: urllib3 - version: 2.4.0 + version: 2.5.0 manager: conda platform: win-64 dependencies: @@ -8026,10 +8028,10 @@ package: pysocks: '>=1.5.6,<2.0,!=1.5.7' python: '>=3.9' zstandard: '>=0.18.0' - url: https://repo.prefix.dev/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/urllib3-2.5.0-pyhd8ed1ab_0.conda hash: - md5: c1e349028e0052c4eea844e94f773065 - sha256: a25403b76f7f03ca1a906e1ef0f88521edded991b9897e7fed56a3e334b3db8c + md5: 436c165519e140cb08d246a4472a9d6a + sha256: 4fb9789154bd666ca74e428d973df81087a697dbb987775bc3198d2215f240f8 category: main optional: false - name: vc @@ -8556,12 +8558,12 @@ package: 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@8d46ccb686e4206683862ec803fc709b26271cd8 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 hash: - sha256: 8d46ccb686e4206683862ec803fc709b26271cd8 + sha256: 91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@8d46ccb686e4206683862ec803fc709b26271cd8 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 category: main optional: false - name: geoapps-utils @@ -8573,12 +8575,12 @@ package: 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@8d46ccb686e4206683862ec803fc709b26271cd8 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 hash: - sha256: 8d46ccb686e4206683862ec803fc709b26271cd8 + sha256: 91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@8d46ccb686e4206683862ec803fc709b26271cd8 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 category: main optional: false - name: geoh5py @@ -8590,12 +8592,12 @@ 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@585c89094e3eff35df10d3076964bf154b24d575 + url: git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e hash: - sha256: 585c89094e3eff35df10d3076964bf154b24d575 + sha256: 1190a239fd7406fbe0b73169c3d8406a1aacae3e source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@585c89094e3eff35df10d3076964bf154b24d575 + url: git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e category: main optional: false - name: geoh5py @@ -8607,12 +8609,12 @@ 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@585c89094e3eff35df10d3076964bf154b24d575 + url: git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e hash: - sha256: 585c89094e3eff35df10d3076964bf154b24d575 + sha256: 1190a239fd7406fbe0b73169c3d8406a1aacae3e source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@585c89094e3eff35df10d3076964bf154b24d575 + url: git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e category: main optional: false - name: mira-simpeg diff --git a/py-3.12.conda-lock.yml b/py-3.12.conda-lock.yml index 3aa26912..eca00aa0 100644 --- a/py-3.12.conda-lock.yml +++ b/py-3.12.conda-lock.yml @@ -660,27 +660,27 @@ package: category: main optional: false - name: ca-certificates - version: 2025.4.26 + version: 2025.6.15 manager: conda platform: linux-64 dependencies: __unix: '' - url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.4.26-hbd8a1cb_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.6.15-hbd8a1cb_0.conda hash: - md5: 95db94f75ba080a22eb623590993167b - sha256: 2a70ed95ace8a3f8a29e6cd1476a943df294a7111dfb3e152e3478c4c889b7ac + md5: 72525f07d72806e3b639ad4504c30ce5 + sha256: 7cfec9804c84844ea544d98bda1d9121672b66ff7149141b8415ca42dfcd44f6 category: main optional: false - name: ca-certificates - version: 2025.4.26 + version: 2025.6.15 manager: conda platform: win-64 dependencies: __win: '' - url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.4.26-h4c7d964_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.6.15-h4c7d964_0.conda hash: - md5: 23c7fd5062b48d8294fc7f61bf157fba - sha256: 1454f3f53a3b828d3cb68a3440cb0fa9f1cc0e3c8c26e9e023773dc19d88cc06 + md5: b01649832f7bc7ff94f8df8bd2ee6457 + sha256: 065241ba03ef3ee8200084c075cbff50955a7e711765395ff34876dbc51a6bb9 category: main optional: false - name: cached-property @@ -732,27 +732,27 @@ package: category: main optional: false - name: certifi - version: 2025.4.26 + version: 2025.6.15 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.4.26-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.6.15-pyhd8ed1ab_0.conda hash: - md5: c33eeaaa33f45031be34cda513df39b6 - sha256: 52aa837642fd851b3f7ad3b1f66afc5366d133c1d452323f786b0378a391915c + md5: 781d068df0cc2407d4db0ecfbb29225b + sha256: d71c85835813072cd6d7ce4b24be34215cd90c104785b15a5d58f4cd0cb50778 category: main optional: false - name: certifi - version: 2025.4.26 + version: 2025.6.15 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.4.26-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.6.15-pyhd8ed1ab_0.conda hash: - md5: c33eeaaa33f45031be34cda513df39b6 - sha256: 52aa837642fd851b3f7ad3b1f66afc5366d133c1d452323f786b0378a391915c + md5: 781d068df0cc2407d4db0ecfbb29225b + sha256: d71c85835813072cd6d7ce4b24be34215cd90c104785b15a5d58f4cd0cb50778 category: main optional: false - name: cffi @@ -949,7 +949,7 @@ package: category: main optional: false - name: coverage - version: 7.8.2 + version: 7.9.1 manager: conda platform: linux-64 dependencies: @@ -958,14 +958,14 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* tomli: '' - url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.8.2-py312h178313f_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.9.1-py312h178313f_0.conda hash: - md5: 141e4480d38281c3988f3a9aa917b07d - sha256: 29d1b0ff196f8cb9c65d9ce4a355c3b1037698b5a0f4cc4590472ed38de182c3 + md5: 4c18b79fa2a3371557ed3663876e5dcc + sha256: bef32c5830b7701705660ef18d5d6ad7c597ebab196954c012e8a1cb4af0d3bc category: dev optional: true - name: coverage - version: 7.8.2 + version: 7.9.1 manager: conda platform: win-64 dependencies: @@ -975,10 +975,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.8.2-py312h31fea79_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.9.1-py312h31fea79_0.conda hash: - md5: 746283c1e8a793b7322b52514111456c - sha256: ccf00edc1b8f4f1c224f81a4a598d2e89f97c063ff3ffd8e0dc8b9f7213db6db + md5: 05437668629deb7fdb7af513d43249c0 + sha256: d8a7874de0cd78242cd24b592c41ca2fab7898eedf3b6aa9e7243027ee9aed22 category: dev optional: true - name: cpython @@ -1438,7 +1438,7 @@ package: category: main optional: false - name: fonttools - version: 4.58.2 + version: 4.58.4 manager: conda platform: linux-64 dependencies: @@ -1449,14 +1449,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.58.2-py312h178313f_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/fonttools-4.58.4-py312h178313f_0.conda hash: - md5: 286068e5706fa6eacce413a594cf0d4b - sha256: aa2dbfcc173c1fe4e0e1c54ff07e98f36edfc6bbbd7e49ea9ff60541d37e648d + md5: 223a4616e3db7336569eafefac04ebbf + sha256: aa29952ac29ab4c4dad091794513241c1f732c55c58ba109f02550bc83081dc9 category: main optional: false - name: fonttools - version: 4.58.2 + version: 4.58.4 manager: conda platform: win-64 dependencies: @@ -1468,10 +1468,10 @@ package: unicodedata2: '>=15.1.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/fonttools-4.58.2-py312h31fea79_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/fonttools-4.58.4-py312h31fea79_0.conda hash: - md5: 300dfab2dac1c966c6fc52c2ee442287 - sha256: a314886c4a0baaf00526ded33104fd09fd7044393395f24fd33696beee601c4d + md5: ea00f492c19ac1799f510617ef502e0e + sha256: 4d3d830517f29e43e87e7f6998fd63c64a9bab504ee4441ab7c86ef49af3cb6b category: main optional: false - name: fqdn @@ -3144,10 +3144,10 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_4.conda + url: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.43-h1423503_5.conda hash: - md5: 01f8d123c96816249efd255a31ad7712 - sha256: db73f38155d901a610b2320525b9dd3b31e4949215c870685fd92ea61b5ce472 + md5: 6dc9e1305e7d3129af4ad0dabda30e56 + sha256: dcd2b1a065bbf5c54004ddf6551c775a8eb6993c8298ca8a6b92041ed413f785 category: main optional: false - name: lerc @@ -3179,30 +3179,31 @@ package: category: main optional: false - name: libaec - version: 1.1.3 + version: 1.1.4 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://repo.prefix.dev/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=13' + libstdcxx: '>=13' + url: https://repo.prefix.dev/conda-forge/linux-64/libaec-1.1.4-h3f801dc_0.conda hash: - md5: 5e97e271911b8b2001a8b71860c32faa - sha256: 2ef420a655528bca9d269086cf33b7e90d2f54ad941b437fb1ed5eca87cee017 + md5: 01ba04e414e47f95c03d6ddd81fd37be + sha256: 410ab78fe89bc869d435de04c9ffa189598ac15bb0fe1ea8ace8fb1b860a2aa3 category: main optional: false - name: libaec - version: 1.1.3 + version: 1.1.4 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libaec-1.1.3-h63175ca_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libaec-1.1.4-h20038f6_0.conda hash: - md5: 8723000f6ffdbdaef16025f0a01b64c5 - sha256: f5c293d3cfc00f71dfdb64bd65ab53625565f8778fc2d5790575bef238976ebf + md5: 85a2bed45827d77d5b308cb2b165404f + sha256: 0be89085effce9fdcbb6aea7acdb157b18793162f68266ee0a75acf615d4929b category: main optional: false - name: libblas @@ -3796,29 +3797,30 @@ package: manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - url: https://repo.prefix.dev/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=13' + url: https://repo.prefix.dev/conda-forge/linux-64/libnsl-2.0.1-hb9d3cd8_1.conda hash: - md5: 30fd6e37fe21f86f4bd26d6ee73eeec7 - sha256: 26d77a3bb4dceeedc2a41bd688564fe71bf2d149fdcf117049970bc02ff1add6 + md5: d864d34357c3b65a4b731f78c0801dc4 + sha256: 927fe72b054277cde6cb82597d0fcf6baf127dcbce2e0a9d8925a68f1265eef5 category: main optional: false - name: libpng - version: 1.6.47 + version: 1.6.49 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libpng-1.6.47-h943b412_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libpng-1.6.49-h943b412_0.conda hash: - md5: 55199e2ae2c3651f6f9b2a447b47bdc9 - sha256: 23367d71da58c9a61c8cbd963fcffb92768d4ae5ffbef9a47cdf1f54f98c5c36 + md5: 37511c874cf3b8d0034c8d24e73c0884 + sha256: c8f5dc929ba5fcee525a66777498e03bbcbfefc05a0773e5163bb08ac5122f1a category: main optional: false - name: libpng - version: 1.6.47 + version: 1.6.49 manager: conda platform: win-64 dependencies: @@ -3826,10 +3828,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libpng-1.6.47-h7a4582a_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libpng-1.6.49-h7a4582a_0.conda hash: - md5: ad620e92b82d2948bc019e029c574ebb - sha256: e12c46ca882080d901392ae45e0e5a1c96fc3e5acd5cd1a23c2632eb7f024f26 + md5: 27269977c8f25d499727ceabc47cee3d + sha256: 8876a2d32d3538675e035b6560691471a1571835c0bcbf23816c24c460d31439 category: main optional: false - name: libscotch @@ -4184,29 +4186,29 @@ package: category: dev optional: true - name: llvm-openmp - version: 20.1.6 + version: 20.1.7 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-20.1.6-h024ca30_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-20.1.7-h024ca30_0.conda hash: - md5: e4ece7ed81e43ae97a3b58ac4230c3c5 - sha256: 43ad6a0772c0fc554d2712ae00ea788a391a40c494e9c04ec13f4aea17c95ffc + md5: b9c9b2f494533250a9eb7ece830f4422 + sha256: 10f2f6be8ba4c018e1fc741637a8d45c0e58bea96954c25e91fbe4238b7c9f60 category: main optional: false - name: llvm-openmp - version: 20.1.6 + version: 20.1.7 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-20.1.6-h30eaf37_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-20.1.7-h30eaf37_0.conda hash: - md5: b95ac67b4a85052c54268ba4b80be753 - sha256: de24f885d918455eb510da054658531bbf69a2bc5ee5945314d0451f375a881d + md5: 6fd1d310402e936aa9aecb065f21cc6b + sha256: 1820ca99e8b126b3c656ff3c527822be8348f6452edcddd91615cba285540f6c category: main optional: false - name: locket @@ -4514,7 +4516,7 @@ package: category: main optional: false - name: msgpack-python - version: 1.1.0 + version: 1.1.1 manager: conda platform: linux-64 dependencies: @@ -4523,14 +4525,14 @@ package: libstdcxx: '>=13' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/msgpack-python-1.1.0-py312h68727a3_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/msgpack-python-1.1.1-py312h68727a3_0.conda hash: - md5: 5c9b020a3f86799cdc6115e55df06146 - sha256: 4bc53333774dea1330643b7e23aa34fd6880275737fc2e07491795872d3af8dd + md5: 6998b34027ecc577efe4e42f4b022a98 + sha256: 969b8e50922b592228390c25ac417c0761fd6f98fccad870ac5cc84f35da301a category: main optional: false - name: msgpack-python - version: 1.1.0 + version: 1.1.1 manager: conda platform: win-64 dependencies: @@ -4539,10 +4541,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/msgpack-python-1.1.0-py312hd5eb7cc_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/msgpack-python-1.1.1-py312hd5eb7cc_0.conda hash: - md5: ff4f1e63a6438a06d1ab259936e5c2ac - sha256: 3fd45d9c0830e931e34990cb90e88ba53cc7f89fce69fc7d1a8289639d363e85 + md5: 732a1b46ab8c8ee0dce4aac014e66006 + sha256: 41d9b229e0654400d81bfe417675b4603e4cd7d13ffc1b1aa9c748c67d5bd39f category: main optional: false - name: mumps-include @@ -4599,11 +4601,11 @@ package: manager: conda platform: linux-64 dependencies: - python: '' - url: https://repo.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 + python: '>=3.9' + url: https://repo.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyhd8ed1ab_1.conda hash: - md5: 2ba8498c1018c1e9c61eb99b973dfe19 - sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 + md5: 37293a85a0f4f77bbd9cf7aaefc62609 + sha256: d09c47c2cf456de5c09fa66d2c3c5035aa1fa228a1983a433c47b876aa16ce90 category: main optional: false - name: munkres @@ -4611,11 +4613,11 @@ package: manager: conda platform: win-64 dependencies: - python: '' - url: https://repo.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 + python: '>=3.9' + url: https://repo.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyhd8ed1ab_1.conda hash: - md5: 2ba8498c1018c1e9c61eb99b973dfe19 - sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 + md5: 37293a85a0f4f77bbd9cf7aaefc62609 + sha256: d09c47c2cf456de5c09fa66d2c3c5035aa1fa228a1983a433c47b876aa16ce90 category: main optional: false - name: myst-nb @@ -5711,7 +5713,7 @@ package: category: main optional: false - name: pydantic - version: 2.11.4 + version: 2.11.7 manager: conda platform: linux-64 dependencies: @@ -5721,14 +5723,14 @@ package: typing-extensions: '>=4.6.1' typing-inspection: '>=0.4.0' typing_extensions: '>=4.12.2' - url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.4-pyh3cfb1c2_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.7-pyh3cfb1c2_0.conda hash: - md5: 8ad3ad8db5ce2ba470c9facc37af00a9 - sha256: a522473505ac6a9c10bb304d7338459a406ba22a6d3bb1a355c1b5283553a372 + md5: 1b337e3d378cde62889bb735c024b7a2 + sha256: ee7823e8bc227f804307169870905ce062531d36c1dcf3d431acd65c6e0bd674 category: main optional: false - name: pydantic - version: 2.11.4 + version: 2.11.7 manager: conda platform: win-64 dependencies: @@ -5738,10 +5740,10 @@ package: typing-extensions: '>=4.6.1' typing-inspection: '>=0.4.0' typing_extensions: '>=4.12.2' - url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.4-pyh3cfb1c2_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.7-pyh3cfb1c2_0.conda hash: - md5: 8ad3ad8db5ce2ba470c9facc37af00a9 - sha256: a522473505ac6a9c10bb304d7338459a406ba22a6d3bb1a355c1b5283553a372 + md5: 1b337e3d378cde62889bb735c024b7a2 + sha256: ee7823e8bc227f804307169870905ce062531d36c1dcf3d431acd65c6e0bd674 category: main optional: false - name: pydantic-core @@ -6004,7 +6006,7 @@ package: category: main optional: false - name: pytest - version: 8.4.0 + version: 8.4.1 manager: conda platform: linux-64 dependencies: @@ -6016,14 +6018,14 @@ package: pygments: '>=2.7.2' python: '>=3.9' tomli: '>=1' - url: https://repo.prefix.dev/conda-forge/noarch/pytest-8.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytest-8.4.1-pyhd8ed1ab_0.conda hash: - md5: 516d31f063ce7e49ced17f105b63a1f1 - sha256: f8c5a65ff4216f7c0a9be1708be1ee1446ad678da5a01eeb2437551156e32a06 + md5: a49c2283f24696a7b30367b7346a0144 + sha256: 93e267e4ec35353e81df707938a6527d5eb55c97bf54c3b87229b69523afb59d category: dev optional: true - name: pytest - version: 8.4.0 + version: 8.4.1 manager: conda platform: win-64 dependencies: @@ -6035,14 +6037,14 @@ package: pygments: '>=2.7.2' python: '>=3.9' tomli: '>=1' - url: https://repo.prefix.dev/conda-forge/noarch/pytest-8.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytest-8.4.1-pyhd8ed1ab_0.conda hash: - md5: 516d31f063ce7e49ced17f105b63a1f1 - sha256: f8c5a65ff4216f7c0a9be1708be1ee1446ad678da5a01eeb2437551156e32a06 + md5: a49c2283f24696a7b30367b7346a0144 + sha256: 93e267e4ec35353e81df707938a6527d5eb55c97bf54c3b87229b69523afb59d category: dev optional: true - name: pytest-cov - version: 6.1.1 + version: 6.2.1 manager: conda platform: linux-64 dependencies: @@ -6050,14 +6052,14 @@ package: pytest: '>=4.6' python: '>=3.9' toml: '' - url: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-6.1.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-6.2.1-pyhd8ed1ab_0.conda hash: - md5: 1e35d8f975bc0e984a19819aa91c440a - sha256: 9961a1524f63d10bc29efdc52013ec06b0e95fb2619a250e250ff3618261d5cd + md5: ce978e1b9ed8b8d49164e90a5cdc94cd + sha256: 3a9fc07be76bc67aef355b78816b5117bfe686e7d8c6f28b45a1f89afe104761 category: dev optional: true - name: pytest-cov - version: 6.1.1 + version: 6.2.1 manager: conda platform: win-64 dependencies: @@ -6065,10 +6067,10 @@ package: pytest: '>=4.6' python: '>=3.9' toml: '' - url: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-6.1.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-6.2.1-pyhd8ed1ab_0.conda hash: - md5: 1e35d8f975bc0e984a19819aa91c440a - sha256: 9961a1524f63d10bc29efdc52013ec06b0e95fb2619a250e250ff3618261d5cd + md5: ce978e1b9ed8b8d49164e90a5cdc94cd + sha256: 3a9fc07be76bc67aef355b78816b5117bfe686e7d8c6f28b45a1f89afe104761 category: dev optional: true - name: python @@ -6372,7 +6374,7 @@ package: category: main optional: false - name: pyzmq - version: 26.4.0 + version: 27.0.0 manager: conda platform: linux-64 dependencies: @@ -6383,14 +6385,14 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* zeromq: '>=4.3.5,<4.4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/pyzmq-26.4.0-py312hbf22597_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pyzmq-27.0.0-py312hbf22597_0.conda hash: - md5: fa0ab7d5bee9efbc370e71bcb5da9856 - sha256: 65a264837f189b0c69c5431ea8ef44e405c472fedba145b05055f284f08bc663 + md5: 4b9a9cda3292668831cf47257ade22a6 + sha256: 8564a7beb906476813a59a81a814d00e8f9697c155488dbc59a5c6e950d5f276 category: dev optional: true - name: pyzmq - version: 26.4.0 + version: 27.0.0 manager: conda platform: win-64 dependencies: @@ -6401,10 +6403,10 @@ package: vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' zeromq: '>=4.3.5,<4.3.6.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/pyzmq-26.4.0-py312hd7027bb_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/pyzmq-27.0.0-py312hd7027bb_0.conda hash: - md5: ccfe948627071c03e36aa46d9e94bf12 - sha256: 07fbf17632c6300e53550f829f2e10d2c6f68923aa139d0618eaeadf2d0043ae + md5: 37d6508caaa4c3a91e3434192d192685 + sha256: e66267a7a61bfba5cdb50089c04a6f140edb9133c5ce34331ee2f95370460b8c category: dev optional: true - name: readline @@ -8001,7 +8003,7 @@ package: category: dev optional: true - name: urllib3 - version: 2.4.0 + version: 2.5.0 manager: conda platform: linux-64 dependencies: @@ -8010,14 +8012,14 @@ package: pysocks: '>=1.5.6,<2.0,!=1.5.7' python: '>=3.9' zstandard: '>=0.18.0' - url: https://repo.prefix.dev/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/urllib3-2.5.0-pyhd8ed1ab_0.conda hash: - md5: c1e349028e0052c4eea844e94f773065 - sha256: a25403b76f7f03ca1a906e1ef0f88521edded991b9897e7fed56a3e334b3db8c + md5: 436c165519e140cb08d246a4472a9d6a + sha256: 4fb9789154bd666ca74e428d973df81087a697dbb987775bc3198d2215f240f8 category: main optional: false - name: urllib3 - version: 2.4.0 + version: 2.5.0 manager: conda platform: win-64 dependencies: @@ -8026,10 +8028,10 @@ package: pysocks: '>=1.5.6,<2.0,!=1.5.7' python: '>=3.9' zstandard: '>=0.18.0' - url: https://repo.prefix.dev/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/urllib3-2.5.0-pyhd8ed1ab_0.conda hash: - md5: c1e349028e0052c4eea844e94f773065 - sha256: a25403b76f7f03ca1a906e1ef0f88521edded991b9897e7fed56a3e334b3db8c + md5: 436c165519e140cb08d246a4472a9d6a + sha256: 4fb9789154bd666ca74e428d973df81087a697dbb987775bc3198d2215f240f8 category: main optional: false - name: vc @@ -8556,12 +8558,12 @@ package: 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@8d46ccb686e4206683862ec803fc709b26271cd8 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 hash: - sha256: 8d46ccb686e4206683862ec803fc709b26271cd8 + sha256: 91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@8d46ccb686e4206683862ec803fc709b26271cd8 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 category: main optional: false - name: geoapps-utils @@ -8573,12 +8575,12 @@ package: 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@8d46ccb686e4206683862ec803fc709b26271cd8 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 hash: - sha256: 8d46ccb686e4206683862ec803fc709b26271cd8 + sha256: 91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@8d46ccb686e4206683862ec803fc709b26271cd8 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 category: main optional: false - name: geoh5py @@ -8590,12 +8592,12 @@ 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@585c89094e3eff35df10d3076964bf154b24d575 + url: git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e hash: - sha256: 585c89094e3eff35df10d3076964bf154b24d575 + sha256: 1190a239fd7406fbe0b73169c3d8406a1aacae3e source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@585c89094e3eff35df10d3076964bf154b24d575 + url: git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e category: main optional: false - name: geoh5py @@ -8607,12 +8609,12 @@ 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@585c89094e3eff35df10d3076964bf154b24d575 + url: git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e hash: - sha256: 585c89094e3eff35df10d3076964bf154b24d575 + sha256: 1190a239fd7406fbe0b73169c3d8406a1aacae3e source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@585c89094e3eff35df10d3076964bf154b24d575 + url: git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e category: main optional: false - name: mira-simpeg From 268e702d7466493bae06927ae630f42125e0e844 Mon Sep 17 00:00:00 2001 From: dominiquef Date: Tue, 24 Jun 2025 07:33:07 -0700 Subject: [PATCH 8/9] RE-lock --- .../py-3.10-linux-64-dev.conda.lock.yml | 16 +- environments/py-3.10-linux-64.conda.lock.yml | 12 +- .../py-3.10-win-64-dev.conda.lock.yml | 22 +-- environments/py-3.10-win-64.conda.lock.yml | 18 +-- .../py-3.11-linux-64-dev.conda.lock.yml | 16 +- environments/py-3.11-linux-64.conda.lock.yml | 12 +- .../py-3.11-win-64-dev.conda.lock.yml | 22 +-- environments/py-3.11-win-64.conda.lock.yml | 18 +-- .../py-3.12-linux-64-dev.conda.lock.yml | 16 +- environments/py-3.12-linux-64.conda.lock.yml | 12 +- .../py-3.12-win-64-dev.conda.lock.yml | 22 +-- environments/py-3.12-win-64.conda.lock.yml | 18 +-- py-3.10.conda-lock.yml | 138 +++++++++--------- py-3.11.conda-lock.yml | 138 +++++++++--------- py-3.12.conda-lock.yml | 138 +++++++++--------- 15 files changed, 309 insertions(+), 309 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 9f739f2b..33cd49b6 100644 --- a/environments/py-3.10-linux-64-dev.conda.lock.yml +++ b/environments/py-3.10-linux-64-dev.conda.lock.yml @@ -111,11 +111,11 @@ dependencies: - ld_impl_linux-64=2.43=h1423503_5 - lerc=4.0.0=h0aef613_1 - libaec=1.1.4=h3f801dc_0 - - libblas=3.9.0=31_hfdb39a5_mkl + - libblas=3.9.0=32_hfdb39a5_mkl - libbrotlicommon=1.1.0=hb9d3cd8_3 - libbrotlidec=1.1.0=hb9d3cd8_3 - libbrotlienc=1.1.0=hb9d3cd8_3 - - libcblas=3.9.0=31_h372d94f_mkl + - libcblas=3.9.0=32_h372d94f_mkl - libcurl=8.14.1=h332b0f4_0 - libdeflate=1.24=h86f0d12_0 - libdlf=0.3.0=pyhd8ed1ab_1 @@ -132,14 +132,14 @@ dependencies: - libhwloc=2.11.2=default_h0d58e46_1001 - libiconv=1.18=h4ce23a2_1 - libjpeg-turbo=3.1.0=hb9d3cd8_0 - - liblapack=3.9.0=31_hc41d3b0_mkl + - liblapack=3.9.0=32_hc41d3b0_mkl - liblzma=5.8.1=hb9d3cd8_2 - libnghttp2=1.64.0=h161d5f1_0 - libnsl=2.0.1=hb9d3cd8_1 - libpng=1.6.49=h943b412_0 - libscotch=7.0.6=hea33c07_1 - libsodium=1.0.20=h4ab18f5_0 - - libsqlite=3.50.1=hee588c1_0 + - libsqlite=3.50.1=h6cd9bfd_6 - libssh2=1.11.1=hcf80075_0 - libstdcxx=15.1.0=h8f9b012_2 - libstdcxx-ng=15.1.0=h4852527_2 @@ -202,14 +202,14 @@ dependencies: - pthread-stubs=0.4=hb9d3cd8_1002 - ptyprocess=0.7.0=pyhd8ed1ab_1 - pure_eval=0.2.3=pyhd8ed1ab_1 - - pybtex=0.24.0=pyhd8ed1ab_3 + - pybtex=0.25.0=pyhd8ed1ab_1 - pybtex-docutils=1.0.3=py310hff52083_2 - pycparser=2.22=pyh29332c3_1 - pydantic=2.11.7=pyh3cfb1c2_0 - pydantic-core=2.33.2=py310hbcd0ec0_0 - pydata-sphinx-theme=0.15.4=pyhd8ed1ab_0 - pydiso=0.1.2=py310h69a6472_0 - - pygments=2.19.1=pyhd8ed1ab_0 + - pygments=2.19.2=pyhd8ed1ab_0 - pylint=3.3.7=pyhe01879c_0 - pymatsolver=0.3.1=pyh48887ae_201 - pyparsing=3.2.3=pyhd8ed1ab_1 @@ -303,10 +303,10 @@ dependencies: - zstd=1.5.7=hb8e6e7a_2 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@99695a5e34812bfbb53cef84803033a91af137de - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@9ed6091534d638171957a17324e1a1e8f067b434 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 60ce0d5f..5fc2b5e9 100644 --- a/environments/py-3.10-linux-64.conda.lock.yml +++ b/environments/py-3.10-linux-64.conda.lock.yml @@ -50,11 +50,11 @@ dependencies: - ld_impl_linux-64=2.43=h1423503_5 - lerc=4.0.0=h0aef613_1 - libaec=1.1.4=h3f801dc_0 - - libblas=3.9.0=31_hfdb39a5_mkl + - libblas=3.9.0=32_hfdb39a5_mkl - libbrotlicommon=1.1.0=hb9d3cd8_3 - libbrotlidec=1.1.0=hb9d3cd8_3 - libbrotlienc=1.1.0=hb9d3cd8_3 - - libcblas=3.9.0=31_h372d94f_mkl + - libcblas=3.9.0=32_h372d94f_mkl - libcurl=8.14.1=h332b0f4_0 - libdeflate=1.24=h86f0d12_0 - libdlf=0.3.0=pyhd8ed1ab_1 @@ -71,13 +71,13 @@ dependencies: - libhwloc=2.11.2=default_h0d58e46_1001 - libiconv=1.18=h4ce23a2_1 - libjpeg-turbo=3.1.0=hb9d3cd8_0 - - liblapack=3.9.0=31_hc41d3b0_mkl + - liblapack=3.9.0=32_hc41d3b0_mkl - liblzma=5.8.1=hb9d3cd8_2 - libnghttp2=1.64.0=h161d5f1_0 - libnsl=2.0.1=hb9d3cd8_1 - libpng=1.6.49=h943b412_0 - libscotch=7.0.6=hea33c07_1 - - libsqlite=3.50.1=hee588c1_0 + - libsqlite=3.50.1=h6cd9bfd_6 - libssh2=1.11.1=hcf80075_0 - libstdcxx=15.1.0=h8f9b012_2 - libstdcxx-ng=15.1.0=h4852527_2 @@ -155,10 +155,10 @@ dependencies: - zstd=1.5.7=hb8e6e7a_2 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@99695a5e34812bfbb53cef84803033a91af137de - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@9ed6091534d638171957a17324e1a1e8f067b434 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 cce84f40..c379b4a8 100644 --- a/environments/py-3.10-win-64-dev.conda.lock.yml +++ b/environments/py-3.10-win-64-dev.conda.lock.yml @@ -109,11 +109,11 @@ dependencies: - lcms2=2.17=hbcf6048_0 - lerc=4.0.0=h6470a55_1 - libaec=1.1.4=h20038f6_0 - - libblas=3.9.0=31_h641d27c_mkl + - libblas=3.9.0=32_h641d27c_mkl - libbrotlicommon=1.1.0=h2466b09_3 - libbrotlidec=1.1.0=h2466b09_3 - libbrotlienc=1.1.0=h2466b09_3 - - libcblas=3.9.0=31_h5e41251_mkl + - libcblas=3.9.0=32_h5e41251_mkl - libcurl=8.14.1=h88aaa65_0 - libdeflate=1.24=h76ddb4d_0 - libdlf=0.3.0=pyhd8ed1ab_1 @@ -126,11 +126,11 @@ dependencies: - libhwloc=2.11.2=default_ha69328c_1001 - libiconv=1.18=h135ad9c_1 - libjpeg-turbo=3.1.0=h2466b09_0 - - liblapack=3.9.0=31_h1aa476e_mkl + - liblapack=3.9.0=32_h1aa476e_mkl - liblzma=5.8.1=h2466b09_2 - libpng=1.6.49=h7a4582a_0 - libsodium=1.0.20=hc70643c_0 - - libsqlite=3.50.1=h67fdade_0 + - libsqlite=3.50.1=hf5d6505_6 - libssh2=1.11.1=h9aa295b_0 - libtiff=4.7.0=h05922d8_5 - libwebp-base=1.5.0=h3b0e114_0 @@ -185,14 +185,14 @@ dependencies: - psutil=7.0.0=py310ha8f682b_0 - pthread-stubs=0.4=h0e40799_1002 - pure_eval=0.2.3=pyhd8ed1ab_1 - - pybtex=0.24.0=pyhd8ed1ab_3 + - pybtex=0.25.0=pyhd8ed1ab_1 - pybtex-docutils=1.0.3=py310h5588dad_2 - pycparser=2.22=pyh29332c3_1 - pydantic=2.11.7=pyh3cfb1c2_0 - pydantic-core=2.33.2=py310hed05c55_0 - pydata-sphinx-theme=0.15.4=pyhd8ed1ab_0 - pydiso=0.1.2=py310h8f92c26_0 - - pygments=2.19.1=pyhd8ed1ab_0 + - pygments=2.19.2=pyhd8ed1ab_0 - pylint=3.3.7=pyhe01879c_0 - pymatsolver=0.3.1=pyh48887ae_201 - pyparsing=3.2.3=pyhd8ed1ab_1 @@ -270,9 +270,9 @@ dependencies: - unicodedata2=16.0.0=py310ha8f682b_0 - uri-template=1.3.0=pyhd8ed1ab_1 - urllib3=2.5.0=pyhd8ed1ab_0 - - vc=14.3=h2b53caa_26 - - vc14_runtime=14.42.34438=hfd919c2_26 - - vs2015_runtime=14.42.34438=h7142326_26 + - vc=14.3=h41ae7f8_26 + - vc14_runtime=14.44.35208=h818238b_26 + - vs2015_runtime=14.44.35208=h38c0c73_26 - wcwidth=0.2.13=pyhd8ed1ab_1 - webcolors=24.11.1=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_3 @@ -293,10 +293,10 @@ dependencies: - zstd=1.5.7=hbeecb71_2 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@99695a5e34812bfbb53cef84803033a91af137de - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@9ed6091534d638171957a17324e1a1e8f067b434 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 fb1d30f7..d3c226fb 100644 --- a/environments/py-3.10-win-64.conda.lock.yml +++ b/environments/py-3.10-win-64.conda.lock.yml @@ -47,11 +47,11 @@ dependencies: - lcms2=2.17=hbcf6048_0 - lerc=4.0.0=h6470a55_1 - libaec=1.1.4=h20038f6_0 - - libblas=3.9.0=31_h641d27c_mkl + - libblas=3.9.0=32_h641d27c_mkl - libbrotlicommon=1.1.0=h2466b09_3 - libbrotlidec=1.1.0=h2466b09_3 - libbrotlienc=1.1.0=h2466b09_3 - - libcblas=3.9.0=31_h5e41251_mkl + - libcblas=3.9.0=32_h5e41251_mkl - libcurl=8.14.1=h88aaa65_0 - libdeflate=1.24=h76ddb4d_0 - libdlf=0.3.0=pyhd8ed1ab_1 @@ -64,10 +64,10 @@ dependencies: - libhwloc=2.11.2=default_ha69328c_1001 - libiconv=1.18=h135ad9c_1 - libjpeg-turbo=3.1.0=h2466b09_0 - - liblapack=3.9.0=31_h1aa476e_mkl + - liblapack=3.9.0=32_h1aa476e_mkl - liblzma=5.8.1=h2466b09_2 - libpng=1.6.49=h7a4582a_0 - - libsqlite=3.50.1=h67fdade_0 + - libsqlite=3.50.1=hf5d6505_6 - libssh2=1.11.1=h9aa295b_0 - libtiff=4.7.0=h05922d8_5 - libwebp-base=1.5.0=h3b0e114_0 @@ -127,9 +127,9 @@ dependencies: - ucrt=10.0.22621.0=h57928b3_1 - unicodedata2=16.0.0=py310ha8f682b_0 - urllib3=2.5.0=pyhd8ed1ab_0 - - vc=14.3=h2b53caa_26 - - vc14_runtime=14.42.34438=hfd919c2_26 - - vs2015_runtime=14.42.34438=h7142326_26 + - vc=14.3=h41ae7f8_26 + - vc14_runtime=14.44.35208=h818238b_26 + - vs2015_runtime=14.44.35208=h38c0c73_26 - wheel=0.45.1=pyhd8ed1ab_1 - win_inet_pton=1.1.0=pyh7428d3b_8 - xorg-libxau=1.0.12=h0e40799_0 @@ -143,10 +143,10 @@ dependencies: - zstd=1.5.7=hbeecb71_2 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@99695a5e34812bfbb53cef84803033a91af137de - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@9ed6091534d638171957a17324e1a1e8f067b434 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 04675743..b9cac7c0 100644 --- a/environments/py-3.11-linux-64-dev.conda.lock.yml +++ b/environments/py-3.11-linux-64-dev.conda.lock.yml @@ -113,11 +113,11 @@ dependencies: - ld_impl_linux-64=2.43=h1423503_5 - lerc=4.0.0=h0aef613_1 - libaec=1.1.4=h3f801dc_0 - - libblas=3.9.0=31_hfdb39a5_mkl + - libblas=3.9.0=32_hfdb39a5_mkl - libbrotlicommon=1.1.0=hb9d3cd8_3 - libbrotlidec=1.1.0=hb9d3cd8_3 - libbrotlienc=1.1.0=hb9d3cd8_3 - - libcblas=3.9.0=31_h372d94f_mkl + - libcblas=3.9.0=32_h372d94f_mkl - libcurl=8.14.1=h332b0f4_0 - libdeflate=1.24=h86f0d12_0 - libdlf=0.3.0=pyhd8ed1ab_1 @@ -134,14 +134,14 @@ dependencies: - libhwloc=2.11.2=default_h0d58e46_1001 - libiconv=1.18=h4ce23a2_1 - libjpeg-turbo=3.1.0=hb9d3cd8_0 - - liblapack=3.9.0=31_hc41d3b0_mkl + - liblapack=3.9.0=32_hc41d3b0_mkl - liblzma=5.8.1=hb9d3cd8_2 - libnghttp2=1.64.0=h161d5f1_0 - libnsl=2.0.1=hb9d3cd8_1 - libpng=1.6.49=h943b412_0 - libscotch=7.0.6=hea33c07_1 - libsodium=1.0.20=h4ab18f5_0 - - libsqlite=3.50.1=hee588c1_0 + - libsqlite=3.50.1=h6cd9bfd_6 - libssh2=1.11.1=hcf80075_0 - libstdcxx=15.1.0=h8f9b012_2 - libstdcxx-ng=15.1.0=h4852527_2 @@ -204,14 +204,14 @@ dependencies: - pthread-stubs=0.4=hb9d3cd8_1002 - ptyprocess=0.7.0=pyhd8ed1ab_1 - pure_eval=0.2.3=pyhd8ed1ab_1 - - pybtex=0.24.0=pyhd8ed1ab_3 + - pybtex=0.25.0=pyhd8ed1ab_1 - pybtex-docutils=1.0.3=py311h38be061_2 - pycparser=2.22=pyh29332c3_1 - pydantic=2.11.7=pyh3cfb1c2_0 - pydantic-core=2.33.2=py311hdae7d1d_0 - pydata-sphinx-theme=0.15.4=pyhd8ed1ab_0 - pydiso=0.1.2=py311h19ea254_0 - - pygments=2.19.1=pyhd8ed1ab_0 + - pygments=2.19.2=pyhd8ed1ab_0 - pylint=3.3.7=pyhe01879c_0 - pymatsolver=0.3.1=pyh48887ae_201 - pyparsing=3.2.3=pyhd8ed1ab_1 @@ -306,10 +306,10 @@ dependencies: - zstd=1.5.7=hb8e6e7a_2 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@99695a5e34812bfbb53cef84803033a91af137de - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@9ed6091534d638171957a17324e1a1e8f067b434 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 aa682dc6..6cd3518c 100644 --- a/environments/py-3.11-linux-64.conda.lock.yml +++ b/environments/py-3.11-linux-64.conda.lock.yml @@ -51,11 +51,11 @@ dependencies: - ld_impl_linux-64=2.43=h1423503_5 - lerc=4.0.0=h0aef613_1 - libaec=1.1.4=h3f801dc_0 - - libblas=3.9.0=31_hfdb39a5_mkl + - libblas=3.9.0=32_hfdb39a5_mkl - libbrotlicommon=1.1.0=hb9d3cd8_3 - libbrotlidec=1.1.0=hb9d3cd8_3 - libbrotlienc=1.1.0=hb9d3cd8_3 - - libcblas=3.9.0=31_h372d94f_mkl + - libcblas=3.9.0=32_h372d94f_mkl - libcurl=8.14.1=h332b0f4_0 - libdeflate=1.24=h86f0d12_0 - libdlf=0.3.0=pyhd8ed1ab_1 @@ -72,13 +72,13 @@ dependencies: - libhwloc=2.11.2=default_h0d58e46_1001 - libiconv=1.18=h4ce23a2_1 - libjpeg-turbo=3.1.0=hb9d3cd8_0 - - liblapack=3.9.0=31_hc41d3b0_mkl + - liblapack=3.9.0=32_hc41d3b0_mkl - liblzma=5.8.1=hb9d3cd8_2 - libnghttp2=1.64.0=h161d5f1_0 - libnsl=2.0.1=hb9d3cd8_1 - libpng=1.6.49=h943b412_0 - libscotch=7.0.6=hea33c07_1 - - libsqlite=3.50.1=hee588c1_0 + - libsqlite=3.50.1=h6cd9bfd_6 - libssh2=1.11.1=hcf80075_0 - libstdcxx=15.1.0=h8f9b012_2 - libstdcxx-ng=15.1.0=h4852527_2 @@ -157,10 +157,10 @@ dependencies: - zstd=1.5.7=hb8e6e7a_2 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@99695a5e34812bfbb53cef84803033a91af137de - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@9ed6091534d638171957a17324e1a1e8f067b434 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 38dc35c5..1c432fc6 100644 --- a/environments/py-3.11-win-64-dev.conda.lock.yml +++ b/environments/py-3.11-win-64-dev.conda.lock.yml @@ -111,11 +111,11 @@ dependencies: - lcms2=2.17=hbcf6048_0 - lerc=4.0.0=h6470a55_1 - libaec=1.1.4=h20038f6_0 - - libblas=3.9.0=31_h641d27c_mkl + - libblas=3.9.0=32_h641d27c_mkl - libbrotlicommon=1.1.0=h2466b09_3 - libbrotlidec=1.1.0=h2466b09_3 - libbrotlienc=1.1.0=h2466b09_3 - - libcblas=3.9.0=31_h5e41251_mkl + - libcblas=3.9.0=32_h5e41251_mkl - libcurl=8.14.1=h88aaa65_0 - libdeflate=1.24=h76ddb4d_0 - libdlf=0.3.0=pyhd8ed1ab_1 @@ -128,11 +128,11 @@ dependencies: - libhwloc=2.11.2=default_ha69328c_1001 - libiconv=1.18=h135ad9c_1 - libjpeg-turbo=3.1.0=h2466b09_0 - - liblapack=3.9.0=31_h1aa476e_mkl + - liblapack=3.9.0=32_h1aa476e_mkl - liblzma=5.8.1=h2466b09_2 - libpng=1.6.49=h7a4582a_0 - libsodium=1.0.20=hc70643c_0 - - libsqlite=3.50.1=h67fdade_0 + - libsqlite=3.50.1=hf5d6505_6 - libssh2=1.11.1=h9aa295b_0 - libtiff=4.7.0=h05922d8_5 - libwebp-base=1.5.0=h3b0e114_0 @@ -187,14 +187,14 @@ dependencies: - psutil=7.0.0=py311he736701_0 - pthread-stubs=0.4=h0e40799_1002 - pure_eval=0.2.3=pyhd8ed1ab_1 - - pybtex=0.24.0=pyhd8ed1ab_3 + - pybtex=0.25.0=pyhd8ed1ab_1 - pybtex-docutils=1.0.3=py311h1ea47a8_2 - pycparser=2.22=pyh29332c3_1 - pydantic=2.11.7=pyh3cfb1c2_0 - pydantic-core=2.33.2=py311hc4022dc_0 - pydata-sphinx-theme=0.15.4=pyhd8ed1ab_0 - pydiso=0.1.2=py311h66870c1_0 - - pygments=2.19.1=pyhd8ed1ab_0 + - pygments=2.19.2=pyhd8ed1ab_0 - pylint=3.3.7=pyhe01879c_0 - pymatsolver=0.3.1=pyh48887ae_201 - pyparsing=3.2.3=pyhd8ed1ab_1 @@ -272,9 +272,9 @@ dependencies: - unicodedata2=16.0.0=py311he736701_0 - uri-template=1.3.0=pyhd8ed1ab_1 - urllib3=2.5.0=pyhd8ed1ab_0 - - vc=14.3=h2b53caa_26 - - vc14_runtime=14.42.34438=hfd919c2_26 - - vs2015_runtime=14.42.34438=h7142326_26 + - vc=14.3=h41ae7f8_26 + - vc14_runtime=14.44.35208=h818238b_26 + - vs2015_runtime=14.44.35208=h38c0c73_26 - wcwidth=0.2.13=pyhd8ed1ab_1 - webcolors=24.11.1=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_3 @@ -296,10 +296,10 @@ dependencies: - zstd=1.5.7=hbeecb71_2 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@99695a5e34812bfbb53cef84803033a91af137de - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@9ed6091534d638171957a17324e1a1e8f067b434 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 9b0916a4..c8bba703 100644 --- a/environments/py-3.11-win-64.conda.lock.yml +++ b/environments/py-3.11-win-64.conda.lock.yml @@ -48,11 +48,11 @@ dependencies: - lcms2=2.17=hbcf6048_0 - lerc=4.0.0=h6470a55_1 - libaec=1.1.4=h20038f6_0 - - libblas=3.9.0=31_h641d27c_mkl + - libblas=3.9.0=32_h641d27c_mkl - libbrotlicommon=1.1.0=h2466b09_3 - libbrotlidec=1.1.0=h2466b09_3 - libbrotlienc=1.1.0=h2466b09_3 - - libcblas=3.9.0=31_h5e41251_mkl + - libcblas=3.9.0=32_h5e41251_mkl - libcurl=8.14.1=h88aaa65_0 - libdeflate=1.24=h76ddb4d_0 - libdlf=0.3.0=pyhd8ed1ab_1 @@ -65,10 +65,10 @@ dependencies: - libhwloc=2.11.2=default_ha69328c_1001 - libiconv=1.18=h135ad9c_1 - libjpeg-turbo=3.1.0=h2466b09_0 - - liblapack=3.9.0=31_h1aa476e_mkl + - liblapack=3.9.0=32_h1aa476e_mkl - liblzma=5.8.1=h2466b09_2 - libpng=1.6.49=h7a4582a_0 - - libsqlite=3.50.1=h67fdade_0 + - libsqlite=3.50.1=hf5d6505_6 - libssh2=1.11.1=h9aa295b_0 - libtiff=4.7.0=h05922d8_5 - libwebp-base=1.5.0=h3b0e114_0 @@ -128,9 +128,9 @@ dependencies: - ucrt=10.0.22621.0=h57928b3_1 - unicodedata2=16.0.0=py311he736701_0 - urllib3=2.5.0=pyhd8ed1ab_0 - - vc=14.3=h2b53caa_26 - - vc14_runtime=14.42.34438=hfd919c2_26 - - vs2015_runtime=14.42.34438=h7142326_26 + - vc=14.3=h41ae7f8_26 + - vc14_runtime=14.44.35208=h818238b_26 + - vs2015_runtime=14.44.35208=h38c0c73_26 - wheel=0.45.1=pyhd8ed1ab_1 - win_inet_pton=1.1.0=pyh7428d3b_8 - wrapt=1.17.2=py311he736701_0 @@ -145,10 +145,10 @@ dependencies: - zstd=1.5.7=hbeecb71_2 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@99695a5e34812bfbb53cef84803033a91af137de - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@9ed6091534d638171957a17324e1a1e8f067b434 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 a6cd355f..f4ed79fa 100644 --- a/environments/py-3.12-linux-64-dev.conda.lock.yml +++ b/environments/py-3.12-linux-64-dev.conda.lock.yml @@ -113,11 +113,11 @@ dependencies: - ld_impl_linux-64=2.43=h1423503_5 - lerc=4.0.0=h0aef613_1 - libaec=1.1.4=h3f801dc_0 - - libblas=3.9.0=31_hfdb39a5_mkl + - libblas=3.9.0=32_hfdb39a5_mkl - libbrotlicommon=1.1.0=hb9d3cd8_3 - libbrotlidec=1.1.0=hb9d3cd8_3 - libbrotlienc=1.1.0=hb9d3cd8_3 - - libcblas=3.9.0=31_h372d94f_mkl + - libcblas=3.9.0=32_h372d94f_mkl - libcurl=8.14.1=h332b0f4_0 - libdeflate=1.24=h86f0d12_0 - libdlf=0.3.0=pyhd8ed1ab_1 @@ -134,14 +134,14 @@ dependencies: - libhwloc=2.11.2=default_h0d58e46_1001 - libiconv=1.18=h4ce23a2_1 - libjpeg-turbo=3.1.0=hb9d3cd8_0 - - liblapack=3.9.0=31_hc41d3b0_mkl + - liblapack=3.9.0=32_hc41d3b0_mkl - liblzma=5.8.1=hb9d3cd8_2 - libnghttp2=1.64.0=h161d5f1_0 - libnsl=2.0.1=hb9d3cd8_1 - libpng=1.6.49=h943b412_0 - libscotch=7.0.6=hea33c07_1 - libsodium=1.0.20=h4ab18f5_0 - - libsqlite=3.50.1=hee588c1_0 + - libsqlite=3.50.1=h6cd9bfd_6 - libssh2=1.11.1=hcf80075_0 - libstdcxx=15.1.0=h8f9b012_2 - libstdcxx-ng=15.1.0=h4852527_2 @@ -204,14 +204,14 @@ dependencies: - pthread-stubs=0.4=hb9d3cd8_1002 - ptyprocess=0.7.0=pyhd8ed1ab_1 - pure_eval=0.2.3=pyhd8ed1ab_1 - - pybtex=0.24.0=pyhd8ed1ab_3 + - pybtex=0.25.0=pyhd8ed1ab_1 - pybtex-docutils=1.0.3=py312h7900ff3_2 - pycparser=2.22=pyh29332c3_1 - pydantic=2.11.7=pyh3cfb1c2_0 - pydantic-core=2.33.2=py312h680f630_0 - pydata-sphinx-theme=0.15.4=pyhd8ed1ab_0 - pydiso=0.1.2=py312h772f2df_0 - - pygments=2.19.1=pyhd8ed1ab_0 + - pygments=2.19.2=pyhd8ed1ab_0 - pylint=3.3.7=pyhe01879c_0 - pymatsolver=0.3.1=pyh48887ae_201 - pyparsing=3.2.3=pyhd8ed1ab_1 @@ -306,10 +306,10 @@ dependencies: - zstd=1.5.7=hb8e6e7a_2 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@99695a5e34812bfbb53cef84803033a91af137de - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@9ed6091534d638171957a17324e1a1e8f067b434 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 c77eac25..1ce584ee 100644 --- a/environments/py-3.12-linux-64.conda.lock.yml +++ b/environments/py-3.12-linux-64.conda.lock.yml @@ -51,11 +51,11 @@ dependencies: - ld_impl_linux-64=2.43=h1423503_5 - lerc=4.0.0=h0aef613_1 - libaec=1.1.4=h3f801dc_0 - - libblas=3.9.0=31_hfdb39a5_mkl + - libblas=3.9.0=32_hfdb39a5_mkl - libbrotlicommon=1.1.0=hb9d3cd8_3 - libbrotlidec=1.1.0=hb9d3cd8_3 - libbrotlienc=1.1.0=hb9d3cd8_3 - - libcblas=3.9.0=31_h372d94f_mkl + - libcblas=3.9.0=32_h372d94f_mkl - libcurl=8.14.1=h332b0f4_0 - libdeflate=1.24=h86f0d12_0 - libdlf=0.3.0=pyhd8ed1ab_1 @@ -72,13 +72,13 @@ dependencies: - libhwloc=2.11.2=default_h0d58e46_1001 - libiconv=1.18=h4ce23a2_1 - libjpeg-turbo=3.1.0=hb9d3cd8_0 - - liblapack=3.9.0=31_hc41d3b0_mkl + - liblapack=3.9.0=32_hc41d3b0_mkl - liblzma=5.8.1=hb9d3cd8_2 - libnghttp2=1.64.0=h161d5f1_0 - libnsl=2.0.1=hb9d3cd8_1 - libpng=1.6.49=h943b412_0 - libscotch=7.0.6=hea33c07_1 - - libsqlite=3.50.1=hee588c1_0 + - libsqlite=3.50.1=h6cd9bfd_6 - libssh2=1.11.1=hcf80075_0 - libstdcxx=15.1.0=h8f9b012_2 - libstdcxx-ng=15.1.0=h4852527_2 @@ -157,10 +157,10 @@ dependencies: - zstd=1.5.7=hb8e6e7a_2 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@99695a5e34812bfbb53cef84803033a91af137de - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@9ed6091534d638171957a17324e1a1e8f067b434 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 b9b9637f..177e42fc 100644 --- a/environments/py-3.12-win-64-dev.conda.lock.yml +++ b/environments/py-3.12-win-64-dev.conda.lock.yml @@ -111,11 +111,11 @@ dependencies: - lcms2=2.17=hbcf6048_0 - lerc=4.0.0=h6470a55_1 - libaec=1.1.4=h20038f6_0 - - libblas=3.9.0=31_h641d27c_mkl + - libblas=3.9.0=32_h641d27c_mkl - libbrotlicommon=1.1.0=h2466b09_3 - libbrotlidec=1.1.0=h2466b09_3 - libbrotlienc=1.1.0=h2466b09_3 - - libcblas=3.9.0=31_h5e41251_mkl + - libcblas=3.9.0=32_h5e41251_mkl - libcurl=8.14.1=h88aaa65_0 - libdeflate=1.24=h76ddb4d_0 - libdlf=0.3.0=pyhd8ed1ab_1 @@ -128,11 +128,11 @@ dependencies: - libhwloc=2.11.2=default_ha69328c_1001 - libiconv=1.18=h135ad9c_1 - libjpeg-turbo=3.1.0=h2466b09_0 - - liblapack=3.9.0=31_h1aa476e_mkl + - liblapack=3.9.0=32_h1aa476e_mkl - liblzma=5.8.1=h2466b09_2 - libpng=1.6.49=h7a4582a_0 - libsodium=1.0.20=hc70643c_0 - - libsqlite=3.50.1=h67fdade_0 + - libsqlite=3.50.1=hf5d6505_6 - libssh2=1.11.1=h9aa295b_0 - libtiff=4.7.0=h05922d8_5 - libwebp-base=1.5.0=h3b0e114_0 @@ -187,14 +187,14 @@ dependencies: - psutil=7.0.0=py312h4389bb4_0 - pthread-stubs=0.4=h0e40799_1002 - pure_eval=0.2.3=pyhd8ed1ab_1 - - pybtex=0.24.0=pyhd8ed1ab_3 + - pybtex=0.25.0=pyhd8ed1ab_1 - pybtex-docutils=1.0.3=py312h2e8e312_2 - pycparser=2.22=pyh29332c3_1 - pydantic=2.11.7=pyh3cfb1c2_0 - pydantic-core=2.33.2=py312h8422cdd_0 - pydata-sphinx-theme=0.15.4=pyhd8ed1ab_0 - pydiso=0.1.2=py312h01acb21_0 - - pygments=2.19.1=pyhd8ed1ab_0 + - pygments=2.19.2=pyhd8ed1ab_0 - pylint=3.3.7=pyhe01879c_0 - pymatsolver=0.3.1=pyh48887ae_201 - pyparsing=3.2.3=pyhd8ed1ab_1 @@ -272,9 +272,9 @@ dependencies: - unicodedata2=16.0.0=py312h4389bb4_0 - uri-template=1.3.0=pyhd8ed1ab_1 - urllib3=2.5.0=pyhd8ed1ab_0 - - vc=14.3=h2b53caa_26 - - vc14_runtime=14.42.34438=hfd919c2_26 - - vs2015_runtime=14.42.34438=h7142326_26 + - vc=14.3=h41ae7f8_26 + - vc14_runtime=14.44.35208=h818238b_26 + - vs2015_runtime=14.44.35208=h38c0c73_26 - wcwidth=0.2.13=pyhd8ed1ab_1 - webcolors=24.11.1=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_3 @@ -296,10 +296,10 @@ dependencies: - zstd=1.5.7=hbeecb71_2 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@99695a5e34812bfbb53cef84803033a91af137de - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@9ed6091534d638171957a17324e1a1e8f067b434 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 2f59ccf5..877a4883 100644 --- a/environments/py-3.12-win-64.conda.lock.yml +++ b/environments/py-3.12-win-64.conda.lock.yml @@ -48,11 +48,11 @@ dependencies: - lcms2=2.17=hbcf6048_0 - lerc=4.0.0=h6470a55_1 - libaec=1.1.4=h20038f6_0 - - libblas=3.9.0=31_h641d27c_mkl + - libblas=3.9.0=32_h641d27c_mkl - libbrotlicommon=1.1.0=h2466b09_3 - libbrotlidec=1.1.0=h2466b09_3 - libbrotlienc=1.1.0=h2466b09_3 - - libcblas=3.9.0=31_h5e41251_mkl + - libcblas=3.9.0=32_h5e41251_mkl - libcurl=8.14.1=h88aaa65_0 - libdeflate=1.24=h76ddb4d_0 - libdlf=0.3.0=pyhd8ed1ab_1 @@ -65,10 +65,10 @@ dependencies: - libhwloc=2.11.2=default_ha69328c_1001 - libiconv=1.18=h135ad9c_1 - libjpeg-turbo=3.1.0=h2466b09_0 - - liblapack=3.9.0=31_h1aa476e_mkl + - liblapack=3.9.0=32_h1aa476e_mkl - liblzma=5.8.1=h2466b09_2 - libpng=1.6.49=h7a4582a_0 - - libsqlite=3.50.1=h67fdade_0 + - libsqlite=3.50.1=hf5d6505_6 - libssh2=1.11.1=h9aa295b_0 - libtiff=4.7.0=h05922d8_5 - libwebp-base=1.5.0=h3b0e114_0 @@ -128,9 +128,9 @@ dependencies: - ucrt=10.0.22621.0=h57928b3_1 - unicodedata2=16.0.0=py312h4389bb4_0 - urllib3=2.5.0=pyhd8ed1ab_0 - - vc=14.3=h2b53caa_26 - - vc14_runtime=14.42.34438=hfd919c2_26 - - vs2015_runtime=14.42.34438=h7142326_26 + - vc=14.3=h41ae7f8_26 + - vc14_runtime=14.44.35208=h818238b_26 + - vs2015_runtime=14.44.35208=h38c0c73_26 - wheel=0.45.1=pyhd8ed1ab_1 - win_inet_pton=1.1.0=pyh7428d3b_8 - wrapt=1.17.2=py312h4389bb4_0 @@ -145,10 +145,10 @@ dependencies: - zstd=1.5.7=hbeecb71_2 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@99695a5e34812bfbb53cef84803033a91af137de - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@9ed6091534d638171957a17324e1a1e8f067b434 variables: KMP_WARNINGS: 0 diff --git a/py-3.10.conda-lock.yml b/py-3.10.conda-lock.yml index 8db66222..7f4e3781 100644 --- a/py-3.10.conda-lock.yml +++ b/py-3.10.conda-lock.yml @@ -3160,10 +3160,10 @@ package: platform: linux-64 dependencies: mkl: '>=2024.2.2,<2025.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libblas-3.9.0-31_hfdb39a5_mkl.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libblas-3.9.0-32_hfdb39a5_mkl.conda hash: - md5: bdf4a57254e8248222cb631db4393ff1 - sha256: 862289f2cfb84bb6001d0e3569e908b8c42d66b881bd5b03f730a3924628b978 + md5: eceb19ae9105bc4d0e8d5a321d66c426 + sha256: 7a04219d42b3b0b85ed9d019f481e4227efa2baa12ff48547758e90e2e208adc category: main optional: false - name: libblas @@ -3172,10 +3172,10 @@ package: platform: win-64 dependencies: mkl: 2024.2.2 - url: https://repo.prefix.dev/conda-forge/win-64/libblas-3.9.0-31_h641d27c_mkl.conda + url: https://repo.prefix.dev/conda-forge/win-64/libblas-3.9.0-32_h641d27c_mkl.conda hash: - md5: d05563c577fe2f37693a554b3f271e8f - sha256: 7bb4d5b591e98fe607279520ee78e3571a297b5720aa789a2536041ad5540de8 + md5: 49b36a01450e96c516bbc5486d4a0ea0 + sha256: 809d78b096e70fed7ebb17c867dd5dde2f9f4ed8564967a6e10c65b3513b0c31 category: main optional: false - name: libbrotlicommon @@ -3269,10 +3269,10 @@ package: platform: linux-64 dependencies: libblas: 3.9.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libcblas-3.9.0-31_h372d94f_mkl.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libcblas-3.9.0-32_h372d94f_mkl.conda hash: - md5: 2a06a6c16b45bd3d10002927ca204b67 - sha256: 2ee3ab2b6eeb59f2d3c6f933fa0db28f1b56f0bc543ed2c0f6ec04060e4b6ec0 + md5: 68b55daaf083682f58d9b7f5d52aeb37 + sha256: d0449cdfb6c6e993408375bcabbb4c9630a9b8750c406455ce3a4865ec7a321c category: main optional: false - name: libcblas @@ -3281,10 +3281,10 @@ package: platform: win-64 dependencies: libblas: 3.9.0 - url: https://repo.prefix.dev/conda-forge/win-64/libcblas-3.9.0-31_h5e41251_mkl.conda + url: https://repo.prefix.dev/conda-forge/win-64/libcblas-3.9.0-32_h5e41251_mkl.conda hash: - md5: 43c100b94ad2607382b0cf0f3a6b0bf3 - sha256: 609f455b099919bd4d15d4a733f493dc789e02da73fe4474f1cca73afafb95b8 + md5: 054b9b4b48296e4413cf93e6ece7b27d + sha256: d0f81145ae795592f3f3b5d7ff641c1019a99d6b308bfaf2a4cc5ba24b067bb0 category: main optional: false - name: libcurl @@ -3677,10 +3677,10 @@ package: platform: linux-64 dependencies: libblas: 3.9.0 - url: https://repo.prefix.dev/conda-forge/linux-64/liblapack-3.9.0-31_hc41d3b0_mkl.conda + url: https://repo.prefix.dev/conda-forge/linux-64/liblapack-3.9.0-32_hc41d3b0_mkl.conda hash: - md5: 10d012ddd7cc1c7ff9093d4974a34e53 - sha256: a2d20845d916ac8fba09376cd791136a9b4547afb2131bc315178adfc87bb4ca + md5: 6dc827963c12f90c79f5b2be4eaea072 + sha256: dc1be931203a71f5c84887cde24659fdd6fda73eb8c6cf56e67b68e3c7916efd category: main optional: false - name: liblapack @@ -3689,10 +3689,10 @@ package: platform: win-64 dependencies: libblas: 3.9.0 - url: https://repo.prefix.dev/conda-forge/win-64/liblapack-3.9.0-31_h1aa476e_mkl.conda + url: https://repo.prefix.dev/conda-forge/win-64/liblapack-3.9.0-32_h1aa476e_mkl.conda hash: - md5: 40b47ee720a185289760960fc6185750 - sha256: 9415e807aa6f8968322bbd756aab8f487379d809c74266d37c697b8d85c534ad + md5: 1652285573db93afc3ba9b3b9356e3d3 + sha256: 5629e592137114b24bfdea71e1c4b6bee11379631409ed91dfe2f83b32a8b298 category: main optional: false - name: liblzma @@ -3834,10 +3834,10 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.50.1-hee588c1_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.50.1-h6cd9bfd_6.conda hash: - md5: 96a7e36bff29f1d0ddf5b771e0da373a - sha256: cd15ab1b9f0d53507e7ad7a01e52f6756ab3080bf623ab0e438973b6e4dba3c0 + md5: a5ea64ea2bd58803ea85e3769a659829 + sha256: 0ef71429958415129e6ae1d675006e2a6c13346d1c757665db780e4e7413d7ae category: main optional: false - name: libsqlite @@ -3846,12 +3846,12 @@ package: platform: win-64 dependencies: ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.50.1-h67fdade_0.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.50.1-hf5d6505_6.conda hash: - md5: 0e11a893eeeb46510520fd3fdd9c346a - sha256: 0dda5b3f21ad2c7e823f21b0e173194347fbfccb73a06ddc9366da1877020bda + md5: c01fd2d0873bdc8d35bfa3c6eb2f54e5 + sha256: 56b8ba674b8dec6d169ee39434e68c8654e4327fd5705594fcc19625660630ad category: main optional: false - name: libssh2 @@ -5571,35 +5571,35 @@ package: category: dev optional: true - name: pybtex - version: 0.24.0 + version: 0.25.0 manager: conda platform: linux-64 dependencies: + importlib-metadata: '' latexcodec: '>=1.0.4' python: '>=3.9' pyyaml: '>=3.01' setuptools: '' - six: '' - url: https://repo.prefix.dev/conda-forge/noarch/pybtex-0.24.0-pyhd8ed1ab_3.conda + url: https://repo.prefix.dev/conda-forge/noarch/pybtex-0.25.0-pyhd8ed1ab_1.conda hash: - md5: 556a52a96313364aa79990ed1337b9a5 - sha256: c87615fcc7327c5dcc247f309731c98f7b9867a48e6265e9584af6dc8cd82345 + md5: 78b5c915435130d04d1f1bf3d9d42543 + sha256: 8a59892ecdc3e76e05f4a448c378bd1d6ba671f5fcab0ad9c628ab6a96f48d84 category: dev optional: true - name: pybtex - version: 0.24.0 + version: 0.25.0 manager: conda platform: win-64 dependencies: + importlib-metadata: '' latexcodec: '>=1.0.4' python: '>=3.9' pyyaml: '>=3.01' setuptools: '' - six: '' - url: https://repo.prefix.dev/conda-forge/noarch/pybtex-0.24.0-pyhd8ed1ab_3.conda + url: https://repo.prefix.dev/conda-forge/noarch/pybtex-0.25.0-pyhd8ed1ab_1.conda hash: - md5: 556a52a96313364aa79990ed1337b9a5 - sha256: c87615fcc7327c5dcc247f309731c98f7b9867a48e6265e9584af6dc8cd82345 + md5: 78b5c915435130d04d1f1bf3d9d42543 + sha256: 8a59892ecdc3e76e05f4a448c378bd1d6ba671f5fcab0ad9c628ab6a96f48d84 category: dev optional: true - name: pybtex-docutils @@ -5803,27 +5803,27 @@ package: category: main optional: false - name: pygments - version: 2.19.1 + version: 2.19.2 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda hash: - md5: 232fb4577b6687b2d503ef8e254270c9 - sha256: 28a3e3161390a9d23bc02b4419448f8d27679d9e2c250e29849e37749c8de86b + md5: 6b6ece66ebcae2d5f326c77ef2c5a066 + sha256: 5577623b9f6685ece2697c6eb7511b4c9ac5fb607c9babc2646c811b428fd46a category: dev optional: true - name: pygments - version: 2.19.1 + version: 2.19.2 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda hash: - md5: 232fb4577b6687b2d503ef8e254270c9 - sha256: 28a3e3161390a9d23bc02b4419448f8d27679d9e2c250e29849e37749c8de86b + md5: 6b6ece66ebcae2d5f326c77ef2c5a066 + sha256: 5577623b9f6685ece2697c6eb7511b4c9ac5fb607c9babc2646c811b428fd46a category: dev optional: true - name: pylint @@ -7985,35 +7985,35 @@ package: manager: conda platform: win-64 dependencies: - vc14_runtime: '>=14.42.34433' - url: https://repo.prefix.dev/conda-forge/win-64/vc-14.3-h2b53caa_26.conda + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/vc-14.3-h41ae7f8_26.conda hash: - md5: d3f0381e38093bde620a8d85f266ae55 - sha256: 7a685b5c37e9713fa314a0d26b8b1d7a2e6de5ab758698199b5d5b6dba2e3ce1 + md5: 18b6bf6f878501547786f7bf8052a34d + sha256: b388d88e04aa0257df4c1d28f8d85d985ad07c1e5645aa62335673c98704c4c6 category: main optional: false - name: vc14_runtime - version: 14.42.34438 + version: 14.44.35208 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' - url: https://repo.prefix.dev/conda-forge/win-64/vc14_runtime-14.42.34438-hfd919c2_26.conda + url: https://repo.prefix.dev/conda-forge/win-64/vc14_runtime-14.44.35208-h818238b_26.conda hash: - md5: 91651a36d31aa20c7ba36299fb7068f4 - sha256: 30dcb71bb166e351aadbdc18f1718757c32cdaa0e1e5d9368469ee44f6bf4709 + md5: 14d65350d3f5c8ff163dc4f76d6e2830 + sha256: 7bad6e25a7c836d99011aee59dcf600b7f849a6fa5caa05a406255527e80a703 category: main optional: false - name: vs2015_runtime - version: 14.42.34438 + version: 14.44.35208 manager: conda platform: win-64 dependencies: - vc14_runtime: '>=14.42.34438' - url: https://repo.prefix.dev/conda-forge/win-64/vs2015_runtime-14.42.34438-h7142326_26.conda + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/vs2015_runtime-14.44.35208-h38c0c73_26.conda hash: - md5: 3357e4383dbce31eed332008ede242ab - sha256: 432f2937206f1ad4a77e39f84fabc1ce7d2472b669836fb72bd2bfd19a2defc9 + md5: 312f3a0a6b3c5908e79ce24002411e32 + sha256: d18d77c8edfbad37fa0e0bb0f543ad80feb85e8fe5ced0f686b8be463742ec0b category: main optional: false - name: wcwidth @@ -8507,12 +8507,12 @@ 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@1190a239fd7406fbe0b73169c3d8406a1aacae3e + url: git+https://github.com/MiraGeoscience/geoh5py.git@99695a5e34812bfbb53cef84803033a91af137de hash: - sha256: 1190a239fd7406fbe0b73169c3d8406a1aacae3e + sha256: 99695a5e34812bfbb53cef84803033a91af137de source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e + url: git+https://github.com/MiraGeoscience/geoh5py.git@99695a5e34812bfbb53cef84803033a91af137de category: main optional: false - name: geoh5py @@ -8524,12 +8524,12 @@ 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@1190a239fd7406fbe0b73169c3d8406a1aacae3e + url: git+https://github.com/MiraGeoscience/geoh5py.git@99695a5e34812bfbb53cef84803033a91af137de hash: - sha256: 1190a239fd7406fbe0b73169c3d8406a1aacae3e + sha256: 99695a5e34812bfbb53cef84803033a91af137de source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e + url: git+https://github.com/MiraGeoscience/geoh5py.git@99695a5e34812bfbb53cef84803033a91af137de category: main optional: false - name: mira-simpeg @@ -8619,12 +8619,12 @@ package: dependencies: geoh5py: 0.12.0a1 numpy: '>=1.26.0,<1.27.0' - url: git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + url: git+https://github.com/MiraGeoscience/param-sweeps.git@9ed6091534d638171957a17324e1a1e8f067b434 hash: - sha256: d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + sha256: 9ed6091534d638171957a17324e1a1e8f067b434 source: type: url - url: git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + url: git+https://github.com/MiraGeoscience/param-sweeps.git@9ed6091534d638171957a17324e1a1e8f067b434 category: main optional: false - name: param-sweeps @@ -8634,11 +8634,11 @@ package: dependencies: geoh5py: 0.12.0a1 numpy: '>=1.26.0,<1.27.0' - url: git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + url: git+https://github.com/MiraGeoscience/param-sweeps.git@9ed6091534d638171957a17324e1a1e8f067b434 hash: - sha256: d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + sha256: 9ed6091534d638171957a17324e1a1e8f067b434 source: type: url - url: git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + url: git+https://github.com/MiraGeoscience/param-sweeps.git@9ed6091534d638171957a17324e1a1e8f067b434 category: main optional: false diff --git a/py-3.11.conda-lock.yml b/py-3.11.conda-lock.yml index 87a77029..dd9f3462 100644 --- a/py-3.11.conda-lock.yml +++ b/py-3.11.conda-lock.yml @@ -3212,10 +3212,10 @@ package: platform: linux-64 dependencies: mkl: '>=2024.2.2,<2025.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libblas-3.9.0-31_hfdb39a5_mkl.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libblas-3.9.0-32_hfdb39a5_mkl.conda hash: - md5: bdf4a57254e8248222cb631db4393ff1 - sha256: 862289f2cfb84bb6001d0e3569e908b8c42d66b881bd5b03f730a3924628b978 + md5: eceb19ae9105bc4d0e8d5a321d66c426 + sha256: 7a04219d42b3b0b85ed9d019f481e4227efa2baa12ff48547758e90e2e208adc category: main optional: false - name: libblas @@ -3224,10 +3224,10 @@ package: platform: win-64 dependencies: mkl: 2024.2.2 - url: https://repo.prefix.dev/conda-forge/win-64/libblas-3.9.0-31_h641d27c_mkl.conda + url: https://repo.prefix.dev/conda-forge/win-64/libblas-3.9.0-32_h641d27c_mkl.conda hash: - md5: d05563c577fe2f37693a554b3f271e8f - sha256: 7bb4d5b591e98fe607279520ee78e3571a297b5720aa789a2536041ad5540de8 + md5: 49b36a01450e96c516bbc5486d4a0ea0 + sha256: 809d78b096e70fed7ebb17c867dd5dde2f9f4ed8564967a6e10c65b3513b0c31 category: main optional: false - name: libbrotlicommon @@ -3321,10 +3321,10 @@ package: platform: linux-64 dependencies: libblas: 3.9.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libcblas-3.9.0-31_h372d94f_mkl.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libcblas-3.9.0-32_h372d94f_mkl.conda hash: - md5: 2a06a6c16b45bd3d10002927ca204b67 - sha256: 2ee3ab2b6eeb59f2d3c6f933fa0db28f1b56f0bc543ed2c0f6ec04060e4b6ec0 + md5: 68b55daaf083682f58d9b7f5d52aeb37 + sha256: d0449cdfb6c6e993408375bcabbb4c9630a9b8750c406455ce3a4865ec7a321c category: main optional: false - name: libcblas @@ -3333,10 +3333,10 @@ package: platform: win-64 dependencies: libblas: 3.9.0 - url: https://repo.prefix.dev/conda-forge/win-64/libcblas-3.9.0-31_h5e41251_mkl.conda + url: https://repo.prefix.dev/conda-forge/win-64/libcblas-3.9.0-32_h5e41251_mkl.conda hash: - md5: 43c100b94ad2607382b0cf0f3a6b0bf3 - sha256: 609f455b099919bd4d15d4a733f493dc789e02da73fe4474f1cca73afafb95b8 + md5: 054b9b4b48296e4413cf93e6ece7b27d + sha256: d0f81145ae795592f3f3b5d7ff641c1019a99d6b308bfaf2a4cc5ba24b067bb0 category: main optional: false - name: libcurl @@ -3729,10 +3729,10 @@ package: platform: linux-64 dependencies: libblas: 3.9.0 - url: https://repo.prefix.dev/conda-forge/linux-64/liblapack-3.9.0-31_hc41d3b0_mkl.conda + url: https://repo.prefix.dev/conda-forge/linux-64/liblapack-3.9.0-32_hc41d3b0_mkl.conda hash: - md5: 10d012ddd7cc1c7ff9093d4974a34e53 - sha256: a2d20845d916ac8fba09376cd791136a9b4547afb2131bc315178adfc87bb4ca + md5: 6dc827963c12f90c79f5b2be4eaea072 + sha256: dc1be931203a71f5c84887cde24659fdd6fda73eb8c6cf56e67b68e3c7916efd category: main optional: false - name: liblapack @@ -3741,10 +3741,10 @@ package: platform: win-64 dependencies: libblas: 3.9.0 - url: https://repo.prefix.dev/conda-forge/win-64/liblapack-3.9.0-31_h1aa476e_mkl.conda + url: https://repo.prefix.dev/conda-forge/win-64/liblapack-3.9.0-32_h1aa476e_mkl.conda hash: - md5: 40b47ee720a185289760960fc6185750 - sha256: 9415e807aa6f8968322bbd756aab8f487379d809c74266d37c697b8d85c534ad + md5: 1652285573db93afc3ba9b3b9356e3d3 + sha256: 5629e592137114b24bfdea71e1c4b6bee11379631409ed91dfe2f83b32a8b298 category: main optional: false - name: liblzma @@ -3886,10 +3886,10 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.50.1-hee588c1_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.50.1-h6cd9bfd_6.conda hash: - md5: 96a7e36bff29f1d0ddf5b771e0da373a - sha256: cd15ab1b9f0d53507e7ad7a01e52f6756ab3080bf623ab0e438973b6e4dba3c0 + md5: a5ea64ea2bd58803ea85e3769a659829 + sha256: 0ef71429958415129e6ae1d675006e2a6c13346d1c757665db780e4e7413d7ae category: main optional: false - name: libsqlite @@ -3898,12 +3898,12 @@ package: platform: win-64 dependencies: ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.50.1-h67fdade_0.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.50.1-hf5d6505_6.conda hash: - md5: 0e11a893eeeb46510520fd3fdd9c346a - sha256: 0dda5b3f21ad2c7e823f21b0e173194347fbfccb73a06ddc9366da1877020bda + md5: c01fd2d0873bdc8d35bfa3c6eb2f54e5 + sha256: 56b8ba674b8dec6d169ee39434e68c8654e4327fd5705594fcc19625660630ad category: main optional: false - name: libssh2 @@ -5625,35 +5625,35 @@ package: category: dev optional: true - name: pybtex - version: 0.24.0 + version: 0.25.0 manager: conda platform: linux-64 dependencies: + importlib-metadata: '' latexcodec: '>=1.0.4' python: '>=3.9' pyyaml: '>=3.01' setuptools: '' - six: '' - url: https://repo.prefix.dev/conda-forge/noarch/pybtex-0.24.0-pyhd8ed1ab_3.conda + url: https://repo.prefix.dev/conda-forge/noarch/pybtex-0.25.0-pyhd8ed1ab_1.conda hash: - md5: 556a52a96313364aa79990ed1337b9a5 - sha256: c87615fcc7327c5dcc247f309731c98f7b9867a48e6265e9584af6dc8cd82345 + md5: 78b5c915435130d04d1f1bf3d9d42543 + sha256: 8a59892ecdc3e76e05f4a448c378bd1d6ba671f5fcab0ad9c628ab6a96f48d84 category: dev optional: true - name: pybtex - version: 0.24.0 + version: 0.25.0 manager: conda platform: win-64 dependencies: + importlib-metadata: '' latexcodec: '>=1.0.4' python: '>=3.9' pyyaml: '>=3.01' setuptools: '' - six: '' - url: https://repo.prefix.dev/conda-forge/noarch/pybtex-0.24.0-pyhd8ed1ab_3.conda + url: https://repo.prefix.dev/conda-forge/noarch/pybtex-0.25.0-pyhd8ed1ab_1.conda hash: - md5: 556a52a96313364aa79990ed1337b9a5 - sha256: c87615fcc7327c5dcc247f309731c98f7b9867a48e6265e9584af6dc8cd82345 + md5: 78b5c915435130d04d1f1bf3d9d42543 + sha256: 8a59892ecdc3e76e05f4a448c378bd1d6ba671f5fcab0ad9c628ab6a96f48d84 category: dev optional: true - name: pybtex-docutils @@ -5857,27 +5857,27 @@ package: category: main optional: false - name: pygments - version: 2.19.1 + version: 2.19.2 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda hash: - md5: 232fb4577b6687b2d503ef8e254270c9 - sha256: 28a3e3161390a9d23bc02b4419448f8d27679d9e2c250e29849e37749c8de86b + md5: 6b6ece66ebcae2d5f326c77ef2c5a066 + sha256: 5577623b9f6685ece2697c6eb7511b4c9ac5fb607c9babc2646c811b428fd46a category: dev optional: true - name: pygments - version: 2.19.1 + version: 2.19.2 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda hash: - md5: 232fb4577b6687b2d503ef8e254270c9 - sha256: 28a3e3161390a9d23bc02b4419448f8d27679d9e2c250e29849e37749c8de86b + md5: 6b6ece66ebcae2d5f326c77ef2c5a066 + sha256: 5577623b9f6685ece2697c6eb7511b4c9ac5fb607c9babc2646c811b428fd46a category: dev optional: true - name: pylint @@ -8039,35 +8039,35 @@ package: manager: conda platform: win-64 dependencies: - vc14_runtime: '>=14.42.34433' - url: https://repo.prefix.dev/conda-forge/win-64/vc-14.3-h2b53caa_26.conda + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/vc-14.3-h41ae7f8_26.conda hash: - md5: d3f0381e38093bde620a8d85f266ae55 - sha256: 7a685b5c37e9713fa314a0d26b8b1d7a2e6de5ab758698199b5d5b6dba2e3ce1 + md5: 18b6bf6f878501547786f7bf8052a34d + sha256: b388d88e04aa0257df4c1d28f8d85d985ad07c1e5645aa62335673c98704c4c6 category: main optional: false - name: vc14_runtime - version: 14.42.34438 + version: 14.44.35208 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' - url: https://repo.prefix.dev/conda-forge/win-64/vc14_runtime-14.42.34438-hfd919c2_26.conda + url: https://repo.prefix.dev/conda-forge/win-64/vc14_runtime-14.44.35208-h818238b_26.conda hash: - md5: 91651a36d31aa20c7ba36299fb7068f4 - sha256: 30dcb71bb166e351aadbdc18f1718757c32cdaa0e1e5d9368469ee44f6bf4709 + md5: 14d65350d3f5c8ff163dc4f76d6e2830 + sha256: 7bad6e25a7c836d99011aee59dcf600b7f849a6fa5caa05a406255527e80a703 category: main optional: false - name: vs2015_runtime - version: 14.42.34438 + version: 14.44.35208 manager: conda platform: win-64 dependencies: - vc14_runtime: '>=14.42.34438' - url: https://repo.prefix.dev/conda-forge/win-64/vs2015_runtime-14.42.34438-h7142326_26.conda + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/vs2015_runtime-14.44.35208-h38c0c73_26.conda hash: - md5: 3357e4383dbce31eed332008ede242ab - sha256: 432f2937206f1ad4a77e39f84fabc1ce7d2472b669836fb72bd2bfd19a2defc9 + md5: 312f3a0a6b3c5908e79ce24002411e32 + sha256: d18d77c8edfbad37fa0e0bb0f543ad80feb85e8fe5ced0f686b8be463742ec0b category: main optional: false - name: wcwidth @@ -8592,12 +8592,12 @@ 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@1190a239fd7406fbe0b73169c3d8406a1aacae3e + url: git+https://github.com/MiraGeoscience/geoh5py.git@99695a5e34812bfbb53cef84803033a91af137de hash: - sha256: 1190a239fd7406fbe0b73169c3d8406a1aacae3e + sha256: 99695a5e34812bfbb53cef84803033a91af137de source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e + url: git+https://github.com/MiraGeoscience/geoh5py.git@99695a5e34812bfbb53cef84803033a91af137de category: main optional: false - name: geoh5py @@ -8609,12 +8609,12 @@ 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@1190a239fd7406fbe0b73169c3d8406a1aacae3e + url: git+https://github.com/MiraGeoscience/geoh5py.git@99695a5e34812bfbb53cef84803033a91af137de hash: - sha256: 1190a239fd7406fbe0b73169c3d8406a1aacae3e + sha256: 99695a5e34812bfbb53cef84803033a91af137de source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e + url: git+https://github.com/MiraGeoscience/geoh5py.git@99695a5e34812bfbb53cef84803033a91af137de category: main optional: false - name: mira-simpeg @@ -8704,12 +8704,12 @@ package: dependencies: geoh5py: 0.12.0a1 numpy: '>=1.26.0,<1.27.0' - url: git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + url: git+https://github.com/MiraGeoscience/param-sweeps.git@9ed6091534d638171957a17324e1a1e8f067b434 hash: - sha256: d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + sha256: 9ed6091534d638171957a17324e1a1e8f067b434 source: type: url - url: git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + url: git+https://github.com/MiraGeoscience/param-sweeps.git@9ed6091534d638171957a17324e1a1e8f067b434 category: main optional: false - name: param-sweeps @@ -8719,11 +8719,11 @@ package: dependencies: geoh5py: 0.12.0a1 numpy: '>=1.26.0,<1.27.0' - url: git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + url: git+https://github.com/MiraGeoscience/param-sweeps.git@9ed6091534d638171957a17324e1a1e8f067b434 hash: - sha256: d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + sha256: 9ed6091534d638171957a17324e1a1e8f067b434 source: type: url - url: git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + url: git+https://github.com/MiraGeoscience/param-sweeps.git@9ed6091534d638171957a17324e1a1e8f067b434 category: main optional: false diff --git a/py-3.12.conda-lock.yml b/py-3.12.conda-lock.yml index eca00aa0..981080e8 100644 --- a/py-3.12.conda-lock.yml +++ b/py-3.12.conda-lock.yml @@ -3212,10 +3212,10 @@ package: platform: linux-64 dependencies: mkl: '>=2024.2.2,<2025.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libblas-3.9.0-31_hfdb39a5_mkl.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libblas-3.9.0-32_hfdb39a5_mkl.conda hash: - md5: bdf4a57254e8248222cb631db4393ff1 - sha256: 862289f2cfb84bb6001d0e3569e908b8c42d66b881bd5b03f730a3924628b978 + md5: eceb19ae9105bc4d0e8d5a321d66c426 + sha256: 7a04219d42b3b0b85ed9d019f481e4227efa2baa12ff48547758e90e2e208adc category: main optional: false - name: libblas @@ -3224,10 +3224,10 @@ package: platform: win-64 dependencies: mkl: 2024.2.2 - url: https://repo.prefix.dev/conda-forge/win-64/libblas-3.9.0-31_h641d27c_mkl.conda + url: https://repo.prefix.dev/conda-forge/win-64/libblas-3.9.0-32_h641d27c_mkl.conda hash: - md5: d05563c577fe2f37693a554b3f271e8f - sha256: 7bb4d5b591e98fe607279520ee78e3571a297b5720aa789a2536041ad5540de8 + md5: 49b36a01450e96c516bbc5486d4a0ea0 + sha256: 809d78b096e70fed7ebb17c867dd5dde2f9f4ed8564967a6e10c65b3513b0c31 category: main optional: false - name: libbrotlicommon @@ -3321,10 +3321,10 @@ package: platform: linux-64 dependencies: libblas: 3.9.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libcblas-3.9.0-31_h372d94f_mkl.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libcblas-3.9.0-32_h372d94f_mkl.conda hash: - md5: 2a06a6c16b45bd3d10002927ca204b67 - sha256: 2ee3ab2b6eeb59f2d3c6f933fa0db28f1b56f0bc543ed2c0f6ec04060e4b6ec0 + md5: 68b55daaf083682f58d9b7f5d52aeb37 + sha256: d0449cdfb6c6e993408375bcabbb4c9630a9b8750c406455ce3a4865ec7a321c category: main optional: false - name: libcblas @@ -3333,10 +3333,10 @@ package: platform: win-64 dependencies: libblas: 3.9.0 - url: https://repo.prefix.dev/conda-forge/win-64/libcblas-3.9.0-31_h5e41251_mkl.conda + url: https://repo.prefix.dev/conda-forge/win-64/libcblas-3.9.0-32_h5e41251_mkl.conda hash: - md5: 43c100b94ad2607382b0cf0f3a6b0bf3 - sha256: 609f455b099919bd4d15d4a733f493dc789e02da73fe4474f1cca73afafb95b8 + md5: 054b9b4b48296e4413cf93e6ece7b27d + sha256: d0f81145ae795592f3f3b5d7ff641c1019a99d6b308bfaf2a4cc5ba24b067bb0 category: main optional: false - name: libcurl @@ -3729,10 +3729,10 @@ package: platform: linux-64 dependencies: libblas: 3.9.0 - url: https://repo.prefix.dev/conda-forge/linux-64/liblapack-3.9.0-31_hc41d3b0_mkl.conda + url: https://repo.prefix.dev/conda-forge/linux-64/liblapack-3.9.0-32_hc41d3b0_mkl.conda hash: - md5: 10d012ddd7cc1c7ff9093d4974a34e53 - sha256: a2d20845d916ac8fba09376cd791136a9b4547afb2131bc315178adfc87bb4ca + md5: 6dc827963c12f90c79f5b2be4eaea072 + sha256: dc1be931203a71f5c84887cde24659fdd6fda73eb8c6cf56e67b68e3c7916efd category: main optional: false - name: liblapack @@ -3741,10 +3741,10 @@ package: platform: win-64 dependencies: libblas: 3.9.0 - url: https://repo.prefix.dev/conda-forge/win-64/liblapack-3.9.0-31_h1aa476e_mkl.conda + url: https://repo.prefix.dev/conda-forge/win-64/liblapack-3.9.0-32_h1aa476e_mkl.conda hash: - md5: 40b47ee720a185289760960fc6185750 - sha256: 9415e807aa6f8968322bbd756aab8f487379d809c74266d37c697b8d85c534ad + md5: 1652285573db93afc3ba9b3b9356e3d3 + sha256: 5629e592137114b24bfdea71e1c4b6bee11379631409ed91dfe2f83b32a8b298 category: main optional: false - name: liblzma @@ -3886,10 +3886,10 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.50.1-hee588c1_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.50.1-h6cd9bfd_6.conda hash: - md5: 96a7e36bff29f1d0ddf5b771e0da373a - sha256: cd15ab1b9f0d53507e7ad7a01e52f6756ab3080bf623ab0e438973b6e4dba3c0 + md5: a5ea64ea2bd58803ea85e3769a659829 + sha256: 0ef71429958415129e6ae1d675006e2a6c13346d1c757665db780e4e7413d7ae category: main optional: false - name: libsqlite @@ -3898,12 +3898,12 @@ package: platform: win-64 dependencies: ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.50.1-h67fdade_0.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.50.1-hf5d6505_6.conda hash: - md5: 0e11a893eeeb46510520fd3fdd9c346a - sha256: 0dda5b3f21ad2c7e823f21b0e173194347fbfccb73a06ddc9366da1877020bda + md5: c01fd2d0873bdc8d35bfa3c6eb2f54e5 + sha256: 56b8ba674b8dec6d169ee39434e68c8654e4327fd5705594fcc19625660630ad category: main optional: false - name: libssh2 @@ -5625,35 +5625,35 @@ package: category: dev optional: true - name: pybtex - version: 0.24.0 + version: 0.25.0 manager: conda platform: linux-64 dependencies: + importlib-metadata: '' latexcodec: '>=1.0.4' python: '>=3.9' pyyaml: '>=3.01' setuptools: '' - six: '' - url: https://repo.prefix.dev/conda-forge/noarch/pybtex-0.24.0-pyhd8ed1ab_3.conda + url: https://repo.prefix.dev/conda-forge/noarch/pybtex-0.25.0-pyhd8ed1ab_1.conda hash: - md5: 556a52a96313364aa79990ed1337b9a5 - sha256: c87615fcc7327c5dcc247f309731c98f7b9867a48e6265e9584af6dc8cd82345 + md5: 78b5c915435130d04d1f1bf3d9d42543 + sha256: 8a59892ecdc3e76e05f4a448c378bd1d6ba671f5fcab0ad9c628ab6a96f48d84 category: dev optional: true - name: pybtex - version: 0.24.0 + version: 0.25.0 manager: conda platform: win-64 dependencies: + importlib-metadata: '' latexcodec: '>=1.0.4' python: '>=3.9' pyyaml: '>=3.01' setuptools: '' - six: '' - url: https://repo.prefix.dev/conda-forge/noarch/pybtex-0.24.0-pyhd8ed1ab_3.conda + url: https://repo.prefix.dev/conda-forge/noarch/pybtex-0.25.0-pyhd8ed1ab_1.conda hash: - md5: 556a52a96313364aa79990ed1337b9a5 - sha256: c87615fcc7327c5dcc247f309731c98f7b9867a48e6265e9584af6dc8cd82345 + md5: 78b5c915435130d04d1f1bf3d9d42543 + sha256: 8a59892ecdc3e76e05f4a448c378bd1d6ba671f5fcab0ad9c628ab6a96f48d84 category: dev optional: true - name: pybtex-docutils @@ -5857,27 +5857,27 @@ package: category: main optional: false - name: pygments - version: 2.19.1 + version: 2.19.2 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda hash: - md5: 232fb4577b6687b2d503ef8e254270c9 - sha256: 28a3e3161390a9d23bc02b4419448f8d27679d9e2c250e29849e37749c8de86b + md5: 6b6ece66ebcae2d5f326c77ef2c5a066 + sha256: 5577623b9f6685ece2697c6eb7511b4c9ac5fb607c9babc2646c811b428fd46a category: dev optional: true - name: pygments - version: 2.19.1 + version: 2.19.2 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda hash: - md5: 232fb4577b6687b2d503ef8e254270c9 - sha256: 28a3e3161390a9d23bc02b4419448f8d27679d9e2c250e29849e37749c8de86b + md5: 6b6ece66ebcae2d5f326c77ef2c5a066 + sha256: 5577623b9f6685ece2697c6eb7511b4c9ac5fb607c9babc2646c811b428fd46a category: dev optional: true - name: pylint @@ -8039,35 +8039,35 @@ package: manager: conda platform: win-64 dependencies: - vc14_runtime: '>=14.42.34433' - url: https://repo.prefix.dev/conda-forge/win-64/vc-14.3-h2b53caa_26.conda + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/vc-14.3-h41ae7f8_26.conda hash: - md5: d3f0381e38093bde620a8d85f266ae55 - sha256: 7a685b5c37e9713fa314a0d26b8b1d7a2e6de5ab758698199b5d5b6dba2e3ce1 + md5: 18b6bf6f878501547786f7bf8052a34d + sha256: b388d88e04aa0257df4c1d28f8d85d985ad07c1e5645aa62335673c98704c4c6 category: main optional: false - name: vc14_runtime - version: 14.42.34438 + version: 14.44.35208 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' - url: https://repo.prefix.dev/conda-forge/win-64/vc14_runtime-14.42.34438-hfd919c2_26.conda + url: https://repo.prefix.dev/conda-forge/win-64/vc14_runtime-14.44.35208-h818238b_26.conda hash: - md5: 91651a36d31aa20c7ba36299fb7068f4 - sha256: 30dcb71bb166e351aadbdc18f1718757c32cdaa0e1e5d9368469ee44f6bf4709 + md5: 14d65350d3f5c8ff163dc4f76d6e2830 + sha256: 7bad6e25a7c836d99011aee59dcf600b7f849a6fa5caa05a406255527e80a703 category: main optional: false - name: vs2015_runtime - version: 14.42.34438 + version: 14.44.35208 manager: conda platform: win-64 dependencies: - vc14_runtime: '>=14.42.34438' - url: https://repo.prefix.dev/conda-forge/win-64/vs2015_runtime-14.42.34438-h7142326_26.conda + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/vs2015_runtime-14.44.35208-h38c0c73_26.conda hash: - md5: 3357e4383dbce31eed332008ede242ab - sha256: 432f2937206f1ad4a77e39f84fabc1ce7d2472b669836fb72bd2bfd19a2defc9 + md5: 312f3a0a6b3c5908e79ce24002411e32 + sha256: d18d77c8edfbad37fa0e0bb0f543ad80feb85e8fe5ced0f686b8be463742ec0b category: main optional: false - name: wcwidth @@ -8592,12 +8592,12 @@ 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@1190a239fd7406fbe0b73169c3d8406a1aacae3e + url: git+https://github.com/MiraGeoscience/geoh5py.git@99695a5e34812bfbb53cef84803033a91af137de hash: - sha256: 1190a239fd7406fbe0b73169c3d8406a1aacae3e + sha256: 99695a5e34812bfbb53cef84803033a91af137de source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e + url: git+https://github.com/MiraGeoscience/geoh5py.git@99695a5e34812bfbb53cef84803033a91af137de category: main optional: false - name: geoh5py @@ -8609,12 +8609,12 @@ 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@1190a239fd7406fbe0b73169c3d8406a1aacae3e + url: git+https://github.com/MiraGeoscience/geoh5py.git@99695a5e34812bfbb53cef84803033a91af137de hash: - sha256: 1190a239fd7406fbe0b73169c3d8406a1aacae3e + sha256: 99695a5e34812bfbb53cef84803033a91af137de source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e + url: git+https://github.com/MiraGeoscience/geoh5py.git@99695a5e34812bfbb53cef84803033a91af137de category: main optional: false - name: mira-simpeg @@ -8704,12 +8704,12 @@ package: dependencies: geoh5py: 0.12.0a1 numpy: '>=1.26.0,<1.27.0' - url: git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + url: git+https://github.com/MiraGeoscience/param-sweeps.git@9ed6091534d638171957a17324e1a1e8f067b434 hash: - sha256: d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + sha256: 9ed6091534d638171957a17324e1a1e8f067b434 source: type: url - url: git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + url: git+https://github.com/MiraGeoscience/param-sweeps.git@9ed6091534d638171957a17324e1a1e8f067b434 category: main optional: false - name: param-sweeps @@ -8719,11 +8719,11 @@ package: dependencies: geoh5py: 0.12.0a1 numpy: '>=1.26.0,<1.27.0' - url: git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + url: git+https://github.com/MiraGeoscience/param-sweeps.git@9ed6091534d638171957a17324e1a1e8f067b434 hash: - sha256: d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + sha256: 9ed6091534d638171957a17324e1a1e8f067b434 source: type: url - url: git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + url: git+https://github.com/MiraGeoscience/param-sweeps.git@9ed6091534d638171957a17324e1a1e8f067b434 category: main optional: false From f74308a205a2dfd62cf6857976a7d31e7f858723 Mon Sep 17 00:00:00 2001 From: dominiquef Date: Tue, 24 Jun 2025 07:44:53 -0700 Subject: [PATCH 9/9] Fix reference to workspace --- simpeg_drivers/line_sweep/driver.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/simpeg_drivers/line_sweep/driver.py b/simpeg_drivers/line_sweep/driver.py index 4c3f9fdc..f72d4c5e 100644 --- a/simpeg_drivers/line_sweep/driver.py +++ b/simpeg_drivers/line_sweep/driver.py @@ -34,7 +34,6 @@ class LineSweepDriver(SweepDriver, InversionDriver): def __init__(self, params): self._out_group = None - self.workspace = params.geoh5 self.batch2d_params = params self.cleanup = params.file_control.cleanup @@ -245,3 +244,8 @@ def collect_line_data(self, survey, line_indices, data): data[child.name]["values"][line_indices] = child.values return data + + @property + def workspace(self): + """Application workspace.""" + return self.batch2d_params.geoh5