From ee8c5a759e1d1624b82dcf1fe08555eaa6fae7d4 Mon Sep 17 00:00:00 2001 From: dominiquef Date: Wed, 17 Sep 2025 14:14:26 -0700 Subject: [PATCH 1/3] Fix referencing to futures --- simpeg_drivers/components/factories/directives_factory.py | 2 +- simpeg_drivers/components/factories/misfit_factory.py | 7 +++++++ simpeg_drivers/utils/nested.py | 6 ------ 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/simpeg_drivers/components/factories/directives_factory.py b/simpeg_drivers/components/factories/directives_factory.py index 40e36996..700b8cce 100644 --- a/simpeg_drivers/components/factories/directives_factory.py +++ b/simpeg_drivers/components/factories/directives_factory.py @@ -340,7 +340,7 @@ def vector_inversion_directive(self): ) self._vector_inversion_directive = directives.VectorInversion( - [objective.simulation for objective in self.driver.data_misfit.objfcts], + self.driver.data_misfit.objfcts, self.driver.regularization, chifact_target=self.driver.params.cooling_schedule.chi_factor * 2, reference_angles=reference_angles, diff --git a/simpeg_drivers/components/factories/misfit_factory.py b/simpeg_drivers/components/factories/misfit_factory.py index 4b1b1aa4..7b8cad88 100644 --- a/simpeg_drivers/components/factories/misfit_factory.py +++ b/simpeg_drivers/components/factories/misfit_factory.py @@ -98,6 +98,13 @@ def assemble_arguments( # pylint: disable=arguments-differ shared_indices=np.hstack(local_indices), ) ) + + name = f"{self.params.inversion_type}: Tile {tile_count + 1}" + if channel is not None: + name += f": Channel {channel}" + + misfits[-1].name = f"{name}" + tile_count += 1 local_orderings = self.collect_ordering_from_misfits(misfits) diff --git a/simpeg_drivers/utils/nested.py b/simpeg_drivers/utils/nested.py index bcd22f1a..acf85d38 100644 --- a/simpeg_drivers/utils/nested.py +++ b/simpeg_drivers/utils/nested.py @@ -185,12 +185,6 @@ def create_misfit( if not forward_only: local_data.dobs = local_sim.survey.dobs local_data.standard_deviation = local_sim.survey.std - name = inversion_type - name += f": Tile {tile_count + 1}" - if channel is not None: - name += f": Channel {channel}" - - local_misfit.name = f"{name}" return local_misfit From 06d9fd0aa792bc150b11466b4db723f3d40ed746 Mon Sep 17 00:00:00 2001 From: dominiquef Date: Wed, 17 Sep 2025 14:17:33 -0700 Subject: [PATCH 2/3] Add distributed for local run --- tests/run_tests/driver_mvi_test.py | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/tests/run_tests/driver_mvi_test.py b/tests/run_tests/driver_mvi_test.py index 5db8981b..3f3c9909 100644 --- a/tests/run_tests/driver_mvi_test.py +++ b/tests/run_tests/driver_mvi_test.py @@ -15,6 +15,7 @@ from pathlib import Path import numpy as np +from dask.distributed import LocalCluster, performance_report from geoh5py.groups import PropertyGroup from geoh5py.groups.property_group import GroupTypeEnum from geoh5py.objects import Curve @@ -65,7 +66,6 @@ def test_magnetic_vector_fwr_run( components = SyntheticsComponents(geoh5, options=opts) # Unitest dealing with Curve - _ = Curve.create( geoh5, name=components.survey.name, vertices=components.survey.vertices ) @@ -235,7 +235,13 @@ def test_magnetic_vector_reference( if __name__ == "__main__": # Full run - test_magnetic_vector_fwr_run(Path("./"), n_grid_points=20, refinement=(4, 8)) - test_magnetic_vector_run( - Path("./"), None, max_iterations=30, upper_bound=1e-1, pytest=False - ) + with LocalCluster(processes=True, n_workers=2, threads_per_worker=6) as cluster: + with cluster.get_client(): + # Full run + with performance_report(filename="diagnostics.html"): + test_magnetic_vector_fwr_run( + Path("./"), n_grid_points=20, refinement=(4, 8) + ) + test_magnetic_vector_run( + Path("./"), None, max_iterations=30, upper_bound=1e-1, pytest=False + ) From cfcd4cd1692d238414d67aa6f26d7baf55f77ddf Mon Sep 17 00:00:00 2001 From: dominiquef Date: Wed, 17 Sep 2025 14:27:34 -0700 Subject: [PATCH 3/3] Re-lock --- .../py-3.10-linux-64-dev.conda.lock.yml | 6 +- environments/py-3.10-linux-64.conda.lock.yml | 6 +- .../py-3.10-win-64-dev.conda.lock.yml | 6 +- environments/py-3.10-win-64.conda.lock.yml | 6 +- .../py-3.11-linux-64-dev.conda.lock.yml | 6 +- environments/py-3.11-linux-64.conda.lock.yml | 6 +- .../py-3.11-win-64-dev.conda.lock.yml | 6 +- environments/py-3.11-win-64.conda.lock.yml | 6 +- .../py-3.12-linux-64-dev.conda.lock.yml | 6 +- environments/py-3.12-linux-64.conda.lock.yml | 6 +- .../py-3.12-win-64-dev.conda.lock.yml | 6 +- environments/py-3.12-win-64.conda.lock.yml | 6 +- py-3.10.conda-lock.yml | 56 +++++++++---------- py-3.11.conda-lock.yml | 56 +++++++++---------- py-3.12.conda-lock.yml | 56 +++++++++---------- 15 files changed, 120 insertions(+), 120 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 8057838c..662e4ca4 100644 --- a/environments/py-3.10-linux-64-dev.conda.lock.yml +++ b/environments/py-3.10-linux-64-dev.conda.lock.yml @@ -55,7 +55,7 @@ dependencies: - exceptiongroup=1.3.0=pyhd8ed1ab_0 - executing=2.2.1=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.59.2=py310h3406613_0 + - fonttools=4.60.0=py310h3406613_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.14.1=ha770c72_0 - fsspec=2025.9.0=pyhd8ed1ab_0 @@ -306,9 +306,9 @@ dependencies: - zstd=1.5.7=hb8e6e7a_2 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@a91e9479d6e948728ad430e0db526c75013c9773 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@496248c06ecbc113df0f0b76e1afc4610c469bf5 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@2c39fbbaceb60a1d3e5a519826f3a59a908ec822 - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@416815352706add295a9d2b90814d2291068a85e - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@7da0cb45b4ff1213d1cca120773971aa8468a5c1 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@998d6f58198e4aff55a401e8a6545b93eb8bfd64 variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.10-linux-64.conda.lock.yml b/environments/py-3.10-linux-64.conda.lock.yml index 32fadffe..017794c2 100644 --- a/environments/py-3.10-linux-64.conda.lock.yml +++ b/environments/py-3.10-linux-64.conda.lock.yml @@ -32,7 +32,7 @@ dependencies: - discretize=0.11.3=py310ha2bacc8_0 - distributed=2025.3.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.59.2=py310h3406613_0 + - fonttools=4.60.0=py310h3406613_0 - freetype=2.14.1=ha770c72_0 - fsspec=2025.9.0=pyhd8ed1ab_0 - geoana=0.7.2=py310ha2bacc8_0 @@ -167,9 +167,9 @@ dependencies: - zstd=1.5.7=hb8e6e7a_2 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@a91e9479d6e948728ad430e0db526c75013c9773 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@496248c06ecbc113df0f0b76e1afc4610c469bf5 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@2c39fbbaceb60a1d3e5a519826f3a59a908ec822 - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@416815352706add295a9d2b90814d2291068a85e - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@7da0cb45b4ff1213d1cca120773971aa8468a5c1 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@998d6f58198e4aff55a401e8a6545b93eb8bfd64 variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.10-win-64-dev.conda.lock.yml b/environments/py-3.10-win-64-dev.conda.lock.yml index d828b69e..9afac03f 100644 --- a/environments/py-3.10-win-64-dev.conda.lock.yml +++ b/environments/py-3.10-win-64-dev.conda.lock.yml @@ -55,7 +55,7 @@ dependencies: - exceptiongroup=1.3.0=pyhd8ed1ab_0 - executing=2.2.1=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.59.2=py310hdb0e946_0 + - fonttools=4.60.0=py310hdb0e946_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.14.1=h57928b3_0 - fsspec=2025.9.0=pyhd8ed1ab_0 @@ -296,9 +296,9 @@ dependencies: - zstd=1.5.7=hbeecb71_2 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@a91e9479d6e948728ad430e0db526c75013c9773 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@496248c06ecbc113df0f0b76e1afc4610c469bf5 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@2c39fbbaceb60a1d3e5a519826f3a59a908ec822 - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@416815352706add295a9d2b90814d2291068a85e - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@7da0cb45b4ff1213d1cca120773971aa8468a5c1 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@998d6f58198e4aff55a401e8a6545b93eb8bfd64 variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.10-win-64.conda.lock.yml b/environments/py-3.10-win-64.conda.lock.yml index 8da16e05..03838f6f 100644 --- a/environments/py-3.10-win-64.conda.lock.yml +++ b/environments/py-3.10-win-64.conda.lock.yml @@ -31,7 +31,7 @@ dependencies: - discretize=0.11.3=py310h3e8ed56_0 - distributed=2025.3.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.59.2=py310hdb0e946_0 + - fonttools=4.60.0=py310hdb0e946_0 - freetype=2.14.1=h57928b3_0 - fsspec=2025.9.0=pyhd8ed1ab_0 - geoana=0.7.2=py310h3e8ed56_0 @@ -155,9 +155,9 @@ dependencies: - zstd=1.5.7=hbeecb71_2 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@a91e9479d6e948728ad430e0db526c75013c9773 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@496248c06ecbc113df0f0b76e1afc4610c469bf5 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@2c39fbbaceb60a1d3e5a519826f3a59a908ec822 - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@416815352706add295a9d2b90814d2291068a85e - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@7da0cb45b4ff1213d1cca120773971aa8468a5c1 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@998d6f58198e4aff55a401e8a6545b93eb8bfd64 variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.11-linux-64-dev.conda.lock.yml b/environments/py-3.11-linux-64-dev.conda.lock.yml index c7da2faa..88ded9ec 100644 --- a/environments/py-3.11-linux-64-dev.conda.lock.yml +++ b/environments/py-3.11-linux-64-dev.conda.lock.yml @@ -56,7 +56,7 @@ dependencies: - exceptiongroup=1.3.0=pyhd8ed1ab_0 - executing=2.2.1=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.59.2=py311h3778330_0 + - fonttools=4.60.0=py311h3778330_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.14.1=ha770c72_0 - fsspec=2025.9.0=pyhd8ed1ab_0 @@ -309,9 +309,9 @@ dependencies: - zstd=1.5.7=hb8e6e7a_2 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@a91e9479d6e948728ad430e0db526c75013c9773 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@496248c06ecbc113df0f0b76e1afc4610c469bf5 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@2c39fbbaceb60a1d3e5a519826f3a59a908ec822 - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@416815352706add295a9d2b90814d2291068a85e - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@7da0cb45b4ff1213d1cca120773971aa8468a5c1 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@998d6f58198e4aff55a401e8a6545b93eb8bfd64 variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.11-linux-64.conda.lock.yml b/environments/py-3.11-linux-64.conda.lock.yml index 2b4de459..0376574c 100644 --- a/environments/py-3.11-linux-64.conda.lock.yml +++ b/environments/py-3.11-linux-64.conda.lock.yml @@ -33,7 +33,7 @@ dependencies: - discretize=0.11.3=py311h5b7b71f_0 - distributed=2025.3.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.59.2=py311h3778330_0 + - fonttools=4.60.0=py311h3778330_0 - freetype=2.14.1=ha770c72_0 - fsspec=2025.9.0=pyhd8ed1ab_0 - geoana=0.7.2=py311h5b7b71f_0 @@ -169,9 +169,9 @@ dependencies: - zstd=1.5.7=hb8e6e7a_2 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@a91e9479d6e948728ad430e0db526c75013c9773 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@496248c06ecbc113df0f0b76e1afc4610c469bf5 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@2c39fbbaceb60a1d3e5a519826f3a59a908ec822 - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@416815352706add295a9d2b90814d2291068a85e - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@7da0cb45b4ff1213d1cca120773971aa8468a5c1 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@998d6f58198e4aff55a401e8a6545b93eb8bfd64 variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.11-win-64-dev.conda.lock.yml b/environments/py-3.11-win-64-dev.conda.lock.yml index 0d5ce85d..f4ede7a1 100644 --- a/environments/py-3.11-win-64-dev.conda.lock.yml +++ b/environments/py-3.11-win-64-dev.conda.lock.yml @@ -56,7 +56,7 @@ dependencies: - exceptiongroup=1.3.0=pyhd8ed1ab_0 - executing=2.2.1=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.59.2=py311h3f79411_0 + - fonttools=4.60.0=py311h3f79411_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.14.1=h57928b3_0 - fsspec=2025.9.0=pyhd8ed1ab_0 @@ -299,9 +299,9 @@ dependencies: - zstd=1.5.7=hbeecb71_2 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@a91e9479d6e948728ad430e0db526c75013c9773 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@496248c06ecbc113df0f0b76e1afc4610c469bf5 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@2c39fbbaceb60a1d3e5a519826f3a59a908ec822 - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@416815352706add295a9d2b90814d2291068a85e - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@7da0cb45b4ff1213d1cca120773971aa8468a5c1 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@998d6f58198e4aff55a401e8a6545b93eb8bfd64 variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.11-win-64.conda.lock.yml b/environments/py-3.11-win-64.conda.lock.yml index 81a3298a..87af09fb 100644 --- a/environments/py-3.11-win-64.conda.lock.yml +++ b/environments/py-3.11-win-64.conda.lock.yml @@ -32,7 +32,7 @@ dependencies: - discretize=0.11.3=py311h9b10771_0 - distributed=2025.3.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.59.2=py311h3f79411_0 + - fonttools=4.60.0=py311h3f79411_0 - freetype=2.14.1=h57928b3_0 - fsspec=2025.9.0=pyhd8ed1ab_0 - geoana=0.7.2=py311h9b10771_0 @@ -157,9 +157,9 @@ dependencies: - zstd=1.5.7=hbeecb71_2 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@a91e9479d6e948728ad430e0db526c75013c9773 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@496248c06ecbc113df0f0b76e1afc4610c469bf5 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@2c39fbbaceb60a1d3e5a519826f3a59a908ec822 - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@416815352706add295a9d2b90814d2291068a85e - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@7da0cb45b4ff1213d1cca120773971aa8468a5c1 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@998d6f58198e4aff55a401e8a6545b93eb8bfd64 variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.12-linux-64-dev.conda.lock.yml b/environments/py-3.12-linux-64-dev.conda.lock.yml index 40ed228e..948cb470 100644 --- a/environments/py-3.12-linux-64-dev.conda.lock.yml +++ b/environments/py-3.12-linux-64-dev.conda.lock.yml @@ -58,7 +58,7 @@ dependencies: - exceptiongroup=1.3.0=pyhd8ed1ab_0 - executing=2.2.1=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.59.2=py312h8a5da7c_0 + - fonttools=4.60.0=py312h8a5da7c_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.14.1=ha770c72_0 - fsspec=2025.9.0=pyhd8ed1ab_0 @@ -312,9 +312,9 @@ dependencies: - zstd=1.5.7=hb8e6e7a_2 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@a91e9479d6e948728ad430e0db526c75013c9773 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@496248c06ecbc113df0f0b76e1afc4610c469bf5 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@2c39fbbaceb60a1d3e5a519826f3a59a908ec822 - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@416815352706add295a9d2b90814d2291068a85e - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@7da0cb45b4ff1213d1cca120773971aa8468a5c1 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@998d6f58198e4aff55a401e8a6545b93eb8bfd64 variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.12-linux-64.conda.lock.yml b/environments/py-3.12-linux-64.conda.lock.yml index 0098681b..e5757735 100644 --- a/environments/py-3.12-linux-64.conda.lock.yml +++ b/environments/py-3.12-linux-64.conda.lock.yml @@ -33,7 +33,7 @@ dependencies: - discretize=0.11.3=py312hc39e661_0 - distributed=2025.3.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.59.2=py312h8a5da7c_0 + - fonttools=4.60.0=py312h8a5da7c_0 - freetype=2.14.1=ha770c72_0 - fsspec=2025.9.0=pyhd8ed1ab_0 - geoana=0.7.2=py312hc39e661_0 @@ -169,9 +169,9 @@ dependencies: - zstd=1.5.7=hb8e6e7a_2 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@a91e9479d6e948728ad430e0db526c75013c9773 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@496248c06ecbc113df0f0b76e1afc4610c469bf5 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@2c39fbbaceb60a1d3e5a519826f3a59a908ec822 - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@416815352706add295a9d2b90814d2291068a85e - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@7da0cb45b4ff1213d1cca120773971aa8468a5c1 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@998d6f58198e4aff55a401e8a6545b93eb8bfd64 variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.12-win-64-dev.conda.lock.yml b/environments/py-3.12-win-64-dev.conda.lock.yml index 5f4b5602..b7f66d7b 100644 --- a/environments/py-3.12-win-64-dev.conda.lock.yml +++ b/environments/py-3.12-win-64-dev.conda.lock.yml @@ -57,7 +57,7 @@ dependencies: - exceptiongroup=1.3.0=pyhd8ed1ab_0 - executing=2.2.1=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.59.2=py312h05f76fc_0 + - fonttools=4.60.0=py312h05f76fc_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.14.1=h57928b3_0 - fsspec=2025.9.0=pyhd8ed1ab_0 @@ -301,9 +301,9 @@ dependencies: - zstd=1.5.7=hbeecb71_2 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@a91e9479d6e948728ad430e0db526c75013c9773 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@496248c06ecbc113df0f0b76e1afc4610c469bf5 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@2c39fbbaceb60a1d3e5a519826f3a59a908ec822 - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@416815352706add295a9d2b90814d2291068a85e - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@7da0cb45b4ff1213d1cca120773971aa8468a5c1 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@998d6f58198e4aff55a401e8a6545b93eb8bfd64 variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.12-win-64.conda.lock.yml b/environments/py-3.12-win-64.conda.lock.yml index 835ff871..23d63a3f 100644 --- a/environments/py-3.12-win-64.conda.lock.yml +++ b/environments/py-3.12-win-64.conda.lock.yml @@ -32,7 +32,7 @@ dependencies: - discretize=0.11.3=py312hbaa7e33_0 - distributed=2025.3.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.59.2=py312h05f76fc_0 + - fonttools=4.60.0=py312h05f76fc_0 - freetype=2.14.1=h57928b3_0 - fsspec=2025.9.0=pyhd8ed1ab_0 - geoana=0.7.2=py312hbaa7e33_0 @@ -157,9 +157,9 @@ dependencies: - zstd=1.5.7=hbeecb71_2 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@a91e9479d6e948728ad430e0db526c75013c9773 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@496248c06ecbc113df0f0b76e1afc4610c469bf5 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@2c39fbbaceb60a1d3e5a519826f3a59a908ec822 - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@416815352706add295a9d2b90814d2291068a85e - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@7da0cb45b4ff1213d1cca120773971aa8468a5c1 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@998d6f58198e4aff55a401e8a6545b93eb8bfd64 variables: KMP_WARNINGS: 0 diff --git a/py-3.10.conda-lock.yml b/py-3.10.conda-lock.yml index d6b525ce..4221af3d 100644 --- a/py-3.10.conda-lock.yml +++ b/py-3.10.conda-lock.yml @@ -1412,7 +1412,7 @@ package: category: main optional: false - name: fonttools - version: 4.59.2 + version: 4.60.0 manager: conda platform: linux-64 dependencies: @@ -1423,14 +1423,14 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* unicodedata2: '>=15.1.0' - url: https://repo.prefix.dev/conda-forge/linux-64/fonttools-4.59.2-py310h3406613_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/fonttools-4.60.0-py310h3406613_0.conda hash: - md5: 32dab042830c3c31f89cdb6273585165 - sha256: afbdc6fd696ce74a94dd558512f532a8e71c653a18f226b1bae9b37e447ae4f0 + md5: 3f0e123bda4a6794b7b96dfa98b5db23 + sha256: 179889e74cbb0db999f28b56e0b7ab4faaa75d8651bbc5a75c57e9e036920cff category: main optional: false - name: fonttools - version: 4.59.2 + version: 4.60.0 manager: conda platform: win-64 dependencies: @@ -1442,10 +1442,10 @@ package: unicodedata2: '>=15.1.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/fonttools-4.59.2-py310hdb0e946_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/fonttools-4.60.0-py310hdb0e946_0.conda hash: - md5: 2072c4ef8b99bee252d62c4bfbf6c2e6 - sha256: 93eaf4c063327cb9a47ed383608e34c79329eb1fcc030f4fa5c1d945c7878269 + md5: ea3b8e17b32b860d6070b0a4c2d1f66a + sha256: 8c3fa33cdf46d36b581fcabaa57067ca49848f9d2af64bd69d641283b0278ccc category: main optional: false - name: fqdn @@ -8573,7 +8573,7 @@ package: manager: pip platform: linux-64 dependencies: - geoh5py: 0.12.0a2.dev105+496248c0 + geoh5py: 0.12.0a2.dev113+2c39fbba numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' @@ -8590,7 +8590,7 @@ package: manager: pip platform: win-64 dependencies: - geoh5py: 0.12.0a2.dev105+496248c0 + geoh5py: 0.12.0a2.dev113+2c39fbba numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' @@ -8603,7 +8603,7 @@ package: category: main optional: false - name: geoh5py - version: 0.12.0a2.dev105+496248c0 + version: 0.12.0a2.dev113+2c39fbba manager: pip platform: linux-64 dependencies: @@ -8612,16 +8612,16 @@ package: pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' pylint: '>=3.3.8,<4.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@496248c06ecbc113df0f0b76e1afc4610c469bf5 + url: git+https://github.com/MiraGeoscience/geoh5py.git@2c39fbbaceb60a1d3e5a519826f3a59a908ec822 hash: - sha256: 496248c06ecbc113df0f0b76e1afc4610c469bf5 + sha256: 2c39fbbaceb60a1d3e5a519826f3a59a908ec822 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@496248c06ecbc113df0f0b76e1afc4610c469bf5 + url: git+https://github.com/MiraGeoscience/geoh5py.git@2c39fbbaceb60a1d3e5a519826f3a59a908ec822 category: main optional: false - name: geoh5py - version: 0.12.0a2.dev105+496248c0 + version: 0.12.0a2.dev113+2c39fbba manager: pip platform: win-64 dependencies: @@ -8630,12 +8630,12 @@ package: pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' pylint: '>=3.3.8,<4.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@496248c06ecbc113df0f0b76e1afc4610c469bf5 + url: git+https://github.com/MiraGeoscience/geoh5py.git@2c39fbbaceb60a1d3e5a519826f3a59a908ec822 hash: - sha256: 496248c06ecbc113df0f0b76e1afc4610c469bf5 + sha256: 2c39fbbaceb60a1d3e5a519826f3a59a908ec822 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@496248c06ecbc113df0f0b76e1afc4610c469bf5 + url: git+https://github.com/MiraGeoscience/geoh5py.git@2c39fbbaceb60a1d3e5a519826f3a59a908ec822 category: main optional: false - name: grid-apps @@ -8645,7 +8645,7 @@ package: dependencies: discretize: '>=0.11.0,<0.12.dev' geoapps-utils: 0.6.0a1.dev72+a91e947 - geoh5py: 0.12.0a2.dev105+496248c0 + geoh5py: 0.12.0a2.dev113+2c39fbba numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' @@ -8664,7 +8664,7 @@ package: dependencies: discretize: '>=0.11.0,<0.12.dev' geoapps-utils: 0.6.0a1.dev72+a91e947 - geoh5py: 0.12.0a2.dev105+496248c0 + geoh5py: 0.12.0a2.dev113+2c39fbba numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' @@ -8677,7 +8677,7 @@ package: category: main optional: false - name: mira-simpeg - version: 0.23.0.1.post2.dev96+mira.g7da0cb45b + version: 0.23.0.1.post2.dev99+mira.g998d6f581 manager: pip platform: linux-64 dependencies: @@ -8689,16 +8689,16 @@ package: numpy: '>=1.22' pymatsolver: '>=0.3' scipy: '>=1.8' - url: git+https://github.com/MiraGeoscience/simpeg.git@7da0cb45b4ff1213d1cca120773971aa8468a5c1 + url: git+https://github.com/MiraGeoscience/simpeg.git@998d6f58198e4aff55a401e8a6545b93eb8bfd64 hash: - sha256: 7da0cb45b4ff1213d1cca120773971aa8468a5c1 + sha256: 998d6f58198e4aff55a401e8a6545b93eb8bfd64 source: type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@7da0cb45b4ff1213d1cca120773971aa8468a5c1 + url: git+https://github.com/MiraGeoscience/simpeg.git@998d6f58198e4aff55a401e8a6545b93eb8bfd64 category: main optional: false - name: mira-simpeg - version: 0.23.0.1.post2.dev96+mira.g7da0cb45b + version: 0.23.0.1.post2.dev99+mira.g998d6f581 manager: pip platform: win-64 dependencies: @@ -8710,11 +8710,11 @@ package: numpy: '>=1.22' pymatsolver: '>=0.3' scipy: '>=1.8' - url: git+https://github.com/MiraGeoscience/simpeg.git@7da0cb45b4ff1213d1cca120773971aa8468a5c1 + url: git+https://github.com/MiraGeoscience/simpeg.git@998d6f58198e4aff55a401e8a6545b93eb8bfd64 hash: - sha256: 7da0cb45b4ff1213d1cca120773971aa8468a5c1 + sha256: 998d6f58198e4aff55a401e8a6545b93eb8bfd64 source: type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@7da0cb45b4ff1213d1cca120773971aa8468a5c1 + url: git+https://github.com/MiraGeoscience/simpeg.git@998d6f58198e4aff55a401e8a6545b93eb8bfd64 category: main optional: false diff --git a/py-3.11.conda-lock.yml b/py-3.11.conda-lock.yml index e62edf69..05023a9c 100644 --- a/py-3.11.conda-lock.yml +++ b/py-3.11.conda-lock.yml @@ -1436,7 +1436,7 @@ package: category: main optional: false - name: fonttools - version: 4.59.2 + version: 4.60.0 manager: conda platform: linux-64 dependencies: @@ -1447,14 +1447,14 @@ package: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* unicodedata2: '>=15.1.0' - url: https://repo.prefix.dev/conda-forge/linux-64/fonttools-4.59.2-py311h3778330_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/fonttools-4.60.0-py311h3778330_0.conda hash: - md5: 5be2463c4d16a021dd571d7bf56ac799 - sha256: f2685b212f3d84d2ba4fc89a03442724a94166ee8a9c1719efed0d7a07d474cb + md5: 92d090806dcf5e5c5f2f3cfacf1d6aa3 + sha256: 031d9205093b4686eaf515adf4847ea798a3ec5ab51f9ee92dfee88485e1bca2 category: main optional: false - name: fonttools - version: 4.59.2 + version: 4.60.0 manager: conda platform: win-64 dependencies: @@ -1466,10 +1466,10 @@ package: unicodedata2: '>=15.1.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/fonttools-4.59.2-py311h3f79411_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/fonttools-4.60.0-py311h3f79411_0.conda hash: - md5: 6c399663cab648a17883bf73f3057f04 - sha256: e835c0f2d9070a9262820e9cf5177324c7df2148c4d85d756f02b38e443bd9eb + md5: 651a6bad4727f609687e18fe2635962d + sha256: d70fb060458061c7d3fa6791019ef3c07488e8dc8ba46aa6ce49d59a8b79a229 category: main optional: false - name: fqdn @@ -8658,7 +8658,7 @@ package: manager: pip platform: linux-64 dependencies: - geoh5py: 0.12.0a2.dev105+496248c0 + geoh5py: 0.12.0a2.dev113+2c39fbba numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' @@ -8675,7 +8675,7 @@ package: manager: pip platform: win-64 dependencies: - geoh5py: 0.12.0a2.dev105+496248c0 + geoh5py: 0.12.0a2.dev113+2c39fbba numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' @@ -8688,7 +8688,7 @@ package: category: main optional: false - name: geoh5py - version: 0.12.0a2.dev105+496248c0 + version: 0.12.0a2.dev113+2c39fbba manager: pip platform: linux-64 dependencies: @@ -8697,16 +8697,16 @@ package: pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' pylint: '>=3.3.8,<4.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@496248c06ecbc113df0f0b76e1afc4610c469bf5 + url: git+https://github.com/MiraGeoscience/geoh5py.git@2c39fbbaceb60a1d3e5a519826f3a59a908ec822 hash: - sha256: 496248c06ecbc113df0f0b76e1afc4610c469bf5 + sha256: 2c39fbbaceb60a1d3e5a519826f3a59a908ec822 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@496248c06ecbc113df0f0b76e1afc4610c469bf5 + url: git+https://github.com/MiraGeoscience/geoh5py.git@2c39fbbaceb60a1d3e5a519826f3a59a908ec822 category: main optional: false - name: geoh5py - version: 0.12.0a2.dev105+496248c0 + version: 0.12.0a2.dev113+2c39fbba manager: pip platform: win-64 dependencies: @@ -8715,12 +8715,12 @@ package: pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' pylint: '>=3.3.8,<4.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@496248c06ecbc113df0f0b76e1afc4610c469bf5 + url: git+https://github.com/MiraGeoscience/geoh5py.git@2c39fbbaceb60a1d3e5a519826f3a59a908ec822 hash: - sha256: 496248c06ecbc113df0f0b76e1afc4610c469bf5 + sha256: 2c39fbbaceb60a1d3e5a519826f3a59a908ec822 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@496248c06ecbc113df0f0b76e1afc4610c469bf5 + url: git+https://github.com/MiraGeoscience/geoh5py.git@2c39fbbaceb60a1d3e5a519826f3a59a908ec822 category: main optional: false - name: grid-apps @@ -8730,7 +8730,7 @@ package: dependencies: discretize: '>=0.11.0,<0.12.dev' geoapps-utils: 0.6.0a1.dev72+a91e947 - geoh5py: 0.12.0a2.dev105+496248c0 + geoh5py: 0.12.0a2.dev113+2c39fbba numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' @@ -8749,7 +8749,7 @@ package: dependencies: discretize: '>=0.11.0,<0.12.dev' geoapps-utils: 0.6.0a1.dev72+a91e947 - geoh5py: 0.12.0a2.dev105+496248c0 + geoh5py: 0.12.0a2.dev113+2c39fbba numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' @@ -8762,7 +8762,7 @@ package: category: main optional: false - name: mira-simpeg - version: 0.23.0.1.post2.dev96+mira.g7da0cb45b + version: 0.23.0.1.post2.dev99+mira.g998d6f581 manager: pip platform: linux-64 dependencies: @@ -8774,16 +8774,16 @@ package: numpy: '>=1.22' pymatsolver: '>=0.3' scipy: '>=1.8' - url: git+https://github.com/MiraGeoscience/simpeg.git@7da0cb45b4ff1213d1cca120773971aa8468a5c1 + url: git+https://github.com/MiraGeoscience/simpeg.git@998d6f58198e4aff55a401e8a6545b93eb8bfd64 hash: - sha256: 7da0cb45b4ff1213d1cca120773971aa8468a5c1 + sha256: 998d6f58198e4aff55a401e8a6545b93eb8bfd64 source: type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@7da0cb45b4ff1213d1cca120773971aa8468a5c1 + url: git+https://github.com/MiraGeoscience/simpeg.git@998d6f58198e4aff55a401e8a6545b93eb8bfd64 category: main optional: false - name: mira-simpeg - version: 0.23.0.1.post2.dev96+mira.g7da0cb45b + version: 0.23.0.1.post2.dev99+mira.g998d6f581 manager: pip platform: win-64 dependencies: @@ -8795,11 +8795,11 @@ package: numpy: '>=1.22' pymatsolver: '>=0.3' scipy: '>=1.8' - url: git+https://github.com/MiraGeoscience/simpeg.git@7da0cb45b4ff1213d1cca120773971aa8468a5c1 + url: git+https://github.com/MiraGeoscience/simpeg.git@998d6f58198e4aff55a401e8a6545b93eb8bfd64 hash: - sha256: 7da0cb45b4ff1213d1cca120773971aa8468a5c1 + sha256: 998d6f58198e4aff55a401e8a6545b93eb8bfd64 source: type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@7da0cb45b4ff1213d1cca120773971aa8468a5c1 + url: git+https://github.com/MiraGeoscience/simpeg.git@998d6f58198e4aff55a401e8a6545b93eb8bfd64 category: main optional: false diff --git a/py-3.12.conda-lock.yml b/py-3.12.conda-lock.yml index aabf2368..9aa59de2 100644 --- a/py-3.12.conda-lock.yml +++ b/py-3.12.conda-lock.yml @@ -1475,7 +1475,7 @@ package: category: main optional: false - name: fonttools - version: 4.59.2 + version: 4.60.0 manager: conda platform: linux-64 dependencies: @@ -1486,14 +1486,14 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* unicodedata2: '>=15.1.0' - url: https://repo.prefix.dev/conda-forge/linux-64/fonttools-4.59.2-py312h8a5da7c_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/fonttools-4.60.0-py312h8a5da7c_0.conda hash: - md5: 4c3f3c752ec0cd37b0a0990af20fd952 - sha256: da1c642961e2cad6748266c55ee625062fbdec9f191dc16a29859b2b996a4eea + md5: db25d5216c11abf6545782baa2875c80 + sha256: e66bdd1f9846c20f50af2b3f0d8c09f29b6aa982d76dc10b6973449bdbb5f473 category: main optional: false - name: fonttools - version: 4.59.2 + version: 4.60.0 manager: conda platform: win-64 dependencies: @@ -1505,10 +1505,10 @@ package: unicodedata2: '>=15.1.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/fonttools-4.59.2-py312h05f76fc_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/fonttools-4.60.0-py312h05f76fc_0.conda hash: - md5: f7580ac5d3ac28eb32de8f6fc08fbc75 - sha256: df2e931833a9ea21f265843c2315eacb4ece35c245fd408078949529abe6c8cb + md5: 734028fd5e8e7f4238f35e4ece011b3a + sha256: 8ddfc7d964a16af5e5e9d2a45f18ab7baaa00eea974d6ded08fcf3cf5d8f56a1 category: main optional: false - name: fqdn @@ -8725,7 +8725,7 @@ package: manager: pip platform: linux-64 dependencies: - geoh5py: 0.12.0a2.dev105+496248c0 + geoh5py: 0.12.0a2.dev113+2c39fbba numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' @@ -8742,7 +8742,7 @@ package: manager: pip platform: win-64 dependencies: - geoh5py: 0.12.0a2.dev105+496248c0 + geoh5py: 0.12.0a2.dev113+2c39fbba numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' @@ -8755,7 +8755,7 @@ package: category: main optional: false - name: geoh5py - version: 0.12.0a2.dev105+496248c0 + version: 0.12.0a2.dev113+2c39fbba manager: pip platform: linux-64 dependencies: @@ -8764,16 +8764,16 @@ package: pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' pylint: '>=3.3.8,<4.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@496248c06ecbc113df0f0b76e1afc4610c469bf5 + url: git+https://github.com/MiraGeoscience/geoh5py.git@2c39fbbaceb60a1d3e5a519826f3a59a908ec822 hash: - sha256: 496248c06ecbc113df0f0b76e1afc4610c469bf5 + sha256: 2c39fbbaceb60a1d3e5a519826f3a59a908ec822 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@496248c06ecbc113df0f0b76e1afc4610c469bf5 + url: git+https://github.com/MiraGeoscience/geoh5py.git@2c39fbbaceb60a1d3e5a519826f3a59a908ec822 category: main optional: false - name: geoh5py - version: 0.12.0a2.dev105+496248c0 + version: 0.12.0a2.dev113+2c39fbba manager: pip platform: win-64 dependencies: @@ -8782,12 +8782,12 @@ package: pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' pylint: '>=3.3.8,<4.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@496248c06ecbc113df0f0b76e1afc4610c469bf5 + url: git+https://github.com/MiraGeoscience/geoh5py.git@2c39fbbaceb60a1d3e5a519826f3a59a908ec822 hash: - sha256: 496248c06ecbc113df0f0b76e1afc4610c469bf5 + sha256: 2c39fbbaceb60a1d3e5a519826f3a59a908ec822 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@496248c06ecbc113df0f0b76e1afc4610c469bf5 + url: git+https://github.com/MiraGeoscience/geoh5py.git@2c39fbbaceb60a1d3e5a519826f3a59a908ec822 category: main optional: false - name: grid-apps @@ -8797,7 +8797,7 @@ package: dependencies: discretize: '>=0.11.0,<0.12.dev' geoapps-utils: 0.6.0a1.dev72+a91e947 - geoh5py: 0.12.0a2.dev105+496248c0 + geoh5py: 0.12.0a2.dev113+2c39fbba numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' @@ -8816,7 +8816,7 @@ package: dependencies: discretize: '>=0.11.0,<0.12.dev' geoapps-utils: 0.6.0a1.dev72+a91e947 - geoh5py: 0.12.0a2.dev105+496248c0 + geoh5py: 0.12.0a2.dev113+2c39fbba numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' @@ -8829,7 +8829,7 @@ package: category: main optional: false - name: mira-simpeg - version: 0.23.0.1.post2.dev96+mira.g7da0cb45b + version: 0.23.0.1.post2.dev99+mira.g998d6f581 manager: pip platform: linux-64 dependencies: @@ -8841,16 +8841,16 @@ package: numpy: '>=1.22' pymatsolver: '>=0.3' scipy: '>=1.8' - url: git+https://github.com/MiraGeoscience/simpeg.git@7da0cb45b4ff1213d1cca120773971aa8468a5c1 + url: git+https://github.com/MiraGeoscience/simpeg.git@998d6f58198e4aff55a401e8a6545b93eb8bfd64 hash: - sha256: 7da0cb45b4ff1213d1cca120773971aa8468a5c1 + sha256: 998d6f58198e4aff55a401e8a6545b93eb8bfd64 source: type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@7da0cb45b4ff1213d1cca120773971aa8468a5c1 + url: git+https://github.com/MiraGeoscience/simpeg.git@998d6f58198e4aff55a401e8a6545b93eb8bfd64 category: main optional: false - name: mira-simpeg - version: 0.23.0.1.post2.dev96+mira.g7da0cb45b + version: 0.23.0.1.post2.dev99+mira.g998d6f581 manager: pip platform: win-64 dependencies: @@ -8862,11 +8862,11 @@ package: numpy: '>=1.22' pymatsolver: '>=0.3' scipy: '>=1.8' - url: git+https://github.com/MiraGeoscience/simpeg.git@7da0cb45b4ff1213d1cca120773971aa8468a5c1 + url: git+https://github.com/MiraGeoscience/simpeg.git@998d6f58198e4aff55a401e8a6545b93eb8bfd64 hash: - sha256: 7da0cb45b4ff1213d1cca120773971aa8468a5c1 + sha256: 998d6f58198e4aff55a401e8a6545b93eb8bfd64 source: type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@7da0cb45b4ff1213d1cca120773971aa8468a5c1 + url: git+https://github.com/MiraGeoscience/simpeg.git@998d6f58198e4aff55a401e8a6545b93eb8bfd64 category: main optional: false