From df1f313c5b2ddef6de5dde02a4214f704f4f3966 Mon Sep 17 00:00:00 2001 From: benjamink Date: Thu, 12 Jun 2025 14:50:00 -0700 Subject: [PATCH 01/10] first pass --- simpeg_drivers/electricals/driver.py | 20 ++ .../driver_2d_rotated_gradients_test.py | 12 +- tests/run_tests/driver_airborne_tem_test.py | 2 + .../driver_dc_b2d_rotated_gradients_test.py | 179 ++++++++++++++++++ tests/run_tests/driver_grav_test.py | 9 + tests/testing_utils.py | 45 +++-- 6 files changed, 243 insertions(+), 24 deletions(-) create mode 100644 tests/run_tests/driver_dc_b2d_rotated_gradients_test.py diff --git a/simpeg_drivers/electricals/driver.py b/simpeg_drivers/electricals/driver.py index 66f96779..a7644ec3 100644 --- a/simpeg_drivers/electricals/driver.py +++ b/simpeg_drivers/electricals/driver.py @@ -20,6 +20,7 @@ from geoapps_utils.utils.locations import get_locations from geoapps_utils.utils.numerical import weighted_average from geoh5py.data import Data +from geoh5py.groups import PropertyGroup from geoh5py.objects import DrapeModel from geoh5py.ui_json.ui_json import fetch_active_workspace from geoh5py.workspace import Workspace @@ -105,6 +106,14 @@ def transfer_models(self, mesh: DrapeModel) -> dict[str, uuid.UUID | float]: for model in ["reference_model", "lower_bound", "upper_bound"]: models[model] = getattr(self.batch2d_params, model) + if self.batch2d_params.gradient_rotation is not None: + group_properties = {} + for prop in self.batch2d_params.gradient_rotation.properties: + model = self.batch2d_params.mesh.get_data(prop)[0] + group_properties[model.name] = model + + models.update(group_properties) + if self.batch2d_params.mesh is not None: xyz_in = get_locations(self.workspace, self.batch2d_params.mesh) xyz_out = mesh.centroids @@ -122,6 +131,17 @@ def transfer_models(self, mesh: DrapeModel) -> dict[str, uuid.UUID | float]: model_object = mesh.add_data({name: {"values": model_values}}) models[name] = model_object + if ( + not self.batch2d_params.forward_only + and self.batch2d_params.gradient_rotation is not None + ): + pg = PropertyGroup( + mesh, + properties=[models[prop] for prop in group_properties], + property_group_type=self.batch2d_params.gradient_rotation.property_group_type, + ) + models["gradient_rotation"] = pg + return models def write_files(self, lookup): diff --git a/tests/run_tests/driver_2d_rotated_gradients_test.py b/tests/run_tests/driver_2d_rotated_gradients_test.py index 74a3790e..1c7fdfad 100644 --- a/tests/run_tests/driver_2d_rotated_gradients_test.py +++ b/tests/run_tests/driver_2d_rotated_gradients_test.py @@ -14,6 +14,7 @@ from unittest.mock import patch import numpy as np +from geoapps_utils.modelling.plates import PlateModel from geoapps_utils.utils.importing import GeoAppsError from geoh5py.groups.property_group import PropertyGroup from geoh5py.workspace import Workspace @@ -48,9 +49,18 @@ def test_dc2d_rotated_grad_fwr_run( n_lines=3, refinement=(4, 6), ): + plate_model = PlateModel( + strike_length=80.0, + dip_length=80.0, + width=20.0, + center=(0.0, 0.0, -40), + direction=90, + dip=45, + ) # Run the forward geoh5, _, model, survey, topography = setup_inversion_workspace( tmp_path, + plate_model, background=0.01, anomaly=10, n_electrodes=n_electrodes, @@ -140,7 +150,7 @@ def test_dc2d_rotated_grad_run( model_type="Resistivity (Ohm-m)", starting_model=100.0, reference_model=100.0, - s_norm=0.0, + s_norm=1.0, x_norm=0.0, z_norm=0.0, gradient_type="components", diff --git a/tests/run_tests/driver_airborne_tem_test.py b/tests/run_tests/driver_airborne_tem_test.py index 1ad5f7ae..db181905 100644 --- a/tests/run_tests/driver_airborne_tem_test.py +++ b/tests/run_tests/driver_airborne_tem_test.py @@ -13,6 +13,7 @@ from pathlib import Path import numpy as np +from geoapps_utils.modelling.plates import PlateModel from geoh5py.groups import SimPEGGroup from geoh5py.workspace import Workspace from pytest import raises @@ -38,6 +39,7 @@ def test_bad_waveform(tmp_path: Path): n_grid_points = 3 refinement = (2,) + geoh5, _, model, survey, topography = setup_inversion_workspace( tmp_path, background=0.001, diff --git a/tests/run_tests/driver_dc_b2d_rotated_gradients_test.py b/tests/run_tests/driver_dc_b2d_rotated_gradients_test.py new file mode 100644 index 00000000..52cb8fbd --- /dev/null +++ b/tests/run_tests/driver_dc_b2d_rotated_gradients_test.py @@ -0,0 +1,179 @@ +# ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' +# Copyright (c) 2025 Mira Geoscience Ltd. ' +# ' +# This file is part of simpeg-drivers package. ' +# ' +# simpeg-drivers 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 + +import json +from pathlib import Path + +import numpy as np +from geoh5py.groups import PropertyGroup, SimPEGGroup +from geoh5py.workspace import Workspace + +from simpeg_drivers.electricals.direct_current.pseudo_three_dimensions.driver import ( + DCBatch2DForwardDriver, + DCBatch2DInversionDriver, +) +from simpeg_drivers.electricals.direct_current.pseudo_three_dimensions.options import ( + DCBatch2DForwardOptions, + DCBatch2DInversionOptions, +) +from simpeg_drivers.electricals.options import ( + FileControlOptions, +) +from simpeg_drivers.options import ( + ActiveCellsOptions, + DrapeModelOptions, + LineSelectionOptions, +) +from simpeg_drivers.utils.utils import get_inversion_output +from tests.testing_utils import check_target, setup_inversion_workspace + + +# To test the full run and validate the inversion. +# Move this file out of the test directory and run. + +target_run = {"data_norm": 1.099, "phi_d": 8657, "phi_m": 1.217} + + +def test_dc_p3d_fwr_run(tmp_path: Path, n_electrodes=10, n_lines=3, refinement=(4, 6)): + # Run the forward + geoh5, _, model, survey, topography = setup_inversion_workspace( + tmp_path, + background=0.01, + anomaly=10, + n_electrodes=n_electrodes, + n_lines=n_lines, + refinement=refinement, + inversion_type="direct current pseudo 3d", + drape_height=0.0, + flatten=False, + ) + params = DCBatch2DForwardOptions( + geoh5=geoh5, + mesh=model.parent, + drape_model=DrapeModelOptions( + u_cell_size=5.0, + v_cell_size=5.0, + depth_core=100.0, + expansion_factor=1.1, + horizontal_padding=1000.0, + vertical_padding=1000.0, + ), + active_cells=ActiveCellsOptions(topography_object=topography), + data_object=survey, + starting_model=model, + line_selection=LineSelectionOptions( + line_object=geoh5.get_entity("line_ids")[0] + ), + ) + fwr_driver = DCBatch2DForwardDriver(params) + fwr_driver.run() + + +def test_dc_p3d_run( + tmp_path: Path, + max_iterations=1, + pytest=True, +): + workpath = tmp_path / "inversion_test.ui.geoh5" + if pytest: + workpath = tmp_path.parent / "test_dc_p3d_fwr_run0" / "inversion_test.ui.geoh5" + + with Workspace(workpath) as geoh5: + potential = geoh5.get_entity("Iteration_0_dc")[0] + out_group = geoh5.get_entity("Line 1")[0].parent + mesh = out_group.get_entity("mesh")[0] # Finds the octree mesh + topography = geoh5.get_entity("topography")[0] + + # Create property group with orientation + dip = np.ones(mesh.n_cells) * 45 + azimuth = np.ones(mesh.n_cells) * 90 + + data_list = mesh.add_data( + { + "azimuth": {"values": azimuth}, + "dip": {"values": dip}, + } + ) + pg = PropertyGroup( + mesh, properties=data_list, property_group_type="Dip direction & dip" + ) + + # Run the inverse + params = DCBatch2DInversionOptions( + geoh5=geoh5, + mesh=mesh, + drape_model=DrapeModelOptions( + u_cell_size=5.0, + v_cell_size=5.0, + depth_core=100.0, + expansion_factor=1.1, + horizontal_padding=1000.0, + vertical_padding=1000.0, + ), + active_cells=ActiveCellsOptions(topography_object=topography), + data_object=potential.parent, + gradient_rotation=pg, + potential_channel=potential, + potential_uncertainty=1e-3, + line_selection=LineSelectionOptions( + line_object=geoh5.get_entity("line_ids")[0] + ), + starting_model=1e-2, + reference_model=1e-2, + s_norm=0.0, + x_norm=0.0, + z_norm=0.0, + gradient_type="components", + max_global_iterations=max_iterations, + initial_beta=None, + initial_beta_ratio=10.0, + percentile=100, + upper_bound=10, + cooling_rate=1, + file_control=FileControlOptions(cleanup=False), + ) + params.write_ui_json(path=tmp_path / "Inv_run.ui.json") + + driver = DCBatch2DInversionDriver.start(str(tmp_path / "Inv_run.ui.json")) + + basepath = workpath.parent + with open(basepath / "lookup.json", encoding="utf8") as f: + lookup = json.load(f) + middle_line_id = next(k for k, v in lookup.items() if v["line_id"] == 101) + + with Workspace(basepath / f"{middle_line_id}.ui.geoh5", mode="r") as workspace: + middle_inversion_group = next( + k for k in workspace.groups if isinstance(k, SimPEGGroup) + ) + filedata = middle_inversion_group.get_entity("SimPEG.out")[0] + + with driver.batch2d_params.out_group.workspace.open(mode="r+"): + filedata.copy(parent=driver.batch2d_params.out_group) + + output = get_inversion_output( + driver.batch2d_params.geoh5.h5file, driver.batch2d_params.out_group.uid + ) + if geoh5.open(): + output["data"] = potential.values + if pytest: + check_target(output, target_run) + + +if __name__ == "__main__": + # Full run + test_dc_p3d_fwr_run(Path("./"), n_electrodes=20, n_lines=3, refinement=(4, 8)) + test_dc_p3d_run( + Path("./"), + max_iterations=20, + pytest=False, + ) diff --git a/tests/run_tests/driver_grav_test.py b/tests/run_tests/driver_grav_test.py index 83a6c86a..7eb81fe2 100644 --- a/tests/run_tests/driver_grav_test.py +++ b/tests/run_tests/driver_grav_test.py @@ -14,6 +14,7 @@ from unittest.mock import patch import numpy as np +from geoapps_utils.modelling.plates import PlateModel from geoapps_utils.utils.importing import GeoAppsError from geoh5py.workspace import Workspace from pytest import raises @@ -42,9 +43,17 @@ def test_gravity_fwr_run( n_grid_points=2, refinement=(2,), ): + plate_model = PlateModel( + strike_length=40.0, + dip_length=40.0, + width=40.0, + origin=(0.0, 0.0, 10.0), + ) + # Run the forward geoh5, _, model, survey, topography = setup_inversion_workspace( tmp_path, + plate_model, background=0.0, anomaly=0.75, n_electrodes=n_grid_points, diff --git a/tests/testing_utils.py b/tests/testing_utils.py index f200d99c..da542e98 100644 --- a/tests/testing_utils.py +++ b/tests/testing_utils.py @@ -15,6 +15,7 @@ import numpy as np from discretize.utils import mesh_builder_xyz +from geoapps_utils.modelling.plates import PlateModel, make_plate from geoh5py import Workspace from geoh5py.objects import ( AirborneFEMReceivers, @@ -22,6 +23,7 @@ AirborneTEMReceivers, AirborneTEMTransmitters, CurrentElectrode, + DrapeModel, LargeLoopGroundTEMReceivers, LargeLoopGroundTEMTransmitters, MTReceivers, @@ -332,8 +334,17 @@ def generate_tdem_survey(geoh5, vertices, n_lines, flatten=False, airborne=False return survey +plate_model_default = PlateModel( + strike_length=40.0, + dip_length=40.0, + width=40.0, + origin=(0.0, 0.0, 10.0), +) + + def setup_inversion_workspace( work_dir, + plate_model: PlateModel = plate_model_default, background=None, anomaly=None, cell_size=(5.0, 5.0, 5.0), @@ -349,6 +360,11 @@ def setup_inversion_workspace( flatten=False, geoh5=None, ): + """ + Creates a workspace populated with objects to simulate/invert a simple model. + + rot_xyz: Rotation angles in degrees about the x, y, and z axes. + """ filepath = Path(work_dir) / "inversion_test.ui.geoh5" if geoh5 is None: if filepath.is_file(): @@ -499,29 +515,12 @@ def setup_inversion_workspace( entity = treemesh_2_octree(geoh5, mesh, name="mesh") active = active_from_xyz(entity, topography.vertices, grid_reference="top") - # Model - if flatten: - p0 = np.r_[-20, -20, -30] - p1 = np.r_[20, 20, -70] - - model = utils.model_builder.add_block( - entity.centroids, - background * np.ones(mesh.nC), - p0, - p1, - anomaly, - ) - else: - p0 = np.r_[-20, -20, -10] - p1 = np.r_[20, 20, 30] - - model = utils.model_builder.add_block( - entity.centroids, - background * np.ones(mesh.nC), - p0, - p1, - anomaly, - ) + # Create the Model + cell_centers = entity.centroids.copy() + + model = make_plate( + cell_centers, plate_model, background=background, anomaly=anomaly + ) if "1d" in inversion_type: model = background * np.ones(mesh.nC) From fee75f4623655690a40c98de0dd8bc6f0818d4f9 Mon Sep 17 00:00:00 2001 From: benjamink Date: Mon, 16 Jun 2025 14:55:16 -0700 Subject: [PATCH 02/10] update rotated gradient tests --- tests/run_tests/driver_2d_rotated_gradients_test.py | 4 ++-- .../driver_dc_b2d_rotated_gradients_test.py | 12 ++++++++++++ tests/run_tests/driver_rotated_gradients_test.py | 10 ++++++++++ 3 files changed, 24 insertions(+), 2 deletions(-) diff --git a/tests/run_tests/driver_2d_rotated_gradients_test.py b/tests/run_tests/driver_2d_rotated_gradients_test.py index 1c7fdfad..1c925263 100644 --- a/tests/run_tests/driver_2d_rotated_gradients_test.py +++ b/tests/run_tests/driver_2d_rotated_gradients_test.py @@ -53,14 +53,14 @@ def test_dc2d_rotated_grad_fwr_run( strike_length=80.0, dip_length=80.0, width=20.0, - center=(0.0, 0.0, -40), + origin=(0.0, 0.0, -40), direction=90, dip=45, ) # Run the forward geoh5, _, model, survey, topography = setup_inversion_workspace( tmp_path, - plate_model, + plate_model=plate_model, background=0.01, anomaly=10, n_electrodes=n_electrodes, diff --git a/tests/run_tests/driver_dc_b2d_rotated_gradients_test.py b/tests/run_tests/driver_dc_b2d_rotated_gradients_test.py index 52cb8fbd..ac9fc35e 100644 --- a/tests/run_tests/driver_dc_b2d_rotated_gradients_test.py +++ b/tests/run_tests/driver_dc_b2d_rotated_gradients_test.py @@ -15,6 +15,7 @@ from pathlib import Path import numpy as np +from geoapps_utils.modelling.plates import PlateModel from geoh5py.groups import PropertyGroup, SimPEGGroup from geoh5py.workspace import Workspace @@ -46,8 +47,19 @@ def test_dc_p3d_fwr_run(tmp_path: Path, n_electrodes=10, n_lines=3, refinement=(4, 6)): # Run the forward + + plate_model = PlateModel( + strike_length=1000.0, + dip_length=150.0, + width=20.0, + origin=(0.0, 0.0, -50), + direction=90, + dip=45, + ) + geoh5, _, model, survey, topography = setup_inversion_workspace( tmp_path, + plate_model=plate_model, background=0.01, anomaly=10, n_electrodes=n_electrodes, diff --git a/tests/run_tests/driver_rotated_gradients_test.py b/tests/run_tests/driver_rotated_gradients_test.py index ec6664b8..9055410d 100644 --- a/tests/run_tests/driver_rotated_gradients_test.py +++ b/tests/run_tests/driver_rotated_gradients_test.py @@ -14,6 +14,7 @@ from unittest.mock import patch import numpy as np +from geoapps_utils.modelling.plates import PlateModel from geoapps_utils.utils.importing import GeoAppsError from geoh5py.groups.property_group import PropertyGroup from geoh5py.workspace import Workspace @@ -44,8 +45,17 @@ def test_gravity_rotated_grad_fwr_run( refinement=(2,), ): # Run the forward + plate_model = PlateModel( + strike_length=500.0, + dip_length=150.0, + width=40.0, + origin=(0.0, 0.0, -50.0), + direction=90.0, + dip=45.0, + ) geoh5, _, model, survey, topography = setup_inversion_workspace( tmp_path, + plate_model=plate_model, background=0.0, anomaly=0.75, n_electrodes=n_grid_points, From e8dc914f6674e6e1557362c0e1cdd3f4ca48d194 Mon Sep 17 00:00:00 2001 From: benjamink Date: Tue, 17 Jun 2025 12:33:50 -0700 Subject: [PATCH 03/10] Add plates to rotated gradient tests and update targets --- .../driver_2d_rotated_gradients_test.py | 23 ++++++++-------- .../driver_dc_b2d_rotated_gradients_test.py | 4 +-- .../driver_rotated_gradients_test.py | 26 +++++++++---------- 3 files changed, 26 insertions(+), 27 deletions(-) diff --git a/tests/run_tests/driver_2d_rotated_gradients_test.py b/tests/run_tests/driver_2d_rotated_gradients_test.py index 1c925263..df045f76 100644 --- a/tests/run_tests/driver_2d_rotated_gradients_test.py +++ b/tests/run_tests/driver_2d_rotated_gradients_test.py @@ -40,7 +40,7 @@ # To test the full run and validate the inversion. # Move this file out of the test directory and run. -target_run = {"data_norm": 0.5963828772690819, "phi_d": 2870, "phi_m": 18.7} +target_run = {"data_norm": 0.6439364297260022, "phi_d": 92.2, "phi_m": 0.255} def test_dc2d_rotated_grad_fwr_run( @@ -50,13 +50,14 @@ def test_dc2d_rotated_grad_fwr_run( refinement=(4, 6), ): plate_model = PlateModel( - strike_length=80.0, - dip_length=80.0, + strike_length=1000.0, + dip_length=150.0, width=20.0, - origin=(0.0, 0.0, -40), + origin=(0.0, 0.0, -50), direction=90, dip=45, ) + # Run the forward geoh5, _, model, survey, topography = setup_inversion_workspace( tmp_path, @@ -114,18 +115,18 @@ def test_dc2d_rotated_grad_run( mesh = geoh5.get_entity("Models")[0] # Create property group with orientation - dip = np.ones(mesh.n_cells) * 45 - azimuth = np.ones(mesh.n_cells) * 90 + i = np.ones(mesh.n_cells) + j = np.zeros(mesh.n_cells) + k = np.ones(mesh.n_cells) data_list = mesh.add_data( { - "azimuth": {"values": azimuth}, - "dip": {"values": dip}, + "i": {"values": i}, + "j": {"values": j}, + "k": {"values": k}, } ) - pg = PropertyGroup( - mesh, properties=data_list, property_group_type="Dip direction & dip" - ) + pg = PropertyGroup(mesh, properties=data_list, property_group_type="3D vector") # Run the inverse params = DC2DInversionOptions( diff --git a/tests/run_tests/driver_dc_b2d_rotated_gradients_test.py b/tests/run_tests/driver_dc_b2d_rotated_gradients_test.py index ac9fc35e..6d982236 100644 --- a/tests/run_tests/driver_dc_b2d_rotated_gradients_test.py +++ b/tests/run_tests/driver_dc_b2d_rotated_gradients_test.py @@ -42,12 +42,10 @@ # To test the full run and validate the inversion. # Move this file out of the test directory and run. -target_run = {"data_norm": 1.099, "phi_d": 8657, "phi_m": 1.217} +target_run = {"data_norm": 1.1038993594022803, "phi_d": 308, "phi_m": 0.0237} def test_dc_p3d_fwr_run(tmp_path: Path, n_electrodes=10, n_lines=3, refinement=(4, 6)): - # Run the forward - plate_model = PlateModel( strike_length=1000.0, dip_length=150.0, diff --git a/tests/run_tests/driver_rotated_gradients_test.py b/tests/run_tests/driver_rotated_gradients_test.py index 9055410d..eb33f766 100644 --- a/tests/run_tests/driver_rotated_gradients_test.py +++ b/tests/run_tests/driver_rotated_gradients_test.py @@ -36,7 +36,7 @@ # To test the full run and validate the inversion. # Move this file out of the test directory and run. -target_run = {"data_norm": 0.006830937520353864, "phi_d": 0.0309, "phi_m": 0.028} +target_run = {"data_norm": 0.40763989924638555, "phi_d": 1040, "phi_m": 104} def test_gravity_rotated_grad_fwr_run( @@ -48,10 +48,10 @@ def test_gravity_rotated_grad_fwr_run( plate_model = PlateModel( strike_length=500.0, dip_length=150.0, - width=40.0, - origin=(0.0, 0.0, -50.0), - direction=90.0, - dip=45.0, + width=20.0, + origin=(0.0, 0.0, -10.0), + direction=60.0, + dip=70.0, ) geoh5, _, model, survey, topography = setup_inversion_workspace( tmp_path, @@ -96,21 +96,21 @@ def test_rotated_grad_run( gz = geoh5.get_entity("Iteration_0_gz")[0] orig_gz = gz.values.copy() mesh = geoh5.get_entity("mesh")[0] + topography = geoh5.get_entity("topography")[0] # Create property group with orientation - i = np.ones(mesh.n_cells) - j = np.zeros(mesh.n_cells) - k = np.ones(mesh.n_cells) + dip = np.ones(mesh.n_cells) * 70 + azimuth = np.ones(mesh.n_cells) * 60 data_list = mesh.add_data( { - "i": {"values": i}, - "j": {"values": j}, - "k": {"values": k}, + "azimuth": {"values": azimuth}, + "dip": {"values": dip}, } ) - pg = PropertyGroup(mesh, properties=data_list, property_group_type="3D vector") - topography = geoh5.get_entity("topography")[0] + pg = PropertyGroup( + mesh, properties=data_list, property_group_type="Dip direction & dip" + ) # Run the inverse active_cells = ActiveCellsOptions(topography_object=topography) From 80d444809f01c5c52b98755c3f8cbde4d6bdaf07 Mon Sep 17 00:00:00 2001 From: benjamink Date: Tue, 17 Jun 2025 13:56:18 -0700 Subject: [PATCH 04/10] fix runtests --- .../driver_2d_rotated_gradients_test.py | 2 +- .../driver_dc_b2d_rotated_gradients_test.py | 18 ++++++++++++------ tests/run_tests/driver_fem_test.py | 8 ++++++++ tests/run_tests/driver_ground_tem_test.py | 15 +++++++++++++++ tests/run_tests/driver_tipper_test.py | 2 +- 5 files changed, 37 insertions(+), 8 deletions(-) diff --git a/tests/run_tests/driver_2d_rotated_gradients_test.py b/tests/run_tests/driver_2d_rotated_gradients_test.py index df045f76..e15047c3 100644 --- a/tests/run_tests/driver_2d_rotated_gradients_test.py +++ b/tests/run_tests/driver_2d_rotated_gradients_test.py @@ -63,7 +63,7 @@ def test_dc2d_rotated_grad_fwr_run( tmp_path, plate_model=plate_model, background=0.01, - anomaly=10, + anomaly=10.0, n_electrodes=n_electrodes, n_lines=n_lines, refinement=refinement, diff --git a/tests/run_tests/driver_dc_b2d_rotated_gradients_test.py b/tests/run_tests/driver_dc_b2d_rotated_gradients_test.py index 6d982236..9c8530bc 100644 --- a/tests/run_tests/driver_dc_b2d_rotated_gradients_test.py +++ b/tests/run_tests/driver_dc_b2d_rotated_gradients_test.py @@ -45,7 +45,9 @@ target_run = {"data_norm": 1.1038993594022803, "phi_d": 308, "phi_m": 0.0237} -def test_dc_p3d_fwr_run(tmp_path: Path, n_electrodes=10, n_lines=3, refinement=(4, 6)): +def test_dc_rotated_p3d_fwr_run( + tmp_path: Path, n_electrodes=10, n_lines=3, refinement=(4, 6) +): plate_model = PlateModel( strike_length=1000.0, dip_length=150.0, @@ -59,7 +61,7 @@ def test_dc_p3d_fwr_run(tmp_path: Path, n_electrodes=10, n_lines=3, refinement=( tmp_path, plate_model=plate_model, background=0.01, - anomaly=10, + anomaly=10.0, n_electrodes=n_electrodes, n_lines=n_lines, refinement=refinement, @@ -89,14 +91,16 @@ def test_dc_p3d_fwr_run(tmp_path: Path, n_electrodes=10, n_lines=3, refinement=( fwr_driver.run() -def test_dc_p3d_run( +def test_dc_rotated_gradient_p3d_run( tmp_path: Path, max_iterations=1, pytest=True, ): workpath = tmp_path / "inversion_test.ui.geoh5" if pytest: - workpath = tmp_path.parent / "test_dc_p3d_fwr_run0" / "inversion_test.ui.geoh5" + workpath = ( + tmp_path.parent / "test_dc_rotated_p3d_fwr_run0" / "inversion_test.ui.geoh5" + ) with Workspace(workpath) as geoh5: potential = geoh5.get_entity("Iteration_0_dc")[0] @@ -181,8 +185,10 @@ def test_dc_p3d_run( if __name__ == "__main__": # Full run - test_dc_p3d_fwr_run(Path("./"), n_electrodes=20, n_lines=3, refinement=(4, 8)) - test_dc_p3d_run( + test_dc_rotated_p3d_fwr_run( + Path("./"), n_electrodes=20, n_lines=3, refinement=(4, 8) + ) + test_dc_rotated_gradient_p3d_run( Path("./"), max_iterations=20, pytest=False, diff --git a/tests/run_tests/driver_fem_test.py b/tests/run_tests/driver_fem_test.py index 6f9054f4..5afc10a7 100644 --- a/tests/run_tests/driver_fem_test.py +++ b/tests/run_tests/driver_fem_test.py @@ -16,6 +16,7 @@ from pathlib import Path import numpy as np +from geoapps_utils.modelling.plates import PlateModel from geoh5py import Workspace from geoh5py.groups import SimPEGGroup @@ -72,8 +73,15 @@ def test_fem_fwr_run( cell_size=(20.0, 20.0, 20.0), ): # Run the forward + plate_model = PlateModel( + strike_length=40.0, + dip_length=40.0, + width=40.0, + origin=(0.0, 0.0, -50.0), + ) geoh5, _, model, survey, topography = setup_inversion_workspace( tmp_path, + plate_model=plate_model, background=1e-3, anomaly=1.0, n_electrodes=n_grid_points, diff --git a/tests/run_tests/driver_ground_tem_test.py b/tests/run_tests/driver_ground_tem_test.py index 38b2d8ac..c257abf0 100644 --- a/tests/run_tests/driver_ground_tem_test.py +++ b/tests/run_tests/driver_ground_tem_test.py @@ -14,6 +14,7 @@ from pathlib import Path import numpy as np +from geoapps_utils.modelling.plates import PlateModel from geoh5py.workspace import Workspace from pymatsolver.direct import Mumps @@ -47,8 +48,15 @@ def test_tiling_ground_tem( **_, ): # Run the forward + plate_model = PlateModel( + strike_length=40.0, + dip_length=40.0, + width=40.0, + origin=(0.0, 0.0, -50.0), + ) geoh5, _, model, survey, topography = setup_inversion_workspace( tmp_path, + plate_model=plate_model, background=0.001, anomaly=1.0, n_electrodes=n_grid_points, @@ -94,8 +102,15 @@ def test_ground_tem_fwr_run( if pytest: caplog.set_level(INFO) # Run the forward + plate_model = PlateModel( + strike_length=40.0, + dip_length=40.0, + width=40.0, + origin=(0.0, 0.0, -50.0), + ) geoh5, _, model, survey, topography = setup_inversion_workspace( tmp_path, + plate_model=plate_model, background=0.001, anomaly=1.0, n_electrodes=n_grid_points, diff --git a/tests/run_tests/driver_tipper_test.py b/tests/run_tests/driver_tipper_test.py index d87f2a4a..3cf274df 100644 --- a/tests/run_tests/driver_tipper_test.py +++ b/tests/run_tests/driver_tipper_test.py @@ -44,7 +44,7 @@ def test_tipper_fwr_run( # Run the forward geoh5, _, model, survey, topography = setup_inversion_workspace( tmp_path, - background=100, + background=100.0, anomaly=1.0, n_electrodes=n_grid_points, n_lines=n_grid_points, From 28d4abd84934bd9840137519a0dabda8aa688de1 Mon Sep 17 00:00:00 2001 From: benjamink Date: Wed, 18 Jun 2025 11:51:33 -0700 Subject: [PATCH 05/10] fix tests after update with dev --- simpeg_drivers/electricals/driver.py | 8 ++++---- tests/run_tests/driver_dc_b2d_rotated_gradients_test.py | 8 ++++---- tests/run_tests/driver_dc_b2d_test.py | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/simpeg_drivers/electricals/driver.py b/simpeg_drivers/electricals/driver.py index 57668a63..7934006c 100644 --- a/simpeg_drivers/electricals/driver.py +++ b/simpeg_drivers/electricals/driver.py @@ -106,9 +106,9 @@ def transfer_models(self, mesh: DrapeModel) -> dict[str, uuid.UUID | float]: for model in ["reference_model", "lower_bound", "upper_bound"]: models[model] = getattr(self.batch2d_params.models, model) - if self.batch2d_params.gradient_rotation is not None: + if self.batch2d_params.models.gradient_rotation is not None: group_properties = {} - for prop in self.batch2d_params.gradient_rotation.properties: + for prop in self.batch2d_params.models.gradient_rotation.properties: model = self.batch2d_params.mesh.get_data(prop)[0] group_properties[model.name] = model @@ -133,12 +133,12 @@ def transfer_models(self, mesh: DrapeModel) -> dict[str, uuid.UUID | float]: if ( not self.batch2d_params.forward_only - and self.batch2d_params.gradient_rotation is not None + and self.batch2d_params.models.gradient_rotation is not None ): pg = PropertyGroup( mesh, properties=[models[prop] for prop in group_properties], - property_group_type=self.batch2d_params.gradient_rotation.property_group_type, + property_group_type=self.batch2d_params.models.gradient_rotation.property_group_type, ) models["gradient_rotation"] = pg diff --git a/tests/run_tests/driver_dc_b2d_rotated_gradients_test.py b/tests/run_tests/driver_dc_b2d_rotated_gradients_test.py index 9c8530bc..d56ced22 100644 --- a/tests/run_tests/driver_dc_b2d_rotated_gradients_test.py +++ b/tests/run_tests/driver_dc_b2d_rotated_gradients_test.py @@ -69,7 +69,7 @@ def test_dc_rotated_p3d_fwr_run( drape_height=0.0, flatten=False, ) - params = DCBatch2DForwardOptions( + params = DCBatch2DForwardOptions.build( geoh5=geoh5, mesh=model.parent, drape_model=DrapeModelOptions( @@ -80,7 +80,7 @@ def test_dc_rotated_p3d_fwr_run( horizontal_padding=1000.0, vertical_padding=1000.0, ), - active_cells=ActiveCellsOptions(topography_object=topography), + topography_object=topography, data_object=survey, starting_model=model, line_selection=LineSelectionOptions( @@ -123,7 +123,7 @@ def test_dc_rotated_gradient_p3d_run( ) # Run the inverse - params = DCBatch2DInversionOptions( + params = DCBatch2DInversionOptions.build( geoh5=geoh5, mesh=mesh, drape_model=DrapeModelOptions( @@ -134,7 +134,7 @@ def test_dc_rotated_gradient_p3d_run( horizontal_padding=1000.0, vertical_padding=1000.0, ), - active_cells=ActiveCellsOptions(topography_object=topography), + topography_object=topography, data_object=potential.parent, gradient_rotation=pg, potential_channel=potential, diff --git a/tests/run_tests/driver_dc_b2d_test.py b/tests/run_tests/driver_dc_b2d_test.py index b0f406da..c7d4513d 100644 --- a/tests/run_tests/driver_dc_b2d_test.py +++ b/tests/run_tests/driver_dc_b2d_test.py @@ -53,7 +53,7 @@ def test_dc_p3d_fwr_run( geoh5, _, model, survey, topography = setup_inversion_workspace( tmp_path, background=0.01, - anomaly=10, + anomaly=10.0, n_electrodes=n_electrodes, n_lines=n_lines, refinement=refinement, From 0bf6af44e47a52a4962f48cdf1934c00cbb8d242 Mon Sep 17 00:00:00 2001 From: benjamink Date: Thu, 19 Jun 2025 08:24:48 -0700 Subject: [PATCH 06/10] update lock files --- .../py-3.10-linux-64-dev.conda.lock.yml | 34 +- environments/py-3.10-linux-64.conda.lock.yml | 26 +- .../py-3.10-win-64-dev.conda.lock.yml | 32 +- environments/py-3.10-win-64.conda.lock.yml | 24 +- .../py-3.11-linux-64-dev.conda.lock.yml | 34 +- environments/py-3.11-linux-64.conda.lock.yml | 26 +- .../py-3.11-win-64-dev.conda.lock.yml | 32 +- environments/py-3.11-win-64.conda.lock.yml | 24 +- .../py-3.12-linux-64-dev.conda.lock.yml | 34 +- environments/py-3.12-linux-64.conda.lock.yml | 26 +- .../py-3.12-win-64-dev.conda.lock.yml | 32 +- environments/py-3.12-win-64.conda.lock.yml | 24 +- py-3.10.conda-lock.yml | 1361 ++++++++-------- py-3.11.conda-lock.yml | 1373 +++++++++-------- py-3.12.conda-lock.yml | 1373 +++++++++-------- 15 files changed, 2229 insertions(+), 2226 deletions(-) diff --git a/environments/py-3.10-linux-64-dev.conda.lock.yml b/environments/py-3.10-linux-64-dev.conda.lock.yml index ae1cc0ce..688de405 100644 --- a/environments/py-3.10-linux-64-dev.conda.lock.yml +++ b/environments/py-3.10-linux-64-dev.conda.lock.yml @@ -29,10 +29,10 @@ dependencies: - brotli-python=1.1.0=py310hf71b8c6_3 - bzip2=1.0.8=h4bc722e_7 - c-ares=1.34.5=hb9d3cd8_0 - - ca-certificates=2025.4.26=hbd8a1cb_0 + - ca-certificates=2025.6.15=hbd8a1cb_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2025.4.26=pyhd8ed1ab_0 + - certifi=2025.6.15=pyhd8ed1ab_0 - cffi=1.17.1=py310h8deb56e_0 - charset-normalizer=3.4.2=pyhd8ed1ab_0 - click=8.2.1=pyh707e725_0 @@ -40,7 +40,7 @@ dependencies: - colorama=0.4.6=pyhd8ed1ab_1 - comm=0.2.2=pyhd8ed1ab_1 - contourpy=1.3.2=py310h3788b33_0 - - coverage=7.8.2=py310h89163eb_0 + - coverage=7.9.1=py310h89163eb_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py310ha75aee5_0 - dask-core=2025.3.0=pyhd8ed1ab_0 @@ -55,7 +55,7 @@ dependencies: - exceptiongroup=1.3.0=pyhd8ed1ab_0 - executing=2.2.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.58.2=py310h89163eb_0 + - fonttools=4.58.4=py310h89163eb_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.13.3=ha770c72_1 - fsspec=2025.5.1=pyhd8ed1ab_0 @@ -108,9 +108,9 @@ dependencies: - krb5=1.21.3=h659f571_0 - latexcodec=2.0.1=pyh9f0ad1d_0 - lcms2=2.17=h717163a_0 - - ld_impl_linux-64=2.43=h712a8e2_4 + - ld_impl_linux-64=2.43=h1423503_5 - lerc=4.0.0=h0aef613_1 - - libaec=1.1.3=h59595ed_0 + - libaec=1.1.4=h3f801dc_0 - libblas=3.9.0=31_hfdb39a5_mkl - libbrotlicommon=1.1.0=hb9d3cd8_3 - libbrotlidec=1.1.0=hb9d3cd8_3 @@ -136,7 +136,7 @@ dependencies: - liblzma=5.8.1=hb9d3cd8_2 - libnghttp2=1.64.0=h161d5f1_0 - libnsl=2.0.1=hd590300_0 - - libpng=1.6.47=h943b412_0 + - libpng=1.6.49=h943b412_0 - libscotch=7.0.6=hea33c07_1 - libsodium=1.0.20=h4ab18f5_0 - libsqlite=3.50.1=hee588c1_0 @@ -151,7 +151,7 @@ dependencies: - libxml2=2.13.8=h4bc477f_0 - libzlib=1.3.1=hb9d3cd8_2 - linkify-it-py=2.0.3=pyhd8ed1ab_1 - - llvm-openmp=20.1.6=h024ca30_0 + - llvm-openmp=20.1.7=h024ca30_0 - locket=1.0.0=pyhd8ed1ab_0 - markdown-it-py=2.2.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py310h89163eb_1 @@ -163,10 +163,10 @@ dependencies: - metis=5.1.0=hd0bcaf9_1007 - mistune=3.1.3=pyh29332c3_0 - mkl=2024.2.2=ha957f24_16 - - msgpack-python=1.1.0=py310h3788b33_0 + - msgpack-python=1.1.1=py310h3788b33_0 - mumps-include=5.7.3=h82cca05_10 - mumps-seq=5.7.3=h06cbf8f_10 - - munkres=1.1.4=pyh9f0ad1d_0 + - munkres=1.1.4=pyhd8ed1ab_1 - myst-nb=1.2.0=pyh29332c3_0 - myst-parser=1.0.0=pyhd8ed1ab_0 - nbclient=0.10.2=pyhd8ed1ab_0 @@ -205,7 +205,7 @@ dependencies: - pybtex=0.24.0=pyhd8ed1ab_3 - pybtex-docutils=1.0.3=py310hff52083_2 - pycparser=2.22=pyh29332c3_1 - - pydantic=2.11.4=pyh3cfb1c2_0 + - pydantic=2.11.7=pyh3cfb1c2_0 - pydantic-core=2.33.2=py310hbcd0ec0_0 - pydata-sphinx-theme=0.15.4=pyhd8ed1ab_0 - pydiso=0.1.2=py310h69a6472_0 @@ -214,8 +214,8 @@ dependencies: - pymatsolver=0.3.1=pyh48887ae_201 - pyparsing=3.2.3=pyhd8ed1ab_1 - pysocks=1.7.1=pyha55dd90_7 - - pytest=8.4.0=pyhd8ed1ab_0 - - pytest-cov=6.1.1=pyhd8ed1ab_0 + - pytest=8.4.1=pyhd8ed1ab_0 + - pytest-cov=6.2.1=pyhd8ed1ab_0 - python=3.10.18=hd6af730_0_cpython - python-dateutil=2.9.0.post0=pyhff2d567_1 - python-fastjsonschema=2.21.1=pyhd8ed1ab_0 @@ -225,7 +225,7 @@ dependencies: - python_abi=3.10=7_cp310 - pytz=2025.2=pyhd8ed1ab_0 - pyyaml=6.0.2=py310h89163eb_2 - - pyzmq=26.4.0=py310h71f11fc_0 + - pyzmq=27.0.0=py310h71f11fc_0 - readline=8.2=h8c095d6_2 - readthedocs-sphinx-ext=2.2.5=pyhd8ed1ab_1 - referencing=0.36.2=pyh29332c3_0 @@ -284,7 +284,7 @@ dependencies: - uc-micro-py=1.0.3=pyhd8ed1ab_1 - unicodedata2=16.0.0=py310ha75aee5_0 - uri-template=1.3.0=pyhd8ed1ab_1 - - urllib3=2.4.0=pyhd8ed1ab_0 + - urllib3=2.5.0=pyhd8ed1ab_0 - wcwidth=0.2.13=pyhd8ed1ab_1 - webcolors=24.11.1=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_3 @@ -302,8 +302,8 @@ dependencies: - zstandard=0.23.0=py310ha75aee5_2 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@8d46ccb686e4206683862ec803fc709b26271cd8 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@585c89094e3eff35df10d3076964bf154b24d575 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 diff --git a/environments/py-3.10-linux-64.conda.lock.yml b/environments/py-3.10-linux-64.conda.lock.yml index 702e8c21..5004283c 100644 --- a/environments/py-3.10-linux-64.conda.lock.yml +++ b/environments/py-3.10-linux-64.conda.lock.yml @@ -15,10 +15,10 @@ dependencies: - brotli-python=1.1.0=py310hf71b8c6_3 - bzip2=1.0.8=h4bc722e_7 - c-ares=1.34.5=hb9d3cd8_0 - - ca-certificates=2025.4.26=hbd8a1cb_0 + - ca-certificates=2025.6.15=hbd8a1cb_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2025.4.26=pyhd8ed1ab_0 + - certifi=2025.6.15=pyhd8ed1ab_0 - cffi=1.17.1=py310h8deb56e_0 - click=8.2.1=pyh707e725_0 - cloudpickle=3.1.1=pyhd8ed1ab_0 @@ -30,7 +30,7 @@ dependencies: - discretize=0.11.3=py310ha2bacc8_0 - distributed=2025.3.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.58.2=py310h89163eb_0 + - fonttools=4.58.4=py310h89163eb_0 - freetype=2.13.3=ha770c72_1 - fsspec=2025.5.1=pyhd8ed1ab_0 - geoana=0.7.2=py310ha2bacc8_0 @@ -47,9 +47,9 @@ dependencies: - kiwisolver=1.4.7=py310h3788b33_0 - krb5=1.21.3=h659f571_0 - lcms2=2.17=h717163a_0 - - ld_impl_linux-64=2.43=h712a8e2_4 + - ld_impl_linux-64=2.43=h1423503_5 - lerc=4.0.0=h0aef613_1 - - libaec=1.1.3=h59595ed_0 + - libaec=1.1.4=h3f801dc_0 - libblas=3.9.0=31_hfdb39a5_mkl - libbrotlicommon=1.1.0=hb9d3cd8_3 - libbrotlidec=1.1.0=hb9d3cd8_3 @@ -75,7 +75,7 @@ dependencies: - liblzma=5.8.1=hb9d3cd8_2 - libnghttp2=1.64.0=h161d5f1_0 - libnsl=2.0.1=hd590300_0 - - libpng=1.6.47=h943b412_0 + - libpng=1.6.49=h943b412_0 - libscotch=7.0.6=hea33c07_1 - libsqlite=3.50.1=hee588c1_0 - libssh2=1.11.1=hcf80075_0 @@ -88,16 +88,16 @@ dependencies: - libxcrypt=4.4.36=hd590300_1 - libxml2=2.13.8=h4bc477f_0 - libzlib=1.3.1=hb9d3cd8_2 - - llvm-openmp=20.1.6=h024ca30_0 + - llvm-openmp=20.1.7=h024ca30_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py310h89163eb_1 - matplotlib-base=3.8.4=py310hef631a5_2 - metis=5.1.0=hd0bcaf9_1007 - mkl=2024.2.2=ha957f24_16 - - msgpack-python=1.1.0=py310h3788b33_0 + - msgpack-python=1.1.1=py310h3788b33_0 - mumps-include=5.7.3=h82cca05_10 - mumps-seq=5.7.3=h06cbf8f_10 - - munkres=1.1.4=pyh9f0ad1d_0 + - munkres=1.1.4=pyhd8ed1ab_1 - ncurses=6.5=h2d0b736_3 - numcodecs=0.13.1=py310h5eaa309_0 - numpy=1.26.4=py310hb13e2d6_0 @@ -111,7 +111,7 @@ dependencies: - psutil=7.0.0=py310ha75aee5_0 - pthread-stubs=0.4=hb9d3cd8_1002 - pycparser=2.22=pyh29332c3_1 - - pydantic=2.11.4=pyh3cfb1c2_0 + - pydantic=2.11.7=pyh3cfb1c2_0 - pydantic-core=2.33.2=py310hbcd0ec0_0 - pydiso=0.1.2=py310h69a6472_0 - pymatsolver=0.3.1=pyh48887ae_201 @@ -142,7 +142,7 @@ dependencies: - typing_extensions=4.14.0=pyhe01879c_0 - tzdata=2025b=h78e105d_0 - unicodedata2=16.0.0=py310ha75aee5_0 - - urllib3=2.4.0=pyhd8ed1ab_0 + - urllib3=2.5.0=pyhd8ed1ab_0 - wheel=0.45.1=pyhd8ed1ab_1 - xorg-libxau=1.0.12=hb9d3cd8_0 - xorg-libxdmcp=1.1.5=hb9d3cd8_0 @@ -154,8 +154,8 @@ dependencies: - zstandard=0.23.0=py310ha75aee5_2 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@8d46ccb686e4206683862ec803fc709b26271cd8 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@585c89094e3eff35df10d3076964bf154b24d575 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 diff --git a/environments/py-3.10-win-64-dev.conda.lock.yml b/environments/py-3.10-win-64-dev.conda.lock.yml index 77493fd5..cce84f40 100644 --- a/environments/py-3.10-win-64-dev.conda.lock.yml +++ b/environments/py-3.10-win-64-dev.conda.lock.yml @@ -28,10 +28,10 @@ dependencies: - brotli-bin=1.1.0=h2466b09_3 - brotli-python=1.1.0=py310h9e98ed7_3 - bzip2=1.0.8=h2466b09_7 - - ca-certificates=2025.4.26=h4c7d964_0 + - ca-certificates=2025.6.15=h4c7d964_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2025.4.26=pyhd8ed1ab_0 + - certifi=2025.6.15=pyhd8ed1ab_0 - cffi=1.17.1=py310ha8f682b_0 - charset-normalizer=3.4.2=pyhd8ed1ab_0 - click=8.2.1=pyh7428d3b_0 @@ -39,7 +39,7 @@ dependencies: - colorama=0.4.6=pyhd8ed1ab_1 - comm=0.2.2=pyhd8ed1ab_1 - contourpy=1.3.2=py310hc19bc0b_0 - - coverage=7.8.2=py310h38315fa_0 + - coverage=7.9.1=py310h38315fa_0 - cpython=3.10.18=py310hd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py310ha8f682b_0 @@ -55,7 +55,7 @@ dependencies: - exceptiongroup=1.3.0=pyhd8ed1ab_0 - executing=2.2.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.58.2=py310h38315fa_0 + - fonttools=4.58.4=py310h38315fa_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.13.3=h57928b3_1 - fsspec=2025.5.1=pyhd8ed1ab_0 @@ -108,7 +108,7 @@ dependencies: - latexcodec=2.0.1=pyh9f0ad1d_0 - lcms2=2.17=hbcf6048_0 - lerc=4.0.0=h6470a55_1 - - libaec=1.1.3=h63175ca_0 + - libaec=1.1.4=h20038f6_0 - libblas=3.9.0=31_h641d27c_mkl - libbrotlicommon=1.1.0=h2466b09_3 - libbrotlidec=1.1.0=h2466b09_3 @@ -128,7 +128,7 @@ dependencies: - libjpeg-turbo=3.1.0=h2466b09_0 - liblapack=3.9.0=31_h1aa476e_mkl - liblzma=5.8.1=h2466b09_2 - - libpng=1.6.47=h7a4582a_0 + - libpng=1.6.49=h7a4582a_0 - libsodium=1.0.20=hc70643c_0 - libsqlite=3.50.1=h67fdade_0 - libssh2=1.11.1=h9aa295b_0 @@ -139,7 +139,7 @@ dependencies: - libxml2=2.13.8=h442d1da_0 - libzlib=1.3.1=h2466b09_2 - linkify-it-py=2.0.3=pyhd8ed1ab_1 - - llvm-openmp=20.1.6=h30eaf37_0 + - llvm-openmp=20.1.7=h30eaf37_0 - locket=1.0.0=pyhd8ed1ab_0 - markdown-it-py=2.2.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py310h38315fa_1 @@ -150,9 +150,9 @@ dependencies: - mdurl=0.1.2=pyhd8ed1ab_1 - mistune=3.1.3=pyh29332c3_0 - mkl=2024.2.2=h66d3029_15 - - msgpack-python=1.1.0=py310hc19bc0b_0 + - msgpack-python=1.1.1=py310hc19bc0b_0 - mumps-seq=5.7.3=hbaa6519_10 - - munkres=1.1.4=pyh9f0ad1d_0 + - munkres=1.1.4=pyhd8ed1ab_1 - myst-nb=1.2.0=pyh29332c3_0 - myst-parser=1.0.0=pyhd8ed1ab_0 - nbclient=0.10.2=pyhd8ed1ab_0 @@ -188,7 +188,7 @@ dependencies: - pybtex=0.24.0=pyhd8ed1ab_3 - pybtex-docutils=1.0.3=py310h5588dad_2 - pycparser=2.22=pyh29332c3_1 - - pydantic=2.11.4=pyh3cfb1c2_0 + - pydantic=2.11.7=pyh3cfb1c2_0 - pydantic-core=2.33.2=py310hed05c55_0 - pydata-sphinx-theme=0.15.4=pyhd8ed1ab_0 - pydiso=0.1.2=py310h8f92c26_0 @@ -197,8 +197,8 @@ dependencies: - pymatsolver=0.3.1=pyh48887ae_201 - pyparsing=3.2.3=pyhd8ed1ab_1 - pysocks=1.7.1=pyh09c184e_7 - - pytest=8.4.0=pyhd8ed1ab_0 - - pytest-cov=6.1.1=pyhd8ed1ab_0 + - pytest=8.4.1=pyhd8ed1ab_0 + - pytest-cov=6.2.1=pyhd8ed1ab_0 - python=3.10.18=h8c5b53a_0_cpython - python-dateutil=2.9.0.post0=pyhff2d567_1 - python-fastjsonschema=2.21.1=pyhd8ed1ab_0 @@ -210,7 +210,7 @@ dependencies: - pywin32=307=py310h9e98ed7_3 - pywinpty=2.0.15=py310h9e98ed7_0 - pyyaml=6.0.2=py310h38315fa_2 - - pyzmq=26.4.0=py310h656833d_0 + - pyzmq=27.0.0=py310h656833d_0 - readthedocs-sphinx-ext=2.2.5=pyhd8ed1ab_1 - referencing=0.36.2=pyh29332c3_0 - requests=2.32.4=pyhd8ed1ab_0 @@ -269,7 +269,7 @@ dependencies: - ucrt=10.0.22621.0=h57928b3_1 - unicodedata2=16.0.0=py310ha8f682b_0 - uri-template=1.3.0=pyhd8ed1ab_1 - - urllib3=2.4.0=pyhd8ed1ab_0 + - urllib3=2.5.0=pyhd8ed1ab_0 - vc=14.3=h2b53caa_26 - vc14_runtime=14.42.34438=hfd919c2_26 - vs2015_runtime=14.42.34438=h7142326_26 @@ -292,8 +292,8 @@ dependencies: - zstandard=0.23.0=py310ha8f682b_2 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@8d46ccb686e4206683862ec803fc709b26271cd8 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@585c89094e3eff35df10d3076964bf154b24d575 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 diff --git a/environments/py-3.10-win-64.conda.lock.yml b/environments/py-3.10-win-64.conda.lock.yml index 41323b48..fb1d30f7 100644 --- a/environments/py-3.10-win-64.conda.lock.yml +++ b/environments/py-3.10-win-64.conda.lock.yml @@ -14,10 +14,10 @@ dependencies: - brotli-bin=1.1.0=h2466b09_3 - brotli-python=1.1.0=py310h9e98ed7_3 - bzip2=1.0.8=h2466b09_7 - - ca-certificates=2025.4.26=h4c7d964_0 + - ca-certificates=2025.6.15=h4c7d964_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2025.4.26=pyhd8ed1ab_0 + - certifi=2025.6.15=pyhd8ed1ab_0 - cffi=1.17.1=py310ha8f682b_0 - click=8.2.1=pyh7428d3b_0 - cloudpickle=3.1.1=pyhd8ed1ab_0 @@ -29,7 +29,7 @@ dependencies: - discretize=0.11.3=py310h3e8ed56_0 - distributed=2025.3.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.58.2=py310h38315fa_0 + - fonttools=4.58.4=py310h38315fa_0 - freetype=2.13.3=h57928b3_1 - fsspec=2025.5.1=pyhd8ed1ab_0 - geoana=0.7.2=py310h3e8ed56_0 @@ -46,7 +46,7 @@ dependencies: - krb5=1.21.3=hdf4eb48_0 - lcms2=2.17=hbcf6048_0 - lerc=4.0.0=h6470a55_1 - - libaec=1.1.3=h63175ca_0 + - libaec=1.1.4=h20038f6_0 - libblas=3.9.0=31_h641d27c_mkl - libbrotlicommon=1.1.0=h2466b09_3 - libbrotlidec=1.1.0=h2466b09_3 @@ -66,7 +66,7 @@ dependencies: - libjpeg-turbo=3.1.0=h2466b09_0 - liblapack=3.9.0=31_h1aa476e_mkl - liblzma=5.8.1=h2466b09_2 - - libpng=1.6.47=h7a4582a_0 + - libpng=1.6.49=h7a4582a_0 - libsqlite=3.50.1=h67fdade_0 - libssh2=1.11.1=h9aa295b_0 - libtiff=4.7.0=h05922d8_5 @@ -75,14 +75,14 @@ dependencies: - libxcb=1.17.0=h0e4246c_0 - libxml2=2.13.8=h442d1da_0 - libzlib=1.3.1=h2466b09_2 - - llvm-openmp=20.1.6=h30eaf37_0 + - llvm-openmp=20.1.7=h30eaf37_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py310h38315fa_1 - matplotlib-base=3.8.4=py310hadb10a8_2 - mkl=2024.2.2=h66d3029_15 - - msgpack-python=1.1.0=py310hc19bc0b_0 + - msgpack-python=1.1.1=py310hc19bc0b_0 - mumps-seq=5.7.3=hbaa6519_10 - - munkres=1.1.4=pyh9f0ad1d_0 + - munkres=1.1.4=pyhd8ed1ab_1 - numcodecs=0.13.1=py310hb4db72f_0 - numpy=1.26.4=py310hf667824_0 - openjpeg=2.5.3=h4d64b90_0 @@ -95,7 +95,7 @@ dependencies: - psutil=7.0.0=py310ha8f682b_0 - pthread-stubs=0.4=h0e40799_1002 - pycparser=2.22=pyh29332c3_1 - - pydantic=2.11.4=pyh3cfb1c2_0 + - pydantic=2.11.7=pyh3cfb1c2_0 - pydantic-core=2.33.2=py310hed05c55_0 - pydiso=0.1.2=py310h8f92c26_0 - pymatsolver=0.3.1=pyh48887ae_201 @@ -126,7 +126,7 @@ dependencies: - tzdata=2025b=h78e105d_0 - ucrt=10.0.22621.0=h57928b3_1 - unicodedata2=16.0.0=py310ha8f682b_0 - - urllib3=2.4.0=pyhd8ed1ab_0 + - urllib3=2.5.0=pyhd8ed1ab_0 - vc=14.3=h2b53caa_26 - vc14_runtime=14.42.34438=hfd919c2_26 - vs2015_runtime=14.42.34438=h7142326_26 @@ -142,8 +142,8 @@ dependencies: - zstandard=0.23.0=py310ha8f682b_2 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@8d46ccb686e4206683862ec803fc709b26271cd8 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@585c89094e3eff35df10d3076964bf154b24d575 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 diff --git a/environments/py-3.11-linux-64-dev.conda.lock.yml b/environments/py-3.11-linux-64-dev.conda.lock.yml index c550e8bc..1990e197 100644 --- a/environments/py-3.11-linux-64-dev.conda.lock.yml +++ b/environments/py-3.11-linux-64-dev.conda.lock.yml @@ -29,10 +29,10 @@ dependencies: - brotli-python=1.1.0=py311hfdbb021_3 - bzip2=1.0.8=h4bc722e_7 - c-ares=1.34.5=hb9d3cd8_0 - - ca-certificates=2025.4.26=hbd8a1cb_0 + - ca-certificates=2025.6.15=hbd8a1cb_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2025.4.26=pyhd8ed1ab_0 + - certifi=2025.6.15=pyhd8ed1ab_0 - cffi=1.17.1=py311hf29c0ef_0 - charset-normalizer=3.4.2=pyhd8ed1ab_0 - click=8.2.1=pyh707e725_0 @@ -40,7 +40,7 @@ dependencies: - colorama=0.4.6=pyhd8ed1ab_1 - comm=0.2.2=pyhd8ed1ab_1 - contourpy=1.3.2=py311hd18a35c_0 - - coverage=7.8.2=py311h2dc5d0c_0 + - coverage=7.9.1=py311h2dc5d0c_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py311h9ecbd09_0 - dask-core=2025.3.0=pyhd8ed1ab_0 @@ -56,7 +56,7 @@ dependencies: - exceptiongroup=1.3.0=pyhd8ed1ab_0 - executing=2.2.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.58.2=py311h2dc5d0c_0 + - fonttools=4.58.4=py311h2dc5d0c_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.13.3=ha770c72_1 - fsspec=2025.5.1=pyhd8ed1ab_0 @@ -110,9 +110,9 @@ dependencies: - krb5=1.21.3=h659f571_0 - latexcodec=2.0.1=pyh9f0ad1d_0 - lcms2=2.17=h717163a_0 - - ld_impl_linux-64=2.43=h712a8e2_4 + - ld_impl_linux-64=2.43=h1423503_5 - lerc=4.0.0=h0aef613_1 - - libaec=1.1.3=h59595ed_0 + - libaec=1.1.4=h3f801dc_0 - libblas=3.9.0=31_hfdb39a5_mkl - libbrotlicommon=1.1.0=hb9d3cd8_3 - libbrotlidec=1.1.0=hb9d3cd8_3 @@ -138,7 +138,7 @@ dependencies: - liblzma=5.8.1=hb9d3cd8_2 - libnghttp2=1.64.0=h161d5f1_0 - libnsl=2.0.1=hd590300_0 - - libpng=1.6.47=h943b412_0 + - libpng=1.6.49=h943b412_0 - libscotch=7.0.6=hea33c07_1 - libsodium=1.0.20=h4ab18f5_0 - libsqlite=3.50.1=hee588c1_0 @@ -153,7 +153,7 @@ dependencies: - libxml2=2.13.8=h4bc477f_0 - libzlib=1.3.1=hb9d3cd8_2 - linkify-it-py=2.0.3=pyhd8ed1ab_1 - - llvm-openmp=20.1.6=h024ca30_0 + - llvm-openmp=20.1.7=h024ca30_0 - locket=1.0.0=pyhd8ed1ab_0 - markdown-it-py=2.2.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py311h2dc5d0c_1 @@ -165,10 +165,10 @@ dependencies: - metis=5.1.0=hd0bcaf9_1007 - mistune=3.1.3=pyh29332c3_0 - mkl=2024.2.2=ha957f24_16 - - msgpack-python=1.1.0=py311hd18a35c_0 + - msgpack-python=1.1.1=py311hd18a35c_0 - mumps-include=5.7.3=h82cca05_10 - mumps-seq=5.7.3=h06cbf8f_10 - - munkres=1.1.4=pyh9f0ad1d_0 + - munkres=1.1.4=pyhd8ed1ab_1 - myst-nb=1.2.0=pyh29332c3_0 - myst-parser=1.0.0=pyhd8ed1ab_0 - nbclient=0.10.2=pyhd8ed1ab_0 @@ -207,7 +207,7 @@ dependencies: - pybtex=0.24.0=pyhd8ed1ab_3 - pybtex-docutils=1.0.3=py311h38be061_2 - pycparser=2.22=pyh29332c3_1 - - pydantic=2.11.4=pyh3cfb1c2_0 + - pydantic=2.11.7=pyh3cfb1c2_0 - pydantic-core=2.33.2=py311hdae7d1d_0 - pydata-sphinx-theme=0.15.4=pyhd8ed1ab_0 - pydiso=0.1.2=py311h19ea254_0 @@ -216,8 +216,8 @@ dependencies: - pymatsolver=0.3.1=pyh48887ae_201 - pyparsing=3.2.3=pyhd8ed1ab_1 - pysocks=1.7.1=pyha55dd90_7 - - pytest=8.4.0=pyhd8ed1ab_0 - - pytest-cov=6.1.1=pyhd8ed1ab_0 + - pytest=8.4.1=pyhd8ed1ab_0 + - pytest-cov=6.2.1=pyhd8ed1ab_0 - python=3.11.13=h9e4cc4f_0_cpython - python-dateutil=2.9.0.post0=pyhff2d567_1 - python-fastjsonschema=2.21.1=pyhd8ed1ab_0 @@ -227,7 +227,7 @@ dependencies: - python_abi=3.11=7_cp311 - pytz=2025.2=pyhd8ed1ab_0 - pyyaml=6.0.2=py311h2dc5d0c_2 - - pyzmq=26.4.0=py311h7deb3e3_0 + - pyzmq=27.0.0=py311h7deb3e3_0 - readline=8.2=h8c095d6_2 - readthedocs-sphinx-ext=2.2.5=pyhd8ed1ab_1 - referencing=0.36.2=pyh29332c3_0 @@ -286,7 +286,7 @@ dependencies: - uc-micro-py=1.0.3=pyhd8ed1ab_1 - unicodedata2=16.0.0=py311h9ecbd09_0 - uri-template=1.3.0=pyhd8ed1ab_1 - - urllib3=2.4.0=pyhd8ed1ab_0 + - urllib3=2.5.0=pyhd8ed1ab_0 - wcwidth=0.2.13=pyhd8ed1ab_1 - webcolors=24.11.1=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_3 @@ -305,8 +305,8 @@ dependencies: - zstandard=0.23.0=py311h9ecbd09_2 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@8d46ccb686e4206683862ec803fc709b26271cd8 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@585c89094e3eff35df10d3076964bf154b24d575 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 diff --git a/environments/py-3.11-linux-64.conda.lock.yml b/environments/py-3.11-linux-64.conda.lock.yml index d9e9a7e3..4f59cba6 100644 --- a/environments/py-3.11-linux-64.conda.lock.yml +++ b/environments/py-3.11-linux-64.conda.lock.yml @@ -15,10 +15,10 @@ dependencies: - brotli-python=1.1.0=py311hfdbb021_3 - bzip2=1.0.8=h4bc722e_7 - c-ares=1.34.5=hb9d3cd8_0 - - ca-certificates=2025.4.26=hbd8a1cb_0 + - ca-certificates=2025.6.15=hbd8a1cb_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2025.4.26=pyhd8ed1ab_0 + - certifi=2025.6.15=pyhd8ed1ab_0 - cffi=1.17.1=py311hf29c0ef_0 - click=8.2.1=pyh707e725_0 - cloudpickle=3.1.1=pyhd8ed1ab_0 @@ -31,7 +31,7 @@ dependencies: - discretize=0.11.3=py311h5b7b71f_0 - distributed=2025.3.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.58.2=py311h2dc5d0c_0 + - fonttools=4.58.4=py311h2dc5d0c_0 - freetype=2.13.3=ha770c72_1 - fsspec=2025.5.1=pyhd8ed1ab_0 - geoana=0.7.2=py311h5b7b71f_0 @@ -48,9 +48,9 @@ dependencies: - kiwisolver=1.4.7=py311hd18a35c_0 - krb5=1.21.3=h659f571_0 - lcms2=2.17=h717163a_0 - - ld_impl_linux-64=2.43=h712a8e2_4 + - ld_impl_linux-64=2.43=h1423503_5 - lerc=4.0.0=h0aef613_1 - - libaec=1.1.3=h59595ed_0 + - libaec=1.1.4=h3f801dc_0 - libblas=3.9.0=31_hfdb39a5_mkl - libbrotlicommon=1.1.0=hb9d3cd8_3 - libbrotlidec=1.1.0=hb9d3cd8_3 @@ -76,7 +76,7 @@ dependencies: - liblzma=5.8.1=hb9d3cd8_2 - libnghttp2=1.64.0=h161d5f1_0 - libnsl=2.0.1=hd590300_0 - - libpng=1.6.47=h943b412_0 + - libpng=1.6.49=h943b412_0 - libscotch=7.0.6=hea33c07_1 - libsqlite=3.50.1=hee588c1_0 - libssh2=1.11.1=hcf80075_0 @@ -89,16 +89,16 @@ dependencies: - libxcrypt=4.4.36=hd590300_1 - libxml2=2.13.8=h4bc477f_0 - libzlib=1.3.1=hb9d3cd8_2 - - llvm-openmp=20.1.6=h024ca30_0 + - llvm-openmp=20.1.7=h024ca30_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py311h2dc5d0c_1 - matplotlib-base=3.8.4=py311ha4ca890_2 - metis=5.1.0=hd0bcaf9_1007 - mkl=2024.2.2=ha957f24_16 - - msgpack-python=1.1.0=py311hd18a35c_0 + - msgpack-python=1.1.1=py311hd18a35c_0 - mumps-include=5.7.3=h82cca05_10 - mumps-seq=5.7.3=h06cbf8f_10 - - munkres=1.1.4=pyh9f0ad1d_0 + - munkres=1.1.4=pyhd8ed1ab_1 - ncurses=6.5=h2d0b736_3 - numcodecs=0.15.1=py311h7db5c69_0 - numpy=1.26.4=py311h64a7726_0 @@ -112,7 +112,7 @@ dependencies: - psutil=7.0.0=py311h9ecbd09_0 - pthread-stubs=0.4=hb9d3cd8_1002 - pycparser=2.22=pyh29332c3_1 - - pydantic=2.11.4=pyh3cfb1c2_0 + - pydantic=2.11.7=pyh3cfb1c2_0 - pydantic-core=2.33.2=py311hdae7d1d_0 - pydiso=0.1.2=py311h19ea254_0 - pymatsolver=0.3.1=pyh48887ae_201 @@ -143,7 +143,7 @@ dependencies: - typing_extensions=4.14.0=pyhe01879c_0 - tzdata=2025b=h78e105d_0 - unicodedata2=16.0.0=py311h9ecbd09_0 - - urllib3=2.4.0=pyhd8ed1ab_0 + - urllib3=2.5.0=pyhd8ed1ab_0 - wheel=0.45.1=pyhd8ed1ab_1 - wrapt=1.17.2=py311h9ecbd09_0 - xorg-libxau=1.0.12=hb9d3cd8_0 @@ -156,8 +156,8 @@ dependencies: - zstandard=0.23.0=py311h9ecbd09_2 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@8d46ccb686e4206683862ec803fc709b26271cd8 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@585c89094e3eff35df10d3076964bf154b24d575 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 diff --git a/environments/py-3.11-win-64-dev.conda.lock.yml b/environments/py-3.11-win-64-dev.conda.lock.yml index 4a2286a8..38dc35c5 100644 --- a/environments/py-3.11-win-64-dev.conda.lock.yml +++ b/environments/py-3.11-win-64-dev.conda.lock.yml @@ -28,10 +28,10 @@ dependencies: - brotli-bin=1.1.0=h2466b09_3 - brotli-python=1.1.0=py311hda3d55a_3 - bzip2=1.0.8=h2466b09_7 - - ca-certificates=2025.4.26=h4c7d964_0 + - ca-certificates=2025.6.15=h4c7d964_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2025.4.26=pyhd8ed1ab_0 + - certifi=2025.6.15=pyhd8ed1ab_0 - cffi=1.17.1=py311he736701_0 - charset-normalizer=3.4.2=pyhd8ed1ab_0 - click=8.2.1=pyh7428d3b_0 @@ -39,7 +39,7 @@ dependencies: - colorama=0.4.6=pyhd8ed1ab_1 - comm=0.2.2=pyhd8ed1ab_1 - contourpy=1.3.2=py311h3257749_0 - - coverage=7.8.2=py311h5082efb_0 + - coverage=7.9.1=py311h5082efb_0 - cpython=3.11.13=py311hd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py311he736701_0 @@ -56,7 +56,7 @@ dependencies: - exceptiongroup=1.3.0=pyhd8ed1ab_0 - executing=2.2.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.58.2=py311h5082efb_0 + - fonttools=4.58.4=py311h5082efb_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.13.3=h57928b3_1 - fsspec=2025.5.1=pyhd8ed1ab_0 @@ -110,7 +110,7 @@ dependencies: - latexcodec=2.0.1=pyh9f0ad1d_0 - lcms2=2.17=hbcf6048_0 - lerc=4.0.0=h6470a55_1 - - libaec=1.1.3=h63175ca_0 + - libaec=1.1.4=h20038f6_0 - libblas=3.9.0=31_h641d27c_mkl - libbrotlicommon=1.1.0=h2466b09_3 - libbrotlidec=1.1.0=h2466b09_3 @@ -130,7 +130,7 @@ dependencies: - libjpeg-turbo=3.1.0=h2466b09_0 - liblapack=3.9.0=31_h1aa476e_mkl - liblzma=5.8.1=h2466b09_2 - - libpng=1.6.47=h7a4582a_0 + - libpng=1.6.49=h7a4582a_0 - libsodium=1.0.20=hc70643c_0 - libsqlite=3.50.1=h67fdade_0 - libssh2=1.11.1=h9aa295b_0 @@ -141,7 +141,7 @@ dependencies: - libxml2=2.13.8=h442d1da_0 - libzlib=1.3.1=h2466b09_2 - linkify-it-py=2.0.3=pyhd8ed1ab_1 - - llvm-openmp=20.1.6=h30eaf37_0 + - llvm-openmp=20.1.7=h30eaf37_0 - locket=1.0.0=pyhd8ed1ab_0 - markdown-it-py=2.2.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py311h5082efb_1 @@ -152,9 +152,9 @@ dependencies: - mdurl=0.1.2=pyhd8ed1ab_1 - mistune=3.1.3=pyh29332c3_0 - mkl=2024.2.2=h66d3029_15 - - msgpack-python=1.1.0=py311h3257749_0 + - msgpack-python=1.1.1=py311h3257749_0 - mumps-seq=5.7.3=hbaa6519_10 - - munkres=1.1.4=pyh9f0ad1d_0 + - munkres=1.1.4=pyhd8ed1ab_1 - myst-nb=1.2.0=pyh29332c3_0 - myst-parser=1.0.0=pyhd8ed1ab_0 - nbclient=0.10.2=pyhd8ed1ab_0 @@ -190,7 +190,7 @@ dependencies: - pybtex=0.24.0=pyhd8ed1ab_3 - pybtex-docutils=1.0.3=py311h1ea47a8_2 - pycparser=2.22=pyh29332c3_1 - - pydantic=2.11.4=pyh3cfb1c2_0 + - pydantic=2.11.7=pyh3cfb1c2_0 - pydantic-core=2.33.2=py311hc4022dc_0 - pydata-sphinx-theme=0.15.4=pyhd8ed1ab_0 - pydiso=0.1.2=py311h66870c1_0 @@ -199,8 +199,8 @@ dependencies: - pymatsolver=0.3.1=pyh48887ae_201 - pyparsing=3.2.3=pyhd8ed1ab_1 - pysocks=1.7.1=pyh09c184e_7 - - pytest=8.4.0=pyhd8ed1ab_0 - - pytest-cov=6.1.1=pyhd8ed1ab_0 + - pytest=8.4.1=pyhd8ed1ab_0 + - pytest-cov=6.2.1=pyhd8ed1ab_0 - python=3.11.13=h3f84c4b_0_cpython - python-dateutil=2.9.0.post0=pyhff2d567_1 - python-fastjsonschema=2.21.1=pyhd8ed1ab_0 @@ -212,7 +212,7 @@ dependencies: - pywin32=307=py311hda3d55a_3 - pywinpty=2.0.15=py311hda3d55a_0 - pyyaml=6.0.2=py311h5082efb_2 - - pyzmq=26.4.0=py311h484c95c_0 + - pyzmq=27.0.0=py311h484c95c_0 - readthedocs-sphinx-ext=2.2.5=pyhd8ed1ab_1 - referencing=0.36.2=pyh29332c3_0 - requests=2.32.4=pyhd8ed1ab_0 @@ -271,7 +271,7 @@ dependencies: - ucrt=10.0.22621.0=h57928b3_1 - unicodedata2=16.0.0=py311he736701_0 - uri-template=1.3.0=pyhd8ed1ab_1 - - urllib3=2.4.0=pyhd8ed1ab_0 + - urllib3=2.5.0=pyhd8ed1ab_0 - vc=14.3=h2b53caa_26 - vc14_runtime=14.42.34438=hfd919c2_26 - vs2015_runtime=14.42.34438=h7142326_26 @@ -295,8 +295,8 @@ dependencies: - zstandard=0.23.0=py311he736701_2 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@8d46ccb686e4206683862ec803fc709b26271cd8 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@585c89094e3eff35df10d3076964bf154b24d575 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 diff --git a/environments/py-3.11-win-64.conda.lock.yml b/environments/py-3.11-win-64.conda.lock.yml index 0d709ab1..9b0916a4 100644 --- a/environments/py-3.11-win-64.conda.lock.yml +++ b/environments/py-3.11-win-64.conda.lock.yml @@ -14,10 +14,10 @@ dependencies: - brotli-bin=1.1.0=h2466b09_3 - brotli-python=1.1.0=py311hda3d55a_3 - bzip2=1.0.8=h2466b09_7 - - ca-certificates=2025.4.26=h4c7d964_0 + - ca-certificates=2025.6.15=h4c7d964_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2025.4.26=pyhd8ed1ab_0 + - certifi=2025.6.15=pyhd8ed1ab_0 - cffi=1.17.1=py311he736701_0 - click=8.2.1=pyh7428d3b_0 - cloudpickle=3.1.1=pyhd8ed1ab_0 @@ -30,7 +30,7 @@ dependencies: - discretize=0.11.3=py311h9b10771_0 - distributed=2025.3.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.58.2=py311h5082efb_0 + - fonttools=4.58.4=py311h5082efb_0 - freetype=2.13.3=h57928b3_1 - fsspec=2025.5.1=pyhd8ed1ab_0 - geoana=0.7.2=py311h9b10771_0 @@ -47,7 +47,7 @@ dependencies: - krb5=1.21.3=hdf4eb48_0 - lcms2=2.17=hbcf6048_0 - lerc=4.0.0=h6470a55_1 - - libaec=1.1.3=h63175ca_0 + - libaec=1.1.4=h20038f6_0 - libblas=3.9.0=31_h641d27c_mkl - libbrotlicommon=1.1.0=h2466b09_3 - libbrotlidec=1.1.0=h2466b09_3 @@ -67,7 +67,7 @@ dependencies: - libjpeg-turbo=3.1.0=h2466b09_0 - liblapack=3.9.0=31_h1aa476e_mkl - liblzma=5.8.1=h2466b09_2 - - libpng=1.6.47=h7a4582a_0 + - libpng=1.6.49=h7a4582a_0 - libsqlite=3.50.1=h67fdade_0 - libssh2=1.11.1=h9aa295b_0 - libtiff=4.7.0=h05922d8_5 @@ -76,14 +76,14 @@ dependencies: - libxcb=1.17.0=h0e4246c_0 - libxml2=2.13.8=h442d1da_0 - libzlib=1.3.1=h2466b09_2 - - llvm-openmp=20.1.6=h30eaf37_0 + - llvm-openmp=20.1.7=h30eaf37_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py311h5082efb_1 - matplotlib-base=3.8.4=py311h9b31f6e_2 - mkl=2024.2.2=h66d3029_15 - - msgpack-python=1.1.0=py311h3257749_0 + - msgpack-python=1.1.1=py311h3257749_0 - mumps-seq=5.7.3=hbaa6519_10 - - munkres=1.1.4=pyh9f0ad1d_0 + - munkres=1.1.4=pyhd8ed1ab_1 - numcodecs=0.15.1=py311hcf9f919_0 - numpy=1.26.4=py311h0b4df5a_0 - openjpeg=2.5.3=h4d64b90_0 @@ -96,7 +96,7 @@ dependencies: - psutil=7.0.0=py311he736701_0 - pthread-stubs=0.4=h0e40799_1002 - pycparser=2.22=pyh29332c3_1 - - pydantic=2.11.4=pyh3cfb1c2_0 + - pydantic=2.11.7=pyh3cfb1c2_0 - pydantic-core=2.33.2=py311hc4022dc_0 - pydiso=0.1.2=py311h66870c1_0 - pymatsolver=0.3.1=pyh48887ae_201 @@ -127,7 +127,7 @@ dependencies: - tzdata=2025b=h78e105d_0 - ucrt=10.0.22621.0=h57928b3_1 - unicodedata2=16.0.0=py311he736701_0 - - urllib3=2.4.0=pyhd8ed1ab_0 + - urllib3=2.5.0=pyhd8ed1ab_0 - vc=14.3=h2b53caa_26 - vc14_runtime=14.42.34438=hfd919c2_26 - vs2015_runtime=14.42.34438=h7142326_26 @@ -144,8 +144,8 @@ dependencies: - zstandard=0.23.0=py311he736701_2 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@8d46ccb686e4206683862ec803fc709b26271cd8 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@585c89094e3eff35df10d3076964bf154b24d575 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 diff --git a/environments/py-3.12-linux-64-dev.conda.lock.yml b/environments/py-3.12-linux-64-dev.conda.lock.yml index 6ce8b051..890707f0 100644 --- a/environments/py-3.12-linux-64-dev.conda.lock.yml +++ b/environments/py-3.12-linux-64-dev.conda.lock.yml @@ -29,10 +29,10 @@ dependencies: - brotli-python=1.1.0=py312h2ec8cdc_3 - bzip2=1.0.8=h4bc722e_7 - c-ares=1.34.5=hb9d3cd8_0 - - ca-certificates=2025.4.26=hbd8a1cb_0 + - ca-certificates=2025.6.15=hbd8a1cb_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2025.4.26=pyhd8ed1ab_0 + - certifi=2025.6.15=pyhd8ed1ab_0 - cffi=1.17.1=py312h06ac9bb_0 - charset-normalizer=3.4.2=pyhd8ed1ab_0 - click=8.2.1=pyh707e725_0 @@ -40,7 +40,7 @@ dependencies: - colorama=0.4.6=pyhd8ed1ab_1 - comm=0.2.2=pyhd8ed1ab_1 - contourpy=1.3.2=py312h68727a3_0 - - coverage=7.8.2=py312h178313f_0 + - coverage=7.9.1=py312h178313f_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py312h66e93f0_0 - dask-core=2025.3.0=pyhd8ed1ab_0 @@ -56,7 +56,7 @@ dependencies: - exceptiongroup=1.3.0=pyhd8ed1ab_0 - executing=2.2.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.58.2=py312h178313f_0 + - fonttools=4.58.4=py312h178313f_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.13.3=ha770c72_1 - fsspec=2025.5.1=pyhd8ed1ab_0 @@ -110,9 +110,9 @@ dependencies: - krb5=1.21.3=h659f571_0 - latexcodec=2.0.1=pyh9f0ad1d_0 - lcms2=2.17=h717163a_0 - - ld_impl_linux-64=2.43=h712a8e2_4 + - ld_impl_linux-64=2.43=h1423503_5 - lerc=4.0.0=h0aef613_1 - - libaec=1.1.3=h59595ed_0 + - libaec=1.1.4=h3f801dc_0 - libblas=3.9.0=31_hfdb39a5_mkl - libbrotlicommon=1.1.0=hb9d3cd8_3 - libbrotlidec=1.1.0=hb9d3cd8_3 @@ -138,7 +138,7 @@ dependencies: - liblzma=5.8.1=hb9d3cd8_2 - libnghttp2=1.64.0=h161d5f1_0 - libnsl=2.0.1=hd590300_0 - - libpng=1.6.47=h943b412_0 + - libpng=1.6.49=h943b412_0 - libscotch=7.0.6=hea33c07_1 - libsodium=1.0.20=h4ab18f5_0 - libsqlite=3.50.1=hee588c1_0 @@ -153,7 +153,7 @@ dependencies: - libxml2=2.13.8=h4bc477f_0 - libzlib=1.3.1=hb9d3cd8_2 - linkify-it-py=2.0.3=pyhd8ed1ab_1 - - llvm-openmp=20.1.6=h024ca30_0 + - llvm-openmp=20.1.7=h024ca30_0 - locket=1.0.0=pyhd8ed1ab_0 - markdown-it-py=2.2.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py312h178313f_1 @@ -165,10 +165,10 @@ dependencies: - metis=5.1.0=hd0bcaf9_1007 - mistune=3.1.3=pyh29332c3_0 - mkl=2024.2.2=ha957f24_16 - - msgpack-python=1.1.0=py312h68727a3_0 + - msgpack-python=1.1.1=py312h68727a3_0 - mumps-include=5.7.3=h82cca05_10 - mumps-seq=5.7.3=h06cbf8f_10 - - munkres=1.1.4=pyh9f0ad1d_0 + - munkres=1.1.4=pyhd8ed1ab_1 - myst-nb=1.2.0=pyh29332c3_0 - myst-parser=1.0.0=pyhd8ed1ab_0 - nbclient=0.10.2=pyhd8ed1ab_0 @@ -207,7 +207,7 @@ dependencies: - pybtex=0.24.0=pyhd8ed1ab_3 - pybtex-docutils=1.0.3=py312h7900ff3_2 - pycparser=2.22=pyh29332c3_1 - - pydantic=2.11.4=pyh3cfb1c2_0 + - pydantic=2.11.7=pyh3cfb1c2_0 - pydantic-core=2.33.2=py312h680f630_0 - pydata-sphinx-theme=0.15.4=pyhd8ed1ab_0 - pydiso=0.1.2=py312h772f2df_0 @@ -216,8 +216,8 @@ dependencies: - pymatsolver=0.3.1=pyh48887ae_201 - pyparsing=3.2.3=pyhd8ed1ab_1 - pysocks=1.7.1=pyha55dd90_7 - - pytest=8.4.0=pyhd8ed1ab_0 - - pytest-cov=6.1.1=pyhd8ed1ab_0 + - pytest=8.4.1=pyhd8ed1ab_0 + - pytest-cov=6.2.1=pyhd8ed1ab_0 - python=3.12.11=h9e4cc4f_0_cpython - python-dateutil=2.9.0.post0=pyhff2d567_1 - python-fastjsonschema=2.21.1=pyhd8ed1ab_0 @@ -227,7 +227,7 @@ dependencies: - python_abi=3.12=7_cp312 - pytz=2025.2=pyhd8ed1ab_0 - pyyaml=6.0.2=py312h178313f_2 - - pyzmq=26.4.0=py312hbf22597_0 + - pyzmq=27.0.0=py312hbf22597_0 - readline=8.2=h8c095d6_2 - readthedocs-sphinx-ext=2.2.5=pyhd8ed1ab_1 - referencing=0.36.2=pyh29332c3_0 @@ -286,7 +286,7 @@ dependencies: - uc-micro-py=1.0.3=pyhd8ed1ab_1 - unicodedata2=16.0.0=py312h66e93f0_0 - uri-template=1.3.0=pyhd8ed1ab_1 - - urllib3=2.4.0=pyhd8ed1ab_0 + - urllib3=2.5.0=pyhd8ed1ab_0 - wcwidth=0.2.13=pyhd8ed1ab_1 - webcolors=24.11.1=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_3 @@ -305,8 +305,8 @@ dependencies: - zstandard=0.23.0=py312h66e93f0_2 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@8d46ccb686e4206683862ec803fc709b26271cd8 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@585c89094e3eff35df10d3076964bf154b24d575 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 diff --git a/environments/py-3.12-linux-64.conda.lock.yml b/environments/py-3.12-linux-64.conda.lock.yml index d9c84d00..673e8c16 100644 --- a/environments/py-3.12-linux-64.conda.lock.yml +++ b/environments/py-3.12-linux-64.conda.lock.yml @@ -15,10 +15,10 @@ dependencies: - brotli-python=1.1.0=py312h2ec8cdc_3 - bzip2=1.0.8=h4bc722e_7 - c-ares=1.34.5=hb9d3cd8_0 - - ca-certificates=2025.4.26=hbd8a1cb_0 + - ca-certificates=2025.6.15=hbd8a1cb_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2025.4.26=pyhd8ed1ab_0 + - certifi=2025.6.15=pyhd8ed1ab_0 - cffi=1.17.1=py312h06ac9bb_0 - click=8.2.1=pyh707e725_0 - cloudpickle=3.1.1=pyhd8ed1ab_0 @@ -31,7 +31,7 @@ dependencies: - discretize=0.11.3=py312hc39e661_0 - distributed=2025.3.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.58.2=py312h178313f_0 + - fonttools=4.58.4=py312h178313f_0 - freetype=2.13.3=ha770c72_1 - fsspec=2025.5.1=pyhd8ed1ab_0 - geoana=0.7.2=py312hc39e661_0 @@ -48,9 +48,9 @@ dependencies: - kiwisolver=1.4.8=py312h84d6215_0 - krb5=1.21.3=h659f571_0 - lcms2=2.17=h717163a_0 - - ld_impl_linux-64=2.43=h712a8e2_4 + - ld_impl_linux-64=2.43=h1423503_5 - lerc=4.0.0=h0aef613_1 - - libaec=1.1.3=h59595ed_0 + - libaec=1.1.4=h3f801dc_0 - libblas=3.9.0=31_hfdb39a5_mkl - libbrotlicommon=1.1.0=hb9d3cd8_3 - libbrotlidec=1.1.0=hb9d3cd8_3 @@ -76,7 +76,7 @@ dependencies: - liblzma=5.8.1=hb9d3cd8_2 - libnghttp2=1.64.0=h161d5f1_0 - libnsl=2.0.1=hd590300_0 - - libpng=1.6.47=h943b412_0 + - libpng=1.6.49=h943b412_0 - libscotch=7.0.6=hea33c07_1 - libsqlite=3.50.1=hee588c1_0 - libssh2=1.11.1=hcf80075_0 @@ -89,16 +89,16 @@ dependencies: - libxcrypt=4.4.36=hd590300_1 - libxml2=2.13.8=h4bc477f_0 - libzlib=1.3.1=hb9d3cd8_2 - - llvm-openmp=20.1.6=h024ca30_0 + - llvm-openmp=20.1.7=h024ca30_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py312h178313f_1 - matplotlib-base=3.8.4=py312h20ab3a6_2 - metis=5.1.0=hd0bcaf9_1007 - mkl=2024.2.2=ha957f24_16 - - msgpack-python=1.1.0=py312h68727a3_0 + - msgpack-python=1.1.1=py312h68727a3_0 - mumps-include=5.7.3=h82cca05_10 - mumps-seq=5.7.3=h06cbf8f_10 - - munkres=1.1.4=pyh9f0ad1d_0 + - munkres=1.1.4=pyhd8ed1ab_1 - ncurses=6.5=h2d0b736_3 - numcodecs=0.15.1=py312hf9745cd_0 - numpy=1.26.4=py312heda63a1_0 @@ -112,7 +112,7 @@ dependencies: - psutil=7.0.0=py312h66e93f0_0 - pthread-stubs=0.4=hb9d3cd8_1002 - pycparser=2.22=pyh29332c3_1 - - pydantic=2.11.4=pyh3cfb1c2_0 + - pydantic=2.11.7=pyh3cfb1c2_0 - pydantic-core=2.33.2=py312h680f630_0 - pydiso=0.1.2=py312h772f2df_0 - pymatsolver=0.3.1=pyh48887ae_201 @@ -143,7 +143,7 @@ dependencies: - typing_extensions=4.14.0=pyhe01879c_0 - tzdata=2025b=h78e105d_0 - unicodedata2=16.0.0=py312h66e93f0_0 - - urllib3=2.4.0=pyhd8ed1ab_0 + - urllib3=2.5.0=pyhd8ed1ab_0 - wheel=0.45.1=pyhd8ed1ab_1 - wrapt=1.17.2=py312h66e93f0_0 - xorg-libxau=1.0.12=hb9d3cd8_0 @@ -156,8 +156,8 @@ dependencies: - zstandard=0.23.0=py312h66e93f0_2 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@8d46ccb686e4206683862ec803fc709b26271cd8 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@585c89094e3eff35df10d3076964bf154b24d575 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 diff --git a/environments/py-3.12-win-64-dev.conda.lock.yml b/environments/py-3.12-win-64-dev.conda.lock.yml index 73237185..b9b9637f 100644 --- a/environments/py-3.12-win-64-dev.conda.lock.yml +++ b/environments/py-3.12-win-64-dev.conda.lock.yml @@ -28,10 +28,10 @@ dependencies: - brotli-bin=1.1.0=h2466b09_3 - brotli-python=1.1.0=py312h275cf98_3 - bzip2=1.0.8=h2466b09_7 - - ca-certificates=2025.4.26=h4c7d964_0 + - ca-certificates=2025.6.15=h4c7d964_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2025.4.26=pyhd8ed1ab_0 + - certifi=2025.6.15=pyhd8ed1ab_0 - cffi=1.17.1=py312h4389bb4_0 - charset-normalizer=3.4.2=pyhd8ed1ab_0 - click=8.2.1=pyh7428d3b_0 @@ -39,7 +39,7 @@ dependencies: - colorama=0.4.6=pyhd8ed1ab_1 - comm=0.2.2=pyhd8ed1ab_1 - contourpy=1.3.2=py312hd5eb7cc_0 - - coverage=7.8.2=py312h31fea79_0 + - coverage=7.9.1=py312h31fea79_0 - cpython=3.12.11=py312hd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py312h4389bb4_0 @@ -56,7 +56,7 @@ dependencies: - exceptiongroup=1.3.0=pyhd8ed1ab_0 - executing=2.2.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.58.2=py312h31fea79_0 + - fonttools=4.58.4=py312h31fea79_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.13.3=h57928b3_1 - fsspec=2025.5.1=pyhd8ed1ab_0 @@ -110,7 +110,7 @@ dependencies: - latexcodec=2.0.1=pyh9f0ad1d_0 - lcms2=2.17=hbcf6048_0 - lerc=4.0.0=h6470a55_1 - - libaec=1.1.3=h63175ca_0 + - libaec=1.1.4=h20038f6_0 - libblas=3.9.0=31_h641d27c_mkl - libbrotlicommon=1.1.0=h2466b09_3 - libbrotlidec=1.1.0=h2466b09_3 @@ -130,7 +130,7 @@ dependencies: - libjpeg-turbo=3.1.0=h2466b09_0 - liblapack=3.9.0=31_h1aa476e_mkl - liblzma=5.8.1=h2466b09_2 - - libpng=1.6.47=h7a4582a_0 + - libpng=1.6.49=h7a4582a_0 - libsodium=1.0.20=hc70643c_0 - libsqlite=3.50.1=h67fdade_0 - libssh2=1.11.1=h9aa295b_0 @@ -141,7 +141,7 @@ dependencies: - libxml2=2.13.8=h442d1da_0 - libzlib=1.3.1=h2466b09_2 - linkify-it-py=2.0.3=pyhd8ed1ab_1 - - llvm-openmp=20.1.6=h30eaf37_0 + - llvm-openmp=20.1.7=h30eaf37_0 - locket=1.0.0=pyhd8ed1ab_0 - markdown-it-py=2.2.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py312h31fea79_1 @@ -152,9 +152,9 @@ dependencies: - mdurl=0.1.2=pyhd8ed1ab_1 - mistune=3.1.3=pyh29332c3_0 - mkl=2024.2.2=h66d3029_15 - - msgpack-python=1.1.0=py312hd5eb7cc_0 + - msgpack-python=1.1.1=py312hd5eb7cc_0 - mumps-seq=5.7.3=hbaa6519_10 - - munkres=1.1.4=pyh9f0ad1d_0 + - munkres=1.1.4=pyhd8ed1ab_1 - myst-nb=1.2.0=pyh29332c3_0 - myst-parser=1.0.0=pyhd8ed1ab_0 - nbclient=0.10.2=pyhd8ed1ab_0 @@ -190,7 +190,7 @@ dependencies: - pybtex=0.24.0=pyhd8ed1ab_3 - pybtex-docutils=1.0.3=py312h2e8e312_2 - pycparser=2.22=pyh29332c3_1 - - pydantic=2.11.4=pyh3cfb1c2_0 + - pydantic=2.11.7=pyh3cfb1c2_0 - pydantic-core=2.33.2=py312h8422cdd_0 - pydata-sphinx-theme=0.15.4=pyhd8ed1ab_0 - pydiso=0.1.2=py312h01acb21_0 @@ -199,8 +199,8 @@ dependencies: - pymatsolver=0.3.1=pyh48887ae_201 - pyparsing=3.2.3=pyhd8ed1ab_1 - pysocks=1.7.1=pyh09c184e_7 - - pytest=8.4.0=pyhd8ed1ab_0 - - pytest-cov=6.1.1=pyhd8ed1ab_0 + - pytest=8.4.1=pyhd8ed1ab_0 + - pytest-cov=6.2.1=pyhd8ed1ab_0 - python=3.12.11=h3f84c4b_0_cpython - python-dateutil=2.9.0.post0=pyhff2d567_1 - python-fastjsonschema=2.21.1=pyhd8ed1ab_0 @@ -212,7 +212,7 @@ dependencies: - pywin32=307=py312h275cf98_3 - pywinpty=2.0.15=py312h275cf98_0 - pyyaml=6.0.2=py312h31fea79_2 - - pyzmq=26.4.0=py312hd7027bb_0 + - pyzmq=27.0.0=py312hd7027bb_0 - readthedocs-sphinx-ext=2.2.5=pyhd8ed1ab_1 - referencing=0.36.2=pyh29332c3_0 - requests=2.32.4=pyhd8ed1ab_0 @@ -271,7 +271,7 @@ dependencies: - ucrt=10.0.22621.0=h57928b3_1 - unicodedata2=16.0.0=py312h4389bb4_0 - uri-template=1.3.0=pyhd8ed1ab_1 - - urllib3=2.4.0=pyhd8ed1ab_0 + - urllib3=2.5.0=pyhd8ed1ab_0 - vc=14.3=h2b53caa_26 - vc14_runtime=14.42.34438=hfd919c2_26 - vs2015_runtime=14.42.34438=h7142326_26 @@ -295,8 +295,8 @@ dependencies: - zstandard=0.23.0=py312h4389bb4_2 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@8d46ccb686e4206683862ec803fc709b26271cd8 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@585c89094e3eff35df10d3076964bf154b24d575 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 diff --git a/environments/py-3.12-win-64.conda.lock.yml b/environments/py-3.12-win-64.conda.lock.yml index 58dc0ef4..2f59ccf5 100644 --- a/environments/py-3.12-win-64.conda.lock.yml +++ b/environments/py-3.12-win-64.conda.lock.yml @@ -14,10 +14,10 @@ dependencies: - brotli-bin=1.1.0=h2466b09_3 - brotli-python=1.1.0=py312h275cf98_3 - bzip2=1.0.8=h2466b09_7 - - ca-certificates=2025.4.26=h4c7d964_0 + - ca-certificates=2025.6.15=h4c7d964_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2025.4.26=pyhd8ed1ab_0 + - certifi=2025.6.15=pyhd8ed1ab_0 - cffi=1.17.1=py312h4389bb4_0 - click=8.2.1=pyh7428d3b_0 - cloudpickle=3.1.1=pyhd8ed1ab_0 @@ -30,7 +30,7 @@ dependencies: - discretize=0.11.3=py312hbaa7e33_0 - distributed=2025.3.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.58.2=py312h31fea79_0 + - fonttools=4.58.4=py312h31fea79_0 - freetype=2.13.3=h57928b3_1 - fsspec=2025.5.1=pyhd8ed1ab_0 - geoana=0.7.2=py312hbaa7e33_0 @@ -47,7 +47,7 @@ dependencies: - krb5=1.21.3=hdf4eb48_0 - lcms2=2.17=hbcf6048_0 - lerc=4.0.0=h6470a55_1 - - libaec=1.1.3=h63175ca_0 + - libaec=1.1.4=h20038f6_0 - libblas=3.9.0=31_h641d27c_mkl - libbrotlicommon=1.1.0=h2466b09_3 - libbrotlidec=1.1.0=h2466b09_3 @@ -67,7 +67,7 @@ dependencies: - libjpeg-turbo=3.1.0=h2466b09_0 - liblapack=3.9.0=31_h1aa476e_mkl - liblzma=5.8.1=h2466b09_2 - - libpng=1.6.47=h7a4582a_0 + - libpng=1.6.49=h7a4582a_0 - libsqlite=3.50.1=h67fdade_0 - libssh2=1.11.1=h9aa295b_0 - libtiff=4.7.0=h05922d8_5 @@ -76,14 +76,14 @@ dependencies: - libxcb=1.17.0=h0e4246c_0 - libxml2=2.13.8=h442d1da_0 - libzlib=1.3.1=h2466b09_2 - - llvm-openmp=20.1.6=h30eaf37_0 + - llvm-openmp=20.1.7=h30eaf37_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py312h31fea79_1 - matplotlib-base=3.8.4=py312hfee7060_2 - mkl=2024.2.2=h66d3029_15 - - msgpack-python=1.1.0=py312hd5eb7cc_0 + - msgpack-python=1.1.1=py312hd5eb7cc_0 - mumps-seq=5.7.3=hbaa6519_10 - - munkres=1.1.4=pyh9f0ad1d_0 + - munkres=1.1.4=pyhd8ed1ab_1 - numcodecs=0.15.1=py312h72972c8_0 - numpy=1.26.4=py312h8753938_0 - openjpeg=2.5.3=h4d64b90_0 @@ -96,7 +96,7 @@ dependencies: - psutil=7.0.0=py312h4389bb4_0 - pthread-stubs=0.4=h0e40799_1002 - pycparser=2.22=pyh29332c3_1 - - pydantic=2.11.4=pyh3cfb1c2_0 + - pydantic=2.11.7=pyh3cfb1c2_0 - pydantic-core=2.33.2=py312h8422cdd_0 - pydiso=0.1.2=py312h01acb21_0 - pymatsolver=0.3.1=pyh48887ae_201 @@ -127,7 +127,7 @@ dependencies: - tzdata=2025b=h78e105d_0 - ucrt=10.0.22621.0=h57928b3_1 - unicodedata2=16.0.0=py312h4389bb4_0 - - urllib3=2.4.0=pyhd8ed1ab_0 + - urllib3=2.5.0=pyhd8ed1ab_0 - vc=14.3=h2b53caa_26 - vc14_runtime=14.42.34438=hfd919c2_26 - vs2015_runtime=14.42.34438=h7142326_26 @@ -144,8 +144,8 @@ dependencies: - zstandard=0.23.0=py312h4389bb4_2 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@8d46ccb686e4206683862ec803fc709b26271cd8 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@585c89094e3eff35df10d3076964bf154b24d575 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@f72a1367edcb2da969002ca06f18f532340b3c27 - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@02fbd85bf7d54b8f4336f1f0094c1c3e27714e81 - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 diff --git a/py-3.10.conda-lock.yml b/py-3.10.conda-lock.yml index 1a472f53..6a9c6c01 100644 --- a/py-3.10.conda-lock.yml +++ b/py-3.10.conda-lock.yml @@ -35,7 +35,7 @@ package: platform: linux-64 dependencies: llvm-openmp: '>=9.0.1' - url: https://repo.prefix.dev/conda-forge/linux-64/_openmp_mutex-4.5-3_kmp_llvm.conda + url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-3_kmp_llvm.conda hash: md5: ee5c2118262e30b972bc0b4db8ef0ba5 sha256: cec7343e76c9da6a42c7e7cba53391daa6b46155054ef61a5ef522ea27c5a058 @@ -48,7 +48,7 @@ package: dependencies: libgomp: '>=7.5.0' libwinpthread: '>=12.0.0.r2.ggc561118da' - url: https://repo.prefix.dev/conda-forge/win-64/_openmp_mutex-4.5-2_gnu.conda + url: https://conda.anaconda.org/conda-forge/win-64/_openmp_mutex-4.5-2_gnu.conda hash: md5: 37e16618af5c4851a3f3d66dd0e11141 sha256: 1a62cd1f215fe0902e7004089693a78347a30ad687781dfda2289cab000e652d @@ -61,7 +61,7 @@ package: dependencies: pygments: '' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/accessible-pygments-0.0.5-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/accessible-pygments-0.0.5-pyhd8ed1ab_1.conda hash: md5: 74ac5069774cdbc53910ec4d631a3999 sha256: 1307719f0d8ee694fc923579a39c0621c23fdaa14ccdf9278a5aac5665ac58e9 @@ -74,7 +74,7 @@ package: dependencies: pygments: '' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/accessible-pygments-0.0.5-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/accessible-pygments-0.0.5-pyhd8ed1ab_1.conda hash: md5: 74ac5069774cdbc53910ec4d631a3999 sha256: 1307719f0d8ee694fc923579a39c0621c23fdaa14ccdf9278a5aac5665ac58e9 @@ -86,7 +86,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/alabaster-0.7.16-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/alabaster-0.7.16-pyhd8ed1ab_0.conda hash: md5: def531a3ac77b7fb8c21d17bb5d0badb sha256: fd39ad2fabec1569bbb0dfdae34ab6ce7de6ec09dcec8638f83dad0373594069 @@ -98,7 +98,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/alabaster-0.7.16-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/alabaster-0.7.16-pyhd8ed1ab_0.conda hash: md5: def531a3ac77b7fb8c21d17bb5d0badb sha256: fd39ad2fabec1569bbb0dfdae34ab6ce7de6ec09dcec8638f83dad0373594069 @@ -111,7 +111,7 @@ package: dependencies: python: '>=3.9' typing-extensions: '>=4.0.0' - url: https://repo.prefix.dev/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda hash: md5: 2934f256a8acfe48f6ebb4fce6cde29c sha256: e0ea1ba78fbb64f17062601edda82097fcf815012cf52bb704150a2668110d48 @@ -124,7 +124,7 @@ package: dependencies: python: '>=3.9' typing-extensions: '>=4.0.0' - url: https://repo.prefix.dev/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda hash: md5: 2934f256a8acfe48f6ebb4fce6cde29c sha256: e0ea1ba78fbb64f17062601edda82097fcf815012cf52bb704150a2668110d48 @@ -140,7 +140,7 @@ package: python: '' sniffio: '>=1.1' typing_extensions: '>=4.5' - url: https://repo.prefix.dev/conda-forge/noarch/anyio-4.9.0-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/anyio-4.9.0-pyh29332c3_0.conda hash: md5: 9749a2c77a7c40d432ea0927662d7e52 sha256: b28e0f78bb0c7962630001e63af25a89224ff504e135a02e50d4d80b6155d386 @@ -156,7 +156,7 @@ package: python: '>=3.9' sniffio: '>=1.1' typing_extensions: '>=4.5' - url: https://repo.prefix.dev/conda-forge/noarch/anyio-4.9.0-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/anyio-4.9.0-pyh29332c3_0.conda hash: md5: 9749a2c77a7c40d432ea0927662d7e52 sha256: b28e0f78bb0c7962630001e63af25a89224ff504e135a02e50d4d80b6155d386 @@ -170,7 +170,7 @@ package: argon2-cffi-bindings: '' python: '>=3.9' typing-extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/argon2-cffi-25.1.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/argon2-cffi-25.1.0-pyhd8ed1ab_0.conda hash: md5: 8ac12aff0860280ee0cff7fa2cf63f3b sha256: bea62005badcb98b1ae1796ec5d70ea0fc9539e7d59708ac4e7d41e2f4bb0bad @@ -184,7 +184,7 @@ package: argon2-cffi-bindings: '' python: '>=3.9' typing-extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/argon2-cffi-25.1.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/argon2-cffi-25.1.0-pyhd8ed1ab_0.conda hash: md5: 8ac12aff0860280ee0cff7fa2cf63f3b sha256: bea62005badcb98b1ae1796ec5d70ea0fc9539e7d59708ac4e7d41e2f4bb0bad @@ -200,7 +200,7 @@ package: libgcc: '>=13' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://repo.prefix.dev/conda-forge/linux-64/argon2-cffi-bindings-21.2.0-py310ha75aee5_5.conda + url: https://conda.anaconda.org/conda-forge/linux-64/argon2-cffi-bindings-21.2.0-py310ha75aee5_5.conda hash: md5: a2da54f3a705d518c95a5b6de8ad8af6 sha256: 1050f55294476b4d9b36ca3cf22b47f2f23d6e143ad6a177025bc5e5984d5409 @@ -217,7 +217,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/argon2-cffi-bindings-21.2.0-py310ha8f682b_5.conda + url: https://conda.anaconda.org/conda-forge/win-64/argon2-cffi-bindings-21.2.0-py310ha8f682b_5.conda hash: md5: d18002177f557891c1fc5482da6decd7 sha256: f0b23aa9a3c27500d58a383d635c01b86ab652c34646c3ad9e89fd82607178a0 @@ -231,7 +231,7 @@ package: python: '>=3.9' python-dateutil: '>=2.7.0' types-python-dateutil: '>=2.8.10' - url: https://repo.prefix.dev/conda-forge/noarch/arrow-1.3.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/arrow-1.3.0-pyhd8ed1ab_1.conda hash: md5: 46b53236fdd990271b03c3978d4218a9 sha256: c4b0bdb3d5dee50b60db92f99da3e4c524d5240aafc0a5fcc15e45ae2d1a3cd1 @@ -245,7 +245,7 @@ package: python: '>=3.9' python-dateutil: '>=2.7.0' types-python-dateutil: '>=2.8.10' - url: https://repo.prefix.dev/conda-forge/noarch/arrow-1.3.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/arrow-1.3.0-pyhd8ed1ab_1.conda hash: md5: 46b53236fdd990271b03c3978d4218a9 sha256: c4b0bdb3d5dee50b60db92f99da3e4c524d5240aafc0a5fcc15e45ae2d1a3cd1 @@ -257,7 +257,7 @@ package: platform: linux-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/asciitree-0.3.3-py_2.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/asciitree-0.3.3-py_2.tar.bz2 hash: md5: c0481c9de49f040272556e2cedf42816 sha256: b3e9369529fe7d721b66f18680ff4b561e20dbf6507e209e1f60eac277c97560 @@ -269,7 +269,7 @@ package: platform: win-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/asciitree-0.3.3-py_2.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/asciitree-0.3.3-py_2.tar.bz2 hash: md5: c0481c9de49f040272556e2cedf42816 sha256: b3e9369529fe7d721b66f18680ff4b561e20dbf6507e209e1f60eac277c97560 @@ -283,7 +283,7 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* typing_extensions: '>=4' - url: https://repo.prefix.dev/conda-forge/linux-64/astroid-3.3.10-py310hff52083_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/astroid-3.3.10-py310hff52083_0.conda hash: md5: 23d30197602d01c464d5ffec91091289 sha256: 8fc36a19f99ce069add5036b7956c993d17e6fdffe6d89094269ee44d5258376 @@ -297,7 +297,7 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* typing_extensions: '>=4' - url: https://repo.prefix.dev/conda-forge/win-64/astroid-3.3.10-py310h5588dad_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/astroid-3.3.10-py310h5588dad_0.conda hash: md5: 6eb388b714751d500899de8cb4b4f0fe sha256: 9b1d89a07594eea4b095e36df447fd2f64e4e492256b7b91388378e51996517c @@ -309,7 +309,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/asttokens-3.0.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/asttokens-3.0.0-pyhd8ed1ab_1.conda hash: md5: 8f587de4bcf981e26228f268df374a9b sha256: 93b14414b3b3ed91e286e1cbe4e7a60c4e1b1c730b0814d1e452a8ac4b9af593 @@ -321,7 +321,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/asttokens-3.0.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/asttokens-3.0.0-pyhd8ed1ab_1.conda hash: md5: 8f587de4bcf981e26228f268df374a9b sha256: 93b14414b3b3ed91e286e1cbe4e7a60c4e1b1c730b0814d1e452a8ac4b9af593 @@ -334,7 +334,7 @@ package: dependencies: python: '' typing_extensions: '>=4.0.0' - url: https://repo.prefix.dev/conda-forge/noarch/async-lru-2.0.5-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/async-lru-2.0.5-pyh29332c3_0.conda hash: md5: d9d0f99095a9bb7e3641bca8c6ad2ac7 sha256: 3b7233041e462d9eeb93ea1dfe7b18aca9c358832517072054bb8761df0c324b @@ -347,7 +347,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '>=4.0.0' - url: https://repo.prefix.dev/conda-forge/noarch/async-lru-2.0.5-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/async-lru-2.0.5-pyh29332c3_0.conda hash: md5: d9d0f99095a9bb7e3641bca8c6ad2ac7 sha256: 3b7233041e462d9eeb93ea1dfe7b18aca9c358832517072054bb8761df0c324b @@ -359,7 +359,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/attrs-25.3.0-pyh71513ae_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/attrs-25.3.0-pyh71513ae_0.conda hash: md5: a10d11958cadc13fdb43df75f8b1903f sha256: 99c53ffbcb5dc58084faf18587b215f9ac8ced36bbfb55fa807c00967e419019 @@ -371,7 +371,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/attrs-25.3.0-pyh71513ae_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/attrs-25.3.0-pyh71513ae_0.conda hash: md5: a10d11958cadc13fdb43df75f8b1903f sha256: 99c53ffbcb5dc58084faf18587b215f9ac8ced36bbfb55fa807c00967e419019 @@ -384,7 +384,7 @@ package: dependencies: python: '>=3.9' pytz: '>=2015.7' - url: https://repo.prefix.dev/conda-forge/noarch/babel-2.17.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/babel-2.17.0-pyhd8ed1ab_0.conda hash: md5: 0a01c169f0ab0f91b26e77a3301fbfe4 sha256: 1c656a35800b7f57f7371605bc6507c8d3ad60fbaaec65876fce7f73df1fc8ac @@ -397,7 +397,7 @@ package: dependencies: python: '>=3.9' pytz: '>=2015.7' - url: https://repo.prefix.dev/conda-forge/noarch/babel-2.17.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/babel-2.17.0-pyhd8ed1ab_0.conda hash: md5: 0a01c169f0ab0f91b26e77a3301fbfe4 sha256: 1c656a35800b7f57f7371605bc6507c8d3ad60fbaaec65876fce7f73df1fc8ac @@ -411,7 +411,7 @@ package: python: '>=3.9' soupsieve: '>=1.2' typing-extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/beautifulsoup4-4.13.4-pyha770c72_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.13.4-pyha770c72_0.conda hash: md5: 9f07c4fc992adb2d6c30da7fab3959a7 sha256: ddb0df12fd30b2d36272f5daf6b6251c7625d6a99414d7ea930005bbaecad06d @@ -425,7 +425,7 @@ package: python: '>=3.9' soupsieve: '>=1.2' typing-extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/beautifulsoup4-4.13.4-pyha770c72_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.13.4-pyha770c72_0.conda hash: md5: 9f07c4fc992adb2d6c30da7fab3959a7 sha256: ddb0df12fd30b2d36272f5daf6b6251c7625d6a99414d7ea930005bbaecad06d @@ -438,7 +438,7 @@ package: dependencies: python: '' webencodings: '' - url: https://repo.prefix.dev/conda-forge/noarch/bleach-6.2.0-pyh29332c3_4.conda + url: https://conda.anaconda.org/conda-forge/noarch/bleach-6.2.0-pyh29332c3_4.conda hash: md5: f0b4c8e370446ef89797608d60a564b3 sha256: a05971bb80cca50ce9977aad3f7fc053e54ea7d5321523efc7b9a6e12901d3cd @@ -451,7 +451,7 @@ package: dependencies: python: '>=3.9' webencodings: '' - url: https://repo.prefix.dev/conda-forge/noarch/bleach-6.2.0-pyh29332c3_4.conda + url: https://conda.anaconda.org/conda-forge/noarch/bleach-6.2.0-pyh29332c3_4.conda hash: md5: f0b4c8e370446ef89797608d60a564b3 sha256: a05971bb80cca50ce9977aad3f7fc053e54ea7d5321523efc7b9a6e12901d3cd @@ -464,7 +464,7 @@ package: dependencies: bleach: ==6.2.0 tinycss2: '' - url: https://repo.prefix.dev/conda-forge/noarch/bleach-with-css-6.2.0-h82add2a_4.conda + url: https://conda.anaconda.org/conda-forge/noarch/bleach-with-css-6.2.0-h82add2a_4.conda hash: md5: a30e9406c873940383555af4c873220d sha256: 0aba699344275b3972bd751f9403316edea2ceb942db12f9f493b63c74774a46 @@ -477,7 +477,7 @@ package: dependencies: bleach: ==6.2.0 tinycss2: '' - url: https://repo.prefix.dev/conda-forge/noarch/bleach-with-css-6.2.0-h82add2a_4.conda + url: https://conda.anaconda.org/conda-forge/noarch/bleach-with-css-6.2.0-h82add2a_4.conda hash: md5: a30e9406c873940383555af4c873220d sha256: 0aba699344275b3972bd751f9403316edea2ceb942db12f9f493b63c74774a46 @@ -498,7 +498,7 @@ package: pyyaml: '>=3.10' tornado: '>=6.2' xyzservices: '>=2021.09.1' - url: https://repo.prefix.dev/conda-forge/noarch/bokeh-3.6.3-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/bokeh-3.6.3-pyhd8ed1ab_0.conda hash: md5: 606498329a91bd9d5c0439fb2815816f sha256: 6cc6841b1660cd3246890d4f601baf51367526afe6256dfd8a8d9a8f7db651fe @@ -519,7 +519,7 @@ package: pyyaml: '>=3.10' tornado: '>=6.2' xyzservices: '>=2021.09.1' - url: https://repo.prefix.dev/conda-forge/noarch/bokeh-3.6.3-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/bokeh-3.6.3-pyhd8ed1ab_0.conda hash: md5: 606498329a91bd9d5c0439fb2815816f sha256: 6cc6841b1660cd3246890d4f601baf51367526afe6256dfd8a8d9a8f7db651fe @@ -535,7 +535,7 @@ 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_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/brotli-1.1.0-hb9d3cd8_3.conda hash: md5: 5d08a0ac29e6a5a984817584775d4131 sha256: c969baaa5d7a21afb5ed4b8dd830f82b78e425caaa13d717766ed07a61630bec @@ -552,7 +552,7 @@ 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_3.conda + url: https://conda.anaconda.org/conda-forge/win-64/brotli-1.1.0-h2466b09_3.conda hash: md5: c2a23d8a8986c72148c63bdf855ac99a sha256: d57cd6ea705c9d2a8a2721f083de247501337e459f5498726b564cfca138e192 @@ -567,7 +567,7 @@ 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_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/brotli-bin-1.1.0-hb9d3cd8_3.conda hash: md5: 58178ef8ba927229fba6d84abf62c108 sha256: ab74fa8c3d1ca0a055226be89e99d6798c65053e2d2d3c6cb380c574972cd4a7 @@ -583,7 +583,7 @@ 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_3.conda + url: https://conda.anaconda.org/conda-forge/win-64/brotli-bin-1.1.0-h2466b09_3.conda hash: md5: c7c345559c1ac25eede6dccb7b931202 sha256: 85aac1c50a426be6d0cc9fd52480911d752f4082cb78accfdb257243e572c7eb @@ -599,7 +599,7 @@ 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_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.1.0-py310hf71b8c6_3.conda hash: md5: 63d24a5dd21c738d706f91569dbd1892 sha256: 313cd446b1a42b55885741534800a1d69bd3816eeef662f41fc3ac26e16d537e @@ -615,7 +615,7 @@ 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_3.conda + url: https://conda.anaconda.org/conda-forge/win-64/brotli-python-1.1.0-py310h9e98ed7_3.conda hash: md5: 52d37d0f3a9286d295fbf72cf0aa99ee sha256: 6eac109d40bd36d158064a552babc3da069662ad93712453eb43320f330b7c82 @@ -628,7 +628,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - url: https://repo.prefix.dev/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda + url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda hash: md5: 62ee74e96c5ebb0af99386de58cf9553 sha256: 5ced96500d945fb286c9c838e54fa759aa04a7129c59800f0846b4335cee770d @@ -642,7 +642,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda + url: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda hash: md5: 276e7ffe9ffe39688abc665ef0f45596 sha256: 35a5dad92e88fdd7fc405e864ec239486f4f31eec229e31686e61a140a8e573b @@ -655,34 +655,34 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/c-ares-1.34.5-hb9d3cd8_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.34.5-hb9d3cd8_0.conda hash: md5: f7f0d6cc2dc986d42ac2689ec88192be sha256: f8003bef369f57396593ccd03d08a8e21966157269426f71e943f96e4b579aeb 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://conda.anaconda.org/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://conda.anaconda.org/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 @@ -691,7 +691,7 @@ package: platform: linux-64 dependencies: cached_property: '>=1.5.2,<1.5.3.0a0' - url: https://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 hash: md5: 9b347a7ec10940d3f7941ff6c460b551 sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17 @@ -703,7 +703,7 @@ package: platform: win-64 dependencies: cached_property: '>=1.5.2,<1.5.3.0a0' - url: https://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 hash: md5: 9b347a7ec10940d3f7941ff6c460b551 sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17 @@ -715,7 +715,7 @@ package: platform: linux-64 dependencies: python: '>=3.6' - url: https://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 hash: md5: 576d629e47797577ab0f1b351297ef4a sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7 @@ -727,34 +727,34 @@ package: platform: win-64 dependencies: python: '>=3.6' - url: https://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 hash: md5: 576d629e47797577ab0f1b351297ef4a sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7 category: main optional: false - name: certifi - version: 2025.4.26 + version: 2025.6.15 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.4.26-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/certifi-2025.6.15-pyhd8ed1ab_0.conda hash: - md5: c33eeaaa33f45031be34cda513df39b6 - sha256: 52aa837642fd851b3f7ad3b1f66afc5366d133c1d452323f786b0378a391915c + md5: 781d068df0cc2407d4db0ecfbb29225b + sha256: d71c85835813072cd6d7ce4b24be34215cd90c104785b15a5d58f4cd0cb50778 category: main optional: false - name: certifi - version: 2025.4.26 + version: 2025.6.15 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.4.26-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/certifi-2025.6.15-pyhd8ed1ab_0.conda hash: - md5: c33eeaaa33f45031be34cda513df39b6 - sha256: 52aa837642fd851b3f7ad3b1f66afc5366d133c1d452323f786b0378a391915c + md5: 781d068df0cc2407d4db0ecfbb29225b + sha256: d71c85835813072cd6d7ce4b24be34215cd90c104785b15a5d58f4cd0cb50778 category: main optional: false - name: cffi @@ -768,7 +768,7 @@ package: pycparser: '' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://repo.prefix.dev/conda-forge/linux-64/cffi-1.17.1-py310h8deb56e_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.17.1-py310h8deb56e_0.conda hash: md5: 1fc24a3196ad5ede2a68148be61894f4 sha256: 1b389293670268ab80c3b8735bc61bc71366862953e000efbb82204d00e41b6c @@ -785,7 +785,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/cffi-1.17.1-py310ha8f682b_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/cffi-1.17.1-py310ha8f682b_0.conda hash: md5: 9c7ec967f4ae263aec56cff05bdbfc07 sha256: 32638e79658f76e3700f783c519025290110f207833ae1d166d262572cbec8a8 @@ -797,7 +797,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.2-pyhd8ed1ab_0.conda hash: md5: 40fe4284b8b5835a9073a645139f35af sha256: 535ae5dcda8022e31c6dc063eb344c80804c537a5a04afba43a845fa6fa130f5 @@ -809,7 +809,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.2-pyhd8ed1ab_0.conda hash: md5: 40fe4284b8b5835a9073a645139f35af sha256: 535ae5dcda8022e31c6dc063eb344c80804c537a5a04afba43a845fa6fa130f5 @@ -822,7 +822,7 @@ package: dependencies: __unix: '' python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/click-8.2.1-pyh707e725_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/click-8.2.1-pyh707e725_0.conda hash: md5: 94b550b8d3a614dbd326af798c7dfb40 sha256: 8aee789c82d8fdd997840c952a586db63c6890b00e88c4fb6e80a38edd5f51c0 @@ -836,7 +836,7 @@ package: __win: '' colorama: '' python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/click-8.2.1-pyh7428d3b_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/click-8.2.1-pyh7428d3b_0.conda hash: md5: 3a59475037bc09da916e4062c5cad771 sha256: 20c2d8ea3d800485245b586a28985cba281dd6761113a49d7576f6db92a0a891 @@ -848,7 +848,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/cloudpickle-3.1.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/cloudpickle-3.1.1-pyhd8ed1ab_0.conda hash: md5: 364ba6c9fb03886ac979b482f39ebb92 sha256: 21ecead7268241007bf65691610cd7314da68c1f88113092af690203b5780db5 @@ -860,7 +860,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/cloudpickle-3.1.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/cloudpickle-3.1.1-pyhd8ed1ab_0.conda hash: md5: 364ba6c9fb03886ac979b482f39ebb92 sha256: 21ecead7268241007bf65691610cd7314da68c1f88113092af690203b5780db5 @@ -872,7 +872,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda hash: md5: 962b9857ee8e7018c22f2776ffa0b2d7 sha256: ab29d57dc70786c1269633ba3dff20288b81664d3ff8d21af995742e2bb03287 @@ -884,7 +884,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda hash: md5: 962b9857ee8e7018c22f2776ffa0b2d7 sha256: ab29d57dc70786c1269633ba3dff20288b81664d3ff8d21af995742e2bb03287 @@ -897,7 +897,7 @@ package: dependencies: python: '>=3.9' traitlets: '>=5.3' - url: https://repo.prefix.dev/conda-forge/noarch/comm-0.2.2-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/comm-0.2.2-pyhd8ed1ab_1.conda hash: md5: 74673132601ec2b7fc592755605f4c1b sha256: 7e87ef7c91574d9fac19faedaaee328a70f718c9b4ddadfdc0ba9ac021bd64af @@ -910,7 +910,7 @@ package: dependencies: python: '>=3.9' traitlets: '>=5.3' - url: https://repo.prefix.dev/conda-forge/noarch/comm-0.2.2-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/comm-0.2.2-pyhd8ed1ab_1.conda hash: md5: 74673132601ec2b7fc592755605f4c1b sha256: 7e87ef7c91574d9fac19faedaaee328a70f718c9b4ddadfdc0ba9ac021bd64af @@ -927,7 +927,7 @@ package: numpy: '>=1.23' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://repo.prefix.dev/conda-forge/linux-64/contourpy-1.3.2-py310h3788b33_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/contourpy-1.3.2-py310h3788b33_0.conda hash: md5: b6420d29123c7c823de168f49ccdfe6a sha256: 5231c1b68e01a9bc9debabc077a6fb48c4395206d59f40a4598d1d5e353e11d8 @@ -944,14 +944,14 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/contourpy-1.3.2-py310hc19bc0b_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/contourpy-1.3.2-py310hc19bc0b_0.conda hash: md5: 039416813b5290e7d100a05bb4326110 sha256: 096a7cf6bf77faf3e093936d831118151781ddbd2ab514355ee2f0104b490b1e category: main optional: false - name: coverage - version: 7.8.2 + version: 7.9.1 manager: conda platform: linux-64 dependencies: @@ -960,14 +960,14 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* tomli: '' - url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.8.2-py310h89163eb_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/coverage-7.9.1-py310h89163eb_0.conda hash: - md5: 5ca8ab35287adc83b2d1996e5c2ac14c - sha256: 1e89236cd1ea9bbfcefa62a7225486301f18711e59e44dd802825ec53630c777 + md5: 0acae6de150b85b7f3119ec88558d22a + sha256: 6464f0923860a0e5fcbba990244c022e7477df1822c11d8b523559c76a07b7d1 category: dev optional: true - name: coverage - version: 7.8.2 + version: 7.9.1 manager: conda platform: win-64 dependencies: @@ -977,10 +977,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.8.2-py310h38315fa_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/coverage-7.9.1-py310h38315fa_0.conda hash: - md5: 5e09090744ab0b70b2882bc415c0d5ad - sha256: 561e5fd17f164928948107550856347ba4ed5c16b50c363bf8fbd0c1f2310893 + md5: b8b10af95ba002ab90bbf61f20eaffab + sha256: a847093fb9a7b82502313a208c5338443573ee47b32dad9d38baab660494149c category: dev optional: true - name: cpython @@ -990,7 +990,7 @@ package: dependencies: python: '>=3.10,<3.11.0a0' python_abi: '*' - url: https://repo.prefix.dev/conda-forge/noarch/cpython-3.10.18-py310hd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/cpython-3.10.18-py310hd8ed1ab_0.conda hash: md5: 7004cb3fa62ad44d1cb70f3b080dfc8f sha256: 44329b37f854a90b4b9bcf500c25c13dce91180eca26a9272f6a254725d2db8c @@ -1002,7 +1002,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda hash: md5: 44600c4667a319d67dbe0681fc0bc833 sha256: 9827efa891e507a91a8a2acf64e210d2aff394e1cde432ad08e1f8c66b12293c @@ -1014,7 +1014,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda hash: md5: 44600c4667a319d67dbe0681fc0bc833 sha256: 9827efa891e507a91a8a2acf64e210d2aff394e1cde432ad08e1f8c66b12293c @@ -1030,7 +1030,7 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* toolz: '>=0.10.0' - url: https://repo.prefix.dev/conda-forge/linux-64/cytoolz-1.0.1-py310ha75aee5_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/cytoolz-1.0.1-py310ha75aee5_0.conda hash: md5: d0be1adaa04a03aed745f3d02afb59ce sha256: b427689dfc24a6a297363122ce10d502ea00ddb3c43af6cff175ff563cc94eea @@ -1047,7 +1047,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/cytoolz-1.0.1-py310ha8f682b_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/cytoolz-1.0.1-py310ha8f682b_0.conda hash: md5: ed2af2a0262d44f753738588640b8534 sha256: 670800d13b6cd64b8f53756b28254b47cfc177606dcd42094696582335ed0f02 @@ -1067,7 +1067,7 @@ package: python: '>=3.10' pyyaml: '>=5.3.1' toolz: '>=0.10.0' - url: https://repo.prefix.dev/conda-forge/noarch/dask-core-2025.3.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/dask-core-2025.3.0-pyhd8ed1ab_0.conda hash: md5: 36f6cc22457e3d6a6051c5370832f96c sha256: 72badd945d856d2928fdbe051f136f903bcfee8136f1526c8362c6c465b793ec @@ -1087,7 +1087,7 @@ package: python: '>=3.10' pyyaml: '>=5.3.1' toolz: '>=0.10.0' - url: https://repo.prefix.dev/conda-forge/noarch/dask-core-2025.3.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/dask-core-2025.3.0-pyhd8ed1ab_0.conda hash: md5: 36f6cc22457e3d6a6051c5370832f96c sha256: 72badd945d856d2928fdbe051f136f903bcfee8136f1526c8362c6c465b793ec @@ -1099,7 +1099,7 @@ package: platform: linux-64 dependencies: python: '>=3.7' - url: https://repo.prefix.dev/conda-forge/noarch/dataclasses-0.8-pyhc8e2a94_3.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/dataclasses-0.8-pyhc8e2a94_3.tar.bz2 hash: md5: a362b2124b06aad102e2ee4581acee7d sha256: 63a83e62e0939bc1ab32de4ec736f6403084198c4639638b354a352113809c92 @@ -1111,7 +1111,7 @@ package: platform: win-64 dependencies: python: '>=3.7' - url: https://repo.prefix.dev/conda-forge/noarch/dataclasses-0.8-pyhc8e2a94_3.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/dataclasses-0.8-pyhc8e2a94_3.tar.bz2 hash: md5: a362b2124b06aad102e2ee4581acee7d sha256: 63a83e62e0939bc1ab32de4ec736f6403084198c4639638b354a352113809c92 @@ -1127,7 +1127,7 @@ package: libstdcxx: '>=13' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://repo.prefix.dev/conda-forge/linux-64/debugpy-1.8.14-py310hf71b8c6_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/debugpy-1.8.14-py310hf71b8c6_0.conda hash: md5: f684f79f834ebff4917f1fef366e2ca4 sha256: 532e0ec65d575b1f2b77febff5e357759e4e463118c0b4c01596d954f491bacc @@ -1143,7 +1143,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/debugpy-1.8.14-py310h9e98ed7_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/debugpy-1.8.14-py310h9e98ed7_0.conda hash: md5: 4849f4e95ac1018bf446394ee0661e16 sha256: 81c5c211a59888178a6d9011e74baf3bae5a319dfcd29a2a8ac3b30bcab5ef41 @@ -1155,7 +1155,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/decorator-5.2.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/decorator-5.2.1-pyhd8ed1ab_0.conda hash: md5: 9ce473d1d1be1cc3810856a48b3fab32 sha256: c17c6b9937c08ad63cb20a26f403a3234088e57d4455600974a0ce865cb14017 @@ -1167,7 +1167,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/decorator-5.2.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/decorator-5.2.1-pyhd8ed1ab_0.conda hash: md5: 9ce473d1d1be1cc3810856a48b3fab32 sha256: c17c6b9937c08ad63cb20a26f403a3234088e57d4455600974a0ce865cb14017 @@ -1179,7 +1179,7 @@ package: platform: linux-64 dependencies: python: '>=3.6' - url: https://repo.prefix.dev/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2 hash: md5: 961b3a227b437d82ad7054484cfa71b2 sha256: 9717a059677553562a8f38ff07f3b9f61727bd614f505658b0a5ecbcf8df89be @@ -1191,7 +1191,7 @@ package: platform: win-64 dependencies: python: '>=3.6' - url: https://repo.prefix.dev/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2 hash: md5: 961b3a227b437d82ad7054484cfa71b2 sha256: 9717a059677553562a8f38ff07f3b9f61727bd614f505658b0a5ecbcf8df89be @@ -1203,7 +1203,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda hash: md5: 885745570573eb6a08e021841928297a sha256: 43dca52c96fde0c4845aaff02bcc92f25e1c2e5266ddefc2eac1a3de0960a3b1 @@ -1215,7 +1215,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda hash: md5: 885745570573eb6a08e021841928297a sha256: 43dca52c96fde0c4845aaff02bcc92f25e1c2e5266ddefc2eac1a3de0960a3b1 @@ -1233,7 +1233,7 @@ 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.3-py310ha2bacc8_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/discretize-0.11.3-py310ha2bacc8_0.conda hash: md5: dec42d7ab3eb8ee69946eeb5de6eaeb8 sha256: 8724a644a7170b16e11a4206062e1778ea3a4068691945017060f5d24432d5d0 @@ -1251,7 +1251,7 @@ 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.3-py310h3e8ed56_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/discretize-0.11.3-py310h3e8ed56_0.conda hash: md5: a8ba6acb343f5c9c018a89d1d64acc51 sha256: 6275debf3044a84b85c5298540d0b208a02f0dad5357744eaa6802779ebed175 @@ -1279,7 +1279,7 @@ package: tornado: '>=6.2.0' urllib3: '>=1.26.5' zict: '>=3.0.0' - url: https://repo.prefix.dev/conda-forge/noarch/distributed-2025.3.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/distributed-2025.3.0-pyhd8ed1ab_0.conda hash: md5: 968a7a4ff98bcfb515b0f1c94d35553f sha256: ea055aeda774d03ec96e0901ec119c6d3dc21ddd50af166bec664a76efd5f82a @@ -1307,7 +1307,7 @@ package: tornado: '>=6.2.0' urllib3: '>=1.26.5' zict: '>=3.0.0' - url: https://repo.prefix.dev/conda-forge/noarch/distributed-2025.3.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/distributed-2025.3.0-pyhd8ed1ab_0.conda hash: md5: 968a7a4ff98bcfb515b0f1c94d35553f sha256: ea055aeda774d03ec96e0901ec119c6d3dc21ddd50af166bec664a76efd5f82a @@ -1320,7 +1320,7 @@ package: dependencies: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://repo.prefix.dev/conda-forge/linux-64/docutils-0.19-py310hff52083_1.tar.bz2 + url: https://conda.anaconda.org/conda-forge/linux-64/docutils-0.19-py310hff52083_1.tar.bz2 hash: md5: 21b8fa2179290505e607f5ccd65b01b0 sha256: f3a564449daedafe5931ab4efe7bc4f240182f2b760e7877f15b2898b7f1c988 @@ -1333,7 +1333,7 @@ package: dependencies: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://repo.prefix.dev/conda-forge/win-64/docutils-0.19-py310h5588dad_1.tar.bz2 + url: https://conda.anaconda.org/conda-forge/win-64/docutils-0.19-py310h5588dad_1.tar.bz2 hash: md5: 88111d95b12d83681d0ecdbbc24eee8e sha256: 6b40f145b1fdf6b45016d29f193a8ca72a9359ea44cc19624901248f7a9b5ba7 @@ -1346,7 +1346,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '>=4.6.0' - url: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda hash: md5: 72e42d28960d875c7654614f8b50939a sha256: ce61f4f99401a4bd455b89909153b40b9c823276aefcbb06f2044618696009ca @@ -1359,7 +1359,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '>=4.6.0' - url: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda hash: md5: 72e42d28960d875c7654614f8b50939a sha256: ce61f4f99401a4bd455b89909153b40b9c823276aefcbb06f2044618696009ca @@ -1371,7 +1371,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/executing-2.2.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/executing-2.2.0-pyhd8ed1ab_0.conda hash: md5: 81d30c08f9a3e556e8ca9e124b044d14 sha256: 7510dd93b9848c6257c43fdf9ad22adf62e7aa6da5f12a6a757aed83bcfedf05 @@ -1383,7 +1383,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/executing-2.2.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/executing-2.2.0-pyhd8ed1ab_0.conda hash: md5: 81d30c08f9a3e556e8ca9e124b044d14 sha256: 7510dd93b9848c6257c43fdf9ad22adf62e7aa6da5f12a6a757aed83bcfedf05 @@ -1395,7 +1395,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/fasteners-0.19-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/fasteners-0.19-pyhd8ed1ab_1.conda hash: md5: dbe9d42e94b5ff7af7b7893f4ce052e7 sha256: 42fb170778b47303e82eddfea9a6d1e1b8af00c927cd5a34595eaa882b903a16 @@ -1407,14 +1407,14 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/fasteners-0.19-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/fasteners-0.19-pyhd8ed1ab_1.conda hash: md5: dbe9d42e94b5ff7af7b7893f4ce052e7 sha256: 42fb170778b47303e82eddfea9a6d1e1b8af00c927cd5a34595eaa882b903a16 category: main optional: false - name: fonttools - version: 4.58.2 + version: 4.58.4 manager: conda platform: linux-64 dependencies: @@ -1425,14 +1425,14 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* unicodedata2: '>=15.1.0' - url: https://repo.prefix.dev/conda-forge/linux-64/fonttools-4.58.2-py310h89163eb_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/fonttools-4.58.4-py310h89163eb_0.conda hash: - md5: 3af603de53814258a536b268ad2ae5ff - sha256: e01ccdcfcb6c6aa57fadee4475bbbf9a66fa942abc46a677a27926df851f1679 + md5: 723a77ff55b436601008d28acc982547 + sha256: 7e44c7c215fb14c6ab5f8a018fdaa1ce39d45c85c7e837e42d1adec6ce3708b0 category: main optional: false - name: fonttools - version: 4.58.2 + version: 4.58.4 manager: conda platform: win-64 dependencies: @@ -1444,10 +1444,10 @@ package: unicodedata2: '>=15.1.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/fonttools-4.58.2-py310h38315fa_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/fonttools-4.58.4-py310h38315fa_0.conda hash: - md5: b8f853b33c315e7cab172ab4303ecf06 - sha256: 85cf312fd1ebe07bae419b3b5a84fba72da077587d270046a1595ef8698177ee + md5: f7a8769f5923bebdc10acbbb41d28628 + sha256: 73c733190be8d59c7dd11c7bf1040e9585894ae7693d509f10f234675fd19ad5 category: main optional: false - name: fqdn @@ -1457,7 +1457,7 @@ package: dependencies: cached-property: '>=1.3.0' python: '>=3.9,<4' - url: https://repo.prefix.dev/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_1.conda hash: md5: d3549fd50d450b6d9e7dddff25dd2110 sha256: 2509992ec2fd38ab27c7cdb42cf6cadc566a1cc0d1021a2673475d9fa87c6276 @@ -1470,7 +1470,7 @@ package: dependencies: cached-property: '>=1.3.0' python: '>=3.9,<4' - url: https://repo.prefix.dev/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_1.conda hash: md5: d3549fd50d450b6d9e7dddff25dd2110 sha256: 2509992ec2fd38ab27c7cdb42cf6cadc566a1cc0d1021a2673475d9fa87c6276 @@ -1483,7 +1483,7 @@ package: dependencies: libfreetype: 2.13.3 libfreetype6: 2.13.3 - url: https://repo.prefix.dev/conda-forge/linux-64/freetype-2.13.3-ha770c72_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/freetype-2.13.3-ha770c72_1.conda hash: md5: 9ccd736d31e0c6e41f54e704e5312811 sha256: 7ef7d477c43c12a5b4cddcf048a83277414512d1116aba62ebadfa7056a7d84f @@ -1496,7 +1496,7 @@ package: dependencies: libfreetype: 2.13.3 libfreetype6: 2.13.3 - url: https://repo.prefix.dev/conda-forge/win-64/freetype-2.13.3-h57928b3_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/freetype-2.13.3-h57928b3_1.conda hash: md5: 633504fe3f96031192e40e3e6c18ef06 sha256: 0bcc9c868d769247c12324f957c97c4dbee7e4095485db90d9c295bcb3b1bb43 @@ -1508,7 +1508,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2025.5.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/fsspec-2025.5.1-pyhd8ed1ab_0.conda hash: md5: 2d2c9ef879a7e64e2dc657b09272c2b6 sha256: cd6ae92ae5aa91a7e58cf39f1442d4821279f43f1c9499d15f45558d4793d1e0 @@ -1520,7 +1520,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2025.5.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/fsspec-2025.5.1-pyhd8ed1ab_0.conda hash: md5: 2d2c9ef879a7e64e2dc657b09272c2b6 sha256: cd6ae92ae5aa91a7e58cf39f1442d4821279f43f1c9499d15f45558d4793d1e0 @@ -1539,7 +1539,7 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* scipy: '>=1.8' - url: https://repo.prefix.dev/conda-forge/linux-64/geoana-0.7.2-py310ha2bacc8_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/geoana-0.7.2-py310ha2bacc8_0.conda hash: md5: c49d268934279b306219be6320b1b290 sha256: fdbb0e98fd00195b2d6b5d3e0d0ee08397f722e1b3da262a65f32da6fc54ef5e @@ -1558,7 +1558,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/geoana-0.7.2-py310h3e8ed56_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/geoana-0.7.2-py310h3e8ed56_0.conda hash: md5: 3105f90b59411ab6b71bc3c8b71d8b36 sha256: 4d8b287ad229c1dd59b6c76dfdc1a968af2e5229e1cbd146827fedaf419649d7 @@ -1574,7 +1574,7 @@ package: libstdcxx: '>=13' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://repo.prefix.dev/conda-forge/linux-64/greenlet-3.2.3-py310hf71b8c6_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/greenlet-3.2.3-py310hf71b8c6_0.conda hash: md5: 8455091aed2d84aa239354f67cbdfe74 sha256: 9d02287ff70b5734ee7a23acde4012df62f851e787aad4219d4259b591aeb054 @@ -1590,7 +1590,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/greenlet-3.2.3-py310h9e98ed7_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/greenlet-3.2.3-py310h9e98ed7_0.conda hash: md5: 91c8d80e04ca8d01f79a1143f6b80392 sha256: d5f4d8a0fc7d83baaf957966cc2e17cca82e2950d45c91bd759c09e010038bde @@ -1603,7 +1603,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/h11-0.16.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/h11-0.16.0-pyhd8ed1ab_0.conda hash: md5: 4b69232755285701bc86a5afe4d9933a sha256: f64b68148c478c3bfc8f8d519541de7d2616bf59d44485a5271041d40c061887 @@ -1616,7 +1616,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/h11-0.16.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/h11-0.16.0-pyhd8ed1ab_0.conda hash: md5: 4b69232755285701bc86a5afe4d9933a sha256: f64b68148c478c3bfc8f8d519541de7d2616bf59d44485a5271041d40c061887 @@ -1630,7 +1630,7 @@ package: hpack: '>=4.1,<5' hyperframe: '>=6.1,<7' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda hash: md5: b4754fb1bdcb70c8fd54f918301582c6 sha256: 0aa1cdc67a9fe75ea95b5644b734a756200d6ec9d0dff66530aec3d1c1e9df75 @@ -1644,7 +1644,7 @@ package: hpack: '>=4.1,<5' hyperframe: '>=6.1,<7' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda hash: md5: b4754fb1bdcb70c8fd54f918301582c6 sha256: 0aa1cdc67a9fe75ea95b5644b734a756200d6ec9d0dff66530aec3d1c1e9df75 @@ -1662,7 +1662,7 @@ package: 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.14.0-nompi_py310hea1e86d_100.conda + url: https://conda.anaconda.org/conda-forge/linux-64/h5py-3.14.0-nompi_py310hea1e86d_100.conda hash: md5: f6879e3fc12006cffde701eb08ce1f09 sha256: 8c7d6fea5345596f1fbef21b99fbc04cef6e7cfa5023619232da52fab80b554f @@ -1681,7 +1681,7 @@ package: 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.14.0-nompi_py310h877c39c_100.conda + url: https://conda.anaconda.org/conda-forge/win-64/h5py-3.14.0-nompi_py310h877c39c_100.conda hash: md5: 5b861086c5a7689a6d95c4df10d211e4 sha256: 754155af401cb3577c3e76ed7a4427ad9928c210d32b8571f84492c54b67f5a4 @@ -1701,7 +1701,7 @@ package: libstdcxx: '>=13' libzlib: '>=1.3.1,<2.0a0' openssl: '>=3.5.0,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/hdf5-1.14.6-nompi_h2d575fe_101.conda + url: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.6-nompi_h2d575fe_101.conda hash: md5: d1f61f912e1968a8ac9834b62fde008d sha256: b685b9d68e927f446bead1458c0fbf5ac02e6a471ed7606de427605ac647e8d3 @@ -1719,7 +1719,7 @@ package: 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.6-nompi_hd5d9e70_101.conda + url: https://conda.anaconda.org/conda-forge/win-64/hdf5-1.14.6-nompi_hd5d9e70_101.conda hash: md5: ea68eb3a15c51875468475c2647a2d23 sha256: 64d0ed35edefab9a912084f2806b9c4c4ffe2adcf5225a583088abbaafe5dbae @@ -1731,7 +1731,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda hash: md5: 0a802cb9888dd14eeefc611f05c40b6e sha256: 6ad78a180576c706aabeb5b4c8ceb97c0cb25f1e112d76495bff23e3779948ba @@ -1743,7 +1743,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda hash: md5: 0a802cb9888dd14eeefc611f05c40b6e sha256: 6ad78a180576c706aabeb5b4c8ceb97c0cb25f1e112d76495bff23e3779948ba @@ -1760,7 +1760,7 @@ package: h2: '>=3,<5' python: '' sniffio: 1.* - url: https://repo.prefix.dev/conda-forge/noarch/httpcore-1.0.9-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.9-pyh29332c3_0.conda hash: md5: 4f14640d58e2cc0aa0819d9d8ba125bb sha256: 04d49cb3c42714ce533a8553986e1642d0549a05dc5cc48e0d43ff5be6679a5b @@ -1777,7 +1777,7 @@ package: h2: '>=3,<5' python: '>=3.9' sniffio: 1.* - url: https://repo.prefix.dev/conda-forge/noarch/httpcore-1.0.9-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.9-pyh29332c3_0.conda hash: md5: 4f14640d58e2cc0aa0819d9d8ba125bb sha256: 04d49cb3c42714ce533a8553986e1642d0549a05dc5cc48e0d43ff5be6679a5b @@ -1793,7 +1793,7 @@ package: httpcore: 1.* idna: '' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/httpx-0.28.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/httpx-0.28.1-pyhd8ed1ab_0.conda hash: md5: d6989ead454181f4f9bc987d3dc4e285 sha256: cd0f1de3697b252df95f98383e9edb1d00386bfdd03fdf607fa42fe5fcb09950 @@ -1809,7 +1809,7 @@ package: httpcore: 1.* idna: '' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/httpx-0.28.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/httpx-0.28.1-pyhd8ed1ab_0.conda hash: md5: d6989ead454181f4f9bc987d3dc4e285 sha256: cd0f1de3697b252df95f98383e9edb1d00386bfdd03fdf607fa42fe5fcb09950 @@ -1821,7 +1821,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda hash: md5: 8e6923fc12f1fe8f8c4e5c9f343256ac sha256: 77af6f5fe8b62ca07d09ac60127a30d9069fdc3c68d6b256754d0ffb1f7779f8 @@ -1833,7 +1833,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda hash: md5: 8e6923fc12f1fe8f8c4e5c9f343256ac sha256: 77af6f5fe8b62ca07d09ac60127a30d9069fdc3c68d6b256754d0ffb1f7779f8 @@ -1847,7 +1847,7 @@ package: __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 + url: https://conda.anaconda.org/conda-forge/linux-64/icu-75.1-he02047a_0.conda hash: md5: 8b189310083baabfb622af68fd9d3ae3 sha256: 71e750d509f5fa3421087ba88ef9a7b9be11c53174af3aa4d06aff4c18b38e8e @@ -1859,7 +1859,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda hash: md5: 39a4f67be3286c86d696df570b1201b7 sha256: d7a472c9fd479e2e8dcb83fb8d433fce971ea369d704ece380e876f9c3494e87 @@ -1871,7 +1871,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda hash: md5: 39a4f67be3286c86d696df570b1201b7 sha256: d7a472c9fd479e2e8dcb83fb8d433fce971ea369d704ece380e876f9c3494e87 @@ -1883,7 +1883,7 @@ package: platform: linux-64 dependencies: python: '>=3.4' - url: https://repo.prefix.dev/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2 hash: md5: 7de5386c8fea29e76b303f37dde4c352 sha256: c2bfd7043e0c4c12d8b5593de666c1e81d67b83c474a0a79282cc5c4ef845460 @@ -1895,7 +1895,7 @@ package: platform: win-64 dependencies: python: '>=3.4' - url: https://repo.prefix.dev/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2 hash: md5: 7de5386c8fea29e76b303f37dde4c352 sha256: c2bfd7043e0c4c12d8b5593de666c1e81d67b83c474a0a79282cc5c4ef845460 @@ -1908,7 +1908,7 @@ package: dependencies: python: '' zipp: '>=3.20' - url: https://repo.prefix.dev/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda hash: md5: 63ccfdc3a3ce25b027b8767eb722fca8 sha256: c18ab120a0613ada4391b15981d86ff777b5690ca461ea7e9e49531e8f374745 @@ -1921,7 +1921,7 @@ package: dependencies: python: '>=3.9' zipp: '>=3.20' - url: https://repo.prefix.dev/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda hash: md5: 63ccfdc3a3ce25b027b8767eb722fca8 sha256: c18ab120a0613ada4391b15981d86ff777b5690ca461ea7e9e49531e8f374745 @@ -1933,7 +1933,7 @@ package: platform: linux-64 dependencies: importlib-metadata: ==8.7.0 - url: https://repo.prefix.dev/conda-forge/noarch/importlib_metadata-8.7.0-h40b2b14_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-8.7.0-h40b2b14_1.conda hash: md5: 8a77895fb29728b736a1a6c75906ea1a sha256: 46b11943767eece9df0dc9fba787996e4f22cc4c067f5e264969cfdfcb982c39 @@ -1945,7 +1945,7 @@ package: platform: win-64 dependencies: importlib-metadata: ==8.7.0 - url: https://repo.prefix.dev/conda-forge/noarch/importlib_metadata-8.7.0-h40b2b14_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-8.7.0-h40b2b14_1.conda hash: md5: 8a77895fb29728b736a1a6c75906ea1a sha256: 46b11943767eece9df0dc9fba787996e4f22cc4c067f5e264969cfdfcb982c39 @@ -1958,7 +1958,7 @@ package: dependencies: python: '>=3.9' zipp: '>=3.1.0' - url: https://repo.prefix.dev/conda-forge/noarch/importlib_resources-6.5.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.5.2-pyhd8ed1ab_0.conda hash: md5: c85c76dc67d75619a92f51dfbce06992 sha256: acc1d991837c0afb67c75b77fdc72b4bf022aac71fedd8b9ea45918ac9b08a80 @@ -1971,7 +1971,7 @@ package: dependencies: python: '>=3.9' zipp: '>=3.1.0' - url: https://repo.prefix.dev/conda-forge/noarch/importlib_resources-6.5.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.5.2-pyhd8ed1ab_0.conda hash: md5: c85c76dc67d75619a92f51dfbce06992 sha256: acc1d991837c0afb67c75b77fdc72b4bf022aac71fedd8b9ea45918ac9b08a80 @@ -1983,7 +1983,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda hash: md5: 6837f3eff7dcea42ecd714ce1ac2b108 sha256: 0ec8f4d02053cd03b0f3e63168316530949484f80e16f5e2fb199a1d117a89ca @@ -1995,7 +1995,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda hash: md5: 6837f3eff7dcea42ecd714ce1ac2b108 sha256: 0ec8f4d02053cd03b0f3e63168316530949484f80e16f5e2fb199a1d117a89ca @@ -2006,7 +2006,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/win-64/intel-openmp-2024.2.1-h57928b3_1083.conda + url: https://conda.anaconda.org/conda-forge/win-64/intel-openmp-2024.2.1-h57928b3_1083.conda hash: md5: 2d89243bfb53652c182a7c73182cce4f sha256: 0fd2b0b84c854029041b0ede8f4c2369242ee92acc0092f8407b1fe9238a8209 @@ -2031,7 +2031,7 @@ package: pyzmq: '>=24' tornado: '>=6.1' traitlets: '>=5.4.0' - url: https://repo.prefix.dev/conda-forge/noarch/ipykernel-6.29.5-pyh3099207_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.29.5-pyh3099207_0.conda hash: md5: b40131ab6a36ac2c09b7c57d4d3fbf99 sha256: 33cfd339bb4efac56edf93474b37ddc049e08b1b4930cf036c893cc1f5a1f32a @@ -2056,7 +2056,7 @@ package: pyzmq: '>=24' tornado: '>=6.1' traitlets: '>=5.4.0' - url: https://repo.prefix.dev/conda-forge/noarch/ipykernel-6.29.5-pyh4bbf305_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.29.5-pyh4bbf305_0.conda hash: md5: 18df5fc4944a679e085e0e8f31775fc8 sha256: dc569094125127c0078aa536f78733f383dd7e09507277ef8bcd1789786e7086 @@ -2080,7 +2080,7 @@ package: stack_data: '' traitlets: '>=5.13.0' typing_extensions: '>=4.6' - url: https://repo.prefix.dev/conda-forge/noarch/ipython-8.37.0-pyh8f84b5b_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/ipython-8.37.0-pyh8f84b5b_0.conda hash: md5: 177cfa19fe3d74c87a8889286dc64090 sha256: e43fa762183b49c3c3b811d41259e94bb14b7bff4a239b747ef4e1c6bbe2702d @@ -2104,7 +2104,7 @@ package: stack_data: '' traitlets: '>=5.13.0' typing_extensions: '>=4.6' - url: https://repo.prefix.dev/conda-forge/noarch/ipython-8.37.0-pyha7b4d00_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/ipython-8.37.0-pyha7b4d00_0.conda hash: md5: 2ffea44095ca39b38b67599e8091bca3 sha256: 4812e69a1c9d6d43746fa7e8efaf9127d257508249e7192e68cd163511a751ee @@ -2116,7 +2116,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/ipython_genutils-0.2.0-pyhd8ed1ab_2.conda + url: https://conda.anaconda.org/conda-forge/noarch/ipython_genutils-0.2.0-pyhd8ed1ab_2.conda hash: md5: 2f0ba4bc12af346bc6c99bdc377e8944 sha256: 45821a8986b4cb2421f766b240dbe6998a3c3123f012dd566720c1322e9b6e18 @@ -2128,7 +2128,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/ipython_genutils-0.2.0-pyhd8ed1ab_2.conda + url: https://conda.anaconda.org/conda-forge/noarch/ipython_genutils-0.2.0-pyhd8ed1ab_2.conda hash: md5: 2f0ba4bc12af346bc6c99bdc377e8944 sha256: 45821a8986b4cb2421f766b240dbe6998a3c3123f012dd566720c1322e9b6e18 @@ -2146,7 +2146,7 @@ package: python: '>=3.3' traitlets: '>=4.3.1' widgetsnbextension: '>=3.6.10,<3.7.0' - url: https://repo.prefix.dev/conda-forge/noarch/ipywidgets-7.8.5-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/ipywidgets-7.8.5-pyhd8ed1ab_0.conda hash: md5: 47672c493015ab57d5fcde9531ab18ef sha256: 8cc67e44137bb779c76d92952fdc4d8cd475605f4f0d13e8d0f04f25c056939b @@ -2164,7 +2164,7 @@ package: python: '>=3.3' traitlets: '>=4.3.1' widgetsnbextension: '>=3.6.10,<3.7.0' - url: https://repo.prefix.dev/conda-forge/noarch/ipywidgets-7.8.5-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/ipywidgets-7.8.5-pyhd8ed1ab_0.conda hash: md5: 47672c493015ab57d5fcde9531ab18ef sha256: 8cc67e44137bb779c76d92952fdc4d8cd475605f4f0d13e8d0f04f25c056939b @@ -2177,7 +2177,7 @@ package: dependencies: arrow: '>=0.15.0' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/isoduration-20.11.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/isoduration-20.11.0-pyhd8ed1ab_1.conda hash: md5: 0b0154421989637d424ccf0f104be51a sha256: 08e838d29c134a7684bca0468401d26840f41c92267c4126d7b43a6b533b0aed @@ -2190,7 +2190,7 @@ package: dependencies: arrow: '>=0.15.0' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/isoduration-20.11.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/isoduration-20.11.0-pyhd8ed1ab_1.conda hash: md5: 0b0154421989637d424ccf0f104be51a sha256: 08e838d29c134a7684bca0468401d26840f41c92267c4126d7b43a6b533b0aed @@ -2202,7 +2202,7 @@ package: platform: linux-64 dependencies: python: '>=3.9,<4.0' - url: https://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_1.conda hash: md5: c25d1a27b791dab1797832aafd6a3e9a sha256: e1d0e81e3c3da5d7854f9f57ffb89d8f4505bb64a2f05bb01d78eff24344a105 @@ -2214,7 +2214,7 @@ package: platform: win-64 dependencies: python: '>=3.9,<4.0' - url: https://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_1.conda hash: md5: c25d1a27b791dab1797832aafd6a3e9a sha256: e1d0e81e3c3da5d7854f9f57ffb89d8f4505bb64a2f05bb01d78eff24344a105 @@ -2227,7 +2227,7 @@ package: dependencies: parso: '>=0.8.3,<0.9.0' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda hash: md5: a4f4c5dc9b80bc50e0d3dc4e6e8f1bd9 sha256: 92c4d217e2dc68983f724aa983cca5464dcb929c566627b26a2511159667dba8 @@ -2240,7 +2240,7 @@ package: dependencies: parso: '>=0.8.3,<0.9.0' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda hash: md5: a4f4c5dc9b80bc50e0d3dc4e6e8f1bd9 sha256: 92c4d217e2dc68983f724aa983cca5464dcb929c566627b26a2511159667dba8 @@ -2253,7 +2253,7 @@ package: dependencies: markupsafe: '>=2.0' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda hash: md5: 446bd6c8cb26050d528881df495ce646 sha256: f1ac18b11637ddadc05642e8185a851c7fab5998c6f5470d716812fae943b2af @@ -2266,7 +2266,7 @@ package: dependencies: markupsafe: '>=2.0' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda hash: md5: 446bd6c8cb26050d528881df495ce646 sha256: f1ac18b11637ddadc05642e8185a851c7fab5998c6f5470d716812fae943b2af @@ -2279,7 +2279,7 @@ package: dependencies: python: '>=3.9' setuptools: '' - url: https://repo.prefix.dev/conda-forge/noarch/joblib-1.5.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/joblib-1.5.1-pyhd8ed1ab_0.conda hash: md5: fb1c14694de51a476ce8636d92b6f42c sha256: e5a4eca9a5d8adfaa3d51e24eefd1a6d560cb3b33a7e1eee13e410bec457b7ed @@ -2292,7 +2292,7 @@ package: dependencies: python: '>=3.9' setuptools: '' - url: https://repo.prefix.dev/conda-forge/noarch/joblib-1.5.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/joblib-1.5.1-pyhd8ed1ab_0.conda hash: md5: fb1c14694de51a476ce8636d92b6f42c sha256: e5a4eca9a5d8adfaa3d51e24eefd1a6d560cb3b33a7e1eee13e410bec457b7ed @@ -2304,7 +2304,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/json5-0.12.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/json5-0.12.0-pyhd8ed1ab_0.conda hash: md5: 56275442557b3b45752c10980abfe2db sha256: 889e2a49de796475b5a4bc57d0ba7f4606b368ee2098e353a6d9a14b0e2c6393 @@ -2316,7 +2316,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/json5-0.12.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/json5-0.12.0-pyhd8ed1ab_0.conda hash: md5: 56275442557b3b45752c10980abfe2db sha256: 889e2a49de796475b5a4bc57d0ba7f4606b368ee2098e353a6d9a14b0e2c6393 @@ -2329,7 +2329,7 @@ package: dependencies: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://repo.prefix.dev/conda-forge/linux-64/jsonpointer-3.0.0-py310hff52083_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/jsonpointer-3.0.0-py310hff52083_1.conda hash: md5: ce614a01b0aee1b29cee13d606bcb5d5 sha256: ac8e92806a5017740b9a1113f0cab8559cd33884867ec7e99b556eb2fa847690 @@ -2342,7 +2342,7 @@ package: dependencies: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://repo.prefix.dev/conda-forge/win-64/jsonpointer-3.0.0-py310h5588dad_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/jsonpointer-3.0.0-py310h5588dad_1.conda hash: md5: 6810fe21e6fa93f073584994ea178a12 sha256: 8fa0874cd000f5592719f084abdeeffdb9cf096cc1ba09d45c265bb149a2ad63 @@ -2360,7 +2360,7 @@ package: python: '>=3.9' referencing: '>=0.28.4' rpds-py: '>=0.7.1' - url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-4.24.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.24.0-pyhd8ed1ab_0.conda hash: md5: 59220749abcd119d645e6879983497a1 sha256: 812134fabb49493a50f7f443dc0ffafd0f63766f403a0bd8e71119763e57456a @@ -2378,7 +2378,7 @@ package: python: '>=3.9' referencing: '>=0.28.4' rpds-py: '>=0.7.1' - url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-4.24.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.24.0-pyhd8ed1ab_0.conda hash: md5: 59220749abcd119d645e6879983497a1 sha256: 812134fabb49493a50f7f443dc0ffafd0f63766f403a0bd8e71119763e57456a @@ -2391,7 +2391,7 @@ package: dependencies: python: '' referencing: '>=0.31.0' - url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-specifications-2025.4.1-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2025.4.1-pyh29332c3_0.conda hash: md5: 41ff526b1083fde51fbdc93f29282e0e sha256: 66fbad7480f163509deec8bd028cd3ea68e58022982c838683586829f63f3efa @@ -2404,7 +2404,7 @@ package: dependencies: python: '>=3.9' referencing: '>=0.31.0' - url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-specifications-2025.4.1-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2025.4.1-pyh29332c3_0.conda hash: md5: 41ff526b1083fde51fbdc93f29282e0e sha256: 66fbad7480f163509deec8bd028cd3ea68e58022982c838683586829f63f3efa @@ -2424,7 +2424,7 @@ package: rfc3986-validator: '>0.1.0' uri-template: '' webcolors: '>=24.6.0' - url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-with-format-nongpl-4.24.0-hd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-with-format-nongpl-4.24.0-hd8ed1ab_0.conda hash: md5: b4eaebf6fac318db166238796d2a9702 sha256: 970a1efffe29474d6bb3e4d63bc04105c5611d1c7e2cd7e2d43d1ba468f33c20 @@ -2444,7 +2444,7 @@ package: rfc3986-validator: '>0.1.0' uri-template: '' webcolors: '>=24.6.0' - url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-with-format-nongpl-4.24.0-hd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-with-format-nongpl-4.24.0-hd8ed1ab_0.conda hash: md5: b4eaebf6fac318db166238796d2a9702 sha256: 970a1efffe29474d6bb3e4d63bc04105c5611d1c7e2cd7e2d43d1ba468f33c20 @@ -2475,7 +2475,7 @@ package: sphinx-thebe: '>=0.3.1,<1' sphinx-togglebutton: '' sphinxcontrib-bibtex: '>=2.5.0,<3' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter-book-1.0.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter-book-1.0.3-pyhd8ed1ab_1.conda hash: md5: 739a29ac73026e68405153b50d0c60c2 sha256: f028c32b5d97d24df44b1a41f771a9932e07815c60c02e24acd9bd2eca31097f @@ -2506,7 +2506,7 @@ package: sphinx-thebe: '>=0.3.1,<1' sphinx-togglebutton: '' sphinxcontrib-bibtex: '>=2.5.0,<3' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter-book-1.0.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter-book-1.0.3-pyhd8ed1ab_1.conda hash: md5: 739a29ac73026e68405153b50d0c60c2 sha256: f028c32b5d97d24df44b1a41f771a9932e07815c60c02e24acd9bd2eca31097f @@ -2526,7 +2526,7 @@ package: pyyaml: '' sqlalchemy: '>=1.3.12,<3' tabulate: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter-cache-1.0.1-pyhff2d567_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter-cache-1.0.1-pyhff2d567_0.conda hash: md5: b0ee650829b8974202a7abe7f8b81e5a sha256: 054d397dd45ed08bffb0976702e553dfb0d0b0a477da9cff36e2ea702e928f48 @@ -2546,7 +2546,7 @@ package: pyyaml: '' sqlalchemy: '>=1.3.12,<3' tabulate: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter-cache-1.0.1-pyhff2d567_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter-cache-1.0.1-pyhff2d567_0.conda hash: md5: b0ee650829b8974202a7abe7f8b81e5a sha256: 054d397dd45ed08bffb0976702e553dfb0d0b0a477da9cff36e2ea702e928f48 @@ -2560,7 +2560,7 @@ package: importlib-metadata: '>=4.8.3' jupyter_server: '>=1.1.2' python: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter-lsp-2.2.5-pyhe01879c_2.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter-lsp-2.2.5-pyhe01879c_2.conda hash: md5: 7ed6505c703f3c4e1a58864bf84505e2 sha256: f2ca86b121bcfeaf0241a927824459ba8712e64806b98dd262eb2b1a7c4e82a6 @@ -2574,7 +2574,7 @@ package: importlib-metadata: '>=4.8.3' jupyter_server: '>=1.1.2' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter-lsp-2.2.5-pyhe01879c_2.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter-lsp-2.2.5-pyhe01879c_2.conda hash: md5: 7ed6505c703f3c4e1a58864bf84505e2 sha256: f2ca86b121bcfeaf0241a927824459ba8712e64806b98dd262eb2b1a7c4e82a6 @@ -2592,7 +2592,7 @@ package: pyzmq: '>=23.0' tornado: '>=6.2' traitlets: '>=5.3' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda hash: md5: 4ebae00eae9705b0c3d6d1018a81d047 sha256: 19d8bd5bb2fde910ec59e081eeb59529491995ce0d653a5209366611023a0b3a @@ -2610,7 +2610,7 @@ package: pyzmq: '>=23.0' tornado: '>=6.2' traitlets: '>=5.3' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda hash: md5: 4ebae00eae9705b0c3d6d1018a81d047 sha256: 19d8bd5bb2fde910ec59e081eeb59529491995ce0d653a5209366611023a0b3a @@ -2625,7 +2625,7 @@ package: platformdirs: '>=2.5' python: '>=3.8' traitlets: '>=5.3' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter_core-5.8.1-pyh31011fe_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.8.1-pyh31011fe_0.conda hash: md5: b7d89d860ebcda28a5303526cdee68ab sha256: 56a7a7e907f15cca8c4f9b0c99488276d4cb10821d2d15df9245662184872e81 @@ -2642,7 +2642,7 @@ package: python: '>=3.8' pywin32: '>=300' traitlets: '>=5.3' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter_core-5.8.1-pyh5737063_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.8.1-pyh5737063_0.conda hash: md5: 324e60a0d3f39f268e899709575ea3cd sha256: 928c2514c2974fda78447903217f01ca89a77eefedd46bf6a2fe97072df57e8d @@ -2662,7 +2662,7 @@ package: rfc3339-validator: '' rfc3986-validator: '>=0.1.1' traitlets: '>=5.3' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter_events-0.12.0-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.12.0-pyh29332c3_0.conda hash: md5: f56000b36f09ab7533877e695e4e8cb0 sha256: 37e6ac3ccf7afcc730c3b93cb91a13b9ae827fd306f35dd28f958a74a14878b5 @@ -2682,7 +2682,7 @@ package: rfc3339-validator: '' rfc3986-validator: '>=0.1.1' traitlets: '>=5.3' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter_events-0.12.0-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.12.0-pyh29332c3_0.conda hash: md5: f56000b36f09ab7533877e695e4e8cb0 sha256: 37e6ac3ccf7afcc730c3b93cb91a13b9ae827fd306f35dd28f958a74a14878b5 @@ -2712,7 +2712,7 @@ package: tornado: '>=6.2.0' traitlets: '>=5.6.0' websocket-client: '>=1.7' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter_server-2.16.0-pyhe01879c_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.16.0-pyhe01879c_0.conda hash: md5: f062e04d7cd585c937acbf194dceec36 sha256: 0082fb6f0afaf872affee4cde3b210f7f7497a5fb47f2944ab638fef0f0e2e77 @@ -2742,7 +2742,7 @@ package: tornado: '>=6.2.0' traitlets: '>=5.6.0' websocket-client: '>=1.7' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter_server-2.16.0-pyhe01879c_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.16.0-pyhe01879c_0.conda hash: md5: f062e04d7cd585c937acbf194dceec36 sha256: 0082fb6f0afaf872affee4cde3b210f7f7497a5fb47f2944ab638fef0f0e2e77 @@ -2755,7 +2755,7 @@ package: dependencies: python: '>=3.9' terminado: '>=0.8.3' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter_server_terminals-0.5.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_server_terminals-0.5.3-pyhd8ed1ab_1.conda hash: md5: 2d983ff1b82a1ccb6f2e9d8784bdd6bd sha256: 0890fc79422191bc29edf17d7b42cff44ba254aa225d31eb30819f8772b775b8 @@ -2768,7 +2768,7 @@ package: dependencies: python: '>=3.9' terminado: '>=0.8.3' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter_server_terminals-0.5.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_server_terminals-0.5.3-pyhd8ed1ab_1.conda hash: md5: 2d983ff1b82a1ccb6f2e9d8784bdd6bd sha256: 0890fc79422191bc29edf17d7b42cff44ba254aa225d31eb30819f8772b775b8 @@ -2795,7 +2795,7 @@ package: tomli: '>=1.2.2' tornado: '>=6.2.0' traitlets: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.4.3-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.4.3-pyhd8ed1ab_0.conda hash: md5: 4861a0c2a5a5d0481a450a9dfaf9febe sha256: fc0235a71d852734fe92183a78cb91827367573450eba82465ae522c64230736 @@ -2822,7 +2822,7 @@ package: tomli: '>=1.2.2' tornado: '>=6.2.0' traitlets: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.4.3-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.4.3-pyhd8ed1ab_0.conda hash: md5: 4861a0c2a5a5d0481a450a9dfaf9febe sha256: fc0235a71d852734fe92183a78cb91827367573450eba82465ae522c64230736 @@ -2835,7 +2835,7 @@ package: dependencies: pygments: '>=2.4.1,<3' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab_pygments-0.3.0-pyhd8ed1ab_2.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.3.0-pyhd8ed1ab_2.conda hash: md5: fd312693df06da3578383232528c468d sha256: dc24b900742fdaf1e077d9a3458fd865711de80bca95fe3c6d46610c532c6ef0 @@ -2848,7 +2848,7 @@ package: dependencies: pygments: '>=2.4.1,<3' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab_pygments-0.3.0-pyhd8ed1ab_2.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.3.0-pyhd8ed1ab_2.conda hash: md5: fd312693df06da3578383232528c468d sha256: dc24b900742fdaf1e077d9a3458fd865711de80bca95fe3c6d46610c532c6ef0 @@ -2868,7 +2868,7 @@ package: packaging: '>=21.3' python: '>=3.9' requests: '>=2.31' - url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab_server-2.27.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.27.3-pyhd8ed1ab_1.conda hash: md5: 9dc4b2b0f41f0de41d27f3293e319357 sha256: d03d0b7e23fa56d322993bc9786b3a43b88ccc26e58b77c756619a921ab30e86 @@ -2888,7 +2888,7 @@ package: packaging: '>=21.3' python: '>=3.9' requests: '>=2.31' - url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab_server-2.27.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.27.3-pyhd8ed1ab_1.conda hash: md5: 9dc4b2b0f41f0de41d27f3293e319357 sha256: d03d0b7e23fa56d322993bc9786b3a43b88ccc26e58b77c756619a921ab30e86 @@ -2900,7 +2900,7 @@ package: platform: linux-64 dependencies: python: '>=3.7' - url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab_widgets-1.1.11-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-1.1.11-pyhd8ed1ab_0.conda hash: md5: 05a08b368343304618b6a88425aa851a sha256: 639544e96969c7513b33bf3201a4dc3095625e34cff16c187f5dec9bee2dfb2f @@ -2912,7 +2912,7 @@ package: platform: win-64 dependencies: python: '>=3.7' - url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab_widgets-1.1.11-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-1.1.11-pyhd8ed1ab_0.conda hash: md5: 05a08b368343304618b6a88425aa851a sha256: 639544e96969c7513b33bf3201a4dc3095625e34cff16c187f5dec9bee2dfb2f @@ -2930,7 +2930,7 @@ package: python: '>=3.9' pyyaml: '' tomli: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupytext-1.17.2-pyh80e38bb_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupytext-1.17.2-pyh80e38bb_0.conda hash: md5: 6d0652a97ef103de0c77b9c610d0c20d sha256: 48986a9c01f17d1d5a598af33814a877fd67a6a3287625718d76617a7d17f51d @@ -2948,7 +2948,7 @@ package: python: '>=3.9' pyyaml: '' tomli: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupytext-1.17.2-pyh80e38bb_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupytext-1.17.2-pyh80e38bb_0.conda hash: md5: 6d0652a97ef103de0c77b9c610d0c20d sha256: 48986a9c01f17d1d5a598af33814a877fd67a6a3287625718d76617a7d17f51d @@ -2960,7 +2960,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=10.3.0' - url: https://repo.prefix.dev/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 hash: md5: 30186d27e2c9fa62b45fb1476b7200e3 sha256: 150c05a6e538610ca7c43beb3a40d65c90537497a4f6a5f4d15ec0451b6f5ebb @@ -2976,7 +2976,7 @@ package: libstdcxx: '>=13' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://repo.prefix.dev/conda-forge/linux-64/kiwisolver-1.4.7-py310h3788b33_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/kiwisolver-1.4.7-py310h3788b33_0.conda hash: md5: 4186d9b4d004b0fe0de6aa62496fb48a sha256: d97a9894803674e4f8155a5e98a49337d28bdee77dfd87e1614a824d190cd086 @@ -2992,7 +2992,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/kiwisolver-1.4.7-py310hc19bc0b_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/kiwisolver-1.4.7-py310hc19bc0b_0.conda hash: md5: 50d96539497fc7493cbe469fbb6b8b6e sha256: a87dff54b753a2ee19188ab9491a63d40a08873f17c7797cd5c44467a2ff4f12 @@ -3008,7 +3008,7 @@ package: libgcc-ng: '>=12' libstdcxx-ng: '>=12' openssl: '>=3.3.1,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda hash: md5: 3f43953b7d3fb3aaa1d0d0723d91e368 sha256: 99df692f7a8a5c27cd14b5fb1374ee55e756631b9c3d659ed3ee60830249b238 @@ -3023,7 +3023,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/krb5-1.21.3-hdf4eb48_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/krb5-1.21.3-hdf4eb48_0.conda hash: md5: 31aec030344e962fbd7dbbbbd68e60a9 sha256: 18e8b3430d7d232dad132f574268f56b3eb1a19431d6d5de8c53c29e6c18fa81 @@ -3036,7 +3036,7 @@ package: dependencies: python: '' six: '' - url: https://repo.prefix.dev/conda-forge/noarch/latexcodec-2.0.1-pyh9f0ad1d_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/latexcodec-2.0.1-pyh9f0ad1d_0.tar.bz2 hash: md5: 8d67904973263afd2985ba56aa2d6bb4 sha256: 5210d31c8f2402dd1ad1b3edcf7a53292b9da5de20cd14d9c243dbf9278b1c4f @@ -3049,7 +3049,7 @@ package: dependencies: python: '' six: '' - url: https://repo.prefix.dev/conda-forge/noarch/latexcodec-2.0.1-pyh9f0ad1d_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/latexcodec-2.0.1-pyh9f0ad1d_0.tar.bz2 hash: md5: 8d67904973263afd2985ba56aa2d6bb4 sha256: 5210d31c8f2402dd1ad1b3edcf7a53292b9da5de20cd14d9c243dbf9278b1c4f @@ -3064,7 +3064,7 @@ package: libgcc: '>=13' libjpeg-turbo: '>=3.0.0,<4.0a0' libtiff: '>=4.7.0,<4.8.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/lcms2-2.17-h717163a_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/lcms2-2.17-h717163a_0.conda hash: md5: 000e85703f0fd9594c81710dd5066471 sha256: d6a61830a354da022eae93fa896d0991385a875c6bba53c82263a289deda9db8 @@ -3080,7 +3080,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/lcms2-2.17-hbcf6048_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/lcms2-2.17-hbcf6048_0.conda hash: md5: 3538827f77b82a837fa681a4579e37a1 sha256: 7712eab5f1a35ca3ea6db48ead49e0d6ac7f96f8560da8023e61b3dbe4f3b25d @@ -3092,10 +3092,10 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_4.conda + url: https://conda.anaconda.org/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 @@ -3106,7 +3106,7 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' libstdcxx: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/lerc-4.0.0-h0aef613_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h0aef613_1.conda hash: md5: 9344155d33912347b37f0ae6c410a835 sha256: 412381a43d5ff9bbed82cd52a0bbca5b90623f62e41007c9c42d3870c60945ff @@ -3120,37 +3120,38 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/lerc-4.0.0-h6470a55_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/lerc-4.0.0-h6470a55_1.conda hash: md5: c1b81da6d29a14b542da14a36c9fbf3f sha256: 868a3dff758cc676fa1286d3f36c3e0101cca56730f7be531ab84dc91ec58e9d 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://conda.anaconda.org/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://conda.anaconda.org/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 @@ -3159,7 +3160,7 @@ package: platform: linux-64 dependencies: mkl: '>=2024.2.2,<2025.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libblas-3.9.0-31_hfdb39a5_mkl.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-31_hfdb39a5_mkl.conda hash: md5: bdf4a57254e8248222cb631db4393ff1 sha256: 862289f2cfb84bb6001d0e3569e908b8c42d66b881bd5b03f730a3924628b978 @@ -3171,7 +3172,7 @@ package: platform: win-64 dependencies: mkl: 2024.2.2 - url: https://repo.prefix.dev/conda-forge/win-64/libblas-3.9.0-31_h641d27c_mkl.conda + url: https://conda.anaconda.org/conda-forge/win-64/libblas-3.9.0-31_h641d27c_mkl.conda hash: md5: d05563c577fe2f37693a554b3f271e8f sha256: 7bb4d5b591e98fe607279520ee78e3571a297b5720aa789a2536041ad5540de8 @@ -3184,7 +3185,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlicommon-1.1.0-hb9d3cd8_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.1.0-hb9d3cd8_3.conda hash: md5: cb98af5db26e3f482bebb80ce9d947d3 sha256: 462a8ed6a7bb9c5af829ec4b90aab322f8bcd9d8987f793e6986ea873bbd05cf @@ -3198,7 +3199,7 @@ 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_3.conda + url: https://conda.anaconda.org/conda-forge/win-64/libbrotlicommon-1.1.0-h2466b09_3.conda hash: md5: cf20c8b8b48ab5252ec64b9c66bfe0a4 sha256: e70ea4b773fadddda697306a80a29d9cbd36b7001547cd54cbfe9a97a518993f @@ -3212,7 +3213,7 @@ 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_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.1.0-hb9d3cd8_3.conda hash: md5: 1c6eecffad553bde44c5238770cfb7da sha256: 3eb27c1a589cbfd83731be7c3f19d6d679c7a444c3ba19db6ad8bf49172f3d83 @@ -3227,7 +3228,7 @@ 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_3.conda + url: https://conda.anaconda.org/conda-forge/win-64/libbrotlidec-1.1.0-h2466b09_3.conda hash: md5: a342933dbc6d814541234c7c81cb5205 sha256: a35a0db7e3257e011b10ffb371735b2b24074412d0b27c3dab7ca9f2c549cfcf @@ -3241,7 +3242,7 @@ 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_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlienc-1.1.0-hb9d3cd8_3.conda hash: md5: 3facafe58f3858eb95527c7d3a3fc578 sha256: 76e8492b0b0a0d222bfd6081cae30612aa9915e4309396fdca936528ccf314b7 @@ -3256,7 +3257,7 @@ 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_3.conda + url: https://conda.anaconda.org/conda-forge/win-64/libbrotlienc-1.1.0-h2466b09_3.conda hash: md5: 7ef0af55d70cbd9de324bb88b7f9d81e sha256: 9d0703c5a01c10d346587ff0535a0eb81042364333caa4a24a0e4a0c08fd490b @@ -3268,7 +3269,7 @@ package: platform: linux-64 dependencies: libblas: 3.9.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libcblas-3.9.0-31_h372d94f_mkl.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-31_h372d94f_mkl.conda hash: md5: 2a06a6c16b45bd3d10002927ca204b67 sha256: 2ee3ab2b6eeb59f2d3c6f933fa0db28f1b56f0bc543ed2c0f6ec04060e4b6ec0 @@ -3280,7 +3281,7 @@ package: platform: win-64 dependencies: libblas: 3.9.0 - url: https://repo.prefix.dev/conda-forge/win-64/libcblas-3.9.0-31_h5e41251_mkl.conda + url: https://conda.anaconda.org/conda-forge/win-64/libcblas-3.9.0-31_h5e41251_mkl.conda hash: md5: 43c100b94ad2607382b0cf0f3a6b0bf3 sha256: 609f455b099919bd4d15d4a733f493dc789e02da73fe4474f1cca73afafb95b8 @@ -3299,7 +3300,7 @@ package: libzlib: '>=1.3.1,<2.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.14.1-h332b0f4_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.14.1-h332b0f4_0.conda hash: md5: 45f6713cb00f124af300342512219182 sha256: b6c5cf340a4f80d70d64b3a29a7d9885a5918d16a5cb952022820e6d3e79dc8b @@ -3316,7 +3317,7 @@ 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.14.1-h88aaa65_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/libcurl-8.14.1-h88aaa65_0.conda hash: md5: 836b9c08f34d2017dbcaec907c6a1138 sha256: b2cface2cf35d8522289df7fffc14370596db6f6dc481cc1b6ca313faeac19d8 @@ -3329,7 +3330,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libdeflate-1.24-h86f0d12_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.24-h86f0d12_0.conda hash: md5: 64f0c503da58ec25ebd359e4d990afa8 sha256: 8420748ea1cc5f18ecc5068b4f24c7a023cc9b20971c99c824ba10641fb95ddf @@ -3343,7 +3344,7 @@ package: 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.24-h76ddb4d_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/libdeflate-1.24-h76ddb4d_0.conda hash: md5: 08d988e266c6ae77e03d164b83786dc4 sha256: 65347475c0009078887ede77efe60db679ea06f2b56f7853b9310787fe5ad035 @@ -3356,7 +3357,7 @@ package: dependencies: numpy: '' python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/libdlf-0.3.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/libdlf-0.3.0-pyhd8ed1ab_1.conda hash: md5: 2e9654bb2bcf5986c2def3ba35413326 sha256: 367c575a6388380d9a0da6ff06571d903ae89366c42d9f16e32de5d359b6971a @@ -3369,7 +3370,7 @@ package: dependencies: numpy: '' python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/libdlf-0.3.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/libdlf-0.3.0-pyhd8ed1ab_1.conda hash: md5: 2e9654bb2bcf5986c2def3ba35413326 sha256: 367c575a6388380d9a0da6ff06571d903ae89366c42d9f16e32de5d359b6971a @@ -3383,7 +3384,7 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' ncurses: '>=6.5,<7.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.conda hash: md5: c277e0a4d549b03ac1e9d6cbbe3d017b sha256: d789471216e7aba3c184cd054ed61ce3f6dac6f87a50ec69291b9297f8c18724 @@ -3395,7 +3396,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://repo.prefix.dev/conda-forge/linux-64/libev-4.33-hd590300_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda hash: md5: 172bf1cd1ff8629f2b1179945ed45055 sha256: 1cd6048169fa0395af74ed5d8f1716e22c19a81a8a36f934c110ca3ad4dd27b4 @@ -3408,7 +3409,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libexpat-2.7.0-h5888daf_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.7.0-h5888daf_0.conda hash: md5: db0bfbe7dd197b68ad5f30333bae6ce0 sha256: 33ab03438aee65d6aa667cf7d90c91e5e7d734c19a67aa4c7040742c0a13d505 @@ -3422,7 +3423,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libexpat-2.7.0-he0c23c2_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/libexpat-2.7.0-he0c23c2_0.conda hash: md5: b6f5352fdb525662f4169a0431d2dd7a sha256: 1a227c094a4e06bd54e8c2f3ec40c17ff99dcf3037d812294f842210aa66dbeb @@ -3435,7 +3436,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libffi-3.4.6-h2dba641_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.6-h2dba641_1.conda hash: md5: ede4673863426c0883c0063d853bbd85 sha256: 764432d32db45466e87f10621db5b74363a9f847d2b8b1f9743746cd160f06ab @@ -3449,7 +3450,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libffi-3.4.6-h537db12_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.6-h537db12_1.conda hash: md5: 85d8fa5e55ed8f93f874b3b23ed54ec6 sha256: d3b0b8812eab553d3464bbd68204f007f1ebadf96ce30eb0cbc5159f72e353f5 @@ -3461,7 +3462,7 @@ package: platform: linux-64 dependencies: libfreetype6: '>=2.13.3' - url: https://repo.prefix.dev/conda-forge/linux-64/libfreetype-2.13.3-ha770c72_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libfreetype-2.13.3-ha770c72_1.conda hash: md5: 51f5be229d83ecd401fb369ab96ae669 sha256: 7be9b3dac469fe3c6146ff24398b685804dfc7a1de37607b84abd076f57cc115 @@ -3473,7 +3474,7 @@ package: platform: win-64 dependencies: libfreetype6: '>=2.13.3' - url: https://repo.prefix.dev/conda-forge/win-64/libfreetype-2.13.3-h57928b3_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/libfreetype-2.13.3-h57928b3_1.conda hash: md5: 410ba2c8e7bdb278dfbb5d40220e39d2 sha256: e5bc7d0a8d11b7b234da4fcd9d78f297f7dec3fec8bd06108fd3ac7b2722e32e @@ -3488,7 +3489,7 @@ package: libgcc: '>=13' libpng: '>=1.6.47,<1.7.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libfreetype6-2.13.3-h48d6fc4_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libfreetype6-2.13.3-h48d6fc4_1.conda hash: md5: 3c255be50a506c50765a93a6644f32fe sha256: 7759bd5c31efe5fbc36a7a1f8ca5244c2eabdbeb8fc1bee4b99cf989f35c7d81 @@ -3504,7 +3505,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libfreetype6-2.13.3-h0b5ce68_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/libfreetype6-2.13.3-h0b5ce68_1.conda hash: md5: a84b7d1a13060a9372bea961a8131dbc sha256: 61308653e7758ff36f80a60d598054168a1389ddfbac46d7864c415fafe18e69 @@ -3517,7 +3518,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' _openmp_mutex: '>=4.5' - url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-15.1.0-h767d61c_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-15.1.0-h767d61c_2.conda hash: md5: ea8ac52380885ed41c1baa8f1d6d2b93 sha256: 0024f9ab34c09629621aefd8603ef77bf9d708129b0dd79029e502c39ffc2195 @@ -3530,7 +3531,7 @@ package: dependencies: _openmp_mutex: '>=4.5' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' - url: https://repo.prefix.dev/conda-forge/win-64/libgcc-15.1.0-h1383e82_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/libgcc-15.1.0-h1383e82_2.conda hash: md5: 9bedb24480136bfeb81ebc81d4285e70 sha256: c0288596ac58366d96a56c57e4088fe1c6dd4194fdcaeacf5862f47fb1e1e5be @@ -3542,7 +3543,7 @@ package: platform: linux-64 dependencies: libgcc: 15.1.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-ng-15.1.0-h69a702a_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-15.1.0-h69a702a_2.conda hash: md5: ddca86c7040dd0e73b2b69bd7833d225 sha256: 0ab5421a89f090f3aa33841036bb3af4ed85e1f91315b528a9d75fab9aad51ae @@ -3554,7 +3555,7 @@ package: platform: linux-64 dependencies: libgfortran5: 15.1.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran-15.1.0-h69a702a_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-15.1.0-h69a702a_2.conda hash: md5: f92e6e0a3c0c0c85561ef61aa59d555d sha256: 914daa4f632b786827ea71b5e07cd00d25fc6e67789db2f830dc481eec660342 @@ -3567,7 +3568,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=15.1.0' - url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran5-15.1.0-hcea5267_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-15.1.0-hcea5267_2.conda hash: md5: 01de444988ed960031dbe84cf4f9b1fc sha256: be23750f3ca1a5cb3ada858c4f633effe777487d1ea35fddca04c0965c073350 @@ -3579,7 +3580,7 @@ package: platform: win-64 dependencies: libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' - url: https://repo.prefix.dev/conda-forge/win-64/libgomp-15.1.0-h1383e82_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/libgomp-15.1.0-h1383e82_2.conda hash: md5: 5fbacaa9b41e294a6966602205b99747 sha256: 4316316097ce5fde2608b6fccd18709cf647dce52e230f5ac66f5c524dfad791 @@ -3594,7 +3595,7 @@ package: libgcc: '>=13' libstdcxx: '>=13' libxml2: '>=2.13.4,<2.14.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libhwloc-2.11.2-default_h0d58e46_1001.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libhwloc-2.11.2-default_h0d58e46_1001.conda hash: md5: 804ca9e91bcaea0824a341d55b1684f2 sha256: d14c016482e1409ae1c50109a9ff933460a50940d2682e745ab1c172b5282a69 @@ -3610,7 +3611,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libhwloc-2.11.2-default_ha69328c_1001.conda + url: https://conda.anaconda.org/conda-forge/win-64/libhwloc-2.11.2-default_ha69328c_1001.conda hash: md5: b87a0ac5ab6495d8225db5dc72dd21cd sha256: 850e255997f538d5fb6ed651321141155a33bb781d43d326fc4ff62114dd2842 @@ -3623,7 +3624,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libiconv-1.18-h4ce23a2_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.18-h4ce23a2_1.conda hash: md5: e796ff8ddc598affdf7c173d6145f087 sha256: 18a4afe14f731bfb9cf388659994263904d20111e42f841e9eea1bb6f91f4ab4 @@ -3637,7 +3638,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libiconv-1.18-h135ad9c_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/libiconv-1.18-h135ad9c_1.conda hash: md5: 21fc5dba2cbcd8e5e26ff976a312122c sha256: ea5ed2b362b6dbc4ba7188eb4eaf576146e3dfc6f4395e9f0db76ad77465f786 @@ -3650,7 +3651,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libjpeg-turbo-3.1.0-hb9d3cd8_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libjpeg-turbo-3.1.0-hb9d3cd8_0.conda hash: md5: 9fa334557db9f63da6c9285fd2a48638 sha256: 98b399287e27768bf79d48faba8a99a2289748c65cd342ca21033fab1860d4a4 @@ -3664,7 +3665,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libjpeg-turbo-3.1.0-h2466b09_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/libjpeg-turbo-3.1.0-h2466b09_0.conda hash: md5: 7c51d27540389de84852daa1cdb9c63c sha256: e61b0adef3028b51251124e43eb6edf724c67c0f6736f1628b02511480ac354e @@ -3676,7 +3677,7 @@ package: platform: linux-64 dependencies: libblas: 3.9.0 - url: https://repo.prefix.dev/conda-forge/linux-64/liblapack-3.9.0-31_hc41d3b0_mkl.conda + url: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-31_hc41d3b0_mkl.conda hash: md5: 10d012ddd7cc1c7ff9093d4974a34e53 sha256: a2d20845d916ac8fba09376cd791136a9b4547afb2131bc315178adfc87bb4ca @@ -3688,7 +3689,7 @@ package: platform: win-64 dependencies: libblas: 3.9.0 - url: https://repo.prefix.dev/conda-forge/win-64/liblapack-3.9.0-31_h1aa476e_mkl.conda + url: https://conda.anaconda.org/conda-forge/win-64/liblapack-3.9.0-31_h1aa476e_mkl.conda hash: md5: 40b47ee720a185289760960fc6185750 sha256: 9415e807aa6f8968322bbd756aab8f487379d809c74266d37c697b8d85c534ad @@ -3701,7 +3702,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_2.conda hash: md5: 1a580f7796c7bf6393fddb8bbbde58dc sha256: f2591c0069447bbe28d4d696b7fcb0c5bd0b4ac582769b89addbcf26fb3430d8 @@ -3715,7 +3716,7 @@ 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_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/liblzma-5.8.1-h2466b09_2.conda hash: md5: c15148b2e18da456f5108ccb5e411446 sha256: 55764956eb9179b98de7cc0e55696f2eff8f7b83fc3ebff5e696ca358bca28cc @@ -3733,7 +3734,7 @@ package: libstdcxx: '>=13' libzlib: '>=1.3.1,<2.0a0' openssl: '>=3.3.2,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libnghttp2-1.64.0-h161d5f1_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.64.0-h161d5f1_0.conda hash: md5: 19e57602824042dfd0446292ef90488b sha256: b0f2b3695b13a989f75d8fd7f4778e1c7aabe3b36db83f0fe80b2cd812c0e975 @@ -3745,28 +3746,28 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://repo.prefix.dev/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda hash: md5: 30fd6e37fe21f86f4bd26d6ee73eeec7 sha256: 26d77a3bb4dceeedc2a41bd688564fe71bf2d149fdcf117049970bc02ff1add6 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://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.49-h943b412_0.conda hash: - md5: 55199e2ae2c3651f6f9b2a447b47bdc9 - sha256: 23367d71da58c9a61c8cbd963fcffb92768d4ae5ffbef9a47cdf1f54f98c5c36 + md5: 37511c874cf3b8d0034c8d24e73c0884 + sha256: c8f5dc929ba5fcee525a66777498e03bbcbfefc05a0773e5163bb08ac5122f1a category: main optional: false - name: libpng - version: 1.6.47 + version: 1.6.49 manager: conda platform: win-64 dependencies: @@ -3774,10 +3775,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://conda.anaconda.org/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 @@ -3792,7 +3793,7 @@ package: libgfortran5: '>=13.3.0' liblzma: '>=5.6.3,<6.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libscotch-7.0.6-hea33c07_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libscotch-7.0.6-hea33c07_1.conda hash: md5: 1b600d55dcd98c958192a69a79e6acd2 sha256: 8330bba8b7b3a37da6eca04bace985fb9f8d487d3249b8f690e8f4a3d8d3c7dc @@ -3804,7 +3805,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://repo.prefix.dev/conda-forge/linux-64/libsodium-1.0.20-h4ab18f5_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libsodium-1.0.20-h4ab18f5_0.conda hash: md5: a587892d3c13b6621a6091be690dbca2 sha256: 0105bd108f19ea8e6a78d2d994a6d4a8db16d19a41212070d2d1d48a63c34161 @@ -3818,7 +3819,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libsodium-1.0.20-hc70643c_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/libsodium-1.0.20-hc70643c_0.conda hash: md5: 198bb594f202b205c7d18b936fa4524f sha256: 7bcb3edccea30f711b6be9601e083ecf4f435b9407d70fc48fbcf9e5d69a0fc6 @@ -3832,7 +3833,7 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.50.1-hee588c1_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.50.1-hee588c1_0.conda hash: md5: 96a7e36bff29f1d0ddf5b771e0da373a sha256: cd15ab1b9f0d53507e7ad7a01e52f6756ab3080bf623ab0e438973b6e4dba3c0 @@ -3846,7 +3847,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.50.1-h67fdade_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.50.1-h67fdade_0.conda hash: md5: 0e11a893eeeb46510520fd3fdd9c346a sha256: 0dda5b3f21ad2c7e823f21b0e173194347fbfccb73a06ddc9366da1877020bda @@ -3861,7 +3862,7 @@ package: libgcc: '>=13' libzlib: '>=1.3.1,<2.0a0' openssl: '>=3.5.0,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libssh2-1.11.1-hcf80075_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.1-hcf80075_0.conda hash: md5: eecce068c7e4eddeb169591baac20ac4 sha256: fa39bfd69228a13e553bd24601332b7cfeb30ca11a3ca50bb028108fe90a7661 @@ -3877,7 +3878,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libssh2-1.11.1-h9aa295b_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/libssh2-1.11.1-h9aa295b_0.conda hash: md5: 9dce2f112bfd3400f4f432b3d0ac07b2 sha256: cbdf93898f2e27cefca5f3fe46519335d1fab25c4ea2a11b11502ff63e602c09 @@ -3890,7 +3891,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: 15.1.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-15.1.0-h8f9b012_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-15.1.0-h8f9b012_2.conda hash: md5: 1cb1c67961f6dd257eae9e9691b341aa sha256: 6ae3d153e78f6069d503d9309f2cac6de5b93d067fc6433160a4c05226a5dad4 @@ -3902,7 +3903,7 @@ package: platform: linux-64 dependencies: libstdcxx: 15.1.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-15.1.0-h4852527_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-15.1.0-h4852527_2.conda hash: md5: 9d2072af184b5caa29492bf2344597bb sha256: 11bea86e11de7d6bce87589197a383344df3fa0a3552dab7e931785ff1159a5b @@ -3923,7 +3924,7 @@ 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-hf01ce69_5.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.7.0-hf01ce69_5.conda hash: md5: e79a094918988bb1807462cd42c83962 sha256: 7fa6ddac72e0d803bb08e55090a8f2e71769f1eb7adbd5711bdd7789561601b1 @@ -3943,7 +3944,7 @@ 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-h05922d8_5.conda + url: https://conda.anaconda.org/conda-forge/win-64/libtiff-4.7.0-h05922d8_5.conda hash: md5: 75370aba951b47ec3b5bfe689f1bcf7f sha256: 1bb0b2e7d076fecc2f8147336bc22e7e6f9a4e0505e0e4ab2be1f56023a4a458 @@ -3955,7 +3956,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://repo.prefix.dev/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda hash: md5: 40b61aab5c7ba9ff276c41cfffe6b80b sha256: 787eb542f055a2b3de553614b25f09eefb0a0931b0c87dbcce6efdfd92f04f18 @@ -3968,7 +3969,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libwebp-base-1.5.0-h851e524_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.5.0-h851e524_0.conda hash: md5: 63f790534398730f59e1b899c3644d4a sha256: c45283fd3e90df5f0bd3dbcd31f59cdd2b001d424cf30a07223655413b158eaf @@ -3982,7 +3983,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libwebp-base-1.5.0-h3b0e114_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/libwebp-base-1.5.0-h3b0e114_0.conda hash: md5: 33f7313967072c6e6d8f865f5493c7ae sha256: 1d75274614e83a5750b8b94f7bad2fc0564c2312ff407e697d99152ed095576f @@ -3994,7 +3995,7 @@ package: platform: win-64 dependencies: ucrt: '' - url: https://repo.prefix.dev/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h57928b3_9.conda + url: https://conda.anaconda.org/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h57928b3_9.conda hash: md5: 08bfa5da6e242025304b206d152479ef sha256: 373f2973b8a358528b22be5e8d84322c165b4c5577d24d94fd67ad1bb0a0f261 @@ -4010,7 +4011,7 @@ package: pthread-stubs: '' xorg-libxau: '>=1.0.11,<2.0a0' xorg-libxdmcp: '' - url: https://repo.prefix.dev/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda hash: md5: 92ed62436b625154323d40d5f2f11dd7 sha256: 666c0c431b23c6cec6e492840b176dde533d48b7e6fb8883f5071223433776aa @@ -4027,7 +4028,7 @@ package: ucrt: '>=10.0.20348.0' xorg-libxau: '>=1.0.11,<2.0a0' xorg-libxdmcp: '' - url: https://repo.prefix.dev/conda-forge/win-64/libxcb-1.17.0-h0e4246c_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/libxcb-1.17.0-h0e4246c_0.conda hash: md5: a69bbf778a462da324489976c84cfc8c sha256: 08dec73df0e161c96765468847298a420933a36bc4f09b50e062df8793290737 @@ -4039,7 +4040,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://repo.prefix.dev/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda hash: md5: 5aa797f8787fe7a17d1b0821485b5adc sha256: 6ae68e0b86423ef188196fff6207ed0c8195dd84273cb5623b85aa08033a410c @@ -4056,7 +4057,7 @@ package: 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.8-h4bc477f_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.13.8-h4bc477f_0.conda hash: md5: 14dbe05b929e329dbaa6f2d0aa19466d sha256: b0b3a96791fa8bb4ec030295e8c8bf2d3278f33c0f9ad540e73b5e538e6268e7 @@ -4072,7 +4073,7 @@ 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.8-h442d1da_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/libxml2-2.13.8-h442d1da_0.conda hash: md5: 833c2dbc1a5020007b520b044c713ed3 sha256: 473b8a53c8df714d676ab41711551c8d250f8d799f2db5cb7cb2b177a0ce13f6 @@ -4085,7 +4086,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda hash: md5: edb0dca6bc32e4f4789199455a1dbeb8 sha256: d4bfe88d7cb447768e31650f06257995601f89076080e76df55e3112d4e47dc4 @@ -4099,7 +4100,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda hash: md5: 41fbfac52c601159df6c01f875de31b9 sha256: ba945c6493449bed0e6e29883c4943817f7c79cbff52b83360f7b341277c6402 @@ -4112,7 +4113,7 @@ package: dependencies: python: '>=3.9' uc-micro-py: '' - url: https://repo.prefix.dev/conda-forge/noarch/linkify-it-py-2.0.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/linkify-it-py-2.0.3-pyhd8ed1ab_1.conda hash: md5: b02fe519b5dc0dc55e7299810fcdfb8e sha256: d975a2015803d4fdaaae3f53e21f64996577d7a069eb61c6d2792504f16eb57b @@ -4125,36 +4126,36 @@ package: dependencies: python: '>=3.9' uc-micro-py: '' - url: https://repo.prefix.dev/conda-forge/noarch/linkify-it-py-2.0.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/linkify-it-py-2.0.3-pyhd8ed1ab_1.conda hash: md5: b02fe519b5dc0dc55e7299810fcdfb8e sha256: d975a2015803d4fdaaae3f53e21f64996577d7a069eb61c6d2792504f16eb57b category: dev optional: true - name: llvm-openmp - version: 20.1.6 + version: 20.1.7 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-20.1.6-h024ca30_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/llvm-openmp-20.1.7-h024ca30_0.conda hash: - md5: e4ece7ed81e43ae97a3b58ac4230c3c5 - sha256: 43ad6a0772c0fc554d2712ae00ea788a391a40c494e9c04ec13f4aea17c95ffc + md5: b9c9b2f494533250a9eb7ece830f4422 + sha256: 10f2f6be8ba4c018e1fc741637a8d45c0e58bea96954c25e91fbe4238b7c9f60 category: main optional: false - name: llvm-openmp - version: 20.1.6 + version: 20.1.7 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-20.1.6-h30eaf37_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/llvm-openmp-20.1.7-h30eaf37_0.conda hash: - md5: b95ac67b4a85052c54268ba4b80be753 - sha256: de24f885d918455eb510da054658531bbf69a2bc5ee5945314d0451f375a881d + md5: 6fd1d310402e936aa9aecb065f21cc6b + sha256: 1820ca99e8b126b3c656ff3c527822be8348f6452edcddd91615cba285540f6c category: main optional: false - name: locket @@ -4163,7 +4164,7 @@ package: platform: linux-64 dependencies: python: '>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*' - url: https://repo.prefix.dev/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 91e27ef3d05cc772ce627e51cff111c4 sha256: 9afe0b5cfa418e8bdb30d8917c5a6cec10372b037924916f1f85b9f4899a67a6 @@ -4175,7 +4176,7 @@ package: platform: win-64 dependencies: python: '>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*' - url: https://repo.prefix.dev/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 91e27ef3d05cc772ce627e51cff111c4 sha256: 9afe0b5cfa418e8bdb30d8917c5a6cec10372b037924916f1f85b9f4899a67a6 @@ -4189,7 +4190,7 @@ package: mdurl: '>=0.1,<1' python: '>=3.7' typing_extensions: '>=3.7.4' - url: https://repo.prefix.dev/conda-forge/noarch/markdown-it-py-2.2.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-2.2.0-pyhd8ed1ab_0.conda hash: md5: b2928a6c6d52d7e3562b4a59c3214e3a sha256: 65ed439862c1851463f03a9bc5109992ce3e3e025e9a2d76d13ca19f576eee9f @@ -4203,7 +4204,7 @@ package: mdurl: '>=0.1,<1' python: '>=3.7' typing_extensions: '>=3.7.4' - url: https://repo.prefix.dev/conda-forge/noarch/markdown-it-py-2.2.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-2.2.0-pyhd8ed1ab_0.conda hash: md5: b2928a6c6d52d7e3562b4a59c3214e3a sha256: 65ed439862c1851463f03a9bc5109992ce3e3e025e9a2d76d13ca19f576eee9f @@ -4218,7 +4219,7 @@ package: libgcc: '>=13' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://repo.prefix.dev/conda-forge/linux-64/markupsafe-3.0.2-py310h89163eb_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-3.0.2-py310h89163eb_1.conda hash: md5: 8ce3f0332fd6de0d737e2911d329523f sha256: 0bed20ec27dcbcaf04f02b2345358e1161fb338f8423a4ada1cf0f4d46918741 @@ -4234,7 +4235,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/markupsafe-3.0.2-py310h38315fa_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/markupsafe-3.0.2-py310h38315fa_1.conda hash: md5: 79dfc050ae5a7dd4e63e392c984e2576 sha256: deb8505b7ef76d363174d133e2ff814ae75b91ac4c3ae5550a7686897392f4d0 @@ -4261,7 +4262,7 @@ package: python-dateutil: '>=2.7' python_abi: 3.10.* tk: '>=8.6.13,<8.7.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/matplotlib-base-3.8.4-py310hef631a5_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/matplotlib-base-3.8.4-py310hef631a5_2.conda hash: md5: b3fa3fc2a0fa8b53b913c94297b12e27 sha256: 5733c68ff72a04a42d8363965155d4b27a1ed3364a507b8cac582c0b4881d222 @@ -4288,7 +4289,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/matplotlib-base-3.8.4-py310hadb10a8_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/matplotlib-base-3.8.4-py310hadb10a8_2.conda hash: md5: 8f5e26aa64ab245691efb7f87c584060 sha256: bc3ecb8e9f68fd1b4214e223f08e94d8f88e6fdc237dc0e86efcb9f090737e96 @@ -4301,7 +4302,7 @@ package: dependencies: python: '>=3.9' traitlets: '' - url: https://repo.prefix.dev/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_1.conda hash: md5: af6ab708897df59bd6e7283ceab1b56b sha256: 69b7dc7131703d3d60da9b0faa6dd8acbf6f6c396224cf6aef3e855b8c0c41c6 @@ -4314,7 +4315,7 @@ package: dependencies: python: '>=3.9' traitlets: '' - url: https://repo.prefix.dev/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_1.conda hash: md5: af6ab708897df59bd6e7283ceab1b56b sha256: 69b7dc7131703d3d60da9b0faa6dd8acbf6f6c396224cf6aef3e855b8c0c41c6 @@ -4326,7 +4327,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda hash: md5: 827064ddfe0de2917fb29f1da4f8f533 sha256: 9b0037171dad0100f0296699a11ae7d355237b55f42f9094aebc0f41512d96a1 @@ -4338,7 +4339,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda hash: md5: 827064ddfe0de2917fb29f1da4f8f533 sha256: 9b0037171dad0100f0296699a11ae7d355237b55f42f9094aebc0f41512d96a1 @@ -4351,7 +4352,7 @@ package: dependencies: markdown-it-py: '>=1.0.0,<4.0.0' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/mdit-py-plugins-0.4.2-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.4.2-pyhd8ed1ab_1.conda hash: md5: af2060041d4f3250a7eb6ab3ec0e549b sha256: c63ed79d9745109c0a70397713b0c07f06e7d3561abcb122cfc80a141ab3b449 @@ -4364,7 +4365,7 @@ package: dependencies: markdown-it-py: '>=1.0.0,<4.0.0' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/mdit-py-plugins-0.4.2-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.4.2-pyhd8ed1ab_1.conda hash: md5: af2060041d4f3250a7eb6ab3ec0e549b sha256: c63ed79d9745109c0a70397713b0c07f06e7d3561abcb122cfc80a141ab3b449 @@ -4376,7 +4377,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_1.conda hash: md5: 592132998493b3ff25fd7479396e8351 sha256: 78c1bbe1723449c52b7a9df1af2ee5f005209f67e40b6e1d3c7619127c43b1c7 @@ -4388,7 +4389,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_1.conda hash: md5: 592132998493b3ff25fd7479396e8351 sha256: 78c1bbe1723449c52b7a9df1af2ee5f005209f67e40b6e1d3c7619127c43b1c7 @@ -4402,7 +4403,7 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' libstdcxx: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/metis-5.1.0-hd0bcaf9_1007.conda + url: https://conda.anaconda.org/conda-forge/linux-64/metis-5.1.0-hd0bcaf9_1007.conda hash: md5: 28eb714416de4eb83e2cbc47e99a1b45 sha256: e8a00971e6d00bd49f375c5d8d005b37a9abba0b1768533aed0f90a422bf5cc7 @@ -4415,7 +4416,7 @@ package: dependencies: python: '' typing_extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/mistune-3.1.3-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/mistune-3.1.3-pyh29332c3_0.conda hash: md5: 7ec6576e328bc128f4982cd646eeba85 sha256: a67484d7dd11e815a81786580f18b6e4aa2392f292f29183631a6eccc8dc37b3 @@ -4428,7 +4429,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/mistune-3.1.3-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/mistune-3.1.3-pyh29332c3_0.conda hash: md5: 7ec6576e328bc128f4982cd646eeba85 sha256: a67484d7dd11e815a81786580f18b6e4aa2392f292f29183631a6eccc8dc37b3 @@ -4442,7 +4443,7 @@ package: _openmp_mutex: '>=4.5' llvm-openmp: '>=19.1.2' tbb: 2021.* - url: https://repo.prefix.dev/conda-forge/linux-64/mkl-2024.2.2-ha957f24_16.conda + url: https://conda.anaconda.org/conda-forge/linux-64/mkl-2024.2.2-ha957f24_16.conda hash: md5: 1459379c79dda834673426504d52b319 sha256: 77906b0acead8f86b489da46f53916e624897338770dbf70b04b8f673c9273c1 @@ -4455,14 +4456,14 @@ package: dependencies: intel-openmp: 2024.* tbb: 2021.* - url: https://repo.prefix.dev/conda-forge/win-64/mkl-2024.2.2-h66d3029_15.conda + url: https://conda.anaconda.org/conda-forge/win-64/mkl-2024.2.2-h66d3029_15.conda hash: md5: 302dff2807f2927b3e9e0d19d60121de sha256: 20e52b0389586d0b914a49cd286c5ccc9c47949bed60ca6df004d1d295f2edbd category: main optional: false - name: msgpack-python - version: 1.1.0 + version: 1.1.1 manager: conda platform: linux-64 dependencies: @@ -4471,14 +4472,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://conda.anaconda.org/conda-forge/linux-64/msgpack-python-1.1.1-py310h3788b33_0.conda hash: - md5: 6b586fb03d84e5bfbb1a8a3d9e2c9b60 - sha256: 73ca5f0c7d0727a57dcc3c402823ce3aa159ca075210be83078fcc485971e259 + md5: 6028c7df37691cdf6e953968646195b7 + sha256: 8069bb45b1eb11a2421ee0db76b16ae2a634a470c7a77011263b9df270645293 category: main optional: false - name: msgpack-python - version: 1.1.0 + version: 1.1.1 manager: conda platform: win-64 dependencies: @@ -4487,10 +4488,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://conda.anaconda.org/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 @@ -4498,7 +4499,7 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/linux-64/mumps-include-5.7.3-h82cca05_10.conda + url: https://conda.anaconda.org/conda-forge/linux-64/mumps-include-5.7.3-h82cca05_10.conda hash: md5: d6c7d8811686ed912ed4317831dd8c44 sha256: c723d6e331444411db0a871958fc45621758595d12b4d6561fa20324535ce67a @@ -4519,7 +4520,7 @@ package: libscotch: '>=7.0.6,<7.0.7.0a0' metis: '>=5.1.0,<5.1.1.0a0' mumps-include: ==5.7.3 - url: https://repo.prefix.dev/conda-forge/linux-64/mumps-seq-5.7.3-h06cbf8f_10.conda + url: https://conda.anaconda.org/conda-forge/linux-64/mumps-seq-5.7.3-h06cbf8f_10.conda hash: md5: deb3c7cb10d67fde01d264b3d5bc79bc sha256: bf7049864150d714debbe3d89a9db79e3163655c1fbab7b18b1fd613f9e27878 @@ -4536,7 +4537,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/mumps-seq-5.7.3-hbaa6519_10.conda + url: https://conda.anaconda.org/conda-forge/win-64/mumps-seq-5.7.3-hbaa6519_10.conda hash: md5: 5c35d7fd93b2d7cddaa3ce881aadad83 sha256: 6209255427a10879ca3731ec04eecf112e92b617af60c053073c8330928cb8ab @@ -4547,11 +4548,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://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyhd8ed1ab_1.conda hash: - md5: 2ba8498c1018c1e9c61eb99b973dfe19 - sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 + md5: 37293a85a0f4f77bbd9cf7aaefc62609 + sha256: d09c47c2cf456de5c09fa66d2c3c5035aa1fa228a1983a433c47b876aa16ce90 category: main optional: false - name: munkres @@ -4559,11 +4560,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://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyhd8ed1ab_1.conda hash: - md5: 2ba8498c1018c1e9c61eb99b973dfe19 - sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 + md5: 37293a85a0f4f77bbd9cf7aaefc62609 + sha256: d09c47c2cf456de5c09fa66d2c3c5035aa1fa228a1983a433c47b876aa16ce90 category: main optional: false - name: myst-nb @@ -4582,7 +4583,7 @@ package: pyyaml: '' sphinx: '>=5' typing_extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/myst-nb-1.2.0-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/myst-nb-1.2.0-pyh29332c3_0.conda hash: md5: 4f63865e1bb08e05476fa136a2dfe2ac sha256: de3e58d54126fdb667a55921675693fb8eee23757fd3be6116f6565cae710279 @@ -4604,7 +4605,7 @@ package: pyyaml: '' sphinx: '>=5' typing_extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/myst-nb-1.2.0-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/myst-nb-1.2.0-pyh29332c3_0.conda hash: md5: 4f63865e1bb08e05476fa136a2dfe2ac sha256: de3e58d54126fdb667a55921675693fb8eee23757fd3be6116f6565cae710279 @@ -4623,7 +4624,7 @@ package: pyyaml: '' sphinx: '>=5,<7' typing-extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/myst-parser-1.0.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/myst-parser-1.0.0-pyhd8ed1ab_0.conda hash: md5: e559708feb0aed1ae24c518e569ea3eb sha256: 87de591aa423932ffec61e06283bf5c3ba5c0a3cc465955984ce58f1de3ded8e @@ -4642,7 +4643,7 @@ package: pyyaml: '' sphinx: '>=5,<7' typing-extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/myst-parser-1.0.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/myst-parser-1.0.0-pyhd8ed1ab_0.conda hash: md5: e559708feb0aed1ae24c518e569ea3eb sha256: 87de591aa423932ffec61e06283bf5c3ba5c0a3cc465955984ce58f1de3ded8e @@ -4658,7 +4659,7 @@ package: nbformat: '>=5.1' python: '>=3.8' traitlets: '>=5.4' - url: https://repo.prefix.dev/conda-forge/noarch/nbclient-0.10.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/nbclient-0.10.2-pyhd8ed1ab_0.conda hash: md5: 6bb0d77277061742744176ab555b723c sha256: a20cff739d66c2f89f413e4ba4c6f6b59c50d5c30b5f0d840c13e8c9c2df9135 @@ -4674,7 +4675,7 @@ package: nbformat: '>=5.1' python: '>=3.8' traitlets: '>=5.4' - url: https://repo.prefix.dev/conda-forge/noarch/nbclient-0.10.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/nbclient-0.10.2-pyhd8ed1ab_0.conda hash: md5: 6bb0d77277061742744176ab555b723c sha256: a20cff739d66c2f89f413e4ba4c6f6b59c50d5c30b5f0d840c13e8c9c2df9135 @@ -4687,7 +4688,7 @@ package: dependencies: nbconvert-core: ==7.16.6 nbconvert-pandoc: ==7.16.6 - url: https://repo.prefix.dev/conda-forge/noarch/nbconvert-7.16.6-hb482800_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-7.16.6-hb482800_0.conda hash: md5: aa90ea40c80d4bd3da35cb17ed668f22 sha256: 5480b7e05bf3079fcb7357a5a15a96c3a1649cc1371d0c468c806898a7e53088 @@ -4700,7 +4701,7 @@ package: dependencies: nbconvert-core: ==7.16.6 nbconvert-pandoc: ==7.16.6 - url: https://repo.prefix.dev/conda-forge/noarch/nbconvert-7.16.6-hb482800_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-7.16.6-hb482800_0.conda hash: md5: aa90ea40c80d4bd3da35cb17ed668f22 sha256: 5480b7e05bf3079fcb7357a5a15a96c3a1649cc1371d0c468c806898a7e53088 @@ -4727,7 +4728,7 @@ package: pygments: '>=2.4.1' python: '' traitlets: '>=5.1' - url: https://repo.prefix.dev/conda-forge/noarch/nbconvert-core-7.16.6-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.16.6-pyh29332c3_0.conda hash: md5: d24beda1d30748afcc87c429454ece1b sha256: dcccb07c5a1acb7dc8be94330e62d54754c0e9c9cb2bb6865c8e3cfe44cf5a58 @@ -4754,7 +4755,7 @@ package: pygments: '>=2.4.1' python: '>=3.9' traitlets: '>=5.1' - url: https://repo.prefix.dev/conda-forge/noarch/nbconvert-core-7.16.6-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.16.6-pyh29332c3_0.conda hash: md5: d24beda1d30748afcc87c429454ece1b sha256: dcccb07c5a1acb7dc8be94330e62d54754c0e9c9cb2bb6865c8e3cfe44cf5a58 @@ -4767,7 +4768,7 @@ package: dependencies: nbconvert-core: ==7.16.6 pandoc: '' - url: https://repo.prefix.dev/conda-forge/noarch/nbconvert-pandoc-7.16.6-hed9df3c_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-pandoc-7.16.6-hed9df3c_0.conda hash: md5: 5b0afb6c52e74a7eca2cf809a874acf4 sha256: 1e8923f1557c2ddb7bba915033cfaf8b8c1b7462c745172458102c11caee1002 @@ -4780,7 +4781,7 @@ package: dependencies: nbconvert-core: ==7.16.6 pandoc: '' - url: https://repo.prefix.dev/conda-forge/noarch/nbconvert-pandoc-7.16.6-hed9df3c_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-pandoc-7.16.6-hed9df3c_0.conda hash: md5: 5b0afb6c52e74a7eca2cf809a874acf4 sha256: 1e8923f1557c2ddb7bba915033cfaf8b8c1b7462c745172458102c11caee1002 @@ -4796,7 +4797,7 @@ package: python: '>=3.9' python-fastjsonschema: '>=2.15' traitlets: '>=5.1' - url: https://repo.prefix.dev/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_1.conda hash: md5: bbe1963f1e47f594070ffe87cdf612ea sha256: 7a5bd30a2e7ddd7b85031a5e2e14f290898098dc85bea5b3a5bf147c25122838 @@ -4812,7 +4813,7 @@ package: python: '>=3.9' python-fastjsonschema: '>=2.15' traitlets: '>=5.1' - url: https://repo.prefix.dev/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_1.conda hash: md5: bbe1963f1e47f594070ffe87cdf612ea sha256: 7a5bd30a2e7ddd7b85031a5e2e14f290898098dc85bea5b3a5bf147c25122838 @@ -4825,7 +4826,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda hash: md5: 47e340acb35de30501a76c7c799c41d7 sha256: 3fde293232fa3fca98635e1167de6b7c7fda83caf24b9d6c91ec9eefb4f4d586 @@ -4837,7 +4838,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_1.conda hash: md5: 598fd7d4d0de2455fb74f56063969a97 sha256: bb7b21d7fd0445ddc0631f64e66d91a179de4ba920b8381f29b9d006a42788c0 @@ -4849,7 +4850,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_1.conda hash: md5: 598fd7d4d0de2455fb74f56063969a97 sha256: bb7b21d7fd0445ddc0631f64e66d91a179de4ba920b8381f29b9d006a42788c0 @@ -4866,7 +4867,7 @@ package: notebook-shim: '>=0.2,<0.3' python: '>=3.9' tornado: '>=6.2.0' - url: https://repo.prefix.dev/conda-forge/noarch/notebook-7.4.3-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/notebook-7.4.3-pyhd8ed1ab_0.conda hash: md5: f0b767b717cab652712d29f5e4699b2a sha256: aea1b33b734e809bd090f0bae47f4bca5da406f7bc7dd65a67b565f03c740866 @@ -4883,7 +4884,7 @@ package: notebook-shim: '>=0.2,<0.3' python: '>=3.9' tornado: '>=6.2.0' - url: https://repo.prefix.dev/conda-forge/noarch/notebook-7.4.3-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/notebook-7.4.3-pyhd8ed1ab_0.conda hash: md5: f0b767b717cab652712d29f5e4699b2a sha256: aea1b33b734e809bd090f0bae47f4bca5da406f7bc7dd65a67b565f03c740866 @@ -4896,7 +4897,7 @@ package: dependencies: jupyter_server: '>=1.8,<3' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/notebook-shim-0.2.4-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/notebook-shim-0.2.4-pyhd8ed1ab_1.conda hash: md5: e7f89ea5f7ea9401642758ff50a2d9c1 sha256: 7b920e46b9f7a2d2aa6434222e5c8d739021dbc5cc75f32d124a8191d86f9056 @@ -4909,7 +4910,7 @@ package: dependencies: jupyter_server: '>=1.8,<3' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/notebook-shim-0.2.4-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/notebook-shim-0.2.4-pyhd8ed1ab_1.conda hash: md5: e7f89ea5f7ea9401642758ff50a2d9c1 sha256: 7b920e46b9f7a2d2aa6434222e5c8d739021dbc5cc75f32d124a8191d86f9056 @@ -4927,7 +4928,7 @@ package: numpy: '>=1.7' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://repo.prefix.dev/conda-forge/linux-64/numcodecs-0.13.1-py310h5eaa309_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/numcodecs-0.13.1-py310h5eaa309_0.conda hash: md5: a3e9933fc59e8bcd2aa20753fb56db42 sha256: 70cb0fa431ba9e75ef36d94f35324089dfa7da8f967e9c758f60e08aaf29b732 @@ -4945,7 +4946,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/numcodecs-0.13.1-py310hb4db72f_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/numcodecs-0.13.1-py310hb4db72f_0.conda hash: md5: 0d316ad384c5c153a67a416f1a8abf97 sha256: 4aa5d7fc0ea81120f2fab5ef6ff3e0c8ea3458a2c8a21935b99dff70b73a349c @@ -4963,7 +4964,7 @@ package: libstdcxx-ng: '>=12' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://repo.prefix.dev/conda-forge/linux-64/numpy-1.26.4-py310hb13e2d6_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/numpy-1.26.4-py310hb13e2d6_0.conda hash: md5: 6593de64c935768b6bad3e19b3e978be sha256: 028fe2ea8e915a0a032b75165f11747770326f3d767e642880540c60a3256425 @@ -4982,7 +4983,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/numpy-1.26.4-py310hf667824_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/numpy-1.26.4-py310hf667824_0.conda hash: md5: 93e881c391880df90e74e43a4b67c16d sha256: 20ca447a8f840c01961f2bdf0847fc7b7785a62968e867d7aa4ca8a66d70f9ad @@ -4999,7 +5000,7 @@ package: libstdcxx: '>=13' libtiff: '>=4.7.0,<4.8.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/openjpeg-2.5.3-h5fbd93e_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.3-h5fbd93e_0.conda hash: md5: 9e5816bc95d285c115a3ebc2f8563564 sha256: 5bee706ea5ba453ed7fd9da7da8380dd88b865c8d30b5aaec14d2b6dd32dbc39 @@ -5016,7 +5017,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/openjpeg-2.5.3-h4d64b90_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/openjpeg-2.5.3-h4d64b90_0.conda hash: md5: fc050366dd0b8313eb797ed1ffef3a29 sha256: 410175815df192f57a07c29a6b3fdd4231937173face9e63f0830c1234272ce3 @@ -5030,7 +5031,7 @@ 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_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.5.0-h7b32b05_1.conda hash: md5: de356753cfdbffcde5bb1e86e3aa6cd0 sha256: b4491077c494dbf0b5eaa6d87738c22f2154e9277e5293175ec187634bd808a0 @@ -5045,7 +5046,7 @@ 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_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/openssl-3.5.0-ha4e3fda_1.conda hash: md5: 72c07e46b6766bb057018a9a74861b89 sha256: 02846553d2a4c9bde850c60824d0f02803eb9c9b674d5c1a8cce25bc387e748f @@ -5058,7 +5059,7 @@ package: dependencies: python: '>=3.9' typing_utils: '' - url: https://repo.prefix.dev/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_1.conda hash: md5: e51f1e4089cad105b6cac64bd8166587 sha256: 1840bd90d25d4930d60f57b4f38d4e0ae3f5b8db2819638709c36098c6ba770c @@ -5071,7 +5072,7 @@ package: dependencies: python: '>=3.9' typing_utils: '' - url: https://repo.prefix.dev/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_1.conda hash: md5: e51f1e4089cad105b6cac64bd8166587 sha256: 1840bd90d25d4930d60f57b4f38d4e0ae3f5b8db2819638709c36098c6ba770c @@ -5083,7 +5084,7 @@ package: platform: linux-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda hash: md5: 58335b26c38bf4a20f399384c33cbcf9 sha256: 289861ed0c13a15d7bbb408796af4de72c2fe67e2bcb0de98f4c3fce259d7991 @@ -5095,7 +5096,7 @@ package: platform: win-64 dependencies: python: '>=3.8' - url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda hash: md5: 58335b26c38bf4a20f399384c33cbcf9 sha256: 289861ed0c13a15d7bbb408796af4de72c2fe67e2bcb0de98f4c3fce259d7991 @@ -5115,7 +5116,7 @@ package: python-tzdata: '>=2022.7' python_abi: 3.10.* pytz: '>=2020.1' - url: https://repo.prefix.dev/conda-forge/linux-64/pandas-2.3.0-py310h5eaa309_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/pandas-2.3.0-py310h5eaa309_0.conda hash: md5: 379844614e3a24e59e59d8c69c6e9403 sha256: 7d1ab7bdc471df8059a3787f05dd04371a8d7f2672999a784427f9aee59513ee @@ -5135,7 +5136,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/pandas-2.3.0-py310hb4db72f_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/pandas-2.3.0-py310hb4db72f_0.conda hash: md5: 8ecb05a061225c9fd9bb65b9a5f7297c sha256: 8a7887e2532c928de70e9051b6d34772642200cfafca7e7aed59c63f630d09c9 @@ -5146,7 +5147,7 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/linux-64/pandoc-3.7.0.2-ha770c72_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/pandoc-3.7.0.2-ha770c72_0.conda hash: md5: db0c1632047d38997559ce2c4741dd91 sha256: 243c49b34caa9328e9d5f62c98be9eb046be8fee9836854b88d9022ce8013497 @@ -5157,7 +5158,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/win-64/pandoc-3.7.0.2-h57928b3_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/pandoc-3.7.0.2-h57928b3_0.conda hash: md5: a77c859d9469f24691d6c6590b56fa45 sha256: 7fff0deca558c5ab6c836127481decbec83c0add3a0ab2b81d1f10130146c357 @@ -5169,7 +5170,7 @@ package: platform: linux-64 dependencies: python: '!=3.0,!=3.1,!=3.2,!=3.3' - url: https://repo.prefix.dev/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 457c2c8c08e54905d6954e79cb5b5db9 sha256: 2bb9ba9857f4774b85900c2562f7e711d08dd48e2add9bee4e1612fbee27e16f @@ -5181,7 +5182,7 @@ package: platform: win-64 dependencies: python: '!=3.0,!=3.1,!=3.2,!=3.3' - url: https://repo.prefix.dev/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 457c2c8c08e54905d6954e79cb5b5db9 sha256: 2bb9ba9857f4774b85900c2562f7e711d08dd48e2add9bee4e1612fbee27e16f @@ -5193,7 +5194,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_1.conda hash: md5: 5c092057b6badd30f75b06244ecd01c9 sha256: 17131120c10401a99205fc6fe436e7903c0fa092f1b3e80452927ab377239bcc @@ -5205,7 +5206,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_1.conda hash: md5: 5c092057b6badd30f75b06244ecd01c9 sha256: 17131120c10401a99205fc6fe436e7903c0fa092f1b3e80452927ab377239bcc @@ -5219,7 +5220,7 @@ package: locket: '' python: '>=3.9' toolz: '' - url: https://repo.prefix.dev/conda-forge/noarch/partd-1.4.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/partd-1.4.2-pyhd8ed1ab_0.conda hash: md5: 0badf9c54e24cecfb0ad2f99d680c163 sha256: 472fc587c63ec4f6eba0cc0b06008a6371e0a08a5986de3cf4e8024a47b4fe6c @@ -5233,7 +5234,7 @@ package: locket: '' python: '>=3.9' toolz: '' - url: https://repo.prefix.dev/conda-forge/noarch/partd-1.4.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/partd-1.4.2-pyhd8ed1ab_0.conda hash: md5: 0badf9c54e24cecfb0ad2f99d680c163 sha256: 472fc587c63ec4f6eba0cc0b06008a6371e0a08a5986de3cf4e8024a47b4fe6c @@ -5246,7 +5247,7 @@ package: dependencies: ptyprocess: '>=0.5' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_1.conda hash: md5: d0d408b1f18883a944376da5cf8101ea sha256: 202af1de83b585d36445dc1fda94266697341994d1a3328fabde4989e1b3d07a @@ -5258,7 +5259,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pickleshare-0.7.5-pyhd8ed1ab_1004.conda + url: https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-pyhd8ed1ab_1004.conda hash: md5: 11a9d1d09a3615fc07c3faf79bc0b943 sha256: e2ac3d66c367dada209fc6da43e645672364b9fd5f9d28b9f016e24b81af475b @@ -5270,7 +5271,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pickleshare-0.7.5-pyhd8ed1ab_1004.conda + url: https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-pyhd8ed1ab_1004.conda hash: md5: 11a9d1d09a3615fc07c3faf79bc0b943 sha256: e2ac3d66c367dada209fc6da43e645672364b9fd5f9d28b9f016e24b81af475b @@ -5293,7 +5294,7 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* tk: '>=8.6.13,<8.7.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/pillow-10.3.0-py310hebfe307_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/pillow-10.3.0-py310hebfe307_1.conda hash: md5: 8d357fd769e0e1a957f5916bdc8b1fa2 sha256: adb1d874246c47cc8972894b13eeb70ef1aab067f51e615f4976cfe9c3ee3208 @@ -5318,7 +5319,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/pillow-10.3.0-py310h3e38d90_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/pillow-10.3.0-py310h3e38d90_1.conda hash: md5: ee35afda8b2154e7396fae5ca7fbea6b sha256: 50a0d0f8de51c47f8ca0820f0ebfc7730aec4a7a98069347a3395b21b67f7e21 @@ -5332,7 +5333,7 @@ package: python: '>=3.9,<3.13.0a0' setuptools: '' wheel: '' - url: https://repo.prefix.dev/conda-forge/noarch/pip-25.1.1-pyh8b19718_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pip-25.1.1-pyh8b19718_0.conda hash: md5: 32d0781ace05105cc99af55d36cbec7c sha256: ebfa591d39092b111b9ebb3210eb42251be6da89e26c823ee03e5e838655a43e @@ -5346,7 +5347,7 @@ package: python: '>=3.9,<3.13.0a0' setuptools: '' wheel: '' - url: https://repo.prefix.dev/conda-forge/noarch/pip-25.1.1-pyh8b19718_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pip-25.1.1-pyh8b19718_0.conda hash: md5: 32d0781ace05105cc99af55d36cbec7c sha256: ebfa591d39092b111b9ebb3210eb42251be6da89e26c823ee03e5e838655a43e @@ -5358,7 +5359,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_2.conda + url: https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_2.conda hash: md5: 5a5870a74432aa332f7d32180633ad05 sha256: adb2dde5b4f7da70ae81309cce6188ed3286ff280355cf1931b45d91164d2ad8 @@ -5370,7 +5371,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_2.conda + url: https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_2.conda hash: md5: 5a5870a74432aa332f7d32180633ad05 sha256: adb2dde5b4f7da70ae81309cce6188ed3286ff280355cf1931b45d91164d2ad8 @@ -5382,7 +5383,7 @@ package: platform: linux-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.3.8-pyhe01879c_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.8-pyhe01879c_0.conda hash: md5: 424844562f5d337077b445ec6b1398a7 sha256: 0f48999a28019c329cd3f6fd2f01f09fc32cc832f7d6bbe38087ddac858feaa3 @@ -5394,7 +5395,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.3.8-pyhe01879c_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.8-pyhe01879c_0.conda hash: md5: 424844562f5d337077b445ec6b1398a7 sha256: 0f48999a28019c329cd3f6fd2f01f09fc32cc832f7d6bbe38087ddac858feaa3 @@ -5406,7 +5407,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda hash: md5: 7da7ccd349dbf6487a7778579d2bb971 sha256: a8eb555eef5063bbb7ba06a379fa7ea714f57d9741fe0efdb9442dbbc2cccbcc @@ -5418,7 +5419,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda hash: md5: 7da7ccd349dbf6487a7778579d2bb971 sha256: a8eb555eef5063bbb7ba06a379fa7ea714f57d9741fe0efdb9442dbbc2cccbcc @@ -5430,7 +5431,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/prometheus_client-0.22.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.22.1-pyhd8ed1ab_0.conda hash: md5: c64b77ccab10b822722904d889fa83b5 sha256: 454e2c0ef14accc888dd2cd2e8adb8c6a3a607d2d3c2f93962698b5718e6176d @@ -5442,7 +5443,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/prometheus_client-0.22.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.22.1-pyhd8ed1ab_0.conda hash: md5: c64b77ccab10b822722904d889fa83b5 sha256: 454e2c0ef14accc888dd2cd2e8adb8c6a3a607d2d3c2f93962698b5718e6176d @@ -5455,7 +5456,7 @@ package: dependencies: python: '>=3.9' wcwidth: '' - url: https://repo.prefix.dev/conda-forge/noarch/prompt-toolkit-3.0.51-pyha770c72_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.51-pyha770c72_0.conda hash: md5: d17ae9db4dc594267181bd199bf9a551 sha256: ebc1bb62ac612af6d40667da266ff723662394c0ca78935340a5b5c14831227b @@ -5468,7 +5469,7 @@ package: dependencies: python: '>=3.9' wcwidth: '' - url: https://repo.prefix.dev/conda-forge/noarch/prompt-toolkit-3.0.51-pyha770c72_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.51-pyha770c72_0.conda hash: md5: d17ae9db4dc594267181bd199bf9a551 sha256: ebc1bb62ac612af6d40667da266ff723662394c0ca78935340a5b5c14831227b @@ -5483,7 +5484,7 @@ package: libgcc: '>=13' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://repo.prefix.dev/conda-forge/linux-64/psutil-7.0.0-py310ha75aee5_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/psutil-7.0.0-py310ha75aee5_0.conda hash: md5: da7d592394ff9084a23f62a1186451a2 sha256: 31e46270c73cac2b24a7f3462ca03eb39f21cbfdb713b0d41eb61c00867eabe9 @@ -5499,7 +5500,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/psutil-7.0.0-py310ha8f682b_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/psutil-7.0.0-py310ha8f682b_0.conda hash: md5: ec78bb694e0ea34958e8f479e723499e sha256: 61c016c40848168bc565ceb8f3a78ad2d9288ffbe4236bcec312ef554f1caef2 @@ -5512,7 +5513,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda + url: https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda hash: md5: b3c17d95b5a10c6e64a21fa17573e70e sha256: 9c88f8c64590e9567c6c80823f0328e58d3b1efb0e1c539c0315ceca764e0973 @@ -5526,7 +5527,7 @@ package: libgcc: '>=13' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' ucrt: '>=10.0.20348.0' - url: https://repo.prefix.dev/conda-forge/win-64/pthread-stubs-0.4-h0e40799_1002.conda + url: https://conda.anaconda.org/conda-forge/win-64/pthread-stubs-0.4-h0e40799_1002.conda hash: md5: 3c8f2573569bb816483e5cf57efbbe29 sha256: 7e446bafb4d692792310ed022fe284e848c6a868c861655a92435af7368bae7b @@ -5538,7 +5539,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/ptyprocess-0.7.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd8ed1ab_1.conda hash: md5: 7d9daffbb8d8e0af0f769dbbcd173a54 sha256: a7713dfe30faf17508ec359e0bc7e0983f5d94682492469bd462cdaae9c64d83 @@ -5550,7 +5551,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda hash: md5: 3bfdfb8dbcdc4af1ae3f9a8eb3948f04 sha256: 71bd24600d14bb171a6321d523486f6a06f855e75e547fa0cb2a0953b02047f0 @@ -5562,7 +5563,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda hash: md5: 3bfdfb8dbcdc4af1ae3f9a8eb3948f04 sha256: 71bd24600d14bb171a6321d523486f6a06f855e75e547fa0cb2a0953b02047f0 @@ -5578,7 +5579,7 @@ package: pyyaml: '>=3.01' setuptools: '' six: '' - url: https://repo.prefix.dev/conda-forge/noarch/pybtex-0.24.0-pyhd8ed1ab_3.conda + url: https://conda.anaconda.org/conda-forge/noarch/pybtex-0.24.0-pyhd8ed1ab_3.conda hash: md5: 556a52a96313364aa79990ed1337b9a5 sha256: c87615fcc7327c5dcc247f309731c98f7b9867a48e6265e9584af6dc8cd82345 @@ -5594,7 +5595,7 @@ package: pyyaml: '>=3.01' setuptools: '' six: '' - url: https://repo.prefix.dev/conda-forge/noarch/pybtex-0.24.0-pyhd8ed1ab_3.conda + url: https://conda.anaconda.org/conda-forge/noarch/pybtex-0.24.0-pyhd8ed1ab_3.conda hash: md5: 556a52a96313364aa79990ed1337b9a5 sha256: c87615fcc7327c5dcc247f309731c98f7b9867a48e6265e9584af6dc8cd82345 @@ -5610,7 +5611,7 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* setuptools: '' - url: https://repo.prefix.dev/conda-forge/linux-64/pybtex-docutils-1.0.3-py310hff52083_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/pybtex-docutils-1.0.3-py310hff52083_2.conda hash: md5: e9a2e0883b856ff34cea07ff02f702d3 sha256: c19926680a369df0a45f61bb1762e3e722afc9e28b7f50a4dc053435a322dbdc @@ -5626,7 +5627,7 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* setuptools: '' - url: https://repo.prefix.dev/conda-forge/win-64/pybtex-docutils-1.0.3-py310h5588dad_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/pybtex-docutils-1.0.3-py310h5588dad_2.conda hash: md5: 0caf4a3d5cf845e8d693e7f9bc8a7182 sha256: 1a6a996ff1bfb607f88d71dbbee0df3cfe71ca135f7d42583f0e548b5e55d9d2 @@ -5638,7 +5639,7 @@ package: platform: linux-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda hash: md5: 12c566707c80111f9799308d9e265aef sha256: 79db7928d13fab2d892592223d7570f5061c192f27b9febd1a418427b719acc6 @@ -5650,14 +5651,14 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda hash: md5: 12c566707c80111f9799308d9e265aef sha256: 79db7928d13fab2d892592223d7570f5061c192f27b9febd1a418427b719acc6 category: main optional: false - name: pydantic - version: 2.11.4 + version: 2.11.7 manager: conda platform: linux-64 dependencies: @@ -5667,14 +5668,14 @@ package: typing-extensions: '>=4.6.1' typing-inspection: '>=0.4.0' typing_extensions: '>=4.12.2' - url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.4-pyh3cfb1c2_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.11.7-pyh3cfb1c2_0.conda hash: - md5: 8ad3ad8db5ce2ba470c9facc37af00a9 - sha256: a522473505ac6a9c10bb304d7338459a406ba22a6d3bb1a355c1b5283553a372 + md5: 1b337e3d378cde62889bb735c024b7a2 + sha256: ee7823e8bc227f804307169870905ce062531d36c1dcf3d431acd65c6e0bd674 category: main optional: false - name: pydantic - version: 2.11.4 + version: 2.11.7 manager: conda platform: win-64 dependencies: @@ -5684,10 +5685,10 @@ package: typing-extensions: '>=4.6.1' typing-inspection: '>=0.4.0' typing_extensions: '>=4.12.2' - url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.4-pyh3cfb1c2_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.11.7-pyh3cfb1c2_0.conda hash: - md5: 8ad3ad8db5ce2ba470c9facc37af00a9 - sha256: a522473505ac6a9c10bb304d7338459a406ba22a6d3bb1a355c1b5283553a372 + md5: 1b337e3d378cde62889bb735c024b7a2 + sha256: ee7823e8bc227f804307169870905ce062531d36c1dcf3d431acd65c6e0bd674 category: main optional: false - name: pydantic-core @@ -5700,7 +5701,7 @@ 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.2-py310hbcd0ec0_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/pydantic-core-2.33.2-py310hbcd0ec0_0.conda hash: md5: 6b210a72e9e1b1cb6d30b266b84ca993 sha256: 8da9aed7f21d775a7c91db6c9f95a0e00cae2d132709d5dc608c2e6828f9344b @@ -5717,7 +5718,7 @@ 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.2-py310hed05c55_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/pydantic-core-2.33.2-py310hed05c55_0.conda hash: md5: 59065d98ab806083a5432d92073f1c75 sha256: 657b2097148533aa9665678b85c94bb3cf4df015605f233f374243d4697ccd03 @@ -5737,7 +5738,7 @@ package: python: '>=3.9' sphinx: '>=5.0' typing_extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/pydata-sphinx-theme-0.15.4-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pydata-sphinx-theme-0.15.4-pyhd8ed1ab_0.conda hash: md5: c7c50dd5192caa58a05e6a4248a27acb sha256: 5ec877142ded763061e114e787a4e201c2fb3f0b1db2f04ace610a1187bb34ae @@ -5757,7 +5758,7 @@ package: python: '>=3.9' sphinx: '>=5.0' typing_extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/pydata-sphinx-theme-0.15.4-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pydata-sphinx-theme-0.15.4-pyhd8ed1ab_0.conda hash: md5: c7c50dd5192caa58a05e6a4248a27acb sha256: 5ec877142ded763061e114e787a4e201c2fb3f0b1db2f04ace610a1187bb34ae @@ -5775,7 +5776,7 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* scipy: '>=0.13' - url: https://repo.prefix.dev/conda-forge/linux-64/pydiso-0.1.2-py310h69a6472_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/pydiso-0.1.2-py310h69a6472_0.conda hash: md5: d4ab7c8858c0f0db75600239c09b38d5 sha256: bfaa4f0455b0e3c4f7c535c8e1a3bd4ad1c3a546807647490871f4c3a6106b20 @@ -5794,7 +5795,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/pydiso-0.1.2-py310h8f92c26_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/pydiso-0.1.2-py310h8f92c26_0.conda hash: md5: 8b436acfa40172914304ac42a6387351 sha256: d86c167db66ccc00a45736f27a485c394713f075a91a18eb02e3416b8e5b4fdc @@ -5806,7 +5807,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda hash: md5: 232fb4577b6687b2d503ef8e254270c9 sha256: 28a3e3161390a9d23bc02b4419448f8d27679d9e2c250e29849e37749c8de86b @@ -5818,7 +5819,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda hash: md5: 232fb4577b6687b2d503ef8e254270c9 sha256: 28a3e3161390a9d23bc02b4419448f8d27679d9e2c250e29849e37749c8de86b @@ -5839,7 +5840,7 @@ 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.7-pyhe01879c_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pylint-3.3.7-pyhe01879c_0.conda hash: md5: fad6b90165dcf39e3ac79de5dbc030a8 sha256: 6a1dc262763220c9dc046400d8655ebe58ad4d81e872be7264af5137f906e220 @@ -5860,7 +5861,7 @@ 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.7-pyhe01879c_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pylint-3.3.7-pyhe01879c_0.conda hash: md5: fad6b90165dcf39e3ac79de5dbc030a8 sha256: 6a1dc262763220c9dc046400d8655ebe58ad4d81e872be7264af5137f906e220 @@ -5876,7 +5877,7 @@ package: pydiso: '>=0.1' python: '>=3.10' scipy: '>=1.8' - url: https://repo.prefix.dev/conda-forge/noarch/pymatsolver-0.3.1-pyh48887ae_201.conda + url: https://conda.anaconda.org/conda-forge/noarch/pymatsolver-0.3.1-pyh48887ae_201.conda hash: md5: b6805e522702eabf2ebbd236490d5eed sha256: d49ad9b58b9eeae204a3677cafc389c00c7f0f830ef76f481ab9aaf3e0260bad @@ -5892,7 +5893,7 @@ package: pydiso: '>=0.1' python: '>=3.10' scipy: '>=1.8' - url: https://repo.prefix.dev/conda-forge/noarch/pymatsolver-0.3.1-pyh48887ae_201.conda + url: https://conda.anaconda.org/conda-forge/noarch/pymatsolver-0.3.1-pyh48887ae_201.conda hash: md5: b6805e522702eabf2ebbd236490d5eed sha256: d49ad9b58b9eeae204a3677cafc389c00c7f0f830ef76f481ab9aaf3e0260bad @@ -5904,7 +5905,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pyparsing-3.2.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.2.3-pyhd8ed1ab_1.conda hash: md5: 513d3c262ee49b54a8fec85c5bc99764 sha256: b92afb79b52fcf395fd220b29e0dd3297610f2059afac45298d44e00fcbf23b6 @@ -5916,7 +5917,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pyparsing-3.2.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.2.3-pyhd8ed1ab_1.conda hash: md5: 513d3c262ee49b54a8fec85c5bc99764 sha256: b92afb79b52fcf395fd220b29e0dd3297610f2059afac45298d44e00fcbf23b6 @@ -5929,7 +5930,7 @@ package: dependencies: __unix: '' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pysocks-1.7.1-pyha55dd90_7.conda + url: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha55dd90_7.conda hash: md5: 461219d1a5bd61342293efa2c0c90eac sha256: ba3b032fa52709ce0d9fd388f63d330a026754587a2f461117cac9ab73d8d0d8 @@ -5943,14 +5944,14 @@ package: __win: '' python: '>=3.9' win_inet_pton: '' - url: https://repo.prefix.dev/conda-forge/noarch/pysocks-1.7.1-pyh09c184e_7.conda + url: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyh09c184e_7.conda hash: md5: e2fd202833c4a981ce8a65974fe4abd1 sha256: d016e04b0e12063fbee4a2d5fbb9b39a8d191b5a0042f0b8459188aedeabb0ca category: main optional: false - name: pytest - version: 8.4.0 + version: 8.4.1 manager: conda platform: linux-64 dependencies: @@ -5962,14 +5963,14 @@ package: pygments: '>=2.7.2' python: '>=3.9' tomli: '>=1' - url: https://repo.prefix.dev/conda-forge/noarch/pytest-8.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pytest-8.4.1-pyhd8ed1ab_0.conda hash: - md5: 516d31f063ce7e49ced17f105b63a1f1 - sha256: f8c5a65ff4216f7c0a9be1708be1ee1446ad678da5a01eeb2437551156e32a06 + md5: a49c2283f24696a7b30367b7346a0144 + sha256: 93e267e4ec35353e81df707938a6527d5eb55c97bf54c3b87229b69523afb59d category: dev optional: true - name: pytest - version: 8.4.0 + version: 8.4.1 manager: conda platform: win-64 dependencies: @@ -5981,14 +5982,14 @@ package: pygments: '>=2.7.2' python: '>=3.9' tomli: '>=1' - url: https://repo.prefix.dev/conda-forge/noarch/pytest-8.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pytest-8.4.1-pyhd8ed1ab_0.conda hash: - md5: 516d31f063ce7e49ced17f105b63a1f1 - sha256: f8c5a65ff4216f7c0a9be1708be1ee1446ad678da5a01eeb2437551156e32a06 + md5: a49c2283f24696a7b30367b7346a0144 + sha256: 93e267e4ec35353e81df707938a6527d5eb55c97bf54c3b87229b69523afb59d category: dev optional: true - name: pytest-cov - version: 6.1.1 + version: 6.2.1 manager: conda platform: linux-64 dependencies: @@ -5996,14 +5997,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://conda.anaconda.org/conda-forge/noarch/pytest-cov-6.2.1-pyhd8ed1ab_0.conda hash: - md5: 1e35d8f975bc0e984a19819aa91c440a - sha256: 9961a1524f63d10bc29efdc52013ec06b0e95fb2619a250e250ff3618261d5cd + md5: ce978e1b9ed8b8d49164e90a5cdc94cd + sha256: 3a9fc07be76bc67aef355b78816b5117bfe686e7d8c6f28b45a1f89afe104761 category: dev optional: true - name: pytest-cov - version: 6.1.1 + version: 6.2.1 manager: conda platform: win-64 dependencies: @@ -6011,10 +6012,10 @@ package: pytest: '>=4.6' python: '>=3.9' toml: '' - url: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-6.1.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/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 @@ -6040,7 +6041,7 @@ 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.18-hd6af730_0_cpython.conda + url: https://conda.anaconda.org/conda-forge/linux-64/python-3.10.18-hd6af730_0_cpython.conda hash: md5: 4ea0c77cdcb0b81813a0436b162d7316 sha256: 4111e5504fa4f4fb431d3a73fa606daccaf23a5a1da0f17a30db70ffad9336a7 @@ -6064,7 +6065,7 @@ 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.18-h8c5b53a_0_cpython.conda + url: https://conda.anaconda.org/conda-forge/win-64/python-3.10.18-h8c5b53a_0_cpython.conda hash: md5: f1775dab55c8a073ebd024bfb2f689c1 sha256: 548f9e542e72925d595c66191ffd17056f7c0029b7181e2d99dbef47e4f3f646 @@ -6077,7 +6078,7 @@ package: dependencies: python: '>=3.9' six: '>=1.5' - url: https://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda hash: md5: 5ba79d7c71f03c678c8ead841f347d6e sha256: a50052536f1ef8516ed11a844f9413661829aa083304dc624c5925298d078d79 @@ -6090,7 +6091,7 @@ package: dependencies: python: '>=3.9' six: '>=1.5' - url: https://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda hash: md5: 5ba79d7c71f03c678c8ead841f347d6e sha256: a50052536f1ef8516ed11a844f9413661829aa083304dc624c5925298d078d79 @@ -6102,7 +6103,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/python-fastjsonschema-2.21.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.21.1-pyhd8ed1ab_0.conda hash: md5: 38e34d2d1d9dca4fb2b9a0a04f604e2c sha256: 1b09a28093071c1874862422696429d0d35bd0b8420698003ac004746c5e82a2 @@ -6114,7 +6115,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/python-fastjsonschema-2.21.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.21.1-pyhd8ed1ab_0.conda hash: md5: 38e34d2d1d9dca4fb2b9a0a04f604e2c sha256: 1b09a28093071c1874862422696429d0d35bd0b8420698003ac004746c5e82a2 @@ -6126,7 +6127,7 @@ package: platform: linux-64 dependencies: python: '>=3.6' - url: https://repo.prefix.dev/conda-forge/noarch/python-json-logger-2.0.7-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/python-json-logger-2.0.7-pyhd8ed1ab_0.conda hash: md5: a61bf9ec79426938ff785eb69dbb1960 sha256: 4790787fe1f4e8da616edca4acf6a4f8ed4e7c6967aa31b920208fc8f95efcca @@ -6138,7 +6139,7 @@ package: platform: win-64 dependencies: python: '>=3.6' - url: https://repo.prefix.dev/conda-forge/noarch/python-json-logger-2.0.7-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/python-json-logger-2.0.7-pyhd8ed1ab_0.conda hash: md5: a61bf9ec79426938ff785eb69dbb1960 sha256: 4790787fe1f4e8da616edca4acf6a4f8ed4e7c6967aa31b920208fc8f95efcca @@ -6156,7 +6157,7 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* scipy: '>=1.8' - url: https://repo.prefix.dev/conda-forge/linux-64/python-mumps-0.0.3-py310h6410a28_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/python-mumps-0.0.3-py310h6410a28_0.conda hash: md5: f7e3766b109232dadef0cc072e1e3cc6 sha256: bf869230e332833c9f9f1908731a859c3b39a612e74ae8f65b5338d67795c613 @@ -6175,7 +6176,7 @@ 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-mumps-0.0.3-py310hb64895d_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/python-mumps-0.0.3-py310hb64895d_0.conda hash: md5: 477083091731501c8bef2fd4733ec23f sha256: 1461a60b36aa7b2189ad3bd0ca9bb356d42ea2e54c8aaf122826e9f8bd33735c @@ -6187,7 +6188,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/python-tzdata-2025.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2025.2-pyhd8ed1ab_0.conda hash: md5: 88476ae6ebd24f39261e0854ac244f33 sha256: e8392a8044d56ad017c08fec2b0eb10ae3d1235ac967d0aab8bd7b41c4a5eaf0 @@ -6199,7 +6200,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/python-tzdata-2025.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2025.2-pyhd8ed1ab_0.conda hash: md5: 88476ae6ebd24f39261e0854ac244f33 sha256: e8392a8044d56ad017c08fec2b0eb10ae3d1235ac967d0aab8bd7b41c4a5eaf0 @@ -6210,7 +6211,7 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/noarch/python_abi-3.10-7_cp310.conda + url: https://conda.anaconda.org/conda-forge/noarch/python_abi-3.10-7_cp310.conda hash: md5: 44e871cba2b162368476a84b8d040b6c sha256: 1316c66889313d9caebcfa5d5e9e6af25f8ba09396fc1bc196a08a3febbbabb8 @@ -6221,7 +6222,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/noarch/python_abi-3.10-7_cp310.conda + url: https://conda.anaconda.org/conda-forge/noarch/python_abi-3.10-7_cp310.conda hash: md5: 44e871cba2b162368476a84b8d040b6c sha256: 1316c66889313d9caebcfa5d5e9e6af25f8ba09396fc1bc196a08a3febbbabb8 @@ -6233,7 +6234,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda hash: md5: bc8e3267d44011051f2eb14d22fb0960 sha256: 8d2a8bf110cc1fc3df6904091dead158ba3e614d8402a83e51ed3a8aa93cdeb0 @@ -6245,7 +6246,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda hash: md5: bc8e3267d44011051f2eb14d22fb0960 sha256: 8d2a8bf110cc1fc3df6904091dead158ba3e614d8402a83e51ed3a8aa93cdeb0 @@ -6261,7 +6262,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/pywin32-307-py310h9e98ed7_3.conda + url: https://conda.anaconda.org/conda-forge/win-64/pywin32-307-py310h9e98ed7_3.conda hash: md5: 1fd1de4af8c39bb0efa5c9d5b092aa42 sha256: 712a131fadba8236830fc33d04154865a611e489f595b96370ade21cc2c1a5a2 @@ -6278,7 +6279,7 @@ package: vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' winpty: '' - url: https://repo.prefix.dev/conda-forge/win-64/pywinpty-2.0.15-py310h9e98ed7_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/pywinpty-2.0.15-py310h9e98ed7_0.conda hash: md5: f49c829097b0b3074801911047e4fd70 sha256: ca5952309c4faa76c617488da87ac8b77dbeb86b4dae7b767211b2ededf98575 @@ -6294,7 +6295,7 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* yaml: '>=0.2.5,<0.3.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/pyyaml-6.0.2-py310h89163eb_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0.2-py310h89163eb_2.conda hash: md5: fd343408e64cf1e273ab7c710da374db sha256: 5fba7f5babcac872c72f6509c25331bcfac4f8f5031f0102530a41b41336fce6 @@ -6311,14 +6312,14 @@ package: vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' yaml: '>=0.2.5,<0.3.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/pyyaml-6.0.2-py310h38315fa_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/pyyaml-6.0.2-py310h38315fa_2.conda hash: md5: 9986c3731bb820db0830dd0825c26cf9 sha256: 49dd492bdf2c479118ca9d61a59ce259594853d367a1a0548926f41a6e734724 category: main optional: false - name: pyzmq - version: 26.4.0 + version: 27.0.0 manager: conda platform: linux-64 dependencies: @@ -6329,14 +6330,14 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* zeromq: '>=4.3.5,<4.4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/pyzmq-26.4.0-py310h71f11fc_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/pyzmq-27.0.0-py310h71f11fc_0.conda hash: - md5: 4859978df0e6408e439cb6badfbb3c5d - sha256: 2c93bcd81c1dadeb9b57bc4c833b3638f518f9b960fc1a928d4670abffd25017 + md5: de862cdd8a959ac9a751fd8a5f7dc82d + sha256: dfcd2fc9c015b220da06a96886c7d7185794cb6383a75dbb90704d8a974ec2a8 category: dev optional: true - name: pyzmq - version: 26.4.0 + version: 27.0.0 manager: conda platform: win-64 dependencies: @@ -6347,10 +6348,10 @@ package: vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' zeromq: '>=4.3.5,<4.3.6.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/pyzmq-26.4.0-py310h656833d_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/pyzmq-27.0.0-py310h656833d_0.conda hash: - md5: dd340eeec5732405db972695aceb24f5 - sha256: 02657a2503ebdc5ed6d64f14f50f129d27309ded9862c214dd5cfd45ed64398c + md5: 3a89550776350a08c0763ee60a0f07dd + sha256: d3ead56c27a0aba2432343cde83aa4bc7948cf525ace92f676043c25a87b224b category: dev optional: true - name: readline @@ -6360,7 +6361,7 @@ package: dependencies: libgcc: '>=13' ncurses: '>=6.5,<7.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda hash: md5: 283b96675859b20a825f8fa30f311446 sha256: 2d6d0c026902561ed77cd646b5021aef2d4db22e57a5b0178dfc669231e06d2c @@ -6375,7 +6376,7 @@ package: packaging: '' python: '>=3.9' requests: '' - url: https://repo.prefix.dev/conda-forge/noarch/readthedocs-sphinx-ext-2.2.5-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/readthedocs-sphinx-ext-2.2.5-pyhd8ed1ab_1.conda hash: md5: 42840a95562a02bef45e7b7fb24dcba4 sha256: e391356581919077b1639ebd13f4cbb0773acfd5710cfe4188921e8a0387dc6b @@ -6390,7 +6391,7 @@ package: packaging: '' python: '>=3.9' requests: '' - url: https://repo.prefix.dev/conda-forge/noarch/readthedocs-sphinx-ext-2.2.5-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/readthedocs-sphinx-ext-2.2.5-pyhd8ed1ab_1.conda hash: md5: 42840a95562a02bef45e7b7fb24dcba4 sha256: e391356581919077b1639ebd13f4cbb0773acfd5710cfe4188921e8a0387dc6b @@ -6405,7 +6406,7 @@ package: python: '' rpds-py: '>=0.7.0' typing_extensions: '>=4.4.0' - url: https://repo.prefix.dev/conda-forge/noarch/referencing-0.36.2-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/referencing-0.36.2-pyh29332c3_0.conda hash: md5: 9140f1c09dd5489549c6a33931b943c7 sha256: e20909f474a6cece176dfc0dc1addac265deb5fa92ea90e975fbca48085b20c3 @@ -6420,7 +6421,7 @@ package: python: '>=3.9' rpds-py: '>=0.7.0' typing_extensions: '>=4.4.0' - url: https://repo.prefix.dev/conda-forge/noarch/referencing-0.36.2-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/referencing-0.36.2-pyh29332c3_0.conda hash: md5: 9140f1c09dd5489549c6a33931b943c7 sha256: e20909f474a6cece176dfc0dc1addac265deb5fa92ea90e975fbca48085b20c3 @@ -6436,7 +6437,7 @@ package: idna: '>=2.5,<4' python: '>=3.9' urllib3: '>=1.21.1,<3' - url: https://repo.prefix.dev/conda-forge/noarch/requests-2.32.4-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.4-pyhd8ed1ab_0.conda hash: md5: f6082eae112814f1447b56a5e1f6ed05 sha256: 9866aaf7a13c6cfbe665ec7b330647a0fb10a81e6f9b8fee33642232a1920e18 @@ -6452,7 +6453,7 @@ package: idna: '>=2.5,<4' python: '>=3.9' urllib3: '>=1.21.1,<3' - url: https://repo.prefix.dev/conda-forge/noarch/requests-2.32.4-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.4-pyhd8ed1ab_0.conda hash: md5: f6082eae112814f1447b56a5e1f6ed05 sha256: 9866aaf7a13c6cfbe665ec7b330647a0fb10a81e6f9b8fee33642232a1920e18 @@ -6465,7 +6466,7 @@ package: dependencies: python: '>=3.9' six: '' - url: https://repo.prefix.dev/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_1.conda hash: md5: 36de09a8d3e5d5e6f4ee63af49e59706 sha256: 2e4372f600490a6e0b3bac60717278448e323cab1c0fecd5f43f7c56535a99c5 @@ -6478,7 +6479,7 @@ package: dependencies: python: '>=3.9' six: '' - url: https://repo.prefix.dev/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_1.conda hash: md5: 36de09a8d3e5d5e6f4ee63af49e59706 sha256: 2e4372f600490a6e0b3bac60717278448e323cab1c0fecd5f43f7c56535a99c5 @@ -6490,7 +6491,7 @@ package: platform: linux-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2 hash: md5: 912a71cc01012ee38e6b90ddd561e36f sha256: 2a5b495a1de0f60f24d8a74578ebc23b24aa53279b1ad583755f223097c41c37 @@ -6502,7 +6503,7 @@ package: platform: win-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2 hash: md5: 912a71cc01012ee38e6b90ddd561e36f sha256: 2a5b495a1de0f60f24d8a74578ebc23b24aa53279b1ad583755f223097c41c37 @@ -6517,7 +6518,7 @@ package: libgcc: '>=13' python: '' python_abi: 3.10.* - url: https://repo.prefix.dev/conda-forge/linux-64/rpds-py-0.25.1-py310hbcd0ec0_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/rpds-py-0.25.1-py310hbcd0ec0_0.conda hash: md5: 64634e6d94c79af4c01725e05e1782d7 sha256: 8b5b5039b26d98ab6c87c7eb6cf232a4741c96d96e43902a15e6586c4acc5eed @@ -6533,7 +6534,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/rpds-py-0.25.1-py310hed05c55_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/rpds-py-0.25.1-py310hed05c55_0.conda hash: md5: 33ae8269be085b0103aacda23205f86b sha256: ef0525e1c1cda25d4455d2ab8935673a71b49b9a2d5c152cdbfc765ad091dd53 @@ -6553,7 +6554,7 @@ package: python_abi: 3.10.* scipy: '' threadpoolctl: '>=2.0.0' - url: https://repo.prefix.dev/conda-forge/linux-64/scikit-learn-1.4.2-py310h981052a_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/scikit-learn-1.4.2-py310h981052a_1.conda hash: md5: 672f0238a945f1c98fe97b147c8a040a sha256: b3718226723c94f5a93f417acb29ad82b0520acf945a06ae90e0b7ed076191a7 @@ -6573,7 +6574,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/scikit-learn-1.4.2-py310hf2a6c47_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/scikit-learn-1.4.2-py310hf2a6c47_1.conda hash: md5: 9142e7e901c0f6e76541b523d480043e sha256: 24e9f3db0a2f477cbe20d1c98b48edd0d768af21dd7e6c3553e286f01deabfe5 @@ -6595,7 +6596,7 @@ package: numpy: '>=1.23.5' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://repo.prefix.dev/conda-forge/linux-64/scipy-1.14.1-py310hfcf56fc_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/scipy-1.14.1-py310hfcf56fc_2.conda hash: md5: b5d548b2a7cf8d0c74fc6c4bf42d1ca5 sha256: a15008a51fd6b6dcaeb5563869ff0a8a015f1e0a8634a9d89d2c189eefbd7182 @@ -6615,7 +6616,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/scipy-1.14.1-py310hbd0dde3_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/scipy-1.14.1-py310hbd0dde3_2.conda hash: md5: 72a2a7c264a8b48d113111756c2bbbb4 sha256: 761829fa9c91fdffff0ba5a1f56f7d4cc00bec71ca7fa06859dc7f5a98117273 @@ -6628,7 +6629,7 @@ package: dependencies: __linux: '' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/send2trash-1.8.3-pyh0d859eb_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/send2trash-1.8.3-pyh0d859eb_1.conda hash: md5: 938c8de6b9de091997145b3bf25cdbf9 sha256: 00926652bbb8924e265caefdb1db100f86a479e8f1066efe395d5552dde54d02 @@ -6642,7 +6643,7 @@ package: __win: '' python: '>=3.9' pywin32: '' - url: https://repo.prefix.dev/conda-forge/noarch/send2trash-1.8.3-pyh5737063_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/send2trash-1.8.3-pyh5737063_1.conda hash: md5: e6a4e906051565caf5fdae5b0415b654 sha256: ba8b93df52e0d625177907852340d735026c81118ac197f61f1f5baea19071ad @@ -6654,7 +6655,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda hash: md5: 4de79c071274a53dcaf2a8c749d1499e sha256: 972560fcf9657058e3e1f97186cc94389144b46dbdf58c807ce62e83f977e863 @@ -6666,7 +6667,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda hash: md5: 4de79c071274a53dcaf2a8c749d1499e sha256: 972560fcf9657058e3e1f97186cc94389144b46dbdf58c807ce62e83f977e863 @@ -6678,7 +6679,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda hash: md5: a451d576819089b0d672f18768be0f65 sha256: 41db0180680cc67c3fa76544ffd48d6a5679d96f4b71d7498a759e94edc9a2db @@ -6690,7 +6691,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda hash: md5: a451d576819089b0d672f18768be0f65 sha256: 41db0180680cc67c3fa76544ffd48d6a5679d96f4b71d7498a759e94edc9a2db @@ -6702,7 +6703,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_1.conda hash: md5: bf7a226e58dfb8346c70df36065d86c9 sha256: c2248418c310bdd1719b186796ae50a8a77ce555228b6acd32768e2543a15012 @@ -6714,7 +6715,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_1.conda hash: md5: bf7a226e58dfb8346c70df36065d86c9 sha256: c2248418c310bdd1719b186796ae50a8a77ce555228b6acd32768e2543a15012 @@ -6726,7 +6727,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/snowballstemmer-3.0.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/snowballstemmer-3.0.1-pyhd8ed1ab_0.conda hash: md5: 755cf22df8693aa0d1aec1c123fa5863 sha256: 17007a4cfbc564dc3e7310dcbe4932c6ecb21593d4fec3c68610720f19e73fb2 @@ -6738,7 +6739,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/snowballstemmer-3.0.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/snowballstemmer-3.0.1-pyhd8ed1ab_0.conda hash: md5: 755cf22df8693aa0d1aec1c123fa5863 sha256: 17007a4cfbc564dc3e7310dcbe4932c6ecb21593d4fec3c68610720f19e73fb2 @@ -6750,7 +6751,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_1.conda hash: md5: 0401a17ae845fa72c7210e206ec5647d sha256: d1e3e06b5cf26093047e63c8cc77b70d970411c5cbc0cb1fad461a8a8df599f7 @@ -6762,7 +6763,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_1.conda hash: md5: 0401a17ae845fa72c7210e206ec5647d sha256: d1e3e06b5cf26093047e63c8cc77b70d970411c5cbc0cb1fad461a8a8df599f7 @@ -6774,7 +6775,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.7-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.7-pyhd8ed1ab_0.conda hash: md5: fb32097c717486aa34b38a9db57eb49e sha256: 7518506cce9a736042132f307b3f4abce63bf076f5fb07c1f4e506c0b214295a @@ -6786,7 +6787,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.7-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.7-pyhd8ed1ab_0.conda hash: md5: fb32097c717486aa34b38a9db57eb49e sha256: 7518506cce9a736042132f307b3f4abce63bf076f5fb07c1f4e506c0b214295a @@ -6815,7 +6816,7 @@ package: sphinxcontrib-jsmath: '' sphinxcontrib-qthelp: '' sphinxcontrib-serializinghtml: '>=1.1.5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-5.3.0-pyhd8ed1ab_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-5.3.0-pyhd8ed1ab_0.tar.bz2 hash: md5: f9e1fcfe235d655900bfeb6aee426472 sha256: f11fd5fb4ae2c65f41ae86e7408e3ab44844898d928264aa9e89929fffc685c8 @@ -6844,7 +6845,7 @@ package: sphinxcontrib-jsmath: '' sphinxcontrib-qthelp: '' sphinxcontrib-serializinghtml: '>=1.1.5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-5.3.0-pyhd8ed1ab_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-5.3.0-pyhd8ed1ab_0.tar.bz2 hash: md5: f9e1fcfe235d655900bfeb6aee426472 sha256: f11fd5fb4ae2c65f41ae86e7408e3ab44844898d928264aa9e89929fffc685c8 @@ -6858,7 +6859,7 @@ package: pydata-sphinx-theme: '>=0.15.2' python: '>=3.9' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-book-theme-1.1.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-book-theme-1.1.3-pyhd8ed1ab_1.conda hash: md5: 501e2d6d8aa1b8d82d2707ce8c90b287 sha256: cf1d3ae6d28042954ac750f6948678fefa619681c3994d2637d747d96a1139ea @@ -6872,7 +6873,7 @@ package: pydata-sphinx-theme: '>=0.15.2' python: '>=3.9' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-book-theme-1.1.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-book-theme-1.1.3-pyhd8ed1ab_1.conda hash: md5: 501e2d6d8aa1b8d82d2707ce8c90b287 sha256: cf1d3ae6d28042954ac750f6948678fefa619681c3994d2637d747d96a1139ea @@ -6885,7 +6886,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=1.8' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-comments-0.0.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-comments-0.0.3-pyhd8ed1ab_1.conda hash: md5: 30e02fa8e40287da066e348c95ff5609 sha256: 00129f91b905441a9e27c46ef32c22617743eb4a4f7207e1dd84bc19505d4381 @@ -6898,7 +6899,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=1.8' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-comments-0.0.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-comments-0.0.3-pyhd8ed1ab_1.conda hash: md5: 30e02fa8e40287da066e348c95ff5609 sha256: 00129f91b905441a9e27c46ef32c22617743eb4a4f7207e1dd84bc19505d4381 @@ -6911,7 +6912,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=1.8' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-copybutton-0.5.2-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-copybutton-0.5.2-pyhd8ed1ab_1.conda hash: md5: bf22cb9c439572760316ce0748af3713 sha256: 8cd892e49cb4d00501bc4439fb0c73ca44905f01a65b2b7fa05ba0e8f3924f19 @@ -6924,7 +6925,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=1.8' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-copybutton-0.5.2-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-copybutton-0.5.2-pyhd8ed1ab_1.conda hash: md5: bf22cb9c439572760316ce0748af3713 sha256: 8cd892e49cb4d00501bc4439fb0c73ca44905f01a65b2b7fa05ba0e8f3924f19 @@ -6937,7 +6938,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5,<8' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-design-0.6.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-design-0.6.1-pyhd8ed1ab_0.conda hash: md5: 51b2433e4a223b14defee96d3caf9bab sha256: 99a44df1d09a27e40002ebaf76792dac75c9cb1386af313b272a4251c8047640 @@ -6950,7 +6951,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5,<8' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-design-0.6.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-design-0.6.1-pyhd8ed1ab_0.conda hash: md5: 51b2433e4a223b14defee96d3caf9bab sha256: 99a44df1d09a27e40002ebaf76792dac75c9cb1386af313b272a4251c8047640 @@ -6965,7 +6966,7 @@ package: python: '>=3.9' pyyaml: '' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-external-toc-1.0.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-external-toc-1.0.1-pyhd8ed1ab_1.conda hash: md5: d248f9db0f1c2e7c480b058925afa9c5 sha256: 47dda7135f9fb1777b7066c3b9260fdd796d6ec2aeb8804161f39c65b3461401 @@ -6980,7 +6981,7 @@ package: python: '>=3.9' pyyaml: '' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-external-toc-1.0.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-external-toc-1.0.1-pyhd8ed1ab_1.conda hash: md5: d248f9db0f1c2e7c480b058925afa9c5 sha256: 47dda7135f9fb1777b7066c3b9260fdd796d6ec2aeb8804161f39c65b3461401 @@ -6994,7 +6995,7 @@ package: packaging: '' python: '>=3.9' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-jupyterbook-latex-1.0.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-jupyterbook-latex-1.0.0-pyhd8ed1ab_1.conda hash: md5: 9261bc5d987013f5d8dc58061c34f1a3 sha256: b64c031795918f26ddeb5148ede2d3a4944cd9f5461cf72bde3f28acdc71d2f3 @@ -7008,7 +7009,7 @@ package: packaging: '' python: '>=3.9' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-jupyterbook-latex-1.0.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-jupyterbook-latex-1.0.0-pyhd8ed1ab_1.conda hash: md5: 9261bc5d987013f5d8dc58061c34f1a3 sha256: b64c031795918f26ddeb5148ede2d3a4944cd9f5461cf72bde3f28acdc71d2f3 @@ -7021,7 +7022,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=3' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-multitoc-numbering-0.1.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-multitoc-numbering-0.1.3-pyhd8ed1ab_1.conda hash: md5: cc5fc0988f0fedab436361b9b5906a58 sha256: 9fa48b33334c3a9971c96dd3d921950e8350cfa88a8e8ebaec6d8261071ea2ac @@ -7034,7 +7035,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=3' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-multitoc-numbering-0.1.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-multitoc-numbering-0.1.3-pyhd8ed1ab_1.conda hash: md5: cc5fc0988f0fedab436361b9b5906a58 sha256: 9fa48b33334c3a9971c96dd3d921950e8350cfa88a8e8ebaec6d8261071ea2ac @@ -7047,7 +7048,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=4' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-thebe-0.3.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-thebe-0.3.1-pyhd8ed1ab_1.conda hash: md5: f6627ce09745a0f822cc6e7de8cf4f99 sha256: 9d0cd52edcb2274bf7c8e9327317d9bb48e1d092afeaed093e0242876ad3c008 @@ -7060,7 +7061,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=4' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-thebe-0.3.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-thebe-0.3.1-pyhd8ed1ab_1.conda hash: md5: f6627ce09745a0f822cc6e7de8cf4f99 sha256: 9d0cd52edcb2274bf7c8e9327317d9bb48e1d092afeaed093e0242876ad3c008 @@ -7074,7 +7075,7 @@ package: docutils: '' python: '>=3.6' sphinx: '' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-togglebutton-0.3.2-pyhd8ed1ab_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-togglebutton-0.3.2-pyhd8ed1ab_0.tar.bz2 hash: md5: 382738101934261ea7931d1460e64868 sha256: 0dcee238aae6337fae5eaf1f9a29b0c51ed9834ae501fccb2cde0fed8dae1a88 @@ -7088,7 +7089,7 @@ package: docutils: '' python: '>=3.6' sphinx: '' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-togglebutton-0.3.2-pyhd8ed1ab_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-togglebutton-0.3.2-pyhd8ed1ab_0.tar.bz2 hash: md5: 382738101934261ea7931d1460e64868 sha256: 0dcee238aae6337fae5eaf1f9a29b0c51ed9834ae501fccb2cde0fed8dae1a88 @@ -7101,7 +7102,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 16e3f039c0aa6446513e94ab18a8784b sha256: d7433a344a9ad32a680b881c81b0034bc61618d12c39dd6e3309abeffa9577ba @@ -7114,7 +7115,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 16e3f039c0aa6446513e94ab18a8784b sha256: d7433a344a9ad32a680b881c81b0034bc61618d12c39dd6e3309abeffa9577ba @@ -7132,7 +7133,7 @@ package: pybtex-docutils: '>=1' python: '>=3.6' sphinx: '>=2.1' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-bibtex-2.5.0-pyhd8ed1ab_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-bibtex-2.5.0-pyhd8ed1ab_0.tar.bz2 hash: md5: b2e5c9aece936ebf9f26abdf71ddd74b sha256: d5b02d285909b4501a469857b1a88a91a849d5f28bbe64b9e6c3e86d2388d345 @@ -7150,7 +7151,7 @@ package: pybtex-docutils: '>=1' python: '>=3.6' sphinx: '>=2.1' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-bibtex-2.5.0-pyhd8ed1ab_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-bibtex-2.5.0-pyhd8ed1ab_0.tar.bz2 hash: md5: b2e5c9aece936ebf9f26abdf71ddd74b sha256: d5b02d285909b4501a469857b1a88a91a849d5f28bbe64b9e6c3e86d2388d345 @@ -7163,7 +7164,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 910f28a05c178feba832f842155cbfff sha256: 55d5076005d20b84b20bee7844e686b7e60eb9f683af04492e598a622b12d53d @@ -7176,7 +7177,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 910f28a05c178feba832f842155cbfff sha256: 55d5076005d20b84b20bee7844e686b7e60eb9f683af04492e598a622b12d53d @@ -7189,7 +7190,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_1.conda hash: md5: e9fb3fe8a5b758b4aff187d434f94f03 sha256: c1492c0262ccf16694bdcd3bb62aa4627878ea8782d5cd3876614ffeb62b3996 @@ -7202,7 +7203,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_1.conda hash: md5: e9fb3fe8a5b758b4aff187d434f94f03 sha256: c1492c0262ccf16694bdcd3bb62aa4627878ea8782d5cd3876614ffeb62b3996 @@ -7214,7 +7215,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_1.conda hash: md5: fa839b5ff59e192f411ccc7dae6588bb sha256: 578bef5ec630e5b2b8810d898bbbf79b9ae66d49b7938bcc3efc364e679f2a62 @@ -7226,7 +7227,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_1.conda hash: md5: fa839b5ff59e192f411ccc7dae6588bb sha256: 578bef5ec630e5b2b8810d898bbbf79b9ae66d49b7938bcc3efc364e679f2a62 @@ -7239,7 +7240,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 00534ebcc0375929b45c3039b5ba7636 sha256: c664fefae4acdb5fae973bdde25836faf451f41d04342b64a358f9a7753c92ca @@ -7252,7 +7253,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 00534ebcc0375929b45c3039b5ba7636 sha256: c664fefae4acdb5fae973bdde25836faf451f41d04342b64a358f9a7753c92ca @@ -7265,7 +7266,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda hash: md5: 3bc61f7161d28137797e038263c04c54 sha256: 64d89ecc0264347486971a94487cb8d7c65bfc0176750cf7502b8a272f4ab557 @@ -7278,7 +7279,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda hash: md5: 3bc61f7161d28137797e038263c04c54 sha256: 64d89ecc0264347486971a94487cb8d7c65bfc0176750cf7502b8a272f4ab557 @@ -7295,7 +7296,7 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* typing-extensions: '>=4.6.0' - url: https://repo.prefix.dev/conda-forge/linux-64/sqlalchemy-2.0.41-py310ha75aee5_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/sqlalchemy-2.0.41-py310ha75aee5_0.conda hash: md5: 2e094069427f77f063d1b74fa60a572f sha256: c8af09cc492de45bb8b1af4c5af6bb0d3de0fb5c7b1a706147baf0dcfd6e3e6e @@ -7313,7 +7314,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/sqlalchemy-2.0.41-py310ha8f682b_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/sqlalchemy-2.0.41-py310ha8f682b_0.conda hash: md5: 06c80500757e4fa827cfb40b4cdd5b00 sha256: dcf353fdff1d5ee6e3258917633619f4330b99f892618decc535883a72eb38dc @@ -7328,7 +7329,7 @@ package: executing: '' pure_eval: '' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda hash: md5: b1b505328da7a6b246787df4b5a49fbc sha256: 570da295d421661af487f1595045760526964f41471021056e993e73089e9c41 @@ -7343,7 +7344,7 @@ package: executing: '' pure_eval: '' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda hash: md5: b1b505328da7a6b246787df4b5a49fbc sha256: 570da295d421661af487f1595045760526964f41471021056e993e73089e9c41 @@ -7355,7 +7356,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tabulate-0.9.0-pyhd8ed1ab_2.conda + url: https://conda.anaconda.org/conda-forge/noarch/tabulate-0.9.0-pyhd8ed1ab_2.conda hash: md5: 959484a66b4b76befcddc4fa97c95567 sha256: 090023bddd40d83468ef86573976af8c514f64119b2bd814ee63a838a542720a @@ -7367,7 +7368,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tabulate-0.9.0-pyhd8ed1ab_2.conda + url: https://conda.anaconda.org/conda-forge/noarch/tabulate-0.9.0-pyhd8ed1ab_2.conda hash: md5: 959484a66b4b76befcddc4fa97c95567 sha256: 090023bddd40d83468ef86573976af8c514f64119b2bd814ee63a838a542720a @@ -7382,7 +7383,7 @@ package: libgcc: '>=13' libhwloc: '>=2.11.2,<2.11.3.0a0' libstdcxx: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/tbb-2021.13.0-hceb3a55_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/tbb-2021.13.0-hceb3a55_1.conda hash: md5: ba7726b8df7b9d34ea80e82b097a4893 sha256: 65463732129899770d54b1fbf30e1bb82fdebda9d7553caf08d23db4590cd691 @@ -7397,7 +7398,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/tbb-2021.13.0-h62715c5_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/tbb-2021.13.0-h62715c5_1.conda hash: md5: 9190dd0a23d925f7602f9628b3aed511 sha256: 03cc5442046485b03dd1120d0f49d35a7e522930a2ab82f275e938e17b07b302 @@ -7409,7 +7410,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tblib-3.1.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/tblib-3.1.0-pyhd8ed1ab_0.conda hash: md5: a15c62b8a306b8978f094f76da2f903f sha256: a83c83f5e622a2f34fb1d179c55c3ff912429cd0a54f9f3190ae44a0fdba2ad2 @@ -7421,7 +7422,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tblib-3.1.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/tblib-3.1.0-pyhd8ed1ab_0.conda hash: md5: a15c62b8a306b8978f094f76da2f903f sha256: a83c83f5e622a2f34fb1d179c55c3ff912429cd0a54f9f3190ae44a0fdba2ad2 @@ -7436,7 +7437,7 @@ package: ptyprocess: '' python: '>=3.8' tornado: '>=6.1.0' - url: https://repo.prefix.dev/conda-forge/noarch/terminado-0.18.1-pyh0d859eb_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/terminado-0.18.1-pyh0d859eb_0.conda hash: md5: efba281bbdae5f6b0a1d53c6d4a97c93 sha256: b300557c0382478cf661ddb520263508e4b3b5871b471410450ef2846e8c352c @@ -7451,7 +7452,7 @@ package: python: '>=3.8' pywinpty: '>=1.1.0' tornado: '>=6.1.0' - url: https://repo.prefix.dev/conda-forge/noarch/terminado-0.18.1-pyh5737063_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/terminado-0.18.1-pyh5737063_0.conda hash: md5: 4abd500577430a942a995fd0d09b76a2 sha256: 8cb078291fd7882904e3de594d299c8de16dd3af7405787fce6919a385cfc238 @@ -7463,7 +7464,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/threadpoolctl-3.6.0-pyhecae5ae_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/threadpoolctl-3.6.0-pyhecae5ae_0.conda hash: md5: 9d64911b31d57ca443e9f1e36b04385f sha256: 6016672e0e72c4cf23c0cf7b1986283bd86a9c17e8d319212d78d8e9ae42fdfd @@ -7475,7 +7476,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/threadpoolctl-3.6.0-pyhecae5ae_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/threadpoolctl-3.6.0-pyhecae5ae_0.conda hash: md5: 9d64911b31d57ca443e9f1e36b04385f sha256: 6016672e0e72c4cf23c0cf7b1986283bd86a9c17e8d319212d78d8e9ae42fdfd @@ -7488,7 +7489,7 @@ package: dependencies: python: '>=3.5' webencodings: '>=0.4' - url: https://repo.prefix.dev/conda-forge/noarch/tinycss2-1.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.4.0-pyhd8ed1ab_0.conda hash: md5: f1acf5fdefa8300de697982bcb1761c9 sha256: cad582d6f978276522f84bd209a5ddac824742fe2d452af6acf900f8650a73a2 @@ -7501,7 +7502,7 @@ package: dependencies: python: '>=3.5' webencodings: '>=0.4' - url: https://repo.prefix.dev/conda-forge/noarch/tinycss2-1.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.4.0-pyhd8ed1ab_0.conda hash: md5: f1acf5fdefa8300de697982bcb1761c9 sha256: cad582d6f978276522f84bd209a5ddac824742fe2d452af6acf900f8650a73a2 @@ -7515,7 +7516,7 @@ package: __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 + url: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_hd72426e_102.conda hash: md5: a0116df4f4ed05c303811a837d5b39d8 sha256: a84ff687119e6d8752346d1d408d5cf360dee0badd487a472aa8ddedfdc219e1 @@ -7529,7 +7530,7 @@ 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-h2c6b04d_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-h2c6b04d_2.conda hash: md5: ebd0e761de9aa879a51d22cc721bd095 sha256: e3614b0eb4abcc70d98eae159db59d9b4059ed743ef402081151a948dce95896 @@ -7541,7 +7542,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_1.conda hash: md5: b0dd904de08b7db706167240bf37b164 sha256: 34f3a83384ac3ac30aefd1309e69498d8a4aa0bf2d1f21c645f79b180e378938 @@ -7553,7 +7554,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_1.conda hash: md5: b0dd904de08b7db706167240bf37b164 sha256: 34f3a83384ac3ac30aefd1309e69498d8a4aa0bf2d1f21c645f79b180e378938 @@ -7565,7 +7566,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda hash: md5: ac944244f1fed2eb49bae07193ae8215 sha256: 18636339a79656962723077df9a56c0ac7b8a864329eb8f847ee3d38495b863e @@ -7577,7 +7578,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda hash: md5: ac944244f1fed2eb49bae07193ae8215 sha256: 18636339a79656962723077df9a56c0ac7b8a864329eb8f847ee3d38495b863e @@ -7589,7 +7590,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.3-pyha770c72_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.13.3-pyha770c72_0.conda hash: md5: 146402bf0f11cbeb8f781fa4309a95d3 sha256: f8d3b49c084831a20923f66826f30ecfc55a4cd951e544b7213c692887343222 @@ -7601,7 +7602,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.3-pyha770c72_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.13.3-pyha770c72_0.conda hash: md5: 146402bf0f11cbeb8f781fa4309a95d3 sha256: f8d3b49c084831a20923f66826f30ecfc55a4cd951e544b7213c692887343222 @@ -7613,7 +7614,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/toolz-1.0.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/toolz-1.0.0-pyhd8ed1ab_1.conda hash: md5: 40d0ed782a8aaa16ef248e68c06c168d sha256: eda38f423c33c2eaeca49ed946a8d3bf466cc3364970e083a65eb2fd85258d87 @@ -7625,7 +7626,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/toolz-1.0.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/toolz-1.0.0-pyhd8ed1ab_1.conda hash: md5: 40d0ed782a8aaa16ef248e68c06c168d sha256: eda38f423c33c2eaeca49ed946a8d3bf466cc3364970e083a65eb2fd85258d87 @@ -7640,7 +7641,7 @@ package: libgcc: '>=13' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://repo.prefix.dev/conda-forge/linux-64/tornado-6.5.1-py310ha75aee5_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/tornado-6.5.1-py310ha75aee5_0.conda hash: md5: 6f3da1072c0c4d2a1beb1e84615f7c9c sha256: c24cc5952f1f1a84a848427382eecb04fc959987e19423e2c84e3281d0beec32 @@ -7656,7 +7657,7 @@ 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.5.1-py310ha8f682b_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/tornado-6.5.1-py310ha8f682b_0.conda hash: md5: 4c8f599990e386f3a0aba3f3bd8608da sha256: 2a922fc165be81c2121cbd0ba5db6dfcbb69ebdc4e48b0f6fac40fde954602e0 @@ -7669,7 +7670,7 @@ package: dependencies: colorama: '' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_1.conda hash: md5: 9efbfdc37242619130ea42b1cc4ed861 sha256: 11e2c85468ae9902d24a27137b6b39b4a78099806e551d390e394a8c34b48e40 @@ -7682,7 +7683,7 @@ package: dependencies: colorama: '' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_1.conda hash: md5: 9efbfdc37242619130ea42b1cc4ed861 sha256: 11e2c85468ae9902d24a27137b6b39b4a78099806e551d390e394a8c34b48e40 @@ -7694,7 +7695,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda hash: md5: 019a7385be9af33791c989871317e1ed sha256: f39a5620c6e8e9e98357507262a7869de2ae8cc07da8b7f84e517c9fd6c2b959 @@ -7706,7 +7707,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda hash: md5: 019a7385be9af33791c989871317e1ed sha256: f39a5620c6e8e9e98357507262a7869de2ae8cc07da8b7f84e517c9fd6c2b959 @@ -7718,7 +7719,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/types-python-dateutil-2.9.0.20250516-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/types-python-dateutil-2.9.0.20250516-pyhd8ed1ab_0.conda hash: md5: e3465397ca4b5b60ba9fbc92ef0672f9 sha256: 0fb78e97cad71ebf911958bf97777ec958a64a4621615a4dcc3ffb52cda7c6d0 @@ -7730,7 +7731,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/types-python-dateutil-2.9.0.20250516-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/types-python-dateutil-2.9.0.20250516-pyhd8ed1ab_0.conda hash: md5: e3465397ca4b5b60ba9fbc92ef0672f9 sha256: 0fb78e97cad71ebf911958bf97777ec958a64a4621615a4dcc3ffb52cda7c6d0 @@ -7742,7 +7743,7 @@ package: platform: linux-64 dependencies: typing_extensions: ==4.14.0 - url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.14.0-h32cad80_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.14.0-h32cad80_0.conda hash: md5: a1cdd40fc962e2f7944bc19e01c7e584 sha256: b8cabfa54432b0f124c0af6b6facdf8110892914fa841ac2e80ab65ac52c1ba4 @@ -7754,7 +7755,7 @@ package: platform: win-64 dependencies: typing_extensions: ==4.14.0 - url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.14.0-h32cad80_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.14.0-h32cad80_0.conda hash: md5: a1cdd40fc962e2f7944bc19e01c7e584 sha256: b8cabfa54432b0f124c0af6b6facdf8110892914fa841ac2e80ab65ac52c1ba4 @@ -7767,7 +7768,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '>=4.12.0' - url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/typing-inspection-0.4.1-pyhd8ed1ab_0.conda hash: md5: e0c3cd765dc15751ee2f0b03cd015712 sha256: 4259a7502aea516c762ca8f3b8291b0d4114e094bdb3baae3171ccc0900e722f @@ -7780,7 +7781,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '>=4.12.0' - url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/typing-inspection-0.4.1-pyhd8ed1ab_0.conda hash: md5: e0c3cd765dc15751ee2f0b03cd015712 sha256: 4259a7502aea516c762ca8f3b8291b0d4114e094bdb3baae3171ccc0900e722f @@ -7792,7 +7793,7 @@ package: platform: linux-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.14.0-pyhe01879c_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.14.0-pyhe01879c_0.conda hash: md5: 2adcd9bb86f656d3d43bf84af59a1faf sha256: 8561db52f278c5716b436da6d4ee5521712a49e8f3c70fcae5350f5ebb4be41c @@ -7804,7 +7805,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.14.0-pyhe01879c_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.14.0-pyhe01879c_0.conda hash: md5: 2adcd9bb86f656d3d43bf84af59a1faf sha256: 8561db52f278c5716b436da6d4ee5521712a49e8f3c70fcae5350f5ebb4be41c @@ -7816,7 +7817,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/typing_utils-0.1.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/typing_utils-0.1.0-pyhd8ed1ab_1.conda hash: md5: f6d7aa696c67756a650e91e15e88223c sha256: 3088d5d873411a56bf988eee774559335749aed6f6c28e07bf933256afb9eb6c @@ -7828,7 +7829,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/typing_utils-0.1.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/typing_utils-0.1.0-pyhd8ed1ab_1.conda hash: md5: f6d7aa696c67756a650e91e15e88223c sha256: 3088d5d873411a56bf988eee774559335749aed6f6c28e07bf933256afb9eb6c @@ -7839,7 +7840,7 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda hash: md5: 4222072737ccff51314b5ece9c7d6f5a sha256: 5aaa366385d716557e365f0a4e9c3fca43ba196872abbbe3d56bb610d131e192 @@ -7850,7 +7851,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda hash: md5: 4222072737ccff51314b5ece9c7d6f5a sha256: 5aaa366385d716557e365f0a4e9c3fca43ba196872abbbe3d56bb610d131e192 @@ -7862,7 +7863,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/uc-micro-py-1.0.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/uc-micro-py-1.0.3-pyhd8ed1ab_1.conda hash: md5: 9c96c9876ba45368a03056ddd0f20431 sha256: a2f837780af450d633efc052219c31378bcad31356766663fb88a99e8e4c817b @@ -7874,7 +7875,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/uc-micro-py-1.0.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/uc-micro-py-1.0.3-pyhd8ed1ab_1.conda hash: md5: 9c96c9876ba45368a03056ddd0f20431 sha256: a2f837780af450d633efc052219c31378bcad31356766663fb88a99e8e4c817b @@ -7885,7 +7886,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_1.conda hash: md5: 6797b005cd0f439c4c5c9ac565783700 sha256: db8dead3dd30fb1a032737554ce91e2819b43496a0db09927edf01c32b577450 @@ -7900,7 +7901,7 @@ package: libgcc: '>=13' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://repo.prefix.dev/conda-forge/linux-64/unicodedata2-16.0.0-py310ha75aee5_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/unicodedata2-16.0.0-py310ha75aee5_0.conda hash: md5: 1d7a4b9202cdd10d56ecdd7f6c347190 sha256: 0468c864c60190fdb94b4705bca618e77589d5cb9fa096de47caccd1f22b0b54 @@ -7916,7 +7917,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/unicodedata2-16.0.0-py310ha8f682b_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/unicodedata2-16.0.0-py310ha8f682b_0.conda hash: md5: b28aead44c6e19a1fbba7752aa242b34 sha256: b59837c68d8edcca3c86c205a8c5dec63356029e48d55ed88c5483105d73ac0c @@ -7928,7 +7929,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/uri-template-1.3.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/uri-template-1.3.0-pyhd8ed1ab_1.conda hash: md5: e7cb0f5745e4c5035a460248334af7eb sha256: e0eb6c8daf892b3056f08416a96d68b0a358b7c46b99c8a50481b22631a4dfc0 @@ -7940,14 +7941,14 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/uri-template-1.3.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/uri-template-1.3.0-pyhd8ed1ab_1.conda hash: md5: e7cb0f5745e4c5035a460248334af7eb sha256: e0eb6c8daf892b3056f08416a96d68b0a358b7c46b99c8a50481b22631a4dfc0 category: dev optional: true - name: urllib3 - version: 2.4.0 + version: 2.5.0 manager: conda platform: linux-64 dependencies: @@ -7956,14 +7957,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://conda.anaconda.org/conda-forge/noarch/urllib3-2.5.0-pyhd8ed1ab_0.conda hash: - md5: c1e349028e0052c4eea844e94f773065 - sha256: a25403b76f7f03ca1a906e1ef0f88521edded991b9897e7fed56a3e334b3db8c + md5: 436c165519e140cb08d246a4472a9d6a + sha256: 4fb9789154bd666ca74e428d973df81087a697dbb987775bc3198d2215f240f8 category: main optional: false - name: urllib3 - version: 2.4.0 + version: 2.5.0 manager: conda platform: win-64 dependencies: @@ -7972,10 +7973,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://conda.anaconda.org/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 @@ -7984,7 +7985,7 @@ package: platform: win-64 dependencies: vc14_runtime: '>=14.42.34433' - url: https://repo.prefix.dev/conda-forge/win-64/vc-14.3-h2b53caa_26.conda + url: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-h2b53caa_26.conda hash: md5: d3f0381e38093bde620a8d85f266ae55 sha256: 7a685b5c37e9713fa314a0d26b8b1d7a2e6de5ab758698199b5d5b6dba2e3ce1 @@ -7996,7 +7997,7 @@ package: platform: win-64 dependencies: ucrt: '>=10.0.20348.0' - url: https://repo.prefix.dev/conda-forge/win-64/vc14_runtime-14.42.34438-hfd919c2_26.conda + url: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.42.34438-hfd919c2_26.conda hash: md5: 91651a36d31aa20c7ba36299fb7068f4 sha256: 30dcb71bb166e351aadbdc18f1718757c32cdaa0e1e5d9368469ee44f6bf4709 @@ -8008,7 +8009,7 @@ package: platform: win-64 dependencies: vc14_runtime: '>=14.42.34438' - url: https://repo.prefix.dev/conda-forge/win-64/vs2015_runtime-14.42.34438-h7142326_26.conda + url: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.42.34438-h7142326_26.conda hash: md5: 3357e4383dbce31eed332008ede242ab sha256: 432f2937206f1ad4a77e39f84fabc1ce7d2472b669836fb72bd2bfd19a2defc9 @@ -8020,7 +8021,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/wcwidth-0.2.13-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.13-pyhd8ed1ab_1.conda hash: md5: b68980f2495d096e71c7fd9d7ccf63e6 sha256: f21e63e8f7346f9074fd00ca3b079bd3d2fa4d71f1f89d5b6934bf31446dc2a5 @@ -8032,7 +8033,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/wcwidth-0.2.13-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.13-pyhd8ed1ab_1.conda hash: md5: b68980f2495d096e71c7fd9d7ccf63e6 sha256: f21e63e8f7346f9074fd00ca3b079bd3d2fa4d71f1f89d5b6934bf31446dc2a5 @@ -8044,7 +8045,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/webcolors-24.11.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/webcolors-24.11.1-pyhd8ed1ab_0.conda hash: md5: b49f7b291e15494aafb0a7d74806f337 sha256: 08315dc2e61766a39219b2d82685fc25a56b2817acf84d5b390176080eaacf99 @@ -8056,7 +8057,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/webcolors-24.11.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/webcolors-24.11.1-pyhd8ed1ab_0.conda hash: md5: b49f7b291e15494aafb0a7d74806f337 sha256: 08315dc2e61766a39219b2d82685fc25a56b2817acf84d5b390176080eaacf99 @@ -8068,7 +8069,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_3.conda + url: https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_3.conda hash: md5: 2841eb5bfc75ce15e9a0054b98dcd64d sha256: 19ff205e138bb056a46f9e3839935a2e60bd1cf01c8241a5e172a422fed4f9c6 @@ -8080,7 +8081,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_3.conda + url: https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_3.conda hash: md5: 2841eb5bfc75ce15e9a0054b98dcd64d sha256: 19ff205e138bb056a46f9e3839935a2e60bd1cf01c8241a5e172a422fed4f9c6 @@ -8092,7 +8093,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/websocket-client-1.8.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/websocket-client-1.8.0-pyhd8ed1ab_1.conda hash: md5: 84f8f77f0a9c6ef401ee96611745da8f sha256: 1dd84764424ffc82030c19ad70607e6f9e3b9cb8e633970766d697185652053e @@ -8104,7 +8105,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/websocket-client-1.8.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/websocket-client-1.8.0-pyhd8ed1ab_1.conda hash: md5: 84f8f77f0a9c6ef401ee96611745da8f sha256: 1dd84764424ffc82030c19ad70607e6f9e3b9cb8e633970766d697185652053e @@ -8116,7 +8117,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda hash: md5: 75cb7132eb58d97896e173ef12ac9986 sha256: 1b34021e815ff89a4d902d879c3bd2040bc1bd6169b32e9427497fa05c55f1ce @@ -8128,7 +8129,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda hash: md5: 75cb7132eb58d97896e173ef12ac9986 sha256: 1b34021e815ff89a4d902d879c3bd2040bc1bd6169b32e9427497fa05c55f1ce @@ -8141,7 +8142,7 @@ package: dependencies: notebook: '>=4.4.1' python: '>=3.7' - url: https://repo.prefix.dev/conda-forge/noarch/widgetsnbextension-3.6.10-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-3.6.10-pyhd8ed1ab_0.conda hash: md5: 4d52bbdb661dc1b5a1c2aeb1afcd9a67 sha256: 6aeb16d2aacdae68ba7afd980925264f5d0459dd165e3406f13f23949df346c1 @@ -8154,7 +8155,7 @@ package: dependencies: notebook: '>=4.4.1' python: '>=3.7' - url: https://repo.prefix.dev/conda-forge/noarch/widgetsnbextension-3.6.10-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-3.6.10-pyhd8ed1ab_0.conda hash: md5: 4d52bbdb661dc1b5a1c2aeb1afcd9a67 sha256: 6aeb16d2aacdae68ba7afd980925264f5d0459dd165e3406f13f23949df346c1 @@ -8167,7 +8168,7 @@ package: dependencies: __win: '' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/win_inet_pton-1.1.0-pyh7428d3b_8.conda + url: https://conda.anaconda.org/conda-forge/noarch/win_inet_pton-1.1.0-pyh7428d3b_8.conda hash: md5: 46e441ba871f524e2b067929da3051c2 sha256: 93807369ab91f230cf9e6e2a237eaa812492fe00face5b38068735858fba954f @@ -8178,7 +8179,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/win-64/winpty-0.4.3-4.tar.bz2 + url: https://conda.anaconda.org/conda-forge/win-64/winpty-0.4.3-4.tar.bz2 hash: md5: 1cee351bf20b830d991dbe0bc8cd7dfe sha256: 9df10c5b607dd30e05ba08cbd940009305c75db242476f4e845ea06008b0a283 @@ -8191,7 +8192,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxau-1.0.12-hb9d3cd8_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxau-1.0.12-hb9d3cd8_0.conda hash: md5: f6ebe2cb3f82ba6c057dde5d9debe4f7 sha256: ed10c9283974d311855ae08a16dfd7e56241fac632aec3b92e3cfe73cff31038 @@ -8205,7 +8206,7 @@ package: libgcc: '>=13' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' ucrt: '>=10.0.20348.0' - url: https://repo.prefix.dev/conda-forge/win-64/xorg-libxau-1.0.12-h0e40799_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/xorg-libxau-1.0.12-h0e40799_0.conda hash: md5: 2ffbfae4548098297c033228256eb96e sha256: 047836241b2712aab1e29474a6f728647bff3ab57de2806b0bb0a6cf9a2d2634 @@ -8218,7 +8219,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb9d3cd8_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb9d3cd8_0.conda hash: md5: 8035c64cb77ed555e3f150b7b3972480 sha256: 6b250f3e59db07c2514057944a3ea2044d6a8cdde8a47b6497c254520fade1ee @@ -8232,7 +8233,7 @@ package: libgcc: '>=13' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' ucrt: '>=10.0.20348.0' - url: https://repo.prefix.dev/conda-forge/win-64/xorg-libxdmcp-1.1.5-h0e40799_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/xorg-libxdmcp-1.1.5-h0e40799_0.conda hash: md5: 8393c0f7e7870b4eb45553326f81f0ff sha256: 9075f98dcaa8e9957e4a3d9d30db05c7578a536950a31c200854c5c34e1edb2c @@ -8244,7 +8245,7 @@ package: platform: linux-64 dependencies: python: '>=3.8' - url: https://repo.prefix.dev/conda-forge/noarch/xyzservices-2025.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/xyzservices-2025.4.0-pyhd8ed1ab_0.conda hash: md5: 5663fa346821cd06dc1ece2c2600be2c sha256: ac6d4d4133b1e0f69075158cdf00fccad20e29fc6cc45faa480cec37a84af6ae @@ -8256,7 +8257,7 @@ package: platform: win-64 dependencies: python: '>=3.8' - url: https://repo.prefix.dev/conda-forge/noarch/xyzservices-2025.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/xyzservices-2025.4.0-pyhd8ed1ab_0.conda hash: md5: 5663fa346821cd06dc1ece2c2600be2c sha256: ac6d4d4133b1e0f69075158cdf00fccad20e29fc6cc45faa480cec37a84af6ae @@ -8268,7 +8269,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=9.4.0' - url: https://repo.prefix.dev/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2 + url: https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2 hash: md5: 4cb3ad778ec2d5a7acbdf254eb1c42ae sha256: a4e34c710eeb26945bdbdaba82d3d74f60a78f54a874ec10d373811a5d217535 @@ -8281,7 +8282,7 @@ package: dependencies: vc: '>=14.1,<15.0a0' vs2015_runtime: '>=14.16.27012' - url: https://repo.prefix.dev/conda-forge/win-64/yaml-0.2.5-h8ffe710_2.tar.bz2 + url: https://conda.anaconda.org/conda-forge/win-64/yaml-0.2.5-h8ffe710_2.tar.bz2 hash: md5: adbfb9f45d1004a26763652246a33764 sha256: 4e2246383003acbad9682c7c63178e2e715ad0eb84f03a8df1fbfba455dfedc5 @@ -8297,7 +8298,7 @@ package: numcodecs: '>=0.10.0,<0.16.0a0' numpy: '>=1.7' python: '>=3.5' - url: https://repo.prefix.dev/conda-forge/noarch/zarr-2.14.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/zarr-2.14.2-pyhd8ed1ab_0.conda hash: md5: 0c5776fe65a12a421d7ddf90411a6c3f sha256: 0f029f7efea00b8258782b5e68989fc140c227e6d9edd231d46fdd954b39d23f @@ -8313,7 +8314,7 @@ package: numcodecs: '>=0.10.0,<0.16.0a0' numpy: '>=1.7' python: '>=3.5' - url: https://repo.prefix.dev/conda-forge/noarch/zarr-2.14.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/zarr-2.14.2-pyhd8ed1ab_0.conda hash: md5: 0c5776fe65a12a421d7ddf90411a6c3f sha256: 0f029f7efea00b8258782b5e68989fc140c227e6d9edd231d46fdd954b39d23f @@ -8329,7 +8330,7 @@ package: libgcc: '>=13' libsodium: '>=1.0.20,<1.0.21.0a0' libstdcxx: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/zeromq-4.3.5-h3b0a872_7.conda + url: https://conda.anaconda.org/conda-forge/linux-64/zeromq-4.3.5-h3b0a872_7.conda hash: md5: 3947a35e916fcc6b9825449affbf4214 sha256: a4dc72c96848f764bb5a5176aa93dd1e9b9e52804137b99daeebba277b31ea10 @@ -8345,7 +8346,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/zeromq-4.3.5-ha9f60a1_7.conda + url: https://conda.anaconda.org/conda-forge/win-64/zeromq-4.3.5-ha9f60a1_7.conda hash: md5: e03f2c245a5ee6055752465519363b1c sha256: 15cc8e2162d0a33ffeb3f7b7c7883fd830c54a4b1be6a4b8c7ee1f4fef0088fb @@ -8357,7 +8358,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/zict-3.0.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/zict-3.0.0-pyhd8ed1ab_1.conda hash: md5: e52c2ef711ccf31bb7f70ca87d144b9e sha256: 5488542dceeb9f2874e726646548ecc5608060934d6f9ceaa7c6a48c61f9cc8d @@ -8369,7 +8370,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/zict-3.0.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/zict-3.0.0-pyhd8ed1ab_1.conda hash: md5: e52c2ef711ccf31bb7f70ca87d144b9e sha256: 5488542dceeb9f2874e726646548ecc5608060934d6f9ceaa7c6a48c61f9cc8d @@ -8381,7 +8382,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/zipp-3.23.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.23.0-pyhd8ed1ab_0.conda hash: md5: df5e78d904988eb55042c0c97446079f sha256: 7560d21e1b021fd40b65bfb72f67945a3fcb83d78ad7ccf37b8b3165ec3b68ad @@ -8393,7 +8394,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/zipp-3.23.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.23.0-pyhd8ed1ab_0.conda hash: md5: df5e78d904988eb55042c0c97446079f sha256: 7560d21e1b021fd40b65bfb72f67945a3fcb83d78ad7ccf37b8b3165ec3b68ad @@ -8409,7 +8410,7 @@ package: libgcc: '>=13' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://repo.prefix.dev/conda-forge/linux-64/zstandard-0.23.0-py310ha75aee5_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/zstandard-0.23.0-py310ha75aee5_2.conda hash: md5: f9254b5b0193982416b91edcb4b2676f sha256: f9b76c2f8a0f96e656843553272e547170182f5b8aba1a6bcba28f7611d87c23 @@ -8426,7 +8427,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/zstandard-0.23.0-py310ha8f682b_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/zstandard-0.23.0-py310ha8f682b_2.conda hash: md5: fdc36a989175bb166109e400c106defa sha256: 76bf75ef83e952ef4974e0e6656a7a90b4c4c1c22cea984cb9fc29aca05e5999 @@ -8441,7 +8442,7 @@ package: libgcc: '>=13' libstdcxx: '>=13' libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb8e6e7a_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.7-hb8e6e7a_2.conda hash: md5: 6432cb5d4ac0046c3ac0a8a0f95842f9 sha256: a4166e3d8ff4e35932510aaff7aa90772f84b4d07e9f6f83c614cba7ceefe0eb @@ -8456,7 +8457,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/zstd-1.5.7-hbeecb71_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/zstd-1.5.7-hbeecb71_2.conda hash: md5: 21f56217d6125fb30c3c3f10c786d751 sha256: bc64864377d809b904e877a98d0584f43836c9f2ef27d3d2a1421fa6eae7ca04 @@ -8471,12 +8472,12 @@ package: numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@8d46ccb686e4206683862ec803fc709b26271cd8 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 hash: - sha256: 8d46ccb686e4206683862ec803fc709b26271cd8 + sha256: 91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@8d46ccb686e4206683862ec803fc709b26271cd8 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 category: main optional: false - name: geoapps-utils @@ -8488,12 +8489,12 @@ package: numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@8d46ccb686e4206683862ec803fc709b26271cd8 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 hash: - sha256: 8d46ccb686e4206683862ec803fc709b26271cd8 + sha256: 91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@8d46ccb686e4206683862ec803fc709b26271cd8 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 category: main optional: false - name: geoh5py @@ -8505,12 +8506,12 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@585c89094e3eff35df10d3076964bf154b24d575 + url: git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e hash: - sha256: 585c89094e3eff35df10d3076964bf154b24d575 + sha256: 1190a239fd7406fbe0b73169c3d8406a1aacae3e source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@585c89094e3eff35df10d3076964bf154b24d575 + url: git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e category: main optional: false - name: geoh5py @@ -8522,12 +8523,12 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@585c89094e3eff35df10d3076964bf154b24d575 + url: git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e hash: - sha256: 585c89094e3eff35df10d3076964bf154b24d575 + sha256: 1190a239fd7406fbe0b73169c3d8406a1aacae3e source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@585c89094e3eff35df10d3076964bf154b24d575 + url: git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e category: main optional: false - name: mira-simpeg diff --git a/py-3.11.conda-lock.yml b/py-3.11.conda-lock.yml index 45bd452a..1a57a861 100644 --- a/py-3.11.conda-lock.yml +++ b/py-3.11.conda-lock.yml @@ -35,7 +35,7 @@ package: platform: linux-64 dependencies: llvm-openmp: '>=9.0.1' - url: https://repo.prefix.dev/conda-forge/linux-64/_openmp_mutex-4.5-3_kmp_llvm.conda + url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-3_kmp_llvm.conda hash: md5: ee5c2118262e30b972bc0b4db8ef0ba5 sha256: cec7343e76c9da6a42c7e7cba53391daa6b46155054ef61a5ef522ea27c5a058 @@ -48,7 +48,7 @@ package: dependencies: libgomp: '>=7.5.0' libwinpthread: '>=12.0.0.r2.ggc561118da' - url: https://repo.prefix.dev/conda-forge/win-64/_openmp_mutex-4.5-2_gnu.conda + url: https://conda.anaconda.org/conda-forge/win-64/_openmp_mutex-4.5-2_gnu.conda hash: md5: 37e16618af5c4851a3f3d66dd0e11141 sha256: 1a62cd1f215fe0902e7004089693a78347a30ad687781dfda2289cab000e652d @@ -61,7 +61,7 @@ package: dependencies: pygments: '' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/accessible-pygments-0.0.5-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/accessible-pygments-0.0.5-pyhd8ed1ab_1.conda hash: md5: 74ac5069774cdbc53910ec4d631a3999 sha256: 1307719f0d8ee694fc923579a39c0621c23fdaa14ccdf9278a5aac5665ac58e9 @@ -74,7 +74,7 @@ package: dependencies: pygments: '' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/accessible-pygments-0.0.5-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/accessible-pygments-0.0.5-pyhd8ed1ab_1.conda hash: md5: 74ac5069774cdbc53910ec4d631a3999 sha256: 1307719f0d8ee694fc923579a39c0621c23fdaa14ccdf9278a5aac5665ac58e9 @@ -86,7 +86,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/alabaster-0.7.16-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/alabaster-0.7.16-pyhd8ed1ab_0.conda hash: md5: def531a3ac77b7fb8c21d17bb5d0badb sha256: fd39ad2fabec1569bbb0dfdae34ab6ce7de6ec09dcec8638f83dad0373594069 @@ -98,7 +98,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/alabaster-0.7.16-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/alabaster-0.7.16-pyhd8ed1ab_0.conda hash: md5: def531a3ac77b7fb8c21d17bb5d0badb sha256: fd39ad2fabec1569bbb0dfdae34ab6ce7de6ec09dcec8638f83dad0373594069 @@ -111,7 +111,7 @@ package: dependencies: python: '>=3.9' typing-extensions: '>=4.0.0' - url: https://repo.prefix.dev/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda hash: md5: 2934f256a8acfe48f6ebb4fce6cde29c sha256: e0ea1ba78fbb64f17062601edda82097fcf815012cf52bb704150a2668110d48 @@ -124,7 +124,7 @@ package: dependencies: python: '>=3.9' typing-extensions: '>=4.0.0' - url: https://repo.prefix.dev/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda hash: md5: 2934f256a8acfe48f6ebb4fce6cde29c sha256: e0ea1ba78fbb64f17062601edda82097fcf815012cf52bb704150a2668110d48 @@ -140,7 +140,7 @@ package: python: '>=3.9' sniffio: '>=1.1' typing_extensions: '>=4.5' - url: https://repo.prefix.dev/conda-forge/noarch/anyio-4.9.0-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/anyio-4.9.0-pyh29332c3_0.conda hash: md5: 9749a2c77a7c40d432ea0927662d7e52 sha256: b28e0f78bb0c7962630001e63af25a89224ff504e135a02e50d4d80b6155d386 @@ -156,7 +156,7 @@ package: python: '>=3.9' sniffio: '>=1.1' typing_extensions: '>=4.5' - url: https://repo.prefix.dev/conda-forge/noarch/anyio-4.9.0-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/anyio-4.9.0-pyh29332c3_0.conda hash: md5: 9749a2c77a7c40d432ea0927662d7e52 sha256: b28e0f78bb0c7962630001e63af25a89224ff504e135a02e50d4d80b6155d386 @@ -170,7 +170,7 @@ package: argon2-cffi-bindings: '' python: '>=3.9' typing-extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/argon2-cffi-25.1.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/argon2-cffi-25.1.0-pyhd8ed1ab_0.conda hash: md5: 8ac12aff0860280ee0cff7fa2cf63f3b sha256: bea62005badcb98b1ae1796ec5d70ea0fc9539e7d59708ac4e7d41e2f4bb0bad @@ -184,7 +184,7 @@ package: argon2-cffi-bindings: '' python: '>=3.9' typing-extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/argon2-cffi-25.1.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/argon2-cffi-25.1.0-pyhd8ed1ab_0.conda hash: md5: 8ac12aff0860280ee0cff7fa2cf63f3b sha256: bea62005badcb98b1ae1796ec5d70ea0fc9539e7d59708ac4e7d41e2f4bb0bad @@ -200,7 +200,7 @@ package: libgcc: '>=13' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://repo.prefix.dev/conda-forge/linux-64/argon2-cffi-bindings-21.2.0-py311h9ecbd09_5.conda + url: https://conda.anaconda.org/conda-forge/linux-64/argon2-cffi-bindings-21.2.0-py311h9ecbd09_5.conda hash: md5: 18143eab7fcd6662c604b85850f0db1e sha256: d1af1fbcb698c2e07b0d1d2b98384dd6021fa55c8bcb920e3652e0b0c393881b @@ -217,7 +217,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/argon2-cffi-bindings-21.2.0-py311he736701_5.conda + url: https://conda.anaconda.org/conda-forge/win-64/argon2-cffi-bindings-21.2.0-py311he736701_5.conda hash: md5: 8917bf795c40ec1839ed9d0ab3ad9735 sha256: 8bbce5e61e012a06e248f58bb675fdc82ba2900c78590696d185150fb9cea91f @@ -231,7 +231,7 @@ package: python: '>=3.9' python-dateutil: '>=2.7.0' types-python-dateutil: '>=2.8.10' - url: https://repo.prefix.dev/conda-forge/noarch/arrow-1.3.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/arrow-1.3.0-pyhd8ed1ab_1.conda hash: md5: 46b53236fdd990271b03c3978d4218a9 sha256: c4b0bdb3d5dee50b60db92f99da3e4c524d5240aafc0a5fcc15e45ae2d1a3cd1 @@ -245,7 +245,7 @@ package: python: '>=3.9' python-dateutil: '>=2.7.0' types-python-dateutil: '>=2.8.10' - url: https://repo.prefix.dev/conda-forge/noarch/arrow-1.3.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/arrow-1.3.0-pyhd8ed1ab_1.conda hash: md5: 46b53236fdd990271b03c3978d4218a9 sha256: c4b0bdb3d5dee50b60db92f99da3e4c524d5240aafc0a5fcc15e45ae2d1a3cd1 @@ -257,7 +257,7 @@ package: platform: linux-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/asciitree-0.3.3-py_2.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/asciitree-0.3.3-py_2.tar.bz2 hash: md5: c0481c9de49f040272556e2cedf42816 sha256: b3e9369529fe7d721b66f18680ff4b561e20dbf6507e209e1f60eac277c97560 @@ -269,7 +269,7 @@ package: platform: win-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/asciitree-0.3.3-py_2.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/asciitree-0.3.3-py_2.tar.bz2 hash: md5: c0481c9de49f040272556e2cedf42816 sha256: b3e9369529fe7d721b66f18680ff4b561e20dbf6507e209e1f60eac277c97560 @@ -282,7 +282,7 @@ package: dependencies: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://repo.prefix.dev/conda-forge/linux-64/astroid-3.3.10-py311h38be061_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/astroid-3.3.10-py311h38be061_0.conda hash: md5: e8c29b25a525081bfb2dfaaa4073a075 sha256: 67999e3996540fcfa060c6744b1e245fc7754048fc10b56381d438f3b8cd7443 @@ -295,7 +295,7 @@ package: dependencies: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://repo.prefix.dev/conda-forge/win-64/astroid-3.3.10-py311h1ea47a8_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/astroid-3.3.10-py311h1ea47a8_0.conda hash: md5: fbe059f60acd9fbb86f4a9661a2dcf36 sha256: 4bca4a25ee9a9db1b47290739610690150141646b804290101da1ce03c260632 @@ -307,7 +307,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/asttokens-3.0.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/asttokens-3.0.0-pyhd8ed1ab_1.conda hash: md5: 8f587de4bcf981e26228f268df374a9b sha256: 93b14414b3b3ed91e286e1cbe4e7a60c4e1b1c730b0814d1e452a8ac4b9af593 @@ -319,7 +319,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/asttokens-3.0.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/asttokens-3.0.0-pyhd8ed1ab_1.conda hash: md5: 8f587de4bcf981e26228f268df374a9b sha256: 93b14414b3b3ed91e286e1cbe4e7a60c4e1b1c730b0814d1e452a8ac4b9af593 @@ -332,7 +332,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '>=4.0.0' - url: https://repo.prefix.dev/conda-forge/noarch/async-lru-2.0.5-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/async-lru-2.0.5-pyh29332c3_0.conda hash: md5: d9d0f99095a9bb7e3641bca8c6ad2ac7 sha256: 3b7233041e462d9eeb93ea1dfe7b18aca9c358832517072054bb8761df0c324b @@ -345,7 +345,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '>=4.0.0' - url: https://repo.prefix.dev/conda-forge/noarch/async-lru-2.0.5-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/async-lru-2.0.5-pyh29332c3_0.conda hash: md5: d9d0f99095a9bb7e3641bca8c6ad2ac7 sha256: 3b7233041e462d9eeb93ea1dfe7b18aca9c358832517072054bb8761df0c324b @@ -357,7 +357,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/attrs-25.3.0-pyh71513ae_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/attrs-25.3.0-pyh71513ae_0.conda hash: md5: a10d11958cadc13fdb43df75f8b1903f sha256: 99c53ffbcb5dc58084faf18587b215f9ac8ced36bbfb55fa807c00967e419019 @@ -369,7 +369,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/attrs-25.3.0-pyh71513ae_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/attrs-25.3.0-pyh71513ae_0.conda hash: md5: a10d11958cadc13fdb43df75f8b1903f sha256: 99c53ffbcb5dc58084faf18587b215f9ac8ced36bbfb55fa807c00967e419019 @@ -382,7 +382,7 @@ package: dependencies: python: '>=3.9' pytz: '>=2015.7' - url: https://repo.prefix.dev/conda-forge/noarch/babel-2.17.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/babel-2.17.0-pyhd8ed1ab_0.conda hash: md5: 0a01c169f0ab0f91b26e77a3301fbfe4 sha256: 1c656a35800b7f57f7371605bc6507c8d3ad60fbaaec65876fce7f73df1fc8ac @@ -395,7 +395,7 @@ package: dependencies: python: '>=3.9' pytz: '>=2015.7' - url: https://repo.prefix.dev/conda-forge/noarch/babel-2.17.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/babel-2.17.0-pyhd8ed1ab_0.conda hash: md5: 0a01c169f0ab0f91b26e77a3301fbfe4 sha256: 1c656a35800b7f57f7371605bc6507c8d3ad60fbaaec65876fce7f73df1fc8ac @@ -409,7 +409,7 @@ package: python: '>=3.9' soupsieve: '>=1.2' typing-extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/beautifulsoup4-4.13.4-pyha770c72_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.13.4-pyha770c72_0.conda hash: md5: 9f07c4fc992adb2d6c30da7fab3959a7 sha256: ddb0df12fd30b2d36272f5daf6b6251c7625d6a99414d7ea930005bbaecad06d @@ -423,7 +423,7 @@ package: python: '>=3.9' soupsieve: '>=1.2' typing-extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/beautifulsoup4-4.13.4-pyha770c72_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.13.4-pyha770c72_0.conda hash: md5: 9f07c4fc992adb2d6c30da7fab3959a7 sha256: ddb0df12fd30b2d36272f5daf6b6251c7625d6a99414d7ea930005bbaecad06d @@ -436,7 +436,7 @@ package: dependencies: python: '>=3.9' webencodings: '' - url: https://repo.prefix.dev/conda-forge/noarch/bleach-6.2.0-pyh29332c3_4.conda + url: https://conda.anaconda.org/conda-forge/noarch/bleach-6.2.0-pyh29332c3_4.conda hash: md5: f0b4c8e370446ef89797608d60a564b3 sha256: a05971bb80cca50ce9977aad3f7fc053e54ea7d5321523efc7b9a6e12901d3cd @@ -449,7 +449,7 @@ package: dependencies: python: '>=3.9' webencodings: '' - url: https://repo.prefix.dev/conda-forge/noarch/bleach-6.2.0-pyh29332c3_4.conda + url: https://conda.anaconda.org/conda-forge/noarch/bleach-6.2.0-pyh29332c3_4.conda hash: md5: f0b4c8e370446ef89797608d60a564b3 sha256: a05971bb80cca50ce9977aad3f7fc053e54ea7d5321523efc7b9a6e12901d3cd @@ -462,7 +462,7 @@ package: dependencies: bleach: ==6.2.0 tinycss2: '' - url: https://repo.prefix.dev/conda-forge/noarch/bleach-with-css-6.2.0-h82add2a_4.conda + url: https://conda.anaconda.org/conda-forge/noarch/bleach-with-css-6.2.0-h82add2a_4.conda hash: md5: a30e9406c873940383555af4c873220d sha256: 0aba699344275b3972bd751f9403316edea2ceb942db12f9f493b63c74774a46 @@ -475,7 +475,7 @@ package: dependencies: bleach: ==6.2.0 tinycss2: '' - url: https://repo.prefix.dev/conda-forge/noarch/bleach-with-css-6.2.0-h82add2a_4.conda + url: https://conda.anaconda.org/conda-forge/noarch/bleach-with-css-6.2.0-h82add2a_4.conda hash: md5: a30e9406c873940383555af4c873220d sha256: 0aba699344275b3972bd751f9403316edea2ceb942db12f9f493b63c74774a46 @@ -496,7 +496,7 @@ package: pyyaml: '>=3.10' tornado: '>=6.2' xyzservices: '>=2021.09.1' - url: https://repo.prefix.dev/conda-forge/noarch/bokeh-3.6.3-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/bokeh-3.6.3-pyhd8ed1ab_0.conda hash: md5: 606498329a91bd9d5c0439fb2815816f sha256: 6cc6841b1660cd3246890d4f601baf51367526afe6256dfd8a8d9a8f7db651fe @@ -517,7 +517,7 @@ package: pyyaml: '>=3.10' tornado: '>=6.2' xyzservices: '>=2021.09.1' - url: https://repo.prefix.dev/conda-forge/noarch/bokeh-3.6.3-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/bokeh-3.6.3-pyhd8ed1ab_0.conda hash: md5: 606498329a91bd9d5c0439fb2815816f sha256: 6cc6841b1660cd3246890d4f601baf51367526afe6256dfd8a8d9a8f7db651fe @@ -533,7 +533,7 @@ 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_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/brotli-1.1.0-hb9d3cd8_3.conda hash: md5: 5d08a0ac29e6a5a984817584775d4131 sha256: c969baaa5d7a21afb5ed4b8dd830f82b78e425caaa13d717766ed07a61630bec @@ -550,7 +550,7 @@ 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_3.conda + url: https://conda.anaconda.org/conda-forge/win-64/brotli-1.1.0-h2466b09_3.conda hash: md5: c2a23d8a8986c72148c63bdf855ac99a sha256: d57cd6ea705c9d2a8a2721f083de247501337e459f5498726b564cfca138e192 @@ -565,7 +565,7 @@ 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_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/brotli-bin-1.1.0-hb9d3cd8_3.conda hash: md5: 58178ef8ba927229fba6d84abf62c108 sha256: ab74fa8c3d1ca0a055226be89e99d6798c65053e2d2d3c6cb380c574972cd4a7 @@ -581,7 +581,7 @@ 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_3.conda + url: https://conda.anaconda.org/conda-forge/win-64/brotli-bin-1.1.0-h2466b09_3.conda hash: md5: c7c345559c1ac25eede6dccb7b931202 sha256: 85aac1c50a426be6d0cc9fd52480911d752f4082cb78accfdb257243e572c7eb @@ -597,7 +597,7 @@ 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_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.1.0-py311hfdbb021_3.conda hash: md5: 8565f7297b28af62e5de2d968ca32e31 sha256: 4fab04fcc599853efb2904ea3f935942108613c7515f7dd57e7f034650738c52 @@ -613,7 +613,7 @@ 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_3.conda + url: https://conda.anaconda.org/conda-forge/win-64/brotli-python-1.1.0-py311hda3d55a_3.conda hash: md5: 2d99144abeb3b6b65608fdd7810dbcbd sha256: a602b15fe1b3a6b40aab7d99099a410b69ccad9bb273779531cef00fc52d762e @@ -626,7 +626,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - url: https://repo.prefix.dev/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda + url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda hash: md5: 62ee74e96c5ebb0af99386de58cf9553 sha256: 5ced96500d945fb286c9c838e54fa759aa04a7129c59800f0846b4335cee770d @@ -640,7 +640,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda + url: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda hash: md5: 276e7ffe9ffe39688abc665ef0f45596 sha256: 35a5dad92e88fdd7fc405e864ec239486f4f31eec229e31686e61a140a8e573b @@ -653,34 +653,34 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/c-ares-1.34.5-hb9d3cd8_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.34.5-hb9d3cd8_0.conda hash: md5: f7f0d6cc2dc986d42ac2689ec88192be sha256: f8003bef369f57396593ccd03d08a8e21966157269426f71e943f96e4b579aeb 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://conda.anaconda.org/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://conda.anaconda.org/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 @@ -689,7 +689,7 @@ package: platform: linux-64 dependencies: cached_property: '>=1.5.2,<1.5.3.0a0' - url: https://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 hash: md5: 9b347a7ec10940d3f7941ff6c460b551 sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17 @@ -701,7 +701,7 @@ package: platform: win-64 dependencies: cached_property: '>=1.5.2,<1.5.3.0a0' - url: https://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 hash: md5: 9b347a7ec10940d3f7941ff6c460b551 sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17 @@ -713,7 +713,7 @@ package: platform: linux-64 dependencies: python: '>=3.6' - url: https://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 hash: md5: 576d629e47797577ab0f1b351297ef4a sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7 @@ -725,34 +725,34 @@ package: platform: win-64 dependencies: python: '>=3.6' - url: https://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 hash: md5: 576d629e47797577ab0f1b351297ef4a sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7 category: main optional: false - name: certifi - version: 2025.4.26 + version: 2025.6.15 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.4.26-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/certifi-2025.6.15-pyhd8ed1ab_0.conda hash: - md5: c33eeaaa33f45031be34cda513df39b6 - sha256: 52aa837642fd851b3f7ad3b1f66afc5366d133c1d452323f786b0378a391915c + md5: 781d068df0cc2407d4db0ecfbb29225b + sha256: d71c85835813072cd6d7ce4b24be34215cd90c104785b15a5d58f4cd0cb50778 category: main optional: false - name: certifi - version: 2025.4.26 + version: 2025.6.15 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.4.26-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/certifi-2025.6.15-pyhd8ed1ab_0.conda hash: - md5: c33eeaaa33f45031be34cda513df39b6 - sha256: 52aa837642fd851b3f7ad3b1f66afc5366d133c1d452323f786b0378a391915c + md5: 781d068df0cc2407d4db0ecfbb29225b + sha256: d71c85835813072cd6d7ce4b24be34215cd90c104785b15a5d58f4cd0cb50778 category: main optional: false - name: cffi @@ -766,7 +766,7 @@ package: pycparser: '' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://repo.prefix.dev/conda-forge/linux-64/cffi-1.17.1-py311hf29c0ef_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.17.1-py311hf29c0ef_0.conda hash: md5: 55553ecd5328336368db611f350b7039 sha256: bc47aa39c8254e9e487b8bcd74cfa3b4a3de3648869eb1a0b89905986b668e35 @@ -783,7 +783,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/cffi-1.17.1-py311he736701_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/cffi-1.17.1-py311he736701_0.conda hash: md5: e1c69be23bd05471a6c623e91680ad59 sha256: 9689fbd8a31fdf273f826601e90146006f6631619767a67955048c7ad7798a1d @@ -795,7 +795,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.2-pyhd8ed1ab_0.conda hash: md5: 40fe4284b8b5835a9073a645139f35af sha256: 535ae5dcda8022e31c6dc063eb344c80804c537a5a04afba43a845fa6fa130f5 @@ -807,7 +807,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.2-pyhd8ed1ab_0.conda hash: md5: 40fe4284b8b5835a9073a645139f35af sha256: 535ae5dcda8022e31c6dc063eb344c80804c537a5a04afba43a845fa6fa130f5 @@ -820,7 +820,7 @@ package: dependencies: __unix: '' python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/click-8.2.1-pyh707e725_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/click-8.2.1-pyh707e725_0.conda hash: md5: 94b550b8d3a614dbd326af798c7dfb40 sha256: 8aee789c82d8fdd997840c952a586db63c6890b00e88c4fb6e80a38edd5f51c0 @@ -834,7 +834,7 @@ package: __win: '' colorama: '' python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/click-8.2.1-pyh7428d3b_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/click-8.2.1-pyh7428d3b_0.conda hash: md5: 3a59475037bc09da916e4062c5cad771 sha256: 20c2d8ea3d800485245b586a28985cba281dd6761113a49d7576f6db92a0a891 @@ -846,7 +846,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/cloudpickle-3.1.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/cloudpickle-3.1.1-pyhd8ed1ab_0.conda hash: md5: 364ba6c9fb03886ac979b482f39ebb92 sha256: 21ecead7268241007bf65691610cd7314da68c1f88113092af690203b5780db5 @@ -858,7 +858,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/cloudpickle-3.1.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/cloudpickle-3.1.1-pyhd8ed1ab_0.conda hash: md5: 364ba6c9fb03886ac979b482f39ebb92 sha256: 21ecead7268241007bf65691610cd7314da68c1f88113092af690203b5780db5 @@ -870,7 +870,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda hash: md5: 962b9857ee8e7018c22f2776ffa0b2d7 sha256: ab29d57dc70786c1269633ba3dff20288b81664d3ff8d21af995742e2bb03287 @@ -882,7 +882,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda hash: md5: 962b9857ee8e7018c22f2776ffa0b2d7 sha256: ab29d57dc70786c1269633ba3dff20288b81664d3ff8d21af995742e2bb03287 @@ -895,7 +895,7 @@ package: dependencies: python: '>=3.9' traitlets: '>=5.3' - url: https://repo.prefix.dev/conda-forge/noarch/comm-0.2.2-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/comm-0.2.2-pyhd8ed1ab_1.conda hash: md5: 74673132601ec2b7fc592755605f4c1b sha256: 7e87ef7c91574d9fac19faedaaee328a70f718c9b4ddadfdc0ba9ac021bd64af @@ -908,7 +908,7 @@ package: dependencies: python: '>=3.9' traitlets: '>=5.3' - url: https://repo.prefix.dev/conda-forge/noarch/comm-0.2.2-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/comm-0.2.2-pyhd8ed1ab_1.conda hash: md5: 74673132601ec2b7fc592755605f4c1b sha256: 7e87ef7c91574d9fac19faedaaee328a70f718c9b4ddadfdc0ba9ac021bd64af @@ -925,7 +925,7 @@ package: numpy: '>=1.23' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://repo.prefix.dev/conda-forge/linux-64/contourpy-1.3.2-py311hd18a35c_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/contourpy-1.3.2-py311hd18a35c_0.conda hash: md5: f8e440efa026c394461a45a46cea49fc sha256: 92ec3244ee0b424612025742a73d4728ded5bf6a358301bd005f67e74fec0b21 @@ -942,14 +942,14 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/contourpy-1.3.2-py311h3257749_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/contourpy-1.3.2-py311h3257749_0.conda hash: md5: f9fd48bb5c67e197d3e5ed0490df5aef sha256: feec034c783bd35da5c923ca2c2a8c831b7058137c530ca76a66c993a3fbafb0 category: main optional: false - name: coverage - version: 7.8.2 + version: 7.9.1 manager: conda platform: linux-64 dependencies: @@ -958,14 +958,14 @@ package: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* tomli: '' - url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.8.2-py311h2dc5d0c_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/coverage-7.9.1-py311h2dc5d0c_0.conda hash: - md5: 21c1ef48cc2bf485e6d38c5611e91da2 - sha256: 1da68668a274d87003cb1c3281269fa930e952cda1711426c4240517d98177c8 + md5: f524bd18889f169f2fa8dc70df1c53c3 + sha256: 09245391f91135f4eea87d64107e82d4fb4b7d4fbd6596ea6cc126645191220c category: dev optional: true - name: coverage - version: 7.8.2 + version: 7.9.1 manager: conda platform: win-64 dependencies: @@ -975,10 +975,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.8.2-py311h5082efb_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/coverage-7.9.1-py311h5082efb_0.conda hash: - md5: dfd09752e23b9e8c1389ee8655c26f87 - sha256: ca270ce3d6e450dd638d03cbbf532c7ba8ef9243279b00ff0c2e3e19be1b71fc + md5: a12491bec053dd704f8e467127e20b6a + sha256: 821c280024834cdf88038452e3c131140c9e8bc310617349c0deecffca2c2196 category: dev optional: true - name: cpython @@ -988,7 +988,7 @@ package: dependencies: python: '>=3.11,<3.12.0a0' python_abi: '*' - url: https://repo.prefix.dev/conda-forge/noarch/cpython-3.11.13-py311hd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/cpython-3.11.13-py311hd8ed1ab_0.conda hash: md5: 4666fd336f6d48d866a58490684704cd sha256: ab70477f5cfb60961ba27d84a4c933a24705ac4b1736d8f3da14858e95bbfa7a @@ -1000,7 +1000,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda hash: md5: 44600c4667a319d67dbe0681fc0bc833 sha256: 9827efa891e507a91a8a2acf64e210d2aff394e1cde432ad08e1f8c66b12293c @@ -1012,7 +1012,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda hash: md5: 44600c4667a319d67dbe0681fc0bc833 sha256: 9827efa891e507a91a8a2acf64e210d2aff394e1cde432ad08e1f8c66b12293c @@ -1028,7 +1028,7 @@ package: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* toolz: '>=0.10.0' - url: https://repo.prefix.dev/conda-forge/linux-64/cytoolz-1.0.1-py311h9ecbd09_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/cytoolz-1.0.1-py311h9ecbd09_0.conda hash: md5: 69a0a85acdcc5e6d0f1cc915c067ad4c sha256: fd5a8c7e613c3c538ca775951fd814ab10cfcdaed79e193c3bf7eb59c87cd114 @@ -1045,7 +1045,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/cytoolz-1.0.1-py311he736701_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/cytoolz-1.0.1-py311he736701_0.conda hash: md5: fc78ccf75bba016a930accedee7ed9af sha256: 7746ffe3a0849abbd724da6955950142ec7eedbc66053be8d3802b7885562951 @@ -1065,7 +1065,7 @@ package: python: '>=3.10' pyyaml: '>=5.3.1' toolz: '>=0.10.0' - url: https://repo.prefix.dev/conda-forge/noarch/dask-core-2025.3.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/dask-core-2025.3.0-pyhd8ed1ab_0.conda hash: md5: 36f6cc22457e3d6a6051c5370832f96c sha256: 72badd945d856d2928fdbe051f136f903bcfee8136f1526c8362c6c465b793ec @@ -1085,7 +1085,7 @@ package: python: '>=3.10' pyyaml: '>=5.3.1' toolz: '>=0.10.0' - url: https://repo.prefix.dev/conda-forge/noarch/dask-core-2025.3.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/dask-core-2025.3.0-pyhd8ed1ab_0.conda hash: md5: 36f6cc22457e3d6a6051c5370832f96c sha256: 72badd945d856d2928fdbe051f136f903bcfee8136f1526c8362c6c465b793ec @@ -1097,7 +1097,7 @@ package: platform: linux-64 dependencies: python: '>=3.7' - url: https://repo.prefix.dev/conda-forge/noarch/dataclasses-0.8-pyhc8e2a94_3.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/dataclasses-0.8-pyhc8e2a94_3.tar.bz2 hash: md5: a362b2124b06aad102e2ee4581acee7d sha256: 63a83e62e0939bc1ab32de4ec736f6403084198c4639638b354a352113809c92 @@ -1109,7 +1109,7 @@ package: platform: win-64 dependencies: python: '>=3.7' - url: https://repo.prefix.dev/conda-forge/noarch/dataclasses-0.8-pyhc8e2a94_3.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/dataclasses-0.8-pyhc8e2a94_3.tar.bz2 hash: md5: a362b2124b06aad102e2ee4581acee7d sha256: 63a83e62e0939bc1ab32de4ec736f6403084198c4639638b354a352113809c92 @@ -1125,7 +1125,7 @@ package: libstdcxx: '>=13' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://repo.prefix.dev/conda-forge/linux-64/debugpy-1.8.14-py311hfdbb021_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/debugpy-1.8.14-py311hfdbb021_0.conda hash: md5: 1c229452e28e2c4607457c7b6c839bc7 sha256: 2f6d43724f60828fa226a71f519248ecd1dd456f0d4fc5f887936c763ea726e4 @@ -1141,7 +1141,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/debugpy-1.8.14-py311hda3d55a_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/debugpy-1.8.14-py311hda3d55a_0.conda hash: md5: 253acd78a14d333ea1c6de5b16b5a0ae sha256: 71127b53485a633f708f6645d8d023aef2efa325ca063466b21446b778d49b94 @@ -1153,7 +1153,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/decorator-5.2.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/decorator-5.2.1-pyhd8ed1ab_0.conda hash: md5: 9ce473d1d1be1cc3810856a48b3fab32 sha256: c17c6b9937c08ad63cb20a26f403a3234088e57d4455600974a0ce865cb14017 @@ -1165,7 +1165,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/decorator-5.2.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/decorator-5.2.1-pyhd8ed1ab_0.conda hash: md5: 9ce473d1d1be1cc3810856a48b3fab32 sha256: c17c6b9937c08ad63cb20a26f403a3234088e57d4455600974a0ce865cb14017 @@ -1177,7 +1177,7 @@ package: platform: linux-64 dependencies: python: '>=3.6' - url: https://repo.prefix.dev/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2 hash: md5: 961b3a227b437d82ad7054484cfa71b2 sha256: 9717a059677553562a8f38ff07f3b9f61727bd614f505658b0a5ecbcf8df89be @@ -1189,7 +1189,7 @@ package: platform: win-64 dependencies: python: '>=3.6' - url: https://repo.prefix.dev/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2 hash: md5: 961b3a227b437d82ad7054484cfa71b2 sha256: 9717a059677553562a8f38ff07f3b9f61727bd614f505658b0a5ecbcf8df89be @@ -1202,7 +1202,7 @@ package: dependencies: python: '>=3.9' wrapt: <2,>=1.10 - url: https://repo.prefix.dev/conda-forge/noarch/deprecated-1.2.18-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.18-pyhd8ed1ab_0.conda hash: md5: 0cef44b1754ae4d6924ac0eef6b9fdbe sha256: d614bcff10696f1efc714df07651b50bf3808401fcc03814309ecec242cc8870 @@ -1215,7 +1215,7 @@ package: dependencies: python: '>=3.9' wrapt: <2,>=1.10 - url: https://repo.prefix.dev/conda-forge/noarch/deprecated-1.2.18-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.18-pyhd8ed1ab_0.conda hash: md5: 0cef44b1754ae4d6924ac0eef6b9fdbe sha256: d614bcff10696f1efc714df07651b50bf3808401fcc03814309ecec242cc8870 @@ -1227,7 +1227,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda hash: md5: 885745570573eb6a08e021841928297a sha256: 43dca52c96fde0c4845aaff02bcc92f25e1c2e5266ddefc2eac1a3de0960a3b1 @@ -1239,7 +1239,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda hash: md5: 885745570573eb6a08e021841928297a sha256: 43dca52c96fde0c4845aaff02bcc92f25e1c2e5266ddefc2eac1a3de0960a3b1 @@ -1257,7 +1257,7 @@ 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.3-py311h5b7b71f_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/discretize-0.11.3-py311h5b7b71f_0.conda hash: md5: a7407d831a3b494a143c5e69f83fb0a8 sha256: 68c39916cff90c5ddf30144096189f3b54d41507dd85023543f03d7cfd5851b4 @@ -1275,7 +1275,7 @@ 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.3-py311h9b10771_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/discretize-0.11.3-py311h9b10771_0.conda hash: md5: 7de8d3ea58f928e4507713d7b35ce1d9 sha256: 0499b57534162b58677de77dbb0c3dc11dd17ee27043ae5871db2d89e27b8e0d @@ -1303,7 +1303,7 @@ package: tornado: '>=6.2.0' urllib3: '>=1.26.5' zict: '>=3.0.0' - url: https://repo.prefix.dev/conda-forge/noarch/distributed-2025.3.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/distributed-2025.3.0-pyhd8ed1ab_0.conda hash: md5: 968a7a4ff98bcfb515b0f1c94d35553f sha256: ea055aeda774d03ec96e0901ec119c6d3dc21ddd50af166bec664a76efd5f82a @@ -1331,7 +1331,7 @@ package: tornado: '>=6.2.0' urllib3: '>=1.26.5' zict: '>=3.0.0' - url: https://repo.prefix.dev/conda-forge/noarch/distributed-2025.3.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/distributed-2025.3.0-pyhd8ed1ab_0.conda hash: md5: 968a7a4ff98bcfb515b0f1c94d35553f sha256: ea055aeda774d03ec96e0901ec119c6d3dc21ddd50af166bec664a76efd5f82a @@ -1344,7 +1344,7 @@ package: dependencies: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://repo.prefix.dev/conda-forge/linux-64/docutils-0.19-py311h38be061_1.tar.bz2 + url: https://conda.anaconda.org/conda-forge/linux-64/docutils-0.19-py311h38be061_1.tar.bz2 hash: md5: 599159b0740e9b82e7eef0e8471be3c2 sha256: ec7760e5a1d065b97ac32d12f7c70f19937040d8bb52a9f16573b65c6832c67a @@ -1357,7 +1357,7 @@ package: dependencies: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://repo.prefix.dev/conda-forge/win-64/docutils-0.19-py311h1ea47a8_1.tar.bz2 + url: https://conda.anaconda.org/conda-forge/win-64/docutils-0.19-py311h1ea47a8_1.tar.bz2 hash: md5: 52b2142036004451e1881d97e9d01e8a sha256: 40c678c6bda27aeb7ad8b1714f189201599d2068a0fa75087548b62f8afe9bc7 @@ -1370,7 +1370,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '>=4.6.0' - url: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda hash: md5: 72e42d28960d875c7654614f8b50939a sha256: ce61f4f99401a4bd455b89909153b40b9c823276aefcbb06f2044618696009ca @@ -1383,7 +1383,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '>=4.6.0' - url: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda hash: md5: 72e42d28960d875c7654614f8b50939a sha256: ce61f4f99401a4bd455b89909153b40b9c823276aefcbb06f2044618696009ca @@ -1395,7 +1395,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/executing-2.2.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/executing-2.2.0-pyhd8ed1ab_0.conda hash: md5: 81d30c08f9a3e556e8ca9e124b044d14 sha256: 7510dd93b9848c6257c43fdf9ad22adf62e7aa6da5f12a6a757aed83bcfedf05 @@ -1407,7 +1407,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/executing-2.2.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/executing-2.2.0-pyhd8ed1ab_0.conda hash: md5: 81d30c08f9a3e556e8ca9e124b044d14 sha256: 7510dd93b9848c6257c43fdf9ad22adf62e7aa6da5f12a6a757aed83bcfedf05 @@ -1419,7 +1419,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/fasteners-0.19-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/fasteners-0.19-pyhd8ed1ab_1.conda hash: md5: dbe9d42e94b5ff7af7b7893f4ce052e7 sha256: 42fb170778b47303e82eddfea9a6d1e1b8af00c927cd5a34595eaa882b903a16 @@ -1431,14 +1431,14 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/fasteners-0.19-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/fasteners-0.19-pyhd8ed1ab_1.conda hash: md5: dbe9d42e94b5ff7af7b7893f4ce052e7 sha256: 42fb170778b47303e82eddfea9a6d1e1b8af00c927cd5a34595eaa882b903a16 category: main optional: false - name: fonttools - version: 4.58.2 + version: 4.58.4 manager: conda platform: linux-64 dependencies: @@ -1449,14 +1449,14 @@ package: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* unicodedata2: '>=15.1.0' - url: https://repo.prefix.dev/conda-forge/linux-64/fonttools-4.58.2-py311h2dc5d0c_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/fonttools-4.58.4-py311h2dc5d0c_0.conda hash: - md5: c58ce3ab3833471964d7ee6b83203425 - sha256: 50a028c44427d51c467905d01129f0ca234007359331282aac374370e1e2e158 + md5: dd3ef31d2bf022668f30859d5e11c83e + sha256: f57df9d0573fa04b53afdaa5253bc4f1902357cca9265951f9d6ebe46567a40e category: main optional: false - name: fonttools - version: 4.58.2 + version: 4.58.4 manager: conda platform: win-64 dependencies: @@ -1468,10 +1468,10 @@ package: unicodedata2: '>=15.1.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/fonttools-4.58.2-py311h5082efb_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/fonttools-4.58.4-py311h5082efb_0.conda hash: - md5: b2aa1abdfadfdf8deb04ac6a9b64e11d - sha256: 40d319bdb90178680e91046dce7cbdb1764489e7ba7efad4ecc2d9cd00690f18 + md5: 0619fa68408637bbfb263aa8396a61a9 + sha256: 0381a0b6c32cddbeaab39750590205a97604b52faae1c7db7d7891ac4710be60 category: main optional: false - name: fqdn @@ -1481,7 +1481,7 @@ package: dependencies: cached-property: '>=1.3.0' python: '>=3.9,<4' - url: https://repo.prefix.dev/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_1.conda hash: md5: d3549fd50d450b6d9e7dddff25dd2110 sha256: 2509992ec2fd38ab27c7cdb42cf6cadc566a1cc0d1021a2673475d9fa87c6276 @@ -1494,7 +1494,7 @@ package: dependencies: cached-property: '>=1.3.0' python: '>=3.9,<4' - url: https://repo.prefix.dev/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_1.conda hash: md5: d3549fd50d450b6d9e7dddff25dd2110 sha256: 2509992ec2fd38ab27c7cdb42cf6cadc566a1cc0d1021a2673475d9fa87c6276 @@ -1507,7 +1507,7 @@ package: dependencies: libfreetype: 2.13.3 libfreetype6: 2.13.3 - url: https://repo.prefix.dev/conda-forge/linux-64/freetype-2.13.3-ha770c72_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/freetype-2.13.3-ha770c72_1.conda hash: md5: 9ccd736d31e0c6e41f54e704e5312811 sha256: 7ef7d477c43c12a5b4cddcf048a83277414512d1116aba62ebadfa7056a7d84f @@ -1520,7 +1520,7 @@ package: dependencies: libfreetype: 2.13.3 libfreetype6: 2.13.3 - url: https://repo.prefix.dev/conda-forge/win-64/freetype-2.13.3-h57928b3_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/freetype-2.13.3-h57928b3_1.conda hash: md5: 633504fe3f96031192e40e3e6c18ef06 sha256: 0bcc9c868d769247c12324f957c97c4dbee7e4095485db90d9c295bcb3b1bb43 @@ -1532,7 +1532,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2025.5.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/fsspec-2025.5.1-pyhd8ed1ab_0.conda hash: md5: 2d2c9ef879a7e64e2dc657b09272c2b6 sha256: cd6ae92ae5aa91a7e58cf39f1442d4821279f43f1c9499d15f45558d4793d1e0 @@ -1544,7 +1544,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2025.5.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/fsspec-2025.5.1-pyhd8ed1ab_0.conda hash: md5: 2d2c9ef879a7e64e2dc657b09272c2b6 sha256: cd6ae92ae5aa91a7e58cf39f1442d4821279f43f1c9499d15f45558d4793d1e0 @@ -1563,7 +1563,7 @@ package: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* scipy: '>=1.8' - url: https://repo.prefix.dev/conda-forge/linux-64/geoana-0.7.2-py311h5b7b71f_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/geoana-0.7.2-py311h5b7b71f_0.conda hash: md5: 43a8fbbc2388122345ec26773a07091c sha256: 549a28806517d33a391cf67319322b48cc7afbec85d45ee45792594287af5b5e @@ -1582,7 +1582,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/geoana-0.7.2-py311h9b10771_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/geoana-0.7.2-py311h9b10771_0.conda hash: md5: e611dcb0a755ab9df497b3a7b6dd72b0 sha256: a63e83fec8e75b61333693919eaa2789320b0caf2d62f37691bd68f56b296004 @@ -1598,7 +1598,7 @@ package: libstdcxx: '>=13' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://repo.prefix.dev/conda-forge/linux-64/greenlet-3.2.3-py311hfdbb021_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/greenlet-3.2.3-py311hfdbb021_0.conda hash: md5: 6da38c50cd487d2e2b98f8421bbe0f6a sha256: 29b46ef4338f297987bbaada35bada314de411d43b5a1edecb97b264214fa593 @@ -1614,7 +1614,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/greenlet-3.2.3-py311hda3d55a_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/greenlet-3.2.3-py311hda3d55a_0.conda hash: md5: 00d29571d33ae7e1c74486a3e53a953a sha256: ee485694a61f45822deca736b6b16eed55dc2fdc0e3fc5ede7c52aed98756795 @@ -1627,7 +1627,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/h11-0.16.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/h11-0.16.0-pyhd8ed1ab_0.conda hash: md5: 4b69232755285701bc86a5afe4d9933a sha256: f64b68148c478c3bfc8f8d519541de7d2616bf59d44485a5271041d40c061887 @@ -1640,7 +1640,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/h11-0.16.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/h11-0.16.0-pyhd8ed1ab_0.conda hash: md5: 4b69232755285701bc86a5afe4d9933a sha256: f64b68148c478c3bfc8f8d519541de7d2616bf59d44485a5271041d40c061887 @@ -1654,7 +1654,7 @@ package: hpack: '>=4.1,<5' hyperframe: '>=6.1,<7' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda hash: md5: b4754fb1bdcb70c8fd54f918301582c6 sha256: 0aa1cdc67a9fe75ea95b5644b734a756200d6ec9d0dff66530aec3d1c1e9df75 @@ -1668,7 +1668,7 @@ package: hpack: '>=4.1,<5' hyperframe: '>=6.1,<7' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda hash: md5: b4754fb1bdcb70c8fd54f918301582c6 sha256: 0aa1cdc67a9fe75ea95b5644b734a756200d6ec9d0dff66530aec3d1c1e9df75 @@ -1686,7 +1686,7 @@ package: 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.14.0-nompi_py311h7f87ba5_100.conda + url: https://conda.anaconda.org/conda-forge/linux-64/h5py-3.14.0-nompi_py311h7f87ba5_100.conda hash: md5: ecfcdeb88c8727f3cf67e1177528a498 sha256: cd2bd076c9d9bd8d8021698159e694a8600d8349e3208719c422af2c86b9c184 @@ -1705,7 +1705,7 @@ package: 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.14.0-nompi_py311h97e6cc2_100.conda + url: https://conda.anaconda.org/conda-forge/win-64/h5py-3.14.0-nompi_py311h97e6cc2_100.conda hash: md5: f806b981514c8d3e567a2b7d5a8569ff sha256: 600c7089e5fd40d9592d2d881192052b8c6df5f3afe9cd5e51fb8ef2bc8df1bc @@ -1725,7 +1725,7 @@ package: libstdcxx: '>=13' libzlib: '>=1.3.1,<2.0a0' openssl: '>=3.5.0,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/hdf5-1.14.6-nompi_h2d575fe_101.conda + url: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.6-nompi_h2d575fe_101.conda hash: md5: d1f61f912e1968a8ac9834b62fde008d sha256: b685b9d68e927f446bead1458c0fbf5ac02e6a471ed7606de427605ac647e8d3 @@ -1743,7 +1743,7 @@ package: 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.6-nompi_hd5d9e70_101.conda + url: https://conda.anaconda.org/conda-forge/win-64/hdf5-1.14.6-nompi_hd5d9e70_101.conda hash: md5: ea68eb3a15c51875468475c2647a2d23 sha256: 64d0ed35edefab9a912084f2806b9c4c4ffe2adcf5225a583088abbaafe5dbae @@ -1755,7 +1755,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda hash: md5: 0a802cb9888dd14eeefc611f05c40b6e sha256: 6ad78a180576c706aabeb5b4c8ceb97c0cb25f1e112d76495bff23e3779948ba @@ -1767,7 +1767,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda hash: md5: 0a802cb9888dd14eeefc611f05c40b6e sha256: 6ad78a180576c706aabeb5b4c8ceb97c0cb25f1e112d76495bff23e3779948ba @@ -1784,7 +1784,7 @@ package: h2: '>=3,<5' python: '>=3.9' sniffio: 1.* - url: https://repo.prefix.dev/conda-forge/noarch/httpcore-1.0.9-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.9-pyh29332c3_0.conda hash: md5: 4f14640d58e2cc0aa0819d9d8ba125bb sha256: 04d49cb3c42714ce533a8553986e1642d0549a05dc5cc48e0d43ff5be6679a5b @@ -1801,7 +1801,7 @@ package: h2: '>=3,<5' python: '>=3.9' sniffio: 1.* - url: https://repo.prefix.dev/conda-forge/noarch/httpcore-1.0.9-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.9-pyh29332c3_0.conda hash: md5: 4f14640d58e2cc0aa0819d9d8ba125bb sha256: 04d49cb3c42714ce533a8553986e1642d0549a05dc5cc48e0d43ff5be6679a5b @@ -1817,7 +1817,7 @@ package: httpcore: 1.* idna: '' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/httpx-0.28.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/httpx-0.28.1-pyhd8ed1ab_0.conda hash: md5: d6989ead454181f4f9bc987d3dc4e285 sha256: cd0f1de3697b252df95f98383e9edb1d00386bfdd03fdf607fa42fe5fcb09950 @@ -1833,7 +1833,7 @@ package: httpcore: 1.* idna: '' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/httpx-0.28.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/httpx-0.28.1-pyhd8ed1ab_0.conda hash: md5: d6989ead454181f4f9bc987d3dc4e285 sha256: cd0f1de3697b252df95f98383e9edb1d00386bfdd03fdf607fa42fe5fcb09950 @@ -1845,7 +1845,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda hash: md5: 8e6923fc12f1fe8f8c4e5c9f343256ac sha256: 77af6f5fe8b62ca07d09ac60127a30d9069fdc3c68d6b256754d0ffb1f7779f8 @@ -1857,7 +1857,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda hash: md5: 8e6923fc12f1fe8f8c4e5c9f343256ac sha256: 77af6f5fe8b62ca07d09ac60127a30d9069fdc3c68d6b256754d0ffb1f7779f8 @@ -1871,7 +1871,7 @@ package: __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 + url: https://conda.anaconda.org/conda-forge/linux-64/icu-75.1-he02047a_0.conda hash: md5: 8b189310083baabfb622af68fd9d3ae3 sha256: 71e750d509f5fa3421087ba88ef9a7b9be11c53174af3aa4d06aff4c18b38e8e @@ -1883,7 +1883,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda hash: md5: 39a4f67be3286c86d696df570b1201b7 sha256: d7a472c9fd479e2e8dcb83fb8d433fce971ea369d704ece380e876f9c3494e87 @@ -1895,7 +1895,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda hash: md5: 39a4f67be3286c86d696df570b1201b7 sha256: d7a472c9fd479e2e8dcb83fb8d433fce971ea369d704ece380e876f9c3494e87 @@ -1907,7 +1907,7 @@ package: platform: linux-64 dependencies: python: '>=3.4' - url: https://repo.prefix.dev/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2 hash: md5: 7de5386c8fea29e76b303f37dde4c352 sha256: c2bfd7043e0c4c12d8b5593de666c1e81d67b83c474a0a79282cc5c4ef845460 @@ -1919,7 +1919,7 @@ package: platform: win-64 dependencies: python: '>=3.4' - url: https://repo.prefix.dev/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2 hash: md5: 7de5386c8fea29e76b303f37dde4c352 sha256: c2bfd7043e0c4c12d8b5593de666c1e81d67b83c474a0a79282cc5c4ef845460 @@ -1932,7 +1932,7 @@ package: dependencies: python: '>=3.9' zipp: '>=3.20' - url: https://repo.prefix.dev/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda hash: md5: 63ccfdc3a3ce25b027b8767eb722fca8 sha256: c18ab120a0613ada4391b15981d86ff777b5690ca461ea7e9e49531e8f374745 @@ -1945,7 +1945,7 @@ package: dependencies: python: '>=3.9' zipp: '>=3.20' - url: https://repo.prefix.dev/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda hash: md5: 63ccfdc3a3ce25b027b8767eb722fca8 sha256: c18ab120a0613ada4391b15981d86ff777b5690ca461ea7e9e49531e8f374745 @@ -1957,7 +1957,7 @@ package: platform: linux-64 dependencies: importlib-metadata: ==8.7.0 - url: https://repo.prefix.dev/conda-forge/noarch/importlib_metadata-8.7.0-h40b2b14_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-8.7.0-h40b2b14_1.conda hash: md5: 8a77895fb29728b736a1a6c75906ea1a sha256: 46b11943767eece9df0dc9fba787996e4f22cc4c067f5e264969cfdfcb982c39 @@ -1969,7 +1969,7 @@ package: platform: win-64 dependencies: importlib-metadata: ==8.7.0 - url: https://repo.prefix.dev/conda-forge/noarch/importlib_metadata-8.7.0-h40b2b14_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-8.7.0-h40b2b14_1.conda hash: md5: 8a77895fb29728b736a1a6c75906ea1a sha256: 46b11943767eece9df0dc9fba787996e4f22cc4c067f5e264969cfdfcb982c39 @@ -1982,7 +1982,7 @@ package: dependencies: python: '>=3.9' zipp: '>=3.1.0' - url: https://repo.prefix.dev/conda-forge/noarch/importlib_resources-6.5.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.5.2-pyhd8ed1ab_0.conda hash: md5: c85c76dc67d75619a92f51dfbce06992 sha256: acc1d991837c0afb67c75b77fdc72b4bf022aac71fedd8b9ea45918ac9b08a80 @@ -1995,7 +1995,7 @@ package: dependencies: python: '>=3.9' zipp: '>=3.1.0' - url: https://repo.prefix.dev/conda-forge/noarch/importlib_resources-6.5.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.5.2-pyhd8ed1ab_0.conda hash: md5: c85c76dc67d75619a92f51dfbce06992 sha256: acc1d991837c0afb67c75b77fdc72b4bf022aac71fedd8b9ea45918ac9b08a80 @@ -2007,7 +2007,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda hash: md5: 6837f3eff7dcea42ecd714ce1ac2b108 sha256: 0ec8f4d02053cd03b0f3e63168316530949484f80e16f5e2fb199a1d117a89ca @@ -2019,7 +2019,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda hash: md5: 6837f3eff7dcea42ecd714ce1ac2b108 sha256: 0ec8f4d02053cd03b0f3e63168316530949484f80e16f5e2fb199a1d117a89ca @@ -2030,7 +2030,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/win-64/intel-openmp-2024.2.1-h57928b3_1083.conda + url: https://conda.anaconda.org/conda-forge/win-64/intel-openmp-2024.2.1-h57928b3_1083.conda hash: md5: 2d89243bfb53652c182a7c73182cce4f sha256: 0fd2b0b84c854029041b0ede8f4c2369242ee92acc0092f8407b1fe9238a8209 @@ -2055,7 +2055,7 @@ package: pyzmq: '>=24' tornado: '>=6.1' traitlets: '>=5.4.0' - url: https://repo.prefix.dev/conda-forge/noarch/ipykernel-6.29.5-pyh3099207_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.29.5-pyh3099207_0.conda hash: md5: b40131ab6a36ac2c09b7c57d4d3fbf99 sha256: 33cfd339bb4efac56edf93474b37ddc049e08b1b4930cf036c893cc1f5a1f32a @@ -2080,7 +2080,7 @@ package: pyzmq: '>=24' tornado: '>=6.1' traitlets: '>=5.4.0' - url: https://repo.prefix.dev/conda-forge/noarch/ipykernel-6.29.5-pyh4bbf305_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.29.5-pyh4bbf305_0.conda hash: md5: 18df5fc4944a679e085e0e8f31775fc8 sha256: dc569094125127c0078aa536f78733f383dd7e09507277ef8bcd1789786e7086 @@ -2105,7 +2105,7 @@ package: stack_data: '' traitlets: '>=5.13.0' typing_extensions: '>=4.6' - url: https://repo.prefix.dev/conda-forge/noarch/ipython-9.3.0-pyhfa0c392_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/ipython-9.3.0-pyhfa0c392_0.conda hash: md5: 270dbfb30fe759b39ce0c9fdbcd7be10 sha256: ee5d526cba0c0a5981cbcbcadc37a76d257627a904ed2cd2db45821735c93ebd @@ -2130,7 +2130,7 @@ package: stack_data: '' traitlets: '>=5.13.0' typing_extensions: '>=4.6' - url: https://repo.prefix.dev/conda-forge/noarch/ipython-9.3.0-pyh6be1c34_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/ipython-9.3.0-pyh6be1c34_0.conda hash: md5: 73e4ba4c8247f744be670f4da4f132e2 sha256: b6189de4e9f3d007a11e6e1df023c2bb73cf1864f63ca154c5ff8f0cdf601a50 @@ -2142,7 +2142,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/ipython_genutils-0.2.0-pyhd8ed1ab_2.conda + url: https://conda.anaconda.org/conda-forge/noarch/ipython_genutils-0.2.0-pyhd8ed1ab_2.conda hash: md5: 2f0ba4bc12af346bc6c99bdc377e8944 sha256: 45821a8986b4cb2421f766b240dbe6998a3c3123f012dd566720c1322e9b6e18 @@ -2154,7 +2154,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/ipython_genutils-0.2.0-pyhd8ed1ab_2.conda + url: https://conda.anaconda.org/conda-forge/noarch/ipython_genutils-0.2.0-pyhd8ed1ab_2.conda hash: md5: 2f0ba4bc12af346bc6c99bdc377e8944 sha256: 45821a8986b4cb2421f766b240dbe6998a3c3123f012dd566720c1322e9b6e18 @@ -2167,7 +2167,7 @@ package: dependencies: pygments: '' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/ipython_pygments_lexers-1.1.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/ipython_pygments_lexers-1.1.1-pyhd8ed1ab_0.conda hash: md5: bd80ba060603cc228d9d81c257093119 sha256: 894682a42a7d659ae12878dbcb274516a7031bbea9104e92f8e88c1f2765a104 @@ -2180,7 +2180,7 @@ package: dependencies: pygments: '' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/ipython_pygments_lexers-1.1.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/ipython_pygments_lexers-1.1.1-pyhd8ed1ab_0.conda hash: md5: bd80ba060603cc228d9d81c257093119 sha256: 894682a42a7d659ae12878dbcb274516a7031bbea9104e92f8e88c1f2765a104 @@ -2198,7 +2198,7 @@ package: python: '>=3.3' traitlets: '>=4.3.1' widgetsnbextension: '>=3.6.10,<3.7.0' - url: https://repo.prefix.dev/conda-forge/noarch/ipywidgets-7.8.5-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/ipywidgets-7.8.5-pyhd8ed1ab_0.conda hash: md5: 47672c493015ab57d5fcde9531ab18ef sha256: 8cc67e44137bb779c76d92952fdc4d8cd475605f4f0d13e8d0f04f25c056939b @@ -2216,7 +2216,7 @@ package: python: '>=3.3' traitlets: '>=4.3.1' widgetsnbextension: '>=3.6.10,<3.7.0' - url: https://repo.prefix.dev/conda-forge/noarch/ipywidgets-7.8.5-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/ipywidgets-7.8.5-pyhd8ed1ab_0.conda hash: md5: 47672c493015ab57d5fcde9531ab18ef sha256: 8cc67e44137bb779c76d92952fdc4d8cd475605f4f0d13e8d0f04f25c056939b @@ -2229,7 +2229,7 @@ package: dependencies: arrow: '>=0.15.0' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/isoduration-20.11.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/isoduration-20.11.0-pyhd8ed1ab_1.conda hash: md5: 0b0154421989637d424ccf0f104be51a sha256: 08e838d29c134a7684bca0468401d26840f41c92267c4126d7b43a6b533b0aed @@ -2242,7 +2242,7 @@ package: dependencies: arrow: '>=0.15.0' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/isoduration-20.11.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/isoduration-20.11.0-pyhd8ed1ab_1.conda hash: md5: 0b0154421989637d424ccf0f104be51a sha256: 08e838d29c134a7684bca0468401d26840f41c92267c4126d7b43a6b533b0aed @@ -2254,7 +2254,7 @@ package: platform: linux-64 dependencies: python: '>=3.9,<4.0' - url: https://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_1.conda hash: md5: c25d1a27b791dab1797832aafd6a3e9a sha256: e1d0e81e3c3da5d7854f9f57ffb89d8f4505bb64a2f05bb01d78eff24344a105 @@ -2266,7 +2266,7 @@ package: platform: win-64 dependencies: python: '>=3.9,<4.0' - url: https://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_1.conda hash: md5: c25d1a27b791dab1797832aafd6a3e9a sha256: e1d0e81e3c3da5d7854f9f57ffb89d8f4505bb64a2f05bb01d78eff24344a105 @@ -2279,7 +2279,7 @@ package: dependencies: parso: '>=0.8.3,<0.9.0' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda hash: md5: a4f4c5dc9b80bc50e0d3dc4e6e8f1bd9 sha256: 92c4d217e2dc68983f724aa983cca5464dcb929c566627b26a2511159667dba8 @@ -2292,7 +2292,7 @@ package: dependencies: parso: '>=0.8.3,<0.9.0' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda hash: md5: a4f4c5dc9b80bc50e0d3dc4e6e8f1bd9 sha256: 92c4d217e2dc68983f724aa983cca5464dcb929c566627b26a2511159667dba8 @@ -2305,7 +2305,7 @@ package: dependencies: markupsafe: '>=2.0' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda hash: md5: 446bd6c8cb26050d528881df495ce646 sha256: f1ac18b11637ddadc05642e8185a851c7fab5998c6f5470d716812fae943b2af @@ -2318,7 +2318,7 @@ package: dependencies: markupsafe: '>=2.0' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda hash: md5: 446bd6c8cb26050d528881df495ce646 sha256: f1ac18b11637ddadc05642e8185a851c7fab5998c6f5470d716812fae943b2af @@ -2331,7 +2331,7 @@ package: dependencies: python: '>=3.9' setuptools: '' - url: https://repo.prefix.dev/conda-forge/noarch/joblib-1.5.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/joblib-1.5.1-pyhd8ed1ab_0.conda hash: md5: fb1c14694de51a476ce8636d92b6f42c sha256: e5a4eca9a5d8adfaa3d51e24eefd1a6d560cb3b33a7e1eee13e410bec457b7ed @@ -2344,7 +2344,7 @@ package: dependencies: python: '>=3.9' setuptools: '' - url: https://repo.prefix.dev/conda-forge/noarch/joblib-1.5.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/joblib-1.5.1-pyhd8ed1ab_0.conda hash: md5: fb1c14694de51a476ce8636d92b6f42c sha256: e5a4eca9a5d8adfaa3d51e24eefd1a6d560cb3b33a7e1eee13e410bec457b7ed @@ -2356,7 +2356,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/json5-0.12.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/json5-0.12.0-pyhd8ed1ab_0.conda hash: md5: 56275442557b3b45752c10980abfe2db sha256: 889e2a49de796475b5a4bc57d0ba7f4606b368ee2098e353a6d9a14b0e2c6393 @@ -2368,7 +2368,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/json5-0.12.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/json5-0.12.0-pyhd8ed1ab_0.conda hash: md5: 56275442557b3b45752c10980abfe2db sha256: 889e2a49de796475b5a4bc57d0ba7f4606b368ee2098e353a6d9a14b0e2c6393 @@ -2381,7 +2381,7 @@ package: dependencies: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://repo.prefix.dev/conda-forge/linux-64/jsonpointer-3.0.0-py311h38be061_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/jsonpointer-3.0.0-py311h38be061_1.conda hash: md5: 5ca76f61b00a15a9be0612d4d883badc sha256: 2f082f7b12a7c6824e051321c1029452562ad6d496ad2e8c8b7b3dea1c8feb92 @@ -2394,7 +2394,7 @@ package: dependencies: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://repo.prefix.dev/conda-forge/win-64/jsonpointer-3.0.0-py311h1ea47a8_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/jsonpointer-3.0.0-py311h1ea47a8_1.conda hash: md5: 943f7fab631e12750641efd7279a268c sha256: 9a667eeae67936e710ff69ee7ce0e784d6052eeba9670b268c565a55178098c4 @@ -2412,7 +2412,7 @@ package: python: '>=3.9' referencing: '>=0.28.4' rpds-py: '>=0.7.1' - url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-4.24.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.24.0-pyhd8ed1ab_0.conda hash: md5: 59220749abcd119d645e6879983497a1 sha256: 812134fabb49493a50f7f443dc0ffafd0f63766f403a0bd8e71119763e57456a @@ -2430,7 +2430,7 @@ package: python: '>=3.9' referencing: '>=0.28.4' rpds-py: '>=0.7.1' - url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-4.24.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.24.0-pyhd8ed1ab_0.conda hash: md5: 59220749abcd119d645e6879983497a1 sha256: 812134fabb49493a50f7f443dc0ffafd0f63766f403a0bd8e71119763e57456a @@ -2443,7 +2443,7 @@ package: dependencies: python: '>=3.9' referencing: '>=0.31.0' - url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-specifications-2025.4.1-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2025.4.1-pyh29332c3_0.conda hash: md5: 41ff526b1083fde51fbdc93f29282e0e sha256: 66fbad7480f163509deec8bd028cd3ea68e58022982c838683586829f63f3efa @@ -2456,7 +2456,7 @@ package: dependencies: python: '>=3.9' referencing: '>=0.31.0' - url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-specifications-2025.4.1-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2025.4.1-pyh29332c3_0.conda hash: md5: 41ff526b1083fde51fbdc93f29282e0e sha256: 66fbad7480f163509deec8bd028cd3ea68e58022982c838683586829f63f3efa @@ -2476,7 +2476,7 @@ package: rfc3986-validator: '>0.1.0' uri-template: '' webcolors: '>=24.6.0' - url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-with-format-nongpl-4.24.0-hd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-with-format-nongpl-4.24.0-hd8ed1ab_0.conda hash: md5: b4eaebf6fac318db166238796d2a9702 sha256: 970a1efffe29474d6bb3e4d63bc04105c5611d1c7e2cd7e2d43d1ba468f33c20 @@ -2496,7 +2496,7 @@ package: rfc3986-validator: '>0.1.0' uri-template: '' webcolors: '>=24.6.0' - url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-with-format-nongpl-4.24.0-hd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-with-format-nongpl-4.24.0-hd8ed1ab_0.conda hash: md5: b4eaebf6fac318db166238796d2a9702 sha256: 970a1efffe29474d6bb3e4d63bc04105c5611d1c7e2cd7e2d43d1ba468f33c20 @@ -2527,7 +2527,7 @@ package: sphinx-thebe: '>=0.3.1,<1' sphinx-togglebutton: '' sphinxcontrib-bibtex: '>=2.5.0,<3' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter-book-1.0.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter-book-1.0.3-pyhd8ed1ab_1.conda hash: md5: 739a29ac73026e68405153b50d0c60c2 sha256: f028c32b5d97d24df44b1a41f771a9932e07815c60c02e24acd9bd2eca31097f @@ -2558,7 +2558,7 @@ package: sphinx-thebe: '>=0.3.1,<1' sphinx-togglebutton: '' sphinxcontrib-bibtex: '>=2.5.0,<3' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter-book-1.0.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter-book-1.0.3-pyhd8ed1ab_1.conda hash: md5: 739a29ac73026e68405153b50d0c60c2 sha256: f028c32b5d97d24df44b1a41f771a9932e07815c60c02e24acd9bd2eca31097f @@ -2578,7 +2578,7 @@ package: pyyaml: '' sqlalchemy: '>=1.3.12,<3' tabulate: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter-cache-1.0.1-pyhff2d567_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter-cache-1.0.1-pyhff2d567_0.conda hash: md5: b0ee650829b8974202a7abe7f8b81e5a sha256: 054d397dd45ed08bffb0976702e553dfb0d0b0a477da9cff36e2ea702e928f48 @@ -2598,7 +2598,7 @@ package: pyyaml: '' sqlalchemy: '>=1.3.12,<3' tabulate: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter-cache-1.0.1-pyhff2d567_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter-cache-1.0.1-pyhff2d567_0.conda hash: md5: b0ee650829b8974202a7abe7f8b81e5a sha256: 054d397dd45ed08bffb0976702e553dfb0d0b0a477da9cff36e2ea702e928f48 @@ -2612,7 +2612,7 @@ package: importlib-metadata: '>=4.8.3' jupyter_server: '>=1.1.2' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter-lsp-2.2.5-pyhe01879c_2.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter-lsp-2.2.5-pyhe01879c_2.conda hash: md5: 7ed6505c703f3c4e1a58864bf84505e2 sha256: f2ca86b121bcfeaf0241a927824459ba8712e64806b98dd262eb2b1a7c4e82a6 @@ -2626,7 +2626,7 @@ package: importlib-metadata: '>=4.8.3' jupyter_server: '>=1.1.2' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter-lsp-2.2.5-pyhe01879c_2.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter-lsp-2.2.5-pyhe01879c_2.conda hash: md5: 7ed6505c703f3c4e1a58864bf84505e2 sha256: f2ca86b121bcfeaf0241a927824459ba8712e64806b98dd262eb2b1a7c4e82a6 @@ -2644,7 +2644,7 @@ package: pyzmq: '>=23.0' tornado: '>=6.2' traitlets: '>=5.3' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda hash: md5: 4ebae00eae9705b0c3d6d1018a81d047 sha256: 19d8bd5bb2fde910ec59e081eeb59529491995ce0d653a5209366611023a0b3a @@ -2662,7 +2662,7 @@ package: pyzmq: '>=23.0' tornado: '>=6.2' traitlets: '>=5.3' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda hash: md5: 4ebae00eae9705b0c3d6d1018a81d047 sha256: 19d8bd5bb2fde910ec59e081eeb59529491995ce0d653a5209366611023a0b3a @@ -2677,7 +2677,7 @@ package: platformdirs: '>=2.5' python: '>=3.8' traitlets: '>=5.3' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter_core-5.8.1-pyh31011fe_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.8.1-pyh31011fe_0.conda hash: md5: b7d89d860ebcda28a5303526cdee68ab sha256: 56a7a7e907f15cca8c4f9b0c99488276d4cb10821d2d15df9245662184872e81 @@ -2694,7 +2694,7 @@ package: python: '>=3.8' pywin32: '>=300' traitlets: '>=5.3' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter_core-5.8.1-pyh5737063_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.8.1-pyh5737063_0.conda hash: md5: 324e60a0d3f39f268e899709575ea3cd sha256: 928c2514c2974fda78447903217f01ca89a77eefedd46bf6a2fe97072df57e8d @@ -2714,7 +2714,7 @@ package: rfc3339-validator: '' rfc3986-validator: '>=0.1.1' traitlets: '>=5.3' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter_events-0.12.0-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.12.0-pyh29332c3_0.conda hash: md5: f56000b36f09ab7533877e695e4e8cb0 sha256: 37e6ac3ccf7afcc730c3b93cb91a13b9ae827fd306f35dd28f958a74a14878b5 @@ -2734,7 +2734,7 @@ package: rfc3339-validator: '' rfc3986-validator: '>=0.1.1' traitlets: '>=5.3' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter_events-0.12.0-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.12.0-pyh29332c3_0.conda hash: md5: f56000b36f09ab7533877e695e4e8cb0 sha256: 37e6ac3ccf7afcc730c3b93cb91a13b9ae827fd306f35dd28f958a74a14878b5 @@ -2764,7 +2764,7 @@ package: tornado: '>=6.2.0' traitlets: '>=5.6.0' websocket-client: '>=1.7' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter_server-2.16.0-pyhe01879c_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.16.0-pyhe01879c_0.conda hash: md5: f062e04d7cd585c937acbf194dceec36 sha256: 0082fb6f0afaf872affee4cde3b210f7f7497a5fb47f2944ab638fef0f0e2e77 @@ -2794,7 +2794,7 @@ package: tornado: '>=6.2.0' traitlets: '>=5.6.0' websocket-client: '>=1.7' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter_server-2.16.0-pyhe01879c_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.16.0-pyhe01879c_0.conda hash: md5: f062e04d7cd585c937acbf194dceec36 sha256: 0082fb6f0afaf872affee4cde3b210f7f7497a5fb47f2944ab638fef0f0e2e77 @@ -2807,7 +2807,7 @@ package: dependencies: python: '>=3.9' terminado: '>=0.8.3' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter_server_terminals-0.5.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_server_terminals-0.5.3-pyhd8ed1ab_1.conda hash: md5: 2d983ff1b82a1ccb6f2e9d8784bdd6bd sha256: 0890fc79422191bc29edf17d7b42cff44ba254aa225d31eb30819f8772b775b8 @@ -2820,7 +2820,7 @@ package: dependencies: python: '>=3.9' terminado: '>=0.8.3' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter_server_terminals-0.5.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_server_terminals-0.5.3-pyhd8ed1ab_1.conda hash: md5: 2d983ff1b82a1ccb6f2e9d8784bdd6bd sha256: 0890fc79422191bc29edf17d7b42cff44ba254aa225d31eb30819f8772b775b8 @@ -2847,7 +2847,7 @@ package: tomli: '>=1.2.2' tornado: '>=6.2.0' traitlets: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.4.3-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.4.3-pyhd8ed1ab_0.conda hash: md5: 4861a0c2a5a5d0481a450a9dfaf9febe sha256: fc0235a71d852734fe92183a78cb91827367573450eba82465ae522c64230736 @@ -2874,7 +2874,7 @@ package: tomli: '>=1.2.2' tornado: '>=6.2.0' traitlets: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.4.3-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.4.3-pyhd8ed1ab_0.conda hash: md5: 4861a0c2a5a5d0481a450a9dfaf9febe sha256: fc0235a71d852734fe92183a78cb91827367573450eba82465ae522c64230736 @@ -2887,7 +2887,7 @@ package: dependencies: pygments: '>=2.4.1,<3' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab_pygments-0.3.0-pyhd8ed1ab_2.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.3.0-pyhd8ed1ab_2.conda hash: md5: fd312693df06da3578383232528c468d sha256: dc24b900742fdaf1e077d9a3458fd865711de80bca95fe3c6d46610c532c6ef0 @@ -2900,7 +2900,7 @@ package: dependencies: pygments: '>=2.4.1,<3' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab_pygments-0.3.0-pyhd8ed1ab_2.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.3.0-pyhd8ed1ab_2.conda hash: md5: fd312693df06da3578383232528c468d sha256: dc24b900742fdaf1e077d9a3458fd865711de80bca95fe3c6d46610c532c6ef0 @@ -2920,7 +2920,7 @@ package: packaging: '>=21.3' python: '>=3.9' requests: '>=2.31' - url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab_server-2.27.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.27.3-pyhd8ed1ab_1.conda hash: md5: 9dc4b2b0f41f0de41d27f3293e319357 sha256: d03d0b7e23fa56d322993bc9786b3a43b88ccc26e58b77c756619a921ab30e86 @@ -2940,7 +2940,7 @@ package: packaging: '>=21.3' python: '>=3.9' requests: '>=2.31' - url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab_server-2.27.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.27.3-pyhd8ed1ab_1.conda hash: md5: 9dc4b2b0f41f0de41d27f3293e319357 sha256: d03d0b7e23fa56d322993bc9786b3a43b88ccc26e58b77c756619a921ab30e86 @@ -2952,7 +2952,7 @@ package: platform: linux-64 dependencies: python: '>=3.7' - url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab_widgets-1.1.11-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-1.1.11-pyhd8ed1ab_0.conda hash: md5: 05a08b368343304618b6a88425aa851a sha256: 639544e96969c7513b33bf3201a4dc3095625e34cff16c187f5dec9bee2dfb2f @@ -2964,7 +2964,7 @@ package: platform: win-64 dependencies: python: '>=3.7' - url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab_widgets-1.1.11-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-1.1.11-pyhd8ed1ab_0.conda hash: md5: 05a08b368343304618b6a88425aa851a sha256: 639544e96969c7513b33bf3201a4dc3095625e34cff16c187f5dec9bee2dfb2f @@ -2982,7 +2982,7 @@ package: python: '>=3.9' pyyaml: '' tomli: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupytext-1.17.2-pyh80e38bb_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupytext-1.17.2-pyh80e38bb_0.conda hash: md5: 6d0652a97ef103de0c77b9c610d0c20d sha256: 48986a9c01f17d1d5a598af33814a877fd67a6a3287625718d76617a7d17f51d @@ -3000,7 +3000,7 @@ package: python: '>=3.9' pyyaml: '' tomli: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupytext-1.17.2-pyh80e38bb_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupytext-1.17.2-pyh80e38bb_0.conda hash: md5: 6d0652a97ef103de0c77b9c610d0c20d sha256: 48986a9c01f17d1d5a598af33814a877fd67a6a3287625718d76617a7d17f51d @@ -3012,7 +3012,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=10.3.0' - url: https://repo.prefix.dev/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 hash: md5: 30186d27e2c9fa62b45fb1476b7200e3 sha256: 150c05a6e538610ca7c43beb3a40d65c90537497a4f6a5f4d15ec0451b6f5ebb @@ -3028,7 +3028,7 @@ package: libstdcxx: '>=13' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://repo.prefix.dev/conda-forge/linux-64/kiwisolver-1.4.7-py311hd18a35c_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/kiwisolver-1.4.7-py311hd18a35c_0.conda hash: md5: be34c90cce87090d24da64a7c239ca96 sha256: 4af11cbc063096a284fe1689b33424e7e49732a27fd396d74c7dee03d1e788ee @@ -3044,7 +3044,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/kiwisolver-1.4.7-py311h3257749_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/kiwisolver-1.4.7-py311h3257749_0.conda hash: md5: 18fd1ac3d79a8d6550eaea5ceaa00036 sha256: a2079e13d1345a5dd61df6be933e828e805051256e7260009ba93fce55aebd75 @@ -3060,7 +3060,7 @@ package: libgcc-ng: '>=12' libstdcxx-ng: '>=12' openssl: '>=3.3.1,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda hash: md5: 3f43953b7d3fb3aaa1d0d0723d91e368 sha256: 99df692f7a8a5c27cd14b5fb1374ee55e756631b9c3d659ed3ee60830249b238 @@ -3075,7 +3075,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/krb5-1.21.3-hdf4eb48_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/krb5-1.21.3-hdf4eb48_0.conda hash: md5: 31aec030344e962fbd7dbbbbd68e60a9 sha256: 18e8b3430d7d232dad132f574268f56b3eb1a19431d6d5de8c53c29e6c18fa81 @@ -3088,7 +3088,7 @@ package: dependencies: python: '' six: '' - url: https://repo.prefix.dev/conda-forge/noarch/latexcodec-2.0.1-pyh9f0ad1d_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/latexcodec-2.0.1-pyh9f0ad1d_0.tar.bz2 hash: md5: 8d67904973263afd2985ba56aa2d6bb4 sha256: 5210d31c8f2402dd1ad1b3edcf7a53292b9da5de20cd14d9c243dbf9278b1c4f @@ -3101,7 +3101,7 @@ package: dependencies: python: '' six: '' - url: https://repo.prefix.dev/conda-forge/noarch/latexcodec-2.0.1-pyh9f0ad1d_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/latexcodec-2.0.1-pyh9f0ad1d_0.tar.bz2 hash: md5: 8d67904973263afd2985ba56aa2d6bb4 sha256: 5210d31c8f2402dd1ad1b3edcf7a53292b9da5de20cd14d9c243dbf9278b1c4f @@ -3116,7 +3116,7 @@ package: libgcc: '>=13' libjpeg-turbo: '>=3.0.0,<4.0a0' libtiff: '>=4.7.0,<4.8.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/lcms2-2.17-h717163a_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/lcms2-2.17-h717163a_0.conda hash: md5: 000e85703f0fd9594c81710dd5066471 sha256: d6a61830a354da022eae93fa896d0991385a875c6bba53c82263a289deda9db8 @@ -3132,7 +3132,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/lcms2-2.17-hbcf6048_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/lcms2-2.17-hbcf6048_0.conda hash: md5: 3538827f77b82a837fa681a4579e37a1 sha256: 7712eab5f1a35ca3ea6db48ead49e0d6ac7f96f8560da8023e61b3dbe4f3b25d @@ -3144,10 +3144,10 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_4.conda + url: https://conda.anaconda.org/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 @@ -3158,7 +3158,7 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' libstdcxx: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/lerc-4.0.0-h0aef613_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h0aef613_1.conda hash: md5: 9344155d33912347b37f0ae6c410a835 sha256: 412381a43d5ff9bbed82cd52a0bbca5b90623f62e41007c9c42d3870c60945ff @@ -3172,37 +3172,38 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/lerc-4.0.0-h6470a55_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/lerc-4.0.0-h6470a55_1.conda hash: md5: c1b81da6d29a14b542da14a36c9fbf3f sha256: 868a3dff758cc676fa1286d3f36c3e0101cca56730f7be531ab84dc91ec58e9d 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://conda.anaconda.org/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://conda.anaconda.org/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 @@ -3211,7 +3212,7 @@ package: platform: linux-64 dependencies: mkl: '>=2024.2.2,<2025.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libblas-3.9.0-31_hfdb39a5_mkl.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-31_hfdb39a5_mkl.conda hash: md5: bdf4a57254e8248222cb631db4393ff1 sha256: 862289f2cfb84bb6001d0e3569e908b8c42d66b881bd5b03f730a3924628b978 @@ -3223,7 +3224,7 @@ package: platform: win-64 dependencies: mkl: 2024.2.2 - url: https://repo.prefix.dev/conda-forge/win-64/libblas-3.9.0-31_h641d27c_mkl.conda + url: https://conda.anaconda.org/conda-forge/win-64/libblas-3.9.0-31_h641d27c_mkl.conda hash: md5: d05563c577fe2f37693a554b3f271e8f sha256: 7bb4d5b591e98fe607279520ee78e3571a297b5720aa789a2536041ad5540de8 @@ -3236,7 +3237,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlicommon-1.1.0-hb9d3cd8_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.1.0-hb9d3cd8_3.conda hash: md5: cb98af5db26e3f482bebb80ce9d947d3 sha256: 462a8ed6a7bb9c5af829ec4b90aab322f8bcd9d8987f793e6986ea873bbd05cf @@ -3250,7 +3251,7 @@ 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_3.conda + url: https://conda.anaconda.org/conda-forge/win-64/libbrotlicommon-1.1.0-h2466b09_3.conda hash: md5: cf20c8b8b48ab5252ec64b9c66bfe0a4 sha256: e70ea4b773fadddda697306a80a29d9cbd36b7001547cd54cbfe9a97a518993f @@ -3264,7 +3265,7 @@ 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_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.1.0-hb9d3cd8_3.conda hash: md5: 1c6eecffad553bde44c5238770cfb7da sha256: 3eb27c1a589cbfd83731be7c3f19d6d679c7a444c3ba19db6ad8bf49172f3d83 @@ -3279,7 +3280,7 @@ 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_3.conda + url: https://conda.anaconda.org/conda-forge/win-64/libbrotlidec-1.1.0-h2466b09_3.conda hash: md5: a342933dbc6d814541234c7c81cb5205 sha256: a35a0db7e3257e011b10ffb371735b2b24074412d0b27c3dab7ca9f2c549cfcf @@ -3293,7 +3294,7 @@ 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_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlienc-1.1.0-hb9d3cd8_3.conda hash: md5: 3facafe58f3858eb95527c7d3a3fc578 sha256: 76e8492b0b0a0d222bfd6081cae30612aa9915e4309396fdca936528ccf314b7 @@ -3308,7 +3309,7 @@ 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_3.conda + url: https://conda.anaconda.org/conda-forge/win-64/libbrotlienc-1.1.0-h2466b09_3.conda hash: md5: 7ef0af55d70cbd9de324bb88b7f9d81e sha256: 9d0703c5a01c10d346587ff0535a0eb81042364333caa4a24a0e4a0c08fd490b @@ -3320,7 +3321,7 @@ package: platform: linux-64 dependencies: libblas: 3.9.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libcblas-3.9.0-31_h372d94f_mkl.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-31_h372d94f_mkl.conda hash: md5: 2a06a6c16b45bd3d10002927ca204b67 sha256: 2ee3ab2b6eeb59f2d3c6f933fa0db28f1b56f0bc543ed2c0f6ec04060e4b6ec0 @@ -3332,7 +3333,7 @@ package: platform: win-64 dependencies: libblas: 3.9.0 - url: https://repo.prefix.dev/conda-forge/win-64/libcblas-3.9.0-31_h5e41251_mkl.conda + url: https://conda.anaconda.org/conda-forge/win-64/libcblas-3.9.0-31_h5e41251_mkl.conda hash: md5: 43c100b94ad2607382b0cf0f3a6b0bf3 sha256: 609f455b099919bd4d15d4a733f493dc789e02da73fe4474f1cca73afafb95b8 @@ -3351,7 +3352,7 @@ package: libzlib: '>=1.3.1,<2.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.14.1-h332b0f4_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.14.1-h332b0f4_0.conda hash: md5: 45f6713cb00f124af300342512219182 sha256: b6c5cf340a4f80d70d64b3a29a7d9885a5918d16a5cb952022820e6d3e79dc8b @@ -3368,7 +3369,7 @@ 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.14.1-h88aaa65_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/libcurl-8.14.1-h88aaa65_0.conda hash: md5: 836b9c08f34d2017dbcaec907c6a1138 sha256: b2cface2cf35d8522289df7fffc14370596db6f6dc481cc1b6ca313faeac19d8 @@ -3381,7 +3382,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libdeflate-1.24-h86f0d12_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.24-h86f0d12_0.conda hash: md5: 64f0c503da58ec25ebd359e4d990afa8 sha256: 8420748ea1cc5f18ecc5068b4f24c7a023cc9b20971c99c824ba10641fb95ddf @@ -3395,7 +3396,7 @@ package: 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.24-h76ddb4d_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/libdeflate-1.24-h76ddb4d_0.conda hash: md5: 08d988e266c6ae77e03d164b83786dc4 sha256: 65347475c0009078887ede77efe60db679ea06f2b56f7853b9310787fe5ad035 @@ -3408,7 +3409,7 @@ package: dependencies: numpy: '' python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/libdlf-0.3.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/libdlf-0.3.0-pyhd8ed1ab_1.conda hash: md5: 2e9654bb2bcf5986c2def3ba35413326 sha256: 367c575a6388380d9a0da6ff06571d903ae89366c42d9f16e32de5d359b6971a @@ -3421,7 +3422,7 @@ package: dependencies: numpy: '' python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/libdlf-0.3.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/libdlf-0.3.0-pyhd8ed1ab_1.conda hash: md5: 2e9654bb2bcf5986c2def3ba35413326 sha256: 367c575a6388380d9a0da6ff06571d903ae89366c42d9f16e32de5d359b6971a @@ -3435,7 +3436,7 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' ncurses: '>=6.5,<7.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.conda hash: md5: c277e0a4d549b03ac1e9d6cbbe3d017b sha256: d789471216e7aba3c184cd054ed61ce3f6dac6f87a50ec69291b9297f8c18724 @@ -3447,7 +3448,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://repo.prefix.dev/conda-forge/linux-64/libev-4.33-hd590300_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda hash: md5: 172bf1cd1ff8629f2b1179945ed45055 sha256: 1cd6048169fa0395af74ed5d8f1716e22c19a81a8a36f934c110ca3ad4dd27b4 @@ -3460,7 +3461,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libexpat-2.7.0-h5888daf_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.7.0-h5888daf_0.conda hash: md5: db0bfbe7dd197b68ad5f30333bae6ce0 sha256: 33ab03438aee65d6aa667cf7d90c91e5e7d734c19a67aa4c7040742c0a13d505 @@ -3474,7 +3475,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libexpat-2.7.0-he0c23c2_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/libexpat-2.7.0-he0c23c2_0.conda hash: md5: b6f5352fdb525662f4169a0431d2dd7a sha256: 1a227c094a4e06bd54e8c2f3ec40c17ff99dcf3037d812294f842210aa66dbeb @@ -3487,7 +3488,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libffi-3.4.6-h2dba641_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.6-h2dba641_1.conda hash: md5: ede4673863426c0883c0063d853bbd85 sha256: 764432d32db45466e87f10621db5b74363a9f847d2b8b1f9743746cd160f06ab @@ -3501,7 +3502,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libffi-3.4.6-h537db12_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.6-h537db12_1.conda hash: md5: 85d8fa5e55ed8f93f874b3b23ed54ec6 sha256: d3b0b8812eab553d3464bbd68204f007f1ebadf96ce30eb0cbc5159f72e353f5 @@ -3513,7 +3514,7 @@ package: platform: linux-64 dependencies: libfreetype6: '>=2.13.3' - url: https://repo.prefix.dev/conda-forge/linux-64/libfreetype-2.13.3-ha770c72_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libfreetype-2.13.3-ha770c72_1.conda hash: md5: 51f5be229d83ecd401fb369ab96ae669 sha256: 7be9b3dac469fe3c6146ff24398b685804dfc7a1de37607b84abd076f57cc115 @@ -3525,7 +3526,7 @@ package: platform: win-64 dependencies: libfreetype6: '>=2.13.3' - url: https://repo.prefix.dev/conda-forge/win-64/libfreetype-2.13.3-h57928b3_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/libfreetype-2.13.3-h57928b3_1.conda hash: md5: 410ba2c8e7bdb278dfbb5d40220e39d2 sha256: e5bc7d0a8d11b7b234da4fcd9d78f297f7dec3fec8bd06108fd3ac7b2722e32e @@ -3540,7 +3541,7 @@ package: libgcc: '>=13' libpng: '>=1.6.47,<1.7.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libfreetype6-2.13.3-h48d6fc4_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libfreetype6-2.13.3-h48d6fc4_1.conda hash: md5: 3c255be50a506c50765a93a6644f32fe sha256: 7759bd5c31efe5fbc36a7a1f8ca5244c2eabdbeb8fc1bee4b99cf989f35c7d81 @@ -3556,7 +3557,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libfreetype6-2.13.3-h0b5ce68_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/libfreetype6-2.13.3-h0b5ce68_1.conda hash: md5: a84b7d1a13060a9372bea961a8131dbc sha256: 61308653e7758ff36f80a60d598054168a1389ddfbac46d7864c415fafe18e69 @@ -3569,7 +3570,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' _openmp_mutex: '>=4.5' - url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-15.1.0-h767d61c_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-15.1.0-h767d61c_2.conda hash: md5: ea8ac52380885ed41c1baa8f1d6d2b93 sha256: 0024f9ab34c09629621aefd8603ef77bf9d708129b0dd79029e502c39ffc2195 @@ -3582,7 +3583,7 @@ package: dependencies: _openmp_mutex: '>=4.5' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' - url: https://repo.prefix.dev/conda-forge/win-64/libgcc-15.1.0-h1383e82_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/libgcc-15.1.0-h1383e82_2.conda hash: md5: 9bedb24480136bfeb81ebc81d4285e70 sha256: c0288596ac58366d96a56c57e4088fe1c6dd4194fdcaeacf5862f47fb1e1e5be @@ -3594,7 +3595,7 @@ package: platform: linux-64 dependencies: libgcc: 15.1.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-ng-15.1.0-h69a702a_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-15.1.0-h69a702a_2.conda hash: md5: ddca86c7040dd0e73b2b69bd7833d225 sha256: 0ab5421a89f090f3aa33841036bb3af4ed85e1f91315b528a9d75fab9aad51ae @@ -3606,7 +3607,7 @@ package: platform: linux-64 dependencies: libgfortran5: 15.1.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran-15.1.0-h69a702a_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-15.1.0-h69a702a_2.conda hash: md5: f92e6e0a3c0c0c85561ef61aa59d555d sha256: 914daa4f632b786827ea71b5e07cd00d25fc6e67789db2f830dc481eec660342 @@ -3619,7 +3620,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=15.1.0' - url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran5-15.1.0-hcea5267_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-15.1.0-hcea5267_2.conda hash: md5: 01de444988ed960031dbe84cf4f9b1fc sha256: be23750f3ca1a5cb3ada858c4f633effe777487d1ea35fddca04c0965c073350 @@ -3631,7 +3632,7 @@ package: platform: win-64 dependencies: libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' - url: https://repo.prefix.dev/conda-forge/win-64/libgomp-15.1.0-h1383e82_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/libgomp-15.1.0-h1383e82_2.conda hash: md5: 5fbacaa9b41e294a6966602205b99747 sha256: 4316316097ce5fde2608b6fccd18709cf647dce52e230f5ac66f5c524dfad791 @@ -3646,7 +3647,7 @@ package: libgcc: '>=13' libstdcxx: '>=13' libxml2: '>=2.13.4,<2.14.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libhwloc-2.11.2-default_h0d58e46_1001.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libhwloc-2.11.2-default_h0d58e46_1001.conda hash: md5: 804ca9e91bcaea0824a341d55b1684f2 sha256: d14c016482e1409ae1c50109a9ff933460a50940d2682e745ab1c172b5282a69 @@ -3662,7 +3663,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libhwloc-2.11.2-default_ha69328c_1001.conda + url: https://conda.anaconda.org/conda-forge/win-64/libhwloc-2.11.2-default_ha69328c_1001.conda hash: md5: b87a0ac5ab6495d8225db5dc72dd21cd sha256: 850e255997f538d5fb6ed651321141155a33bb781d43d326fc4ff62114dd2842 @@ -3675,7 +3676,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libiconv-1.18-h4ce23a2_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.18-h4ce23a2_1.conda hash: md5: e796ff8ddc598affdf7c173d6145f087 sha256: 18a4afe14f731bfb9cf388659994263904d20111e42f841e9eea1bb6f91f4ab4 @@ -3689,7 +3690,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libiconv-1.18-h135ad9c_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/libiconv-1.18-h135ad9c_1.conda hash: md5: 21fc5dba2cbcd8e5e26ff976a312122c sha256: ea5ed2b362b6dbc4ba7188eb4eaf576146e3dfc6f4395e9f0db76ad77465f786 @@ -3702,7 +3703,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libjpeg-turbo-3.1.0-hb9d3cd8_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libjpeg-turbo-3.1.0-hb9d3cd8_0.conda hash: md5: 9fa334557db9f63da6c9285fd2a48638 sha256: 98b399287e27768bf79d48faba8a99a2289748c65cd342ca21033fab1860d4a4 @@ -3716,7 +3717,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libjpeg-turbo-3.1.0-h2466b09_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/libjpeg-turbo-3.1.0-h2466b09_0.conda hash: md5: 7c51d27540389de84852daa1cdb9c63c sha256: e61b0adef3028b51251124e43eb6edf724c67c0f6736f1628b02511480ac354e @@ -3728,7 +3729,7 @@ package: platform: linux-64 dependencies: libblas: 3.9.0 - url: https://repo.prefix.dev/conda-forge/linux-64/liblapack-3.9.0-31_hc41d3b0_mkl.conda + url: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-31_hc41d3b0_mkl.conda hash: md5: 10d012ddd7cc1c7ff9093d4974a34e53 sha256: a2d20845d916ac8fba09376cd791136a9b4547afb2131bc315178adfc87bb4ca @@ -3740,7 +3741,7 @@ package: platform: win-64 dependencies: libblas: 3.9.0 - url: https://repo.prefix.dev/conda-forge/win-64/liblapack-3.9.0-31_h1aa476e_mkl.conda + url: https://conda.anaconda.org/conda-forge/win-64/liblapack-3.9.0-31_h1aa476e_mkl.conda hash: md5: 40b47ee720a185289760960fc6185750 sha256: 9415e807aa6f8968322bbd756aab8f487379d809c74266d37c697b8d85c534ad @@ -3753,7 +3754,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_2.conda hash: md5: 1a580f7796c7bf6393fddb8bbbde58dc sha256: f2591c0069447bbe28d4d696b7fcb0c5bd0b4ac582769b89addbcf26fb3430d8 @@ -3767,7 +3768,7 @@ 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_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/liblzma-5.8.1-h2466b09_2.conda hash: md5: c15148b2e18da456f5108ccb5e411446 sha256: 55764956eb9179b98de7cc0e55696f2eff8f7b83fc3ebff5e696ca358bca28cc @@ -3785,7 +3786,7 @@ package: libstdcxx: '>=13' libzlib: '>=1.3.1,<2.0a0' openssl: '>=3.3.2,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libnghttp2-1.64.0-h161d5f1_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.64.0-h161d5f1_0.conda hash: md5: 19e57602824042dfd0446292ef90488b sha256: b0f2b3695b13a989f75d8fd7f4778e1c7aabe3b36db83f0fe80b2cd812c0e975 @@ -3797,28 +3798,28 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://repo.prefix.dev/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda hash: md5: 30fd6e37fe21f86f4bd26d6ee73eeec7 sha256: 26d77a3bb4dceeedc2a41bd688564fe71bf2d149fdcf117049970bc02ff1add6 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://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.49-h943b412_0.conda hash: - md5: 55199e2ae2c3651f6f9b2a447b47bdc9 - sha256: 23367d71da58c9a61c8cbd963fcffb92768d4ae5ffbef9a47cdf1f54f98c5c36 + md5: 37511c874cf3b8d0034c8d24e73c0884 + sha256: c8f5dc929ba5fcee525a66777498e03bbcbfefc05a0773e5163bb08ac5122f1a category: main optional: false - name: libpng - version: 1.6.47 + version: 1.6.49 manager: conda platform: win-64 dependencies: @@ -3826,10 +3827,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://conda.anaconda.org/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 @@ -3844,7 +3845,7 @@ package: libgfortran5: '>=13.3.0' liblzma: '>=5.6.3,<6.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libscotch-7.0.6-hea33c07_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libscotch-7.0.6-hea33c07_1.conda hash: md5: 1b600d55dcd98c958192a69a79e6acd2 sha256: 8330bba8b7b3a37da6eca04bace985fb9f8d487d3249b8f690e8f4a3d8d3c7dc @@ -3856,7 +3857,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://repo.prefix.dev/conda-forge/linux-64/libsodium-1.0.20-h4ab18f5_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libsodium-1.0.20-h4ab18f5_0.conda hash: md5: a587892d3c13b6621a6091be690dbca2 sha256: 0105bd108f19ea8e6a78d2d994a6d4a8db16d19a41212070d2d1d48a63c34161 @@ -3870,7 +3871,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libsodium-1.0.20-hc70643c_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/libsodium-1.0.20-hc70643c_0.conda hash: md5: 198bb594f202b205c7d18b936fa4524f sha256: 7bcb3edccea30f711b6be9601e083ecf4f435b9407d70fc48fbcf9e5d69a0fc6 @@ -3884,7 +3885,7 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.50.1-hee588c1_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.50.1-hee588c1_0.conda hash: md5: 96a7e36bff29f1d0ddf5b771e0da373a sha256: cd15ab1b9f0d53507e7ad7a01e52f6756ab3080bf623ab0e438973b6e4dba3c0 @@ -3898,7 +3899,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.50.1-h67fdade_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.50.1-h67fdade_0.conda hash: md5: 0e11a893eeeb46510520fd3fdd9c346a sha256: 0dda5b3f21ad2c7e823f21b0e173194347fbfccb73a06ddc9366da1877020bda @@ -3913,7 +3914,7 @@ package: libgcc: '>=13' libzlib: '>=1.3.1,<2.0a0' openssl: '>=3.5.0,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libssh2-1.11.1-hcf80075_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.1-hcf80075_0.conda hash: md5: eecce068c7e4eddeb169591baac20ac4 sha256: fa39bfd69228a13e553bd24601332b7cfeb30ca11a3ca50bb028108fe90a7661 @@ -3929,7 +3930,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libssh2-1.11.1-h9aa295b_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/libssh2-1.11.1-h9aa295b_0.conda hash: md5: 9dce2f112bfd3400f4f432b3d0ac07b2 sha256: cbdf93898f2e27cefca5f3fe46519335d1fab25c4ea2a11b11502ff63e602c09 @@ -3942,7 +3943,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: 15.1.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-15.1.0-h8f9b012_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-15.1.0-h8f9b012_2.conda hash: md5: 1cb1c67961f6dd257eae9e9691b341aa sha256: 6ae3d153e78f6069d503d9309f2cac6de5b93d067fc6433160a4c05226a5dad4 @@ -3954,7 +3955,7 @@ package: platform: linux-64 dependencies: libstdcxx: 15.1.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-15.1.0-h4852527_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-15.1.0-h4852527_2.conda hash: md5: 9d2072af184b5caa29492bf2344597bb sha256: 11bea86e11de7d6bce87589197a383344df3fa0a3552dab7e931785ff1159a5b @@ -3975,7 +3976,7 @@ 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-hf01ce69_5.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.7.0-hf01ce69_5.conda hash: md5: e79a094918988bb1807462cd42c83962 sha256: 7fa6ddac72e0d803bb08e55090a8f2e71769f1eb7adbd5711bdd7789561601b1 @@ -3995,7 +3996,7 @@ 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-h05922d8_5.conda + url: https://conda.anaconda.org/conda-forge/win-64/libtiff-4.7.0-h05922d8_5.conda hash: md5: 75370aba951b47ec3b5bfe689f1bcf7f sha256: 1bb0b2e7d076fecc2f8147336bc22e7e6f9a4e0505e0e4ab2be1f56023a4a458 @@ -4007,7 +4008,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://repo.prefix.dev/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda hash: md5: 40b61aab5c7ba9ff276c41cfffe6b80b sha256: 787eb542f055a2b3de553614b25f09eefb0a0931b0c87dbcce6efdfd92f04f18 @@ -4020,7 +4021,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libwebp-base-1.5.0-h851e524_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.5.0-h851e524_0.conda hash: md5: 63f790534398730f59e1b899c3644d4a sha256: c45283fd3e90df5f0bd3dbcd31f59cdd2b001d424cf30a07223655413b158eaf @@ -4034,7 +4035,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libwebp-base-1.5.0-h3b0e114_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/libwebp-base-1.5.0-h3b0e114_0.conda hash: md5: 33f7313967072c6e6d8f865f5493c7ae sha256: 1d75274614e83a5750b8b94f7bad2fc0564c2312ff407e697d99152ed095576f @@ -4046,7 +4047,7 @@ package: platform: win-64 dependencies: ucrt: '' - url: https://repo.prefix.dev/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h57928b3_9.conda + url: https://conda.anaconda.org/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h57928b3_9.conda hash: md5: 08bfa5da6e242025304b206d152479ef sha256: 373f2973b8a358528b22be5e8d84322c165b4c5577d24d94fd67ad1bb0a0f261 @@ -4062,7 +4063,7 @@ package: pthread-stubs: '' xorg-libxau: '>=1.0.11,<2.0a0' xorg-libxdmcp: '' - url: https://repo.prefix.dev/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda hash: md5: 92ed62436b625154323d40d5f2f11dd7 sha256: 666c0c431b23c6cec6e492840b176dde533d48b7e6fb8883f5071223433776aa @@ -4079,7 +4080,7 @@ package: ucrt: '>=10.0.20348.0' xorg-libxau: '>=1.0.11,<2.0a0' xorg-libxdmcp: '' - url: https://repo.prefix.dev/conda-forge/win-64/libxcb-1.17.0-h0e4246c_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/libxcb-1.17.0-h0e4246c_0.conda hash: md5: a69bbf778a462da324489976c84cfc8c sha256: 08dec73df0e161c96765468847298a420933a36bc4f09b50e062df8793290737 @@ -4091,7 +4092,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://repo.prefix.dev/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda hash: md5: 5aa797f8787fe7a17d1b0821485b5adc sha256: 6ae68e0b86423ef188196fff6207ed0c8195dd84273cb5623b85aa08033a410c @@ -4108,7 +4109,7 @@ package: 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.8-h4bc477f_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.13.8-h4bc477f_0.conda hash: md5: 14dbe05b929e329dbaa6f2d0aa19466d sha256: b0b3a96791fa8bb4ec030295e8c8bf2d3278f33c0f9ad540e73b5e538e6268e7 @@ -4124,7 +4125,7 @@ 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.8-h442d1da_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/libxml2-2.13.8-h442d1da_0.conda hash: md5: 833c2dbc1a5020007b520b044c713ed3 sha256: 473b8a53c8df714d676ab41711551c8d250f8d799f2db5cb7cb2b177a0ce13f6 @@ -4137,7 +4138,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda hash: md5: edb0dca6bc32e4f4789199455a1dbeb8 sha256: d4bfe88d7cb447768e31650f06257995601f89076080e76df55e3112d4e47dc4 @@ -4151,7 +4152,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda hash: md5: 41fbfac52c601159df6c01f875de31b9 sha256: ba945c6493449bed0e6e29883c4943817f7c79cbff52b83360f7b341277c6402 @@ -4164,7 +4165,7 @@ package: dependencies: python: '>=3.9' uc-micro-py: '' - url: https://repo.prefix.dev/conda-forge/noarch/linkify-it-py-2.0.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/linkify-it-py-2.0.3-pyhd8ed1ab_1.conda hash: md5: b02fe519b5dc0dc55e7299810fcdfb8e sha256: d975a2015803d4fdaaae3f53e21f64996577d7a069eb61c6d2792504f16eb57b @@ -4177,36 +4178,36 @@ package: dependencies: python: '>=3.9' uc-micro-py: '' - url: https://repo.prefix.dev/conda-forge/noarch/linkify-it-py-2.0.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/linkify-it-py-2.0.3-pyhd8ed1ab_1.conda hash: md5: b02fe519b5dc0dc55e7299810fcdfb8e sha256: d975a2015803d4fdaaae3f53e21f64996577d7a069eb61c6d2792504f16eb57b category: dev optional: true - name: llvm-openmp - version: 20.1.6 + version: 20.1.7 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-20.1.6-h024ca30_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/llvm-openmp-20.1.7-h024ca30_0.conda hash: - md5: e4ece7ed81e43ae97a3b58ac4230c3c5 - sha256: 43ad6a0772c0fc554d2712ae00ea788a391a40c494e9c04ec13f4aea17c95ffc + md5: b9c9b2f494533250a9eb7ece830f4422 + sha256: 10f2f6be8ba4c018e1fc741637a8d45c0e58bea96954c25e91fbe4238b7c9f60 category: main optional: false - name: llvm-openmp - version: 20.1.6 + version: 20.1.7 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-20.1.6-h30eaf37_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/llvm-openmp-20.1.7-h30eaf37_0.conda hash: - md5: b95ac67b4a85052c54268ba4b80be753 - sha256: de24f885d918455eb510da054658531bbf69a2bc5ee5945314d0451f375a881d + md5: 6fd1d310402e936aa9aecb065f21cc6b + sha256: 1820ca99e8b126b3c656ff3c527822be8348f6452edcddd91615cba285540f6c category: main optional: false - name: locket @@ -4215,7 +4216,7 @@ package: platform: linux-64 dependencies: python: '>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*' - url: https://repo.prefix.dev/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 91e27ef3d05cc772ce627e51cff111c4 sha256: 9afe0b5cfa418e8bdb30d8917c5a6cec10372b037924916f1f85b9f4899a67a6 @@ -4227,7 +4228,7 @@ package: platform: win-64 dependencies: python: '>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*' - url: https://repo.prefix.dev/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 91e27ef3d05cc772ce627e51cff111c4 sha256: 9afe0b5cfa418e8bdb30d8917c5a6cec10372b037924916f1f85b9f4899a67a6 @@ -4241,7 +4242,7 @@ package: mdurl: '>=0.1,<1' python: '>=3.7' typing_extensions: '>=3.7.4' - url: https://repo.prefix.dev/conda-forge/noarch/markdown-it-py-2.2.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-2.2.0-pyhd8ed1ab_0.conda hash: md5: b2928a6c6d52d7e3562b4a59c3214e3a sha256: 65ed439862c1851463f03a9bc5109992ce3e3e025e9a2d76d13ca19f576eee9f @@ -4255,7 +4256,7 @@ package: mdurl: '>=0.1,<1' python: '>=3.7' typing_extensions: '>=3.7.4' - url: https://repo.prefix.dev/conda-forge/noarch/markdown-it-py-2.2.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-2.2.0-pyhd8ed1ab_0.conda hash: md5: b2928a6c6d52d7e3562b4a59c3214e3a sha256: 65ed439862c1851463f03a9bc5109992ce3e3e025e9a2d76d13ca19f576eee9f @@ -4270,7 +4271,7 @@ package: libgcc: '>=13' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://repo.prefix.dev/conda-forge/linux-64/markupsafe-3.0.2-py311h2dc5d0c_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-3.0.2-py311h2dc5d0c_1.conda hash: md5: 6565a715337ae279e351d0abd8ffe88a sha256: 0291d90706ac6d3eea73e66cd290ef6d805da3fad388d1d476b8536ec92ca9a8 @@ -4286,7 +4287,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/markupsafe-3.0.2-py311h5082efb_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/markupsafe-3.0.2-py311h5082efb_1.conda hash: md5: c1f2ddad665323278952a453912dc3bd sha256: 6f756e13ccf1a521d3960bd3cadddf564e013e210eaeced411c5259f070da08e @@ -4313,7 +4314,7 @@ package: python-dateutil: '>=2.7' python_abi: 3.11.* tk: '>=8.6.13,<8.7.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/matplotlib-base-3.8.4-py311ha4ca890_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/matplotlib-base-3.8.4-py311ha4ca890_2.conda hash: md5: 0848e2084cbb57014f232f48568561af sha256: 19a65ac35a9f48b3f0277b723b832052728d276e70c0ad1057f5b5bbe1f1ba28 @@ -4340,7 +4341,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/matplotlib-base-3.8.4-py311h9b31f6e_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/matplotlib-base-3.8.4-py311h9b31f6e_2.conda hash: md5: dbf84485273ba5fea107ef140a173e30 sha256: 857ed04795a1e3ea1939d8990fe0f6122b086445f72f92afe50de74ae19977d0 @@ -4353,7 +4354,7 @@ package: dependencies: python: '>=3.9' traitlets: '' - url: https://repo.prefix.dev/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_1.conda hash: md5: af6ab708897df59bd6e7283ceab1b56b sha256: 69b7dc7131703d3d60da9b0faa6dd8acbf6f6c396224cf6aef3e855b8c0c41c6 @@ -4366,7 +4367,7 @@ package: dependencies: python: '>=3.9' traitlets: '' - url: https://repo.prefix.dev/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_1.conda hash: md5: af6ab708897df59bd6e7283ceab1b56b sha256: 69b7dc7131703d3d60da9b0faa6dd8acbf6f6c396224cf6aef3e855b8c0c41c6 @@ -4378,7 +4379,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda hash: md5: 827064ddfe0de2917fb29f1da4f8f533 sha256: 9b0037171dad0100f0296699a11ae7d355237b55f42f9094aebc0f41512d96a1 @@ -4390,7 +4391,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda hash: md5: 827064ddfe0de2917fb29f1da4f8f533 sha256: 9b0037171dad0100f0296699a11ae7d355237b55f42f9094aebc0f41512d96a1 @@ -4403,7 +4404,7 @@ package: dependencies: markdown-it-py: '>=1.0.0,<4.0.0' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/mdit-py-plugins-0.4.2-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.4.2-pyhd8ed1ab_1.conda hash: md5: af2060041d4f3250a7eb6ab3ec0e549b sha256: c63ed79d9745109c0a70397713b0c07f06e7d3561abcb122cfc80a141ab3b449 @@ -4416,7 +4417,7 @@ package: dependencies: markdown-it-py: '>=1.0.0,<4.0.0' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/mdit-py-plugins-0.4.2-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.4.2-pyhd8ed1ab_1.conda hash: md5: af2060041d4f3250a7eb6ab3ec0e549b sha256: c63ed79d9745109c0a70397713b0c07f06e7d3561abcb122cfc80a141ab3b449 @@ -4428,7 +4429,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_1.conda hash: md5: 592132998493b3ff25fd7479396e8351 sha256: 78c1bbe1723449c52b7a9df1af2ee5f005209f67e40b6e1d3c7619127c43b1c7 @@ -4440,7 +4441,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_1.conda hash: md5: 592132998493b3ff25fd7479396e8351 sha256: 78c1bbe1723449c52b7a9df1af2ee5f005209f67e40b6e1d3c7619127c43b1c7 @@ -4454,7 +4455,7 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' libstdcxx: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/metis-5.1.0-hd0bcaf9_1007.conda + url: https://conda.anaconda.org/conda-forge/linux-64/metis-5.1.0-hd0bcaf9_1007.conda hash: md5: 28eb714416de4eb83e2cbc47e99a1b45 sha256: e8a00971e6d00bd49f375c5d8d005b37a9abba0b1768533aed0f90a422bf5cc7 @@ -4467,7 +4468,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/mistune-3.1.3-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/mistune-3.1.3-pyh29332c3_0.conda hash: md5: 7ec6576e328bc128f4982cd646eeba85 sha256: a67484d7dd11e815a81786580f18b6e4aa2392f292f29183631a6eccc8dc37b3 @@ -4480,7 +4481,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/mistune-3.1.3-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/mistune-3.1.3-pyh29332c3_0.conda hash: md5: 7ec6576e328bc128f4982cd646eeba85 sha256: a67484d7dd11e815a81786580f18b6e4aa2392f292f29183631a6eccc8dc37b3 @@ -4494,7 +4495,7 @@ package: _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 + url: https://conda.anaconda.org/conda-forge/linux-64/mkl-2024.2.2-ha957f24_16.conda hash: md5: 1459379c79dda834673426504d52b319 sha256: 77906b0acead8f86b489da46f53916e624897338770dbf70b04b8f673c9273c1 @@ -4507,14 +4508,14 @@ package: dependencies: intel-openmp: 2024.* tbb: 2021.* - url: https://repo.prefix.dev/conda-forge/win-64/mkl-2024.2.2-h66d3029_15.conda + url: https://conda.anaconda.org/conda-forge/win-64/mkl-2024.2.2-h66d3029_15.conda hash: md5: 302dff2807f2927b3e9e0d19d60121de sha256: 20e52b0389586d0b914a49cd286c5ccc9c47949bed60ca6df004d1d295f2edbd category: main optional: false - name: msgpack-python - version: 1.1.0 + version: 1.1.1 manager: conda platform: linux-64 dependencies: @@ -4523,14 +4524,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://conda.anaconda.org/conda-forge/linux-64/msgpack-python-1.1.1-py311hd18a35c_0.conda hash: - md5: 682f76920687f7d9283039eb542fdacf - sha256: 9033fa7084cbfd10e1b7ed3b74cee17169a0731ec98244d05c372fc4a935d5c9 + md5: d0898973440adc2ad25917028669126d + sha256: f07aafd9e9adddf66b75630b4f68784e22ce63ae9e0887711a7386ceb2506fca category: main optional: false - name: msgpack-python - version: 1.1.0 + version: 1.1.1 manager: conda platform: win-64 dependencies: @@ -4539,10 +4540,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://conda.anaconda.org/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 @@ -4550,7 +4551,7 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/linux-64/mumps-include-5.7.3-h82cca05_10.conda + url: https://conda.anaconda.org/conda-forge/linux-64/mumps-include-5.7.3-h82cca05_10.conda hash: md5: d6c7d8811686ed912ed4317831dd8c44 sha256: c723d6e331444411db0a871958fc45621758595d12b4d6561fa20324535ce67a @@ -4571,7 +4572,7 @@ package: libscotch: '>=7.0.6,<7.0.7.0a0' metis: '>=5.1.0,<5.1.1.0a0' mumps-include: ==5.7.3 - url: https://repo.prefix.dev/conda-forge/linux-64/mumps-seq-5.7.3-h06cbf8f_10.conda + url: https://conda.anaconda.org/conda-forge/linux-64/mumps-seq-5.7.3-h06cbf8f_10.conda hash: md5: deb3c7cb10d67fde01d264b3d5bc79bc sha256: bf7049864150d714debbe3d89a9db79e3163655c1fbab7b18b1fd613f9e27878 @@ -4588,7 +4589,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/mumps-seq-5.7.3-hbaa6519_10.conda + url: https://conda.anaconda.org/conda-forge/win-64/mumps-seq-5.7.3-hbaa6519_10.conda hash: md5: 5c35d7fd93b2d7cddaa3ce881aadad83 sha256: 6209255427a10879ca3731ec04eecf112e92b617af60c053073c8330928cb8ab @@ -4599,11 +4600,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://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyhd8ed1ab_1.conda hash: - md5: 2ba8498c1018c1e9c61eb99b973dfe19 - sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 + md5: 37293a85a0f4f77bbd9cf7aaefc62609 + sha256: d09c47c2cf456de5c09fa66d2c3c5035aa1fa228a1983a433c47b876aa16ce90 category: main optional: false - name: munkres @@ -4611,11 +4612,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://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyhd8ed1ab_1.conda hash: - md5: 2ba8498c1018c1e9c61eb99b973dfe19 - sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 + md5: 37293a85a0f4f77bbd9cf7aaefc62609 + sha256: d09c47c2cf456de5c09fa66d2c3c5035aa1fa228a1983a433c47b876aa16ce90 category: main optional: false - name: myst-nb @@ -4634,7 +4635,7 @@ package: pyyaml: '' sphinx: '>=5' typing_extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/myst-nb-1.2.0-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/myst-nb-1.2.0-pyh29332c3_0.conda hash: md5: 4f63865e1bb08e05476fa136a2dfe2ac sha256: de3e58d54126fdb667a55921675693fb8eee23757fd3be6116f6565cae710279 @@ -4656,7 +4657,7 @@ package: pyyaml: '' sphinx: '>=5' typing_extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/myst-nb-1.2.0-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/myst-nb-1.2.0-pyh29332c3_0.conda hash: md5: 4f63865e1bb08e05476fa136a2dfe2ac sha256: de3e58d54126fdb667a55921675693fb8eee23757fd3be6116f6565cae710279 @@ -4675,7 +4676,7 @@ package: pyyaml: '' sphinx: '>=5,<7' typing-extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/myst-parser-1.0.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/myst-parser-1.0.0-pyhd8ed1ab_0.conda hash: md5: e559708feb0aed1ae24c518e569ea3eb sha256: 87de591aa423932ffec61e06283bf5c3ba5c0a3cc465955984ce58f1de3ded8e @@ -4694,7 +4695,7 @@ package: pyyaml: '' sphinx: '>=5,<7' typing-extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/myst-parser-1.0.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/myst-parser-1.0.0-pyhd8ed1ab_0.conda hash: md5: e559708feb0aed1ae24c518e569ea3eb sha256: 87de591aa423932ffec61e06283bf5c3ba5c0a3cc465955984ce58f1de3ded8e @@ -4710,7 +4711,7 @@ package: nbformat: '>=5.1' python: '>=3.8' traitlets: '>=5.4' - url: https://repo.prefix.dev/conda-forge/noarch/nbclient-0.10.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/nbclient-0.10.2-pyhd8ed1ab_0.conda hash: md5: 6bb0d77277061742744176ab555b723c sha256: a20cff739d66c2f89f413e4ba4c6f6b59c50d5c30b5f0d840c13e8c9c2df9135 @@ -4726,7 +4727,7 @@ package: nbformat: '>=5.1' python: '>=3.8' traitlets: '>=5.4' - url: https://repo.prefix.dev/conda-forge/noarch/nbclient-0.10.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/nbclient-0.10.2-pyhd8ed1ab_0.conda hash: md5: 6bb0d77277061742744176ab555b723c sha256: a20cff739d66c2f89f413e4ba4c6f6b59c50d5c30b5f0d840c13e8c9c2df9135 @@ -4739,7 +4740,7 @@ package: dependencies: nbconvert-core: ==7.16.6 nbconvert-pandoc: ==7.16.6 - url: https://repo.prefix.dev/conda-forge/noarch/nbconvert-7.16.6-hb482800_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-7.16.6-hb482800_0.conda hash: md5: aa90ea40c80d4bd3da35cb17ed668f22 sha256: 5480b7e05bf3079fcb7357a5a15a96c3a1649cc1371d0c468c806898a7e53088 @@ -4752,7 +4753,7 @@ package: dependencies: nbconvert-core: ==7.16.6 nbconvert-pandoc: ==7.16.6 - url: https://repo.prefix.dev/conda-forge/noarch/nbconvert-7.16.6-hb482800_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-7.16.6-hb482800_0.conda hash: md5: aa90ea40c80d4bd3da35cb17ed668f22 sha256: 5480b7e05bf3079fcb7357a5a15a96c3a1649cc1371d0c468c806898a7e53088 @@ -4779,7 +4780,7 @@ package: pygments: '>=2.4.1' python: '>=3.9' traitlets: '>=5.1' - url: https://repo.prefix.dev/conda-forge/noarch/nbconvert-core-7.16.6-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.16.6-pyh29332c3_0.conda hash: md5: d24beda1d30748afcc87c429454ece1b sha256: dcccb07c5a1acb7dc8be94330e62d54754c0e9c9cb2bb6865c8e3cfe44cf5a58 @@ -4806,7 +4807,7 @@ package: pygments: '>=2.4.1' python: '>=3.9' traitlets: '>=5.1' - url: https://repo.prefix.dev/conda-forge/noarch/nbconvert-core-7.16.6-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.16.6-pyh29332c3_0.conda hash: md5: d24beda1d30748afcc87c429454ece1b sha256: dcccb07c5a1acb7dc8be94330e62d54754c0e9c9cb2bb6865c8e3cfe44cf5a58 @@ -4819,7 +4820,7 @@ package: dependencies: nbconvert-core: ==7.16.6 pandoc: '' - url: https://repo.prefix.dev/conda-forge/noarch/nbconvert-pandoc-7.16.6-hed9df3c_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-pandoc-7.16.6-hed9df3c_0.conda hash: md5: 5b0afb6c52e74a7eca2cf809a874acf4 sha256: 1e8923f1557c2ddb7bba915033cfaf8b8c1b7462c745172458102c11caee1002 @@ -4832,7 +4833,7 @@ package: dependencies: nbconvert-core: ==7.16.6 pandoc: '' - url: https://repo.prefix.dev/conda-forge/noarch/nbconvert-pandoc-7.16.6-hed9df3c_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-pandoc-7.16.6-hed9df3c_0.conda hash: md5: 5b0afb6c52e74a7eca2cf809a874acf4 sha256: 1e8923f1557c2ddb7bba915033cfaf8b8c1b7462c745172458102c11caee1002 @@ -4848,7 +4849,7 @@ package: python: '>=3.9' python-fastjsonschema: '>=2.15' traitlets: '>=5.1' - url: https://repo.prefix.dev/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_1.conda hash: md5: bbe1963f1e47f594070ffe87cdf612ea sha256: 7a5bd30a2e7ddd7b85031a5e2e14f290898098dc85bea5b3a5bf147c25122838 @@ -4864,7 +4865,7 @@ package: python: '>=3.9' python-fastjsonschema: '>=2.15' traitlets: '>=5.1' - url: https://repo.prefix.dev/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_1.conda hash: md5: bbe1963f1e47f594070ffe87cdf612ea sha256: 7a5bd30a2e7ddd7b85031a5e2e14f290898098dc85bea5b3a5bf147c25122838 @@ -4877,7 +4878,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda hash: md5: 47e340acb35de30501a76c7c799c41d7 sha256: 3fde293232fa3fca98635e1167de6b7c7fda83caf24b9d6c91ec9eefb4f4d586 @@ -4889,7 +4890,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_1.conda hash: md5: 598fd7d4d0de2455fb74f56063969a97 sha256: bb7b21d7fd0445ddc0631f64e66d91a179de4ba920b8381f29b9d006a42788c0 @@ -4901,7 +4902,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_1.conda hash: md5: 598fd7d4d0de2455fb74f56063969a97 sha256: bb7b21d7fd0445ddc0631f64e66d91a179de4ba920b8381f29b9d006a42788c0 @@ -4918,7 +4919,7 @@ package: notebook-shim: '>=0.2,<0.3' python: '>=3.9' tornado: '>=6.2.0' - url: https://repo.prefix.dev/conda-forge/noarch/notebook-7.4.3-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/notebook-7.4.3-pyhd8ed1ab_0.conda hash: md5: f0b767b717cab652712d29f5e4699b2a sha256: aea1b33b734e809bd090f0bae47f4bca5da406f7bc7dd65a67b565f03c740866 @@ -4935,7 +4936,7 @@ package: notebook-shim: '>=0.2,<0.3' python: '>=3.9' tornado: '>=6.2.0' - url: https://repo.prefix.dev/conda-forge/noarch/notebook-7.4.3-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/notebook-7.4.3-pyhd8ed1ab_0.conda hash: md5: f0b767b717cab652712d29f5e4699b2a sha256: aea1b33b734e809bd090f0bae47f4bca5da406f7bc7dd65a67b565f03c740866 @@ -4948,7 +4949,7 @@ package: dependencies: jupyter_server: '>=1.8,<3' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/notebook-shim-0.2.4-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/notebook-shim-0.2.4-pyhd8ed1ab_1.conda hash: md5: e7f89ea5f7ea9401642758ff50a2d9c1 sha256: 7b920e46b9f7a2d2aa6434222e5c8d739021dbc5cc75f32d124a8191d86f9056 @@ -4961,7 +4962,7 @@ package: dependencies: jupyter_server: '>=1.8,<3' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/notebook-shim-0.2.4-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/notebook-shim-0.2.4-pyhd8ed1ab_1.conda hash: md5: e7f89ea5f7ea9401642758ff50a2d9c1 sha256: 7b920e46b9f7a2d2aa6434222e5c8d739021dbc5cc75f32d124a8191d86f9056 @@ -4980,7 +4981,7 @@ package: numpy: '>=1.24' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://repo.prefix.dev/conda-forge/linux-64/numcodecs-0.15.1-py311h7db5c69_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/numcodecs-0.15.1-py311h7db5c69_0.conda hash: md5: 969c10aa2c0b994e33a436bea697e214 sha256: 38794beadfe994f21ae105ec3a888999a002f341a3fb7e8e870fef8212cebfef @@ -4999,7 +5000,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/numcodecs-0.15.1-py311hcf9f919_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/numcodecs-0.15.1-py311hcf9f919_0.conda hash: md5: 89d8435b5b12da6eb043309c45b022f2 sha256: 5c6ece778e8abaed89c5c7529f4fe276fa2ab72013e27301dd08a649e37f1f05 @@ -5017,7 +5018,7 @@ package: libstdcxx-ng: '>=12' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://repo.prefix.dev/conda-forge/linux-64/numpy-1.26.4-py311h64a7726_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/numpy-1.26.4-py311h64a7726_0.conda hash: md5: a502d7aad449a1206efb366d6a12c52d sha256: 3f4365e11b28e244c95ba8579942b0802761ba7bb31c026f50d1a9ea9c728149 @@ -5036,7 +5037,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/numpy-1.26.4-py311h0b4df5a_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/numpy-1.26.4-py311h0b4df5a_0.conda hash: md5: 7b240edd44fd7a0991aa409b07cee776 sha256: 14116e72107de3089cc58119a5ce5905c22abf9a715c9fe41f8ac14db0992326 @@ -5053,7 +5054,7 @@ package: libstdcxx: '>=13' libtiff: '>=4.7.0,<4.8.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/openjpeg-2.5.3-h5fbd93e_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.3-h5fbd93e_0.conda hash: md5: 9e5816bc95d285c115a3ebc2f8563564 sha256: 5bee706ea5ba453ed7fd9da7da8380dd88b865c8d30b5aaec14d2b6dd32dbc39 @@ -5070,7 +5071,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/openjpeg-2.5.3-h4d64b90_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/openjpeg-2.5.3-h4d64b90_0.conda hash: md5: fc050366dd0b8313eb797ed1ffef3a29 sha256: 410175815df192f57a07c29a6b3fdd4231937173face9e63f0830c1234272ce3 @@ -5084,7 +5085,7 @@ 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_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.5.0-h7b32b05_1.conda hash: md5: de356753cfdbffcde5bb1e86e3aa6cd0 sha256: b4491077c494dbf0b5eaa6d87738c22f2154e9277e5293175ec187634bd808a0 @@ -5099,7 +5100,7 @@ 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_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/openssl-3.5.0-ha4e3fda_1.conda hash: md5: 72c07e46b6766bb057018a9a74861b89 sha256: 02846553d2a4c9bde850c60824d0f02803eb9c9b674d5c1a8cce25bc387e748f @@ -5112,7 +5113,7 @@ package: dependencies: python: '>=3.9' typing_utils: '' - url: https://repo.prefix.dev/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_1.conda hash: md5: e51f1e4089cad105b6cac64bd8166587 sha256: 1840bd90d25d4930d60f57b4f38d4e0ae3f5b8db2819638709c36098c6ba770c @@ -5125,7 +5126,7 @@ package: dependencies: python: '>=3.9' typing_utils: '' - url: https://repo.prefix.dev/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_1.conda hash: md5: e51f1e4089cad105b6cac64bd8166587 sha256: 1840bd90d25d4930d60f57b4f38d4e0ae3f5b8db2819638709c36098c6ba770c @@ -5137,7 +5138,7 @@ package: platform: linux-64 dependencies: python: '>=3.8' - url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda hash: md5: 58335b26c38bf4a20f399384c33cbcf9 sha256: 289861ed0c13a15d7bbb408796af4de72c2fe67e2bcb0de98f4c3fce259d7991 @@ -5149,7 +5150,7 @@ package: platform: win-64 dependencies: python: '>=3.8' - url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda hash: md5: 58335b26c38bf4a20f399384c33cbcf9 sha256: 289861ed0c13a15d7bbb408796af4de72c2fe67e2bcb0de98f4c3fce259d7991 @@ -5169,7 +5170,7 @@ package: python-tzdata: '>=2022.7' python_abi: 3.11.* pytz: '>=2020.1' - url: https://repo.prefix.dev/conda-forge/linux-64/pandas-2.3.0-py311h7db5c69_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/pandas-2.3.0-py311h7db5c69_0.conda hash: md5: 805040d254f51cb15df55eff6e213d09 sha256: 402602238308e04062e599b2df0984ed77beca8f9fe49cc78559cc716d816e2d @@ -5189,7 +5190,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/pandas-2.3.0-py311hcf9f919_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/pandas-2.3.0-py311hcf9f919_0.conda hash: md5: 5856ab7c6cd759b51b7d80ad0b7b92e7 sha256: b785d7a6d3146b4b9b13d200bb410ba2db31fa69da500e47be8e9f617e34d170 @@ -5200,7 +5201,7 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/linux-64/pandoc-3.7.0.2-ha770c72_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/pandoc-3.7.0.2-ha770c72_0.conda hash: md5: db0c1632047d38997559ce2c4741dd91 sha256: 243c49b34caa9328e9d5f62c98be9eb046be8fee9836854b88d9022ce8013497 @@ -5211,7 +5212,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/win-64/pandoc-3.7.0.2-h57928b3_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/pandoc-3.7.0.2-h57928b3_0.conda hash: md5: a77c859d9469f24691d6c6590b56fa45 sha256: 7fff0deca558c5ab6c836127481decbec83c0add3a0ab2b81d1f10130146c357 @@ -5223,7 +5224,7 @@ package: platform: linux-64 dependencies: python: '!=3.0,!=3.1,!=3.2,!=3.3' - url: https://repo.prefix.dev/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 457c2c8c08e54905d6954e79cb5b5db9 sha256: 2bb9ba9857f4774b85900c2562f7e711d08dd48e2add9bee4e1612fbee27e16f @@ -5235,7 +5236,7 @@ package: platform: win-64 dependencies: python: '!=3.0,!=3.1,!=3.2,!=3.3' - url: https://repo.prefix.dev/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 457c2c8c08e54905d6954e79cb5b5db9 sha256: 2bb9ba9857f4774b85900c2562f7e711d08dd48e2add9bee4e1612fbee27e16f @@ -5247,7 +5248,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_1.conda hash: md5: 5c092057b6badd30f75b06244ecd01c9 sha256: 17131120c10401a99205fc6fe436e7903c0fa092f1b3e80452927ab377239bcc @@ -5259,7 +5260,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_1.conda hash: md5: 5c092057b6badd30f75b06244ecd01c9 sha256: 17131120c10401a99205fc6fe436e7903c0fa092f1b3e80452927ab377239bcc @@ -5273,7 +5274,7 @@ package: locket: '' python: '>=3.9' toolz: '' - url: https://repo.prefix.dev/conda-forge/noarch/partd-1.4.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/partd-1.4.2-pyhd8ed1ab_0.conda hash: md5: 0badf9c54e24cecfb0ad2f99d680c163 sha256: 472fc587c63ec4f6eba0cc0b06008a6371e0a08a5986de3cf4e8024a47b4fe6c @@ -5287,7 +5288,7 @@ package: locket: '' python: '>=3.9' toolz: '' - url: https://repo.prefix.dev/conda-forge/noarch/partd-1.4.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/partd-1.4.2-pyhd8ed1ab_0.conda hash: md5: 0badf9c54e24cecfb0ad2f99d680c163 sha256: 472fc587c63ec4f6eba0cc0b06008a6371e0a08a5986de3cf4e8024a47b4fe6c @@ -5300,7 +5301,7 @@ package: dependencies: ptyprocess: '>=0.5' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_1.conda hash: md5: d0d408b1f18883a944376da5cf8101ea sha256: 202af1de83b585d36445dc1fda94266697341994d1a3328fabde4989e1b3d07a @@ -5312,7 +5313,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pickleshare-0.7.5-pyhd8ed1ab_1004.conda + url: https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-pyhd8ed1ab_1004.conda hash: md5: 11a9d1d09a3615fc07c3faf79bc0b943 sha256: e2ac3d66c367dada209fc6da43e645672364b9fd5f9d28b9f016e24b81af475b @@ -5324,7 +5325,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pickleshare-0.7.5-pyhd8ed1ab_1004.conda + url: https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-pyhd8ed1ab_1004.conda hash: md5: 11a9d1d09a3615fc07c3faf79bc0b943 sha256: e2ac3d66c367dada209fc6da43e645672364b9fd5f9d28b9f016e24b81af475b @@ -5347,7 +5348,7 @@ package: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* tk: '>=8.6.13,<8.7.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/pillow-10.3.0-py311h82a398c_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/pillow-10.3.0-py311h82a398c_1.conda hash: md5: 4dc0b6fcf0bc041a1bfb763fa6e5302f sha256: ce420bfba7ed8641aa376b4446e16299fcb37113c27e9655503fd5d517cb7fcd @@ -5372,7 +5373,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/pillow-10.3.0-py311h5592be9_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/pillow-10.3.0-py311h5592be9_1.conda hash: md5: 034f612fd103c2c1058538533598ce4f sha256: 5404b51b1c93180940e0f8340e905d435bf187224512bab2993c5b7f30aa0615 @@ -5386,7 +5387,7 @@ package: python: '>=3.9,<3.13.0a0' setuptools: '' wheel: '' - url: https://repo.prefix.dev/conda-forge/noarch/pip-25.1.1-pyh8b19718_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pip-25.1.1-pyh8b19718_0.conda hash: md5: 32d0781ace05105cc99af55d36cbec7c sha256: ebfa591d39092b111b9ebb3210eb42251be6da89e26c823ee03e5e838655a43e @@ -5400,7 +5401,7 @@ package: python: '>=3.9,<3.13.0a0' setuptools: '' wheel: '' - url: https://repo.prefix.dev/conda-forge/noarch/pip-25.1.1-pyh8b19718_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pip-25.1.1-pyh8b19718_0.conda hash: md5: 32d0781ace05105cc99af55d36cbec7c sha256: ebfa591d39092b111b9ebb3210eb42251be6da89e26c823ee03e5e838655a43e @@ -5412,7 +5413,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_2.conda + url: https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_2.conda hash: md5: 5a5870a74432aa332f7d32180633ad05 sha256: adb2dde5b4f7da70ae81309cce6188ed3286ff280355cf1931b45d91164d2ad8 @@ -5424,7 +5425,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_2.conda + url: https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_2.conda hash: md5: 5a5870a74432aa332f7d32180633ad05 sha256: adb2dde5b4f7da70ae81309cce6188ed3286ff280355cf1931b45d91164d2ad8 @@ -5436,7 +5437,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.3.8-pyhe01879c_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.8-pyhe01879c_0.conda hash: md5: 424844562f5d337077b445ec6b1398a7 sha256: 0f48999a28019c329cd3f6fd2f01f09fc32cc832f7d6bbe38087ddac858feaa3 @@ -5448,7 +5449,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.3.8-pyhe01879c_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.8-pyhe01879c_0.conda hash: md5: 424844562f5d337077b445ec6b1398a7 sha256: 0f48999a28019c329cd3f6fd2f01f09fc32cc832f7d6bbe38087ddac858feaa3 @@ -5460,7 +5461,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda hash: md5: 7da7ccd349dbf6487a7778579d2bb971 sha256: a8eb555eef5063bbb7ba06a379fa7ea714f57d9741fe0efdb9442dbbc2cccbcc @@ -5472,7 +5473,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda hash: md5: 7da7ccd349dbf6487a7778579d2bb971 sha256: a8eb555eef5063bbb7ba06a379fa7ea714f57d9741fe0efdb9442dbbc2cccbcc @@ -5484,7 +5485,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/prometheus_client-0.22.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.22.1-pyhd8ed1ab_0.conda hash: md5: c64b77ccab10b822722904d889fa83b5 sha256: 454e2c0ef14accc888dd2cd2e8adb8c6a3a607d2d3c2f93962698b5718e6176d @@ -5496,7 +5497,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/prometheus_client-0.22.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.22.1-pyhd8ed1ab_0.conda hash: md5: c64b77ccab10b822722904d889fa83b5 sha256: 454e2c0ef14accc888dd2cd2e8adb8c6a3a607d2d3c2f93962698b5718e6176d @@ -5509,7 +5510,7 @@ package: dependencies: python: '>=3.9' wcwidth: '' - url: https://repo.prefix.dev/conda-forge/noarch/prompt-toolkit-3.0.51-pyha770c72_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.51-pyha770c72_0.conda hash: md5: d17ae9db4dc594267181bd199bf9a551 sha256: ebc1bb62ac612af6d40667da266ff723662394c0ca78935340a5b5c14831227b @@ -5522,7 +5523,7 @@ package: dependencies: python: '>=3.9' wcwidth: '' - url: https://repo.prefix.dev/conda-forge/noarch/prompt-toolkit-3.0.51-pyha770c72_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.51-pyha770c72_0.conda hash: md5: d17ae9db4dc594267181bd199bf9a551 sha256: ebc1bb62ac612af6d40667da266ff723662394c0ca78935340a5b5c14831227b @@ -5537,7 +5538,7 @@ package: libgcc: '>=13' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://repo.prefix.dev/conda-forge/linux-64/psutil-7.0.0-py311h9ecbd09_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/psutil-7.0.0-py311h9ecbd09_0.conda hash: md5: 1a390a54b2752169f5ba4ada5a8108e4 sha256: 50d0944b59a9c6dfa6b99cc2632bf8bc9bef9c7c93710390ded6eac953f0182d @@ -5553,7 +5554,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/psutil-7.0.0-py311he736701_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/psutil-7.0.0-py311he736701_0.conda hash: md5: fc2a628caa77146532ee4747894bccd5 sha256: e3844e26821651f744ea57a1538a8f970872f15a1c6eb38fc208f0efd1c3706c @@ -5566,7 +5567,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda + url: https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda hash: md5: b3c17d95b5a10c6e64a21fa17573e70e sha256: 9c88f8c64590e9567c6c80823f0328e58d3b1efb0e1c539c0315ceca764e0973 @@ -5580,7 +5581,7 @@ package: libgcc: '>=13' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' ucrt: '>=10.0.20348.0' - url: https://repo.prefix.dev/conda-forge/win-64/pthread-stubs-0.4-h0e40799_1002.conda + url: https://conda.anaconda.org/conda-forge/win-64/pthread-stubs-0.4-h0e40799_1002.conda hash: md5: 3c8f2573569bb816483e5cf57efbbe29 sha256: 7e446bafb4d692792310ed022fe284e848c6a868c861655a92435af7368bae7b @@ -5592,7 +5593,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/ptyprocess-0.7.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd8ed1ab_1.conda hash: md5: 7d9daffbb8d8e0af0f769dbbcd173a54 sha256: a7713dfe30faf17508ec359e0bc7e0983f5d94682492469bd462cdaae9c64d83 @@ -5604,7 +5605,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda hash: md5: 3bfdfb8dbcdc4af1ae3f9a8eb3948f04 sha256: 71bd24600d14bb171a6321d523486f6a06f855e75e547fa0cb2a0953b02047f0 @@ -5616,7 +5617,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda hash: md5: 3bfdfb8dbcdc4af1ae3f9a8eb3948f04 sha256: 71bd24600d14bb171a6321d523486f6a06f855e75e547fa0cb2a0953b02047f0 @@ -5632,7 +5633,7 @@ package: pyyaml: '>=3.01' setuptools: '' six: '' - url: https://repo.prefix.dev/conda-forge/noarch/pybtex-0.24.0-pyhd8ed1ab_3.conda + url: https://conda.anaconda.org/conda-forge/noarch/pybtex-0.24.0-pyhd8ed1ab_3.conda hash: md5: 556a52a96313364aa79990ed1337b9a5 sha256: c87615fcc7327c5dcc247f309731c98f7b9867a48e6265e9584af6dc8cd82345 @@ -5648,7 +5649,7 @@ package: pyyaml: '>=3.01' setuptools: '' six: '' - url: https://repo.prefix.dev/conda-forge/noarch/pybtex-0.24.0-pyhd8ed1ab_3.conda + url: https://conda.anaconda.org/conda-forge/noarch/pybtex-0.24.0-pyhd8ed1ab_3.conda hash: md5: 556a52a96313364aa79990ed1337b9a5 sha256: c87615fcc7327c5dcc247f309731c98f7b9867a48e6265e9584af6dc8cd82345 @@ -5664,7 +5665,7 @@ package: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* setuptools: '' - url: https://repo.prefix.dev/conda-forge/linux-64/pybtex-docutils-1.0.3-py311h38be061_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/pybtex-docutils-1.0.3-py311h38be061_2.conda hash: md5: a092cf434b09ea147245e978999a379d sha256: f6ce37fc10a1c003f0db95a2bec20f3df09802617815cb848fa379a79c660b76 @@ -5680,7 +5681,7 @@ package: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* setuptools: '' - url: https://repo.prefix.dev/conda-forge/win-64/pybtex-docutils-1.0.3-py311h1ea47a8_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/pybtex-docutils-1.0.3-py311h1ea47a8_2.conda hash: md5: 544c4eeebd01975a6d71e3776212623f sha256: 20ca92d7b6088c217ff65be59d2bfe710402d459b239e23497a04d7bf8a102c4 @@ -5692,7 +5693,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda hash: md5: 12c566707c80111f9799308d9e265aef sha256: 79db7928d13fab2d892592223d7570f5061c192f27b9febd1a418427b719acc6 @@ -5704,14 +5705,14 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda hash: md5: 12c566707c80111f9799308d9e265aef sha256: 79db7928d13fab2d892592223d7570f5061c192f27b9febd1a418427b719acc6 category: main optional: false - name: pydantic - version: 2.11.4 + version: 2.11.7 manager: conda platform: linux-64 dependencies: @@ -5721,14 +5722,14 @@ package: typing-extensions: '>=4.6.1' typing-inspection: '>=0.4.0' typing_extensions: '>=4.12.2' - url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.4-pyh3cfb1c2_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.11.7-pyh3cfb1c2_0.conda hash: - md5: 8ad3ad8db5ce2ba470c9facc37af00a9 - sha256: a522473505ac6a9c10bb304d7338459a406ba22a6d3bb1a355c1b5283553a372 + md5: 1b337e3d378cde62889bb735c024b7a2 + sha256: ee7823e8bc227f804307169870905ce062531d36c1dcf3d431acd65c6e0bd674 category: main optional: false - name: pydantic - version: 2.11.4 + version: 2.11.7 manager: conda platform: win-64 dependencies: @@ -5738,10 +5739,10 @@ package: typing-extensions: '>=4.6.1' typing-inspection: '>=0.4.0' typing_extensions: '>=4.12.2' - url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.4-pyh3cfb1c2_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.11.7-pyh3cfb1c2_0.conda hash: - md5: 8ad3ad8db5ce2ba470c9facc37af00a9 - sha256: a522473505ac6a9c10bb304d7338459a406ba22a6d3bb1a355c1b5283553a372 + md5: 1b337e3d378cde62889bb735c024b7a2 + sha256: ee7823e8bc227f804307169870905ce062531d36c1dcf3d431acd65c6e0bd674 category: main optional: false - name: pydantic-core @@ -5754,7 +5755,7 @@ 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.2-py311hdae7d1d_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/pydantic-core-2.33.2-py311hdae7d1d_0.conda hash: md5: 484d0d62d4b069d5372680309fc5f00c sha256: b48e5abb6debae4f559b08cdbaf0736c7806adc00c106ced2c98a622b7081d8f @@ -5771,7 +5772,7 @@ 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.2-py311hc4022dc_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/pydantic-core-2.33.2-py311hc4022dc_0.conda hash: md5: 5a644594b3066c17b7dd4590b2438424 sha256: 0748e6b6cdb86dfdc4446bddb6035a75bef7939bc6dc382d17c02de1643f4e0f @@ -5791,7 +5792,7 @@ package: python: '>=3.9' sphinx: '>=5.0' typing_extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/pydata-sphinx-theme-0.15.4-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pydata-sphinx-theme-0.15.4-pyhd8ed1ab_0.conda hash: md5: c7c50dd5192caa58a05e6a4248a27acb sha256: 5ec877142ded763061e114e787a4e201c2fb3f0b1db2f04ace610a1187bb34ae @@ -5811,7 +5812,7 @@ package: python: '>=3.9' sphinx: '>=5.0' typing_extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/pydata-sphinx-theme-0.15.4-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pydata-sphinx-theme-0.15.4-pyhd8ed1ab_0.conda hash: md5: c7c50dd5192caa58a05e6a4248a27acb sha256: 5ec877142ded763061e114e787a4e201c2fb3f0b1db2f04ace610a1187bb34ae @@ -5829,7 +5830,7 @@ package: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* scipy: '>=0.13' - url: https://repo.prefix.dev/conda-forge/linux-64/pydiso-0.1.2-py311h19ea254_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/pydiso-0.1.2-py311h19ea254_0.conda hash: md5: c167267bfdb40fd2b924e06e9c7241a5 sha256: e16eed2ff0eb8f45868ca47d61322052530475a292fcda8101d5c1241c428b27 @@ -5848,7 +5849,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/pydiso-0.1.2-py311h66870c1_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/pydiso-0.1.2-py311h66870c1_0.conda hash: md5: 84cec6512899d9afc17baaad404ad74c sha256: 72cbc2c46902724c61f7b745e4c3538f8814053fafb274aecae7c6b70ae92862 @@ -5860,7 +5861,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda hash: md5: 232fb4577b6687b2d503ef8e254270c9 sha256: 28a3e3161390a9d23bc02b4419448f8d27679d9e2c250e29849e37749c8de86b @@ -5872,7 +5873,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda hash: md5: 232fb4577b6687b2d503ef8e254270c9 sha256: 28a3e3161390a9d23bc02b4419448f8d27679d9e2c250e29849e37749c8de86b @@ -5893,7 +5894,7 @@ 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.7-pyhe01879c_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pylint-3.3.7-pyhe01879c_0.conda hash: md5: fad6b90165dcf39e3ac79de5dbc030a8 sha256: 6a1dc262763220c9dc046400d8655ebe58ad4d81e872be7264af5137f906e220 @@ -5914,7 +5915,7 @@ 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.7-pyhe01879c_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pylint-3.3.7-pyhe01879c_0.conda hash: md5: fad6b90165dcf39e3ac79de5dbc030a8 sha256: 6a1dc262763220c9dc046400d8655ebe58ad4d81e872be7264af5137f906e220 @@ -5930,7 +5931,7 @@ package: pydiso: '>=0.1' python: '>=3.10' scipy: '>=1.8' - url: https://repo.prefix.dev/conda-forge/noarch/pymatsolver-0.3.1-pyh48887ae_201.conda + url: https://conda.anaconda.org/conda-forge/noarch/pymatsolver-0.3.1-pyh48887ae_201.conda hash: md5: b6805e522702eabf2ebbd236490d5eed sha256: d49ad9b58b9eeae204a3677cafc389c00c7f0f830ef76f481ab9aaf3e0260bad @@ -5946,7 +5947,7 @@ package: pydiso: '>=0.1' python: '>=3.10' scipy: '>=1.8' - url: https://repo.prefix.dev/conda-forge/noarch/pymatsolver-0.3.1-pyh48887ae_201.conda + url: https://conda.anaconda.org/conda-forge/noarch/pymatsolver-0.3.1-pyh48887ae_201.conda hash: md5: b6805e522702eabf2ebbd236490d5eed sha256: d49ad9b58b9eeae204a3677cafc389c00c7f0f830ef76f481ab9aaf3e0260bad @@ -5958,7 +5959,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pyparsing-3.2.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.2.3-pyhd8ed1ab_1.conda hash: md5: 513d3c262ee49b54a8fec85c5bc99764 sha256: b92afb79b52fcf395fd220b29e0dd3297610f2059afac45298d44e00fcbf23b6 @@ -5970,7 +5971,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pyparsing-3.2.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.2.3-pyhd8ed1ab_1.conda hash: md5: 513d3c262ee49b54a8fec85c5bc99764 sha256: b92afb79b52fcf395fd220b29e0dd3297610f2059afac45298d44e00fcbf23b6 @@ -5983,7 +5984,7 @@ package: dependencies: __unix: '' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pysocks-1.7.1-pyha55dd90_7.conda + url: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha55dd90_7.conda hash: md5: 461219d1a5bd61342293efa2c0c90eac sha256: ba3b032fa52709ce0d9fd388f63d330a026754587a2f461117cac9ab73d8d0d8 @@ -5997,14 +5998,14 @@ package: __win: '' python: '>=3.9' win_inet_pton: '' - url: https://repo.prefix.dev/conda-forge/noarch/pysocks-1.7.1-pyh09c184e_7.conda + url: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyh09c184e_7.conda hash: md5: e2fd202833c4a981ce8a65974fe4abd1 sha256: d016e04b0e12063fbee4a2d5fbb9b39a8d191b5a0042f0b8459188aedeabb0ca category: main optional: false - name: pytest - version: 8.4.0 + version: 8.4.1 manager: conda platform: linux-64 dependencies: @@ -6016,14 +6017,14 @@ package: pygments: '>=2.7.2' python: '>=3.9' tomli: '>=1' - url: https://repo.prefix.dev/conda-forge/noarch/pytest-8.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pytest-8.4.1-pyhd8ed1ab_0.conda hash: - md5: 516d31f063ce7e49ced17f105b63a1f1 - sha256: f8c5a65ff4216f7c0a9be1708be1ee1446ad678da5a01eeb2437551156e32a06 + md5: a49c2283f24696a7b30367b7346a0144 + sha256: 93e267e4ec35353e81df707938a6527d5eb55c97bf54c3b87229b69523afb59d category: dev optional: true - name: pytest - version: 8.4.0 + version: 8.4.1 manager: conda platform: win-64 dependencies: @@ -6035,14 +6036,14 @@ package: pygments: '>=2.7.2' python: '>=3.9' tomli: '>=1' - url: https://repo.prefix.dev/conda-forge/noarch/pytest-8.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pytest-8.4.1-pyhd8ed1ab_0.conda hash: - md5: 516d31f063ce7e49ced17f105b63a1f1 - sha256: f8c5a65ff4216f7c0a9be1708be1ee1446ad678da5a01eeb2437551156e32a06 + md5: a49c2283f24696a7b30367b7346a0144 + sha256: 93e267e4ec35353e81df707938a6527d5eb55c97bf54c3b87229b69523afb59d category: dev optional: true - name: pytest-cov - version: 6.1.1 + version: 6.2.1 manager: conda platform: linux-64 dependencies: @@ -6050,14 +6051,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://conda.anaconda.org/conda-forge/noarch/pytest-cov-6.2.1-pyhd8ed1ab_0.conda hash: - md5: 1e35d8f975bc0e984a19819aa91c440a - sha256: 9961a1524f63d10bc29efdc52013ec06b0e95fb2619a250e250ff3618261d5cd + md5: ce978e1b9ed8b8d49164e90a5cdc94cd + sha256: 3a9fc07be76bc67aef355b78816b5117bfe686e7d8c6f28b45a1f89afe104761 category: dev optional: true - name: pytest-cov - version: 6.1.1 + version: 6.2.1 manager: conda platform: win-64 dependencies: @@ -6065,10 +6066,10 @@ package: pytest: '>=4.6' python: '>=3.9' toml: '' - url: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-6.1.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/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 @@ -6094,7 +6095,7 @@ 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.13-h9e4cc4f_0_cpython.conda + url: https://conda.anaconda.org/conda-forge/linux-64/python-3.11.13-h9e4cc4f_0_cpython.conda hash: md5: 8c399445b6dc73eab839659e6c7b5ad1 sha256: 9979a7d4621049388892489267139f1aa629b10c26601ba5dce96afc2b1551d4 @@ -6118,7 +6119,7 @@ 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.13-h3f84c4b_0_cpython.conda + url: https://conda.anaconda.org/conda-forge/win-64/python-3.11.13-h3f84c4b_0_cpython.conda hash: md5: bedbb6f7bb654839719cd528f9b298ad sha256: 723dbca1384f30bd2070f77dd83eefd0e8d7e4dda96ac3332fbf8fe5573a8abb @@ -6131,7 +6132,7 @@ package: dependencies: python: '>=3.9' six: '>=1.5' - url: https://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda hash: md5: 5ba79d7c71f03c678c8ead841f347d6e sha256: a50052536f1ef8516ed11a844f9413661829aa083304dc624c5925298d078d79 @@ -6144,7 +6145,7 @@ package: dependencies: python: '>=3.9' six: '>=1.5' - url: https://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda hash: md5: 5ba79d7c71f03c678c8ead841f347d6e sha256: a50052536f1ef8516ed11a844f9413661829aa083304dc624c5925298d078d79 @@ -6156,7 +6157,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/python-fastjsonschema-2.21.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.21.1-pyhd8ed1ab_0.conda hash: md5: 38e34d2d1d9dca4fb2b9a0a04f604e2c sha256: 1b09a28093071c1874862422696429d0d35bd0b8420698003ac004746c5e82a2 @@ -6168,7 +6169,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/python-fastjsonschema-2.21.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.21.1-pyhd8ed1ab_0.conda hash: md5: 38e34d2d1d9dca4fb2b9a0a04f604e2c sha256: 1b09a28093071c1874862422696429d0d35bd0b8420698003ac004746c5e82a2 @@ -6180,7 +6181,7 @@ package: platform: linux-64 dependencies: python: '>=3.6' - url: https://repo.prefix.dev/conda-forge/noarch/python-json-logger-2.0.7-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/python-json-logger-2.0.7-pyhd8ed1ab_0.conda hash: md5: a61bf9ec79426938ff785eb69dbb1960 sha256: 4790787fe1f4e8da616edca4acf6a4f8ed4e7c6967aa31b920208fc8f95efcca @@ -6192,7 +6193,7 @@ package: platform: win-64 dependencies: python: '>=3.6' - url: https://repo.prefix.dev/conda-forge/noarch/python-json-logger-2.0.7-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/python-json-logger-2.0.7-pyhd8ed1ab_0.conda hash: md5: a61bf9ec79426938ff785eb69dbb1960 sha256: 4790787fe1f4e8da616edca4acf6a4f8ed4e7c6967aa31b920208fc8f95efcca @@ -6210,7 +6211,7 @@ package: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* scipy: '>=1.8' - url: https://repo.prefix.dev/conda-forge/linux-64/python-mumps-0.0.3-py311h4b558b0_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/python-mumps-0.0.3-py311h4b558b0_0.conda hash: md5: 5c50e4db02aa7d89b5200773605175e1 sha256: a46217f37ead2d17a59626d8f23517ba0f3026b9dd281ec251e880b3afe4cb13 @@ -6229,7 +6230,7 @@ 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-mumps-0.0.3-py311h5bfbc98_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/python-mumps-0.0.3-py311h5bfbc98_0.conda hash: md5: 5e8a15c6501520752ca264fa7a1a762d sha256: 330afd54afd2087de0aa320be05dbbee64893359fe395067209e8c8fd9650b05 @@ -6241,7 +6242,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/python-tzdata-2025.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2025.2-pyhd8ed1ab_0.conda hash: md5: 88476ae6ebd24f39261e0854ac244f33 sha256: e8392a8044d56ad017c08fec2b0eb10ae3d1235ac967d0aab8bd7b41c4a5eaf0 @@ -6253,7 +6254,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/python-tzdata-2025.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2025.2-pyhd8ed1ab_0.conda hash: md5: 88476ae6ebd24f39261e0854ac244f33 sha256: e8392a8044d56ad017c08fec2b0eb10ae3d1235ac967d0aab8bd7b41c4a5eaf0 @@ -6264,7 +6265,7 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/noarch/python_abi-3.11-7_cp311.conda + url: https://conda.anaconda.org/conda-forge/noarch/python_abi-3.11-7_cp311.conda hash: md5: 6320dac78b3b215ceac35858b2cfdb70 sha256: 705d06b15c497b585d235e7e87f6c893ffe5fbfdb3326e376e56c842879e0a09 @@ -6275,7 +6276,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/noarch/python_abi-3.11-7_cp311.conda + url: https://conda.anaconda.org/conda-forge/noarch/python_abi-3.11-7_cp311.conda hash: md5: 6320dac78b3b215ceac35858b2cfdb70 sha256: 705d06b15c497b585d235e7e87f6c893ffe5fbfdb3326e376e56c842879e0a09 @@ -6287,7 +6288,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda hash: md5: bc8e3267d44011051f2eb14d22fb0960 sha256: 8d2a8bf110cc1fc3df6904091dead158ba3e614d8402a83e51ed3a8aa93cdeb0 @@ -6299,7 +6300,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda hash: md5: bc8e3267d44011051f2eb14d22fb0960 sha256: 8d2a8bf110cc1fc3df6904091dead158ba3e614d8402a83e51ed3a8aa93cdeb0 @@ -6315,7 +6316,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/pywin32-307-py311hda3d55a_3.conda + url: https://conda.anaconda.org/conda-forge/win-64/pywin32-307-py311hda3d55a_3.conda hash: md5: 1bc10dbe3b8d03071070c962a2bdf65f sha256: 78a4ede098bbc122a3dff4e0e27255e30b236101818e8f499779c89670c58cd6 @@ -6332,7 +6333,7 @@ package: vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' winpty: '' - url: https://repo.prefix.dev/conda-forge/win-64/pywinpty-2.0.15-py311hda3d55a_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/pywinpty-2.0.15-py311hda3d55a_0.conda hash: md5: 8a142e0fcd43513c2e876d97ba98c0fa sha256: fbf3e3f2d5596e755bd4b83b5007fa629b184349781f46e137a4e80b6754c7c0 @@ -6348,7 +6349,7 @@ package: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* yaml: '>=0.2.5,<0.3.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/pyyaml-6.0.2-py311h2dc5d0c_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0.2-py311h2dc5d0c_2.conda hash: md5: 014417753f948da1f70d132b2de573be sha256: d107ad62ed5c62764fba9400f2c423d89adf917d687c7f2e56c3bfed605fb5b3 @@ -6365,14 +6366,14 @@ package: vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' yaml: '>=0.2.5,<0.3.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/pyyaml-6.0.2-py311h5082efb_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/pyyaml-6.0.2-py311h5082efb_2.conda hash: md5: e474ba674d780f0fa3b979ae9e81ba91 sha256: 6095e1d58c666f6a06c55338df09485eac34c76e43d92121d5786794e195aa4d category: main optional: false - name: pyzmq - version: 26.4.0 + version: 27.0.0 manager: conda platform: linux-64 dependencies: @@ -6383,14 +6384,14 @@ package: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* zeromq: '>=4.3.5,<4.4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/pyzmq-26.4.0-py311h7deb3e3_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/pyzmq-27.0.0-py311h7deb3e3_0.conda hash: - md5: eb719a63f26215bba3ee5b0227c6452b - sha256: e78fc8c500b96070359311082b4ebc5d66e52ddb2891861c728a247cf52892ba + md5: 43618006ed69ec49e144206b34ab93e6 + sha256: 1bf06369b9c22caf69351aecef3aed2282ba5224338aa6a8316dc5754f3f9a85 category: dev optional: true - name: pyzmq - version: 26.4.0 + version: 27.0.0 manager: conda platform: win-64 dependencies: @@ -6401,10 +6402,10 @@ package: vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' zeromq: '>=4.3.5,<4.3.6.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/pyzmq-26.4.0-py311h484c95c_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/pyzmq-27.0.0-py311h484c95c_0.conda hash: - md5: 0497becb33761fca9b8cfcb9f7278361 - sha256: d917b120cb10b32d90d40fc2b6a612cf75a9298d159e11da3a8672a3474b4f93 + md5: 5ff8a3328db08043afb64b77cdc4b6ea + sha256: cc47fc0264c839c9062423406d8c2e4b25360041bb47d33277daeaeab3f88101 category: dev optional: true - name: readline @@ -6414,7 +6415,7 @@ package: dependencies: libgcc: '>=13' ncurses: '>=6.5,<7.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda hash: md5: 283b96675859b20a825f8fa30f311446 sha256: 2d6d0c026902561ed77cd646b5021aef2d4db22e57a5b0178dfc669231e06d2c @@ -6429,7 +6430,7 @@ package: packaging: '' python: '>=3.9' requests: '' - url: https://repo.prefix.dev/conda-forge/noarch/readthedocs-sphinx-ext-2.2.5-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/readthedocs-sphinx-ext-2.2.5-pyhd8ed1ab_1.conda hash: md5: 42840a95562a02bef45e7b7fb24dcba4 sha256: e391356581919077b1639ebd13f4cbb0773acfd5710cfe4188921e8a0387dc6b @@ -6444,7 +6445,7 @@ package: packaging: '' python: '>=3.9' requests: '' - url: https://repo.prefix.dev/conda-forge/noarch/readthedocs-sphinx-ext-2.2.5-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/readthedocs-sphinx-ext-2.2.5-pyhd8ed1ab_1.conda hash: md5: 42840a95562a02bef45e7b7fb24dcba4 sha256: e391356581919077b1639ebd13f4cbb0773acfd5710cfe4188921e8a0387dc6b @@ -6459,7 +6460,7 @@ package: python: '>=3.9' rpds-py: '>=0.7.0' typing_extensions: '>=4.4.0' - url: https://repo.prefix.dev/conda-forge/noarch/referencing-0.36.2-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/referencing-0.36.2-pyh29332c3_0.conda hash: md5: 9140f1c09dd5489549c6a33931b943c7 sha256: e20909f474a6cece176dfc0dc1addac265deb5fa92ea90e975fbca48085b20c3 @@ -6474,7 +6475,7 @@ package: python: '>=3.9' rpds-py: '>=0.7.0' typing_extensions: '>=4.4.0' - url: https://repo.prefix.dev/conda-forge/noarch/referencing-0.36.2-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/referencing-0.36.2-pyh29332c3_0.conda hash: md5: 9140f1c09dd5489549c6a33931b943c7 sha256: e20909f474a6cece176dfc0dc1addac265deb5fa92ea90e975fbca48085b20c3 @@ -6490,7 +6491,7 @@ package: idna: '>=2.5,<4' python: '>=3.9' urllib3: '>=1.21.1,<3' - url: https://repo.prefix.dev/conda-forge/noarch/requests-2.32.4-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.4-pyhd8ed1ab_0.conda hash: md5: f6082eae112814f1447b56a5e1f6ed05 sha256: 9866aaf7a13c6cfbe665ec7b330647a0fb10a81e6f9b8fee33642232a1920e18 @@ -6506,7 +6507,7 @@ package: idna: '>=2.5,<4' python: '>=3.9' urllib3: '>=1.21.1,<3' - url: https://repo.prefix.dev/conda-forge/noarch/requests-2.32.4-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.4-pyhd8ed1ab_0.conda hash: md5: f6082eae112814f1447b56a5e1f6ed05 sha256: 9866aaf7a13c6cfbe665ec7b330647a0fb10a81e6f9b8fee33642232a1920e18 @@ -6519,7 +6520,7 @@ package: dependencies: python: '>=3.9' six: '' - url: https://repo.prefix.dev/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_1.conda hash: md5: 36de09a8d3e5d5e6f4ee63af49e59706 sha256: 2e4372f600490a6e0b3bac60717278448e323cab1c0fecd5f43f7c56535a99c5 @@ -6532,7 +6533,7 @@ package: dependencies: python: '>=3.9' six: '' - url: https://repo.prefix.dev/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_1.conda hash: md5: 36de09a8d3e5d5e6f4ee63af49e59706 sha256: 2e4372f600490a6e0b3bac60717278448e323cab1c0fecd5f43f7c56535a99c5 @@ -6544,7 +6545,7 @@ package: platform: linux-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2 hash: md5: 912a71cc01012ee38e6b90ddd561e36f sha256: 2a5b495a1de0f60f24d8a74578ebc23b24aa53279b1ad583755f223097c41c37 @@ -6556,7 +6557,7 @@ package: platform: win-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2 hash: md5: 912a71cc01012ee38e6b90ddd561e36f sha256: 2a5b495a1de0f60f24d8a74578ebc23b24aa53279b1ad583755f223097c41c37 @@ -6571,7 +6572,7 @@ package: libgcc: '>=13' python: '' python_abi: 3.11.* - url: https://repo.prefix.dev/conda-forge/linux-64/rpds-py-0.25.1-py311hdae7d1d_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/rpds-py-0.25.1-py311hdae7d1d_0.conda hash: md5: a82b805c84bca54329510d03656cf57b sha256: 9654a1c11dda67b2782cad03f2a3793e18dbf5d9dbf5d2fdf86bdac3f2ad8a1d @@ -6587,7 +6588,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/rpds-py-0.25.1-py311hc4022dc_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/rpds-py-0.25.1-py311hc4022dc_0.conda hash: md5: 9cbe2af742a0fa8387caef089682a92f sha256: 3a76edb8f446351f36eb43a215e0df0b444f73b0f22453c0966611653b05c06f @@ -6607,7 +6608,7 @@ package: python_abi: 3.11.* scipy: '' threadpoolctl: '>=2.0.0' - url: https://repo.prefix.dev/conda-forge/linux-64/scikit-learn-1.4.2-py311he08f58d_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/scikit-learn-1.4.2-py311he08f58d_1.conda hash: md5: fd4a80e35c05513590b33c83fc81dcc7 sha256: b818f7df6ae949012a38b41b6577ac2319569971b1a063c0386447ec2c6c09ed @@ -6627,7 +6628,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/scikit-learn-1.4.2-py311hdcb8d17_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/scikit-learn-1.4.2-py311hdcb8d17_1.conda hash: md5: 4179839852432a4e95b5ff86dd5faa9c sha256: e38cac2faa50b04ae06da6a7c9690ad8f893f2b3318b052ac15710221f32e231 @@ -6649,7 +6650,7 @@ package: 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 + url: https://conda.anaconda.org/conda-forge/linux-64/scipy-1.14.1-py311he9a78e4_2.conda hash: md5: c4aee8cadc4c9fc9a91aca0803473690 sha256: b28d91a55205b886308da82428cd522e9dce0ef912445a2e9d89318379c15759 @@ -6669,7 +6670,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/scipy-1.14.1-py311hf16d85f_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/scipy-1.14.1-py311hf16d85f_2.conda hash: md5: 8d3393f64df60e48be00d06ccb63bb18 sha256: ef98270586c1dfb551f9ff868312554f248f155406f924b91df07cd46c14d302 @@ -6682,7 +6683,7 @@ package: dependencies: __linux: '' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/send2trash-1.8.3-pyh0d859eb_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/send2trash-1.8.3-pyh0d859eb_1.conda hash: md5: 938c8de6b9de091997145b3bf25cdbf9 sha256: 00926652bbb8924e265caefdb1db100f86a479e8f1066efe395d5552dde54d02 @@ -6696,7 +6697,7 @@ package: __win: '' python: '>=3.9' pywin32: '' - url: https://repo.prefix.dev/conda-forge/noarch/send2trash-1.8.3-pyh5737063_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/send2trash-1.8.3-pyh5737063_1.conda hash: md5: e6a4e906051565caf5fdae5b0415b654 sha256: ba8b93df52e0d625177907852340d735026c81118ac197f61f1f5baea19071ad @@ -6708,7 +6709,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda hash: md5: 4de79c071274a53dcaf2a8c749d1499e sha256: 972560fcf9657058e3e1f97186cc94389144b46dbdf58c807ce62e83f977e863 @@ -6720,7 +6721,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda hash: md5: 4de79c071274a53dcaf2a8c749d1499e sha256: 972560fcf9657058e3e1f97186cc94389144b46dbdf58c807ce62e83f977e863 @@ -6732,7 +6733,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda hash: md5: a451d576819089b0d672f18768be0f65 sha256: 41db0180680cc67c3fa76544ffd48d6a5679d96f4b71d7498a759e94edc9a2db @@ -6744,7 +6745,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda hash: md5: a451d576819089b0d672f18768be0f65 sha256: 41db0180680cc67c3fa76544ffd48d6a5679d96f4b71d7498a759e94edc9a2db @@ -6756,7 +6757,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_1.conda hash: md5: bf7a226e58dfb8346c70df36065d86c9 sha256: c2248418c310bdd1719b186796ae50a8a77ce555228b6acd32768e2543a15012 @@ -6768,7 +6769,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_1.conda hash: md5: bf7a226e58dfb8346c70df36065d86c9 sha256: c2248418c310bdd1719b186796ae50a8a77ce555228b6acd32768e2543a15012 @@ -6780,7 +6781,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/snowballstemmer-3.0.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/snowballstemmer-3.0.1-pyhd8ed1ab_0.conda hash: md5: 755cf22df8693aa0d1aec1c123fa5863 sha256: 17007a4cfbc564dc3e7310dcbe4932c6ecb21593d4fec3c68610720f19e73fb2 @@ -6792,7 +6793,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/snowballstemmer-3.0.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/snowballstemmer-3.0.1-pyhd8ed1ab_0.conda hash: md5: 755cf22df8693aa0d1aec1c123fa5863 sha256: 17007a4cfbc564dc3e7310dcbe4932c6ecb21593d4fec3c68610720f19e73fb2 @@ -6804,7 +6805,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_1.conda hash: md5: 0401a17ae845fa72c7210e206ec5647d sha256: d1e3e06b5cf26093047e63c8cc77b70d970411c5cbc0cb1fad461a8a8df599f7 @@ -6816,7 +6817,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_1.conda hash: md5: 0401a17ae845fa72c7210e206ec5647d sha256: d1e3e06b5cf26093047e63c8cc77b70d970411c5cbc0cb1fad461a8a8df599f7 @@ -6828,7 +6829,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.7-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.7-pyhd8ed1ab_0.conda hash: md5: fb32097c717486aa34b38a9db57eb49e sha256: 7518506cce9a736042132f307b3f4abce63bf076f5fb07c1f4e506c0b214295a @@ -6840,7 +6841,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.7-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.7-pyhd8ed1ab_0.conda hash: md5: fb32097c717486aa34b38a9db57eb49e sha256: 7518506cce9a736042132f307b3f4abce63bf076f5fb07c1f4e506c0b214295a @@ -6869,7 +6870,7 @@ package: sphinxcontrib-jsmath: '' sphinxcontrib-qthelp: '' sphinxcontrib-serializinghtml: '>=1.1.5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-5.3.0-pyhd8ed1ab_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-5.3.0-pyhd8ed1ab_0.tar.bz2 hash: md5: f9e1fcfe235d655900bfeb6aee426472 sha256: f11fd5fb4ae2c65f41ae86e7408e3ab44844898d928264aa9e89929fffc685c8 @@ -6898,7 +6899,7 @@ package: sphinxcontrib-jsmath: '' sphinxcontrib-qthelp: '' sphinxcontrib-serializinghtml: '>=1.1.5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-5.3.0-pyhd8ed1ab_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-5.3.0-pyhd8ed1ab_0.tar.bz2 hash: md5: f9e1fcfe235d655900bfeb6aee426472 sha256: f11fd5fb4ae2c65f41ae86e7408e3ab44844898d928264aa9e89929fffc685c8 @@ -6912,7 +6913,7 @@ package: pydata-sphinx-theme: '>=0.15.2' python: '>=3.9' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-book-theme-1.1.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-book-theme-1.1.3-pyhd8ed1ab_1.conda hash: md5: 501e2d6d8aa1b8d82d2707ce8c90b287 sha256: cf1d3ae6d28042954ac750f6948678fefa619681c3994d2637d747d96a1139ea @@ -6926,7 +6927,7 @@ package: pydata-sphinx-theme: '>=0.15.2' python: '>=3.9' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-book-theme-1.1.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-book-theme-1.1.3-pyhd8ed1ab_1.conda hash: md5: 501e2d6d8aa1b8d82d2707ce8c90b287 sha256: cf1d3ae6d28042954ac750f6948678fefa619681c3994d2637d747d96a1139ea @@ -6939,7 +6940,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=1.8' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-comments-0.0.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-comments-0.0.3-pyhd8ed1ab_1.conda hash: md5: 30e02fa8e40287da066e348c95ff5609 sha256: 00129f91b905441a9e27c46ef32c22617743eb4a4f7207e1dd84bc19505d4381 @@ -6952,7 +6953,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=1.8' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-comments-0.0.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-comments-0.0.3-pyhd8ed1ab_1.conda hash: md5: 30e02fa8e40287da066e348c95ff5609 sha256: 00129f91b905441a9e27c46ef32c22617743eb4a4f7207e1dd84bc19505d4381 @@ -6965,7 +6966,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=1.8' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-copybutton-0.5.2-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-copybutton-0.5.2-pyhd8ed1ab_1.conda hash: md5: bf22cb9c439572760316ce0748af3713 sha256: 8cd892e49cb4d00501bc4439fb0c73ca44905f01a65b2b7fa05ba0e8f3924f19 @@ -6978,7 +6979,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=1.8' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-copybutton-0.5.2-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-copybutton-0.5.2-pyhd8ed1ab_1.conda hash: md5: bf22cb9c439572760316ce0748af3713 sha256: 8cd892e49cb4d00501bc4439fb0c73ca44905f01a65b2b7fa05ba0e8f3924f19 @@ -6991,7 +6992,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5,<8' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-design-0.6.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-design-0.6.1-pyhd8ed1ab_0.conda hash: md5: 51b2433e4a223b14defee96d3caf9bab sha256: 99a44df1d09a27e40002ebaf76792dac75c9cb1386af313b272a4251c8047640 @@ -7004,7 +7005,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5,<8' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-design-0.6.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-design-0.6.1-pyhd8ed1ab_0.conda hash: md5: 51b2433e4a223b14defee96d3caf9bab sha256: 99a44df1d09a27e40002ebaf76792dac75c9cb1386af313b272a4251c8047640 @@ -7019,7 +7020,7 @@ package: python: '>=3.9' pyyaml: '' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-external-toc-1.0.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-external-toc-1.0.1-pyhd8ed1ab_1.conda hash: md5: d248f9db0f1c2e7c480b058925afa9c5 sha256: 47dda7135f9fb1777b7066c3b9260fdd796d6ec2aeb8804161f39c65b3461401 @@ -7034,7 +7035,7 @@ package: python: '>=3.9' pyyaml: '' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-external-toc-1.0.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-external-toc-1.0.1-pyhd8ed1ab_1.conda hash: md5: d248f9db0f1c2e7c480b058925afa9c5 sha256: 47dda7135f9fb1777b7066c3b9260fdd796d6ec2aeb8804161f39c65b3461401 @@ -7048,7 +7049,7 @@ package: packaging: '' python: '>=3.9' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-jupyterbook-latex-1.0.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-jupyterbook-latex-1.0.0-pyhd8ed1ab_1.conda hash: md5: 9261bc5d987013f5d8dc58061c34f1a3 sha256: b64c031795918f26ddeb5148ede2d3a4944cd9f5461cf72bde3f28acdc71d2f3 @@ -7062,7 +7063,7 @@ package: packaging: '' python: '>=3.9' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-jupyterbook-latex-1.0.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-jupyterbook-latex-1.0.0-pyhd8ed1ab_1.conda hash: md5: 9261bc5d987013f5d8dc58061c34f1a3 sha256: b64c031795918f26ddeb5148ede2d3a4944cd9f5461cf72bde3f28acdc71d2f3 @@ -7075,7 +7076,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=3' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-multitoc-numbering-0.1.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-multitoc-numbering-0.1.3-pyhd8ed1ab_1.conda hash: md5: cc5fc0988f0fedab436361b9b5906a58 sha256: 9fa48b33334c3a9971c96dd3d921950e8350cfa88a8e8ebaec6d8261071ea2ac @@ -7088,7 +7089,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=3' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-multitoc-numbering-0.1.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-multitoc-numbering-0.1.3-pyhd8ed1ab_1.conda hash: md5: cc5fc0988f0fedab436361b9b5906a58 sha256: 9fa48b33334c3a9971c96dd3d921950e8350cfa88a8e8ebaec6d8261071ea2ac @@ -7101,7 +7102,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=4' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-thebe-0.3.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-thebe-0.3.1-pyhd8ed1ab_1.conda hash: md5: f6627ce09745a0f822cc6e7de8cf4f99 sha256: 9d0cd52edcb2274bf7c8e9327317d9bb48e1d092afeaed093e0242876ad3c008 @@ -7114,7 +7115,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=4' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-thebe-0.3.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-thebe-0.3.1-pyhd8ed1ab_1.conda hash: md5: f6627ce09745a0f822cc6e7de8cf4f99 sha256: 9d0cd52edcb2274bf7c8e9327317d9bb48e1d092afeaed093e0242876ad3c008 @@ -7128,7 +7129,7 @@ package: docutils: '' python: '>=3.6' sphinx: '' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-togglebutton-0.3.2-pyhd8ed1ab_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-togglebutton-0.3.2-pyhd8ed1ab_0.tar.bz2 hash: md5: 382738101934261ea7931d1460e64868 sha256: 0dcee238aae6337fae5eaf1f9a29b0c51ed9834ae501fccb2cde0fed8dae1a88 @@ -7142,7 +7143,7 @@ package: docutils: '' python: '>=3.6' sphinx: '' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-togglebutton-0.3.2-pyhd8ed1ab_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-togglebutton-0.3.2-pyhd8ed1ab_0.tar.bz2 hash: md5: 382738101934261ea7931d1460e64868 sha256: 0dcee238aae6337fae5eaf1f9a29b0c51ed9834ae501fccb2cde0fed8dae1a88 @@ -7155,7 +7156,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 16e3f039c0aa6446513e94ab18a8784b sha256: d7433a344a9ad32a680b881c81b0034bc61618d12c39dd6e3309abeffa9577ba @@ -7168,7 +7169,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 16e3f039c0aa6446513e94ab18a8784b sha256: d7433a344a9ad32a680b881c81b0034bc61618d12c39dd6e3309abeffa9577ba @@ -7186,7 +7187,7 @@ package: pybtex-docutils: '>=1' python: '>=3.6' sphinx: '>=2.1' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-bibtex-2.5.0-pyhd8ed1ab_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-bibtex-2.5.0-pyhd8ed1ab_0.tar.bz2 hash: md5: b2e5c9aece936ebf9f26abdf71ddd74b sha256: d5b02d285909b4501a469857b1a88a91a849d5f28bbe64b9e6c3e86d2388d345 @@ -7204,7 +7205,7 @@ package: pybtex-docutils: '>=1' python: '>=3.6' sphinx: '>=2.1' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-bibtex-2.5.0-pyhd8ed1ab_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-bibtex-2.5.0-pyhd8ed1ab_0.tar.bz2 hash: md5: b2e5c9aece936ebf9f26abdf71ddd74b sha256: d5b02d285909b4501a469857b1a88a91a849d5f28bbe64b9e6c3e86d2388d345 @@ -7217,7 +7218,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 910f28a05c178feba832f842155cbfff sha256: 55d5076005d20b84b20bee7844e686b7e60eb9f683af04492e598a622b12d53d @@ -7230,7 +7231,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 910f28a05c178feba832f842155cbfff sha256: 55d5076005d20b84b20bee7844e686b7e60eb9f683af04492e598a622b12d53d @@ -7243,7 +7244,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_1.conda hash: md5: e9fb3fe8a5b758b4aff187d434f94f03 sha256: c1492c0262ccf16694bdcd3bb62aa4627878ea8782d5cd3876614ffeb62b3996 @@ -7256,7 +7257,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_1.conda hash: md5: e9fb3fe8a5b758b4aff187d434f94f03 sha256: c1492c0262ccf16694bdcd3bb62aa4627878ea8782d5cd3876614ffeb62b3996 @@ -7268,7 +7269,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_1.conda hash: md5: fa839b5ff59e192f411ccc7dae6588bb sha256: 578bef5ec630e5b2b8810d898bbbf79b9ae66d49b7938bcc3efc364e679f2a62 @@ -7280,7 +7281,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_1.conda hash: md5: fa839b5ff59e192f411ccc7dae6588bb sha256: 578bef5ec630e5b2b8810d898bbbf79b9ae66d49b7938bcc3efc364e679f2a62 @@ -7293,7 +7294,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 00534ebcc0375929b45c3039b5ba7636 sha256: c664fefae4acdb5fae973bdde25836faf451f41d04342b64a358f9a7753c92ca @@ -7306,7 +7307,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 00534ebcc0375929b45c3039b5ba7636 sha256: c664fefae4acdb5fae973bdde25836faf451f41d04342b64a358f9a7753c92ca @@ -7319,7 +7320,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda hash: md5: 3bc61f7161d28137797e038263c04c54 sha256: 64d89ecc0264347486971a94487cb8d7c65bfc0176750cf7502b8a272f4ab557 @@ -7332,7 +7333,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda hash: md5: 3bc61f7161d28137797e038263c04c54 sha256: 64d89ecc0264347486971a94487cb8d7c65bfc0176750cf7502b8a272f4ab557 @@ -7349,7 +7350,7 @@ package: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* typing-extensions: '>=4.6.0' - url: https://repo.prefix.dev/conda-forge/linux-64/sqlalchemy-2.0.41-py311h9ecbd09_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/sqlalchemy-2.0.41-py311h9ecbd09_0.conda hash: md5: a45573d9f1f67e0865940a5b688a7f9c sha256: f56d1873c0184788ff6d03bfd0139aba3343e098fc9110d482aaa72b354ecb25 @@ -7367,7 +7368,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/sqlalchemy-2.0.41-py311he736701_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/sqlalchemy-2.0.41-py311he736701_0.conda hash: md5: b1234642d990f4af8cf2052962f556d8 sha256: c08a9cc33a8f18d6ae35830e9f8cde51c0906b02da150db753b741bfc3bded85 @@ -7382,7 +7383,7 @@ package: executing: '' pure_eval: '' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda hash: md5: b1b505328da7a6b246787df4b5a49fbc sha256: 570da295d421661af487f1595045760526964f41471021056e993e73089e9c41 @@ -7397,7 +7398,7 @@ package: executing: '' pure_eval: '' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda hash: md5: b1b505328da7a6b246787df4b5a49fbc sha256: 570da295d421661af487f1595045760526964f41471021056e993e73089e9c41 @@ -7409,7 +7410,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tabulate-0.9.0-pyhd8ed1ab_2.conda + url: https://conda.anaconda.org/conda-forge/noarch/tabulate-0.9.0-pyhd8ed1ab_2.conda hash: md5: 959484a66b4b76befcddc4fa97c95567 sha256: 090023bddd40d83468ef86573976af8c514f64119b2bd814ee63a838a542720a @@ -7421,7 +7422,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tabulate-0.9.0-pyhd8ed1ab_2.conda + url: https://conda.anaconda.org/conda-forge/noarch/tabulate-0.9.0-pyhd8ed1ab_2.conda hash: md5: 959484a66b4b76befcddc4fa97c95567 sha256: 090023bddd40d83468ef86573976af8c514f64119b2bd814ee63a838a542720a @@ -7436,7 +7437,7 @@ package: libgcc: '>=13' libhwloc: '>=2.11.2,<2.11.3.0a0' libstdcxx: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/tbb-2021.13.0-hceb3a55_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/tbb-2021.13.0-hceb3a55_1.conda hash: md5: ba7726b8df7b9d34ea80e82b097a4893 sha256: 65463732129899770d54b1fbf30e1bb82fdebda9d7553caf08d23db4590cd691 @@ -7451,7 +7452,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/tbb-2021.13.0-h62715c5_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/tbb-2021.13.0-h62715c5_1.conda hash: md5: 9190dd0a23d925f7602f9628b3aed511 sha256: 03cc5442046485b03dd1120d0f49d35a7e522930a2ab82f275e938e17b07b302 @@ -7463,7 +7464,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tblib-3.1.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/tblib-3.1.0-pyhd8ed1ab_0.conda hash: md5: a15c62b8a306b8978f094f76da2f903f sha256: a83c83f5e622a2f34fb1d179c55c3ff912429cd0a54f9f3190ae44a0fdba2ad2 @@ -7475,7 +7476,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tblib-3.1.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/tblib-3.1.0-pyhd8ed1ab_0.conda hash: md5: a15c62b8a306b8978f094f76da2f903f sha256: a83c83f5e622a2f34fb1d179c55c3ff912429cd0a54f9f3190ae44a0fdba2ad2 @@ -7490,7 +7491,7 @@ package: ptyprocess: '' python: '>=3.8' tornado: '>=6.1.0' - url: https://repo.prefix.dev/conda-forge/noarch/terminado-0.18.1-pyh0d859eb_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/terminado-0.18.1-pyh0d859eb_0.conda hash: md5: efba281bbdae5f6b0a1d53c6d4a97c93 sha256: b300557c0382478cf661ddb520263508e4b3b5871b471410450ef2846e8c352c @@ -7505,7 +7506,7 @@ package: python: '>=3.8' pywinpty: '>=1.1.0' tornado: '>=6.1.0' - url: https://repo.prefix.dev/conda-forge/noarch/terminado-0.18.1-pyh5737063_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/terminado-0.18.1-pyh5737063_0.conda hash: md5: 4abd500577430a942a995fd0d09b76a2 sha256: 8cb078291fd7882904e3de594d299c8de16dd3af7405787fce6919a385cfc238 @@ -7517,7 +7518,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/threadpoolctl-3.6.0-pyhecae5ae_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/threadpoolctl-3.6.0-pyhecae5ae_0.conda hash: md5: 9d64911b31d57ca443e9f1e36b04385f sha256: 6016672e0e72c4cf23c0cf7b1986283bd86a9c17e8d319212d78d8e9ae42fdfd @@ -7529,7 +7530,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/threadpoolctl-3.6.0-pyhecae5ae_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/threadpoolctl-3.6.0-pyhecae5ae_0.conda hash: md5: 9d64911b31d57ca443e9f1e36b04385f sha256: 6016672e0e72c4cf23c0cf7b1986283bd86a9c17e8d319212d78d8e9ae42fdfd @@ -7542,7 +7543,7 @@ package: dependencies: python: '>=3.5' webencodings: '>=0.4' - url: https://repo.prefix.dev/conda-forge/noarch/tinycss2-1.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.4.0-pyhd8ed1ab_0.conda hash: md5: f1acf5fdefa8300de697982bcb1761c9 sha256: cad582d6f978276522f84bd209a5ddac824742fe2d452af6acf900f8650a73a2 @@ -7555,7 +7556,7 @@ package: dependencies: python: '>=3.5' webencodings: '>=0.4' - url: https://repo.prefix.dev/conda-forge/noarch/tinycss2-1.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.4.0-pyhd8ed1ab_0.conda hash: md5: f1acf5fdefa8300de697982bcb1761c9 sha256: cad582d6f978276522f84bd209a5ddac824742fe2d452af6acf900f8650a73a2 @@ -7569,7 +7570,7 @@ package: __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 + url: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_hd72426e_102.conda hash: md5: a0116df4f4ed05c303811a837d5b39d8 sha256: a84ff687119e6d8752346d1d408d5cf360dee0badd487a472aa8ddedfdc219e1 @@ -7583,7 +7584,7 @@ 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-h2c6b04d_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-h2c6b04d_2.conda hash: md5: ebd0e761de9aa879a51d22cc721bd095 sha256: e3614b0eb4abcc70d98eae159db59d9b4059ed743ef402081151a948dce95896 @@ -7595,7 +7596,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_1.conda hash: md5: b0dd904de08b7db706167240bf37b164 sha256: 34f3a83384ac3ac30aefd1309e69498d8a4aa0bf2d1f21c645f79b180e378938 @@ -7607,7 +7608,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_1.conda hash: md5: b0dd904de08b7db706167240bf37b164 sha256: 34f3a83384ac3ac30aefd1309e69498d8a4aa0bf2d1f21c645f79b180e378938 @@ -7619,7 +7620,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda hash: md5: ac944244f1fed2eb49bae07193ae8215 sha256: 18636339a79656962723077df9a56c0ac7b8a864329eb8f847ee3d38495b863e @@ -7631,7 +7632,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda hash: md5: ac944244f1fed2eb49bae07193ae8215 sha256: 18636339a79656962723077df9a56c0ac7b8a864329eb8f847ee3d38495b863e @@ -7643,7 +7644,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.3-pyha770c72_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.13.3-pyha770c72_0.conda hash: md5: 146402bf0f11cbeb8f781fa4309a95d3 sha256: f8d3b49c084831a20923f66826f30ecfc55a4cd951e544b7213c692887343222 @@ -7655,7 +7656,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.3-pyha770c72_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.13.3-pyha770c72_0.conda hash: md5: 146402bf0f11cbeb8f781fa4309a95d3 sha256: f8d3b49c084831a20923f66826f30ecfc55a4cd951e544b7213c692887343222 @@ -7667,7 +7668,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/toolz-1.0.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/toolz-1.0.0-pyhd8ed1ab_1.conda hash: md5: 40d0ed782a8aaa16ef248e68c06c168d sha256: eda38f423c33c2eaeca49ed946a8d3bf466cc3364970e083a65eb2fd85258d87 @@ -7679,7 +7680,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/toolz-1.0.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/toolz-1.0.0-pyhd8ed1ab_1.conda hash: md5: 40d0ed782a8aaa16ef248e68c06c168d sha256: eda38f423c33c2eaeca49ed946a8d3bf466cc3364970e083a65eb2fd85258d87 @@ -7694,7 +7695,7 @@ package: libgcc: '>=13' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://repo.prefix.dev/conda-forge/linux-64/tornado-6.5.1-py311h9ecbd09_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/tornado-6.5.1-py311h9ecbd09_0.conda hash: md5: 24e9f474abd101554b7a91313b9dfad6 sha256: 66cc98dbf7aafe11a4cb886a8278a559c1616c098ee9f36d41697eaeb0830a4d @@ -7710,7 +7711,7 @@ 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.5.1-py311he736701_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/tornado-6.5.1-py311he736701_0.conda hash: md5: 3b58e6c2e18a83cf64ecc550513b940c sha256: c7b28b96f21fa9cf675b051fe3039682038debf69ab8a3aa25cfdf3fa4aa9f8e @@ -7723,7 +7724,7 @@ package: dependencies: colorama: '' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_1.conda hash: md5: 9efbfdc37242619130ea42b1cc4ed861 sha256: 11e2c85468ae9902d24a27137b6b39b4a78099806e551d390e394a8c34b48e40 @@ -7736,7 +7737,7 @@ package: dependencies: colorama: '' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_1.conda hash: md5: 9efbfdc37242619130ea42b1cc4ed861 sha256: 11e2c85468ae9902d24a27137b6b39b4a78099806e551d390e394a8c34b48e40 @@ -7748,7 +7749,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda hash: md5: 019a7385be9af33791c989871317e1ed sha256: f39a5620c6e8e9e98357507262a7869de2ae8cc07da8b7f84e517c9fd6c2b959 @@ -7760,7 +7761,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda hash: md5: 019a7385be9af33791c989871317e1ed sha256: f39a5620c6e8e9e98357507262a7869de2ae8cc07da8b7f84e517c9fd6c2b959 @@ -7772,7 +7773,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/types-python-dateutil-2.9.0.20250516-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/types-python-dateutil-2.9.0.20250516-pyhd8ed1ab_0.conda hash: md5: e3465397ca4b5b60ba9fbc92ef0672f9 sha256: 0fb78e97cad71ebf911958bf97777ec958a64a4621615a4dcc3ffb52cda7c6d0 @@ -7784,7 +7785,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/types-python-dateutil-2.9.0.20250516-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/types-python-dateutil-2.9.0.20250516-pyhd8ed1ab_0.conda hash: md5: e3465397ca4b5b60ba9fbc92ef0672f9 sha256: 0fb78e97cad71ebf911958bf97777ec958a64a4621615a4dcc3ffb52cda7c6d0 @@ -7796,7 +7797,7 @@ package: platform: linux-64 dependencies: typing_extensions: ==4.14.0 - url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.14.0-h32cad80_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.14.0-h32cad80_0.conda hash: md5: a1cdd40fc962e2f7944bc19e01c7e584 sha256: b8cabfa54432b0f124c0af6b6facdf8110892914fa841ac2e80ab65ac52c1ba4 @@ -7808,7 +7809,7 @@ package: platform: win-64 dependencies: typing_extensions: ==4.14.0 - url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.14.0-h32cad80_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.14.0-h32cad80_0.conda hash: md5: a1cdd40fc962e2f7944bc19e01c7e584 sha256: b8cabfa54432b0f124c0af6b6facdf8110892914fa841ac2e80ab65ac52c1ba4 @@ -7821,7 +7822,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '>=4.12.0' - url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/typing-inspection-0.4.1-pyhd8ed1ab_0.conda hash: md5: e0c3cd765dc15751ee2f0b03cd015712 sha256: 4259a7502aea516c762ca8f3b8291b0d4114e094bdb3baae3171ccc0900e722f @@ -7834,7 +7835,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '>=4.12.0' - url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/typing-inspection-0.4.1-pyhd8ed1ab_0.conda hash: md5: e0c3cd765dc15751ee2f0b03cd015712 sha256: 4259a7502aea516c762ca8f3b8291b0d4114e094bdb3baae3171ccc0900e722f @@ -7846,7 +7847,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.14.0-pyhe01879c_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.14.0-pyhe01879c_0.conda hash: md5: 2adcd9bb86f656d3d43bf84af59a1faf sha256: 8561db52f278c5716b436da6d4ee5521712a49e8f3c70fcae5350f5ebb4be41c @@ -7858,7 +7859,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.14.0-pyhe01879c_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.14.0-pyhe01879c_0.conda hash: md5: 2adcd9bb86f656d3d43bf84af59a1faf sha256: 8561db52f278c5716b436da6d4ee5521712a49e8f3c70fcae5350f5ebb4be41c @@ -7870,7 +7871,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/typing_utils-0.1.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/typing_utils-0.1.0-pyhd8ed1ab_1.conda hash: md5: f6d7aa696c67756a650e91e15e88223c sha256: 3088d5d873411a56bf988eee774559335749aed6f6c28e07bf933256afb9eb6c @@ -7882,7 +7883,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/typing_utils-0.1.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/typing_utils-0.1.0-pyhd8ed1ab_1.conda hash: md5: f6d7aa696c67756a650e91e15e88223c sha256: 3088d5d873411a56bf988eee774559335749aed6f6c28e07bf933256afb9eb6c @@ -7893,7 +7894,7 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda hash: md5: 4222072737ccff51314b5ece9c7d6f5a sha256: 5aaa366385d716557e365f0a4e9c3fca43ba196872abbbe3d56bb610d131e192 @@ -7904,7 +7905,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda hash: md5: 4222072737ccff51314b5ece9c7d6f5a sha256: 5aaa366385d716557e365f0a4e9c3fca43ba196872abbbe3d56bb610d131e192 @@ -7916,7 +7917,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/uc-micro-py-1.0.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/uc-micro-py-1.0.3-pyhd8ed1ab_1.conda hash: md5: 9c96c9876ba45368a03056ddd0f20431 sha256: a2f837780af450d633efc052219c31378bcad31356766663fb88a99e8e4c817b @@ -7928,7 +7929,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/uc-micro-py-1.0.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/uc-micro-py-1.0.3-pyhd8ed1ab_1.conda hash: md5: 9c96c9876ba45368a03056ddd0f20431 sha256: a2f837780af450d633efc052219c31378bcad31356766663fb88a99e8e4c817b @@ -7939,7 +7940,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_1.conda hash: md5: 6797b005cd0f439c4c5c9ac565783700 sha256: db8dead3dd30fb1a032737554ce91e2819b43496a0db09927edf01c32b577450 @@ -7954,7 +7955,7 @@ package: libgcc: '>=13' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://repo.prefix.dev/conda-forge/linux-64/unicodedata2-16.0.0-py311h9ecbd09_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/unicodedata2-16.0.0-py311h9ecbd09_0.conda hash: md5: 51a12678b609f5794985fda8372b1a49 sha256: e786fb0925515fffc83e393d2a0e2814eaf9be8a434f1982b399841a2c07980b @@ -7970,7 +7971,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/unicodedata2-16.0.0-py311he736701_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/unicodedata2-16.0.0-py311he736701_0.conda hash: md5: 5ec4da89151e9d55f9ecad019f2d1e58 sha256: 3f626553bfb49ac756cf40e0c10ecb3a915a86f64e036924ab956b37ad1fa9f4 @@ -7982,7 +7983,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/uri-template-1.3.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/uri-template-1.3.0-pyhd8ed1ab_1.conda hash: md5: e7cb0f5745e4c5035a460248334af7eb sha256: e0eb6c8daf892b3056f08416a96d68b0a358b7c46b99c8a50481b22631a4dfc0 @@ -7994,14 +7995,14 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/uri-template-1.3.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/uri-template-1.3.0-pyhd8ed1ab_1.conda hash: md5: e7cb0f5745e4c5035a460248334af7eb sha256: e0eb6c8daf892b3056f08416a96d68b0a358b7c46b99c8a50481b22631a4dfc0 category: dev optional: true - name: urllib3 - version: 2.4.0 + version: 2.5.0 manager: conda platform: linux-64 dependencies: @@ -8010,14 +8011,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://conda.anaconda.org/conda-forge/noarch/urllib3-2.5.0-pyhd8ed1ab_0.conda hash: - md5: c1e349028e0052c4eea844e94f773065 - sha256: a25403b76f7f03ca1a906e1ef0f88521edded991b9897e7fed56a3e334b3db8c + md5: 436c165519e140cb08d246a4472a9d6a + sha256: 4fb9789154bd666ca74e428d973df81087a697dbb987775bc3198d2215f240f8 category: main optional: false - name: urllib3 - version: 2.4.0 + version: 2.5.0 manager: conda platform: win-64 dependencies: @@ -8026,10 +8027,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://conda.anaconda.org/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 @@ -8038,7 +8039,7 @@ package: platform: win-64 dependencies: vc14_runtime: '>=14.42.34433' - url: https://repo.prefix.dev/conda-forge/win-64/vc-14.3-h2b53caa_26.conda + url: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-h2b53caa_26.conda hash: md5: d3f0381e38093bde620a8d85f266ae55 sha256: 7a685b5c37e9713fa314a0d26b8b1d7a2e6de5ab758698199b5d5b6dba2e3ce1 @@ -8050,7 +8051,7 @@ package: platform: win-64 dependencies: ucrt: '>=10.0.20348.0' - url: https://repo.prefix.dev/conda-forge/win-64/vc14_runtime-14.42.34438-hfd919c2_26.conda + url: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.42.34438-hfd919c2_26.conda hash: md5: 91651a36d31aa20c7ba36299fb7068f4 sha256: 30dcb71bb166e351aadbdc18f1718757c32cdaa0e1e5d9368469ee44f6bf4709 @@ -8062,7 +8063,7 @@ package: platform: win-64 dependencies: vc14_runtime: '>=14.42.34438' - url: https://repo.prefix.dev/conda-forge/win-64/vs2015_runtime-14.42.34438-h7142326_26.conda + url: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.42.34438-h7142326_26.conda hash: md5: 3357e4383dbce31eed332008ede242ab sha256: 432f2937206f1ad4a77e39f84fabc1ce7d2472b669836fb72bd2bfd19a2defc9 @@ -8074,7 +8075,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/wcwidth-0.2.13-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.13-pyhd8ed1ab_1.conda hash: md5: b68980f2495d096e71c7fd9d7ccf63e6 sha256: f21e63e8f7346f9074fd00ca3b079bd3d2fa4d71f1f89d5b6934bf31446dc2a5 @@ -8086,7 +8087,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/wcwidth-0.2.13-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.13-pyhd8ed1ab_1.conda hash: md5: b68980f2495d096e71c7fd9d7ccf63e6 sha256: f21e63e8f7346f9074fd00ca3b079bd3d2fa4d71f1f89d5b6934bf31446dc2a5 @@ -8098,7 +8099,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/webcolors-24.11.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/webcolors-24.11.1-pyhd8ed1ab_0.conda hash: md5: b49f7b291e15494aafb0a7d74806f337 sha256: 08315dc2e61766a39219b2d82685fc25a56b2817acf84d5b390176080eaacf99 @@ -8110,7 +8111,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/webcolors-24.11.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/webcolors-24.11.1-pyhd8ed1ab_0.conda hash: md5: b49f7b291e15494aafb0a7d74806f337 sha256: 08315dc2e61766a39219b2d82685fc25a56b2817acf84d5b390176080eaacf99 @@ -8122,7 +8123,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_3.conda + url: https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_3.conda hash: md5: 2841eb5bfc75ce15e9a0054b98dcd64d sha256: 19ff205e138bb056a46f9e3839935a2e60bd1cf01c8241a5e172a422fed4f9c6 @@ -8134,7 +8135,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_3.conda + url: https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_3.conda hash: md5: 2841eb5bfc75ce15e9a0054b98dcd64d sha256: 19ff205e138bb056a46f9e3839935a2e60bd1cf01c8241a5e172a422fed4f9c6 @@ -8146,7 +8147,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/websocket-client-1.8.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/websocket-client-1.8.0-pyhd8ed1ab_1.conda hash: md5: 84f8f77f0a9c6ef401ee96611745da8f sha256: 1dd84764424ffc82030c19ad70607e6f9e3b9cb8e633970766d697185652053e @@ -8158,7 +8159,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/websocket-client-1.8.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/websocket-client-1.8.0-pyhd8ed1ab_1.conda hash: md5: 84f8f77f0a9c6ef401ee96611745da8f sha256: 1dd84764424ffc82030c19ad70607e6f9e3b9cb8e633970766d697185652053e @@ -8170,7 +8171,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda hash: md5: 75cb7132eb58d97896e173ef12ac9986 sha256: 1b34021e815ff89a4d902d879c3bd2040bc1bd6169b32e9427497fa05c55f1ce @@ -8182,7 +8183,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda hash: md5: 75cb7132eb58d97896e173ef12ac9986 sha256: 1b34021e815ff89a4d902d879c3bd2040bc1bd6169b32e9427497fa05c55f1ce @@ -8195,7 +8196,7 @@ package: dependencies: notebook: '>=4.4.1' python: '>=3.7' - url: https://repo.prefix.dev/conda-forge/noarch/widgetsnbextension-3.6.10-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-3.6.10-pyhd8ed1ab_0.conda hash: md5: 4d52bbdb661dc1b5a1c2aeb1afcd9a67 sha256: 6aeb16d2aacdae68ba7afd980925264f5d0459dd165e3406f13f23949df346c1 @@ -8208,7 +8209,7 @@ package: dependencies: notebook: '>=4.4.1' python: '>=3.7' - url: https://repo.prefix.dev/conda-forge/noarch/widgetsnbextension-3.6.10-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-3.6.10-pyhd8ed1ab_0.conda hash: md5: 4d52bbdb661dc1b5a1c2aeb1afcd9a67 sha256: 6aeb16d2aacdae68ba7afd980925264f5d0459dd165e3406f13f23949df346c1 @@ -8221,7 +8222,7 @@ package: dependencies: __win: '' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/win_inet_pton-1.1.0-pyh7428d3b_8.conda + url: https://conda.anaconda.org/conda-forge/noarch/win_inet_pton-1.1.0-pyh7428d3b_8.conda hash: md5: 46e441ba871f524e2b067929da3051c2 sha256: 93807369ab91f230cf9e6e2a237eaa812492fe00face5b38068735858fba954f @@ -8232,7 +8233,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/win-64/winpty-0.4.3-4.tar.bz2 + url: https://conda.anaconda.org/conda-forge/win-64/winpty-0.4.3-4.tar.bz2 hash: md5: 1cee351bf20b830d991dbe0bc8cd7dfe sha256: 9df10c5b607dd30e05ba08cbd940009305c75db242476f4e845ea06008b0a283 @@ -8247,7 +8248,7 @@ package: libgcc: '>=13' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://repo.prefix.dev/conda-forge/linux-64/wrapt-1.17.2-py311h9ecbd09_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/wrapt-1.17.2-py311h9ecbd09_0.conda hash: md5: c4bb961f5a2020837fe3f7f30fadc2e1 sha256: e383de6512e65b5a227e7b0e1a34ffc441484044096a23ca4d3b6eb53a64d261 @@ -8263,7 +8264,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/wrapt-1.17.2-py311he736701_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/wrapt-1.17.2-py311he736701_0.conda hash: md5: 370ad80d8d1a4012e6393873ddbd7d9b sha256: 0cd8f63008d6e24576884461087b0145f388eadc32737b7e6ed57c8e67a2ae85 @@ -8276,7 +8277,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxau-1.0.12-hb9d3cd8_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxau-1.0.12-hb9d3cd8_0.conda hash: md5: f6ebe2cb3f82ba6c057dde5d9debe4f7 sha256: ed10c9283974d311855ae08a16dfd7e56241fac632aec3b92e3cfe73cff31038 @@ -8290,7 +8291,7 @@ package: libgcc: '>=13' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' ucrt: '>=10.0.20348.0' - url: https://repo.prefix.dev/conda-forge/win-64/xorg-libxau-1.0.12-h0e40799_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/xorg-libxau-1.0.12-h0e40799_0.conda hash: md5: 2ffbfae4548098297c033228256eb96e sha256: 047836241b2712aab1e29474a6f728647bff3ab57de2806b0bb0a6cf9a2d2634 @@ -8303,7 +8304,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb9d3cd8_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb9d3cd8_0.conda hash: md5: 8035c64cb77ed555e3f150b7b3972480 sha256: 6b250f3e59db07c2514057944a3ea2044d6a8cdde8a47b6497c254520fade1ee @@ -8317,7 +8318,7 @@ package: libgcc: '>=13' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' ucrt: '>=10.0.20348.0' - url: https://repo.prefix.dev/conda-forge/win-64/xorg-libxdmcp-1.1.5-h0e40799_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/xorg-libxdmcp-1.1.5-h0e40799_0.conda hash: md5: 8393c0f7e7870b4eb45553326f81f0ff sha256: 9075f98dcaa8e9957e4a3d9d30db05c7578a536950a31c200854c5c34e1edb2c @@ -8329,7 +8330,7 @@ package: platform: linux-64 dependencies: python: '>=3.8' - url: https://repo.prefix.dev/conda-forge/noarch/xyzservices-2025.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/xyzservices-2025.4.0-pyhd8ed1ab_0.conda hash: md5: 5663fa346821cd06dc1ece2c2600be2c sha256: ac6d4d4133b1e0f69075158cdf00fccad20e29fc6cc45faa480cec37a84af6ae @@ -8341,7 +8342,7 @@ package: platform: win-64 dependencies: python: '>=3.8' - url: https://repo.prefix.dev/conda-forge/noarch/xyzservices-2025.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/xyzservices-2025.4.0-pyhd8ed1ab_0.conda hash: md5: 5663fa346821cd06dc1ece2c2600be2c sha256: ac6d4d4133b1e0f69075158cdf00fccad20e29fc6cc45faa480cec37a84af6ae @@ -8353,7 +8354,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=9.4.0' - url: https://repo.prefix.dev/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2 + url: https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2 hash: md5: 4cb3ad778ec2d5a7acbdf254eb1c42ae sha256: a4e34c710eeb26945bdbdaba82d3d74f60a78f54a874ec10d373811a5d217535 @@ -8366,7 +8367,7 @@ package: dependencies: vc: '>=14.1,<15.0a0' vs2015_runtime: '>=14.16.27012' - url: https://repo.prefix.dev/conda-forge/win-64/yaml-0.2.5-h8ffe710_2.tar.bz2 + url: https://conda.anaconda.org/conda-forge/win-64/yaml-0.2.5-h8ffe710_2.tar.bz2 hash: md5: adbfb9f45d1004a26763652246a33764 sha256: 4e2246383003acbad9682c7c63178e2e715ad0eb84f03a8df1fbfba455dfedc5 @@ -8382,7 +8383,7 @@ package: numcodecs: '>=0.10.0,<0.16.0a0' numpy: '>=1.7' python: '>=3.5' - url: https://repo.prefix.dev/conda-forge/noarch/zarr-2.14.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/zarr-2.14.2-pyhd8ed1ab_0.conda hash: md5: 0c5776fe65a12a421d7ddf90411a6c3f sha256: 0f029f7efea00b8258782b5e68989fc140c227e6d9edd231d46fdd954b39d23f @@ -8398,7 +8399,7 @@ package: numcodecs: '>=0.10.0,<0.16.0a0' numpy: '>=1.7' python: '>=3.5' - url: https://repo.prefix.dev/conda-forge/noarch/zarr-2.14.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/zarr-2.14.2-pyhd8ed1ab_0.conda hash: md5: 0c5776fe65a12a421d7ddf90411a6c3f sha256: 0f029f7efea00b8258782b5e68989fc140c227e6d9edd231d46fdd954b39d23f @@ -8414,7 +8415,7 @@ package: libgcc: '>=13' libsodium: '>=1.0.20,<1.0.21.0a0' libstdcxx: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/zeromq-4.3.5-h3b0a872_7.conda + url: https://conda.anaconda.org/conda-forge/linux-64/zeromq-4.3.5-h3b0a872_7.conda hash: md5: 3947a35e916fcc6b9825449affbf4214 sha256: a4dc72c96848f764bb5a5176aa93dd1e9b9e52804137b99daeebba277b31ea10 @@ -8430,7 +8431,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/zeromq-4.3.5-ha9f60a1_7.conda + url: https://conda.anaconda.org/conda-forge/win-64/zeromq-4.3.5-ha9f60a1_7.conda hash: md5: e03f2c245a5ee6055752465519363b1c sha256: 15cc8e2162d0a33ffeb3f7b7c7883fd830c54a4b1be6a4b8c7ee1f4fef0088fb @@ -8442,7 +8443,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/zict-3.0.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/zict-3.0.0-pyhd8ed1ab_1.conda hash: md5: e52c2ef711ccf31bb7f70ca87d144b9e sha256: 5488542dceeb9f2874e726646548ecc5608060934d6f9ceaa7c6a48c61f9cc8d @@ -8454,7 +8455,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/zict-3.0.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/zict-3.0.0-pyhd8ed1ab_1.conda hash: md5: e52c2ef711ccf31bb7f70ca87d144b9e sha256: 5488542dceeb9f2874e726646548ecc5608060934d6f9ceaa7c6a48c61f9cc8d @@ -8466,7 +8467,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/zipp-3.23.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.23.0-pyhd8ed1ab_0.conda hash: md5: df5e78d904988eb55042c0c97446079f sha256: 7560d21e1b021fd40b65bfb72f67945a3fcb83d78ad7ccf37b8b3165ec3b68ad @@ -8478,7 +8479,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/zipp-3.23.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.23.0-pyhd8ed1ab_0.conda hash: md5: df5e78d904988eb55042c0c97446079f sha256: 7560d21e1b021fd40b65bfb72f67945a3fcb83d78ad7ccf37b8b3165ec3b68ad @@ -8494,7 +8495,7 @@ package: libgcc: '>=13' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://repo.prefix.dev/conda-forge/linux-64/zstandard-0.23.0-py311h9ecbd09_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/zstandard-0.23.0-py311h9ecbd09_2.conda hash: md5: ca02de88df1cc3cfc8f24766ff50cb3c sha256: 76d28240cc9fa0c3cb2cde750ecaf98716ce397afaf1ce90f8d18f5f43a122f1 @@ -8511,7 +8512,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/zstandard-0.23.0-py311he736701_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/zstandard-0.23.0-py311he736701_2.conda hash: md5: 8355ec073f73581e29adf77c49096aed sha256: aaae40057eac5b5996db4e6b3d8eb00d38455e67571e796135d29702a19736bd @@ -8526,7 +8527,7 @@ package: libgcc: '>=13' libstdcxx: '>=13' libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb8e6e7a_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.7-hb8e6e7a_2.conda hash: md5: 6432cb5d4ac0046c3ac0a8a0f95842f9 sha256: a4166e3d8ff4e35932510aaff7aa90772f84b4d07e9f6f83c614cba7ceefe0eb @@ -8541,7 +8542,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/zstd-1.5.7-hbeecb71_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/zstd-1.5.7-hbeecb71_2.conda hash: md5: 21f56217d6125fb30c3c3f10c786d751 sha256: bc64864377d809b904e877a98d0584f43836c9f2ef27d3d2a1421fa6eae7ca04 @@ -8556,12 +8557,12 @@ package: numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@8d46ccb686e4206683862ec803fc709b26271cd8 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 hash: - sha256: 8d46ccb686e4206683862ec803fc709b26271cd8 + sha256: 91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@8d46ccb686e4206683862ec803fc709b26271cd8 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 category: main optional: false - name: geoapps-utils @@ -8573,12 +8574,12 @@ package: numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@8d46ccb686e4206683862ec803fc709b26271cd8 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 hash: - sha256: 8d46ccb686e4206683862ec803fc709b26271cd8 + sha256: 91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@8d46ccb686e4206683862ec803fc709b26271cd8 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 category: main optional: false - name: geoh5py @@ -8590,12 +8591,12 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@585c89094e3eff35df10d3076964bf154b24d575 + url: git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e hash: - sha256: 585c89094e3eff35df10d3076964bf154b24d575 + sha256: 1190a239fd7406fbe0b73169c3d8406a1aacae3e source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@585c89094e3eff35df10d3076964bf154b24d575 + url: git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e category: main optional: false - name: geoh5py @@ -8607,12 +8608,12 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@585c89094e3eff35df10d3076964bf154b24d575 + url: git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e hash: - sha256: 585c89094e3eff35df10d3076964bf154b24d575 + sha256: 1190a239fd7406fbe0b73169c3d8406a1aacae3e source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@585c89094e3eff35df10d3076964bf154b24d575 + url: git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e category: main optional: false - name: mira-simpeg diff --git a/py-3.12.conda-lock.yml b/py-3.12.conda-lock.yml index 3aa26912..ff044d80 100644 --- a/py-3.12.conda-lock.yml +++ b/py-3.12.conda-lock.yml @@ -35,7 +35,7 @@ package: platform: linux-64 dependencies: llvm-openmp: '>=9.0.1' - url: https://repo.prefix.dev/conda-forge/linux-64/_openmp_mutex-4.5-3_kmp_llvm.conda + url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-3_kmp_llvm.conda hash: md5: ee5c2118262e30b972bc0b4db8ef0ba5 sha256: cec7343e76c9da6a42c7e7cba53391daa6b46155054ef61a5ef522ea27c5a058 @@ -48,7 +48,7 @@ package: dependencies: libgomp: '>=7.5.0' libwinpthread: '>=12.0.0.r2.ggc561118da' - url: https://repo.prefix.dev/conda-forge/win-64/_openmp_mutex-4.5-2_gnu.conda + url: https://conda.anaconda.org/conda-forge/win-64/_openmp_mutex-4.5-2_gnu.conda hash: md5: 37e16618af5c4851a3f3d66dd0e11141 sha256: 1a62cd1f215fe0902e7004089693a78347a30ad687781dfda2289cab000e652d @@ -61,7 +61,7 @@ package: dependencies: pygments: '' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/accessible-pygments-0.0.5-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/accessible-pygments-0.0.5-pyhd8ed1ab_1.conda hash: md5: 74ac5069774cdbc53910ec4d631a3999 sha256: 1307719f0d8ee694fc923579a39c0621c23fdaa14ccdf9278a5aac5665ac58e9 @@ -74,7 +74,7 @@ package: dependencies: pygments: '' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/accessible-pygments-0.0.5-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/accessible-pygments-0.0.5-pyhd8ed1ab_1.conda hash: md5: 74ac5069774cdbc53910ec4d631a3999 sha256: 1307719f0d8ee694fc923579a39c0621c23fdaa14ccdf9278a5aac5665ac58e9 @@ -86,7 +86,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/alabaster-0.7.16-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/alabaster-0.7.16-pyhd8ed1ab_0.conda hash: md5: def531a3ac77b7fb8c21d17bb5d0badb sha256: fd39ad2fabec1569bbb0dfdae34ab6ce7de6ec09dcec8638f83dad0373594069 @@ -98,7 +98,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/alabaster-0.7.16-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/alabaster-0.7.16-pyhd8ed1ab_0.conda hash: md5: def531a3ac77b7fb8c21d17bb5d0badb sha256: fd39ad2fabec1569bbb0dfdae34ab6ce7de6ec09dcec8638f83dad0373594069 @@ -111,7 +111,7 @@ package: dependencies: python: '>=3.9' typing-extensions: '>=4.0.0' - url: https://repo.prefix.dev/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda hash: md5: 2934f256a8acfe48f6ebb4fce6cde29c sha256: e0ea1ba78fbb64f17062601edda82097fcf815012cf52bb704150a2668110d48 @@ -124,7 +124,7 @@ package: dependencies: python: '>=3.9' typing-extensions: '>=4.0.0' - url: https://repo.prefix.dev/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda hash: md5: 2934f256a8acfe48f6ebb4fce6cde29c sha256: e0ea1ba78fbb64f17062601edda82097fcf815012cf52bb704150a2668110d48 @@ -140,7 +140,7 @@ package: python: '>=3.9' sniffio: '>=1.1' typing_extensions: '>=4.5' - url: https://repo.prefix.dev/conda-forge/noarch/anyio-4.9.0-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/anyio-4.9.0-pyh29332c3_0.conda hash: md5: 9749a2c77a7c40d432ea0927662d7e52 sha256: b28e0f78bb0c7962630001e63af25a89224ff504e135a02e50d4d80b6155d386 @@ -156,7 +156,7 @@ package: python: '>=3.9' sniffio: '>=1.1' typing_extensions: '>=4.5' - url: https://repo.prefix.dev/conda-forge/noarch/anyio-4.9.0-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/anyio-4.9.0-pyh29332c3_0.conda hash: md5: 9749a2c77a7c40d432ea0927662d7e52 sha256: b28e0f78bb0c7962630001e63af25a89224ff504e135a02e50d4d80b6155d386 @@ -170,7 +170,7 @@ package: argon2-cffi-bindings: '' python: '>=3.9' typing-extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/argon2-cffi-25.1.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/argon2-cffi-25.1.0-pyhd8ed1ab_0.conda hash: md5: 8ac12aff0860280ee0cff7fa2cf63f3b sha256: bea62005badcb98b1ae1796ec5d70ea0fc9539e7d59708ac4e7d41e2f4bb0bad @@ -184,7 +184,7 @@ package: argon2-cffi-bindings: '' python: '>=3.9' typing-extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/argon2-cffi-25.1.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/argon2-cffi-25.1.0-pyhd8ed1ab_0.conda hash: md5: 8ac12aff0860280ee0cff7fa2cf63f3b sha256: bea62005badcb98b1ae1796ec5d70ea0fc9539e7d59708ac4e7d41e2f4bb0bad @@ -200,7 +200,7 @@ package: libgcc: '>=13' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/argon2-cffi-bindings-21.2.0-py312h66e93f0_5.conda + url: https://conda.anaconda.org/conda-forge/linux-64/argon2-cffi-bindings-21.2.0-py312h66e93f0_5.conda hash: md5: 1505fc57c305c0a3174ea7aae0a0db25 sha256: 3cbc3b026f5c3f26de696ead10607db8d80cbb003d87669ac3b02e884f711978 @@ -217,7 +217,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/argon2-cffi-bindings-21.2.0-py312h4389bb4_5.conda + url: https://conda.anaconda.org/conda-forge/win-64/argon2-cffi-bindings-21.2.0-py312h4389bb4_5.conda hash: md5: 53943e7ecba6b3e3744b292dc3fb4ae2 sha256: 8764a8a9416d90264c7d36526de77240a454d0ee140841db545bdd5825ebd6f1 @@ -231,7 +231,7 @@ package: python: '>=3.9' python-dateutil: '>=2.7.0' types-python-dateutil: '>=2.8.10' - url: https://repo.prefix.dev/conda-forge/noarch/arrow-1.3.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/arrow-1.3.0-pyhd8ed1ab_1.conda hash: md5: 46b53236fdd990271b03c3978d4218a9 sha256: c4b0bdb3d5dee50b60db92f99da3e4c524d5240aafc0a5fcc15e45ae2d1a3cd1 @@ -245,7 +245,7 @@ package: python: '>=3.9' python-dateutil: '>=2.7.0' types-python-dateutil: '>=2.8.10' - url: https://repo.prefix.dev/conda-forge/noarch/arrow-1.3.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/arrow-1.3.0-pyhd8ed1ab_1.conda hash: md5: 46b53236fdd990271b03c3978d4218a9 sha256: c4b0bdb3d5dee50b60db92f99da3e4c524d5240aafc0a5fcc15e45ae2d1a3cd1 @@ -257,7 +257,7 @@ package: platform: linux-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/asciitree-0.3.3-py_2.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/asciitree-0.3.3-py_2.tar.bz2 hash: md5: c0481c9de49f040272556e2cedf42816 sha256: b3e9369529fe7d721b66f18680ff4b561e20dbf6507e209e1f60eac277c97560 @@ -269,7 +269,7 @@ package: platform: win-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/asciitree-0.3.3-py_2.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/asciitree-0.3.3-py_2.tar.bz2 hash: md5: c0481c9de49f040272556e2cedf42816 sha256: b3e9369529fe7d721b66f18680ff4b561e20dbf6507e209e1f60eac277c97560 @@ -282,7 +282,7 @@ package: dependencies: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/astroid-3.3.10-py312h7900ff3_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/astroid-3.3.10-py312h7900ff3_0.conda hash: md5: 60b9f877a7d36f146c30eb6683e4611b sha256: e6f627d1e72fae042e072081b9419db3efeddca29f0bdc5bb2b12ed7d298ff2f @@ -295,7 +295,7 @@ package: dependencies: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/win-64/astroid-3.3.10-py312h2e8e312_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/astroid-3.3.10-py312h2e8e312_0.conda hash: md5: 2a463d7ac649b150470f4f2034e4f048 sha256: 8d060ee8643a76d6774b4a5a53c40d7dc8ae43afd42a34e0424459c75ba12da4 @@ -307,7 +307,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/asttokens-3.0.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/asttokens-3.0.0-pyhd8ed1ab_1.conda hash: md5: 8f587de4bcf981e26228f268df374a9b sha256: 93b14414b3b3ed91e286e1cbe4e7a60c4e1b1c730b0814d1e452a8ac4b9af593 @@ -319,7 +319,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/asttokens-3.0.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/asttokens-3.0.0-pyhd8ed1ab_1.conda hash: md5: 8f587de4bcf981e26228f268df374a9b sha256: 93b14414b3b3ed91e286e1cbe4e7a60c4e1b1c730b0814d1e452a8ac4b9af593 @@ -332,7 +332,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '>=4.0.0' - url: https://repo.prefix.dev/conda-forge/noarch/async-lru-2.0.5-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/async-lru-2.0.5-pyh29332c3_0.conda hash: md5: d9d0f99095a9bb7e3641bca8c6ad2ac7 sha256: 3b7233041e462d9eeb93ea1dfe7b18aca9c358832517072054bb8761df0c324b @@ -345,7 +345,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '>=4.0.0' - url: https://repo.prefix.dev/conda-forge/noarch/async-lru-2.0.5-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/async-lru-2.0.5-pyh29332c3_0.conda hash: md5: d9d0f99095a9bb7e3641bca8c6ad2ac7 sha256: 3b7233041e462d9eeb93ea1dfe7b18aca9c358832517072054bb8761df0c324b @@ -357,7 +357,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/attrs-25.3.0-pyh71513ae_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/attrs-25.3.0-pyh71513ae_0.conda hash: md5: a10d11958cadc13fdb43df75f8b1903f sha256: 99c53ffbcb5dc58084faf18587b215f9ac8ced36bbfb55fa807c00967e419019 @@ -369,7 +369,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/attrs-25.3.0-pyh71513ae_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/attrs-25.3.0-pyh71513ae_0.conda hash: md5: a10d11958cadc13fdb43df75f8b1903f sha256: 99c53ffbcb5dc58084faf18587b215f9ac8ced36bbfb55fa807c00967e419019 @@ -382,7 +382,7 @@ package: dependencies: python: '>=3.9' pytz: '>=2015.7' - url: https://repo.prefix.dev/conda-forge/noarch/babel-2.17.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/babel-2.17.0-pyhd8ed1ab_0.conda hash: md5: 0a01c169f0ab0f91b26e77a3301fbfe4 sha256: 1c656a35800b7f57f7371605bc6507c8d3ad60fbaaec65876fce7f73df1fc8ac @@ -395,7 +395,7 @@ package: dependencies: python: '>=3.9' pytz: '>=2015.7' - url: https://repo.prefix.dev/conda-forge/noarch/babel-2.17.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/babel-2.17.0-pyhd8ed1ab_0.conda hash: md5: 0a01c169f0ab0f91b26e77a3301fbfe4 sha256: 1c656a35800b7f57f7371605bc6507c8d3ad60fbaaec65876fce7f73df1fc8ac @@ -409,7 +409,7 @@ package: python: '>=3.9' soupsieve: '>=1.2' typing-extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/beautifulsoup4-4.13.4-pyha770c72_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.13.4-pyha770c72_0.conda hash: md5: 9f07c4fc992adb2d6c30da7fab3959a7 sha256: ddb0df12fd30b2d36272f5daf6b6251c7625d6a99414d7ea930005bbaecad06d @@ -423,7 +423,7 @@ package: python: '>=3.9' soupsieve: '>=1.2' typing-extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/beautifulsoup4-4.13.4-pyha770c72_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.13.4-pyha770c72_0.conda hash: md5: 9f07c4fc992adb2d6c30da7fab3959a7 sha256: ddb0df12fd30b2d36272f5daf6b6251c7625d6a99414d7ea930005bbaecad06d @@ -436,7 +436,7 @@ package: dependencies: python: '>=3.9' webencodings: '' - url: https://repo.prefix.dev/conda-forge/noarch/bleach-6.2.0-pyh29332c3_4.conda + url: https://conda.anaconda.org/conda-forge/noarch/bleach-6.2.0-pyh29332c3_4.conda hash: md5: f0b4c8e370446ef89797608d60a564b3 sha256: a05971bb80cca50ce9977aad3f7fc053e54ea7d5321523efc7b9a6e12901d3cd @@ -449,7 +449,7 @@ package: dependencies: python: '>=3.9' webencodings: '' - url: https://repo.prefix.dev/conda-forge/noarch/bleach-6.2.0-pyh29332c3_4.conda + url: https://conda.anaconda.org/conda-forge/noarch/bleach-6.2.0-pyh29332c3_4.conda hash: md5: f0b4c8e370446ef89797608d60a564b3 sha256: a05971bb80cca50ce9977aad3f7fc053e54ea7d5321523efc7b9a6e12901d3cd @@ -462,7 +462,7 @@ package: dependencies: bleach: ==6.2.0 tinycss2: '' - url: https://repo.prefix.dev/conda-forge/noarch/bleach-with-css-6.2.0-h82add2a_4.conda + url: https://conda.anaconda.org/conda-forge/noarch/bleach-with-css-6.2.0-h82add2a_4.conda hash: md5: a30e9406c873940383555af4c873220d sha256: 0aba699344275b3972bd751f9403316edea2ceb942db12f9f493b63c74774a46 @@ -475,7 +475,7 @@ package: dependencies: bleach: ==6.2.0 tinycss2: '' - url: https://repo.prefix.dev/conda-forge/noarch/bleach-with-css-6.2.0-h82add2a_4.conda + url: https://conda.anaconda.org/conda-forge/noarch/bleach-with-css-6.2.0-h82add2a_4.conda hash: md5: a30e9406c873940383555af4c873220d sha256: 0aba699344275b3972bd751f9403316edea2ceb942db12f9f493b63c74774a46 @@ -496,7 +496,7 @@ package: pyyaml: '>=3.10' tornado: '>=6.2' xyzservices: '>=2021.09.1' - url: https://repo.prefix.dev/conda-forge/noarch/bokeh-3.6.3-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/bokeh-3.6.3-pyhd8ed1ab_0.conda hash: md5: 606498329a91bd9d5c0439fb2815816f sha256: 6cc6841b1660cd3246890d4f601baf51367526afe6256dfd8a8d9a8f7db651fe @@ -517,7 +517,7 @@ package: pyyaml: '>=3.10' tornado: '>=6.2' xyzservices: '>=2021.09.1' - url: https://repo.prefix.dev/conda-forge/noarch/bokeh-3.6.3-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/bokeh-3.6.3-pyhd8ed1ab_0.conda hash: md5: 606498329a91bd9d5c0439fb2815816f sha256: 6cc6841b1660cd3246890d4f601baf51367526afe6256dfd8a8d9a8f7db651fe @@ -533,7 +533,7 @@ 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_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/brotli-1.1.0-hb9d3cd8_3.conda hash: md5: 5d08a0ac29e6a5a984817584775d4131 sha256: c969baaa5d7a21afb5ed4b8dd830f82b78e425caaa13d717766ed07a61630bec @@ -550,7 +550,7 @@ 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_3.conda + url: https://conda.anaconda.org/conda-forge/win-64/brotli-1.1.0-h2466b09_3.conda hash: md5: c2a23d8a8986c72148c63bdf855ac99a sha256: d57cd6ea705c9d2a8a2721f083de247501337e459f5498726b564cfca138e192 @@ -565,7 +565,7 @@ 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_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/brotli-bin-1.1.0-hb9d3cd8_3.conda hash: md5: 58178ef8ba927229fba6d84abf62c108 sha256: ab74fa8c3d1ca0a055226be89e99d6798c65053e2d2d3c6cb380c574972cd4a7 @@ -581,7 +581,7 @@ 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_3.conda + url: https://conda.anaconda.org/conda-forge/win-64/brotli-bin-1.1.0-h2466b09_3.conda hash: md5: c7c345559c1ac25eede6dccb7b931202 sha256: 85aac1c50a426be6d0cc9fd52480911d752f4082cb78accfdb257243e572c7eb @@ -597,7 +597,7 @@ 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_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.1.0-py312h2ec8cdc_3.conda hash: md5: a32e0c069f6c3dcac635f7b0b0dac67e sha256: dc27c58dc717b456eee2d57d8bc71df3f562ee49368a2351103bc8f1b67da251 @@ -613,7 +613,7 @@ 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_3.conda + url: https://conda.anaconda.org/conda-forge/win-64/brotli-python-1.1.0-py312h275cf98_3.conda hash: md5: a87a39f9eb9fd5f171b13d8c79f7a99a sha256: d5c18a90220853c86f7cc23db62b32b22c6c5fe5d632bc111fc1e467c9fd776f @@ -626,7 +626,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - url: https://repo.prefix.dev/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda + url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda hash: md5: 62ee74e96c5ebb0af99386de58cf9553 sha256: 5ced96500d945fb286c9c838e54fa759aa04a7129c59800f0846b4335cee770d @@ -640,7 +640,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda + url: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda hash: md5: 276e7ffe9ffe39688abc665ef0f45596 sha256: 35a5dad92e88fdd7fc405e864ec239486f4f31eec229e31686e61a140a8e573b @@ -653,34 +653,34 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/c-ares-1.34.5-hb9d3cd8_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.34.5-hb9d3cd8_0.conda hash: md5: f7f0d6cc2dc986d42ac2689ec88192be sha256: f8003bef369f57396593ccd03d08a8e21966157269426f71e943f96e4b579aeb 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://conda.anaconda.org/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://conda.anaconda.org/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 @@ -689,7 +689,7 @@ package: platform: linux-64 dependencies: cached_property: '>=1.5.2,<1.5.3.0a0' - url: https://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 hash: md5: 9b347a7ec10940d3f7941ff6c460b551 sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17 @@ -701,7 +701,7 @@ package: platform: win-64 dependencies: cached_property: '>=1.5.2,<1.5.3.0a0' - url: https://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 hash: md5: 9b347a7ec10940d3f7941ff6c460b551 sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17 @@ -713,7 +713,7 @@ package: platform: linux-64 dependencies: python: '>=3.6' - url: https://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 hash: md5: 576d629e47797577ab0f1b351297ef4a sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7 @@ -725,34 +725,34 @@ package: platform: win-64 dependencies: python: '>=3.6' - url: https://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 hash: md5: 576d629e47797577ab0f1b351297ef4a sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7 category: main optional: false - name: certifi - version: 2025.4.26 + version: 2025.6.15 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.4.26-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/certifi-2025.6.15-pyhd8ed1ab_0.conda hash: - md5: c33eeaaa33f45031be34cda513df39b6 - sha256: 52aa837642fd851b3f7ad3b1f66afc5366d133c1d452323f786b0378a391915c + md5: 781d068df0cc2407d4db0ecfbb29225b + sha256: d71c85835813072cd6d7ce4b24be34215cd90c104785b15a5d58f4cd0cb50778 category: main optional: false - name: certifi - version: 2025.4.26 + version: 2025.6.15 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.4.26-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/certifi-2025.6.15-pyhd8ed1ab_0.conda hash: - md5: c33eeaaa33f45031be34cda513df39b6 - sha256: 52aa837642fd851b3f7ad3b1f66afc5366d133c1d452323f786b0378a391915c + md5: 781d068df0cc2407d4db0ecfbb29225b + sha256: d71c85835813072cd6d7ce4b24be34215cd90c104785b15a5d58f4cd0cb50778 category: main optional: false - name: cffi @@ -766,7 +766,7 @@ package: pycparser: '' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/cffi-1.17.1-py312h06ac9bb_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.17.1-py312h06ac9bb_0.conda hash: md5: a861504bbea4161a9170b85d4d2be840 sha256: cba6ea83c4b0b4f5b5dc59cb19830519b28f95d7ebef7c9c5cf1c14843621457 @@ -783,7 +783,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/cffi-1.17.1-py312h4389bb4_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/cffi-1.17.1-py312h4389bb4_0.conda hash: md5: 08310c1a22ef957d537e547f8d484f92 sha256: ac007bf5fd56d13e16d95eea036433012f2e079dc015505c8a79efebbad1fcbc @@ -795,7 +795,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.2-pyhd8ed1ab_0.conda hash: md5: 40fe4284b8b5835a9073a645139f35af sha256: 535ae5dcda8022e31c6dc063eb344c80804c537a5a04afba43a845fa6fa130f5 @@ -807,7 +807,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.2-pyhd8ed1ab_0.conda hash: md5: 40fe4284b8b5835a9073a645139f35af sha256: 535ae5dcda8022e31c6dc063eb344c80804c537a5a04afba43a845fa6fa130f5 @@ -820,7 +820,7 @@ package: dependencies: __unix: '' python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/click-8.2.1-pyh707e725_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/click-8.2.1-pyh707e725_0.conda hash: md5: 94b550b8d3a614dbd326af798c7dfb40 sha256: 8aee789c82d8fdd997840c952a586db63c6890b00e88c4fb6e80a38edd5f51c0 @@ -834,7 +834,7 @@ package: __win: '' colorama: '' python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/click-8.2.1-pyh7428d3b_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/click-8.2.1-pyh7428d3b_0.conda hash: md5: 3a59475037bc09da916e4062c5cad771 sha256: 20c2d8ea3d800485245b586a28985cba281dd6761113a49d7576f6db92a0a891 @@ -846,7 +846,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/cloudpickle-3.1.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/cloudpickle-3.1.1-pyhd8ed1ab_0.conda hash: md5: 364ba6c9fb03886ac979b482f39ebb92 sha256: 21ecead7268241007bf65691610cd7314da68c1f88113092af690203b5780db5 @@ -858,7 +858,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/cloudpickle-3.1.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/cloudpickle-3.1.1-pyhd8ed1ab_0.conda hash: md5: 364ba6c9fb03886ac979b482f39ebb92 sha256: 21ecead7268241007bf65691610cd7314da68c1f88113092af690203b5780db5 @@ -870,7 +870,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda hash: md5: 962b9857ee8e7018c22f2776ffa0b2d7 sha256: ab29d57dc70786c1269633ba3dff20288b81664d3ff8d21af995742e2bb03287 @@ -882,7 +882,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda hash: md5: 962b9857ee8e7018c22f2776ffa0b2d7 sha256: ab29d57dc70786c1269633ba3dff20288b81664d3ff8d21af995742e2bb03287 @@ -895,7 +895,7 @@ package: dependencies: python: '>=3.9' traitlets: '>=5.3' - url: https://repo.prefix.dev/conda-forge/noarch/comm-0.2.2-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/comm-0.2.2-pyhd8ed1ab_1.conda hash: md5: 74673132601ec2b7fc592755605f4c1b sha256: 7e87ef7c91574d9fac19faedaaee328a70f718c9b4ddadfdc0ba9ac021bd64af @@ -908,7 +908,7 @@ package: dependencies: python: '>=3.9' traitlets: '>=5.3' - url: https://repo.prefix.dev/conda-forge/noarch/comm-0.2.2-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/comm-0.2.2-pyhd8ed1ab_1.conda hash: md5: 74673132601ec2b7fc592755605f4c1b sha256: 7e87ef7c91574d9fac19faedaaee328a70f718c9b4ddadfdc0ba9ac021bd64af @@ -925,7 +925,7 @@ package: numpy: '>=1.23' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/contourpy-1.3.2-py312h68727a3_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/contourpy-1.3.2-py312h68727a3_0.conda hash: md5: e688276449452cdfe9f8f5d3e74c23f6 sha256: 4c8f2aa34aa031229e6f8aa18f146bce7987e26eae9c6503053722a8695ebf0c @@ -942,14 +942,14 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/contourpy-1.3.2-py312hd5eb7cc_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/contourpy-1.3.2-py312hd5eb7cc_0.conda hash: md5: bfcbb98aff376f62298f0801ca9bcfc3 sha256: 9b552bcab6c1e3a364cbc010bdef3d26831c90984b7d0852a1dd70659d9cf84a category: main optional: false - name: coverage - version: 7.8.2 + version: 7.9.1 manager: conda platform: linux-64 dependencies: @@ -958,14 +958,14 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* tomli: '' - url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.8.2-py312h178313f_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/coverage-7.9.1-py312h178313f_0.conda hash: - md5: 141e4480d38281c3988f3a9aa917b07d - sha256: 29d1b0ff196f8cb9c65d9ce4a355c3b1037698b5a0f4cc4590472ed38de182c3 + md5: 4c18b79fa2a3371557ed3663876e5dcc + sha256: bef32c5830b7701705660ef18d5d6ad7c597ebab196954c012e8a1cb4af0d3bc category: dev optional: true - name: coverage - version: 7.8.2 + version: 7.9.1 manager: conda platform: win-64 dependencies: @@ -975,10 +975,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.8.2-py312h31fea79_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/coverage-7.9.1-py312h31fea79_0.conda hash: - md5: 746283c1e8a793b7322b52514111456c - sha256: ccf00edc1b8f4f1c224f81a4a598d2e89f97c063ff3ffd8e0dc8b9f7213db6db + md5: 05437668629deb7fdb7af513d43249c0 + sha256: d8a7874de0cd78242cd24b592c41ca2fab7898eedf3b6aa9e7243027ee9aed22 category: dev optional: true - name: cpython @@ -988,7 +988,7 @@ package: dependencies: python: '>=3.12,<3.13.0a0' python_abi: '*' - url: https://repo.prefix.dev/conda-forge/noarch/cpython-3.12.11-py312hd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/cpython-3.12.11-py312hd8ed1ab_0.conda hash: md5: e5279009e7a7f7edd3cd2880c502b3cc sha256: 7e7bc8e73a2f3736444a8564cbece7216464c00f0bc38e604b0c792ff60d621a @@ -1000,7 +1000,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda hash: md5: 44600c4667a319d67dbe0681fc0bc833 sha256: 9827efa891e507a91a8a2acf64e210d2aff394e1cde432ad08e1f8c66b12293c @@ -1012,7 +1012,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda hash: md5: 44600c4667a319d67dbe0681fc0bc833 sha256: 9827efa891e507a91a8a2acf64e210d2aff394e1cde432ad08e1f8c66b12293c @@ -1028,7 +1028,7 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* toolz: '>=0.10.0' - url: https://repo.prefix.dev/conda-forge/linux-64/cytoolz-1.0.1-py312h66e93f0_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/cytoolz-1.0.1-py312h66e93f0_0.conda hash: md5: 6198b134b1c08173f33653896974d477 sha256: 63a64d4e71148c4efd8db17b4a19b8965990d1e08ed2e24b84bc36b6c166a705 @@ -1045,7 +1045,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/cytoolz-1.0.1-py312h4389bb4_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/cytoolz-1.0.1-py312h4389bb4_0.conda hash: md5: fba0567971249f5d0cce4d35b1184c75 sha256: e657e468fdae72302951bba92f94bcb31566a237e5f979a7dd205603a0750b59 @@ -1065,7 +1065,7 @@ package: python: '>=3.10' pyyaml: '>=5.3.1' toolz: '>=0.10.0' - url: https://repo.prefix.dev/conda-forge/noarch/dask-core-2025.3.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/dask-core-2025.3.0-pyhd8ed1ab_0.conda hash: md5: 36f6cc22457e3d6a6051c5370832f96c sha256: 72badd945d856d2928fdbe051f136f903bcfee8136f1526c8362c6c465b793ec @@ -1085,7 +1085,7 @@ package: python: '>=3.10' pyyaml: '>=5.3.1' toolz: '>=0.10.0' - url: https://repo.prefix.dev/conda-forge/noarch/dask-core-2025.3.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/dask-core-2025.3.0-pyhd8ed1ab_0.conda hash: md5: 36f6cc22457e3d6a6051c5370832f96c sha256: 72badd945d856d2928fdbe051f136f903bcfee8136f1526c8362c6c465b793ec @@ -1097,7 +1097,7 @@ package: platform: linux-64 dependencies: python: '>=3.7' - url: https://repo.prefix.dev/conda-forge/noarch/dataclasses-0.8-pyhc8e2a94_3.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/dataclasses-0.8-pyhc8e2a94_3.tar.bz2 hash: md5: a362b2124b06aad102e2ee4581acee7d sha256: 63a83e62e0939bc1ab32de4ec736f6403084198c4639638b354a352113809c92 @@ -1109,7 +1109,7 @@ package: platform: win-64 dependencies: python: '>=3.7' - url: https://repo.prefix.dev/conda-forge/noarch/dataclasses-0.8-pyhc8e2a94_3.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/dataclasses-0.8-pyhc8e2a94_3.tar.bz2 hash: md5: a362b2124b06aad102e2ee4581acee7d sha256: 63a83e62e0939bc1ab32de4ec736f6403084198c4639638b354a352113809c92 @@ -1125,7 +1125,7 @@ package: libstdcxx: '>=13' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/debugpy-1.8.14-py312h2ec8cdc_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/debugpy-1.8.14-py312h2ec8cdc_0.conda hash: md5: 089cf3a3becf0e2f403feaf16e921678 sha256: 8f0b338687f79ea87324f067bedddd2168f07b8eec234f0fe63b522344c6a919 @@ -1141,7 +1141,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/debugpy-1.8.14-py312h275cf98_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/debugpy-1.8.14-py312h275cf98_0.conda hash: md5: 331737db69ae5431acb6ef3e198ec623 sha256: 02ceea9c12eaaf29c7c40142e4789b77c5c98aa477bdfca1db3ae97440b9e2fe @@ -1153,7 +1153,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/decorator-5.2.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/decorator-5.2.1-pyhd8ed1ab_0.conda hash: md5: 9ce473d1d1be1cc3810856a48b3fab32 sha256: c17c6b9937c08ad63cb20a26f403a3234088e57d4455600974a0ce865cb14017 @@ -1165,7 +1165,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/decorator-5.2.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/decorator-5.2.1-pyhd8ed1ab_0.conda hash: md5: 9ce473d1d1be1cc3810856a48b3fab32 sha256: c17c6b9937c08ad63cb20a26f403a3234088e57d4455600974a0ce865cb14017 @@ -1177,7 +1177,7 @@ package: platform: linux-64 dependencies: python: '>=3.6' - url: https://repo.prefix.dev/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2 hash: md5: 961b3a227b437d82ad7054484cfa71b2 sha256: 9717a059677553562a8f38ff07f3b9f61727bd614f505658b0a5ecbcf8df89be @@ -1189,7 +1189,7 @@ package: platform: win-64 dependencies: python: '>=3.6' - url: https://repo.prefix.dev/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2 hash: md5: 961b3a227b437d82ad7054484cfa71b2 sha256: 9717a059677553562a8f38ff07f3b9f61727bd614f505658b0a5ecbcf8df89be @@ -1202,7 +1202,7 @@ package: dependencies: python: '>=3.9' wrapt: <2,>=1.10 - url: https://repo.prefix.dev/conda-forge/noarch/deprecated-1.2.18-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.18-pyhd8ed1ab_0.conda hash: md5: 0cef44b1754ae4d6924ac0eef6b9fdbe sha256: d614bcff10696f1efc714df07651b50bf3808401fcc03814309ecec242cc8870 @@ -1215,7 +1215,7 @@ package: dependencies: python: '>=3.9' wrapt: <2,>=1.10 - url: https://repo.prefix.dev/conda-forge/noarch/deprecated-1.2.18-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.18-pyhd8ed1ab_0.conda hash: md5: 0cef44b1754ae4d6924ac0eef6b9fdbe sha256: d614bcff10696f1efc714df07651b50bf3808401fcc03814309ecec242cc8870 @@ -1227,7 +1227,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda hash: md5: 885745570573eb6a08e021841928297a sha256: 43dca52c96fde0c4845aaff02bcc92f25e1c2e5266ddefc2eac1a3de0960a3b1 @@ -1239,7 +1239,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda hash: md5: 885745570573eb6a08e021841928297a sha256: 43dca52c96fde0c4845aaff02bcc92f25e1c2e5266ddefc2eac1a3de0960a3b1 @@ -1257,7 +1257,7 @@ 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.3-py312hc39e661_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/discretize-0.11.3-py312hc39e661_0.conda hash: md5: f4156fbef76257cc385c0ad71444079c sha256: ff530b6e50d2b9bc8f60f7261987abccc97afe868b35b70479a47f0edd3fe2bb @@ -1275,7 +1275,7 @@ 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.3-py312hbaa7e33_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/discretize-0.11.3-py312hbaa7e33_0.conda hash: md5: 95022b30369053ba80ed47dc00ebc0e3 sha256: 61a69ffd1484d45d4adf21d1bb4b13e3cf65a74570b7694563ff45376ee9d222 @@ -1303,7 +1303,7 @@ package: tornado: '>=6.2.0' urllib3: '>=1.26.5' zict: '>=3.0.0' - url: https://repo.prefix.dev/conda-forge/noarch/distributed-2025.3.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/distributed-2025.3.0-pyhd8ed1ab_0.conda hash: md5: 968a7a4ff98bcfb515b0f1c94d35553f sha256: ea055aeda774d03ec96e0901ec119c6d3dc21ddd50af166bec664a76efd5f82a @@ -1331,7 +1331,7 @@ package: tornado: '>=6.2.0' urllib3: '>=1.26.5' zict: '>=3.0.0' - url: https://repo.prefix.dev/conda-forge/noarch/distributed-2025.3.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/distributed-2025.3.0-pyhd8ed1ab_0.conda hash: md5: 968a7a4ff98bcfb515b0f1c94d35553f sha256: ea055aeda774d03ec96e0901ec119c6d3dc21ddd50af166bec664a76efd5f82a @@ -1344,7 +1344,7 @@ package: dependencies: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/docutils-0.18.1-py312h7900ff3_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/docutils-0.18.1-py312h7900ff3_0.conda hash: md5: b741a9f139d1ffd43cbb5da54252dae7 sha256: 27088b406250e0189f271ed795ee929e3030a29ae67acbbf193d0e82ca7f210a @@ -1357,7 +1357,7 @@ package: dependencies: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/win-64/docutils-0.18.1-py312h2e8e312_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/docutils-0.18.1-py312h2e8e312_0.conda hash: md5: 3bcf1239777952b112ef26f2b8e4d5a7 sha256: 7638c8adbd1ef73bb3f9ef2df24d03464b5c9622bac4816581ca365ee96718ce @@ -1370,7 +1370,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '>=4.6.0' - url: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda hash: md5: 72e42d28960d875c7654614f8b50939a sha256: ce61f4f99401a4bd455b89909153b40b9c823276aefcbb06f2044618696009ca @@ -1383,7 +1383,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '>=4.6.0' - url: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda hash: md5: 72e42d28960d875c7654614f8b50939a sha256: ce61f4f99401a4bd455b89909153b40b9c823276aefcbb06f2044618696009ca @@ -1395,7 +1395,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/executing-2.2.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/executing-2.2.0-pyhd8ed1ab_0.conda hash: md5: 81d30c08f9a3e556e8ca9e124b044d14 sha256: 7510dd93b9848c6257c43fdf9ad22adf62e7aa6da5f12a6a757aed83bcfedf05 @@ -1407,7 +1407,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/executing-2.2.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/executing-2.2.0-pyhd8ed1ab_0.conda hash: md5: 81d30c08f9a3e556e8ca9e124b044d14 sha256: 7510dd93b9848c6257c43fdf9ad22adf62e7aa6da5f12a6a757aed83bcfedf05 @@ -1419,7 +1419,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/fasteners-0.19-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/fasteners-0.19-pyhd8ed1ab_1.conda hash: md5: dbe9d42e94b5ff7af7b7893f4ce052e7 sha256: 42fb170778b47303e82eddfea9a6d1e1b8af00c927cd5a34595eaa882b903a16 @@ -1431,14 +1431,14 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/fasteners-0.19-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/fasteners-0.19-pyhd8ed1ab_1.conda hash: md5: dbe9d42e94b5ff7af7b7893f4ce052e7 sha256: 42fb170778b47303e82eddfea9a6d1e1b8af00c927cd5a34595eaa882b903a16 category: main optional: false - name: fonttools - version: 4.58.2 + version: 4.58.4 manager: conda platform: linux-64 dependencies: @@ -1449,14 +1449,14 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* unicodedata2: '>=15.1.0' - url: https://repo.prefix.dev/conda-forge/linux-64/fonttools-4.58.2-py312h178313f_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/fonttools-4.58.4-py312h178313f_0.conda hash: - md5: 286068e5706fa6eacce413a594cf0d4b - sha256: aa2dbfcc173c1fe4e0e1c54ff07e98f36edfc6bbbd7e49ea9ff60541d37e648d + md5: 223a4616e3db7336569eafefac04ebbf + sha256: aa29952ac29ab4c4dad091794513241c1f732c55c58ba109f02550bc83081dc9 category: main optional: false - name: fonttools - version: 4.58.2 + version: 4.58.4 manager: conda platform: win-64 dependencies: @@ -1468,10 +1468,10 @@ package: unicodedata2: '>=15.1.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/fonttools-4.58.2-py312h31fea79_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/fonttools-4.58.4-py312h31fea79_0.conda hash: - md5: 300dfab2dac1c966c6fc52c2ee442287 - sha256: a314886c4a0baaf00526ded33104fd09fd7044393395f24fd33696beee601c4d + md5: ea00f492c19ac1799f510617ef502e0e + sha256: 4d3d830517f29e43e87e7f6998fd63c64a9bab504ee4441ab7c86ef49af3cb6b category: main optional: false - name: fqdn @@ -1481,7 +1481,7 @@ package: dependencies: cached-property: '>=1.3.0' python: '>=3.9,<4' - url: https://repo.prefix.dev/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_1.conda hash: md5: d3549fd50d450b6d9e7dddff25dd2110 sha256: 2509992ec2fd38ab27c7cdb42cf6cadc566a1cc0d1021a2673475d9fa87c6276 @@ -1494,7 +1494,7 @@ package: dependencies: cached-property: '>=1.3.0' python: '>=3.9,<4' - url: https://repo.prefix.dev/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_1.conda hash: md5: d3549fd50d450b6d9e7dddff25dd2110 sha256: 2509992ec2fd38ab27c7cdb42cf6cadc566a1cc0d1021a2673475d9fa87c6276 @@ -1507,7 +1507,7 @@ package: dependencies: libfreetype: 2.13.3 libfreetype6: 2.13.3 - url: https://repo.prefix.dev/conda-forge/linux-64/freetype-2.13.3-ha770c72_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/freetype-2.13.3-ha770c72_1.conda hash: md5: 9ccd736d31e0c6e41f54e704e5312811 sha256: 7ef7d477c43c12a5b4cddcf048a83277414512d1116aba62ebadfa7056a7d84f @@ -1520,7 +1520,7 @@ package: dependencies: libfreetype: 2.13.3 libfreetype6: 2.13.3 - url: https://repo.prefix.dev/conda-forge/win-64/freetype-2.13.3-h57928b3_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/freetype-2.13.3-h57928b3_1.conda hash: md5: 633504fe3f96031192e40e3e6c18ef06 sha256: 0bcc9c868d769247c12324f957c97c4dbee7e4095485db90d9c295bcb3b1bb43 @@ -1532,7 +1532,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2025.5.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/fsspec-2025.5.1-pyhd8ed1ab_0.conda hash: md5: 2d2c9ef879a7e64e2dc657b09272c2b6 sha256: cd6ae92ae5aa91a7e58cf39f1442d4821279f43f1c9499d15f45558d4793d1e0 @@ -1544,7 +1544,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2025.5.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/fsspec-2025.5.1-pyhd8ed1ab_0.conda hash: md5: 2d2c9ef879a7e64e2dc657b09272c2b6 sha256: cd6ae92ae5aa91a7e58cf39f1442d4821279f43f1c9499d15f45558d4793d1e0 @@ -1563,7 +1563,7 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* scipy: '>=1.8' - url: https://repo.prefix.dev/conda-forge/linux-64/geoana-0.7.2-py312hc39e661_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/geoana-0.7.2-py312hc39e661_0.conda hash: md5: 20497b2b58fd4525c178cf642eb6d51d sha256: 492ac87e5e108352ec452b11d7a1158b22913b151e6da576099f8db1ecc262b6 @@ -1582,7 +1582,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/geoana-0.7.2-py312hbaa7e33_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/geoana-0.7.2-py312hbaa7e33_0.conda hash: md5: 734e9c4267b48bd5fd1f491868994e52 sha256: 686b9a107e080169f3e097923932764d65d5ad075acc06104080311211639eaa @@ -1598,7 +1598,7 @@ package: libstdcxx: '>=13' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/greenlet-3.2.3-py312h2ec8cdc_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/greenlet-3.2.3-py312h2ec8cdc_0.conda hash: md5: 78380a74e2375eb8244290e181b2738b sha256: 99a0e1937ba0a6ec31802d7d732270873ee39f5ad9235626d21dc0edcb3840b6 @@ -1614,7 +1614,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/greenlet-3.2.3-py312h275cf98_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/greenlet-3.2.3-py312h275cf98_0.conda hash: md5: 0697d4cc1f64299d43f26dbdfc2c6ee1 sha256: dc86c99941221b6c056407934a46de85fddc8ef1d4c1d031f8819d8f957f61c9 @@ -1627,7 +1627,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/h11-0.16.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/h11-0.16.0-pyhd8ed1ab_0.conda hash: md5: 4b69232755285701bc86a5afe4d9933a sha256: f64b68148c478c3bfc8f8d519541de7d2616bf59d44485a5271041d40c061887 @@ -1640,7 +1640,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/h11-0.16.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/h11-0.16.0-pyhd8ed1ab_0.conda hash: md5: 4b69232755285701bc86a5afe4d9933a sha256: f64b68148c478c3bfc8f8d519541de7d2616bf59d44485a5271041d40c061887 @@ -1654,7 +1654,7 @@ package: hpack: '>=4.1,<5' hyperframe: '>=6.1,<7' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda hash: md5: b4754fb1bdcb70c8fd54f918301582c6 sha256: 0aa1cdc67a9fe75ea95b5644b734a756200d6ec9d0dff66530aec3d1c1e9df75 @@ -1668,7 +1668,7 @@ package: hpack: '>=4.1,<5' hyperframe: '>=6.1,<7' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda hash: md5: b4754fb1bdcb70c8fd54f918301582c6 sha256: 0aa1cdc67a9fe75ea95b5644b734a756200d6ec9d0dff66530aec3d1c1e9df75 @@ -1686,7 +1686,7 @@ package: 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.14.0-nompi_py312h3faca00_100.conda + url: https://conda.anaconda.org/conda-forge/linux-64/h5py-3.14.0-nompi_py312h3faca00_100.conda hash: md5: 2e1c2a9e706c74c4dd6f990a680f3f90 sha256: 9d23b72ee1138e14d379bb4c415cfdfc6944824e1844ff16ebf44e0defd1eddc @@ -1705,7 +1705,7 @@ package: 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.14.0-nompi_py312h6cc2a29_100.conda + url: https://conda.anaconda.org/conda-forge/win-64/h5py-3.14.0-nompi_py312h6cc2a29_100.conda hash: md5: 7505235f79c9deb9e69fba7cca1a7c97 sha256: 836d84ebf958e74a154406e785b32c973eaad12163f1b7dae2c0448626acea9c @@ -1725,7 +1725,7 @@ package: libstdcxx: '>=13' libzlib: '>=1.3.1,<2.0a0' openssl: '>=3.5.0,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/hdf5-1.14.6-nompi_h2d575fe_101.conda + url: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.6-nompi_h2d575fe_101.conda hash: md5: d1f61f912e1968a8ac9834b62fde008d sha256: b685b9d68e927f446bead1458c0fbf5ac02e6a471ed7606de427605ac647e8d3 @@ -1743,7 +1743,7 @@ package: 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.6-nompi_hd5d9e70_101.conda + url: https://conda.anaconda.org/conda-forge/win-64/hdf5-1.14.6-nompi_hd5d9e70_101.conda hash: md5: ea68eb3a15c51875468475c2647a2d23 sha256: 64d0ed35edefab9a912084f2806b9c4c4ffe2adcf5225a583088abbaafe5dbae @@ -1755,7 +1755,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda hash: md5: 0a802cb9888dd14eeefc611f05c40b6e sha256: 6ad78a180576c706aabeb5b4c8ceb97c0cb25f1e112d76495bff23e3779948ba @@ -1767,7 +1767,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda hash: md5: 0a802cb9888dd14eeefc611f05c40b6e sha256: 6ad78a180576c706aabeb5b4c8ceb97c0cb25f1e112d76495bff23e3779948ba @@ -1784,7 +1784,7 @@ package: h2: '>=3,<5' python: '>=3.9' sniffio: 1.* - url: https://repo.prefix.dev/conda-forge/noarch/httpcore-1.0.9-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.9-pyh29332c3_0.conda hash: md5: 4f14640d58e2cc0aa0819d9d8ba125bb sha256: 04d49cb3c42714ce533a8553986e1642d0549a05dc5cc48e0d43ff5be6679a5b @@ -1801,7 +1801,7 @@ package: h2: '>=3,<5' python: '>=3.9' sniffio: 1.* - url: https://repo.prefix.dev/conda-forge/noarch/httpcore-1.0.9-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.9-pyh29332c3_0.conda hash: md5: 4f14640d58e2cc0aa0819d9d8ba125bb sha256: 04d49cb3c42714ce533a8553986e1642d0549a05dc5cc48e0d43ff5be6679a5b @@ -1817,7 +1817,7 @@ package: httpcore: 1.* idna: '' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/httpx-0.28.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/httpx-0.28.1-pyhd8ed1ab_0.conda hash: md5: d6989ead454181f4f9bc987d3dc4e285 sha256: cd0f1de3697b252df95f98383e9edb1d00386bfdd03fdf607fa42fe5fcb09950 @@ -1833,7 +1833,7 @@ package: httpcore: 1.* idna: '' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/httpx-0.28.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/httpx-0.28.1-pyhd8ed1ab_0.conda hash: md5: d6989ead454181f4f9bc987d3dc4e285 sha256: cd0f1de3697b252df95f98383e9edb1d00386bfdd03fdf607fa42fe5fcb09950 @@ -1845,7 +1845,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda hash: md5: 8e6923fc12f1fe8f8c4e5c9f343256ac sha256: 77af6f5fe8b62ca07d09ac60127a30d9069fdc3c68d6b256754d0ffb1f7779f8 @@ -1857,7 +1857,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda hash: md5: 8e6923fc12f1fe8f8c4e5c9f343256ac sha256: 77af6f5fe8b62ca07d09ac60127a30d9069fdc3c68d6b256754d0ffb1f7779f8 @@ -1871,7 +1871,7 @@ package: __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 + url: https://conda.anaconda.org/conda-forge/linux-64/icu-75.1-he02047a_0.conda hash: md5: 8b189310083baabfb622af68fd9d3ae3 sha256: 71e750d509f5fa3421087ba88ef9a7b9be11c53174af3aa4d06aff4c18b38e8e @@ -1883,7 +1883,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda hash: md5: 39a4f67be3286c86d696df570b1201b7 sha256: d7a472c9fd479e2e8dcb83fb8d433fce971ea369d704ece380e876f9c3494e87 @@ -1895,7 +1895,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda hash: md5: 39a4f67be3286c86d696df570b1201b7 sha256: d7a472c9fd479e2e8dcb83fb8d433fce971ea369d704ece380e876f9c3494e87 @@ -1907,7 +1907,7 @@ package: platform: linux-64 dependencies: python: '>=3.4' - url: https://repo.prefix.dev/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2 hash: md5: 7de5386c8fea29e76b303f37dde4c352 sha256: c2bfd7043e0c4c12d8b5593de666c1e81d67b83c474a0a79282cc5c4ef845460 @@ -1919,7 +1919,7 @@ package: platform: win-64 dependencies: python: '>=3.4' - url: https://repo.prefix.dev/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2 hash: md5: 7de5386c8fea29e76b303f37dde4c352 sha256: c2bfd7043e0c4c12d8b5593de666c1e81d67b83c474a0a79282cc5c4ef845460 @@ -1932,7 +1932,7 @@ package: dependencies: python: '>=3.9' zipp: '>=3.20' - url: https://repo.prefix.dev/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda hash: md5: 63ccfdc3a3ce25b027b8767eb722fca8 sha256: c18ab120a0613ada4391b15981d86ff777b5690ca461ea7e9e49531e8f374745 @@ -1945,7 +1945,7 @@ package: dependencies: python: '>=3.9' zipp: '>=3.20' - url: https://repo.prefix.dev/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda hash: md5: 63ccfdc3a3ce25b027b8767eb722fca8 sha256: c18ab120a0613ada4391b15981d86ff777b5690ca461ea7e9e49531e8f374745 @@ -1957,7 +1957,7 @@ package: platform: linux-64 dependencies: importlib-metadata: ==8.7.0 - url: https://repo.prefix.dev/conda-forge/noarch/importlib_metadata-8.7.0-h40b2b14_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-8.7.0-h40b2b14_1.conda hash: md5: 8a77895fb29728b736a1a6c75906ea1a sha256: 46b11943767eece9df0dc9fba787996e4f22cc4c067f5e264969cfdfcb982c39 @@ -1969,7 +1969,7 @@ package: platform: win-64 dependencies: importlib-metadata: ==8.7.0 - url: https://repo.prefix.dev/conda-forge/noarch/importlib_metadata-8.7.0-h40b2b14_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-8.7.0-h40b2b14_1.conda hash: md5: 8a77895fb29728b736a1a6c75906ea1a sha256: 46b11943767eece9df0dc9fba787996e4f22cc4c067f5e264969cfdfcb982c39 @@ -1982,7 +1982,7 @@ package: dependencies: python: '>=3.9' zipp: '>=3.1.0' - url: https://repo.prefix.dev/conda-forge/noarch/importlib_resources-6.5.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.5.2-pyhd8ed1ab_0.conda hash: md5: c85c76dc67d75619a92f51dfbce06992 sha256: acc1d991837c0afb67c75b77fdc72b4bf022aac71fedd8b9ea45918ac9b08a80 @@ -1995,7 +1995,7 @@ package: dependencies: python: '>=3.9' zipp: '>=3.1.0' - url: https://repo.prefix.dev/conda-forge/noarch/importlib_resources-6.5.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.5.2-pyhd8ed1ab_0.conda hash: md5: c85c76dc67d75619a92f51dfbce06992 sha256: acc1d991837c0afb67c75b77fdc72b4bf022aac71fedd8b9ea45918ac9b08a80 @@ -2007,7 +2007,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda hash: md5: 6837f3eff7dcea42ecd714ce1ac2b108 sha256: 0ec8f4d02053cd03b0f3e63168316530949484f80e16f5e2fb199a1d117a89ca @@ -2019,7 +2019,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda hash: md5: 6837f3eff7dcea42ecd714ce1ac2b108 sha256: 0ec8f4d02053cd03b0f3e63168316530949484f80e16f5e2fb199a1d117a89ca @@ -2030,7 +2030,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/win-64/intel-openmp-2024.2.1-h57928b3_1083.conda + url: https://conda.anaconda.org/conda-forge/win-64/intel-openmp-2024.2.1-h57928b3_1083.conda hash: md5: 2d89243bfb53652c182a7c73182cce4f sha256: 0fd2b0b84c854029041b0ede8f4c2369242ee92acc0092f8407b1fe9238a8209 @@ -2055,7 +2055,7 @@ package: pyzmq: '>=24' tornado: '>=6.1' traitlets: '>=5.4.0' - url: https://repo.prefix.dev/conda-forge/noarch/ipykernel-6.29.5-pyh3099207_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.29.5-pyh3099207_0.conda hash: md5: b40131ab6a36ac2c09b7c57d4d3fbf99 sha256: 33cfd339bb4efac56edf93474b37ddc049e08b1b4930cf036c893cc1f5a1f32a @@ -2080,7 +2080,7 @@ package: pyzmq: '>=24' tornado: '>=6.1' traitlets: '>=5.4.0' - url: https://repo.prefix.dev/conda-forge/noarch/ipykernel-6.29.5-pyh4bbf305_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.29.5-pyh4bbf305_0.conda hash: md5: 18df5fc4944a679e085e0e8f31775fc8 sha256: dc569094125127c0078aa536f78733f383dd7e09507277ef8bcd1789786e7086 @@ -2105,7 +2105,7 @@ package: stack_data: '' traitlets: '>=5.13.0' typing_extensions: '>=4.6' - url: https://repo.prefix.dev/conda-forge/noarch/ipython-9.3.0-pyhfa0c392_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/ipython-9.3.0-pyhfa0c392_0.conda hash: md5: 270dbfb30fe759b39ce0c9fdbcd7be10 sha256: ee5d526cba0c0a5981cbcbcadc37a76d257627a904ed2cd2db45821735c93ebd @@ -2130,7 +2130,7 @@ package: stack_data: '' traitlets: '>=5.13.0' typing_extensions: '>=4.6' - url: https://repo.prefix.dev/conda-forge/noarch/ipython-9.3.0-pyh6be1c34_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/ipython-9.3.0-pyh6be1c34_0.conda hash: md5: 73e4ba4c8247f744be670f4da4f132e2 sha256: b6189de4e9f3d007a11e6e1df023c2bb73cf1864f63ca154c5ff8f0cdf601a50 @@ -2142,7 +2142,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/ipython_genutils-0.2.0-pyhd8ed1ab_2.conda + url: https://conda.anaconda.org/conda-forge/noarch/ipython_genutils-0.2.0-pyhd8ed1ab_2.conda hash: md5: 2f0ba4bc12af346bc6c99bdc377e8944 sha256: 45821a8986b4cb2421f766b240dbe6998a3c3123f012dd566720c1322e9b6e18 @@ -2154,7 +2154,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/ipython_genutils-0.2.0-pyhd8ed1ab_2.conda + url: https://conda.anaconda.org/conda-forge/noarch/ipython_genutils-0.2.0-pyhd8ed1ab_2.conda hash: md5: 2f0ba4bc12af346bc6c99bdc377e8944 sha256: 45821a8986b4cb2421f766b240dbe6998a3c3123f012dd566720c1322e9b6e18 @@ -2167,7 +2167,7 @@ package: dependencies: pygments: '' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/ipython_pygments_lexers-1.1.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/ipython_pygments_lexers-1.1.1-pyhd8ed1ab_0.conda hash: md5: bd80ba060603cc228d9d81c257093119 sha256: 894682a42a7d659ae12878dbcb274516a7031bbea9104e92f8e88c1f2765a104 @@ -2180,7 +2180,7 @@ package: dependencies: pygments: '' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/ipython_pygments_lexers-1.1.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/ipython_pygments_lexers-1.1.1-pyhd8ed1ab_0.conda hash: md5: bd80ba060603cc228d9d81c257093119 sha256: 894682a42a7d659ae12878dbcb274516a7031bbea9104e92f8e88c1f2765a104 @@ -2198,7 +2198,7 @@ package: python: '>=3.3' traitlets: '>=4.3.1' widgetsnbextension: '>=3.6.10,<3.7.0' - url: https://repo.prefix.dev/conda-forge/noarch/ipywidgets-7.8.5-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/ipywidgets-7.8.5-pyhd8ed1ab_0.conda hash: md5: 47672c493015ab57d5fcde9531ab18ef sha256: 8cc67e44137bb779c76d92952fdc4d8cd475605f4f0d13e8d0f04f25c056939b @@ -2216,7 +2216,7 @@ package: python: '>=3.3' traitlets: '>=4.3.1' widgetsnbextension: '>=3.6.10,<3.7.0' - url: https://repo.prefix.dev/conda-forge/noarch/ipywidgets-7.8.5-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/ipywidgets-7.8.5-pyhd8ed1ab_0.conda hash: md5: 47672c493015ab57d5fcde9531ab18ef sha256: 8cc67e44137bb779c76d92952fdc4d8cd475605f4f0d13e8d0f04f25c056939b @@ -2229,7 +2229,7 @@ package: dependencies: arrow: '>=0.15.0' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/isoduration-20.11.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/isoduration-20.11.0-pyhd8ed1ab_1.conda hash: md5: 0b0154421989637d424ccf0f104be51a sha256: 08e838d29c134a7684bca0468401d26840f41c92267c4126d7b43a6b533b0aed @@ -2242,7 +2242,7 @@ package: dependencies: arrow: '>=0.15.0' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/isoduration-20.11.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/isoduration-20.11.0-pyhd8ed1ab_1.conda hash: md5: 0b0154421989637d424ccf0f104be51a sha256: 08e838d29c134a7684bca0468401d26840f41c92267c4126d7b43a6b533b0aed @@ -2254,7 +2254,7 @@ package: platform: linux-64 dependencies: python: '>=3.9,<4.0' - url: https://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_1.conda hash: md5: c25d1a27b791dab1797832aafd6a3e9a sha256: e1d0e81e3c3da5d7854f9f57ffb89d8f4505bb64a2f05bb01d78eff24344a105 @@ -2266,7 +2266,7 @@ package: platform: win-64 dependencies: python: '>=3.9,<4.0' - url: https://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_1.conda hash: md5: c25d1a27b791dab1797832aafd6a3e9a sha256: e1d0e81e3c3da5d7854f9f57ffb89d8f4505bb64a2f05bb01d78eff24344a105 @@ -2279,7 +2279,7 @@ package: dependencies: parso: '>=0.8.3,<0.9.0' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda hash: md5: a4f4c5dc9b80bc50e0d3dc4e6e8f1bd9 sha256: 92c4d217e2dc68983f724aa983cca5464dcb929c566627b26a2511159667dba8 @@ -2292,7 +2292,7 @@ package: dependencies: parso: '>=0.8.3,<0.9.0' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda hash: md5: a4f4c5dc9b80bc50e0d3dc4e6e8f1bd9 sha256: 92c4d217e2dc68983f724aa983cca5464dcb929c566627b26a2511159667dba8 @@ -2305,7 +2305,7 @@ package: dependencies: markupsafe: '>=2.0' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda hash: md5: 446bd6c8cb26050d528881df495ce646 sha256: f1ac18b11637ddadc05642e8185a851c7fab5998c6f5470d716812fae943b2af @@ -2318,7 +2318,7 @@ package: dependencies: markupsafe: '>=2.0' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda hash: md5: 446bd6c8cb26050d528881df495ce646 sha256: f1ac18b11637ddadc05642e8185a851c7fab5998c6f5470d716812fae943b2af @@ -2331,7 +2331,7 @@ package: dependencies: python: '>=3.9' setuptools: '' - url: https://repo.prefix.dev/conda-forge/noarch/joblib-1.5.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/joblib-1.5.1-pyhd8ed1ab_0.conda hash: md5: fb1c14694de51a476ce8636d92b6f42c sha256: e5a4eca9a5d8adfaa3d51e24eefd1a6d560cb3b33a7e1eee13e410bec457b7ed @@ -2344,7 +2344,7 @@ package: dependencies: python: '>=3.9' setuptools: '' - url: https://repo.prefix.dev/conda-forge/noarch/joblib-1.5.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/joblib-1.5.1-pyhd8ed1ab_0.conda hash: md5: fb1c14694de51a476ce8636d92b6f42c sha256: e5a4eca9a5d8adfaa3d51e24eefd1a6d560cb3b33a7e1eee13e410bec457b7ed @@ -2356,7 +2356,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/json5-0.12.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/json5-0.12.0-pyhd8ed1ab_0.conda hash: md5: 56275442557b3b45752c10980abfe2db sha256: 889e2a49de796475b5a4bc57d0ba7f4606b368ee2098e353a6d9a14b0e2c6393 @@ -2368,7 +2368,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/json5-0.12.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/json5-0.12.0-pyhd8ed1ab_0.conda hash: md5: 56275442557b3b45752c10980abfe2db sha256: 889e2a49de796475b5a4bc57d0ba7f4606b368ee2098e353a6d9a14b0e2c6393 @@ -2381,7 +2381,7 @@ package: dependencies: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/jsonpointer-3.0.0-py312h7900ff3_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/jsonpointer-3.0.0-py312h7900ff3_1.conda hash: md5: 6b51f7459ea4073eeb5057207e2e1e3d sha256: 76ccb7bffc7761d1d3133ffbe1f7f1710a0f0d9aaa9f7ea522652e799f3601f4 @@ -2394,7 +2394,7 @@ package: dependencies: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/win-64/jsonpointer-3.0.0-py312h2e8e312_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/jsonpointer-3.0.0-py312h2e8e312_1.conda hash: md5: e3ceda014d8461a11ca8552830a978f9 sha256: 6865b97780e795337f65592582aee6f25e5b96214c64ffd3f8cdf580fd64ba22 @@ -2412,7 +2412,7 @@ package: python: '>=3.9' referencing: '>=0.28.4' rpds-py: '>=0.7.1' - url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-4.24.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.24.0-pyhd8ed1ab_0.conda hash: md5: 59220749abcd119d645e6879983497a1 sha256: 812134fabb49493a50f7f443dc0ffafd0f63766f403a0bd8e71119763e57456a @@ -2430,7 +2430,7 @@ package: python: '>=3.9' referencing: '>=0.28.4' rpds-py: '>=0.7.1' - url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-4.24.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.24.0-pyhd8ed1ab_0.conda hash: md5: 59220749abcd119d645e6879983497a1 sha256: 812134fabb49493a50f7f443dc0ffafd0f63766f403a0bd8e71119763e57456a @@ -2443,7 +2443,7 @@ package: dependencies: python: '>=3.9' referencing: '>=0.31.0' - url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-specifications-2025.4.1-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2025.4.1-pyh29332c3_0.conda hash: md5: 41ff526b1083fde51fbdc93f29282e0e sha256: 66fbad7480f163509deec8bd028cd3ea68e58022982c838683586829f63f3efa @@ -2456,7 +2456,7 @@ package: dependencies: python: '>=3.9' referencing: '>=0.31.0' - url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-specifications-2025.4.1-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2025.4.1-pyh29332c3_0.conda hash: md5: 41ff526b1083fde51fbdc93f29282e0e sha256: 66fbad7480f163509deec8bd028cd3ea68e58022982c838683586829f63f3efa @@ -2476,7 +2476,7 @@ package: rfc3986-validator: '>0.1.0' uri-template: '' webcolors: '>=24.6.0' - url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-with-format-nongpl-4.24.0-hd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-with-format-nongpl-4.24.0-hd8ed1ab_0.conda hash: md5: b4eaebf6fac318db166238796d2a9702 sha256: 970a1efffe29474d6bb3e4d63bc04105c5611d1c7e2cd7e2d43d1ba468f33c20 @@ -2496,7 +2496,7 @@ package: rfc3986-validator: '>0.1.0' uri-template: '' webcolors: '>=24.6.0' - url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-with-format-nongpl-4.24.0-hd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-with-format-nongpl-4.24.0-hd8ed1ab_0.conda hash: md5: b4eaebf6fac318db166238796d2a9702 sha256: 970a1efffe29474d6bb3e4d63bc04105c5611d1c7e2cd7e2d43d1ba468f33c20 @@ -2527,7 +2527,7 @@ package: sphinx-thebe: '>=0.3.1,<1' sphinx-togglebutton: '' sphinxcontrib-bibtex: '>=2.5.0,<3' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter-book-1.0.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter-book-1.0.3-pyhd8ed1ab_1.conda hash: md5: 739a29ac73026e68405153b50d0c60c2 sha256: f028c32b5d97d24df44b1a41f771a9932e07815c60c02e24acd9bd2eca31097f @@ -2558,7 +2558,7 @@ package: sphinx-thebe: '>=0.3.1,<1' sphinx-togglebutton: '' sphinxcontrib-bibtex: '>=2.5.0,<3' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter-book-1.0.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter-book-1.0.3-pyhd8ed1ab_1.conda hash: md5: 739a29ac73026e68405153b50d0c60c2 sha256: f028c32b5d97d24df44b1a41f771a9932e07815c60c02e24acd9bd2eca31097f @@ -2578,7 +2578,7 @@ package: pyyaml: '' sqlalchemy: '>=1.3.12,<3' tabulate: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter-cache-1.0.1-pyhff2d567_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter-cache-1.0.1-pyhff2d567_0.conda hash: md5: b0ee650829b8974202a7abe7f8b81e5a sha256: 054d397dd45ed08bffb0976702e553dfb0d0b0a477da9cff36e2ea702e928f48 @@ -2598,7 +2598,7 @@ package: pyyaml: '' sqlalchemy: '>=1.3.12,<3' tabulate: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter-cache-1.0.1-pyhff2d567_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter-cache-1.0.1-pyhff2d567_0.conda hash: md5: b0ee650829b8974202a7abe7f8b81e5a sha256: 054d397dd45ed08bffb0976702e553dfb0d0b0a477da9cff36e2ea702e928f48 @@ -2612,7 +2612,7 @@ package: importlib-metadata: '>=4.8.3' jupyter_server: '>=1.1.2' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter-lsp-2.2.5-pyhe01879c_2.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter-lsp-2.2.5-pyhe01879c_2.conda hash: md5: 7ed6505c703f3c4e1a58864bf84505e2 sha256: f2ca86b121bcfeaf0241a927824459ba8712e64806b98dd262eb2b1a7c4e82a6 @@ -2626,7 +2626,7 @@ package: importlib-metadata: '>=4.8.3' jupyter_server: '>=1.1.2' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter-lsp-2.2.5-pyhe01879c_2.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter-lsp-2.2.5-pyhe01879c_2.conda hash: md5: 7ed6505c703f3c4e1a58864bf84505e2 sha256: f2ca86b121bcfeaf0241a927824459ba8712e64806b98dd262eb2b1a7c4e82a6 @@ -2644,7 +2644,7 @@ package: pyzmq: '>=23.0' tornado: '>=6.2' traitlets: '>=5.3' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda hash: md5: 4ebae00eae9705b0c3d6d1018a81d047 sha256: 19d8bd5bb2fde910ec59e081eeb59529491995ce0d653a5209366611023a0b3a @@ -2662,7 +2662,7 @@ package: pyzmq: '>=23.0' tornado: '>=6.2' traitlets: '>=5.3' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda hash: md5: 4ebae00eae9705b0c3d6d1018a81d047 sha256: 19d8bd5bb2fde910ec59e081eeb59529491995ce0d653a5209366611023a0b3a @@ -2677,7 +2677,7 @@ package: platformdirs: '>=2.5' python: '>=3.8' traitlets: '>=5.3' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter_core-5.8.1-pyh31011fe_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.8.1-pyh31011fe_0.conda hash: md5: b7d89d860ebcda28a5303526cdee68ab sha256: 56a7a7e907f15cca8c4f9b0c99488276d4cb10821d2d15df9245662184872e81 @@ -2694,7 +2694,7 @@ package: python: '>=3.8' pywin32: '>=300' traitlets: '>=5.3' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter_core-5.8.1-pyh5737063_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.8.1-pyh5737063_0.conda hash: md5: 324e60a0d3f39f268e899709575ea3cd sha256: 928c2514c2974fda78447903217f01ca89a77eefedd46bf6a2fe97072df57e8d @@ -2714,7 +2714,7 @@ package: rfc3339-validator: '' rfc3986-validator: '>=0.1.1' traitlets: '>=5.3' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter_events-0.12.0-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.12.0-pyh29332c3_0.conda hash: md5: f56000b36f09ab7533877e695e4e8cb0 sha256: 37e6ac3ccf7afcc730c3b93cb91a13b9ae827fd306f35dd28f958a74a14878b5 @@ -2734,7 +2734,7 @@ package: rfc3339-validator: '' rfc3986-validator: '>=0.1.1' traitlets: '>=5.3' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter_events-0.12.0-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.12.0-pyh29332c3_0.conda hash: md5: f56000b36f09ab7533877e695e4e8cb0 sha256: 37e6ac3ccf7afcc730c3b93cb91a13b9ae827fd306f35dd28f958a74a14878b5 @@ -2764,7 +2764,7 @@ package: tornado: '>=6.2.0' traitlets: '>=5.6.0' websocket-client: '>=1.7' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter_server-2.16.0-pyhe01879c_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.16.0-pyhe01879c_0.conda hash: md5: f062e04d7cd585c937acbf194dceec36 sha256: 0082fb6f0afaf872affee4cde3b210f7f7497a5fb47f2944ab638fef0f0e2e77 @@ -2794,7 +2794,7 @@ package: tornado: '>=6.2.0' traitlets: '>=5.6.0' websocket-client: '>=1.7' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter_server-2.16.0-pyhe01879c_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.16.0-pyhe01879c_0.conda hash: md5: f062e04d7cd585c937acbf194dceec36 sha256: 0082fb6f0afaf872affee4cde3b210f7f7497a5fb47f2944ab638fef0f0e2e77 @@ -2807,7 +2807,7 @@ package: dependencies: python: '>=3.9' terminado: '>=0.8.3' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter_server_terminals-0.5.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_server_terminals-0.5.3-pyhd8ed1ab_1.conda hash: md5: 2d983ff1b82a1ccb6f2e9d8784bdd6bd sha256: 0890fc79422191bc29edf17d7b42cff44ba254aa225d31eb30819f8772b775b8 @@ -2820,7 +2820,7 @@ package: dependencies: python: '>=3.9' terminado: '>=0.8.3' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter_server_terminals-0.5.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_server_terminals-0.5.3-pyhd8ed1ab_1.conda hash: md5: 2d983ff1b82a1ccb6f2e9d8784bdd6bd sha256: 0890fc79422191bc29edf17d7b42cff44ba254aa225d31eb30819f8772b775b8 @@ -2847,7 +2847,7 @@ package: tomli: '>=1.2.2' tornado: '>=6.2.0' traitlets: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.4.3-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.4.3-pyhd8ed1ab_0.conda hash: md5: 4861a0c2a5a5d0481a450a9dfaf9febe sha256: fc0235a71d852734fe92183a78cb91827367573450eba82465ae522c64230736 @@ -2874,7 +2874,7 @@ package: tomli: '>=1.2.2' tornado: '>=6.2.0' traitlets: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.4.3-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.4.3-pyhd8ed1ab_0.conda hash: md5: 4861a0c2a5a5d0481a450a9dfaf9febe sha256: fc0235a71d852734fe92183a78cb91827367573450eba82465ae522c64230736 @@ -2887,7 +2887,7 @@ package: dependencies: pygments: '>=2.4.1,<3' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab_pygments-0.3.0-pyhd8ed1ab_2.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.3.0-pyhd8ed1ab_2.conda hash: md5: fd312693df06da3578383232528c468d sha256: dc24b900742fdaf1e077d9a3458fd865711de80bca95fe3c6d46610c532c6ef0 @@ -2900,7 +2900,7 @@ package: dependencies: pygments: '>=2.4.1,<3' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab_pygments-0.3.0-pyhd8ed1ab_2.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.3.0-pyhd8ed1ab_2.conda hash: md5: fd312693df06da3578383232528c468d sha256: dc24b900742fdaf1e077d9a3458fd865711de80bca95fe3c6d46610c532c6ef0 @@ -2920,7 +2920,7 @@ package: packaging: '>=21.3' python: '>=3.9' requests: '>=2.31' - url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab_server-2.27.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.27.3-pyhd8ed1ab_1.conda hash: md5: 9dc4b2b0f41f0de41d27f3293e319357 sha256: d03d0b7e23fa56d322993bc9786b3a43b88ccc26e58b77c756619a921ab30e86 @@ -2940,7 +2940,7 @@ package: packaging: '>=21.3' python: '>=3.9' requests: '>=2.31' - url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab_server-2.27.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.27.3-pyhd8ed1ab_1.conda hash: md5: 9dc4b2b0f41f0de41d27f3293e319357 sha256: d03d0b7e23fa56d322993bc9786b3a43b88ccc26e58b77c756619a921ab30e86 @@ -2952,7 +2952,7 @@ package: platform: linux-64 dependencies: python: '>=3.7' - url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab_widgets-1.1.11-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-1.1.11-pyhd8ed1ab_0.conda hash: md5: 05a08b368343304618b6a88425aa851a sha256: 639544e96969c7513b33bf3201a4dc3095625e34cff16c187f5dec9bee2dfb2f @@ -2964,7 +2964,7 @@ package: platform: win-64 dependencies: python: '>=3.7' - url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab_widgets-1.1.11-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-1.1.11-pyhd8ed1ab_0.conda hash: md5: 05a08b368343304618b6a88425aa851a sha256: 639544e96969c7513b33bf3201a4dc3095625e34cff16c187f5dec9bee2dfb2f @@ -2982,7 +2982,7 @@ package: python: '>=3.9' pyyaml: '' tomli: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupytext-1.17.2-pyh80e38bb_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupytext-1.17.2-pyh80e38bb_0.conda hash: md5: 6d0652a97ef103de0c77b9c610d0c20d sha256: 48986a9c01f17d1d5a598af33814a877fd67a6a3287625718d76617a7d17f51d @@ -3000,7 +3000,7 @@ package: python: '>=3.9' pyyaml: '' tomli: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupytext-1.17.2-pyh80e38bb_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupytext-1.17.2-pyh80e38bb_0.conda hash: md5: 6d0652a97ef103de0c77b9c610d0c20d sha256: 48986a9c01f17d1d5a598af33814a877fd67a6a3287625718d76617a7d17f51d @@ -3012,7 +3012,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=10.3.0' - url: https://repo.prefix.dev/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 hash: md5: 30186d27e2c9fa62b45fb1476b7200e3 sha256: 150c05a6e538610ca7c43beb3a40d65c90537497a4f6a5f4d15ec0451b6f5ebb @@ -3028,7 +3028,7 @@ package: libstdcxx: '>=13' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/kiwisolver-1.4.8-py312h84d6215_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/kiwisolver-1.4.8-py312h84d6215_0.conda hash: md5: 6713467dc95509683bfa3aca08524e8a sha256: 3ce99d721c1543f6f8f5155e53eef11be47b2f5942a8d1060de6854f9d51f246 @@ -3044,7 +3044,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/kiwisolver-1.4.8-py312hc790b64_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/kiwisolver-1.4.8-py312hc790b64_0.conda hash: md5: 7ef59428fc0dcb8a78a5e23dc4f50aa3 sha256: 2cce3d9bcc95c68069e3032cda25b732f69be7b025f94685ee4783d7b54588dd @@ -3060,7 +3060,7 @@ package: libgcc-ng: '>=12' libstdcxx-ng: '>=12' openssl: '>=3.3.1,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda hash: md5: 3f43953b7d3fb3aaa1d0d0723d91e368 sha256: 99df692f7a8a5c27cd14b5fb1374ee55e756631b9c3d659ed3ee60830249b238 @@ -3075,7 +3075,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/krb5-1.21.3-hdf4eb48_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/krb5-1.21.3-hdf4eb48_0.conda hash: md5: 31aec030344e962fbd7dbbbbd68e60a9 sha256: 18e8b3430d7d232dad132f574268f56b3eb1a19431d6d5de8c53c29e6c18fa81 @@ -3088,7 +3088,7 @@ package: dependencies: python: '' six: '' - url: https://repo.prefix.dev/conda-forge/noarch/latexcodec-2.0.1-pyh9f0ad1d_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/latexcodec-2.0.1-pyh9f0ad1d_0.tar.bz2 hash: md5: 8d67904973263afd2985ba56aa2d6bb4 sha256: 5210d31c8f2402dd1ad1b3edcf7a53292b9da5de20cd14d9c243dbf9278b1c4f @@ -3101,7 +3101,7 @@ package: dependencies: python: '' six: '' - url: https://repo.prefix.dev/conda-forge/noarch/latexcodec-2.0.1-pyh9f0ad1d_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/latexcodec-2.0.1-pyh9f0ad1d_0.tar.bz2 hash: md5: 8d67904973263afd2985ba56aa2d6bb4 sha256: 5210d31c8f2402dd1ad1b3edcf7a53292b9da5de20cd14d9c243dbf9278b1c4f @@ -3116,7 +3116,7 @@ package: libgcc: '>=13' libjpeg-turbo: '>=3.0.0,<4.0a0' libtiff: '>=4.7.0,<4.8.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/lcms2-2.17-h717163a_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/lcms2-2.17-h717163a_0.conda hash: md5: 000e85703f0fd9594c81710dd5066471 sha256: d6a61830a354da022eae93fa896d0991385a875c6bba53c82263a289deda9db8 @@ -3132,7 +3132,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/lcms2-2.17-hbcf6048_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/lcms2-2.17-hbcf6048_0.conda hash: md5: 3538827f77b82a837fa681a4579e37a1 sha256: 7712eab5f1a35ca3ea6db48ead49e0d6ac7f96f8560da8023e61b3dbe4f3b25d @@ -3144,10 +3144,10 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_4.conda + url: https://conda.anaconda.org/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 @@ -3158,7 +3158,7 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' libstdcxx: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/lerc-4.0.0-h0aef613_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h0aef613_1.conda hash: md5: 9344155d33912347b37f0ae6c410a835 sha256: 412381a43d5ff9bbed82cd52a0bbca5b90623f62e41007c9c42d3870c60945ff @@ -3172,37 +3172,38 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/lerc-4.0.0-h6470a55_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/lerc-4.0.0-h6470a55_1.conda hash: md5: c1b81da6d29a14b542da14a36c9fbf3f sha256: 868a3dff758cc676fa1286d3f36c3e0101cca56730f7be531ab84dc91ec58e9d 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://conda.anaconda.org/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://conda.anaconda.org/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 @@ -3211,7 +3212,7 @@ package: platform: linux-64 dependencies: mkl: '>=2024.2.2,<2025.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libblas-3.9.0-31_hfdb39a5_mkl.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-31_hfdb39a5_mkl.conda hash: md5: bdf4a57254e8248222cb631db4393ff1 sha256: 862289f2cfb84bb6001d0e3569e908b8c42d66b881bd5b03f730a3924628b978 @@ -3223,7 +3224,7 @@ package: platform: win-64 dependencies: mkl: 2024.2.2 - url: https://repo.prefix.dev/conda-forge/win-64/libblas-3.9.0-31_h641d27c_mkl.conda + url: https://conda.anaconda.org/conda-forge/win-64/libblas-3.9.0-31_h641d27c_mkl.conda hash: md5: d05563c577fe2f37693a554b3f271e8f sha256: 7bb4d5b591e98fe607279520ee78e3571a297b5720aa789a2536041ad5540de8 @@ -3236,7 +3237,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlicommon-1.1.0-hb9d3cd8_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.1.0-hb9d3cd8_3.conda hash: md5: cb98af5db26e3f482bebb80ce9d947d3 sha256: 462a8ed6a7bb9c5af829ec4b90aab322f8bcd9d8987f793e6986ea873bbd05cf @@ -3250,7 +3251,7 @@ 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_3.conda + url: https://conda.anaconda.org/conda-forge/win-64/libbrotlicommon-1.1.0-h2466b09_3.conda hash: md5: cf20c8b8b48ab5252ec64b9c66bfe0a4 sha256: e70ea4b773fadddda697306a80a29d9cbd36b7001547cd54cbfe9a97a518993f @@ -3264,7 +3265,7 @@ 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_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.1.0-hb9d3cd8_3.conda hash: md5: 1c6eecffad553bde44c5238770cfb7da sha256: 3eb27c1a589cbfd83731be7c3f19d6d679c7a444c3ba19db6ad8bf49172f3d83 @@ -3279,7 +3280,7 @@ 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_3.conda + url: https://conda.anaconda.org/conda-forge/win-64/libbrotlidec-1.1.0-h2466b09_3.conda hash: md5: a342933dbc6d814541234c7c81cb5205 sha256: a35a0db7e3257e011b10ffb371735b2b24074412d0b27c3dab7ca9f2c549cfcf @@ -3293,7 +3294,7 @@ 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_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlienc-1.1.0-hb9d3cd8_3.conda hash: md5: 3facafe58f3858eb95527c7d3a3fc578 sha256: 76e8492b0b0a0d222bfd6081cae30612aa9915e4309396fdca936528ccf314b7 @@ -3308,7 +3309,7 @@ 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_3.conda + url: https://conda.anaconda.org/conda-forge/win-64/libbrotlienc-1.1.0-h2466b09_3.conda hash: md5: 7ef0af55d70cbd9de324bb88b7f9d81e sha256: 9d0703c5a01c10d346587ff0535a0eb81042364333caa4a24a0e4a0c08fd490b @@ -3320,7 +3321,7 @@ package: platform: linux-64 dependencies: libblas: 3.9.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libcblas-3.9.0-31_h372d94f_mkl.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-31_h372d94f_mkl.conda hash: md5: 2a06a6c16b45bd3d10002927ca204b67 sha256: 2ee3ab2b6eeb59f2d3c6f933fa0db28f1b56f0bc543ed2c0f6ec04060e4b6ec0 @@ -3332,7 +3333,7 @@ package: platform: win-64 dependencies: libblas: 3.9.0 - url: https://repo.prefix.dev/conda-forge/win-64/libcblas-3.9.0-31_h5e41251_mkl.conda + url: https://conda.anaconda.org/conda-forge/win-64/libcblas-3.9.0-31_h5e41251_mkl.conda hash: md5: 43c100b94ad2607382b0cf0f3a6b0bf3 sha256: 609f455b099919bd4d15d4a733f493dc789e02da73fe4474f1cca73afafb95b8 @@ -3351,7 +3352,7 @@ package: libzlib: '>=1.3.1,<2.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.14.1-h332b0f4_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.14.1-h332b0f4_0.conda hash: md5: 45f6713cb00f124af300342512219182 sha256: b6c5cf340a4f80d70d64b3a29a7d9885a5918d16a5cb952022820e6d3e79dc8b @@ -3368,7 +3369,7 @@ 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.14.1-h88aaa65_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/libcurl-8.14.1-h88aaa65_0.conda hash: md5: 836b9c08f34d2017dbcaec907c6a1138 sha256: b2cface2cf35d8522289df7fffc14370596db6f6dc481cc1b6ca313faeac19d8 @@ -3381,7 +3382,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libdeflate-1.24-h86f0d12_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.24-h86f0d12_0.conda hash: md5: 64f0c503da58ec25ebd359e4d990afa8 sha256: 8420748ea1cc5f18ecc5068b4f24c7a023cc9b20971c99c824ba10641fb95ddf @@ -3395,7 +3396,7 @@ package: 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.24-h76ddb4d_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/libdeflate-1.24-h76ddb4d_0.conda hash: md5: 08d988e266c6ae77e03d164b83786dc4 sha256: 65347475c0009078887ede77efe60db679ea06f2b56f7853b9310787fe5ad035 @@ -3408,7 +3409,7 @@ package: dependencies: numpy: '' python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/libdlf-0.3.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/libdlf-0.3.0-pyhd8ed1ab_1.conda hash: md5: 2e9654bb2bcf5986c2def3ba35413326 sha256: 367c575a6388380d9a0da6ff06571d903ae89366c42d9f16e32de5d359b6971a @@ -3421,7 +3422,7 @@ package: dependencies: numpy: '' python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/libdlf-0.3.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/libdlf-0.3.0-pyhd8ed1ab_1.conda hash: md5: 2e9654bb2bcf5986c2def3ba35413326 sha256: 367c575a6388380d9a0da6ff06571d903ae89366c42d9f16e32de5d359b6971a @@ -3435,7 +3436,7 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' ncurses: '>=6.5,<7.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.conda hash: md5: c277e0a4d549b03ac1e9d6cbbe3d017b sha256: d789471216e7aba3c184cd054ed61ce3f6dac6f87a50ec69291b9297f8c18724 @@ -3447,7 +3448,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://repo.prefix.dev/conda-forge/linux-64/libev-4.33-hd590300_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda hash: md5: 172bf1cd1ff8629f2b1179945ed45055 sha256: 1cd6048169fa0395af74ed5d8f1716e22c19a81a8a36f934c110ca3ad4dd27b4 @@ -3460,7 +3461,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libexpat-2.7.0-h5888daf_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.7.0-h5888daf_0.conda hash: md5: db0bfbe7dd197b68ad5f30333bae6ce0 sha256: 33ab03438aee65d6aa667cf7d90c91e5e7d734c19a67aa4c7040742c0a13d505 @@ -3474,7 +3475,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libexpat-2.7.0-he0c23c2_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/libexpat-2.7.0-he0c23c2_0.conda hash: md5: b6f5352fdb525662f4169a0431d2dd7a sha256: 1a227c094a4e06bd54e8c2f3ec40c17ff99dcf3037d812294f842210aa66dbeb @@ -3487,7 +3488,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libffi-3.4.6-h2dba641_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.6-h2dba641_1.conda hash: md5: ede4673863426c0883c0063d853bbd85 sha256: 764432d32db45466e87f10621db5b74363a9f847d2b8b1f9743746cd160f06ab @@ -3501,7 +3502,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libffi-3.4.6-h537db12_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.6-h537db12_1.conda hash: md5: 85d8fa5e55ed8f93f874b3b23ed54ec6 sha256: d3b0b8812eab553d3464bbd68204f007f1ebadf96ce30eb0cbc5159f72e353f5 @@ -3513,7 +3514,7 @@ package: platform: linux-64 dependencies: libfreetype6: '>=2.13.3' - url: https://repo.prefix.dev/conda-forge/linux-64/libfreetype-2.13.3-ha770c72_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libfreetype-2.13.3-ha770c72_1.conda hash: md5: 51f5be229d83ecd401fb369ab96ae669 sha256: 7be9b3dac469fe3c6146ff24398b685804dfc7a1de37607b84abd076f57cc115 @@ -3525,7 +3526,7 @@ package: platform: win-64 dependencies: libfreetype6: '>=2.13.3' - url: https://repo.prefix.dev/conda-forge/win-64/libfreetype-2.13.3-h57928b3_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/libfreetype-2.13.3-h57928b3_1.conda hash: md5: 410ba2c8e7bdb278dfbb5d40220e39d2 sha256: e5bc7d0a8d11b7b234da4fcd9d78f297f7dec3fec8bd06108fd3ac7b2722e32e @@ -3540,7 +3541,7 @@ package: libgcc: '>=13' libpng: '>=1.6.47,<1.7.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libfreetype6-2.13.3-h48d6fc4_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libfreetype6-2.13.3-h48d6fc4_1.conda hash: md5: 3c255be50a506c50765a93a6644f32fe sha256: 7759bd5c31efe5fbc36a7a1f8ca5244c2eabdbeb8fc1bee4b99cf989f35c7d81 @@ -3556,7 +3557,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libfreetype6-2.13.3-h0b5ce68_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/libfreetype6-2.13.3-h0b5ce68_1.conda hash: md5: a84b7d1a13060a9372bea961a8131dbc sha256: 61308653e7758ff36f80a60d598054168a1389ddfbac46d7864c415fafe18e69 @@ -3569,7 +3570,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' _openmp_mutex: '>=4.5' - url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-15.1.0-h767d61c_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-15.1.0-h767d61c_2.conda hash: md5: ea8ac52380885ed41c1baa8f1d6d2b93 sha256: 0024f9ab34c09629621aefd8603ef77bf9d708129b0dd79029e502c39ffc2195 @@ -3582,7 +3583,7 @@ package: dependencies: _openmp_mutex: '>=4.5' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' - url: https://repo.prefix.dev/conda-forge/win-64/libgcc-15.1.0-h1383e82_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/libgcc-15.1.0-h1383e82_2.conda hash: md5: 9bedb24480136bfeb81ebc81d4285e70 sha256: c0288596ac58366d96a56c57e4088fe1c6dd4194fdcaeacf5862f47fb1e1e5be @@ -3594,7 +3595,7 @@ package: platform: linux-64 dependencies: libgcc: 15.1.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-ng-15.1.0-h69a702a_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-15.1.0-h69a702a_2.conda hash: md5: ddca86c7040dd0e73b2b69bd7833d225 sha256: 0ab5421a89f090f3aa33841036bb3af4ed85e1f91315b528a9d75fab9aad51ae @@ -3606,7 +3607,7 @@ package: platform: linux-64 dependencies: libgfortran5: 15.1.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran-15.1.0-h69a702a_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-15.1.0-h69a702a_2.conda hash: md5: f92e6e0a3c0c0c85561ef61aa59d555d sha256: 914daa4f632b786827ea71b5e07cd00d25fc6e67789db2f830dc481eec660342 @@ -3619,7 +3620,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=15.1.0' - url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran5-15.1.0-hcea5267_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-15.1.0-hcea5267_2.conda hash: md5: 01de444988ed960031dbe84cf4f9b1fc sha256: be23750f3ca1a5cb3ada858c4f633effe777487d1ea35fddca04c0965c073350 @@ -3631,7 +3632,7 @@ package: platform: win-64 dependencies: libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' - url: https://repo.prefix.dev/conda-forge/win-64/libgomp-15.1.0-h1383e82_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/libgomp-15.1.0-h1383e82_2.conda hash: md5: 5fbacaa9b41e294a6966602205b99747 sha256: 4316316097ce5fde2608b6fccd18709cf647dce52e230f5ac66f5c524dfad791 @@ -3646,7 +3647,7 @@ package: libgcc: '>=13' libstdcxx: '>=13' libxml2: '>=2.13.4,<2.14.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libhwloc-2.11.2-default_h0d58e46_1001.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libhwloc-2.11.2-default_h0d58e46_1001.conda hash: md5: 804ca9e91bcaea0824a341d55b1684f2 sha256: d14c016482e1409ae1c50109a9ff933460a50940d2682e745ab1c172b5282a69 @@ -3662,7 +3663,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libhwloc-2.11.2-default_ha69328c_1001.conda + url: https://conda.anaconda.org/conda-forge/win-64/libhwloc-2.11.2-default_ha69328c_1001.conda hash: md5: b87a0ac5ab6495d8225db5dc72dd21cd sha256: 850e255997f538d5fb6ed651321141155a33bb781d43d326fc4ff62114dd2842 @@ -3675,7 +3676,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libiconv-1.18-h4ce23a2_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.18-h4ce23a2_1.conda hash: md5: e796ff8ddc598affdf7c173d6145f087 sha256: 18a4afe14f731bfb9cf388659994263904d20111e42f841e9eea1bb6f91f4ab4 @@ -3689,7 +3690,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libiconv-1.18-h135ad9c_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/libiconv-1.18-h135ad9c_1.conda hash: md5: 21fc5dba2cbcd8e5e26ff976a312122c sha256: ea5ed2b362b6dbc4ba7188eb4eaf576146e3dfc6f4395e9f0db76ad77465f786 @@ -3702,7 +3703,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libjpeg-turbo-3.1.0-hb9d3cd8_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libjpeg-turbo-3.1.0-hb9d3cd8_0.conda hash: md5: 9fa334557db9f63da6c9285fd2a48638 sha256: 98b399287e27768bf79d48faba8a99a2289748c65cd342ca21033fab1860d4a4 @@ -3716,7 +3717,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libjpeg-turbo-3.1.0-h2466b09_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/libjpeg-turbo-3.1.0-h2466b09_0.conda hash: md5: 7c51d27540389de84852daa1cdb9c63c sha256: e61b0adef3028b51251124e43eb6edf724c67c0f6736f1628b02511480ac354e @@ -3728,7 +3729,7 @@ package: platform: linux-64 dependencies: libblas: 3.9.0 - url: https://repo.prefix.dev/conda-forge/linux-64/liblapack-3.9.0-31_hc41d3b0_mkl.conda + url: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-31_hc41d3b0_mkl.conda hash: md5: 10d012ddd7cc1c7ff9093d4974a34e53 sha256: a2d20845d916ac8fba09376cd791136a9b4547afb2131bc315178adfc87bb4ca @@ -3740,7 +3741,7 @@ package: platform: win-64 dependencies: libblas: 3.9.0 - url: https://repo.prefix.dev/conda-forge/win-64/liblapack-3.9.0-31_h1aa476e_mkl.conda + url: https://conda.anaconda.org/conda-forge/win-64/liblapack-3.9.0-31_h1aa476e_mkl.conda hash: md5: 40b47ee720a185289760960fc6185750 sha256: 9415e807aa6f8968322bbd756aab8f487379d809c74266d37c697b8d85c534ad @@ -3753,7 +3754,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_2.conda hash: md5: 1a580f7796c7bf6393fddb8bbbde58dc sha256: f2591c0069447bbe28d4d696b7fcb0c5bd0b4ac582769b89addbcf26fb3430d8 @@ -3767,7 +3768,7 @@ 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_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/liblzma-5.8.1-h2466b09_2.conda hash: md5: c15148b2e18da456f5108ccb5e411446 sha256: 55764956eb9179b98de7cc0e55696f2eff8f7b83fc3ebff5e696ca358bca28cc @@ -3785,7 +3786,7 @@ package: libstdcxx: '>=13' libzlib: '>=1.3.1,<2.0a0' openssl: '>=3.3.2,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libnghttp2-1.64.0-h161d5f1_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.64.0-h161d5f1_0.conda hash: md5: 19e57602824042dfd0446292ef90488b sha256: b0f2b3695b13a989f75d8fd7f4778e1c7aabe3b36db83f0fe80b2cd812c0e975 @@ -3797,28 +3798,28 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://repo.prefix.dev/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda hash: md5: 30fd6e37fe21f86f4bd26d6ee73eeec7 sha256: 26d77a3bb4dceeedc2a41bd688564fe71bf2d149fdcf117049970bc02ff1add6 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://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.49-h943b412_0.conda hash: - md5: 55199e2ae2c3651f6f9b2a447b47bdc9 - sha256: 23367d71da58c9a61c8cbd963fcffb92768d4ae5ffbef9a47cdf1f54f98c5c36 + md5: 37511c874cf3b8d0034c8d24e73c0884 + sha256: c8f5dc929ba5fcee525a66777498e03bbcbfefc05a0773e5163bb08ac5122f1a category: main optional: false - name: libpng - version: 1.6.47 + version: 1.6.49 manager: conda platform: win-64 dependencies: @@ -3826,10 +3827,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://conda.anaconda.org/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 @@ -3844,7 +3845,7 @@ package: libgfortran5: '>=13.3.0' liblzma: '>=5.6.3,<6.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libscotch-7.0.6-hea33c07_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libscotch-7.0.6-hea33c07_1.conda hash: md5: 1b600d55dcd98c958192a69a79e6acd2 sha256: 8330bba8b7b3a37da6eca04bace985fb9f8d487d3249b8f690e8f4a3d8d3c7dc @@ -3856,7 +3857,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://repo.prefix.dev/conda-forge/linux-64/libsodium-1.0.20-h4ab18f5_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libsodium-1.0.20-h4ab18f5_0.conda hash: md5: a587892d3c13b6621a6091be690dbca2 sha256: 0105bd108f19ea8e6a78d2d994a6d4a8db16d19a41212070d2d1d48a63c34161 @@ -3870,7 +3871,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libsodium-1.0.20-hc70643c_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/libsodium-1.0.20-hc70643c_0.conda hash: md5: 198bb594f202b205c7d18b936fa4524f sha256: 7bcb3edccea30f711b6be9601e083ecf4f435b9407d70fc48fbcf9e5d69a0fc6 @@ -3884,7 +3885,7 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.50.1-hee588c1_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.50.1-hee588c1_0.conda hash: md5: 96a7e36bff29f1d0ddf5b771e0da373a sha256: cd15ab1b9f0d53507e7ad7a01e52f6756ab3080bf623ab0e438973b6e4dba3c0 @@ -3898,7 +3899,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.50.1-h67fdade_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.50.1-h67fdade_0.conda hash: md5: 0e11a893eeeb46510520fd3fdd9c346a sha256: 0dda5b3f21ad2c7e823f21b0e173194347fbfccb73a06ddc9366da1877020bda @@ -3913,7 +3914,7 @@ package: libgcc: '>=13' libzlib: '>=1.3.1,<2.0a0' openssl: '>=3.5.0,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libssh2-1.11.1-hcf80075_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.1-hcf80075_0.conda hash: md5: eecce068c7e4eddeb169591baac20ac4 sha256: fa39bfd69228a13e553bd24601332b7cfeb30ca11a3ca50bb028108fe90a7661 @@ -3929,7 +3930,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libssh2-1.11.1-h9aa295b_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/libssh2-1.11.1-h9aa295b_0.conda hash: md5: 9dce2f112bfd3400f4f432b3d0ac07b2 sha256: cbdf93898f2e27cefca5f3fe46519335d1fab25c4ea2a11b11502ff63e602c09 @@ -3942,7 +3943,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: 15.1.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-15.1.0-h8f9b012_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-15.1.0-h8f9b012_2.conda hash: md5: 1cb1c67961f6dd257eae9e9691b341aa sha256: 6ae3d153e78f6069d503d9309f2cac6de5b93d067fc6433160a4c05226a5dad4 @@ -3954,7 +3955,7 @@ package: platform: linux-64 dependencies: libstdcxx: 15.1.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-15.1.0-h4852527_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-15.1.0-h4852527_2.conda hash: md5: 9d2072af184b5caa29492bf2344597bb sha256: 11bea86e11de7d6bce87589197a383344df3fa0a3552dab7e931785ff1159a5b @@ -3975,7 +3976,7 @@ 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-hf01ce69_5.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.7.0-hf01ce69_5.conda hash: md5: e79a094918988bb1807462cd42c83962 sha256: 7fa6ddac72e0d803bb08e55090a8f2e71769f1eb7adbd5711bdd7789561601b1 @@ -3995,7 +3996,7 @@ 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-h05922d8_5.conda + url: https://conda.anaconda.org/conda-forge/win-64/libtiff-4.7.0-h05922d8_5.conda hash: md5: 75370aba951b47ec3b5bfe689f1bcf7f sha256: 1bb0b2e7d076fecc2f8147336bc22e7e6f9a4e0505e0e4ab2be1f56023a4a458 @@ -4007,7 +4008,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://repo.prefix.dev/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda hash: md5: 40b61aab5c7ba9ff276c41cfffe6b80b sha256: 787eb542f055a2b3de553614b25f09eefb0a0931b0c87dbcce6efdfd92f04f18 @@ -4020,7 +4021,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libwebp-base-1.5.0-h851e524_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.5.0-h851e524_0.conda hash: md5: 63f790534398730f59e1b899c3644d4a sha256: c45283fd3e90df5f0bd3dbcd31f59cdd2b001d424cf30a07223655413b158eaf @@ -4034,7 +4035,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libwebp-base-1.5.0-h3b0e114_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/libwebp-base-1.5.0-h3b0e114_0.conda hash: md5: 33f7313967072c6e6d8f865f5493c7ae sha256: 1d75274614e83a5750b8b94f7bad2fc0564c2312ff407e697d99152ed095576f @@ -4046,7 +4047,7 @@ package: platform: win-64 dependencies: ucrt: '' - url: https://repo.prefix.dev/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h57928b3_9.conda + url: https://conda.anaconda.org/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h57928b3_9.conda hash: md5: 08bfa5da6e242025304b206d152479ef sha256: 373f2973b8a358528b22be5e8d84322c165b4c5577d24d94fd67ad1bb0a0f261 @@ -4062,7 +4063,7 @@ package: pthread-stubs: '' xorg-libxau: '>=1.0.11,<2.0a0' xorg-libxdmcp: '' - url: https://repo.prefix.dev/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda hash: md5: 92ed62436b625154323d40d5f2f11dd7 sha256: 666c0c431b23c6cec6e492840b176dde533d48b7e6fb8883f5071223433776aa @@ -4079,7 +4080,7 @@ package: ucrt: '>=10.0.20348.0' xorg-libxau: '>=1.0.11,<2.0a0' xorg-libxdmcp: '' - url: https://repo.prefix.dev/conda-forge/win-64/libxcb-1.17.0-h0e4246c_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/libxcb-1.17.0-h0e4246c_0.conda hash: md5: a69bbf778a462da324489976c84cfc8c sha256: 08dec73df0e161c96765468847298a420933a36bc4f09b50e062df8793290737 @@ -4091,7 +4092,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://repo.prefix.dev/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda hash: md5: 5aa797f8787fe7a17d1b0821485b5adc sha256: 6ae68e0b86423ef188196fff6207ed0c8195dd84273cb5623b85aa08033a410c @@ -4108,7 +4109,7 @@ package: 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.8-h4bc477f_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.13.8-h4bc477f_0.conda hash: md5: 14dbe05b929e329dbaa6f2d0aa19466d sha256: b0b3a96791fa8bb4ec030295e8c8bf2d3278f33c0f9ad540e73b5e538e6268e7 @@ -4124,7 +4125,7 @@ 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.8-h442d1da_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/libxml2-2.13.8-h442d1da_0.conda hash: md5: 833c2dbc1a5020007b520b044c713ed3 sha256: 473b8a53c8df714d676ab41711551c8d250f8d799f2db5cb7cb2b177a0ce13f6 @@ -4137,7 +4138,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda hash: md5: edb0dca6bc32e4f4789199455a1dbeb8 sha256: d4bfe88d7cb447768e31650f06257995601f89076080e76df55e3112d4e47dc4 @@ -4151,7 +4152,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda hash: md5: 41fbfac52c601159df6c01f875de31b9 sha256: ba945c6493449bed0e6e29883c4943817f7c79cbff52b83360f7b341277c6402 @@ -4164,7 +4165,7 @@ package: dependencies: python: '>=3.9' uc-micro-py: '' - url: https://repo.prefix.dev/conda-forge/noarch/linkify-it-py-2.0.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/linkify-it-py-2.0.3-pyhd8ed1ab_1.conda hash: md5: b02fe519b5dc0dc55e7299810fcdfb8e sha256: d975a2015803d4fdaaae3f53e21f64996577d7a069eb61c6d2792504f16eb57b @@ -4177,36 +4178,36 @@ package: dependencies: python: '>=3.9' uc-micro-py: '' - url: https://repo.prefix.dev/conda-forge/noarch/linkify-it-py-2.0.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/linkify-it-py-2.0.3-pyhd8ed1ab_1.conda hash: md5: b02fe519b5dc0dc55e7299810fcdfb8e sha256: d975a2015803d4fdaaae3f53e21f64996577d7a069eb61c6d2792504f16eb57b category: dev optional: true - name: llvm-openmp - version: 20.1.6 + version: 20.1.7 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-20.1.6-h024ca30_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/llvm-openmp-20.1.7-h024ca30_0.conda hash: - md5: e4ece7ed81e43ae97a3b58ac4230c3c5 - sha256: 43ad6a0772c0fc554d2712ae00ea788a391a40c494e9c04ec13f4aea17c95ffc + md5: b9c9b2f494533250a9eb7ece830f4422 + sha256: 10f2f6be8ba4c018e1fc741637a8d45c0e58bea96954c25e91fbe4238b7c9f60 category: main optional: false - name: llvm-openmp - version: 20.1.6 + version: 20.1.7 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-20.1.6-h30eaf37_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/llvm-openmp-20.1.7-h30eaf37_0.conda hash: - md5: b95ac67b4a85052c54268ba4b80be753 - sha256: de24f885d918455eb510da054658531bbf69a2bc5ee5945314d0451f375a881d + md5: 6fd1d310402e936aa9aecb065f21cc6b + sha256: 1820ca99e8b126b3c656ff3c527822be8348f6452edcddd91615cba285540f6c category: main optional: false - name: locket @@ -4215,7 +4216,7 @@ package: platform: linux-64 dependencies: python: '>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*' - url: https://repo.prefix.dev/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 91e27ef3d05cc772ce627e51cff111c4 sha256: 9afe0b5cfa418e8bdb30d8917c5a6cec10372b037924916f1f85b9f4899a67a6 @@ -4227,7 +4228,7 @@ package: platform: win-64 dependencies: python: '>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*' - url: https://repo.prefix.dev/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 91e27ef3d05cc772ce627e51cff111c4 sha256: 9afe0b5cfa418e8bdb30d8917c5a6cec10372b037924916f1f85b9f4899a67a6 @@ -4241,7 +4242,7 @@ package: mdurl: '>=0.1,<1' python: '>=3.7' typing_extensions: '>=3.7.4' - url: https://repo.prefix.dev/conda-forge/noarch/markdown-it-py-2.2.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-2.2.0-pyhd8ed1ab_0.conda hash: md5: b2928a6c6d52d7e3562b4a59c3214e3a sha256: 65ed439862c1851463f03a9bc5109992ce3e3e025e9a2d76d13ca19f576eee9f @@ -4255,7 +4256,7 @@ package: mdurl: '>=0.1,<1' python: '>=3.7' typing_extensions: '>=3.7.4' - url: https://repo.prefix.dev/conda-forge/noarch/markdown-it-py-2.2.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-2.2.0-pyhd8ed1ab_0.conda hash: md5: b2928a6c6d52d7e3562b4a59c3214e3a sha256: 65ed439862c1851463f03a9bc5109992ce3e3e025e9a2d76d13ca19f576eee9f @@ -4270,7 +4271,7 @@ package: libgcc: '>=13' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/markupsafe-3.0.2-py312h178313f_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-3.0.2-py312h178313f_1.conda hash: md5: eb227c3e0bf58f5bd69c0532b157975b sha256: 4a6bf68d2a2b669fecc9a4a009abd1cf8e72c2289522ff00d81b5a6e51ae78f5 @@ -4286,7 +4287,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/markupsafe-3.0.2-py312h31fea79_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/markupsafe-3.0.2-py312h31fea79_1.conda hash: md5: 944fdd848abfbd6929e57c790b8174dd sha256: bbb9595fe72231a8fbc8909cfa479af93741ecd2d28dfe37f8f205fef5df2217 @@ -4313,7 +4314,7 @@ package: python-dateutil: '>=2.7' python_abi: 3.12.* tk: '>=8.6.13,<8.7.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/matplotlib-base-3.8.4-py312h20ab3a6_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/matplotlib-base-3.8.4-py312h20ab3a6_2.conda hash: md5: fbfe798f83f0d66410903ad8f40d5283 sha256: a927afa9e4b5cf7889b5a82ef2286b089873f402a0d0e10e6adb4cbf820a4db9 @@ -4340,7 +4341,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/matplotlib-base-3.8.4-py312hfee7060_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/matplotlib-base-3.8.4-py312hfee7060_2.conda hash: md5: 6b623fa66ac3cd1601da60160c46514b sha256: 023644d13bf1fab7c58f4df0d461cd237874802b0e7370ad049463d39d2fb2f4 @@ -4353,7 +4354,7 @@ package: dependencies: python: '>=3.9' traitlets: '' - url: https://repo.prefix.dev/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_1.conda hash: md5: af6ab708897df59bd6e7283ceab1b56b sha256: 69b7dc7131703d3d60da9b0faa6dd8acbf6f6c396224cf6aef3e855b8c0c41c6 @@ -4366,7 +4367,7 @@ package: dependencies: python: '>=3.9' traitlets: '' - url: https://repo.prefix.dev/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_1.conda hash: md5: af6ab708897df59bd6e7283ceab1b56b sha256: 69b7dc7131703d3d60da9b0faa6dd8acbf6f6c396224cf6aef3e855b8c0c41c6 @@ -4378,7 +4379,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda hash: md5: 827064ddfe0de2917fb29f1da4f8f533 sha256: 9b0037171dad0100f0296699a11ae7d355237b55f42f9094aebc0f41512d96a1 @@ -4390,7 +4391,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda hash: md5: 827064ddfe0de2917fb29f1da4f8f533 sha256: 9b0037171dad0100f0296699a11ae7d355237b55f42f9094aebc0f41512d96a1 @@ -4403,7 +4404,7 @@ package: dependencies: markdown-it-py: '>=1.0.0,<4.0.0' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/mdit-py-plugins-0.4.2-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.4.2-pyhd8ed1ab_1.conda hash: md5: af2060041d4f3250a7eb6ab3ec0e549b sha256: c63ed79d9745109c0a70397713b0c07f06e7d3561abcb122cfc80a141ab3b449 @@ -4416,7 +4417,7 @@ package: dependencies: markdown-it-py: '>=1.0.0,<4.0.0' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/mdit-py-plugins-0.4.2-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.4.2-pyhd8ed1ab_1.conda hash: md5: af2060041d4f3250a7eb6ab3ec0e549b sha256: c63ed79d9745109c0a70397713b0c07f06e7d3561abcb122cfc80a141ab3b449 @@ -4428,7 +4429,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_1.conda hash: md5: 592132998493b3ff25fd7479396e8351 sha256: 78c1bbe1723449c52b7a9df1af2ee5f005209f67e40b6e1d3c7619127c43b1c7 @@ -4440,7 +4441,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_1.conda hash: md5: 592132998493b3ff25fd7479396e8351 sha256: 78c1bbe1723449c52b7a9df1af2ee5f005209f67e40b6e1d3c7619127c43b1c7 @@ -4454,7 +4455,7 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' libstdcxx: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/metis-5.1.0-hd0bcaf9_1007.conda + url: https://conda.anaconda.org/conda-forge/linux-64/metis-5.1.0-hd0bcaf9_1007.conda hash: md5: 28eb714416de4eb83e2cbc47e99a1b45 sha256: e8a00971e6d00bd49f375c5d8d005b37a9abba0b1768533aed0f90a422bf5cc7 @@ -4467,7 +4468,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/mistune-3.1.3-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/mistune-3.1.3-pyh29332c3_0.conda hash: md5: 7ec6576e328bc128f4982cd646eeba85 sha256: a67484d7dd11e815a81786580f18b6e4aa2392f292f29183631a6eccc8dc37b3 @@ -4480,7 +4481,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/mistune-3.1.3-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/mistune-3.1.3-pyh29332c3_0.conda hash: md5: 7ec6576e328bc128f4982cd646eeba85 sha256: a67484d7dd11e815a81786580f18b6e4aa2392f292f29183631a6eccc8dc37b3 @@ -4494,7 +4495,7 @@ package: _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 + url: https://conda.anaconda.org/conda-forge/linux-64/mkl-2024.2.2-ha957f24_16.conda hash: md5: 1459379c79dda834673426504d52b319 sha256: 77906b0acead8f86b489da46f53916e624897338770dbf70b04b8f673c9273c1 @@ -4507,14 +4508,14 @@ package: dependencies: intel-openmp: 2024.* tbb: 2021.* - url: https://repo.prefix.dev/conda-forge/win-64/mkl-2024.2.2-h66d3029_15.conda + url: https://conda.anaconda.org/conda-forge/win-64/mkl-2024.2.2-h66d3029_15.conda hash: md5: 302dff2807f2927b3e9e0d19d60121de sha256: 20e52b0389586d0b914a49cd286c5ccc9c47949bed60ca6df004d1d295f2edbd category: main optional: false - name: msgpack-python - version: 1.1.0 + version: 1.1.1 manager: conda platform: linux-64 dependencies: @@ -4523,14 +4524,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://conda.anaconda.org/conda-forge/linux-64/msgpack-python-1.1.1-py312h68727a3_0.conda hash: - md5: 5c9b020a3f86799cdc6115e55df06146 - sha256: 4bc53333774dea1330643b7e23aa34fd6880275737fc2e07491795872d3af8dd + md5: 6998b34027ecc577efe4e42f4b022a98 + sha256: 969b8e50922b592228390c25ac417c0761fd6f98fccad870ac5cc84f35da301a category: main optional: false - name: msgpack-python - version: 1.1.0 + version: 1.1.1 manager: conda platform: win-64 dependencies: @@ -4539,10 +4540,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://conda.anaconda.org/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 @@ -4550,7 +4551,7 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/linux-64/mumps-include-5.7.3-h82cca05_10.conda + url: https://conda.anaconda.org/conda-forge/linux-64/mumps-include-5.7.3-h82cca05_10.conda hash: md5: d6c7d8811686ed912ed4317831dd8c44 sha256: c723d6e331444411db0a871958fc45621758595d12b4d6561fa20324535ce67a @@ -4571,7 +4572,7 @@ package: libscotch: '>=7.0.6,<7.0.7.0a0' metis: '>=5.1.0,<5.1.1.0a0' mumps-include: ==5.7.3 - url: https://repo.prefix.dev/conda-forge/linux-64/mumps-seq-5.7.3-h06cbf8f_10.conda + url: https://conda.anaconda.org/conda-forge/linux-64/mumps-seq-5.7.3-h06cbf8f_10.conda hash: md5: deb3c7cb10d67fde01d264b3d5bc79bc sha256: bf7049864150d714debbe3d89a9db79e3163655c1fbab7b18b1fd613f9e27878 @@ -4588,7 +4589,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/mumps-seq-5.7.3-hbaa6519_10.conda + url: https://conda.anaconda.org/conda-forge/win-64/mumps-seq-5.7.3-hbaa6519_10.conda hash: md5: 5c35d7fd93b2d7cddaa3ce881aadad83 sha256: 6209255427a10879ca3731ec04eecf112e92b617af60c053073c8330928cb8ab @@ -4599,11 +4600,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://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyhd8ed1ab_1.conda hash: - md5: 2ba8498c1018c1e9c61eb99b973dfe19 - sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 + md5: 37293a85a0f4f77bbd9cf7aaefc62609 + sha256: d09c47c2cf456de5c09fa66d2c3c5035aa1fa228a1983a433c47b876aa16ce90 category: main optional: false - name: munkres @@ -4611,11 +4612,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://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyhd8ed1ab_1.conda hash: - md5: 2ba8498c1018c1e9c61eb99b973dfe19 - sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 + md5: 37293a85a0f4f77bbd9cf7aaefc62609 + sha256: d09c47c2cf456de5c09fa66d2c3c5035aa1fa228a1983a433c47b876aa16ce90 category: main optional: false - name: myst-nb @@ -4634,7 +4635,7 @@ package: pyyaml: '' sphinx: '>=5' typing_extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/myst-nb-1.2.0-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/myst-nb-1.2.0-pyh29332c3_0.conda hash: md5: 4f63865e1bb08e05476fa136a2dfe2ac sha256: de3e58d54126fdb667a55921675693fb8eee23757fd3be6116f6565cae710279 @@ -4656,7 +4657,7 @@ package: pyyaml: '' sphinx: '>=5' typing_extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/myst-nb-1.2.0-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/myst-nb-1.2.0-pyh29332c3_0.conda hash: md5: 4f63865e1bb08e05476fa136a2dfe2ac sha256: de3e58d54126fdb667a55921675693fb8eee23757fd3be6116f6565cae710279 @@ -4675,7 +4676,7 @@ package: pyyaml: '' sphinx: '>=5,<7' typing-extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/myst-parser-1.0.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/myst-parser-1.0.0-pyhd8ed1ab_0.conda hash: md5: e559708feb0aed1ae24c518e569ea3eb sha256: 87de591aa423932ffec61e06283bf5c3ba5c0a3cc465955984ce58f1de3ded8e @@ -4694,7 +4695,7 @@ package: pyyaml: '' sphinx: '>=5,<7' typing-extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/myst-parser-1.0.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/myst-parser-1.0.0-pyhd8ed1ab_0.conda hash: md5: e559708feb0aed1ae24c518e569ea3eb sha256: 87de591aa423932ffec61e06283bf5c3ba5c0a3cc465955984ce58f1de3ded8e @@ -4710,7 +4711,7 @@ package: nbformat: '>=5.1' python: '>=3.8' traitlets: '>=5.4' - url: https://repo.prefix.dev/conda-forge/noarch/nbclient-0.10.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/nbclient-0.10.2-pyhd8ed1ab_0.conda hash: md5: 6bb0d77277061742744176ab555b723c sha256: a20cff739d66c2f89f413e4ba4c6f6b59c50d5c30b5f0d840c13e8c9c2df9135 @@ -4726,7 +4727,7 @@ package: nbformat: '>=5.1' python: '>=3.8' traitlets: '>=5.4' - url: https://repo.prefix.dev/conda-forge/noarch/nbclient-0.10.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/nbclient-0.10.2-pyhd8ed1ab_0.conda hash: md5: 6bb0d77277061742744176ab555b723c sha256: a20cff739d66c2f89f413e4ba4c6f6b59c50d5c30b5f0d840c13e8c9c2df9135 @@ -4739,7 +4740,7 @@ package: dependencies: nbconvert-core: ==7.16.6 nbconvert-pandoc: ==7.16.6 - url: https://repo.prefix.dev/conda-forge/noarch/nbconvert-7.16.6-hb482800_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-7.16.6-hb482800_0.conda hash: md5: aa90ea40c80d4bd3da35cb17ed668f22 sha256: 5480b7e05bf3079fcb7357a5a15a96c3a1649cc1371d0c468c806898a7e53088 @@ -4752,7 +4753,7 @@ package: dependencies: nbconvert-core: ==7.16.6 nbconvert-pandoc: ==7.16.6 - url: https://repo.prefix.dev/conda-forge/noarch/nbconvert-7.16.6-hb482800_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-7.16.6-hb482800_0.conda hash: md5: aa90ea40c80d4bd3da35cb17ed668f22 sha256: 5480b7e05bf3079fcb7357a5a15a96c3a1649cc1371d0c468c806898a7e53088 @@ -4779,7 +4780,7 @@ package: pygments: '>=2.4.1' python: '>=3.9' traitlets: '>=5.1' - url: https://repo.prefix.dev/conda-forge/noarch/nbconvert-core-7.16.6-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.16.6-pyh29332c3_0.conda hash: md5: d24beda1d30748afcc87c429454ece1b sha256: dcccb07c5a1acb7dc8be94330e62d54754c0e9c9cb2bb6865c8e3cfe44cf5a58 @@ -4806,7 +4807,7 @@ package: pygments: '>=2.4.1' python: '>=3.9' traitlets: '>=5.1' - url: https://repo.prefix.dev/conda-forge/noarch/nbconvert-core-7.16.6-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.16.6-pyh29332c3_0.conda hash: md5: d24beda1d30748afcc87c429454ece1b sha256: dcccb07c5a1acb7dc8be94330e62d54754c0e9c9cb2bb6865c8e3cfe44cf5a58 @@ -4819,7 +4820,7 @@ package: dependencies: nbconvert-core: ==7.16.6 pandoc: '' - url: https://repo.prefix.dev/conda-forge/noarch/nbconvert-pandoc-7.16.6-hed9df3c_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-pandoc-7.16.6-hed9df3c_0.conda hash: md5: 5b0afb6c52e74a7eca2cf809a874acf4 sha256: 1e8923f1557c2ddb7bba915033cfaf8b8c1b7462c745172458102c11caee1002 @@ -4832,7 +4833,7 @@ package: dependencies: nbconvert-core: ==7.16.6 pandoc: '' - url: https://repo.prefix.dev/conda-forge/noarch/nbconvert-pandoc-7.16.6-hed9df3c_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-pandoc-7.16.6-hed9df3c_0.conda hash: md5: 5b0afb6c52e74a7eca2cf809a874acf4 sha256: 1e8923f1557c2ddb7bba915033cfaf8b8c1b7462c745172458102c11caee1002 @@ -4848,7 +4849,7 @@ package: python: '>=3.9' python-fastjsonschema: '>=2.15' traitlets: '>=5.1' - url: https://repo.prefix.dev/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_1.conda hash: md5: bbe1963f1e47f594070ffe87cdf612ea sha256: 7a5bd30a2e7ddd7b85031a5e2e14f290898098dc85bea5b3a5bf147c25122838 @@ -4864,7 +4865,7 @@ package: python: '>=3.9' python-fastjsonschema: '>=2.15' traitlets: '>=5.1' - url: https://repo.prefix.dev/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_1.conda hash: md5: bbe1963f1e47f594070ffe87cdf612ea sha256: 7a5bd30a2e7ddd7b85031a5e2e14f290898098dc85bea5b3a5bf147c25122838 @@ -4877,7 +4878,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda hash: md5: 47e340acb35de30501a76c7c799c41d7 sha256: 3fde293232fa3fca98635e1167de6b7c7fda83caf24b9d6c91ec9eefb4f4d586 @@ -4889,7 +4890,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_1.conda hash: md5: 598fd7d4d0de2455fb74f56063969a97 sha256: bb7b21d7fd0445ddc0631f64e66d91a179de4ba920b8381f29b9d006a42788c0 @@ -4901,7 +4902,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_1.conda hash: md5: 598fd7d4d0de2455fb74f56063969a97 sha256: bb7b21d7fd0445ddc0631f64e66d91a179de4ba920b8381f29b9d006a42788c0 @@ -4918,7 +4919,7 @@ package: notebook-shim: '>=0.2,<0.3' python: '>=3.9' tornado: '>=6.2.0' - url: https://repo.prefix.dev/conda-forge/noarch/notebook-7.4.3-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/notebook-7.4.3-pyhd8ed1ab_0.conda hash: md5: f0b767b717cab652712d29f5e4699b2a sha256: aea1b33b734e809bd090f0bae47f4bca5da406f7bc7dd65a67b565f03c740866 @@ -4935,7 +4936,7 @@ package: notebook-shim: '>=0.2,<0.3' python: '>=3.9' tornado: '>=6.2.0' - url: https://repo.prefix.dev/conda-forge/noarch/notebook-7.4.3-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/notebook-7.4.3-pyhd8ed1ab_0.conda hash: md5: f0b767b717cab652712d29f5e4699b2a sha256: aea1b33b734e809bd090f0bae47f4bca5da406f7bc7dd65a67b565f03c740866 @@ -4948,7 +4949,7 @@ package: dependencies: jupyter_server: '>=1.8,<3' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/notebook-shim-0.2.4-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/notebook-shim-0.2.4-pyhd8ed1ab_1.conda hash: md5: e7f89ea5f7ea9401642758ff50a2d9c1 sha256: 7b920e46b9f7a2d2aa6434222e5c8d739021dbc5cc75f32d124a8191d86f9056 @@ -4961,7 +4962,7 @@ package: dependencies: jupyter_server: '>=1.8,<3' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/notebook-shim-0.2.4-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/notebook-shim-0.2.4-pyhd8ed1ab_1.conda hash: md5: e7f89ea5f7ea9401642758ff50a2d9c1 sha256: 7b920e46b9f7a2d2aa6434222e5c8d739021dbc5cc75f32d124a8191d86f9056 @@ -4980,7 +4981,7 @@ package: numpy: '>=1.24' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/numcodecs-0.15.1-py312hf9745cd_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/numcodecs-0.15.1-py312hf9745cd_0.conda hash: md5: 8a1f88d4985ee1c16b0db1af39a8554d sha256: 209a84599e36db68865dce5618c3328a2d57267d339255204815885b220a20f2 @@ -4999,7 +5000,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/numcodecs-0.15.1-py312h72972c8_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/numcodecs-0.15.1-py312h72972c8_0.conda hash: md5: bba8bf88b520170565f2f51e99926683 sha256: ce01a82077b12bffd6c3e5281f02bc6a690a8e0e3750c44e3c624c68f6a70d9e @@ -5017,7 +5018,7 @@ package: libstdcxx-ng: '>=12' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/numpy-1.26.4-py312heda63a1_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/numpy-1.26.4-py312heda63a1_0.conda hash: md5: d8285bea2a350f63fab23bf460221f3f sha256: fe3459c75cf84dcef6ef14efcc4adb0ade66038ddd27cadb894f34f4797687d8 @@ -5036,7 +5037,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/numpy-1.26.4-py312h8753938_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/numpy-1.26.4-py312h8753938_0.conda hash: md5: f9ac74c3b07c396014434aca1e58d362 sha256: 73570817a5109d396b4ebbe5124a89525959269fd33fa33fd413700289fbe0ef @@ -5053,7 +5054,7 @@ package: libstdcxx: '>=13' libtiff: '>=4.7.0,<4.8.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/openjpeg-2.5.3-h5fbd93e_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.3-h5fbd93e_0.conda hash: md5: 9e5816bc95d285c115a3ebc2f8563564 sha256: 5bee706ea5ba453ed7fd9da7da8380dd88b865c8d30b5aaec14d2b6dd32dbc39 @@ -5070,7 +5071,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/openjpeg-2.5.3-h4d64b90_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/openjpeg-2.5.3-h4d64b90_0.conda hash: md5: fc050366dd0b8313eb797ed1ffef3a29 sha256: 410175815df192f57a07c29a6b3fdd4231937173face9e63f0830c1234272ce3 @@ -5084,7 +5085,7 @@ 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_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.5.0-h7b32b05_1.conda hash: md5: de356753cfdbffcde5bb1e86e3aa6cd0 sha256: b4491077c494dbf0b5eaa6d87738c22f2154e9277e5293175ec187634bd808a0 @@ -5099,7 +5100,7 @@ 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_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/openssl-3.5.0-ha4e3fda_1.conda hash: md5: 72c07e46b6766bb057018a9a74861b89 sha256: 02846553d2a4c9bde850c60824d0f02803eb9c9b674d5c1a8cce25bc387e748f @@ -5112,7 +5113,7 @@ package: dependencies: python: '>=3.9' typing_utils: '' - url: https://repo.prefix.dev/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_1.conda hash: md5: e51f1e4089cad105b6cac64bd8166587 sha256: 1840bd90d25d4930d60f57b4f38d4e0ae3f5b8db2819638709c36098c6ba770c @@ -5125,7 +5126,7 @@ package: dependencies: python: '>=3.9' typing_utils: '' - url: https://repo.prefix.dev/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_1.conda hash: md5: e51f1e4089cad105b6cac64bd8166587 sha256: 1840bd90d25d4930d60f57b4f38d4e0ae3f5b8db2819638709c36098c6ba770c @@ -5137,7 +5138,7 @@ package: platform: linux-64 dependencies: python: '>=3.8' - url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda hash: md5: 58335b26c38bf4a20f399384c33cbcf9 sha256: 289861ed0c13a15d7bbb408796af4de72c2fe67e2bcb0de98f4c3fce259d7991 @@ -5149,7 +5150,7 @@ package: platform: win-64 dependencies: python: '>=3.8' - url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda hash: md5: 58335b26c38bf4a20f399384c33cbcf9 sha256: 289861ed0c13a15d7bbb408796af4de72c2fe67e2bcb0de98f4c3fce259d7991 @@ -5169,7 +5170,7 @@ package: python-tzdata: '>=2022.7' python_abi: 3.12.* pytz: '>=2020.1' - url: https://repo.prefix.dev/conda-forge/linux-64/pandas-2.3.0-py312hf9745cd_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/pandas-2.3.0-py312hf9745cd_0.conda hash: md5: ac82ac336dbe61106e21fb2e11704459 sha256: 44f5587c1e1a9f0257387dd18735bcf65a67a6089e723302dc7947be09d9affe @@ -5189,7 +5190,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/pandas-2.3.0-py312h72972c8_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/pandas-2.3.0-py312h72972c8_0.conda hash: md5: e2ab2d8cc52281c9ebe19451936802eb sha256: e4c8a685cfa1334a566b642523c9584d79ba78ed05888c7b7809d9116b6e9e25 @@ -5200,7 +5201,7 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/linux-64/pandoc-3.7.0.2-ha770c72_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/pandoc-3.7.0.2-ha770c72_0.conda hash: md5: db0c1632047d38997559ce2c4741dd91 sha256: 243c49b34caa9328e9d5f62c98be9eb046be8fee9836854b88d9022ce8013497 @@ -5211,7 +5212,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/win-64/pandoc-3.7.0.2-h57928b3_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/pandoc-3.7.0.2-h57928b3_0.conda hash: md5: a77c859d9469f24691d6c6590b56fa45 sha256: 7fff0deca558c5ab6c836127481decbec83c0add3a0ab2b81d1f10130146c357 @@ -5223,7 +5224,7 @@ package: platform: linux-64 dependencies: python: '!=3.0,!=3.1,!=3.2,!=3.3' - url: https://repo.prefix.dev/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 457c2c8c08e54905d6954e79cb5b5db9 sha256: 2bb9ba9857f4774b85900c2562f7e711d08dd48e2add9bee4e1612fbee27e16f @@ -5235,7 +5236,7 @@ package: platform: win-64 dependencies: python: '!=3.0,!=3.1,!=3.2,!=3.3' - url: https://repo.prefix.dev/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 457c2c8c08e54905d6954e79cb5b5db9 sha256: 2bb9ba9857f4774b85900c2562f7e711d08dd48e2add9bee4e1612fbee27e16f @@ -5247,7 +5248,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_1.conda hash: md5: 5c092057b6badd30f75b06244ecd01c9 sha256: 17131120c10401a99205fc6fe436e7903c0fa092f1b3e80452927ab377239bcc @@ -5259,7 +5260,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_1.conda hash: md5: 5c092057b6badd30f75b06244ecd01c9 sha256: 17131120c10401a99205fc6fe436e7903c0fa092f1b3e80452927ab377239bcc @@ -5273,7 +5274,7 @@ package: locket: '' python: '>=3.9' toolz: '' - url: https://repo.prefix.dev/conda-forge/noarch/partd-1.4.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/partd-1.4.2-pyhd8ed1ab_0.conda hash: md5: 0badf9c54e24cecfb0ad2f99d680c163 sha256: 472fc587c63ec4f6eba0cc0b06008a6371e0a08a5986de3cf4e8024a47b4fe6c @@ -5287,7 +5288,7 @@ package: locket: '' python: '>=3.9' toolz: '' - url: https://repo.prefix.dev/conda-forge/noarch/partd-1.4.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/partd-1.4.2-pyhd8ed1ab_0.conda hash: md5: 0badf9c54e24cecfb0ad2f99d680c163 sha256: 472fc587c63ec4f6eba0cc0b06008a6371e0a08a5986de3cf4e8024a47b4fe6c @@ -5300,7 +5301,7 @@ package: dependencies: ptyprocess: '>=0.5' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_1.conda hash: md5: d0d408b1f18883a944376da5cf8101ea sha256: 202af1de83b585d36445dc1fda94266697341994d1a3328fabde4989e1b3d07a @@ -5312,7 +5313,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pickleshare-0.7.5-pyhd8ed1ab_1004.conda + url: https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-pyhd8ed1ab_1004.conda hash: md5: 11a9d1d09a3615fc07c3faf79bc0b943 sha256: e2ac3d66c367dada209fc6da43e645672364b9fd5f9d28b9f016e24b81af475b @@ -5324,7 +5325,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pickleshare-0.7.5-pyhd8ed1ab_1004.conda + url: https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-pyhd8ed1ab_1004.conda hash: md5: 11a9d1d09a3615fc07c3faf79bc0b943 sha256: e2ac3d66c367dada209fc6da43e645672364b9fd5f9d28b9f016e24b81af475b @@ -5347,7 +5348,7 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* tk: '>=8.6.13,<8.7.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/pillow-10.3.0-py312h287a98d_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/pillow-10.3.0-py312h287a98d_1.conda hash: md5: b1325cda3f250f9f842180607054e6ed sha256: e1a2426f23535fc15e577d799685229a93117b645734e5cca60597bb23cef09e @@ -5372,7 +5373,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/pillow-10.3.0-py312h381445a_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/pillow-10.3.0-py312h381445a_1.conda hash: md5: 04c1de8505791c12db1a0374f12e6e01 sha256: 2bd6e58a0630fdb9a52f532ce582907babc725930e1ba784c7cd74063f28d073 @@ -5386,7 +5387,7 @@ package: python: '>=3.9,<3.13.0a0' setuptools: '' wheel: '' - url: https://repo.prefix.dev/conda-forge/noarch/pip-25.1.1-pyh8b19718_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pip-25.1.1-pyh8b19718_0.conda hash: md5: 32d0781ace05105cc99af55d36cbec7c sha256: ebfa591d39092b111b9ebb3210eb42251be6da89e26c823ee03e5e838655a43e @@ -5400,7 +5401,7 @@ package: python: '>=3.9,<3.13.0a0' setuptools: '' wheel: '' - url: https://repo.prefix.dev/conda-forge/noarch/pip-25.1.1-pyh8b19718_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pip-25.1.1-pyh8b19718_0.conda hash: md5: 32d0781ace05105cc99af55d36cbec7c sha256: ebfa591d39092b111b9ebb3210eb42251be6da89e26c823ee03e5e838655a43e @@ -5412,7 +5413,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_2.conda + url: https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_2.conda hash: md5: 5a5870a74432aa332f7d32180633ad05 sha256: adb2dde5b4f7da70ae81309cce6188ed3286ff280355cf1931b45d91164d2ad8 @@ -5424,7 +5425,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_2.conda + url: https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_2.conda hash: md5: 5a5870a74432aa332f7d32180633ad05 sha256: adb2dde5b4f7da70ae81309cce6188ed3286ff280355cf1931b45d91164d2ad8 @@ -5436,7 +5437,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.3.8-pyhe01879c_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.8-pyhe01879c_0.conda hash: md5: 424844562f5d337077b445ec6b1398a7 sha256: 0f48999a28019c329cd3f6fd2f01f09fc32cc832f7d6bbe38087ddac858feaa3 @@ -5448,7 +5449,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.3.8-pyhe01879c_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.8-pyhe01879c_0.conda hash: md5: 424844562f5d337077b445ec6b1398a7 sha256: 0f48999a28019c329cd3f6fd2f01f09fc32cc832f7d6bbe38087ddac858feaa3 @@ -5460,7 +5461,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda hash: md5: 7da7ccd349dbf6487a7778579d2bb971 sha256: a8eb555eef5063bbb7ba06a379fa7ea714f57d9741fe0efdb9442dbbc2cccbcc @@ -5472,7 +5473,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda hash: md5: 7da7ccd349dbf6487a7778579d2bb971 sha256: a8eb555eef5063bbb7ba06a379fa7ea714f57d9741fe0efdb9442dbbc2cccbcc @@ -5484,7 +5485,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/prometheus_client-0.22.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.22.1-pyhd8ed1ab_0.conda hash: md5: c64b77ccab10b822722904d889fa83b5 sha256: 454e2c0ef14accc888dd2cd2e8adb8c6a3a607d2d3c2f93962698b5718e6176d @@ -5496,7 +5497,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/prometheus_client-0.22.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.22.1-pyhd8ed1ab_0.conda hash: md5: c64b77ccab10b822722904d889fa83b5 sha256: 454e2c0ef14accc888dd2cd2e8adb8c6a3a607d2d3c2f93962698b5718e6176d @@ -5509,7 +5510,7 @@ package: dependencies: python: '>=3.9' wcwidth: '' - url: https://repo.prefix.dev/conda-forge/noarch/prompt-toolkit-3.0.51-pyha770c72_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.51-pyha770c72_0.conda hash: md5: d17ae9db4dc594267181bd199bf9a551 sha256: ebc1bb62ac612af6d40667da266ff723662394c0ca78935340a5b5c14831227b @@ -5522,7 +5523,7 @@ package: dependencies: python: '>=3.9' wcwidth: '' - url: https://repo.prefix.dev/conda-forge/noarch/prompt-toolkit-3.0.51-pyha770c72_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.51-pyha770c72_0.conda hash: md5: d17ae9db4dc594267181bd199bf9a551 sha256: ebc1bb62ac612af6d40667da266ff723662394c0ca78935340a5b5c14831227b @@ -5537,7 +5538,7 @@ package: libgcc: '>=13' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/psutil-7.0.0-py312h66e93f0_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/psutil-7.0.0-py312h66e93f0_0.conda hash: md5: 8e30db4239508a538e4a3b3cdf5b9616 sha256: 158047d7a80e588c846437566d0df64cec5b0284c7184ceb4f3c540271406888 @@ -5553,7 +5554,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/psutil-7.0.0-py312h4389bb4_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/psutil-7.0.0-py312h4389bb4_0.conda hash: md5: f5b86d6e2e645ee276febe79a310b640 sha256: 088451ee2c9a349e1168f70afe275e58f86350faffb09c032cff76f97d4fb7bb @@ -5566,7 +5567,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda + url: https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda hash: md5: b3c17d95b5a10c6e64a21fa17573e70e sha256: 9c88f8c64590e9567c6c80823f0328e58d3b1efb0e1c539c0315ceca764e0973 @@ -5580,7 +5581,7 @@ package: libgcc: '>=13' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' ucrt: '>=10.0.20348.0' - url: https://repo.prefix.dev/conda-forge/win-64/pthread-stubs-0.4-h0e40799_1002.conda + url: https://conda.anaconda.org/conda-forge/win-64/pthread-stubs-0.4-h0e40799_1002.conda hash: md5: 3c8f2573569bb816483e5cf57efbbe29 sha256: 7e446bafb4d692792310ed022fe284e848c6a868c861655a92435af7368bae7b @@ -5592,7 +5593,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/ptyprocess-0.7.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd8ed1ab_1.conda hash: md5: 7d9daffbb8d8e0af0f769dbbcd173a54 sha256: a7713dfe30faf17508ec359e0bc7e0983f5d94682492469bd462cdaae9c64d83 @@ -5604,7 +5605,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda hash: md5: 3bfdfb8dbcdc4af1ae3f9a8eb3948f04 sha256: 71bd24600d14bb171a6321d523486f6a06f855e75e547fa0cb2a0953b02047f0 @@ -5616,7 +5617,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda hash: md5: 3bfdfb8dbcdc4af1ae3f9a8eb3948f04 sha256: 71bd24600d14bb171a6321d523486f6a06f855e75e547fa0cb2a0953b02047f0 @@ -5632,7 +5633,7 @@ package: pyyaml: '>=3.01' setuptools: '' six: '' - url: https://repo.prefix.dev/conda-forge/noarch/pybtex-0.24.0-pyhd8ed1ab_3.conda + url: https://conda.anaconda.org/conda-forge/noarch/pybtex-0.24.0-pyhd8ed1ab_3.conda hash: md5: 556a52a96313364aa79990ed1337b9a5 sha256: c87615fcc7327c5dcc247f309731c98f7b9867a48e6265e9584af6dc8cd82345 @@ -5648,7 +5649,7 @@ package: pyyaml: '>=3.01' setuptools: '' six: '' - url: https://repo.prefix.dev/conda-forge/noarch/pybtex-0.24.0-pyhd8ed1ab_3.conda + url: https://conda.anaconda.org/conda-forge/noarch/pybtex-0.24.0-pyhd8ed1ab_3.conda hash: md5: 556a52a96313364aa79990ed1337b9a5 sha256: c87615fcc7327c5dcc247f309731c98f7b9867a48e6265e9584af6dc8cd82345 @@ -5664,7 +5665,7 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* setuptools: '' - url: https://repo.prefix.dev/conda-forge/linux-64/pybtex-docutils-1.0.3-py312h7900ff3_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/pybtex-docutils-1.0.3-py312h7900ff3_2.conda hash: md5: 0472f87b9dc0b1db7b501f4d814ba90b sha256: bf9c8f4c5282d46ce54bd2c6837fa5ff7a1c112382be3d13a7a0ae038d92b7c7 @@ -5680,7 +5681,7 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* setuptools: '' - url: https://repo.prefix.dev/conda-forge/win-64/pybtex-docutils-1.0.3-py312h2e8e312_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/pybtex-docutils-1.0.3-py312h2e8e312_2.conda hash: md5: 3bd0fdb9f643c218de4a0db9d72e734f sha256: 2118403f158511cd869ac5cfe1d8a4bb50b4a6b7a0f181272909f0e4f60cf91b @@ -5692,7 +5693,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda hash: md5: 12c566707c80111f9799308d9e265aef sha256: 79db7928d13fab2d892592223d7570f5061c192f27b9febd1a418427b719acc6 @@ -5704,14 +5705,14 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda hash: md5: 12c566707c80111f9799308d9e265aef sha256: 79db7928d13fab2d892592223d7570f5061c192f27b9febd1a418427b719acc6 category: main optional: false - name: pydantic - version: 2.11.4 + version: 2.11.7 manager: conda platform: linux-64 dependencies: @@ -5721,14 +5722,14 @@ package: typing-extensions: '>=4.6.1' typing-inspection: '>=0.4.0' typing_extensions: '>=4.12.2' - url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.4-pyh3cfb1c2_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.11.7-pyh3cfb1c2_0.conda hash: - md5: 8ad3ad8db5ce2ba470c9facc37af00a9 - sha256: a522473505ac6a9c10bb304d7338459a406ba22a6d3bb1a355c1b5283553a372 + md5: 1b337e3d378cde62889bb735c024b7a2 + sha256: ee7823e8bc227f804307169870905ce062531d36c1dcf3d431acd65c6e0bd674 category: main optional: false - name: pydantic - version: 2.11.4 + version: 2.11.7 manager: conda platform: win-64 dependencies: @@ -5738,10 +5739,10 @@ package: typing-extensions: '>=4.6.1' typing-inspection: '>=0.4.0' typing_extensions: '>=4.12.2' - url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.4-pyh3cfb1c2_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.11.7-pyh3cfb1c2_0.conda hash: - md5: 8ad3ad8db5ce2ba470c9facc37af00a9 - sha256: a522473505ac6a9c10bb304d7338459a406ba22a6d3bb1a355c1b5283553a372 + md5: 1b337e3d378cde62889bb735c024b7a2 + sha256: ee7823e8bc227f804307169870905ce062531d36c1dcf3d431acd65c6e0bd674 category: main optional: false - name: pydantic-core @@ -5754,7 +5755,7 @@ 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.2-py312h680f630_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/pydantic-core-2.33.2-py312h680f630_0.conda hash: md5: cfbd96e5a0182dfb4110fc42dda63e57 sha256: 4d14d7634c8f351ff1e63d733f6bb15cba9a0ec77e468b0de9102014a4ddc103 @@ -5771,7 +5772,7 @@ 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.2-py312h8422cdd_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/pydantic-core-2.33.2-py312h8422cdd_0.conda hash: md5: c61e3f191da309117e0b0478b49f6e91 sha256: f377214abd06f1870011a6068b10c9e23dc62065d4c2de13b2f0a6014636e0ae @@ -5791,7 +5792,7 @@ package: python: '>=3.9' sphinx: '>=5.0' typing_extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/pydata-sphinx-theme-0.15.4-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pydata-sphinx-theme-0.15.4-pyhd8ed1ab_0.conda hash: md5: c7c50dd5192caa58a05e6a4248a27acb sha256: 5ec877142ded763061e114e787a4e201c2fb3f0b1db2f04ace610a1187bb34ae @@ -5811,7 +5812,7 @@ package: python: '>=3.9' sphinx: '>=5.0' typing_extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/pydata-sphinx-theme-0.15.4-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pydata-sphinx-theme-0.15.4-pyhd8ed1ab_0.conda hash: md5: c7c50dd5192caa58a05e6a4248a27acb sha256: 5ec877142ded763061e114e787a4e201c2fb3f0b1db2f04ace610a1187bb34ae @@ -5829,7 +5830,7 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* scipy: '>=0.13' - url: https://repo.prefix.dev/conda-forge/linux-64/pydiso-0.1.2-py312h772f2df_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/pydiso-0.1.2-py312h772f2df_0.conda hash: md5: f0af4a616cc1358e6ad9477ddcbbaea3 sha256: 158bd81f3ddd52e613ec54d0c680d6d0f7c87a461ee75bd26a7fc07890cf40f0 @@ -5848,7 +5849,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/pydiso-0.1.2-py312h01acb21_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/pydiso-0.1.2-py312h01acb21_0.conda hash: md5: 14fd07b07c4819cd08beed7fbda91712 sha256: 4b8daf7934b7f3458bd0e3faeb5cd378fb3f5dc19840f71c7f23fe6a0b7c0849 @@ -5860,7 +5861,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda hash: md5: 232fb4577b6687b2d503ef8e254270c9 sha256: 28a3e3161390a9d23bc02b4419448f8d27679d9e2c250e29849e37749c8de86b @@ -5872,7 +5873,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda hash: md5: 232fb4577b6687b2d503ef8e254270c9 sha256: 28a3e3161390a9d23bc02b4419448f8d27679d9e2c250e29849e37749c8de86b @@ -5893,7 +5894,7 @@ 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.7-pyhe01879c_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pylint-3.3.7-pyhe01879c_0.conda hash: md5: fad6b90165dcf39e3ac79de5dbc030a8 sha256: 6a1dc262763220c9dc046400d8655ebe58ad4d81e872be7264af5137f906e220 @@ -5914,7 +5915,7 @@ 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.7-pyhe01879c_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pylint-3.3.7-pyhe01879c_0.conda hash: md5: fad6b90165dcf39e3ac79de5dbc030a8 sha256: 6a1dc262763220c9dc046400d8655ebe58ad4d81e872be7264af5137f906e220 @@ -5930,7 +5931,7 @@ package: pydiso: '>=0.1' python: '>=3.10' scipy: '>=1.8' - url: https://repo.prefix.dev/conda-forge/noarch/pymatsolver-0.3.1-pyh48887ae_201.conda + url: https://conda.anaconda.org/conda-forge/noarch/pymatsolver-0.3.1-pyh48887ae_201.conda hash: md5: b6805e522702eabf2ebbd236490d5eed sha256: d49ad9b58b9eeae204a3677cafc389c00c7f0f830ef76f481ab9aaf3e0260bad @@ -5946,7 +5947,7 @@ package: pydiso: '>=0.1' python: '>=3.10' scipy: '>=1.8' - url: https://repo.prefix.dev/conda-forge/noarch/pymatsolver-0.3.1-pyh48887ae_201.conda + url: https://conda.anaconda.org/conda-forge/noarch/pymatsolver-0.3.1-pyh48887ae_201.conda hash: md5: b6805e522702eabf2ebbd236490d5eed sha256: d49ad9b58b9eeae204a3677cafc389c00c7f0f830ef76f481ab9aaf3e0260bad @@ -5958,7 +5959,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pyparsing-3.2.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.2.3-pyhd8ed1ab_1.conda hash: md5: 513d3c262ee49b54a8fec85c5bc99764 sha256: b92afb79b52fcf395fd220b29e0dd3297610f2059afac45298d44e00fcbf23b6 @@ -5970,7 +5971,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pyparsing-3.2.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.2.3-pyhd8ed1ab_1.conda hash: md5: 513d3c262ee49b54a8fec85c5bc99764 sha256: b92afb79b52fcf395fd220b29e0dd3297610f2059afac45298d44e00fcbf23b6 @@ -5983,7 +5984,7 @@ package: dependencies: __unix: '' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pysocks-1.7.1-pyha55dd90_7.conda + url: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha55dd90_7.conda hash: md5: 461219d1a5bd61342293efa2c0c90eac sha256: ba3b032fa52709ce0d9fd388f63d330a026754587a2f461117cac9ab73d8d0d8 @@ -5997,14 +5998,14 @@ package: __win: '' python: '>=3.9' win_inet_pton: '' - url: https://repo.prefix.dev/conda-forge/noarch/pysocks-1.7.1-pyh09c184e_7.conda + url: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyh09c184e_7.conda hash: md5: e2fd202833c4a981ce8a65974fe4abd1 sha256: d016e04b0e12063fbee4a2d5fbb9b39a8d191b5a0042f0b8459188aedeabb0ca category: main optional: false - name: pytest - version: 8.4.0 + version: 8.4.1 manager: conda platform: linux-64 dependencies: @@ -6016,14 +6017,14 @@ package: pygments: '>=2.7.2' python: '>=3.9' tomli: '>=1' - url: https://repo.prefix.dev/conda-forge/noarch/pytest-8.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pytest-8.4.1-pyhd8ed1ab_0.conda hash: - md5: 516d31f063ce7e49ced17f105b63a1f1 - sha256: f8c5a65ff4216f7c0a9be1708be1ee1446ad678da5a01eeb2437551156e32a06 + md5: a49c2283f24696a7b30367b7346a0144 + sha256: 93e267e4ec35353e81df707938a6527d5eb55c97bf54c3b87229b69523afb59d category: dev optional: true - name: pytest - version: 8.4.0 + version: 8.4.1 manager: conda platform: win-64 dependencies: @@ -6035,14 +6036,14 @@ package: pygments: '>=2.7.2' python: '>=3.9' tomli: '>=1' - url: https://repo.prefix.dev/conda-forge/noarch/pytest-8.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pytest-8.4.1-pyhd8ed1ab_0.conda hash: - md5: 516d31f063ce7e49ced17f105b63a1f1 - sha256: f8c5a65ff4216f7c0a9be1708be1ee1446ad678da5a01eeb2437551156e32a06 + md5: a49c2283f24696a7b30367b7346a0144 + sha256: 93e267e4ec35353e81df707938a6527d5eb55c97bf54c3b87229b69523afb59d category: dev optional: true - name: pytest-cov - version: 6.1.1 + version: 6.2.1 manager: conda platform: linux-64 dependencies: @@ -6050,14 +6051,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://conda.anaconda.org/conda-forge/noarch/pytest-cov-6.2.1-pyhd8ed1ab_0.conda hash: - md5: 1e35d8f975bc0e984a19819aa91c440a - sha256: 9961a1524f63d10bc29efdc52013ec06b0e95fb2619a250e250ff3618261d5cd + md5: ce978e1b9ed8b8d49164e90a5cdc94cd + sha256: 3a9fc07be76bc67aef355b78816b5117bfe686e7d8c6f28b45a1f89afe104761 category: dev optional: true - name: pytest-cov - version: 6.1.1 + version: 6.2.1 manager: conda platform: win-64 dependencies: @@ -6065,10 +6066,10 @@ package: pytest: '>=4.6' python: '>=3.9' toml: '' - url: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-6.1.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/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 @@ -6094,7 +6095,7 @@ 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.11-h9e4cc4f_0_cpython.conda + url: https://conda.anaconda.org/conda-forge/linux-64/python-3.12.11-h9e4cc4f_0_cpython.conda hash: md5: 94206474a5608243a10c92cefbe0908f sha256: 6cca004806ceceea9585d4d655059e951152fc774a471593d4f5138e6a54c81d @@ -6118,7 +6119,7 @@ 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.11-h3f84c4b_0_cpython.conda + url: https://conda.anaconda.org/conda-forge/win-64/python-3.12.11-h3f84c4b_0_cpython.conda hash: md5: 6aa5e62df29efa6319542ae5025f4376 sha256: b69412e64971b5da3ced0fc36f05d0eacc9393f2084c6f92b8f28ee068d83e2e @@ -6131,7 +6132,7 @@ package: dependencies: python: '>=3.9' six: '>=1.5' - url: https://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda hash: md5: 5ba79d7c71f03c678c8ead841f347d6e sha256: a50052536f1ef8516ed11a844f9413661829aa083304dc624c5925298d078d79 @@ -6144,7 +6145,7 @@ package: dependencies: python: '>=3.9' six: '>=1.5' - url: https://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda hash: md5: 5ba79d7c71f03c678c8ead841f347d6e sha256: a50052536f1ef8516ed11a844f9413661829aa083304dc624c5925298d078d79 @@ -6156,7 +6157,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/python-fastjsonschema-2.21.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.21.1-pyhd8ed1ab_0.conda hash: md5: 38e34d2d1d9dca4fb2b9a0a04f604e2c sha256: 1b09a28093071c1874862422696429d0d35bd0b8420698003ac004746c5e82a2 @@ -6168,7 +6169,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/python-fastjsonschema-2.21.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.21.1-pyhd8ed1ab_0.conda hash: md5: 38e34d2d1d9dca4fb2b9a0a04f604e2c sha256: 1b09a28093071c1874862422696429d0d35bd0b8420698003ac004746c5e82a2 @@ -6180,7 +6181,7 @@ package: platform: linux-64 dependencies: python: '>=3.6' - url: https://repo.prefix.dev/conda-forge/noarch/python-json-logger-2.0.7-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/python-json-logger-2.0.7-pyhd8ed1ab_0.conda hash: md5: a61bf9ec79426938ff785eb69dbb1960 sha256: 4790787fe1f4e8da616edca4acf6a4f8ed4e7c6967aa31b920208fc8f95efcca @@ -6192,7 +6193,7 @@ package: platform: win-64 dependencies: python: '>=3.6' - url: https://repo.prefix.dev/conda-forge/noarch/python-json-logger-2.0.7-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/python-json-logger-2.0.7-pyhd8ed1ab_0.conda hash: md5: a61bf9ec79426938ff785eb69dbb1960 sha256: 4790787fe1f4e8da616edca4acf6a4f8ed4e7c6967aa31b920208fc8f95efcca @@ -6210,7 +6211,7 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* scipy: '>=1.8' - url: https://repo.prefix.dev/conda-forge/linux-64/python-mumps-0.0.3-py312h6ad3ee3_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/python-mumps-0.0.3-py312h6ad3ee3_0.conda hash: md5: 8755e9f1fee9ef390542f834aad6f85e sha256: a5897ce6cd551999957b11da404a16b362e5f761493560c1d68fb93b63bbe031 @@ -6229,7 +6230,7 @@ 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-mumps-0.0.3-py312h8095395_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/python-mumps-0.0.3-py312h8095395_0.conda hash: md5: 7945c283a26d63be8f8a364bbd721099 sha256: 0e518ca1714fa781ffb92ca2e90fd0f12a6033ab79f7013e22fdc4a82e2eee0f @@ -6241,7 +6242,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/python-tzdata-2025.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2025.2-pyhd8ed1ab_0.conda hash: md5: 88476ae6ebd24f39261e0854ac244f33 sha256: e8392a8044d56ad017c08fec2b0eb10ae3d1235ac967d0aab8bd7b41c4a5eaf0 @@ -6253,7 +6254,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/python-tzdata-2025.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2025.2-pyhd8ed1ab_0.conda hash: md5: 88476ae6ebd24f39261e0854ac244f33 sha256: e8392a8044d56ad017c08fec2b0eb10ae3d1235ac967d0aab8bd7b41c4a5eaf0 @@ -6264,7 +6265,7 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/noarch/python_abi-3.12-7_cp312.conda + url: https://conda.anaconda.org/conda-forge/noarch/python_abi-3.12-7_cp312.conda hash: md5: 0dfcdc155cf23812a0c9deada86fb723 sha256: a1bbced35e0df66cc713105344263570e835625c28d1bdee8f748f482b2d7793 @@ -6275,7 +6276,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/noarch/python_abi-3.12-7_cp312.conda + url: https://conda.anaconda.org/conda-forge/noarch/python_abi-3.12-7_cp312.conda hash: md5: 0dfcdc155cf23812a0c9deada86fb723 sha256: a1bbced35e0df66cc713105344263570e835625c28d1bdee8f748f482b2d7793 @@ -6287,7 +6288,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda hash: md5: bc8e3267d44011051f2eb14d22fb0960 sha256: 8d2a8bf110cc1fc3df6904091dead158ba3e614d8402a83e51ed3a8aa93cdeb0 @@ -6299,7 +6300,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda hash: md5: bc8e3267d44011051f2eb14d22fb0960 sha256: 8d2a8bf110cc1fc3df6904091dead158ba3e614d8402a83e51ed3a8aa93cdeb0 @@ -6315,7 +6316,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/pywin32-307-py312h275cf98_3.conda + url: https://conda.anaconda.org/conda-forge/win-64/pywin32-307-py312h275cf98_3.conda hash: md5: 1747fbbdece8ab4358b584698b19c44d sha256: 68f8781b83942b91dbc0df883f9edfd1a54a1e645ae2a97c48203ff6c2919de3 @@ -6332,7 +6333,7 @@ package: vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' winpty: '' - url: https://repo.prefix.dev/conda-forge/win-64/pywinpty-2.0.15-py312h275cf98_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/pywinpty-2.0.15-py312h275cf98_0.conda hash: md5: 1fb4bbe58100be45b37781a367c92fe8 sha256: 22b901606eda476a19fcc9376a906ef2e16fc6690186bc1d9a213f6c8e93d061 @@ -6348,7 +6349,7 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* yaml: '>=0.2.5,<0.3.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/pyyaml-6.0.2-py312h178313f_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0.2-py312h178313f_2.conda hash: md5: cf2485f39740de96e2a7f2bb18ed2fee sha256: 159cba13a93b3fe084a1eb9bda0a07afc9148147647f0d437c3c3da60980503b @@ -6365,14 +6366,14 @@ package: vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' yaml: '>=0.2.5,<0.3.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/pyyaml-6.0.2-py312h31fea79_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/pyyaml-6.0.2-py312h31fea79_2.conda hash: md5: ba00a2e5059c1fde96459858537cc8f5 sha256: 76fec03ef7e67e37724873e1f805131fb88efb57f19e9a77b4da616068ef5c28 category: main optional: false - name: pyzmq - version: 26.4.0 + version: 27.0.0 manager: conda platform: linux-64 dependencies: @@ -6383,14 +6384,14 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* zeromq: '>=4.3.5,<4.4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/pyzmq-26.4.0-py312hbf22597_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/pyzmq-27.0.0-py312hbf22597_0.conda hash: - md5: fa0ab7d5bee9efbc370e71bcb5da9856 - sha256: 65a264837f189b0c69c5431ea8ef44e405c472fedba145b05055f284f08bc663 + md5: 4b9a9cda3292668831cf47257ade22a6 + sha256: 8564a7beb906476813a59a81a814d00e8f9697c155488dbc59a5c6e950d5f276 category: dev optional: true - name: pyzmq - version: 26.4.0 + version: 27.0.0 manager: conda platform: win-64 dependencies: @@ -6401,10 +6402,10 @@ package: vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' zeromq: '>=4.3.5,<4.3.6.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/pyzmq-26.4.0-py312hd7027bb_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/pyzmq-27.0.0-py312hd7027bb_0.conda hash: - md5: ccfe948627071c03e36aa46d9e94bf12 - sha256: 07fbf17632c6300e53550f829f2e10d2c6f68923aa139d0618eaeadf2d0043ae + md5: 37d6508caaa4c3a91e3434192d192685 + sha256: e66267a7a61bfba5cdb50089c04a6f140edb9133c5ce34331ee2f95370460b8c category: dev optional: true - name: readline @@ -6414,7 +6415,7 @@ package: dependencies: libgcc: '>=13' ncurses: '>=6.5,<7.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda hash: md5: 283b96675859b20a825f8fa30f311446 sha256: 2d6d0c026902561ed77cd646b5021aef2d4db22e57a5b0178dfc669231e06d2c @@ -6429,7 +6430,7 @@ package: packaging: '' python: '>=3.9' requests: '' - url: https://repo.prefix.dev/conda-forge/noarch/readthedocs-sphinx-ext-2.2.5-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/readthedocs-sphinx-ext-2.2.5-pyhd8ed1ab_1.conda hash: md5: 42840a95562a02bef45e7b7fb24dcba4 sha256: e391356581919077b1639ebd13f4cbb0773acfd5710cfe4188921e8a0387dc6b @@ -6444,7 +6445,7 @@ package: packaging: '' python: '>=3.9' requests: '' - url: https://repo.prefix.dev/conda-forge/noarch/readthedocs-sphinx-ext-2.2.5-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/readthedocs-sphinx-ext-2.2.5-pyhd8ed1ab_1.conda hash: md5: 42840a95562a02bef45e7b7fb24dcba4 sha256: e391356581919077b1639ebd13f4cbb0773acfd5710cfe4188921e8a0387dc6b @@ -6459,7 +6460,7 @@ package: python: '>=3.9' rpds-py: '>=0.7.0' typing_extensions: '>=4.4.0' - url: https://repo.prefix.dev/conda-forge/noarch/referencing-0.36.2-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/referencing-0.36.2-pyh29332c3_0.conda hash: md5: 9140f1c09dd5489549c6a33931b943c7 sha256: e20909f474a6cece176dfc0dc1addac265deb5fa92ea90e975fbca48085b20c3 @@ -6474,7 +6475,7 @@ package: python: '>=3.9' rpds-py: '>=0.7.0' typing_extensions: '>=4.4.0' - url: https://repo.prefix.dev/conda-forge/noarch/referencing-0.36.2-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/referencing-0.36.2-pyh29332c3_0.conda hash: md5: 9140f1c09dd5489549c6a33931b943c7 sha256: e20909f474a6cece176dfc0dc1addac265deb5fa92ea90e975fbca48085b20c3 @@ -6490,7 +6491,7 @@ package: idna: '>=2.5,<4' python: '>=3.9' urllib3: '>=1.21.1,<3' - url: https://repo.prefix.dev/conda-forge/noarch/requests-2.32.4-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.4-pyhd8ed1ab_0.conda hash: md5: f6082eae112814f1447b56a5e1f6ed05 sha256: 9866aaf7a13c6cfbe665ec7b330647a0fb10a81e6f9b8fee33642232a1920e18 @@ -6506,7 +6507,7 @@ package: idna: '>=2.5,<4' python: '>=3.9' urllib3: '>=1.21.1,<3' - url: https://repo.prefix.dev/conda-forge/noarch/requests-2.32.4-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.4-pyhd8ed1ab_0.conda hash: md5: f6082eae112814f1447b56a5e1f6ed05 sha256: 9866aaf7a13c6cfbe665ec7b330647a0fb10a81e6f9b8fee33642232a1920e18 @@ -6519,7 +6520,7 @@ package: dependencies: python: '>=3.9' six: '' - url: https://repo.prefix.dev/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_1.conda hash: md5: 36de09a8d3e5d5e6f4ee63af49e59706 sha256: 2e4372f600490a6e0b3bac60717278448e323cab1c0fecd5f43f7c56535a99c5 @@ -6532,7 +6533,7 @@ package: dependencies: python: '>=3.9' six: '' - url: https://repo.prefix.dev/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_1.conda hash: md5: 36de09a8d3e5d5e6f4ee63af49e59706 sha256: 2e4372f600490a6e0b3bac60717278448e323cab1c0fecd5f43f7c56535a99c5 @@ -6544,7 +6545,7 @@ package: platform: linux-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2 hash: md5: 912a71cc01012ee38e6b90ddd561e36f sha256: 2a5b495a1de0f60f24d8a74578ebc23b24aa53279b1ad583755f223097c41c37 @@ -6556,7 +6557,7 @@ package: platform: win-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2 hash: md5: 912a71cc01012ee38e6b90ddd561e36f sha256: 2a5b495a1de0f60f24d8a74578ebc23b24aa53279b1ad583755f223097c41c37 @@ -6571,7 +6572,7 @@ package: libgcc: '>=13' python: '' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/rpds-py-0.25.1-py312h680f630_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/rpds-py-0.25.1-py312h680f630_0.conda hash: md5: ea8f79edf890d1f9b2f1bd6fbb11be1e sha256: a5b168b991c23ab6d74679a6f5ad1ed87b98ba6c383b5fe41f5f6b335b10d545 @@ -6587,7 +6588,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/rpds-py-0.25.1-py312h8422cdd_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/rpds-py-0.25.1-py312h8422cdd_0.conda hash: md5: 30d51df2ebcc324cce80fa6a317df920 sha256: dfea71a35d7d5eb348893e24136ce6fb1004fc9402eaafae441fa61887638764 @@ -6607,7 +6608,7 @@ package: python_abi: 3.12.* scipy: '' threadpoolctl: '>=2.0.0' - url: https://repo.prefix.dev/conda-forge/linux-64/scikit-learn-1.4.2-py312h1fcc3ea_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/scikit-learn-1.4.2-py312h1fcc3ea_1.conda hash: md5: e6610a08bdbc02525c597e555da55a3a sha256: c2676b9aa8380a4d7e10a815cfc684a66fe312234841574397283d09eba45578 @@ -6627,7 +6628,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/scikit-learn-1.4.2-py312h816cc57_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/scikit-learn-1.4.2-py312h816cc57_1.conda hash: md5: 9d5234a79af607372f44932132ca2c29 sha256: b89ae982911b956158e474777ce7d568da946db0aad91d7aa9686641b7080b9f @@ -6649,7 +6650,7 @@ package: 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 + url: https://conda.anaconda.org/conda-forge/linux-64/scipy-1.14.1-py312h62794b6_2.conda hash: md5: 94688dd449f6c092e5f951780235aca1 sha256: 6e4916d610dc15f9b504517bd6c1f3dbbae019a3c7abf0aeb55f310c452a4474 @@ -6669,7 +6670,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/scipy-1.14.1-py312h337df96_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/scipy-1.14.1-py312h337df96_2.conda hash: md5: 3ef0017e79039d4767ba3b4891113a07 sha256: eb67adcca33026895b6539d02e1bc01f495e1d593a26053d734fe7a180e708f4 @@ -6682,7 +6683,7 @@ package: dependencies: __linux: '' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/send2trash-1.8.3-pyh0d859eb_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/send2trash-1.8.3-pyh0d859eb_1.conda hash: md5: 938c8de6b9de091997145b3bf25cdbf9 sha256: 00926652bbb8924e265caefdb1db100f86a479e8f1066efe395d5552dde54d02 @@ -6696,7 +6697,7 @@ package: __win: '' python: '>=3.9' pywin32: '' - url: https://repo.prefix.dev/conda-forge/noarch/send2trash-1.8.3-pyh5737063_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/send2trash-1.8.3-pyh5737063_1.conda hash: md5: e6a4e906051565caf5fdae5b0415b654 sha256: ba8b93df52e0d625177907852340d735026c81118ac197f61f1f5baea19071ad @@ -6708,7 +6709,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda hash: md5: 4de79c071274a53dcaf2a8c749d1499e sha256: 972560fcf9657058e3e1f97186cc94389144b46dbdf58c807ce62e83f977e863 @@ -6720,7 +6721,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda hash: md5: 4de79c071274a53dcaf2a8c749d1499e sha256: 972560fcf9657058e3e1f97186cc94389144b46dbdf58c807ce62e83f977e863 @@ -6732,7 +6733,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda hash: md5: a451d576819089b0d672f18768be0f65 sha256: 41db0180680cc67c3fa76544ffd48d6a5679d96f4b71d7498a759e94edc9a2db @@ -6744,7 +6745,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda hash: md5: a451d576819089b0d672f18768be0f65 sha256: 41db0180680cc67c3fa76544ffd48d6a5679d96f4b71d7498a759e94edc9a2db @@ -6756,7 +6757,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_1.conda hash: md5: bf7a226e58dfb8346c70df36065d86c9 sha256: c2248418c310bdd1719b186796ae50a8a77ce555228b6acd32768e2543a15012 @@ -6768,7 +6769,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_1.conda hash: md5: bf7a226e58dfb8346c70df36065d86c9 sha256: c2248418c310bdd1719b186796ae50a8a77ce555228b6acd32768e2543a15012 @@ -6780,7 +6781,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/snowballstemmer-3.0.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/snowballstemmer-3.0.1-pyhd8ed1ab_0.conda hash: md5: 755cf22df8693aa0d1aec1c123fa5863 sha256: 17007a4cfbc564dc3e7310dcbe4932c6ecb21593d4fec3c68610720f19e73fb2 @@ -6792,7 +6793,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/snowballstemmer-3.0.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/snowballstemmer-3.0.1-pyhd8ed1ab_0.conda hash: md5: 755cf22df8693aa0d1aec1c123fa5863 sha256: 17007a4cfbc564dc3e7310dcbe4932c6ecb21593d4fec3c68610720f19e73fb2 @@ -6804,7 +6805,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_1.conda hash: md5: 0401a17ae845fa72c7210e206ec5647d sha256: d1e3e06b5cf26093047e63c8cc77b70d970411c5cbc0cb1fad461a8a8df599f7 @@ -6816,7 +6817,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_1.conda hash: md5: 0401a17ae845fa72c7210e206ec5647d sha256: d1e3e06b5cf26093047e63c8cc77b70d970411c5cbc0cb1fad461a8a8df599f7 @@ -6828,7 +6829,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.7-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.7-pyhd8ed1ab_0.conda hash: md5: fb32097c717486aa34b38a9db57eb49e sha256: 7518506cce9a736042132f307b3f4abce63bf076f5fb07c1f4e506c0b214295a @@ -6840,7 +6841,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.7-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.7-pyhd8ed1ab_0.conda hash: md5: fb32097c717486aa34b38a9db57eb49e sha256: 7518506cce9a736042132f307b3f4abce63bf076f5fb07c1f4e506c0b214295a @@ -6869,7 +6870,7 @@ package: sphinxcontrib-jsmath: '' sphinxcontrib-qthelp: '' sphinxcontrib-serializinghtml: '>=1.1.5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-5.3.0-pyhd8ed1ab_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-5.3.0-pyhd8ed1ab_0.tar.bz2 hash: md5: f9e1fcfe235d655900bfeb6aee426472 sha256: f11fd5fb4ae2c65f41ae86e7408e3ab44844898d928264aa9e89929fffc685c8 @@ -6898,7 +6899,7 @@ package: sphinxcontrib-jsmath: '' sphinxcontrib-qthelp: '' sphinxcontrib-serializinghtml: '>=1.1.5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-5.3.0-pyhd8ed1ab_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-5.3.0-pyhd8ed1ab_0.tar.bz2 hash: md5: f9e1fcfe235d655900bfeb6aee426472 sha256: f11fd5fb4ae2c65f41ae86e7408e3ab44844898d928264aa9e89929fffc685c8 @@ -6912,7 +6913,7 @@ package: pydata-sphinx-theme: '>=0.15.2' python: '>=3.9' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-book-theme-1.1.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-book-theme-1.1.3-pyhd8ed1ab_1.conda hash: md5: 501e2d6d8aa1b8d82d2707ce8c90b287 sha256: cf1d3ae6d28042954ac750f6948678fefa619681c3994d2637d747d96a1139ea @@ -6926,7 +6927,7 @@ package: pydata-sphinx-theme: '>=0.15.2' python: '>=3.9' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-book-theme-1.1.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-book-theme-1.1.3-pyhd8ed1ab_1.conda hash: md5: 501e2d6d8aa1b8d82d2707ce8c90b287 sha256: cf1d3ae6d28042954ac750f6948678fefa619681c3994d2637d747d96a1139ea @@ -6939,7 +6940,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=1.8' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-comments-0.0.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-comments-0.0.3-pyhd8ed1ab_1.conda hash: md5: 30e02fa8e40287da066e348c95ff5609 sha256: 00129f91b905441a9e27c46ef32c22617743eb4a4f7207e1dd84bc19505d4381 @@ -6952,7 +6953,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=1.8' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-comments-0.0.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-comments-0.0.3-pyhd8ed1ab_1.conda hash: md5: 30e02fa8e40287da066e348c95ff5609 sha256: 00129f91b905441a9e27c46ef32c22617743eb4a4f7207e1dd84bc19505d4381 @@ -6965,7 +6966,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=1.8' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-copybutton-0.5.2-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-copybutton-0.5.2-pyhd8ed1ab_1.conda hash: md5: bf22cb9c439572760316ce0748af3713 sha256: 8cd892e49cb4d00501bc4439fb0c73ca44905f01a65b2b7fa05ba0e8f3924f19 @@ -6978,7 +6979,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=1.8' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-copybutton-0.5.2-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-copybutton-0.5.2-pyhd8ed1ab_1.conda hash: md5: bf22cb9c439572760316ce0748af3713 sha256: 8cd892e49cb4d00501bc4439fb0c73ca44905f01a65b2b7fa05ba0e8f3924f19 @@ -6991,7 +6992,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5,<8' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-design-0.6.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-design-0.6.1-pyhd8ed1ab_0.conda hash: md5: 51b2433e4a223b14defee96d3caf9bab sha256: 99a44df1d09a27e40002ebaf76792dac75c9cb1386af313b272a4251c8047640 @@ -7004,7 +7005,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5,<8' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-design-0.6.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-design-0.6.1-pyhd8ed1ab_0.conda hash: md5: 51b2433e4a223b14defee96d3caf9bab sha256: 99a44df1d09a27e40002ebaf76792dac75c9cb1386af313b272a4251c8047640 @@ -7019,7 +7020,7 @@ package: python: '>=3.9' pyyaml: '' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-external-toc-1.0.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-external-toc-1.0.1-pyhd8ed1ab_1.conda hash: md5: d248f9db0f1c2e7c480b058925afa9c5 sha256: 47dda7135f9fb1777b7066c3b9260fdd796d6ec2aeb8804161f39c65b3461401 @@ -7034,7 +7035,7 @@ package: python: '>=3.9' pyyaml: '' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-external-toc-1.0.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-external-toc-1.0.1-pyhd8ed1ab_1.conda hash: md5: d248f9db0f1c2e7c480b058925afa9c5 sha256: 47dda7135f9fb1777b7066c3b9260fdd796d6ec2aeb8804161f39c65b3461401 @@ -7048,7 +7049,7 @@ package: packaging: '' python: '>=3.9' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-jupyterbook-latex-1.0.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-jupyterbook-latex-1.0.0-pyhd8ed1ab_1.conda hash: md5: 9261bc5d987013f5d8dc58061c34f1a3 sha256: b64c031795918f26ddeb5148ede2d3a4944cd9f5461cf72bde3f28acdc71d2f3 @@ -7062,7 +7063,7 @@ package: packaging: '' python: '>=3.9' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-jupyterbook-latex-1.0.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-jupyterbook-latex-1.0.0-pyhd8ed1ab_1.conda hash: md5: 9261bc5d987013f5d8dc58061c34f1a3 sha256: b64c031795918f26ddeb5148ede2d3a4944cd9f5461cf72bde3f28acdc71d2f3 @@ -7075,7 +7076,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=3' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-multitoc-numbering-0.1.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-multitoc-numbering-0.1.3-pyhd8ed1ab_1.conda hash: md5: cc5fc0988f0fedab436361b9b5906a58 sha256: 9fa48b33334c3a9971c96dd3d921950e8350cfa88a8e8ebaec6d8261071ea2ac @@ -7088,7 +7089,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=3' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-multitoc-numbering-0.1.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-multitoc-numbering-0.1.3-pyhd8ed1ab_1.conda hash: md5: cc5fc0988f0fedab436361b9b5906a58 sha256: 9fa48b33334c3a9971c96dd3d921950e8350cfa88a8e8ebaec6d8261071ea2ac @@ -7101,7 +7102,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=4' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-thebe-0.3.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-thebe-0.3.1-pyhd8ed1ab_1.conda hash: md5: f6627ce09745a0f822cc6e7de8cf4f99 sha256: 9d0cd52edcb2274bf7c8e9327317d9bb48e1d092afeaed093e0242876ad3c008 @@ -7114,7 +7115,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=4' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-thebe-0.3.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-thebe-0.3.1-pyhd8ed1ab_1.conda hash: md5: f6627ce09745a0f822cc6e7de8cf4f99 sha256: 9d0cd52edcb2274bf7c8e9327317d9bb48e1d092afeaed093e0242876ad3c008 @@ -7128,7 +7129,7 @@ package: docutils: '' python: '>=3.6' sphinx: '' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-togglebutton-0.3.2-pyhd8ed1ab_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-togglebutton-0.3.2-pyhd8ed1ab_0.tar.bz2 hash: md5: 382738101934261ea7931d1460e64868 sha256: 0dcee238aae6337fae5eaf1f9a29b0c51ed9834ae501fccb2cde0fed8dae1a88 @@ -7142,7 +7143,7 @@ package: docutils: '' python: '>=3.6' sphinx: '' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-togglebutton-0.3.2-pyhd8ed1ab_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-togglebutton-0.3.2-pyhd8ed1ab_0.tar.bz2 hash: md5: 382738101934261ea7931d1460e64868 sha256: 0dcee238aae6337fae5eaf1f9a29b0c51ed9834ae501fccb2cde0fed8dae1a88 @@ -7155,7 +7156,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 16e3f039c0aa6446513e94ab18a8784b sha256: d7433a344a9ad32a680b881c81b0034bc61618d12c39dd6e3309abeffa9577ba @@ -7168,7 +7169,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 16e3f039c0aa6446513e94ab18a8784b sha256: d7433a344a9ad32a680b881c81b0034bc61618d12c39dd6e3309abeffa9577ba @@ -7186,7 +7187,7 @@ package: pybtex-docutils: '>=1' python: '>=3.6' sphinx: '>=2.1' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-bibtex-2.5.0-pyhd8ed1ab_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-bibtex-2.5.0-pyhd8ed1ab_0.tar.bz2 hash: md5: b2e5c9aece936ebf9f26abdf71ddd74b sha256: d5b02d285909b4501a469857b1a88a91a849d5f28bbe64b9e6c3e86d2388d345 @@ -7204,7 +7205,7 @@ package: pybtex-docutils: '>=1' python: '>=3.6' sphinx: '>=2.1' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-bibtex-2.5.0-pyhd8ed1ab_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-bibtex-2.5.0-pyhd8ed1ab_0.tar.bz2 hash: md5: b2e5c9aece936ebf9f26abdf71ddd74b sha256: d5b02d285909b4501a469857b1a88a91a849d5f28bbe64b9e6c3e86d2388d345 @@ -7217,7 +7218,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 910f28a05c178feba832f842155cbfff sha256: 55d5076005d20b84b20bee7844e686b7e60eb9f683af04492e598a622b12d53d @@ -7230,7 +7231,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 910f28a05c178feba832f842155cbfff sha256: 55d5076005d20b84b20bee7844e686b7e60eb9f683af04492e598a622b12d53d @@ -7243,7 +7244,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_1.conda hash: md5: e9fb3fe8a5b758b4aff187d434f94f03 sha256: c1492c0262ccf16694bdcd3bb62aa4627878ea8782d5cd3876614ffeb62b3996 @@ -7256,7 +7257,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_1.conda hash: md5: e9fb3fe8a5b758b4aff187d434f94f03 sha256: c1492c0262ccf16694bdcd3bb62aa4627878ea8782d5cd3876614ffeb62b3996 @@ -7268,7 +7269,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_1.conda hash: md5: fa839b5ff59e192f411ccc7dae6588bb sha256: 578bef5ec630e5b2b8810d898bbbf79b9ae66d49b7938bcc3efc364e679f2a62 @@ -7280,7 +7281,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_1.conda hash: md5: fa839b5ff59e192f411ccc7dae6588bb sha256: 578bef5ec630e5b2b8810d898bbbf79b9ae66d49b7938bcc3efc364e679f2a62 @@ -7293,7 +7294,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 00534ebcc0375929b45c3039b5ba7636 sha256: c664fefae4acdb5fae973bdde25836faf451f41d04342b64a358f9a7753c92ca @@ -7306,7 +7307,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 00534ebcc0375929b45c3039b5ba7636 sha256: c664fefae4acdb5fae973bdde25836faf451f41d04342b64a358f9a7753c92ca @@ -7319,7 +7320,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda hash: md5: 3bc61f7161d28137797e038263c04c54 sha256: 64d89ecc0264347486971a94487cb8d7c65bfc0176750cf7502b8a272f4ab557 @@ -7332,7 +7333,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda hash: md5: 3bc61f7161d28137797e038263c04c54 sha256: 64d89ecc0264347486971a94487cb8d7c65bfc0176750cf7502b8a272f4ab557 @@ -7349,7 +7350,7 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* typing-extensions: '>=4.6.0' - url: https://repo.prefix.dev/conda-forge/linux-64/sqlalchemy-2.0.41-py312h66e93f0_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/sqlalchemy-2.0.41-py312h66e93f0_0.conda hash: md5: 4e2266c17e82847dfced222aef58d3fa sha256: 1c66aca8ed1bd9edfed3af4d31896e2a0f5c45f64ff495a6b6a855588ac8f848 @@ -7367,7 +7368,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/sqlalchemy-2.0.41-py312h4389bb4_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/sqlalchemy-2.0.41-py312h4389bb4_0.conda hash: md5: 5079131a8d868265f1e7091e3cb8d4ae sha256: 2ed014b539572f55acb996eda86d46be05bb1a016253b1f98b004fdd767d4983 @@ -7382,7 +7383,7 @@ package: executing: '' pure_eval: '' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda hash: md5: b1b505328da7a6b246787df4b5a49fbc sha256: 570da295d421661af487f1595045760526964f41471021056e993e73089e9c41 @@ -7397,7 +7398,7 @@ package: executing: '' pure_eval: '' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda hash: md5: b1b505328da7a6b246787df4b5a49fbc sha256: 570da295d421661af487f1595045760526964f41471021056e993e73089e9c41 @@ -7409,7 +7410,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tabulate-0.9.0-pyhd8ed1ab_2.conda + url: https://conda.anaconda.org/conda-forge/noarch/tabulate-0.9.0-pyhd8ed1ab_2.conda hash: md5: 959484a66b4b76befcddc4fa97c95567 sha256: 090023bddd40d83468ef86573976af8c514f64119b2bd814ee63a838a542720a @@ -7421,7 +7422,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tabulate-0.9.0-pyhd8ed1ab_2.conda + url: https://conda.anaconda.org/conda-forge/noarch/tabulate-0.9.0-pyhd8ed1ab_2.conda hash: md5: 959484a66b4b76befcddc4fa97c95567 sha256: 090023bddd40d83468ef86573976af8c514f64119b2bd814ee63a838a542720a @@ -7436,7 +7437,7 @@ package: libgcc: '>=13' libhwloc: '>=2.11.2,<2.11.3.0a0' libstdcxx: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/tbb-2021.13.0-hceb3a55_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/tbb-2021.13.0-hceb3a55_1.conda hash: md5: ba7726b8df7b9d34ea80e82b097a4893 sha256: 65463732129899770d54b1fbf30e1bb82fdebda9d7553caf08d23db4590cd691 @@ -7451,7 +7452,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/tbb-2021.13.0-h62715c5_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/tbb-2021.13.0-h62715c5_1.conda hash: md5: 9190dd0a23d925f7602f9628b3aed511 sha256: 03cc5442046485b03dd1120d0f49d35a7e522930a2ab82f275e938e17b07b302 @@ -7463,7 +7464,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tblib-3.1.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/tblib-3.1.0-pyhd8ed1ab_0.conda hash: md5: a15c62b8a306b8978f094f76da2f903f sha256: a83c83f5e622a2f34fb1d179c55c3ff912429cd0a54f9f3190ae44a0fdba2ad2 @@ -7475,7 +7476,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tblib-3.1.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/tblib-3.1.0-pyhd8ed1ab_0.conda hash: md5: a15c62b8a306b8978f094f76da2f903f sha256: a83c83f5e622a2f34fb1d179c55c3ff912429cd0a54f9f3190ae44a0fdba2ad2 @@ -7490,7 +7491,7 @@ package: ptyprocess: '' python: '>=3.8' tornado: '>=6.1.0' - url: https://repo.prefix.dev/conda-forge/noarch/terminado-0.18.1-pyh0d859eb_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/terminado-0.18.1-pyh0d859eb_0.conda hash: md5: efba281bbdae5f6b0a1d53c6d4a97c93 sha256: b300557c0382478cf661ddb520263508e4b3b5871b471410450ef2846e8c352c @@ -7505,7 +7506,7 @@ package: python: '>=3.8' pywinpty: '>=1.1.0' tornado: '>=6.1.0' - url: https://repo.prefix.dev/conda-forge/noarch/terminado-0.18.1-pyh5737063_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/terminado-0.18.1-pyh5737063_0.conda hash: md5: 4abd500577430a942a995fd0d09b76a2 sha256: 8cb078291fd7882904e3de594d299c8de16dd3af7405787fce6919a385cfc238 @@ -7517,7 +7518,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/threadpoolctl-3.6.0-pyhecae5ae_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/threadpoolctl-3.6.0-pyhecae5ae_0.conda hash: md5: 9d64911b31d57ca443e9f1e36b04385f sha256: 6016672e0e72c4cf23c0cf7b1986283bd86a9c17e8d319212d78d8e9ae42fdfd @@ -7529,7 +7530,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/threadpoolctl-3.6.0-pyhecae5ae_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/threadpoolctl-3.6.0-pyhecae5ae_0.conda hash: md5: 9d64911b31d57ca443e9f1e36b04385f sha256: 6016672e0e72c4cf23c0cf7b1986283bd86a9c17e8d319212d78d8e9ae42fdfd @@ -7542,7 +7543,7 @@ package: dependencies: python: '>=3.5' webencodings: '>=0.4' - url: https://repo.prefix.dev/conda-forge/noarch/tinycss2-1.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.4.0-pyhd8ed1ab_0.conda hash: md5: f1acf5fdefa8300de697982bcb1761c9 sha256: cad582d6f978276522f84bd209a5ddac824742fe2d452af6acf900f8650a73a2 @@ -7555,7 +7556,7 @@ package: dependencies: python: '>=3.5' webencodings: '>=0.4' - url: https://repo.prefix.dev/conda-forge/noarch/tinycss2-1.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.4.0-pyhd8ed1ab_0.conda hash: md5: f1acf5fdefa8300de697982bcb1761c9 sha256: cad582d6f978276522f84bd209a5ddac824742fe2d452af6acf900f8650a73a2 @@ -7569,7 +7570,7 @@ package: __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 + url: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_hd72426e_102.conda hash: md5: a0116df4f4ed05c303811a837d5b39d8 sha256: a84ff687119e6d8752346d1d408d5cf360dee0badd487a472aa8ddedfdc219e1 @@ -7583,7 +7584,7 @@ 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-h2c6b04d_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-h2c6b04d_2.conda hash: md5: ebd0e761de9aa879a51d22cc721bd095 sha256: e3614b0eb4abcc70d98eae159db59d9b4059ed743ef402081151a948dce95896 @@ -7595,7 +7596,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_1.conda hash: md5: b0dd904de08b7db706167240bf37b164 sha256: 34f3a83384ac3ac30aefd1309e69498d8a4aa0bf2d1f21c645f79b180e378938 @@ -7607,7 +7608,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_1.conda hash: md5: b0dd904de08b7db706167240bf37b164 sha256: 34f3a83384ac3ac30aefd1309e69498d8a4aa0bf2d1f21c645f79b180e378938 @@ -7619,7 +7620,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda hash: md5: ac944244f1fed2eb49bae07193ae8215 sha256: 18636339a79656962723077df9a56c0ac7b8a864329eb8f847ee3d38495b863e @@ -7631,7 +7632,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda hash: md5: ac944244f1fed2eb49bae07193ae8215 sha256: 18636339a79656962723077df9a56c0ac7b8a864329eb8f847ee3d38495b863e @@ -7643,7 +7644,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.3-pyha770c72_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.13.3-pyha770c72_0.conda hash: md5: 146402bf0f11cbeb8f781fa4309a95d3 sha256: f8d3b49c084831a20923f66826f30ecfc55a4cd951e544b7213c692887343222 @@ -7655,7 +7656,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.3-pyha770c72_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.13.3-pyha770c72_0.conda hash: md5: 146402bf0f11cbeb8f781fa4309a95d3 sha256: f8d3b49c084831a20923f66826f30ecfc55a4cd951e544b7213c692887343222 @@ -7667,7 +7668,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/toolz-1.0.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/toolz-1.0.0-pyhd8ed1ab_1.conda hash: md5: 40d0ed782a8aaa16ef248e68c06c168d sha256: eda38f423c33c2eaeca49ed946a8d3bf466cc3364970e083a65eb2fd85258d87 @@ -7679,7 +7680,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/toolz-1.0.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/toolz-1.0.0-pyhd8ed1ab_1.conda hash: md5: 40d0ed782a8aaa16ef248e68c06c168d sha256: eda38f423c33c2eaeca49ed946a8d3bf466cc3364970e083a65eb2fd85258d87 @@ -7694,7 +7695,7 @@ package: libgcc: '>=13' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/tornado-6.5.1-py312h66e93f0_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/tornado-6.5.1-py312h66e93f0_0.conda hash: md5: c532a6ee766bed75c4fa0c39e959d132 sha256: c96be4c8bca2431d7ad7379bad94ed6d4d25cd725ae345540a531d9e26e148c9 @@ -7710,7 +7711,7 @@ 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.5.1-py312h4389bb4_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/tornado-6.5.1-py312h4389bb4_0.conda hash: md5: 06b156bbbe1597eb5ea30b931cadaa32 sha256: cec4ab331788122f7f01dd02f57f8e21d9ae14553dedd6389d7dfeceb3592399 @@ -7723,7 +7724,7 @@ package: dependencies: colorama: '' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_1.conda hash: md5: 9efbfdc37242619130ea42b1cc4ed861 sha256: 11e2c85468ae9902d24a27137b6b39b4a78099806e551d390e394a8c34b48e40 @@ -7736,7 +7737,7 @@ package: dependencies: colorama: '' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_1.conda hash: md5: 9efbfdc37242619130ea42b1cc4ed861 sha256: 11e2c85468ae9902d24a27137b6b39b4a78099806e551d390e394a8c34b48e40 @@ -7748,7 +7749,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda hash: md5: 019a7385be9af33791c989871317e1ed sha256: f39a5620c6e8e9e98357507262a7869de2ae8cc07da8b7f84e517c9fd6c2b959 @@ -7760,7 +7761,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda hash: md5: 019a7385be9af33791c989871317e1ed sha256: f39a5620c6e8e9e98357507262a7869de2ae8cc07da8b7f84e517c9fd6c2b959 @@ -7772,7 +7773,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/types-python-dateutil-2.9.0.20250516-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/types-python-dateutil-2.9.0.20250516-pyhd8ed1ab_0.conda hash: md5: e3465397ca4b5b60ba9fbc92ef0672f9 sha256: 0fb78e97cad71ebf911958bf97777ec958a64a4621615a4dcc3ffb52cda7c6d0 @@ -7784,7 +7785,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/types-python-dateutil-2.9.0.20250516-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/types-python-dateutil-2.9.0.20250516-pyhd8ed1ab_0.conda hash: md5: e3465397ca4b5b60ba9fbc92ef0672f9 sha256: 0fb78e97cad71ebf911958bf97777ec958a64a4621615a4dcc3ffb52cda7c6d0 @@ -7796,7 +7797,7 @@ package: platform: linux-64 dependencies: typing_extensions: ==4.14.0 - url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.14.0-h32cad80_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.14.0-h32cad80_0.conda hash: md5: a1cdd40fc962e2f7944bc19e01c7e584 sha256: b8cabfa54432b0f124c0af6b6facdf8110892914fa841ac2e80ab65ac52c1ba4 @@ -7808,7 +7809,7 @@ package: platform: win-64 dependencies: typing_extensions: ==4.14.0 - url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.14.0-h32cad80_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.14.0-h32cad80_0.conda hash: md5: a1cdd40fc962e2f7944bc19e01c7e584 sha256: b8cabfa54432b0f124c0af6b6facdf8110892914fa841ac2e80ab65ac52c1ba4 @@ -7821,7 +7822,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '>=4.12.0' - url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/typing-inspection-0.4.1-pyhd8ed1ab_0.conda hash: md5: e0c3cd765dc15751ee2f0b03cd015712 sha256: 4259a7502aea516c762ca8f3b8291b0d4114e094bdb3baae3171ccc0900e722f @@ -7834,7 +7835,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '>=4.12.0' - url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/typing-inspection-0.4.1-pyhd8ed1ab_0.conda hash: md5: e0c3cd765dc15751ee2f0b03cd015712 sha256: 4259a7502aea516c762ca8f3b8291b0d4114e094bdb3baae3171ccc0900e722f @@ -7846,7 +7847,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.14.0-pyhe01879c_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.14.0-pyhe01879c_0.conda hash: md5: 2adcd9bb86f656d3d43bf84af59a1faf sha256: 8561db52f278c5716b436da6d4ee5521712a49e8f3c70fcae5350f5ebb4be41c @@ -7858,7 +7859,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.14.0-pyhe01879c_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.14.0-pyhe01879c_0.conda hash: md5: 2adcd9bb86f656d3d43bf84af59a1faf sha256: 8561db52f278c5716b436da6d4ee5521712a49e8f3c70fcae5350f5ebb4be41c @@ -7870,7 +7871,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/typing_utils-0.1.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/typing_utils-0.1.0-pyhd8ed1ab_1.conda hash: md5: f6d7aa696c67756a650e91e15e88223c sha256: 3088d5d873411a56bf988eee774559335749aed6f6c28e07bf933256afb9eb6c @@ -7882,7 +7883,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/typing_utils-0.1.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/typing_utils-0.1.0-pyhd8ed1ab_1.conda hash: md5: f6d7aa696c67756a650e91e15e88223c sha256: 3088d5d873411a56bf988eee774559335749aed6f6c28e07bf933256afb9eb6c @@ -7893,7 +7894,7 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda hash: md5: 4222072737ccff51314b5ece9c7d6f5a sha256: 5aaa366385d716557e365f0a4e9c3fca43ba196872abbbe3d56bb610d131e192 @@ -7904,7 +7905,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda hash: md5: 4222072737ccff51314b5ece9c7d6f5a sha256: 5aaa366385d716557e365f0a4e9c3fca43ba196872abbbe3d56bb610d131e192 @@ -7916,7 +7917,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/uc-micro-py-1.0.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/uc-micro-py-1.0.3-pyhd8ed1ab_1.conda hash: md5: 9c96c9876ba45368a03056ddd0f20431 sha256: a2f837780af450d633efc052219c31378bcad31356766663fb88a99e8e4c817b @@ -7928,7 +7929,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/uc-micro-py-1.0.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/uc-micro-py-1.0.3-pyhd8ed1ab_1.conda hash: md5: 9c96c9876ba45368a03056ddd0f20431 sha256: a2f837780af450d633efc052219c31378bcad31356766663fb88a99e8e4c817b @@ -7939,7 +7940,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_1.conda hash: md5: 6797b005cd0f439c4c5c9ac565783700 sha256: db8dead3dd30fb1a032737554ce91e2819b43496a0db09927edf01c32b577450 @@ -7954,7 +7955,7 @@ package: libgcc: '>=13' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/unicodedata2-16.0.0-py312h66e93f0_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/unicodedata2-16.0.0-py312h66e93f0_0.conda hash: md5: 617f5d608ff8c28ad546e5d9671cbb95 sha256: 638916105a836973593547ba5cf4891d1f2cb82d1cf14354fcef93fd5b941cdc @@ -7970,7 +7971,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/unicodedata2-16.0.0-py312h4389bb4_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/unicodedata2-16.0.0-py312h4389bb4_0.conda hash: md5: 3b124c38c7852704ba6a42a170c152a1 sha256: 0889ccb541d0b63cbf42ea5b1f1686b772e872bfcddd3a18787dc4437ebbd7c6 @@ -7982,7 +7983,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/uri-template-1.3.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/uri-template-1.3.0-pyhd8ed1ab_1.conda hash: md5: e7cb0f5745e4c5035a460248334af7eb sha256: e0eb6c8daf892b3056f08416a96d68b0a358b7c46b99c8a50481b22631a4dfc0 @@ -7994,14 +7995,14 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/uri-template-1.3.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/uri-template-1.3.0-pyhd8ed1ab_1.conda hash: md5: e7cb0f5745e4c5035a460248334af7eb sha256: e0eb6c8daf892b3056f08416a96d68b0a358b7c46b99c8a50481b22631a4dfc0 category: dev optional: true - name: urllib3 - version: 2.4.0 + version: 2.5.0 manager: conda platform: linux-64 dependencies: @@ -8010,14 +8011,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://conda.anaconda.org/conda-forge/noarch/urllib3-2.5.0-pyhd8ed1ab_0.conda hash: - md5: c1e349028e0052c4eea844e94f773065 - sha256: a25403b76f7f03ca1a906e1ef0f88521edded991b9897e7fed56a3e334b3db8c + md5: 436c165519e140cb08d246a4472a9d6a + sha256: 4fb9789154bd666ca74e428d973df81087a697dbb987775bc3198d2215f240f8 category: main optional: false - name: urllib3 - version: 2.4.0 + version: 2.5.0 manager: conda platform: win-64 dependencies: @@ -8026,10 +8027,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://conda.anaconda.org/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 @@ -8038,7 +8039,7 @@ package: platform: win-64 dependencies: vc14_runtime: '>=14.42.34433' - url: https://repo.prefix.dev/conda-forge/win-64/vc-14.3-h2b53caa_26.conda + url: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-h2b53caa_26.conda hash: md5: d3f0381e38093bde620a8d85f266ae55 sha256: 7a685b5c37e9713fa314a0d26b8b1d7a2e6de5ab758698199b5d5b6dba2e3ce1 @@ -8050,7 +8051,7 @@ package: platform: win-64 dependencies: ucrt: '>=10.0.20348.0' - url: https://repo.prefix.dev/conda-forge/win-64/vc14_runtime-14.42.34438-hfd919c2_26.conda + url: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.42.34438-hfd919c2_26.conda hash: md5: 91651a36d31aa20c7ba36299fb7068f4 sha256: 30dcb71bb166e351aadbdc18f1718757c32cdaa0e1e5d9368469ee44f6bf4709 @@ -8062,7 +8063,7 @@ package: platform: win-64 dependencies: vc14_runtime: '>=14.42.34438' - url: https://repo.prefix.dev/conda-forge/win-64/vs2015_runtime-14.42.34438-h7142326_26.conda + url: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.42.34438-h7142326_26.conda hash: md5: 3357e4383dbce31eed332008ede242ab sha256: 432f2937206f1ad4a77e39f84fabc1ce7d2472b669836fb72bd2bfd19a2defc9 @@ -8074,7 +8075,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/wcwidth-0.2.13-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.13-pyhd8ed1ab_1.conda hash: md5: b68980f2495d096e71c7fd9d7ccf63e6 sha256: f21e63e8f7346f9074fd00ca3b079bd3d2fa4d71f1f89d5b6934bf31446dc2a5 @@ -8086,7 +8087,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/wcwidth-0.2.13-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.13-pyhd8ed1ab_1.conda hash: md5: b68980f2495d096e71c7fd9d7ccf63e6 sha256: f21e63e8f7346f9074fd00ca3b079bd3d2fa4d71f1f89d5b6934bf31446dc2a5 @@ -8098,7 +8099,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/webcolors-24.11.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/webcolors-24.11.1-pyhd8ed1ab_0.conda hash: md5: b49f7b291e15494aafb0a7d74806f337 sha256: 08315dc2e61766a39219b2d82685fc25a56b2817acf84d5b390176080eaacf99 @@ -8110,7 +8111,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/webcolors-24.11.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/webcolors-24.11.1-pyhd8ed1ab_0.conda hash: md5: b49f7b291e15494aafb0a7d74806f337 sha256: 08315dc2e61766a39219b2d82685fc25a56b2817acf84d5b390176080eaacf99 @@ -8122,7 +8123,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_3.conda + url: https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_3.conda hash: md5: 2841eb5bfc75ce15e9a0054b98dcd64d sha256: 19ff205e138bb056a46f9e3839935a2e60bd1cf01c8241a5e172a422fed4f9c6 @@ -8134,7 +8135,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_3.conda + url: https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_3.conda hash: md5: 2841eb5bfc75ce15e9a0054b98dcd64d sha256: 19ff205e138bb056a46f9e3839935a2e60bd1cf01c8241a5e172a422fed4f9c6 @@ -8146,7 +8147,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/websocket-client-1.8.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/websocket-client-1.8.0-pyhd8ed1ab_1.conda hash: md5: 84f8f77f0a9c6ef401ee96611745da8f sha256: 1dd84764424ffc82030c19ad70607e6f9e3b9cb8e633970766d697185652053e @@ -8158,7 +8159,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/websocket-client-1.8.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/websocket-client-1.8.0-pyhd8ed1ab_1.conda hash: md5: 84f8f77f0a9c6ef401ee96611745da8f sha256: 1dd84764424ffc82030c19ad70607e6f9e3b9cb8e633970766d697185652053e @@ -8170,7 +8171,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda hash: md5: 75cb7132eb58d97896e173ef12ac9986 sha256: 1b34021e815ff89a4d902d879c3bd2040bc1bd6169b32e9427497fa05c55f1ce @@ -8182,7 +8183,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda hash: md5: 75cb7132eb58d97896e173ef12ac9986 sha256: 1b34021e815ff89a4d902d879c3bd2040bc1bd6169b32e9427497fa05c55f1ce @@ -8195,7 +8196,7 @@ package: dependencies: notebook: '>=4.4.1' python: '>=3.7' - url: https://repo.prefix.dev/conda-forge/noarch/widgetsnbextension-3.6.10-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-3.6.10-pyhd8ed1ab_0.conda hash: md5: 4d52bbdb661dc1b5a1c2aeb1afcd9a67 sha256: 6aeb16d2aacdae68ba7afd980925264f5d0459dd165e3406f13f23949df346c1 @@ -8208,7 +8209,7 @@ package: dependencies: notebook: '>=4.4.1' python: '>=3.7' - url: https://repo.prefix.dev/conda-forge/noarch/widgetsnbextension-3.6.10-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-3.6.10-pyhd8ed1ab_0.conda hash: md5: 4d52bbdb661dc1b5a1c2aeb1afcd9a67 sha256: 6aeb16d2aacdae68ba7afd980925264f5d0459dd165e3406f13f23949df346c1 @@ -8221,7 +8222,7 @@ package: dependencies: __win: '' python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/win_inet_pton-1.1.0-pyh7428d3b_8.conda + url: https://conda.anaconda.org/conda-forge/noarch/win_inet_pton-1.1.0-pyh7428d3b_8.conda hash: md5: 46e441ba871f524e2b067929da3051c2 sha256: 93807369ab91f230cf9e6e2a237eaa812492fe00face5b38068735858fba954f @@ -8232,7 +8233,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/win-64/winpty-0.4.3-4.tar.bz2 + url: https://conda.anaconda.org/conda-forge/win-64/winpty-0.4.3-4.tar.bz2 hash: md5: 1cee351bf20b830d991dbe0bc8cd7dfe sha256: 9df10c5b607dd30e05ba08cbd940009305c75db242476f4e845ea06008b0a283 @@ -8247,7 +8248,7 @@ package: libgcc: '>=13' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/wrapt-1.17.2-py312h66e93f0_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/wrapt-1.17.2-py312h66e93f0_0.conda hash: md5: 669e63af87710f8d52fdec9d4d63b404 sha256: ed3a1700ecc5d38c7e7dc7d2802df1bc1da6ba3d6f6017448b8ded0affb4ae00 @@ -8263,7 +8264,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/wrapt-1.17.2-py312h4389bb4_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/wrapt-1.17.2-py312h4389bb4_0.conda hash: md5: b9a81b36e0d35c9a172587ead532273b sha256: a1b86d727cc5f9d016a6fc9d8ac8b3e17c8e137764e018555ecadef05979ce93 @@ -8276,7 +8277,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxau-1.0.12-hb9d3cd8_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxau-1.0.12-hb9d3cd8_0.conda hash: md5: f6ebe2cb3f82ba6c057dde5d9debe4f7 sha256: ed10c9283974d311855ae08a16dfd7e56241fac632aec3b92e3cfe73cff31038 @@ -8290,7 +8291,7 @@ package: libgcc: '>=13' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' ucrt: '>=10.0.20348.0' - url: https://repo.prefix.dev/conda-forge/win-64/xorg-libxau-1.0.12-h0e40799_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/xorg-libxau-1.0.12-h0e40799_0.conda hash: md5: 2ffbfae4548098297c033228256eb96e sha256: 047836241b2712aab1e29474a6f728647bff3ab57de2806b0bb0a6cf9a2d2634 @@ -8303,7 +8304,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb9d3cd8_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb9d3cd8_0.conda hash: md5: 8035c64cb77ed555e3f150b7b3972480 sha256: 6b250f3e59db07c2514057944a3ea2044d6a8cdde8a47b6497c254520fade1ee @@ -8317,7 +8318,7 @@ package: libgcc: '>=13' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' ucrt: '>=10.0.20348.0' - url: https://repo.prefix.dev/conda-forge/win-64/xorg-libxdmcp-1.1.5-h0e40799_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/xorg-libxdmcp-1.1.5-h0e40799_0.conda hash: md5: 8393c0f7e7870b4eb45553326f81f0ff sha256: 9075f98dcaa8e9957e4a3d9d30db05c7578a536950a31c200854c5c34e1edb2c @@ -8329,7 +8330,7 @@ package: platform: linux-64 dependencies: python: '>=3.8' - url: https://repo.prefix.dev/conda-forge/noarch/xyzservices-2025.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/xyzservices-2025.4.0-pyhd8ed1ab_0.conda hash: md5: 5663fa346821cd06dc1ece2c2600be2c sha256: ac6d4d4133b1e0f69075158cdf00fccad20e29fc6cc45faa480cec37a84af6ae @@ -8341,7 +8342,7 @@ package: platform: win-64 dependencies: python: '>=3.8' - url: https://repo.prefix.dev/conda-forge/noarch/xyzservices-2025.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/xyzservices-2025.4.0-pyhd8ed1ab_0.conda hash: md5: 5663fa346821cd06dc1ece2c2600be2c sha256: ac6d4d4133b1e0f69075158cdf00fccad20e29fc6cc45faa480cec37a84af6ae @@ -8353,7 +8354,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=9.4.0' - url: https://repo.prefix.dev/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2 + url: https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2 hash: md5: 4cb3ad778ec2d5a7acbdf254eb1c42ae sha256: a4e34c710eeb26945bdbdaba82d3d74f60a78f54a874ec10d373811a5d217535 @@ -8366,7 +8367,7 @@ package: dependencies: vc: '>=14.1,<15.0a0' vs2015_runtime: '>=14.16.27012' - url: https://repo.prefix.dev/conda-forge/win-64/yaml-0.2.5-h8ffe710_2.tar.bz2 + url: https://conda.anaconda.org/conda-forge/win-64/yaml-0.2.5-h8ffe710_2.tar.bz2 hash: md5: adbfb9f45d1004a26763652246a33764 sha256: 4e2246383003acbad9682c7c63178e2e715ad0eb84f03a8df1fbfba455dfedc5 @@ -8382,7 +8383,7 @@ package: numcodecs: '>=0.10.0,<0.16.0a0' numpy: '>=1.7' python: '>=3.5' - url: https://repo.prefix.dev/conda-forge/noarch/zarr-2.14.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/zarr-2.14.2-pyhd8ed1ab_0.conda hash: md5: 0c5776fe65a12a421d7ddf90411a6c3f sha256: 0f029f7efea00b8258782b5e68989fc140c227e6d9edd231d46fdd954b39d23f @@ -8398,7 +8399,7 @@ package: numcodecs: '>=0.10.0,<0.16.0a0' numpy: '>=1.7' python: '>=3.5' - url: https://repo.prefix.dev/conda-forge/noarch/zarr-2.14.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/zarr-2.14.2-pyhd8ed1ab_0.conda hash: md5: 0c5776fe65a12a421d7ddf90411a6c3f sha256: 0f029f7efea00b8258782b5e68989fc140c227e6d9edd231d46fdd954b39d23f @@ -8414,7 +8415,7 @@ package: libgcc: '>=13' libsodium: '>=1.0.20,<1.0.21.0a0' libstdcxx: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/zeromq-4.3.5-h3b0a872_7.conda + url: https://conda.anaconda.org/conda-forge/linux-64/zeromq-4.3.5-h3b0a872_7.conda hash: md5: 3947a35e916fcc6b9825449affbf4214 sha256: a4dc72c96848f764bb5a5176aa93dd1e9b9e52804137b99daeebba277b31ea10 @@ -8430,7 +8431,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/zeromq-4.3.5-ha9f60a1_7.conda + url: https://conda.anaconda.org/conda-forge/win-64/zeromq-4.3.5-ha9f60a1_7.conda hash: md5: e03f2c245a5ee6055752465519363b1c sha256: 15cc8e2162d0a33ffeb3f7b7c7883fd830c54a4b1be6a4b8c7ee1f4fef0088fb @@ -8442,7 +8443,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/zict-3.0.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/zict-3.0.0-pyhd8ed1ab_1.conda hash: md5: e52c2ef711ccf31bb7f70ca87d144b9e sha256: 5488542dceeb9f2874e726646548ecc5608060934d6f9ceaa7c6a48c61f9cc8d @@ -8454,7 +8455,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/zict-3.0.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/zict-3.0.0-pyhd8ed1ab_1.conda hash: md5: e52c2ef711ccf31bb7f70ca87d144b9e sha256: 5488542dceeb9f2874e726646548ecc5608060934d6f9ceaa7c6a48c61f9cc8d @@ -8466,7 +8467,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/zipp-3.23.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.23.0-pyhd8ed1ab_0.conda hash: md5: df5e78d904988eb55042c0c97446079f sha256: 7560d21e1b021fd40b65bfb72f67945a3fcb83d78ad7ccf37b8b3165ec3b68ad @@ -8478,7 +8479,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/zipp-3.23.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.23.0-pyhd8ed1ab_0.conda hash: md5: df5e78d904988eb55042c0c97446079f sha256: 7560d21e1b021fd40b65bfb72f67945a3fcb83d78ad7ccf37b8b3165ec3b68ad @@ -8494,7 +8495,7 @@ package: libgcc: '>=13' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/zstandard-0.23.0-py312h66e93f0_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/zstandard-0.23.0-py312h66e93f0_2.conda hash: md5: 630db208bc7bbb96725ce9832c7423bb sha256: ff62d2e1ed98a3ec18de7e5cf26c0634fd338cb87304cf03ad8cbafe6fe674ba @@ -8511,7 +8512,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/zstandard-0.23.0-py312h4389bb4_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/zstandard-0.23.0-py312h4389bb4_2.conda hash: md5: 24554d76d0efcca11faa0a013c16ed5a sha256: 10f25f85f856dbc776b4a2cf801d31edd07cbfaa45b9cca14dd776a9f2887cb5 @@ -8526,7 +8527,7 @@ package: libgcc: '>=13' libstdcxx: '>=13' libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb8e6e7a_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.7-hb8e6e7a_2.conda hash: md5: 6432cb5d4ac0046c3ac0a8a0f95842f9 sha256: a4166e3d8ff4e35932510aaff7aa90772f84b4d07e9f6f83c614cba7ceefe0eb @@ -8541,7 +8542,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/zstd-1.5.7-hbeecb71_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/zstd-1.5.7-hbeecb71_2.conda hash: md5: 21f56217d6125fb30c3c3f10c786d751 sha256: bc64864377d809b904e877a98d0584f43836c9f2ef27d3d2a1421fa6eae7ca04 @@ -8556,12 +8557,12 @@ package: numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@8d46ccb686e4206683862ec803fc709b26271cd8 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 hash: - sha256: 8d46ccb686e4206683862ec803fc709b26271cd8 + sha256: 91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@8d46ccb686e4206683862ec803fc709b26271cd8 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 category: main optional: false - name: geoapps-utils @@ -8573,12 +8574,12 @@ package: numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@8d46ccb686e4206683862ec803fc709b26271cd8 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 hash: - sha256: 8d46ccb686e4206683862ec803fc709b26271cd8 + sha256: 91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@8d46ccb686e4206683862ec803fc709b26271cd8 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@91ec5c45ff7357cd8f2bdb75dc61c55fdd6459b5 category: main optional: false - name: geoh5py @@ -8590,12 +8591,12 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@585c89094e3eff35df10d3076964bf154b24d575 + url: git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e hash: - sha256: 585c89094e3eff35df10d3076964bf154b24d575 + sha256: 1190a239fd7406fbe0b73169c3d8406a1aacae3e source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@585c89094e3eff35df10d3076964bf154b24d575 + url: git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e category: main optional: false - name: geoh5py @@ -8607,12 +8608,12 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@585c89094e3eff35df10d3076964bf154b24d575 + url: git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e hash: - sha256: 585c89094e3eff35df10d3076964bf154b24d575 + sha256: 1190a239fd7406fbe0b73169c3d8406a1aacae3e source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@585c89094e3eff35df10d3076964bf154b24d575 + url: git+https://github.com/MiraGeoscience/geoh5py.git@1190a239fd7406fbe0b73169c3d8406a1aacae3e category: main optional: false - name: mira-simpeg From 9ac547cf052c0bbcc2b003a2544cef5c5d23f7b9 Mon Sep 17 00:00:00 2001 From: benjamink Date: Thu, 26 Jun 2025 14:13:39 -0700 Subject: [PATCH 07/10] remove azimuth and dip before returning transferred models, just need the property group --- simpeg_drivers/electricals/driver.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/simpeg_drivers/electricals/driver.py b/simpeg_drivers/electricals/driver.py index 7934006c..41f84817 100644 --- a/simpeg_drivers/electricals/driver.py +++ b/simpeg_drivers/electricals/driver.py @@ -141,6 +141,8 @@ def transfer_models(self, mesh: DrapeModel) -> dict[str, uuid.UUID | float]: property_group_type=self.batch2d_params.models.gradient_rotation.property_group_type, ) models["gradient_rotation"] = pg + del models["azimuth"] + del models["dip"] return models From 22536b176d48844d0877192de0659a0c34bde869 Mon Sep 17 00:00:00 2001 From: benjamink Date: Fri, 27 Jun 2025 09:33:08 -0700 Subject: [PATCH 08/10] make gradient rotations visible for batch2d ui.jsons --- .../uijson/direct_current_batch2d_inversion.ui.json | 1 - .../uijson/induced_polarization_batch2d_inversion.ui.json | 1 - 2 files changed, 2 deletions(-) diff --git a/simpeg_drivers-assets/uijson/direct_current_batch2d_inversion.ui.json b/simpeg_drivers-assets/uijson/direct_current_batch2d_inversion.ui.json index 5d4de6a2..e20811c7 100644 --- a/simpeg_drivers-assets/uijson/direct_current_batch2d_inversion.ui.json +++ b/simpeg_drivers-assets/uijson/direct_current_batch2d_inversion.ui.json @@ -270,7 +270,6 @@ "label": "Gradient rotation", "optional": true, "enabled": false, - "visible": false, "parent": "mesh", "value": "" }, diff --git a/simpeg_drivers-assets/uijson/induced_polarization_batch2d_inversion.ui.json b/simpeg_drivers-assets/uijson/induced_polarization_batch2d_inversion.ui.json index 16d37bae..582712d9 100644 --- a/simpeg_drivers-assets/uijson/induced_polarization_batch2d_inversion.ui.json +++ b/simpeg_drivers-assets/uijson/induced_polarization_batch2d_inversion.ui.json @@ -281,7 +281,6 @@ "label": "Gradient rotation", "optional": true, "enabled": false, - "visible": false, "parent": "mesh", "value": "" }, From 96b298c8a8e5c34723ce8098eee0c6ff6b0562f9 Mon Sep 17 00:00:00 2001 From: benjamink Date: Fri, 27 Jun 2025 10:53:34 -0700 Subject: [PATCH 09/10] pass mesh with gradient_rotations group in 2d rot grad test --- tests/run_tests/driver_2d_rotated_gradients_test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/run_tests/driver_2d_rotated_gradients_test.py b/tests/run_tests/driver_2d_rotated_gradients_test.py index 49cd3ac6..23c40a43 100644 --- a/tests/run_tests/driver_2d_rotated_gradients_test.py +++ b/tests/run_tests/driver_2d_rotated_gradients_test.py @@ -131,6 +131,7 @@ def test_dc2d_rotated_grad_run( # Run the inverse params = DC2DInversionOptions.build( geoh5=geoh5, + mesh=mesh, drape_model=DrapeModelOptions( u_cell_size=5.0, v_cell_size=5.0, From b8888fce63f4d47ea2d0d5e6cc1c93ad9668d7b6 Mon Sep 17 00:00:00 2001 From: benjamink Date: Fri, 27 Jun 2025 12:17:43 -0700 Subject: [PATCH 10/10] move plate eastward to lie under top of hill and up for improved sensitivity. Update targets --- tests/run_tests/driver_2d_rotated_gradients_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/run_tests/driver_2d_rotated_gradients_test.py b/tests/run_tests/driver_2d_rotated_gradients_test.py index 23c40a43..3bcd8219 100644 --- a/tests/run_tests/driver_2d_rotated_gradients_test.py +++ b/tests/run_tests/driver_2d_rotated_gradients_test.py @@ -40,7 +40,7 @@ # To test the full run and validate the inversion. # Move this file out of the test directory and run. -target_run = {"data_norm": 0.6439364297260022, "phi_d": 92.2, "phi_m": 0.255} +target_run = {"data_norm": 0.6345768240307744, "phi_d": 1090, "phi_m": 3.99} def test_dc2d_rotated_grad_fwr_run( @@ -53,7 +53,7 @@ def test_dc2d_rotated_grad_fwr_run( strike_length=1000.0, dip_length=150.0, width=20.0, - origin=(0.0, 0.0, -50), + origin=(50.0, 0.0, -30), direction=90, dip=45, )