From 2af6198b9803dd14a5f6140781c01fcebb8c157d Mon Sep 17 00:00:00 2001 From: dominiquef Date: Fri, 4 Jul 2025 10:30:02 -0700 Subject: [PATCH 1/3] Adjust test --- tests/run_tests/driver_mvi_test.py | 118 +++++++++-------------------- 1 file changed, 35 insertions(+), 83 deletions(-) diff --git a/tests/run_tests/driver_mvi_test.py b/tests/run_tests/driver_mvi_test.py index 53553bad..a22042be 100644 --- a/tests/run_tests/driver_mvi_test.py +++ b/tests/run_tests/driver_mvi_test.py @@ -36,12 +36,12 @@ # To test the full run and validate the inversion. # Move this file out of the test directory and run. -target_mvi_run = {"data_norm": 6.3559205278626525, "phi_d": 0.00933, "phi_m": 0.00401} +target_mvi_run = {"data_norm": 149.10117594929326, "phi_d": 58.6, "phi_m": 0.0079} def test_magnetic_vector_fwr_run( tmp_path: Path, - n_grid_points=2, + n_grid_points=3, refinement=(2,), ): # Run the forward @@ -78,7 +78,8 @@ def test_magnetic_vector_fwr_run( def test_magnetic_vector_run( tmp_path: Path, - max_iterations=2, + caplog, + max_iterations=3, pytest=True, ): workpath = tmp_path / "inversion_test.ui.geoh5" @@ -95,7 +96,7 @@ def test_magnetic_vector_run( mesh = geoh5.get_entity("mesh")[0] topography = geoh5.get_entity("topography")[0] inducing_field = (50000.0, 90.0, 0.0) - + upper_bound = 2e-3 dip, direction = mesh.add_data( { "dip": {"values": np.zeros(mesh.n_cells)}, @@ -109,80 +110,6 @@ def test_magnetic_vector_run( parent=mesh, ) - # Run the inverse - params = MVIInversionOptions.build( - geoh5=geoh5, - mesh=mesh, - topography_object=topography, - inducing_field_strength=inducing_field[0], - inducing_field_inclination=inducing_field[1], - inducing_field_declination=inducing_field[2], - data_object=tmi.parent, - starting_model=1e-4, - reference_model=0.0, - s_norm=0.0, - x_norm=1.0, - y_norm=1.0, - z_norm=1.0, - tmi_channel=tmi, - tmi_uncertainty=4.0, - max_global_iterations=max_iterations, - gradient_rotation=gradient_rotation, - initial_beta_ratio=1e1, - store_sensitivities="ram", - save_sensitivities=True, - percentile=100, - ) - params.write_ui_json(path=tmp_path / "Inv_run.ui.json") - - driver = MVIInversionDriver.start(str(tmp_path / "Inv_run.ui.json")) - - with Workspace(driver.params.geoh5.h5file) as run_ws: - # Re-open the workspace and get iterations - output = get_inversion_output( - driver.params.geoh5.h5file, driver.params.out_group.uid - ) - output["data"] = orig_tmi - if pytest: - check_target(output, target_mvi_run) - nan_ind = np.isnan( - run_ws.get_entity("Iteration_0_amplitude_model")[0].values - ) - inactive_ind = run_ws.get_entity("active_cells")[0].values == 0 - assert np.all(nan_ind == inactive_ind) - - out_group = run_ws.get_entity("Magnetic Vector Inversion")[0] - mesh = out_group.get_entity("mesh")[0] - assert len(mesh.property_groups) == 5 - assert len(mesh.fetch_property_group("Iteration_0").properties) == 2 - assert len(mesh.fetch_property_group("LP models").properties) == 6 - assert ( - mesh.fetch_property_group("Iteration_1").property_group_type - == GroupTypeEnum.DIPDIR - ) - - -def test_magnetic_vector_bounds_run( - tmp_path: Path, - caplog, - max_iterations=4, - pytest=True, -): - workpath = tmp_path / "inversion_test.ui.geoh5" - if pytest: - workpath = ( - tmp_path.parent - / "test_magnetic_vector_fwr_run0" - / "inversion_test.ui.geoh5" - ) - - with Workspace(workpath) as geoh5: - upper_bound = 1e-2 - tmi = geoh5.get_entity("Iteration_0_tmi")[0] - mesh = geoh5.get_entity("mesh")[0] - topography = geoh5.get_entity("topography")[0] - inducing_field = (50000.0, 90.0, 0.0) - # Run the inverse with caplog.at_level(logging.WARNING): params = MVIInversionOptions.build( @@ -195,19 +122,17 @@ def test_magnetic_vector_bounds_run( data_object=tmi.parent, starting_model=1e-4, reference_model=0.0, + gradient_rotation=gradient_rotation, s_norm=0.0, x_norm=1.0, y_norm=1.0, z_norm=1.0, tmi_channel=tmi, - tmi_uncertainty=4.0, + tmi_uncertainty=5.0, lower_bound=1e-6, upper_bound=upper_bound, max_global_iterations=max_iterations, initial_beta_ratio=1e1, - store_sensitivities="ram", - save_sensitivities=True, - percentile=100, ) params.write_ui_json(path=tmp_path / "Inv_run.ui.json") @@ -215,9 +140,36 @@ def test_magnetic_vector_bounds_run( driver = MVIInversionDriver(params) assert np.all(driver.models.lower_bound == -upper_bound) + driver.run() + + if pytest: + with Workspace(driver.params.geoh5.h5file) as run_ws: + # Re-open the workspace and get iterations + output = get_inversion_output( + driver.params.geoh5.h5file, driver.params.out_group.uid + ) + output["data"] = orig_tmi + model = run_ws.get_entity("Iteration_3_amplitude_model")[0] + nan_ind = np.isnan(model.values) + inactive_ind = run_ws.get_entity("active_cells")[0].values == 0 + assert np.all(nan_ind == inactive_ind) + + assert np.nanmin(model.values) <= 1e-5 + assert np.isclose(np.nanmax(model.values), upper_bound) + + out_group = run_ws.get_entity("Magnetic Vector Inversion")[0] + mesh = out_group.get_entity("mesh")[0] + assert len(mesh.property_groups) == 6 + assert len(mesh.fetch_property_group("Iteration_0").properties) == 2 + assert len(mesh.fetch_property_group("LP models").properties) == 6 + assert ( + mesh.fetch_property_group("Iteration_1").property_group_type + == GroupTypeEnum.DIPDIR + ) + check_target(output, target_mvi_run) if __name__ == "__main__": # Full run test_magnetic_vector_fwr_run(Path("./"), n_grid_points=20, refinement=(4, 8)) - test_magnetic_vector_run(Path("./"), max_iterations=30, pytest=False) + test_magnetic_vector_run(Path("./"), "", max_iterations=30, pytest=False) From faa4e97a5d14843bf7149feba337300a625efef5 Mon Sep 17 00:00:00 2001 From: dominiquef Date: Fri, 4 Jul 2025 10:39:05 -0700 Subject: [PATCH 2/3] Fix issues with caplog in full local run --- tests/run_tests/driver_mvi_test.py | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/tests/run_tests/driver_mvi_test.py b/tests/run_tests/driver_mvi_test.py index a22042be..404fb975 100644 --- a/tests/run_tests/driver_mvi_test.py +++ b/tests/run_tests/driver_mvi_test.py @@ -10,6 +10,7 @@ from __future__ import annotations +import contextlib import logging from pathlib import Path @@ -80,6 +81,7 @@ def test_magnetic_vector_run( tmp_path: Path, caplog, max_iterations=3, + upper_bound=2e-3, pytest=True, ): workpath = tmp_path / "inversion_test.ui.geoh5" @@ -96,7 +98,7 @@ def test_magnetic_vector_run( mesh = geoh5.get_entity("mesh")[0] topography = geoh5.get_entity("topography")[0] inducing_field = (50000.0, 90.0, 0.0) - upper_bound = 2e-3 + dip, direction = mesh.add_data( { "dip": {"values": np.zeros(mesh.n_cells)}, @@ -111,7 +113,7 @@ def test_magnetic_vector_run( ) # Run the inverse - with caplog.at_level(logging.WARNING): + with caplog.at_level(logging.WARNING) if caplog else contextlib.nullcontext(): params = MVIInversionOptions.build( geoh5=geoh5, mesh=mesh, @@ -135,8 +137,8 @@ def test_magnetic_vector_run( initial_beta_ratio=1e1, ) params.write_ui_json(path=tmp_path / "Inv_run.ui.json") - - assert "Skipping deprecated field: lower_bound" in caplog.text + if caplog: + assert "Skipping deprecated field: lower_bound" in caplog.text driver = MVIInversionDriver(params) assert np.all(driver.models.lower_bound == -upper_bound) @@ -172,4 +174,6 @@ def test_magnetic_vector_run( if __name__ == "__main__": # Full run test_magnetic_vector_fwr_run(Path("./"), n_grid_points=20, refinement=(4, 8)) - test_magnetic_vector_run(Path("./"), "", max_iterations=30, pytest=False) + test_magnetic_vector_run( + Path("./"), None, max_iterations=30, upper_bound=1e-1, pytest=False + ) From 072cac2e3dba65bb2efa117fcca7ca7ce758538e Mon Sep 17 00:00:00 2001 From: dominiquef Date: Mon, 7 Jul 2025 09:13:16 -0700 Subject: [PATCH 3/3] RE-lock --- .../py-3.10-linux-64-dev.conda.lock.yml | 30 +- environments/py-3.10-linux-64.conda.lock.yml | 22 +- .../py-3.10-win-64-dev.conda.lock.yml | 28 +- environments/py-3.10-win-64.conda.lock.yml | 20 +- .../py-3.11-linux-64-dev.conda.lock.yml | 32 +-- environments/py-3.11-linux-64.conda.lock.yml | 22 +- .../py-3.11-win-64-dev.conda.lock.yml | 30 +- environments/py-3.11-win-64.conda.lock.yml | 20 +- .../py-3.12-linux-64-dev.conda.lock.yml | 32 +-- environments/py-3.12-linux-64.conda.lock.yml | 22 +- .../py-3.12-win-64-dev.conda.lock.yml | 30 +- environments/py-3.12-win-64.conda.lock.yml | 20 +- py-3.10.conda-lock.yml | 258 ++++++++--------- py-3.11.conda-lock.yml | 272 +++++++++--------- py-3.12.conda-lock.yml | 268 ++++++++--------- 15 files changed, 553 insertions(+), 553 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 d180b782..c2fe4755 100644 --- a/environments/py-3.10-linux-64-dev.conda.lock.yml +++ b/environments/py-3.10-linux-64-dev.conda.lock.yml @@ -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.9.1=py310h89163eb_0 + - coverage=7.9.2=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.4=py310h89163eb_0 + - fonttools=4.58.5=py310h89163eb_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.13.3=ha770c72_1 - fsspec=2025.5.1=pyhd8ed1ab_0 @@ -98,17 +98,17 @@ dependencies: - jupyter_events=0.12.0=pyh29332c3_0 - jupyter_server=2.16.0=pyhe01879c_0 - jupyter_server_terminals=0.5.3=pyhd8ed1ab_1 - - jupyterlab=4.4.3=pyhd8ed1ab_0 + - jupyterlab=4.4.4=pyhd8ed1ab_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_2 - jupyterlab_server=2.27.3=pyhd8ed1ab_1 - jupyterlab_widgets=1.1.11=pyhd8ed1ab_0 - jupytext=1.17.2=pyh80e38bb_0 - keyutils=1.6.1=h166bdaf_0 - - kiwisolver=1.4.7=py310h3788b33_0 + - kiwisolver=1.4.8=py310h3788b33_1 - krb5=1.21.3=h659f571_0 - latexcodec=2.0.1=pyh9f0ad1d_0 - lcms2=2.17=h717163a_0 - - ld_impl_linux-64=2.43=h1423503_5 + - ld_impl_linux-64=2.44=h1423503_0 - lerc=4.0.0=h0aef613_1 - libaec=1.1.4=h3f801dc_0 - libblas=3.9.0=32_hfdb39a5_mkl @@ -136,11 +136,11 @@ dependencies: - liblzma=5.8.1=hb9d3cd8_2 - libnghttp2=1.64.0=h161d5f1_0 - libnsl=2.0.1=hb9d3cd8_1 - - libpng=1.6.49=h943b412_0 + - libpng=1.6.50=h943b412_0 - libscotch=7.0.6=hea33c07_1 - libsodium=1.0.20=h4ab18f5_0 - libspatialindex=2.0.0=he02047a_0 - - libsqlite=3.50.1=h6cd9bfd_7 + - libsqlite=3.50.2=h6cd9bfd_0 - libssh2=1.11.1=hcf80075_0 - libstdcxx=15.1.0=h8f9b012_3 - libstdcxx-ng=15.1.0=h4852527_3 @@ -177,12 +177,12 @@ dependencies: - nbformat=5.10.4=pyhd8ed1ab_1 - ncurses=6.5=h2d0b736_3 - nest-asyncio=1.6.0=pyhd8ed1ab_1 - - notebook=7.4.3=pyhd8ed1ab_0 + - notebook=7.4.4=pyhd8ed1ab_0 - notebook-shim=0.2.4=pyhd8ed1ab_1 - numcodecs=0.13.1=py310h5eaa309_0 - numpy=1.26.4=py310hb13e2d6_0 - openjpeg=2.5.3=h5fbd93e_0 - - openssl=3.5.0=h7b32b05_1 + - openssl=3.5.1=h7b32b05_0 - overrides=7.7.0=pyhd8ed1ab_1 - packaging=25.0=pyh29332c3_1 - pandas=2.3.0=py310h5eaa309_0 @@ -218,7 +218,7 @@ dependencies: - 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-dateutil=2.9.0.post0=pyhe01879c_2 - python-fastjsonschema=2.21.1=pyhd8ed1ab_0 - python-json-logger=2.0.7=pyhd8ed1ab_0 - python-mumps=0.0.3=py310h6410a28_0 @@ -233,7 +233,7 @@ dependencies: - requests=2.32.4=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_1 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.25.1=py310hbcd0ec0_0 + - rpds-py=0.26.0=py310hbcd0ec0_0 - rtree=1.2.0=py310haf1e407_1 - scikit-learn=1.4.2=py310h981052a_1 - scipy=1.14.1=py310hfcf56fc_2 @@ -279,9 +279,9 @@ dependencies: - traitlets=5.14.3=pyhd8ed1ab_1 - trimesh=4.1.8=pyhd8ed1ab_0 - types-python-dateutil=2.9.0.20250516=pyhd8ed1ab_0 - - typing-extensions=4.14.0=h32cad80_0 + - typing-extensions=4.14.1=h4440ef1_0 - typing-inspection=0.4.1=pyhd8ed1ab_0 - - typing_extensions=4.14.0=pyhe01879c_0 + - typing_extensions=4.14.1=pyhe01879c_0 - typing_utils=0.1.0=pyhd8ed1ab_1 - tzdata=2025b=h78e105d_0 - uc-micro-py=1.0.3=pyhd8ed1ab_1 @@ -306,8 +306,8 @@ dependencies: - zstd=1.5.7=hb8e6e7a_2 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@ea323dc1e48634a19cca2b2693f989fae08880f1 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@99695a5e34812bfbb53cef84803033a91af137de - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@87f68c3a25cb3fac2a4c9de8c0d74ec4e58d0963 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@bf4568452ca51fe0ec810b13b2acb4da6c26412f - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@9ed6091534d638171957a17324e1a1e8f067b434 diff --git a/environments/py-3.10-linux-64.conda.lock.yml b/environments/py-3.10-linux-64.conda.lock.yml index f9bd78c1..3412b296 100644 --- a/environments/py-3.10-linux-64.conda.lock.yml +++ b/environments/py-3.10-linux-64.conda.lock.yml @@ -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.4=py310h89163eb_0 + - fonttools=4.58.5=py310h89163eb_0 - freetype=2.13.3=ha770c72_1 - fsspec=2025.5.1=pyhd8ed1ab_0 - geoana=0.7.2=py310ha2bacc8_0 @@ -44,10 +44,10 @@ dependencies: - jinja2=3.1.6=pyhd8ed1ab_0 - joblib=1.5.1=pyhd8ed1ab_0 - keyutils=1.6.1=h166bdaf_0 - - kiwisolver=1.4.7=py310h3788b33_0 + - kiwisolver=1.4.8=py310h3788b33_1 - krb5=1.21.3=h659f571_0 - lcms2=2.17=h717163a_0 - - ld_impl_linux-64=2.43=h1423503_5 + - ld_impl_linux-64=2.44=h1423503_0 - lerc=4.0.0=h0aef613_1 - libaec=1.1.4=h3f801dc_0 - libblas=3.9.0=32_hfdb39a5_mkl @@ -75,10 +75,10 @@ dependencies: - liblzma=5.8.1=hb9d3cd8_2 - libnghttp2=1.64.0=h161d5f1_0 - libnsl=2.0.1=hb9d3cd8_1 - - libpng=1.6.49=h943b412_0 + - libpng=1.6.50=h943b412_0 - libscotch=7.0.6=hea33c07_1 - libspatialindex=2.0.0=he02047a_0 - - libsqlite=3.50.1=h6cd9bfd_7 + - libsqlite=3.50.2=h6cd9bfd_0 - libssh2=1.11.1=hcf80075_0 - libstdcxx=15.1.0=h8f9b012_3 - libstdcxx-ng=15.1.0=h4852527_3 @@ -103,7 +103,7 @@ dependencies: - numcodecs=0.13.1=py310h5eaa309_0 - numpy=1.26.4=py310hb13e2d6_0 - openjpeg=2.5.3=h5fbd93e_0 - - openssl=3.5.0=h7b32b05_1 + - openssl=3.5.1=h7b32b05_0 - packaging=25.0=pyh29332c3_1 - pandas=2.3.0=py310h5eaa309_0 - partd=1.4.2=pyhd8ed1ab_0 @@ -119,7 +119,7 @@ dependencies: - pyparsing=3.2.3=pyhd8ed1ab_1 - pysocks=1.7.1=pyha55dd90_7 - python=3.10.18=hd6af730_0_cpython - - python-dateutil=2.9.0.post0=pyhff2d567_1 + - python-dateutil=2.9.0.post0=pyhe01879c_2 - python-mumps=0.0.3=py310h6410a28_0 - python-tzdata=2025.2=pyhd8ed1ab_0 - python_abi=3.10=7_cp310 @@ -140,9 +140,9 @@ dependencies: - tornado=6.5.1=py310ha75aee5_0 - tqdm=4.67.1=pyhd8ed1ab_1 - trimesh=4.1.8=pyhd8ed1ab_0 - - typing-extensions=4.14.0=h32cad80_0 + - typing-extensions=4.14.1=h4440ef1_0 - typing-inspection=0.4.1=pyhd8ed1ab_0 - - typing_extensions=4.14.0=pyhe01879c_0 + - typing_extensions=4.14.1=pyhe01879c_0 - tzdata=2025b=h78e105d_0 - unicodedata2=16.0.0=py310ha75aee5_0 - urllib3=2.5.0=pyhd8ed1ab_0 @@ -158,8 +158,8 @@ dependencies: - zstd=1.5.7=hb8e6e7a_2 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@ea323dc1e48634a19cca2b2693f989fae08880f1 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@99695a5e34812bfbb53cef84803033a91af137de - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@87f68c3a25cb3fac2a4c9de8c0d74ec4e58d0963 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@bf4568452ca51fe0ec810b13b2acb4da6c26412f - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@9ed6091534d638171957a17324e1a1e8f067b434 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 1f85b346..9b607d7f 100644 --- a/environments/py-3.10-win-64-dev.conda.lock.yml +++ b/environments/py-3.10-win-64-dev.conda.lock.yml @@ -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.9.1=py310h38315fa_0 + - coverage=7.9.2=py310hdb0e946_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.4=py310h38315fa_0 + - fonttools=4.58.5=py310hdb0e946_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.13.3=h57928b3_1 - fsspec=2025.5.1=pyhd8ed1ab_0 @@ -98,12 +98,12 @@ dependencies: - jupyter_events=0.12.0=pyh29332c3_0 - jupyter_server=2.16.0=pyhe01879c_0 - jupyter_server_terminals=0.5.3=pyhd8ed1ab_1 - - jupyterlab=4.4.3=pyhd8ed1ab_0 + - jupyterlab=4.4.4=pyhd8ed1ab_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_2 - jupyterlab_server=2.27.3=pyhd8ed1ab_1 - jupyterlab_widgets=1.1.11=pyhd8ed1ab_0 - jupytext=1.17.2=pyh80e38bb_0 - - kiwisolver=1.4.7=py310hc19bc0b_0 + - kiwisolver=1.4.8=py310he9f1925_1 - krb5=1.21.3=hdf4eb48_0 - latexcodec=2.0.1=pyh9f0ad1d_0 - lcms2=2.17=hbcf6048_0 @@ -128,10 +128,10 @@ dependencies: - libjpeg-turbo=3.1.0=h2466b09_0 - liblapack=3.9.0=32_h1aa476e_mkl - liblzma=5.8.1=h2466b09_2 - - libpng=1.6.49=h7a4582a_0 + - libpng=1.6.50=h95bef1e_0 - libsodium=1.0.20=hc70643c_0 - libspatialindex=2.0.0=h5a68840_0 - - libsqlite=3.50.1=hf5d6505_7 + - libsqlite=3.50.2=hf5d6505_0 - libssh2=1.11.1=h9aa295b_0 - libtiff=4.7.0=h05922d8_5 - libwebp-base=1.5.0=h3b0e114_0 @@ -162,12 +162,12 @@ dependencies: - nbconvert-pandoc=7.16.6=hed9df3c_0 - nbformat=5.10.4=pyhd8ed1ab_1 - nest-asyncio=1.6.0=pyhd8ed1ab_1 - - notebook=7.4.3=pyhd8ed1ab_0 + - notebook=7.4.4=pyhd8ed1ab_0 - notebook-shim=0.2.4=pyhd8ed1ab_1 - numcodecs=0.13.1=py310hb4db72f_0 - numpy=1.26.4=py310hf667824_0 - openjpeg=2.5.3=h4d64b90_0 - - openssl=3.5.0=ha4e3fda_1 + - openssl=3.5.1=h725018a_0 - overrides=7.7.0=pyhd8ed1ab_1 - packaging=25.0=pyh29332c3_1 - pandas=2.3.0=py310hb4db72f_0 @@ -201,7 +201,7 @@ dependencies: - 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-dateutil=2.9.0.post0=pyhe01879c_2 - python-fastjsonschema=2.21.1=pyhd8ed1ab_0 - python-json-logger=2.0.7=pyhd8ed1ab_0 - python-mumps=0.0.3=py310hb64895d_0 @@ -217,7 +217,7 @@ dependencies: - requests=2.32.4=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_1 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.25.1=py310hed05c55_0 + - rpds-py=0.26.0=py310h034784e_0 - rtree=1.2.0=py310h08d5ad2_1 - scikit-learn=1.4.2=py310hf2a6c47_1 - scipy=1.14.1=py310hbd0dde3_2 @@ -263,9 +263,9 @@ dependencies: - traitlets=5.14.3=pyhd8ed1ab_1 - trimesh=4.1.8=pyhd8ed1ab_0 - types-python-dateutil=2.9.0.20250516=pyhd8ed1ab_0 - - typing-extensions=4.14.0=h32cad80_0 + - typing-extensions=4.14.1=h4440ef1_0 - typing-inspection=0.4.1=pyhd8ed1ab_0 - - typing_extensions=4.14.0=pyhe01879c_0 + - typing_extensions=4.14.1=pyhe01879c_0 - typing_utils=0.1.0=pyhd8ed1ab_1 - tzdata=2025b=h78e105d_0 - uc-micro-py=1.0.3=pyhd8ed1ab_1 @@ -296,8 +296,8 @@ dependencies: - zstd=1.5.7=hbeecb71_2 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@ea323dc1e48634a19cca2b2693f989fae08880f1 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@99695a5e34812bfbb53cef84803033a91af137de - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@87f68c3a25cb3fac2a4c9de8c0d74ec4e58d0963 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@bf4568452ca51fe0ec810b13b2acb4da6c26412f - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@9ed6091534d638171957a17324e1a1e8f067b434 diff --git a/environments/py-3.10-win-64.conda.lock.yml b/environments/py-3.10-win-64.conda.lock.yml index d9005f22..cd718e0c 100644 --- a/environments/py-3.10-win-64.conda.lock.yml +++ b/environments/py-3.10-win-64.conda.lock.yml @@ -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.4=py310h38315fa_0 + - fonttools=4.58.5=py310hdb0e946_0 - freetype=2.13.3=h57928b3_1 - fsspec=2025.5.1=pyhd8ed1ab_0 - geoana=0.7.2=py310h3e8ed56_0 @@ -42,7 +42,7 @@ dependencies: - intel-openmp=2024.2.1=h57928b3_1083 - jinja2=3.1.6=pyhd8ed1ab_0 - joblib=1.5.1=pyhd8ed1ab_0 - - kiwisolver=1.4.7=py310hc19bc0b_0 + - kiwisolver=1.4.8=py310he9f1925_1 - krb5=1.21.3=hdf4eb48_0 - lcms2=2.17=hbcf6048_0 - lerc=4.0.0=h6470a55_1 @@ -66,9 +66,9 @@ dependencies: - libjpeg-turbo=3.1.0=h2466b09_0 - liblapack=3.9.0=32_h1aa476e_mkl - liblzma=5.8.1=h2466b09_2 - - libpng=1.6.49=h7a4582a_0 + - libpng=1.6.50=h95bef1e_0 - libspatialindex=2.0.0=h5a68840_0 - - libsqlite=3.50.1=hf5d6505_7 + - libsqlite=3.50.2=hf5d6505_0 - libssh2=1.11.1=h9aa295b_0 - libtiff=4.7.0=h05922d8_5 - libwebp-base=1.5.0=h3b0e114_0 @@ -87,7 +87,7 @@ dependencies: - numcodecs=0.13.1=py310hb4db72f_0 - numpy=1.26.4=py310hf667824_0 - openjpeg=2.5.3=h4d64b90_0 - - openssl=3.5.0=ha4e3fda_1 + - openssl=3.5.1=h725018a_0 - packaging=25.0=pyh29332c3_1 - pandas=2.3.0=py310hb4db72f_0 - partd=1.4.2=pyhd8ed1ab_0 @@ -103,7 +103,7 @@ dependencies: - pyparsing=3.2.3=pyhd8ed1ab_1 - pysocks=1.7.1=pyh09c184e_7 - python=3.10.18=h8c5b53a_0_cpython - - python-dateutil=2.9.0.post0=pyhff2d567_1 + - python-dateutil=2.9.0.post0=pyhe01879c_2 - python-mumps=0.0.3=py310hb64895d_0 - python-tzdata=2025.2=pyhd8ed1ab_0 - python_abi=3.10=7_cp310 @@ -123,9 +123,9 @@ dependencies: - tornado=6.5.1=py310ha8f682b_0 - tqdm=4.67.1=pyhd8ed1ab_1 - trimesh=4.1.8=pyhd8ed1ab_0 - - typing-extensions=4.14.0=h32cad80_0 + - typing-extensions=4.14.1=h4440ef1_0 - typing-inspection=0.4.1=pyhd8ed1ab_0 - - typing_extensions=4.14.0=pyhe01879c_0 + - typing_extensions=4.14.1=pyhe01879c_0 - tzdata=2025b=h78e105d_0 - ucrt=10.0.22621.0=h57928b3_1 - unicodedata2=16.0.0=py310ha8f682b_0 @@ -146,8 +146,8 @@ dependencies: - zstd=1.5.7=hbeecb71_2 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@ea323dc1e48634a19cca2b2693f989fae08880f1 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@99695a5e34812bfbb53cef84803033a91af137de - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@87f68c3a25cb3fac2a4c9de8c0d74ec4e58d0963 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@bf4568452ca51fe0ec810b13b2acb4da6c26412f - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@9ed6091534d638171957a17324e1a1e8f067b434 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 cf762658..9735ed32 100644 --- a/environments/py-3.11-linux-64-dev.conda.lock.yml +++ b/environments/py-3.11-linux-64-dev.conda.lock.yml @@ -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.9.1=py311h2dc5d0c_0 + - coverage=7.9.2=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.4=py311h2dc5d0c_0 + - fonttools=4.58.5=py311h2dc5d0c_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.13.3=ha770c72_1 - fsspec=2025.5.1=pyhd8ed1ab_0 @@ -78,7 +78,7 @@ dependencies: - importlib_resources=6.5.2=pyhd8ed1ab_0 - iniconfig=2.0.0=pyhd8ed1ab_1 - ipykernel=6.29.5=pyh3099207_0 - - ipython=9.3.0=pyhfa0c392_0 + - ipython=9.4.0=pyhfa0c392_0 - ipython_genutils=0.2.0=pyhd8ed1ab_2 - ipython_pygments_lexers=1.1.1=pyhd8ed1ab_0 - ipywidgets=7.8.5=pyhd8ed1ab_0 @@ -100,17 +100,17 @@ dependencies: - jupyter_events=0.12.0=pyh29332c3_0 - jupyter_server=2.16.0=pyhe01879c_0 - jupyter_server_terminals=0.5.3=pyhd8ed1ab_1 - - jupyterlab=4.4.3=pyhd8ed1ab_0 + - jupyterlab=4.4.4=pyhd8ed1ab_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_2 - jupyterlab_server=2.27.3=pyhd8ed1ab_1 - jupyterlab_widgets=1.1.11=pyhd8ed1ab_0 - jupytext=1.17.2=pyh80e38bb_0 - keyutils=1.6.1=h166bdaf_0 - - kiwisolver=1.4.7=py311hd18a35c_0 + - kiwisolver=1.4.8=py311hd18a35c_1 - krb5=1.21.3=h659f571_0 - latexcodec=2.0.1=pyh9f0ad1d_0 - lcms2=2.17=h717163a_0 - - ld_impl_linux-64=2.43=h1423503_5 + - ld_impl_linux-64=2.44=h1423503_0 - lerc=4.0.0=h0aef613_1 - libaec=1.1.4=h3f801dc_0 - libblas=3.9.0=32_hfdb39a5_mkl @@ -138,11 +138,11 @@ dependencies: - liblzma=5.8.1=hb9d3cd8_2 - libnghttp2=1.64.0=h161d5f1_0 - libnsl=2.0.1=hb9d3cd8_1 - - libpng=1.6.49=h943b412_0 + - libpng=1.6.50=h943b412_0 - libscotch=7.0.6=hea33c07_1 - libsodium=1.0.20=h4ab18f5_0 - libspatialindex=2.0.0=he02047a_0 - - libsqlite=3.50.1=h6cd9bfd_7 + - libsqlite=3.50.2=h6cd9bfd_0 - libssh2=1.11.1=hcf80075_0 - libstdcxx=15.1.0=h8f9b012_3 - libstdcxx-ng=15.1.0=h4852527_3 @@ -179,12 +179,12 @@ dependencies: - nbformat=5.10.4=pyhd8ed1ab_1 - ncurses=6.5=h2d0b736_3 - nest-asyncio=1.6.0=pyhd8ed1ab_1 - - notebook=7.4.3=pyhd8ed1ab_0 + - notebook=7.4.4=pyhd8ed1ab_0 - notebook-shim=0.2.4=pyhd8ed1ab_1 - numcodecs=0.15.1=py311h7db5c69_0 - numpy=1.26.4=py311h64a7726_0 - openjpeg=2.5.3=h5fbd93e_0 - - openssl=3.5.0=h7b32b05_1 + - openssl=3.5.1=h7b32b05_0 - overrides=7.7.0=pyhd8ed1ab_1 - packaging=25.0=pyh29332c3_1 - pandas=2.3.0=py311h7db5c69_0 @@ -220,7 +220,7 @@ dependencies: - 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-dateutil=2.9.0.post0=pyhe01879c_2 - python-fastjsonschema=2.21.1=pyhd8ed1ab_0 - python-json-logger=2.0.7=pyhd8ed1ab_0 - python-mumps=0.0.3=py311h4b558b0_0 @@ -235,7 +235,7 @@ dependencies: - requests=2.32.4=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_1 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.25.1=py311hdae7d1d_0 + - rpds-py=0.26.0=py311hdae7d1d_0 - rtree=1.2.0=py311ha1603b9_1 - scikit-learn=1.4.2=py311he08f58d_1 - scipy=1.14.1=py311he9a78e4_2 @@ -281,9 +281,9 @@ dependencies: - traitlets=5.14.3=pyhd8ed1ab_1 - trimesh=4.1.8=pyhd8ed1ab_0 - types-python-dateutil=2.9.0.20250516=pyhd8ed1ab_0 - - typing-extensions=4.14.0=h32cad80_0 + - typing-extensions=4.14.1=h4440ef1_0 - typing-inspection=0.4.1=pyhd8ed1ab_0 - - typing_extensions=4.14.0=pyhe01879c_0 + - typing_extensions=4.14.1=pyhe01879c_0 - typing_utils=0.1.0=pyhd8ed1ab_1 - tzdata=2025b=h78e105d_0 - uc-micro-py=1.0.3=pyhd8ed1ab_1 @@ -309,8 +309,8 @@ dependencies: - zstd=1.5.7=hb8e6e7a_2 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@ea323dc1e48634a19cca2b2693f989fae08880f1 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@99695a5e34812bfbb53cef84803033a91af137de - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@87f68c3a25cb3fac2a4c9de8c0d74ec4e58d0963 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@bf4568452ca51fe0ec810b13b2acb4da6c26412f - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@9ed6091534d638171957a17324e1a1e8f067b434 diff --git a/environments/py-3.11-linux-64.conda.lock.yml b/environments/py-3.11-linux-64.conda.lock.yml index d7db20af..2f16c49b 100644 --- a/environments/py-3.11-linux-64.conda.lock.yml +++ b/environments/py-3.11-linux-64.conda.lock.yml @@ -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.4=py311h2dc5d0c_0 + - fonttools=4.58.5=py311h2dc5d0c_0 - freetype=2.13.3=ha770c72_1 - fsspec=2025.5.1=pyhd8ed1ab_0 - geoana=0.7.2=py311h5b7b71f_0 @@ -45,10 +45,10 @@ dependencies: - jinja2=3.1.6=pyhd8ed1ab_0 - joblib=1.5.1=pyhd8ed1ab_0 - keyutils=1.6.1=h166bdaf_0 - - kiwisolver=1.4.7=py311hd18a35c_0 + - kiwisolver=1.4.8=py311hd18a35c_1 - krb5=1.21.3=h659f571_0 - lcms2=2.17=h717163a_0 - - ld_impl_linux-64=2.43=h1423503_5 + - ld_impl_linux-64=2.44=h1423503_0 - lerc=4.0.0=h0aef613_1 - libaec=1.1.4=h3f801dc_0 - libblas=3.9.0=32_hfdb39a5_mkl @@ -76,10 +76,10 @@ dependencies: - liblzma=5.8.1=hb9d3cd8_2 - libnghttp2=1.64.0=h161d5f1_0 - libnsl=2.0.1=hb9d3cd8_1 - - libpng=1.6.49=h943b412_0 + - libpng=1.6.50=h943b412_0 - libscotch=7.0.6=hea33c07_1 - libspatialindex=2.0.0=he02047a_0 - - libsqlite=3.50.1=h6cd9bfd_7 + - libsqlite=3.50.2=h6cd9bfd_0 - libssh2=1.11.1=hcf80075_0 - libstdcxx=15.1.0=h8f9b012_3 - libstdcxx-ng=15.1.0=h4852527_3 @@ -104,7 +104,7 @@ dependencies: - numcodecs=0.15.1=py311h7db5c69_0 - numpy=1.26.4=py311h64a7726_0 - openjpeg=2.5.3=h5fbd93e_0 - - openssl=3.5.0=h7b32b05_1 + - openssl=3.5.1=h7b32b05_0 - packaging=25.0=pyh29332c3_1 - pandas=2.3.0=py311h7db5c69_0 - partd=1.4.2=pyhd8ed1ab_0 @@ -120,7 +120,7 @@ dependencies: - pyparsing=3.2.3=pyhd8ed1ab_1 - pysocks=1.7.1=pyha55dd90_7 - python=3.11.13=h9e4cc4f_0_cpython - - python-dateutil=2.9.0.post0=pyhff2d567_1 + - python-dateutil=2.9.0.post0=pyhe01879c_2 - python-mumps=0.0.3=py311h4b558b0_0 - python-tzdata=2025.2=pyhd8ed1ab_0 - python_abi=3.11=7_cp311 @@ -141,9 +141,9 @@ dependencies: - tornado=6.5.1=py311h9ecbd09_0 - tqdm=4.67.1=pyhd8ed1ab_1 - trimesh=4.1.8=pyhd8ed1ab_0 - - typing-extensions=4.14.0=h32cad80_0 + - typing-extensions=4.14.1=h4440ef1_0 - typing-inspection=0.4.1=pyhd8ed1ab_0 - - typing_extensions=4.14.0=pyhe01879c_0 + - typing_extensions=4.14.1=pyhe01879c_0 - tzdata=2025b=h78e105d_0 - unicodedata2=16.0.0=py311h9ecbd09_0 - urllib3=2.5.0=pyhd8ed1ab_0 @@ -160,8 +160,8 @@ dependencies: - zstd=1.5.7=hb8e6e7a_2 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@ea323dc1e48634a19cca2b2693f989fae08880f1 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@99695a5e34812bfbb53cef84803033a91af137de - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@87f68c3a25cb3fac2a4c9de8c0d74ec4e58d0963 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@bf4568452ca51fe0ec810b13b2acb4da6c26412f - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@9ed6091534d638171957a17324e1a1e8f067b434 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 c1f9b20a..a7447aba 100644 --- a/environments/py-3.11-win-64-dev.conda.lock.yml +++ b/environments/py-3.11-win-64-dev.conda.lock.yml @@ -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.9.1=py311h5082efb_0 + - coverage=7.9.2=py311h3f79411_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.4=py311h5082efb_0 + - fonttools=4.58.5=py311h3f79411_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.13.3=h57928b3_1 - fsspec=2025.5.1=pyhd8ed1ab_0 @@ -78,7 +78,7 @@ dependencies: - iniconfig=2.0.0=pyhd8ed1ab_1 - intel-openmp=2024.2.1=h57928b3_1083 - ipykernel=6.29.5=pyh4bbf305_0 - - ipython=9.3.0=pyh6be1c34_0 + - ipython=9.4.0=pyh6be1c34_0 - ipython_genutils=0.2.0=pyhd8ed1ab_2 - ipython_pygments_lexers=1.1.1=pyhd8ed1ab_0 - ipywidgets=7.8.5=pyhd8ed1ab_0 @@ -100,12 +100,12 @@ dependencies: - jupyter_events=0.12.0=pyh29332c3_0 - jupyter_server=2.16.0=pyhe01879c_0 - jupyter_server_terminals=0.5.3=pyhd8ed1ab_1 - - jupyterlab=4.4.3=pyhd8ed1ab_0 + - jupyterlab=4.4.4=pyhd8ed1ab_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_2 - jupyterlab_server=2.27.3=pyhd8ed1ab_1 - jupyterlab_widgets=1.1.11=pyhd8ed1ab_0 - jupytext=1.17.2=pyh80e38bb_0 - - kiwisolver=1.4.7=py311h3257749_0 + - kiwisolver=1.4.8=py311h3fd045d_1 - krb5=1.21.3=hdf4eb48_0 - latexcodec=2.0.1=pyh9f0ad1d_0 - lcms2=2.17=hbcf6048_0 @@ -130,10 +130,10 @@ dependencies: - libjpeg-turbo=3.1.0=h2466b09_0 - liblapack=3.9.0=32_h1aa476e_mkl - liblzma=5.8.1=h2466b09_2 - - libpng=1.6.49=h7a4582a_0 + - libpng=1.6.50=h95bef1e_0 - libsodium=1.0.20=hc70643c_0 - libspatialindex=2.0.0=h5a68840_0 - - libsqlite=3.50.1=hf5d6505_7 + - libsqlite=3.50.2=hf5d6505_0 - libssh2=1.11.1=h9aa295b_0 - libtiff=4.7.0=h05922d8_5 - libwebp-base=1.5.0=h3b0e114_0 @@ -164,12 +164,12 @@ dependencies: - nbconvert-pandoc=7.16.6=hed9df3c_0 - nbformat=5.10.4=pyhd8ed1ab_1 - nest-asyncio=1.6.0=pyhd8ed1ab_1 - - notebook=7.4.3=pyhd8ed1ab_0 + - notebook=7.4.4=pyhd8ed1ab_0 - notebook-shim=0.2.4=pyhd8ed1ab_1 - numcodecs=0.15.1=py311hcf9f919_0 - numpy=1.26.4=py311h0b4df5a_0 - openjpeg=2.5.3=h4d64b90_0 - - openssl=3.5.0=ha4e3fda_1 + - openssl=3.5.1=h725018a_0 - overrides=7.7.0=pyhd8ed1ab_1 - packaging=25.0=pyh29332c3_1 - pandas=2.3.0=py311hcf9f919_0 @@ -203,7 +203,7 @@ dependencies: - 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-dateutil=2.9.0.post0=pyhe01879c_2 - python-fastjsonschema=2.21.1=pyhd8ed1ab_0 - python-json-logger=2.0.7=pyhd8ed1ab_0 - python-mumps=0.0.3=py311h5bfbc98_0 @@ -219,7 +219,7 @@ dependencies: - requests=2.32.4=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_1 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.25.1=py311hc4022dc_0 + - rpds-py=0.26.0=py311hf51aa87_0 - rtree=1.2.0=py311h44d53c4_1 - scikit-learn=1.4.2=py311hdcb8d17_1 - scipy=1.14.1=py311hf16d85f_2 @@ -265,9 +265,9 @@ dependencies: - traitlets=5.14.3=pyhd8ed1ab_1 - trimesh=4.1.8=pyhd8ed1ab_0 - types-python-dateutil=2.9.0.20250516=pyhd8ed1ab_0 - - typing-extensions=4.14.0=h32cad80_0 + - typing-extensions=4.14.1=h4440ef1_0 - typing-inspection=0.4.1=pyhd8ed1ab_0 - - typing_extensions=4.14.0=pyhe01879c_0 + - typing_extensions=4.14.1=pyhe01879c_0 - typing_utils=0.1.0=pyhd8ed1ab_1 - tzdata=2025b=h78e105d_0 - uc-micro-py=1.0.3=pyhd8ed1ab_1 @@ -299,8 +299,8 @@ dependencies: - zstd=1.5.7=hbeecb71_2 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@ea323dc1e48634a19cca2b2693f989fae08880f1 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@99695a5e34812bfbb53cef84803033a91af137de - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@87f68c3a25cb3fac2a4c9de8c0d74ec4e58d0963 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@bf4568452ca51fe0ec810b13b2acb4da6c26412f - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@9ed6091534d638171957a17324e1a1e8f067b434 diff --git a/environments/py-3.11-win-64.conda.lock.yml b/environments/py-3.11-win-64.conda.lock.yml index 9023c56a..af0ccc35 100644 --- a/environments/py-3.11-win-64.conda.lock.yml +++ b/environments/py-3.11-win-64.conda.lock.yml @@ -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.4=py311h5082efb_0 + - fonttools=4.58.5=py311h3f79411_0 - freetype=2.13.3=h57928b3_1 - fsspec=2025.5.1=pyhd8ed1ab_0 - geoana=0.7.2=py311h9b10771_0 @@ -43,7 +43,7 @@ dependencies: - intel-openmp=2024.2.1=h57928b3_1083 - jinja2=3.1.6=pyhd8ed1ab_0 - joblib=1.5.1=pyhd8ed1ab_0 - - kiwisolver=1.4.7=py311h3257749_0 + - kiwisolver=1.4.8=py311h3fd045d_1 - krb5=1.21.3=hdf4eb48_0 - lcms2=2.17=hbcf6048_0 - lerc=4.0.0=h6470a55_1 @@ -67,9 +67,9 @@ dependencies: - libjpeg-turbo=3.1.0=h2466b09_0 - liblapack=3.9.0=32_h1aa476e_mkl - liblzma=5.8.1=h2466b09_2 - - libpng=1.6.49=h7a4582a_0 + - libpng=1.6.50=h95bef1e_0 - libspatialindex=2.0.0=h5a68840_0 - - libsqlite=3.50.1=hf5d6505_7 + - libsqlite=3.50.2=hf5d6505_0 - libssh2=1.11.1=h9aa295b_0 - libtiff=4.7.0=h05922d8_5 - libwebp-base=1.5.0=h3b0e114_0 @@ -88,7 +88,7 @@ dependencies: - numcodecs=0.15.1=py311hcf9f919_0 - numpy=1.26.4=py311h0b4df5a_0 - openjpeg=2.5.3=h4d64b90_0 - - openssl=3.5.0=ha4e3fda_1 + - openssl=3.5.1=h725018a_0 - packaging=25.0=pyh29332c3_1 - pandas=2.3.0=py311hcf9f919_0 - partd=1.4.2=pyhd8ed1ab_0 @@ -104,7 +104,7 @@ dependencies: - pyparsing=3.2.3=pyhd8ed1ab_1 - pysocks=1.7.1=pyh09c184e_7 - python=3.11.13=h3f84c4b_0_cpython - - python-dateutil=2.9.0.post0=pyhff2d567_1 + - python-dateutil=2.9.0.post0=pyhe01879c_2 - python-mumps=0.0.3=py311h5bfbc98_0 - python-tzdata=2025.2=pyhd8ed1ab_0 - python_abi=3.11=7_cp311 @@ -124,9 +124,9 @@ dependencies: - tornado=6.5.1=py311he736701_0 - tqdm=4.67.1=pyhd8ed1ab_1 - trimesh=4.1.8=pyhd8ed1ab_0 - - typing-extensions=4.14.0=h32cad80_0 + - typing-extensions=4.14.1=h4440ef1_0 - typing-inspection=0.4.1=pyhd8ed1ab_0 - - typing_extensions=4.14.0=pyhe01879c_0 + - typing_extensions=4.14.1=pyhe01879c_0 - tzdata=2025b=h78e105d_0 - ucrt=10.0.22621.0=h57928b3_1 - unicodedata2=16.0.0=py311he736701_0 @@ -148,8 +148,8 @@ dependencies: - zstd=1.5.7=hbeecb71_2 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@ea323dc1e48634a19cca2b2693f989fae08880f1 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@99695a5e34812bfbb53cef84803033a91af137de - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@87f68c3a25cb3fac2a4c9de8c0d74ec4e58d0963 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@bf4568452ca51fe0ec810b13b2acb4da6c26412f - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@9ed6091534d638171957a17324e1a1e8f067b434 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 f3004131..5dc48f33 100644 --- a/environments/py-3.12-linux-64-dev.conda.lock.yml +++ b/environments/py-3.12-linux-64-dev.conda.lock.yml @@ -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.9.1=py312h178313f_0 + - coverage=7.9.2=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.4=py312h178313f_0 + - fonttools=4.58.5=py312h178313f_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.13.3=ha770c72_1 - fsspec=2025.5.1=pyhd8ed1ab_0 @@ -78,7 +78,7 @@ dependencies: - importlib_resources=6.5.2=pyhd8ed1ab_0 - iniconfig=2.0.0=pyhd8ed1ab_1 - ipykernel=6.29.5=pyh3099207_0 - - ipython=9.3.0=pyhfa0c392_0 + - ipython=9.4.0=pyhfa0c392_0 - ipython_genutils=0.2.0=pyhd8ed1ab_2 - ipython_pygments_lexers=1.1.1=pyhd8ed1ab_0 - ipywidgets=7.8.5=pyhd8ed1ab_0 @@ -100,17 +100,17 @@ dependencies: - jupyter_events=0.12.0=pyh29332c3_0 - jupyter_server=2.16.0=pyhe01879c_0 - jupyter_server_terminals=0.5.3=pyhd8ed1ab_1 - - jupyterlab=4.4.3=pyhd8ed1ab_0 + - jupyterlab=4.4.4=pyhd8ed1ab_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_2 - jupyterlab_server=2.27.3=pyhd8ed1ab_1 - jupyterlab_widgets=1.1.11=pyhd8ed1ab_0 - jupytext=1.17.2=pyh80e38bb_0 - keyutils=1.6.1=h166bdaf_0 - - kiwisolver=1.4.8=py312h84d6215_0 + - kiwisolver=1.4.8=py312h68727a3_1 - krb5=1.21.3=h659f571_0 - latexcodec=2.0.1=pyh9f0ad1d_0 - lcms2=2.17=h717163a_0 - - ld_impl_linux-64=2.43=h1423503_5 + - ld_impl_linux-64=2.44=h1423503_0 - lerc=4.0.0=h0aef613_1 - libaec=1.1.4=h3f801dc_0 - libblas=3.9.0=32_hfdb39a5_mkl @@ -138,11 +138,11 @@ dependencies: - liblzma=5.8.1=hb9d3cd8_2 - libnghttp2=1.64.0=h161d5f1_0 - libnsl=2.0.1=hb9d3cd8_1 - - libpng=1.6.49=h943b412_0 + - libpng=1.6.50=h943b412_0 - libscotch=7.0.6=hea33c07_1 - libsodium=1.0.20=h4ab18f5_0 - libspatialindex=2.0.0=he02047a_0 - - libsqlite=3.50.1=h6cd9bfd_7 + - libsqlite=3.50.2=h6cd9bfd_0 - libssh2=1.11.1=hcf80075_0 - libstdcxx=15.1.0=h8f9b012_3 - libstdcxx-ng=15.1.0=h4852527_3 @@ -179,12 +179,12 @@ dependencies: - nbformat=5.10.4=pyhd8ed1ab_1 - ncurses=6.5=h2d0b736_3 - nest-asyncio=1.6.0=pyhd8ed1ab_1 - - notebook=7.4.3=pyhd8ed1ab_0 + - notebook=7.4.4=pyhd8ed1ab_0 - notebook-shim=0.2.4=pyhd8ed1ab_1 - numcodecs=0.15.1=py312hf9745cd_0 - numpy=1.26.4=py312heda63a1_0 - openjpeg=2.5.3=h5fbd93e_0 - - openssl=3.5.0=h7b32b05_1 + - openssl=3.5.1=h7b32b05_0 - overrides=7.7.0=pyhd8ed1ab_1 - packaging=25.0=pyh29332c3_1 - pandas=2.3.0=py312hf9745cd_0 @@ -220,7 +220,7 @@ dependencies: - 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-dateutil=2.9.0.post0=pyhe01879c_2 - python-fastjsonschema=2.21.1=pyhd8ed1ab_0 - python-json-logger=2.0.7=pyhd8ed1ab_0 - python-mumps=0.0.3=py312h6ad3ee3_0 @@ -235,7 +235,7 @@ dependencies: - requests=2.32.4=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_1 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.25.1=py312h680f630_0 + - rpds-py=0.26.0=py312h680f630_0 - rtree=1.2.0=py312h3ed4c40_1 - scikit-learn=1.4.2=py312h1fcc3ea_1 - scipy=1.14.1=py312h62794b6_2 @@ -281,9 +281,9 @@ dependencies: - traitlets=5.14.3=pyhd8ed1ab_1 - trimesh=4.1.8=pyhd8ed1ab_0 - types-python-dateutil=2.9.0.20250516=pyhd8ed1ab_0 - - typing-extensions=4.14.0=h32cad80_0 + - typing-extensions=4.14.1=h4440ef1_0 - typing-inspection=0.4.1=pyhd8ed1ab_0 - - typing_extensions=4.14.0=pyhe01879c_0 + - typing_extensions=4.14.1=pyhe01879c_0 - typing_utils=0.1.0=pyhd8ed1ab_1 - tzdata=2025b=h78e105d_0 - uc-micro-py=1.0.3=pyhd8ed1ab_1 @@ -309,8 +309,8 @@ dependencies: - zstd=1.5.7=hb8e6e7a_2 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@ea323dc1e48634a19cca2b2693f989fae08880f1 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@99695a5e34812bfbb53cef84803033a91af137de - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@87f68c3a25cb3fac2a4c9de8c0d74ec4e58d0963 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@bf4568452ca51fe0ec810b13b2acb4da6c26412f - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@9ed6091534d638171957a17324e1a1e8f067b434 diff --git a/environments/py-3.12-linux-64.conda.lock.yml b/environments/py-3.12-linux-64.conda.lock.yml index 67fe8f49..da4cdb40 100644 --- a/environments/py-3.12-linux-64.conda.lock.yml +++ b/environments/py-3.12-linux-64.conda.lock.yml @@ -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.4=py312h178313f_0 + - fonttools=4.58.5=py312h178313f_0 - freetype=2.13.3=ha770c72_1 - fsspec=2025.5.1=pyhd8ed1ab_0 - geoana=0.7.2=py312hc39e661_0 @@ -45,10 +45,10 @@ dependencies: - jinja2=3.1.6=pyhd8ed1ab_0 - joblib=1.5.1=pyhd8ed1ab_0 - keyutils=1.6.1=h166bdaf_0 - - kiwisolver=1.4.8=py312h84d6215_0 + - kiwisolver=1.4.8=py312h68727a3_1 - krb5=1.21.3=h659f571_0 - lcms2=2.17=h717163a_0 - - ld_impl_linux-64=2.43=h1423503_5 + - ld_impl_linux-64=2.44=h1423503_0 - lerc=4.0.0=h0aef613_1 - libaec=1.1.4=h3f801dc_0 - libblas=3.9.0=32_hfdb39a5_mkl @@ -76,10 +76,10 @@ dependencies: - liblzma=5.8.1=hb9d3cd8_2 - libnghttp2=1.64.0=h161d5f1_0 - libnsl=2.0.1=hb9d3cd8_1 - - libpng=1.6.49=h943b412_0 + - libpng=1.6.50=h943b412_0 - libscotch=7.0.6=hea33c07_1 - libspatialindex=2.0.0=he02047a_0 - - libsqlite=3.50.1=h6cd9bfd_7 + - libsqlite=3.50.2=h6cd9bfd_0 - libssh2=1.11.1=hcf80075_0 - libstdcxx=15.1.0=h8f9b012_3 - libstdcxx-ng=15.1.0=h4852527_3 @@ -104,7 +104,7 @@ dependencies: - numcodecs=0.15.1=py312hf9745cd_0 - numpy=1.26.4=py312heda63a1_0 - openjpeg=2.5.3=h5fbd93e_0 - - openssl=3.5.0=h7b32b05_1 + - openssl=3.5.1=h7b32b05_0 - packaging=25.0=pyh29332c3_1 - pandas=2.3.0=py312hf9745cd_0 - partd=1.4.2=pyhd8ed1ab_0 @@ -120,7 +120,7 @@ dependencies: - pyparsing=3.2.3=pyhd8ed1ab_1 - pysocks=1.7.1=pyha55dd90_7 - python=3.12.11=h9e4cc4f_0_cpython - - python-dateutil=2.9.0.post0=pyhff2d567_1 + - python-dateutil=2.9.0.post0=pyhe01879c_2 - python-mumps=0.0.3=py312h6ad3ee3_0 - python-tzdata=2025.2=pyhd8ed1ab_0 - python_abi=3.12=7_cp312 @@ -141,9 +141,9 @@ dependencies: - tornado=6.5.1=py312h66e93f0_0 - tqdm=4.67.1=pyhd8ed1ab_1 - trimesh=4.1.8=pyhd8ed1ab_0 - - typing-extensions=4.14.0=h32cad80_0 + - typing-extensions=4.14.1=h4440ef1_0 - typing-inspection=0.4.1=pyhd8ed1ab_0 - - typing_extensions=4.14.0=pyhe01879c_0 + - typing_extensions=4.14.1=pyhe01879c_0 - tzdata=2025b=h78e105d_0 - unicodedata2=16.0.0=py312h66e93f0_0 - urllib3=2.5.0=pyhd8ed1ab_0 @@ -160,8 +160,8 @@ dependencies: - zstd=1.5.7=hb8e6e7a_2 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@ea323dc1e48634a19cca2b2693f989fae08880f1 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@99695a5e34812bfbb53cef84803033a91af137de - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@87f68c3a25cb3fac2a4c9de8c0d74ec4e58d0963 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@bf4568452ca51fe0ec810b13b2acb4da6c26412f - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@9ed6091534d638171957a17324e1a1e8f067b434 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 9887e657..d0abacd4 100644 --- a/environments/py-3.12-win-64-dev.conda.lock.yml +++ b/environments/py-3.12-win-64-dev.conda.lock.yml @@ -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.9.1=py312h31fea79_0 + - coverage=7.9.2=py312h05f76fc_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.4=py312h31fea79_0 + - fonttools=4.58.5=py312h05f76fc_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.13.3=h57928b3_1 - fsspec=2025.5.1=pyhd8ed1ab_0 @@ -78,7 +78,7 @@ dependencies: - iniconfig=2.0.0=pyhd8ed1ab_1 - intel-openmp=2024.2.1=h57928b3_1083 - ipykernel=6.29.5=pyh4bbf305_0 - - ipython=9.3.0=pyh6be1c34_0 + - ipython=9.4.0=pyh6be1c34_0 - ipython_genutils=0.2.0=pyhd8ed1ab_2 - ipython_pygments_lexers=1.1.1=pyhd8ed1ab_0 - ipywidgets=7.8.5=pyhd8ed1ab_0 @@ -100,12 +100,12 @@ dependencies: - jupyter_events=0.12.0=pyh29332c3_0 - jupyter_server=2.16.0=pyhe01879c_0 - jupyter_server_terminals=0.5.3=pyhd8ed1ab_1 - - jupyterlab=4.4.3=pyhd8ed1ab_0 + - jupyterlab=4.4.4=pyhd8ed1ab_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_2 - jupyterlab_server=2.27.3=pyhd8ed1ab_1 - jupyterlab_widgets=1.1.11=pyhd8ed1ab_0 - jupytext=1.17.2=pyh80e38bb_0 - - kiwisolver=1.4.8=py312hc790b64_0 + - kiwisolver=1.4.8=py312hf90b1b7_1 - krb5=1.21.3=hdf4eb48_0 - latexcodec=2.0.1=pyh9f0ad1d_0 - lcms2=2.17=hbcf6048_0 @@ -130,10 +130,10 @@ dependencies: - libjpeg-turbo=3.1.0=h2466b09_0 - liblapack=3.9.0=32_h1aa476e_mkl - liblzma=5.8.1=h2466b09_2 - - libpng=1.6.49=h7a4582a_0 + - libpng=1.6.50=h95bef1e_0 - libsodium=1.0.20=hc70643c_0 - libspatialindex=2.0.0=h5a68840_0 - - libsqlite=3.50.1=hf5d6505_7 + - libsqlite=3.50.2=hf5d6505_0 - libssh2=1.11.1=h9aa295b_0 - libtiff=4.7.0=h05922d8_5 - libwebp-base=1.5.0=h3b0e114_0 @@ -164,12 +164,12 @@ dependencies: - nbconvert-pandoc=7.16.6=hed9df3c_0 - nbformat=5.10.4=pyhd8ed1ab_1 - nest-asyncio=1.6.0=pyhd8ed1ab_1 - - notebook=7.4.3=pyhd8ed1ab_0 + - notebook=7.4.4=pyhd8ed1ab_0 - notebook-shim=0.2.4=pyhd8ed1ab_1 - numcodecs=0.15.1=py312h72972c8_0 - numpy=1.26.4=py312h8753938_0 - openjpeg=2.5.3=h4d64b90_0 - - openssl=3.5.0=ha4e3fda_1 + - openssl=3.5.1=h725018a_0 - overrides=7.7.0=pyhd8ed1ab_1 - packaging=25.0=pyh29332c3_1 - pandas=2.3.0=py312h72972c8_0 @@ -203,7 +203,7 @@ dependencies: - 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-dateutil=2.9.0.post0=pyhe01879c_2 - python-fastjsonschema=2.21.1=pyhd8ed1ab_0 - python-json-logger=2.0.7=pyhd8ed1ab_0 - python-mumps=0.0.3=py312h8095395_0 @@ -219,7 +219,7 @@ dependencies: - requests=2.32.4=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_1 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.25.1=py312h8422cdd_0 + - rpds-py=0.26.0=py312hdabe01f_0 - rtree=1.2.0=py312h50e5f8f_1 - scikit-learn=1.4.2=py312h816cc57_1 - scipy=1.14.1=py312h337df96_2 @@ -265,9 +265,9 @@ dependencies: - traitlets=5.14.3=pyhd8ed1ab_1 - trimesh=4.1.8=pyhd8ed1ab_0 - types-python-dateutil=2.9.0.20250516=pyhd8ed1ab_0 - - typing-extensions=4.14.0=h32cad80_0 + - typing-extensions=4.14.1=h4440ef1_0 - typing-inspection=0.4.1=pyhd8ed1ab_0 - - typing_extensions=4.14.0=pyhe01879c_0 + - typing_extensions=4.14.1=pyhe01879c_0 - typing_utils=0.1.0=pyhd8ed1ab_1 - tzdata=2025b=h78e105d_0 - uc-micro-py=1.0.3=pyhd8ed1ab_1 @@ -299,8 +299,8 @@ dependencies: - zstd=1.5.7=hbeecb71_2 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@ea323dc1e48634a19cca2b2693f989fae08880f1 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@99695a5e34812bfbb53cef84803033a91af137de - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@87f68c3a25cb3fac2a4c9de8c0d74ec4e58d0963 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@bf4568452ca51fe0ec810b13b2acb4da6c26412f - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@9ed6091534d638171957a17324e1a1e8f067b434 diff --git a/environments/py-3.12-win-64.conda.lock.yml b/environments/py-3.12-win-64.conda.lock.yml index fdf241ec..3d02b502 100644 --- a/environments/py-3.12-win-64.conda.lock.yml +++ b/environments/py-3.12-win-64.conda.lock.yml @@ -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.4=py312h31fea79_0 + - fonttools=4.58.5=py312h05f76fc_0 - freetype=2.13.3=h57928b3_1 - fsspec=2025.5.1=pyhd8ed1ab_0 - geoana=0.7.2=py312hbaa7e33_0 @@ -43,7 +43,7 @@ dependencies: - intel-openmp=2024.2.1=h57928b3_1083 - jinja2=3.1.6=pyhd8ed1ab_0 - joblib=1.5.1=pyhd8ed1ab_0 - - kiwisolver=1.4.8=py312hc790b64_0 + - kiwisolver=1.4.8=py312hf90b1b7_1 - krb5=1.21.3=hdf4eb48_0 - lcms2=2.17=hbcf6048_0 - lerc=4.0.0=h6470a55_1 @@ -67,9 +67,9 @@ dependencies: - libjpeg-turbo=3.1.0=h2466b09_0 - liblapack=3.9.0=32_h1aa476e_mkl - liblzma=5.8.1=h2466b09_2 - - libpng=1.6.49=h7a4582a_0 + - libpng=1.6.50=h95bef1e_0 - libspatialindex=2.0.0=h5a68840_0 - - libsqlite=3.50.1=hf5d6505_7 + - libsqlite=3.50.2=hf5d6505_0 - libssh2=1.11.1=h9aa295b_0 - libtiff=4.7.0=h05922d8_5 - libwebp-base=1.5.0=h3b0e114_0 @@ -88,7 +88,7 @@ dependencies: - numcodecs=0.15.1=py312h72972c8_0 - numpy=1.26.4=py312h8753938_0 - openjpeg=2.5.3=h4d64b90_0 - - openssl=3.5.0=ha4e3fda_1 + - openssl=3.5.1=h725018a_0 - packaging=25.0=pyh29332c3_1 - pandas=2.3.0=py312h72972c8_0 - partd=1.4.2=pyhd8ed1ab_0 @@ -104,7 +104,7 @@ dependencies: - pyparsing=3.2.3=pyhd8ed1ab_1 - pysocks=1.7.1=pyh09c184e_7 - python=3.12.11=h3f84c4b_0_cpython - - python-dateutil=2.9.0.post0=pyhff2d567_1 + - python-dateutil=2.9.0.post0=pyhe01879c_2 - python-mumps=0.0.3=py312h8095395_0 - python-tzdata=2025.2=pyhd8ed1ab_0 - python_abi=3.12=7_cp312 @@ -124,9 +124,9 @@ dependencies: - tornado=6.5.1=py312h4389bb4_0 - tqdm=4.67.1=pyhd8ed1ab_1 - trimesh=4.1.8=pyhd8ed1ab_0 - - typing-extensions=4.14.0=h32cad80_0 + - typing-extensions=4.14.1=h4440ef1_0 - typing-inspection=0.4.1=pyhd8ed1ab_0 - - typing_extensions=4.14.0=pyhe01879c_0 + - typing_extensions=4.14.1=pyhe01879c_0 - tzdata=2025b=h78e105d_0 - ucrt=10.0.22621.0=h57928b3_1 - unicodedata2=16.0.0=py312h4389bb4_0 @@ -148,8 +148,8 @@ dependencies: - zstd=1.5.7=hbeecb71_2 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@ea323dc1e48634a19cca2b2693f989fae08880f1 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@99695a5e34812bfbb53cef84803033a91af137de - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@87f68c3a25cb3fac2a4c9de8c0d74ec4e58d0963 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@bf4568452ca51fe0ec810b13b2acb4da6c26412f - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@9ed6091534d638171957a17324e1a1e8f067b434 diff --git a/py-3.10.conda-lock.yml b/py-3.10.conda-lock.yml index 3600c425..f76fb7dc 100644 --- a/py-3.10.conda-lock.yml +++ b/py-3.10.conda-lock.yml @@ -951,7 +951,7 @@ package: category: main optional: false - name: coverage - version: 7.9.1 + version: 7.9.2 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.9.1-py310h89163eb_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.9.2-py310h89163eb_0.conda hash: - md5: 0acae6de150b85b7f3119ec88558d22a - sha256: 6464f0923860a0e5fcbba990244c022e7477df1822c11d8b523559c76a07b7d1 + md5: f02d32dc5b0547e137f871a33e032842 + sha256: 0cc631996a1e5925a811361a3972f964a92f0c49dcbde341a24dc58130d91e52 category: dev optional: true - name: coverage - version: 7.9.1 + version: 7.9.2 manager: conda platform: win-64 dependencies: @@ -975,12 +975,12 @@ package: python_abi: 3.10.* tomli: '' 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.9.1-py310h38315fa_0.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.9.2-py310hdb0e946_0.conda hash: - md5: b8b10af95ba002ab90bbf61f20eaffab - sha256: a847093fb9a7b82502313a208c5338443573ee47b32dad9d38baab660494149c + md5: 99a4cbaef874f64995c896860445a659 + sha256: eea6d08498ff5e141837200b9446528541b72520dd319d62f63a2e27c1fdeb1b category: dev optional: true - name: cpython @@ -1414,7 +1414,7 @@ package: category: main optional: false - name: fonttools - version: 4.58.4 + version: 4.58.5 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.4-py310h89163eb_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/fonttools-4.58.5-py310h89163eb_0.conda hash: - md5: 723a77ff55b436601008d28acc982547 - sha256: 7e44c7c215fb14c6ab5f8a018fdaa1ce39d45c85c7e837e42d1adec6ce3708b0 + md5: f84b125a5ba0e319936be9aba48276ff + sha256: 379c2987b99f45530ca891ad90d5d9175665104c5658a2551776a093c1ae3500 category: main optional: false - name: fonttools - version: 4.58.4 + version: 4.58.5 manager: conda platform: win-64 dependencies: @@ -1442,12 +1442,12 @@ package: python_abi: 3.10.* ucrt: '>=10.0.20348.0' 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.4-py310h38315fa_0.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/fonttools-4.58.5-py310hdb0e946_0.conda hash: - md5: f7a8769f5923bebdc10acbbb41d28628 - sha256: 73c733190be8d59c7dd11c7bf1040e9585894ae7693d509f10f234675fd19ad5 + md5: 4838fda5927aa6d029d5951efd350c8e + sha256: 09e4e313b5f36de710edadeef96aec5a684f8834c4da3b4c7a1c9f91a47938c3 category: main optional: false - name: fqdn @@ -2775,7 +2775,7 @@ package: category: dev optional: true - name: jupyterlab - version: 4.4.3 + version: 4.4.4 manager: conda platform: linux-64 dependencies: @@ -2795,14 +2795,14 @@ package: tomli: '>=1.2.2' tornado: '>=6.2.0' traitlets: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.4.3-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.4.4-pyhd8ed1ab_0.conda hash: - md5: 4861a0c2a5a5d0481a450a9dfaf9febe - sha256: fc0235a71d852734fe92183a78cb91827367573450eba82465ae522c64230736 + md5: dbd991d0080c48dae5113a27ab6d0d70 + sha256: a6efcdbe973e12bc8bd61aa26af77f733364975000c8fdaa0d6374338018e0db category: dev optional: true - name: jupyterlab - version: 4.4.3 + version: 4.4.4 manager: conda platform: win-64 dependencies: @@ -2822,10 +2822,10 @@ package: tomli: '>=1.2.2' tornado: '>=6.2.0' traitlets: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.4.3-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.4.4-pyhd8ed1ab_0.conda hash: - md5: 4861a0c2a5a5d0481a450a9dfaf9febe - sha256: fc0235a71d852734fe92183a78cb91827367573450eba82465ae522c64230736 + md5: dbd991d0080c48dae5113a27ab6d0d70 + sha256: a6efcdbe973e12bc8bd61aa26af77f733364975000c8fdaa0d6374338018e0db category: dev optional: true - name: jupyterlab_pygments @@ -2967,7 +2967,7 @@ package: category: main optional: false - name: kiwisolver - version: 1.4.7 + version: 1.4.8 manager: conda platform: linux-64 dependencies: @@ -2976,26 +2976,26 @@ package: libstdcxx: '>=13' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://repo.prefix.dev/conda-forge/linux-64/kiwisolver-1.4.7-py310h3788b33_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/kiwisolver-1.4.8-py310h3788b33_1.conda hash: - md5: 4186d9b4d004b0fe0de6aa62496fb48a - sha256: d97a9894803674e4f8155a5e98a49337d28bdee77dfd87e1614a824d190cd086 + md5: b70dd76da5231e6073fd44c42a1d78c5 + sha256: 01270e2548efdf04411f4a6938b04df295a1194060808b497d9e60f5e16c98b7 category: main optional: false - name: kiwisolver - version: 1.4.7 + version: 1.4.8 manager: conda platform: win-64 dependencies: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/kiwisolver-1.4.7-py310hc19bc0b_0.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/kiwisolver-1.4.8-py310he9f1925_1.conda hash: - md5: 50d96539497fc7493cbe469fbb6b8b6e - sha256: a87dff54b753a2ee19188ab9491a63d40a08873f17c7797cd5c44467a2ff4f12 + md5: e2755283837d9bd45838564cf54872c8 + sha256: ea9925067a1401cd0693ea8d7dbe160e47c71bff4113bc59e526844ddc11e017 category: main optional: false - name: krb5 @@ -3087,15 +3087,15 @@ package: category: main optional: false - name: ld_impl_linux-64 - version: '2.43' + version: '2.44' manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.43-h1423503_5.conda + url: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.44-h1423503_0.conda hash: - md5: 6dc9e1305e7d3129af4ad0dabda30e56 - sha256: dcd2b1a065bbf5c54004ddf6551c775a8eb6993c8298ca8a6b92041ed413f785 + md5: e31316a586cac398b1fcdb10ace786b9 + sha256: 2a34aa8146f97f9e2fc1f3ff34e17c1008afd4a7b0e2fea164b8e5df00b8cbb4 category: main optional: false - name: lerc @@ -3754,32 +3754,32 @@ package: category: main optional: false - name: libpng - version: 1.6.49 + version: 1.6.50 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.49-h943b412_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libpng-1.6.50-h943b412_0.conda hash: - md5: 37511c874cf3b8d0034c8d24e73c0884 - sha256: c8f5dc929ba5fcee525a66777498e03bbcbfefc05a0773e5163bb08ac5122f1a + md5: 51de14db340a848869e69c632b43cca7 + sha256: c7b212bdd3f9d5450c4bae565ccb9385222bf9bb92458c2a23be36ff1b981389 category: main optional: false - name: libpng - version: 1.6.49 + version: 1.6.50 manager: conda platform: win-64 dependencies: libzlib: '>=1.3.1,<2.0a0' 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.49-h7a4582a_0.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/libpng-1.6.50-h95bef1e_0.conda hash: - md5: 27269977c8f25d499727ceabc47cee3d - sha256: 8876a2d32d3538675e035b6560691471a1571835c0bcbf23816c24c460d31439 + md5: 2e63db2e13cd6a5e2c08f771253fb8a0 + sha256: 17f3bfb6d852eec200f68a4cfb4ef1d8950b73dfa48931408e3dbdfc89a4848a category: main optional: false - name: libscotch @@ -3855,31 +3855,31 @@ package: category: main optional: false - name: libsqlite - version: 3.50.1 + version: 3.50.2 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/libsqlite-3.50.1-h6cd9bfd_7.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.50.2-h6cd9bfd_0.conda hash: - md5: c7c4888059a8324e52de475d1e7bdc53 - sha256: 9a9e5bf30178f821d4f8de25eac0ae848915bfde6a78a66ae8b77d9c33d9d0e5 + md5: b04c7eda6d7dab1e6503135e7fad4d25 + sha256: 07649c7c19b916179926006df5c38074618d35bf36cd33ab3fe8b22182bbd258 category: main optional: false - name: libsqlite - version: 3.50.1 + version: 3.50.2 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.50.1-hf5d6505_7.conda + url: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.50.2-hf5d6505_0.conda hash: - md5: 0bc3f5143b8cb9ccf9101c2f9391c594 - sha256: 08fbdeed89ae10fb383c40f0bab3e39e3675f49700b7185a109b31e273f8762a + md5: e1e6cac409e95538acdc3d33a0f34d6a + sha256: d136ecf423f83208156daa6a8c1de461a7e9780e8e4423c23c7e136be3c2ff0a category: main optional: false - name: libssh2 @@ -4886,37 +4886,37 @@ package: category: dev optional: true - name: notebook - version: 7.4.3 + version: 7.4.4 manager: conda platform: linux-64 dependencies: jupyter_server: '>=2.4.0,<3' - jupyterlab: '>=4.4.3,<4.5' + jupyterlab: '>=4.4.4,<4.5' jupyterlab_server: '>=2.27.1,<3' notebook-shim: '>=0.2,<0.3' python: '>=3.9' tornado: '>=6.2.0' - url: https://repo.prefix.dev/conda-forge/noarch/notebook-7.4.3-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/notebook-7.4.4-pyhd8ed1ab_0.conda hash: - md5: f0b767b717cab652712d29f5e4699b2a - sha256: aea1b33b734e809bd090f0bae47f4bca5da406f7bc7dd65a67b565f03c740866 + md5: dcbb5c47f5dffa7637c05df5d4068181 + sha256: 6d7e522a91dcc6f7b8b119da86534f9ad021cd9094c5db7dbfd16e48efd02857 category: dev optional: true - name: notebook - version: 7.4.3 + version: 7.4.4 manager: conda platform: win-64 dependencies: jupyter_server: '>=2.4.0,<3' - jupyterlab: '>=4.4.3,<4.5' + jupyterlab: '>=4.4.4,<4.5' jupyterlab_server: '>=2.27.1,<3' notebook-shim: '>=0.2,<0.3' python: '>=3.9' tornado: '>=6.2.0' - url: https://repo.prefix.dev/conda-forge/noarch/notebook-7.4.3-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/notebook-7.4.4-pyhd8ed1ab_0.conda hash: - md5: f0b767b717cab652712d29f5e4699b2a - sha256: aea1b33b734e809bd090f0bae47f4bca5da406f7bc7dd65a67b565f03c740866 + md5: dcbb5c47f5dffa7637c05df5d4068181 + sha256: 6d7e522a91dcc6f7b8b119da86534f9ad021cd9094c5db7dbfd16e48efd02857 category: dev optional: true - name: notebook-shim @@ -5053,32 +5053,32 @@ package: category: main optional: false - name: openssl - version: 3.5.0 + version: 3.5.1 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' ca-certificates: '' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/openssl-3.5.0-h7b32b05_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/openssl-3.5.1-h7b32b05_0.conda hash: - md5: de356753cfdbffcde5bb1e86e3aa6cd0 - sha256: b4491077c494dbf0b5eaa6d87738c22f2154e9277e5293175ec187634bd808a0 + md5: c87df2ab1448ba69169652ab9547082d + sha256: 942347492164190559e995930adcdf84e2fea05307ec8012c02a505f5be87462 category: main optional: false - name: openssl - version: 3.5.0 + version: 3.5.1 manager: conda platform: win-64 dependencies: ca-certificates: '' ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/openssl-3.5.0-ha4e3fda_1.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/openssl-3.5.1-h725018a_0.conda hash: - md5: 72c07e46b6766bb057018a9a74861b89 - sha256: 02846553d2a4c9bde850c60824d0f02803eb9c9b674d5c1a8cce25bc387e748f + md5: d124fc2fd7070177b5e2450627f8fc1a + sha256: 2b2eb73b0661ff1aed55576a3d38614852b5d857c2fa9205ac115820c523306c category: main optional: false - name: overrides @@ -6105,12 +6105,12 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' six: '>=1.5' - url: https://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda hash: - md5: 5ba79d7c71f03c678c8ead841f347d6e - sha256: a50052536f1ef8516ed11a844f9413661829aa083304dc624c5925298d078d79 + md5: 5b8d21249ff20967101ffa321cab24e8 + sha256: d6a17ece93bbd5139e02d2bd7dbfa80bee1a4261dced63f65f679121686bf664 category: main optional: false - name: python-dateutil @@ -6120,10 +6120,10 @@ package: dependencies: python: '>=3.9' six: '>=1.5' - url: https://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda hash: - md5: 5ba79d7c71f03c678c8ead841f347d6e - sha256: a50052536f1ef8516ed11a844f9413661829aa083304dc624c5925298d078d79 + md5: 5b8d21249ff20967101ffa321cab24e8 + sha256: d6a17ece93bbd5139e02d2bd7dbfa80bee1a4261dced63f65f679121686bf664 category: main optional: false - name: python-fastjsonschema @@ -6539,7 +6539,7 @@ package: category: dev optional: true - name: rpds-py - version: 0.25.1 + version: 0.26.0 manager: conda platform: linux-64 dependencies: @@ -6547,26 +6547,26 @@ package: libgcc: '>=13' python: '' python_abi: 3.10.* - url: https://repo.prefix.dev/conda-forge/linux-64/rpds-py-0.25.1-py310hbcd0ec0_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/rpds-py-0.26.0-py310hbcd0ec0_0.conda hash: - md5: 64634e6d94c79af4c01725e05e1782d7 - sha256: 8b5b5039b26d98ab6c87c7eb6cf232a4741c96d96e43902a15e6586c4acc5eed + md5: e59b1ae4bfd0e42664fa3336bff5b4f0 + sha256: ae8cf73bae0b831a39fecd20caf7e706c95cc208dee0a5dc9b06735c54f48636 category: dev optional: true - name: rpds-py - version: 0.25.1 + version: 0.26.0 manager: conda platform: win-64 dependencies: python: '' python_abi: 3.10.* ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/rpds-py-0.25.1-py310hed05c55_0.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/rpds-py-0.26.0-py310h034784e_0.conda hash: - md5: 33ae8269be085b0103aacda23205f86b - sha256: ef0525e1c1cda25d4455d2ab8935673a71b49b9a2d5c152cdbfc765ad091dd53 + md5: 76116295f7a1cdf33369fd1dacca4d0b + sha256: 81f6a3c5eb93343ef3d885efb01189e0c9fd6256a4c2f81cfcc48b254a170456 category: dev optional: true - name: rtree @@ -7821,27 +7821,27 @@ package: category: dev optional: true - name: typing-extensions - version: 4.14.0 + version: 4.14.1 manager: conda platform: linux-64 dependencies: - typing_extensions: ==4.14.0 - url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.14.0-h32cad80_0.conda + typing_extensions: ==4.14.1 + url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.14.1-h4440ef1_0.conda hash: - md5: a1cdd40fc962e2f7944bc19e01c7e584 - sha256: b8cabfa54432b0f124c0af6b6facdf8110892914fa841ac2e80ab65ac52c1ba4 + md5: 75be1a943e0a7f99fcf118309092c635 + sha256: 349951278fa8d0860ec6b61fcdc1e6f604e6fce74fabf73af2e39a37979d0223 category: main optional: false - name: typing-extensions - version: 4.14.0 + version: 4.14.1 manager: conda platform: win-64 dependencies: - typing_extensions: ==4.14.0 - url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.14.0-h32cad80_0.conda + typing_extensions: ==4.14.1 + url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.14.1-h4440ef1_0.conda hash: - md5: a1cdd40fc962e2f7944bc19e01c7e584 - sha256: b8cabfa54432b0f124c0af6b6facdf8110892914fa841ac2e80ab65ac52c1ba4 + md5: 75be1a943e0a7f99fcf118309092c635 + sha256: 349951278fa8d0860ec6b61fcdc1e6f604e6fce74fabf73af2e39a37979d0223 category: main optional: false - name: typing-inspection @@ -7871,27 +7871,27 @@ package: category: main optional: false - name: typing_extensions - version: 4.14.0 + version: 4.14.1 manager: conda platform: linux-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.14.0-pyhe01879c_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.14.1-pyhe01879c_0.conda hash: - md5: 2adcd9bb86f656d3d43bf84af59a1faf - sha256: 8561db52f278c5716b436da6d4ee5521712a49e8f3c70fcae5350f5ebb4be41c + md5: e523f4f1e980ed7a4240d7e27e9ec81f + sha256: 4f52390e331ea8b9019b87effaebc4f80c6466d09f68453f52d5cdc2a3e1194f category: main optional: false - name: typing_extensions - version: 4.14.0 + version: 4.14.1 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.14.0-pyhe01879c_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.14.1-pyhe01879c_0.conda hash: - md5: 2adcd9bb86f656d3d43bf84af59a1faf - sha256: 8561db52f278c5716b436da6d4ee5521712a49e8f3c70fcae5350f5ebb4be41c + md5: e523f4f1e980ed7a4240d7e27e9ec81f + sha256: 4f52390e331ea8b9019b87effaebc4f80c6466d09f68453f52d5cdc2a3e1194f category: main optional: false - name: typing_utils @@ -8589,12 +8589,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@99695a5e34812bfbb53cef84803033a91af137de + url: git+https://github.com/MiraGeoscience/geoh5py.git@87f68c3a25cb3fac2a4c9de8c0d74ec4e58d0963 hash: - sha256: 99695a5e34812bfbb53cef84803033a91af137de + sha256: 87f68c3a25cb3fac2a4c9de8c0d74ec4e58d0963 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@99695a5e34812bfbb53cef84803033a91af137de + url: git+https://github.com/MiraGeoscience/geoh5py.git@87f68c3a25cb3fac2a4c9de8c0d74ec4e58d0963 category: main optional: false - name: geoh5py @@ -8606,16 +8606,16 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@99695a5e34812bfbb53cef84803033a91af137de + url: git+https://github.com/MiraGeoscience/geoh5py.git@87f68c3a25cb3fac2a4c9de8c0d74ec4e58d0963 hash: - sha256: 99695a5e34812bfbb53cef84803033a91af137de + sha256: 87f68c3a25cb3fac2a4c9de8c0d74ec4e58d0963 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@99695a5e34812bfbb53cef84803033a91af137de + url: git+https://github.com/MiraGeoscience/geoh5py.git@87f68c3a25cb3fac2a4c9de8c0d74ec4e58d0963 category: main optional: false - name: mira-simpeg - version: 0.23.0.1a5.dev33+gf72a1367e + version: 0.23.0.1a5.dev35+gbf4568452 manager: pip platform: linux-64 dependencies: @@ -8627,16 +8627,16 @@ package: numpy: '>=1.22' pymatsolver: '>=0.3' scipy: '>=1.8' - url: git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 + url: git+https://github.com/MiraGeoscience/simpeg.git@bf4568452ca51fe0ec810b13b2acb4da6c26412f hash: - sha256: f72a1367edcb2da969002ca06f18f532340b3c27 + sha256: bf4568452ca51fe0ec810b13b2acb4da6c26412f source: type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 + url: git+https://github.com/MiraGeoscience/simpeg.git@bf4568452ca51fe0ec810b13b2acb4da6c26412f category: main optional: false - name: mira-simpeg - version: 0.23.0.1a5.dev33+gf72a1367e + version: 0.23.0.1a5.dev35+gbf4568452 manager: pip platform: win-64 dependencies: @@ -8648,12 +8648,12 @@ package: numpy: '>=1.22' pymatsolver: '>=0.3' scipy: '>=1.8' - url: git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 + url: git+https://github.com/MiraGeoscience/simpeg.git@bf4568452ca51fe0ec810b13b2acb4da6c26412f hash: - sha256: f72a1367edcb2da969002ca06f18f532340b3c27 + sha256: bf4568452ca51fe0ec810b13b2acb4da6c26412f source: type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 + url: git+https://github.com/MiraGeoscience/simpeg.git@bf4568452ca51fe0ec810b13b2acb4da6c26412f category: main optional: false - name: octree-creation-app diff --git a/py-3.11.conda-lock.yml b/py-3.11.conda-lock.yml index c434bda3..08d14706 100644 --- a/py-3.11.conda-lock.yml +++ b/py-3.11.conda-lock.yml @@ -949,7 +949,7 @@ package: category: main optional: false - name: coverage - version: 7.9.1 + version: 7.9.2 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.9.1-py311h2dc5d0c_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.9.2-py311h2dc5d0c_0.conda hash: - md5: f524bd18889f169f2fa8dc70df1c53c3 - sha256: 09245391f91135f4eea87d64107e82d4fb4b7d4fbd6596ea6cc126645191220c + md5: 4a4d2bb7e4d14efb7320206a57467029 + sha256: bd58cbea4606052fc7f1236d4ae8febc95f877dd34e588f6060147e4f43aafde category: dev optional: true - name: coverage - version: 7.9.1 + version: 7.9.2 manager: conda platform: win-64 dependencies: @@ -973,12 +973,12 @@ package: python_abi: 3.11.* tomli: '' 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.9.1-py311h5082efb_0.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.9.2-py311h3f79411_0.conda hash: - md5: a12491bec053dd704f8e467127e20b6a - sha256: 821c280024834cdf88038452e3c131140c9e8bc310617349c0deecffca2c2196 + md5: 9aa6ae84c02129fb9ba65336eed930bf + sha256: 5e59efb460966daa47c4bfc8b2b3db99bd26edef97c598c4cf5140f77dfe33f7 category: dev optional: true - name: cpython @@ -1438,7 +1438,7 @@ package: category: main optional: false - name: fonttools - version: 4.58.4 + version: 4.58.5 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.4-py311h2dc5d0c_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/fonttools-4.58.5-py311h2dc5d0c_0.conda hash: - md5: dd3ef31d2bf022668f30859d5e11c83e - sha256: f57df9d0573fa04b53afdaa5253bc4f1902357cca9265951f9d6ebe46567a40e + md5: 13ca35ec6ae88e9c2c71cef129ac73f2 + sha256: ef571847af828f47addd4df366c85dd0a0515c6899aad2222106b68a7ed08ab3 category: main optional: false - name: fonttools - version: 4.58.4 + version: 4.58.5 manager: conda platform: win-64 dependencies: @@ -1466,12 +1466,12 @@ package: python_abi: 3.11.* ucrt: '>=10.0.20348.0' 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.4-py311h5082efb_0.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/fonttools-4.58.5-py311h3f79411_0.conda hash: - md5: 0619fa68408637bbfb263aa8396a61a9 - sha256: 0381a0b6c32cddbeaab39750590205a97604b52faae1c7db7d7891ac4710be60 + md5: ff4c3b92e086ac37cd4b6b66d504b5f7 + sha256: c7ac08f1c0b93cd7edd57d9adf4fa5a5fdfd8da299551a45e0dcc2a2a6caf290 category: main optional: false - name: fqdn @@ -2087,7 +2087,7 @@ package: category: dev optional: true - name: ipython - version: 9.3.0 + version: 9.4.0 manager: conda platform: linux-64 dependencies: @@ -2105,14 +2105,14 @@ package: stack_data: '' traitlets: '>=5.13.0' typing_extensions: '>=4.6' - url: https://repo.prefix.dev/conda-forge/noarch/ipython-9.3.0-pyhfa0c392_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ipython-9.4.0-pyhfa0c392_0.conda hash: - md5: 270dbfb30fe759b39ce0c9fdbcd7be10 - sha256: ee5d526cba0c0a5981cbcbcadc37a76d257627a904ed2cd2db45821735c93ebd + md5: cb7706b10f35e7507917cefa0978a66d + sha256: ff5138bf6071ca01d84e1329f6baa96f0723df6fe183cfa1ab3ebc96240e6d8f category: dev optional: true - name: ipython - version: 9.3.0 + version: 9.4.0 manager: conda platform: win-64 dependencies: @@ -2130,10 +2130,10 @@ package: stack_data: '' traitlets: '>=5.13.0' typing_extensions: '>=4.6' - url: https://repo.prefix.dev/conda-forge/noarch/ipython-9.3.0-pyh6be1c34_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ipython-9.4.0-pyh6be1c34_0.conda hash: - md5: 73e4ba4c8247f744be670f4da4f132e2 - sha256: b6189de4e9f3d007a11e6e1df023c2bb73cf1864f63ca154c5ff8f0cdf601a50 + md5: b551e25e4fb27ccb51aff2c5dcf178f4 + sha256: 8fb441c9f4b50e38b6059e8984e49208a4e2a4ec4e41b543ebaa894f8261d4c9 category: dev optional: true - name: ipython_genutils @@ -2827,7 +2827,7 @@ package: category: dev optional: true - name: jupyterlab - version: 4.4.3 + version: 4.4.4 manager: conda platform: linux-64 dependencies: @@ -2847,14 +2847,14 @@ package: tomli: '>=1.2.2' tornado: '>=6.2.0' traitlets: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.4.3-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.4.4-pyhd8ed1ab_0.conda hash: - md5: 4861a0c2a5a5d0481a450a9dfaf9febe - sha256: fc0235a71d852734fe92183a78cb91827367573450eba82465ae522c64230736 + md5: dbd991d0080c48dae5113a27ab6d0d70 + sha256: a6efcdbe973e12bc8bd61aa26af77f733364975000c8fdaa0d6374338018e0db category: dev optional: true - name: jupyterlab - version: 4.4.3 + version: 4.4.4 manager: conda platform: win-64 dependencies: @@ -2874,10 +2874,10 @@ package: tomli: '>=1.2.2' tornado: '>=6.2.0' traitlets: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.4.3-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.4.4-pyhd8ed1ab_0.conda hash: - md5: 4861a0c2a5a5d0481a450a9dfaf9febe - sha256: fc0235a71d852734fe92183a78cb91827367573450eba82465ae522c64230736 + md5: dbd991d0080c48dae5113a27ab6d0d70 + sha256: a6efcdbe973e12bc8bd61aa26af77f733364975000c8fdaa0d6374338018e0db category: dev optional: true - name: jupyterlab_pygments @@ -3019,7 +3019,7 @@ package: category: main optional: false - name: kiwisolver - version: 1.4.7 + version: 1.4.8 manager: conda platform: linux-64 dependencies: @@ -3028,26 +3028,26 @@ package: libstdcxx: '>=13' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://repo.prefix.dev/conda-forge/linux-64/kiwisolver-1.4.7-py311hd18a35c_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/kiwisolver-1.4.8-py311hd18a35c_1.conda hash: - md5: be34c90cce87090d24da64a7c239ca96 - sha256: 4af11cbc063096a284fe1689b33424e7e49732a27fd396d74c7dee03d1e788ee + md5: bb17b97b0c0d86e052134bf21af5c03d + sha256: 1a1f73000796c0429ecbcc8a869b9f64e6e95baa49233c0777bfab8fb26cd75a category: main optional: false - name: kiwisolver - version: 1.4.7 + version: 1.4.8 manager: conda platform: win-64 dependencies: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/kiwisolver-1.4.7-py311h3257749_0.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/kiwisolver-1.4.8-py311h3fd045d_1.conda hash: - md5: 18fd1ac3d79a8d6550eaea5ceaa00036 - sha256: a2079e13d1345a5dd61df6be933e828e805051256e7260009ba93fce55aebd75 + md5: b6946e850c2df74a0b0aede30c85fbee + sha256: 223c426ba94e58f9e7b283403e4cd8b2388a88104914b4f22129ca2cb643c634 category: main optional: false - name: krb5 @@ -3139,15 +3139,15 @@ package: category: main optional: false - name: ld_impl_linux-64 - version: '2.43' + version: '2.44' manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.43-h1423503_5.conda + url: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.44-h1423503_0.conda hash: - md5: 6dc9e1305e7d3129af4ad0dabda30e56 - sha256: dcd2b1a065bbf5c54004ddf6551c775a8eb6993c8298ca8a6b92041ed413f785 + md5: e31316a586cac398b1fcdb10ace786b9 + sha256: 2a34aa8146f97f9e2fc1f3ff34e17c1008afd4a7b0e2fea164b8e5df00b8cbb4 category: main optional: false - name: lerc @@ -3806,32 +3806,32 @@ package: category: main optional: false - name: libpng - version: 1.6.49 + version: 1.6.50 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.49-h943b412_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libpng-1.6.50-h943b412_0.conda hash: - md5: 37511c874cf3b8d0034c8d24e73c0884 - sha256: c8f5dc929ba5fcee525a66777498e03bbcbfefc05a0773e5163bb08ac5122f1a + md5: 51de14db340a848869e69c632b43cca7 + sha256: c7b212bdd3f9d5450c4bae565ccb9385222bf9bb92458c2a23be36ff1b981389 category: main optional: false - name: libpng - version: 1.6.49 + version: 1.6.50 manager: conda platform: win-64 dependencies: libzlib: '>=1.3.1,<2.0a0' 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.49-h7a4582a_0.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/libpng-1.6.50-h95bef1e_0.conda hash: - md5: 27269977c8f25d499727ceabc47cee3d - sha256: 8876a2d32d3538675e035b6560691471a1571835c0bcbf23816c24c460d31439 + md5: 2e63db2e13cd6a5e2c08f771253fb8a0 + sha256: 17f3bfb6d852eec200f68a4cfb4ef1d8950b73dfa48931408e3dbdfc89a4848a category: main optional: false - name: libscotch @@ -3907,31 +3907,31 @@ package: category: main optional: false - name: libsqlite - version: 3.50.1 + version: 3.50.2 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/libsqlite-3.50.1-h6cd9bfd_7.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.50.2-h6cd9bfd_0.conda hash: - md5: c7c4888059a8324e52de475d1e7bdc53 - sha256: 9a9e5bf30178f821d4f8de25eac0ae848915bfde6a78a66ae8b77d9c33d9d0e5 + md5: b04c7eda6d7dab1e6503135e7fad4d25 + sha256: 07649c7c19b916179926006df5c38074618d35bf36cd33ab3fe8b22182bbd258 category: main optional: false - name: libsqlite - version: 3.50.1 + version: 3.50.2 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.50.1-hf5d6505_7.conda + url: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.50.2-hf5d6505_0.conda hash: - md5: 0bc3f5143b8cb9ccf9101c2f9391c594 - sha256: 08fbdeed89ae10fb383c40f0bab3e39e3675f49700b7185a109b31e273f8762a + md5: e1e6cac409e95538acdc3d33a0f34d6a + sha256: d136ecf423f83208156daa6a8c1de461a7e9780e8e4423c23c7e136be3c2ff0a category: main optional: false - name: libssh2 @@ -4938,37 +4938,37 @@ package: category: dev optional: true - name: notebook - version: 7.4.3 + version: 7.4.4 manager: conda platform: linux-64 dependencies: jupyter_server: '>=2.4.0,<3' - jupyterlab: '>=4.4.3,<4.5' + jupyterlab: '>=4.4.4,<4.5' jupyterlab_server: '>=2.27.1,<3' notebook-shim: '>=0.2,<0.3' python: '>=3.9' tornado: '>=6.2.0' - url: https://repo.prefix.dev/conda-forge/noarch/notebook-7.4.3-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/notebook-7.4.4-pyhd8ed1ab_0.conda hash: - md5: f0b767b717cab652712d29f5e4699b2a - sha256: aea1b33b734e809bd090f0bae47f4bca5da406f7bc7dd65a67b565f03c740866 + md5: dcbb5c47f5dffa7637c05df5d4068181 + sha256: 6d7e522a91dcc6f7b8b119da86534f9ad021cd9094c5db7dbfd16e48efd02857 category: dev optional: true - name: notebook - version: 7.4.3 + version: 7.4.4 manager: conda platform: win-64 dependencies: jupyter_server: '>=2.4.0,<3' - jupyterlab: '>=4.4.3,<4.5' + jupyterlab: '>=4.4.4,<4.5' jupyterlab_server: '>=2.27.1,<3' notebook-shim: '>=0.2,<0.3' python: '>=3.9' tornado: '>=6.2.0' - url: https://repo.prefix.dev/conda-forge/noarch/notebook-7.4.3-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/notebook-7.4.4-pyhd8ed1ab_0.conda hash: - md5: f0b767b717cab652712d29f5e4699b2a - sha256: aea1b33b734e809bd090f0bae47f4bca5da406f7bc7dd65a67b565f03c740866 + md5: dcbb5c47f5dffa7637c05df5d4068181 + sha256: 6d7e522a91dcc6f7b8b119da86534f9ad021cd9094c5db7dbfd16e48efd02857 category: dev optional: true - name: notebook-shim @@ -5107,32 +5107,32 @@ package: category: main optional: false - name: openssl - version: 3.5.0 + version: 3.5.1 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' ca-certificates: '' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/openssl-3.5.0-h7b32b05_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/openssl-3.5.1-h7b32b05_0.conda hash: - md5: de356753cfdbffcde5bb1e86e3aa6cd0 - sha256: b4491077c494dbf0b5eaa6d87738c22f2154e9277e5293175ec187634bd808a0 + md5: c87df2ab1448ba69169652ab9547082d + sha256: 942347492164190559e995930adcdf84e2fea05307ec8012c02a505f5be87462 category: main optional: false - name: openssl - version: 3.5.0 + version: 3.5.1 manager: conda platform: win-64 dependencies: ca-certificates: '' ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/openssl-3.5.0-ha4e3fda_1.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/openssl-3.5.1-h725018a_0.conda hash: - md5: 72c07e46b6766bb057018a9a74861b89 - sha256: 02846553d2a4c9bde850c60824d0f02803eb9c9b674d5c1a8cce25bc387e748f + md5: d124fc2fd7070177b5e2450627f8fc1a + sha256: 2b2eb73b0661ff1aed55576a3d38614852b5d857c2fa9205ac115820c523306c category: main optional: false - name: overrides @@ -6161,10 +6161,10 @@ package: dependencies: python: '>=3.9' six: '>=1.5' - url: https://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda hash: - md5: 5ba79d7c71f03c678c8ead841f347d6e - sha256: a50052536f1ef8516ed11a844f9413661829aa083304dc624c5925298d078d79 + md5: 5b8d21249ff20967101ffa321cab24e8 + sha256: d6a17ece93bbd5139e02d2bd7dbfa80bee1a4261dced63f65f679121686bf664 category: main optional: false - name: python-dateutil @@ -6174,10 +6174,10 @@ package: dependencies: python: '>=3.9' six: '>=1.5' - url: https://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda hash: - md5: 5ba79d7c71f03c678c8ead841f347d6e - sha256: a50052536f1ef8516ed11a844f9413661829aa083304dc624c5925298d078d79 + md5: 5b8d21249ff20967101ffa321cab24e8 + sha256: d6a17ece93bbd5139e02d2bd7dbfa80bee1a4261dced63f65f679121686bf664 category: main optional: false - name: python-fastjsonschema @@ -6593,7 +6593,7 @@ package: category: dev optional: true - name: rpds-py - version: 0.25.1 + version: 0.26.0 manager: conda platform: linux-64 dependencies: @@ -6601,26 +6601,26 @@ package: libgcc: '>=13' python: '' python_abi: 3.11.* - url: https://repo.prefix.dev/conda-forge/linux-64/rpds-py-0.25.1-py311hdae7d1d_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/rpds-py-0.26.0-py311hdae7d1d_0.conda hash: - md5: a82b805c84bca54329510d03656cf57b - sha256: 9654a1c11dda67b2782cad03f2a3793e18dbf5d9dbf5d2fdf86bdac3f2ad8a1d + md5: 875fcd394b4ea7df4f73827db7674a82 + sha256: 552e826f953f974f20573c8fb061136a24ca0456c73ecf99e0da24c2aed281e8 category: dev optional: true - name: rpds-py - version: 0.25.1 + version: 0.26.0 manager: conda platform: win-64 dependencies: python: '' python_abi: 3.11.* ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/rpds-py-0.25.1-py311hc4022dc_0.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/rpds-py-0.26.0-py311hf51aa87_0.conda hash: - md5: 9cbe2af742a0fa8387caef089682a92f - sha256: 3a76edb8f446351f36eb43a215e0df0b444f73b0f22453c0966611653b05c06f + md5: fde2d272a1f0659b7c0cc8b6465976b9 + sha256: 100b94d884fe06a7d97ad6ddcefa4a125fa86a8d65f0144fe19526e372fef789 category: dev optional: true - name: rtree @@ -7875,27 +7875,27 @@ package: category: dev optional: true - name: typing-extensions - version: 4.14.0 + version: 4.14.1 manager: conda platform: linux-64 dependencies: - typing_extensions: ==4.14.0 - url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.14.0-h32cad80_0.conda + typing_extensions: ==4.14.1 + url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.14.1-h4440ef1_0.conda hash: - md5: a1cdd40fc962e2f7944bc19e01c7e584 - sha256: b8cabfa54432b0f124c0af6b6facdf8110892914fa841ac2e80ab65ac52c1ba4 + md5: 75be1a943e0a7f99fcf118309092c635 + sha256: 349951278fa8d0860ec6b61fcdc1e6f604e6fce74fabf73af2e39a37979d0223 category: main optional: false - name: typing-extensions - version: 4.14.0 + version: 4.14.1 manager: conda platform: win-64 dependencies: - typing_extensions: ==4.14.0 - url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.14.0-h32cad80_0.conda + typing_extensions: ==4.14.1 + url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.14.1-h4440ef1_0.conda hash: - md5: a1cdd40fc962e2f7944bc19e01c7e584 - sha256: b8cabfa54432b0f124c0af6b6facdf8110892914fa841ac2e80ab65ac52c1ba4 + md5: 75be1a943e0a7f99fcf118309092c635 + sha256: 349951278fa8d0860ec6b61fcdc1e6f604e6fce74fabf73af2e39a37979d0223 category: main optional: false - name: typing-inspection @@ -7925,27 +7925,27 @@ package: category: main optional: false - name: typing_extensions - version: 4.14.0 + version: 4.14.1 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.14.0-pyhe01879c_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.14.1-pyhe01879c_0.conda hash: - md5: 2adcd9bb86f656d3d43bf84af59a1faf - sha256: 8561db52f278c5716b436da6d4ee5521712a49e8f3c70fcae5350f5ebb4be41c + md5: e523f4f1e980ed7a4240d7e27e9ec81f + sha256: 4f52390e331ea8b9019b87effaebc4f80c6466d09f68453f52d5cdc2a3e1194f category: main optional: false - name: typing_extensions - version: 4.14.0 + version: 4.14.1 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.14.0-pyhe01879c_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.14.1-pyhe01879c_0.conda hash: - md5: 2adcd9bb86f656d3d43bf84af59a1faf - sha256: 8561db52f278c5716b436da6d4ee5521712a49e8f3c70fcae5350f5ebb4be41c + md5: e523f4f1e980ed7a4240d7e27e9ec81f + sha256: 4f52390e331ea8b9019b87effaebc4f80c6466d09f68453f52d5cdc2a3e1194f category: main optional: false - name: typing_utils @@ -8674,12 +8674,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@99695a5e34812bfbb53cef84803033a91af137de + url: git+https://github.com/MiraGeoscience/geoh5py.git@87f68c3a25cb3fac2a4c9de8c0d74ec4e58d0963 hash: - sha256: 99695a5e34812bfbb53cef84803033a91af137de + sha256: 87f68c3a25cb3fac2a4c9de8c0d74ec4e58d0963 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@99695a5e34812bfbb53cef84803033a91af137de + url: git+https://github.com/MiraGeoscience/geoh5py.git@87f68c3a25cb3fac2a4c9de8c0d74ec4e58d0963 category: main optional: false - name: geoh5py @@ -8691,16 +8691,16 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@99695a5e34812bfbb53cef84803033a91af137de + url: git+https://github.com/MiraGeoscience/geoh5py.git@87f68c3a25cb3fac2a4c9de8c0d74ec4e58d0963 hash: - sha256: 99695a5e34812bfbb53cef84803033a91af137de + sha256: 87f68c3a25cb3fac2a4c9de8c0d74ec4e58d0963 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@99695a5e34812bfbb53cef84803033a91af137de + url: git+https://github.com/MiraGeoscience/geoh5py.git@87f68c3a25cb3fac2a4c9de8c0d74ec4e58d0963 category: main optional: false - name: mira-simpeg - version: 0.23.0.1a5.dev33+gf72a1367e + version: 0.23.0.1a5.dev35+gbf4568452 manager: pip platform: linux-64 dependencies: @@ -8712,16 +8712,16 @@ package: numpy: '>=1.22' pymatsolver: '>=0.3' scipy: '>=1.8' - url: git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 + url: git+https://github.com/MiraGeoscience/simpeg.git@bf4568452ca51fe0ec810b13b2acb4da6c26412f hash: - sha256: f72a1367edcb2da969002ca06f18f532340b3c27 + sha256: bf4568452ca51fe0ec810b13b2acb4da6c26412f source: type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 + url: git+https://github.com/MiraGeoscience/simpeg.git@bf4568452ca51fe0ec810b13b2acb4da6c26412f category: main optional: false - name: mira-simpeg - version: 0.23.0.1a5.dev33+gf72a1367e + version: 0.23.0.1a5.dev35+gbf4568452 manager: pip platform: win-64 dependencies: @@ -8733,12 +8733,12 @@ package: numpy: '>=1.22' pymatsolver: '>=0.3' scipy: '>=1.8' - url: git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 + url: git+https://github.com/MiraGeoscience/simpeg.git@bf4568452ca51fe0ec810b13b2acb4da6c26412f hash: - sha256: f72a1367edcb2da969002ca06f18f532340b3c27 + sha256: bf4568452ca51fe0ec810b13b2acb4da6c26412f source: type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 + url: git+https://github.com/MiraGeoscience/simpeg.git@bf4568452ca51fe0ec810b13b2acb4da6c26412f category: main optional: false - name: octree-creation-app diff --git a/py-3.12.conda-lock.yml b/py-3.12.conda-lock.yml index 08f0e359..82dcc2e0 100644 --- a/py-3.12.conda-lock.yml +++ b/py-3.12.conda-lock.yml @@ -949,7 +949,7 @@ package: category: main optional: false - name: coverage - version: 7.9.1 + version: 7.9.2 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.9.1-py312h178313f_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.9.2-py312h178313f_0.conda hash: - md5: 4c18b79fa2a3371557ed3663876e5dcc - sha256: bef32c5830b7701705660ef18d5d6ad7c597ebab196954c012e8a1cb4af0d3bc + md5: c6fbd05ceaeed83ef044de66e3f26fef + sha256: fff058f8a145faed110680339ebbadfeb57b8ecb7164a415856d27f3c2fb6b1f category: dev optional: true - name: coverage - version: 7.9.1 + version: 7.9.2 manager: conda platform: win-64 dependencies: @@ -973,12 +973,12 @@ package: python_abi: 3.12.* tomli: '' 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.9.1-py312h31fea79_0.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.9.2-py312h05f76fc_0.conda hash: - md5: 05437668629deb7fdb7af513d43249c0 - sha256: d8a7874de0cd78242cd24b592c41ca2fab7898eedf3b6aa9e7243027ee9aed22 + md5: a210adf138c93e937a61548442be65b1 + sha256: e1eca9b5dccb42fe3b6030cc6ec2a54a8ba62416dad77981a4d9e6db04d80db4 category: dev optional: true - name: cpython @@ -1438,7 +1438,7 @@ package: category: main optional: false - name: fonttools - version: 4.58.4 + version: 4.58.5 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.4-py312h178313f_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/fonttools-4.58.5-py312h178313f_0.conda hash: - md5: 223a4616e3db7336569eafefac04ebbf - sha256: aa29952ac29ab4c4dad091794513241c1f732c55c58ba109f02550bc83081dc9 + md5: 867170cb17a9497811c303a2e5e502bf + sha256: 55c772e6eda4e9acb1cf7279d3cd715b96ce118a683c9f1b0920fd3780d9c750 category: main optional: false - name: fonttools - version: 4.58.4 + version: 4.58.5 manager: conda platform: win-64 dependencies: @@ -1466,12 +1466,12 @@ package: python_abi: 3.12.* ucrt: '>=10.0.20348.0' 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.4-py312h31fea79_0.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/fonttools-4.58.5-py312h05f76fc_0.conda hash: - md5: ea00f492c19ac1799f510617ef502e0e - sha256: 4d3d830517f29e43e87e7f6998fd63c64a9bab504ee4441ab7c86ef49af3cb6b + md5: a05150dc1d6b40efd0671f1c31f84187 + sha256: 63080138e8128b0859387b3e8a7c74a21834475c5b6942373ee2251d65b9b906 category: main optional: false - name: fqdn @@ -2087,7 +2087,7 @@ package: category: dev optional: true - name: ipython - version: 9.3.0 + version: 9.4.0 manager: conda platform: linux-64 dependencies: @@ -2105,14 +2105,14 @@ package: stack_data: '' traitlets: '>=5.13.0' typing_extensions: '>=4.6' - url: https://repo.prefix.dev/conda-forge/noarch/ipython-9.3.0-pyhfa0c392_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ipython-9.4.0-pyhfa0c392_0.conda hash: - md5: 270dbfb30fe759b39ce0c9fdbcd7be10 - sha256: ee5d526cba0c0a5981cbcbcadc37a76d257627a904ed2cd2db45821735c93ebd + md5: cb7706b10f35e7507917cefa0978a66d + sha256: ff5138bf6071ca01d84e1329f6baa96f0723df6fe183cfa1ab3ebc96240e6d8f category: dev optional: true - name: ipython - version: 9.3.0 + version: 9.4.0 manager: conda platform: win-64 dependencies: @@ -2130,10 +2130,10 @@ package: stack_data: '' traitlets: '>=5.13.0' typing_extensions: '>=4.6' - url: https://repo.prefix.dev/conda-forge/noarch/ipython-9.3.0-pyh6be1c34_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ipython-9.4.0-pyh6be1c34_0.conda hash: - md5: 73e4ba4c8247f744be670f4da4f132e2 - sha256: b6189de4e9f3d007a11e6e1df023c2bb73cf1864f63ca154c5ff8f0cdf601a50 + md5: b551e25e4fb27ccb51aff2c5dcf178f4 + sha256: 8fb441c9f4b50e38b6059e8984e49208a4e2a4ec4e41b543ebaa894f8261d4c9 category: dev optional: true - name: ipython_genutils @@ -2827,7 +2827,7 @@ package: category: dev optional: true - name: jupyterlab - version: 4.4.3 + version: 4.4.4 manager: conda platform: linux-64 dependencies: @@ -2847,14 +2847,14 @@ package: tomli: '>=1.2.2' tornado: '>=6.2.0' traitlets: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.4.3-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.4.4-pyhd8ed1ab_0.conda hash: - md5: 4861a0c2a5a5d0481a450a9dfaf9febe - sha256: fc0235a71d852734fe92183a78cb91827367573450eba82465ae522c64230736 + md5: dbd991d0080c48dae5113a27ab6d0d70 + sha256: a6efcdbe973e12bc8bd61aa26af77f733364975000c8fdaa0d6374338018e0db category: dev optional: true - name: jupyterlab - version: 4.4.3 + version: 4.4.4 manager: conda platform: win-64 dependencies: @@ -2874,10 +2874,10 @@ package: tomli: '>=1.2.2' tornado: '>=6.2.0' traitlets: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.4.3-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.4.4-pyhd8ed1ab_0.conda hash: - md5: 4861a0c2a5a5d0481a450a9dfaf9febe - sha256: fc0235a71d852734fe92183a78cb91827367573450eba82465ae522c64230736 + md5: dbd991d0080c48dae5113a27ab6d0d70 + sha256: a6efcdbe973e12bc8bd61aa26af77f733364975000c8fdaa0d6374338018e0db category: dev optional: true - name: jupyterlab_pygments @@ -3028,10 +3028,10 @@ package: libstdcxx: '>=13' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/kiwisolver-1.4.8-py312h84d6215_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/kiwisolver-1.4.8-py312h68727a3_1.conda hash: - md5: 6713467dc95509683bfa3aca08524e8a - sha256: 3ce99d721c1543f6f8f5155e53eef11be47b2f5942a8d1060de6854f9d51f246 + md5: a8ea818e46addfa842348701a9dbe8f8 + sha256: 34814cea4b92d17237211769f2ec5b739a328849b152a2f5736183c52d48cafc category: main optional: false - name: kiwisolver @@ -3042,12 +3042,12 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/kiwisolver-1.4.8-py312hc790b64_0.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/kiwisolver-1.4.8-py312hf90b1b7_1.conda hash: - md5: 7ef59428fc0dcb8a78a5e23dc4f50aa3 - sha256: 2cce3d9bcc95c68069e3032cda25b732f69be7b025f94685ee4783d7b54588dd + md5: c3b0a086ab765183c024e0f4001fd8bc + sha256: 91e452fca2de7cc94374c99d09e3e984adc48eb90f41f69be0716b20015a55a3 category: main optional: false - name: krb5 @@ -3139,15 +3139,15 @@ package: category: main optional: false - name: ld_impl_linux-64 - version: '2.43' + version: '2.44' manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.43-h1423503_5.conda + url: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.44-h1423503_0.conda hash: - md5: 6dc9e1305e7d3129af4ad0dabda30e56 - sha256: dcd2b1a065bbf5c54004ddf6551c775a8eb6993c8298ca8a6b92041ed413f785 + md5: e31316a586cac398b1fcdb10ace786b9 + sha256: 2a34aa8146f97f9e2fc1f3ff34e17c1008afd4a7b0e2fea164b8e5df00b8cbb4 category: main optional: false - name: lerc @@ -3806,32 +3806,32 @@ package: category: main optional: false - name: libpng - version: 1.6.49 + version: 1.6.50 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.49-h943b412_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libpng-1.6.50-h943b412_0.conda hash: - md5: 37511c874cf3b8d0034c8d24e73c0884 - sha256: c8f5dc929ba5fcee525a66777498e03bbcbfefc05a0773e5163bb08ac5122f1a + md5: 51de14db340a848869e69c632b43cca7 + sha256: c7b212bdd3f9d5450c4bae565ccb9385222bf9bb92458c2a23be36ff1b981389 category: main optional: false - name: libpng - version: 1.6.49 + version: 1.6.50 manager: conda platform: win-64 dependencies: libzlib: '>=1.3.1,<2.0a0' 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.49-h7a4582a_0.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/libpng-1.6.50-h95bef1e_0.conda hash: - md5: 27269977c8f25d499727ceabc47cee3d - sha256: 8876a2d32d3538675e035b6560691471a1571835c0bcbf23816c24c460d31439 + md5: 2e63db2e13cd6a5e2c08f771253fb8a0 + sha256: 17f3bfb6d852eec200f68a4cfb4ef1d8950b73dfa48931408e3dbdfc89a4848a category: main optional: false - name: libscotch @@ -3907,31 +3907,31 @@ package: category: main optional: false - name: libsqlite - version: 3.50.1 + version: 3.50.2 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/libsqlite-3.50.1-h6cd9bfd_7.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.50.2-h6cd9bfd_0.conda hash: - md5: c7c4888059a8324e52de475d1e7bdc53 - sha256: 9a9e5bf30178f821d4f8de25eac0ae848915bfde6a78a66ae8b77d9c33d9d0e5 + md5: b04c7eda6d7dab1e6503135e7fad4d25 + sha256: 07649c7c19b916179926006df5c38074618d35bf36cd33ab3fe8b22182bbd258 category: main optional: false - name: libsqlite - version: 3.50.1 + version: 3.50.2 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.50.1-hf5d6505_7.conda + url: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.50.2-hf5d6505_0.conda hash: - md5: 0bc3f5143b8cb9ccf9101c2f9391c594 - sha256: 08fbdeed89ae10fb383c40f0bab3e39e3675f49700b7185a109b31e273f8762a + md5: e1e6cac409e95538acdc3d33a0f34d6a + sha256: d136ecf423f83208156daa6a8c1de461a7e9780e8e4423c23c7e136be3c2ff0a category: main optional: false - name: libssh2 @@ -4938,37 +4938,37 @@ package: category: dev optional: true - name: notebook - version: 7.4.3 + version: 7.4.4 manager: conda platform: linux-64 dependencies: jupyter_server: '>=2.4.0,<3' - jupyterlab: '>=4.4.3,<4.5' + jupyterlab: '>=4.4.4,<4.5' jupyterlab_server: '>=2.27.1,<3' notebook-shim: '>=0.2,<0.3' python: '>=3.9' tornado: '>=6.2.0' - url: https://repo.prefix.dev/conda-forge/noarch/notebook-7.4.3-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/notebook-7.4.4-pyhd8ed1ab_0.conda hash: - md5: f0b767b717cab652712d29f5e4699b2a - sha256: aea1b33b734e809bd090f0bae47f4bca5da406f7bc7dd65a67b565f03c740866 + md5: dcbb5c47f5dffa7637c05df5d4068181 + sha256: 6d7e522a91dcc6f7b8b119da86534f9ad021cd9094c5db7dbfd16e48efd02857 category: dev optional: true - name: notebook - version: 7.4.3 + version: 7.4.4 manager: conda platform: win-64 dependencies: jupyter_server: '>=2.4.0,<3' - jupyterlab: '>=4.4.3,<4.5' + jupyterlab: '>=4.4.4,<4.5' jupyterlab_server: '>=2.27.1,<3' notebook-shim: '>=0.2,<0.3' python: '>=3.9' tornado: '>=6.2.0' - url: https://repo.prefix.dev/conda-forge/noarch/notebook-7.4.3-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/notebook-7.4.4-pyhd8ed1ab_0.conda hash: - md5: f0b767b717cab652712d29f5e4699b2a - sha256: aea1b33b734e809bd090f0bae47f4bca5da406f7bc7dd65a67b565f03c740866 + md5: dcbb5c47f5dffa7637c05df5d4068181 + sha256: 6d7e522a91dcc6f7b8b119da86534f9ad021cd9094c5db7dbfd16e48efd02857 category: dev optional: true - name: notebook-shim @@ -5107,32 +5107,32 @@ package: category: main optional: false - name: openssl - version: 3.5.0 + version: 3.5.1 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' ca-certificates: '' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/openssl-3.5.0-h7b32b05_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/openssl-3.5.1-h7b32b05_0.conda hash: - md5: de356753cfdbffcde5bb1e86e3aa6cd0 - sha256: b4491077c494dbf0b5eaa6d87738c22f2154e9277e5293175ec187634bd808a0 + md5: c87df2ab1448ba69169652ab9547082d + sha256: 942347492164190559e995930adcdf84e2fea05307ec8012c02a505f5be87462 category: main optional: false - name: openssl - version: 3.5.0 + version: 3.5.1 manager: conda platform: win-64 dependencies: ca-certificates: '' ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/openssl-3.5.0-ha4e3fda_1.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/openssl-3.5.1-h725018a_0.conda hash: - md5: 72c07e46b6766bb057018a9a74861b89 - sha256: 02846553d2a4c9bde850c60824d0f02803eb9c9b674d5c1a8cce25bc387e748f + md5: d124fc2fd7070177b5e2450627f8fc1a + sha256: 2b2eb73b0661ff1aed55576a3d38614852b5d857c2fa9205ac115820c523306c category: main optional: false - name: overrides @@ -6161,10 +6161,10 @@ package: dependencies: python: '>=3.9' six: '>=1.5' - url: https://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda hash: - md5: 5ba79d7c71f03c678c8ead841f347d6e - sha256: a50052536f1ef8516ed11a844f9413661829aa083304dc624c5925298d078d79 + md5: 5b8d21249ff20967101ffa321cab24e8 + sha256: d6a17ece93bbd5139e02d2bd7dbfa80bee1a4261dced63f65f679121686bf664 category: main optional: false - name: python-dateutil @@ -6174,10 +6174,10 @@ package: dependencies: python: '>=3.9' six: '>=1.5' - url: https://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda hash: - md5: 5ba79d7c71f03c678c8ead841f347d6e - sha256: a50052536f1ef8516ed11a844f9413661829aa083304dc624c5925298d078d79 + md5: 5b8d21249ff20967101ffa321cab24e8 + sha256: d6a17ece93bbd5139e02d2bd7dbfa80bee1a4261dced63f65f679121686bf664 category: main optional: false - name: python-fastjsonschema @@ -6593,7 +6593,7 @@ package: category: dev optional: true - name: rpds-py - version: 0.25.1 + version: 0.26.0 manager: conda platform: linux-64 dependencies: @@ -6601,26 +6601,26 @@ package: libgcc: '>=13' python: '' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/rpds-py-0.25.1-py312h680f630_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/rpds-py-0.26.0-py312h680f630_0.conda hash: - md5: ea8f79edf890d1f9b2f1bd6fbb11be1e - sha256: a5b168b991c23ab6d74679a6f5ad1ed87b98ba6c383b5fe41f5f6b335b10d545 + md5: 5b251d4dd547d8b5970152bae2cc1600 + sha256: bb051358e7550fd8ef9129def61907ad03853604f5e641108b1dbe2ce93247cc category: dev optional: true - name: rpds-py - version: 0.25.1 + version: 0.26.0 manager: conda platform: win-64 dependencies: python: '' python_abi: 3.12.* ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/rpds-py-0.25.1-py312h8422cdd_0.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/rpds-py-0.26.0-py312hdabe01f_0.conda hash: - md5: 30d51df2ebcc324cce80fa6a317df920 - sha256: dfea71a35d7d5eb348893e24136ce6fb1004fc9402eaafae441fa61887638764 + md5: 353d4c6bd46906805189af9a7394b0d1 + sha256: 665d771c3d4a028dc49c45e47634ef3adac80500ed6206ba6837885f02b0947f category: dev optional: true - name: rtree @@ -7875,27 +7875,27 @@ package: category: dev optional: true - name: typing-extensions - version: 4.14.0 + version: 4.14.1 manager: conda platform: linux-64 dependencies: - typing_extensions: ==4.14.0 - url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.14.0-h32cad80_0.conda + typing_extensions: ==4.14.1 + url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.14.1-h4440ef1_0.conda hash: - md5: a1cdd40fc962e2f7944bc19e01c7e584 - sha256: b8cabfa54432b0f124c0af6b6facdf8110892914fa841ac2e80ab65ac52c1ba4 + md5: 75be1a943e0a7f99fcf118309092c635 + sha256: 349951278fa8d0860ec6b61fcdc1e6f604e6fce74fabf73af2e39a37979d0223 category: main optional: false - name: typing-extensions - version: 4.14.0 + version: 4.14.1 manager: conda platform: win-64 dependencies: - typing_extensions: ==4.14.0 - url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.14.0-h32cad80_0.conda + typing_extensions: ==4.14.1 + url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.14.1-h4440ef1_0.conda hash: - md5: a1cdd40fc962e2f7944bc19e01c7e584 - sha256: b8cabfa54432b0f124c0af6b6facdf8110892914fa841ac2e80ab65ac52c1ba4 + md5: 75be1a943e0a7f99fcf118309092c635 + sha256: 349951278fa8d0860ec6b61fcdc1e6f604e6fce74fabf73af2e39a37979d0223 category: main optional: false - name: typing-inspection @@ -7925,27 +7925,27 @@ package: category: main optional: false - name: typing_extensions - version: 4.14.0 + version: 4.14.1 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.14.0-pyhe01879c_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.14.1-pyhe01879c_0.conda hash: - md5: 2adcd9bb86f656d3d43bf84af59a1faf - sha256: 8561db52f278c5716b436da6d4ee5521712a49e8f3c70fcae5350f5ebb4be41c + md5: e523f4f1e980ed7a4240d7e27e9ec81f + sha256: 4f52390e331ea8b9019b87effaebc4f80c6466d09f68453f52d5cdc2a3e1194f category: main optional: false - name: typing_extensions - version: 4.14.0 + version: 4.14.1 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.14.0-pyhe01879c_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.14.1-pyhe01879c_0.conda hash: - md5: 2adcd9bb86f656d3d43bf84af59a1faf - sha256: 8561db52f278c5716b436da6d4ee5521712a49e8f3c70fcae5350f5ebb4be41c + md5: e523f4f1e980ed7a4240d7e27e9ec81f + sha256: 4f52390e331ea8b9019b87effaebc4f80c6466d09f68453f52d5cdc2a3e1194f category: main optional: false - name: typing_utils @@ -8674,12 +8674,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@99695a5e34812bfbb53cef84803033a91af137de + url: git+https://github.com/MiraGeoscience/geoh5py.git@87f68c3a25cb3fac2a4c9de8c0d74ec4e58d0963 hash: - sha256: 99695a5e34812bfbb53cef84803033a91af137de + sha256: 87f68c3a25cb3fac2a4c9de8c0d74ec4e58d0963 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@99695a5e34812bfbb53cef84803033a91af137de + url: git+https://github.com/MiraGeoscience/geoh5py.git@87f68c3a25cb3fac2a4c9de8c0d74ec4e58d0963 category: main optional: false - name: geoh5py @@ -8691,16 +8691,16 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@99695a5e34812bfbb53cef84803033a91af137de + url: git+https://github.com/MiraGeoscience/geoh5py.git@87f68c3a25cb3fac2a4c9de8c0d74ec4e58d0963 hash: - sha256: 99695a5e34812bfbb53cef84803033a91af137de + sha256: 87f68c3a25cb3fac2a4c9de8c0d74ec4e58d0963 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@99695a5e34812bfbb53cef84803033a91af137de + url: git+https://github.com/MiraGeoscience/geoh5py.git@87f68c3a25cb3fac2a4c9de8c0d74ec4e58d0963 category: main optional: false - name: mira-simpeg - version: 0.23.0.1a5.dev33+gf72a1367e + version: 0.23.0.1a5.dev35+gbf4568452 manager: pip platform: linux-64 dependencies: @@ -8712,16 +8712,16 @@ package: numpy: '>=1.22' pymatsolver: '>=0.3' scipy: '>=1.8' - url: git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 + url: git+https://github.com/MiraGeoscience/simpeg.git@bf4568452ca51fe0ec810b13b2acb4da6c26412f hash: - sha256: f72a1367edcb2da969002ca06f18f532340b3c27 + sha256: bf4568452ca51fe0ec810b13b2acb4da6c26412f source: type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 + url: git+https://github.com/MiraGeoscience/simpeg.git@bf4568452ca51fe0ec810b13b2acb4da6c26412f category: main optional: false - name: mira-simpeg - version: 0.23.0.1a5.dev33+gf72a1367e + version: 0.23.0.1a5.dev35+gbf4568452 manager: pip platform: win-64 dependencies: @@ -8733,12 +8733,12 @@ package: numpy: '>=1.22' pymatsolver: '>=0.3' scipy: '>=1.8' - url: git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 + url: git+https://github.com/MiraGeoscience/simpeg.git@bf4568452ca51fe0ec810b13b2acb4da6c26412f hash: - sha256: f72a1367edcb2da969002ca06f18f532340b3c27 + sha256: bf4568452ca51fe0ec810b13b2acb4da6c26412f source: type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 + url: git+https://github.com/MiraGeoscience/simpeg.git@bf4568452ca51fe0ec810b13b2acb4da6c26412f category: main optional: false - name: octree-creation-app