From 203d65c4fa363a90189852c426e695d1c5a3021f Mon Sep 17 00:00:00 2001 From: dominiquef Date: Wed, 18 Jun 2025 12:14:42 -0700 Subject: [PATCH 1/7] Move body and boundary to parametric module --- plate_simulation/driver.py | 9 +- plate_simulation/models/events.py | 89 +--------- plate_simulation/models/parametric.py | 243 ++++++++++++++++++++++++++ plate_simulation/models/plates.py | 121 ------------- tests/models/events_test.py | 6 +- tests/models/plates_test.py | 19 +- 6 files changed, 266 insertions(+), 221 deletions(-) create mode 100644 plate_simulation/models/parametric.py delete mode 100644 plate_simulation/models/plates.py diff --git a/plate_simulation/driver.py b/plate_simulation/driver.py index 65d1061..0e50ced 100644 --- a/plate_simulation/driver.py +++ b/plate_simulation/driver.py @@ -26,7 +26,7 @@ from plate_simulation.logger import get_logger from plate_simulation.models.events import Anomaly, Erosion, Overburden -from plate_simulation.models.plates import Plate +from plate_simulation.models.parametric import Body, Plate from plate_simulation.models.series import DikeSwarm, Geology from plate_simulation.options import PlateSimulationOptions from plate_simulation.utils import replicate @@ -170,13 +170,12 @@ def surfaces(self) -> list[Surface]: self.params.model.plate, *center, ) - surface = plate.create_surface(self.params.geoh5, self.out_group) if self.params.model.plate.number == 1: - self._surfaces = [surface] + self._surfaces = [plate.surface] else: self._surfaces = replicate( - surface, + plate.surface, self.params.model.plate.number, self.params.model.plate.spacing, self.params.model.plate.dip_direction, @@ -231,7 +230,7 @@ def make_model(self) -> FloatData: ) dikes = DikeSwarm( - [Anomaly(s, self.params.model.plate.plate) for s in self.surfaces], + [Anomaly(Body(s), self.params.model.plate.plate) for s in self.surfaces], name="plates", ) diff --git a/plate_simulation/models/events.py b/plate_simulation/models/events.py index a0bf78e..2cb8180 100644 --- a/plate_simulation/models/events.py +++ b/plate_simulation/models/events.py @@ -10,13 +10,11 @@ from abc import ABC, abstractmethod import numpy as np -from geoh5py.objects import Octree, Points, Surface +from geoh5py.objects import Octree, Surface from geoh5py.shared.utils import find_unique_name -from simpeg_drivers.utils.utils import active_from_xyz -from trimesh import Trimesh -from trimesh.proximity import ProximityQuery from plate_simulation.models import EventMap +from plate_simulation.models.parametric import Boundary, Parametric # pylint: disable=too-few-public-methods @@ -105,7 +103,7 @@ class Overburden(Event): def __init__( self, - topography: Surface | Points, + topography: Surface, thickness: float, value: float, name: str = "Overburden", @@ -139,9 +137,7 @@ class Erosion(Event): :param name: Name of the Erosion event. """ - def __init__( - self, surface: Surface | Points, value: float = np.nan, name: str = "Erosion" - ): + def __init__(self, surface: Surface, value: float = np.nan, name: str = "Erosion"): self.surface = Boundary(surface) super().__init__(value, name) @@ -161,16 +157,16 @@ def realize( class Anomaly(Event): """ - Enrich or deplete the model within a close surface. + Enrich or deplete the model within a close body. - :param surface: Closed surface within which the model will be filled + :param body: Closed body within which the model will be filled with the anomaly value. :param value: Model value assigned to the anomaly. :param name: Name of the event. """ - def __init__(self, surface: Surface, value: float, name: str = "Anomaly"): - self.body = Body(surface) + def __init__(self, body: Parametric, value: float, name: str = "Anomaly"): + self.body = body super().__init__(value, name) def realize( @@ -189,72 +185,3 @@ def realize( model[self.body.mask(mesh)] = event_id return model, event_map - - -class Boundary: - """ - Represents a boundary in a model. - - :param surface: geoh5py Surface object representing a boundary - in the model. - """ - - def __init__(self, surface: Surface | Points): - self.surface = surface - - def vertical_shift(self, offset: float) -> np.ndarray: - """ - Returns the surface vertices shifted vertically by offset. - - :param offset: Shifts vertices in up (positive) or down (negative). - """ - - if self.surface.vertices is None: - raise ValueError("Surface vertices are not defined.") - - shift = np.c_[ - np.zeros(self.surface.vertices.shape[0]), - np.zeros(self.surface.vertices.shape[0]), - np.ones(self.surface.vertices.shape[0]) * offset, - ] - return self.surface.vertices + shift - - def mask( - self, mesh: Octree, offset: float = 0.0, reference: str = "center" - ) -> np.ndarray: - """ - True for cells whose reference lie below the surface. - - :param mesh: Octree mesh on which the mask is computed. - :param offset: Statically shift the surface on which the mask - is computed. - :param reference: Use "bottom", "center" or "top" of the cells - in determining the mask. - - """ - - return active_from_xyz(mesh, self.vertical_shift(offset), reference) - - -class Body: - """ - Represents a closed surface in the model. - - :param surface: geoh5py Surface object representing a closed surface - """ - - def __init__(self, surface: Surface): - self.surface = surface - - def mask(self, mesh: Octree) -> np.ndarray: - """ - True for cells that lie within the closed surface. - - :param mesh: Octree mesh on which the mask is computed. - """ - triangulation = Trimesh( - vertices=self.surface.vertices, faces=self.surface.cells - ) - proximity_query = ProximityQuery(triangulation) - dist = proximity_query.signed_distance(mesh.centroids) - return dist > 0 diff --git a/plate_simulation/models/parametric.py b/plate_simulation/models/parametric.py new file mode 100644 index 0000000..55ba264 --- /dev/null +++ b/plate_simulation/models/parametric.py @@ -0,0 +1,243 @@ +# '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' +# Copyright (c) 2024-2025 Mira Geoscience Ltd. ' +# ' +# This file is part of plate-simulation package. ' +# ' +# plate-simulation is distributed under the terms and conditions of the MIT License ' +# (see LICENSE file at the root of this source code package). ' +# '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' + +from __future__ import annotations + +from abc import ABC, abstractmethod +from collections.abc import Sequence + +import numpy as np +from geoapps_utils.modelling.plates import PlateModel, inside_plate +from geoapps_utils.utils.transformations import ( + rotate_points, + rotate_xyz, + x_rotation_matrix, + z_rotation_matrix, +) +from geoh5py.objects import Octree, Surface +from geoh5py.workspace import Workspace +from simpeg_drivers.utils.utils import active_from_xyz +from trimesh import Trimesh +from trimesh.proximity import ProximityQuery + +from plate_simulation.models.options import PlateOptions + + +class Parametric(ABC): + """ + Base class representing parametric geometries. + """ + + def __init__(self, surface: Surface): + if not isinstance(surface, Surface): + raise TypeError( + "Input attribute 'surface' should be in instance of geoh5py.Surface." + ) + + self._surface = surface + + @property + def surface(self): + """ + Surface object representing the shape of the object. + """ + return self._surface + + @abstractmethod + def mask(self, mesh: Octree) -> np.ndarray: + """ + Return logical for cells inside the parametric object. + """ + + +class Plate(Parametric): + """ + Define a rotated rectangular block in 3D space + + :param params: Parameters describing the plate. + :param surface: Surface object representing the plate. + """ + + def __init__( + self, + params: PlateOptions, + center_x: float = 0.0, + center_y: float = 0.0, + center_z: float = 0.0, + ): + self.params = params + self.center_x = center_x + self.center_y = center_y + self.center_z = center_z + + super().__init__(self._create_surface()) + + @property + def center(self) -> Sequence[float]: + """Center of the block.""" + return [self.center_x, self.center_y, self.center_z] + + def _create_surface(self) -> Surface: + """ + Create a surface object from a plate object. + + :param workspace: Workspace object to create the surface in. + :param out_group: Output group to store the surface. + """ + byte_ws = Workspace() + surface = Surface.create( + byte_ws, + vertices=self.vertices, + cells=self.triangles, + name=self.params.name, + ) + + return surface + + @property + def surface(self): + """ + A surface object representing the plate. + """ + return self._surface + + @property + def triangles(self) -> np.ndarray: + """Triangulation of the block.""" + return np.vstack( + [ + [0, 2, 1], + [1, 2, 3], + [0, 1, 4], + [4, 1, 5], + [1, 3, 5], + [5, 3, 7], + [2, 6, 3], + [3, 6, 7], + [0, 4, 2], + [2, 4, 6], + [4, 5, 6], + [6, 5, 7], + ] + ) + + @property + def vertices(self) -> np.ndarray: + """Vertices for triangulation of a rectangular prism in 3D space.""" + + u_1 = self.center_x - (self.params.strike_length / 2.0) + u_2 = self.center_x + (self.params.strike_length / 2.0) + v_1 = self.center_y - (self.params.dip_length / 2.0) + v_2 = self.center_y + (self.params.dip_length / 2.0) + w_1 = self.center_z - (self.params.width / 2.0) + w_2 = self.center_z + (self.params.width / 2.0) + + vertices = np.array( + [ + [u_1, v_1, w_1], + [u_2, v_1, w_1], + [u_1, v_2, w_1], + [u_2, v_2, w_1], + [u_1, v_1, w_2], + [u_2, v_1, w_2], + [u_1, v_2, w_2], + [u_2, v_2, w_2], + ] + ) + + return self._rotate(vertices) + + def _rotate(self, vertices: np.ndarray) -> np.ndarray: + """Rotate vertices and adjust for reference point.""" + theta = -1 * self.params.dip_direction + phi = -1 * self.params.dip + rotated_vertices = rotate_xyz(vertices, self.center, theta, phi) + + return rotated_vertices + + def mask(self, mesh: Octree) -> np.ndarray: + plate = PlateModel( + strike_length=self.params.strike_length, + dip_length=self.params.dip_length, + width=self.params.width, + direction=self.params.direction, + dip=self.params.dip, + origin=(self.center_x, self.center_y, self.center_z), + ) + rotations = [ + z_rotation_matrix(np.deg2rad(self.params.dip_direction)), + x_rotation_matrix(np.deg2rad(self.params.dip)), + ] + rotated_centers = rotate_points( + mesh.centroids, origin=plate.origin, rotations=rotations + ) + return inside_plate(rotated_centers, plate) + + +class Body(Parametric): + """ + Represents a closed surface in the model. + + :param surface: geoh5py Surface object representing a closed surface + """ + + def mask(self, mesh: Octree) -> np.ndarray: + """ + True for cells that lie within the closed surface. + + :param mesh: Octree mesh on which the mask is computed. + """ + triangulation = Trimesh( + vertices=self.surface.vertices, faces=self.surface.cells + ) + proximity_query = ProximityQuery(triangulation) + dist = proximity_query.signed_distance(mesh.centroids) + return dist > 0 + + +class Boundary(Parametric): + """ + Represents a boundary in a model. + + :param surface: geoh5py Surface object representing a boundary + in the model. + """ + + def vertical_shift(self, offset: float) -> np.ndarray: + """ + Returns the surface vertices shifted vertically by offset. + + :param offset: Shifts vertices in up (positive) or down (negative). + """ + + if self.surface.vertices is None: + raise ValueError("Surface vertices are not defined.") + + shift = np.c_[ + np.zeros(self.surface.vertices.shape[0]), + np.zeros(self.surface.vertices.shape[0]), + np.ones(self.surface.vertices.shape[0]) * offset, + ] + return self.surface.vertices + shift + + def mask( + self, mesh: Octree, offset: float = 0.0, reference: str = "center" + ) -> np.ndarray: + """ + True for cells whose reference lie below the surface. + + :param mesh: Octree mesh on which the mask is computed. + :param offset: Statically shift the surface on which the mask + is computed. + :param reference: Use "bottom", "center" or "top" of the cells + in determining the mask. + + """ + + return active_from_xyz(mesh, self.vertical_shift(offset), reference) diff --git a/plate_simulation/models/plates.py b/plate_simulation/models/plates.py deleted file mode 100644 index 238ab1b..0000000 --- a/plate_simulation/models/plates.py +++ /dev/null @@ -1,121 +0,0 @@ -# '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' -# Copyright (c) 2024-2025 Mira Geoscience Ltd. ' -# ' -# This file is part of plate-simulation package. ' -# ' -# plate-simulation is distributed under the terms and conditions of the MIT License ' -# (see LICENSE file at the root of this source code package). ' -# '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' - -from __future__ import annotations - -from collections.abc import Sequence - -import numpy as np -from geoapps_utils.utils.transformations import rotate_xyz -from geoh5py.groups import Group -from geoh5py.objects import Surface -from geoh5py.ui_json.utils import fetch_active_workspace -from geoh5py.workspace import Workspace - -from plate_simulation.models.options import PlateOptions - - -class Plate: - """ - Define a rotated rectangular block in 3D space - - :param params: Parameters describing the plate. - :param surface: Surface object representing the plate. - """ - - def __init__( - self, - params: PlateOptions, - center_x: float = 0.0, - center_y: float = 0.0, - center_z: float = 0.0, - ): - self.params = params - self.center_x = center_x - self.center_y = center_y - self.center_z = center_z - - @property - def center(self) -> Sequence[float]: - """Center of the block.""" - return [self.center_x, self.center_y, self.center_z] - - def create_surface( - self, workspace: Workspace, out_group: Group | None = None - ) -> Surface: - """ - Create a surface object from a plate object. - - :param workspace: Workspace object to create the surface in. - :param out_group: Output group to store the surface. - """ - with fetch_active_workspace(workspace, mode="r+") as ws: - surface = Surface.create( - ws, - vertices=self.vertices, - cells=self.triangles, - name=self.params.name, - parent=out_group, - ) - - return surface - - @property - def triangles(self) -> np.ndarray: - """Triangulation of the block.""" - return np.vstack( - [ - [0, 2, 1], - [1, 2, 3], - [0, 1, 4], - [4, 1, 5], - [1, 3, 5], - [5, 3, 7], - [2, 6, 3], - [3, 6, 7], - [0, 4, 2], - [2, 4, 6], - [4, 5, 6], - [6, 5, 7], - ] - ) - - @property - def vertices(self) -> np.ndarray: - """Vertices for triangulation of a rectangular prism in 3D space.""" - - u_1 = self.center_x - (self.params.strike_length / 2.0) - u_2 = self.center_x + (self.params.strike_length / 2.0) - v_1 = self.center_y - (self.params.dip_length / 2.0) - v_2 = self.center_y + (self.params.dip_length / 2.0) - w_1 = self.center_z - (self.params.width / 2.0) - w_2 = self.center_z + (self.params.width / 2.0) - - vertices = np.array( - [ - [u_1, v_1, w_1], - [u_2, v_1, w_1], - [u_1, v_2, w_1], - [u_2, v_2, w_1], - [u_1, v_1, w_2], - [u_2, v_1, w_2], - [u_1, v_2, w_2], - [u_2, v_2, w_2], - ] - ) - - return self._rotate(vertices) - - def _rotate(self, vertices: np.ndarray) -> np.ndarray: - """Rotate vertices and adjust for reference point.""" - theta = -1 * self.params.dip_direction - phi = -1 * self.params.dip - rotated_vertices = rotate_xyz(vertices, self.center, theta, phi) - - return rotated_vertices diff --git a/tests/models/events_test.py b/tests/models/events_test.py index 55d7e3e..8c60491 100644 --- a/tests/models/events_test.py +++ b/tests/models/events_test.py @@ -13,7 +13,7 @@ from plate_simulation.models.events import Anomaly, Deposition, Erosion, Overburden from plate_simulation.models.options import PlateOptions -from plate_simulation.models.plates import Plate +from plate_simulation.models.parametric import Plate from . import get_topo_mesh @@ -88,8 +88,8 @@ def test_anomaly(tmp_path): dip_length=1.0, ) plate = Plate(params, center_x=5.0, center_y=5.0, center_z=-1.5) - surface = plate.create_surface(workspace) - anomaly = Anomaly(surface=surface, value=10.0) + + anomaly = Anomaly(body=plate, value=10.0) event_map = {1: ("Background", 1.0)} model, event_map = anomaly.realize( mesh=octree, model=np.ones(octree.n_cells), event_map=event_map diff --git a/tests/models/plates_test.py b/tests/models/plates_test.py index 5cb1e37..7178131 100644 --- a/tests/models/plates_test.py +++ b/tests/models/plates_test.py @@ -9,10 +9,9 @@ import numpy as np from geoapps_utils.utils.transformations import rotate_xyz -from geoh5py import Workspace from plate_simulation.models.options import PlateOptions -from plate_simulation.models.plates import Plate +from plate_simulation.models.parametric import Plate def are_collocated(pts1, pts2): @@ -23,7 +22,7 @@ def are_collocated(pts1, pts2): return np.all(truth) -def vertical_east_striking_plate(workspace): +def vertical_east_striking_plate(): params = PlateOptions( name="my plate", plate=1.0, @@ -36,12 +35,11 @@ def vertical_east_striking_plate(workspace): ) plate = Plate(params) - return plate.create_surface(workspace) + return plate.surface -def test_vertical_east_striking_plate(tmp_path): - workspace = Workspace(tmp_path / "test.geoh5") - vertical_east_striking = vertical_east_striking_plate(workspace) +def test_vertical_east_striking_plate(): + vertical_east_striking = vertical_east_striking_plate() assert vertical_east_striking.vertices is not None assert vertical_east_striking.extent is not None assert np.isclose( @@ -67,9 +65,8 @@ def test_vertical_east_striking_plate(tmp_path): ) -def test_dipping_plates_all_quadrants(tmp_path): - workspace = Workspace(tmp_path / "test.geoh5") - reference = vertical_east_striking_plate(workspace) +def test_dipping_plates_all_quadrants(): + reference = vertical_east_striking_plate() for dip_direction in np.arange(0.0, 361.0, 45.0): for dip in [20.0, 70.0]: @@ -86,7 +83,7 @@ def test_dipping_plates_all_quadrants(tmp_path): ) plate = Plate(params) - surface = plate.create_surface(workspace) + surface = plate.surface locs = rotate_xyz(surface.vertices, [0.0, 0.0, 0.0], dip_direction, 0.0) locs = rotate_xyz(locs, [0.0, 0.0, 0.0], 0.0, dip - 90.0) assert np.allclose(locs, reference.vertices) From 7168ab3773c2cb9e681aad131ac0746f088e98a0 Mon Sep 17 00:00:00 2001 From: dominiquef Date: Wed, 18 Jun 2025 14:11:55 -0700 Subject: [PATCH 2/7] Simplify Plate class --- plate_simulation/driver.py | 35 ++++++++++++++------------- plate_simulation/mesh/options.py | 2 +- plate_simulation/models/options.py | 24 +++++++----------- plate_simulation/models/parametric.py | 32 ++++++++++-------------- plate_simulation/utils.py | 22 +++++++++-------- 5 files changed, 53 insertions(+), 62 deletions(-) diff --git a/plate_simulation/driver.py b/plate_simulation/driver.py index 0e50ced..db3f824 100644 --- a/plate_simulation/driver.py +++ b/plate_simulation/driver.py @@ -157,29 +157,27 @@ def surfaces(self) -> list[Surface]: if self._surfaces is None: offset = ( - self.params.model.overburden.thickness - if self.params.model.plate.reference_surface == "overburden" + self.params.model.overburden_model.thickness + if self.params.model.plate_model.reference_surface == "overburden" else 0.0 ) - center = self.params.model.plate.center( + center = self.params.model.plate_model.center( self.survey, self.topography, depth_offset=-1 * offset, ) plate = Plate( - self.params.model.plate, - *center, + self.params.model.plate_model, + center, + ) + plates = replicate( + plate, + self.params.model.plate_model.number, + self.params.model.plate_model.spacing, + self.params.model.plate_model.dip_direction, ) - if self.params.model.plate.number == 1: - self._surfaces = [plate.surface] - else: - self._surfaces = replicate( - plate.surface, - self.params.model.plate.number, - self.params.model.plate.spacing, - self.params.model.plate.dip_direction, - ) + self._surfaces = [p.surface for p in plates] return self._surfaces @@ -225,12 +223,15 @@ def make_model(self) -> FloatData: overburden = Overburden( topography=self.simulation_parameters.active_cells.topography_object, - thickness=self.params.model.overburden.thickness, - value=self.params.model.overburden.overburden, + thickness=self.params.model.overburden_model.thickness, + value=self.params.model.overburden_model.overburden, ) dikes = DikeSwarm( - [Anomaly(Body(s), self.params.model.plate.plate) for s in self.surfaces], + [ + Anomaly(Body(s), self.params.model.plate_model.plate) + for s in self.surfaces + ], name="plates", ) diff --git a/plate_simulation/mesh/options.py b/plate_simulation/mesh/options.py index ed41468..13bc05e 100644 --- a/plate_simulation/mesh/options.py +++ b/plate_simulation/mesh/options.py @@ -52,7 +52,7 @@ def octree_params( ) octree_params = OctreeParams( - geoh5=plates[0].workspace, + geoh5=survey.workspace, objects=survey, u_cell_size=self.u_cell_size, v_cell_size=self.v_cell_size, diff --git a/plate_simulation/models/options.py b/plate_simulation/models/options.py index 3b34ffa..2bc888f 100644 --- a/plate_simulation/models/options.py +++ b/plate_simulation/models/options.py @@ -27,8 +27,6 @@ class PlateOptions(BaseModel): """ Parameters describing an anomalous plate. - :param name: Name to be given to the geoh5py Surface object - representing the plate(s). :param plate: Value given to the plate(s). :param width: V-size of the plate. :param strike_length: U-size of the plate. @@ -53,7 +51,7 @@ class PlateOptions(BaseModel): model_config = ConfigDict(arbitrary_types_allowed=True) - name: str + name: str = "Plate" plate: float width: float strike_length: float @@ -90,7 +88,7 @@ def center( survey: Points, surface: Points, depth_offset: float = 0.0, - ) -> list[float]: + ) -> tuple[float, float, float]: """ Find the plate center relative to a survey and topography. @@ -98,20 +96,18 @@ def center( :param surface: Points-like object to reference plate depth from. :param depth_offset: Additional offset to be added to the depth of the plate. """ - return [*self._get_xy(survey), self._get_z(surface, depth_offset)] + return *self._get_xy(survey), self._get_z(surface, depth_offset) - def _get_xy(self, survey: Points) -> list[float]: + def _get_xy(self, survey: Points) -> tuple[float, float]: """Return true or relative locations in x and y.""" if self.relative_locations: - xy = [ + return ( survey.vertices[:, 0].mean() + self.easting, survey.vertices[:, 1].mean() + self.northing, - ] - else: - xy = [self.easting, self.northing] + ) - return xy + return self.easting, self.northing def _get_z(self, surface: Points, offset: float = 0.0) -> float: """ @@ -148,7 +144,6 @@ class ModelOptions(BaseModel): """ Parameters for the blackground + overburden and plate model. - :param name: Name to be given to the model. :param background: Value given to the background. :param overburden: Overburden layer parameters. :param plate: Plate parameters. @@ -156,7 +151,6 @@ class ModelOptions(BaseModel): model_config = ConfigDict(arbitrary_types_allowed=True) - name: str background: float - overburden: OverburdenOptions - plate: PlateOptions + overburden_model: OverburdenOptions + plate_model: PlateOptions diff --git a/plate_simulation/models/parametric.py b/plate_simulation/models/parametric.py index 55ba264..8296cdc 100644 --- a/plate_simulation/models/parametric.py +++ b/plate_simulation/models/parametric.py @@ -10,7 +10,6 @@ from __future__ import annotations from abc import ABC, abstractmethod -from collections.abc import Sequence import numpy as np from geoapps_utils.modelling.plates import PlateModel, inside_plate @@ -67,22 +66,17 @@ class Plate(Parametric): def __init__( self, params: PlateOptions, - center_x: float = 0.0, - center_y: float = 0.0, - center_z: float = 0.0, + center: tuple[float, float, float] = ( + 0.0, + 0.0, + 0.0, + ), ): self.params = params - self.center_x = center_x - self.center_y = center_y - self.center_z = center_z + self.center = center super().__init__(self._create_surface()) - @property - def center(self) -> Sequence[float]: - """Center of the block.""" - return [self.center_x, self.center_y, self.center_z] - def _create_surface(self) -> Surface: """ Create a surface object from a plate object. @@ -131,12 +125,12 @@ def triangles(self) -> np.ndarray: def vertices(self) -> np.ndarray: """Vertices for triangulation of a rectangular prism in 3D space.""" - u_1 = self.center_x - (self.params.strike_length / 2.0) - u_2 = self.center_x + (self.params.strike_length / 2.0) - v_1 = self.center_y - (self.params.dip_length / 2.0) - v_2 = self.center_y + (self.params.dip_length / 2.0) - w_1 = self.center_z - (self.params.width / 2.0) - w_2 = self.center_z + (self.params.width / 2.0) + u_1 = self.center[0] - (self.params.strike_length / 2.0) + u_2 = self.center[0] + (self.params.strike_length / 2.0) + v_1 = self.center[1] - (self.params.dip_length / 2.0) + v_2 = self.center[1] + (self.params.dip_length / 2.0) + w_1 = self.center[2] - (self.params.width / 2.0) + w_2 = self.center[2] + (self.params.width / 2.0) vertices = np.array( [ @@ -168,7 +162,7 @@ def mask(self, mesh: Octree) -> np.ndarray: width=self.params.width, direction=self.params.direction, dip=self.params.dip, - origin=(self.center_x, self.center_y, self.center_z), + origin=self.center, ) rotations = [ z_rotation_matrix(np.deg2rad(self.params.dip_direction)), diff --git a/plate_simulation/utils.py b/plate_simulation/utils.py index c9e743e..1f22748 100644 --- a/plate_simulation/utils.py +++ b/plate_simulation/utils.py @@ -8,7 +8,8 @@ # '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' import numpy as np -from geoh5py.objects import Surface + +from plate_simulation.models.parametric import Plate def azimuth_to_unit_vector(azimuth: float) -> np.ndarray: @@ -28,27 +29,28 @@ def azimuth_to_unit_vector(azimuth: float) -> np.ndarray: def replicate( - surface: Surface, + plate: Plate, number: int, spacing: float, azimuth: float, -) -> list[Surface]: +) -> list[Plate]: """ Replicate a plate n times along an azimuth centered at origin. - Surface names will be indexed. + Plate names will be indexed. - :param surface: geoh5py.Surface to be replicated. + :param plate: models.parametric.Plate to be replicated. :param number: Number of plates returned. :param spacing: Spacing between plates. :param azimuth: Azimuth of the axis along with plates are replicated. """ offsets = (np.arange(number) * spacing) - ((number - 1) * spacing / 2) - surfaces = [surface.copy() for i in range(number - 1)] + [surface] + plates = [] for i in range(number): - surfaces[i].vertices += azimuth_to_unit_vector(azimuth) * offsets[i] - surfaces[i].name = f"{surface.name} offset {i + 1}" - - return surfaces + center = np.r_[plate.center] + azimuth_to_unit_vector(azimuth) * offsets[i] + new = Plate(plate.params, center) + new.params.name = f"{plate.params.name} offset {i + 1}" + plates.append(new) + return plates From ed0424c21f24cf5630df18fd12c698205af110d8 Mon Sep 17 00:00:00 2001 From: dominiquef Date: Wed, 18 Jun 2025 14:52:14 -0700 Subject: [PATCH 3/7] Fix losing acccess to temp workspace --- plate_simulation/driver.py | 4 ++-- plate_simulation/models/parametric.py | 25 +++++++++++++++++-------- 2 files changed, 19 insertions(+), 10 deletions(-) diff --git a/plate_simulation/driver.py b/plate_simulation/driver.py index db3f824..ffa88f8 100644 --- a/plate_simulation/driver.py +++ b/plate_simulation/driver.py @@ -113,7 +113,7 @@ def simulation_driver(self) -> InversionDriver: if self._simulation_driver is None: with fetch_active_workspace(self.params.geoh5, mode="r+"): self.simulation_parameters.mesh = self.mesh - self.simulation_parameters.starting_model = self.model + self.simulation_parameters.models.starting_model = self.model if not isinstance( self.simulation_parameters.active_cells.topography_object, @@ -177,7 +177,7 @@ def surfaces(self) -> list[Surface]: self.params.model.plate_model.dip_direction, ) - self._surfaces = [p.surface for p in plates] + self._surfaces = [p.surface.copy(parent=self.out_group) for p in plates] return self._surfaces diff --git a/plate_simulation/models/parametric.py b/plate_simulation/models/parametric.py index 8296cdc..4aa6774 100644 --- a/plate_simulation/models/parametric.py +++ b/plate_simulation/models/parametric.py @@ -20,6 +20,7 @@ z_rotation_matrix, ) from geoh5py.objects import Octree, Surface +from geoh5py.shared.utils import fetch_active_workspace from geoh5py.workspace import Workspace from simpeg_drivers.utils.utils import active_from_xyz from trimesh import Trimesh @@ -71,10 +72,11 @@ def __init__( 0.0, 0.0, ), + workspace: Workspace | None = None, ): self.params = params self.center = center - + self._workspace = workspace super().__init__(self._create_surface()) def _create_surface(self) -> Surface: @@ -84,13 +86,13 @@ def _create_surface(self) -> Surface: :param workspace: Workspace object to create the surface in. :param out_group: Output group to store the surface. """ - byte_ws = Workspace() - surface = Surface.create( - byte_ws, - vertices=self.vertices, - cells=self.triangles, - name=self.params.name, - ) + with fetch_active_workspace(self.workspace) as ws: + surface = Surface.create( + ws, + vertices=self.vertices, + cells=self.triangles, + name=self.params.name, + ) return surface @@ -147,6 +149,13 @@ def vertices(self) -> np.ndarray: return self._rotate(vertices) + @property + def workspace(self) -> Workspace: + if self._workspace is None: + self._workspace = Workspace() + + return self._workspace + def _rotate(self, vertices: np.ndarray) -> np.ndarray: """Rotate vertices and adjust for reference point.""" theta = -1 * self.params.dip_direction From 4f41912b75d574a5a777ea23746a028f45579932 Mon Sep 17 00:00:00 2001 From: dominiquef Date: Wed, 18 Jun 2025 16:39:11 -0700 Subject: [PATCH 4/7] Fix tests --- plate_simulation/models/parametric.py | 2 +- plate_simulation/utils.py | 2 +- tests/models/events_test.py | 2 +- tests/runtest/driver_test.py | 32 ++++++------- tests/runtest/gravity_test.py | 23 ++++------ tests/utils/utils_test.py | 66 +++++++++++++++++---------- 6 files changed, 70 insertions(+), 57 deletions(-) diff --git a/plate_simulation/models/parametric.py b/plate_simulation/models/parametric.py index 4aa6774..24f56ad 100644 --- a/plate_simulation/models/parametric.py +++ b/plate_simulation/models/parametric.py @@ -169,7 +169,7 @@ def mask(self, mesh: Octree) -> np.ndarray: strike_length=self.params.strike_length, dip_length=self.params.dip_length, width=self.params.width, - direction=self.params.direction, + direction=self.params.dip_direction, dip=self.params.dip, origin=self.center, ) diff --git a/plate_simulation/utils.py b/plate_simulation/utils.py index 1f22748..06ccc48 100644 --- a/plate_simulation/utils.py +++ b/plate_simulation/utils.py @@ -50,7 +50,7 @@ def replicate( plates = [] for i in range(number): center = np.r_[plate.center] + azimuth_to_unit_vector(azimuth) * offsets[i] - new = Plate(plate.params, center) + new = Plate(plate.params.copy(), center) new.params.name = f"{plate.params.name} offset {i + 1}" plates.append(new) return plates diff --git a/tests/models/events_test.py b/tests/models/events_test.py index 8c60491..36e07fd 100644 --- a/tests/models/events_test.py +++ b/tests/models/events_test.py @@ -87,7 +87,7 @@ def test_anomaly(tmp_path): strike_length=10.0, dip_length=1.0, ) - plate = Plate(params, center_x=5.0, center_y=5.0, center_z=-1.5) + plate = Plate(params, center=(5.0, 5.0, -1.5)) anomaly = Anomaly(body=plate, value=10.0) event_map = {1: ("Background", 1.0)} diff --git a/tests/runtest/driver_test.py b/tests/runtest/driver_test.py index a895f72..ca13d1f 100644 --- a/tests/runtest/driver_test.py +++ b/tests/runtest/driver_test.py @@ -215,20 +215,20 @@ def test_plate_simulation_params_from_input_file(tmp_path): assert not params.mesh.diagonal_balance assert isinstance(params.model, ModelOptions) - assert params.model.name == "test_gravity_plate_simulation" + assert params.model.plate_model.name == "test_gravity_plate_simulation" assert params.model.background == 1000.0 - assert params.model.overburden.thickness == 50.0 - assert params.model.overburden.overburden == 5.0 - assert params.model.plate.plate == 2.0 - assert params.model.plate.width == 100.0 - assert params.model.plate.strike_length == 100.0 - assert params.model.plate.dip_length == 100.0 - assert params.model.plate.dip == 0.0 - assert params.model.plate.dip_direction == 0.0 - - assert params.model.plate.number == 9 - assert params.model.plate.spacing == 10.0 - assert params.model.plate.relative_locations - assert params.model.plate.easting == 10.0 - assert params.model.plate.northing == 10.0 - assert params.model.plate.elevation == -250.0 + assert params.model.overburden_model.thickness == 50.0 + assert params.model.overburden_model.overburden == 5.0 + assert params.model.plate_model.plate == 2.0 + assert params.model.plate_model.width == 100.0 + assert params.model.plate_model.strike_length == 100.0 + assert params.model.plate_model.dip_length == 100.0 + assert params.model.plate_model.dip == 0.0 + assert params.model.plate_model.dip_direction == 0.0 + + assert params.model.plate_model.number == 9 + assert params.model.plate_model.spacing == 10.0 + assert params.model.plate_model.relative_locations + assert params.model.plate_model.easting == 10.0 + assert params.model.plate_model.northing == 10.0 + assert params.model.plate_model.elevation == -250.0 diff --git a/tests/runtest/gravity_test.py b/tests/runtest/gravity_test.py index b7b6eff..0770688a 100644 --- a/tests/runtest/gravity_test.py +++ b/tests/runtest/gravity_test.py @@ -7,12 +7,10 @@ # (see LICENSE file at the root of this source code package). ' # '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' -from copy import deepcopy - import numpy as np from geoh5py import Workspace from geoh5py.groups import SimPEGGroup -from simpeg_drivers.constants import default_ui_json +from simpeg_drivers.potential_fields.gravity.options import GravityForwardOptions from plate_simulation.driver import PlateSimulationDriver from plate_simulation.mesh.options import MeshOptions @@ -57,20 +55,19 @@ def test_gravity_plate_simulation(tmp_path): model_params = ModelOptions( name="density", background=0.0, - overburden=overburden_params, - plate=plate_params, + overburden_model=overburden_params, + plate_model=plate_params, ) - options = deepcopy(default_ui_json) - options["title"] = "gravity inversion" - options["inversion_type"] = "gravity" - options["forward_only"] = True - options["geoh5"] = str(ws.h5file) - options["topography_object"]["value"] = str(topography.uid) - options["data_object"]["value"] = str(survey.uid) + options = GravityForwardOptions.build( + topography_object=topography, + data_object=survey, + geoh5=ws, + starting_model=0.1, + ) gravity_inversion = SimPEGGroup.create(ws) - gravity_inversion.options = options + gravity_inversion.options = options.serialize() params = PlateSimulationOptions( title="test", diff --git a/tests/utils/utils_test.py b/tests/utils/utils_test.py index 54316da..02ac2c8 100644 --- a/tests/utils/utils_test.py +++ b/tests/utils/utils_test.py @@ -9,8 +9,8 @@ import numpy as np from geoh5py import Workspace -from geoh5py.objects import Surface +from plate_simulation.models.parametric import Plate, PlateOptions from plate_simulation.utils import azimuth_to_unit_vector, replicate @@ -23,34 +23,50 @@ def test_azimuth_to_unit_vector(): def test_replicate_even(tmp_path): - workspace = Workspace.create(tmp_path / "test.geoh5") - surface = Surface.create( - workspace, + workspace = Workspace.create(tmp_path / f"{__name__}.geoh5") + options = PlateOptions( name="test", - vertices=np.array([[-1, -1, 0], [1, -1, 0], [1, 1, 0], [-1, 1, 0]]), - cells=np.array([[0, 1, 2], [0, 2, 3]]), + plate=1.0, + width=1.0, + strike_length=1.0, + dip_length=1.0, + elevation=1.0, + ) + plate = Plate(options, (0, 0, 0), workspace=workspace) + plates = replicate(plate, 2, 10.0, 90.0) + assert plates[0].surface.vertices is not None + assert plates[1].surface.vertices is not None + assert plates[0].params.name == "test offset 1" + assert np.allclose( + plates[0].surface.vertices.mean(axis=0), np.array([-5.0, 0.0, 0.0]) + ) + assert plates[1].params.name == "test offset 2" + assert np.allclose( + plates[1].surface.vertices.mean(axis=0), np.array([5.0, 0.0, 0.0]) ) - surfaces = replicate(surface, 2, 10.0, 90.0) - assert surfaces[0].vertices is not None - assert surfaces[1].vertices is not None - assert surfaces[0].name == "test offset 1" - assert np.allclose(surfaces[0].vertices.mean(axis=0), np.array([-5.0, 0.0, 0.0])) - assert surfaces[1].name == "test offset 2" - assert np.allclose(surfaces[1].vertices.mean(axis=0), np.array([5.0, 0.0, 0.0])) def test_replicate_odd(tmp_path): - workspace = Workspace.create(tmp_path / "test.geoh5") - surface = Surface.create( - workspace, + workspace = Workspace.create(tmp_path / f"{__name__}.geoh5") + options = PlateOptions( name="test", - vertices=np.array([[-1, -1, 0], [1, -1, 0], [1, 1, 0], [-1, 1, 0]]), - cells=np.array([[0, 1, 2], [0, 2, 3]]), + plate=1.0, + width=1.0, + strike_length=1.0, + dip_length=1.0, + elevation=1.0, + ) + plate = Plate(options, (0, 0, 0), workspace=workspace) + plates = replicate(plate, 3, 5.0, 0.0) + assert plates[0].surface.vertices is not None + assert plates[1].surface.vertices is not None + assert plates[2].surface.vertices is not None + assert np.allclose( + plates[0].surface.vertices.mean(axis=0), np.array([0.0, -5.0, 0.0]) + ) + assert np.allclose( + plates[1].surface.vertices.mean(axis=0), np.array([0.0, 0.0, 0.0]) + ) + assert np.allclose( + plates[2].surface.vertices.mean(axis=0), np.array([0.0, 5.0, 0.0]) ) - surfaces = replicate(surface, 3, 5.0, 0.0) - assert surfaces[0].vertices is not None - assert surfaces[1].vertices is not None - assert surfaces[2].vertices is not None - assert np.allclose(surfaces[0].vertices.mean(axis=0), np.array([0.0, -5.0, 0.0])) - assert np.allclose(surfaces[1].vertices.mean(axis=0), np.array([0.0, 0.0, 0.0])) - assert np.allclose(surfaces[2].vertices.mean(axis=0), np.array([0.0, 5.0, 0.0])) From 9e5cc3fee5fad4d959a0feaa31760621b6bc3ac1 Mon Sep 17 00:00:00 2001 From: dominiquef Date: Wed, 18 Jun 2025 16:58:14 -0700 Subject: [PATCH 5/7] Switch to using plates instead of body --- plate_simulation/driver.py | 31 ++++++++++++------------------- 1 file changed, 12 insertions(+), 19 deletions(-) diff --git a/plate_simulation/driver.py b/plate_simulation/driver.py index ffa88f8..1a16e30 100644 --- a/plate_simulation/driver.py +++ b/plate_simulation/driver.py @@ -26,7 +26,7 @@ from plate_simulation.logger import get_logger from plate_simulation.models.events import Anomaly, Erosion, Overburden -from plate_simulation.models.parametric import Body, Plate +from plate_simulation.models.parametric import Plate from plate_simulation.models.series import DikeSwarm, Geology from plate_simulation.options import PlateSimulationOptions from plate_simulation.utils import replicate @@ -47,7 +47,7 @@ class PlateSimulationDriver: def __init__(self, params: PlateSimulationOptions): self.params = params - self._surfaces: list[Surface] | None = None + self._plates: list[Plate] | None = None self._survey: Points | None = None self._mesh: Octree | None = None self._model: FloatData | None = None @@ -148,14 +148,9 @@ def survey(self): return self._survey @property - def topography(self) -> Surface | Points: - return self.simulation_parameters.active_cells.topography_object - - @property - def surfaces(self) -> list[Surface]: - """Returns a list of surfaces representing the plates for simulation.""" - - if self._surfaces is None: + def plates(self) -> list[Plate]: + """Generate sequence of plates.""" + if self._plates is None: offset = ( self.params.model.overburden_model.thickness if self.params.model.plate_model.reference_surface == "overburden" @@ -170,16 +165,17 @@ def surfaces(self) -> list[Surface]: self.params.model.plate_model, center, ) - plates = replicate( + self._plates = replicate( plate, self.params.model.plate_model.number, self.params.model.plate_model.spacing, self.params.model.plate_model.dip_direction, ) + return self._plates - self._surfaces = [p.surface.copy(parent=self.out_group) for p in plates] - - return self._surfaces + @property + def topography(self) -> Surface | Points: + return self.simulation_parameters.active_cells.topography_object @property def mesh(self) -> Octree: @@ -208,7 +204,7 @@ def make_mesh(self) -> Octree: octree_params = self.params.mesh.octree_params( self.survey, self.simulation_parameters.active_cells.topography_object, - self.surfaces, + [p.surface.copy(parent=self.out_group) for p in self.plates], ) octree_driver = OctreeDriver(octree_params) mesh = octree_driver.run() @@ -228,10 +224,7 @@ def make_model(self) -> FloatData: ) dikes = DikeSwarm( - [ - Anomaly(Body(s), self.params.model.plate_model.plate) - for s in self.surfaces - ], + [Anomaly(plate, plate.params.plate) for plate in self.plates], name="plates", ) From 5d55e0a5a2de9daf7f460fc0f155ea9b0d2ad75c Mon Sep 17 00:00:00 2001 From: dominiquef Date: Wed, 18 Jun 2025 17:28:52 -0700 Subject: [PATCH 6/7] Re-lock --- .../py-3.10-linux-64-dev.conda.lock.yml | 135 +- environments/py-3.10-linux-64.conda.lock.yml | 109 +- .../py-3.10-win-64-dev.conda.lock.yml | 122 +- environments/py-3.10-win-64.conda.lock.yml | 96 +- .../py-3.11-linux-64-dev.conda.lock.yml | 135 +- environments/py-3.11-linux-64.conda.lock.yml | 109 +- .../py-3.11-win-64-dev.conda.lock.yml | 122 +- environments/py-3.11-win-64.conda.lock.yml | 96 +- .../py-3.12-linux-64-dev.conda.lock.yml | 135 +- environments/py-3.12-linux-64.conda.lock.yml | 109 +- .../py-3.12-win-64-dev.conda.lock.yml | 122 +- environments/py-3.12-win-64.conda.lock.yml | 96 +- py-3.10.conda-lock.yml | 1074 ++++++++-------- py-3.11.conda-lock.yml | 1084 +++++++++-------- py-3.12.conda-lock.yml | 1084 +++++++++-------- 15 files changed, 2347 insertions(+), 2281 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 256bf0c..00a99ae 100644 --- a/environments/py-3.10-linux-64-dev.conda.lock.yml +++ b/environments/py-3.10-linux-64-dev.conda.lock.yml @@ -10,63 +10,64 @@ dependencies: - alabaster=0.7.16=pyhd8ed1ab_0 - annotated-types=0.7.0=pyhd8ed1ab_1 - asciitree=0.3.3=py_2 - - astroid=3.3.9=py310hff52083_0 + - astroid=3.3.10=py310hff52083_0 - babel=2.17.0=pyhd8ed1ab_0 - - brotli=1.1.0=hb9d3cd8_2 - - brotli-bin=1.1.0=hb9d3cd8_2 - - brotli-python=1.1.0=py310hf71b8c6_2 + - brotli=1.1.0=hb9d3cd8_3 + - brotli-bin=1.1.0=hb9d3cd8_3 + - brotli-python=1.1.0=py310hf71b8c6_3 - bzip2=1.0.8=h4bc722e_7 - c-ares=1.34.5=hb9d3cd8_0 - - ca-certificates=2025.4.26=hbd8a1cb_0 + - ca-certificates=2025.6.15=hbd8a1cb_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2025.1.31=pyhd8ed1ab_0 + - certifi=2025.6.15=pyhd8ed1ab_0 - cffi=1.17.1=py310h8deb56e_0 - - charset-normalizer=3.4.1=pyhd8ed1ab_0 - - click=8.1.8=pyh707e725_0 + - charset-normalizer=3.4.2=pyhd8ed1ab_0 + - click=8.2.1=pyh707e725_0 - cloudpickle=3.1.1=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - contourpy=1.3.2=py310h3788b33_0 - - coverage=7.8.0=py310h89163eb_0 + - coverage=7.9.1=py310h89163eb_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py310ha75aee5_0 - dask-core=2025.3.0=pyhd8ed1ab_0 - dill=0.4.0=pyhd8ed1ab_0 - - discretize=0.11.2=py310ha2bacc8_1 + - discretize=0.11.3=py310ha2bacc8_0 - distributed=2025.3.0=pyhd8ed1ab_0 - docutils=0.19=py310hff52083_1 - - exceptiongroup=1.2.2=pyhd8ed1ab_1 + - exceptiongroup=1.3.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.57.0=py310h89163eb_0 + - fonttools=4.58.4=py310h89163eb_0 - freetype=2.13.3=ha770c72_1 - - fsspec=2025.3.2=pyhd8ed1ab_0 + - fsspec=2025.5.1=pyhd8ed1ab_0 - geoana=0.7.2=py310ha2bacc8_0 - h2=4.2.0=pyhd8ed1ab_0 - - h5py=3.13.0=nompi_py310h60e0fe6_100 - - hdf5=1.14.3=nompi_h2d575fe_109 + - h5py=3.14.0=nompi_py310hea1e86d_100 + - hdf5=1.14.6=nompi_h2d575fe_101 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 + - icu=75.1=he02047a_0 - idna=3.10=pyhd8ed1ab_1 - imagesize=1.4.1=pyhd8ed1ab_0 - - importlib-metadata=8.6.1=pyha770c72_0 + - importlib-metadata=8.7.0=pyhe01879c_1 - iniconfig=2.0.0=pyhd8ed1ab_1 - - isort=6.0.1=pyhd8ed1ab_0 + - isort=6.0.1=pyhd8ed1ab_1 - jinja2=3.1.6=pyhd8ed1ab_0 - - joblib=1.4.2=pyhd8ed1ab_1 + - joblib=1.5.1=pyhd8ed1ab_0 - keyutils=1.6.1=h166bdaf_0 - kiwisolver=1.4.7=py310h3788b33_0 - krb5=1.21.3=h659f571_0 - lcms2=2.17=h717163a_0 - - ld_impl_linux-64=2.43=h712a8e2_4 + - ld_impl_linux-64=2.43=h1423503_5 - lerc=4.0.0=h0aef613_1 - - libaec=1.1.3=h59595ed_0 + - libaec=1.1.4=h3f801dc_0 - libblas=3.9.0=31_hfdb39a5_mkl - - libbrotlicommon=1.1.0=hb9d3cd8_2 - - libbrotlidec=1.1.0=hb9d3cd8_2 - - libbrotlienc=1.1.0=hb9d3cd8_2 + - libbrotlicommon=1.1.0=hb9d3cd8_3 + - libbrotlidec=1.1.0=hb9d3cd8_3 + - libbrotlienc=1.1.0=hb9d3cd8_3 - libcblas=3.9.0=31_h372d94f_mkl - - libcurl=8.13.0=h332b0f4_0 - - libdeflate=1.23=h86f0d12_0 + - libcurl=8.14.1=h332b0f4_0 + - libdeflate=1.24=h86f0d12_0 - libdlf=0.3.0=pyhd8ed1ab_1 - libedit=3.1.20250104=pl5321h7949ede_0 - libev=4.33=hd590300_2 @@ -74,67 +75,67 @@ dependencies: - libffi=3.4.6=h2dba641_1 - libfreetype=2.13.3=ha770c72_1 - libfreetype6=2.13.3=h48d6fc4_1 - - libgcc=14.2.0=h767d61c_2 - - libgcc-ng=14.2.0=h69a702a_2 - - libgfortran=14.2.0=h69a702a_2 - - libgfortran5=14.2.0=hf1ad2bd_2 + - libgcc=15.1.0=h767d61c_2 + - libgcc-ng=15.1.0=h69a702a_2 + - libgfortran=15.1.0=h69a702a_2 + - libgfortran5=15.1.0=hcea5267_2 - libhwloc=2.11.2=default_h0d58e46_1001 - libiconv=1.18=h4ce23a2_1 - libjpeg-turbo=3.1.0=hb9d3cd8_0 - liblapack=3.9.0=31_hc41d3b0_mkl - - liblzma=5.8.1=hb9d3cd8_0 + - liblzma=5.8.1=hb9d3cd8_2 - libnghttp2=1.64.0=h161d5f1_0 - - libnsl=2.0.1=hd590300_0 - - libpng=1.6.47=h943b412_0 + - libnsl=2.0.1=hb9d3cd8_1 + - libpng=1.6.49=h943b412_0 - libscotch=7.0.6=hea33c07_1 - libspatialindex=2.0.0=he02047a_0 - - libsqlite=3.49.1=hee588c1_2 + - libsqlite=3.50.1=hee588c1_0 - libssh2=1.11.1=hcf80075_0 - - libstdcxx=14.2.0=h8f9b012_2 - - libstdcxx-ng=14.2.0=h4852527_2 - - libtiff=4.7.0=hd9ff511_4 + - libstdcxx=15.1.0=h8f9b012_2 + - libstdcxx-ng=15.1.0=h4852527_2 + - libtiff=4.7.0=hf01ce69_5 - libuuid=2.38.1=h0b41bf4_0 - libwebp-base=1.5.0=h851e524_0 - libxcb=1.17.0=h8a09558_0 - libxcrypt=4.4.36=hd590300_1 - - libxml2=2.13.7=h81593ed_1 + - libxml2=2.13.8=h4bc477f_0 - libzlib=1.3.1=hb9d3cd8_2 - - llvm-openmp=20.1.4=h024ca30_0 + - llvm-openmp=20.1.7=h024ca30_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py310h89163eb_1 - matplotlib-base=3.8.4=py310hef631a5_2 - mccabe=0.7.0=pyhd8ed1ab_1 - metis=5.1.0=hd0bcaf9_1007 - mkl=2024.2.2=ha957f24_16 - - msgpack-python=1.1.0=py310h3788b33_0 + - msgpack-python=1.1.1=py310h3788b33_0 - mumps-include=5.7.3=h82cca05_10 - mumps-seq=5.7.3=h06cbf8f_10 - - munkres=1.1.4=pyh9f0ad1d_0 + - munkres=1.1.4=pyhd8ed1ab_1 - ncurses=6.5=h2d0b736_3 - numcodecs=0.13.1=py310h5eaa309_0 - numpy=1.26.4=py310hb13e2d6_0 - openjpeg=2.5.3=h5fbd93e_0 - - openssl=3.5.0=h7b32b05_0 + - openssl=3.5.0=h7b32b05_1 - packaging=25.0=pyh29332c3_1 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py310hebfe307_1 - - pip=25.1=pyh8b19718_0 - - platformdirs=4.3.7=pyh29332c3_0 - - pluggy=1.5.0=pyhd8ed1ab_1 + - pip=25.1.1=pyh8b19718_0 + - platformdirs=4.3.8=pyhe01879c_0 + - pluggy=1.6.0=pyhd8ed1ab_0 - psutil=7.0.0=py310ha75aee5_0 - pthread-stubs=0.4=hb9d3cd8_1002 - pycparser=2.22=pyh29332c3_1 - - pydantic=2.11.3=pyh3cfb1c2_0 - - pydantic-core=2.33.1=py310hc1293b2_0 + - pydantic=2.11.7=pyh3cfb1c2_0 + - pydantic-core=2.33.2=py310hbcd0ec0_0 - pydiso=0.1.2=py310h69a6472_0 - pygments=2.19.1=pyhd8ed1ab_0 - - pylint=3.3.6=pyh29332c3_0 + - pylint=3.3.7=pyhe01879c_0 - pymatsolver=0.3.1=pyh48887ae_201 - pyparsing=3.2.3=pyhd8ed1ab_1 - pysocks=1.7.1=pyha55dd90_7 - - pytest=8.3.5=pyhd8ed1ab_0 - - pytest-cov=6.1.1=pyhd8ed1ab_0 - - python=3.10.17=hd6af730_0_cpython + - 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-mumps=0.0.3=py310h6410a28_0 - python_abi=3.10=7_cp310 @@ -142,13 +143,13 @@ dependencies: - pyyaml=6.0.2=py310h89163eb_2 - readline=8.2=h8c095d6_2 - readthedocs-sphinx-ext=2.2.5=pyhd8ed1ab_1 - - requests=2.32.3=pyhd8ed1ab_1 + - requests=2.32.4=pyhd8ed1ab_0 - rtree=1.2.0=py310haf1e407_1 - scikit-learn=1.4.2=py310h981052a_1 - scipy=1.14.1=py310hfcf56fc_2 - - setuptools=80.1.0=pyhff2d567_0 + - setuptools=80.9.0=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - snowballstemmer=3.0.1=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - sphinx=5.3.0=pyhd8ed1ab_0 - sphinxcontrib-applehelp=2.0.0=pyhd8ed1ab_1 @@ -160,36 +161,36 @@ dependencies: - tbb=2021.13.0=hceb3a55_1 - tblib=3.1.0=pyhd8ed1ab_0 - threadpoolctl=3.3.0=pyhc1e730c_0 - - tk=8.6.13=noxft_h4845f30_101 + - tk=8.6.13=noxft_hd72426e_102 - toml=0.10.2=pyhd8ed1ab_1 - tomli=2.2.1=pyhd8ed1ab_1 - - tomlkit=0.13.2=pyha770c72_1 + - tomlkit=0.13.3=pyha770c72_0 - toolz=1.0.0=pyhd8ed1ab_1 - - tornado=6.4.2=py310ha75aee5_0 + - tornado=6.5.1=py310ha75aee5_0 - tqdm=4.67.1=pyhd8ed1ab_1 - trimesh=4.1.8=pyhd8ed1ab_0 - - typing-extensions=4.13.2=h0e9735f_0 - - typing-inspection=0.4.0=pyhd8ed1ab_0 - - typing_extensions=4.13.2=pyh29332c3_0 + - typing-extensions=4.14.0=h32cad80_0 + - typing-inspection=0.4.1=pyhd8ed1ab_0 + - typing_extensions=4.14.0=pyhe01879c_0 - tzdata=2025b=h78e105d_0 - unicodedata2=16.0.0=py310ha75aee5_0 - - urllib3=2.4.0=pyhd8ed1ab_0 + - urllib3=2.5.0=pyhd8ed1ab_0 - wheel=0.45.1=pyhd8ed1ab_1 - xorg-libxau=1.0.12=hb9d3cd8_0 - xorg-libxdmcp=1.1.5=hb9d3cd8_0 - yaml=0.2.5=h7f98852_2 - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 - - zipp=3.21.0=pyhd8ed1ab_1 + - zipp=3.23.0=pyhd8ed1ab_0 - zstandard=0.23.0=py310ha75aee5_2 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@6e21320c89581dccb1635d8460dfe296ec41b6da - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@24027d81b65df99d5f582acc4497ed33df8a3396 - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@e9c99d6fd5d324571a2717990aecb3ed673cbaca - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 - - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@2d510ad712a20663dc0abb9afbead41537d10d91 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 + - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 + - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@25197892deadbaeb728441753ab9fba646ce5e0b 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 2380a82..5f69e3f 100644 --- a/environments/py-3.10-linux-64.conda.lock.yml +++ b/environments/py-3.10-linux-64.conda.lock.yml @@ -9,52 +9,53 @@ dependencies: - _openmp_mutex=4.5=3_kmp_llvm - annotated-types=0.7.0=pyhd8ed1ab_1 - asciitree=0.3.3=py_2 - - brotli=1.1.0=hb9d3cd8_2 - - brotli-bin=1.1.0=hb9d3cd8_2 - - brotli-python=1.1.0=py310hf71b8c6_2 + - brotli=1.1.0=hb9d3cd8_3 + - brotli-bin=1.1.0=hb9d3cd8_3 + - brotli-python=1.1.0=py310hf71b8c6_3 - bzip2=1.0.8=h4bc722e_7 - c-ares=1.34.5=hb9d3cd8_0 - - ca-certificates=2025.4.26=hbd8a1cb_0 + - ca-certificates=2025.6.15=hbd8a1cb_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2025.1.31=pyhd8ed1ab_0 + - certifi=2025.6.15=pyhd8ed1ab_0 - cffi=1.17.1=py310h8deb56e_0 - - click=8.1.8=pyh707e725_0 + - click=8.2.1=pyh707e725_0 - cloudpickle=3.1.1=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - contourpy=1.3.2=py310h3788b33_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py310ha75aee5_0 - dask-core=2025.3.0=pyhd8ed1ab_0 - - discretize=0.11.2=py310ha2bacc8_1 + - discretize=0.11.3=py310ha2bacc8_0 - distributed=2025.3.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.57.0=py310h89163eb_0 + - fonttools=4.58.4=py310h89163eb_0 - freetype=2.13.3=ha770c72_1 - - fsspec=2025.3.2=pyhd8ed1ab_0 + - fsspec=2025.5.1=pyhd8ed1ab_0 - geoana=0.7.2=py310ha2bacc8_0 - h2=4.2.0=pyhd8ed1ab_0 - - h5py=3.13.0=nompi_py310h60e0fe6_100 - - hdf5=1.14.3=nompi_h2d575fe_109 + - h5py=3.14.0=nompi_py310hea1e86d_100 + - hdf5=1.14.6=nompi_h2d575fe_101 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - - importlib-metadata=8.6.1=pyha770c72_0 + - icu=75.1=he02047a_0 + - importlib-metadata=8.7.0=pyhe01879c_1 - jinja2=3.1.6=pyhd8ed1ab_0 - - joblib=1.4.2=pyhd8ed1ab_1 + - joblib=1.5.1=pyhd8ed1ab_0 - keyutils=1.6.1=h166bdaf_0 - kiwisolver=1.4.7=py310h3788b33_0 - krb5=1.21.3=h659f571_0 - lcms2=2.17=h717163a_0 - - ld_impl_linux-64=2.43=h712a8e2_4 + - ld_impl_linux-64=2.43=h1423503_5 - lerc=4.0.0=h0aef613_1 - - libaec=1.1.3=h59595ed_0 + - libaec=1.1.4=h3f801dc_0 - libblas=3.9.0=31_hfdb39a5_mkl - - libbrotlicommon=1.1.0=hb9d3cd8_2 - - libbrotlidec=1.1.0=hb9d3cd8_2 - - libbrotlienc=1.1.0=hb9d3cd8_2 + - libbrotlicommon=1.1.0=hb9d3cd8_3 + - libbrotlidec=1.1.0=hb9d3cd8_3 + - libbrotlienc=1.1.0=hb9d3cd8_3 - libcblas=3.9.0=31_h372d94f_mkl - - libcurl=8.13.0=h332b0f4_0 - - libdeflate=1.23=h86f0d12_0 + - libcurl=8.14.1=h332b0f4_0 + - libdeflate=1.24=h86f0d12_0 - libdlf=0.3.0=pyhd8ed1ab_1 - libedit=3.1.20250104=pl5321h7949ede_0 - libev=4.33=hd590300_2 @@ -62,60 +63,60 @@ dependencies: - libffi=3.4.6=h2dba641_1 - libfreetype=2.13.3=ha770c72_1 - libfreetype6=2.13.3=h48d6fc4_1 - - libgcc=14.2.0=h767d61c_2 - - libgcc-ng=14.2.0=h69a702a_2 - - libgfortran=14.2.0=h69a702a_2 - - libgfortran5=14.2.0=hf1ad2bd_2 + - libgcc=15.1.0=h767d61c_2 + - libgcc-ng=15.1.0=h69a702a_2 + - libgfortran=15.1.0=h69a702a_2 + - libgfortran5=15.1.0=hcea5267_2 - libhwloc=2.11.2=default_h0d58e46_1001 - libiconv=1.18=h4ce23a2_1 - libjpeg-turbo=3.1.0=hb9d3cd8_0 - liblapack=3.9.0=31_hc41d3b0_mkl - - liblzma=5.8.1=hb9d3cd8_0 + - liblzma=5.8.1=hb9d3cd8_2 - libnghttp2=1.64.0=h161d5f1_0 - - libnsl=2.0.1=hd590300_0 - - libpng=1.6.47=h943b412_0 + - libnsl=2.0.1=hb9d3cd8_1 + - libpng=1.6.49=h943b412_0 - libscotch=7.0.6=hea33c07_1 - libspatialindex=2.0.0=he02047a_0 - - libsqlite=3.49.1=hee588c1_2 + - libsqlite=3.50.1=hee588c1_0 - libssh2=1.11.1=hcf80075_0 - - libstdcxx=14.2.0=h8f9b012_2 - - libstdcxx-ng=14.2.0=h4852527_2 - - libtiff=4.7.0=hd9ff511_4 + - libstdcxx=15.1.0=h8f9b012_2 + - libstdcxx-ng=15.1.0=h4852527_2 + - libtiff=4.7.0=hf01ce69_5 - libuuid=2.38.1=h0b41bf4_0 - libwebp-base=1.5.0=h851e524_0 - libxcb=1.17.0=h8a09558_0 - libxcrypt=4.4.36=hd590300_1 - - libxml2=2.13.7=h81593ed_1 + - libxml2=2.13.8=h4bc477f_0 - libzlib=1.3.1=hb9d3cd8_2 - - llvm-openmp=20.1.4=h024ca30_0 + - llvm-openmp=20.1.7=h024ca30_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py310h89163eb_1 - matplotlib-base=3.8.4=py310hef631a5_2 - metis=5.1.0=hd0bcaf9_1007 - mkl=2024.2.2=ha957f24_16 - - msgpack-python=1.1.0=py310h3788b33_0 + - msgpack-python=1.1.1=py310h3788b33_0 - mumps-include=5.7.3=h82cca05_10 - mumps-seq=5.7.3=h06cbf8f_10 - - munkres=1.1.4=pyh9f0ad1d_0 + - munkres=1.1.4=pyhd8ed1ab_1 - ncurses=6.5=h2d0b736_3 - numcodecs=0.13.1=py310h5eaa309_0 - numpy=1.26.4=py310hb13e2d6_0 - openjpeg=2.5.3=h5fbd93e_0 - - openssl=3.5.0=h7b32b05_0 + - openssl=3.5.0=h7b32b05_1 - packaging=25.0=pyh29332c3_1 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py310hebfe307_1 - - pip=25.1=pyh8b19718_0 + - pip=25.1.1=pyh8b19718_0 - psutil=7.0.0=py310ha75aee5_0 - pthread-stubs=0.4=hb9d3cd8_1002 - pycparser=2.22=pyh29332c3_1 - - pydantic=2.11.3=pyh3cfb1c2_0 - - pydantic-core=2.33.1=py310hc1293b2_0 + - pydantic=2.11.7=pyh3cfb1c2_0 + - pydantic-core=2.33.2=py310hbcd0ec0_0 - pydiso=0.1.2=py310h69a6472_0 - pymatsolver=0.3.1=pyh48887ae_201 - pyparsing=3.2.3=pyhd8ed1ab_1 - pysocks=1.7.1=pyha55dd90_7 - - python=3.10.17=hd6af730_0_cpython + - python=3.10.18=hd6af730_0_cpython - python-dateutil=2.9.0.post0=pyhff2d567_1 - python-mumps=0.0.3=py310h6410a28_0 - python_abi=3.10=7_cp310 @@ -124,39 +125,39 @@ dependencies: - rtree=1.2.0=py310haf1e407_1 - scikit-learn=1.4.2=py310h981052a_1 - scipy=1.14.1=py310hfcf56fc_2 - - setuptools=80.1.0=pyhff2d567_0 + - setuptools=80.9.0=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - tbb=2021.13.0=hceb3a55_1 - tblib=3.1.0=pyhd8ed1ab_0 - threadpoolctl=3.3.0=pyhc1e730c_0 - - tk=8.6.13=noxft_h4845f30_101 + - tk=8.6.13=noxft_hd72426e_102 - toolz=1.0.0=pyhd8ed1ab_1 - - tornado=6.4.2=py310ha75aee5_0 + - tornado=6.5.1=py310ha75aee5_0 - tqdm=4.67.1=pyhd8ed1ab_1 - trimesh=4.1.8=pyhd8ed1ab_0 - - typing-extensions=4.13.2=h0e9735f_0 - - typing-inspection=0.4.0=pyhd8ed1ab_0 - - typing_extensions=4.13.2=pyh29332c3_0 + - typing-extensions=4.14.0=h32cad80_0 + - typing-inspection=0.4.1=pyhd8ed1ab_0 + - typing_extensions=4.14.0=pyhe01879c_0 - tzdata=2025b=h78e105d_0 - unicodedata2=16.0.0=py310ha75aee5_0 - - urllib3=2.4.0=pyhd8ed1ab_0 + - urllib3=2.5.0=pyhd8ed1ab_0 - wheel=0.45.1=pyhd8ed1ab_1 - xorg-libxau=1.0.12=hb9d3cd8_0 - xorg-libxdmcp=1.1.5=hb9d3cd8_0 - yaml=0.2.5=h7f98852_2 - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 - - zipp=3.21.0=pyhd8ed1ab_1 + - zipp=3.23.0=pyhd8ed1ab_0 - zstandard=0.23.0=py310ha75aee5_2 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@6e21320c89581dccb1635d8460dfe296ec41b6da - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@24027d81b65df99d5f582acc4497ed33df8a3396 - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@e9c99d6fd5d324571a2717990aecb3ed673cbaca - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 - - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@2d510ad712a20663dc0abb9afbead41537d10d91 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 + - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 + - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@25197892deadbaeb728441753ab9fba646ce5e0b 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 faf04b2..2964ff8 100644 --- a/environments/py-3.10-win-64-dev.conda.lock.yml +++ b/environments/py-3.10-win-64-dev.conda.lock.yml @@ -10,129 +10,129 @@ dependencies: - alabaster=0.7.16=pyhd8ed1ab_0 - annotated-types=0.7.0=pyhd8ed1ab_1 - asciitree=0.3.3=py_2 - - astroid=3.3.9=py310h5588dad_0 + - astroid=3.3.10=py310h5588dad_0 - babel=2.17.0=pyhd8ed1ab_0 - - brotli=1.1.0=h2466b09_2 - - brotli-bin=1.1.0=h2466b09_2 - - brotli-python=1.1.0=py310h9e98ed7_2 + - brotli=1.1.0=h2466b09_3 + - brotli-bin=1.1.0=h2466b09_3 + - brotli-python=1.1.0=py310h9e98ed7_3 - bzip2=1.0.8=h2466b09_7 - - ca-certificates=2025.4.26=h4c7d964_0 + - ca-certificates=2025.6.15=h4c7d964_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2025.1.31=pyhd8ed1ab_0 + - certifi=2025.6.15=pyhd8ed1ab_0 - cffi=1.17.1=py310ha8f682b_0 - - charset-normalizer=3.4.1=pyhd8ed1ab_0 - - click=8.1.8=pyh7428d3b_0 + - charset-normalizer=3.4.2=pyhd8ed1ab_0 + - click=8.2.1=pyh7428d3b_0 - cloudpickle=3.1.1=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - contourpy=1.3.2=py310hc19bc0b_0 - - coverage=7.8.0=py310h38315fa_0 + - coverage=7.9.1=py310h38315fa_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py310ha8f682b_0 - dask-core=2025.3.0=pyhd8ed1ab_0 - dill=0.4.0=pyhd8ed1ab_0 - - discretize=0.11.2=py310h3e8ed56_1 + - discretize=0.11.3=py310h3e8ed56_0 - distributed=2025.3.0=pyhd8ed1ab_0 - docutils=0.19=py310h5588dad_1 - - exceptiongroup=1.2.2=pyhd8ed1ab_1 + - exceptiongroup=1.3.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.57.0=py310h38315fa_0 + - fonttools=4.58.4=py310h38315fa_0 - freetype=2.13.3=h57928b3_1 - - fsspec=2025.3.2=pyhd8ed1ab_0 + - fsspec=2025.5.1=pyhd8ed1ab_0 - geoana=0.7.2=py310h3e8ed56_0 - h2=4.2.0=pyhd8ed1ab_0 - - h5py=3.13.0=nompi_py310h2b0be38_100 - - hdf5=1.14.3=nompi_hb2c4d47_109 + - h5py=3.14.0=nompi_py310h877c39c_100 + - hdf5=1.14.6=nompi_hd5d9e70_101 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - idna=3.10=pyhd8ed1ab_1 - imagesize=1.4.1=pyhd8ed1ab_0 - - importlib-metadata=8.6.1=pyha770c72_0 + - importlib-metadata=8.7.0=pyhe01879c_1 - iniconfig=2.0.0=pyhd8ed1ab_1 - intel-openmp=2024.2.1=h57928b3_1083 - - isort=6.0.1=pyhd8ed1ab_0 + - isort=6.0.1=pyhd8ed1ab_1 - jinja2=3.1.6=pyhd8ed1ab_0 - - joblib=1.4.2=pyhd8ed1ab_1 + - joblib=1.5.1=pyhd8ed1ab_0 - kiwisolver=1.4.7=py310hc19bc0b_0 - krb5=1.21.3=hdf4eb48_0 - lcms2=2.17=hbcf6048_0 - lerc=4.0.0=h6470a55_1 - - libaec=1.1.3=h63175ca_0 + - libaec=1.1.4=h20038f6_0 - libblas=3.9.0=31_h641d27c_mkl - - libbrotlicommon=1.1.0=h2466b09_2 - - libbrotlidec=1.1.0=h2466b09_2 - - libbrotlienc=1.1.0=h2466b09_2 + - libbrotlicommon=1.1.0=h2466b09_3 + - libbrotlidec=1.1.0=h2466b09_3 + - libbrotlienc=1.1.0=h2466b09_3 - libcblas=3.9.0=31_h5e41251_mkl - - libcurl=8.13.0=h88aaa65_0 - - libdeflate=1.23=h76ddb4d_0 + - libcurl=8.14.1=h88aaa65_0 + - libdeflate=1.24=h76ddb4d_0 - libdlf=0.3.0=pyhd8ed1ab_1 - libexpat=2.7.0=he0c23c2_0 - libffi=3.4.6=h537db12_1 - libfreetype=2.13.3=h57928b3_1 - libfreetype6=2.13.3=h0b5ce68_1 - - libgcc=14.2.0=h1383e82_2 - - libgomp=14.2.0=h1383e82_2 + - libgcc=15.1.0=h1383e82_2 + - libgomp=15.1.0=h1383e82_2 - libhwloc=2.11.2=default_ha69328c_1001 - libiconv=1.18=h135ad9c_1 - libjpeg-turbo=3.1.0=h2466b09_0 - liblapack=3.9.0=31_h1aa476e_mkl - - liblzma=5.8.1=h2466b09_0 - - libpng=1.6.47=h7a4582a_0 + - liblzma=5.8.1=h2466b09_2 + - libpng=1.6.49=h7a4582a_0 - libspatialindex=2.0.0=h5a68840_0 - - libsqlite=3.49.1=h67fdade_2 + - libsqlite=3.50.1=h67fdade_0 - libssh2=1.11.1=h9aa295b_0 - - libtiff=4.7.0=h797046b_4 + - libtiff=4.7.0=h05922d8_5 - libwebp-base=1.5.0=h3b0e114_0 - libwinpthread=12.0.0.r4.gg4f2fc60ca=h57928b3_9 - libxcb=1.17.0=h0e4246c_0 - - libxml2=2.13.7=h442d1da_1 + - libxml2=2.13.8=h442d1da_0 - libzlib=1.3.1=h2466b09_2 - - llvm-openmp=20.1.4=h30eaf37_0 + - llvm-openmp=20.1.7=h30eaf37_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py310h38315fa_1 - matplotlib-base=3.8.4=py310hadb10a8_2 - mccabe=0.7.0=pyhd8ed1ab_1 - mkl=2024.2.2=h66d3029_15 - - msgpack-python=1.1.0=py310hc19bc0b_0 + - msgpack-python=1.1.1=py310hc19bc0b_0 - mumps-seq=5.7.3=hbaa6519_10 - - munkres=1.1.4=pyh9f0ad1d_0 + - munkres=1.1.4=pyhd8ed1ab_1 - numcodecs=0.13.1=py310hb4db72f_0 - numpy=1.26.4=py310hf667824_0 - openjpeg=2.5.3=h4d64b90_0 - - openssl=3.5.0=ha4e3fda_0 + - openssl=3.5.0=ha4e3fda_1 - packaging=25.0=pyh29332c3_1 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py310h3e38d90_1 - - pip=25.1=pyh8b19718_0 - - platformdirs=4.3.7=pyh29332c3_0 - - pluggy=1.5.0=pyhd8ed1ab_1 + - pip=25.1.1=pyh8b19718_0 + - platformdirs=4.3.8=pyhe01879c_0 + - pluggy=1.6.0=pyhd8ed1ab_0 - psutil=7.0.0=py310ha8f682b_0 - pthread-stubs=0.4=h0e40799_1002 - pycparser=2.22=pyh29332c3_1 - - pydantic=2.11.3=pyh3cfb1c2_0 - - pydantic-core=2.33.1=py310h7c79e54_0 + - pydantic=2.11.7=pyh3cfb1c2_0 + - pydantic-core=2.33.2=py310hed05c55_0 - pydiso=0.1.2=py310h8f92c26_0 - pygments=2.19.1=pyhd8ed1ab_0 - - pylint=3.3.6=pyh29332c3_0 + - pylint=3.3.7=pyhe01879c_0 - pymatsolver=0.3.1=pyh48887ae_201 - pyparsing=3.2.3=pyhd8ed1ab_1 - pysocks=1.7.1=pyh09c184e_7 - - pytest=8.3.5=pyhd8ed1ab_0 - - pytest-cov=6.1.1=pyhd8ed1ab_0 - - python=3.10.17=h8c5b53a_0_cpython + - 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-mumps=0.0.3=py310hb64895d_0 - python_abi=3.10=7_cp310 - pytz=2025.2=pyhd8ed1ab_0 - pyyaml=6.0.2=py310h38315fa_2 - readthedocs-sphinx-ext=2.2.5=pyhd8ed1ab_1 - - requests=2.32.3=pyhd8ed1ab_1 + - requests=2.32.4=pyhd8ed1ab_0 - rtree=1.2.0=py310h08d5ad2_1 - scikit-learn=1.4.2=py310hf2a6c47_1 - scipy=1.14.1=py310hbd0dde3_2 - - setuptools=80.1.0=pyhff2d567_0 + - setuptools=80.9.0=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - snowballstemmer=3.0.1=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - sphinx=5.3.0=pyhd8ed1ab_0 - sphinxcontrib-applehelp=2.0.0=pyhd8ed1ab_1 @@ -144,21 +144,21 @@ dependencies: - tbb=2021.13.0=h62715c5_1 - tblib=3.1.0=pyhd8ed1ab_0 - threadpoolctl=3.3.0=pyhc1e730c_0 - - tk=8.6.13=h5226925_1 + - tk=8.6.13=h2c6b04d_2 - toml=0.10.2=pyhd8ed1ab_1 - tomli=2.2.1=pyhd8ed1ab_1 - - tomlkit=0.13.2=pyha770c72_1 + - tomlkit=0.13.3=pyha770c72_0 - toolz=1.0.0=pyhd8ed1ab_1 - - tornado=6.4.2=py310ha8f682b_0 + - tornado=6.5.1=py310ha8f682b_0 - tqdm=4.67.1=pyhd8ed1ab_1 - trimesh=4.1.8=pyhd8ed1ab_0 - - typing-extensions=4.13.2=h0e9735f_0 - - typing-inspection=0.4.0=pyhd8ed1ab_0 - - typing_extensions=4.13.2=pyh29332c3_0 + - typing-extensions=4.14.0=h32cad80_0 + - typing-inspection=0.4.1=pyhd8ed1ab_0 + - typing_extensions=4.14.0=pyhe01879c_0 - tzdata=2025b=h78e105d_0 - ucrt=10.0.22621.0=h57928b3_1 - unicodedata2=16.0.0=py310ha8f682b_0 - - urllib3=2.4.0=pyhd8ed1ab_0 + - urllib3=2.5.0=pyhd8ed1ab_0 - vc=14.3=h2b53caa_26 - vc14_runtime=14.42.34438=hfd919c2_26 - vs2015_runtime=14.42.34438=h7142326_26 @@ -169,16 +169,16 @@ dependencies: - yaml=0.2.5=h8ffe710_2 - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 - - zipp=3.21.0=pyhd8ed1ab_1 + - zipp=3.23.0=pyhd8ed1ab_0 - zstandard=0.23.0=py310ha8f682b_2 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@6e21320c89581dccb1635d8460dfe296ec41b6da - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@24027d81b65df99d5f582acc4497ed33df8a3396 - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@e9c99d6fd5d324571a2717990aecb3ed673cbaca - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 - - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@2d510ad712a20663dc0abb9afbead41537d10d91 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 + - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 + - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@25197892deadbaeb728441753ab9fba646ce5e0b 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 6898fb4..24a7ef4 100644 --- a/environments/py-3.10-win-64.conda.lock.yml +++ b/environments/py-3.10-win-64.conda.lock.yml @@ -9,98 +9,98 @@ dependencies: - _openmp_mutex=4.5=2_gnu - annotated-types=0.7.0=pyhd8ed1ab_1 - asciitree=0.3.3=py_2 - - brotli=1.1.0=h2466b09_2 - - brotli-bin=1.1.0=h2466b09_2 - - brotli-python=1.1.0=py310h9e98ed7_2 + - brotli=1.1.0=h2466b09_3 + - brotli-bin=1.1.0=h2466b09_3 + - brotli-python=1.1.0=py310h9e98ed7_3 - bzip2=1.0.8=h2466b09_7 - - ca-certificates=2025.4.26=h4c7d964_0 + - ca-certificates=2025.6.15=h4c7d964_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2025.1.31=pyhd8ed1ab_0 + - certifi=2025.6.15=pyhd8ed1ab_0 - cffi=1.17.1=py310ha8f682b_0 - - click=8.1.8=pyh7428d3b_0 + - click=8.2.1=pyh7428d3b_0 - cloudpickle=3.1.1=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - contourpy=1.3.2=py310hc19bc0b_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py310ha8f682b_0 - dask-core=2025.3.0=pyhd8ed1ab_0 - - discretize=0.11.2=py310h3e8ed56_1 + - discretize=0.11.3=py310h3e8ed56_0 - distributed=2025.3.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.57.0=py310h38315fa_0 + - fonttools=4.58.4=py310h38315fa_0 - freetype=2.13.3=h57928b3_1 - - fsspec=2025.3.2=pyhd8ed1ab_0 + - fsspec=2025.5.1=pyhd8ed1ab_0 - geoana=0.7.2=py310h3e8ed56_0 - h2=4.2.0=pyhd8ed1ab_0 - - h5py=3.13.0=nompi_py310h2b0be38_100 - - hdf5=1.14.3=nompi_hb2c4d47_109 + - h5py=3.14.0=nompi_py310h877c39c_100 + - hdf5=1.14.6=nompi_hd5d9e70_101 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - - importlib-metadata=8.6.1=pyha770c72_0 + - importlib-metadata=8.7.0=pyhe01879c_1 - intel-openmp=2024.2.1=h57928b3_1083 - jinja2=3.1.6=pyhd8ed1ab_0 - - joblib=1.4.2=pyhd8ed1ab_1 + - joblib=1.5.1=pyhd8ed1ab_0 - kiwisolver=1.4.7=py310hc19bc0b_0 - krb5=1.21.3=hdf4eb48_0 - lcms2=2.17=hbcf6048_0 - lerc=4.0.0=h6470a55_1 - - libaec=1.1.3=h63175ca_0 + - libaec=1.1.4=h20038f6_0 - libblas=3.9.0=31_h641d27c_mkl - - libbrotlicommon=1.1.0=h2466b09_2 - - libbrotlidec=1.1.0=h2466b09_2 - - libbrotlienc=1.1.0=h2466b09_2 + - libbrotlicommon=1.1.0=h2466b09_3 + - libbrotlidec=1.1.0=h2466b09_3 + - libbrotlienc=1.1.0=h2466b09_3 - libcblas=3.9.0=31_h5e41251_mkl - - libcurl=8.13.0=h88aaa65_0 - - libdeflate=1.23=h76ddb4d_0 + - libcurl=8.14.1=h88aaa65_0 + - libdeflate=1.24=h76ddb4d_0 - libdlf=0.3.0=pyhd8ed1ab_1 - libexpat=2.7.0=he0c23c2_0 - libffi=3.4.6=h537db12_1 - libfreetype=2.13.3=h57928b3_1 - libfreetype6=2.13.3=h0b5ce68_1 - - libgcc=14.2.0=h1383e82_2 - - libgomp=14.2.0=h1383e82_2 + - libgcc=15.1.0=h1383e82_2 + - libgomp=15.1.0=h1383e82_2 - libhwloc=2.11.2=default_ha69328c_1001 - libiconv=1.18=h135ad9c_1 - libjpeg-turbo=3.1.0=h2466b09_0 - liblapack=3.9.0=31_h1aa476e_mkl - - liblzma=5.8.1=h2466b09_0 - - libpng=1.6.47=h7a4582a_0 + - liblzma=5.8.1=h2466b09_2 + - libpng=1.6.49=h7a4582a_0 - libspatialindex=2.0.0=h5a68840_0 - - libsqlite=3.49.1=h67fdade_2 + - libsqlite=3.50.1=h67fdade_0 - libssh2=1.11.1=h9aa295b_0 - - libtiff=4.7.0=h797046b_4 + - libtiff=4.7.0=h05922d8_5 - libwebp-base=1.5.0=h3b0e114_0 - libwinpthread=12.0.0.r4.gg4f2fc60ca=h57928b3_9 - libxcb=1.17.0=h0e4246c_0 - - libxml2=2.13.7=h442d1da_1 + - libxml2=2.13.8=h442d1da_0 - libzlib=1.3.1=h2466b09_2 - - llvm-openmp=20.1.4=h30eaf37_0 + - llvm-openmp=20.1.7=h30eaf37_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py310h38315fa_1 - matplotlib-base=3.8.4=py310hadb10a8_2 - mkl=2024.2.2=h66d3029_15 - - msgpack-python=1.1.0=py310hc19bc0b_0 + - msgpack-python=1.1.1=py310hc19bc0b_0 - mumps-seq=5.7.3=hbaa6519_10 - - munkres=1.1.4=pyh9f0ad1d_0 + - munkres=1.1.4=pyhd8ed1ab_1 - numcodecs=0.13.1=py310hb4db72f_0 - numpy=1.26.4=py310hf667824_0 - openjpeg=2.5.3=h4d64b90_0 - - openssl=3.5.0=ha4e3fda_0 + - openssl=3.5.0=ha4e3fda_1 - packaging=25.0=pyh29332c3_1 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py310h3e38d90_1 - - pip=25.1=pyh8b19718_0 + - pip=25.1.1=pyh8b19718_0 - psutil=7.0.0=py310ha8f682b_0 - pthread-stubs=0.4=h0e40799_1002 - pycparser=2.22=pyh29332c3_1 - - pydantic=2.11.3=pyh3cfb1c2_0 - - pydantic-core=2.33.1=py310h7c79e54_0 + - pydantic=2.11.7=pyh3cfb1c2_0 + - pydantic-core=2.33.2=py310hed05c55_0 - pydiso=0.1.2=py310h8f92c26_0 - pymatsolver=0.3.1=pyh48887ae_201 - pyparsing=3.2.3=pyhd8ed1ab_1 - pysocks=1.7.1=pyh09c184e_7 - - python=3.10.17=h8c5b53a_0_cpython + - python=3.10.18=h8c5b53a_0_cpython - python-dateutil=2.9.0.post0=pyhff2d567_1 - python-mumps=0.0.3=py310hb64895d_0 - python_abi=3.10=7_cp310 @@ -108,24 +108,24 @@ dependencies: - rtree=1.2.0=py310h08d5ad2_1 - scikit-learn=1.4.2=py310hf2a6c47_1 - scipy=1.14.1=py310hbd0dde3_2 - - setuptools=80.1.0=pyhff2d567_0 + - setuptools=80.9.0=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - tbb=2021.13.0=h62715c5_1 - tblib=3.1.0=pyhd8ed1ab_0 - threadpoolctl=3.3.0=pyhc1e730c_0 - - tk=8.6.13=h5226925_1 + - tk=8.6.13=h2c6b04d_2 - toolz=1.0.0=pyhd8ed1ab_1 - - tornado=6.4.2=py310ha8f682b_0 + - tornado=6.5.1=py310ha8f682b_0 - tqdm=4.67.1=pyhd8ed1ab_1 - trimesh=4.1.8=pyhd8ed1ab_0 - - typing-extensions=4.13.2=h0e9735f_0 - - typing-inspection=0.4.0=pyhd8ed1ab_0 - - typing_extensions=4.13.2=pyh29332c3_0 + - typing-extensions=4.14.0=h32cad80_0 + - typing-inspection=0.4.1=pyhd8ed1ab_0 + - typing_extensions=4.14.0=pyhe01879c_0 - tzdata=2025b=h78e105d_0 - ucrt=10.0.22621.0=h57928b3_1 - unicodedata2=16.0.0=py310ha8f682b_0 - - urllib3=2.4.0=pyhd8ed1ab_0 + - urllib3=2.5.0=pyhd8ed1ab_0 - vc=14.3=h2b53caa_26 - vc14_runtime=14.42.34438=hfd919c2_26 - vs2015_runtime=14.42.34438=h7142326_26 @@ -136,16 +136,16 @@ dependencies: - yaml=0.2.5=h8ffe710_2 - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 - - zipp=3.21.0=pyhd8ed1ab_1 + - zipp=3.23.0=pyhd8ed1ab_0 - zstandard=0.23.0=py310ha8f682b_2 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@6e21320c89581dccb1635d8460dfe296ec41b6da - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@24027d81b65df99d5f582acc4497ed33df8a3396 - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@e9c99d6fd5d324571a2717990aecb3ed673cbaca - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 - - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@2d510ad712a20663dc0abb9afbead41537d10d91 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 + - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 + - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@25197892deadbaeb728441753ab9fba646ce5e0b 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 1b492cb..eb198a5 100644 --- a/environments/py-3.11-linux-64-dev.conda.lock.yml +++ b/environments/py-3.11-linux-64-dev.conda.lock.yml @@ -10,64 +10,65 @@ dependencies: - alabaster=0.7.16=pyhd8ed1ab_0 - annotated-types=0.7.0=pyhd8ed1ab_1 - asciitree=0.3.3=py_2 - - astroid=3.3.9=py311h38be061_0 + - astroid=3.3.10=py311h38be061_0 - babel=2.17.0=pyhd8ed1ab_0 - - brotli=1.1.0=hb9d3cd8_2 - - brotli-bin=1.1.0=hb9d3cd8_2 - - brotli-python=1.1.0=py311hfdbb021_2 + - brotli=1.1.0=hb9d3cd8_3 + - brotli-bin=1.1.0=hb9d3cd8_3 + - brotli-python=1.1.0=py311hfdbb021_3 - bzip2=1.0.8=h4bc722e_7 - c-ares=1.34.5=hb9d3cd8_0 - - ca-certificates=2025.4.26=hbd8a1cb_0 + - ca-certificates=2025.6.15=hbd8a1cb_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2025.1.31=pyhd8ed1ab_0 + - certifi=2025.6.15=pyhd8ed1ab_0 - cffi=1.17.1=py311hf29c0ef_0 - - charset-normalizer=3.4.1=pyhd8ed1ab_0 - - click=8.1.8=pyh707e725_0 + - charset-normalizer=3.4.2=pyhd8ed1ab_0 + - click=8.2.1=pyh707e725_0 - cloudpickle=3.1.1=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - contourpy=1.3.2=py311hd18a35c_0 - - coverage=7.8.0=py311h2dc5d0c_0 + - coverage=7.9.1=py311h2dc5d0c_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py311h9ecbd09_0 - dask-core=2025.3.0=pyhd8ed1ab_0 - deprecated=1.2.18=pyhd8ed1ab_0 - dill=0.4.0=pyhd8ed1ab_0 - - discretize=0.11.2=py311h5b7b71f_1 + - discretize=0.11.3=py311h5b7b71f_0 - distributed=2025.3.0=pyhd8ed1ab_0 - docutils=0.19=py311h38be061_1 - - exceptiongroup=1.2.2=pyhd8ed1ab_1 + - exceptiongroup=1.3.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.57.0=py311h2dc5d0c_0 + - fonttools=4.58.4=py311h2dc5d0c_0 - freetype=2.13.3=ha770c72_1 - - fsspec=2025.3.2=pyhd8ed1ab_0 + - fsspec=2025.5.1=pyhd8ed1ab_0 - geoana=0.7.2=py311h5b7b71f_0 - h2=4.2.0=pyhd8ed1ab_0 - - h5py=3.13.0=nompi_py311hb639ac4_100 - - hdf5=1.14.3=nompi_h2d575fe_109 + - h5py=3.14.0=nompi_py311h7f87ba5_100 + - hdf5=1.14.6=nompi_h2d575fe_101 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 + - icu=75.1=he02047a_0 - idna=3.10=pyhd8ed1ab_1 - imagesize=1.4.1=pyhd8ed1ab_0 - - importlib-metadata=8.6.1=pyha770c72_0 + - importlib-metadata=8.7.0=pyhe01879c_1 - iniconfig=2.0.0=pyhd8ed1ab_1 - - isort=6.0.1=pyhd8ed1ab_0 + - isort=6.0.1=pyhd8ed1ab_1 - jinja2=3.1.6=pyhd8ed1ab_0 - - joblib=1.4.2=pyhd8ed1ab_1 + - joblib=1.5.1=pyhd8ed1ab_0 - keyutils=1.6.1=h166bdaf_0 - kiwisolver=1.4.7=py311hd18a35c_0 - krb5=1.21.3=h659f571_0 - lcms2=2.17=h717163a_0 - - ld_impl_linux-64=2.43=h712a8e2_4 + - ld_impl_linux-64=2.43=h1423503_5 - lerc=4.0.0=h0aef613_1 - - libaec=1.1.3=h59595ed_0 + - libaec=1.1.4=h3f801dc_0 - libblas=3.9.0=31_hfdb39a5_mkl - - libbrotlicommon=1.1.0=hb9d3cd8_2 - - libbrotlidec=1.1.0=hb9d3cd8_2 - - libbrotlienc=1.1.0=hb9d3cd8_2 + - libbrotlicommon=1.1.0=hb9d3cd8_3 + - libbrotlidec=1.1.0=hb9d3cd8_3 + - libbrotlienc=1.1.0=hb9d3cd8_3 - libcblas=3.9.0=31_h372d94f_mkl - - libcurl=8.13.0=h332b0f4_0 - - libdeflate=1.23=h86f0d12_0 + - libcurl=8.14.1=h332b0f4_0 + - libdeflate=1.24=h86f0d12_0 - libdlf=0.3.0=pyhd8ed1ab_1 - libedit=3.1.20250104=pl5321h7949ede_0 - libev=4.33=hd590300_2 @@ -75,67 +76,67 @@ dependencies: - libffi=3.4.6=h2dba641_1 - libfreetype=2.13.3=ha770c72_1 - libfreetype6=2.13.3=h48d6fc4_1 - - libgcc=14.2.0=h767d61c_2 - - libgcc-ng=14.2.0=h69a702a_2 - - libgfortran=14.2.0=h69a702a_2 - - libgfortran5=14.2.0=hf1ad2bd_2 + - libgcc=15.1.0=h767d61c_2 + - libgcc-ng=15.1.0=h69a702a_2 + - libgfortran=15.1.0=h69a702a_2 + - libgfortran5=15.1.0=hcea5267_2 - libhwloc=2.11.2=default_h0d58e46_1001 - libiconv=1.18=h4ce23a2_1 - libjpeg-turbo=3.1.0=hb9d3cd8_0 - liblapack=3.9.0=31_hc41d3b0_mkl - - liblzma=5.8.1=hb9d3cd8_0 + - liblzma=5.8.1=hb9d3cd8_2 - libnghttp2=1.64.0=h161d5f1_0 - - libnsl=2.0.1=hd590300_0 - - libpng=1.6.47=h943b412_0 + - libnsl=2.0.1=hb9d3cd8_1 + - libpng=1.6.49=h943b412_0 - libscotch=7.0.6=hea33c07_1 - libspatialindex=2.0.0=he02047a_0 - - libsqlite=3.49.1=hee588c1_2 + - libsqlite=3.50.1=hee588c1_0 - libssh2=1.11.1=hcf80075_0 - - libstdcxx=14.2.0=h8f9b012_2 - - libstdcxx-ng=14.2.0=h4852527_2 - - libtiff=4.7.0=hd9ff511_4 + - libstdcxx=15.1.0=h8f9b012_2 + - libstdcxx-ng=15.1.0=h4852527_2 + - libtiff=4.7.0=hf01ce69_5 - libuuid=2.38.1=h0b41bf4_0 - libwebp-base=1.5.0=h851e524_0 - libxcb=1.17.0=h8a09558_0 - libxcrypt=4.4.36=hd590300_1 - - libxml2=2.13.7=h81593ed_1 + - libxml2=2.13.8=h4bc477f_0 - libzlib=1.3.1=hb9d3cd8_2 - - llvm-openmp=20.1.4=h024ca30_0 + - llvm-openmp=20.1.7=h024ca30_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py311h2dc5d0c_1 - matplotlib-base=3.8.4=py311ha4ca890_2 - mccabe=0.7.0=pyhd8ed1ab_1 - metis=5.1.0=hd0bcaf9_1007 - mkl=2024.2.2=ha957f24_16 - - msgpack-python=1.1.0=py311hd18a35c_0 + - msgpack-python=1.1.1=py311hd18a35c_0 - mumps-include=5.7.3=h82cca05_10 - mumps-seq=5.7.3=h06cbf8f_10 - - munkres=1.1.4=pyh9f0ad1d_0 + - munkres=1.1.4=pyhd8ed1ab_1 - ncurses=6.5=h2d0b736_3 - numcodecs=0.15.1=py311h7db5c69_0 - numpy=1.26.4=py311h64a7726_0 - openjpeg=2.5.3=h5fbd93e_0 - - openssl=3.5.0=h7b32b05_0 + - openssl=3.5.0=h7b32b05_1 - packaging=25.0=pyh29332c3_1 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py311h82a398c_1 - - pip=25.1=pyh8b19718_0 - - platformdirs=4.3.7=pyh29332c3_0 - - pluggy=1.5.0=pyhd8ed1ab_1 + - pip=25.1.1=pyh8b19718_0 + - platformdirs=4.3.8=pyhe01879c_0 + - pluggy=1.6.0=pyhd8ed1ab_0 - psutil=7.0.0=py311h9ecbd09_0 - pthread-stubs=0.4=hb9d3cd8_1002 - pycparser=2.22=pyh29332c3_1 - - pydantic=2.11.3=pyh3cfb1c2_0 - - pydantic-core=2.33.1=py311h687327b_0 + - pydantic=2.11.7=pyh3cfb1c2_0 + - pydantic-core=2.33.2=py311hdae7d1d_0 - pydiso=0.1.2=py311h19ea254_0 - pygments=2.19.1=pyhd8ed1ab_0 - - pylint=3.3.6=pyh29332c3_0 + - pylint=3.3.7=pyhe01879c_0 - pymatsolver=0.3.1=pyh48887ae_201 - pyparsing=3.2.3=pyhd8ed1ab_1 - pysocks=1.7.1=pyha55dd90_7 - - pytest=8.3.5=pyhd8ed1ab_0 - - pytest-cov=6.1.1=pyhd8ed1ab_0 - - python=3.11.12=h9e4cc4f_0_cpython + - 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-mumps=0.0.3=py311h4b558b0_0 - python_abi=3.11=7_cp311 @@ -143,13 +144,13 @@ dependencies: - pyyaml=6.0.2=py311h2dc5d0c_2 - readline=8.2=h8c095d6_2 - readthedocs-sphinx-ext=2.2.5=pyhd8ed1ab_1 - - requests=2.32.3=pyhd8ed1ab_1 + - requests=2.32.4=pyhd8ed1ab_0 - rtree=1.2.0=py311ha1603b9_1 - scikit-learn=1.4.2=py311he08f58d_1 - scipy=1.14.1=py311he9a78e4_2 - - setuptools=80.1.0=pyhff2d567_0 + - setuptools=80.9.0=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - snowballstemmer=3.0.1=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - sphinx=5.3.0=pyhd8ed1ab_0 - sphinxcontrib-applehelp=2.0.0=pyhd8ed1ab_1 @@ -161,20 +162,20 @@ dependencies: - tbb=2021.13.0=hceb3a55_1 - tblib=3.1.0=pyhd8ed1ab_0 - threadpoolctl=3.3.0=pyhc1e730c_0 - - tk=8.6.13=noxft_h4845f30_101 + - tk=8.6.13=noxft_hd72426e_102 - toml=0.10.2=pyhd8ed1ab_1 - tomli=2.2.1=pyhd8ed1ab_1 - - tomlkit=0.13.2=pyha770c72_1 + - tomlkit=0.13.3=pyha770c72_0 - toolz=1.0.0=pyhd8ed1ab_1 - - tornado=6.4.2=py311h9ecbd09_0 + - tornado=6.5.1=py311h9ecbd09_0 - tqdm=4.67.1=pyhd8ed1ab_1 - trimesh=4.1.8=pyhd8ed1ab_0 - - typing-extensions=4.13.2=h0e9735f_0 - - typing-inspection=0.4.0=pyhd8ed1ab_0 - - typing_extensions=4.13.2=pyh29332c3_0 + - typing-extensions=4.14.0=h32cad80_0 + - typing-inspection=0.4.1=pyhd8ed1ab_0 + - typing_extensions=4.14.0=pyhe01879c_0 - tzdata=2025b=h78e105d_0 - unicodedata2=16.0.0=py311h9ecbd09_0 - - urllib3=2.4.0=pyhd8ed1ab_0 + - urllib3=2.5.0=pyhd8ed1ab_0 - wheel=0.45.1=pyhd8ed1ab_1 - wrapt=1.17.2=py311h9ecbd09_0 - xorg-libxau=1.0.12=hb9d3cd8_0 @@ -182,16 +183,16 @@ dependencies: - yaml=0.2.5=h7f98852_2 - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 - - zipp=3.21.0=pyhd8ed1ab_1 + - zipp=3.23.0=pyhd8ed1ab_0 - zstandard=0.23.0=py311h9ecbd09_2 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@6e21320c89581dccb1635d8460dfe296ec41b6da - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@24027d81b65df99d5f582acc4497ed33df8a3396 - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@e9c99d6fd5d324571a2717990aecb3ed673cbaca - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 - - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@2d510ad712a20663dc0abb9afbead41537d10d91 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 + - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 + - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@25197892deadbaeb728441753ab9fba646ce5e0b 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 b29692a..5928509 100644 --- a/environments/py-3.11-linux-64.conda.lock.yml +++ b/environments/py-3.11-linux-64.conda.lock.yml @@ -9,17 +9,17 @@ dependencies: - _openmp_mutex=4.5=3_kmp_llvm - annotated-types=0.7.0=pyhd8ed1ab_1 - asciitree=0.3.3=py_2 - - brotli=1.1.0=hb9d3cd8_2 - - brotli-bin=1.1.0=hb9d3cd8_2 - - brotli-python=1.1.0=py311hfdbb021_2 + - brotli=1.1.0=hb9d3cd8_3 + - brotli-bin=1.1.0=hb9d3cd8_3 + - brotli-python=1.1.0=py311hfdbb021_3 - bzip2=1.0.8=h4bc722e_7 - c-ares=1.34.5=hb9d3cd8_0 - - ca-certificates=2025.4.26=hbd8a1cb_0 + - ca-certificates=2025.6.15=hbd8a1cb_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2025.1.31=pyhd8ed1ab_0 + - certifi=2025.6.15=pyhd8ed1ab_0 - cffi=1.17.1=py311hf29c0ef_0 - - click=8.1.8=pyh707e725_0 + - click=8.2.1=pyh707e725_0 - cloudpickle=3.1.1=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - contourpy=1.3.2=py311hd18a35c_0 @@ -27,35 +27,36 @@ dependencies: - cytoolz=1.0.1=py311h9ecbd09_0 - dask-core=2025.3.0=pyhd8ed1ab_0 - deprecated=1.2.18=pyhd8ed1ab_0 - - discretize=0.11.2=py311h5b7b71f_1 + - discretize=0.11.3=py311h5b7b71f_0 - distributed=2025.3.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.57.0=py311h2dc5d0c_0 + - fonttools=4.58.4=py311h2dc5d0c_0 - freetype=2.13.3=ha770c72_1 - - fsspec=2025.3.2=pyhd8ed1ab_0 + - fsspec=2025.5.1=pyhd8ed1ab_0 - geoana=0.7.2=py311h5b7b71f_0 - h2=4.2.0=pyhd8ed1ab_0 - - h5py=3.13.0=nompi_py311hb639ac4_100 - - hdf5=1.14.3=nompi_h2d575fe_109 + - h5py=3.14.0=nompi_py311h7f87ba5_100 + - hdf5=1.14.6=nompi_h2d575fe_101 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - - importlib-metadata=8.6.1=pyha770c72_0 + - icu=75.1=he02047a_0 + - importlib-metadata=8.7.0=pyhe01879c_1 - jinja2=3.1.6=pyhd8ed1ab_0 - - joblib=1.4.2=pyhd8ed1ab_1 + - joblib=1.5.1=pyhd8ed1ab_0 - keyutils=1.6.1=h166bdaf_0 - kiwisolver=1.4.7=py311hd18a35c_0 - krb5=1.21.3=h659f571_0 - lcms2=2.17=h717163a_0 - - ld_impl_linux-64=2.43=h712a8e2_4 + - ld_impl_linux-64=2.43=h1423503_5 - lerc=4.0.0=h0aef613_1 - - libaec=1.1.3=h59595ed_0 + - libaec=1.1.4=h3f801dc_0 - libblas=3.9.0=31_hfdb39a5_mkl - - libbrotlicommon=1.1.0=hb9d3cd8_2 - - libbrotlidec=1.1.0=hb9d3cd8_2 - - libbrotlienc=1.1.0=hb9d3cd8_2 + - libbrotlicommon=1.1.0=hb9d3cd8_3 + - libbrotlidec=1.1.0=hb9d3cd8_3 + - libbrotlienc=1.1.0=hb9d3cd8_3 - libcblas=3.9.0=31_h372d94f_mkl - - libcurl=8.13.0=h332b0f4_0 - - libdeflate=1.23=h86f0d12_0 + - libcurl=8.14.1=h332b0f4_0 + - libdeflate=1.24=h86f0d12_0 - libdlf=0.3.0=pyhd8ed1ab_1 - libedit=3.1.20250104=pl5321h7949ede_0 - libev=4.33=hd590300_2 @@ -63,60 +64,60 @@ dependencies: - libffi=3.4.6=h2dba641_1 - libfreetype=2.13.3=ha770c72_1 - libfreetype6=2.13.3=h48d6fc4_1 - - libgcc=14.2.0=h767d61c_2 - - libgcc-ng=14.2.0=h69a702a_2 - - libgfortran=14.2.0=h69a702a_2 - - libgfortran5=14.2.0=hf1ad2bd_2 + - libgcc=15.1.0=h767d61c_2 + - libgcc-ng=15.1.0=h69a702a_2 + - libgfortran=15.1.0=h69a702a_2 + - libgfortran5=15.1.0=hcea5267_2 - libhwloc=2.11.2=default_h0d58e46_1001 - libiconv=1.18=h4ce23a2_1 - libjpeg-turbo=3.1.0=hb9d3cd8_0 - liblapack=3.9.0=31_hc41d3b0_mkl - - liblzma=5.8.1=hb9d3cd8_0 + - liblzma=5.8.1=hb9d3cd8_2 - libnghttp2=1.64.0=h161d5f1_0 - - libnsl=2.0.1=hd590300_0 - - libpng=1.6.47=h943b412_0 + - libnsl=2.0.1=hb9d3cd8_1 + - libpng=1.6.49=h943b412_0 - libscotch=7.0.6=hea33c07_1 - libspatialindex=2.0.0=he02047a_0 - - libsqlite=3.49.1=hee588c1_2 + - libsqlite=3.50.1=hee588c1_0 - libssh2=1.11.1=hcf80075_0 - - libstdcxx=14.2.0=h8f9b012_2 - - libstdcxx-ng=14.2.0=h4852527_2 - - libtiff=4.7.0=hd9ff511_4 + - libstdcxx=15.1.0=h8f9b012_2 + - libstdcxx-ng=15.1.0=h4852527_2 + - libtiff=4.7.0=hf01ce69_5 - libuuid=2.38.1=h0b41bf4_0 - libwebp-base=1.5.0=h851e524_0 - libxcb=1.17.0=h8a09558_0 - libxcrypt=4.4.36=hd590300_1 - - libxml2=2.13.7=h81593ed_1 + - libxml2=2.13.8=h4bc477f_0 - libzlib=1.3.1=hb9d3cd8_2 - - llvm-openmp=20.1.4=h024ca30_0 + - llvm-openmp=20.1.7=h024ca30_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py311h2dc5d0c_1 - matplotlib-base=3.8.4=py311ha4ca890_2 - metis=5.1.0=hd0bcaf9_1007 - mkl=2024.2.2=ha957f24_16 - - msgpack-python=1.1.0=py311hd18a35c_0 + - msgpack-python=1.1.1=py311hd18a35c_0 - mumps-include=5.7.3=h82cca05_10 - mumps-seq=5.7.3=h06cbf8f_10 - - munkres=1.1.4=pyh9f0ad1d_0 + - munkres=1.1.4=pyhd8ed1ab_1 - ncurses=6.5=h2d0b736_3 - numcodecs=0.15.1=py311h7db5c69_0 - numpy=1.26.4=py311h64a7726_0 - openjpeg=2.5.3=h5fbd93e_0 - - openssl=3.5.0=h7b32b05_0 + - openssl=3.5.0=h7b32b05_1 - packaging=25.0=pyh29332c3_1 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py311h82a398c_1 - - pip=25.1=pyh8b19718_0 + - pip=25.1.1=pyh8b19718_0 - psutil=7.0.0=py311h9ecbd09_0 - pthread-stubs=0.4=hb9d3cd8_1002 - pycparser=2.22=pyh29332c3_1 - - pydantic=2.11.3=pyh3cfb1c2_0 - - pydantic-core=2.33.1=py311h687327b_0 + - pydantic=2.11.7=pyh3cfb1c2_0 + - pydantic-core=2.33.2=py311hdae7d1d_0 - pydiso=0.1.2=py311h19ea254_0 - pymatsolver=0.3.1=pyh48887ae_201 - pyparsing=3.2.3=pyhd8ed1ab_1 - pysocks=1.7.1=pyha55dd90_7 - - python=3.11.12=h9e4cc4f_0_cpython + - python=3.11.13=h9e4cc4f_0_cpython - python-dateutil=2.9.0.post0=pyhff2d567_1 - python-mumps=0.0.3=py311h4b558b0_0 - python_abi=3.11=7_cp311 @@ -125,23 +126,23 @@ dependencies: - rtree=1.2.0=py311ha1603b9_1 - scikit-learn=1.4.2=py311he08f58d_1 - scipy=1.14.1=py311he9a78e4_2 - - setuptools=80.1.0=pyhff2d567_0 + - setuptools=80.9.0=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - tbb=2021.13.0=hceb3a55_1 - tblib=3.1.0=pyhd8ed1ab_0 - threadpoolctl=3.3.0=pyhc1e730c_0 - - tk=8.6.13=noxft_h4845f30_101 + - tk=8.6.13=noxft_hd72426e_102 - toolz=1.0.0=pyhd8ed1ab_1 - - tornado=6.4.2=py311h9ecbd09_0 + - tornado=6.5.1=py311h9ecbd09_0 - tqdm=4.67.1=pyhd8ed1ab_1 - trimesh=4.1.8=pyhd8ed1ab_0 - - typing-extensions=4.13.2=h0e9735f_0 - - typing-inspection=0.4.0=pyhd8ed1ab_0 - - typing_extensions=4.13.2=pyh29332c3_0 + - typing-extensions=4.14.0=h32cad80_0 + - typing-inspection=0.4.1=pyhd8ed1ab_0 + - typing_extensions=4.14.0=pyhe01879c_0 - tzdata=2025b=h78e105d_0 - unicodedata2=16.0.0=py311h9ecbd09_0 - - urllib3=2.4.0=pyhd8ed1ab_0 + - urllib3=2.5.0=pyhd8ed1ab_0 - wheel=0.45.1=pyhd8ed1ab_1 - wrapt=1.17.2=py311h9ecbd09_0 - xorg-libxau=1.0.12=hb9d3cd8_0 @@ -149,16 +150,16 @@ dependencies: - yaml=0.2.5=h7f98852_2 - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 - - zipp=3.21.0=pyhd8ed1ab_1 + - zipp=3.23.0=pyhd8ed1ab_0 - zstandard=0.23.0=py311h9ecbd09_2 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@6e21320c89581dccb1635d8460dfe296ec41b6da - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@24027d81b65df99d5f582acc4497ed33df8a3396 - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@e9c99d6fd5d324571a2717990aecb3ed673cbaca - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 - - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@2d510ad712a20663dc0abb9afbead41537d10d91 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 + - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 + - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@25197892deadbaeb728441753ab9fba646ce5e0b 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 3fdcac8..4018715 100644 --- a/environments/py-3.11-win-64-dev.conda.lock.yml +++ b/environments/py-3.11-win-64-dev.conda.lock.yml @@ -10,130 +10,130 @@ dependencies: - alabaster=0.7.16=pyhd8ed1ab_0 - annotated-types=0.7.0=pyhd8ed1ab_1 - asciitree=0.3.3=py_2 - - astroid=3.3.9=py311h1ea47a8_0 + - astroid=3.3.10=py311h1ea47a8_0 - babel=2.17.0=pyhd8ed1ab_0 - - brotli=1.1.0=h2466b09_2 - - brotli-bin=1.1.0=h2466b09_2 - - brotli-python=1.1.0=py311hda3d55a_2 + - brotli=1.1.0=h2466b09_3 + - brotli-bin=1.1.0=h2466b09_3 + - brotli-python=1.1.0=py311hda3d55a_3 - bzip2=1.0.8=h2466b09_7 - - ca-certificates=2025.4.26=h4c7d964_0 + - ca-certificates=2025.6.15=h4c7d964_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2025.1.31=pyhd8ed1ab_0 + - certifi=2025.6.15=pyhd8ed1ab_0 - cffi=1.17.1=py311he736701_0 - - charset-normalizer=3.4.1=pyhd8ed1ab_0 - - click=8.1.8=pyh7428d3b_0 + - charset-normalizer=3.4.2=pyhd8ed1ab_0 + - click=8.2.1=pyh7428d3b_0 - cloudpickle=3.1.1=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - contourpy=1.3.2=py311h3257749_0 - - coverage=7.8.0=py311h5082efb_0 + - coverage=7.9.1=py311h5082efb_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py311he736701_0 - dask-core=2025.3.0=pyhd8ed1ab_0 - deprecated=1.2.18=pyhd8ed1ab_0 - dill=0.4.0=pyhd8ed1ab_0 - - discretize=0.11.2=py311h9b10771_0 + - discretize=0.11.3=py311h9b10771_0 - distributed=2025.3.0=pyhd8ed1ab_0 - docutils=0.19=py311h1ea47a8_1 - - exceptiongroup=1.2.2=pyhd8ed1ab_1 + - exceptiongroup=1.3.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.57.0=py311h5082efb_0 + - fonttools=4.58.4=py311h5082efb_0 - freetype=2.13.3=h57928b3_1 - - fsspec=2025.3.2=pyhd8ed1ab_0 + - fsspec=2025.5.1=pyhd8ed1ab_0 - geoana=0.7.2=py311h9b10771_0 - h2=4.2.0=pyhd8ed1ab_0 - - h5py=3.13.0=nompi_py311h67016bb_100 - - hdf5=1.14.3=nompi_hb2c4d47_109 + - h5py=3.14.0=nompi_py311h97e6cc2_100 + - hdf5=1.14.6=nompi_hd5d9e70_101 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - idna=3.10=pyhd8ed1ab_1 - imagesize=1.4.1=pyhd8ed1ab_0 - - importlib-metadata=8.6.1=pyha770c72_0 + - importlib-metadata=8.7.0=pyhe01879c_1 - iniconfig=2.0.0=pyhd8ed1ab_1 - intel-openmp=2024.2.1=h57928b3_1083 - - isort=6.0.1=pyhd8ed1ab_0 + - isort=6.0.1=pyhd8ed1ab_1 - jinja2=3.1.6=pyhd8ed1ab_0 - - joblib=1.4.2=pyhd8ed1ab_1 + - joblib=1.5.1=pyhd8ed1ab_0 - kiwisolver=1.4.7=py311h3257749_0 - krb5=1.21.3=hdf4eb48_0 - lcms2=2.17=hbcf6048_0 - lerc=4.0.0=h6470a55_1 - - libaec=1.1.3=h63175ca_0 + - libaec=1.1.4=h20038f6_0 - libblas=3.9.0=31_h641d27c_mkl - - libbrotlicommon=1.1.0=h2466b09_2 - - libbrotlidec=1.1.0=h2466b09_2 - - libbrotlienc=1.1.0=h2466b09_2 + - libbrotlicommon=1.1.0=h2466b09_3 + - libbrotlidec=1.1.0=h2466b09_3 + - libbrotlienc=1.1.0=h2466b09_3 - libcblas=3.9.0=31_h5e41251_mkl - - libcurl=8.13.0=h88aaa65_0 - - libdeflate=1.23=h76ddb4d_0 + - libcurl=8.14.1=h88aaa65_0 + - libdeflate=1.24=h76ddb4d_0 - libdlf=0.3.0=pyhd8ed1ab_1 - libexpat=2.7.0=he0c23c2_0 - libffi=3.4.6=h537db12_1 - libfreetype=2.13.3=h57928b3_1 - libfreetype6=2.13.3=h0b5ce68_1 - - libgcc=14.2.0=h1383e82_2 - - libgomp=14.2.0=h1383e82_2 + - libgcc=15.1.0=h1383e82_2 + - libgomp=15.1.0=h1383e82_2 - libhwloc=2.11.2=default_ha69328c_1001 - libiconv=1.18=h135ad9c_1 - libjpeg-turbo=3.1.0=h2466b09_0 - liblapack=3.9.0=31_h1aa476e_mkl - - liblzma=5.8.1=h2466b09_0 - - libpng=1.6.47=h7a4582a_0 + - liblzma=5.8.1=h2466b09_2 + - libpng=1.6.49=h7a4582a_0 - libspatialindex=2.0.0=h5a68840_0 - - libsqlite=3.49.1=h67fdade_2 + - libsqlite=3.50.1=h67fdade_0 - libssh2=1.11.1=h9aa295b_0 - - libtiff=4.7.0=h797046b_4 + - libtiff=4.7.0=h05922d8_5 - libwebp-base=1.5.0=h3b0e114_0 - libwinpthread=12.0.0.r4.gg4f2fc60ca=h57928b3_9 - libxcb=1.17.0=h0e4246c_0 - - libxml2=2.13.7=h442d1da_1 + - libxml2=2.13.8=h442d1da_0 - libzlib=1.3.1=h2466b09_2 - - llvm-openmp=20.1.4=h30eaf37_0 + - llvm-openmp=20.1.7=h30eaf37_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py311h5082efb_1 - matplotlib-base=3.8.4=py311h9b31f6e_2 - mccabe=0.7.0=pyhd8ed1ab_1 - mkl=2024.2.2=h66d3029_15 - - msgpack-python=1.1.0=py311h3257749_0 + - msgpack-python=1.1.1=py311h3257749_0 - mumps-seq=5.7.3=hbaa6519_10 - - munkres=1.1.4=pyh9f0ad1d_0 + - munkres=1.1.4=pyhd8ed1ab_1 - numcodecs=0.15.1=py311hcf9f919_0 - numpy=1.26.4=py311h0b4df5a_0 - openjpeg=2.5.3=h4d64b90_0 - - openssl=3.5.0=ha4e3fda_0 + - openssl=3.5.0=ha4e3fda_1 - packaging=25.0=pyh29332c3_1 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py311h5592be9_1 - - pip=25.1=pyh8b19718_0 - - platformdirs=4.3.7=pyh29332c3_0 - - pluggy=1.5.0=pyhd8ed1ab_1 + - pip=25.1.1=pyh8b19718_0 + - platformdirs=4.3.8=pyhe01879c_0 + - pluggy=1.6.0=pyhd8ed1ab_0 - psutil=7.0.0=py311he736701_0 - pthread-stubs=0.4=h0e40799_1002 - pycparser=2.22=pyh29332c3_1 - - pydantic=2.11.3=pyh3cfb1c2_0 - - pydantic-core=2.33.1=py311ha250665_0 + - pydantic=2.11.7=pyh3cfb1c2_0 + - pydantic-core=2.33.2=py311hc4022dc_0 - pydiso=0.1.2=py311h66870c1_0 - pygments=2.19.1=pyhd8ed1ab_0 - - pylint=3.3.6=pyh29332c3_0 + - pylint=3.3.7=pyhe01879c_0 - pymatsolver=0.3.1=pyh48887ae_201 - pyparsing=3.2.3=pyhd8ed1ab_1 - pysocks=1.7.1=pyh09c184e_7 - - pytest=8.3.5=pyhd8ed1ab_0 - - pytest-cov=6.1.1=pyhd8ed1ab_0 - - python=3.11.12=h3f84c4b_0_cpython + - 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-mumps=0.0.3=py311h5bfbc98_0 - python_abi=3.11=7_cp311 - pytz=2025.2=pyhd8ed1ab_0 - pyyaml=6.0.2=py311h5082efb_2 - readthedocs-sphinx-ext=2.2.5=pyhd8ed1ab_1 - - requests=2.32.3=pyhd8ed1ab_1 + - requests=2.32.4=pyhd8ed1ab_0 - rtree=1.2.0=py311h44d53c4_1 - scikit-learn=1.4.2=py311hdcb8d17_1 - scipy=1.14.1=py311hf16d85f_2 - - setuptools=80.1.0=pyhff2d567_0 + - setuptools=80.9.0=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - snowballstemmer=3.0.1=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - sphinx=5.3.0=pyhd8ed1ab_0 - sphinxcontrib-applehelp=2.0.0=pyhd8ed1ab_1 @@ -145,21 +145,21 @@ dependencies: - tbb=2021.13.0=h62715c5_1 - tblib=3.1.0=pyhd8ed1ab_0 - threadpoolctl=3.3.0=pyhc1e730c_0 - - tk=8.6.13=h5226925_1 + - tk=8.6.13=h2c6b04d_2 - toml=0.10.2=pyhd8ed1ab_1 - tomli=2.2.1=pyhd8ed1ab_1 - - tomlkit=0.13.2=pyha770c72_1 + - tomlkit=0.13.3=pyha770c72_0 - toolz=1.0.0=pyhd8ed1ab_1 - - tornado=6.4.2=py311he736701_0 + - tornado=6.5.1=py311he736701_0 - tqdm=4.67.1=pyhd8ed1ab_1 - trimesh=4.1.8=pyhd8ed1ab_0 - - typing-extensions=4.13.2=h0e9735f_0 - - typing-inspection=0.4.0=pyhd8ed1ab_0 - - typing_extensions=4.13.2=pyh29332c3_0 + - typing-extensions=4.14.0=h32cad80_0 + - typing-inspection=0.4.1=pyhd8ed1ab_0 + - typing_extensions=4.14.0=pyhe01879c_0 - tzdata=2025b=h78e105d_0 - ucrt=10.0.22621.0=h57928b3_1 - unicodedata2=16.0.0=py311he736701_0 - - urllib3=2.4.0=pyhd8ed1ab_0 + - urllib3=2.5.0=pyhd8ed1ab_0 - vc=14.3=h2b53caa_26 - vc14_runtime=14.42.34438=hfd919c2_26 - vs2015_runtime=14.42.34438=h7142326_26 @@ -171,16 +171,16 @@ dependencies: - yaml=0.2.5=h8ffe710_2 - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 - - zipp=3.21.0=pyhd8ed1ab_1 + - zipp=3.23.0=pyhd8ed1ab_0 - zstandard=0.23.0=py311he736701_2 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@6e21320c89581dccb1635d8460dfe296ec41b6da - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@24027d81b65df99d5f582acc4497ed33df8a3396 - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@e9c99d6fd5d324571a2717990aecb3ed673cbaca - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 - - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@2d510ad712a20663dc0abb9afbead41537d10d91 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 + - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 + - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@25197892deadbaeb728441753ab9fba646ce5e0b 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 262c8ee..cdd2a16 100644 --- a/environments/py-3.11-win-64.conda.lock.yml +++ b/environments/py-3.11-win-64.conda.lock.yml @@ -9,16 +9,16 @@ dependencies: - _openmp_mutex=4.5=2_gnu - annotated-types=0.7.0=pyhd8ed1ab_1 - asciitree=0.3.3=py_2 - - brotli=1.1.0=h2466b09_2 - - brotli-bin=1.1.0=h2466b09_2 - - brotli-python=1.1.0=py311hda3d55a_2 + - brotli=1.1.0=h2466b09_3 + - brotli-bin=1.1.0=h2466b09_3 + - brotli-python=1.1.0=py311hda3d55a_3 - bzip2=1.0.8=h2466b09_7 - - ca-certificates=2025.4.26=h4c7d964_0 + - ca-certificates=2025.6.15=h4c7d964_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2025.1.31=pyhd8ed1ab_0 + - certifi=2025.6.15=pyhd8ed1ab_0 - cffi=1.17.1=py311he736701_0 - - click=8.1.8=pyh7428d3b_0 + - click=8.2.1=pyh7428d3b_0 - cloudpickle=3.1.1=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - contourpy=1.3.2=py311h3257749_0 @@ -26,82 +26,82 @@ dependencies: - cytoolz=1.0.1=py311he736701_0 - dask-core=2025.3.0=pyhd8ed1ab_0 - deprecated=1.2.18=pyhd8ed1ab_0 - - discretize=0.11.2=py311h9b10771_0 + - discretize=0.11.3=py311h9b10771_0 - distributed=2025.3.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.57.0=py311h5082efb_0 + - fonttools=4.58.4=py311h5082efb_0 - freetype=2.13.3=h57928b3_1 - - fsspec=2025.3.2=pyhd8ed1ab_0 + - fsspec=2025.5.1=pyhd8ed1ab_0 - geoana=0.7.2=py311h9b10771_0 - h2=4.2.0=pyhd8ed1ab_0 - - h5py=3.13.0=nompi_py311h67016bb_100 - - hdf5=1.14.3=nompi_hb2c4d47_109 + - h5py=3.14.0=nompi_py311h97e6cc2_100 + - hdf5=1.14.6=nompi_hd5d9e70_101 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - - importlib-metadata=8.6.1=pyha770c72_0 + - importlib-metadata=8.7.0=pyhe01879c_1 - intel-openmp=2024.2.1=h57928b3_1083 - jinja2=3.1.6=pyhd8ed1ab_0 - - joblib=1.4.2=pyhd8ed1ab_1 + - joblib=1.5.1=pyhd8ed1ab_0 - kiwisolver=1.4.7=py311h3257749_0 - krb5=1.21.3=hdf4eb48_0 - lcms2=2.17=hbcf6048_0 - lerc=4.0.0=h6470a55_1 - - libaec=1.1.3=h63175ca_0 + - libaec=1.1.4=h20038f6_0 - libblas=3.9.0=31_h641d27c_mkl - - libbrotlicommon=1.1.0=h2466b09_2 - - libbrotlidec=1.1.0=h2466b09_2 - - libbrotlienc=1.1.0=h2466b09_2 + - libbrotlicommon=1.1.0=h2466b09_3 + - libbrotlidec=1.1.0=h2466b09_3 + - libbrotlienc=1.1.0=h2466b09_3 - libcblas=3.9.0=31_h5e41251_mkl - - libcurl=8.13.0=h88aaa65_0 - - libdeflate=1.23=h76ddb4d_0 + - libcurl=8.14.1=h88aaa65_0 + - libdeflate=1.24=h76ddb4d_0 - libdlf=0.3.0=pyhd8ed1ab_1 - libexpat=2.7.0=he0c23c2_0 - libffi=3.4.6=h537db12_1 - libfreetype=2.13.3=h57928b3_1 - libfreetype6=2.13.3=h0b5ce68_1 - - libgcc=14.2.0=h1383e82_2 - - libgomp=14.2.0=h1383e82_2 + - libgcc=15.1.0=h1383e82_2 + - libgomp=15.1.0=h1383e82_2 - libhwloc=2.11.2=default_ha69328c_1001 - libiconv=1.18=h135ad9c_1 - libjpeg-turbo=3.1.0=h2466b09_0 - liblapack=3.9.0=31_h1aa476e_mkl - - liblzma=5.8.1=h2466b09_0 - - libpng=1.6.47=h7a4582a_0 + - liblzma=5.8.1=h2466b09_2 + - libpng=1.6.49=h7a4582a_0 - libspatialindex=2.0.0=h5a68840_0 - - libsqlite=3.49.1=h67fdade_2 + - libsqlite=3.50.1=h67fdade_0 - libssh2=1.11.1=h9aa295b_0 - - libtiff=4.7.0=h797046b_4 + - libtiff=4.7.0=h05922d8_5 - libwebp-base=1.5.0=h3b0e114_0 - libwinpthread=12.0.0.r4.gg4f2fc60ca=h57928b3_9 - libxcb=1.17.0=h0e4246c_0 - - libxml2=2.13.7=h442d1da_1 + - libxml2=2.13.8=h442d1da_0 - libzlib=1.3.1=h2466b09_2 - - llvm-openmp=20.1.4=h30eaf37_0 + - llvm-openmp=20.1.7=h30eaf37_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py311h5082efb_1 - matplotlib-base=3.8.4=py311h9b31f6e_2 - mkl=2024.2.2=h66d3029_15 - - msgpack-python=1.1.0=py311h3257749_0 + - msgpack-python=1.1.1=py311h3257749_0 - mumps-seq=5.7.3=hbaa6519_10 - - munkres=1.1.4=pyh9f0ad1d_0 + - munkres=1.1.4=pyhd8ed1ab_1 - numcodecs=0.15.1=py311hcf9f919_0 - numpy=1.26.4=py311h0b4df5a_0 - openjpeg=2.5.3=h4d64b90_0 - - openssl=3.5.0=ha4e3fda_0 + - openssl=3.5.0=ha4e3fda_1 - packaging=25.0=pyh29332c3_1 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py311h5592be9_1 - - pip=25.1=pyh8b19718_0 + - pip=25.1.1=pyh8b19718_0 - psutil=7.0.0=py311he736701_0 - pthread-stubs=0.4=h0e40799_1002 - pycparser=2.22=pyh29332c3_1 - - pydantic=2.11.3=pyh3cfb1c2_0 - - pydantic-core=2.33.1=py311ha250665_0 + - pydantic=2.11.7=pyh3cfb1c2_0 + - pydantic-core=2.33.2=py311hc4022dc_0 - pydiso=0.1.2=py311h66870c1_0 - pymatsolver=0.3.1=pyh48887ae_201 - pyparsing=3.2.3=pyhd8ed1ab_1 - pysocks=1.7.1=pyh09c184e_7 - - python=3.11.12=h3f84c4b_0_cpython + - python=3.11.13=h3f84c4b_0_cpython - python-dateutil=2.9.0.post0=pyhff2d567_1 - python-mumps=0.0.3=py311h5bfbc98_0 - python_abi=3.11=7_cp311 @@ -109,24 +109,24 @@ dependencies: - rtree=1.2.0=py311h44d53c4_1 - scikit-learn=1.4.2=py311hdcb8d17_1 - scipy=1.14.1=py311hf16d85f_2 - - setuptools=80.1.0=pyhff2d567_0 + - setuptools=80.9.0=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - tbb=2021.13.0=h62715c5_1 - tblib=3.1.0=pyhd8ed1ab_0 - threadpoolctl=3.3.0=pyhc1e730c_0 - - tk=8.6.13=h5226925_1 + - tk=8.6.13=h2c6b04d_2 - toolz=1.0.0=pyhd8ed1ab_1 - - tornado=6.4.2=py311he736701_0 + - tornado=6.5.1=py311he736701_0 - tqdm=4.67.1=pyhd8ed1ab_1 - trimesh=4.1.8=pyhd8ed1ab_0 - - typing-extensions=4.13.2=h0e9735f_0 - - typing-inspection=0.4.0=pyhd8ed1ab_0 - - typing_extensions=4.13.2=pyh29332c3_0 + - typing-extensions=4.14.0=h32cad80_0 + - typing-inspection=0.4.1=pyhd8ed1ab_0 + - typing_extensions=4.14.0=pyhe01879c_0 - tzdata=2025b=h78e105d_0 - ucrt=10.0.22621.0=h57928b3_1 - unicodedata2=16.0.0=py311he736701_0 - - urllib3=2.4.0=pyhd8ed1ab_0 + - urllib3=2.5.0=pyhd8ed1ab_0 - vc=14.3=h2b53caa_26 - vc14_runtime=14.42.34438=hfd919c2_26 - vs2015_runtime=14.42.34438=h7142326_26 @@ -138,16 +138,16 @@ dependencies: - yaml=0.2.5=h8ffe710_2 - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 - - zipp=3.21.0=pyhd8ed1ab_1 + - zipp=3.23.0=pyhd8ed1ab_0 - zstandard=0.23.0=py311he736701_2 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@6e21320c89581dccb1635d8460dfe296ec41b6da - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@24027d81b65df99d5f582acc4497ed33df8a3396 - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@e9c99d6fd5d324571a2717990aecb3ed673cbaca - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 - - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@2d510ad712a20663dc0abb9afbead41537d10d91 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 + - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 + - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@25197892deadbaeb728441753ab9fba646ce5e0b 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 7006521..f88cbb9 100644 --- a/environments/py-3.12-linux-64-dev.conda.lock.yml +++ b/environments/py-3.12-linux-64-dev.conda.lock.yml @@ -10,64 +10,65 @@ dependencies: - alabaster=0.7.16=pyhd8ed1ab_0 - annotated-types=0.7.0=pyhd8ed1ab_1 - asciitree=0.3.3=py_2 - - astroid=3.3.9=py312h7900ff3_0 + - astroid=3.3.10=py312h7900ff3_0 - babel=2.17.0=pyhd8ed1ab_0 - - brotli=1.1.0=hb9d3cd8_2 - - brotli-bin=1.1.0=hb9d3cd8_2 - - brotli-python=1.1.0=py312h2ec8cdc_2 + - brotli=1.1.0=hb9d3cd8_3 + - brotli-bin=1.1.0=hb9d3cd8_3 + - brotli-python=1.1.0=py312h2ec8cdc_3 - bzip2=1.0.8=h4bc722e_7 - c-ares=1.34.5=hb9d3cd8_0 - - ca-certificates=2025.4.26=hbd8a1cb_0 + - ca-certificates=2025.6.15=hbd8a1cb_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2025.1.31=pyhd8ed1ab_0 + - certifi=2025.6.15=pyhd8ed1ab_0 - cffi=1.17.1=py312h06ac9bb_0 - - charset-normalizer=3.4.1=pyhd8ed1ab_0 - - click=8.1.8=pyh707e725_0 + - charset-normalizer=3.4.2=pyhd8ed1ab_0 + - click=8.2.1=pyh707e725_0 - cloudpickle=3.1.1=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - contourpy=1.3.2=py312h68727a3_0 - - coverage=7.8.0=py312h178313f_0 + - coverage=7.9.1=py312h178313f_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py312h66e93f0_0 - dask-core=2025.3.0=pyhd8ed1ab_0 - deprecated=1.2.18=pyhd8ed1ab_0 - dill=0.4.0=pyhd8ed1ab_0 - - discretize=0.11.2=py312hc39e661_1 + - discretize=0.11.3=py312hc39e661_0 - distributed=2025.3.0=pyhd8ed1ab_0 - docutils=0.18.1=py312h7900ff3_0 - - exceptiongroup=1.2.2=pyhd8ed1ab_1 + - exceptiongroup=1.3.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.57.0=py312h178313f_0 + - fonttools=4.58.4=py312h178313f_0 - freetype=2.13.3=ha770c72_1 - - fsspec=2025.3.2=pyhd8ed1ab_0 + - fsspec=2025.5.1=pyhd8ed1ab_0 - geoana=0.7.2=py312hc39e661_0 - h2=4.2.0=pyhd8ed1ab_0 - - h5py=3.13.0=nompi_py312hedeef09_100 - - hdf5=1.14.3=nompi_h2d575fe_109 + - h5py=3.14.0=nompi_py312h3faca00_100 + - hdf5=1.14.6=nompi_h2d575fe_101 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 + - icu=75.1=he02047a_0 - idna=3.10=pyhd8ed1ab_1 - imagesize=1.4.1=pyhd8ed1ab_0 - - importlib-metadata=8.6.1=pyha770c72_0 + - importlib-metadata=8.7.0=pyhe01879c_1 - iniconfig=2.0.0=pyhd8ed1ab_1 - - isort=6.0.1=pyhd8ed1ab_0 + - isort=6.0.1=pyhd8ed1ab_1 - jinja2=3.1.6=pyhd8ed1ab_0 - - joblib=1.4.2=pyhd8ed1ab_1 + - joblib=1.5.1=pyhd8ed1ab_0 - keyutils=1.6.1=h166bdaf_0 - kiwisolver=1.4.8=py312h84d6215_0 - krb5=1.21.3=h659f571_0 - lcms2=2.17=h717163a_0 - - ld_impl_linux-64=2.43=h712a8e2_4 + - ld_impl_linux-64=2.43=h1423503_5 - lerc=4.0.0=h0aef613_1 - - libaec=1.1.3=h59595ed_0 + - libaec=1.1.4=h3f801dc_0 - libblas=3.9.0=31_hfdb39a5_mkl - - libbrotlicommon=1.1.0=hb9d3cd8_2 - - libbrotlidec=1.1.0=hb9d3cd8_2 - - libbrotlienc=1.1.0=hb9d3cd8_2 + - libbrotlicommon=1.1.0=hb9d3cd8_3 + - libbrotlidec=1.1.0=hb9d3cd8_3 + - libbrotlienc=1.1.0=hb9d3cd8_3 - libcblas=3.9.0=31_h372d94f_mkl - - libcurl=8.13.0=h332b0f4_0 - - libdeflate=1.23=h86f0d12_0 + - libcurl=8.14.1=h332b0f4_0 + - libdeflate=1.24=h86f0d12_0 - libdlf=0.3.0=pyhd8ed1ab_1 - libedit=3.1.20250104=pl5321h7949ede_0 - libev=4.33=hd590300_2 @@ -75,67 +76,67 @@ dependencies: - libffi=3.4.6=h2dba641_1 - libfreetype=2.13.3=ha770c72_1 - libfreetype6=2.13.3=h48d6fc4_1 - - libgcc=14.2.0=h767d61c_2 - - libgcc-ng=14.2.0=h69a702a_2 - - libgfortran=14.2.0=h69a702a_2 - - libgfortran5=14.2.0=hf1ad2bd_2 + - libgcc=15.1.0=h767d61c_2 + - libgcc-ng=15.1.0=h69a702a_2 + - libgfortran=15.1.0=h69a702a_2 + - libgfortran5=15.1.0=hcea5267_2 - libhwloc=2.11.2=default_h0d58e46_1001 - libiconv=1.18=h4ce23a2_1 - libjpeg-turbo=3.1.0=hb9d3cd8_0 - liblapack=3.9.0=31_hc41d3b0_mkl - - liblzma=5.8.1=hb9d3cd8_0 + - liblzma=5.8.1=hb9d3cd8_2 - libnghttp2=1.64.0=h161d5f1_0 - - libnsl=2.0.1=hd590300_0 - - libpng=1.6.47=h943b412_0 + - libnsl=2.0.1=hb9d3cd8_1 + - libpng=1.6.49=h943b412_0 - libscotch=7.0.6=hea33c07_1 - libspatialindex=2.0.0=he02047a_0 - - libsqlite=3.49.1=hee588c1_2 + - libsqlite=3.50.1=hee588c1_0 - libssh2=1.11.1=hcf80075_0 - - libstdcxx=14.2.0=h8f9b012_2 - - libstdcxx-ng=14.2.0=h4852527_2 - - libtiff=4.7.0=hd9ff511_4 + - libstdcxx=15.1.0=h8f9b012_2 + - libstdcxx-ng=15.1.0=h4852527_2 + - libtiff=4.7.0=hf01ce69_5 - libuuid=2.38.1=h0b41bf4_0 - libwebp-base=1.5.0=h851e524_0 - libxcb=1.17.0=h8a09558_0 - libxcrypt=4.4.36=hd590300_1 - - libxml2=2.13.7=h81593ed_1 + - libxml2=2.13.8=h4bc477f_0 - libzlib=1.3.1=hb9d3cd8_2 - - llvm-openmp=20.1.4=h024ca30_0 + - llvm-openmp=20.1.7=h024ca30_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py312h178313f_1 - matplotlib-base=3.8.4=py312h20ab3a6_2 - mccabe=0.7.0=pyhd8ed1ab_1 - metis=5.1.0=hd0bcaf9_1007 - mkl=2024.2.2=ha957f24_16 - - msgpack-python=1.1.0=py312h68727a3_0 + - msgpack-python=1.1.1=py312h68727a3_0 - mumps-include=5.7.3=h82cca05_10 - mumps-seq=5.7.3=h06cbf8f_10 - - munkres=1.1.4=pyh9f0ad1d_0 + - munkres=1.1.4=pyhd8ed1ab_1 - ncurses=6.5=h2d0b736_3 - numcodecs=0.15.1=py312hf9745cd_0 - numpy=1.26.4=py312heda63a1_0 - openjpeg=2.5.3=h5fbd93e_0 - - openssl=3.5.0=h7b32b05_0 + - openssl=3.5.0=h7b32b05_1 - packaging=25.0=pyh29332c3_1 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py312h287a98d_1 - - pip=25.1=pyh8b19718_0 - - platformdirs=4.3.7=pyh29332c3_0 - - pluggy=1.5.0=pyhd8ed1ab_1 + - pip=25.1.1=pyh8b19718_0 + - platformdirs=4.3.8=pyhe01879c_0 + - pluggy=1.6.0=pyhd8ed1ab_0 - psutil=7.0.0=py312h66e93f0_0 - pthread-stubs=0.4=hb9d3cd8_1002 - pycparser=2.22=pyh29332c3_1 - - pydantic=2.11.3=pyh3cfb1c2_0 - - pydantic-core=2.33.1=py312h3b7be25_0 + - pydantic=2.11.7=pyh3cfb1c2_0 + - pydantic-core=2.33.2=py312h680f630_0 - pydiso=0.1.2=py312h772f2df_0 - pygments=2.19.1=pyhd8ed1ab_0 - - pylint=3.3.6=pyh29332c3_0 + - pylint=3.3.7=pyhe01879c_0 - pymatsolver=0.3.1=pyh48887ae_201 - pyparsing=3.2.3=pyhd8ed1ab_1 - pysocks=1.7.1=pyha55dd90_7 - - pytest=8.3.5=pyhd8ed1ab_0 - - pytest-cov=6.1.1=pyhd8ed1ab_0 - - python=3.12.10=h9e4cc4f_0_cpython + - 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-mumps=0.0.3=py312h6ad3ee3_0 - python_abi=3.12=7_cp312 @@ -143,13 +144,13 @@ dependencies: - pyyaml=6.0.2=py312h178313f_2 - readline=8.2=h8c095d6_2 - readthedocs-sphinx-ext=2.2.5=pyhd8ed1ab_1 - - requests=2.32.3=pyhd8ed1ab_1 + - requests=2.32.4=pyhd8ed1ab_0 - rtree=1.2.0=py312h3ed4c40_1 - scikit-learn=1.4.2=py312h1fcc3ea_1 - scipy=1.14.1=py312h62794b6_2 - - setuptools=80.1.0=pyhff2d567_0 + - setuptools=80.9.0=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - snowballstemmer=3.0.1=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - sphinx=5.3.0=pyhd8ed1ab_0 - sphinxcontrib-applehelp=2.0.0=pyhd8ed1ab_1 @@ -161,20 +162,20 @@ dependencies: - tbb=2021.13.0=hceb3a55_1 - tblib=3.1.0=pyhd8ed1ab_0 - threadpoolctl=3.3.0=pyhc1e730c_0 - - tk=8.6.13=noxft_h4845f30_101 + - tk=8.6.13=noxft_hd72426e_102 - toml=0.10.2=pyhd8ed1ab_1 - tomli=2.2.1=pyhd8ed1ab_1 - - tomlkit=0.13.2=pyha770c72_1 + - tomlkit=0.13.3=pyha770c72_0 - toolz=1.0.0=pyhd8ed1ab_1 - - tornado=6.4.2=py312h66e93f0_0 + - tornado=6.5.1=py312h66e93f0_0 - tqdm=4.67.1=pyhd8ed1ab_1 - trimesh=4.1.8=pyhd8ed1ab_0 - - typing-extensions=4.13.2=h0e9735f_0 - - typing-inspection=0.4.0=pyhd8ed1ab_0 - - typing_extensions=4.13.2=pyh29332c3_0 + - typing-extensions=4.14.0=h32cad80_0 + - typing-inspection=0.4.1=pyhd8ed1ab_0 + - typing_extensions=4.14.0=pyhe01879c_0 - tzdata=2025b=h78e105d_0 - unicodedata2=16.0.0=py312h66e93f0_0 - - urllib3=2.4.0=pyhd8ed1ab_0 + - urllib3=2.5.0=pyhd8ed1ab_0 - wheel=0.45.1=pyhd8ed1ab_1 - wrapt=1.17.2=py312h66e93f0_0 - xorg-libxau=1.0.12=hb9d3cd8_0 @@ -182,16 +183,16 @@ dependencies: - yaml=0.2.5=h7f98852_2 - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 - - zipp=3.21.0=pyhd8ed1ab_1 + - zipp=3.23.0=pyhd8ed1ab_0 - zstandard=0.23.0=py312h66e93f0_2 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@6e21320c89581dccb1635d8460dfe296ec41b6da - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@24027d81b65df99d5f582acc4497ed33df8a3396 - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@e9c99d6fd5d324571a2717990aecb3ed673cbaca - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 - - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@2d510ad712a20663dc0abb9afbead41537d10d91 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 + - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 + - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@25197892deadbaeb728441753ab9fba646ce5e0b 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 9f1b676..b187297 100644 --- a/environments/py-3.12-linux-64.conda.lock.yml +++ b/environments/py-3.12-linux-64.conda.lock.yml @@ -9,17 +9,17 @@ dependencies: - _openmp_mutex=4.5=3_kmp_llvm - annotated-types=0.7.0=pyhd8ed1ab_1 - asciitree=0.3.3=py_2 - - brotli=1.1.0=hb9d3cd8_2 - - brotli-bin=1.1.0=hb9d3cd8_2 - - brotli-python=1.1.0=py312h2ec8cdc_2 + - brotli=1.1.0=hb9d3cd8_3 + - brotli-bin=1.1.0=hb9d3cd8_3 + - brotli-python=1.1.0=py312h2ec8cdc_3 - bzip2=1.0.8=h4bc722e_7 - c-ares=1.34.5=hb9d3cd8_0 - - ca-certificates=2025.4.26=hbd8a1cb_0 + - ca-certificates=2025.6.15=hbd8a1cb_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2025.1.31=pyhd8ed1ab_0 + - certifi=2025.6.15=pyhd8ed1ab_0 - cffi=1.17.1=py312h06ac9bb_0 - - click=8.1.8=pyh707e725_0 + - click=8.2.1=pyh707e725_0 - cloudpickle=3.1.1=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - contourpy=1.3.2=py312h68727a3_0 @@ -27,35 +27,36 @@ dependencies: - cytoolz=1.0.1=py312h66e93f0_0 - dask-core=2025.3.0=pyhd8ed1ab_0 - deprecated=1.2.18=pyhd8ed1ab_0 - - discretize=0.11.2=py312hc39e661_1 + - discretize=0.11.3=py312hc39e661_0 - distributed=2025.3.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.57.0=py312h178313f_0 + - fonttools=4.58.4=py312h178313f_0 - freetype=2.13.3=ha770c72_1 - - fsspec=2025.3.2=pyhd8ed1ab_0 + - fsspec=2025.5.1=pyhd8ed1ab_0 - geoana=0.7.2=py312hc39e661_0 - h2=4.2.0=pyhd8ed1ab_0 - - h5py=3.13.0=nompi_py312hedeef09_100 - - hdf5=1.14.3=nompi_h2d575fe_109 + - h5py=3.14.0=nompi_py312h3faca00_100 + - hdf5=1.14.6=nompi_h2d575fe_101 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - - importlib-metadata=8.6.1=pyha770c72_0 + - icu=75.1=he02047a_0 + - importlib-metadata=8.7.0=pyhe01879c_1 - jinja2=3.1.6=pyhd8ed1ab_0 - - joblib=1.4.2=pyhd8ed1ab_1 + - joblib=1.5.1=pyhd8ed1ab_0 - keyutils=1.6.1=h166bdaf_0 - kiwisolver=1.4.8=py312h84d6215_0 - krb5=1.21.3=h659f571_0 - lcms2=2.17=h717163a_0 - - ld_impl_linux-64=2.43=h712a8e2_4 + - ld_impl_linux-64=2.43=h1423503_5 - lerc=4.0.0=h0aef613_1 - - libaec=1.1.3=h59595ed_0 + - libaec=1.1.4=h3f801dc_0 - libblas=3.9.0=31_hfdb39a5_mkl - - libbrotlicommon=1.1.0=hb9d3cd8_2 - - libbrotlidec=1.1.0=hb9d3cd8_2 - - libbrotlienc=1.1.0=hb9d3cd8_2 + - libbrotlicommon=1.1.0=hb9d3cd8_3 + - libbrotlidec=1.1.0=hb9d3cd8_3 + - libbrotlienc=1.1.0=hb9d3cd8_3 - libcblas=3.9.0=31_h372d94f_mkl - - libcurl=8.13.0=h332b0f4_0 - - libdeflate=1.23=h86f0d12_0 + - libcurl=8.14.1=h332b0f4_0 + - libdeflate=1.24=h86f0d12_0 - libdlf=0.3.0=pyhd8ed1ab_1 - libedit=3.1.20250104=pl5321h7949ede_0 - libev=4.33=hd590300_2 @@ -63,60 +64,60 @@ dependencies: - libffi=3.4.6=h2dba641_1 - libfreetype=2.13.3=ha770c72_1 - libfreetype6=2.13.3=h48d6fc4_1 - - libgcc=14.2.0=h767d61c_2 - - libgcc-ng=14.2.0=h69a702a_2 - - libgfortran=14.2.0=h69a702a_2 - - libgfortran5=14.2.0=hf1ad2bd_2 + - libgcc=15.1.0=h767d61c_2 + - libgcc-ng=15.1.0=h69a702a_2 + - libgfortran=15.1.0=h69a702a_2 + - libgfortran5=15.1.0=hcea5267_2 - libhwloc=2.11.2=default_h0d58e46_1001 - libiconv=1.18=h4ce23a2_1 - libjpeg-turbo=3.1.0=hb9d3cd8_0 - liblapack=3.9.0=31_hc41d3b0_mkl - - liblzma=5.8.1=hb9d3cd8_0 + - liblzma=5.8.1=hb9d3cd8_2 - libnghttp2=1.64.0=h161d5f1_0 - - libnsl=2.0.1=hd590300_0 - - libpng=1.6.47=h943b412_0 + - libnsl=2.0.1=hb9d3cd8_1 + - libpng=1.6.49=h943b412_0 - libscotch=7.0.6=hea33c07_1 - libspatialindex=2.0.0=he02047a_0 - - libsqlite=3.49.1=hee588c1_2 + - libsqlite=3.50.1=hee588c1_0 - libssh2=1.11.1=hcf80075_0 - - libstdcxx=14.2.0=h8f9b012_2 - - libstdcxx-ng=14.2.0=h4852527_2 - - libtiff=4.7.0=hd9ff511_4 + - libstdcxx=15.1.0=h8f9b012_2 + - libstdcxx-ng=15.1.0=h4852527_2 + - libtiff=4.7.0=hf01ce69_5 - libuuid=2.38.1=h0b41bf4_0 - libwebp-base=1.5.0=h851e524_0 - libxcb=1.17.0=h8a09558_0 - libxcrypt=4.4.36=hd590300_1 - - libxml2=2.13.7=h81593ed_1 + - libxml2=2.13.8=h4bc477f_0 - libzlib=1.3.1=hb9d3cd8_2 - - llvm-openmp=20.1.4=h024ca30_0 + - llvm-openmp=20.1.7=h024ca30_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py312h178313f_1 - matplotlib-base=3.8.4=py312h20ab3a6_2 - metis=5.1.0=hd0bcaf9_1007 - mkl=2024.2.2=ha957f24_16 - - msgpack-python=1.1.0=py312h68727a3_0 + - msgpack-python=1.1.1=py312h68727a3_0 - mumps-include=5.7.3=h82cca05_10 - mumps-seq=5.7.3=h06cbf8f_10 - - munkres=1.1.4=pyh9f0ad1d_0 + - munkres=1.1.4=pyhd8ed1ab_1 - ncurses=6.5=h2d0b736_3 - numcodecs=0.15.1=py312hf9745cd_0 - numpy=1.26.4=py312heda63a1_0 - openjpeg=2.5.3=h5fbd93e_0 - - openssl=3.5.0=h7b32b05_0 + - openssl=3.5.0=h7b32b05_1 - packaging=25.0=pyh29332c3_1 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py312h287a98d_1 - - pip=25.1=pyh8b19718_0 + - pip=25.1.1=pyh8b19718_0 - psutil=7.0.0=py312h66e93f0_0 - pthread-stubs=0.4=hb9d3cd8_1002 - pycparser=2.22=pyh29332c3_1 - - pydantic=2.11.3=pyh3cfb1c2_0 - - pydantic-core=2.33.1=py312h3b7be25_0 + - pydantic=2.11.7=pyh3cfb1c2_0 + - pydantic-core=2.33.2=py312h680f630_0 - pydiso=0.1.2=py312h772f2df_0 - pymatsolver=0.3.1=pyh48887ae_201 - pyparsing=3.2.3=pyhd8ed1ab_1 - pysocks=1.7.1=pyha55dd90_7 - - python=3.12.10=h9e4cc4f_0_cpython + - python=3.12.11=h9e4cc4f_0_cpython - python-dateutil=2.9.0.post0=pyhff2d567_1 - python-mumps=0.0.3=py312h6ad3ee3_0 - python_abi=3.12=7_cp312 @@ -125,23 +126,23 @@ dependencies: - rtree=1.2.0=py312h3ed4c40_1 - scikit-learn=1.4.2=py312h1fcc3ea_1 - scipy=1.14.1=py312h62794b6_2 - - setuptools=80.1.0=pyhff2d567_0 + - setuptools=80.9.0=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - tbb=2021.13.0=hceb3a55_1 - tblib=3.1.0=pyhd8ed1ab_0 - threadpoolctl=3.3.0=pyhc1e730c_0 - - tk=8.6.13=noxft_h4845f30_101 + - tk=8.6.13=noxft_hd72426e_102 - toolz=1.0.0=pyhd8ed1ab_1 - - tornado=6.4.2=py312h66e93f0_0 + - tornado=6.5.1=py312h66e93f0_0 - tqdm=4.67.1=pyhd8ed1ab_1 - trimesh=4.1.8=pyhd8ed1ab_0 - - typing-extensions=4.13.2=h0e9735f_0 - - typing-inspection=0.4.0=pyhd8ed1ab_0 - - typing_extensions=4.13.2=pyh29332c3_0 + - typing-extensions=4.14.0=h32cad80_0 + - typing-inspection=0.4.1=pyhd8ed1ab_0 + - typing_extensions=4.14.0=pyhe01879c_0 - tzdata=2025b=h78e105d_0 - unicodedata2=16.0.0=py312h66e93f0_0 - - urllib3=2.4.0=pyhd8ed1ab_0 + - urllib3=2.5.0=pyhd8ed1ab_0 - wheel=0.45.1=pyhd8ed1ab_1 - wrapt=1.17.2=py312h66e93f0_0 - xorg-libxau=1.0.12=hb9d3cd8_0 @@ -149,16 +150,16 @@ dependencies: - yaml=0.2.5=h7f98852_2 - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 - - zipp=3.21.0=pyhd8ed1ab_1 + - zipp=3.23.0=pyhd8ed1ab_0 - zstandard=0.23.0=py312h66e93f0_2 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@6e21320c89581dccb1635d8460dfe296ec41b6da - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@24027d81b65df99d5f582acc4497ed33df8a3396 - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@e9c99d6fd5d324571a2717990aecb3ed673cbaca - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 - - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@2d510ad712a20663dc0abb9afbead41537d10d91 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 + - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 + - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@25197892deadbaeb728441753ab9fba646ce5e0b 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 34dadd0..f1693c4 100644 --- a/environments/py-3.12-win-64-dev.conda.lock.yml +++ b/environments/py-3.12-win-64-dev.conda.lock.yml @@ -10,130 +10,130 @@ dependencies: - alabaster=0.7.16=pyhd8ed1ab_0 - annotated-types=0.7.0=pyhd8ed1ab_1 - asciitree=0.3.3=py_2 - - astroid=3.3.9=py312h2e8e312_0 + - astroid=3.3.10=py312h2e8e312_0 - babel=2.17.0=pyhd8ed1ab_0 - - brotli=1.1.0=h2466b09_2 - - brotli-bin=1.1.0=h2466b09_2 - - brotli-python=1.1.0=py312h275cf98_2 + - brotli=1.1.0=h2466b09_3 + - brotli-bin=1.1.0=h2466b09_3 + - brotli-python=1.1.0=py312h275cf98_3 - bzip2=1.0.8=h2466b09_7 - - ca-certificates=2025.4.26=h4c7d964_0 + - ca-certificates=2025.6.15=h4c7d964_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2025.1.31=pyhd8ed1ab_0 + - certifi=2025.6.15=pyhd8ed1ab_0 - cffi=1.17.1=py312h4389bb4_0 - - charset-normalizer=3.4.1=pyhd8ed1ab_0 - - click=8.1.8=pyh7428d3b_0 + - charset-normalizer=3.4.2=pyhd8ed1ab_0 + - click=8.2.1=pyh7428d3b_0 - cloudpickle=3.1.1=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - contourpy=1.3.2=py312hd5eb7cc_0 - - coverage=7.8.0=py312h31fea79_0 + - coverage=7.9.1=py312h31fea79_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py312h4389bb4_0 - dask-core=2025.3.0=pyhd8ed1ab_0 - deprecated=1.2.18=pyhd8ed1ab_0 - dill=0.4.0=pyhd8ed1ab_0 - - discretize=0.11.2=py312hbaa7e33_1 + - discretize=0.11.3=py312hbaa7e33_0 - distributed=2025.3.0=pyhd8ed1ab_0 - docutils=0.18.1=py312h2e8e312_0 - - exceptiongroup=1.2.2=pyhd8ed1ab_1 + - exceptiongroup=1.3.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.57.0=py312h31fea79_0 + - fonttools=4.58.4=py312h31fea79_0 - freetype=2.13.3=h57928b3_1 - - fsspec=2025.3.2=pyhd8ed1ab_0 + - fsspec=2025.5.1=pyhd8ed1ab_0 - geoana=0.7.2=py312hbaa7e33_0 - h2=4.2.0=pyhd8ed1ab_0 - - h5py=3.13.0=nompi_py312ha036244_100 - - hdf5=1.14.3=nompi_hb2c4d47_109 + - h5py=3.14.0=nompi_py312h6cc2a29_100 + - hdf5=1.14.6=nompi_hd5d9e70_101 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - idna=3.10=pyhd8ed1ab_1 - imagesize=1.4.1=pyhd8ed1ab_0 - - importlib-metadata=8.6.1=pyha770c72_0 + - importlib-metadata=8.7.0=pyhe01879c_1 - iniconfig=2.0.0=pyhd8ed1ab_1 - intel-openmp=2024.2.1=h57928b3_1083 - - isort=6.0.1=pyhd8ed1ab_0 + - isort=6.0.1=pyhd8ed1ab_1 - jinja2=3.1.6=pyhd8ed1ab_0 - - joblib=1.4.2=pyhd8ed1ab_1 + - joblib=1.5.1=pyhd8ed1ab_0 - kiwisolver=1.4.8=py312hc790b64_0 - krb5=1.21.3=hdf4eb48_0 - lcms2=2.17=hbcf6048_0 - lerc=4.0.0=h6470a55_1 - - libaec=1.1.3=h63175ca_0 + - libaec=1.1.4=h20038f6_0 - libblas=3.9.0=31_h641d27c_mkl - - libbrotlicommon=1.1.0=h2466b09_2 - - libbrotlidec=1.1.0=h2466b09_2 - - libbrotlienc=1.1.0=h2466b09_2 + - libbrotlicommon=1.1.0=h2466b09_3 + - libbrotlidec=1.1.0=h2466b09_3 + - libbrotlienc=1.1.0=h2466b09_3 - libcblas=3.9.0=31_h5e41251_mkl - - libcurl=8.13.0=h88aaa65_0 - - libdeflate=1.23=h76ddb4d_0 + - libcurl=8.14.1=h88aaa65_0 + - libdeflate=1.24=h76ddb4d_0 - libdlf=0.3.0=pyhd8ed1ab_1 - libexpat=2.7.0=he0c23c2_0 - libffi=3.4.6=h537db12_1 - libfreetype=2.13.3=h57928b3_1 - libfreetype6=2.13.3=h0b5ce68_1 - - libgcc=14.2.0=h1383e82_2 - - libgomp=14.2.0=h1383e82_2 + - libgcc=15.1.0=h1383e82_2 + - libgomp=15.1.0=h1383e82_2 - libhwloc=2.11.2=default_ha69328c_1001 - libiconv=1.18=h135ad9c_1 - libjpeg-turbo=3.1.0=h2466b09_0 - liblapack=3.9.0=31_h1aa476e_mkl - - liblzma=5.8.1=h2466b09_0 - - libpng=1.6.47=h7a4582a_0 + - liblzma=5.8.1=h2466b09_2 + - libpng=1.6.49=h7a4582a_0 - libspatialindex=2.0.0=h5a68840_0 - - libsqlite=3.49.1=h67fdade_2 + - libsqlite=3.50.1=h67fdade_0 - libssh2=1.11.1=h9aa295b_0 - - libtiff=4.7.0=h797046b_4 + - libtiff=4.7.0=h05922d8_5 - libwebp-base=1.5.0=h3b0e114_0 - libwinpthread=12.0.0.r4.gg4f2fc60ca=h57928b3_9 - libxcb=1.17.0=h0e4246c_0 - - libxml2=2.13.7=h442d1da_1 + - libxml2=2.13.8=h442d1da_0 - libzlib=1.3.1=h2466b09_2 - - llvm-openmp=20.1.4=h30eaf37_0 + - llvm-openmp=20.1.7=h30eaf37_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py312h31fea79_1 - matplotlib-base=3.8.4=py312hfee7060_2 - mccabe=0.7.0=pyhd8ed1ab_1 - mkl=2024.2.2=h66d3029_15 - - msgpack-python=1.1.0=py312hd5eb7cc_0 + - msgpack-python=1.1.1=py312hd5eb7cc_0 - mumps-seq=5.7.3=hbaa6519_10 - - munkres=1.1.4=pyh9f0ad1d_0 + - munkres=1.1.4=pyhd8ed1ab_1 - numcodecs=0.15.1=py312h72972c8_0 - numpy=1.26.4=py312h8753938_0 - openjpeg=2.5.3=h4d64b90_0 - - openssl=3.5.0=ha4e3fda_0 + - openssl=3.5.0=ha4e3fda_1 - packaging=25.0=pyh29332c3_1 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py312h381445a_1 - - pip=25.1=pyh8b19718_0 - - platformdirs=4.3.7=pyh29332c3_0 - - pluggy=1.5.0=pyhd8ed1ab_1 + - pip=25.1.1=pyh8b19718_0 + - platformdirs=4.3.8=pyhe01879c_0 + - pluggy=1.6.0=pyhd8ed1ab_0 - psutil=7.0.0=py312h4389bb4_0 - pthread-stubs=0.4=h0e40799_1002 - pycparser=2.22=pyh29332c3_1 - - pydantic=2.11.3=pyh3cfb1c2_0 - - pydantic-core=2.33.1=py312hfe1d9c4_0 + - pydantic=2.11.7=pyh3cfb1c2_0 + - pydantic-core=2.33.2=py312h8422cdd_0 - pydiso=0.1.2=py312h01acb21_0 - pygments=2.19.1=pyhd8ed1ab_0 - - pylint=3.3.6=pyh29332c3_0 + - pylint=3.3.7=pyhe01879c_0 - pymatsolver=0.3.1=pyh48887ae_201 - pyparsing=3.2.3=pyhd8ed1ab_1 - pysocks=1.7.1=pyh09c184e_7 - - pytest=8.3.5=pyhd8ed1ab_0 - - pytest-cov=6.1.1=pyhd8ed1ab_0 - - python=3.12.10=h3f84c4b_0_cpython + - 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-mumps=0.0.3=py312h8095395_0 - python_abi=3.12=7_cp312 - pytz=2025.2=pyhd8ed1ab_0 - pyyaml=6.0.2=py312h31fea79_2 - readthedocs-sphinx-ext=2.2.5=pyhd8ed1ab_1 - - requests=2.32.3=pyhd8ed1ab_1 + - requests=2.32.4=pyhd8ed1ab_0 - rtree=1.2.0=py312h50e5f8f_1 - scikit-learn=1.4.2=py312h816cc57_1 - scipy=1.14.1=py312h337df96_2 - - setuptools=80.1.0=pyhff2d567_0 + - setuptools=80.9.0=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - snowballstemmer=3.0.1=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - sphinx=5.3.0=pyhd8ed1ab_0 - sphinxcontrib-applehelp=2.0.0=pyhd8ed1ab_1 @@ -145,21 +145,21 @@ dependencies: - tbb=2021.13.0=h62715c5_1 - tblib=3.1.0=pyhd8ed1ab_0 - threadpoolctl=3.3.0=pyhc1e730c_0 - - tk=8.6.13=h5226925_1 + - tk=8.6.13=h2c6b04d_2 - toml=0.10.2=pyhd8ed1ab_1 - tomli=2.2.1=pyhd8ed1ab_1 - - tomlkit=0.13.2=pyha770c72_1 + - tomlkit=0.13.3=pyha770c72_0 - toolz=1.0.0=pyhd8ed1ab_1 - - tornado=6.4.2=py312h4389bb4_0 + - tornado=6.5.1=py312h4389bb4_0 - tqdm=4.67.1=pyhd8ed1ab_1 - trimesh=4.1.8=pyhd8ed1ab_0 - - typing-extensions=4.13.2=h0e9735f_0 - - typing-inspection=0.4.0=pyhd8ed1ab_0 - - typing_extensions=4.13.2=pyh29332c3_0 + - typing-extensions=4.14.0=h32cad80_0 + - typing-inspection=0.4.1=pyhd8ed1ab_0 + - typing_extensions=4.14.0=pyhe01879c_0 - tzdata=2025b=h78e105d_0 - ucrt=10.0.22621.0=h57928b3_1 - unicodedata2=16.0.0=py312h4389bb4_0 - - urllib3=2.4.0=pyhd8ed1ab_0 + - urllib3=2.5.0=pyhd8ed1ab_0 - vc=14.3=h2b53caa_26 - vc14_runtime=14.42.34438=hfd919c2_26 - vs2015_runtime=14.42.34438=h7142326_26 @@ -171,16 +171,16 @@ dependencies: - yaml=0.2.5=h8ffe710_2 - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 - - zipp=3.21.0=pyhd8ed1ab_1 + - zipp=3.23.0=pyhd8ed1ab_0 - zstandard=0.23.0=py312h4389bb4_2 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@6e21320c89581dccb1635d8460dfe296ec41b6da - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@24027d81b65df99d5f582acc4497ed33df8a3396 - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@e9c99d6fd5d324571a2717990aecb3ed673cbaca - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 - - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@2d510ad712a20663dc0abb9afbead41537d10d91 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 + - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 + - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@25197892deadbaeb728441753ab9fba646ce5e0b 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 37aef51..9183e33 100644 --- a/environments/py-3.12-win-64.conda.lock.yml +++ b/environments/py-3.12-win-64.conda.lock.yml @@ -9,16 +9,16 @@ dependencies: - _openmp_mutex=4.5=2_gnu - annotated-types=0.7.0=pyhd8ed1ab_1 - asciitree=0.3.3=py_2 - - brotli=1.1.0=h2466b09_2 - - brotli-bin=1.1.0=h2466b09_2 - - brotli-python=1.1.0=py312h275cf98_2 + - brotli=1.1.0=h2466b09_3 + - brotli-bin=1.1.0=h2466b09_3 + - brotli-python=1.1.0=py312h275cf98_3 - bzip2=1.0.8=h2466b09_7 - - ca-certificates=2025.4.26=h4c7d964_0 + - ca-certificates=2025.6.15=h4c7d964_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2025.1.31=pyhd8ed1ab_0 + - certifi=2025.6.15=pyhd8ed1ab_0 - cffi=1.17.1=py312h4389bb4_0 - - click=8.1.8=pyh7428d3b_0 + - click=8.2.1=pyh7428d3b_0 - cloudpickle=3.1.1=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - contourpy=1.3.2=py312hd5eb7cc_0 @@ -26,82 +26,82 @@ dependencies: - cytoolz=1.0.1=py312h4389bb4_0 - dask-core=2025.3.0=pyhd8ed1ab_0 - deprecated=1.2.18=pyhd8ed1ab_0 - - discretize=0.11.2=py312hbaa7e33_1 + - discretize=0.11.3=py312hbaa7e33_0 - distributed=2025.3.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.57.0=py312h31fea79_0 + - fonttools=4.58.4=py312h31fea79_0 - freetype=2.13.3=h57928b3_1 - - fsspec=2025.3.2=pyhd8ed1ab_0 + - fsspec=2025.5.1=pyhd8ed1ab_0 - geoana=0.7.2=py312hbaa7e33_0 - h2=4.2.0=pyhd8ed1ab_0 - - h5py=3.13.0=nompi_py312ha036244_100 - - hdf5=1.14.3=nompi_hb2c4d47_109 + - h5py=3.14.0=nompi_py312h6cc2a29_100 + - hdf5=1.14.6=nompi_hd5d9e70_101 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - - importlib-metadata=8.6.1=pyha770c72_0 + - importlib-metadata=8.7.0=pyhe01879c_1 - intel-openmp=2024.2.1=h57928b3_1083 - jinja2=3.1.6=pyhd8ed1ab_0 - - joblib=1.4.2=pyhd8ed1ab_1 + - joblib=1.5.1=pyhd8ed1ab_0 - kiwisolver=1.4.8=py312hc790b64_0 - krb5=1.21.3=hdf4eb48_0 - lcms2=2.17=hbcf6048_0 - lerc=4.0.0=h6470a55_1 - - libaec=1.1.3=h63175ca_0 + - libaec=1.1.4=h20038f6_0 - libblas=3.9.0=31_h641d27c_mkl - - libbrotlicommon=1.1.0=h2466b09_2 - - libbrotlidec=1.1.0=h2466b09_2 - - libbrotlienc=1.1.0=h2466b09_2 + - libbrotlicommon=1.1.0=h2466b09_3 + - libbrotlidec=1.1.0=h2466b09_3 + - libbrotlienc=1.1.0=h2466b09_3 - libcblas=3.9.0=31_h5e41251_mkl - - libcurl=8.13.0=h88aaa65_0 - - libdeflate=1.23=h76ddb4d_0 + - libcurl=8.14.1=h88aaa65_0 + - libdeflate=1.24=h76ddb4d_0 - libdlf=0.3.0=pyhd8ed1ab_1 - libexpat=2.7.0=he0c23c2_0 - libffi=3.4.6=h537db12_1 - libfreetype=2.13.3=h57928b3_1 - libfreetype6=2.13.3=h0b5ce68_1 - - libgcc=14.2.0=h1383e82_2 - - libgomp=14.2.0=h1383e82_2 + - libgcc=15.1.0=h1383e82_2 + - libgomp=15.1.0=h1383e82_2 - libhwloc=2.11.2=default_ha69328c_1001 - libiconv=1.18=h135ad9c_1 - libjpeg-turbo=3.1.0=h2466b09_0 - liblapack=3.9.0=31_h1aa476e_mkl - - liblzma=5.8.1=h2466b09_0 - - libpng=1.6.47=h7a4582a_0 + - liblzma=5.8.1=h2466b09_2 + - libpng=1.6.49=h7a4582a_0 - libspatialindex=2.0.0=h5a68840_0 - - libsqlite=3.49.1=h67fdade_2 + - libsqlite=3.50.1=h67fdade_0 - libssh2=1.11.1=h9aa295b_0 - - libtiff=4.7.0=h797046b_4 + - libtiff=4.7.0=h05922d8_5 - libwebp-base=1.5.0=h3b0e114_0 - libwinpthread=12.0.0.r4.gg4f2fc60ca=h57928b3_9 - libxcb=1.17.0=h0e4246c_0 - - libxml2=2.13.7=h442d1da_1 + - libxml2=2.13.8=h442d1da_0 - libzlib=1.3.1=h2466b09_2 - - llvm-openmp=20.1.4=h30eaf37_0 + - llvm-openmp=20.1.7=h30eaf37_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py312h31fea79_1 - matplotlib-base=3.8.4=py312hfee7060_2 - mkl=2024.2.2=h66d3029_15 - - msgpack-python=1.1.0=py312hd5eb7cc_0 + - msgpack-python=1.1.1=py312hd5eb7cc_0 - mumps-seq=5.7.3=hbaa6519_10 - - munkres=1.1.4=pyh9f0ad1d_0 + - munkres=1.1.4=pyhd8ed1ab_1 - numcodecs=0.15.1=py312h72972c8_0 - numpy=1.26.4=py312h8753938_0 - openjpeg=2.5.3=h4d64b90_0 - - openssl=3.5.0=ha4e3fda_0 + - openssl=3.5.0=ha4e3fda_1 - packaging=25.0=pyh29332c3_1 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py312h381445a_1 - - pip=25.1=pyh8b19718_0 + - pip=25.1.1=pyh8b19718_0 - psutil=7.0.0=py312h4389bb4_0 - pthread-stubs=0.4=h0e40799_1002 - pycparser=2.22=pyh29332c3_1 - - pydantic=2.11.3=pyh3cfb1c2_0 - - pydantic-core=2.33.1=py312hfe1d9c4_0 + - pydantic=2.11.7=pyh3cfb1c2_0 + - pydantic-core=2.33.2=py312h8422cdd_0 - pydiso=0.1.2=py312h01acb21_0 - pymatsolver=0.3.1=pyh48887ae_201 - pyparsing=3.2.3=pyhd8ed1ab_1 - pysocks=1.7.1=pyh09c184e_7 - - python=3.12.10=h3f84c4b_0_cpython + - python=3.12.11=h3f84c4b_0_cpython - python-dateutil=2.9.0.post0=pyhff2d567_1 - python-mumps=0.0.3=py312h8095395_0 - python_abi=3.12=7_cp312 @@ -109,24 +109,24 @@ dependencies: - rtree=1.2.0=py312h50e5f8f_1 - scikit-learn=1.4.2=py312h816cc57_1 - scipy=1.14.1=py312h337df96_2 - - setuptools=80.1.0=pyhff2d567_0 + - setuptools=80.9.0=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - tbb=2021.13.0=h62715c5_1 - tblib=3.1.0=pyhd8ed1ab_0 - threadpoolctl=3.3.0=pyhc1e730c_0 - - tk=8.6.13=h5226925_1 + - tk=8.6.13=h2c6b04d_2 - toolz=1.0.0=pyhd8ed1ab_1 - - tornado=6.4.2=py312h4389bb4_0 + - tornado=6.5.1=py312h4389bb4_0 - tqdm=4.67.1=pyhd8ed1ab_1 - trimesh=4.1.8=pyhd8ed1ab_0 - - typing-extensions=4.13.2=h0e9735f_0 - - typing-inspection=0.4.0=pyhd8ed1ab_0 - - typing_extensions=4.13.2=pyh29332c3_0 + - typing-extensions=4.14.0=h32cad80_0 + - typing-inspection=0.4.1=pyhd8ed1ab_0 + - typing_extensions=4.14.0=pyhe01879c_0 - tzdata=2025b=h78e105d_0 - ucrt=10.0.22621.0=h57928b3_1 - unicodedata2=16.0.0=py312h4389bb4_0 - - urllib3=2.4.0=pyhd8ed1ab_0 + - urllib3=2.5.0=pyhd8ed1ab_0 - vc=14.3=h2b53caa_26 - vc14_runtime=14.42.34438=hfd919c2_26 - vs2015_runtime=14.42.34438=h7142326_26 @@ -138,16 +138,16 @@ dependencies: - yaml=0.2.5=h8ffe710_2 - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 - - zipp=3.21.0=pyhd8ed1ab_1 + - zipp=3.23.0=pyhd8ed1ab_0 - zstandard=0.23.0=py312h4389bb4_2 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@6e21320c89581dccb1635d8460dfe296ec41b6da - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@24027d81b65df99d5f582acc4497ed33df8a3396 - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@e9c99d6fd5d324571a2717990aecb3ed673cbaca - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 - - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@2d510ad712a20663dc0abb9afbead41537d10d91 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 + - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 + - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@25197892deadbaeb728441753ab9fba646ce5e0b variables: KMP_WARNINGS: 0 diff --git a/py-3.10.conda-lock.yml b/py-3.10.conda-lock.yml index e1d8bc5..744d02b 100644 --- a/py-3.10.conda-lock.yml +++ b/py-3.10.conda-lock.yml @@ -129,31 +129,31 @@ package: category: main optional: false - name: astroid - version: 3.3.9 + version: 3.3.10 manager: conda platform: linux-64 dependencies: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - typing_extensions: '>=4.0.0' - url: https://repo.prefix.dev/conda-forge/linux-64/astroid-3.3.9-py310hff52083_0.conda + typing_extensions: '>=4' + url: https://repo.prefix.dev/conda-forge/linux-64/astroid-3.3.10-py310hff52083_0.conda hash: - md5: 2d8f1127e88e64103552fbf86a306eee - sha256: b95f04ff05b296e1ac706d57a3a0bf7bf12b3275d6042a48ac73fee0a0631793 + md5: 23d30197602d01c464d5ffec91091289 + sha256: 8fc36a19f99ce069add5036b7956c993d17e6fdffe6d89094269ee44d5258376 category: dev optional: true - name: astroid - version: 3.3.9 + version: 3.3.10 manager: conda platform: win-64 dependencies: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - typing_extensions: '>=4.0.0' - url: https://repo.prefix.dev/conda-forge/win-64/astroid-3.3.9-py310h5588dad_0.conda + typing_extensions: '>=4' + url: https://repo.prefix.dev/conda-forge/win-64/astroid-3.3.10-py310h5588dad_0.conda hash: - md5: 09a0c7f312f8a1e34547ea43cc85867f - sha256: a4ce7d09c0762da3c3f67c5a6ae6e5b364339599e0f8e13ee62440c943ce692d + md5: 6eb388b714751d500899de8cb4b4f0fe + sha256: 9b1d89a07594eea4b095e36df447fd2f64e4e492256b7b91388378e51996517c category: dev optional: true - name: babel @@ -192,10 +192,10 @@ package: libbrotlidec: 1.1.0 libbrotlienc: 1.1.0 libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/brotli-1.1.0-hb9d3cd8_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/brotli-1.1.0-hb9d3cd8_3.conda hash: - md5: 98514fe74548d768907ce7a13f680e8f - sha256: fcb0b5b28ba7492093e54f3184435144e074dfceab27ac8e6a9457e736565b0b + md5: 5d08a0ac29e6a5a984817584775d4131 + sha256: c969baaa5d7a21afb5ed4b8dd830f82b78e425caaa13d717766ed07a61630bec category: main optional: false - name: brotli @@ -209,10 +209,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/brotli-1.1.0-h2466b09_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/brotli-1.1.0-h2466b09_3.conda hash: - md5: 378f1c9421775dfe644731cb121c8979 - sha256: d8fd7d1b446706776117d2dcad1c0289b9f5e1521cb13405173bad38568dd252 + md5: c2a23d8a8986c72148c63bdf855ac99a + sha256: d57cd6ea705c9d2a8a2721f083de247501337e459f5498726b564cfca138e192 category: main optional: false - name: brotli-bin @@ -224,10 +224,10 @@ package: libbrotlidec: 1.1.0 libbrotlienc: 1.1.0 libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/brotli-bin-1.1.0-hb9d3cd8_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/brotli-bin-1.1.0-hb9d3cd8_3.conda hash: - md5: c63b5e52939e795ba8d26e35d767a843 - sha256: 261364d7445513b9a4debc345650fad13c627029bfc800655a266bf1e375bc65 + md5: 58178ef8ba927229fba6d84abf62c108 + sha256: ab74fa8c3d1ca0a055226be89e99d6798c65053e2d2d3c6cb380c574972cd4a7 category: main optional: false - name: brotli-bin @@ -240,10 +240,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/brotli-bin-1.1.0-h2466b09_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/brotli-bin-1.1.0-h2466b09_3.conda hash: - md5: d22534a9be5771fc58eb7564947f669d - sha256: f3bf2893613540ac256c68f211861c4de618d96291719e32178d894114ac2bc2 + md5: c7c345559c1ac25eede6dccb7b931202 + sha256: 85aac1c50a426be6d0cc9fd52480911d752f4082cb78accfdb257243e572c7eb category: main optional: false - name: brotli-python @@ -256,10 +256,10 @@ package: libstdcxx: '>=13' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://repo.prefix.dev/conda-forge/linux-64/brotli-python-1.1.0-py310hf71b8c6_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/brotli-python-1.1.0-py310hf71b8c6_3.conda hash: - md5: bf502c169c71e3c6ac0d6175addfacc2 - sha256: 14f1e89d3888d560a553f40ac5ba83e4435a107552fa5b2b2029a7472554c1ef + md5: 63d24a5dd21c738d706f91569dbd1892 + sha256: 313cd446b1a42b55885741534800a1d69bd3816eeef662f41fc3ac26e16d537e category: main optional: false - name: brotli-python @@ -272,10 +272,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/brotli-python-1.1.0-py310h9e98ed7_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/brotli-python-1.1.0-py310h9e98ed7_3.conda hash: - md5: 3a10a1d0cf3ece273195f26191fd6cc6 - sha256: 1b7893a07f2323410b09b63b4627103efa86163be835ac94966333b37741cdc7 + md5: 52d37d0f3a9286d295fbf72cf0aa99ee + sha256: 6eac109d40bd36d158064a552babc3da069662ad93712453eb43320f330b7c82 category: main optional: false - name: bzip2 @@ -319,27 +319,27 @@ package: category: main optional: false - name: ca-certificates - version: 2025.4.26 + version: 2025.6.15 manager: conda platform: linux-64 dependencies: __unix: '' - url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.4.26-hbd8a1cb_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.6.15-hbd8a1cb_0.conda hash: - md5: 95db94f75ba080a22eb623590993167b - sha256: 2a70ed95ace8a3f8a29e6cd1476a943df294a7111dfb3e152e3478c4c889b7ac + md5: 72525f07d72806e3b639ad4504c30ce5 + sha256: 7cfec9804c84844ea544d98bda1d9121672b66ff7149141b8415ca42dfcd44f6 category: main optional: false - name: ca-certificates - version: 2025.4.26 + version: 2025.6.15 manager: conda platform: win-64 dependencies: __win: '' - url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.4.26-h4c7d964_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.6.15-h4c7d964_0.conda hash: - md5: 23c7fd5062b48d8294fc7f61bf157fba - sha256: 1454f3f53a3b828d3cb68a3440cb0fa9f1cc0e3c8c26e9e023773dc19d88cc06 + md5: b01649832f7bc7ff94f8df8bd2ee6457 + sha256: 065241ba03ef3ee8200084c075cbff50955a7e711765395ff34876dbc51a6bb9 category: main optional: false - name: cached-property @@ -391,27 +391,27 @@ package: category: main optional: false - name: certifi - version: 2025.1.31 + version: 2025.6.15 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.6.15-pyhd8ed1ab_0.conda hash: - md5: c207fa5ac7ea99b149344385a9c0880d - sha256: 42a78446da06a2568cb13e69be3355169fbd0ea424b00fc80b7d840f5baaacf3 + md5: 781d068df0cc2407d4db0ecfbb29225b + sha256: d71c85835813072cd6d7ce4b24be34215cd90c104785b15a5d58f4cd0cb50778 category: main optional: false - name: certifi - version: 2025.1.31 + version: 2025.6.15 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.6.15-pyhd8ed1ab_0.conda hash: - md5: c207fa5ac7ea99b149344385a9c0880d - sha256: 42a78446da06a2568cb13e69be3355169fbd0ea424b00fc80b7d840f5baaacf3 + md5: 781d068df0cc2407d4db0ecfbb29225b + sha256: d71c85835813072cd6d7ce4b24be34215cd90c104785b15a5d58f4cd0cb50778 category: main optional: false - name: cffi @@ -449,54 +449,54 @@ package: category: main optional: false - name: charset-normalizer - version: 3.4.1 + version: 3.4.2 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.2-pyhd8ed1ab_0.conda hash: - md5: e83a31202d1c0a000fce3e9cf3825875 - sha256: 4e0ee91b97e5de3e74567bdacea27f0139709fceca4db8adffbe24deffccb09b + md5: 40fe4284b8b5835a9073a645139f35af + sha256: 535ae5dcda8022e31c6dc063eb344c80804c537a5a04afba43a845fa6fa130f5 category: dev optional: true - name: charset-normalizer - version: 3.4.1 + version: 3.4.2 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.2-pyhd8ed1ab_0.conda hash: - md5: e83a31202d1c0a000fce3e9cf3825875 - sha256: 4e0ee91b97e5de3e74567bdacea27f0139709fceca4db8adffbe24deffccb09b + md5: 40fe4284b8b5835a9073a645139f35af + sha256: 535ae5dcda8022e31c6dc063eb344c80804c537a5a04afba43a845fa6fa130f5 category: dev optional: true - name: click - version: 8.1.8 + version: 8.2.1 manager: conda platform: linux-64 dependencies: __unix: '' - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/click-8.1.8-pyh707e725_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/click-8.2.1-pyh707e725_0.conda hash: - md5: f22f4d4970e09d68a10b922cbb0408d3 - sha256: c920d23cd1fcf565031c679adb62d848af60d6fbb0edc2d50ba475cea4f0d8ab + md5: 94b550b8d3a614dbd326af798c7dfb40 + sha256: 8aee789c82d8fdd997840c952a586db63c6890b00e88c4fb6e80a38edd5f51c0 category: main optional: false - name: click - version: 8.1.8 + version: 8.2.1 manager: conda platform: win-64 dependencies: __win: '' colorama: '' - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/click-8.1.8-pyh7428d3b_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/click-8.2.1-pyh7428d3b_0.conda hash: - md5: 90e5571556f7a45db92ee51cb8f97af6 - sha256: c889ed359ae47eead4ffe8927b7206b22c55e67d6e74a9044c23736919d61e8d + md5: 3a59475037bc09da916e4062c5cad771 + sha256: 20c2d8ea3d800485245b586a28985cba281dd6761113a49d7576f6db92a0a891 category: main optional: false - name: cloudpickle @@ -582,7 +582,7 @@ package: category: main optional: false - name: coverage - version: 7.8.0 + version: 7.9.1 manager: conda platform: linux-64 dependencies: @@ -591,14 +591,14 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* tomli: '' - url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.8.0-py310h89163eb_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.9.1-py310h89163eb_0.conda hash: - md5: 9f7865c17117d16f804b687b498e35fa - sha256: ac410dbd3b1e28d40b88a27f801210b853ebd388f3cf20f85c0178e97f788013 + md5: 0acae6de150b85b7f3119ec88558d22a + sha256: 6464f0923860a0e5fcbba990244c022e7477df1822c11d8b523559c76a07b7d1 category: dev optional: true - name: coverage - version: 7.8.0 + version: 7.9.1 manager: conda platform: win-64 dependencies: @@ -608,10 +608,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.8.0-py310h38315fa_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.9.1-py310h38315fa_0.conda hash: - md5: 30a825dae940c63c55bca8df4f806f3e - sha256: f16e7370e327f20ccba8a6edfb0441ec425c11c10744d6eaa817d05076b458a5 + md5: b8b10af95ba002ab90bbf61f20eaffab + sha256: a847093fb9a7b82502313a208c5338443573ee47b32dad9d38baab660494149c category: dev optional: true - name: cycler @@ -736,7 +736,7 @@ package: category: dev optional: true - name: discretize - version: 0.11.2 + version: 0.11.3 manager: conda platform: linux-64 dependencies: @@ -747,14 +747,14 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* scipy: '>=1.8' - url: https://repo.prefix.dev/conda-forge/linux-64/discretize-0.11.2-py310ha2bacc8_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/discretize-0.11.3-py310ha2bacc8_0.conda hash: - md5: d32664b47026c5d23de390d8b46a2701 - sha256: d065d856c25e199a77115a4d8fd54139ee699724a3f1dda6a3f45f33589a66a7 + md5: dec42d7ab3eb8ee69946eeb5de6eaeb8 + sha256: 8724a644a7170b16e11a4206062e1778ea3a4068691945017060f5d24432d5d0 category: main optional: false - name: discretize - version: 0.11.2 + version: 0.11.3 manager: conda platform: win-64 dependencies: @@ -765,10 +765,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/discretize-0.11.2-py310h3e8ed56_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/discretize-0.11.3-py310h3e8ed56_0.conda hash: - md5: c9cecabe0352f8d1b7ff7e9d52df7270 - sha256: e9b03398c7bd480b6e9e287fe673bf767694bdb96cc8d95bb9500bcd25766b5e + md5: a8ba6acb343f5c9c018a89d1d64acc51 + sha256: 6275debf3044a84b85c5298540d0b208a02f0dad5357744eaa6802779ebed175 category: main optional: false - name: distributed @@ -854,27 +854,29 @@ package: category: dev optional: true - name: exceptiongroup - version: 1.2.2 + version: 1.3.0 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda + typing_extensions: '>=4.6.0' + url: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda hash: - md5: a16662747cdeb9abbac74d0057cc976e - sha256: cbde2c64ec317118fc06b223c5fd87c8a680255e7348dd60e7b292d2e103e701 + md5: 72e42d28960d875c7654614f8b50939a + sha256: ce61f4f99401a4bd455b89909153b40b9c823276aefcbb06f2044618696009ca category: dev optional: true - name: exceptiongroup - version: 1.2.2 + version: 1.3.0 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda + typing_extensions: '>=4.6.0' + url: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda hash: - md5: a16662747cdeb9abbac74d0057cc976e - sha256: cbde2c64ec317118fc06b223c5fd87c8a680255e7348dd60e7b292d2e103e701 + md5: 72e42d28960d875c7654614f8b50939a + sha256: ce61f4f99401a4bd455b89909153b40b9c823276aefcbb06f2044618696009ca category: dev optional: true - name: fasteners @@ -902,7 +904,7 @@ package: category: main optional: false - name: fonttools - version: 4.57.0 + version: 4.58.4 manager: conda platform: linux-64 dependencies: @@ -913,14 +915,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.57.0-py310h89163eb_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/fonttools-4.58.4-py310h89163eb_0.conda hash: - md5: 34378af82141b3c1725dcdf898b28fc6 - sha256: 8b387f0906c8ea04f14eb449e1b58e01fb2cdc4b9a093edf6afdc9625c11cfd6 + md5: 723a77ff55b436601008d28acc982547 + sha256: 7e44c7c215fb14c6ab5f8a018fdaa1ce39d45c85c7e837e42d1adec6ce3708b0 category: main optional: false - name: fonttools - version: 4.57.0 + version: 4.58.4 manager: conda platform: win-64 dependencies: @@ -932,10 +934,10 @@ package: unicodedata2: '>=15.1.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/fonttools-4.57.0-py310h38315fa_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/fonttools-4.58.4-py310h38315fa_0.conda hash: - md5: 1f25f742c39582715cc058f5fe451975 - sha256: bcb3848cb9cc0ff51284dfd91a7615d2c38ba0bd324b3c9764bd53ff0753a874 + md5: f7a8769f5923bebdc10acbbb41d28628 + sha256: 73c733190be8d59c7dd11c7bf1040e9585894ae7693d509f10f234675fd19ad5 category: main optional: false - name: freetype @@ -965,27 +967,27 @@ package: category: main optional: false - name: fsspec - version: 2025.3.2 + version: 2025.5.1 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2025.3.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2025.5.1-pyhd8ed1ab_0.conda hash: - md5: 9c40692c3d24c7aaf335f673ac09d308 - sha256: 2040d4640708bd6ab9ed6cb9901267441798c44974bc63c9b6c1cb4c1891d825 + md5: 2d2c9ef879a7e64e2dc657b09272c2b6 + sha256: cd6ae92ae5aa91a7e58cf39f1442d4821279f43f1c9499d15f45558d4793d1e0 category: main optional: false - name: fsspec - version: 2025.3.2 + version: 2025.5.1 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2025.3.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2025.5.1-pyhd8ed1ab_0.conda hash: - md5: 9c40692c3d24c7aaf335f673ac09d308 - sha256: 2040d4640708bd6ab9ed6cb9901267441798c44974bc63c9b6c1cb4c1891d825 + md5: 2d2c9ef879a7e64e2dc657b09272c2b6 + sha256: cd6ae92ae5aa91a7e58cf39f1442d4821279f43f1c9499d15f45558d4793d1e0 category: main optional: false - name: geoana @@ -1055,78 +1057,78 @@ package: category: main optional: false - name: h5py - version: 3.13.0 + version: 3.14.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' cached-property: '' - hdf5: '>=1.14.3,<1.14.4.0a0' + hdf5: '>=1.14.6,<1.14.7.0a0' libgcc: '>=13' - numpy: '>=1.19,<3' + numpy: '>=1.21,<3' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://repo.prefix.dev/conda-forge/linux-64/h5py-3.13.0-nompi_py310h60e0fe6_100.conda + url: https://repo.prefix.dev/conda-forge/linux-64/h5py-3.14.0-nompi_py310hea1e86d_100.conda hash: - md5: 262cb7007454532e0cdf88c34c0c8f41 - sha256: 5907cd4f8a57d899a7319b2668321bda8a91b375b0a5e69a8729160b64600d67 + md5: f6879e3fc12006cffde701eb08ce1f09 + sha256: 8c7d6fea5345596f1fbef21b99fbc04cef6e7cfa5023619232da52fab80b554f category: main optional: false - name: h5py - version: 3.13.0 + version: 3.14.0 manager: conda platform: win-64 dependencies: cached-property: '' - hdf5: '>=1.14.3,<1.14.4.0a0' - numpy: '>=1.19,<3' + hdf5: '>=1.14.6,<1.14.7.0a0' + numpy: '>=1.21,<3' 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/h5py-3.13.0-nompi_py310h2b0be38_100.conda + url: https://repo.prefix.dev/conda-forge/win-64/h5py-3.14.0-nompi_py310h877c39c_100.conda hash: - md5: 2ae28abdc4fe8fc89df85659c1cf8103 - sha256: ac37afa6b26272b6b034d91b38e877a905059b526e238391bac500f9249b788b + md5: 5b861086c5a7689a6d95c4df10d211e4 + sha256: 754155af401cb3577c3e76ed7a4427ad9928c210d32b8571f84492c54b67f5a4 category: main optional: false - name: hdf5 - version: 1.14.3 + version: 1.14.6 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libaec: '>=1.1.3,<2.0a0' - libcurl: '>=8.11.1,<9.0a0' + libcurl: '>=8.13.0,<9.0a0' libgcc: '>=13' libgfortran: '' libgfortran5: '>=13.3.0' libstdcxx: '>=13' libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.4.0,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/hdf5-1.14.3-nompi_h2d575fe_109.conda + openssl: '>=3.5.0,<4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/hdf5-1.14.6-nompi_h2d575fe_101.conda hash: - md5: e7a7a6e6f70553a31e6e79c65768d089 - sha256: e8669a6d76d415f4fdbe682507ac3a3b39e8f493d2f2bdc520817f80b7cc0753 + md5: d1f61f912e1968a8ac9834b62fde008d + sha256: b685b9d68e927f446bead1458c0fbf5ac02e6a471ed7606de427605ac647e8d3 category: main optional: false - name: hdf5 - version: 1.14.3 + version: 1.14.6 manager: conda platform: win-64 dependencies: libaec: '>=1.1.3,<2.0a0' - libcurl: '>=8.11.1,<9.0a0' + libcurl: '>=8.13.0,<9.0a0' libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.4.0,<4.0a0' + openssl: '>=3.5.0,<4.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/hdf5-1.14.3-nompi_hb2c4d47_109.conda + url: https://repo.prefix.dev/conda-forge/win-64/hdf5-1.14.6-nompi_hd5d9e70_101.conda hash: - md5: ebb61f3e8b35cc15e78876649b7246f7 - sha256: d5ada33e119cdd62371c06f60eae6f545de7cea793ab83da2fba428bb1d2f813 + md5: ea68eb3a15c51875468475c2647a2d23 + sha256: 64d0ed35edefab9a912084f2806b9c4c4ffe2adcf5225a583088abbaafe5dbae category: main optional: false - name: hpack @@ -1177,6 +1179,20 @@ package: sha256: 77af6f5fe8b62ca07d09ac60127a30d9069fdc3c68d6b256754d0ffb1f7779f8 category: main optional: false +- name: icu + version: '75.1' + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + url: https://repo.prefix.dev/conda-forge/linux-64/icu-75.1-he02047a_0.conda + hash: + md5: 8b189310083baabfb622af68fd9d3ae3 + sha256: 71e750d509f5fa3421087ba88ef9a7b9be11c53174af3aa4d06aff4c18b38e8e + category: main + optional: false - name: idna version: '3.10' manager: conda @@ -1226,29 +1242,29 @@ package: category: dev optional: true - name: importlib-metadata - version: 8.6.1 + version: 8.7.0 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - zipp: '>=0.5' - url: https://repo.prefix.dev/conda-forge/noarch/importlib-metadata-8.6.1-pyha770c72_0.conda + python: '' + zipp: '>=3.20' + url: https://repo.prefix.dev/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda hash: - md5: f4b39bf00c69f56ac01e020ebfac066c - sha256: 598951ebdb23e25e4cec4bbff0ae369cec65ead80b50bc08b441d8e54de5cf03 + md5: 63ccfdc3a3ce25b027b8767eb722fca8 + sha256: c18ab120a0613ada4391b15981d86ff777b5690ca461ea7e9e49531e8f374745 category: main optional: false - name: importlib-metadata - version: 8.6.1 + version: 8.7.0 manager: conda platform: win-64 dependencies: python: '>=3.9' - zipp: '>=0.5' - url: https://repo.prefix.dev/conda-forge/noarch/importlib-metadata-8.6.1-pyha770c72_0.conda + zipp: '>=3.20' + url: https://repo.prefix.dev/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda hash: - md5: f4b39bf00c69f56ac01e020ebfac066c - sha256: 598951ebdb23e25e4cec4bbff0ae369cec65ead80b50bc08b441d8e54de5cf03 + md5: 63ccfdc3a3ce25b027b8767eb722fca8 + sha256: c18ab120a0613ada4391b15981d86ff777b5690ca461ea7e9e49531e8f374745 category: main optional: false - name: iniconfig @@ -1292,11 +1308,10 @@ package: platform: linux-64 dependencies: python: '>=3.9,<4.0' - setuptools: '' - url: https://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_1.conda hash: - md5: a8abfd3f223b1ecb8c699dca974933bd - sha256: 9c5fb97efa0eb32b42564edaacb5edb9a1f82ba8f5f8b135e794960101115b5a + md5: c25d1a27b791dab1797832aafd6a3e9a + sha256: e1d0e81e3c3da5d7854f9f57ffb89d8f4505bb64a2f05bb01d78eff24344a105 category: dev optional: true - name: isort @@ -1305,11 +1320,10 @@ package: platform: win-64 dependencies: python: '>=3.9,<4.0' - setuptools: '' - url: https://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_1.conda hash: - md5: a8abfd3f223b1ecb8c699dca974933bd - sha256: 9c5fb97efa0eb32b42564edaacb5edb9a1f82ba8f5f8b135e794960101115b5a + md5: c25d1a27b791dab1797832aafd6a3e9a + sha256: e1d0e81e3c3da5d7854f9f57ffb89d8f4505bb64a2f05bb01d78eff24344a105 category: dev optional: true - name: jinja2 @@ -1339,29 +1353,29 @@ package: category: main optional: false - name: joblib - version: 1.4.2 + version: 1.5.1 manager: conda platform: linux-64 dependencies: python: '>=3.9' setuptools: '' - url: https://repo.prefix.dev/conda-forge/noarch/joblib-1.4.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/joblib-1.5.1-pyhd8ed1ab_0.conda hash: - md5: bf8243ee348f3a10a14ed0cae323e0c1 - sha256: 51cc2dc491668af0c4d9299b0ab750f16ccf413ec5e2391b924108c1fbacae9b + md5: fb1c14694de51a476ce8636d92b6f42c + sha256: e5a4eca9a5d8adfaa3d51e24eefd1a6d560cb3b33a7e1eee13e410bec457b7ed category: main optional: false - name: joblib - version: 1.4.2 + version: 1.5.1 manager: conda platform: win-64 dependencies: python: '>=3.9' setuptools: '' - url: https://repo.prefix.dev/conda-forge/noarch/joblib-1.4.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/joblib-1.5.1-pyhd8ed1ab_0.conda hash: - md5: bf8243ee348f3a10a14ed0cae323e0c1 - sha256: 51cc2dc491668af0c4d9299b0ab750f16ccf413ec5e2391b924108c1fbacae9b + md5: fb1c14694de51a476ce8636d92b6f42c + sha256: e5a4eca9a5d8adfaa3d51e24eefd1a6d560cb3b33a7e1eee13e410bec457b7ed category: main optional: false - name: keyutils @@ -1476,10 +1490,10 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_4.conda + url: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.43-h1423503_5.conda hash: - md5: 01f8d123c96816249efd255a31ad7712 - sha256: db73f38155d901a610b2320525b9dd3b31e4949215c870685fd92ea61b5ce472 + md5: 6dc9e1305e7d3129af4ad0dabda30e56 + sha256: dcd2b1a065bbf5c54004ddf6551c775a8eb6993c8298ca8a6b92041ed413f785 category: main optional: false - name: lerc @@ -1511,30 +1525,31 @@ package: category: main optional: false - name: libaec - version: 1.1.3 + version: 1.1.4 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://repo.prefix.dev/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=13' + libstdcxx: '>=13' + url: https://repo.prefix.dev/conda-forge/linux-64/libaec-1.1.4-h3f801dc_0.conda hash: - md5: 5e97e271911b8b2001a8b71860c32faa - sha256: 2ef420a655528bca9d269086cf33b7e90d2f54ad941b437fb1ed5eca87cee017 + md5: 01ba04e414e47f95c03d6ddd81fd37be + sha256: 410ab78fe89bc869d435de04c9ffa189598ac15bb0fe1ea8ace8fb1b860a2aa3 category: main optional: false - name: libaec - version: 1.1.3 + version: 1.1.4 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libaec-1.1.3-h63175ca_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libaec-1.1.4-h20038f6_0.conda hash: - md5: 8723000f6ffdbdaef16025f0a01b64c5 - sha256: f5c293d3cfc00f71dfdb64bd65ab53625565f8778fc2d5790575bef238976ebf + md5: 85a2bed45827d77d5b308cb2b165404f + sha256: 0be89085effce9fdcbb6aea7acdb157b18793162f68266ee0a75acf615d4929b category: main optional: false - name: libblas @@ -1568,10 +1583,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlicommon-1.1.0-hb9d3cd8_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlicommon-1.1.0-hb9d3cd8_3.conda hash: - md5: 41b599ed2b02abcfdd84302bff174b23 - sha256: d9db2de60ea917298e658143354a530e9ca5f9c63471c65cf47ab39fd2f429e3 + md5: cb98af5db26e3f482bebb80ce9d947d3 + sha256: 462a8ed6a7bb9c5af829ec4b90aab322f8bcd9d8987f793e6986ea873bbd05cf category: main optional: false - name: libbrotlicommon @@ -1582,10 +1597,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libbrotlicommon-1.1.0-h2466b09_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/libbrotlicommon-1.1.0-h2466b09_3.conda hash: - md5: f7dc9a8f21d74eab46456df301da2972 - sha256: 33e8851c6cc8e2d93059792cd65445bfe6be47e4782f826f01593898ec95764c + md5: cf20c8b8b48ab5252ec64b9c66bfe0a4 + sha256: e70ea4b773fadddda697306a80a29d9cbd36b7001547cd54cbfe9a97a518993f category: main optional: false - name: libbrotlidec @@ -1596,10 +1611,10 @@ package: __glibc: '>=2.17,<3.0.a0' libbrotlicommon: 1.1.0 libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlidec-1.1.0-hb9d3cd8_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlidec-1.1.0-hb9d3cd8_3.conda hash: - md5: 9566f0bd264fbd463002e759b8a82401 - sha256: 2892d512cad096cb03f1b66361deeab58b64e15ba525d6592bb6d609e7045edf + md5: 1c6eecffad553bde44c5238770cfb7da + sha256: 3eb27c1a589cbfd83731be7c3f19d6d679c7a444c3ba19db6ad8bf49172f3d83 category: main optional: false - name: libbrotlidec @@ -1611,10 +1626,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libbrotlidec-1.1.0-h2466b09_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/libbrotlidec-1.1.0-h2466b09_3.conda hash: - md5: 9bae75ce723fa34e98e239d21d752a7e - sha256: 234fc92f4c4f1cf22f6464b2b15bfc872fa583c74bf3ab9539ff38892c43612f + md5: a342933dbc6d814541234c7c81cb5205 + sha256: a35a0db7e3257e011b10ffb371735b2b24074412d0b27c3dab7ca9f2c549cfcf category: main optional: false - name: libbrotlienc @@ -1625,10 +1640,10 @@ package: __glibc: '>=2.17,<3.0.a0' libbrotlicommon: 1.1.0 libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlienc-1.1.0-hb9d3cd8_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlienc-1.1.0-hb9d3cd8_3.conda hash: - md5: 06f70867945ea6a84d35836af780f1de - sha256: 779f58174e99de3600e939fa46eddb453ec5d3c60bb46cdaa8b4c127224dbf29 + md5: 3facafe58f3858eb95527c7d3a3fc578 + sha256: 76e8492b0b0a0d222bfd6081cae30612aa9915e4309396fdca936528ccf314b7 category: main optional: false - name: libbrotlienc @@ -1640,10 +1655,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libbrotlienc-1.1.0-h2466b09_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/libbrotlienc-1.1.0-h2466b09_3.conda hash: - md5: 85741a24d97954a991e55e34bc55990b - sha256: 3d0dd7ef505962f107b7ea8f894e0b3dd01bf46852b362c8a7fc136b039bc9e1 + md5: 7ef0af55d70cbd9de324bb88b7f9d81e + sha256: 9d0703c5a01c10d346587ff0535a0eb81042364333caa4a24a0e4a0c08fd490b category: main optional: false - name: libcblas @@ -1671,7 +1686,7 @@ package: category: main optional: false - name: libcurl - version: 8.13.0 + version: 8.14.1 manager: conda platform: linux-64 dependencies: @@ -1681,16 +1696,16 @@ package: libnghttp2: '>=1.64.0,<2.0a0' libssh2: '>=1.11.1,<2.0a0' libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.4.1,<4.0a0' + openssl: '>=3.5.0,<4.0a0' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libcurl-8.13.0-h332b0f4_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libcurl-8.14.1-h332b0f4_0.conda hash: - md5: cbdc92ac0d93fe3c796e36ad65c7905c - sha256: 38e528acfaa0276b7052f4de44271ff9293fdb84579650601a8c49dac171482a + md5: 45f6713cb00f124af300342512219182 + sha256: b6c5cf340a4f80d70d64b3a29a7d9885a5918d16a5cb952022820e6d3e79dc8b category: main optional: false - name: libcurl - version: 8.13.0 + version: 8.14.1 manager: conda platform: win-64 dependencies: @@ -1700,37 +1715,37 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libcurl-8.13.0-h88aaa65_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libcurl-8.14.1-h88aaa65_0.conda hash: - md5: c9cf6eb842decbb66c2f34e72c3580d6 - sha256: 185553b37c0299b7a15dc66a7a7e2a0d421adaac784ec9298a0b2ad745116ca5 + md5: 836b9c08f34d2017dbcaec907c6a1138 + sha256: b2cface2cf35d8522289df7fffc14370596db6f6dc481cc1b6ca313faeac19d8 category: main optional: false - name: libdeflate - version: '1.23' + version: '1.24' manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libdeflate-1.23-h86f0d12_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libdeflate-1.24-h86f0d12_0.conda hash: - md5: 27fe770decaf469a53f3e3a6d593067f - sha256: 4db2f70a1441317d964e84c268e388110ad9cf75ca98994d1336d670e62e6f07 + md5: 64f0c503da58ec25ebd359e4d990afa8 + sha256: 8420748ea1cc5f18ecc5068b4f24c7a023cc9b20971c99c824ba10641fb95ddf category: main optional: false - name: libdeflate - version: '1.23' + version: '1.24' manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libdeflate-1.23-h76ddb4d_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libdeflate-1.24-h76ddb4d_0.conda hash: - md5: 34f03138e46543944d4d7f8538048842 - sha256: 881244050587dc658078ee45dfc792ecb458bbb1fdc861da67948d747b117dc2 + md5: 08d988e266c6ae77e03d164b83786dc4 + sha256: 65347475c0009078887ede77efe60db679ea06f2b56f7853b9310787fe5ad035 category: main optional: false - name: libdlf @@ -1895,78 +1910,78 @@ package: category: main optional: false - name: libgcc - version: 14.2.0 + version: 15.1.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' _openmp_mutex: '>=4.5' - url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-14.2.0-h767d61c_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-15.1.0-h767d61c_2.conda hash: - md5: ef504d1acbd74b7cc6849ef8af47dd03 - sha256: 3a572d031cb86deb541d15c1875aaa097baefc0c580b54dc61f5edab99215792 + md5: ea8ac52380885ed41c1baa8f1d6d2b93 + sha256: 0024f9ab34c09629621aefd8603ef77bf9d708129b0dd79029e502c39ffc2195 category: main optional: false - name: libgcc - version: 14.2.0 + version: 15.1.0 manager: conda platform: win-64 dependencies: _openmp_mutex: '>=4.5' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' - url: https://repo.prefix.dev/conda-forge/win-64/libgcc-14.2.0-h1383e82_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/libgcc-15.1.0-h1383e82_2.conda hash: - md5: 4a74c1461a0ba47a3346c04bdccbe2ad - sha256: fddf2fc037bc95adb3b369e8866da8a71b6a67ebcfc4d7035ac4208309dc9e72 + md5: 9bedb24480136bfeb81ebc81d4285e70 + sha256: c0288596ac58366d96a56c57e4088fe1c6dd4194fdcaeacf5862f47fb1e1e5be category: main optional: false - name: libgcc-ng - version: 14.2.0 + version: 15.1.0 manager: conda platform: linux-64 dependencies: - libgcc: 14.2.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_2.conda + libgcc: 15.1.0 + url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-ng-15.1.0-h69a702a_2.conda hash: - md5: a2222a6ada71fb478682efe483ce0f92 - sha256: fb7558c328b38b2f9d2e412c48da7890e7721ba018d733ebdfea57280df01904 + md5: ddca86c7040dd0e73b2b69bd7833d225 + sha256: 0ab5421a89f090f3aa33841036bb3af4ed85e1f91315b528a9d75fab9aad51ae category: main optional: false - name: libgfortran - version: 14.2.0 + version: 15.1.0 manager: conda platform: linux-64 dependencies: - libgfortran5: 14.2.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran-14.2.0-h69a702a_2.conda + libgfortran5: 15.1.0 + url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran-15.1.0-h69a702a_2.conda hash: - md5: fb54c4ea68b460c278d26eea89cfbcc3 - sha256: e05263e8960da03c341650f2a3ffa4ccae4e111cb198e8933a2908125459e5a6 + md5: f92e6e0a3c0c0c85561ef61aa59d555d + sha256: 914daa4f632b786827ea71b5e07cd00d25fc6e67789db2f830dc481eec660342 category: main optional: false - name: libgfortran5 - version: 14.2.0 + version: 15.1.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14.2.0' - url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran5-14.2.0-hf1ad2bd_2.conda + libgcc: '>=15.1.0' + url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran5-15.1.0-hcea5267_2.conda hash: - md5: 556a4fdfac7287d349b8f09aba899693 - sha256: c17b7cf3073a1f4e1f34d50872934fa326346e104d3c445abc1e62481ad6085c + md5: 01de444988ed960031dbe84cf4f9b1fc + sha256: be23750f3ca1a5cb3ada858c4f633effe777487d1ea35fddca04c0965c073350 category: main optional: false - name: libgomp - version: 14.2.0 + version: 15.1.0 manager: conda platform: win-64 dependencies: libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' - url: https://repo.prefix.dev/conda-forge/win-64/libgomp-14.2.0-h1383e82_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/libgomp-15.1.0-h1383e82_2.conda hash: - md5: dd6b1ab49e28bcb6154cd131acec985b - sha256: 674ec5f1bf319eac98d0d6ecb9c38e0192f3cf41969a5621d62a7e695e1aa9f3 + md5: 5fbacaa9b41e294a6966602205b99747 + sha256: 4316316097ce5fde2608b6fccd18709cf647dce52e230f5ac66f5c524dfad791 category: main optional: false - name: libhwloc @@ -2085,10 +2100,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_2.conda hash: - md5: 0e87378639676987af32fee53ba32258 - sha256: f4f21dfc54b08d462f707b771ecce3fa9bc702a2a05b55654f64154f48b141ef + md5: 1a580f7796c7bf6393fddb8bbbde58dc + sha256: f2591c0069447bbe28d4d696b7fcb0c5bd0b4ac582769b89addbcf26fb3430d8 category: main optional: false - name: liblzma @@ -2099,10 +2114,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/liblzma-5.8.1-h2466b09_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/liblzma-5.8.1-h2466b09_2.conda hash: - md5: 8d5cb0016b645d6688e2ff57c5d51302 - sha256: 1477e9bff05318f3129d37be0e64c76cce0973c4b8c73d13a467d0b7f03d157c + md5: c15148b2e18da456f5108ccb5e411446 + sha256: 55764956eb9179b98de7cc0e55696f2eff8f7b83fc3ebff5e696ca358bca28cc category: main optional: false - name: libnghttp2 @@ -2128,29 +2143,30 @@ package: manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - url: https://repo.prefix.dev/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=13' + url: https://repo.prefix.dev/conda-forge/linux-64/libnsl-2.0.1-hb9d3cd8_1.conda hash: - md5: 30fd6e37fe21f86f4bd26d6ee73eeec7 - sha256: 26d77a3bb4dceeedc2a41bd688564fe71bf2d149fdcf117049970bc02ff1add6 + md5: d864d34357c3b65a4b731f78c0801dc4 + sha256: 927fe72b054277cde6cb82597d0fcf6baf127dcbce2e0a9d8925a68f1265eef5 category: main optional: false - name: libpng - version: 1.6.47 + version: 1.6.49 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libpng-1.6.47-h943b412_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libpng-1.6.49-h943b412_0.conda hash: - md5: 55199e2ae2c3651f6f9b2a447b47bdc9 - sha256: 23367d71da58c9a61c8cbd963fcffb92768d4ae5ffbef9a47cdf1f54f98c5c36 + md5: 37511c874cf3b8d0034c8d24e73c0884 + sha256: c8f5dc929ba5fcee525a66777498e03bbcbfefc05a0773e5163bb08ac5122f1a category: main optional: false - name: libpng - version: 1.6.47 + version: 1.6.49 manager: conda platform: win-64 dependencies: @@ -2158,10 +2174,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libpng-1.6.47-h7a4582a_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libpng-1.6.49-h7a4582a_0.conda hash: - md5: ad620e92b82d2948bc019e029c574ebb - sha256: e12c46ca882080d901392ae45e0e5a1c96fc3e5acd5cd1a23c2632eb7f024f26 + md5: 27269977c8f25d499727ceabc47cee3d + sha256: 8876a2d32d3538675e035b6560691471a1571835c0bcbf23816c24c460d31439 category: main optional: false - name: libscotch @@ -2211,31 +2227,31 @@ package: category: main optional: false - name: libsqlite - version: 3.49.1 + version: 3.50.1 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.49.1-hee588c1_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.50.1-hee588c1_0.conda hash: - md5: 962d6ac93c30b1dfc54c9cccafd1003e - sha256: a086289bf75c33adc1daed3f1422024504ffb5c3c8b3285c49f025c29708ed16 + md5: 96a7e36bff29f1d0ddf5b771e0da373a + sha256: cd15ab1b9f0d53507e7ad7a01e52f6756ab3080bf623ab0e438973b6e4dba3c0 category: main optional: false - name: libsqlite - version: 3.49.1 + version: 3.50.1 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.49.1-h67fdade_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.50.1-h67fdade_0.conda hash: - md5: b58b66d4ad1aaf1c2543cbbd6afb1a59 - sha256: c092d42d00fd85cf609cc58574ba2b03c141af5762283f36f5dd445ef7c0f4fe + md5: 0e11a893eeeb46510520fd3fdd9c346a + sha256: 0dda5b3f21ad2c7e823f21b0e173194347fbfccb73a06ddc9366da1877020bda category: main optional: false - name: libssh2 @@ -2270,28 +2286,28 @@ package: category: main optional: false - name: libstdcxx - version: 14.2.0 + version: 15.1.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: 14.2.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-14.2.0-h8f9b012_2.conda + libgcc: 15.1.0 + url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-15.1.0-h8f9b012_2.conda hash: - md5: a78c856b6dc6bf4ea8daeb9beaaa3fb0 - sha256: 8f5bd92e4a24e1d35ba015c5252e8f818898478cb3bc50bd8b12ab54707dc4da + md5: 1cb1c67961f6dd257eae9e9691b341aa + sha256: 6ae3d153e78f6069d503d9309f2cac6de5b93d067fc6433160a4c05226a5dad4 category: main optional: false - name: libstdcxx-ng - version: 14.2.0 + version: 15.1.0 manager: conda platform: linux-64 dependencies: - libstdcxx: 14.2.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-14.2.0-h4852527_2.conda + libstdcxx: 15.1.0 + url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-15.1.0-h4852527_2.conda hash: - md5: c75da67f045c2627f59e6fcb5f4e3a9b - sha256: e86f38b007cf97cc2c67cd519f2de12a313c4ee3f5ef11652ad08932a5e34189 + md5: 9d2072af184b5caa29492bf2344597bb + sha256: 11bea86e11de7d6bce87589197a383344df3fa0a3552dab7e931785ff1159a5b category: main optional: false - name: libtiff @@ -2301,7 +2317,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' lerc: '>=4.0.0,<5.0a0' - libdeflate: '>=1.23,<1.24.0a0' + libdeflate: '>=1.24,<1.25.0a0' libgcc: '>=13' libjpeg-turbo: '>=3.1.0,<4.0a0' liblzma: '>=5.8.1,<6.0a0' @@ -2309,10 +2325,10 @@ package: libwebp-base: '>=1.5.0,<2.0a0' libzlib: '>=1.3.1,<2.0a0' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libtiff-4.7.0-hd9ff511_4.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libtiff-4.7.0-hf01ce69_5.conda hash: - md5: 6c1028898cf3a2032d9af46689e1b81a - sha256: 7480613af15795281bd338a4d3d2ca148f9c2ecafc967b9cc233e78ba2fe4a6d + md5: e79a094918988bb1807462cd42c83962 + sha256: 7fa6ddac72e0d803bb08e55090a8f2e71769f1eb7adbd5711bdd7789561601b1 category: main optional: false - name: libtiff @@ -2321,7 +2337,7 @@ package: platform: win-64 dependencies: lerc: '>=4.0.0,<5.0a0' - libdeflate: '>=1.23,<1.24.0a0' + libdeflate: '>=1.24,<1.25.0a0' libjpeg-turbo: '>=3.1.0,<4.0a0' liblzma: '>=5.8.1,<6.0a0' libzlib: '>=1.3.1,<2.0a0' @@ -2329,10 +2345,10 @@ package: vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/libtiff-4.7.0-h797046b_4.conda + url: https://repo.prefix.dev/conda-forge/win-64/libtiff-4.7.0-h05922d8_5.conda hash: - md5: 7d938ca70c64c5516767b4eae0a56172 - sha256: 3456e2a6dfe6c00fd0cda316f0cbb47caddf77f83d3ed4040b6ad17ec1610d2a + md5: 75370aba951b47ec3b5bfe689f1bcf7f + sha256: 1bb0b2e7d076fecc2f8147336bc22e7e6f9a4e0505e0e4ab2be1f56023a4a458 category: main optional: false - name: libuuid @@ -2432,23 +2448,24 @@ package: category: main optional: false - name: libxml2 - version: 2.13.7 + version: 2.13.8 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' + icu: '>=75.1,<76.0a0' libgcc: '>=13' libiconv: '>=1.18,<2.0a0' liblzma: '>=5.8.1,<6.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libxml2-2.13.7-h81593ed_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libxml2-2.13.8-h4bc477f_0.conda hash: - md5: 0619e8fc4c8025a908ea3a3422d3b775 - sha256: c4f59563e017eba378ea843be5ebde4b0546c72bbe4c1e43b2b384379e827635 + md5: 14dbe05b929e329dbaa6f2d0aa19466d + sha256: b0b3a96791fa8bb4ec030295e8c8bf2d3278f33c0f9ad540e73b5e538e6268e7 category: main optional: false - name: libxml2 - version: 2.13.7 + version: 2.13.8 manager: conda platform: win-64 dependencies: @@ -2457,10 +2474,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libxml2-2.13.7-h442d1da_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/libxml2-2.13.8-h442d1da_0.conda hash: - md5: c14ff7f05e57489df9244917d2b55763 - sha256: 0a013527f784f4702dc18460070d8ec79d1ebb5087dd9e678d6afbeaca68d2ac + md5: 833c2dbc1a5020007b520b044c713ed3 + sha256: 473b8a53c8df714d676ab41711551c8d250f8d799f2db5cb7cb2b177a0ce13f6 category: main optional: false - name: libzlib @@ -2491,29 +2508,29 @@ package: category: main optional: false - name: llvm-openmp - version: 20.1.4 + version: 20.1.7 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-20.1.4-h024ca30_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-20.1.7-h024ca30_0.conda hash: - md5: 4fc395cda27912a7d904b86b5dbf3a4d - sha256: 5b39cdde3457e41b133d6f1fe53095c7fd3951bbdab46580098ccbf5ee9c99f7 + md5: b9c9b2f494533250a9eb7ece830f4422 + sha256: 10f2f6be8ba4c018e1fc741637a8d45c0e58bea96954c25e91fbe4238b7c9f60 category: main optional: false - name: llvm-openmp - version: 20.1.4 + version: 20.1.7 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-20.1.4-h30eaf37_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-20.1.7-h30eaf37_0.conda hash: - md5: 3087da6f7e741dc1498e85ef87a553dc - sha256: 0c85b0ceda02c26bbea5a789c2d1735485dbc2a1089655a8f2193c5850a7bbab + md5: 6fd1d310402e936aa9aecb065f21cc6b + sha256: 1820ca99e8b126b3c656ff3c527822be8348f6452edcddd91615cba285540f6c category: main optional: false - name: locket @@ -2691,7 +2708,7 @@ package: category: main optional: false - name: msgpack-python - version: 1.1.0 + version: 1.1.1 manager: conda platform: linux-64 dependencies: @@ -2700,14 +2717,14 @@ package: libstdcxx: '>=13' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://repo.prefix.dev/conda-forge/linux-64/msgpack-python-1.1.0-py310h3788b33_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/msgpack-python-1.1.1-py310h3788b33_0.conda hash: - md5: 6b586fb03d84e5bfbb1a8a3d9e2c9b60 - sha256: 73ca5f0c7d0727a57dcc3c402823ce3aa159ca075210be83078fcc485971e259 + md5: 6028c7df37691cdf6e953968646195b7 + sha256: 8069bb45b1eb11a2421ee0db76b16ae2a634a470c7a77011263b9df270645293 category: main optional: false - name: msgpack-python - version: 1.1.0 + version: 1.1.1 manager: conda platform: win-64 dependencies: @@ -2716,10 +2733,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/msgpack-python-1.1.0-py310hc19bc0b_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/msgpack-python-1.1.1-py310hc19bc0b_0.conda hash: - md5: 2cfcbd596afd76879de4824c2c24f4a2 - sha256: db5c3d5e2d28ba0e4e1633f6d52079f0e397bdb60a6f58a2fa942e88071182d2 + md5: 061803553d610adf1c4c545c71aa9a85 + sha256: 83e0bcf2f4cddc3421ad1cff30058ce7100210821b279bd3ad458bfc8c59eefe category: main optional: false - name: mumps-include @@ -2776,11 +2793,11 @@ package: manager: conda platform: linux-64 dependencies: - python: '' - url: https://repo.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 + python: '>=3.9' + url: https://repo.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyhd8ed1ab_1.conda hash: - md5: 2ba8498c1018c1e9c61eb99b973dfe19 - sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 + md5: 37293a85a0f4f77bbd9cf7aaefc62609 + sha256: d09c47c2cf456de5c09fa66d2c3c5035aa1fa228a1983a433c47b876aa16ce90 category: main optional: false - name: munkres @@ -2788,11 +2805,11 @@ package: manager: conda platform: win-64 dependencies: - python: '' - url: https://repo.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 + python: '>=3.9' + url: https://repo.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyhd8ed1ab_1.conda hash: - md5: 2ba8498c1018c1e9c61eb99b973dfe19 - sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 + md5: 37293a85a0f4f77bbd9cf7aaefc62609 + sha256: d09c47c2cf456de5c09fa66d2c3c5035aa1fa228a1983a433c47b876aa16ce90 category: main optional: false - name: ncurses @@ -2923,10 +2940,10 @@ package: __glibc: '>=2.17,<3.0.a0' ca-certificates: '' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/openssl-3.5.0-h7b32b05_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/openssl-3.5.0-h7b32b05_1.conda hash: - md5: bb539841f2a3fde210f387d00ed4bb9d - sha256: 38285d280f84f1755b7c54baf17eccf2e3e696287954ce0adca16546b85ee62c + md5: de356753cfdbffcde5bb1e86e3aa6cd0 + sha256: b4491077c494dbf0b5eaa6d87738c22f2154e9277e5293175ec187634bd808a0 category: main optional: false - name: openssl @@ -2938,10 +2955,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/openssl-3.5.0-ha4e3fda_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/openssl-3.5.0-ha4e3fda_1.conda hash: - md5: 4ea7db75035eb8c13fa680bb90171e08 - sha256: 43dd7f56da142ca83c614c8b0085589650ae9032b351a901c190e48eefc73675 + md5: 72c07e46b6766bb057018a9a74861b89 + sha256: 02846553d2a4c9bde850c60824d0f02803eb9c9b674d5c1a8cce25bc387e748f category: main optional: false - name: packaging @@ -2961,7 +2978,7 @@ package: manager: conda platform: win-64 dependencies: - python: '' + python: '>=3.8' url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda hash: md5: 58335b26c38bf4a20f399384c33cbcf9 @@ -3045,79 +3062,79 @@ package: category: main optional: false - name: pip - version: '25.1' + version: 25.1.1 manager: conda platform: linux-64 dependencies: python: '>=3.9,<3.13.0a0' setuptools: '' wheel: '' - url: https://repo.prefix.dev/conda-forge/noarch/pip-25.1-pyh8b19718_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pip-25.1.1-pyh8b19718_0.conda hash: - md5: 2247aa245832ea47e8b971bef73d7094 - sha256: 81a7ffe7b7ca8718bc09476a258cd48754e1d4e1bd3b80a6fef41ffb71e3bfc8 + md5: 32d0781ace05105cc99af55d36cbec7c + sha256: ebfa591d39092b111b9ebb3210eb42251be6da89e26c823ee03e5e838655a43e category: main optional: false - name: pip - version: '25.1' + version: 25.1.1 manager: conda platform: win-64 dependencies: python: '>=3.9,<3.13.0a0' setuptools: '' wheel: '' - url: https://repo.prefix.dev/conda-forge/noarch/pip-25.1-pyh8b19718_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pip-25.1.1-pyh8b19718_0.conda hash: - md5: 2247aa245832ea47e8b971bef73d7094 - sha256: 81a7ffe7b7ca8718bc09476a258cd48754e1d4e1bd3b80a6fef41ffb71e3bfc8 + md5: 32d0781ace05105cc99af55d36cbec7c + sha256: ebfa591d39092b111b9ebb3210eb42251be6da89e26c823ee03e5e838655a43e category: main optional: false - name: platformdirs - version: 4.3.7 + version: 4.3.8 manager: conda platform: linux-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.3.7-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.3.8-pyhe01879c_0.conda hash: - md5: e57da6fe54bb3a5556cf36d199ff07d8 - sha256: ae7d3e58224d53d6b59e1f5ac5809803bb1972f0ac4fb10cd9b8c87d4122d3e0 + md5: 424844562f5d337077b445ec6b1398a7 + sha256: 0f48999a28019c329cd3f6fd2f01f09fc32cc832f7d6bbe38087ddac858feaa3 category: dev optional: true - name: platformdirs - version: 4.3.7 + version: 4.3.8 manager: conda platform: win-64 dependencies: - python: '' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.3.7-pyh29332c3_0.conda + python: '>=3.9' + url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.3.8-pyhe01879c_0.conda hash: - md5: e57da6fe54bb3a5556cf36d199ff07d8 - sha256: ae7d3e58224d53d6b59e1f5ac5809803bb1972f0ac4fb10cd9b8c87d4122d3e0 + md5: 424844562f5d337077b445ec6b1398a7 + sha256: 0f48999a28019c329cd3f6fd2f01f09fc32cc832f7d6bbe38087ddac858feaa3 category: dev optional: true - name: pluggy - version: 1.5.0 + version: 1.6.0 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda hash: - md5: e9dcbce5f45f9ee500e728ae58b605b6 - sha256: 122433fc5318816b8c69283aaf267c73d87aa2d09ce39f64c9805c9a3b264819 + md5: 7da7ccd349dbf6487a7778579d2bb971 + sha256: a8eb555eef5063bbb7ba06a379fa7ea714f57d9741fe0efdb9442dbbc2cccbcc category: dev optional: true - name: pluggy - version: 1.5.0 + version: 1.6.0 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda hash: - md5: e9dcbce5f45f9ee500e728ae58b605b6 - sha256: 122433fc5318816b8c69283aaf267c73d87aa2d09ce39f64c9805c9a3b264819 + md5: 7da7ccd349dbf6487a7778579d2bb971 + sha256: a8eb555eef5063bbb7ba06a379fa7ea714f57d9741fe0efdb9442dbbc2cccbcc category: dev optional: true - name: psutil @@ -3195,7 +3212,7 @@ package: manager: conda platform: win-64 dependencies: - python: '' + python: '>=3.9' url: https://repo.prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda hash: md5: 12c566707c80111f9799308d9e265aef @@ -3203,41 +3220,41 @@ package: category: main optional: false - name: pydantic - version: 2.11.3 + version: 2.11.7 manager: conda platform: linux-64 dependencies: annotated-types: '>=0.6.0' - pydantic-core: 2.33.1 + pydantic-core: 2.33.2 python: '>=3.9' typing-extensions: '>=4.6.1' typing-inspection: '>=0.4.0' typing_extensions: '>=4.12.2' - url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.3-pyh3cfb1c2_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.7-pyh3cfb1c2_0.conda hash: - md5: 3c6f7f8ae9b9c177ad91ccc187912756 - sha256: 89183785b09ebe9f9e65710057d7c41e9d21d4a9ad05e068850e18669655d5a8 + md5: 1b337e3d378cde62889bb735c024b7a2 + sha256: ee7823e8bc227f804307169870905ce062531d36c1dcf3d431acd65c6e0bd674 category: main optional: false - name: pydantic - version: 2.11.3 + version: 2.11.7 manager: conda platform: win-64 dependencies: annotated-types: '>=0.6.0' - pydantic-core: 2.33.1 + pydantic-core: 2.33.2 python: '>=3.9' typing-extensions: '>=4.6.1' typing-inspection: '>=0.4.0' typing_extensions: '>=4.12.2' - url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.3-pyh3cfb1c2_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.7-pyh3cfb1c2_0.conda hash: - md5: 3c6f7f8ae9b9c177ad91ccc187912756 - sha256: 89183785b09ebe9f9e65710057d7c41e9d21d4a9ad05e068850e18669655d5a8 + md5: 1b337e3d378cde62889bb735c024b7a2 + sha256: ee7823e8bc227f804307169870905ce062531d36c1dcf3d431acd65c6e0bd674 category: main optional: false - name: pydantic-core - version: 2.33.1 + version: 2.33.2 manager: conda platform: linux-64 dependencies: @@ -3246,14 +3263,14 @@ package: python: '' python_abi: 3.10.* typing-extensions: '>=4.6.0,!=4.7.0' - url: https://repo.prefix.dev/conda-forge/linux-64/pydantic-core-2.33.1-py310hc1293b2_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pydantic-core-2.33.2-py310hbcd0ec0_0.conda hash: - md5: 24460b8a58d6d491be4088ffb5343f4b - sha256: 76992a2b50b98a43b66be401998b0b71f4bbb3cc0db456309263a604dddff086 + md5: 6b210a72e9e1b1cb6d30b266b84ca993 + sha256: 8da9aed7f21d775a7c91db6c9f95a0e00cae2d132709d5dc608c2e6828f9344b category: main optional: false - name: pydantic-core - version: 2.33.1 + version: 2.33.2 manager: conda platform: win-64 dependencies: @@ -3263,10 +3280,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/pydantic-core-2.33.1-py310h7c79e54_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/pydantic-core-2.33.2-py310hed05c55_0.conda hash: - md5: 8e00f6b62285b0731e32dac4da060dd6 - sha256: 5d8ba398dd9ff5086b23d753ce2a9833894c99e5cea48861dbed55f4fa0c69aa + md5: 59065d98ab806083a5432d92073f1c75 + sha256: 657b2097148533aa9665678b85c94bb3cf4df015605f233f374243d4697ccd03 category: main optional: false - name: pydiso @@ -3331,7 +3348,7 @@ package: category: dev optional: true - name: pylint - version: 3.3.6 + version: 3.3.7 manager: conda platform: linux-64 dependencies: @@ -3345,14 +3362,14 @@ package: tomli: '>=1.1.0' tomlkit: '>=0.10.1' typing_extensions: '>=3.10.0' - url: https://repo.prefix.dev/conda-forge/noarch/pylint-3.3.6-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pylint-3.3.7-pyhe01879c_0.conda hash: - md5: 8242cc62822cc8a17f53d24d4efa75f4 - sha256: 3e3e35b2cbb4b1ca3063fc2d6f44a85ac189e0935f00ed8fbe8e4713c0d00b99 + md5: fad6b90165dcf39e3ac79de5dbc030a8 + sha256: 6a1dc262763220c9dc046400d8655ebe58ad4d81e872be7264af5137f906e220 category: dev optional: true - name: pylint - version: 3.3.6 + version: 3.3.7 manager: conda platform: win-64 dependencies: @@ -3362,14 +3379,14 @@ package: isort: '>=4.2.5,<7,!=5.13.0' mccabe: '>=0.6,<0.8' platformdirs: '>=2.2.0' - python: '' + python: '>=3.9' tomli: '>=1.1.0' tomlkit: '>=0.10.1' typing_extensions: '>=3.10.0' - url: https://repo.prefix.dev/conda-forge/noarch/pylint-3.3.6-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pylint-3.3.7-pyhe01879c_0.conda hash: - md5: 8242cc62822cc8a17f53d24d4efa75f4 - sha256: 3e3e35b2cbb4b1ca3063fc2d6f44a85ac189e0935f00ed8fbe8e4713c0d00b99 + md5: fad6b90165dcf39e3ac79de5dbc030a8 + sha256: 6a1dc262763220c9dc046400d8655ebe58ad4d81e872be7264af5137f906e220 category: dev optional: true - name: pymatsolver @@ -3456,43 +3473,45 @@ package: category: main optional: false - name: pytest - version: 8.3.5 + version: 8.4.1 manager: conda platform: linux-64 dependencies: - colorama: '' - exceptiongroup: '>=1.0.0rc8' - iniconfig: '' - packaging: '' - pluggy: <2,>=1.5 + colorama: '>=0.4' + exceptiongroup: '>=1' + iniconfig: '>=1' + packaging: '>=20' + pluggy: '>=1.5,<2' + pygments: '>=2.7.2' python: '>=3.9' tomli: '>=1' - url: https://repo.prefix.dev/conda-forge/noarch/pytest-8.3.5-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytest-8.4.1-pyhd8ed1ab_0.conda hash: - md5: c3c9316209dec74a705a36797970c6be - sha256: 963524de7340c56615583ba7b97a6beb20d5c56a59defb59724dc2a3105169c9 + md5: a49c2283f24696a7b30367b7346a0144 + sha256: 93e267e4ec35353e81df707938a6527d5eb55c97bf54c3b87229b69523afb59d category: dev optional: true - name: pytest - version: 8.3.5 + version: 8.4.1 manager: conda platform: win-64 dependencies: - colorama: '' - exceptiongroup: '>=1.0.0rc8' - iniconfig: '' - packaging: '' - pluggy: <2,>=1.5 + colorama: '>=0.4' + exceptiongroup: '>=1' + iniconfig: '>=1' + packaging: '>=20' + pluggy: '>=1.5,<2' + pygments: '>=2.7.2' python: '>=3.9' tomli: '>=1' - url: https://repo.prefix.dev/conda-forge/noarch/pytest-8.3.5-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytest-8.4.1-pyhd8ed1ab_0.conda hash: - md5: c3c9316209dec74a705a36797970c6be - sha256: 963524de7340c56615583ba7b97a6beb20d5c56a59defb59724dc2a3105169c9 + md5: a49c2283f24696a7b30367b7346a0144 + sha256: 93e267e4ec35353e81df707938a6527d5eb55c97bf54c3b87229b69523afb59d category: dev optional: true - name: pytest-cov - version: 6.1.1 + version: 6.2.1 manager: conda platform: linux-64 dependencies: @@ -3500,14 +3519,14 @@ package: pytest: '>=4.6' python: '>=3.9' toml: '' - url: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-6.1.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-6.2.1-pyhd8ed1ab_0.conda hash: - md5: 1e35d8f975bc0e984a19819aa91c440a - sha256: 9961a1524f63d10bc29efdc52013ec06b0e95fb2619a250e250ff3618261d5cd + md5: ce978e1b9ed8b8d49164e90a5cdc94cd + sha256: 3a9fc07be76bc67aef355b78816b5117bfe686e7d8c6f28b45a1f89afe104761 category: dev optional: true - name: pytest-cov - version: 6.1.1 + version: 6.2.1 manager: conda platform: win-64 dependencies: @@ -3515,14 +3534,14 @@ package: pytest: '>=4.6' python: '>=3.9' toml: '' - url: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-6.1.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-6.2.1-pyhd8ed1ab_0.conda hash: - md5: 1e35d8f975bc0e984a19819aa91c440a - sha256: 9961a1524f63d10bc29efdc52013ec06b0e95fb2619a250e250ff3618261d5cd + md5: ce978e1b9ed8b8d49164e90a5cdc94cd + sha256: 3a9fc07be76bc67aef355b78816b5117bfe686e7d8c6f28b45a1f89afe104761 category: dev optional: true - name: python - version: 3.10.17 + version: 3.10.18 manager: conda platform: linux-64 dependencies: @@ -3534,7 +3553,7 @@ package: libgcc: '>=13' liblzma: '>=5.8.1,<6.0a0' libnsl: '>=2.0.1,<2.1.0a0' - libsqlite: '>=3.49.1,<4.0a0' + libsqlite: '>=3.50.0,<4.0a0' libuuid: '>=2.38.1,<3.0a0' libxcrypt: '>=4.4.36' libzlib: '>=1.3.1,<2.0a0' @@ -3544,14 +3563,14 @@ package: readline: '>=8.2,<9.0a0' tk: '>=8.6.13,<8.7.0a0' tzdata: '' - url: https://repo.prefix.dev/conda-forge/linux-64/python-3.10.17-hd6af730_0_cpython.conda + url: https://repo.prefix.dev/conda-forge/linux-64/python-3.10.18-hd6af730_0_cpython.conda hash: - md5: 7bb89638dae9ce1b8e051d0b721e83c2 - sha256: 0ae32507817402bfad08fbf0f4a9b5ae26859d5390b98bc939da85fd0bd4239f + md5: 4ea0c77cdcb0b81813a0436b162d7316 + sha256: 4111e5504fa4f4fb431d3a73fa606daccaf23a5a1da0f17a30db70ffad9336a7 category: main optional: false - name: python - version: 3.10.17 + version: 3.10.18 manager: conda platform: win-64 dependencies: @@ -3559,7 +3578,7 @@ package: libexpat: '>=2.7.0,<3.0a0' libffi: '>=3.4,<4.0a0' liblzma: '>=5.8.1,<6.0a0' - libsqlite: '>=3.49.1,<4.0a0' + libsqlite: '>=3.50.0,<4.0a0' libzlib: '>=1.3.1,<2.0a0' openssl: '>=3.5.0,<4.0a0' pip: '' @@ -3568,10 +3587,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/python-3.10.17-h8c5b53a_0_cpython.conda + url: https://repo.prefix.dev/conda-forge/win-64/python-3.10.18-h8c5b53a_0_cpython.conda hash: - md5: 0c59918f056ab2e9c7bb45970d32b2ea - sha256: 071303a9bcbba4d79ab1ca61f34ec9f4ad65bc15d897828f5006ef9507094557 + md5: f1775dab55c8a073ebd024bfb2f689c1 + sha256: 548f9e542e72925d595c66191ffd17056f7c0029b7181e2d99dbef47e4f3f646 category: main optional: false - name: python-dateutil @@ -3760,7 +3779,7 @@ package: category: dev optional: true - name: requests - version: 2.32.3 + version: 2.32.4 manager: conda platform: linux-64 dependencies: @@ -3769,14 +3788,14 @@ package: idna: '>=2.5,<4' python: '>=3.9' urllib3: '>=1.21.1,<3' - url: https://repo.prefix.dev/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/requests-2.32.4-pyhd8ed1ab_0.conda hash: - md5: a9b9368f3701a417eac9edbcae7cb737 - sha256: d701ca1136197aa121bbbe0e8c18db6b5c94acbd041c2b43c70e5ae104e1d8ad + md5: f6082eae112814f1447b56a5e1f6ed05 + sha256: 9866aaf7a13c6cfbe665ec7b330647a0fb10a81e6f9b8fee33642232a1920e18 category: dev optional: true - name: requests - version: 2.32.3 + version: 2.32.4 manager: conda platform: win-64 dependencies: @@ -3785,10 +3804,10 @@ package: idna: '>=2.5,<4' python: '>=3.9' urllib3: '>=1.21.1,<3' - url: https://repo.prefix.dev/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/requests-2.32.4-pyhd8ed1ab_0.conda hash: - md5: a9b9368f3701a417eac9edbcae7cb737 - sha256: d701ca1136197aa121bbbe0e8c18db6b5c94acbd041c2b43c70e5ae104e1d8ad + md5: f6082eae112814f1447b56a5e1f6ed05 + sha256: 9866aaf7a13c6cfbe665ec7b330647a0fb10a81e6f9b8fee33642232a1920e18 category: dev optional: true - name: rtree @@ -3902,27 +3921,27 @@ package: category: main optional: false - name: setuptools - version: 80.1.0 + version: 80.9.0 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/setuptools-80.1.0-pyhff2d567_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda hash: - md5: f6f72d0837c79eaec77661be43e8a691 - sha256: 777d34ed359cedd5a5004c930077c101bb3b70e5fbb04d29da5058d75b0ba487 + md5: 4de79c071274a53dcaf2a8c749d1499e + sha256: 972560fcf9657058e3e1f97186cc94389144b46dbdf58c807ce62e83f977e863 category: main optional: false - name: setuptools - version: 80.1.0 + version: 80.9.0 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/setuptools-80.1.0-pyhff2d567_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda hash: - md5: f6f72d0837c79eaec77661be43e8a691 - sha256: 777d34ed359cedd5a5004c930077c101bb3b70e5fbb04d29da5058d75b0ba487 + md5: 4de79c071274a53dcaf2a8c749d1499e + sha256: 972560fcf9657058e3e1f97186cc94389144b46dbdf58c807ce62e83f977e863 category: main optional: false - name: six @@ -3950,27 +3969,27 @@ package: category: main optional: false - name: snowballstemmer - version: 2.2.0 + version: 3.0.1 manager: conda platform: linux-64 dependencies: - python: '>=2' - url: https://repo.prefix.dev/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2 + python: '>=3.9' + url: https://repo.prefix.dev/conda-forge/noarch/snowballstemmer-3.0.1-pyhd8ed1ab_0.conda hash: - md5: 4d22a9315e78c6827f806065957d566e - sha256: a0fd916633252d99efb6223b1050202841fa8d2d53dacca564b0ed77249d3228 + md5: 755cf22df8693aa0d1aec1c123fa5863 + sha256: 17007a4cfbc564dc3e7310dcbe4932c6ecb21593d4fec3c68610720f19e73fb2 category: dev optional: true - name: snowballstemmer - version: 2.2.0 + version: 3.0.1 manager: conda platform: win-64 dependencies: - python: '>=2' - url: https://repo.prefix.dev/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2 + python: '>=3.9' + url: https://repo.prefix.dev/conda-forge/noarch/snowballstemmer-3.0.1-pyhd8ed1ab_0.conda hash: - md5: 4d22a9315e78c6827f806065957d566e - sha256: a0fd916633252d99efb6223b1050202841fa8d2d53dacca564b0ed77249d3228 + md5: 755cf22df8693aa0d1aec1c123fa5863 + sha256: 17007a4cfbc564dc3e7310dcbe4932c6ecb21593d4fec3c68610720f19e73fb2 category: dev optional: true - name: sortedcontainers @@ -4292,12 +4311,13 @@ package: manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - libzlib: '>=1.2.13,<2.0.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=13' + libzlib: '>=1.3.1,<2.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_hd72426e_102.conda hash: - md5: d453b98d9c83e71da0741bb0ff4d76bc - sha256: e0569c9caa68bf476bead1bed3d79650bb080b532c64a4af7d8ca286c08dea4e + md5: a0116df4f4ed05c303811a837d5b39d8 + sha256: a84ff687119e6d8752346d1d408d5cf360dee0badd487a472aa8ddedfdc219e1 category: main optional: false - name: tk @@ -4308,10 +4328,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/tk-8.6.13-h5226925_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/tk-8.6.13-h2c6b04d_2.conda hash: - md5: fc048363eb8f03cd1737600a5d08aafe - sha256: 2c4e914f521ccb2718946645108c9bd3fc3216ba69aea20c2c3cedbd8db32bb1 + md5: ebd0e761de9aa879a51d22cc721bd095 + sha256: e3614b0eb4abcc70d98eae159db59d9b4059ed743ef402081151a948dce95896 category: main optional: false - name: toml @@ -4363,27 +4383,27 @@ package: category: dev optional: true - name: tomlkit - version: 0.13.2 + version: 0.13.3 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.2-pyha770c72_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.3-pyha770c72_0.conda hash: - md5: 1d9ab4fc875c52db83f9c9b40af4e2c8 - sha256: 986fae65f5568e95dbf858d08d77a0f9cca031345a98550f1d4b51d36d8811e2 + md5: 146402bf0f11cbeb8f781fa4309a95d3 + sha256: f8d3b49c084831a20923f66826f30ecfc55a4cd951e544b7213c692887343222 category: dev optional: true - name: tomlkit - version: 0.13.2 + version: 0.13.3 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.2-pyha770c72_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.3-pyha770c72_0.conda hash: - md5: 1d9ab4fc875c52db83f9c9b40af4e2c8 - sha256: 986fae65f5568e95dbf858d08d77a0f9cca031345a98550f1d4b51d36d8811e2 + md5: 146402bf0f11cbeb8f781fa4309a95d3 + sha256: f8d3b49c084831a20923f66826f30ecfc55a4cd951e544b7213c692887343222 category: dev optional: true - name: toolz @@ -4411,7 +4431,7 @@ package: category: main optional: false - name: tornado - version: 6.4.2 + version: 6.5.1 manager: conda platform: linux-64 dependencies: @@ -4419,14 +4439,14 @@ package: libgcc: '>=13' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://repo.prefix.dev/conda-forge/linux-64/tornado-6.4.2-py310ha75aee5_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/tornado-6.5.1-py310ha75aee5_0.conda hash: - md5: 166d59aab40b9c607b4cc21c03924e9d - sha256: 9c2b86d4e58c8b0e7d13a7f4c440f34e2201bae9cfc1d7e1d30a5bc7ffb1d4c8 + md5: 6f3da1072c0c4d2a1beb1e84615f7c9c + sha256: c24cc5952f1f1a84a848427382eecb04fc959987e19423e2c84e3281d0beec32 category: main optional: false - name: tornado - version: 6.4.2 + version: 6.5.1 manager: conda platform: win-64 dependencies: @@ -4435,10 +4455,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/tornado-6.4.2-py310ha8f682b_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/tornado-6.5.1-py310ha8f682b_0.conda hash: - md5: e6819d3a0cae0f1b1838875f858421d1 - sha256: 2e5671d0db03961692b3390778ce6aba40702bd57584fa60badf4baa7614679b + md5: 4c8f599990e386f3a0aba3f3bd8608da + sha256: 2a922fc165be81c2121cbd0ba5db6dfcbb69ebdc4e48b0f6fac40fde954602e0 category: main optional: false - name: tqdm @@ -4494,77 +4514,77 @@ package: category: main optional: false - name: typing-extensions - version: 4.13.2 + version: 4.14.0 manager: conda platform: linux-64 dependencies: - typing_extensions: ==4.13.2 - url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.13.2-h0e9735f_0.conda + typing_extensions: ==4.14.0 + url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.14.0-h32cad80_0.conda hash: - md5: 568ed1300869dca0ba09fb750cda5dbb - sha256: 4865fce0897d3cb0ffc8998219157a8325f6011c136e6fd740a9a6b169419296 + md5: a1cdd40fc962e2f7944bc19e01c7e584 + sha256: b8cabfa54432b0f124c0af6b6facdf8110892914fa841ac2e80ab65ac52c1ba4 category: main optional: false - name: typing-extensions - version: 4.13.2 + version: 4.14.0 manager: conda platform: win-64 dependencies: - typing_extensions: ==4.13.2 - url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.13.2-h0e9735f_0.conda + typing_extensions: ==4.14.0 + url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.14.0-h32cad80_0.conda hash: - md5: 568ed1300869dca0ba09fb750cda5dbb - sha256: 4865fce0897d3cb0ffc8998219157a8325f6011c136e6fd740a9a6b169419296 + md5: a1cdd40fc962e2f7944bc19e01c7e584 + sha256: b8cabfa54432b0f124c0af6b6facdf8110892914fa841ac2e80ab65ac52c1ba4 category: main optional: false - name: typing-inspection - version: 0.4.0 + version: 0.4.1 manager: conda platform: linux-64 dependencies: python: '>=3.9' typing_extensions: '>=4.12.0' - url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.1-pyhd8ed1ab_0.conda hash: - md5: c5c76894b6b7bacc888ba25753bc8677 - sha256: 172f971d70e1dbb978f6061d3f72be463d0f629155338603450d8ffe87cbf89d + md5: e0c3cd765dc15751ee2f0b03cd015712 + sha256: 4259a7502aea516c762ca8f3b8291b0d4114e094bdb3baae3171ccc0900e722f category: main optional: false - name: typing-inspection - version: 0.4.0 + version: 0.4.1 manager: conda platform: win-64 dependencies: python: '>=3.9' typing_extensions: '>=4.12.0' - url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.1-pyhd8ed1ab_0.conda hash: - md5: c5c76894b6b7bacc888ba25753bc8677 - sha256: 172f971d70e1dbb978f6061d3f72be463d0f629155338603450d8ffe87cbf89d + md5: e0c3cd765dc15751ee2f0b03cd015712 + sha256: 4259a7502aea516c762ca8f3b8291b0d4114e094bdb3baae3171ccc0900e722f category: main optional: false - name: typing_extensions - version: 4.13.2 + version: 4.14.0 manager: conda platform: linux-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.13.2-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.14.0-pyhe01879c_0.conda hash: - md5: 83fc6ae00127671e301c9f44254c31b8 - sha256: a8aaf351e6461de0d5d47e4911257e25eec2fa409d71f3b643bb2f748bde1c08 + md5: 2adcd9bb86f656d3d43bf84af59a1faf + sha256: 8561db52f278c5716b436da6d4ee5521712a49e8f3c70fcae5350f5ebb4be41c category: main optional: false - name: typing_extensions - version: 4.13.2 + version: 4.14.0 manager: conda platform: win-64 dependencies: - python: '' - url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.13.2-pyh29332c3_0.conda + python: '>=3.9' + url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.14.0-pyhe01879c_0.conda hash: - md5: 83fc6ae00127671e301c9f44254c31b8 - sha256: a8aaf351e6461de0d5d47e4911257e25eec2fa409d71f3b643bb2f748bde1c08 + md5: 2adcd9bb86f656d3d43bf84af59a1faf + sha256: 8561db52f278c5716b436da6d4ee5521712a49e8f3c70fcae5350f5ebb4be41c category: main optional: false - name: tzdata @@ -4632,7 +4652,7 @@ package: category: main optional: false - name: urllib3 - version: 2.4.0 + version: 2.5.0 manager: conda platform: linux-64 dependencies: @@ -4641,14 +4661,14 @@ package: pysocks: '>=1.5.6,<2.0,!=1.5.7' python: '>=3.9' zstandard: '>=0.18.0' - url: https://repo.prefix.dev/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/urllib3-2.5.0-pyhd8ed1ab_0.conda hash: - md5: c1e349028e0052c4eea844e94f773065 - sha256: a25403b76f7f03ca1a906e1ef0f88521edded991b9897e7fed56a3e334b3db8c + md5: 436c165519e140cb08d246a4472a9d6a + sha256: 4fb9789154bd666ca74e428d973df81087a697dbb987775bc3198d2215f240f8 category: main optional: false - name: urllib3 - version: 2.4.0 + version: 2.5.0 manager: conda platform: win-64 dependencies: @@ -4657,10 +4677,10 @@ package: pysocks: '>=1.5.6,<2.0,!=1.5.7' python: '>=3.9' zstandard: '>=0.18.0' - url: https://repo.prefix.dev/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/urllib3-2.5.0-pyhd8ed1ab_0.conda hash: - md5: c1e349028e0052c4eea844e94f773065 - sha256: a25403b76f7f03ca1a906e1ef0f88521edded991b9897e7fed56a3e334b3db8c + md5: 436c165519e140cb08d246a4472a9d6a + sha256: 4fb9789154bd666ca74e428d973df81087a697dbb987775bc3198d2215f240f8 category: main optional: false - name: vc @@ -4872,27 +4892,27 @@ package: category: main optional: false - name: zipp - version: 3.21.0 + version: 3.23.0 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/zipp-3.23.0-pyhd8ed1ab_0.conda hash: - md5: 0c3cc595284c5e8f0f9900a9b228a332 - sha256: 567c04f124525c97a096b65769834b7acb047db24b15a56888a322bf3966c3e1 + md5: df5e78d904988eb55042c0c97446079f + sha256: 7560d21e1b021fd40b65bfb72f67945a3fcb83d78ad7ccf37b8b3165ec3b68ad category: main optional: false - name: zipp - version: 3.21.0 + version: 3.23.0 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/zipp-3.23.0-pyhd8ed1ab_0.conda hash: - md5: 0c3cc595284c5e8f0f9900a9b228a332 - sha256: 567c04f124525c97a096b65769834b7acb047db24b15a56888a322bf3966c3e1 + md5: df5e78d904988eb55042c0c97446079f + sha256: 7560d21e1b021fd40b65bfb72f67945a3fcb83d78ad7ccf37b8b3165ec3b68ad category: main optional: false - name: zstandard @@ -4967,12 +4987,12 @@ package: numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@6e21320c89581dccb1635d8460dfe296ec41b6da + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 hash: - sha256: 6e21320c89581dccb1635d8460dfe296ec41b6da + sha256: 91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@6e21320c89581dccb1635d8460dfe296ec41b6da + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 category: main optional: false - name: geoapps-utils @@ -4984,12 +5004,12 @@ package: numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@6e21320c89581dccb1635d8460dfe296ec41b6da + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 hash: - sha256: 6e21320c89581dccb1635d8460dfe296ec41b6da + sha256: 91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@6e21320c89581dccb1635d8460dfe296ec41b6da + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 category: main optional: false - name: geoh5py @@ -5001,12 +5021,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@4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 + url: git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e hash: - sha256: 4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 + sha256: 1190a239fd7406fbe0b73169c3d8406a1aacae3e source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 + url: git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e category: main optional: false - name: geoh5py @@ -5018,16 +5038,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@4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 + url: git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e hash: - sha256: 4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 + sha256: 1190a239fd7406fbe0b73169c3d8406a1aacae3e source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 + url: git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e category: main optional: false - name: mira-simpeg - version: 0.23.0.1a3.dev4+g24027d81b + version: 0.23.0.1a5.dev33+gf72a1367e manager: pip platform: linux-64 dependencies: @@ -5042,16 +5062,16 @@ package: pymatsolver: '>=0.3' scipy: '>=1.8' zarr: '*' - url: git+https://github.com/MiraGeoscience/simpeg.git@24027d81b65df99d5f582acc4497ed33df8a3396 + url: git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 hash: - sha256: 24027d81b65df99d5f582acc4497ed33df8a3396 + sha256: f72a1367edcb2da969002ca06f18f532340b3c27 source: type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@24027d81b65df99d5f582acc4497ed33df8a3396 + url: git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 category: main optional: false - name: mira-simpeg - version: 0.23.0.1a3.dev4+g24027d81b + version: 0.23.0.1a5.dev33+gf72a1367e manager: pip platform: win-64 dependencies: @@ -5066,12 +5086,12 @@ package: pymatsolver: '>=0.3' scipy: '>=1.8' zarr: '*' - url: git+https://github.com/MiraGeoscience/simpeg.git@24027d81b65df99d5f582acc4497ed33df8a3396 + url: git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 hash: - sha256: 24027d81b65df99d5f582acc4497ed33df8a3396 + sha256: f72a1367edcb2da969002ca06f18f532340b3c27 source: type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@24027d81b65df99d5f582acc4497ed33df8a3396 + url: git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 category: main optional: false - name: octree-creation-app @@ -5085,12 +5105,12 @@ package: numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/octree-creation-app.git@e9c99d6fd5d324571a2717990aecb3ed673cbaca + url: git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 hash: - sha256: e9c99d6fd5d324571a2717990aecb3ed673cbaca + sha256: 02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 source: type: url - url: git+https://github.com/MiraGeoscience/octree-creation-app.git@e9c99d6fd5d324571a2717990aecb3ed673cbaca + url: git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 category: main optional: false - name: octree-creation-app @@ -5104,12 +5124,12 @@ package: numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/octree-creation-app.git@e9c99d6fd5d324571a2717990aecb3ed673cbaca + url: git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 hash: - sha256: e9c99d6fd5d324571a2717990aecb3ed673cbaca + sha256: 02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 source: type: url - url: git+https://github.com/MiraGeoscience/octree-creation-app.git@e9c99d6fd5d324571a2717990aecb3ed673cbaca + url: git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 category: main optional: false - name: param-sweeps @@ -5152,7 +5172,7 @@ package: distributed: '>=2025.3,<2025.4.dev' geoapps-utils: 0.6.0-alpha.1 geoh5py: 0.12.0a1 - mira-simpeg: 0.23.0.1a3.dev4+g24027d81b + mira-simpeg: 0.23.0.1a5.dev33+gf72a1367e numpy: '>=1.26.0,<1.27.0' octree-creation-app: 0.4.0-alpha.1 param-sweeps: 0.3.0-alpha.1 @@ -5162,12 +5182,12 @@ package: scikit-learn: '>=1.4.0,<1.5.0' scipy: '>=1.14.0,<1.15.0' tqdm: '>=4.66.1,<5.0.0' - url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@2d510ad712a20663dc0abb9afbead41537d10d91 + url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@25197892deadbaeb728441753ab9fba646ce5e0b hash: - sha256: 2d510ad712a20663dc0abb9afbead41537d10d91 + sha256: 25197892deadbaeb728441753ab9fba646ce5e0b source: type: url - url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@2d510ad712a20663dc0abb9afbead41537d10d91 + url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@25197892deadbaeb728441753ab9fba646ce5e0b category: main optional: false - name: simpeg-drivers @@ -5180,7 +5200,7 @@ package: distributed: '>=2025.3,<2025.4.dev' geoapps-utils: 0.6.0-alpha.1 geoh5py: 0.12.0a1 - mira-simpeg: 0.23.0.1a3.dev4+g24027d81b + mira-simpeg: 0.23.0.1a5.dev33+gf72a1367e numpy: '>=1.26.0,<1.27.0' octree-creation-app: 0.4.0-alpha.1 param-sweeps: 0.3.0-alpha.1 @@ -5190,11 +5210,11 @@ package: scikit-learn: '>=1.4.0,<1.5.0' scipy: '>=1.14.0,<1.15.0' tqdm: '>=4.66.1,<5.0.0' - url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@2d510ad712a20663dc0abb9afbead41537d10d91 + url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@25197892deadbaeb728441753ab9fba646ce5e0b hash: - sha256: 2d510ad712a20663dc0abb9afbead41537d10d91 + sha256: 25197892deadbaeb728441753ab9fba646ce5e0b source: type: url - url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@2d510ad712a20663dc0abb9afbead41537d10d91 + url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@25197892deadbaeb728441753ab9fba646ce5e0b category: main optional: false diff --git a/py-3.11.conda-lock.yml b/py-3.11.conda-lock.yml index 90dc205..b12d1b8 100644 --- a/py-3.11.conda-lock.yml +++ b/py-3.11.conda-lock.yml @@ -129,29 +129,29 @@ package: category: main optional: false - name: astroid - version: 3.3.9 + version: 3.3.10 manager: conda platform: linux-64 dependencies: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://repo.prefix.dev/conda-forge/linux-64/astroid-3.3.9-py311h38be061_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/astroid-3.3.10-py311h38be061_0.conda hash: - md5: cabdabc18d53f957c01685765f24381a - sha256: cf6c649941832b7b2ed0bdd4e79093343468c3e1003fc78f53e2a1021cefbec4 + md5: e8c29b25a525081bfb2dfaaa4073a075 + sha256: 67999e3996540fcfa060c6744b1e245fc7754048fc10b56381d438f3b8cd7443 category: dev optional: true - name: astroid - version: 3.3.9 + version: 3.3.10 manager: conda platform: win-64 dependencies: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://repo.prefix.dev/conda-forge/win-64/astroid-3.3.9-py311h1ea47a8_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/astroid-3.3.10-py311h1ea47a8_0.conda hash: - md5: dcfa6fc2847f6d9395b210423ab13d1b - sha256: ce85abea60acda2e8d2c8bfbca7f1013e04a9b4b23d59b5e02a4b12de6ee1cf8 + md5: fbe059f60acd9fbb86f4a9661a2dcf36 + sha256: 4bca4a25ee9a9db1b47290739610690150141646b804290101da1ce03c260632 category: dev optional: true - name: babel @@ -190,10 +190,10 @@ package: libbrotlidec: 1.1.0 libbrotlienc: 1.1.0 libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/brotli-1.1.0-hb9d3cd8_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/brotli-1.1.0-hb9d3cd8_3.conda hash: - md5: 98514fe74548d768907ce7a13f680e8f - sha256: fcb0b5b28ba7492093e54f3184435144e074dfceab27ac8e6a9457e736565b0b + md5: 5d08a0ac29e6a5a984817584775d4131 + sha256: c969baaa5d7a21afb5ed4b8dd830f82b78e425caaa13d717766ed07a61630bec category: main optional: false - name: brotli @@ -207,10 +207,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/brotli-1.1.0-h2466b09_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/brotli-1.1.0-h2466b09_3.conda hash: - md5: 378f1c9421775dfe644731cb121c8979 - sha256: d8fd7d1b446706776117d2dcad1c0289b9f5e1521cb13405173bad38568dd252 + md5: c2a23d8a8986c72148c63bdf855ac99a + sha256: d57cd6ea705c9d2a8a2721f083de247501337e459f5498726b564cfca138e192 category: main optional: false - name: brotli-bin @@ -222,10 +222,10 @@ package: libbrotlidec: 1.1.0 libbrotlienc: 1.1.0 libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/brotli-bin-1.1.0-hb9d3cd8_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/brotli-bin-1.1.0-hb9d3cd8_3.conda hash: - md5: c63b5e52939e795ba8d26e35d767a843 - sha256: 261364d7445513b9a4debc345650fad13c627029bfc800655a266bf1e375bc65 + md5: 58178ef8ba927229fba6d84abf62c108 + sha256: ab74fa8c3d1ca0a055226be89e99d6798c65053e2d2d3c6cb380c574972cd4a7 category: main optional: false - name: brotli-bin @@ -238,10 +238,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/brotli-bin-1.1.0-h2466b09_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/brotli-bin-1.1.0-h2466b09_3.conda hash: - md5: d22534a9be5771fc58eb7564947f669d - sha256: f3bf2893613540ac256c68f211861c4de618d96291719e32178d894114ac2bc2 + md5: c7c345559c1ac25eede6dccb7b931202 + sha256: 85aac1c50a426be6d0cc9fd52480911d752f4082cb78accfdb257243e572c7eb category: main optional: false - name: brotli-python @@ -254,10 +254,10 @@ package: libstdcxx: '>=13' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://repo.prefix.dev/conda-forge/linux-64/brotli-python-1.1.0-py311hfdbb021_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/brotli-python-1.1.0-py311hfdbb021_3.conda hash: - md5: d21daab070d76490cb39a8f1d1729d79 - sha256: 949913bbd1f74d1af202d3e4bff2e0a4e792ec00271dc4dd08641d4221aa2e12 + md5: 8565f7297b28af62e5de2d968ca32e31 + sha256: 4fab04fcc599853efb2904ea3f935942108613c7515f7dd57e7f034650738c52 category: main optional: false - name: brotli-python @@ -270,10 +270,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/brotli-python-1.1.0-py311hda3d55a_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/brotli-python-1.1.0-py311hda3d55a_3.conda hash: - md5: a0ea2839841a06740a1c110ba3317b42 - sha256: aa3ac5dbf63db2f145235708973c626c2189ee4040d769fdf0076286fa45dc26 + md5: 2d99144abeb3b6b65608fdd7810dbcbd + sha256: a602b15fe1b3a6b40aab7d99099a410b69ccad9bb273779531cef00fc52d762e category: main optional: false - name: bzip2 @@ -317,27 +317,27 @@ package: category: main optional: false - name: ca-certificates - version: 2025.4.26 + version: 2025.6.15 manager: conda platform: linux-64 dependencies: __unix: '' - url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.4.26-hbd8a1cb_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.6.15-hbd8a1cb_0.conda hash: - md5: 95db94f75ba080a22eb623590993167b - sha256: 2a70ed95ace8a3f8a29e6cd1476a943df294a7111dfb3e152e3478c4c889b7ac + md5: 72525f07d72806e3b639ad4504c30ce5 + sha256: 7cfec9804c84844ea544d98bda1d9121672b66ff7149141b8415ca42dfcd44f6 category: main optional: false - name: ca-certificates - version: 2025.4.26 + version: 2025.6.15 manager: conda platform: win-64 dependencies: __win: '' - url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.4.26-h4c7d964_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.6.15-h4c7d964_0.conda hash: - md5: 23c7fd5062b48d8294fc7f61bf157fba - sha256: 1454f3f53a3b828d3cb68a3440cb0fa9f1cc0e3c8c26e9e023773dc19d88cc06 + md5: b01649832f7bc7ff94f8df8bd2ee6457 + sha256: 065241ba03ef3ee8200084c075cbff50955a7e711765395ff34876dbc51a6bb9 category: main optional: false - name: cached-property @@ -389,27 +389,27 @@ package: category: main optional: false - name: certifi - version: 2025.1.31 + version: 2025.6.15 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.6.15-pyhd8ed1ab_0.conda hash: - md5: c207fa5ac7ea99b149344385a9c0880d - sha256: 42a78446da06a2568cb13e69be3355169fbd0ea424b00fc80b7d840f5baaacf3 + md5: 781d068df0cc2407d4db0ecfbb29225b + sha256: d71c85835813072cd6d7ce4b24be34215cd90c104785b15a5d58f4cd0cb50778 category: main optional: false - name: certifi - version: 2025.1.31 + version: 2025.6.15 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.6.15-pyhd8ed1ab_0.conda hash: - md5: c207fa5ac7ea99b149344385a9c0880d - sha256: 42a78446da06a2568cb13e69be3355169fbd0ea424b00fc80b7d840f5baaacf3 + md5: 781d068df0cc2407d4db0ecfbb29225b + sha256: d71c85835813072cd6d7ce4b24be34215cd90c104785b15a5d58f4cd0cb50778 category: main optional: false - name: cffi @@ -447,54 +447,54 @@ package: category: main optional: false - name: charset-normalizer - version: 3.4.1 + version: 3.4.2 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.2-pyhd8ed1ab_0.conda hash: - md5: e83a31202d1c0a000fce3e9cf3825875 - sha256: 4e0ee91b97e5de3e74567bdacea27f0139709fceca4db8adffbe24deffccb09b + md5: 40fe4284b8b5835a9073a645139f35af + sha256: 535ae5dcda8022e31c6dc063eb344c80804c537a5a04afba43a845fa6fa130f5 category: dev optional: true - name: charset-normalizer - version: 3.4.1 + version: 3.4.2 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.2-pyhd8ed1ab_0.conda hash: - md5: e83a31202d1c0a000fce3e9cf3825875 - sha256: 4e0ee91b97e5de3e74567bdacea27f0139709fceca4db8adffbe24deffccb09b + md5: 40fe4284b8b5835a9073a645139f35af + sha256: 535ae5dcda8022e31c6dc063eb344c80804c537a5a04afba43a845fa6fa130f5 category: dev optional: true - name: click - version: 8.1.8 + version: 8.2.1 manager: conda platform: linux-64 dependencies: __unix: '' - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/click-8.1.8-pyh707e725_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/click-8.2.1-pyh707e725_0.conda hash: - md5: f22f4d4970e09d68a10b922cbb0408d3 - sha256: c920d23cd1fcf565031c679adb62d848af60d6fbb0edc2d50ba475cea4f0d8ab + md5: 94b550b8d3a614dbd326af798c7dfb40 + sha256: 8aee789c82d8fdd997840c952a586db63c6890b00e88c4fb6e80a38edd5f51c0 category: main optional: false - name: click - version: 8.1.8 + version: 8.2.1 manager: conda platform: win-64 dependencies: __win: '' colorama: '' - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/click-8.1.8-pyh7428d3b_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/click-8.2.1-pyh7428d3b_0.conda hash: - md5: 90e5571556f7a45db92ee51cb8f97af6 - sha256: c889ed359ae47eead4ffe8927b7206b22c55e67d6e74a9044c23736919d61e8d + md5: 3a59475037bc09da916e4062c5cad771 + sha256: 20c2d8ea3d800485245b586a28985cba281dd6761113a49d7576f6db92a0a891 category: main optional: false - name: cloudpickle @@ -580,7 +580,7 @@ package: category: main optional: false - name: coverage - version: 7.8.0 + version: 7.9.1 manager: conda platform: linux-64 dependencies: @@ -589,14 +589,14 @@ package: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* tomli: '' - url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.8.0-py311h2dc5d0c_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.9.1-py311h2dc5d0c_0.conda hash: - md5: 37bc439a94beeb29914baa5b4987ebd5 - sha256: 50018d9c2d805eab29be0ad2e65a4d6b9f620e5e6b196923b1f3b397efee9b10 + md5: f524bd18889f169f2fa8dc70df1c53c3 + sha256: 09245391f91135f4eea87d64107e82d4fb4b7d4fbd6596ea6cc126645191220c category: dev optional: true - name: coverage - version: 7.8.0 + version: 7.9.1 manager: conda platform: win-64 dependencies: @@ -606,10 +606,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.8.0-py311h5082efb_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.9.1-py311h5082efb_0.conda hash: - md5: 3237b9093308b18ee36d455ff098017b - sha256: 2a3a8f6304374d19e6fd1cbf73e756debf0a76e787f1a15bd8b11d74f9ef6bd2 + md5: a12491bec053dd704f8e467127e20b6a + sha256: 821c280024834cdf88038452e3c131140c9e8bc310617349c0deecffca2c2196 category: dev optional: true - name: cycler @@ -760,7 +760,7 @@ package: category: dev optional: true - name: discretize - version: 0.11.2 + version: 0.11.3 manager: conda platform: linux-64 dependencies: @@ -771,14 +771,14 @@ package: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* scipy: '>=1.8' - url: https://repo.prefix.dev/conda-forge/linux-64/discretize-0.11.2-py311h5b7b71f_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/discretize-0.11.3-py311h5b7b71f_0.conda hash: - md5: 46691a03f4c2317ec8c798dc8575bf48 - sha256: 147f8e5403fe7cc0cab3eb8e5cb362347728fe5e485e7c6ca76f5139447b1960 + md5: a7407d831a3b494a143c5e69f83fb0a8 + sha256: 68c39916cff90c5ddf30144096189f3b54d41507dd85023543f03d7cfd5851b4 category: main optional: false - name: discretize - version: 0.11.2 + version: 0.11.3 manager: conda platform: win-64 dependencies: @@ -789,10 +789,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/discretize-0.11.2-py311h9b10771_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/discretize-0.11.3-py311h9b10771_0.conda hash: - md5: 67a5b84650218196cfef1b647c6a9140 - sha256: 0bda0975ae4898c3887be171c9888fd57a20379c129e3149a4708c9d3edf5a2b + md5: 7de8d3ea58f928e4507713d7b35ce1d9 + sha256: 0499b57534162b58677de77dbb0c3dc11dd17ee27043ae5871db2d89e27b8e0d category: main optional: false - name: distributed @@ -878,27 +878,29 @@ package: category: dev optional: true - name: exceptiongroup - version: 1.2.2 + version: 1.3.0 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda + typing_extensions: '>=4.6.0' + url: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda hash: - md5: a16662747cdeb9abbac74d0057cc976e - sha256: cbde2c64ec317118fc06b223c5fd87c8a680255e7348dd60e7b292d2e103e701 + md5: 72e42d28960d875c7654614f8b50939a + sha256: ce61f4f99401a4bd455b89909153b40b9c823276aefcbb06f2044618696009ca category: dev optional: true - name: exceptiongroup - version: 1.2.2 + version: 1.3.0 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda + typing_extensions: '>=4.6.0' + url: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda hash: - md5: a16662747cdeb9abbac74d0057cc976e - sha256: cbde2c64ec317118fc06b223c5fd87c8a680255e7348dd60e7b292d2e103e701 + md5: 72e42d28960d875c7654614f8b50939a + sha256: ce61f4f99401a4bd455b89909153b40b9c823276aefcbb06f2044618696009ca category: dev optional: true - name: fasteners @@ -926,7 +928,7 @@ package: category: main optional: false - name: fonttools - version: 4.57.0 + version: 4.58.4 manager: conda platform: linux-64 dependencies: @@ -937,14 +939,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.57.0-py311h2dc5d0c_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/fonttools-4.58.4-py311h2dc5d0c_0.conda hash: - md5: 4175f366b41d3d0c80d02661a0a03473 - sha256: 2157fff1f143fc99f9b27d1358b537f08478eb65d917279a3484c9c8989ea5fc + md5: dd3ef31d2bf022668f30859d5e11c83e + sha256: f57df9d0573fa04b53afdaa5253bc4f1902357cca9265951f9d6ebe46567a40e category: main optional: false - name: fonttools - version: 4.57.0 + version: 4.58.4 manager: conda platform: win-64 dependencies: @@ -956,10 +958,10 @@ package: unicodedata2: '>=15.1.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/fonttools-4.57.0-py311h5082efb_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/fonttools-4.58.4-py311h5082efb_0.conda hash: - md5: 9ecb6a80392fc77239da9cb631e9ab0c - sha256: 59938b42ed276e716af76b9795f37f2c2ba9b03ce79e820610b37d036d1b4101 + md5: 0619fa68408637bbfb263aa8396a61a9 + sha256: 0381a0b6c32cddbeaab39750590205a97604b52faae1c7db7d7891ac4710be60 category: main optional: false - name: freetype @@ -989,27 +991,27 @@ package: category: main optional: false - name: fsspec - version: 2025.3.2 + version: 2025.5.1 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2025.3.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2025.5.1-pyhd8ed1ab_0.conda hash: - md5: 9c40692c3d24c7aaf335f673ac09d308 - sha256: 2040d4640708bd6ab9ed6cb9901267441798c44974bc63c9b6c1cb4c1891d825 + md5: 2d2c9ef879a7e64e2dc657b09272c2b6 + sha256: cd6ae92ae5aa91a7e58cf39f1442d4821279f43f1c9499d15f45558d4793d1e0 category: main optional: false - name: fsspec - version: 2025.3.2 + version: 2025.5.1 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2025.3.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2025.5.1-pyhd8ed1ab_0.conda hash: - md5: 9c40692c3d24c7aaf335f673ac09d308 - sha256: 2040d4640708bd6ab9ed6cb9901267441798c44974bc63c9b6c1cb4c1891d825 + md5: 2d2c9ef879a7e64e2dc657b09272c2b6 + sha256: cd6ae92ae5aa91a7e58cf39f1442d4821279f43f1c9499d15f45558d4793d1e0 category: main optional: false - name: geoana @@ -1079,78 +1081,78 @@ package: category: main optional: false - name: h5py - version: 3.13.0 + version: 3.14.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' cached-property: '' - hdf5: '>=1.14.3,<1.14.4.0a0' + hdf5: '>=1.14.6,<1.14.7.0a0' libgcc: '>=13' - numpy: '>=1.19,<3' + numpy: '>=1.21,<3' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://repo.prefix.dev/conda-forge/linux-64/h5py-3.13.0-nompi_py311hb639ac4_100.conda + url: https://repo.prefix.dev/conda-forge/linux-64/h5py-3.14.0-nompi_py311h7f87ba5_100.conda hash: - md5: 5e6c88350ad81f42e63f2b470b6a4b86 - sha256: 61809af316c1da7db5b19396f18c4ea31fc194910901e873baa056ab103f46c7 + md5: ecfcdeb88c8727f3cf67e1177528a498 + sha256: cd2bd076c9d9bd8d8021698159e694a8600d8349e3208719c422af2c86b9c184 category: main optional: false - name: h5py - version: 3.13.0 + version: 3.14.0 manager: conda platform: win-64 dependencies: cached-property: '' - hdf5: '>=1.14.3,<1.14.4.0a0' - numpy: '>=1.19,<3' + hdf5: '>=1.14.6,<1.14.7.0a0' + numpy: '>=1.21,<3' 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/h5py-3.13.0-nompi_py311h67016bb_100.conda + url: https://repo.prefix.dev/conda-forge/win-64/h5py-3.14.0-nompi_py311h97e6cc2_100.conda hash: - md5: 2e6c03df40daaaceb2f8229eff48a22a - sha256: 5d36e278a6eeeca22e7d882b4d5e98ee23b900994eb1902aa95f8c582a2a6200 + md5: f806b981514c8d3e567a2b7d5a8569ff + sha256: 600c7089e5fd40d9592d2d881192052b8c6df5f3afe9cd5e51fb8ef2bc8df1bc category: main optional: false - name: hdf5 - version: 1.14.3 + version: 1.14.6 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libaec: '>=1.1.3,<2.0a0' - libcurl: '>=8.11.1,<9.0a0' + libcurl: '>=8.13.0,<9.0a0' libgcc: '>=13' libgfortran: '' libgfortran5: '>=13.3.0' libstdcxx: '>=13' libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.4.0,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/hdf5-1.14.3-nompi_h2d575fe_109.conda + openssl: '>=3.5.0,<4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/hdf5-1.14.6-nompi_h2d575fe_101.conda hash: - md5: e7a7a6e6f70553a31e6e79c65768d089 - sha256: e8669a6d76d415f4fdbe682507ac3a3b39e8f493d2f2bdc520817f80b7cc0753 + md5: d1f61f912e1968a8ac9834b62fde008d + sha256: b685b9d68e927f446bead1458c0fbf5ac02e6a471ed7606de427605ac647e8d3 category: main optional: false - name: hdf5 - version: 1.14.3 + version: 1.14.6 manager: conda platform: win-64 dependencies: libaec: '>=1.1.3,<2.0a0' - libcurl: '>=8.11.1,<9.0a0' + libcurl: '>=8.13.0,<9.0a0' libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.4.0,<4.0a0' + openssl: '>=3.5.0,<4.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/hdf5-1.14.3-nompi_hb2c4d47_109.conda + url: https://repo.prefix.dev/conda-forge/win-64/hdf5-1.14.6-nompi_hd5d9e70_101.conda hash: - md5: ebb61f3e8b35cc15e78876649b7246f7 - sha256: d5ada33e119cdd62371c06f60eae6f545de7cea793ab83da2fba428bb1d2f813 + md5: ea68eb3a15c51875468475c2647a2d23 + sha256: 64d0ed35edefab9a912084f2806b9c4c4ffe2adcf5225a583088abbaafe5dbae category: main optional: false - name: hpack @@ -1201,6 +1203,20 @@ package: sha256: 77af6f5fe8b62ca07d09ac60127a30d9069fdc3c68d6b256754d0ffb1f7779f8 category: main optional: false +- name: icu + version: '75.1' + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + url: https://repo.prefix.dev/conda-forge/linux-64/icu-75.1-he02047a_0.conda + hash: + md5: 8b189310083baabfb622af68fd9d3ae3 + sha256: 71e750d509f5fa3421087ba88ef9a7b9be11c53174af3aa4d06aff4c18b38e8e + category: main + optional: false - name: idna version: '3.10' manager: conda @@ -1250,29 +1266,29 @@ package: category: dev optional: true - name: importlib-metadata - version: 8.6.1 + version: 8.7.0 manager: conda platform: linux-64 dependencies: python: '>=3.9' - zipp: '>=0.5' - url: https://repo.prefix.dev/conda-forge/noarch/importlib-metadata-8.6.1-pyha770c72_0.conda + zipp: '>=3.20' + url: https://repo.prefix.dev/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda hash: - md5: f4b39bf00c69f56ac01e020ebfac066c - sha256: 598951ebdb23e25e4cec4bbff0ae369cec65ead80b50bc08b441d8e54de5cf03 + md5: 63ccfdc3a3ce25b027b8767eb722fca8 + sha256: c18ab120a0613ada4391b15981d86ff777b5690ca461ea7e9e49531e8f374745 category: main optional: false - name: importlib-metadata - version: 8.6.1 + version: 8.7.0 manager: conda platform: win-64 dependencies: python: '>=3.9' - zipp: '>=0.5' - url: https://repo.prefix.dev/conda-forge/noarch/importlib-metadata-8.6.1-pyha770c72_0.conda + zipp: '>=3.20' + url: https://repo.prefix.dev/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda hash: - md5: f4b39bf00c69f56ac01e020ebfac066c - sha256: 598951ebdb23e25e4cec4bbff0ae369cec65ead80b50bc08b441d8e54de5cf03 + md5: 63ccfdc3a3ce25b027b8767eb722fca8 + sha256: c18ab120a0613ada4391b15981d86ff777b5690ca461ea7e9e49531e8f374745 category: main optional: false - name: iniconfig @@ -1316,11 +1332,10 @@ package: platform: linux-64 dependencies: python: '>=3.9,<4.0' - setuptools: '' - url: https://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_1.conda hash: - md5: a8abfd3f223b1ecb8c699dca974933bd - sha256: 9c5fb97efa0eb32b42564edaacb5edb9a1f82ba8f5f8b135e794960101115b5a + md5: c25d1a27b791dab1797832aafd6a3e9a + sha256: e1d0e81e3c3da5d7854f9f57ffb89d8f4505bb64a2f05bb01d78eff24344a105 category: dev optional: true - name: isort @@ -1329,11 +1344,10 @@ package: platform: win-64 dependencies: python: '>=3.9,<4.0' - setuptools: '' - url: https://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_1.conda hash: - md5: a8abfd3f223b1ecb8c699dca974933bd - sha256: 9c5fb97efa0eb32b42564edaacb5edb9a1f82ba8f5f8b135e794960101115b5a + md5: c25d1a27b791dab1797832aafd6a3e9a + sha256: e1d0e81e3c3da5d7854f9f57ffb89d8f4505bb64a2f05bb01d78eff24344a105 category: dev optional: true - name: jinja2 @@ -1363,29 +1377,29 @@ package: category: main optional: false - name: joblib - version: 1.4.2 + version: 1.5.1 manager: conda platform: linux-64 dependencies: python: '>=3.9' setuptools: '' - url: https://repo.prefix.dev/conda-forge/noarch/joblib-1.4.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/joblib-1.5.1-pyhd8ed1ab_0.conda hash: - md5: bf8243ee348f3a10a14ed0cae323e0c1 - sha256: 51cc2dc491668af0c4d9299b0ab750f16ccf413ec5e2391b924108c1fbacae9b + md5: fb1c14694de51a476ce8636d92b6f42c + sha256: e5a4eca9a5d8adfaa3d51e24eefd1a6d560cb3b33a7e1eee13e410bec457b7ed category: main optional: false - name: joblib - version: 1.4.2 + version: 1.5.1 manager: conda platform: win-64 dependencies: python: '>=3.9' setuptools: '' - url: https://repo.prefix.dev/conda-forge/noarch/joblib-1.4.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/joblib-1.5.1-pyhd8ed1ab_0.conda hash: - md5: bf8243ee348f3a10a14ed0cae323e0c1 - sha256: 51cc2dc491668af0c4d9299b0ab750f16ccf413ec5e2391b924108c1fbacae9b + md5: fb1c14694de51a476ce8636d92b6f42c + sha256: e5a4eca9a5d8adfaa3d51e24eefd1a6d560cb3b33a7e1eee13e410bec457b7ed category: main optional: false - name: keyutils @@ -1500,10 +1514,10 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_4.conda + url: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.43-h1423503_5.conda hash: - md5: 01f8d123c96816249efd255a31ad7712 - sha256: db73f38155d901a610b2320525b9dd3b31e4949215c870685fd92ea61b5ce472 + md5: 6dc9e1305e7d3129af4ad0dabda30e56 + sha256: dcd2b1a065bbf5c54004ddf6551c775a8eb6993c8298ca8a6b92041ed413f785 category: main optional: false - name: lerc @@ -1535,30 +1549,31 @@ package: category: main optional: false - name: libaec - version: 1.1.3 + version: 1.1.4 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://repo.prefix.dev/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=13' + libstdcxx: '>=13' + url: https://repo.prefix.dev/conda-forge/linux-64/libaec-1.1.4-h3f801dc_0.conda hash: - md5: 5e97e271911b8b2001a8b71860c32faa - sha256: 2ef420a655528bca9d269086cf33b7e90d2f54ad941b437fb1ed5eca87cee017 + md5: 01ba04e414e47f95c03d6ddd81fd37be + sha256: 410ab78fe89bc869d435de04c9ffa189598ac15bb0fe1ea8ace8fb1b860a2aa3 category: main optional: false - name: libaec - version: 1.1.3 + version: 1.1.4 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libaec-1.1.3-h63175ca_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libaec-1.1.4-h20038f6_0.conda hash: - md5: 8723000f6ffdbdaef16025f0a01b64c5 - sha256: f5c293d3cfc00f71dfdb64bd65ab53625565f8778fc2d5790575bef238976ebf + md5: 85a2bed45827d77d5b308cb2b165404f + sha256: 0be89085effce9fdcbb6aea7acdb157b18793162f68266ee0a75acf615d4929b category: main optional: false - name: libblas @@ -1592,10 +1607,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlicommon-1.1.0-hb9d3cd8_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlicommon-1.1.0-hb9d3cd8_3.conda hash: - md5: 41b599ed2b02abcfdd84302bff174b23 - sha256: d9db2de60ea917298e658143354a530e9ca5f9c63471c65cf47ab39fd2f429e3 + md5: cb98af5db26e3f482bebb80ce9d947d3 + sha256: 462a8ed6a7bb9c5af829ec4b90aab322f8bcd9d8987f793e6986ea873bbd05cf category: main optional: false - name: libbrotlicommon @@ -1606,10 +1621,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libbrotlicommon-1.1.0-h2466b09_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/libbrotlicommon-1.1.0-h2466b09_3.conda hash: - md5: f7dc9a8f21d74eab46456df301da2972 - sha256: 33e8851c6cc8e2d93059792cd65445bfe6be47e4782f826f01593898ec95764c + md5: cf20c8b8b48ab5252ec64b9c66bfe0a4 + sha256: e70ea4b773fadddda697306a80a29d9cbd36b7001547cd54cbfe9a97a518993f category: main optional: false - name: libbrotlidec @@ -1620,10 +1635,10 @@ package: __glibc: '>=2.17,<3.0.a0' libbrotlicommon: 1.1.0 libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlidec-1.1.0-hb9d3cd8_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlidec-1.1.0-hb9d3cd8_3.conda hash: - md5: 9566f0bd264fbd463002e759b8a82401 - sha256: 2892d512cad096cb03f1b66361deeab58b64e15ba525d6592bb6d609e7045edf + md5: 1c6eecffad553bde44c5238770cfb7da + sha256: 3eb27c1a589cbfd83731be7c3f19d6d679c7a444c3ba19db6ad8bf49172f3d83 category: main optional: false - name: libbrotlidec @@ -1635,10 +1650,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libbrotlidec-1.1.0-h2466b09_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/libbrotlidec-1.1.0-h2466b09_3.conda hash: - md5: 9bae75ce723fa34e98e239d21d752a7e - sha256: 234fc92f4c4f1cf22f6464b2b15bfc872fa583c74bf3ab9539ff38892c43612f + md5: a342933dbc6d814541234c7c81cb5205 + sha256: a35a0db7e3257e011b10ffb371735b2b24074412d0b27c3dab7ca9f2c549cfcf category: main optional: false - name: libbrotlienc @@ -1649,10 +1664,10 @@ package: __glibc: '>=2.17,<3.0.a0' libbrotlicommon: 1.1.0 libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlienc-1.1.0-hb9d3cd8_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlienc-1.1.0-hb9d3cd8_3.conda hash: - md5: 06f70867945ea6a84d35836af780f1de - sha256: 779f58174e99de3600e939fa46eddb453ec5d3c60bb46cdaa8b4c127224dbf29 + md5: 3facafe58f3858eb95527c7d3a3fc578 + sha256: 76e8492b0b0a0d222bfd6081cae30612aa9915e4309396fdca936528ccf314b7 category: main optional: false - name: libbrotlienc @@ -1664,10 +1679,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libbrotlienc-1.1.0-h2466b09_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/libbrotlienc-1.1.0-h2466b09_3.conda hash: - md5: 85741a24d97954a991e55e34bc55990b - sha256: 3d0dd7ef505962f107b7ea8f894e0b3dd01bf46852b362c8a7fc136b039bc9e1 + md5: 7ef0af55d70cbd9de324bb88b7f9d81e + sha256: 9d0703c5a01c10d346587ff0535a0eb81042364333caa4a24a0e4a0c08fd490b category: main optional: false - name: libcblas @@ -1695,7 +1710,7 @@ package: category: main optional: false - name: libcurl - version: 8.13.0 + version: 8.14.1 manager: conda platform: linux-64 dependencies: @@ -1705,16 +1720,16 @@ package: libnghttp2: '>=1.64.0,<2.0a0' libssh2: '>=1.11.1,<2.0a0' libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.4.1,<4.0a0' + openssl: '>=3.5.0,<4.0a0' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libcurl-8.13.0-h332b0f4_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libcurl-8.14.1-h332b0f4_0.conda hash: - md5: cbdc92ac0d93fe3c796e36ad65c7905c - sha256: 38e528acfaa0276b7052f4de44271ff9293fdb84579650601a8c49dac171482a + md5: 45f6713cb00f124af300342512219182 + sha256: b6c5cf340a4f80d70d64b3a29a7d9885a5918d16a5cb952022820e6d3e79dc8b category: main optional: false - name: libcurl - version: 8.13.0 + version: 8.14.1 manager: conda platform: win-64 dependencies: @@ -1724,37 +1739,37 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libcurl-8.13.0-h88aaa65_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libcurl-8.14.1-h88aaa65_0.conda hash: - md5: c9cf6eb842decbb66c2f34e72c3580d6 - sha256: 185553b37c0299b7a15dc66a7a7e2a0d421adaac784ec9298a0b2ad745116ca5 + md5: 836b9c08f34d2017dbcaec907c6a1138 + sha256: b2cface2cf35d8522289df7fffc14370596db6f6dc481cc1b6ca313faeac19d8 category: main optional: false - name: libdeflate - version: '1.23' + version: '1.24' manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libdeflate-1.23-h86f0d12_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libdeflate-1.24-h86f0d12_0.conda hash: - md5: 27fe770decaf469a53f3e3a6d593067f - sha256: 4db2f70a1441317d964e84c268e388110ad9cf75ca98994d1336d670e62e6f07 + md5: 64f0c503da58ec25ebd359e4d990afa8 + sha256: 8420748ea1cc5f18ecc5068b4f24c7a023cc9b20971c99c824ba10641fb95ddf category: main optional: false - name: libdeflate - version: '1.23' + version: '1.24' manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libdeflate-1.23-h76ddb4d_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libdeflate-1.24-h76ddb4d_0.conda hash: - md5: 34f03138e46543944d4d7f8538048842 - sha256: 881244050587dc658078ee45dfc792ecb458bbb1fdc861da67948d747b117dc2 + md5: 08d988e266c6ae77e03d164b83786dc4 + sha256: 65347475c0009078887ede77efe60db679ea06f2b56f7853b9310787fe5ad035 category: main optional: false - name: libdlf @@ -1919,78 +1934,78 @@ package: category: main optional: false - name: libgcc - version: 14.2.0 + version: 15.1.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' _openmp_mutex: '>=4.5' - url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-14.2.0-h767d61c_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-15.1.0-h767d61c_2.conda hash: - md5: ef504d1acbd74b7cc6849ef8af47dd03 - sha256: 3a572d031cb86deb541d15c1875aaa097baefc0c580b54dc61f5edab99215792 + md5: ea8ac52380885ed41c1baa8f1d6d2b93 + sha256: 0024f9ab34c09629621aefd8603ef77bf9d708129b0dd79029e502c39ffc2195 category: main optional: false - name: libgcc - version: 14.2.0 + version: 15.1.0 manager: conda platform: win-64 dependencies: _openmp_mutex: '>=4.5' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' - url: https://repo.prefix.dev/conda-forge/win-64/libgcc-14.2.0-h1383e82_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/libgcc-15.1.0-h1383e82_2.conda hash: - md5: 4a74c1461a0ba47a3346c04bdccbe2ad - sha256: fddf2fc037bc95adb3b369e8866da8a71b6a67ebcfc4d7035ac4208309dc9e72 + md5: 9bedb24480136bfeb81ebc81d4285e70 + sha256: c0288596ac58366d96a56c57e4088fe1c6dd4194fdcaeacf5862f47fb1e1e5be category: main optional: false - name: libgcc-ng - version: 14.2.0 + version: 15.1.0 manager: conda platform: linux-64 dependencies: - libgcc: 14.2.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_2.conda + libgcc: 15.1.0 + url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-ng-15.1.0-h69a702a_2.conda hash: - md5: a2222a6ada71fb478682efe483ce0f92 - sha256: fb7558c328b38b2f9d2e412c48da7890e7721ba018d733ebdfea57280df01904 + md5: ddca86c7040dd0e73b2b69bd7833d225 + sha256: 0ab5421a89f090f3aa33841036bb3af4ed85e1f91315b528a9d75fab9aad51ae category: main optional: false - name: libgfortran - version: 14.2.0 + version: 15.1.0 manager: conda platform: linux-64 dependencies: - libgfortran5: 14.2.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran-14.2.0-h69a702a_2.conda + libgfortran5: 15.1.0 + url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran-15.1.0-h69a702a_2.conda hash: - md5: fb54c4ea68b460c278d26eea89cfbcc3 - sha256: e05263e8960da03c341650f2a3ffa4ccae4e111cb198e8933a2908125459e5a6 + md5: f92e6e0a3c0c0c85561ef61aa59d555d + sha256: 914daa4f632b786827ea71b5e07cd00d25fc6e67789db2f830dc481eec660342 category: main optional: false - name: libgfortran5 - version: 14.2.0 + version: 15.1.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14.2.0' - url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran5-14.2.0-hf1ad2bd_2.conda + libgcc: '>=15.1.0' + url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran5-15.1.0-hcea5267_2.conda hash: - md5: 556a4fdfac7287d349b8f09aba899693 - sha256: c17b7cf3073a1f4e1f34d50872934fa326346e104d3c445abc1e62481ad6085c + md5: 01de444988ed960031dbe84cf4f9b1fc + sha256: be23750f3ca1a5cb3ada858c4f633effe777487d1ea35fddca04c0965c073350 category: main optional: false - name: libgomp - version: 14.2.0 + version: 15.1.0 manager: conda platform: win-64 dependencies: libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' - url: https://repo.prefix.dev/conda-forge/win-64/libgomp-14.2.0-h1383e82_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/libgomp-15.1.0-h1383e82_2.conda hash: - md5: dd6b1ab49e28bcb6154cd131acec985b - sha256: 674ec5f1bf319eac98d0d6ecb9c38e0192f3cf41969a5621d62a7e695e1aa9f3 + md5: 5fbacaa9b41e294a6966602205b99747 + sha256: 4316316097ce5fde2608b6fccd18709cf647dce52e230f5ac66f5c524dfad791 category: main optional: false - name: libhwloc @@ -2109,10 +2124,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_2.conda hash: - md5: 0e87378639676987af32fee53ba32258 - sha256: f4f21dfc54b08d462f707b771ecce3fa9bc702a2a05b55654f64154f48b141ef + md5: 1a580f7796c7bf6393fddb8bbbde58dc + sha256: f2591c0069447bbe28d4d696b7fcb0c5bd0b4ac582769b89addbcf26fb3430d8 category: main optional: false - name: liblzma @@ -2123,10 +2138,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/liblzma-5.8.1-h2466b09_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/liblzma-5.8.1-h2466b09_2.conda hash: - md5: 8d5cb0016b645d6688e2ff57c5d51302 - sha256: 1477e9bff05318f3129d37be0e64c76cce0973c4b8c73d13a467d0b7f03d157c + md5: c15148b2e18da456f5108ccb5e411446 + sha256: 55764956eb9179b98de7cc0e55696f2eff8f7b83fc3ebff5e696ca358bca28cc category: main optional: false - name: libnghttp2 @@ -2152,29 +2167,30 @@ package: manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - url: https://repo.prefix.dev/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=13' + url: https://repo.prefix.dev/conda-forge/linux-64/libnsl-2.0.1-hb9d3cd8_1.conda hash: - md5: 30fd6e37fe21f86f4bd26d6ee73eeec7 - sha256: 26d77a3bb4dceeedc2a41bd688564fe71bf2d149fdcf117049970bc02ff1add6 + md5: d864d34357c3b65a4b731f78c0801dc4 + sha256: 927fe72b054277cde6cb82597d0fcf6baf127dcbce2e0a9d8925a68f1265eef5 category: main optional: false - name: libpng - version: 1.6.47 + version: 1.6.49 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libpng-1.6.47-h943b412_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libpng-1.6.49-h943b412_0.conda hash: - md5: 55199e2ae2c3651f6f9b2a447b47bdc9 - sha256: 23367d71da58c9a61c8cbd963fcffb92768d4ae5ffbef9a47cdf1f54f98c5c36 + md5: 37511c874cf3b8d0034c8d24e73c0884 + sha256: c8f5dc929ba5fcee525a66777498e03bbcbfefc05a0773e5163bb08ac5122f1a category: main optional: false - name: libpng - version: 1.6.47 + version: 1.6.49 manager: conda platform: win-64 dependencies: @@ -2182,10 +2198,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libpng-1.6.47-h7a4582a_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libpng-1.6.49-h7a4582a_0.conda hash: - md5: ad620e92b82d2948bc019e029c574ebb - sha256: e12c46ca882080d901392ae45e0e5a1c96fc3e5acd5cd1a23c2632eb7f024f26 + md5: 27269977c8f25d499727ceabc47cee3d + sha256: 8876a2d32d3538675e035b6560691471a1571835c0bcbf23816c24c460d31439 category: main optional: false - name: libscotch @@ -2235,31 +2251,31 @@ package: category: main optional: false - name: libsqlite - version: 3.49.1 + version: 3.50.1 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.49.1-hee588c1_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.50.1-hee588c1_0.conda hash: - md5: 962d6ac93c30b1dfc54c9cccafd1003e - sha256: a086289bf75c33adc1daed3f1422024504ffb5c3c8b3285c49f025c29708ed16 + md5: 96a7e36bff29f1d0ddf5b771e0da373a + sha256: cd15ab1b9f0d53507e7ad7a01e52f6756ab3080bf623ab0e438973b6e4dba3c0 category: main optional: false - name: libsqlite - version: 3.49.1 + version: 3.50.1 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.49.1-h67fdade_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.50.1-h67fdade_0.conda hash: - md5: b58b66d4ad1aaf1c2543cbbd6afb1a59 - sha256: c092d42d00fd85cf609cc58574ba2b03c141af5762283f36f5dd445ef7c0f4fe + md5: 0e11a893eeeb46510520fd3fdd9c346a + sha256: 0dda5b3f21ad2c7e823f21b0e173194347fbfccb73a06ddc9366da1877020bda category: main optional: false - name: libssh2 @@ -2294,28 +2310,28 @@ package: category: main optional: false - name: libstdcxx - version: 14.2.0 + version: 15.1.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: 14.2.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-14.2.0-h8f9b012_2.conda + libgcc: 15.1.0 + url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-15.1.0-h8f9b012_2.conda hash: - md5: a78c856b6dc6bf4ea8daeb9beaaa3fb0 - sha256: 8f5bd92e4a24e1d35ba015c5252e8f818898478cb3bc50bd8b12ab54707dc4da + md5: 1cb1c67961f6dd257eae9e9691b341aa + sha256: 6ae3d153e78f6069d503d9309f2cac6de5b93d067fc6433160a4c05226a5dad4 category: main optional: false - name: libstdcxx-ng - version: 14.2.0 + version: 15.1.0 manager: conda platform: linux-64 dependencies: - libstdcxx: 14.2.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-14.2.0-h4852527_2.conda + libstdcxx: 15.1.0 + url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-15.1.0-h4852527_2.conda hash: - md5: c75da67f045c2627f59e6fcb5f4e3a9b - sha256: e86f38b007cf97cc2c67cd519f2de12a313c4ee3f5ef11652ad08932a5e34189 + md5: 9d2072af184b5caa29492bf2344597bb + sha256: 11bea86e11de7d6bce87589197a383344df3fa0a3552dab7e931785ff1159a5b category: main optional: false - name: libtiff @@ -2325,7 +2341,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' lerc: '>=4.0.0,<5.0a0' - libdeflate: '>=1.23,<1.24.0a0' + libdeflate: '>=1.24,<1.25.0a0' libgcc: '>=13' libjpeg-turbo: '>=3.1.0,<4.0a0' liblzma: '>=5.8.1,<6.0a0' @@ -2333,10 +2349,10 @@ package: libwebp-base: '>=1.5.0,<2.0a0' libzlib: '>=1.3.1,<2.0a0' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libtiff-4.7.0-hd9ff511_4.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libtiff-4.7.0-hf01ce69_5.conda hash: - md5: 6c1028898cf3a2032d9af46689e1b81a - sha256: 7480613af15795281bd338a4d3d2ca148f9c2ecafc967b9cc233e78ba2fe4a6d + md5: e79a094918988bb1807462cd42c83962 + sha256: 7fa6ddac72e0d803bb08e55090a8f2e71769f1eb7adbd5711bdd7789561601b1 category: main optional: false - name: libtiff @@ -2345,7 +2361,7 @@ package: platform: win-64 dependencies: lerc: '>=4.0.0,<5.0a0' - libdeflate: '>=1.23,<1.24.0a0' + libdeflate: '>=1.24,<1.25.0a0' libjpeg-turbo: '>=3.1.0,<4.0a0' liblzma: '>=5.8.1,<6.0a0' libzlib: '>=1.3.1,<2.0a0' @@ -2353,10 +2369,10 @@ package: vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/libtiff-4.7.0-h797046b_4.conda + url: https://repo.prefix.dev/conda-forge/win-64/libtiff-4.7.0-h05922d8_5.conda hash: - md5: 7d938ca70c64c5516767b4eae0a56172 - sha256: 3456e2a6dfe6c00fd0cda316f0cbb47caddf77f83d3ed4040b6ad17ec1610d2a + md5: 75370aba951b47ec3b5bfe689f1bcf7f + sha256: 1bb0b2e7d076fecc2f8147336bc22e7e6f9a4e0505e0e4ab2be1f56023a4a458 category: main optional: false - name: libuuid @@ -2456,23 +2472,24 @@ package: category: main optional: false - name: libxml2 - version: 2.13.7 + version: 2.13.8 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' + icu: '>=75.1,<76.0a0' libgcc: '>=13' libiconv: '>=1.18,<2.0a0' liblzma: '>=5.8.1,<6.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libxml2-2.13.7-h81593ed_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libxml2-2.13.8-h4bc477f_0.conda hash: - md5: 0619e8fc4c8025a908ea3a3422d3b775 - sha256: c4f59563e017eba378ea843be5ebde4b0546c72bbe4c1e43b2b384379e827635 + md5: 14dbe05b929e329dbaa6f2d0aa19466d + sha256: b0b3a96791fa8bb4ec030295e8c8bf2d3278f33c0f9ad540e73b5e538e6268e7 category: main optional: false - name: libxml2 - version: 2.13.7 + version: 2.13.8 manager: conda platform: win-64 dependencies: @@ -2481,10 +2498,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libxml2-2.13.7-h442d1da_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/libxml2-2.13.8-h442d1da_0.conda hash: - md5: c14ff7f05e57489df9244917d2b55763 - sha256: 0a013527f784f4702dc18460070d8ec79d1ebb5087dd9e678d6afbeaca68d2ac + md5: 833c2dbc1a5020007b520b044c713ed3 + sha256: 473b8a53c8df714d676ab41711551c8d250f8d799f2db5cb7cb2b177a0ce13f6 category: main optional: false - name: libzlib @@ -2515,29 +2532,29 @@ package: category: main optional: false - name: llvm-openmp - version: 20.1.4 + version: 20.1.7 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-20.1.4-h024ca30_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-20.1.7-h024ca30_0.conda hash: - md5: 4fc395cda27912a7d904b86b5dbf3a4d - sha256: 5b39cdde3457e41b133d6f1fe53095c7fd3951bbdab46580098ccbf5ee9c99f7 + md5: b9c9b2f494533250a9eb7ece830f4422 + sha256: 10f2f6be8ba4c018e1fc741637a8d45c0e58bea96954c25e91fbe4238b7c9f60 category: main optional: false - name: llvm-openmp - version: 20.1.4 + version: 20.1.7 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-20.1.4-h30eaf37_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-20.1.7-h30eaf37_0.conda hash: - md5: 3087da6f7e741dc1498e85ef87a553dc - sha256: 0c85b0ceda02c26bbea5a789c2d1735485dbc2a1089655a8f2193c5850a7bbab + md5: 6fd1d310402e936aa9aecb065f21cc6b + sha256: 1820ca99e8b126b3c656ff3c527822be8348f6452edcddd91615cba285540f6c category: main optional: false - name: locket @@ -2692,7 +2709,7 @@ package: manager: conda platform: linux-64 dependencies: - _openmp_mutex: '>=4.5' + _openmp_mutex: '*' llvm-openmp: '>=19.1.2' tbb: 2021.* url: https://repo.prefix.dev/conda-forge/linux-64/mkl-2024.2.2-ha957f24_16.conda @@ -2715,7 +2732,7 @@ package: category: main optional: false - name: msgpack-python - version: 1.1.0 + version: 1.1.1 manager: conda platform: linux-64 dependencies: @@ -2724,14 +2741,14 @@ package: libstdcxx: '>=13' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://repo.prefix.dev/conda-forge/linux-64/msgpack-python-1.1.0-py311hd18a35c_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/msgpack-python-1.1.1-py311hd18a35c_0.conda hash: - md5: 682f76920687f7d9283039eb542fdacf - sha256: 9033fa7084cbfd10e1b7ed3b74cee17169a0731ec98244d05c372fc4a935d5c9 + md5: d0898973440adc2ad25917028669126d + sha256: f07aafd9e9adddf66b75630b4f68784e22ce63ae9e0887711a7386ceb2506fca category: main optional: false - name: msgpack-python - version: 1.1.0 + version: 1.1.1 manager: conda platform: win-64 dependencies: @@ -2740,10 +2757,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/msgpack-python-1.1.0-py311h3257749_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/msgpack-python-1.1.1-py311h3257749_0.conda hash: - md5: 36562593204b081d0da8a8bfabfb278b - sha256: 4e6a7979b434308ce5588970cb613952e3340bb2f9e63aaad7e5069ef1f08d1d + md5: 236c48eab3925b666eed26a3ba94bcb6 + sha256: a0ba6da7e31c406c39da1258d0c4304b58e791b3836529e51dc56d7d8f542de4 category: main optional: false - name: mumps-include @@ -2800,11 +2817,11 @@ package: manager: conda platform: linux-64 dependencies: - python: '' - url: https://repo.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 + python: '>=3.9' + url: https://repo.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyhd8ed1ab_1.conda hash: - md5: 2ba8498c1018c1e9c61eb99b973dfe19 - sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 + md5: 37293a85a0f4f77bbd9cf7aaefc62609 + sha256: d09c47c2cf456de5c09fa66d2c3c5035aa1fa228a1983a433c47b876aa16ce90 category: main optional: false - name: munkres @@ -2812,11 +2829,11 @@ package: manager: conda platform: win-64 dependencies: - python: '' - url: https://repo.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 + python: '>=3.9' + url: https://repo.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyhd8ed1ab_1.conda hash: - md5: 2ba8498c1018c1e9c61eb99b973dfe19 - sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 + md5: 37293a85a0f4f77bbd9cf7aaefc62609 + sha256: d09c47c2cf456de5c09fa66d2c3c5035aa1fa228a1983a433c47b876aa16ce90 category: main optional: false - name: ncurses @@ -2949,10 +2966,10 @@ package: __glibc: '>=2.17,<3.0.a0' ca-certificates: '' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/openssl-3.5.0-h7b32b05_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/openssl-3.5.0-h7b32b05_1.conda hash: - md5: bb539841f2a3fde210f387d00ed4bb9d - sha256: 38285d280f84f1755b7c54baf17eccf2e3e696287954ce0adca16546b85ee62c + md5: de356753cfdbffcde5bb1e86e3aa6cd0 + sha256: b4491077c494dbf0b5eaa6d87738c22f2154e9277e5293175ec187634bd808a0 category: main optional: false - name: openssl @@ -2964,10 +2981,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/openssl-3.5.0-ha4e3fda_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/openssl-3.5.0-ha4e3fda_1.conda hash: - md5: 4ea7db75035eb8c13fa680bb90171e08 - sha256: 43dd7f56da142ca83c614c8b0085589650ae9032b351a901c190e48eefc73675 + md5: 72c07e46b6766bb057018a9a74861b89 + sha256: 02846553d2a4c9bde850c60824d0f02803eb9c9b674d5c1a8cce25bc387e748f category: main optional: false - name: packaging @@ -2975,7 +2992,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '' + python: '>=3.8' url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda hash: md5: 58335b26c38bf4a20f399384c33cbcf9 @@ -2987,7 +3004,7 @@ package: manager: conda platform: win-64 dependencies: - python: '' + python: '>=3.8' url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda hash: md5: 58335b26c38bf4a20f399384c33cbcf9 @@ -3071,79 +3088,79 @@ package: category: main optional: false - name: pip - version: '25.1' + version: 25.1.1 manager: conda platform: linux-64 dependencies: python: '>=3.9,<3.13.0a0' setuptools: '' wheel: '' - url: https://repo.prefix.dev/conda-forge/noarch/pip-25.1-pyh8b19718_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pip-25.1.1-pyh8b19718_0.conda hash: - md5: 2247aa245832ea47e8b971bef73d7094 - sha256: 81a7ffe7b7ca8718bc09476a258cd48754e1d4e1bd3b80a6fef41ffb71e3bfc8 + md5: 32d0781ace05105cc99af55d36cbec7c + sha256: ebfa591d39092b111b9ebb3210eb42251be6da89e26c823ee03e5e838655a43e category: main optional: false - name: pip - version: '25.1' + version: 25.1.1 manager: conda platform: win-64 dependencies: python: '>=3.9,<3.13.0a0' setuptools: '' wheel: '' - url: https://repo.prefix.dev/conda-forge/noarch/pip-25.1-pyh8b19718_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pip-25.1.1-pyh8b19718_0.conda hash: - md5: 2247aa245832ea47e8b971bef73d7094 - sha256: 81a7ffe7b7ca8718bc09476a258cd48754e1d4e1bd3b80a6fef41ffb71e3bfc8 + md5: 32d0781ace05105cc99af55d36cbec7c + sha256: ebfa591d39092b111b9ebb3210eb42251be6da89e26c823ee03e5e838655a43e category: main optional: false - name: platformdirs - version: 4.3.7 + version: 4.3.8 manager: conda platform: linux-64 dependencies: - python: '' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.3.7-pyh29332c3_0.conda + python: '>=3.9' + url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.3.8-pyhe01879c_0.conda hash: - md5: e57da6fe54bb3a5556cf36d199ff07d8 - sha256: ae7d3e58224d53d6b59e1f5ac5809803bb1972f0ac4fb10cd9b8c87d4122d3e0 + md5: 424844562f5d337077b445ec6b1398a7 + sha256: 0f48999a28019c329cd3f6fd2f01f09fc32cc832f7d6bbe38087ddac858feaa3 category: dev optional: true - name: platformdirs - version: 4.3.7 + version: 4.3.8 manager: conda platform: win-64 dependencies: - python: '' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.3.7-pyh29332c3_0.conda + python: '>=3.9' + url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.3.8-pyhe01879c_0.conda hash: - md5: e57da6fe54bb3a5556cf36d199ff07d8 - sha256: ae7d3e58224d53d6b59e1f5ac5809803bb1972f0ac4fb10cd9b8c87d4122d3e0 + md5: 424844562f5d337077b445ec6b1398a7 + sha256: 0f48999a28019c329cd3f6fd2f01f09fc32cc832f7d6bbe38087ddac858feaa3 category: dev optional: true - name: pluggy - version: 1.5.0 + version: 1.6.0 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda hash: - md5: e9dcbce5f45f9ee500e728ae58b605b6 - sha256: 122433fc5318816b8c69283aaf267c73d87aa2d09ce39f64c9805c9a3b264819 + md5: 7da7ccd349dbf6487a7778579d2bb971 + sha256: a8eb555eef5063bbb7ba06a379fa7ea714f57d9741fe0efdb9442dbbc2cccbcc category: dev optional: true - name: pluggy - version: 1.5.0 + version: 1.6.0 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda hash: - md5: e9dcbce5f45f9ee500e728ae58b605b6 - sha256: 122433fc5318816b8c69283aaf267c73d87aa2d09ce39f64c9805c9a3b264819 + md5: 7da7ccd349dbf6487a7778579d2bb971 + sha256: a8eb555eef5063bbb7ba06a379fa7ea714f57d9741fe0efdb9442dbbc2cccbcc category: dev optional: true - name: psutil @@ -3209,7 +3226,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '' + python: '>=3.9' url: https://repo.prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda hash: md5: 12c566707c80111f9799308d9e265aef @@ -3221,7 +3238,7 @@ package: manager: conda platform: win-64 dependencies: - python: '' + python: '>=3.9' url: https://repo.prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda hash: md5: 12c566707c80111f9799308d9e265aef @@ -3229,41 +3246,41 @@ package: category: main optional: false - name: pydantic - version: 2.11.3 + version: 2.11.7 manager: conda platform: linux-64 dependencies: annotated-types: '>=0.6.0' - pydantic-core: 2.33.1 + pydantic-core: 2.33.2 python: '>=3.9' typing-extensions: '>=4.6.1' typing-inspection: '>=0.4.0' typing_extensions: '>=4.12.2' - url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.3-pyh3cfb1c2_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.7-pyh3cfb1c2_0.conda hash: - md5: 3c6f7f8ae9b9c177ad91ccc187912756 - sha256: 89183785b09ebe9f9e65710057d7c41e9d21d4a9ad05e068850e18669655d5a8 + md5: 1b337e3d378cde62889bb735c024b7a2 + sha256: ee7823e8bc227f804307169870905ce062531d36c1dcf3d431acd65c6e0bd674 category: main optional: false - name: pydantic - version: 2.11.3 + version: 2.11.7 manager: conda platform: win-64 dependencies: annotated-types: '>=0.6.0' - pydantic-core: 2.33.1 + pydantic-core: 2.33.2 python: '>=3.9' typing-extensions: '>=4.6.1' typing-inspection: '>=0.4.0' typing_extensions: '>=4.12.2' - url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.3-pyh3cfb1c2_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.7-pyh3cfb1c2_0.conda hash: - md5: 3c6f7f8ae9b9c177ad91ccc187912756 - sha256: 89183785b09ebe9f9e65710057d7c41e9d21d4a9ad05e068850e18669655d5a8 + md5: 1b337e3d378cde62889bb735c024b7a2 + sha256: ee7823e8bc227f804307169870905ce062531d36c1dcf3d431acd65c6e0bd674 category: main optional: false - name: pydantic-core - version: 2.33.1 + version: 2.33.2 manager: conda platform: linux-64 dependencies: @@ -3272,14 +3289,14 @@ package: python: '' python_abi: 3.11.* typing-extensions: '>=4.6.0,!=4.7.0' - url: https://repo.prefix.dev/conda-forge/linux-64/pydantic-core-2.33.1-py311h687327b_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pydantic-core-2.33.2-py311hdae7d1d_0.conda hash: - md5: 778b623dbbec0be25624b5ebd405a0a8 - sha256: f293f7f2d0fe11c8334b3671944b310c13c1552dbe25ea93043d09bede814cd5 + md5: 484d0d62d4b069d5372680309fc5f00c + sha256: b48e5abb6debae4f559b08cdbaf0736c7806adc00c106ced2c98a622b7081d8f category: main optional: false - name: pydantic-core - version: 2.33.1 + version: 2.33.2 manager: conda platform: win-64 dependencies: @@ -3289,10 +3306,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/pydantic-core-2.33.1-py311ha250665_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/pydantic-core-2.33.2-py311hc4022dc_0.conda hash: - md5: 549cc2f2754ba510f7616af5c5b8aff6 - sha256: bdbfb2e0a7e9f37071d1619dd9af33668bb47ba8f0117846742a5a7de3184bff + md5: 5a644594b3066c17b7dd4590b2438424 + sha256: 0748e6b6cdb86dfdc4446bddb6035a75bef7939bc6dc382d17c02de1643f4e0f category: main optional: false - name: pydiso @@ -3357,7 +3374,7 @@ package: category: dev optional: true - name: pylint - version: 3.3.6 + version: 3.3.7 manager: conda platform: linux-64 dependencies: @@ -3367,18 +3384,18 @@ package: isort: '>=4.2.5,<7,!=5.13.0' mccabe: '>=0.6,<0.8' platformdirs: '>=2.2.0' - python: '' + python: '>=3.9' tomli: '>=1.1.0' tomlkit: '>=0.10.1' typing_extensions: '>=3.10.0' - url: https://repo.prefix.dev/conda-forge/noarch/pylint-3.3.6-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pylint-3.3.7-pyhe01879c_0.conda hash: - md5: 8242cc62822cc8a17f53d24d4efa75f4 - sha256: 3e3e35b2cbb4b1ca3063fc2d6f44a85ac189e0935f00ed8fbe8e4713c0d00b99 + md5: fad6b90165dcf39e3ac79de5dbc030a8 + sha256: 6a1dc262763220c9dc046400d8655ebe58ad4d81e872be7264af5137f906e220 category: dev optional: true - name: pylint - version: 3.3.6 + version: 3.3.7 manager: conda platform: win-64 dependencies: @@ -3388,14 +3405,14 @@ package: isort: '>=4.2.5,<7,!=5.13.0' mccabe: '>=0.6,<0.8' platformdirs: '>=2.2.0' - python: '' + python: '>=3.9' tomli: '>=1.1.0' tomlkit: '>=0.10.1' typing_extensions: '>=3.10.0' - url: https://repo.prefix.dev/conda-forge/noarch/pylint-3.3.6-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pylint-3.3.7-pyhe01879c_0.conda hash: - md5: 8242cc62822cc8a17f53d24d4efa75f4 - sha256: 3e3e35b2cbb4b1ca3063fc2d6f44a85ac189e0935f00ed8fbe8e4713c0d00b99 + md5: fad6b90165dcf39e3ac79de5dbc030a8 + sha256: 6a1dc262763220c9dc046400d8655ebe58ad4d81e872be7264af5137f906e220 category: dev optional: true - name: pymatsolver @@ -3482,43 +3499,45 @@ package: category: main optional: false - name: pytest - version: 8.3.5 + version: 8.4.1 manager: conda platform: linux-64 dependencies: - colorama: '' - exceptiongroup: '>=1.0.0rc8' - iniconfig: '' - packaging: '' - pluggy: <2,>=1.5 + colorama: '>=0.4' + exceptiongroup: '>=1' + iniconfig: '>=1' + packaging: '>=20' + pluggy: '>=1.5,<2' + pygments: '>=2.7.2' python: '>=3.9' tomli: '>=1' - url: https://repo.prefix.dev/conda-forge/noarch/pytest-8.3.5-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytest-8.4.1-pyhd8ed1ab_0.conda hash: - md5: c3c9316209dec74a705a36797970c6be - sha256: 963524de7340c56615583ba7b97a6beb20d5c56a59defb59724dc2a3105169c9 + md5: a49c2283f24696a7b30367b7346a0144 + sha256: 93e267e4ec35353e81df707938a6527d5eb55c97bf54c3b87229b69523afb59d category: dev optional: true - name: pytest - version: 8.3.5 + version: 8.4.1 manager: conda platform: win-64 dependencies: - colorama: '' - exceptiongroup: '>=1.0.0rc8' - iniconfig: '' - packaging: '' - pluggy: <2,>=1.5 + colorama: '>=0.4' + exceptiongroup: '>=1' + iniconfig: '>=1' + packaging: '>=20' + pluggy: '>=1.5,<2' + pygments: '>=2.7.2' python: '>=3.9' tomli: '>=1' - url: https://repo.prefix.dev/conda-forge/noarch/pytest-8.3.5-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytest-8.4.1-pyhd8ed1ab_0.conda hash: - md5: c3c9316209dec74a705a36797970c6be - sha256: 963524de7340c56615583ba7b97a6beb20d5c56a59defb59724dc2a3105169c9 + md5: a49c2283f24696a7b30367b7346a0144 + sha256: 93e267e4ec35353e81df707938a6527d5eb55c97bf54c3b87229b69523afb59d category: dev optional: true - name: pytest-cov - version: 6.1.1 + version: 6.2.1 manager: conda platform: linux-64 dependencies: @@ -3526,14 +3545,14 @@ package: pytest: '>=4.6' python: '>=3.9' toml: '' - url: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-6.1.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-6.2.1-pyhd8ed1ab_0.conda hash: - md5: 1e35d8f975bc0e984a19819aa91c440a - sha256: 9961a1524f63d10bc29efdc52013ec06b0e95fb2619a250e250ff3618261d5cd + md5: ce978e1b9ed8b8d49164e90a5cdc94cd + sha256: 3a9fc07be76bc67aef355b78816b5117bfe686e7d8c6f28b45a1f89afe104761 category: dev optional: true - name: pytest-cov - version: 6.1.1 + version: 6.2.1 manager: conda platform: win-64 dependencies: @@ -3541,14 +3560,14 @@ package: pytest: '>=4.6' python: '>=3.9' toml: '' - url: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-6.1.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-6.2.1-pyhd8ed1ab_0.conda hash: - md5: 1e35d8f975bc0e984a19819aa91c440a - sha256: 9961a1524f63d10bc29efdc52013ec06b0e95fb2619a250e250ff3618261d5cd + md5: ce978e1b9ed8b8d49164e90a5cdc94cd + sha256: 3a9fc07be76bc67aef355b78816b5117bfe686e7d8c6f28b45a1f89afe104761 category: dev optional: true - name: python - version: 3.11.12 + version: 3.11.13 manager: conda platform: linux-64 dependencies: @@ -3560,7 +3579,7 @@ package: libgcc: '>=13' liblzma: '>=5.8.1,<6.0a0' libnsl: '>=2.0.1,<2.1.0a0' - libsqlite: '>=3.49.1,<4.0a0' + libsqlite: '>=3.50.0,<4.0a0' libuuid: '>=2.38.1,<3.0a0' libxcrypt: '>=4.4.36' libzlib: '>=1.3.1,<2.0a0' @@ -3570,14 +3589,14 @@ package: readline: '>=8.2,<9.0a0' tk: '>=8.6.13,<8.7.0a0' tzdata: '' - url: https://repo.prefix.dev/conda-forge/linux-64/python-3.11.12-h9e4cc4f_0_cpython.conda + url: https://repo.prefix.dev/conda-forge/linux-64/python-3.11.13-h9e4cc4f_0_cpython.conda hash: - md5: b61d4fbf583b8393d9d00ec106ad3658 - sha256: 028a03968eb101a681fa4966b2c52e93c8db1e934861f8d108224f51ba2c1bc9 + md5: 8c399445b6dc73eab839659e6c7b5ad1 + sha256: 9979a7d4621049388892489267139f1aa629b10c26601ba5dce96afc2b1551d4 category: main optional: false - name: python - version: 3.11.12 + version: 3.11.13 manager: conda platform: win-64 dependencies: @@ -3585,7 +3604,7 @@ package: libexpat: '>=2.7.0,<3.0a0' libffi: '>=3.4.6,<3.5.0a0' liblzma: '>=5.8.1,<6.0a0' - libsqlite: '>=3.49.1,<4.0a0' + libsqlite: '>=3.50.0,<4.0a0' libzlib: '>=1.3.1,<2.0a0' openssl: '>=3.5.0,<4.0a0' pip: '' @@ -3594,10 +3613,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/python-3.11.12-h3f84c4b_0_cpython.conda + url: https://repo.prefix.dev/conda-forge/win-64/python-3.11.13-h3f84c4b_0_cpython.conda hash: - md5: c1f91331274f591340e2f50e737dfbe9 - sha256: 41e1c07eecff9436b9bb27724822229b2da6073af8461ede6c81b508c0677c56 + md5: bedbb6f7bb654839719cd528f9b298ad + sha256: 723dbca1384f30bd2070f77dd83eefd0e8d7e4dda96ac3332fbf8fe5573a8abb category: main optional: false - name: python-dateutil @@ -3786,7 +3805,7 @@ package: category: dev optional: true - name: requests - version: 2.32.3 + version: 2.32.4 manager: conda platform: linux-64 dependencies: @@ -3795,14 +3814,14 @@ package: idna: '>=2.5,<4' python: '>=3.9' urllib3: '>=1.21.1,<3' - url: https://repo.prefix.dev/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/requests-2.32.4-pyhd8ed1ab_0.conda hash: - md5: a9b9368f3701a417eac9edbcae7cb737 - sha256: d701ca1136197aa121bbbe0e8c18db6b5c94acbd041c2b43c70e5ae104e1d8ad + md5: f6082eae112814f1447b56a5e1f6ed05 + sha256: 9866aaf7a13c6cfbe665ec7b330647a0fb10a81e6f9b8fee33642232a1920e18 category: dev optional: true - name: requests - version: 2.32.3 + version: 2.32.4 manager: conda platform: win-64 dependencies: @@ -3811,10 +3830,10 @@ package: idna: '>=2.5,<4' python: '>=3.9' urllib3: '>=1.21.1,<3' - url: https://repo.prefix.dev/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/requests-2.32.4-pyhd8ed1ab_0.conda hash: - md5: a9b9368f3701a417eac9edbcae7cb737 - sha256: d701ca1136197aa121bbbe0e8c18db6b5c94acbd041c2b43c70e5ae104e1d8ad + md5: f6082eae112814f1447b56a5e1f6ed05 + sha256: 9866aaf7a13c6cfbe665ec7b330647a0fb10a81e6f9b8fee33642232a1920e18 category: dev optional: true - name: rtree @@ -3898,7 +3917,7 @@ package: libgfortran5: '>=13.3.0' liblapack: '>=3.9.0,<4.0a0' libstdcxx: '>=13' - numpy: '>=1.23.5' + numpy: <2.3 python: '>=3.11,<3.12.0a0' python_abi: 3.11.* url: https://repo.prefix.dev/conda-forge/linux-64/scipy-1.14.1-py311he9a78e4_2.conda @@ -3915,7 +3934,7 @@ package: libblas: '>=3.9.0,<4.0a0' libcblas: '>=3.9.0,<4.0a0' liblapack: '>=3.9.0,<4.0a0' - numpy: '>=1.23.5' + numpy: <2.3 python: '>=3.11,<3.12.0a0' python_abi: 3.11.* ucrt: '>=10.0.20348.0' @@ -3928,27 +3947,27 @@ package: category: main optional: false - name: setuptools - version: 80.1.0 + version: 80.9.0 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/setuptools-80.1.0-pyhff2d567_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda hash: - md5: f6f72d0837c79eaec77661be43e8a691 - sha256: 777d34ed359cedd5a5004c930077c101bb3b70e5fbb04d29da5058d75b0ba487 + md5: 4de79c071274a53dcaf2a8c749d1499e + sha256: 972560fcf9657058e3e1f97186cc94389144b46dbdf58c807ce62e83f977e863 category: main optional: false - name: setuptools - version: 80.1.0 + version: 80.9.0 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/setuptools-80.1.0-pyhff2d567_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda hash: - md5: f6f72d0837c79eaec77661be43e8a691 - sha256: 777d34ed359cedd5a5004c930077c101bb3b70e5fbb04d29da5058d75b0ba487 + md5: 4de79c071274a53dcaf2a8c749d1499e + sha256: 972560fcf9657058e3e1f97186cc94389144b46dbdf58c807ce62e83f977e863 category: main optional: false - name: six @@ -3976,27 +3995,27 @@ package: category: main optional: false - name: snowballstemmer - version: 2.2.0 + version: 3.0.1 manager: conda platform: linux-64 dependencies: - python: '>=2' - url: https://repo.prefix.dev/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2 + python: '>=3.9' + url: https://repo.prefix.dev/conda-forge/noarch/snowballstemmer-3.0.1-pyhd8ed1ab_0.conda hash: - md5: 4d22a9315e78c6827f806065957d566e - sha256: a0fd916633252d99efb6223b1050202841fa8d2d53dacca564b0ed77249d3228 + md5: 755cf22df8693aa0d1aec1c123fa5863 + sha256: 17007a4cfbc564dc3e7310dcbe4932c6ecb21593d4fec3c68610720f19e73fb2 category: dev optional: true - name: snowballstemmer - version: 2.2.0 + version: 3.0.1 manager: conda platform: win-64 dependencies: - python: '>=2' - url: https://repo.prefix.dev/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2 + python: '>=3.9' + url: https://repo.prefix.dev/conda-forge/noarch/snowballstemmer-3.0.1-pyhd8ed1ab_0.conda hash: - md5: 4d22a9315e78c6827f806065957d566e - sha256: a0fd916633252d99efb6223b1050202841fa8d2d53dacca564b0ed77249d3228 + md5: 755cf22df8693aa0d1aec1c123fa5863 + sha256: 17007a4cfbc564dc3e7310dcbe4932c6ecb21593d4fec3c68610720f19e73fb2 category: dev optional: true - name: sortedcontainers @@ -4318,12 +4337,13 @@ package: manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - libzlib: '>=1.2.13,<2.0.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=13' + libzlib: '>=1.3.1,<2.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_hd72426e_102.conda hash: - md5: d453b98d9c83e71da0741bb0ff4d76bc - sha256: e0569c9caa68bf476bead1bed3d79650bb080b532c64a4af7d8ca286c08dea4e + md5: a0116df4f4ed05c303811a837d5b39d8 + sha256: a84ff687119e6d8752346d1d408d5cf360dee0badd487a472aa8ddedfdc219e1 category: main optional: false - name: tk @@ -4334,10 +4354,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/tk-8.6.13-h5226925_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/tk-8.6.13-h2c6b04d_2.conda hash: - md5: fc048363eb8f03cd1737600a5d08aafe - sha256: 2c4e914f521ccb2718946645108c9bd3fc3216ba69aea20c2c3cedbd8db32bb1 + md5: ebd0e761de9aa879a51d22cc721bd095 + sha256: e3614b0eb4abcc70d98eae159db59d9b4059ed743ef402081151a948dce95896 category: main optional: false - name: toml @@ -4389,27 +4409,27 @@ package: category: dev optional: true - name: tomlkit - version: 0.13.2 + version: 0.13.3 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.2-pyha770c72_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.3-pyha770c72_0.conda hash: - md5: 1d9ab4fc875c52db83f9c9b40af4e2c8 - sha256: 986fae65f5568e95dbf858d08d77a0f9cca031345a98550f1d4b51d36d8811e2 + md5: 146402bf0f11cbeb8f781fa4309a95d3 + sha256: f8d3b49c084831a20923f66826f30ecfc55a4cd951e544b7213c692887343222 category: dev optional: true - name: tomlkit - version: 0.13.2 + version: 0.13.3 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.2-pyha770c72_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.3-pyha770c72_0.conda hash: - md5: 1d9ab4fc875c52db83f9c9b40af4e2c8 - sha256: 986fae65f5568e95dbf858d08d77a0f9cca031345a98550f1d4b51d36d8811e2 + md5: 146402bf0f11cbeb8f781fa4309a95d3 + sha256: f8d3b49c084831a20923f66826f30ecfc55a4cd951e544b7213c692887343222 category: dev optional: true - name: toolz @@ -4437,7 +4457,7 @@ package: category: main optional: false - name: tornado - version: 6.4.2 + version: 6.5.1 manager: conda platform: linux-64 dependencies: @@ -4445,14 +4465,14 @@ package: libgcc: '>=13' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://repo.prefix.dev/conda-forge/linux-64/tornado-6.4.2-py311h9ecbd09_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/tornado-6.5.1-py311h9ecbd09_0.conda hash: - md5: df3aee9c3e44489257a840b8354e77b9 - sha256: afa3489113154b5cb0724b0bf120b62df91f426dabfe5d02f2ba09e90d346b28 + md5: 24e9f474abd101554b7a91313b9dfad6 + sha256: 66cc98dbf7aafe11a4cb886a8278a559c1616c098ee9f36d41697eaeb0830a4d category: main optional: false - name: tornado - version: 6.4.2 + version: 6.5.1 manager: conda platform: win-64 dependencies: @@ -4461,10 +4481,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/tornado-6.4.2-py311he736701_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/tornado-6.5.1-py311he736701_0.conda hash: - md5: 7e33077ce1bc0bf45c45a92e37432f16 - sha256: 7e313f1724e5eb7d13f7a1ebd6026a378f3f58a638ba7cdc3bd452c01323bb29 + md5: 3b58e6c2e18a83cf64ecc550513b940c + sha256: c7b28b96f21fa9cf675b051fe3039682038debf69ab8a3aa25cfdf3fa4aa9f8e category: main optional: false - name: tqdm @@ -4520,77 +4540,77 @@ package: category: main optional: false - name: typing-extensions - version: 4.13.2 + version: 4.14.0 manager: conda platform: linux-64 dependencies: - typing_extensions: ==4.13.2 - url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.13.2-h0e9735f_0.conda + typing_extensions: ==4.14.0 + url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.14.0-h32cad80_0.conda hash: - md5: 568ed1300869dca0ba09fb750cda5dbb - sha256: 4865fce0897d3cb0ffc8998219157a8325f6011c136e6fd740a9a6b169419296 + md5: a1cdd40fc962e2f7944bc19e01c7e584 + sha256: b8cabfa54432b0f124c0af6b6facdf8110892914fa841ac2e80ab65ac52c1ba4 category: main optional: false - name: typing-extensions - version: 4.13.2 + version: 4.14.0 manager: conda platform: win-64 dependencies: - typing_extensions: ==4.13.2 - url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.13.2-h0e9735f_0.conda + typing_extensions: ==4.14.0 + url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.14.0-h32cad80_0.conda hash: - md5: 568ed1300869dca0ba09fb750cda5dbb - sha256: 4865fce0897d3cb0ffc8998219157a8325f6011c136e6fd740a9a6b169419296 + md5: a1cdd40fc962e2f7944bc19e01c7e584 + sha256: b8cabfa54432b0f124c0af6b6facdf8110892914fa841ac2e80ab65ac52c1ba4 category: main optional: false - name: typing-inspection - version: 0.4.0 + version: 0.4.1 manager: conda platform: linux-64 dependencies: python: '>=3.9' typing_extensions: '>=4.12.0' - url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.1-pyhd8ed1ab_0.conda hash: - md5: c5c76894b6b7bacc888ba25753bc8677 - sha256: 172f971d70e1dbb978f6061d3f72be463d0f629155338603450d8ffe87cbf89d + md5: e0c3cd765dc15751ee2f0b03cd015712 + sha256: 4259a7502aea516c762ca8f3b8291b0d4114e094bdb3baae3171ccc0900e722f category: main optional: false - name: typing-inspection - version: 0.4.0 + version: 0.4.1 manager: conda platform: win-64 dependencies: python: '>=3.9' typing_extensions: '>=4.12.0' - url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.1-pyhd8ed1ab_0.conda hash: - md5: c5c76894b6b7bacc888ba25753bc8677 - sha256: 172f971d70e1dbb978f6061d3f72be463d0f629155338603450d8ffe87cbf89d + md5: e0c3cd765dc15751ee2f0b03cd015712 + sha256: 4259a7502aea516c762ca8f3b8291b0d4114e094bdb3baae3171ccc0900e722f category: main optional: false - name: typing_extensions - version: 4.13.2 + version: 4.14.0 manager: conda platform: linux-64 dependencies: - python: '' - url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.13.2-pyh29332c3_0.conda + python: '>=3.9' + url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.14.0-pyhe01879c_0.conda hash: - md5: 83fc6ae00127671e301c9f44254c31b8 - sha256: a8aaf351e6461de0d5d47e4911257e25eec2fa409d71f3b643bb2f748bde1c08 + md5: 2adcd9bb86f656d3d43bf84af59a1faf + sha256: 8561db52f278c5716b436da6d4ee5521712a49e8f3c70fcae5350f5ebb4be41c category: main optional: false - name: typing_extensions - version: 4.13.2 + version: 4.14.0 manager: conda platform: win-64 dependencies: - python: '' - url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.13.2-pyh29332c3_0.conda + python: '>=3.9' + url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.14.0-pyhe01879c_0.conda hash: - md5: 83fc6ae00127671e301c9f44254c31b8 - sha256: a8aaf351e6461de0d5d47e4911257e25eec2fa409d71f3b643bb2f748bde1c08 + md5: 2adcd9bb86f656d3d43bf84af59a1faf + sha256: 8561db52f278c5716b436da6d4ee5521712a49e8f3c70fcae5350f5ebb4be41c category: main optional: false - name: tzdata @@ -4658,7 +4678,7 @@ package: category: main optional: false - name: urllib3 - version: 2.4.0 + version: 2.5.0 manager: conda platform: linux-64 dependencies: @@ -4667,14 +4687,14 @@ package: pysocks: '>=1.5.6,<2.0,!=1.5.7' python: '>=3.9' zstandard: '>=0.18.0' - url: https://repo.prefix.dev/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/urllib3-2.5.0-pyhd8ed1ab_0.conda hash: - md5: c1e349028e0052c4eea844e94f773065 - sha256: a25403b76f7f03ca1a906e1ef0f88521edded991b9897e7fed56a3e334b3db8c + md5: 436c165519e140cb08d246a4472a9d6a + sha256: 4fb9789154bd666ca74e428d973df81087a697dbb987775bc3198d2215f240f8 category: main optional: false - name: urllib3 - version: 2.4.0 + version: 2.5.0 manager: conda platform: win-64 dependencies: @@ -4683,10 +4703,10 @@ package: pysocks: '>=1.5.6,<2.0,!=1.5.7' python: '>=3.9' zstandard: '>=0.18.0' - url: https://repo.prefix.dev/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/urllib3-2.5.0-pyhd8ed1ab_0.conda hash: - md5: c1e349028e0052c4eea844e94f773065 - sha256: a25403b76f7f03ca1a906e1ef0f88521edded991b9897e7fed56a3e334b3db8c + md5: 436c165519e140cb08d246a4472a9d6a + sha256: 4fb9789154bd666ca74e428d973df81087a697dbb987775bc3198d2215f240f8 category: main optional: false - name: vc @@ -4929,27 +4949,27 @@ package: category: main optional: false - name: zipp - version: 3.21.0 + version: 3.23.0 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/zipp-3.23.0-pyhd8ed1ab_0.conda hash: - md5: 0c3cc595284c5e8f0f9900a9b228a332 - sha256: 567c04f124525c97a096b65769834b7acb047db24b15a56888a322bf3966c3e1 + md5: df5e78d904988eb55042c0c97446079f + sha256: 7560d21e1b021fd40b65bfb72f67945a3fcb83d78ad7ccf37b8b3165ec3b68ad category: main optional: false - name: zipp - version: 3.21.0 + version: 3.23.0 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/zipp-3.23.0-pyhd8ed1ab_0.conda hash: - md5: 0c3cc595284c5e8f0f9900a9b228a332 - sha256: 567c04f124525c97a096b65769834b7acb047db24b15a56888a322bf3966c3e1 + md5: df5e78d904988eb55042c0c97446079f + sha256: 7560d21e1b021fd40b65bfb72f67945a3fcb83d78ad7ccf37b8b3165ec3b68ad category: main optional: false - name: zstandard @@ -5024,12 +5044,12 @@ package: numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@6e21320c89581dccb1635d8460dfe296ec41b6da + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 hash: - sha256: 6e21320c89581dccb1635d8460dfe296ec41b6da + sha256: 91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@6e21320c89581dccb1635d8460dfe296ec41b6da + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 category: main optional: false - name: geoapps-utils @@ -5041,12 +5061,12 @@ package: numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@6e21320c89581dccb1635d8460dfe296ec41b6da + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 hash: - sha256: 6e21320c89581dccb1635d8460dfe296ec41b6da + sha256: 91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@6e21320c89581dccb1635d8460dfe296ec41b6da + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 category: main optional: false - name: geoh5py @@ -5058,12 +5078,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@4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 + url: git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e hash: - sha256: 4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 + sha256: 1190a239fd7406fbe0b73169c3d8406a1aacae3e source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 + url: git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e category: main optional: false - name: geoh5py @@ -5075,16 +5095,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@4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 + url: git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e hash: - sha256: 4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 + sha256: 1190a239fd7406fbe0b73169c3d8406a1aacae3e source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 + url: git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e category: main optional: false - name: mira-simpeg - version: 0.23.0.1a3.dev4+g24027d81b + version: 0.23.0.1a5.dev33+gf72a1367e manager: pip platform: linux-64 dependencies: @@ -5099,16 +5119,16 @@ package: pymatsolver: '>=0.3' scipy: '>=1.8' zarr: '*' - url: git+https://github.com/MiraGeoscience/simpeg.git@24027d81b65df99d5f582acc4497ed33df8a3396 + url: git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 hash: - sha256: 24027d81b65df99d5f582acc4497ed33df8a3396 + sha256: f72a1367edcb2da969002ca06f18f532340b3c27 source: type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@24027d81b65df99d5f582acc4497ed33df8a3396 + url: git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 category: main optional: false - name: mira-simpeg - version: 0.23.0.1a3.dev4+g24027d81b + version: 0.23.0.1a5.dev33+gf72a1367e manager: pip platform: win-64 dependencies: @@ -5123,12 +5143,12 @@ package: pymatsolver: '>=0.3' scipy: '>=1.8' zarr: '*' - url: git+https://github.com/MiraGeoscience/simpeg.git@24027d81b65df99d5f582acc4497ed33df8a3396 + url: git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 hash: - sha256: 24027d81b65df99d5f582acc4497ed33df8a3396 + sha256: f72a1367edcb2da969002ca06f18f532340b3c27 source: type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@24027d81b65df99d5f582acc4497ed33df8a3396 + url: git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 category: main optional: false - name: octree-creation-app @@ -5142,12 +5162,12 @@ package: numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/octree-creation-app.git@e9c99d6fd5d324571a2717990aecb3ed673cbaca + url: git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 hash: - sha256: e9c99d6fd5d324571a2717990aecb3ed673cbaca + sha256: 02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 source: type: url - url: git+https://github.com/MiraGeoscience/octree-creation-app.git@e9c99d6fd5d324571a2717990aecb3ed673cbaca + url: git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 category: main optional: false - name: octree-creation-app @@ -5161,12 +5181,12 @@ package: numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/octree-creation-app.git@e9c99d6fd5d324571a2717990aecb3ed673cbaca + url: git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 hash: - sha256: e9c99d6fd5d324571a2717990aecb3ed673cbaca + sha256: 02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 source: type: url - url: git+https://github.com/MiraGeoscience/octree-creation-app.git@e9c99d6fd5d324571a2717990aecb3ed673cbaca + url: git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 category: main optional: false - name: param-sweeps @@ -5209,7 +5229,7 @@ package: distributed: '>=2025.3,<2025.4.dev' geoapps-utils: 0.6.0-alpha.1 geoh5py: 0.12.0a1 - mira-simpeg: 0.23.0.1a3.dev4+g24027d81b + mira-simpeg: 0.23.0.1a5.dev33+gf72a1367e numpy: '>=1.26.0,<1.27.0' octree-creation-app: 0.4.0-alpha.1 param-sweeps: 0.3.0-alpha.1 @@ -5219,12 +5239,12 @@ package: scikit-learn: '>=1.4.0,<1.5.0' scipy: '>=1.14.0,<1.15.0' tqdm: '>=4.66.1,<5.0.0' - url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@2d510ad712a20663dc0abb9afbead41537d10d91 + url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@25197892deadbaeb728441753ab9fba646ce5e0b hash: - sha256: 2d510ad712a20663dc0abb9afbead41537d10d91 + sha256: 25197892deadbaeb728441753ab9fba646ce5e0b source: type: url - url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@2d510ad712a20663dc0abb9afbead41537d10d91 + url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@25197892deadbaeb728441753ab9fba646ce5e0b category: main optional: false - name: simpeg-drivers @@ -5237,7 +5257,7 @@ package: distributed: '>=2025.3,<2025.4.dev' geoapps-utils: 0.6.0-alpha.1 geoh5py: 0.12.0a1 - mira-simpeg: 0.23.0.1a3.dev4+g24027d81b + mira-simpeg: 0.23.0.1a5.dev33+gf72a1367e numpy: '>=1.26.0,<1.27.0' octree-creation-app: 0.4.0-alpha.1 param-sweeps: 0.3.0-alpha.1 @@ -5247,11 +5267,11 @@ package: scikit-learn: '>=1.4.0,<1.5.0' scipy: '>=1.14.0,<1.15.0' tqdm: '>=4.66.1,<5.0.0' - url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@2d510ad712a20663dc0abb9afbead41537d10d91 + url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@25197892deadbaeb728441753ab9fba646ce5e0b hash: - sha256: 2d510ad712a20663dc0abb9afbead41537d10d91 + sha256: 25197892deadbaeb728441753ab9fba646ce5e0b source: type: url - url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@2d510ad712a20663dc0abb9afbead41537d10d91 + url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@25197892deadbaeb728441753ab9fba646ce5e0b category: main optional: false diff --git a/py-3.12.conda-lock.yml b/py-3.12.conda-lock.yml index febb1c7..6bc8539 100644 --- a/py-3.12.conda-lock.yml +++ b/py-3.12.conda-lock.yml @@ -129,29 +129,29 @@ package: category: main optional: false - name: astroid - version: 3.3.9 + version: 3.3.10 manager: conda platform: linux-64 dependencies: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/astroid-3.3.9-py312h7900ff3_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/astroid-3.3.10-py312h7900ff3_0.conda hash: - md5: ebbc44c436cf6fda9681e871df39097f - sha256: bcb0b7965d305d2f9159a2f29e4236e3c90d537f45c5facd204c202490974ce2 + md5: 60b9f877a7d36f146c30eb6683e4611b + sha256: e6f627d1e72fae042e072081b9419db3efeddca29f0bdc5bb2b12ed7d298ff2f category: dev optional: true - name: astroid - version: 3.3.9 + version: 3.3.10 manager: conda platform: win-64 dependencies: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/win-64/astroid-3.3.9-py312h2e8e312_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/astroid-3.3.10-py312h2e8e312_0.conda hash: - md5: a31a121fab1af9b1a6550c7063d75847 - sha256: d38222880edd3f171877fa236a80d9eb9c741cdb0c499c12276ca621ec653137 + md5: 2a463d7ac649b150470f4f2034e4f048 + sha256: 8d060ee8643a76d6774b4a5a53c40d7dc8ae43afd42a34e0424459c75ba12da4 category: dev optional: true - name: babel @@ -190,10 +190,10 @@ package: libbrotlidec: 1.1.0 libbrotlienc: 1.1.0 libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/brotli-1.1.0-hb9d3cd8_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/brotli-1.1.0-hb9d3cd8_3.conda hash: - md5: 98514fe74548d768907ce7a13f680e8f - sha256: fcb0b5b28ba7492093e54f3184435144e074dfceab27ac8e6a9457e736565b0b + md5: 5d08a0ac29e6a5a984817584775d4131 + sha256: c969baaa5d7a21afb5ed4b8dd830f82b78e425caaa13d717766ed07a61630bec category: main optional: false - name: brotli @@ -207,10 +207,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/brotli-1.1.0-h2466b09_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/brotli-1.1.0-h2466b09_3.conda hash: - md5: 378f1c9421775dfe644731cb121c8979 - sha256: d8fd7d1b446706776117d2dcad1c0289b9f5e1521cb13405173bad38568dd252 + md5: c2a23d8a8986c72148c63bdf855ac99a + sha256: d57cd6ea705c9d2a8a2721f083de247501337e459f5498726b564cfca138e192 category: main optional: false - name: brotli-bin @@ -222,10 +222,10 @@ package: libbrotlidec: 1.1.0 libbrotlienc: 1.1.0 libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/brotli-bin-1.1.0-hb9d3cd8_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/brotli-bin-1.1.0-hb9d3cd8_3.conda hash: - md5: c63b5e52939e795ba8d26e35d767a843 - sha256: 261364d7445513b9a4debc345650fad13c627029bfc800655a266bf1e375bc65 + md5: 58178ef8ba927229fba6d84abf62c108 + sha256: ab74fa8c3d1ca0a055226be89e99d6798c65053e2d2d3c6cb380c574972cd4a7 category: main optional: false - name: brotli-bin @@ -238,10 +238,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/brotli-bin-1.1.0-h2466b09_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/brotli-bin-1.1.0-h2466b09_3.conda hash: - md5: d22534a9be5771fc58eb7564947f669d - sha256: f3bf2893613540ac256c68f211861c4de618d96291719e32178d894114ac2bc2 + md5: c7c345559c1ac25eede6dccb7b931202 + sha256: 85aac1c50a426be6d0cc9fd52480911d752f4082cb78accfdb257243e572c7eb category: main optional: false - name: brotli-python @@ -254,10 +254,10 @@ package: libstdcxx: '>=13' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/brotli-python-1.1.0-py312h2ec8cdc_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/brotli-python-1.1.0-py312h2ec8cdc_3.conda hash: - md5: b0b867af6fc74b2a0aa206da29c0f3cf - sha256: f2a59ccd20b4816dea9a2a5cb917eb69728271dbf1aeab4e1b7e609330a50b6f + md5: a32e0c069f6c3dcac635f7b0b0dac67e + sha256: dc27c58dc717b456eee2d57d8bc71df3f562ee49368a2351103bc8f1b67da251 category: main optional: false - name: brotli-python @@ -270,10 +270,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/brotli-python-1.1.0-py312h275cf98_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/brotli-python-1.1.0-py312h275cf98_3.conda hash: - md5: a99aec1ac46794a5fb1cd3cf5d2b6110 - sha256: f83baa6f6bcba7b73f6921d5c1aa95ffc5d8b246ade933ade79250de0a4c9c4c + md5: a87a39f9eb9fd5f171b13d8c79f7a99a + sha256: d5c18a90220853c86f7cc23db62b32b22c6c5fe5d632bc111fc1e467c9fd776f category: main optional: false - name: bzip2 @@ -317,27 +317,27 @@ package: category: main optional: false - name: ca-certificates - version: 2025.4.26 + version: 2025.6.15 manager: conda platform: linux-64 dependencies: __unix: '' - url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.4.26-hbd8a1cb_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.6.15-hbd8a1cb_0.conda hash: - md5: 95db94f75ba080a22eb623590993167b - sha256: 2a70ed95ace8a3f8a29e6cd1476a943df294a7111dfb3e152e3478c4c889b7ac + md5: 72525f07d72806e3b639ad4504c30ce5 + sha256: 7cfec9804c84844ea544d98bda1d9121672b66ff7149141b8415ca42dfcd44f6 category: main optional: false - name: ca-certificates - version: 2025.4.26 + version: 2025.6.15 manager: conda platform: win-64 dependencies: __win: '' - url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.4.26-h4c7d964_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.6.15-h4c7d964_0.conda hash: - md5: 23c7fd5062b48d8294fc7f61bf157fba - sha256: 1454f3f53a3b828d3cb68a3440cb0fa9f1cc0e3c8c26e9e023773dc19d88cc06 + md5: b01649832f7bc7ff94f8df8bd2ee6457 + sha256: 065241ba03ef3ee8200084c075cbff50955a7e711765395ff34876dbc51a6bb9 category: main optional: false - name: cached-property @@ -389,27 +389,27 @@ package: category: main optional: false - name: certifi - version: 2025.1.31 + version: 2025.6.15 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.6.15-pyhd8ed1ab_0.conda hash: - md5: c207fa5ac7ea99b149344385a9c0880d - sha256: 42a78446da06a2568cb13e69be3355169fbd0ea424b00fc80b7d840f5baaacf3 + md5: 781d068df0cc2407d4db0ecfbb29225b + sha256: d71c85835813072cd6d7ce4b24be34215cd90c104785b15a5d58f4cd0cb50778 category: main optional: false - name: certifi - version: 2025.1.31 + version: 2025.6.15 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.6.15-pyhd8ed1ab_0.conda hash: - md5: c207fa5ac7ea99b149344385a9c0880d - sha256: 42a78446da06a2568cb13e69be3355169fbd0ea424b00fc80b7d840f5baaacf3 + md5: 781d068df0cc2407d4db0ecfbb29225b + sha256: d71c85835813072cd6d7ce4b24be34215cd90c104785b15a5d58f4cd0cb50778 category: main optional: false - name: cffi @@ -447,54 +447,54 @@ package: category: main optional: false - name: charset-normalizer - version: 3.4.1 + version: 3.4.2 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.2-pyhd8ed1ab_0.conda hash: - md5: e83a31202d1c0a000fce3e9cf3825875 - sha256: 4e0ee91b97e5de3e74567bdacea27f0139709fceca4db8adffbe24deffccb09b + md5: 40fe4284b8b5835a9073a645139f35af + sha256: 535ae5dcda8022e31c6dc063eb344c80804c537a5a04afba43a845fa6fa130f5 category: dev optional: true - name: charset-normalizer - version: 3.4.1 + version: 3.4.2 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.2-pyhd8ed1ab_0.conda hash: - md5: e83a31202d1c0a000fce3e9cf3825875 - sha256: 4e0ee91b97e5de3e74567bdacea27f0139709fceca4db8adffbe24deffccb09b + md5: 40fe4284b8b5835a9073a645139f35af + sha256: 535ae5dcda8022e31c6dc063eb344c80804c537a5a04afba43a845fa6fa130f5 category: dev optional: true - name: click - version: 8.1.8 + version: 8.2.1 manager: conda platform: linux-64 dependencies: __unix: '' - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/click-8.1.8-pyh707e725_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/click-8.2.1-pyh707e725_0.conda hash: - md5: f22f4d4970e09d68a10b922cbb0408d3 - sha256: c920d23cd1fcf565031c679adb62d848af60d6fbb0edc2d50ba475cea4f0d8ab + md5: 94b550b8d3a614dbd326af798c7dfb40 + sha256: 8aee789c82d8fdd997840c952a586db63c6890b00e88c4fb6e80a38edd5f51c0 category: main optional: false - name: click - version: 8.1.8 + version: 8.2.1 manager: conda platform: win-64 dependencies: __win: '' colorama: '' - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/click-8.1.8-pyh7428d3b_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/click-8.2.1-pyh7428d3b_0.conda hash: - md5: 90e5571556f7a45db92ee51cb8f97af6 - sha256: c889ed359ae47eead4ffe8927b7206b22c55e67d6e74a9044c23736919d61e8d + md5: 3a59475037bc09da916e4062c5cad771 + sha256: 20c2d8ea3d800485245b586a28985cba281dd6761113a49d7576f6db92a0a891 category: main optional: false - name: cloudpickle @@ -580,7 +580,7 @@ package: category: main optional: false - name: coverage - version: 7.8.0 + version: 7.9.1 manager: conda platform: linux-64 dependencies: @@ -589,14 +589,14 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* tomli: '' - url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.8.0-py312h178313f_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.9.1-py312h178313f_0.conda hash: - md5: d0fca021e354cc96455021852a1fad6d - sha256: 029278c43bd2a6ac36bfd93fde69a0cde6a4ee94c0af72d0d51236fbb1fc3720 + md5: 4c18b79fa2a3371557ed3663876e5dcc + sha256: bef32c5830b7701705660ef18d5d6ad7c597ebab196954c012e8a1cb4af0d3bc category: dev optional: true - name: coverage - version: 7.8.0 + version: 7.9.1 manager: conda platform: win-64 dependencies: @@ -606,10 +606,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.8.0-py312h31fea79_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.9.1-py312h31fea79_0.conda hash: - md5: a52895ace8c17bc01ceba443d52325c6 - sha256: 7815726b2b45065af4570deca428f48799ce1f49de7d8b5e4f6b7999f6a4dc2f + md5: 05437668629deb7fdb7af513d43249c0 + sha256: d8a7874de0cd78242cd24b592c41ca2fab7898eedf3b6aa9e7243027ee9aed22 category: dev optional: true - name: cycler @@ -760,7 +760,7 @@ package: category: dev optional: true - name: discretize - version: 0.11.2 + version: 0.11.3 manager: conda platform: linux-64 dependencies: @@ -771,14 +771,14 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* scipy: '>=1.8' - url: https://repo.prefix.dev/conda-forge/linux-64/discretize-0.11.2-py312hc39e661_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/discretize-0.11.3-py312hc39e661_0.conda hash: - md5: e9c071bcefeb0f70dd18a20f88bb844f - sha256: 605ee14cdad67f8797a54853d8030295b522ba478e6759a5bc1f4fec3ac2e225 + md5: f4156fbef76257cc385c0ad71444079c + sha256: ff530b6e50d2b9bc8f60f7261987abccc97afe868b35b70479a47f0edd3fe2bb category: main optional: false - name: discretize - version: 0.11.2 + version: 0.11.3 manager: conda platform: win-64 dependencies: @@ -789,10 +789,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/discretize-0.11.2-py312hbaa7e33_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/discretize-0.11.3-py312hbaa7e33_0.conda hash: - md5: 43aa663b1fd1787fbbeca5a9a954dc57 - sha256: 259979385edfa18bcbb5b9776490d53026a6bfaf6f738369b49b0a0b2a839303 + md5: 95022b30369053ba80ed47dc00ebc0e3 + sha256: 61a69ffd1484d45d4adf21d1bb4b13e3cf65a74570b7694563ff45376ee9d222 category: main optional: false - name: distributed @@ -878,27 +878,29 @@ package: category: dev optional: true - name: exceptiongroup - version: 1.2.2 + version: 1.3.0 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda + typing_extensions: '>=4.6.0' + url: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda hash: - md5: a16662747cdeb9abbac74d0057cc976e - sha256: cbde2c64ec317118fc06b223c5fd87c8a680255e7348dd60e7b292d2e103e701 + md5: 72e42d28960d875c7654614f8b50939a + sha256: ce61f4f99401a4bd455b89909153b40b9c823276aefcbb06f2044618696009ca category: dev optional: true - name: exceptiongroup - version: 1.2.2 + version: 1.3.0 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda + typing_extensions: '>=4.6.0' + url: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda hash: - md5: a16662747cdeb9abbac74d0057cc976e - sha256: cbde2c64ec317118fc06b223c5fd87c8a680255e7348dd60e7b292d2e103e701 + md5: 72e42d28960d875c7654614f8b50939a + sha256: ce61f4f99401a4bd455b89909153b40b9c823276aefcbb06f2044618696009ca category: dev optional: true - name: fasteners @@ -926,7 +928,7 @@ package: category: main optional: false - name: fonttools - version: 4.57.0 + version: 4.58.4 manager: conda platform: linux-64 dependencies: @@ -937,14 +939,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.57.0-py312h178313f_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/fonttools-4.58.4-py312h178313f_0.conda hash: - md5: 97907388593b27ac01237a1023d58d3d - sha256: 3d230ff0d9e9fc482de22b807adf017736bd6d19b932eea68d68eeb52b139e04 + md5: 223a4616e3db7336569eafefac04ebbf + sha256: aa29952ac29ab4c4dad091794513241c1f732c55c58ba109f02550bc83081dc9 category: main optional: false - name: fonttools - version: 4.57.0 + version: 4.58.4 manager: conda platform: win-64 dependencies: @@ -956,10 +958,10 @@ package: unicodedata2: '>=15.1.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/fonttools-4.57.0-py312h31fea79_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/fonttools-4.58.4-py312h31fea79_0.conda hash: - md5: 5bcdfae9aaf166ad83edebfa2f6359e2 - sha256: eaa9fa1c6c0f290a24066a170460e292b111cb4c67c8d7cb7eb54ca68c608646 + md5: ea00f492c19ac1799f510617ef502e0e + sha256: 4d3d830517f29e43e87e7f6998fd63c64a9bab504ee4441ab7c86ef49af3cb6b category: main optional: false - name: freetype @@ -989,27 +991,27 @@ package: category: main optional: false - name: fsspec - version: 2025.3.2 + version: 2025.5.1 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2025.3.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2025.5.1-pyhd8ed1ab_0.conda hash: - md5: 9c40692c3d24c7aaf335f673ac09d308 - sha256: 2040d4640708bd6ab9ed6cb9901267441798c44974bc63c9b6c1cb4c1891d825 + md5: 2d2c9ef879a7e64e2dc657b09272c2b6 + sha256: cd6ae92ae5aa91a7e58cf39f1442d4821279f43f1c9499d15f45558d4793d1e0 category: main optional: false - name: fsspec - version: 2025.3.2 + version: 2025.5.1 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2025.3.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2025.5.1-pyhd8ed1ab_0.conda hash: - md5: 9c40692c3d24c7aaf335f673ac09d308 - sha256: 2040d4640708bd6ab9ed6cb9901267441798c44974bc63c9b6c1cb4c1891d825 + md5: 2d2c9ef879a7e64e2dc657b09272c2b6 + sha256: cd6ae92ae5aa91a7e58cf39f1442d4821279f43f1c9499d15f45558d4793d1e0 category: main optional: false - name: geoana @@ -1079,78 +1081,78 @@ package: category: main optional: false - name: h5py - version: 3.13.0 + version: 3.14.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' cached-property: '' - hdf5: '>=1.14.3,<1.14.4.0a0' + hdf5: '>=1.14.6,<1.14.7.0a0' libgcc: '>=13' - numpy: '>=1.19,<3' + numpy: '>=1.21,<3' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/h5py-3.13.0-nompi_py312hedeef09_100.conda + url: https://repo.prefix.dev/conda-forge/linux-64/h5py-3.14.0-nompi_py312h3faca00_100.conda hash: - md5: ed73cf6f5e1ce5e823e6efcf54cbdc51 - sha256: 76bb853325f0c756599edb0be014723b01fea61e24817fd2f0b9ddfe4c570c0f + md5: 2e1c2a9e706c74c4dd6f990a680f3f90 + sha256: 9d23b72ee1138e14d379bb4c415cfdfc6944824e1844ff16ebf44e0defd1eddc category: main optional: false - name: h5py - version: 3.13.0 + version: 3.14.0 manager: conda platform: win-64 dependencies: cached-property: '' - hdf5: '>=1.14.3,<1.14.4.0a0' - numpy: '>=1.19,<3' + hdf5: '>=1.14.6,<1.14.7.0a0' + numpy: '>=1.21,<3' 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/h5py-3.13.0-nompi_py312ha036244_100.conda + url: https://repo.prefix.dev/conda-forge/win-64/h5py-3.14.0-nompi_py312h6cc2a29_100.conda hash: - md5: fe41c7e14279ad2729752ddf4e83bc42 - sha256: 63bba52339a880a596ec38c51f08c35249e2db801d7fe6046cd60b3e611ea5b6 + md5: 7505235f79c9deb9e69fba7cca1a7c97 + sha256: 836d84ebf958e74a154406e785b32c973eaad12163f1b7dae2c0448626acea9c category: main optional: false - name: hdf5 - version: 1.14.3 + version: 1.14.6 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libaec: '>=1.1.3,<2.0a0' - libcurl: '>=8.11.1,<9.0a0' + libcurl: '>=8.13.0,<9.0a0' libgcc: '>=13' libgfortran: '' libgfortran5: '>=13.3.0' libstdcxx: '>=13' libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.4.0,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/hdf5-1.14.3-nompi_h2d575fe_109.conda + openssl: '>=3.5.0,<4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/hdf5-1.14.6-nompi_h2d575fe_101.conda hash: - md5: e7a7a6e6f70553a31e6e79c65768d089 - sha256: e8669a6d76d415f4fdbe682507ac3a3b39e8f493d2f2bdc520817f80b7cc0753 + md5: d1f61f912e1968a8ac9834b62fde008d + sha256: b685b9d68e927f446bead1458c0fbf5ac02e6a471ed7606de427605ac647e8d3 category: main optional: false - name: hdf5 - version: 1.14.3 + version: 1.14.6 manager: conda platform: win-64 dependencies: libaec: '>=1.1.3,<2.0a0' - libcurl: '>=8.11.1,<9.0a0' + libcurl: '>=8.13.0,<9.0a0' libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.4.0,<4.0a0' + openssl: '>=3.5.0,<4.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/hdf5-1.14.3-nompi_hb2c4d47_109.conda + url: https://repo.prefix.dev/conda-forge/win-64/hdf5-1.14.6-nompi_hd5d9e70_101.conda hash: - md5: ebb61f3e8b35cc15e78876649b7246f7 - sha256: d5ada33e119cdd62371c06f60eae6f545de7cea793ab83da2fba428bb1d2f813 + md5: ea68eb3a15c51875468475c2647a2d23 + sha256: 64d0ed35edefab9a912084f2806b9c4c4ffe2adcf5225a583088abbaafe5dbae category: main optional: false - name: hpack @@ -1201,6 +1203,20 @@ package: sha256: 77af6f5fe8b62ca07d09ac60127a30d9069fdc3c68d6b256754d0ffb1f7779f8 category: main optional: false +- name: icu + version: '75.1' + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + url: https://repo.prefix.dev/conda-forge/linux-64/icu-75.1-he02047a_0.conda + hash: + md5: 8b189310083baabfb622af68fd9d3ae3 + sha256: 71e750d509f5fa3421087ba88ef9a7b9be11c53174af3aa4d06aff4c18b38e8e + category: main + optional: false - name: idna version: '3.10' manager: conda @@ -1250,29 +1266,29 @@ package: category: dev optional: true - name: importlib-metadata - version: 8.6.1 + version: 8.7.0 manager: conda platform: linux-64 dependencies: python: '>=3.9' - zipp: '>=0.5' - url: https://repo.prefix.dev/conda-forge/noarch/importlib-metadata-8.6.1-pyha770c72_0.conda + zipp: '>=3.20' + url: https://repo.prefix.dev/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda hash: - md5: f4b39bf00c69f56ac01e020ebfac066c - sha256: 598951ebdb23e25e4cec4bbff0ae369cec65ead80b50bc08b441d8e54de5cf03 + md5: 63ccfdc3a3ce25b027b8767eb722fca8 + sha256: c18ab120a0613ada4391b15981d86ff777b5690ca461ea7e9e49531e8f374745 category: main optional: false - name: importlib-metadata - version: 8.6.1 + version: 8.7.0 manager: conda platform: win-64 dependencies: python: '>=3.9' - zipp: '>=0.5' - url: https://repo.prefix.dev/conda-forge/noarch/importlib-metadata-8.6.1-pyha770c72_0.conda + zipp: '>=3.20' + url: https://repo.prefix.dev/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda hash: - md5: f4b39bf00c69f56ac01e020ebfac066c - sha256: 598951ebdb23e25e4cec4bbff0ae369cec65ead80b50bc08b441d8e54de5cf03 + md5: 63ccfdc3a3ce25b027b8767eb722fca8 + sha256: c18ab120a0613ada4391b15981d86ff777b5690ca461ea7e9e49531e8f374745 category: main optional: false - name: iniconfig @@ -1316,11 +1332,10 @@ package: platform: linux-64 dependencies: python: '>=3.9,<4.0' - setuptools: '' - url: https://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_1.conda hash: - md5: a8abfd3f223b1ecb8c699dca974933bd - sha256: 9c5fb97efa0eb32b42564edaacb5edb9a1f82ba8f5f8b135e794960101115b5a + md5: c25d1a27b791dab1797832aafd6a3e9a + sha256: e1d0e81e3c3da5d7854f9f57ffb89d8f4505bb64a2f05bb01d78eff24344a105 category: dev optional: true - name: isort @@ -1329,11 +1344,10 @@ package: platform: win-64 dependencies: python: '>=3.9,<4.0' - setuptools: '' - url: https://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_1.conda hash: - md5: a8abfd3f223b1ecb8c699dca974933bd - sha256: 9c5fb97efa0eb32b42564edaacb5edb9a1f82ba8f5f8b135e794960101115b5a + md5: c25d1a27b791dab1797832aafd6a3e9a + sha256: e1d0e81e3c3da5d7854f9f57ffb89d8f4505bb64a2f05bb01d78eff24344a105 category: dev optional: true - name: jinja2 @@ -1363,29 +1377,29 @@ package: category: main optional: false - name: joblib - version: 1.4.2 + version: 1.5.1 manager: conda platform: linux-64 dependencies: python: '>=3.9' setuptools: '' - url: https://repo.prefix.dev/conda-forge/noarch/joblib-1.4.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/joblib-1.5.1-pyhd8ed1ab_0.conda hash: - md5: bf8243ee348f3a10a14ed0cae323e0c1 - sha256: 51cc2dc491668af0c4d9299b0ab750f16ccf413ec5e2391b924108c1fbacae9b + md5: fb1c14694de51a476ce8636d92b6f42c + sha256: e5a4eca9a5d8adfaa3d51e24eefd1a6d560cb3b33a7e1eee13e410bec457b7ed category: main optional: false - name: joblib - version: 1.4.2 + version: 1.5.1 manager: conda platform: win-64 dependencies: python: '>=3.9' setuptools: '' - url: https://repo.prefix.dev/conda-forge/noarch/joblib-1.4.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/joblib-1.5.1-pyhd8ed1ab_0.conda hash: - md5: bf8243ee348f3a10a14ed0cae323e0c1 - sha256: 51cc2dc491668af0c4d9299b0ab750f16ccf413ec5e2391b924108c1fbacae9b + md5: fb1c14694de51a476ce8636d92b6f42c + sha256: e5a4eca9a5d8adfaa3d51e24eefd1a6d560cb3b33a7e1eee13e410bec457b7ed category: main optional: false - name: keyutils @@ -1500,10 +1514,10 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_4.conda + url: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.43-h1423503_5.conda hash: - md5: 01f8d123c96816249efd255a31ad7712 - sha256: db73f38155d901a610b2320525b9dd3b31e4949215c870685fd92ea61b5ce472 + md5: 6dc9e1305e7d3129af4ad0dabda30e56 + sha256: dcd2b1a065bbf5c54004ddf6551c775a8eb6993c8298ca8a6b92041ed413f785 category: main optional: false - name: lerc @@ -1535,30 +1549,31 @@ package: category: main optional: false - name: libaec - version: 1.1.3 + version: 1.1.4 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://repo.prefix.dev/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=13' + libstdcxx: '>=13' + url: https://repo.prefix.dev/conda-forge/linux-64/libaec-1.1.4-h3f801dc_0.conda hash: - md5: 5e97e271911b8b2001a8b71860c32faa - sha256: 2ef420a655528bca9d269086cf33b7e90d2f54ad941b437fb1ed5eca87cee017 + md5: 01ba04e414e47f95c03d6ddd81fd37be + sha256: 410ab78fe89bc869d435de04c9ffa189598ac15bb0fe1ea8ace8fb1b860a2aa3 category: main optional: false - name: libaec - version: 1.1.3 + version: 1.1.4 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libaec-1.1.3-h63175ca_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libaec-1.1.4-h20038f6_0.conda hash: - md5: 8723000f6ffdbdaef16025f0a01b64c5 - sha256: f5c293d3cfc00f71dfdb64bd65ab53625565f8778fc2d5790575bef238976ebf + md5: 85a2bed45827d77d5b308cb2b165404f + sha256: 0be89085effce9fdcbb6aea7acdb157b18793162f68266ee0a75acf615d4929b category: main optional: false - name: libblas @@ -1592,10 +1607,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlicommon-1.1.0-hb9d3cd8_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlicommon-1.1.0-hb9d3cd8_3.conda hash: - md5: 41b599ed2b02abcfdd84302bff174b23 - sha256: d9db2de60ea917298e658143354a530e9ca5f9c63471c65cf47ab39fd2f429e3 + md5: cb98af5db26e3f482bebb80ce9d947d3 + sha256: 462a8ed6a7bb9c5af829ec4b90aab322f8bcd9d8987f793e6986ea873bbd05cf category: main optional: false - name: libbrotlicommon @@ -1606,10 +1621,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libbrotlicommon-1.1.0-h2466b09_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/libbrotlicommon-1.1.0-h2466b09_3.conda hash: - md5: f7dc9a8f21d74eab46456df301da2972 - sha256: 33e8851c6cc8e2d93059792cd65445bfe6be47e4782f826f01593898ec95764c + md5: cf20c8b8b48ab5252ec64b9c66bfe0a4 + sha256: e70ea4b773fadddda697306a80a29d9cbd36b7001547cd54cbfe9a97a518993f category: main optional: false - name: libbrotlidec @@ -1620,10 +1635,10 @@ package: __glibc: '>=2.17,<3.0.a0' libbrotlicommon: 1.1.0 libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlidec-1.1.0-hb9d3cd8_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlidec-1.1.0-hb9d3cd8_3.conda hash: - md5: 9566f0bd264fbd463002e759b8a82401 - sha256: 2892d512cad096cb03f1b66361deeab58b64e15ba525d6592bb6d609e7045edf + md5: 1c6eecffad553bde44c5238770cfb7da + sha256: 3eb27c1a589cbfd83731be7c3f19d6d679c7a444c3ba19db6ad8bf49172f3d83 category: main optional: false - name: libbrotlidec @@ -1635,10 +1650,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libbrotlidec-1.1.0-h2466b09_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/libbrotlidec-1.1.0-h2466b09_3.conda hash: - md5: 9bae75ce723fa34e98e239d21d752a7e - sha256: 234fc92f4c4f1cf22f6464b2b15bfc872fa583c74bf3ab9539ff38892c43612f + md5: a342933dbc6d814541234c7c81cb5205 + sha256: a35a0db7e3257e011b10ffb371735b2b24074412d0b27c3dab7ca9f2c549cfcf category: main optional: false - name: libbrotlienc @@ -1649,10 +1664,10 @@ package: __glibc: '>=2.17,<3.0.a0' libbrotlicommon: 1.1.0 libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlienc-1.1.0-hb9d3cd8_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlienc-1.1.0-hb9d3cd8_3.conda hash: - md5: 06f70867945ea6a84d35836af780f1de - sha256: 779f58174e99de3600e939fa46eddb453ec5d3c60bb46cdaa8b4c127224dbf29 + md5: 3facafe58f3858eb95527c7d3a3fc578 + sha256: 76e8492b0b0a0d222bfd6081cae30612aa9915e4309396fdca936528ccf314b7 category: main optional: false - name: libbrotlienc @@ -1664,10 +1679,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libbrotlienc-1.1.0-h2466b09_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/libbrotlienc-1.1.0-h2466b09_3.conda hash: - md5: 85741a24d97954a991e55e34bc55990b - sha256: 3d0dd7ef505962f107b7ea8f894e0b3dd01bf46852b362c8a7fc136b039bc9e1 + md5: 7ef0af55d70cbd9de324bb88b7f9d81e + sha256: 9d0703c5a01c10d346587ff0535a0eb81042364333caa4a24a0e4a0c08fd490b category: main optional: false - name: libcblas @@ -1695,7 +1710,7 @@ package: category: main optional: false - name: libcurl - version: 8.13.0 + version: 8.14.1 manager: conda platform: linux-64 dependencies: @@ -1705,16 +1720,16 @@ package: libnghttp2: '>=1.64.0,<2.0a0' libssh2: '>=1.11.1,<2.0a0' libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.4.1,<4.0a0' + openssl: '>=3.5.0,<4.0a0' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libcurl-8.13.0-h332b0f4_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libcurl-8.14.1-h332b0f4_0.conda hash: - md5: cbdc92ac0d93fe3c796e36ad65c7905c - sha256: 38e528acfaa0276b7052f4de44271ff9293fdb84579650601a8c49dac171482a + md5: 45f6713cb00f124af300342512219182 + sha256: b6c5cf340a4f80d70d64b3a29a7d9885a5918d16a5cb952022820e6d3e79dc8b category: main optional: false - name: libcurl - version: 8.13.0 + version: 8.14.1 manager: conda platform: win-64 dependencies: @@ -1724,37 +1739,37 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libcurl-8.13.0-h88aaa65_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libcurl-8.14.1-h88aaa65_0.conda hash: - md5: c9cf6eb842decbb66c2f34e72c3580d6 - sha256: 185553b37c0299b7a15dc66a7a7e2a0d421adaac784ec9298a0b2ad745116ca5 + md5: 836b9c08f34d2017dbcaec907c6a1138 + sha256: b2cface2cf35d8522289df7fffc14370596db6f6dc481cc1b6ca313faeac19d8 category: main optional: false - name: libdeflate - version: '1.23' + version: '1.24' manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libdeflate-1.23-h86f0d12_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libdeflate-1.24-h86f0d12_0.conda hash: - md5: 27fe770decaf469a53f3e3a6d593067f - sha256: 4db2f70a1441317d964e84c268e388110ad9cf75ca98994d1336d670e62e6f07 + md5: 64f0c503da58ec25ebd359e4d990afa8 + sha256: 8420748ea1cc5f18ecc5068b4f24c7a023cc9b20971c99c824ba10641fb95ddf category: main optional: false - name: libdeflate - version: '1.23' + version: '1.24' manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libdeflate-1.23-h76ddb4d_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libdeflate-1.24-h76ddb4d_0.conda hash: - md5: 34f03138e46543944d4d7f8538048842 - sha256: 881244050587dc658078ee45dfc792ecb458bbb1fdc861da67948d747b117dc2 + md5: 08d988e266c6ae77e03d164b83786dc4 + sha256: 65347475c0009078887ede77efe60db679ea06f2b56f7853b9310787fe5ad035 category: main optional: false - name: libdlf @@ -1919,78 +1934,78 @@ package: category: main optional: false - name: libgcc - version: 14.2.0 + version: 15.1.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' _openmp_mutex: '>=4.5' - url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-14.2.0-h767d61c_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-15.1.0-h767d61c_2.conda hash: - md5: ef504d1acbd74b7cc6849ef8af47dd03 - sha256: 3a572d031cb86deb541d15c1875aaa097baefc0c580b54dc61f5edab99215792 + md5: ea8ac52380885ed41c1baa8f1d6d2b93 + sha256: 0024f9ab34c09629621aefd8603ef77bf9d708129b0dd79029e502c39ffc2195 category: main optional: false - name: libgcc - version: 14.2.0 + version: 15.1.0 manager: conda platform: win-64 dependencies: _openmp_mutex: '>=4.5' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' - url: https://repo.prefix.dev/conda-forge/win-64/libgcc-14.2.0-h1383e82_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/libgcc-15.1.0-h1383e82_2.conda hash: - md5: 4a74c1461a0ba47a3346c04bdccbe2ad - sha256: fddf2fc037bc95adb3b369e8866da8a71b6a67ebcfc4d7035ac4208309dc9e72 + md5: 9bedb24480136bfeb81ebc81d4285e70 + sha256: c0288596ac58366d96a56c57e4088fe1c6dd4194fdcaeacf5862f47fb1e1e5be category: main optional: false - name: libgcc-ng - version: 14.2.0 + version: 15.1.0 manager: conda platform: linux-64 dependencies: - libgcc: 14.2.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_2.conda + libgcc: 15.1.0 + url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-ng-15.1.0-h69a702a_2.conda hash: - md5: a2222a6ada71fb478682efe483ce0f92 - sha256: fb7558c328b38b2f9d2e412c48da7890e7721ba018d733ebdfea57280df01904 + md5: ddca86c7040dd0e73b2b69bd7833d225 + sha256: 0ab5421a89f090f3aa33841036bb3af4ed85e1f91315b528a9d75fab9aad51ae category: main optional: false - name: libgfortran - version: 14.2.0 + version: 15.1.0 manager: conda platform: linux-64 dependencies: - libgfortran5: 14.2.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran-14.2.0-h69a702a_2.conda + libgfortran5: 15.1.0 + url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran-15.1.0-h69a702a_2.conda hash: - md5: fb54c4ea68b460c278d26eea89cfbcc3 - sha256: e05263e8960da03c341650f2a3ffa4ccae4e111cb198e8933a2908125459e5a6 + md5: f92e6e0a3c0c0c85561ef61aa59d555d + sha256: 914daa4f632b786827ea71b5e07cd00d25fc6e67789db2f830dc481eec660342 category: main optional: false - name: libgfortran5 - version: 14.2.0 + version: 15.1.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14.2.0' - url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran5-14.2.0-hf1ad2bd_2.conda + libgcc: '>=15.1.0' + url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran5-15.1.0-hcea5267_2.conda hash: - md5: 556a4fdfac7287d349b8f09aba899693 - sha256: c17b7cf3073a1f4e1f34d50872934fa326346e104d3c445abc1e62481ad6085c + md5: 01de444988ed960031dbe84cf4f9b1fc + sha256: be23750f3ca1a5cb3ada858c4f633effe777487d1ea35fddca04c0965c073350 category: main optional: false - name: libgomp - version: 14.2.0 + version: 15.1.0 manager: conda platform: win-64 dependencies: libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' - url: https://repo.prefix.dev/conda-forge/win-64/libgomp-14.2.0-h1383e82_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/libgomp-15.1.0-h1383e82_2.conda hash: - md5: dd6b1ab49e28bcb6154cd131acec985b - sha256: 674ec5f1bf319eac98d0d6ecb9c38e0192f3cf41969a5621d62a7e695e1aa9f3 + md5: 5fbacaa9b41e294a6966602205b99747 + sha256: 4316316097ce5fde2608b6fccd18709cf647dce52e230f5ac66f5c524dfad791 category: main optional: false - name: libhwloc @@ -2109,10 +2124,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_2.conda hash: - md5: 0e87378639676987af32fee53ba32258 - sha256: f4f21dfc54b08d462f707b771ecce3fa9bc702a2a05b55654f64154f48b141ef + md5: 1a580f7796c7bf6393fddb8bbbde58dc + sha256: f2591c0069447bbe28d4d696b7fcb0c5bd0b4ac582769b89addbcf26fb3430d8 category: main optional: false - name: liblzma @@ -2123,10 +2138,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/liblzma-5.8.1-h2466b09_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/liblzma-5.8.1-h2466b09_2.conda hash: - md5: 8d5cb0016b645d6688e2ff57c5d51302 - sha256: 1477e9bff05318f3129d37be0e64c76cce0973c4b8c73d13a467d0b7f03d157c + md5: c15148b2e18da456f5108ccb5e411446 + sha256: 55764956eb9179b98de7cc0e55696f2eff8f7b83fc3ebff5e696ca358bca28cc category: main optional: false - name: libnghttp2 @@ -2152,29 +2167,30 @@ package: manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - url: https://repo.prefix.dev/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=13' + url: https://repo.prefix.dev/conda-forge/linux-64/libnsl-2.0.1-hb9d3cd8_1.conda hash: - md5: 30fd6e37fe21f86f4bd26d6ee73eeec7 - sha256: 26d77a3bb4dceeedc2a41bd688564fe71bf2d149fdcf117049970bc02ff1add6 + md5: d864d34357c3b65a4b731f78c0801dc4 + sha256: 927fe72b054277cde6cb82597d0fcf6baf127dcbce2e0a9d8925a68f1265eef5 category: main optional: false - name: libpng - version: 1.6.47 + version: 1.6.49 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libpng-1.6.47-h943b412_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libpng-1.6.49-h943b412_0.conda hash: - md5: 55199e2ae2c3651f6f9b2a447b47bdc9 - sha256: 23367d71da58c9a61c8cbd963fcffb92768d4ae5ffbef9a47cdf1f54f98c5c36 + md5: 37511c874cf3b8d0034c8d24e73c0884 + sha256: c8f5dc929ba5fcee525a66777498e03bbcbfefc05a0773e5163bb08ac5122f1a category: main optional: false - name: libpng - version: 1.6.47 + version: 1.6.49 manager: conda platform: win-64 dependencies: @@ -2182,10 +2198,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libpng-1.6.47-h7a4582a_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libpng-1.6.49-h7a4582a_0.conda hash: - md5: ad620e92b82d2948bc019e029c574ebb - sha256: e12c46ca882080d901392ae45e0e5a1c96fc3e5acd5cd1a23c2632eb7f024f26 + md5: 27269977c8f25d499727ceabc47cee3d + sha256: 8876a2d32d3538675e035b6560691471a1571835c0bcbf23816c24c460d31439 category: main optional: false - name: libscotch @@ -2235,31 +2251,31 @@ package: category: main optional: false - name: libsqlite - version: 3.49.1 + version: 3.50.1 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.49.1-hee588c1_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.50.1-hee588c1_0.conda hash: - md5: 962d6ac93c30b1dfc54c9cccafd1003e - sha256: a086289bf75c33adc1daed3f1422024504ffb5c3c8b3285c49f025c29708ed16 + md5: 96a7e36bff29f1d0ddf5b771e0da373a + sha256: cd15ab1b9f0d53507e7ad7a01e52f6756ab3080bf623ab0e438973b6e4dba3c0 category: main optional: false - name: libsqlite - version: 3.49.1 + version: 3.50.1 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.49.1-h67fdade_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.50.1-h67fdade_0.conda hash: - md5: b58b66d4ad1aaf1c2543cbbd6afb1a59 - sha256: c092d42d00fd85cf609cc58574ba2b03c141af5762283f36f5dd445ef7c0f4fe + md5: 0e11a893eeeb46510520fd3fdd9c346a + sha256: 0dda5b3f21ad2c7e823f21b0e173194347fbfccb73a06ddc9366da1877020bda category: main optional: false - name: libssh2 @@ -2294,28 +2310,28 @@ package: category: main optional: false - name: libstdcxx - version: 14.2.0 + version: 15.1.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: 14.2.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-14.2.0-h8f9b012_2.conda + libgcc: 15.1.0 + url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-15.1.0-h8f9b012_2.conda hash: - md5: a78c856b6dc6bf4ea8daeb9beaaa3fb0 - sha256: 8f5bd92e4a24e1d35ba015c5252e8f818898478cb3bc50bd8b12ab54707dc4da + md5: 1cb1c67961f6dd257eae9e9691b341aa + sha256: 6ae3d153e78f6069d503d9309f2cac6de5b93d067fc6433160a4c05226a5dad4 category: main optional: false - name: libstdcxx-ng - version: 14.2.0 + version: 15.1.0 manager: conda platform: linux-64 dependencies: - libstdcxx: 14.2.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-14.2.0-h4852527_2.conda + libstdcxx: 15.1.0 + url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-15.1.0-h4852527_2.conda hash: - md5: c75da67f045c2627f59e6fcb5f4e3a9b - sha256: e86f38b007cf97cc2c67cd519f2de12a313c4ee3f5ef11652ad08932a5e34189 + md5: 9d2072af184b5caa29492bf2344597bb + sha256: 11bea86e11de7d6bce87589197a383344df3fa0a3552dab7e931785ff1159a5b category: main optional: false - name: libtiff @@ -2325,7 +2341,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' lerc: '>=4.0.0,<5.0a0' - libdeflate: '>=1.23,<1.24.0a0' + libdeflate: '>=1.24,<1.25.0a0' libgcc: '>=13' libjpeg-turbo: '>=3.1.0,<4.0a0' liblzma: '>=5.8.1,<6.0a0' @@ -2333,10 +2349,10 @@ package: libwebp-base: '>=1.5.0,<2.0a0' libzlib: '>=1.3.1,<2.0a0' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libtiff-4.7.0-hd9ff511_4.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libtiff-4.7.0-hf01ce69_5.conda hash: - md5: 6c1028898cf3a2032d9af46689e1b81a - sha256: 7480613af15795281bd338a4d3d2ca148f9c2ecafc967b9cc233e78ba2fe4a6d + md5: e79a094918988bb1807462cd42c83962 + sha256: 7fa6ddac72e0d803bb08e55090a8f2e71769f1eb7adbd5711bdd7789561601b1 category: main optional: false - name: libtiff @@ -2345,7 +2361,7 @@ package: platform: win-64 dependencies: lerc: '>=4.0.0,<5.0a0' - libdeflate: '>=1.23,<1.24.0a0' + libdeflate: '>=1.24,<1.25.0a0' libjpeg-turbo: '>=3.1.0,<4.0a0' liblzma: '>=5.8.1,<6.0a0' libzlib: '>=1.3.1,<2.0a0' @@ -2353,10 +2369,10 @@ package: vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/libtiff-4.7.0-h797046b_4.conda + url: https://repo.prefix.dev/conda-forge/win-64/libtiff-4.7.0-h05922d8_5.conda hash: - md5: 7d938ca70c64c5516767b4eae0a56172 - sha256: 3456e2a6dfe6c00fd0cda316f0cbb47caddf77f83d3ed4040b6ad17ec1610d2a + md5: 75370aba951b47ec3b5bfe689f1bcf7f + sha256: 1bb0b2e7d076fecc2f8147336bc22e7e6f9a4e0505e0e4ab2be1f56023a4a458 category: main optional: false - name: libuuid @@ -2456,23 +2472,24 @@ package: category: main optional: false - name: libxml2 - version: 2.13.7 + version: 2.13.8 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' + icu: '>=75.1,<76.0a0' libgcc: '>=13' libiconv: '>=1.18,<2.0a0' liblzma: '>=5.8.1,<6.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libxml2-2.13.7-h81593ed_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libxml2-2.13.8-h4bc477f_0.conda hash: - md5: 0619e8fc4c8025a908ea3a3422d3b775 - sha256: c4f59563e017eba378ea843be5ebde4b0546c72bbe4c1e43b2b384379e827635 + md5: 14dbe05b929e329dbaa6f2d0aa19466d + sha256: b0b3a96791fa8bb4ec030295e8c8bf2d3278f33c0f9ad540e73b5e538e6268e7 category: main optional: false - name: libxml2 - version: 2.13.7 + version: 2.13.8 manager: conda platform: win-64 dependencies: @@ -2481,10 +2498,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libxml2-2.13.7-h442d1da_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/libxml2-2.13.8-h442d1da_0.conda hash: - md5: c14ff7f05e57489df9244917d2b55763 - sha256: 0a013527f784f4702dc18460070d8ec79d1ebb5087dd9e678d6afbeaca68d2ac + md5: 833c2dbc1a5020007b520b044c713ed3 + sha256: 473b8a53c8df714d676ab41711551c8d250f8d799f2db5cb7cb2b177a0ce13f6 category: main optional: false - name: libzlib @@ -2515,29 +2532,29 @@ package: category: main optional: false - name: llvm-openmp - version: 20.1.4 + version: 20.1.7 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-20.1.4-h024ca30_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-20.1.7-h024ca30_0.conda hash: - md5: 4fc395cda27912a7d904b86b5dbf3a4d - sha256: 5b39cdde3457e41b133d6f1fe53095c7fd3951bbdab46580098ccbf5ee9c99f7 + md5: b9c9b2f494533250a9eb7ece830f4422 + sha256: 10f2f6be8ba4c018e1fc741637a8d45c0e58bea96954c25e91fbe4238b7c9f60 category: main optional: false - name: llvm-openmp - version: 20.1.4 + version: 20.1.7 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-20.1.4-h30eaf37_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-20.1.7-h30eaf37_0.conda hash: - md5: 3087da6f7e741dc1498e85ef87a553dc - sha256: 0c85b0ceda02c26bbea5a789c2d1735485dbc2a1089655a8f2193c5850a7bbab + md5: 6fd1d310402e936aa9aecb065f21cc6b + sha256: 1820ca99e8b126b3c656ff3c527822be8348f6452edcddd91615cba285540f6c category: main optional: false - name: locket @@ -2692,7 +2709,7 @@ package: manager: conda platform: linux-64 dependencies: - _openmp_mutex: '>=4.5' + _openmp_mutex: '*' llvm-openmp: '>=19.1.2' tbb: 2021.* url: https://repo.prefix.dev/conda-forge/linux-64/mkl-2024.2.2-ha957f24_16.conda @@ -2715,7 +2732,7 @@ package: category: main optional: false - name: msgpack-python - version: 1.1.0 + version: 1.1.1 manager: conda platform: linux-64 dependencies: @@ -2724,14 +2741,14 @@ package: libstdcxx: '>=13' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/msgpack-python-1.1.0-py312h68727a3_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/msgpack-python-1.1.1-py312h68727a3_0.conda hash: - md5: 5c9b020a3f86799cdc6115e55df06146 - sha256: 4bc53333774dea1330643b7e23aa34fd6880275737fc2e07491795872d3af8dd + md5: 6998b34027ecc577efe4e42f4b022a98 + sha256: 969b8e50922b592228390c25ac417c0761fd6f98fccad870ac5cc84f35da301a category: main optional: false - name: msgpack-python - version: 1.1.0 + version: 1.1.1 manager: conda platform: win-64 dependencies: @@ -2740,10 +2757,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/msgpack-python-1.1.0-py312hd5eb7cc_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/msgpack-python-1.1.1-py312hd5eb7cc_0.conda hash: - md5: ff4f1e63a6438a06d1ab259936e5c2ac - sha256: 3fd45d9c0830e931e34990cb90e88ba53cc7f89fce69fc7d1a8289639d363e85 + md5: 732a1b46ab8c8ee0dce4aac014e66006 + sha256: 41d9b229e0654400d81bfe417675b4603e4cd7d13ffc1b1aa9c748c67d5bd39f category: main optional: false - name: mumps-include @@ -2800,11 +2817,11 @@ package: manager: conda platform: linux-64 dependencies: - python: '' - url: https://repo.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 + python: '>=3.9' + url: https://repo.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyhd8ed1ab_1.conda hash: - md5: 2ba8498c1018c1e9c61eb99b973dfe19 - sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 + md5: 37293a85a0f4f77bbd9cf7aaefc62609 + sha256: d09c47c2cf456de5c09fa66d2c3c5035aa1fa228a1983a433c47b876aa16ce90 category: main optional: false - name: munkres @@ -2812,11 +2829,11 @@ package: manager: conda platform: win-64 dependencies: - python: '' - url: https://repo.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 + python: '>=3.9' + url: https://repo.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyhd8ed1ab_1.conda hash: - md5: 2ba8498c1018c1e9c61eb99b973dfe19 - sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 + md5: 37293a85a0f4f77bbd9cf7aaefc62609 + sha256: d09c47c2cf456de5c09fa66d2c3c5035aa1fa228a1983a433c47b876aa16ce90 category: main optional: false - name: ncurses @@ -2949,10 +2966,10 @@ package: __glibc: '>=2.17,<3.0.a0' ca-certificates: '' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/openssl-3.5.0-h7b32b05_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/openssl-3.5.0-h7b32b05_1.conda hash: - md5: bb539841f2a3fde210f387d00ed4bb9d - sha256: 38285d280f84f1755b7c54baf17eccf2e3e696287954ce0adca16546b85ee62c + md5: de356753cfdbffcde5bb1e86e3aa6cd0 + sha256: b4491077c494dbf0b5eaa6d87738c22f2154e9277e5293175ec187634bd808a0 category: main optional: false - name: openssl @@ -2964,10 +2981,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/openssl-3.5.0-ha4e3fda_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/openssl-3.5.0-ha4e3fda_1.conda hash: - md5: 4ea7db75035eb8c13fa680bb90171e08 - sha256: 43dd7f56da142ca83c614c8b0085589650ae9032b351a901c190e48eefc73675 + md5: 72c07e46b6766bb057018a9a74861b89 + sha256: 02846553d2a4c9bde850c60824d0f02803eb9c9b674d5c1a8cce25bc387e748f category: main optional: false - name: packaging @@ -2975,7 +2992,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '' + python: '>=3.8' url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda hash: md5: 58335b26c38bf4a20f399384c33cbcf9 @@ -2987,7 +3004,7 @@ package: manager: conda platform: win-64 dependencies: - python: '' + python: '>=3.8' url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda hash: md5: 58335b26c38bf4a20f399384c33cbcf9 @@ -3071,79 +3088,79 @@ package: category: main optional: false - name: pip - version: '25.1' + version: 25.1.1 manager: conda platform: linux-64 dependencies: python: '>=3.9,<3.13.0a0' setuptools: '' wheel: '' - url: https://repo.prefix.dev/conda-forge/noarch/pip-25.1-pyh8b19718_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pip-25.1.1-pyh8b19718_0.conda hash: - md5: 2247aa245832ea47e8b971bef73d7094 - sha256: 81a7ffe7b7ca8718bc09476a258cd48754e1d4e1bd3b80a6fef41ffb71e3bfc8 + md5: 32d0781ace05105cc99af55d36cbec7c + sha256: ebfa591d39092b111b9ebb3210eb42251be6da89e26c823ee03e5e838655a43e category: main optional: false - name: pip - version: '25.1' + version: 25.1.1 manager: conda platform: win-64 dependencies: python: '>=3.9,<3.13.0a0' setuptools: '' wheel: '' - url: https://repo.prefix.dev/conda-forge/noarch/pip-25.1-pyh8b19718_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pip-25.1.1-pyh8b19718_0.conda hash: - md5: 2247aa245832ea47e8b971bef73d7094 - sha256: 81a7ffe7b7ca8718bc09476a258cd48754e1d4e1bd3b80a6fef41ffb71e3bfc8 + md5: 32d0781ace05105cc99af55d36cbec7c + sha256: ebfa591d39092b111b9ebb3210eb42251be6da89e26c823ee03e5e838655a43e category: main optional: false - name: platformdirs - version: 4.3.7 + version: 4.3.8 manager: conda platform: linux-64 dependencies: - python: '' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.3.7-pyh29332c3_0.conda + python: '>=3.9' + url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.3.8-pyhe01879c_0.conda hash: - md5: e57da6fe54bb3a5556cf36d199ff07d8 - sha256: ae7d3e58224d53d6b59e1f5ac5809803bb1972f0ac4fb10cd9b8c87d4122d3e0 + md5: 424844562f5d337077b445ec6b1398a7 + sha256: 0f48999a28019c329cd3f6fd2f01f09fc32cc832f7d6bbe38087ddac858feaa3 category: dev optional: true - name: platformdirs - version: 4.3.7 + version: 4.3.8 manager: conda platform: win-64 dependencies: - python: '' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.3.7-pyh29332c3_0.conda + python: '>=3.9' + url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.3.8-pyhe01879c_0.conda hash: - md5: e57da6fe54bb3a5556cf36d199ff07d8 - sha256: ae7d3e58224d53d6b59e1f5ac5809803bb1972f0ac4fb10cd9b8c87d4122d3e0 + md5: 424844562f5d337077b445ec6b1398a7 + sha256: 0f48999a28019c329cd3f6fd2f01f09fc32cc832f7d6bbe38087ddac858feaa3 category: dev optional: true - name: pluggy - version: 1.5.0 + version: 1.6.0 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda hash: - md5: e9dcbce5f45f9ee500e728ae58b605b6 - sha256: 122433fc5318816b8c69283aaf267c73d87aa2d09ce39f64c9805c9a3b264819 + md5: 7da7ccd349dbf6487a7778579d2bb971 + sha256: a8eb555eef5063bbb7ba06a379fa7ea714f57d9741fe0efdb9442dbbc2cccbcc category: dev optional: true - name: pluggy - version: 1.5.0 + version: 1.6.0 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda hash: - md5: e9dcbce5f45f9ee500e728ae58b605b6 - sha256: 122433fc5318816b8c69283aaf267c73d87aa2d09ce39f64c9805c9a3b264819 + md5: 7da7ccd349dbf6487a7778579d2bb971 + sha256: a8eb555eef5063bbb7ba06a379fa7ea714f57d9741fe0efdb9442dbbc2cccbcc category: dev optional: true - name: psutil @@ -3209,7 +3226,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '' + python: '>=3.9' url: https://repo.prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda hash: md5: 12c566707c80111f9799308d9e265aef @@ -3221,7 +3238,7 @@ package: manager: conda platform: win-64 dependencies: - python: '' + python: '>=3.9' url: https://repo.prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda hash: md5: 12c566707c80111f9799308d9e265aef @@ -3229,41 +3246,41 @@ package: category: main optional: false - name: pydantic - version: 2.11.3 + version: 2.11.7 manager: conda platform: linux-64 dependencies: annotated-types: '>=0.6.0' - pydantic-core: 2.33.1 + pydantic-core: 2.33.2 python: '>=3.9' typing-extensions: '>=4.6.1' typing-inspection: '>=0.4.0' typing_extensions: '>=4.12.2' - url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.3-pyh3cfb1c2_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.7-pyh3cfb1c2_0.conda hash: - md5: 3c6f7f8ae9b9c177ad91ccc187912756 - sha256: 89183785b09ebe9f9e65710057d7c41e9d21d4a9ad05e068850e18669655d5a8 + md5: 1b337e3d378cde62889bb735c024b7a2 + sha256: ee7823e8bc227f804307169870905ce062531d36c1dcf3d431acd65c6e0bd674 category: main optional: false - name: pydantic - version: 2.11.3 + version: 2.11.7 manager: conda platform: win-64 dependencies: annotated-types: '>=0.6.0' - pydantic-core: 2.33.1 + pydantic-core: 2.33.2 python: '>=3.9' typing-extensions: '>=4.6.1' typing-inspection: '>=0.4.0' typing_extensions: '>=4.12.2' - url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.3-pyh3cfb1c2_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.7-pyh3cfb1c2_0.conda hash: - md5: 3c6f7f8ae9b9c177ad91ccc187912756 - sha256: 89183785b09ebe9f9e65710057d7c41e9d21d4a9ad05e068850e18669655d5a8 + md5: 1b337e3d378cde62889bb735c024b7a2 + sha256: ee7823e8bc227f804307169870905ce062531d36c1dcf3d431acd65c6e0bd674 category: main optional: false - name: pydantic-core - version: 2.33.1 + version: 2.33.2 manager: conda platform: linux-64 dependencies: @@ -3272,14 +3289,14 @@ package: python: '' python_abi: 3.12.* typing-extensions: '>=4.6.0,!=4.7.0' - url: https://repo.prefix.dev/conda-forge/linux-64/pydantic-core-2.33.1-py312h3b7be25_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pydantic-core-2.33.2-py312h680f630_0.conda hash: - md5: 4767e28fcbf646ffc18ef4021534c415 - sha256: 281dc40103c324309bf62cf9ed861f38e949b8b1da786f25e5ad199a86a67a6d + md5: cfbd96e5a0182dfb4110fc42dda63e57 + sha256: 4d14d7634c8f351ff1e63d733f6bb15cba9a0ec77e468b0de9102014a4ddc103 category: main optional: false - name: pydantic-core - version: 2.33.1 + version: 2.33.2 manager: conda platform: win-64 dependencies: @@ -3289,10 +3306,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/pydantic-core-2.33.1-py312hfe1d9c4_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/pydantic-core-2.33.2-py312h8422cdd_0.conda hash: - md5: 08c86823811befb8a83b9f403815e6ab - sha256: 67b51ddb720d738c3eee96e7998d7a5b99530893f373714555f4941b15d1bd70 + md5: c61e3f191da309117e0b0478b49f6e91 + sha256: f377214abd06f1870011a6068b10c9e23dc62065d4c2de13b2f0a6014636e0ae category: main optional: false - name: pydiso @@ -3357,7 +3374,7 @@ package: category: dev optional: true - name: pylint - version: 3.3.6 + version: 3.3.7 manager: conda platform: linux-64 dependencies: @@ -3367,18 +3384,18 @@ package: isort: '>=4.2.5,<7,!=5.13.0' mccabe: '>=0.6,<0.8' platformdirs: '>=2.2.0' - python: '' + python: '>=3.9' tomli: '>=1.1.0' tomlkit: '>=0.10.1' typing_extensions: '>=3.10.0' - url: https://repo.prefix.dev/conda-forge/noarch/pylint-3.3.6-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pylint-3.3.7-pyhe01879c_0.conda hash: - md5: 8242cc62822cc8a17f53d24d4efa75f4 - sha256: 3e3e35b2cbb4b1ca3063fc2d6f44a85ac189e0935f00ed8fbe8e4713c0d00b99 + md5: fad6b90165dcf39e3ac79de5dbc030a8 + sha256: 6a1dc262763220c9dc046400d8655ebe58ad4d81e872be7264af5137f906e220 category: dev optional: true - name: pylint - version: 3.3.6 + version: 3.3.7 manager: conda platform: win-64 dependencies: @@ -3388,14 +3405,14 @@ package: isort: '>=4.2.5,<7,!=5.13.0' mccabe: '>=0.6,<0.8' platformdirs: '>=2.2.0' - python: '' + python: '>=3.9' tomli: '>=1.1.0' tomlkit: '>=0.10.1' typing_extensions: '>=3.10.0' - url: https://repo.prefix.dev/conda-forge/noarch/pylint-3.3.6-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pylint-3.3.7-pyhe01879c_0.conda hash: - md5: 8242cc62822cc8a17f53d24d4efa75f4 - sha256: 3e3e35b2cbb4b1ca3063fc2d6f44a85ac189e0935f00ed8fbe8e4713c0d00b99 + md5: fad6b90165dcf39e3ac79de5dbc030a8 + sha256: 6a1dc262763220c9dc046400d8655ebe58ad4d81e872be7264af5137f906e220 category: dev optional: true - name: pymatsolver @@ -3482,43 +3499,45 @@ package: category: main optional: false - name: pytest - version: 8.3.5 + version: 8.4.1 manager: conda platform: linux-64 dependencies: - colorama: '' - exceptiongroup: '>=1.0.0rc8' - iniconfig: '' - packaging: '' - pluggy: <2,>=1.5 + colorama: '>=0.4' + exceptiongroup: '>=1' + iniconfig: '>=1' + packaging: '>=20' + pluggy: '>=1.5,<2' + pygments: '>=2.7.2' python: '>=3.9' tomli: '>=1' - url: https://repo.prefix.dev/conda-forge/noarch/pytest-8.3.5-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytest-8.4.1-pyhd8ed1ab_0.conda hash: - md5: c3c9316209dec74a705a36797970c6be - sha256: 963524de7340c56615583ba7b97a6beb20d5c56a59defb59724dc2a3105169c9 + md5: a49c2283f24696a7b30367b7346a0144 + sha256: 93e267e4ec35353e81df707938a6527d5eb55c97bf54c3b87229b69523afb59d category: dev optional: true - name: pytest - version: 8.3.5 + version: 8.4.1 manager: conda platform: win-64 dependencies: - colorama: '' - exceptiongroup: '>=1.0.0rc8' - iniconfig: '' - packaging: '' - pluggy: <2,>=1.5 + colorama: '>=0.4' + exceptiongroup: '>=1' + iniconfig: '>=1' + packaging: '>=20' + pluggy: '>=1.5,<2' + pygments: '>=2.7.2' python: '>=3.9' tomli: '>=1' - url: https://repo.prefix.dev/conda-forge/noarch/pytest-8.3.5-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytest-8.4.1-pyhd8ed1ab_0.conda hash: - md5: c3c9316209dec74a705a36797970c6be - sha256: 963524de7340c56615583ba7b97a6beb20d5c56a59defb59724dc2a3105169c9 + md5: a49c2283f24696a7b30367b7346a0144 + sha256: 93e267e4ec35353e81df707938a6527d5eb55c97bf54c3b87229b69523afb59d category: dev optional: true - name: pytest-cov - version: 6.1.1 + version: 6.2.1 manager: conda platform: linux-64 dependencies: @@ -3526,14 +3545,14 @@ package: pytest: '>=4.6' python: '>=3.9' toml: '' - url: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-6.1.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-6.2.1-pyhd8ed1ab_0.conda hash: - md5: 1e35d8f975bc0e984a19819aa91c440a - sha256: 9961a1524f63d10bc29efdc52013ec06b0e95fb2619a250e250ff3618261d5cd + md5: ce978e1b9ed8b8d49164e90a5cdc94cd + sha256: 3a9fc07be76bc67aef355b78816b5117bfe686e7d8c6f28b45a1f89afe104761 category: dev optional: true - name: pytest-cov - version: 6.1.1 + version: 6.2.1 manager: conda platform: win-64 dependencies: @@ -3541,14 +3560,14 @@ package: pytest: '>=4.6' python: '>=3.9' toml: '' - url: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-6.1.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-6.2.1-pyhd8ed1ab_0.conda hash: - md5: 1e35d8f975bc0e984a19819aa91c440a - sha256: 9961a1524f63d10bc29efdc52013ec06b0e95fb2619a250e250ff3618261d5cd + md5: ce978e1b9ed8b8d49164e90a5cdc94cd + sha256: 3a9fc07be76bc67aef355b78816b5117bfe686e7d8c6f28b45a1f89afe104761 category: dev optional: true - name: python - version: 3.12.10 + version: 3.12.11 manager: conda platform: linux-64 dependencies: @@ -3560,7 +3579,7 @@ package: libgcc: '>=13' liblzma: '>=5.8.1,<6.0a0' libnsl: '>=2.0.1,<2.1.0a0' - libsqlite: '>=3.49.1,<4.0a0' + libsqlite: '>=3.50.0,<4.0a0' libuuid: '>=2.38.1,<3.0a0' libxcrypt: '>=4.4.36' libzlib: '>=1.3.1,<2.0a0' @@ -3570,14 +3589,14 @@ package: readline: '>=8.2,<9.0a0' tk: '>=8.6.13,<8.7.0a0' tzdata: '' - url: https://repo.prefix.dev/conda-forge/linux-64/python-3.12.10-h9e4cc4f_0_cpython.conda + url: https://repo.prefix.dev/conda-forge/linux-64/python-3.12.11-h9e4cc4f_0_cpython.conda hash: - md5: a41d26cd4d47092d683915d058380dec - sha256: 4dc1da115805bd353bded6ab20ff642b6a15fcc72ac2f3de0e1d014ff3612221 + md5: 94206474a5608243a10c92cefbe0908f + sha256: 6cca004806ceceea9585d4d655059e951152fc774a471593d4f5138e6a54c81d category: main optional: false - name: python - version: 3.12.10 + version: 3.12.11 manager: conda platform: win-64 dependencies: @@ -3585,7 +3604,7 @@ package: libexpat: '>=2.7.0,<3.0a0' libffi: '>=3.4.6,<3.5.0a0' liblzma: '>=5.8.1,<6.0a0' - libsqlite: '>=3.49.1,<4.0a0' + libsqlite: '>=3.50.0,<4.0a0' libzlib: '>=1.3.1,<2.0a0' openssl: '>=3.5.0,<4.0a0' pip: '' @@ -3594,10 +3613,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/python-3.12.10-h3f84c4b_0_cpython.conda + url: https://repo.prefix.dev/conda-forge/win-64/python-3.12.11-h3f84c4b_0_cpython.conda hash: - md5: 495e849ebc04562381539d25cf303a9f - sha256: a791fa8f5ce68ab00543ecd3798bfa573db327902ccd5cb7598fd7e94ea194d3 + md5: 6aa5e62df29efa6319542ae5025f4376 + sha256: b69412e64971b5da3ced0fc36f05d0eacc9393f2084c6f92b8f28ee068d83e2e category: main optional: false - name: python-dateutil @@ -3786,7 +3805,7 @@ package: category: dev optional: true - name: requests - version: 2.32.3 + version: 2.32.4 manager: conda platform: linux-64 dependencies: @@ -3795,14 +3814,14 @@ package: idna: '>=2.5,<4' python: '>=3.9' urllib3: '>=1.21.1,<3' - url: https://repo.prefix.dev/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/requests-2.32.4-pyhd8ed1ab_0.conda hash: - md5: a9b9368f3701a417eac9edbcae7cb737 - sha256: d701ca1136197aa121bbbe0e8c18db6b5c94acbd041c2b43c70e5ae104e1d8ad + md5: f6082eae112814f1447b56a5e1f6ed05 + sha256: 9866aaf7a13c6cfbe665ec7b330647a0fb10a81e6f9b8fee33642232a1920e18 category: dev optional: true - name: requests - version: 2.32.3 + version: 2.32.4 manager: conda platform: win-64 dependencies: @@ -3811,10 +3830,10 @@ package: idna: '>=2.5,<4' python: '>=3.9' urllib3: '>=1.21.1,<3' - url: https://repo.prefix.dev/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/requests-2.32.4-pyhd8ed1ab_0.conda hash: - md5: a9b9368f3701a417eac9edbcae7cb737 - sha256: d701ca1136197aa121bbbe0e8c18db6b5c94acbd041c2b43c70e5ae104e1d8ad + md5: f6082eae112814f1447b56a5e1f6ed05 + sha256: 9866aaf7a13c6cfbe665ec7b330647a0fb10a81e6f9b8fee33642232a1920e18 category: dev optional: true - name: rtree @@ -3898,7 +3917,7 @@ package: libgfortran5: '>=13.3.0' liblapack: '>=3.9.0,<4.0a0' libstdcxx: '>=13' - numpy: '>=1.23.5' + numpy: <2.3 python: '>=3.12,<3.13.0a0' python_abi: 3.12.* url: https://repo.prefix.dev/conda-forge/linux-64/scipy-1.14.1-py312h62794b6_2.conda @@ -3915,7 +3934,7 @@ package: libblas: '>=3.9.0,<4.0a0' libcblas: '>=3.9.0,<4.0a0' liblapack: '>=3.9.0,<4.0a0' - numpy: '>=1.23.5' + numpy: <2.3 python: '>=3.12,<3.13.0a0' python_abi: 3.12.* ucrt: '>=10.0.20348.0' @@ -3928,27 +3947,27 @@ package: category: main optional: false - name: setuptools - version: 80.1.0 + version: 80.9.0 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/setuptools-80.1.0-pyhff2d567_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda hash: - md5: f6f72d0837c79eaec77661be43e8a691 - sha256: 777d34ed359cedd5a5004c930077c101bb3b70e5fbb04d29da5058d75b0ba487 + md5: 4de79c071274a53dcaf2a8c749d1499e + sha256: 972560fcf9657058e3e1f97186cc94389144b46dbdf58c807ce62e83f977e863 category: main optional: false - name: setuptools - version: 80.1.0 + version: 80.9.0 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/setuptools-80.1.0-pyhff2d567_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda hash: - md5: f6f72d0837c79eaec77661be43e8a691 - sha256: 777d34ed359cedd5a5004c930077c101bb3b70e5fbb04d29da5058d75b0ba487 + md5: 4de79c071274a53dcaf2a8c749d1499e + sha256: 972560fcf9657058e3e1f97186cc94389144b46dbdf58c807ce62e83f977e863 category: main optional: false - name: six @@ -3976,27 +3995,27 @@ package: category: main optional: false - name: snowballstemmer - version: 2.2.0 + version: 3.0.1 manager: conda platform: linux-64 dependencies: - python: '>=2' - url: https://repo.prefix.dev/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2 + python: '>=3.9' + url: https://repo.prefix.dev/conda-forge/noarch/snowballstemmer-3.0.1-pyhd8ed1ab_0.conda hash: - md5: 4d22a9315e78c6827f806065957d566e - sha256: a0fd916633252d99efb6223b1050202841fa8d2d53dacca564b0ed77249d3228 + md5: 755cf22df8693aa0d1aec1c123fa5863 + sha256: 17007a4cfbc564dc3e7310dcbe4932c6ecb21593d4fec3c68610720f19e73fb2 category: dev optional: true - name: snowballstemmer - version: 2.2.0 + version: 3.0.1 manager: conda platform: win-64 dependencies: - python: '>=2' - url: https://repo.prefix.dev/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2 + python: '>=3.9' + url: https://repo.prefix.dev/conda-forge/noarch/snowballstemmer-3.0.1-pyhd8ed1ab_0.conda hash: - md5: 4d22a9315e78c6827f806065957d566e - sha256: a0fd916633252d99efb6223b1050202841fa8d2d53dacca564b0ed77249d3228 + md5: 755cf22df8693aa0d1aec1c123fa5863 + sha256: 17007a4cfbc564dc3e7310dcbe4932c6ecb21593d4fec3c68610720f19e73fb2 category: dev optional: true - name: sortedcontainers @@ -4318,12 +4337,13 @@ package: manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - libzlib: '>=1.2.13,<2.0.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=13' + libzlib: '>=1.3.1,<2.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_hd72426e_102.conda hash: - md5: d453b98d9c83e71da0741bb0ff4d76bc - sha256: e0569c9caa68bf476bead1bed3d79650bb080b532c64a4af7d8ca286c08dea4e + md5: a0116df4f4ed05c303811a837d5b39d8 + sha256: a84ff687119e6d8752346d1d408d5cf360dee0badd487a472aa8ddedfdc219e1 category: main optional: false - name: tk @@ -4334,10 +4354,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/tk-8.6.13-h5226925_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/tk-8.6.13-h2c6b04d_2.conda hash: - md5: fc048363eb8f03cd1737600a5d08aafe - sha256: 2c4e914f521ccb2718946645108c9bd3fc3216ba69aea20c2c3cedbd8db32bb1 + md5: ebd0e761de9aa879a51d22cc721bd095 + sha256: e3614b0eb4abcc70d98eae159db59d9b4059ed743ef402081151a948dce95896 category: main optional: false - name: toml @@ -4389,27 +4409,27 @@ package: category: dev optional: true - name: tomlkit - version: 0.13.2 + version: 0.13.3 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.2-pyha770c72_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.3-pyha770c72_0.conda hash: - md5: 1d9ab4fc875c52db83f9c9b40af4e2c8 - sha256: 986fae65f5568e95dbf858d08d77a0f9cca031345a98550f1d4b51d36d8811e2 + md5: 146402bf0f11cbeb8f781fa4309a95d3 + sha256: f8d3b49c084831a20923f66826f30ecfc55a4cd951e544b7213c692887343222 category: dev optional: true - name: tomlkit - version: 0.13.2 + version: 0.13.3 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.2-pyha770c72_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.3-pyha770c72_0.conda hash: - md5: 1d9ab4fc875c52db83f9c9b40af4e2c8 - sha256: 986fae65f5568e95dbf858d08d77a0f9cca031345a98550f1d4b51d36d8811e2 + md5: 146402bf0f11cbeb8f781fa4309a95d3 + sha256: f8d3b49c084831a20923f66826f30ecfc55a4cd951e544b7213c692887343222 category: dev optional: true - name: toolz @@ -4437,7 +4457,7 @@ package: category: main optional: false - name: tornado - version: 6.4.2 + version: 6.5.1 manager: conda platform: linux-64 dependencies: @@ -4445,14 +4465,14 @@ package: libgcc: '>=13' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/tornado-6.4.2-py312h66e93f0_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/tornado-6.5.1-py312h66e93f0_0.conda hash: - md5: e417822cb989e80a0d2b1b576fdd1657 - sha256: 062a3a3a37fa8615ce57929ba7e982c76f5a5810bcebd435950f6d6c4147c310 + md5: c532a6ee766bed75c4fa0c39e959d132 + sha256: c96be4c8bca2431d7ad7379bad94ed6d4d25cd725ae345540a531d9e26e148c9 category: main optional: false - name: tornado - version: 6.4.2 + version: 6.5.1 manager: conda platform: win-64 dependencies: @@ -4461,10 +4481,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/tornado-6.4.2-py312h4389bb4_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/tornado-6.5.1-py312h4389bb4_0.conda hash: - md5: f06104f71f496b0784b35b23e30e7990 - sha256: e21f24e5d598d9a31c604f510c82fbe73d756696bc70a69f11811a2ea9dd5d95 + md5: 06b156bbbe1597eb5ea30b931cadaa32 + sha256: cec4ab331788122f7f01dd02f57f8e21d9ae14553dedd6389d7dfeceb3592399 category: main optional: false - name: tqdm @@ -4520,77 +4540,77 @@ package: category: main optional: false - name: typing-extensions - version: 4.13.2 + version: 4.14.0 manager: conda platform: linux-64 dependencies: - typing_extensions: ==4.13.2 - url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.13.2-h0e9735f_0.conda + typing_extensions: ==4.14.0 + url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.14.0-h32cad80_0.conda hash: - md5: 568ed1300869dca0ba09fb750cda5dbb - sha256: 4865fce0897d3cb0ffc8998219157a8325f6011c136e6fd740a9a6b169419296 + md5: a1cdd40fc962e2f7944bc19e01c7e584 + sha256: b8cabfa54432b0f124c0af6b6facdf8110892914fa841ac2e80ab65ac52c1ba4 category: main optional: false - name: typing-extensions - version: 4.13.2 + version: 4.14.0 manager: conda platform: win-64 dependencies: - typing_extensions: ==4.13.2 - url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.13.2-h0e9735f_0.conda + typing_extensions: ==4.14.0 + url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.14.0-h32cad80_0.conda hash: - md5: 568ed1300869dca0ba09fb750cda5dbb - sha256: 4865fce0897d3cb0ffc8998219157a8325f6011c136e6fd740a9a6b169419296 + md5: a1cdd40fc962e2f7944bc19e01c7e584 + sha256: b8cabfa54432b0f124c0af6b6facdf8110892914fa841ac2e80ab65ac52c1ba4 category: main optional: false - name: typing-inspection - version: 0.4.0 + version: 0.4.1 manager: conda platform: linux-64 dependencies: python: '>=3.9' typing_extensions: '>=4.12.0' - url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.1-pyhd8ed1ab_0.conda hash: - md5: c5c76894b6b7bacc888ba25753bc8677 - sha256: 172f971d70e1dbb978f6061d3f72be463d0f629155338603450d8ffe87cbf89d + md5: e0c3cd765dc15751ee2f0b03cd015712 + sha256: 4259a7502aea516c762ca8f3b8291b0d4114e094bdb3baae3171ccc0900e722f category: main optional: false - name: typing-inspection - version: 0.4.0 + version: 0.4.1 manager: conda platform: win-64 dependencies: python: '>=3.9' typing_extensions: '>=4.12.0' - url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.1-pyhd8ed1ab_0.conda hash: - md5: c5c76894b6b7bacc888ba25753bc8677 - sha256: 172f971d70e1dbb978f6061d3f72be463d0f629155338603450d8ffe87cbf89d + md5: e0c3cd765dc15751ee2f0b03cd015712 + sha256: 4259a7502aea516c762ca8f3b8291b0d4114e094bdb3baae3171ccc0900e722f category: main optional: false - name: typing_extensions - version: 4.13.2 + version: 4.14.0 manager: conda platform: linux-64 dependencies: - python: '' - url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.13.2-pyh29332c3_0.conda + python: '>=3.9' + url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.14.0-pyhe01879c_0.conda hash: - md5: 83fc6ae00127671e301c9f44254c31b8 - sha256: a8aaf351e6461de0d5d47e4911257e25eec2fa409d71f3b643bb2f748bde1c08 + md5: 2adcd9bb86f656d3d43bf84af59a1faf + sha256: 8561db52f278c5716b436da6d4ee5521712a49e8f3c70fcae5350f5ebb4be41c category: main optional: false - name: typing_extensions - version: 4.13.2 + version: 4.14.0 manager: conda platform: win-64 dependencies: - python: '' - url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.13.2-pyh29332c3_0.conda + python: '>=3.9' + url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.14.0-pyhe01879c_0.conda hash: - md5: 83fc6ae00127671e301c9f44254c31b8 - sha256: a8aaf351e6461de0d5d47e4911257e25eec2fa409d71f3b643bb2f748bde1c08 + md5: 2adcd9bb86f656d3d43bf84af59a1faf + sha256: 8561db52f278c5716b436da6d4ee5521712a49e8f3c70fcae5350f5ebb4be41c category: main optional: false - name: tzdata @@ -4658,7 +4678,7 @@ package: category: main optional: false - name: urllib3 - version: 2.4.0 + version: 2.5.0 manager: conda platform: linux-64 dependencies: @@ -4667,14 +4687,14 @@ package: pysocks: '>=1.5.6,<2.0,!=1.5.7' python: '>=3.9' zstandard: '>=0.18.0' - url: https://repo.prefix.dev/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/urllib3-2.5.0-pyhd8ed1ab_0.conda hash: - md5: c1e349028e0052c4eea844e94f773065 - sha256: a25403b76f7f03ca1a906e1ef0f88521edded991b9897e7fed56a3e334b3db8c + md5: 436c165519e140cb08d246a4472a9d6a + sha256: 4fb9789154bd666ca74e428d973df81087a697dbb987775bc3198d2215f240f8 category: main optional: false - name: urllib3 - version: 2.4.0 + version: 2.5.0 manager: conda platform: win-64 dependencies: @@ -4683,10 +4703,10 @@ package: pysocks: '>=1.5.6,<2.0,!=1.5.7' python: '>=3.9' zstandard: '>=0.18.0' - url: https://repo.prefix.dev/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/urllib3-2.5.0-pyhd8ed1ab_0.conda hash: - md5: c1e349028e0052c4eea844e94f773065 - sha256: a25403b76f7f03ca1a906e1ef0f88521edded991b9897e7fed56a3e334b3db8c + md5: 436c165519e140cb08d246a4472a9d6a + sha256: 4fb9789154bd666ca74e428d973df81087a697dbb987775bc3198d2215f240f8 category: main optional: false - name: vc @@ -4929,27 +4949,27 @@ package: category: main optional: false - name: zipp - version: 3.21.0 + version: 3.23.0 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/zipp-3.23.0-pyhd8ed1ab_0.conda hash: - md5: 0c3cc595284c5e8f0f9900a9b228a332 - sha256: 567c04f124525c97a096b65769834b7acb047db24b15a56888a322bf3966c3e1 + md5: df5e78d904988eb55042c0c97446079f + sha256: 7560d21e1b021fd40b65bfb72f67945a3fcb83d78ad7ccf37b8b3165ec3b68ad category: main optional: false - name: zipp - version: 3.21.0 + version: 3.23.0 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/zipp-3.23.0-pyhd8ed1ab_0.conda hash: - md5: 0c3cc595284c5e8f0f9900a9b228a332 - sha256: 567c04f124525c97a096b65769834b7acb047db24b15a56888a322bf3966c3e1 + md5: df5e78d904988eb55042c0c97446079f + sha256: 7560d21e1b021fd40b65bfb72f67945a3fcb83d78ad7ccf37b8b3165ec3b68ad category: main optional: false - name: zstandard @@ -5024,12 +5044,12 @@ package: numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@6e21320c89581dccb1635d8460dfe296ec41b6da + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 hash: - sha256: 6e21320c89581dccb1635d8460dfe296ec41b6da + sha256: 91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@6e21320c89581dccb1635d8460dfe296ec41b6da + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 category: main optional: false - name: geoapps-utils @@ -5041,12 +5061,12 @@ package: numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@6e21320c89581dccb1635d8460dfe296ec41b6da + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 hash: - sha256: 6e21320c89581dccb1635d8460dfe296ec41b6da + sha256: 91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@6e21320c89581dccb1635d8460dfe296ec41b6da + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 category: main optional: false - name: geoh5py @@ -5058,12 +5078,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@4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 + url: git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e hash: - sha256: 4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 + sha256: 1190a239fd7406fbe0b73169c3d8406a1aacae3e source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 + url: git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e category: main optional: false - name: geoh5py @@ -5075,16 +5095,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@4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 + url: git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e hash: - sha256: 4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 + sha256: 1190a239fd7406fbe0b73169c3d8406a1aacae3e source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 + url: git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e category: main optional: false - name: mira-simpeg - version: 0.23.0.1a3.dev4+g24027d81b + version: 0.23.0.1a5.dev33+gf72a1367e manager: pip platform: linux-64 dependencies: @@ -5099,16 +5119,16 @@ package: pymatsolver: '>=0.3' scipy: '>=1.8' zarr: '*' - url: git+https://github.com/MiraGeoscience/simpeg.git@24027d81b65df99d5f582acc4497ed33df8a3396 + url: git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 hash: - sha256: 24027d81b65df99d5f582acc4497ed33df8a3396 + sha256: f72a1367edcb2da969002ca06f18f532340b3c27 source: type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@24027d81b65df99d5f582acc4497ed33df8a3396 + url: git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 category: main optional: false - name: mira-simpeg - version: 0.23.0.1a3.dev4+g24027d81b + version: 0.23.0.1a5.dev33+gf72a1367e manager: pip platform: win-64 dependencies: @@ -5123,12 +5143,12 @@ package: pymatsolver: '>=0.3' scipy: '>=1.8' zarr: '*' - url: git+https://github.com/MiraGeoscience/simpeg.git@24027d81b65df99d5f582acc4497ed33df8a3396 + url: git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 hash: - sha256: 24027d81b65df99d5f582acc4497ed33df8a3396 + sha256: f72a1367edcb2da969002ca06f18f532340b3c27 source: type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@24027d81b65df99d5f582acc4497ed33df8a3396 + url: git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 category: main optional: false - name: octree-creation-app @@ -5142,12 +5162,12 @@ package: numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/octree-creation-app.git@e9c99d6fd5d324571a2717990aecb3ed673cbaca + url: git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 hash: - sha256: e9c99d6fd5d324571a2717990aecb3ed673cbaca + sha256: 02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 source: type: url - url: git+https://github.com/MiraGeoscience/octree-creation-app.git@e9c99d6fd5d324571a2717990aecb3ed673cbaca + url: git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 category: main optional: false - name: octree-creation-app @@ -5161,12 +5181,12 @@ package: numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/octree-creation-app.git@e9c99d6fd5d324571a2717990aecb3ed673cbaca + url: git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 hash: - sha256: e9c99d6fd5d324571a2717990aecb3ed673cbaca + sha256: 02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 source: type: url - url: git+https://github.com/MiraGeoscience/octree-creation-app.git@e9c99d6fd5d324571a2717990aecb3ed673cbaca + url: git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 category: main optional: false - name: param-sweeps @@ -5209,7 +5229,7 @@ package: distributed: '>=2025.3,<2025.4.dev' geoapps-utils: 0.6.0-alpha.1 geoh5py: 0.12.0a1 - mira-simpeg: 0.23.0.1a3.dev4+g24027d81b + mira-simpeg: 0.23.0.1a5.dev33+gf72a1367e numpy: '>=1.26.0,<1.27.0' octree-creation-app: 0.4.0-alpha.1 param-sweeps: 0.3.0-alpha.1 @@ -5219,12 +5239,12 @@ package: scikit-learn: '>=1.4.0,<1.5.0' scipy: '>=1.14.0,<1.15.0' tqdm: '>=4.66.1,<5.0.0' - url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@2d510ad712a20663dc0abb9afbead41537d10d91 + url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@25197892deadbaeb728441753ab9fba646ce5e0b hash: - sha256: 2d510ad712a20663dc0abb9afbead41537d10d91 + sha256: 25197892deadbaeb728441753ab9fba646ce5e0b source: type: url - url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@2d510ad712a20663dc0abb9afbead41537d10d91 + url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@25197892deadbaeb728441753ab9fba646ce5e0b category: main optional: false - name: simpeg-drivers @@ -5237,7 +5257,7 @@ package: distributed: '>=2025.3,<2025.4.dev' geoapps-utils: 0.6.0-alpha.1 geoh5py: 0.12.0a1 - mira-simpeg: 0.23.0.1a3.dev4+g24027d81b + mira-simpeg: 0.23.0.1a5.dev33+gf72a1367e numpy: '>=1.26.0,<1.27.0' octree-creation-app: 0.4.0-alpha.1 param-sweeps: 0.3.0-alpha.1 @@ -5247,11 +5267,11 @@ package: scikit-learn: '>=1.4.0,<1.5.0' scipy: '>=1.14.0,<1.15.0' tqdm: '>=4.66.1,<5.0.0' - url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@2d510ad712a20663dc0abb9afbead41537d10d91 + url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@25197892deadbaeb728441753ab9fba646ce5e0b hash: - sha256: 2d510ad712a20663dc0abb9afbead41537d10d91 + sha256: 25197892deadbaeb728441753ab9fba646ce5e0b source: type: url - url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@2d510ad712a20663dc0abb9afbead41537d10d91 + url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@25197892deadbaeb728441753ab9fba646ce5e0b category: main optional: false From a7c1a072db6707061b51e4c7b31c244eca9b5b52 Mon Sep 17 00:00:00 2001 From: dominiquef Date: Wed, 18 Jun 2025 17:34:39 -0700 Subject: [PATCH 7/7] Fix renaming --- plate_simulation/driver.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plate_simulation/driver.py b/plate_simulation/driver.py index 1a16e30..9414a3c 100644 --- a/plate_simulation/driver.py +++ b/plate_simulation/driver.py @@ -137,7 +137,7 @@ def simulation_parameters(self) -> BaseForwardOptions: if self._simulation_parameters is None: self._simulation_parameters = self.params.simulation_parameters() if self._simulation_parameters.physical_property == "conductivity": - self._simulation_parameters.model_type = "Resistivity (Ohm-m)" + self._simulation_parameters.models.model_type = "Resistivity (Ohm-m)" return self._simulation_parameters @property