From 1540f852345b71195ce7a04bda97c6c7ea76878d Mon Sep 17 00:00:00 2001 From: dominiquef Date: Thu, 17 Apr 2025 08:39:54 -0700 Subject: [PATCH 01/20] Change driver __main__ to fetch info about workers --- simpeg_drivers/driver.py | 25 ++++++++++++++++++++----- 1 file changed, 20 insertions(+), 5 deletions(-) diff --git a/simpeg_drivers/driver.py b/simpeg_drivers/driver.py index 56ddb802..f14ae79c 100644 --- a/simpeg_drivers/driver.py +++ b/simpeg_drivers/driver.py @@ -570,10 +570,12 @@ def configure_dask(self): dconf.set(scheduler="threads", pool=ThreadPool(n_cpu)) @classmethod - def start(cls, filepath: str | Path, driver_class=None): - _ = driver_class + def start(cls, filepath: str | Path | InputFile): + if isinstance(filepath, InputFile): + ifile = filepath + else: + ifile = InputFile.read_ui_json(filepath) - ifile = InputFile.read_ui_json(filepath) forward_only = ifile.data["forward_only"] inversion_type = ifile.ui_json.get("inversion_type", None) @@ -657,5 +659,18 @@ def get_path(self, filepath: str | Path) -> str: if __name__ == "__main__": file = Path(sys.argv[1]).resolve() - InversionDriver.start(file) - sys.stdout.close() + + input_file = InputFile.read_ui_json(file) + n_workers = input_file.data.get("n_workers", None) + n_threads = input_file.data.get("n_threads", None) + + if n_workers is not None and n_threads is not None: + cluster = LocalCluster( + processes=True, n_workers=n_workers, threads_per_worker=n_threads + ) + client = cluster.get_client() + + # Full run + with performance_report(filename=Path("./dask_profile.html")): + InversionDriver.start(input_file) + sys.stdout.close() From 7d605189dcd22a3f9678002435c749d9e311ad67 Mon Sep 17 00:00:00 2001 From: dominiquef Date: Thu, 17 Apr 2025 14:11:26 -0700 Subject: [PATCH 02/20] Initial implementation of a split on tiles --- .../components/factories/misfit_factory.py | 159 +++++++++--------- simpeg_drivers/driver.py | 69 ++++++-- simpeg_drivers/options.py | 4 + 3 files changed, 140 insertions(+), 92 deletions(-) diff --git a/simpeg_drivers/components/factories/misfit_factory.py b/simpeg_drivers/components/factories/misfit_factory.py index d8642d90..2a0c2c7f 100644 --- a/simpeg_drivers/components/factories/misfit_factory.py +++ b/simpeg_drivers/components/factories/misfit_factory.py @@ -45,9 +45,10 @@ def __init__(self, params: BaseParams | BaseOptions, models=None): def concrete_object(self): return objective_function.ComboObjectiveFunction - def build(self, tiles, inversion_data, inversion_mesh, active_cells): # pylint: disable=arguments-differ + def build(self, tiles, n_split, inversion_data, inversion_mesh, active_cells): # pylint: disable=arguments-differ global_misfit = super().build( tiles=tiles, + n_split=n_split, inversion_data=inversion_data, inversion_mesh=inversion_mesh, active_cells=active_cells, @@ -57,6 +58,7 @@ def build(self, tiles, inversion_data, inversion_mesh, active_cells): # pylint: def assemble_arguments( # pylint: disable=arguments-differ self, tiles, + n_split, inversion_data, inversion_mesh, active_cells, @@ -71,102 +73,103 @@ def assemble_arguments( # pylint: disable=arguments-differ self.sorting = [] self.ordering = [] - tile_num = 0 + tile_count = 0 data_count = 0 - for tile_count, local_index in enumerate(tiles): + for local_index in tiles: if len(local_index) == 0: continue local_mesh = None - for count, channel in enumerate(channels): - local_sim, local_index, ordering, mapping = ( - self.create_nested_simulation( - inversion_data, - inversion_mesh, - local_mesh, - active_cells, - local_index, - channel=channel, - tile_id=tile_num, - padding_cells=self.params.padding_cells, - ) - ) - - local_mesh = getattr(local_sim, "mesh", None) - - if count == 0: - if self.factory_type in [ - "fdem", - "tdem", - "magnetotellurics", - "tipper", - ]: - self.sorting.append( - np.arange( - data_count, - data_count + len(local_index), - dtype=int, - ) + for split_ind in np.array_split(local_index, n_split): + for count, channel in enumerate(channels): + local_sim, split_ind, ordering, mapping = ( + self.create_nested_simulation( + inversion_data, + inversion_mesh, + local_mesh, + active_cells, + split_ind, + channel=channel, + tile_id=tile_count, + padding_cells=self.params.padding_cells, ) - data_count += len(local_index) - else: - self.sorting.append(local_index) + ) - # TODO this should be done in the simulation factory - if "induced polarization" in self.params.inversion_type: - if "2d" in self.params.inversion_type: - proj = maps.InjectActiveCells( - inversion_mesh.mesh, active_cells, value_inactive=1e-8 - ) - else: - proj = maps.InjectActiveCells( - mapping.local_mesh, - mapping.local_active, - value_inactive=1e-8, - ) + local_mesh = getattr(local_sim, "mesh", None) + + if count == 0: + if self.factory_type in [ + "fdem", + "tdem", + "magnetotellurics", + "tipper", + ]: + self.sorting.append( + np.arange( + data_count, + data_count + len(split_ind), + dtype=int, + ) + ) + data_count += len(split_ind) + else: + self.sorting.append(split_ind) + + # TODO this should be done in the simulation factory + if "induced polarization" in self.params.inversion_type: + if "2d" in self.params.inversion_type: + proj = maps.InjectActiveCells( + inversion_mesh.mesh, active_cells, value_inactive=1e-8 + ) + else: + proj = maps.InjectActiveCells( + mapping.local_mesh, + mapping.local_active, + value_inactive=1e-8, + ) - local_sim.sigma = proj * mapping * self.models.conductivity + local_sim.sigma = proj * mapping * self.models.conductivity - # TODO add option to export tile meshes - # from octree_creation_app.utils import treemesh_2_octree - # from geoh5py.shared.utils import fetch_active_workspace - # - # with fetch_active_workspace(self.params.geoh5) as ws: - # treemesh_2_octree(ws, local_sim.mesh) + # TODO add option to export tile meshes + # from octree_creation_app.utils import treemesh_2_octree + # from geoh5py.shared.utils import fetch_active_workspace + # + # with fetch_active_workspace(self.params.geoh5) as ws: + # treemesh_2_octree(ws, local_sim.mesh) - # TODO Parse workers to simulations - # local_sim.workers = self.params.distributed_workers + # TODO Parse workers to simulations + # local_sim.workers = self.params.distributed_workers - simulation = meta.MetaSimulation( - simulations=[local_sim], mappings=[mapping] - ) + simulation = meta.MetaSimulation( + simulations=[local_sim], mappings=[mapping] + ) - local_data = data.Data(local_sim.survey) + local_data = data.Data(local_sim.survey) - if self.params.forward_only: - lmisfit = data_misfit.L2DataMisfit(local_data, simulation) + if self.params.forward_only: + lmisfit = data_misfit.L2DataMisfit(local_data, simulation) - else: - local_data.dobs = local_sim.survey.dobs - local_data.standard_deviation = local_sim.survey.std - lmisfit = data_misfit.L2DataMisfit( - local_data, - simulation, - ) + else: + local_data.dobs = local_sim.survey.dobs + local_data.standard_deviation = local_sim.survey.std + lmisfit = data_misfit.L2DataMisfit( + local_data, + simulation, + ) - name = self.params.inversion_type + name = self.params.inversion_type - if len(tiles) > 1: - name += f": Tile {tile_count + 1}" - if len(channels) > 1: - name += f": Channel {channel}" + if len(tiles) > 1 or n_split > 1: + name += f": Tile {tile_count + 1}" + if len(channels) > 1: + name += f": Channel {channel}" - lmisfit.name = f"{name}" + lmisfit.name = f"{name}" - local_misfits.append(lmisfit) - self.ordering.append(ordering) + local_misfits.append(lmisfit) + self.ordering.append(ordering) - tile_num += 1 + tile_count += 1 return [local_misfits] diff --git a/simpeg_drivers/driver.py b/simpeg_drivers/driver.py index f14ae79c..243e730e 100644 --- a/simpeg_drivers/driver.py +++ b/simpeg_drivers/driver.py @@ -14,6 +14,7 @@ from __future__ import annotations import multiprocessing +import contextlib from copy import deepcopy import sys from datetime import datetime, timedelta @@ -26,10 +27,12 @@ from dask import config as dconf from dask.distributed import get_client, Client, LocalCluster, performance_report + from geoapps_utils.driver.driver import BaseDriver from geoapps_utils.utils.importing import GeoAppsError from geoh5py.groups import SimPEGGroup +from geoh5py.objects import FEMSurvey from geoh5py.shared.utils import fetch_active_workspace from geoh5py.ui_json import InputFile from param_sweeps.driver import SweepParams @@ -110,6 +113,30 @@ def client(self): return self._client + @property + def workers(self): + """List of workers""" + if self.client: + return list(self.client.cluster.workers.values()) + return [] + + @property + def n_split(self): + """ + Number of splits for the data misfit to be distributed. + evenly among workers. + """ + n_splits = 1 + n_misfits = self.params.tile_spatial + + if isinstance(self.params.data_object, FEMSurvey): + n_misfits = len(self.params.data_object.channels) + + if n_misfits % len(self.workers) != 0: + n_splits = len(self.workers) + + return n_splits + @property def data_misfit(self): """The Simpeg.data_misfit class""" @@ -124,6 +151,7 @@ def data_misfit(self): self.params, models=self.models ).build( tiles, + self.n_split, self.inversion_data, self.inversion_mesh, self.models.active_cells, @@ -658,19 +686,32 @@ def get_path(self, filepath: str | Path) -> str: if __name__ == "__main__": - file = Path(sys.argv[1]).resolve() - + # file = Path(sys.argv[1]).resolve() + file = Path(r"C:\Users\dominiquef\Desktop\Tests\GEOPY-2137.ui.json") input_file = InputFile.read_ui_json(file) - n_workers = input_file.data.get("n_workers", None) + n_workers = input_file.data.get("n_workers", 1) n_threads = input_file.data.get("n_threads", None) - - if n_workers is not None and n_threads is not None: - cluster = LocalCluster( - processes=True, n_workers=n_workers, threads_per_worker=n_threads - ) - client = cluster.get_client() - - # Full run - with performance_report(filename=Path("./dask_profile.html")): - InversionDriver.start(input_file) - sys.stdout.close() + save_report = input_file.data.get("performance_report", False) + + cluster = ( + LocalCluster(processes=True, n_workers=n_workers, threads_per_worker=n_threads) + if (n_workers > 1 or n_threads is not None) + else None + ) + + with ( + cluster.get_client() + if cluster is not None + else contextlib.nullcontext() as client + ): + if not isinstance(client, Client) and save_report: + save_report = False + + # Full run + with ( + performance_report(filename=file.parent / "dask_profile.html") + if save_report + else contextlib.nullcontext() + ): + InversionDriver.start(input_file) + sys.stdout.close() diff --git a/simpeg_drivers/options.py b/simpeg_drivers/options.py index 27acae12..c530ab1e 100644 --- a/simpeg_drivers/options.py +++ b/simpeg_drivers/options.py @@ -127,6 +127,10 @@ class CoreOptions(BaseData): out_group: SimPEGGroup | UIJsonGroup | None = None generate_sweep: bool = False distributed_workers: str | None = None + n_workers: int = 1 + n_threads: int | None = None + max_ram: float | None = None + performance_report: bool = False @field_validator("mesh", mode="before") @classmethod From 772bb2722382693f2670e0611712b15183172b10 Mon Sep 17 00:00:00 2001 From: dominiquef Date: Fri, 18 Apr 2025 13:28:06 -0700 Subject: [PATCH 03/20] Fix for no workers --- simpeg_drivers/driver.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simpeg_drivers/driver.py b/simpeg_drivers/driver.py index 243e730e..da436237 100644 --- a/simpeg_drivers/driver.py +++ b/simpeg_drivers/driver.py @@ -132,7 +132,7 @@ def n_split(self): if isinstance(self.params.data_object, FEMSurvey): n_misfits = len(self.params.data_object.channels) - if n_misfits % len(self.workers) != 0: + if len(self.workers) > 0 and n_misfits % len(self.workers) != 0: n_splits = len(self.workers) return n_splits From d83074023c8a777b3ad08eb76914487d8d30f6d6 Mon Sep 17 00:00:00 2001 From: dominiquef Date: Sat, 19 Apr 2025 10:42:28 -0700 Subject: [PATCH 04/20] Re-lock on simpeg dev branch --- .../py-3.10-linux-64-dev.conda.lock.yml | 17 +- environments/py-3.10-linux-64.conda.lock.yml | 17 +- .../py-3.10-win-64-dev.conda.lock.yml | 17 +- environments/py-3.10-win-64.conda.lock.yml | 17 +- .../py-3.11-linux-64-dev.conda.lock.yml | 17 +- environments/py-3.11-linux-64.conda.lock.yml | 17 +- .../py-3.11-win-64-dev.conda.lock.yml | 17 +- environments/py-3.11-win-64.conda.lock.yml | 17 +- .../py-3.12-linux-64-dev.conda.lock.yml | 17 +- environments/py-3.12-linux-64.conda.lock.yml | 17 +- .../py-3.12-win-64-dev.conda.lock.yml | 17 +- environments/py-3.12-win-64.conda.lock.yml | 17 +- py-3.10.conda-lock.yml | 1292 ++++++++-------- py-3.11.conda-lock.yml | 1336 ++++++++--------- py-3.12.conda-lock.yml | 1334 ++++++++-------- pyproject.toml | 4 +- 16 files changed, 2026 insertions(+), 2144 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 96dba2e6..9b469933 100644 --- a/environments/py-3.10-linux-64-dev.conda.lock.yml +++ b/environments/py-3.10-linux-64-dev.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: bf3275537e5ecaf05c1984281f2fde8ab4042050416af17dce075452328e658d +# input_hash: 5f80e0e4631df6610ff6b7d985c9c32876b203c29edebe7055b66c2ac402f7c8 channels: - conda-forge @@ -148,7 +148,7 @@ dependencies: - libxml2=2.13.7=h81593ed_1 - libzlib=1.3.1=hb9d3cd8_2 - linkify-it-py=2.0.3=pyhd8ed1ab_1 - - llvm-openmp=20.1.2=h024ca30_1 + - llvm-openmp=20.1.3=h024ca30_0 - locket=1.0.0=pyhd8ed1ab_0 - markdown-it-py=2.2.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py310h89163eb_1 @@ -180,7 +180,7 @@ dependencies: - openjpeg=2.5.3=h5fbd93e_0 - openssl=3.5.0=h7b32b05_0 - overrides=7.7.0=pyhd8ed1ab_1 - - packaging=24.2=pyhd8ed1ab_2 + - packaging=25.0=pyhd8ed1ab_0 - pandas=2.2.3=py310h5eaa309_3 - pandoc=3.6.4=ha770c72_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 @@ -299,12 +299,11 @@ dependencies: - zstandard=0.23.0=py310ha75aee5_1 - zstd=1.5.7=hb8e6e7a_2 - pip: - - dask == 2025.3.0 --hash=sha256:b5d72bb33788904a218fd7da1850238517592358ecc79c30bb5c188a71df506d - - geoapps-utils == 0.5.0a3 --hash=sha256:a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c - - geoh5py == 0.11.0a4 --hash=sha256:4965e934b1e57460f98f76f96eca100abf48fd722245154c35af86e7ecbc10a6 - - mira-simpeg == 0.23.0.1a2 --hash=sha256:931b533984dfcca301bea0d8e4a72a5f482731f0561a9ad95a790c516262d830 - - octree-creation-app == 0.3.0a1 --hash=sha256:379dc607aca96db07af2ea8fbacadc9d0ca086e91d2508f5720b87e6e8d778a1 - - param-sweeps == 0.2.1a1 --hash=sha256:777618dd6eef4b6e86b4976e01c29bb202abb9d295b0774baeabf7534fb9389c + - geoapps-utils == 0.5.0a3 + - geoh5py == 0.11.0a4 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 + - octree-creation-app == 0.3.0a2 + - param-sweeps == 0.2.1a1 variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.10-linux-64.conda.lock.yml b/environments/py-3.10-linux-64.conda.lock.yml index b4ef3189..f9ba44d0 100644 --- a/environments/py-3.10-linux-64.conda.lock.yml +++ b/environments/py-3.10-linux-64.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: bf3275537e5ecaf05c1984281f2fde8ab4042050416af17dce075452328e658d +# input_hash: 5f80e0e4631df6610ff6b7d985c9c32876b203c29edebe7055b66c2ac402f7c8 channels: - conda-forge @@ -85,7 +85,7 @@ dependencies: - libxcrypt=4.4.36=hd590300_1 - libxml2=2.13.7=h81593ed_1 - libzlib=1.3.1=hb9d3cd8_2 - - llvm-openmp=20.1.2=h024ca30_1 + - llvm-openmp=20.1.3=h024ca30_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py310h89163eb_1 - matplotlib-base=3.8.4=py310hef631a5_2 @@ -100,7 +100,7 @@ dependencies: - numpy=1.26.4=py310hb13e2d6_0 - openjpeg=2.5.3=h5fbd93e_0 - openssl=3.5.0=h7b32b05_0 - - packaging=24.2=pyhd8ed1ab_2 + - packaging=25.0=pyhd8ed1ab_0 - pandas=2.2.3=py310h5eaa309_3 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py310hebfe307_1 @@ -151,12 +151,11 @@ dependencies: - zstandard=0.23.0=py310ha75aee5_1 - zstd=1.5.7=hb8e6e7a_2 - pip: - - dask == 2025.3.0 --hash=sha256:b5d72bb33788904a218fd7da1850238517592358ecc79c30bb5c188a71df506d - - geoapps-utils == 0.5.0a3 --hash=sha256:a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c - - geoh5py == 0.11.0a4 --hash=sha256:4965e934b1e57460f98f76f96eca100abf48fd722245154c35af86e7ecbc10a6 - - mira-simpeg == 0.23.0.1a2 --hash=sha256:931b533984dfcca301bea0d8e4a72a5f482731f0561a9ad95a790c516262d830 - - octree-creation-app == 0.3.0a1 --hash=sha256:379dc607aca96db07af2ea8fbacadc9d0ca086e91d2508f5720b87e6e8d778a1 - - param-sweeps == 0.2.1a1 --hash=sha256:777618dd6eef4b6e86b4976e01c29bb202abb9d295b0774baeabf7534fb9389c + - geoapps-utils == 0.5.0a3 + - geoh5py == 0.11.0a4 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 + - octree-creation-app == 0.3.0a2 + - param-sweeps == 0.2.1a1 variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.10-win-64-dev.conda.lock.yml b/environments/py-3.10-win-64-dev.conda.lock.yml index de223402..4121f63a 100644 --- a/environments/py-3.10-win-64-dev.conda.lock.yml +++ b/environments/py-3.10-win-64-dev.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: e7bc6ba0193fb36212cebeba8243e70ee2c0c8c368772456f1dad5c253e5f5b5 +# input_hash: a9aedc5bb5e600c46166d8ce530ce38fd28a1ebf36c5f83f3a3609de8a4be14c channels: - conda-forge @@ -137,7 +137,7 @@ dependencies: - libxml2=2.13.7=h442d1da_1 - libzlib=1.3.1=h2466b09_2 - linkify-it-py=2.0.3=pyhd8ed1ab_1 - - llvm-openmp=20.1.2=h30eaf37_1 + - llvm-openmp=20.1.3=h30eaf37_0 - locket=1.0.0=pyhd8ed1ab_0 - markdown-it-py=2.2.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py310h38315fa_1 @@ -166,7 +166,7 @@ dependencies: - openjpeg=2.5.3=h4d64b90_0 - openssl=3.5.0=ha4e3fda_0 - overrides=7.7.0=pyhd8ed1ab_1 - - packaging=24.2=pyhd8ed1ab_2 + - packaging=25.0=pyhd8ed1ab_0 - pandas=2.2.3=py310hb4db72f_3 - pandoc=3.6.4=h57928b3_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 @@ -290,12 +290,11 @@ dependencies: - zstandard=0.23.0=py310ha8f682b_1 - zstd=1.5.7=hbeecb71_2 - pip: - - dask == 2025.3.0 --hash=sha256:b5d72bb33788904a218fd7da1850238517592358ecc79c30bb5c188a71df506d - - geoapps-utils == 0.5.0a3 --hash=sha256:a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c - - geoh5py == 0.11.0a4 --hash=sha256:4965e934b1e57460f98f76f96eca100abf48fd722245154c35af86e7ecbc10a6 - - mira-simpeg == 0.23.0.1a2 --hash=sha256:931b533984dfcca301bea0d8e4a72a5f482731f0561a9ad95a790c516262d830 - - octree-creation-app == 0.3.0a1 --hash=sha256:379dc607aca96db07af2ea8fbacadc9d0ca086e91d2508f5720b87e6e8d778a1 - - param-sweeps == 0.2.1a1 --hash=sha256:777618dd6eef4b6e86b4976e01c29bb202abb9d295b0774baeabf7534fb9389c + - geoapps-utils == 0.5.0a3 + - geoh5py == 0.11.0a4 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 + - octree-creation-app == 0.3.0a2 + - param-sweeps == 0.2.1a1 variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.10-win-64.conda.lock.yml b/environments/py-3.10-win-64.conda.lock.yml index 077c4bc0..a807d719 100644 --- a/environments/py-3.10-win-64.conda.lock.yml +++ b/environments/py-3.10-win-64.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: e7bc6ba0193fb36212cebeba8243e70ee2c0c8c368772456f1dad5c253e5f5b5 +# input_hash: a9aedc5bb5e600c46166d8ce530ce38fd28a1ebf36c5f83f3a3609de8a4be14c channels: - conda-forge @@ -73,7 +73,7 @@ dependencies: - libxcb=1.17.0=h0e4246c_0 - libxml2=2.13.7=h442d1da_1 - libzlib=1.3.1=h2466b09_2 - - llvm-openmp=20.1.2=h30eaf37_1 + - llvm-openmp=20.1.3=h30eaf37_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py310h38315fa_1 - matplotlib-base=3.8.4=py310hadb10a8_2 @@ -85,7 +85,7 @@ dependencies: - numpy=1.26.4=py310hf667824_0 - openjpeg=2.5.3=h4d64b90_0 - openssl=3.5.0=ha4e3fda_0 - - packaging=24.2=pyhd8ed1ab_2 + - packaging=25.0=pyhd8ed1ab_0 - pandas=2.2.3=py310hb4db72f_3 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py310h3e38d90_1 @@ -140,12 +140,11 @@ dependencies: - zstandard=0.23.0=py310ha8f682b_1 - zstd=1.5.7=hbeecb71_2 - pip: - - dask == 2025.3.0 --hash=sha256:b5d72bb33788904a218fd7da1850238517592358ecc79c30bb5c188a71df506d - - geoapps-utils == 0.5.0a3 --hash=sha256:a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c - - geoh5py == 0.11.0a4 --hash=sha256:4965e934b1e57460f98f76f96eca100abf48fd722245154c35af86e7ecbc10a6 - - mira-simpeg == 0.23.0.1a2 --hash=sha256:931b533984dfcca301bea0d8e4a72a5f482731f0561a9ad95a790c516262d830 - - octree-creation-app == 0.3.0a1 --hash=sha256:379dc607aca96db07af2ea8fbacadc9d0ca086e91d2508f5720b87e6e8d778a1 - - param-sweeps == 0.2.1a1 --hash=sha256:777618dd6eef4b6e86b4976e01c29bb202abb9d295b0774baeabf7534fb9389c + - geoapps-utils == 0.5.0a3 + - geoh5py == 0.11.0a4 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 + - octree-creation-app == 0.3.0a2 + - param-sweeps == 0.2.1a1 variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.11-linux-64-dev.conda.lock.yml b/environments/py-3.11-linux-64-dev.conda.lock.yml index a637294d..72afc728 100644 --- a/environments/py-3.11-linux-64-dev.conda.lock.yml +++ b/environments/py-3.11-linux-64-dev.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 8b265443dab30ad551824c6b1a148bd0dd8035f687125469ec0b8495cb8d13ef +# input_hash: c5288a1ebba1f0cbb480b3f1338e21cfcc5f83a7fa348fc730452b0c8eaa152f channels: - conda-forge @@ -150,7 +150,7 @@ dependencies: - libxml2=2.13.7=h81593ed_1 - libzlib=1.3.1=hb9d3cd8_2 - linkify-it-py=2.0.3=pyhd8ed1ab_1 - - llvm-openmp=20.1.2=h024ca30_1 + - llvm-openmp=20.1.3=h024ca30_0 - locket=1.0.0=pyhd8ed1ab_0 - markdown-it-py=2.2.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py311h2dc5d0c_1 @@ -182,7 +182,7 @@ dependencies: - openjpeg=2.5.3=h5fbd93e_0 - openssl=3.5.0=h7b32b05_0 - overrides=7.7.0=pyhd8ed1ab_1 - - packaging=24.2=pyhd8ed1ab_2 + - packaging=25.0=pyhd8ed1ab_0 - pandas=2.2.3=py311h7db5c69_3 - pandoc=3.6.4=ha770c72_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 @@ -302,12 +302,11 @@ dependencies: - zstandard=0.23.0=py311h9ecbd09_1 - zstd=1.5.7=hb8e6e7a_2 - pip: - - dask == 2025.3.0 --hash=sha256:b5d72bb33788904a218fd7da1850238517592358ecc79c30bb5c188a71df506d - - geoapps-utils == 0.5.0a3 --hash=sha256:a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c - - geoh5py == 0.11.0a4 --hash=sha256:4965e934b1e57460f98f76f96eca100abf48fd722245154c35af86e7ecbc10a6 - - mira-simpeg == 0.23.0.1a2 --hash=sha256:931b533984dfcca301bea0d8e4a72a5f482731f0561a9ad95a790c516262d830 - - octree-creation-app == 0.3.0a1 --hash=sha256:379dc607aca96db07af2ea8fbacadc9d0ca086e91d2508f5720b87e6e8d778a1 - - param-sweeps == 0.2.1a1 --hash=sha256:777618dd6eef4b6e86b4976e01c29bb202abb9d295b0774baeabf7534fb9389c + - geoapps-utils == 0.5.0a3 + - geoh5py == 0.11.0a4 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 + - octree-creation-app == 0.3.0a2 + - param-sweeps == 0.2.1a1 variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.11-linux-64.conda.lock.yml b/environments/py-3.11-linux-64.conda.lock.yml index eda4a425..7184d242 100644 --- a/environments/py-3.11-linux-64.conda.lock.yml +++ b/environments/py-3.11-linux-64.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 8b265443dab30ad551824c6b1a148bd0dd8035f687125469ec0b8495cb8d13ef +# input_hash: c5288a1ebba1f0cbb480b3f1338e21cfcc5f83a7fa348fc730452b0c8eaa152f channels: - conda-forge @@ -86,7 +86,7 @@ dependencies: - libxcrypt=4.4.36=hd590300_1 - libxml2=2.13.7=h81593ed_1 - libzlib=1.3.1=hb9d3cd8_2 - - llvm-openmp=20.1.2=h024ca30_1 + - llvm-openmp=20.1.3=h024ca30_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py311h2dc5d0c_1 - matplotlib-base=3.8.4=py311ha4ca890_2 @@ -101,7 +101,7 @@ dependencies: - numpy=1.26.4=py311h64a7726_0 - openjpeg=2.5.3=h5fbd93e_0 - openssl=3.5.0=h7b32b05_0 - - packaging=24.2=pyhd8ed1ab_2 + - packaging=25.0=pyhd8ed1ab_0 - pandas=2.2.3=py311h7db5c69_3 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py311h82a398c_1 @@ -153,12 +153,11 @@ dependencies: - zstandard=0.23.0=py311h9ecbd09_1 - zstd=1.5.7=hb8e6e7a_2 - pip: - - dask == 2025.3.0 --hash=sha256:b5d72bb33788904a218fd7da1850238517592358ecc79c30bb5c188a71df506d - - geoapps-utils == 0.5.0a3 --hash=sha256:a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c - - geoh5py == 0.11.0a4 --hash=sha256:4965e934b1e57460f98f76f96eca100abf48fd722245154c35af86e7ecbc10a6 - - mira-simpeg == 0.23.0.1a2 --hash=sha256:931b533984dfcca301bea0d8e4a72a5f482731f0561a9ad95a790c516262d830 - - octree-creation-app == 0.3.0a1 --hash=sha256:379dc607aca96db07af2ea8fbacadc9d0ca086e91d2508f5720b87e6e8d778a1 - - param-sweeps == 0.2.1a1 --hash=sha256:777618dd6eef4b6e86b4976e01c29bb202abb9d295b0774baeabf7534fb9389c + - geoapps-utils == 0.5.0a3 + - geoh5py == 0.11.0a4 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 + - octree-creation-app == 0.3.0a2 + - param-sweeps == 0.2.1a1 variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.11-win-64-dev.conda.lock.yml b/environments/py-3.11-win-64-dev.conda.lock.yml index c8e9f8ef..37d7359e 100644 --- a/environments/py-3.11-win-64-dev.conda.lock.yml +++ b/environments/py-3.11-win-64-dev.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: 6746234080fb492f036f680bcb88c659a2628254805462ff518405ebc4dc97ec +# input_hash: 617bef7b79ba8c81c0cabeecff2a297d77f243179cfc6277cd1c97d18ae76c5c channels: - conda-forge @@ -139,7 +139,7 @@ dependencies: - libxml2=2.13.7=h442d1da_1 - libzlib=1.3.1=h2466b09_2 - linkify-it-py=2.0.3=pyhd8ed1ab_1 - - llvm-openmp=20.1.2=h30eaf37_1 + - llvm-openmp=20.1.3=h30eaf37_0 - locket=1.0.0=pyhd8ed1ab_0 - markdown-it-py=2.2.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py311h5082efb_1 @@ -168,7 +168,7 @@ dependencies: - openjpeg=2.5.3=h4d64b90_0 - openssl=3.5.0=ha4e3fda_0 - overrides=7.7.0=pyhd8ed1ab_1 - - packaging=24.2=pyhd8ed1ab_2 + - packaging=25.0=pyhd8ed1ab_0 - pandas=2.2.3=py311hcf9f919_3 - pandoc=3.6.4=h57928b3_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 @@ -293,12 +293,11 @@ dependencies: - zstandard=0.23.0=py311he736701_1 - zstd=1.5.7=hbeecb71_2 - pip: - - dask == 2025.3.0 --hash=sha256:b5d72bb33788904a218fd7da1850238517592358ecc79c30bb5c188a71df506d - - geoapps-utils == 0.5.0a3 --hash=sha256:a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c - - geoh5py == 0.11.0a4 --hash=sha256:4965e934b1e57460f98f76f96eca100abf48fd722245154c35af86e7ecbc10a6 - - mira-simpeg == 0.23.0.1a2 --hash=sha256:931b533984dfcca301bea0d8e4a72a5f482731f0561a9ad95a790c516262d830 - - octree-creation-app == 0.3.0a1 --hash=sha256:379dc607aca96db07af2ea8fbacadc9d0ca086e91d2508f5720b87e6e8d778a1 - - param-sweeps == 0.2.1a1 --hash=sha256:777618dd6eef4b6e86b4976e01c29bb202abb9d295b0774baeabf7534fb9389c + - geoapps-utils == 0.5.0a3 + - geoh5py == 0.11.0a4 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 + - octree-creation-app == 0.3.0a2 + - param-sweeps == 0.2.1a1 variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.11-win-64.conda.lock.yml b/environments/py-3.11-win-64.conda.lock.yml index e4def3fb..ba673d45 100644 --- a/environments/py-3.11-win-64.conda.lock.yml +++ b/environments/py-3.11-win-64.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: 6746234080fb492f036f680bcb88c659a2628254805462ff518405ebc4dc97ec +# input_hash: 617bef7b79ba8c81c0cabeecff2a297d77f243179cfc6277cd1c97d18ae76c5c channels: - conda-forge @@ -74,7 +74,7 @@ dependencies: - libxcb=1.17.0=h0e4246c_0 - libxml2=2.13.7=h442d1da_1 - libzlib=1.3.1=h2466b09_2 - - llvm-openmp=20.1.2=h30eaf37_1 + - llvm-openmp=20.1.3=h30eaf37_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py311h5082efb_1 - matplotlib-base=3.8.4=py311h9b31f6e_2 @@ -86,7 +86,7 @@ dependencies: - numpy=1.26.4=py311h0b4df5a_0 - openjpeg=2.5.3=h4d64b90_0 - openssl=3.5.0=ha4e3fda_0 - - packaging=24.2=pyhd8ed1ab_2 + - packaging=25.0=pyhd8ed1ab_0 - pandas=2.2.3=py311hcf9f919_3 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py311h5592be9_1 @@ -142,12 +142,11 @@ dependencies: - zstandard=0.23.0=py311he736701_1 - zstd=1.5.7=hbeecb71_2 - pip: - - dask == 2025.3.0 --hash=sha256:b5d72bb33788904a218fd7da1850238517592358ecc79c30bb5c188a71df506d - - geoapps-utils == 0.5.0a3 --hash=sha256:a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c - - geoh5py == 0.11.0a4 --hash=sha256:4965e934b1e57460f98f76f96eca100abf48fd722245154c35af86e7ecbc10a6 - - mira-simpeg == 0.23.0.1a2 --hash=sha256:931b533984dfcca301bea0d8e4a72a5f482731f0561a9ad95a790c516262d830 - - octree-creation-app == 0.3.0a1 --hash=sha256:379dc607aca96db07af2ea8fbacadc9d0ca086e91d2508f5720b87e6e8d778a1 - - param-sweeps == 0.2.1a1 --hash=sha256:777618dd6eef4b6e86b4976e01c29bb202abb9d295b0774baeabf7534fb9389c + - geoapps-utils == 0.5.0a3 + - geoh5py == 0.11.0a4 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 + - octree-creation-app == 0.3.0a2 + - param-sweeps == 0.2.1a1 variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.12-linux-64-dev.conda.lock.yml b/environments/py-3.12-linux-64-dev.conda.lock.yml index bbb55741..e5c45fc5 100644 --- a/environments/py-3.12-linux-64-dev.conda.lock.yml +++ b/environments/py-3.12-linux-64-dev.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 1dc064917aeb518bbd08c7336c474da8966f79b47d704f7e17aa98ac37fee0d7 +# input_hash: 46e0e2b61133dc39d04ca1a932571bab7ef29a782ca68eff8139eca7c48a28b1 channels: - conda-forge @@ -150,7 +150,7 @@ dependencies: - libxml2=2.13.7=h81593ed_1 - libzlib=1.3.1=hb9d3cd8_2 - linkify-it-py=2.0.3=pyhd8ed1ab_1 - - llvm-openmp=20.1.2=h024ca30_1 + - llvm-openmp=20.1.3=h024ca30_0 - locket=1.0.0=pyhd8ed1ab_0 - markdown-it-py=2.2.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py312h178313f_1 @@ -182,7 +182,7 @@ dependencies: - openjpeg=2.5.3=h5fbd93e_0 - openssl=3.5.0=h7b32b05_0 - overrides=7.7.0=pyhd8ed1ab_1 - - packaging=24.2=pyhd8ed1ab_2 + - packaging=25.0=pyhd8ed1ab_0 - pandas=2.2.3=py312hf9745cd_3 - pandoc=3.6.4=ha770c72_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 @@ -302,12 +302,11 @@ dependencies: - zstandard=0.23.0=py312h66e93f0_1 - zstd=1.5.7=hb8e6e7a_2 - pip: - - dask == 2025.3.0 --hash=sha256:b5d72bb33788904a218fd7da1850238517592358ecc79c30bb5c188a71df506d - - geoapps-utils == 0.5.0a3 --hash=sha256:a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c - - geoh5py == 0.11.0a4 --hash=sha256:4965e934b1e57460f98f76f96eca100abf48fd722245154c35af86e7ecbc10a6 - - mira-simpeg == 0.23.0.1a2 --hash=sha256:931b533984dfcca301bea0d8e4a72a5f482731f0561a9ad95a790c516262d830 - - octree-creation-app == 0.3.0a1 --hash=sha256:379dc607aca96db07af2ea8fbacadc9d0ca086e91d2508f5720b87e6e8d778a1 - - param-sweeps == 0.2.1a1 --hash=sha256:777618dd6eef4b6e86b4976e01c29bb202abb9d295b0774baeabf7534fb9389c + - geoapps-utils == 0.5.0a3 + - geoh5py == 0.11.0a4 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 + - octree-creation-app == 0.3.0a2 + - param-sweeps == 0.2.1a1 variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.12-linux-64.conda.lock.yml b/environments/py-3.12-linux-64.conda.lock.yml index 56b2b80c..d09be109 100644 --- a/environments/py-3.12-linux-64.conda.lock.yml +++ b/environments/py-3.12-linux-64.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 1dc064917aeb518bbd08c7336c474da8966f79b47d704f7e17aa98ac37fee0d7 +# input_hash: 46e0e2b61133dc39d04ca1a932571bab7ef29a782ca68eff8139eca7c48a28b1 channels: - conda-forge @@ -86,7 +86,7 @@ dependencies: - libxcrypt=4.4.36=hd590300_1 - libxml2=2.13.7=h81593ed_1 - libzlib=1.3.1=hb9d3cd8_2 - - llvm-openmp=20.1.2=h024ca30_1 + - llvm-openmp=20.1.3=h024ca30_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py312h178313f_1 - matplotlib-base=3.8.4=py312h20ab3a6_2 @@ -101,7 +101,7 @@ dependencies: - numpy=1.26.4=py312heda63a1_0 - openjpeg=2.5.3=h5fbd93e_0 - openssl=3.5.0=h7b32b05_0 - - packaging=24.2=pyhd8ed1ab_2 + - packaging=25.0=pyhd8ed1ab_0 - pandas=2.2.3=py312hf9745cd_3 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py312h287a98d_1 @@ -153,12 +153,11 @@ dependencies: - zstandard=0.23.0=py312h66e93f0_1 - zstd=1.5.7=hb8e6e7a_2 - pip: - - dask == 2025.3.0 --hash=sha256:b5d72bb33788904a218fd7da1850238517592358ecc79c30bb5c188a71df506d - - geoapps-utils == 0.5.0a3 --hash=sha256:a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c - - geoh5py == 0.11.0a4 --hash=sha256:4965e934b1e57460f98f76f96eca100abf48fd722245154c35af86e7ecbc10a6 - - mira-simpeg == 0.23.0.1a2 --hash=sha256:931b533984dfcca301bea0d8e4a72a5f482731f0561a9ad95a790c516262d830 - - octree-creation-app == 0.3.0a1 --hash=sha256:379dc607aca96db07af2ea8fbacadc9d0ca086e91d2508f5720b87e6e8d778a1 - - param-sweeps == 0.2.1a1 --hash=sha256:777618dd6eef4b6e86b4976e01c29bb202abb9d295b0774baeabf7534fb9389c + - geoapps-utils == 0.5.0a3 + - geoh5py == 0.11.0a4 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 + - octree-creation-app == 0.3.0a2 + - param-sweeps == 0.2.1a1 variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.12-win-64-dev.conda.lock.yml b/environments/py-3.12-win-64-dev.conda.lock.yml index 25445698..ca4ae8cf 100644 --- a/environments/py-3.12-win-64-dev.conda.lock.yml +++ b/environments/py-3.12-win-64-dev.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: 40c9d8260ef2ad818f7a0dad316494f49066c56bbffb2b257d078263c4ea329f +# input_hash: b0a0dc55f494b271b3e6274e5a61928da568a8684aa2376ddf2dfa25e930fae4 channels: - conda-forge @@ -139,7 +139,7 @@ dependencies: - libxml2=2.13.7=h442d1da_1 - libzlib=1.3.1=h2466b09_2 - linkify-it-py=2.0.3=pyhd8ed1ab_1 - - llvm-openmp=20.1.2=h30eaf37_1 + - llvm-openmp=20.1.3=h30eaf37_0 - locket=1.0.0=pyhd8ed1ab_0 - markdown-it-py=2.2.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py312h31fea79_1 @@ -168,7 +168,7 @@ dependencies: - openjpeg=2.5.3=h4d64b90_0 - openssl=3.5.0=ha4e3fda_0 - overrides=7.7.0=pyhd8ed1ab_1 - - packaging=24.2=pyhd8ed1ab_2 + - packaging=25.0=pyhd8ed1ab_0 - pandas=2.2.3=py312h72972c8_3 - pandoc=3.6.4=h57928b3_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 @@ -293,12 +293,11 @@ dependencies: - zstandard=0.23.0=py312h4389bb4_1 - zstd=1.5.7=hbeecb71_2 - pip: - - dask == 2025.3.0 --hash=sha256:b5d72bb33788904a218fd7da1850238517592358ecc79c30bb5c188a71df506d - - geoapps-utils == 0.5.0a3 --hash=sha256:a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c - - geoh5py == 0.11.0a4 --hash=sha256:4965e934b1e57460f98f76f96eca100abf48fd722245154c35af86e7ecbc10a6 - - mira-simpeg == 0.23.0.1a2 --hash=sha256:931b533984dfcca301bea0d8e4a72a5f482731f0561a9ad95a790c516262d830 - - octree-creation-app == 0.3.0a1 --hash=sha256:379dc607aca96db07af2ea8fbacadc9d0ca086e91d2508f5720b87e6e8d778a1 - - param-sweeps == 0.2.1a1 --hash=sha256:777618dd6eef4b6e86b4976e01c29bb202abb9d295b0774baeabf7534fb9389c + - geoapps-utils == 0.5.0a3 + - geoh5py == 0.11.0a4 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 + - octree-creation-app == 0.3.0a2 + - param-sweeps == 0.2.1a1 variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.12-win-64.conda.lock.yml b/environments/py-3.12-win-64.conda.lock.yml index aca3412e..630d68ee 100644 --- a/environments/py-3.12-win-64.conda.lock.yml +++ b/environments/py-3.12-win-64.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: 40c9d8260ef2ad818f7a0dad316494f49066c56bbffb2b257d078263c4ea329f +# input_hash: b0a0dc55f494b271b3e6274e5a61928da568a8684aa2376ddf2dfa25e930fae4 channels: - conda-forge @@ -74,7 +74,7 @@ dependencies: - libxcb=1.17.0=h0e4246c_0 - libxml2=2.13.7=h442d1da_1 - libzlib=1.3.1=h2466b09_2 - - llvm-openmp=20.1.2=h30eaf37_1 + - llvm-openmp=20.1.3=h30eaf37_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py312h31fea79_1 - matplotlib-base=3.8.4=py312hfee7060_2 @@ -86,7 +86,7 @@ dependencies: - numpy=1.26.4=py312h8753938_0 - openjpeg=2.5.3=h4d64b90_0 - openssl=3.5.0=ha4e3fda_0 - - packaging=24.2=pyhd8ed1ab_2 + - packaging=25.0=pyhd8ed1ab_0 - pandas=2.2.3=py312h72972c8_3 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py312h381445a_1 @@ -142,12 +142,11 @@ dependencies: - zstandard=0.23.0=py312h4389bb4_1 - zstd=1.5.7=hbeecb71_2 - pip: - - dask == 2025.3.0 --hash=sha256:b5d72bb33788904a218fd7da1850238517592358ecc79c30bb5c188a71df506d - - geoapps-utils == 0.5.0a3 --hash=sha256:a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c - - geoh5py == 0.11.0a4 --hash=sha256:4965e934b1e57460f98f76f96eca100abf48fd722245154c35af86e7ecbc10a6 - - mira-simpeg == 0.23.0.1a2 --hash=sha256:931b533984dfcca301bea0d8e4a72a5f482731f0561a9ad95a790c516262d830 - - octree-creation-app == 0.3.0a1 --hash=sha256:379dc607aca96db07af2ea8fbacadc9d0ca086e91d2508f5720b87e6e8d778a1 - - param-sweeps == 0.2.1a1 --hash=sha256:777618dd6eef4b6e86b4976e01c29bb202abb9d295b0774baeabf7534fb9389c + - geoapps-utils == 0.5.0a3 + - geoh5py == 0.11.0a4 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 + - octree-creation-app == 0.3.0a2 + - param-sweeps == 0.2.1a1 variables: KMP_WARNINGS: 0 diff --git a/py-3.10.conda-lock.yml b/py-3.10.conda-lock.yml index 0c167963..d6a2272f 100644 --- a/py-3.10.conda-lock.yml +++ b/py-3.10.conda-lock.yml @@ -15,8 +15,8 @@ version: 1 metadata: content_hash: - win-64: e7bc6ba0193fb36212cebeba8243e70ee2c0c8c368772456f1dad5c253e5f5b5 - linux-64: bf3275537e5ecaf05c1984281f2fde8ab4042050416af17dce075452328e658d + win-64: a9aedc5bb5e600c46166d8ce530ce38fd28a1ebf36c5f83f3a3609de8a4be14c + linux-64: 5f80e0e4631df6610ff6b7d985c9c32876b203c29edebe7055b66c2ac402f7c8 channels: - url: conda-forge used_env_vars: [] @@ -35,7 +35,7 @@ package: platform: linux-64 dependencies: llvm-openmp: '>=9.0.1' - url: https://packages.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://packages.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://packages.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://packages.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://packages.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://packages.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://packages.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://packages.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://packages.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 @@ -153,10 +153,10 @@ package: dependencies: exceptiongroup: '>=1.0.2' idna: '>=2.8' - python: '' + python: '>=3.9' sniffio: '>=1.1' typing_extensions: '>=4.5' - url: https://packages.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://packages.prefix.dev/conda-forge/noarch/argon2-cffi-23.1.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/argon2-cffi-23.1.0-pyhd8ed1ab_1.conda hash: md5: a7ee488b71c30ada51c48468337b85ba sha256: 7af62339394986bc470a7a231c7f37ad0173ffb41f6bc0e8e31b0be9e3b9d20f @@ -184,7 +184,7 @@ package: argon2-cffi-bindings: '' python: '>=3.9' typing-extensions: '' - url: https://packages.prefix.dev/conda-forge/noarch/argon2-cffi-23.1.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/argon2-cffi-23.1.0-pyhd8ed1ab_1.conda hash: md5: a7ee488b71c30ada51c48468337b85ba sha256: 7af62339394986bc470a7a231c7f37ad0173ffb41f6bc0e8e31b0be9e3b9d20f @@ -200,7 +200,7 @@ package: libgcc: '>=13' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://packages.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://packages.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://packages.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://packages.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://packages.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://packages.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.0.0' - url: https://packages.prefix.dev/conda-forge/linux-64/astroid-3.3.9-py310hff52083_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/astroid-3.3.9-py310hff52083_0.conda hash: md5: 2d8f1127e88e64103552fbf86a306eee sha256: b95f04ff05b296e1ac706d57a3a0bf7bf12b3275d6042a48ac73fee0a0631793 @@ -297,7 +297,7 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* typing_extensions: '>=4.0.0' - url: https://packages.prefix.dev/conda-forge/win-64/astroid-3.3.9-py310h5588dad_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/astroid-3.3.9-py310h5588dad_0.conda hash: md5: 09a0c7f312f8a1e34547ea43cc85867f sha256: a4ce7d09c0762da3c3f67c5a6ae6e5b364339599e0f8e13ee62440c943ce692d @@ -309,7 +309,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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://packages.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://packages.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,9 +345,9 @@ package: manager: conda platform: win-64 dependencies: - python: '' + python: '>=3.9' typing_extensions: '>=4.0.0' - url: https://packages.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://packages.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://packages.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://packages.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://packages.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://packages.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://packages.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://packages.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,9 +449,9 @@ package: manager: conda platform: win-64 dependencies: - python: '' + python: '>=3.9' webencodings: '' - url: https://packages.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://packages.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://packages.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://packages.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://packages.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://packages.prefix.dev/conda-forge/linux-64/brotli-1.1.0-hb9d3cd8_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/brotli-1.1.0-hb9d3cd8_2.conda hash: md5: 98514fe74548d768907ce7a13f680e8f sha256: fcb0b5b28ba7492093e54f3184435144e074dfceab27ac8e6a9457e736565b0b @@ -552,7 +552,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/brotli-1.1.0-h2466b09_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/brotli-1.1.0-h2466b09_2.conda hash: md5: 378f1c9421775dfe644731cb121c8979 sha256: d8fd7d1b446706776117d2dcad1c0289b9f5e1521cb13405173bad38568dd252 @@ -567,7 +567,7 @@ package: libbrotlidec: 1.1.0 libbrotlienc: 1.1.0 libgcc: '>=13' - url: https://packages.prefix.dev/conda-forge/linux-64/brotli-bin-1.1.0-hb9d3cd8_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/brotli-bin-1.1.0-hb9d3cd8_2.conda hash: md5: c63b5e52939e795ba8d26e35d767a843 sha256: 261364d7445513b9a4debc345650fad13c627029bfc800655a266bf1e375bc65 @@ -583,7 +583,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/brotli-bin-1.1.0-h2466b09_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/brotli-bin-1.1.0-h2466b09_2.conda hash: md5: d22534a9be5771fc58eb7564947f669d sha256: f3bf2893613540ac256c68f211861c4de618d96291719e32178d894114ac2bc2 @@ -599,7 +599,7 @@ package: libstdcxx: '>=13' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://packages.prefix.dev/conda-forge/linux-64/brotli-python-1.1.0-py310hf71b8c6_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.1.0-py310hf71b8c6_2.conda hash: md5: bf502c169c71e3c6ac0d6175addfacc2 sha256: 14f1e89d3888d560a553f40ac5ba83e4435a107552fa5b2b2029a7472554c1ef @@ -615,7 +615,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/brotli-python-1.1.0-py310h9e98ed7_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/brotli-python-1.1.0-py310h9e98ed7_2.conda hash: md5: 3a10a1d0cf3ece273195f26191fd6cc6 sha256: 1b7893a07f2323410b09b63b4627103efa86163be835ac94966333b37741cdc7 @@ -628,7 +628,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - url: https://packages.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://packages.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,7 +655,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://packages.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 @@ -666,7 +666,7 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://packages.prefix.dev/conda-forge/linux-64/ca-certificates-2025.1.31-hbcca054_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2025.1.31-hbcca054_0.conda hash: md5: 19f3a56f68d2fd06c516076bff482c52 sha256: bf832198976d559ab44d6cdb315642655547e26d826e34da67cbee6624cda189 @@ -677,7 +677,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://packages.prefix.dev/conda-forge/win-64/ca-certificates-2025.1.31-h56e8100_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2025.1.31-h56e8100_0.conda hash: md5: 5304a31607974dfc2110dfbb662ed092 sha256: 1bedccdf25a3bd782d6b0e57ddd97cdcda5501716009f2de4479a779221df155 @@ -689,7 +689,7 @@ package: platform: linux-64 dependencies: cached_property: '>=1.5.2,<1.5.3.0a0' - url: https://packages.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://packages.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://packages.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,7 +725,7 @@ package: platform: win-64 dependencies: python: '>=3.6' - url: https://packages.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 @@ -737,7 +737,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda hash: md5: c207fa5ac7ea99b149344385a9c0880d sha256: 42a78446da06a2568cb13e69be3355169fbd0ea424b00fc80b7d840f5baaacf3 @@ -749,7 +749,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda hash: md5: c207fa5ac7ea99b149344385a9c0880d sha256: 42a78446da06a2568cb13e69be3355169fbd0ea424b00fc80b7d840f5baaacf3 @@ -766,7 +766,7 @@ package: pycparser: '' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://packages.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 @@ -783,7 +783,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -795,7 +795,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda hash: md5: e83a31202d1c0a000fce3e9cf3825875 sha256: 4e0ee91b97e5de3e74567bdacea27f0139709fceca4db8adffbe24deffccb09b @@ -807,7 +807,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda hash: md5: e83a31202d1c0a000fce3e9cf3825875 sha256: 4e0ee91b97e5de3e74567bdacea27f0139709fceca4db8adffbe24deffccb09b @@ -820,7 +820,7 @@ package: dependencies: __unix: '' python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/click-8.1.8-pyh707e725_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.8-pyh707e725_0.conda hash: md5: f22f4d4970e09d68a10b922cbb0408d3 sha256: c920d23cd1fcf565031c679adb62d848af60d6fbb0edc2d50ba475cea4f0d8ab @@ -834,7 +834,7 @@ package: __win: '' colorama: '' python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/click-8.1.8-pyh7428d3b_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.8-pyh7428d3b_0.conda hash: md5: 90e5571556f7a45db92ee51cb8f97af6 sha256: c889ed359ae47eead4ffe8927b7206b22c55e67d6e74a9044c23736919d61e8d @@ -846,7 +846,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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://packages.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://packages.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://packages.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://packages.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://packages.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.10,<3.11.0a0' python_abi: 3.10.* - url: https://packages.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 @@ -942,7 +942,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -958,7 +958,7 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* tomli: '' - url: https://packages.prefix.dev/conda-forge/linux-64/coverage-7.8.0-py310h89163eb_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/coverage-7.8.0-py310h89163eb_0.conda hash: md5: 9f7865c17117d16f804b687b498e35fa sha256: ac410dbd3b1e28d40b88a27f801210b853ebd388f3cf20f85c0178e97f788013 @@ -975,7 +975,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/coverage-7.8.0-py310h38315fa_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/coverage-7.8.0-py310h38315fa_0.conda hash: md5: 30a825dae940c63c55bca8df4f806f3e sha256: f16e7370e327f20ccba8a6edfb0441ec425c11c10744d6eaa817d05076b458a5 @@ -988,7 +988,7 @@ package: dependencies: python: '>=3.10,<3.11.0a0' python_abi: '*' - url: https://packages.prefix.dev/conda-forge/noarch/cpython-3.10.17-py310hd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/cpython-3.10.17-py310hd8ed1ab_0.conda hash: md5: e2b81369f0473107784f8b7da8e6a8e9 sha256: 6944d47f2bf3c443d5af855ee0c77156da1b90c6f0e79cedc3b934bcd2794d64 @@ -1000,7 +1000,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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://packages.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.10,<3.11.0a0' python_abi: 3.10.* toolz: '>=0.10.0' - url: https://packages.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 @@ -1045,7 +1045,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -1065,7 +1065,7 @@ package: python: '>=3.10' pyyaml: '>=5.3.1' toolz: '>=0.10.0' - url: https://packages.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://packages.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://packages.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://packages.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.10,<3.11.0a0' python_abi: 3.10.* - url: https://packages.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 @@ -1141,7 +1141,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -1153,7 +1153,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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://packages.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://packages.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://packages.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 @@ -1201,7 +1201,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -1213,7 +1213,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -1231,7 +1231,7 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* scipy: '>=1.8' - url: https://packages.prefix.dev/conda-forge/linux-64/discretize-0.11.2-py310ha2bacc8_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/discretize-0.11.2-py310ha2bacc8_1.conda hash: md5: d32664b47026c5d23de390d8b46a2701 sha256: d065d856c25e199a77115a4d8fd54139ee699724a3f1dda6a3f45f33589a66a7 @@ -1249,7 +1249,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/discretize-0.11.2-py310h3e8ed56_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/discretize-0.11.2-py310h3e8ed56_1.conda hash: md5: c9cecabe0352f8d1b7ff7e9d52df7270 sha256: e9b03398c7bd480b6e9e287fe673bf767694bdb96cc8d95bb9500bcd25766b5e @@ -1277,7 +1277,7 @@ package: tornado: '>=6.2.0' urllib3: '>=1.26.5' zict: '>=3.0.0' - url: https://packages.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 @@ -1305,7 +1305,7 @@ package: tornado: '>=6.2.0' urllib3: '>=1.26.5' zict: '>=3.0.0' - url: https://packages.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 @@ -1318,7 +1318,7 @@ package: dependencies: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://packages.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 @@ -1331,7 +1331,7 @@ package: dependencies: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://packages.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 @@ -1343,7 +1343,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda hash: md5: a16662747cdeb9abbac74d0057cc976e sha256: cbde2c64ec317118fc06b223c5fd87c8a680255e7348dd60e7b292d2e103e701 @@ -1355,7 +1355,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda hash: md5: a16662747cdeb9abbac74d0057cc976e sha256: cbde2c64ec317118fc06b223c5fd87c8a680255e7348dd60e7b292d2e103e701 @@ -1367,7 +1367,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/executing-2.1.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/executing-2.1.0-pyhd8ed1ab_1.conda hash: md5: ef8b5fca76806159fc25b4f48d8737eb sha256: 28d25ea375ebab4bf7479228f8430db20986187b04999136ff5c722ebd32eb60 @@ -1379,7 +1379,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/executing-2.1.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/executing-2.1.0-pyhd8ed1ab_1.conda hash: md5: ef8b5fca76806159fc25b4f48d8737eb sha256: 28d25ea375ebab4bf7479228f8430db20986187b04999136ff5c722ebd32eb60 @@ -1391,7 +1391,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -1403,7 +1403,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -1421,7 +1421,7 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* unicodedata2: '>=15.1.0' - url: https://packages.prefix.dev/conda-forge/linux-64/fonttools-4.57.0-py310h89163eb_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/fonttools-4.57.0-py310h89163eb_0.conda hash: md5: 34378af82141b3c1725dcdf898b28fc6 sha256: 8b387f0906c8ea04f14eb449e1b58e01fb2cdc4b9a093edf6afdc9625c11cfd6 @@ -1440,7 +1440,7 @@ package: unicodedata2: '>=15.1.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/fonttools-4.57.0-py310h38315fa_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/fonttools-4.57.0-py310h38315fa_0.conda hash: md5: 1f25f742c39582715cc058f5fe451975 sha256: bcb3848cb9cc0ff51284dfd91a7615d2c38ba0bd324b3c9764bd53ff0753a874 @@ -1453,7 +1453,7 @@ package: dependencies: cached-property: '>=1.3.0' python: '>=3.9,<4' - url: https://packages.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 @@ -1466,7 +1466,7 @@ package: dependencies: cached-property: '>=1.3.0' python: '>=3.9,<4' - url: https://packages.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 @@ -1481,7 +1481,7 @@ package: libgcc: '>=13' libpng: '>=1.6.47,<1.7.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://packages.prefix.dev/conda-forge/linux-64/freetype-2.13.3-h48d6fc4_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/freetype-2.13.3-h48d6fc4_0.conda hash: md5: 9ecfd6f2ca17077dd9c2d24770bb9ccd sha256: 7385577509a9c4730130f54bb6841b9b416249d5f4e9f74bf313e6378e313c57 @@ -1497,7 +1497,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/freetype-2.13.3-h0b5ce68_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/freetype-2.13.3-h0b5ce68_0.conda hash: md5: 9c461ed7b07fb360d2c8cfe726c7d521 sha256: 67e3af0fbe6c25f5ab1af9a3d3000464c5e88a8a0b4b06602f4a5243a8a1fd42 @@ -1509,7 +1509,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/fsspec-2025.3.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/fsspec-2025.3.2-pyhd8ed1ab_0.conda hash: md5: 9c40692c3d24c7aaf335f673ac09d308 sha256: 2040d4640708bd6ab9ed6cb9901267441798c44974bc63c9b6c1cb4c1891d825 @@ -1521,7 +1521,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/fsspec-2025.3.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/fsspec-2025.3.2-pyhd8ed1ab_0.conda hash: md5: 9c40692c3d24c7aaf335f673ac09d308 sha256: 2040d4640708bd6ab9ed6cb9901267441798c44974bc63c9b6c1cb4c1891d825 @@ -1540,7 +1540,7 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* scipy: '>=1.8' - url: https://packages.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 @@ -1559,7 +1559,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -1575,7 +1575,7 @@ package: libstdcxx: '>=13' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://packages.prefix.dev/conda-forge/linux-64/greenlet-3.2.0-py310hf71b8c6_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/greenlet-3.2.0-py310hf71b8c6_0.conda hash: md5: 2d0aa4f1ea2b448a962d36d129c361cf sha256: 9bab6545c1dc4f2d2e5eff1f0a740d348fc7985a84d99b91d20ba22e8f59e67d @@ -1591,7 +1591,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/greenlet-3.2.0-py310h9e98ed7_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/greenlet-3.2.0-py310h9e98ed7_0.conda hash: md5: ab3eb05a1a08628fe621b83d943ea491 sha256: b1606a7e1b19e62ef987a230c4b671af5e2647b3418a72ba1c44709bd50f3279 @@ -1604,7 +1604,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '' - url: https://packages.prefix.dev/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_1.conda hash: md5: 7ee49e89531c0dcbba9466f6d115d585 sha256: 622516185a7c740d5c7f27016d0c15b45782c1501e5611deec63fd70344ce7c8 @@ -1617,7 +1617,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '' - url: https://packages.prefix.dev/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_1.conda hash: md5: 7ee49e89531c0dcbba9466f6d115d585 sha256: 622516185a7c740d5c7f27016d0c15b45782c1501e5611deec63fd70344ce7c8 @@ -1631,7 +1631,7 @@ package: hpack: '>=4.1,<5' hyperframe: '>=6.1,<7' python: '>=3.9' - url: https://packages.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 @@ -1645,7 +1645,7 @@ package: hpack: '>=4.1,<5' hyperframe: '>=6.1,<7' python: '>=3.9' - url: https://packages.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 @@ -1663,7 +1663,7 @@ package: numpy: '>=1.19,<3' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://packages.prefix.dev/conda-forge/linux-64/h5py-3.13.0-nompi_py310h60e0fe6_100.conda + url: https://conda.anaconda.org/conda-forge/linux-64/h5py-3.13.0-nompi_py310h60e0fe6_100.conda hash: md5: 262cb7007454532e0cdf88c34c0c8f41 sha256: 5907cd4f8a57d899a7319b2668321bda8a91b375b0a5e69a8729160b64600d67 @@ -1682,7 +1682,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/h5py-3.13.0-nompi_py310h2b0be38_100.conda + url: https://conda.anaconda.org/conda-forge/win-64/h5py-3.13.0-nompi_py310h2b0be38_100.conda hash: md5: 2ae28abdc4fe8fc89df85659c1cf8103 sha256: ac37afa6b26272b6b034d91b38e877a905059b526e238391bac500f9249b788b @@ -1702,7 +1702,7 @@ package: libstdcxx: '>=13' libzlib: '>=1.3.1,<2.0a0' openssl: '>=3.4.0,<4.0a0' - url: https://packages.prefix.dev/conda-forge/linux-64/hdf5-1.14.3-nompi_h2d575fe_109.conda + url: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.3-nompi_h2d575fe_109.conda hash: md5: e7a7a6e6f70553a31e6e79c65768d089 sha256: e8669a6d76d415f4fdbe682507ac3a3b39e8f493d2f2bdc520817f80b7cc0753 @@ -1720,7 +1720,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/hdf5-1.14.3-nompi_hb2c4d47_109.conda + url: https://conda.anaconda.org/conda-forge/win-64/hdf5-1.14.3-nompi_hb2c4d47_109.conda hash: md5: ebb61f3e8b35cc15e78876649b7246f7 sha256: d5ada33e119cdd62371c06f60eae6f545de7cea793ab83da2fba428bb1d2f813 @@ -1732,7 +1732,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -1744,7 +1744,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -1761,7 +1761,7 @@ package: h2: '>=3,<5' python: '>=3.8' sniffio: 1.* - url: https://packages.prefix.dev/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda hash: md5: 2ca8e6dbc86525c8b95e3c0ffa26442e sha256: c84d012a245171f3ed666a8bf9319580c269b7843ffa79f26468842da3abd5df @@ -1778,7 +1778,7 @@ package: h2: '>=3,<5' python: '>=3.8' sniffio: 1.* - url: https://packages.prefix.dev/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda hash: md5: 2ca8e6dbc86525c8b95e3c0ffa26442e sha256: c84d012a245171f3ed666a8bf9319580c269b7843ffa79f26468842da3abd5df @@ -1794,7 +1794,7 @@ package: httpcore: 1.* idna: '' python: '>=3.9' - url: https://packages.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 @@ -1810,7 +1810,7 @@ package: httpcore: 1.* idna: '' python: '>=3.9' - url: https://packages.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 @@ -1822,7 +1822,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -1834,7 +1834,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -1846,7 +1846,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -1858,7 +1858,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -1870,7 +1870,7 @@ package: platform: linux-64 dependencies: python: '>=3.4' - url: https://packages.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 @@ -1882,7 +1882,7 @@ package: platform: win-64 dependencies: python: '>=3.4' - url: https://packages.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: dependencies: python: '>=3.9' zipp: '>=0.5' - url: https://packages.prefix.dev/conda-forge/noarch/importlib-metadata-8.6.1-pyha770c72_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.6.1-pyha770c72_0.conda hash: md5: f4b39bf00c69f56ac01e020ebfac066c sha256: 598951ebdb23e25e4cec4bbff0ae369cec65ead80b50bc08b441d8e54de5cf03 @@ -1908,7 +1908,7 @@ package: dependencies: python: '>=3.9' zipp: '>=0.5' - url: https://packages.prefix.dev/conda-forge/noarch/importlib-metadata-8.6.1-pyha770c72_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.6.1-pyha770c72_0.conda hash: md5: f4b39bf00c69f56ac01e020ebfac066c sha256: 598951ebdb23e25e4cec4bbff0ae369cec65ead80b50bc08b441d8e54de5cf03 @@ -1920,7 +1920,7 @@ package: platform: linux-64 dependencies: importlib-metadata: '>=8.6.1,<8.6.2.0a0' - url: https://packages.prefix.dev/conda-forge/noarch/importlib_metadata-8.6.1-hd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-8.6.1-hd8ed1ab_0.conda hash: md5: 7f46575a91b1307441abc235d01cab66 sha256: 1e3eb9d65c4d7b87c7347553ef9eef6f994996f90a2299e19b35f5997d3a3e79 @@ -1932,7 +1932,7 @@ package: platform: win-64 dependencies: importlib-metadata: '>=8.6.1,<8.6.2.0a0' - url: https://packages.prefix.dev/conda-forge/noarch/importlib_metadata-8.6.1-hd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-8.6.1-hd8ed1ab_0.conda hash: md5: 7f46575a91b1307441abc235d01cab66 sha256: 1e3eb9d65c4d7b87c7347553ef9eef6f994996f90a2299e19b35f5997d3a3e79 @@ -1945,7 +1945,7 @@ package: dependencies: python: '>=3.9' zipp: '>=3.1.0' - url: https://packages.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 @@ -1958,7 +1958,7 @@ package: dependencies: python: '>=3.9' zipp: '>=3.1.0' - url: https://packages.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 @@ -1970,7 +1970,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -1982,7 +1982,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -1993,7 +1993,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://packages.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 @@ -2018,7 +2018,7 @@ package: pyzmq: '>=24' tornado: '>=6.1' traitlets: '>=5.4.0' - url: https://packages.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 @@ -2043,7 +2043,7 @@ package: pyzmq: '>=24' tornado: '>=6.1' traitlets: '>=5.4.0' - url: https://packages.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 @@ -2067,7 +2067,7 @@ package: stack_data: '' traitlets: '>=5.13.0' typing_extensions: '>=4.6' - url: https://packages.prefix.dev/conda-forge/noarch/ipython-8.35.0-pyh907856f_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/ipython-8.35.0-pyh907856f_0.conda hash: md5: 1c70446f398dab3c413f56adb8a5d212 sha256: 24a9f9ae8b5b15c11e1b71e44c9d4f483265c6c938ff3a88452864f57b81d104 @@ -2087,11 +2087,11 @@ package: pickleshare: '' prompt-toolkit: '>=3.0.41,<3.1.0' pygments: '>=2.4.0' - python: '' + python: '>=3.10' stack_data: '' traitlets: '>=5.13.0' typing_extensions: '>=4.6' - url: https://packages.prefix.dev/conda-forge/noarch/ipython-8.35.0-pyh9ab4c32_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/ipython-8.35.0-pyh9ab4c32_0.conda hash: md5: 7250b697b9f3edcb6ac3767bd170a3fe sha256: a1d2a5aa988f9ff59b247b414ab03ae439fb94b95b922fe110e7a90fb7f17677 @@ -2103,7 +2103,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -2115,7 +2115,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -2133,7 +2133,7 @@ package: python: '>=3.3' traitlets: '>=4.3.1' widgetsnbextension: '>=3.6.10,<3.7.0' - url: https://packages.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 @@ -2151,7 +2151,7 @@ package: python: '>=3.3' traitlets: '>=4.3.1' widgetsnbextension: '>=3.6.10,<3.7.0' - url: https://packages.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: dependencies: arrow: '>=0.15.0' python: '>=3.9' - url: https://packages.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 @@ -2177,7 +2177,7 @@ package: dependencies: arrow: '>=0.15.0' python: '>=3.9' - url: https://packages.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: python: '>=3.9,<4.0' setuptools: '' - url: https://packages.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_0.conda hash: md5: a8abfd3f223b1ecb8c699dca974933bd sha256: 9c5fb97efa0eb32b42564edaacb5edb9a1f82ba8f5f8b135e794960101115b5a @@ -2203,7 +2203,7 @@ package: dependencies: python: '>=3.9,<4.0' setuptools: '' - url: https://packages.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_0.conda hash: md5: a8abfd3f223b1ecb8c699dca974933bd sha256: 9c5fb97efa0eb32b42564edaacb5edb9a1f82ba8f5f8b135e794960101115b5a @@ -2216,7 +2216,7 @@ package: dependencies: parso: '>=0.8.3,<0.9.0' python: '>=3.9' - url: https://packages.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 @@ -2229,7 +2229,7 @@ package: dependencies: parso: '>=0.8.3,<0.9.0' python: '>=3.9' - url: https://packages.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 @@ -2242,7 +2242,7 @@ package: dependencies: markupsafe: '>=2.0' python: '>=3.9' - url: https://packages.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 @@ -2255,7 +2255,7 @@ package: dependencies: markupsafe: '>=2.0' python: '>=3.9' - url: https://packages.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 @@ -2268,7 +2268,7 @@ package: dependencies: python: '>=3.9' setuptools: '' - url: https://packages.prefix.dev/conda-forge/noarch/joblib-1.4.2-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/joblib-1.4.2-pyhd8ed1ab_1.conda hash: md5: bf8243ee348f3a10a14ed0cae323e0c1 sha256: 51cc2dc491668af0c4d9299b0ab750f16ccf413ec5e2391b924108c1fbacae9b @@ -2281,7 +2281,7 @@ package: dependencies: python: '>=3.9' setuptools: '' - url: https://packages.prefix.dev/conda-forge/noarch/joblib-1.4.2-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/joblib-1.4.2-pyhd8ed1ab_1.conda hash: md5: bf8243ee348f3a10a14ed0cae323e0c1 sha256: 51cc2dc491668af0c4d9299b0ab750f16ccf413ec5e2391b924108c1fbacae9b @@ -2293,7 +2293,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -2305,7 +2305,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -2318,7 +2318,7 @@ package: dependencies: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://packages.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 @@ -2331,7 +2331,7 @@ package: dependencies: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://packages.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 @@ -2349,7 +2349,7 @@ package: python: '>=3.9' referencing: '>=0.28.4' rpds-py: '>=0.7.1' - url: https://packages.prefix.dev/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_1.conda hash: md5: a3cead9264b331b32fe8f0aabc967522 sha256: be992a99e589146f229c58fe5083e0b60551d774511c494f91fe011931bd7893 @@ -2367,7 +2367,7 @@ package: python: '>=3.9' referencing: '>=0.28.4' rpds-py: '>=0.7.1' - url: https://packages.prefix.dev/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_1.conda hash: md5: a3cead9264b331b32fe8f0aabc967522 sha256: be992a99e589146f229c58fe5083e0b60551d774511c494f91fe011931bd7893 @@ -2380,7 +2380,7 @@ package: dependencies: python: '>=3.9' referencing: '>=0.31.0' - url: https://packages.prefix.dev/conda-forge/noarch/jsonschema-specifications-2024.10.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2024.10.1-pyhd8ed1ab_1.conda hash: md5: 3b519bc21bc80e60b456f1e62962a766 sha256: 37127133837444cf0e6d1a95ff5a505f8214ed4e89e8e9343284840e674c6891 @@ -2393,7 +2393,7 @@ package: dependencies: python: '>=3.9' referencing: '>=0.31.0' - url: https://packages.prefix.dev/conda-forge/noarch/jsonschema-specifications-2024.10.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2024.10.1-pyhd8ed1ab_1.conda hash: md5: 3b519bc21bc80e60b456f1e62962a766 sha256: 37127133837444cf0e6d1a95ff5a505f8214ed4e89e8e9343284840e674c6891 @@ -2413,7 +2413,7 @@ package: rfc3986-validator: '>0.1.0' uri-template: '' webcolors: '>=24.6.0' - url: https://packages.prefix.dev/conda-forge/noarch/jsonschema-with-format-nongpl-4.23.0-hd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-with-format-nongpl-4.23.0-hd8ed1ab_1.conda hash: md5: a5b1a8065857cc4bd8b7a38d063bb728 sha256: 6e0184530011961a0802fda100ecdfd4b0eca634ed94c37e553b72e21c26627d @@ -2433,7 +2433,7 @@ package: rfc3986-validator: '>0.1.0' uri-template: '' webcolors: '>=24.6.0' - url: https://packages.prefix.dev/conda-forge/noarch/jsonschema-with-format-nongpl-4.23.0-hd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-with-format-nongpl-4.23.0-hd8ed1ab_1.conda hash: md5: a5b1a8065857cc4bd8b7a38d063bb728 sha256: 6e0184530011961a0802fda100ecdfd4b0eca634ed94c37e553b72e21c26627d @@ -2464,7 +2464,7 @@ package: sphinx-thebe: '>=0.3.1,<1' sphinx-togglebutton: '' sphinxcontrib-bibtex: '>=2.5.0,<3' - url: https://packages.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 @@ -2495,7 +2495,7 @@ package: sphinx-thebe: '>=0.3.1,<1' sphinx-togglebutton: '' sphinxcontrib-bibtex: '>=2.5.0,<3' - url: https://packages.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 @@ -2515,7 +2515,7 @@ package: pyyaml: '' sqlalchemy: '>=1.3.12,<3' tabulate: '' - url: https://packages.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 @@ -2535,7 +2535,7 @@ package: pyyaml: '' sqlalchemy: '>=1.3.12,<3' tabulate: '' - url: https://packages.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 @@ -2549,7 +2549,7 @@ package: importlib-metadata: '>=4.8.3' jupyter_server: '>=1.1.2' python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/jupyter-lsp-2.2.5-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter-lsp-2.2.5-pyhd8ed1ab_1.conda hash: md5: 0b4c3908e5a38ea22ebb98ee5888c768 sha256: 1565c8b1423a37fca00fe0ab2a17cd8992c2ecf23e7867a1c9f6f86a9831c196 @@ -2563,7 +2563,7 @@ package: importlib-metadata: '>=4.8.3' jupyter_server: '>=1.1.2' python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/jupyter-lsp-2.2.5-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter-lsp-2.2.5-pyhd8ed1ab_1.conda hash: md5: 0b4c3908e5a38ea22ebb98ee5888c768 sha256: 1565c8b1423a37fca00fe0ab2a17cd8992c2ecf23e7867a1c9f6f86a9831c196 @@ -2581,7 +2581,7 @@ package: pyzmq: '>=23.0' tornado: '>=6.2' traitlets: '>=5.3' - url: https://packages.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 @@ -2599,7 +2599,7 @@ package: pyzmq: '>=23.0' tornado: '>=6.2' traitlets: '>=5.3' - url: https://packages.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 @@ -2614,7 +2614,7 @@ package: platformdirs: '>=2.5' python: '>=3.8' traitlets: '>=5.3' - url: https://packages.prefix.dev/conda-forge/noarch/jupyter_core-5.7.2-pyh31011fe_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.7.2-pyh31011fe_1.conda hash: md5: 0a2980dada0dd7fd0998f0342308b1b1 sha256: 732b1e8536bc22a5a174baa79842d79db2f4956d90293dd82dc1b3f6099bcccd @@ -2631,7 +2631,7 @@ package: python: '>=3.8' pywin32: '>=300' traitlets: '>=5.3' - url: https://packages.prefix.dev/conda-forge/noarch/jupyter_core-5.7.2-pyh5737063_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.7.2-pyh5737063_1.conda hash: md5: 46d87d1c0ea5da0aae36f77fa406e20d sha256: 7c903b2d62414c3e8da1f78db21f45b98de387aae195f8ca959794113ba4b3fd @@ -2651,7 +2651,7 @@ package: rfc3339-validator: '' rfc3986-validator: '>=0.1.1' traitlets: '>=5.3' - url: https://packages.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 @@ -2664,14 +2664,14 @@ package: dependencies: jsonschema-with-format-nongpl: '>=4.18.0' packaging: '' - python: '' + python: '>=3.9' python-json-logger: '>=2.0.4' pyyaml: '>=5.3' referencing: '' rfc3339-validator: '' rfc3986-validator: '>=0.1.1' traitlets: '>=5.3' - url: https://packages.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 @@ -2701,7 +2701,7 @@ package: tornado: '>=6.2.0' traitlets: '>=5.6.0' websocket-client: '>=1.7' - url: https://packages.prefix.dev/conda-forge/noarch/jupyter_server-2.15.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.15.0-pyhd8ed1ab_0.conda hash: md5: 6ba8c206b5c6f52b82435056cf74ee46 sha256: be5f9774065d94c4a988f53812b83b67618bec33fcaaa005a98067d506613f8a @@ -2731,7 +2731,7 @@ package: tornado: '>=6.2.0' traitlets: '>=5.6.0' websocket-client: '>=1.7' - url: https://packages.prefix.dev/conda-forge/noarch/jupyter_server-2.15.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.15.0-pyhd8ed1ab_0.conda hash: md5: 6ba8c206b5c6f52b82435056cf74ee46 sha256: be5f9774065d94c4a988f53812b83b67618bec33fcaaa005a98067d506613f8a @@ -2744,7 +2744,7 @@ package: dependencies: python: '>=3.9' terminado: '>=0.8.3' - url: https://packages.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 @@ -2757,7 +2757,7 @@ package: dependencies: python: '>=3.9' terminado: '>=0.8.3' - url: https://packages.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 @@ -2784,7 +2784,7 @@ package: tomli: '>=1.2.2' tornado: '>=6.2.0' traitlets: '' - url: https://packages.prefix.dev/conda-forge/noarch/jupyterlab-4.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.4.0-pyhd8ed1ab_0.conda hash: md5: 2da6a5e2c788a1b1998b24c50a18572a sha256: 4d225d094d1e5a8e95c2bde0f9c9bbc5aac52d9abf7fd597dd7af0f467b44347 @@ -2811,7 +2811,7 @@ package: tomli: '>=1.2.2' tornado: '>=6.2.0' traitlets: '' - url: https://packages.prefix.dev/conda-forge/noarch/jupyterlab-4.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.4.0-pyhd8ed1ab_0.conda hash: md5: 2da6a5e2c788a1b1998b24c50a18572a sha256: 4d225d094d1e5a8e95c2bde0f9c9bbc5aac52d9abf7fd597dd7af0f467b44347 @@ -2824,7 +2824,7 @@ package: dependencies: pygments: '>=2.4.1,<3' python: '>=3.9' - url: https://packages.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 @@ -2837,7 +2837,7 @@ package: dependencies: pygments: '>=2.4.1,<3' python: '>=3.9' - url: https://packages.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 @@ -2857,7 +2857,7 @@ package: packaging: '>=21.3' python: '>=3.9' requests: '>=2.31' - url: https://packages.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 @@ -2877,7 +2877,7 @@ package: packaging: '>=21.3' python: '>=3.9' requests: '>=2.31' - url: https://packages.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 @@ -2889,7 +2889,7 @@ package: platform: linux-64 dependencies: python: '>=3.7' - url: https://packages.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 @@ -2901,7 +2901,7 @@ package: platform: win-64 dependencies: python: '>=3.7' - url: https://packages.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 @@ -2919,7 +2919,7 @@ package: python: '>=3.9' pyyaml: '' tomli: '' - url: https://packages.prefix.dev/conda-forge/noarch/jupytext-1.17.0-pyhbbac1ac_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupytext-1.17.0-pyhbbac1ac_0.conda hash: md5: d8e9471f69b3e7a7d233d43649b5061b sha256: 488a50bdca76b1c450323ea1f8213366f70130aff35ff87277ffa97107fbed2b @@ -2937,7 +2937,7 @@ package: python: '>=3.9' pyyaml: '' tomli: '' - url: https://packages.prefix.dev/conda-forge/noarch/jupytext-1.17.0-pyhbbac1ac_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupytext-1.17.0-pyhbbac1ac_0.conda hash: md5: d8e9471f69b3e7a7d233d43649b5061b sha256: 488a50bdca76b1c450323ea1f8213366f70130aff35ff87277ffa97107fbed2b @@ -2949,7 +2949,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=10.3.0' - url: https://packages.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 @@ -2965,7 +2965,7 @@ package: libstdcxx: '>=13' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://packages.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 @@ -2981,7 +2981,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -2997,7 +2997,7 @@ package: libgcc-ng: '>=12' libstdcxx-ng: '>=12' openssl: '>=3.3.1,<4.0a0' - url: https://packages.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 @@ -3012,7 +3012,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -3025,7 +3025,7 @@ package: dependencies: python: '' six: '' - url: https://packages.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 @@ -3038,7 +3038,7 @@ package: dependencies: python: '' six: '' - url: https://packages.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 @@ -3053,7 +3053,7 @@ package: libgcc: '>=13' libjpeg-turbo: '>=3.0.0,<4.0a0' libtiff: '>=4.7.0,<4.8.0a0' - url: https://packages.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 @@ -3069,7 +3069,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -3081,7 +3081,7 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://packages.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-h712a8e2_4.conda hash: md5: 01f8d123c96816249efd255a31ad7712 sha256: db73f38155d901a610b2320525b9dd3b31e4949215c870685fd92ea61b5ce472 @@ -3094,7 +3094,7 @@ package: dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://packages.prefix.dev/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2 hash: md5: 76bbff344f0134279f225174e9064c8f sha256: cb55f36dcd898203927133280ae1dc643368af041a48bcf7c026acb7c47b0c12 @@ -3107,7 +3107,7 @@ package: dependencies: vc: '>=14.2,<15' vs2015_runtime: '>=14.29.30037' - url: https://packages.prefix.dev/conda-forge/win-64/lerc-4.0.0-h63175ca_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/win-64/lerc-4.0.0-h63175ca_0.tar.bz2 hash: md5: 1900cb3cab5055833cfddb0ba233b074 sha256: f4f39d7f6a2f9b407f8fb567a6c25755270421731d70f0ff331f5de4fa367488 @@ -3120,7 +3120,7 @@ package: dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://packages.prefix.dev/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda hash: md5: 5e97e271911b8b2001a8b71860c32faa sha256: 2ef420a655528bca9d269086cf33b7e90d2f54ad941b437fb1ed5eca87cee017 @@ -3134,7 +3134,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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.3-h63175ca_0.conda hash: md5: 8723000f6ffdbdaef16025f0a01b64c5 sha256: f5c293d3cfc00f71dfdb64bd65ab53625565f8778fc2d5790575bef238976ebf @@ -3146,7 +3146,7 @@ package: platform: linux-64 dependencies: mkl: '>=2024.2.2,<2025.0a0' - url: https://packages.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 @@ -3158,7 +3158,7 @@ package: platform: win-64 dependencies: mkl: 2024.2.2 - url: https://packages.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 @@ -3171,7 +3171,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://packages.prefix.dev/conda-forge/linux-64/libbrotlicommon-1.1.0-hb9d3cd8_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.1.0-hb9d3cd8_2.conda hash: md5: 41b599ed2b02abcfdd84302bff174b23 sha256: d9db2de60ea917298e658143354a530e9ca5f9c63471c65cf47ab39fd2f429e3 @@ -3185,7 +3185,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/libbrotlicommon-1.1.0-h2466b09_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/libbrotlicommon-1.1.0-h2466b09_2.conda hash: md5: f7dc9a8f21d74eab46456df301da2972 sha256: 33e8851c6cc8e2d93059792cd65445bfe6be47e4782f826f01593898ec95764c @@ -3199,7 +3199,7 @@ package: __glibc: '>=2.17,<3.0.a0' libbrotlicommon: 1.1.0 libgcc: '>=13' - url: https://packages.prefix.dev/conda-forge/linux-64/libbrotlidec-1.1.0-hb9d3cd8_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.1.0-hb9d3cd8_2.conda hash: md5: 9566f0bd264fbd463002e759b8a82401 sha256: 2892d512cad096cb03f1b66361deeab58b64e15ba525d6592bb6d609e7045edf @@ -3214,7 +3214,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/libbrotlidec-1.1.0-h2466b09_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/libbrotlidec-1.1.0-h2466b09_2.conda hash: md5: 9bae75ce723fa34e98e239d21d752a7e sha256: 234fc92f4c4f1cf22f6464b2b15bfc872fa583c74bf3ab9539ff38892c43612f @@ -3228,7 +3228,7 @@ package: __glibc: '>=2.17,<3.0.a0' libbrotlicommon: 1.1.0 libgcc: '>=13' - url: https://packages.prefix.dev/conda-forge/linux-64/libbrotlienc-1.1.0-hb9d3cd8_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlienc-1.1.0-hb9d3cd8_2.conda hash: md5: 06f70867945ea6a84d35836af780f1de sha256: 779f58174e99de3600e939fa46eddb453ec5d3c60bb46cdaa8b4c127224dbf29 @@ -3243,7 +3243,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/libbrotlienc-1.1.0-h2466b09_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/libbrotlienc-1.1.0-h2466b09_2.conda hash: md5: 85741a24d97954a991e55e34bc55990b sha256: 3d0dd7ef505962f107b7ea8f894e0b3dd01bf46852b362c8a7fc136b039bc9e1 @@ -3255,7 +3255,7 @@ package: platform: linux-64 dependencies: libblas: 3.9.0 - url: https://packages.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 @@ -3267,7 +3267,7 @@ package: platform: win-64 dependencies: libblas: 3.9.0 - url: https://packages.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 @@ -3286,7 +3286,7 @@ package: libzlib: '>=1.3.1,<2.0a0' openssl: '>=3.4.1,<4.0a0' zstd: '>=1.5.7,<1.6.0a0' - url: https://packages.prefix.dev/conda-forge/linux-64/libcurl-8.13.0-h332b0f4_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.13.0-h332b0f4_0.conda hash: md5: cbdc92ac0d93fe3c796e36ad65c7905c sha256: 38e528acfaa0276b7052f4de44271ff9293fdb84579650601a8c49dac171482a @@ -3303,7 +3303,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/libcurl-8.13.0-h88aaa65_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/libcurl-8.13.0-h88aaa65_0.conda hash: md5: c9cf6eb842decbb66c2f34e72c3580d6 sha256: 185553b37c0299b7a15dc66a7a7e2a0d421adaac784ec9298a0b2ad745116ca5 @@ -3316,7 +3316,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://packages.prefix.dev/conda-forge/linux-64/libdeflate-1.23-h4ddbbb0_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.23-h4ddbbb0_0.conda hash: md5: 8dfae1d2e74767e9ce36d5fa0d8605db sha256: 511d801626d02f4247a04fff957cc6e9ec4cc7e8622bd9acd076bcdc5de5fe66 @@ -3330,7 +3330,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/libdeflate-1.23-h9062f6e_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/libdeflate-1.23-h9062f6e_0.conda hash: md5: a9624935147a25b06013099d3038e467 sha256: 96c47725a8258159295996ea2758fa0ff9bea330e72b59641642e16be8427ce8 @@ -3343,7 +3343,7 @@ package: dependencies: numpy: '' python: '>=3.10' - url: https://packages.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 @@ -3356,7 +3356,7 @@ package: dependencies: numpy: '' python: '>=3.10' - url: https://packages.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 @@ -3370,7 +3370,7 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' ncurses: '>=6.5,<7.0a0' - url: https://packages.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 @@ -3382,7 +3382,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://packages.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 @@ -3395,7 +3395,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://packages.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 @@ -3409,7 +3409,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -3422,7 +3422,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://packages.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 @@ -3436,7 +3436,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -3449,7 +3449,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' _openmp_mutex: '>=4.5' - url: https://packages.prefix.dev/conda-forge/linux-64/libgcc-14.2.0-h767d61c_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-14.2.0-h767d61c_2.conda hash: md5: ef504d1acbd74b7cc6849ef8af47dd03 sha256: 3a572d031cb86deb541d15c1875aaa097baefc0c580b54dc61f5edab99215792 @@ -3462,7 +3462,7 @@ package: dependencies: _openmp_mutex: '>=4.5' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' - url: https://packages.prefix.dev/conda-forge/win-64/libgcc-14.2.0-h1383e82_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/libgcc-14.2.0-h1383e82_2.conda hash: md5: 4a74c1461a0ba47a3346c04bdccbe2ad sha256: fddf2fc037bc95adb3b369e8866da8a71b6a67ebcfc4d7035ac4208309dc9e72 @@ -3474,7 +3474,7 @@ package: platform: linux-64 dependencies: libgcc: 14.2.0 - url: https://packages.prefix.dev/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_2.conda hash: md5: a2222a6ada71fb478682efe483ce0f92 sha256: fb7558c328b38b2f9d2e412c48da7890e7721ba018d733ebdfea57280df01904 @@ -3486,7 +3486,7 @@ package: platform: linux-64 dependencies: libgfortran5: 14.2.0 - url: https://packages.prefix.dev/conda-forge/linux-64/libgfortran-14.2.0-h69a702a_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-14.2.0-h69a702a_2.conda hash: md5: fb54c4ea68b460c278d26eea89cfbcc3 sha256: e05263e8960da03c341650f2a3ffa4ccae4e111cb198e8933a2908125459e5a6 @@ -3499,7 +3499,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14.2.0' - url: https://packages.prefix.dev/conda-forge/linux-64/libgfortran5-14.2.0-hf1ad2bd_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-14.2.0-hf1ad2bd_2.conda hash: md5: 556a4fdfac7287d349b8f09aba899693 sha256: c17b7cf3073a1f4e1f34d50872934fa326346e104d3c445abc1e62481ad6085c @@ -3511,7 +3511,7 @@ package: platform: win-64 dependencies: libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' - url: https://packages.prefix.dev/conda-forge/win-64/libgomp-14.2.0-h1383e82_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/libgomp-14.2.0-h1383e82_2.conda hash: md5: dd6b1ab49e28bcb6154cd131acec985b sha256: 674ec5f1bf319eac98d0d6ecb9c38e0192f3cf41969a5621d62a7e695e1aa9f3 @@ -3526,7 +3526,7 @@ package: libgcc: '>=13' libstdcxx: '>=13' libxml2: '>=2.13.4,<2.14.0a0' - url: https://packages.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 @@ -3542,7 +3542,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -3555,7 +3555,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://packages.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 @@ -3569,7 +3569,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -3581,7 +3581,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://packages.prefix.dev/conda-forge/linux-64/libjpeg-turbo-3.0.0-hd590300_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libjpeg-turbo-3.0.0-hd590300_1.conda hash: md5: ea25936bb4080d843790b586850f82b8 sha256: b954e09b7e49c2f2433d6f3bb73868eda5e378278b0f8c1dd10a7ef090e14f2f @@ -3595,7 +3595,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/libjpeg-turbo-3.0.0-hcfcfb64_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/libjpeg-turbo-3.0.0-hcfcfb64_1.conda hash: md5: 3f1b948619c45b1ca714d60c7389092c sha256: 4e7808e3098b4b4ed7e287f63bb24f9045cc4d95bfd39f0db870fc2837d74dff @@ -3607,7 +3607,7 @@ package: platform: linux-64 dependencies: libblas: 3.9.0 - url: https://packages.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 @@ -3619,7 +3619,7 @@ package: platform: win-64 dependencies: libblas: 3.9.0 - url: https://packages.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 @@ -3632,7 +3632,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://packages.prefix.dev/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_0.conda hash: md5: 0e87378639676987af32fee53ba32258 sha256: f4f21dfc54b08d462f707b771ecce3fa9bc702a2a05b55654f64154f48b141ef @@ -3646,7 +3646,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/liblzma-5.8.1-h2466b09_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/liblzma-5.8.1-h2466b09_0.conda hash: md5: 8d5cb0016b645d6688e2ff57c5d51302 sha256: 1477e9bff05318f3129d37be0e64c76cce0973c4b8c73d13a467d0b7f03d157c @@ -3664,7 +3664,7 @@ package: libstdcxx: '>=13' libzlib: '>=1.3.1,<2.0a0' openssl: '>=3.3.2,<4.0a0' - url: https://packages.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 @@ -3676,7 +3676,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://packages.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 @@ -3690,7 +3690,7 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' libzlib: '>=1.3.1,<2.0a0' - url: https://packages.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.47-h943b412_0.conda hash: md5: 55199e2ae2c3651f6f9b2a447b47bdc9 sha256: 23367d71da58c9a61c8cbd963fcffb92768d4ae5ffbef9a47cdf1f54f98c5c36 @@ -3705,7 +3705,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/libpng-1.6.47-had7236b_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/libpng-1.6.47-had7236b_0.conda hash: md5: 7d717163d9dab337c65f2bf21a676b8f sha256: cf8a594b697de103025dcae2c917ec9c100609caf7c917a94c64a683cb1db1ac @@ -3723,7 +3723,7 @@ package: libgfortran5: '>=13.3.0' liblzma: '>=5.6.3,<6.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://packages.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 @@ -3735,7 +3735,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://packages.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 @@ -3749,7 +3749,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -3763,7 +3763,7 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' libzlib: '>=1.3.1,<2.0a0' - url: https://packages.prefix.dev/conda-forge/linux-64/libsqlite-3.49.1-hee588c1_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.49.1-hee588c1_2.conda hash: md5: 962d6ac93c30b1dfc54c9cccafd1003e sha256: a086289bf75c33adc1daed3f1422024504ffb5c3c8b3285c49f025c29708ed16 @@ -3777,7 +3777,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/libsqlite-3.49.1-h67fdade_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.49.1-h67fdade_2.conda hash: md5: b58b66d4ad1aaf1c2543cbbd6afb1a59 sha256: c092d42d00fd85cf609cc58574ba2b03c141af5762283f36f5dd445ef7c0f4fe @@ -3792,7 +3792,7 @@ package: libgcc: '>=13' libzlib: '>=1.3.1,<2.0a0' openssl: '>=3.4.0,<4.0a0' - url: https://packages.prefix.dev/conda-forge/linux-64/libssh2-1.11.1-hf672d98_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.1-hf672d98_0.conda hash: md5: be2de152d8073ef1c01b7728475f2fe7 sha256: 0407ac9fda2bb67e11e357066eff144c845801d00b5f664efbc48813af1e7bb9 @@ -3808,7 +3808,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/libssh2-1.11.1-he619c9f_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/libssh2-1.11.1-he619c9f_0.conda hash: md5: af0cbf037dd614c34399b3b3e568c557 sha256: 4b3256bd2b4e4b3183005d3bd8826d651eccd1a4740b70625afa2b7e7123d191 @@ -3821,7 +3821,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: 14.2.0 - url: https://packages.prefix.dev/conda-forge/linux-64/libstdcxx-14.2.0-h8f9b012_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-14.2.0-h8f9b012_2.conda hash: md5: a78c856b6dc6bf4ea8daeb9beaaa3fb0 sha256: 8f5bd92e4a24e1d35ba015c5252e8f818898478cb3bc50bd8b12ab54707dc4da @@ -3833,7 +3833,7 @@ package: platform: linux-64 dependencies: libstdcxx: 14.2.0 - url: https://packages.prefix.dev/conda-forge/linux-64/libstdcxx-ng-14.2.0-h4852527_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-14.2.0-h4852527_2.conda hash: md5: c75da67f045c2627f59e6fcb5f4e3a9b sha256: e86f38b007cf97cc2c67cd519f2de12a313c4ee3f5ef11652ad08932a5e34189 @@ -3854,7 +3854,7 @@ package: libwebp-base: '>=1.4.0,<2.0a0' libzlib: '>=1.3.1,<2.0a0' zstd: '>=1.5.6,<1.6.0a0' - url: https://packages.prefix.dev/conda-forge/linux-64/libtiff-4.7.0-hd9ff511_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.7.0-hd9ff511_3.conda hash: md5: 0ea6510969e1296cc19966fad481f6de sha256: b224e16b88d76ea95e4af56e2bc638c603bd26a770b98d117d04541d3aafa002 @@ -3874,7 +3874,7 @@ package: vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' zstd: '>=1.5.6,<1.6.0a0' - url: https://packages.prefix.dev/conda-forge/win-64/libtiff-4.7.0-h797046b_3.conda + url: https://conda.anaconda.org/conda-forge/win-64/libtiff-4.7.0-h797046b_3.conda hash: md5: defed79ff7a9164ad40320e3f116a138 sha256: c363a8baba4ce12b8f01f0ab74fe8b0dc83facd89c6604f4a191084923682768 @@ -3886,7 +3886,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://packages.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 @@ -3899,7 +3899,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://packages.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 @@ -3913,7 +3913,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -3925,7 +3925,7 @@ package: platform: win-64 dependencies: ucrt: '' - url: https://packages.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 @@ -3941,7 +3941,7 @@ package: pthread-stubs: '' xorg-libxau: '>=1.0.11,<2.0a0' xorg-libxdmcp: '' - url: https://packages.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 @@ -3958,7 +3958,7 @@ package: ucrt: '>=10.0.20348.0' xorg-libxau: '>=1.0.11,<2.0a0' xorg-libxdmcp: '' - url: https://packages.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 @@ -3970,7 +3970,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://packages.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 @@ -3986,7 +3986,7 @@ package: libiconv: '>=1.18,<2.0a0' liblzma: '>=5.8.1,<6.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://packages.prefix.dev/conda-forge/linux-64/libxml2-2.13.7-h81593ed_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.13.7-h81593ed_1.conda hash: md5: 0619e8fc4c8025a908ea3a3422d3b775 sha256: c4f59563e017eba378ea843be5ebde4b0546c72bbe4c1e43b2b384379e827635 @@ -4002,7 +4002,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/libxml2-2.13.7-h442d1da_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/libxml2-2.13.7-h442d1da_1.conda hash: md5: c14ff7f05e57489df9244917d2b55763 sha256: 0a013527f784f4702dc18460070d8ec79d1ebb5087dd9e678d6afbeaca68d2ac @@ -4015,7 +4015,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://packages.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 @@ -4029,7 +4029,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -4042,7 +4042,7 @@ package: dependencies: python: '>=3.9' uc-micro-py: '' - url: https://packages.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 @@ -4055,36 +4055,36 @@ package: dependencies: python: '>=3.9' uc-micro-py: '' - url: https://packages.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.2 + version: 20.1.3 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://packages.prefix.dev/conda-forge/linux-64/llvm-openmp-20.1.2-h024ca30_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/llvm-openmp-20.1.3-h024ca30_0.conda hash: - md5: 39a3992c2624b8d8e6b4994dedf3102a - sha256: 2c70e18a5bcb3fc2925e5d2c2c39559253d19e38c111afc91885f0dee4540fb1 + md5: c721339ea8746513e42b1233b4bbdfb0 + sha256: 4327a463f43b0d95ca0e5f92094383ef53fd2a91d649debfc531b941fe44fd48 category: main optional: false - name: llvm-openmp - version: 20.1.2 + version: 20.1.3 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/llvm-openmp-20.1.2-h30eaf37_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/llvm-openmp-20.1.3-h30eaf37_0.conda hash: - md5: d5a4f53b65d7d1d53104ba24107eda04 - sha256: 3ba2b892d6e153599512fa7fe2791125ff1b7dd6740469f74aff2d1b48edf299 + md5: 183c102075722a7aa993f94de1d135f2 + sha256: 27326e733ce7ad87054a409c02b829594cc6276232b987eb135cd1a225eac669 category: main optional: false - name: locket @@ -4093,7 +4093,7 @@ package: platform: linux-64 dependencies: python: '>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*' - url: https://packages.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 @@ -4105,7 +4105,7 @@ package: platform: win-64 dependencies: python: '>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*' - url: https://packages.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 @@ -4119,7 +4119,7 @@ package: mdurl: '>=0.1,<1' python: '>=3.7' typing_extensions: '>=3.7.4' - url: https://packages.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 @@ -4133,7 +4133,7 @@ package: mdurl: '>=0.1,<1' python: '>=3.7' typing_extensions: '>=3.7.4' - url: https://packages.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 @@ -4148,7 +4148,7 @@ package: libgcc: '>=13' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://packages.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 @@ -4164,7 +4164,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -4191,7 +4191,7 @@ package: python-dateutil: '>=2.7' python_abi: 3.10.* tk: '>=8.6.13,<8.7.0a0' - url: https://packages.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 @@ -4218,7 +4218,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -4231,7 +4231,7 @@ package: dependencies: python: '>=3.9' traitlets: '' - url: https://packages.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 @@ -4244,7 +4244,7 @@ package: dependencies: python: '>=3.9' traitlets: '' - url: https://packages.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 @@ -4256,7 +4256,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -4268,7 +4268,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -4281,7 +4281,7 @@ package: dependencies: markdown-it-py: '>=1.0.0,<4.0.0' python: '>=3.9' - url: https://packages.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 @@ -4294,7 +4294,7 @@ package: dependencies: markdown-it-py: '>=1.0.0,<4.0.0' python: '>=3.9' - url: https://packages.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 @@ -4306,7 +4306,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -4318,7 +4318,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -4332,7 +4332,7 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' libstdcxx: '>=13' - url: https://packages.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 @@ -4345,7 +4345,7 @@ package: dependencies: python: '' typing_extensions: '' - url: https://packages.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 @@ -4356,9 +4356,9 @@ package: manager: conda platform: win-64 dependencies: - python: '' + python: '>=3.9' typing_extensions: '' - url: https://packages.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 @@ -4372,7 +4372,7 @@ package: _openmp_mutex: '>=4.5' llvm-openmp: '>=19.1.2' tbb: 2021.* - url: https://packages.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 @@ -4385,7 +4385,7 @@ package: dependencies: intel-openmp: 2024.* tbb: 2021.* - url: https://packages.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 @@ -4401,7 +4401,7 @@ package: libstdcxx: '>=13' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://packages.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.0-py310h3788b33_0.conda hash: md5: 6b586fb03d84e5bfbb1a8a3d9e2c9b60 sha256: 73ca5f0c7d0727a57dcc3c402823ce3aa159ca075210be83078fcc485971e259 @@ -4417,7 +4417,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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.0-py310hc19bc0b_0.conda hash: md5: 2cfcbd596afd76879de4824c2c24f4a2 sha256: db5c3d5e2d28ba0e4e1633f6d52079f0e397bdb60a6f58a2fa942e88071182d2 @@ -4428,7 +4428,7 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://packages.prefix.dev/conda-forge/linux-64/mumps-include-5.7.3-h82cca05_9.conda + url: https://conda.anaconda.org/conda-forge/linux-64/mumps-include-5.7.3-h82cca05_9.conda hash: md5: 8207b975a176b5c08937bdeeeeecca20 sha256: bb41dda1084bc29c79bdb1da693295c5bc55da223fb74c4ef8487a81964cbf48 @@ -4449,7 +4449,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://packages.prefix.dev/conda-forge/linux-64/mumps-seq-5.7.3-hb5d91fa_9.conda + url: https://conda.anaconda.org/conda-forge/linux-64/mumps-seq-5.7.3-hb5d91fa_9.conda hash: md5: 33982046ecd8eed02447ddd7810aad37 sha256: 196b227df4635ce4294d40d885fa231d8d037839a95a1eee8923319985276bbe @@ -4466,7 +4466,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/mumps-seq-5.7.3-hbaa6519_9.conda + url: https://conda.anaconda.org/conda-forge/win-64/mumps-seq-5.7.3-hbaa6519_9.conda hash: md5: 3a30d32db33cc226f7a2c78d485b0503 sha256: 953c384a1b37b93bf7a2ee39b1c5763887f4d63ed220b65362103d6e6b4440a4 @@ -4478,7 +4478,7 @@ package: platform: linux-64 dependencies: python: '' - url: https://packages.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 hash: md5: 2ba8498c1018c1e9c61eb99b973dfe19 sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 @@ -4490,7 +4490,7 @@ package: platform: win-64 dependencies: python: '' - url: https://packages.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 hash: md5: 2ba8498c1018c1e9c61eb99b973dfe19 sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 @@ -4512,7 +4512,7 @@ package: pyyaml: '' sphinx: '>=5' typing_extensions: '' - url: https://packages.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 @@ -4530,11 +4530,11 @@ package: myst-parser: '>=1.0.0' nbclient: '' nbformat: '>=5.0' - python: '' + python: '>=3.9' pyyaml: '' sphinx: '>=5' typing_extensions: '' - url: https://packages.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 @@ -4553,7 +4553,7 @@ package: pyyaml: '' sphinx: '>=5,<7' typing-extensions: '' - url: https://packages.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 @@ -4572,7 +4572,7 @@ package: pyyaml: '' sphinx: '>=5,<7' typing-extensions: '' - url: https://packages.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 @@ -4588,7 +4588,7 @@ package: nbformat: '>=5.1' python: '>=3.8' traitlets: '>=5.4' - url: https://packages.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 @@ -4604,7 +4604,7 @@ package: nbformat: '>=5.1' python: '>=3.8' traitlets: '>=5.4' - url: https://packages.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 @@ -4617,7 +4617,7 @@ package: dependencies: nbconvert-core: ==7.16.6 nbconvert-pandoc: ==7.16.6 - url: https://packages.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 @@ -4630,7 +4630,7 @@ package: dependencies: nbconvert-core: ==7.16.6 nbconvert-pandoc: ==7.16.6 - url: https://packages.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 @@ -4657,7 +4657,7 @@ package: pygments: '>=2.4.1' python: '' traitlets: '>=5.1' - url: https://packages.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 @@ -4682,9 +4682,9 @@ package: packaging: '' pandocfilters: '>=1.4.1' pygments: '>=2.4.1' - python: '' + python: '>=3.9' traitlets: '>=5.1' - url: https://packages.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 @@ -4697,7 +4697,7 @@ package: dependencies: nbconvert-core: ==7.16.6 pandoc: '' - url: https://packages.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 @@ -4710,7 +4710,7 @@ package: dependencies: nbconvert-core: ==7.16.6 pandoc: '' - url: https://packages.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 @@ -4726,7 +4726,7 @@ package: python: '>=3.9' python-fastjsonschema: '>=2.15' traitlets: '>=5.1' - url: https://packages.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 @@ -4742,7 +4742,7 @@ package: python: '>=3.9' python-fastjsonschema: '>=2.15' traitlets: '>=5.1' - url: https://packages.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 @@ -4755,7 +4755,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://packages.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 @@ -4767,7 +4767,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -4779,7 +4779,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -4796,7 +4796,7 @@ package: notebook-shim: '>=0.2,<0.3' python: '>=3.9' tornado: '>=6.2.0' - url: https://packages.prefix.dev/conda-forge/noarch/notebook-7.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/notebook-7.4.0-pyhd8ed1ab_0.conda hash: md5: 7e82caa4495c513bcfb33a159e1222d4 sha256: d3f70987bc1e1a20b122726a49a24e5e6f09d00c9862bb399cd1682cd59a1e1e @@ -4813,7 +4813,7 @@ package: notebook-shim: '>=0.2,<0.3' python: '>=3.9' tornado: '>=6.2.0' - url: https://packages.prefix.dev/conda-forge/noarch/notebook-7.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/notebook-7.4.0-pyhd8ed1ab_0.conda hash: md5: 7e82caa4495c513bcfb33a159e1222d4 sha256: d3f70987bc1e1a20b122726a49a24e5e6f09d00c9862bb399cd1682cd59a1e1e @@ -4826,7 +4826,7 @@ package: dependencies: jupyter_server: '>=1.8,<3' python: '>=3.9' - url: https://packages.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 @@ -4839,7 +4839,7 @@ package: dependencies: jupyter_server: '>=1.8,<3' python: '>=3.9' - url: https://packages.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 @@ -4857,7 +4857,7 @@ package: numpy: '>=1.7' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://packages.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 @@ -4875,7 +4875,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -4893,7 +4893,7 @@ package: libstdcxx-ng: '>=12' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://packages.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 @@ -4912,7 +4912,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -4929,7 +4929,7 @@ package: libstdcxx: '>=13' libtiff: '>=4.7.0,<4.8.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://packages.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 @@ -4946,7 +4946,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -4960,7 +4960,7 @@ package: __glibc: '>=2.17,<3.0.a0' ca-certificates: '' libgcc: '>=13' - url: https://packages.prefix.dev/conda-forge/linux-64/openssl-3.5.0-h7b32b05_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.5.0-h7b32b05_0.conda hash: md5: bb539841f2a3fde210f387d00ed4bb9d sha256: 38285d280f84f1755b7c54baf17eccf2e3e696287954ce0adca16546b85ee62c @@ -4975,7 +4975,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/openssl-3.5.0-ha4e3fda_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/openssl-3.5.0-ha4e3fda_0.conda hash: md5: 4ea7db75035eb8c13fa680bb90171e08 sha256: 43dd7f56da142ca83c614c8b0085589650ae9032b351a901c190e48eefc73675 @@ -4988,7 +4988,7 @@ package: dependencies: python: '>=3.9' typing_utils: '' - url: https://packages.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 @@ -5001,34 +5001,34 @@ package: dependencies: python: '>=3.9' typing_utils: '' - url: https://packages.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 category: dev optional: true - name: packaging - version: '24.2' + version: '25.0' manager: conda platform: linux-64 dependencies: python: '>=3.8' - url: https://packages.prefix.dev/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda + url: https://conda.anaconda.org/conda-forge/noarch/packaging-25.0-pyhd8ed1ab_0.conda hash: - md5: 3bfed7e6228ebf2f7b9eaa47f1b4e2aa - sha256: da157b19bcd398b9804c5c52fc000fcb8ab0525bdb9c70f95beaa0bb42f85af1 + md5: 4088c0d078e2f5092ddf824495186229 + sha256: f759df4f492ae481505dcceb3d4485a120ee798af26711c92de20944a1185621 category: main optional: false - name: packaging - version: '24.2' + version: '25.0' manager: conda platform: win-64 dependencies: python: '>=3.8' - url: https://packages.prefix.dev/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda + url: https://conda.anaconda.org/conda-forge/noarch/packaging-25.0-pyhd8ed1ab_0.conda hash: - md5: 3bfed7e6228ebf2f7b9eaa47f1b4e2aa - sha256: da157b19bcd398b9804c5c52fc000fcb8ab0525bdb9c70f95beaa0bb42f85af1 + md5: 4088c0d078e2f5092ddf824495186229 + sha256: f759df4f492ae481505dcceb3d4485a120ee798af26711c92de20944a1185621 category: main optional: false - name: pandas @@ -5045,7 +5045,7 @@ package: python-tzdata: '>=2022.7' python_abi: 3.10.* pytz: '>=2020.1' - url: https://packages.prefix.dev/conda-forge/linux-64/pandas-2.2.3-py310h5eaa309_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/pandas-2.2.3-py310h5eaa309_3.conda hash: md5: 07697a584fab513ce895c4511f7a2403 sha256: 43fd80e57ebc9e0c00d169aafce533c49359174dea327a7fa8ca7454628a56f7 @@ -5065,7 +5065,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/pandas-2.2.3-py310hb4db72f_3.conda + url: https://conda.anaconda.org/conda-forge/win-64/pandas-2.2.3-py310hb4db72f_3.conda hash: md5: 60c6ae5813eb1cbc4f7774fb69623db8 sha256: fa3986017273899fd21aa14a524469bedac3923e2ecfdfdba59a34769b56b9b8 @@ -5076,7 +5076,7 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://packages.prefix.dev/conda-forge/linux-64/pandoc-3.6.4-ha770c72_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/pandoc-3.6.4-ha770c72_0.conda hash: md5: 53f2cd4128fa7053bb029bbeafbe3f2e sha256: 16cbcab8a6d9a0cef47b9d3ebeced8a1a75ee54d379649e6260a333d1b2f743c @@ -5087,7 +5087,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://packages.prefix.dev/conda-forge/win-64/pandoc-3.6.4-h57928b3_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/pandoc-3.6.4-h57928b3_0.conda hash: md5: dac005a8550579541a6b0b6a8f8c6ddc sha256: 02ab6b0c12596f5d8481f546a1fef6cd4e3a52ec59bc32c0fa3708106e30972e @@ -5099,7 +5099,7 @@ package: platform: linux-64 dependencies: python: '!=3.0,!=3.1,!=3.2,!=3.3' - url: https://packages.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 @@ -5111,7 +5111,7 @@ package: platform: win-64 dependencies: python: '!=3.0,!=3.1,!=3.2,!=3.3' - url: https://packages.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 @@ -5123,7 +5123,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -5135,7 +5135,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -5149,7 +5149,7 @@ package: locket: '' python: '>=3.9' toolz: '' - url: https://packages.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 @@ -5163,7 +5163,7 @@ package: locket: '' python: '>=3.9' toolz: '' - url: https://packages.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 @@ -5176,7 +5176,7 @@ package: dependencies: ptyprocess: '>=0.5' python: '>=3.9' - url: https://packages.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 @@ -5188,7 +5188,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -5200,7 +5200,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -5223,7 +5223,7 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* tk: '>=8.6.13,<8.7.0a0' - url: https://packages.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 @@ -5248,7 +5248,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -5262,7 +5262,7 @@ package: python: '>=3.9,<3.13.0a0' setuptools: '' wheel: '' - url: https://packages.prefix.dev/conda-forge/noarch/pip-25.0.1-pyh8b19718_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pip-25.0.1-pyh8b19718_0.conda hash: md5: 79b5c1440aedc5010f687048d9103628 sha256: 585940f09d87787f79f73ff5dff8eb2af8a67e5bec5eebf2f553cd26c840ba69 @@ -5276,7 +5276,7 @@ package: python: '>=3.9,<3.13.0a0' setuptools: '' wheel: '' - url: https://packages.prefix.dev/conda-forge/noarch/pip-25.0.1-pyh8b19718_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pip-25.0.1-pyh8b19718_0.conda hash: md5: 79b5c1440aedc5010f687048d9103628 sha256: 585940f09d87787f79f73ff5dff8eb2af8a67e5bec5eebf2f553cd26c840ba69 @@ -5288,7 +5288,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -5300,7 +5300,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -5312,7 +5312,7 @@ package: platform: linux-64 dependencies: python: '' - url: https://packages.prefix.dev/conda-forge/noarch/platformdirs-4.3.7-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.7-pyh29332c3_0.conda hash: md5: e57da6fe54bb3a5556cf36d199ff07d8 sha256: ae7d3e58224d53d6b59e1f5ac5809803bb1972f0ac4fb10cd9b8c87d4122d3e0 @@ -5323,8 +5323,8 @@ package: manager: conda platform: win-64 dependencies: - python: '' - url: https://packages.prefix.dev/conda-forge/noarch/platformdirs-4.3.7-pyh29332c3_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.7-pyh29332c3_0.conda hash: md5: e57da6fe54bb3a5556cf36d199ff07d8 sha256: ae7d3e58224d53d6b59e1f5ac5809803bb1972f0ac4fb10cd9b8c87d4122d3e0 @@ -5336,7 +5336,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_1.conda hash: md5: e9dcbce5f45f9ee500e728ae58b605b6 sha256: 122433fc5318816b8c69283aaf267c73d87aa2d09ce39f64c9805c9a3b264819 @@ -5348,7 +5348,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_1.conda hash: md5: e9dcbce5f45f9ee500e728ae58b605b6 sha256: 122433fc5318816b8c69283aaf267c73d87aa2d09ce39f64c9805c9a3b264819 @@ -5360,7 +5360,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/prometheus_client-0.21.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.21.1-pyhd8ed1ab_0.conda hash: md5: 3e01e386307acc60b2f89af0b2e161aa sha256: bc8f00d5155deb7b47702cb8370f233935704100dbc23e30747c161d1b6cf3ab @@ -5372,7 +5372,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/prometheus_client-0.21.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.21.1-pyhd8ed1ab_0.conda hash: md5: 3e01e386307acc60b2f89af0b2e161aa sha256: bc8f00d5155deb7b47702cb8370f233935704100dbc23e30747c161d1b6cf3ab @@ -5385,7 +5385,7 @@ package: dependencies: python: '>=3.9' wcwidth: '' - url: https://packages.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 @@ -5398,7 +5398,7 @@ package: dependencies: python: '>=3.9' wcwidth: '' - url: https://packages.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 @@ -5413,7 +5413,7 @@ package: libgcc: '>=13' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://packages.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 @@ -5429,7 +5429,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -5442,7 +5442,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://packages.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 @@ -5456,7 +5456,7 @@ package: libgcc: '>=13' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' ucrt: '>=10.0.20348.0' - url: https://packages.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 @@ -5468,7 +5468,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -5480,7 +5480,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -5492,7 +5492,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -5508,7 +5508,7 @@ package: pyyaml: '>=3.01' setuptools: '' six: '' - url: https://packages.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 @@ -5524,7 +5524,7 @@ package: pyyaml: '>=3.01' setuptools: '' six: '' - url: https://packages.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 @@ -5540,7 +5540,7 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* setuptools: '' - url: https://packages.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 @@ -5556,7 +5556,7 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* setuptools: '' - url: https://packages.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 @@ -5568,7 +5568,7 @@ package: platform: linux-64 dependencies: python: '' - url: https://packages.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 @@ -5579,8 +5579,8 @@ package: manager: conda platform: win-64 dependencies: - python: '' - url: https://packages.prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda hash: md5: 12c566707c80111f9799308d9e265aef sha256: 79db7928d13fab2d892592223d7570f5061c192f27b9febd1a418427b719acc6 @@ -5597,7 +5597,7 @@ package: typing-extensions: '>=4.6.1' typing-inspection: '>=0.4.0' typing_extensions: '>=4.12.2' - url: https://packages.prefix.dev/conda-forge/noarch/pydantic-2.11.3-pyh3cfb1c2_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.11.3-pyh3cfb1c2_0.conda hash: md5: 3c6f7f8ae9b9c177ad91ccc187912756 sha256: 89183785b09ebe9f9e65710057d7c41e9d21d4a9ad05e068850e18669655d5a8 @@ -5614,7 +5614,7 @@ package: typing-extensions: '>=4.6.1' typing-inspection: '>=0.4.0' typing_extensions: '>=4.12.2' - url: https://packages.prefix.dev/conda-forge/noarch/pydantic-2.11.3-pyh3cfb1c2_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.11.3-pyh3cfb1c2_0.conda hash: md5: 3c6f7f8ae9b9c177ad91ccc187912756 sha256: 89183785b09ebe9f9e65710057d7c41e9d21d4a9ad05e068850e18669655d5a8 @@ -5630,7 +5630,7 @@ package: python: '' python_abi: 3.10.* typing-extensions: '>=4.6.0,!=4.7.0' - url: https://packages.prefix.dev/conda-forge/linux-64/pydantic-core-2.33.1-py310hc1293b2_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/pydantic-core-2.33.1-py310hc1293b2_0.conda hash: md5: 24460b8a58d6d491be4088ffb5343f4b sha256: 76992a2b50b98a43b66be401998b0b71f4bbb3cc0db456309263a604dddff086 @@ -5647,7 +5647,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/pydantic-core-2.33.1-py310h7c79e54_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/pydantic-core-2.33.1-py310h7c79e54_0.conda hash: md5: 8e00f6b62285b0731e32dac4da060dd6 sha256: 5d8ba398dd9ff5086b23d753ce2a9833894c99e5cea48861dbed55f4fa0c69aa @@ -5667,7 +5667,7 @@ package: python: '>=3.9' sphinx: '>=5.0' typing_extensions: '' - url: https://packages.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 @@ -5687,7 +5687,7 @@ package: python: '>=3.9' sphinx: '>=5.0' typing_extensions: '' - url: https://packages.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 @@ -5705,7 +5705,7 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* scipy: '>=0.13' - url: https://packages.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 @@ -5724,7 +5724,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -5736,7 +5736,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -5748,7 +5748,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -5769,7 +5769,7 @@ package: tomli: '>=1.1.0' tomlkit: '>=0.10.1' typing_extensions: '>=3.10.0' - url: https://packages.prefix.dev/conda-forge/noarch/pylint-3.3.6-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pylint-3.3.6-pyh29332c3_0.conda hash: md5: 8242cc62822cc8a17f53d24d4efa75f4 sha256: 3e3e35b2cbb4b1ca3063fc2d6f44a85ac189e0935f00ed8fbe8e4713c0d00b99 @@ -5786,11 +5786,11 @@ package: isort: '>=4.2.5,<7,!=5.13.0' mccabe: '>=0.6,<0.8' platformdirs: '>=2.2.0' - python: '' + python: '>=3.9' tomli: '>=1.1.0' tomlkit: '>=0.10.1' typing_extensions: '>=3.10.0' - url: https://packages.prefix.dev/conda-forge/noarch/pylint-3.3.6-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pylint-3.3.6-pyh29332c3_0.conda hash: md5: 8242cc62822cc8a17f53d24d4efa75f4 sha256: 3e3e35b2cbb4b1ca3063fc2d6f44a85ac189e0935f00ed8fbe8e4713c0d00b99 @@ -5806,7 +5806,7 @@ package: pydiso: '>=0.1' python: '>=3.10' scipy: '>=1.8' - url: https://packages.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 @@ -5822,7 +5822,7 @@ package: pydiso: '>=0.1' python: '>=3.10' scipy: '>=1.8' - url: https://packages.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 @@ -5834,7 +5834,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -5846,7 +5846,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -5859,7 +5859,7 @@ package: dependencies: __unix: '' python: '>=3.9' - url: https://packages.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 @@ -5873,7 +5873,7 @@ package: __win: '' python: '>=3.9' win_inet_pton: '' - url: https://packages.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 @@ -5891,7 +5891,7 @@ package: pluggy: <2,>=1.5 python: '>=3.9' tomli: '>=1' - url: https://packages.prefix.dev/conda-forge/noarch/pytest-8.3.5-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pytest-8.3.5-pyhd8ed1ab_0.conda hash: md5: c3c9316209dec74a705a36797970c6be sha256: 963524de7340c56615583ba7b97a6beb20d5c56a59defb59724dc2a3105169c9 @@ -5909,7 +5909,7 @@ package: pluggy: <2,>=1.5 python: '>=3.9' tomli: '>=1' - url: https://packages.prefix.dev/conda-forge/noarch/pytest-8.3.5-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pytest-8.3.5-pyhd8ed1ab_0.conda hash: md5: c3c9316209dec74a705a36797970c6be sha256: 963524de7340c56615583ba7b97a6beb20d5c56a59defb59724dc2a3105169c9 @@ -5924,7 +5924,7 @@ package: pytest: '>=4.6' python: '>=3.9' toml: '' - url: https://packages.prefix.dev/conda-forge/noarch/pytest-cov-6.1.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pytest-cov-6.1.1-pyhd8ed1ab_0.conda hash: md5: 1e35d8f975bc0e984a19819aa91c440a sha256: 9961a1524f63d10bc29efdc52013ec06b0e95fb2619a250e250ff3618261d5cd @@ -5939,7 +5939,7 @@ package: pytest: '>=4.6' python: '>=3.9' toml: '' - url: https://packages.prefix.dev/conda-forge/noarch/pytest-cov-6.1.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pytest-cov-6.1.1-pyhd8ed1ab_0.conda hash: md5: 1e35d8f975bc0e984a19819aa91c440a sha256: 9961a1524f63d10bc29efdc52013ec06b0e95fb2619a250e250ff3618261d5cd @@ -5968,7 +5968,7 @@ package: readline: '>=8.2,<9.0a0' tk: '>=8.6.13,<8.7.0a0' tzdata: '' - url: https://packages.prefix.dev/conda-forge/linux-64/python-3.10.17-hd6af730_0_cpython.conda + url: https://conda.anaconda.org/conda-forge/linux-64/python-3.10.17-hd6af730_0_cpython.conda hash: md5: 7bb89638dae9ce1b8e051d0b721e83c2 sha256: 0ae32507817402bfad08fbf0f4a9b5ae26859d5390b98bc939da85fd0bd4239f @@ -5992,7 +5992,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/python-3.10.17-h8c5b53a_0_cpython.conda + url: https://conda.anaconda.org/conda-forge/win-64/python-3.10.17-h8c5b53a_0_cpython.conda hash: md5: 0c59918f056ab2e9c7bb45970d32b2ea sha256: 071303a9bcbba4d79ab1ca61f34ec9f4ad65bc15d897828f5006ef9507094557 @@ -6005,7 +6005,7 @@ package: dependencies: python: '>=3.9' six: '>=1.5' - url: https://packages.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 @@ -6018,7 +6018,7 @@ package: dependencies: python: '>=3.9' six: '>=1.5' - url: https://packages.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 @@ -6030,7 +6030,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -6042,7 +6042,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -6054,7 +6054,7 @@ package: platform: linux-64 dependencies: python: '>=3.6' - url: https://packages.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 @@ -6066,7 +6066,7 @@ package: platform: win-64 dependencies: python: '>=3.6' - url: https://packages.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 @@ -6084,7 +6084,7 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* scipy: '>=1.8' - url: https://packages.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 @@ -6103,7 +6103,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -6115,7 +6115,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -6127,7 +6127,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -6138,7 +6138,7 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://packages.prefix.dev/conda-forge/linux-64/python_abi-3.10-6_cp310.conda + url: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.10-6_cp310.conda hash: md5: 01f0f2104b8466714804a72e511de599 sha256: 716287b4c15fb9a78b49a627dd7057c9fc7a29c6d4056b506fc84dab2cd2ca85 @@ -6149,7 +6149,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://packages.prefix.dev/conda-forge/win-64/python_abi-3.10-6_cp310.conda + url: https://conda.anaconda.org/conda-forge/win-64/python_abi-3.10-6_cp310.conda hash: md5: 041cd0bfc8be015fbd78b5b2fe9b168e sha256: 27015f67c4cea426e16cdc8054a1a3f9e78825c2e9b8a594a34e0feb9f7de606 @@ -6161,7 +6161,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -6173,7 +6173,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -6189,7 +6189,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -6206,7 +6206,7 @@ package: vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' winpty: '' - url: https://packages.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 @@ -6222,7 +6222,7 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* yaml: '>=0.2.5,<0.3.0a0' - url: https://packages.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 @@ -6239,7 +6239,7 @@ package: vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' yaml: '>=0.2.5,<0.3.0a0' - url: https://packages.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 @@ -6257,7 +6257,7 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* zeromq: '>=4.3.5,<4.4.0a0' - url: https://packages.prefix.dev/conda-forge/linux-64/pyzmq-26.4.0-py310h71f11fc_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/pyzmq-26.4.0-py310h71f11fc_0.conda hash: md5: 4859978df0e6408e439cb6badfbb3c5d sha256: 2c93bcd81c1dadeb9b57bc4c833b3638f518f9b960fc1a928d4670abffd25017 @@ -6275,7 +6275,7 @@ package: vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' zeromq: '>=4.3.5,<4.3.6.0a0' - url: https://packages.prefix.dev/conda-forge/win-64/pyzmq-26.4.0-py310h656833d_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/pyzmq-26.4.0-py310h656833d_0.conda hash: md5: dd340eeec5732405db972695aceb24f5 sha256: 02657a2503ebdc5ed6d64f14f50f129d27309ded9862c214dd5cfd45ed64398c @@ -6288,7 +6288,7 @@ package: dependencies: libgcc: '>=13' ncurses: '>=6.5,<7.0a0' - url: https://packages.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 @@ -6303,7 +6303,7 @@ package: packaging: '' python: '>=3.9' requests: '' - url: https://packages.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 @@ -6318,7 +6318,7 @@ package: packaging: '' python: '>=3.9' requests: '' - url: https://packages.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 @@ -6333,7 +6333,7 @@ package: python: '' rpds-py: '>=0.7.0' typing_extensions: '>=4.4.0' - url: https://packages.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 @@ -6345,10 +6345,10 @@ package: platform: win-64 dependencies: attrs: '>=22.2.0' - python: '' + python: '>=3.9' rpds-py: '>=0.7.0' typing_extensions: '>=4.4.0' - url: https://packages.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 @@ -6364,7 +6364,7 @@ package: idna: '>=2.5,<4' python: '>=3.9' urllib3: '>=1.21.1,<3' - url: https://packages.prefix.dev/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda hash: md5: a9b9368f3701a417eac9edbcae7cb737 sha256: d701ca1136197aa121bbbe0e8c18db6b5c94acbd041c2b43c70e5ae104e1d8ad @@ -6380,7 +6380,7 @@ package: idna: '>=2.5,<4' python: '>=3.9' urllib3: '>=1.21.1,<3' - url: https://packages.prefix.dev/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda hash: md5: a9b9368f3701a417eac9edbcae7cb737 sha256: d701ca1136197aa121bbbe0e8c18db6b5c94acbd041c2b43c70e5ae104e1d8ad @@ -6393,7 +6393,7 @@ package: dependencies: python: '>=3.9' six: '' - url: https://packages.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 @@ -6406,7 +6406,7 @@ package: dependencies: python: '>=3.9' six: '' - url: https://packages.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 @@ -6418,7 +6418,7 @@ package: platform: linux-64 dependencies: python: '' - url: https://packages.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 @@ -6430,7 +6430,7 @@ package: platform: win-64 dependencies: python: '' - url: https://packages.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 @@ -6445,7 +6445,7 @@ package: libgcc: '>=13' python: '' python_abi: 3.10.* - url: https://packages.prefix.dev/conda-forge/linux-64/rpds-py-0.24.0-py310hc1293b2_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/rpds-py-0.24.0-py310hc1293b2_0.conda hash: md5: 2170ed457a6427f37c90104f6a63437d sha256: b0c896af1d8ce85d7948624664d87bd9286223ea5a19884d6f295d37d5cd4e0f @@ -6461,7 +6461,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/rpds-py-0.24.0-py310h7c79e54_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/rpds-py-0.24.0-py310h7c79e54_0.conda hash: md5: bd5b837169847d1f3e626ab20a9299f0 sha256: e058920df1d6609a3522662a44f6c3a465ffb163dda4e8b6449435160c911cef @@ -6481,7 +6481,7 @@ package: python_abi: 3.10.* scipy: '' threadpoolctl: '>=2.0.0' - url: https://packages.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 @@ -6501,7 +6501,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -6523,7 +6523,7 @@ package: numpy: '>=1.23.5' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://packages.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 @@ -6543,7 +6543,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -6556,7 +6556,7 @@ package: dependencies: __linux: '' python: '>=3.9' - url: https://packages.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 @@ -6570,7 +6570,7 @@ package: __win: '' python: '>=3.9' pywin32: '' - url: https://packages.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 @@ -6582,7 +6582,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/setuptools-78.1.0-pyhff2d567_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/setuptools-78.1.0-pyhff2d567_0.conda hash: md5: a42da9837e46c53494df0044c3eb1f53 sha256: d4c74d2140f2fbc72fe5320cbd65f3fd1d1f7832ab4d7825c37c38ab82440ae2 @@ -6594,7 +6594,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/setuptools-78.1.0-pyhff2d567_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/setuptools-78.1.0-pyhff2d567_0.conda hash: md5: a42da9837e46c53494df0044c3eb1f53 sha256: d4c74d2140f2fbc72fe5320cbd65f3fd1d1f7832ab4d7825c37c38ab82440ae2 @@ -6606,7 +6606,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -6618,7 +6618,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -6630,7 +6630,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -6642,7 +6642,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -6654,7 +6654,7 @@ package: platform: linux-64 dependencies: python: '>=2' - url: https://packages.prefix.dev/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 4d22a9315e78c6827f806065957d566e sha256: a0fd916633252d99efb6223b1050202841fa8d2d53dacca564b0ed77249d3228 @@ -6666,7 +6666,7 @@ package: platform: win-64 dependencies: python: '>=2' - url: https://packages.prefix.dev/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 4d22a9315e78c6827f806065957d566e sha256: a0fd916633252d99efb6223b1050202841fa8d2d53dacca564b0ed77249d3228 @@ -6678,7 +6678,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -6690,7 +6690,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -6702,7 +6702,7 @@ package: platform: linux-64 dependencies: python: '>=3.8' - url: https://packages.prefix.dev/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda hash: md5: 3f144b2c34f8cb5a9abd9ed23a39c561 sha256: 54ae221033db8fbcd4998ccb07f3c3828b4d77e73b0c72b18c1d6a507059059c @@ -6714,7 +6714,7 @@ package: platform: win-64 dependencies: python: '>=3.8' - url: https://packages.prefix.dev/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda hash: md5: 3f144b2c34f8cb5a9abd9ed23a39c561 sha256: 54ae221033db8fbcd4998ccb07f3c3828b4d77e73b0c72b18c1d6a507059059c @@ -6743,7 +6743,7 @@ package: sphinxcontrib-jsmath: '' sphinxcontrib-qthelp: '' sphinxcontrib-serializinghtml: '>=1.1.5' - url: https://packages.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 @@ -6772,7 +6772,7 @@ package: sphinxcontrib-jsmath: '' sphinxcontrib-qthelp: '' sphinxcontrib-serializinghtml: '>=1.1.5' - url: https://packages.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 @@ -6786,7 +6786,7 @@ package: pydata-sphinx-theme: '>=0.15.2' python: '>=3.9' sphinx: '>=5' - url: https://packages.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 @@ -6800,7 +6800,7 @@ package: pydata-sphinx-theme: '>=0.15.2' python: '>=3.9' sphinx: '>=5' - url: https://packages.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 @@ -6813,7 +6813,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=1.8' - url: https://packages.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 @@ -6826,7 +6826,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=1.8' - url: https://packages.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 @@ -6839,7 +6839,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=1.8' - url: https://packages.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 @@ -6852,7 +6852,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=1.8' - url: https://packages.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 @@ -6865,7 +6865,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5,<8' - url: https://packages.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 @@ -6878,7 +6878,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5,<8' - url: https://packages.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 @@ -6893,7 +6893,7 @@ package: python: '>=3.9' pyyaml: '' sphinx: '>=5' - url: https://packages.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 @@ -6908,7 +6908,7 @@ package: python: '>=3.9' pyyaml: '' sphinx: '>=5' - url: https://packages.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 @@ -6922,7 +6922,7 @@ package: packaging: '' python: '>=3.9' sphinx: '>=5' - url: https://packages.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 @@ -6936,7 +6936,7 @@ package: packaging: '' python: '>=3.9' sphinx: '>=5' - url: https://packages.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 @@ -6949,7 +6949,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=3' - url: https://packages.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 @@ -6962,7 +6962,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=3' - url: https://packages.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 @@ -6975,7 +6975,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=4' - url: https://packages.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 @@ -6988,7 +6988,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=4' - url: https://packages.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 @@ -7002,7 +7002,7 @@ package: docutils: '' python: '>=3.6' sphinx: '' - url: https://packages.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 @@ -7016,7 +7016,7 @@ package: docutils: '' python: '>=3.6' sphinx: '' - url: https://packages.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 @@ -7029,7 +7029,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://packages.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 @@ -7042,7 +7042,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://packages.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 @@ -7060,7 +7060,7 @@ package: pybtex-docutils: '>=1' python: '>=3.6' sphinx: '>=2.1' - url: https://packages.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 @@ -7078,7 +7078,7 @@ package: pybtex-docutils: '>=1' python: '>=3.6' sphinx: '>=2.1' - url: https://packages.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 @@ -7091,7 +7091,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://packages.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 @@ -7104,7 +7104,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://packages.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 @@ -7117,7 +7117,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://packages.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 @@ -7130,7 +7130,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://packages.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 @@ -7142,7 +7142,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7154,7 +7154,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7167,7 +7167,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://packages.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 @@ -7180,7 +7180,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://packages.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 @@ -7193,7 +7193,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://packages.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 @@ -7206,7 +7206,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://packages.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 @@ -7223,7 +7223,7 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* typing-extensions: '>=4.6.0' - url: https://packages.prefix.dev/conda-forge/linux-64/sqlalchemy-2.0.40-py310ha75aee5_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/sqlalchemy-2.0.40-py310ha75aee5_0.conda hash: md5: bc2a512664843a017e39f70beb69fc60 sha256: ecce430c1f71cbe96fe07cc2b50d3ae895d8ec5ccf7a3083987719d1957961a9 @@ -7241,7 +7241,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/sqlalchemy-2.0.40-py310ha8f682b_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/sqlalchemy-2.0.40-py310ha8f682b_0.conda hash: md5: a0919291fec53d2694d88fb0f21009a8 sha256: c319587abaec3cdf2bb7b76aacb115527f39582c3ce8bb49d0d59c67507e32ef @@ -7256,7 +7256,7 @@ package: executing: '' pure_eval: '' python: '>=3.9' - url: https://packages.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 @@ -7271,7 +7271,7 @@ package: executing: '' pure_eval: '' python: '>=3.9' - url: https://packages.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 @@ -7283,7 +7283,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7295,7 +7295,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7310,7 +7310,7 @@ package: libgcc: '>=13' libhwloc: '>=2.11.2,<2.11.3.0a0' libstdcxx: '>=13' - url: https://packages.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 @@ -7325,7 +7325,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -7337,7 +7337,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7349,7 +7349,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7364,7 +7364,7 @@ package: ptyprocess: '' python: '>=3.8' tornado: '>=6.1.0' - url: https://packages.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 @@ -7379,7 +7379,7 @@ package: python: '>=3.8' pywinpty: '>=1.1.0' tornado: '>=6.1.0' - url: https://packages.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 @@ -7391,7 +7391,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7403,7 +7403,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7416,7 +7416,7 @@ package: dependencies: python: '>=3.5' webencodings: '>=0.4' - url: https://packages.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 @@ -7429,7 +7429,7 @@ package: dependencies: python: '>=3.5' webencodings: '>=0.4' - url: https://packages.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 @@ -7442,7 +7442,7 @@ package: dependencies: libgcc-ng: '>=12' libzlib: '>=1.2.13,<2.0.0a0' - url: https://packages.prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda + url: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda hash: md5: d453b98d9c83e71da0741bb0ff4d76bc sha256: e0569c9caa68bf476bead1bed3d79650bb080b532c64a4af7d8ca286c08dea4e @@ -7456,7 +7456,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/tk-8.6.13-h5226925_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-h5226925_1.conda hash: md5: fc048363eb8f03cd1737600a5d08aafe sha256: 2c4e914f521ccb2718946645108c9bd3fc3216ba69aea20c2c3cedbd8db32bb1 @@ -7468,7 +7468,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7480,7 +7480,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7492,7 +7492,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7504,7 +7504,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7516,7 +7516,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/tomlkit-0.13.2-pyha770c72_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.13.2-pyha770c72_1.conda hash: md5: 1d9ab4fc875c52db83f9c9b40af4e2c8 sha256: 986fae65f5568e95dbf858d08d77a0f9cca031345a98550f1d4b51d36d8811e2 @@ -7528,7 +7528,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/tomlkit-0.13.2-pyha770c72_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.13.2-pyha770c72_1.conda hash: md5: 1d9ab4fc875c52db83f9c9b40af4e2c8 sha256: 986fae65f5568e95dbf858d08d77a0f9cca031345a98550f1d4b51d36d8811e2 @@ -7540,7 +7540,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7552,7 +7552,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7567,7 +7567,7 @@ package: libgcc: '>=13' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://packages.prefix.dev/conda-forge/linux-64/tornado-6.4.2-py310ha75aee5_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/tornado-6.4.2-py310ha75aee5_0.conda hash: md5: 166d59aab40b9c607b4cc21c03924e9d sha256: 9c2b86d4e58c8b0e7d13a7f4c440f34e2201bae9cfc1d7e1d30a5bc7ffb1d4c8 @@ -7583,7 +7583,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/tornado-6.4.2-py310ha8f682b_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/tornado-6.4.2-py310ha8f682b_0.conda hash: md5: e6819d3a0cae0f1b1838875f858421d1 sha256: 2e5671d0db03961692b3390778ce6aba40702bd57584fa60badf4baa7614679b @@ -7596,7 +7596,7 @@ package: dependencies: colorama: '' python: '>=3.9' - url: https://packages.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 @@ -7609,7 +7609,7 @@ package: dependencies: colorama: '' python: '>=3.9' - url: https://packages.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 @@ -7621,7 +7621,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7633,7 +7633,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7645,7 +7645,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/types-python-dateutil-2.9.0.20241206-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/types-python-dateutil-2.9.0.20241206-pyhd8ed1ab_0.conda hash: md5: 1dbc4a115e2ad9fb7f9d5b68397f66f9 sha256: 8b98cd9464837174ab58aaa912fc95d5831879864676650a383994033533b8d1 @@ -7657,7 +7657,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/types-python-dateutil-2.9.0.20241206-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/types-python-dateutil-2.9.0.20241206-pyhd8ed1ab_0.conda hash: md5: 1dbc4a115e2ad9fb7f9d5b68397f66f9 sha256: 8b98cd9464837174ab58aaa912fc95d5831879864676650a383994033533b8d1 @@ -7669,7 +7669,7 @@ package: platform: linux-64 dependencies: typing_extensions: ==4.13.2 - url: https://packages.prefix.dev/conda-forge/noarch/typing-extensions-4.13.2-h0e9735f_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.13.2-h0e9735f_0.conda hash: md5: 568ed1300869dca0ba09fb750cda5dbb sha256: 4865fce0897d3cb0ffc8998219157a8325f6011c136e6fd740a9a6b169419296 @@ -7681,7 +7681,7 @@ package: platform: win-64 dependencies: typing_extensions: ==4.13.2 - url: https://packages.prefix.dev/conda-forge/noarch/typing-extensions-4.13.2-h0e9735f_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.13.2-h0e9735f_0.conda hash: md5: 568ed1300869dca0ba09fb750cda5dbb sha256: 4865fce0897d3cb0ffc8998219157a8325f6011c136e6fd740a9a6b169419296 @@ -7694,7 +7694,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '>=4.12.0' - url: https://packages.prefix.dev/conda-forge/noarch/typing-inspection-0.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/typing-inspection-0.4.0-pyhd8ed1ab_0.conda hash: md5: c5c76894b6b7bacc888ba25753bc8677 sha256: 172f971d70e1dbb978f6061d3f72be463d0f629155338603450d8ffe87cbf89d @@ -7707,7 +7707,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '>=4.12.0' - url: https://packages.prefix.dev/conda-forge/noarch/typing-inspection-0.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/typing-inspection-0.4.0-pyhd8ed1ab_0.conda hash: md5: c5c76894b6b7bacc888ba25753bc8677 sha256: 172f971d70e1dbb978f6061d3f72be463d0f629155338603450d8ffe87cbf89d @@ -7719,7 +7719,7 @@ package: platform: linux-64 dependencies: python: '' - url: https://packages.prefix.dev/conda-forge/noarch/typing_extensions-4.13.2-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.13.2-pyh29332c3_0.conda hash: md5: 83fc6ae00127671e301c9f44254c31b8 sha256: a8aaf351e6461de0d5d47e4911257e25eec2fa409d71f3b643bb2f748bde1c08 @@ -7730,8 +7730,8 @@ package: manager: conda platform: win-64 dependencies: - python: '' - url: https://packages.prefix.dev/conda-forge/noarch/typing_extensions-4.13.2-pyh29332c3_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.13.2-pyh29332c3_0.conda hash: md5: 83fc6ae00127671e301c9f44254c31b8 sha256: a8aaf351e6461de0d5d47e4911257e25eec2fa409d71f3b643bb2f748bde1c08 @@ -7743,7 +7743,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7755,7 +7755,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7766,7 +7766,7 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://packages.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 @@ -7777,7 +7777,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://packages.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 @@ -7789,7 +7789,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7801,7 +7801,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7812,7 +7812,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://packages.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 @@ -7827,7 +7827,7 @@ package: libgcc: '>=13' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://packages.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 @@ -7843,7 +7843,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -7855,7 +7855,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7867,7 +7867,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7883,7 +7883,7 @@ package: pysocks: '>=1.5.6,<2.0,!=1.5.7' python: '>=3.9' zstandard: '>=0.18.0' - url: https://packages.prefix.dev/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda hash: md5: c1e349028e0052c4eea844e94f773065 sha256: a25403b76f7f03ca1a906e1ef0f88521edded991b9897e7fed56a3e334b3db8c @@ -7899,7 +7899,7 @@ package: pysocks: '>=1.5.6,<2.0,!=1.5.7' python: '>=3.9' zstandard: '>=0.18.0' - url: https://packages.prefix.dev/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda hash: md5: c1e349028e0052c4eea844e94f773065 sha256: a25403b76f7f03ca1a906e1ef0f88521edded991b9897e7fed56a3e334b3db8c @@ -7911,7 +7911,7 @@ package: platform: win-64 dependencies: vc14_runtime: '>=14.42.34433' - url: https://packages.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 @@ -7923,7 +7923,7 @@ package: platform: win-64 dependencies: ucrt: '>=10.0.20348.0' - url: https://packages.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 @@ -7935,7 +7935,7 @@ package: platform: win-64 dependencies: vc14_runtime: '>=14.42.34438' - url: https://packages.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 @@ -7947,7 +7947,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7959,7 +7959,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7971,7 +7971,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7983,7 +7983,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7995,7 +7995,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -8007,7 +8007,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -8019,7 +8019,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -8031,7 +8031,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -8043,7 +8043,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -8055,7 +8055,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -8068,7 +8068,7 @@ package: dependencies: notebook: '>=4.4.1' python: '>=3.7' - url: https://packages.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 @@ -8081,7 +8081,7 @@ package: dependencies: notebook: '>=4.4.1' python: '>=3.7' - url: https://packages.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 @@ -8094,7 +8094,7 @@ package: dependencies: __win: '' python: '>=3.9' - url: https://packages.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 @@ -8105,7 +8105,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://packages.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 @@ -8118,7 +8118,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://packages.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 @@ -8132,7 +8132,7 @@ package: libgcc: '>=13' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' ucrt: '>=10.0.20348.0' - url: https://packages.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 @@ -8145,7 +8145,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://packages.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 @@ -8159,7 +8159,7 @@ package: libgcc: '>=13' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' ucrt: '>=10.0.20348.0' - url: https://packages.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 @@ -8171,7 +8171,7 @@ package: platform: linux-64 dependencies: python: '>=3.8' - url: https://packages.prefix.dev/conda-forge/noarch/xyzservices-2025.1.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/xyzservices-2025.1.0-pyhd8ed1ab_0.conda hash: md5: fdf07e281a9e5e10fc75b2dd444136e9 sha256: 9978c22319e85026d5a4134944f73bac820c948ca6b6c32af6b6985b5221cd8a @@ -8183,7 +8183,7 @@ package: platform: win-64 dependencies: python: '>=3.8' - url: https://packages.prefix.dev/conda-forge/noarch/xyzservices-2025.1.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/xyzservices-2025.1.0-pyhd8ed1ab_0.conda hash: md5: fdf07e281a9e5e10fc75b2dd444136e9 sha256: 9978c22319e85026d5a4134944f73bac820c948ca6b6c32af6b6985b5221cd8a @@ -8195,7 +8195,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=9.4.0' - url: https://packages.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 @@ -8208,7 +8208,7 @@ package: dependencies: vc: '>=14.1,<15.0a0' vs2015_runtime: '>=14.16.27012' - url: https://packages.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 @@ -8224,7 +8224,7 @@ package: numcodecs: '>=0.10.0,<0.16.0a0' numpy: '>=1.7' python: '>=3.5' - url: https://packages.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 @@ -8240,7 +8240,7 @@ package: numcodecs: '>=0.10.0,<0.16.0a0' numpy: '>=1.7' python: '>=3.5' - url: https://packages.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 @@ -8256,7 +8256,7 @@ package: libgcc: '>=13' libsodium: '>=1.0.20,<1.0.21.0a0' libstdcxx: '>=13' - url: https://packages.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 @@ -8272,7 +8272,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -8284,7 +8284,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -8296,7 +8296,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -8308,7 +8308,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda hash: md5: 0c3cc595284c5e8f0f9900a9b228a332 sha256: 567c04f124525c97a096b65769834b7acb047db24b15a56888a322bf3966c3e1 @@ -8320,7 +8320,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda hash: md5: 0c3cc595284c5e8f0f9900a9b228a332 sha256: 567c04f124525c97a096b65769834b7acb047db24b15a56888a322bf3966c3e1 @@ -8336,7 +8336,7 @@ package: libgcc: '>=13' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://packages.prefix.dev/conda-forge/linux-64/zstandard-0.23.0-py310ha75aee5_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/zstandard-0.23.0-py310ha75aee5_1.conda hash: md5: 0316e8d0e00c00631a6de89207db5b09 sha256: 96f96336f76443f5efb05f8a7232cc62f8fff969c27d03aa4aae181745f6f961 @@ -8353,7 +8353,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/zstandard-0.23.0-py310ha8f682b_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/zstandard-0.23.0-py310ha8f682b_1.conda hash: md5: 831d9f1bfdfc3616b4c0f91cdb36ed38 sha256: 6bc275161380985ba7effabf53534e8b97479d0318329f345b2e936bd2e4dbe6 @@ -8368,7 +8368,7 @@ package: libgcc: '>=13' libstdcxx: '>=13' libzlib: '>=1.3.1,<2.0a0' - url: https://packages.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 @@ -8383,48 +8383,12 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 category: main optional: false -- name: dask - version: 2025.3.0 - manager: pip - platform: linux-64 - dependencies: - click: '>=8.1' - cloudpickle: '>=3.0.0' - fsspec: '>=2021.09.0' - importlib-metadata: '>=4.13.0' - packaging: '>=20.0' - partd: '>=1.4.0' - pyyaml: '>=5.3.1' - toolz: '>=0.10.0' - url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/packages/packages/bd/8a/3609033a4bfd7c9b3e8a4e8a5d6e318dfc06ab2e2d3b5cb0e01a60458858/dask-2025.3.0-py3-none-any.whl - hash: - sha256: b5d72bb33788904a218fd7da1850238517592358ecc79c30bb5c188a71df506d - category: main - optional: false -- name: dask - version: 2025.3.0 - manager: pip - platform: win-64 - dependencies: - click: '>=8.1' - cloudpickle: '>=3.0.0' - fsspec: '>=2021.09.0' - importlib-metadata: '>=4.13.0' - packaging: '>=20.0' - partd: '>=1.4.0' - pyyaml: '>=5.3.1' - toolz: '>=0.10.0' - url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/packages/packages/bd/8a/3609033a4bfd7c9b3e8a4e8a5d6e318dfc06ab2e2d3b5cb0e01a60458858/dask-2025.3.0-py3-none-any.whl - hash: - sha256: b5d72bb33788904a218fd7da1850238517592358ecc79c30bb5c188a71df506d - category: main - optional: false - name: geoapps-utils version: 0.5.0a3 manager: pip @@ -8434,7 +8398,7 @@ package: numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/geoapps-utils/0.5.0-alpha.3/geoapps_utils-0.5.0a3-py3-none-any.whl + url: https://files.pythonhosted.org/packages/7f/0b/36222385937dcda4b4789303027fc538103201f72b4bce99d53398a5b5da/geoapps_utils-0.5.0a3-py3-none-any.whl hash: sha256: a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c category: main @@ -8448,7 +8412,7 @@ package: numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/geoapps-utils/0.5.0-alpha.3/geoapps_utils-0.5.0a3-py3-none-any.whl + url: https://files.pythonhosted.org/packages/7f/0b/36222385937dcda4b4789303027fc538103201f72b4bce99d53398a5b5da/geoapps_utils-0.5.0a3-py3-none-any.whl hash: sha256: a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c category: main @@ -8462,7 +8426,7 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/geoh5py/0.11.0-alpha.4/geoh5py-0.11.0a4-py3-none-any.whl + url: https://files.pythonhosted.org/packages/cb/76/a6f12182119218ad7b55ad622a89be4596c1cc37b1182c3f121242c0b0fc/geoh5py-0.11.0a4-py3-none-any.whl hash: sha256: 4965e934b1e57460f98f76f96eca100abf48fd722245154c35af86e7ecbc10a6 category: main @@ -8476,19 +8440,17 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/geoh5py/0.11.0-alpha.4/geoh5py-0.11.0a4-py3-none-any.whl + url: https://files.pythonhosted.org/packages/cb/76/a6f12182119218ad7b55ad622a89be4596c1cc37b1182c3f121242c0b0fc/geoh5py-0.11.0a4-py3-none-any.whl hash: sha256: 4965e934b1e57460f98f76f96eca100abf48fd722245154c35af86e7ecbc10a6 category: main optional: false - name: mira-simpeg - version: 0.23.0.1a2 + version: 0.23.0.1a3.dev1+g60bcbe68b manager: pip platform: linux-64 dependencies: - dask: '*' discretize: '>=0.11' - fsspec: '>=0.3.3' geoana: '>=0.7.0' geoh5py: '>=0.11.0a1,<0.12.dev' libdlf: '*' @@ -8496,20 +8458,20 @@ package: numpy: '>=1.22' pymatsolver: '>=0.3' scipy: '>=1.8' - zarr: '*' - url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/mira-simpeg/0.23.0.1a2+mira/mira_simpeg-0.23.0.1a2-py3-none-any.whl + url: git+https://github.com/MiraGeoscience/simpeg.git@60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 hash: - sha256: 931b533984dfcca301bea0d8e4a72a5f482731f0561a9ad95a790c516262d830 + sha256: 60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 + source: + type: url + url: git+https://github.com/MiraGeoscience/simpeg.git@60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 category: main optional: false - name: mira-simpeg - version: 0.23.0.1a2 + version: 0.23.0.1a3.dev1+g60bcbe68b manager: pip platform: win-64 dependencies: - dask: '*' discretize: '>=0.11' - fsspec: '>=0.3.3' geoana: '>=0.7.0' geoh5py: '>=0.11.0a1,<0.12.dev' libdlf: '*' @@ -8517,42 +8479,44 @@ package: numpy: '>=1.22' pymatsolver: '>=0.3' scipy: '>=1.8' - zarr: '*' - url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/mira-simpeg/0.23.0.1a2+mira/mira_simpeg-0.23.0.1a2-py3-none-any.whl + url: git+https://github.com/MiraGeoscience/simpeg.git@60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 hash: - sha256: 931b533984dfcca301bea0d8e4a72a5f482731f0561a9ad95a790c516262d830 + sha256: 60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 + source: + type: url + url: git+https://github.com/MiraGeoscience/simpeg.git@60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 category: main optional: false - name: octree-creation-app - version: 0.3.0a1 + version: 0.3.0a2 manager: pip platform: linux-64 dependencies: discretize: ==0.11.* - geoapps-utils: 0.5.0a3 + geoapps-utils: '>=0.5.0a3,<0.6.dev' geoh5py: '>=0.11.0a3,<0.12.dev' numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/octree-creation-app/0.3.0-alpha.1/octree_creation_app-0.3.0a1-py3-none-any.whl + url: https://files.pythonhosted.org/packages/8a/60/0a425a5a8cd25d46d8141bf24b20511d0176c9fae0e617f0eeca4675366b/octree_creation_app-0.3.0a2-py3-none-any.whl hash: - sha256: 379dc607aca96db07af2ea8fbacadc9d0ca086e91d2508f5720b87e6e8d778a1 + sha256: 002896126bf5a958aad1bb9c0a272bfd3c6985d1456dc8022c4e07b5582730ff category: main optional: false - name: octree-creation-app - version: 0.3.0a1 + version: 0.3.0a2 manager: pip platform: win-64 dependencies: discretize: ==0.11.* - geoapps-utils: 0.5.0a3 + geoapps-utils: '>=0.5.0a3,<0.6.dev' geoh5py: '>=0.11.0a3,<0.12.dev' numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/octree-creation-app/0.3.0-alpha.1/octree_creation_app-0.3.0a1-py3-none-any.whl + url: https://files.pythonhosted.org/packages/8a/60/0a425a5a8cd25d46d8141bf24b20511d0176c9fae0e617f0eeca4675366b/octree_creation_app-0.3.0a2-py3-none-any.whl hash: - sha256: 379dc607aca96db07af2ea8fbacadc9d0ca086e91d2508f5720b87e6e8d778a1 + sha256: 002896126bf5a958aad1bb9c0a272bfd3c6985d1456dc8022c4e07b5582730ff category: main optional: false - name: param-sweeps @@ -8562,7 +8526,7 @@ package: dependencies: geoh5py: '>=0.11.0a3,<0.12.dev' numpy: '>=1.26.0,<1.27.0' - url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/param-sweeps/0.2.1-alpha.1/param_sweeps-0.2.1a1-py3-none-any.whl + url: https://files.pythonhosted.org/packages/a9/b4/5352714c3cd8075b037aac1fcbcfb5f539449c020031cb663ad82a3944d0/param_sweeps-0.2.1a1-py3-none-any.whl hash: sha256: 777618dd6eef4b6e86b4976e01c29bb202abb9d295b0774baeabf7534fb9389c category: main @@ -8574,7 +8538,7 @@ package: dependencies: geoh5py: '>=0.11.0a3,<0.12.dev' numpy: '>=1.26.0,<1.27.0' - url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/param-sweeps/0.2.1-alpha.1/param_sweeps-0.2.1a1-py3-none-any.whl + url: https://files.pythonhosted.org/packages/a9/b4/5352714c3cd8075b037aac1fcbcfb5f539449c020031cb663ad82a3944d0/param_sweeps-0.2.1a1-py3-none-any.whl hash: sha256: 777618dd6eef4b6e86b4976e01c29bb202abb9d295b0774baeabf7534fb9389c category: main diff --git a/py-3.11.conda-lock.yml b/py-3.11.conda-lock.yml index 68334bcf..aec5272b 100644 --- a/py-3.11.conda-lock.yml +++ b/py-3.11.conda-lock.yml @@ -15,8 +15,8 @@ version: 1 metadata: content_hash: - win-64: 6746234080fb492f036f680bcb88c659a2628254805462ff518405ebc4dc97ec - linux-64: 8b265443dab30ad551824c6b1a148bd0dd8035f687125469ec0b8495cb8d13ef + win-64: 617bef7b79ba8c81c0cabeecff2a297d77f243179cfc6277cd1c97d18ae76c5c + linux-64: c5288a1ebba1f0cbb480b3f1338e21cfcc5f83a7fa348fc730452b0c8eaa152f channels: - url: conda-forge used_env_vars: [] @@ -35,7 +35,7 @@ package: platform: linux-64 dependencies: llvm-openmp: '>=9.0.1' - url: https://packages.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://packages.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://packages.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://packages.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://packages.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://packages.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://packages.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://packages.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 @@ -137,10 +137,10 @@ package: dependencies: exceptiongroup: '>=1.0.2' idna: '>=2.8' - python: '' + python: '>=3.9' sniffio: '>=1.1' typing_extensions: '>=4.5' - url: https://packages.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 @@ -153,10 +153,10 @@ package: dependencies: exceptiongroup: '>=1.0.2' idna: '>=2.8' - python: '' + python: '>=3.9' sniffio: '>=1.1' typing_extensions: '>=4.5' - url: https://packages.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://packages.prefix.dev/conda-forge/noarch/argon2-cffi-23.1.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/argon2-cffi-23.1.0-pyhd8ed1ab_1.conda hash: md5: a7ee488b71c30ada51c48468337b85ba sha256: 7af62339394986bc470a7a231c7f37ad0173ffb41f6bc0e8e31b0be9e3b9d20f @@ -184,7 +184,7 @@ package: argon2-cffi-bindings: '' python: '>=3.9' typing-extensions: '' - url: https://packages.prefix.dev/conda-forge/noarch/argon2-cffi-23.1.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/argon2-cffi-23.1.0-pyhd8ed1ab_1.conda hash: md5: a7ee488b71c30ada51c48468337b85ba sha256: 7af62339394986bc470a7a231c7f37ad0173ffb41f6bc0e8e31b0be9e3b9d20f @@ -200,7 +200,7 @@ package: libgcc: '>=13' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://packages.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://packages.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://packages.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://packages.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://packages.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://packages.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://packages.prefix.dev/conda-forge/linux-64/astroid-3.3.9-py311h38be061_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/astroid-3.3.9-py311h38be061_0.conda hash: md5: cabdabc18d53f957c01685765f24381a sha256: cf6c649941832b7b2ed0bdd4e79093343468c3e1003fc78f53e2a1021cefbec4 @@ -295,7 +295,7 @@ package: dependencies: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://packages.prefix.dev/conda-forge/win-64/astroid-3.3.9-py311h1ea47a8_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/astroid-3.3.9-py311h1ea47a8_0.conda hash: md5: dcfa6fc2847f6d9395b210423ab13d1b sha256: ce85abea60acda2e8d2c8bfbca7f1013e04a9b4b23d59b5e02a4b12de6ee1cf8 @@ -307,7 +307,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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://packages.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 @@ -330,9 +330,9 @@ package: manager: conda platform: linux-64 dependencies: - python: '' + python: '>=3.9' typing_extensions: '>=4.0.0' - url: https://packages.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 @@ -343,9 +343,9 @@ package: manager: conda platform: win-64 dependencies: - python: '' + python: '>=3.9' typing_extensions: '>=4.0.0' - url: https://packages.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://packages.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://packages.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://packages.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://packages.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://packages.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://packages.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 @@ -434,9 +434,9 @@ package: manager: conda platform: linux-64 dependencies: - python: '' + python: '>=3.9' webencodings: '' - url: https://packages.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 @@ -447,9 +447,9 @@ package: manager: conda platform: win-64 dependencies: - python: '' + python: '>=3.9' webencodings: '' - url: https://packages.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://packages.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://packages.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://packages.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://packages.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://packages.prefix.dev/conda-forge/linux-64/brotli-1.1.0-hb9d3cd8_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/brotli-1.1.0-hb9d3cd8_2.conda hash: md5: 98514fe74548d768907ce7a13f680e8f sha256: fcb0b5b28ba7492093e54f3184435144e074dfceab27ac8e6a9457e736565b0b @@ -550,7 +550,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/brotli-1.1.0-h2466b09_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/brotli-1.1.0-h2466b09_2.conda hash: md5: 378f1c9421775dfe644731cb121c8979 sha256: d8fd7d1b446706776117d2dcad1c0289b9f5e1521cb13405173bad38568dd252 @@ -565,7 +565,7 @@ package: libbrotlidec: 1.1.0 libbrotlienc: 1.1.0 libgcc: '>=13' - url: https://packages.prefix.dev/conda-forge/linux-64/brotli-bin-1.1.0-hb9d3cd8_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/brotli-bin-1.1.0-hb9d3cd8_2.conda hash: md5: c63b5e52939e795ba8d26e35d767a843 sha256: 261364d7445513b9a4debc345650fad13c627029bfc800655a266bf1e375bc65 @@ -581,7 +581,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/brotli-bin-1.1.0-h2466b09_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/brotli-bin-1.1.0-h2466b09_2.conda hash: md5: d22534a9be5771fc58eb7564947f669d sha256: f3bf2893613540ac256c68f211861c4de618d96291719e32178d894114ac2bc2 @@ -597,7 +597,7 @@ package: libstdcxx: '>=13' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://packages.prefix.dev/conda-forge/linux-64/brotli-python-1.1.0-py311hfdbb021_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.1.0-py311hfdbb021_2.conda hash: md5: d21daab070d76490cb39a8f1d1729d79 sha256: 949913bbd1f74d1af202d3e4bff2e0a4e792ec00271dc4dd08641d4221aa2e12 @@ -613,7 +613,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/brotli-python-1.1.0-py311hda3d55a_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/brotli-python-1.1.0-py311hda3d55a_2.conda hash: md5: a0ea2839841a06740a1c110ba3317b42 sha256: aa3ac5dbf63db2f145235708973c626c2189ee4040d769fdf0076286fa45dc26 @@ -626,7 +626,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - url: https://packages.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://packages.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,7 +653,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://packages.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 @@ -664,7 +664,7 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://packages.prefix.dev/conda-forge/linux-64/ca-certificates-2025.1.31-hbcca054_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2025.1.31-hbcca054_0.conda hash: md5: 19f3a56f68d2fd06c516076bff482c52 sha256: bf832198976d559ab44d6cdb315642655547e26d826e34da67cbee6624cda189 @@ -675,7 +675,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://packages.prefix.dev/conda-forge/win-64/ca-certificates-2025.1.31-h56e8100_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2025.1.31-h56e8100_0.conda hash: md5: 5304a31607974dfc2110dfbb662ed092 sha256: 1bedccdf25a3bd782d6b0e57ddd97cdcda5501716009f2de4479a779221df155 @@ -687,7 +687,7 @@ package: platform: linux-64 dependencies: cached_property: '>=1.5.2,<1.5.3.0a0' - url: https://packages.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 @@ -699,7 +699,7 @@ package: platform: win-64 dependencies: cached_property: '>=1.5.2,<1.5.3.0a0' - url: https://packages.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 @@ -711,7 +711,7 @@ package: platform: linux-64 dependencies: python: '>=3.6' - url: https://packages.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 @@ -723,7 +723,7 @@ package: platform: win-64 dependencies: python: '>=3.6' - url: https://packages.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 @@ -735,7 +735,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda hash: md5: c207fa5ac7ea99b149344385a9c0880d sha256: 42a78446da06a2568cb13e69be3355169fbd0ea424b00fc80b7d840f5baaacf3 @@ -747,7 +747,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda hash: md5: c207fa5ac7ea99b149344385a9c0880d sha256: 42a78446da06a2568cb13e69be3355169fbd0ea424b00fc80b7d840f5baaacf3 @@ -764,7 +764,7 @@ package: pycparser: '' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://packages.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 @@ -781,7 +781,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -793,7 +793,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda hash: md5: e83a31202d1c0a000fce3e9cf3825875 sha256: 4e0ee91b97e5de3e74567bdacea27f0139709fceca4db8adffbe24deffccb09b @@ -805,7 +805,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda hash: md5: e83a31202d1c0a000fce3e9cf3825875 sha256: 4e0ee91b97e5de3e74567bdacea27f0139709fceca4db8adffbe24deffccb09b @@ -818,7 +818,7 @@ package: dependencies: __unix: '' python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/click-8.1.8-pyh707e725_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.8-pyh707e725_0.conda hash: md5: f22f4d4970e09d68a10b922cbb0408d3 sha256: c920d23cd1fcf565031c679adb62d848af60d6fbb0edc2d50ba475cea4f0d8ab @@ -832,7 +832,7 @@ package: __win: '' colorama: '' python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/click-8.1.8-pyh7428d3b_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.8-pyh7428d3b_0.conda hash: md5: 90e5571556f7a45db92ee51cb8f97af6 sha256: c889ed359ae47eead4ffe8927b7206b22c55e67d6e74a9044c23736919d61e8d @@ -844,7 +844,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -856,7 +856,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -868,7 +868,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -880,7 +880,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -893,7 +893,7 @@ package: dependencies: python: '>=3.9' traitlets: '>=5.3' - url: https://packages.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 @@ -906,7 +906,7 @@ package: dependencies: python: '>=3.9' traitlets: '>=5.3' - url: https://packages.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 @@ -923,7 +923,7 @@ package: numpy: '>=1.23' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://packages.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 @@ -940,7 +940,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -956,7 +956,7 @@ package: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* tomli: '' - url: https://packages.prefix.dev/conda-forge/linux-64/coverage-7.8.0-py311h2dc5d0c_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/coverage-7.8.0-py311h2dc5d0c_0.conda hash: md5: 37bc439a94beeb29914baa5b4987ebd5 sha256: 50018d9c2d805eab29be0ad2e65a4d6b9f620e5e6b196923b1f3b397efee9b10 @@ -973,7 +973,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/coverage-7.8.0-py311h5082efb_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/coverage-7.8.0-py311h5082efb_0.conda hash: md5: 3237b9093308b18ee36d455ff098017b sha256: 2a3a8f6304374d19e6fd1cbf73e756debf0a76e787f1a15bd8b11d74f9ef6bd2 @@ -986,7 +986,7 @@ package: dependencies: python: '>=3.11,<3.12.0a0' python_abi: '*' - url: https://packages.prefix.dev/conda-forge/noarch/cpython-3.11.12-py311hd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/cpython-3.11.12-py311hd8ed1ab_0.conda hash: md5: 451718359f1658c6819d8665f82585ab sha256: 91e8da449682e37e326a560aa3575ee0f32ab697119e4cf4a76fd68af61fc1a0 @@ -998,7 +998,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -1010,7 +1010,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -1026,7 +1026,7 @@ package: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* toolz: '>=0.10.0' - url: https://packages.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 @@ -1043,7 +1043,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -1063,7 +1063,7 @@ package: python: '>=3.10' pyyaml: '>=5.3.1' toolz: '>=0.10.0' - url: https://packages.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 @@ -1083,7 +1083,7 @@ package: python: '>=3.10' pyyaml: '>=5.3.1' toolz: '>=0.10.0' - url: https://packages.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 @@ -1095,7 +1095,7 @@ package: platform: linux-64 dependencies: python: '>=3.7' - url: https://packages.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 @@ -1107,7 +1107,7 @@ package: platform: win-64 dependencies: python: '>=3.7' - url: https://packages.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 @@ -1123,7 +1123,7 @@ package: libstdcxx: '>=13' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://packages.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 @@ -1139,7 +1139,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -1151,7 +1151,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -1163,7 +1163,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -1175,7 +1175,7 @@ package: platform: linux-64 dependencies: python: '>=3.6' - url: https://packages.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 @@ -1187,7 +1187,7 @@ package: platform: win-64 dependencies: python: '>=3.6' - url: https://packages.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 @@ -1200,7 +1200,7 @@ package: dependencies: python: '>=3.9' wrapt: <2,>=1.10 - url: https://packages.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 @@ -1213,7 +1213,7 @@ package: dependencies: python: '>=3.9' wrapt: <2,>=1.10 - url: https://packages.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 @@ -1225,7 +1225,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -1237,7 +1237,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -1255,7 +1255,7 @@ package: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* scipy: '>=1.8' - url: https://packages.prefix.dev/conda-forge/linux-64/discretize-0.11.2-py311h5b7b71f_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/discretize-0.11.2-py311h5b7b71f_1.conda hash: md5: 46691a03f4c2317ec8c798dc8575bf48 sha256: 147f8e5403fe7cc0cab3eb8e5cb362347728fe5e485e7c6ca76f5139447b1960 @@ -1273,7 +1273,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/discretize-0.11.2-py311h9b10771_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/discretize-0.11.2-py311h9b10771_0.conda hash: md5: 67a5b84650218196cfef1b647c6a9140 sha256: 0bda0975ae4898c3887be171c9888fd57a20379c129e3149a4708c9d3edf5a2b @@ -1301,7 +1301,7 @@ package: tornado: '>=6.2.0' urllib3: '>=1.26.5' zict: '>=3.0.0' - url: https://packages.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 @@ -1329,7 +1329,7 @@ package: tornado: '>=6.2.0' urllib3: '>=1.26.5' zict: '>=3.0.0' - url: https://packages.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 @@ -1342,7 +1342,7 @@ package: dependencies: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://packages.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 @@ -1355,7 +1355,7 @@ package: dependencies: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://packages.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 @@ -1367,7 +1367,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda hash: md5: a16662747cdeb9abbac74d0057cc976e sha256: cbde2c64ec317118fc06b223c5fd87c8a680255e7348dd60e7b292d2e103e701 @@ -1379,7 +1379,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda hash: md5: a16662747cdeb9abbac74d0057cc976e sha256: cbde2c64ec317118fc06b223c5fd87c8a680255e7348dd60e7b292d2e103e701 @@ -1391,7 +1391,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/executing-2.1.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/executing-2.1.0-pyhd8ed1ab_1.conda hash: md5: ef8b5fca76806159fc25b4f48d8737eb sha256: 28d25ea375ebab4bf7479228f8430db20986187b04999136ff5c722ebd32eb60 @@ -1403,7 +1403,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/executing-2.1.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/executing-2.1.0-pyhd8ed1ab_1.conda hash: md5: ef8b5fca76806159fc25b4f48d8737eb sha256: 28d25ea375ebab4bf7479228f8430db20986187b04999136ff5c722ebd32eb60 @@ -1415,7 +1415,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -1427,7 +1427,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -1445,7 +1445,7 @@ package: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* unicodedata2: '>=15.1.0' - url: https://packages.prefix.dev/conda-forge/linux-64/fonttools-4.57.0-py311h2dc5d0c_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/fonttools-4.57.0-py311h2dc5d0c_0.conda hash: md5: 4175f366b41d3d0c80d02661a0a03473 sha256: 2157fff1f143fc99f9b27d1358b537f08478eb65d917279a3484c9c8989ea5fc @@ -1464,7 +1464,7 @@ package: unicodedata2: '>=15.1.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/fonttools-4.57.0-py311h5082efb_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/fonttools-4.57.0-py311h5082efb_0.conda hash: md5: 9ecb6a80392fc77239da9cb631e9ab0c sha256: 59938b42ed276e716af76b9795f37f2c2ba9b03ce79e820610b37d036d1b4101 @@ -1477,7 +1477,7 @@ package: dependencies: cached-property: '>=1.3.0' python: '>=3.9,<4' - url: https://packages.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 @@ -1490,7 +1490,7 @@ package: dependencies: cached-property: '>=1.3.0' python: '>=3.9,<4' - url: https://packages.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 @@ -1505,7 +1505,7 @@ package: libgcc: '>=13' libpng: '>=1.6.47,<1.7.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://packages.prefix.dev/conda-forge/linux-64/freetype-2.13.3-h48d6fc4_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/freetype-2.13.3-h48d6fc4_0.conda hash: md5: 9ecfd6f2ca17077dd9c2d24770bb9ccd sha256: 7385577509a9c4730130f54bb6841b9b416249d5f4e9f74bf313e6378e313c57 @@ -1521,7 +1521,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/freetype-2.13.3-h0b5ce68_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/freetype-2.13.3-h0b5ce68_0.conda hash: md5: 9c461ed7b07fb360d2c8cfe726c7d521 sha256: 67e3af0fbe6c25f5ab1af9a3d3000464c5e88a8a0b4b06602f4a5243a8a1fd42 @@ -1533,7 +1533,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/fsspec-2025.3.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/fsspec-2025.3.2-pyhd8ed1ab_0.conda hash: md5: 9c40692c3d24c7aaf335f673ac09d308 sha256: 2040d4640708bd6ab9ed6cb9901267441798c44974bc63c9b6c1cb4c1891d825 @@ -1545,7 +1545,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/fsspec-2025.3.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/fsspec-2025.3.2-pyhd8ed1ab_0.conda hash: md5: 9c40692c3d24c7aaf335f673ac09d308 sha256: 2040d4640708bd6ab9ed6cb9901267441798c44974bc63c9b6c1cb4c1891d825 @@ -1564,7 +1564,7 @@ package: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* scipy: '>=1.8' - url: https://packages.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 @@ -1583,7 +1583,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -1599,7 +1599,7 @@ package: libstdcxx: '>=13' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://packages.prefix.dev/conda-forge/linux-64/greenlet-3.2.0-py311hfdbb021_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/greenlet-3.2.0-py311hfdbb021_0.conda hash: md5: e2d6b1307377bca8acfed2fa5e60d8d4 sha256: 3e6f513e62422362a391fe4de514b1191da297cccc03a21f9e173731b138b521 @@ -1615,7 +1615,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/greenlet-3.2.0-py311hda3d55a_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/greenlet-3.2.0-py311hda3d55a_0.conda hash: md5: d7503f1b3ee59d71c5801fe282d4eebf sha256: f996197b139ec5122ea7b1c02e8b4d9f9f5725d89facf025e128f84023172215 @@ -1628,7 +1628,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '' - url: https://packages.prefix.dev/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_1.conda hash: md5: 7ee49e89531c0dcbba9466f6d115d585 sha256: 622516185a7c740d5c7f27016d0c15b45782c1501e5611deec63fd70344ce7c8 @@ -1641,7 +1641,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '' - url: https://packages.prefix.dev/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_1.conda hash: md5: 7ee49e89531c0dcbba9466f6d115d585 sha256: 622516185a7c740d5c7f27016d0c15b45782c1501e5611deec63fd70344ce7c8 @@ -1655,7 +1655,7 @@ package: hpack: '>=4.1,<5' hyperframe: '>=6.1,<7' python: '>=3.9' - url: https://packages.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 @@ -1669,7 +1669,7 @@ package: hpack: '>=4.1,<5' hyperframe: '>=6.1,<7' python: '>=3.9' - url: https://packages.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 @@ -1687,7 +1687,7 @@ package: numpy: '>=1.19,<3' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://packages.prefix.dev/conda-forge/linux-64/h5py-3.13.0-nompi_py311hb639ac4_100.conda + url: https://conda.anaconda.org/conda-forge/linux-64/h5py-3.13.0-nompi_py311hb639ac4_100.conda hash: md5: 5e6c88350ad81f42e63f2b470b6a4b86 sha256: 61809af316c1da7db5b19396f18c4ea31fc194910901e873baa056ab103f46c7 @@ -1706,7 +1706,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/h5py-3.13.0-nompi_py311h67016bb_100.conda + url: https://conda.anaconda.org/conda-forge/win-64/h5py-3.13.0-nompi_py311h67016bb_100.conda hash: md5: 2e6c03df40daaaceb2f8229eff48a22a sha256: 5d36e278a6eeeca22e7d882b4d5e98ee23b900994eb1902aa95f8c582a2a6200 @@ -1726,7 +1726,7 @@ package: libstdcxx: '>=13' libzlib: '>=1.3.1,<2.0a0' openssl: '>=3.4.0,<4.0a0' - url: https://packages.prefix.dev/conda-forge/linux-64/hdf5-1.14.3-nompi_h2d575fe_109.conda + url: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.3-nompi_h2d575fe_109.conda hash: md5: e7a7a6e6f70553a31e6e79c65768d089 sha256: e8669a6d76d415f4fdbe682507ac3a3b39e8f493d2f2bdc520817f80b7cc0753 @@ -1744,7 +1744,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/hdf5-1.14.3-nompi_hb2c4d47_109.conda + url: https://conda.anaconda.org/conda-forge/win-64/hdf5-1.14.3-nompi_hb2c4d47_109.conda hash: md5: ebb61f3e8b35cc15e78876649b7246f7 sha256: d5ada33e119cdd62371c06f60eae6f545de7cea793ab83da2fba428bb1d2f813 @@ -1756,7 +1756,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -1768,7 +1768,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -1785,7 +1785,7 @@ package: h2: '>=3,<5' python: '>=3.8' sniffio: 1.* - url: https://packages.prefix.dev/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda hash: md5: 2ca8e6dbc86525c8b95e3c0ffa26442e sha256: c84d012a245171f3ed666a8bf9319580c269b7843ffa79f26468842da3abd5df @@ -1802,7 +1802,7 @@ package: h2: '>=3,<5' python: '>=3.8' sniffio: 1.* - url: https://packages.prefix.dev/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda hash: md5: 2ca8e6dbc86525c8b95e3c0ffa26442e sha256: c84d012a245171f3ed666a8bf9319580c269b7843ffa79f26468842da3abd5df @@ -1818,7 +1818,7 @@ package: httpcore: 1.* idna: '' python: '>=3.9' - url: https://packages.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 @@ -1834,7 +1834,7 @@ package: httpcore: 1.* idna: '' python: '>=3.9' - url: https://packages.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 @@ -1846,7 +1846,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -1858,7 +1858,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -1870,7 +1870,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -1882,7 +1882,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -1894,7 +1894,7 @@ package: platform: linux-64 dependencies: python: '>=3.4' - url: https://packages.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 @@ -1906,7 +1906,7 @@ package: platform: win-64 dependencies: python: '>=3.4' - url: https://packages.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: dependencies: python: '>=3.9' zipp: '>=0.5' - url: https://packages.prefix.dev/conda-forge/noarch/importlib-metadata-8.6.1-pyha770c72_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.6.1-pyha770c72_0.conda hash: md5: f4b39bf00c69f56ac01e020ebfac066c sha256: 598951ebdb23e25e4cec4bbff0ae369cec65ead80b50bc08b441d8e54de5cf03 @@ -1932,7 +1932,7 @@ package: dependencies: python: '>=3.9' zipp: '>=0.5' - url: https://packages.prefix.dev/conda-forge/noarch/importlib-metadata-8.6.1-pyha770c72_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.6.1-pyha770c72_0.conda hash: md5: f4b39bf00c69f56ac01e020ebfac066c sha256: 598951ebdb23e25e4cec4bbff0ae369cec65ead80b50bc08b441d8e54de5cf03 @@ -1944,7 +1944,7 @@ package: platform: linux-64 dependencies: importlib-metadata: '>=8.6.1,<8.6.2.0a0' - url: https://packages.prefix.dev/conda-forge/noarch/importlib_metadata-8.6.1-hd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-8.6.1-hd8ed1ab_0.conda hash: md5: 7f46575a91b1307441abc235d01cab66 sha256: 1e3eb9d65c4d7b87c7347553ef9eef6f994996f90a2299e19b35f5997d3a3e79 @@ -1956,7 +1956,7 @@ package: platform: win-64 dependencies: importlib-metadata: '>=8.6.1,<8.6.2.0a0' - url: https://packages.prefix.dev/conda-forge/noarch/importlib_metadata-8.6.1-hd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-8.6.1-hd8ed1ab_0.conda hash: md5: 7f46575a91b1307441abc235d01cab66 sha256: 1e3eb9d65c4d7b87c7347553ef9eef6f994996f90a2299e19b35f5997d3a3e79 @@ -1969,7 +1969,7 @@ package: dependencies: python: '>=3.9' zipp: '>=3.1.0' - url: https://packages.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 @@ -1982,7 +1982,7 @@ package: dependencies: python: '>=3.9' zipp: '>=3.1.0' - url: https://packages.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 @@ -1994,7 +1994,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -2017,7 +2017,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://packages.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 @@ -2042,7 +2042,7 @@ package: pyzmq: '>=24' tornado: '>=6.1' traitlets: '>=5.4.0' - url: https://packages.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 @@ -2067,7 +2067,7 @@ package: pyzmq: '>=24' tornado: '>=6.1' traitlets: '>=5.4.0' - url: https://packages.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 @@ -2088,11 +2088,11 @@ package: pickleshare: '' prompt-toolkit: '>=3.0.41,<3.1.0' pygments: '>=2.4.0' - python: '' + python: '>=3.11' stack_data: '' traitlets: '>=5.13.0' typing_extensions: '>=4.6' - url: https://packages.prefix.dev/conda-forge/noarch/ipython-9.1.0-pyhfb0248b_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/ipython-9.1.0-pyhfb0248b_0.conda hash: md5: b6c7f97b71c0f670dd9e585d3f65e867 sha256: 24cabcd711d03d2865a67ebc17941bc9bde949b3f0c9a34655c4153dce1c34c3 @@ -2113,11 +2113,11 @@ package: pickleshare: '' prompt-toolkit: '>=3.0.41,<3.1.0' pygments: '>=2.4.0' - python: '' + python: '>=3.11' stack_data: '' traitlets: '>=5.13.0' typing_extensions: '>=4.6' - url: https://packages.prefix.dev/conda-forge/noarch/ipython-9.1.0-pyhca29cf9_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/ipython-9.1.0-pyhca29cf9_0.conda hash: md5: 4f71690ae510b365a22bb1cb926e6df2 sha256: 330d452de42f10537bff1490f6ff08bf4e6c0c7288255be43f9e895e15dd2969 @@ -2129,7 +2129,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -2141,7 +2141,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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: dependencies: pygments: '' python: '>=3.9' - url: https://packages.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 @@ -2167,7 +2167,7 @@ package: dependencies: pygments: '' python: '>=3.9' - url: https://packages.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 @@ -2185,7 +2185,7 @@ package: python: '>=3.3' traitlets: '>=4.3.1' widgetsnbextension: '>=3.6.10,<3.7.0' - url: https://packages.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 @@ -2203,7 +2203,7 @@ package: python: '>=3.3' traitlets: '>=4.3.1' widgetsnbextension: '>=3.6.10,<3.7.0' - url: https://packages.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: dependencies: arrow: '>=0.15.0' python: '>=3.9' - url: https://packages.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 @@ -2229,7 +2229,7 @@ package: dependencies: arrow: '>=0.15.0' python: '>=3.9' - url: https://packages.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: python: '>=3.9,<4.0' setuptools: '' - url: https://packages.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_0.conda hash: md5: a8abfd3f223b1ecb8c699dca974933bd sha256: 9c5fb97efa0eb32b42564edaacb5edb9a1f82ba8f5f8b135e794960101115b5a @@ -2255,7 +2255,7 @@ package: dependencies: python: '>=3.9,<4.0' setuptools: '' - url: https://packages.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_0.conda hash: md5: a8abfd3f223b1ecb8c699dca974933bd sha256: 9c5fb97efa0eb32b42564edaacb5edb9a1f82ba8f5f8b135e794960101115b5a @@ -2268,7 +2268,7 @@ package: dependencies: parso: '>=0.8.3,<0.9.0' python: '>=3.9' - url: https://packages.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 @@ -2281,7 +2281,7 @@ package: dependencies: parso: '>=0.8.3,<0.9.0' python: '>=3.9' - url: https://packages.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 @@ -2294,7 +2294,7 @@ package: dependencies: markupsafe: '>=2.0' python: '>=3.9' - url: https://packages.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 @@ -2307,7 +2307,7 @@ package: dependencies: markupsafe: '>=2.0' python: '>=3.9' - url: https://packages.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 @@ -2320,7 +2320,7 @@ package: dependencies: python: '>=3.9' setuptools: '' - url: https://packages.prefix.dev/conda-forge/noarch/joblib-1.4.2-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/joblib-1.4.2-pyhd8ed1ab_1.conda hash: md5: bf8243ee348f3a10a14ed0cae323e0c1 sha256: 51cc2dc491668af0c4d9299b0ab750f16ccf413ec5e2391b924108c1fbacae9b @@ -2333,7 +2333,7 @@ package: dependencies: python: '>=3.9' setuptools: '' - url: https://packages.prefix.dev/conda-forge/noarch/joblib-1.4.2-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/joblib-1.4.2-pyhd8ed1ab_1.conda hash: md5: bf8243ee348f3a10a14ed0cae323e0c1 sha256: 51cc2dc491668af0c4d9299b0ab750f16ccf413ec5e2391b924108c1fbacae9b @@ -2345,7 +2345,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -2357,7 +2357,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -2370,7 +2370,7 @@ package: dependencies: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://packages.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 @@ -2383,7 +2383,7 @@ package: dependencies: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://packages.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 @@ -2401,7 +2401,7 @@ package: python: '>=3.9' referencing: '>=0.28.4' rpds-py: '>=0.7.1' - url: https://packages.prefix.dev/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_1.conda hash: md5: a3cead9264b331b32fe8f0aabc967522 sha256: be992a99e589146f229c58fe5083e0b60551d774511c494f91fe011931bd7893 @@ -2419,7 +2419,7 @@ package: python: '>=3.9' referencing: '>=0.28.4' rpds-py: '>=0.7.1' - url: https://packages.prefix.dev/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_1.conda hash: md5: a3cead9264b331b32fe8f0aabc967522 sha256: be992a99e589146f229c58fe5083e0b60551d774511c494f91fe011931bd7893 @@ -2432,7 +2432,7 @@ package: dependencies: python: '>=3.9' referencing: '>=0.31.0' - url: https://packages.prefix.dev/conda-forge/noarch/jsonschema-specifications-2024.10.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2024.10.1-pyhd8ed1ab_1.conda hash: md5: 3b519bc21bc80e60b456f1e62962a766 sha256: 37127133837444cf0e6d1a95ff5a505f8214ed4e89e8e9343284840e674c6891 @@ -2445,7 +2445,7 @@ package: dependencies: python: '>=3.9' referencing: '>=0.31.0' - url: https://packages.prefix.dev/conda-forge/noarch/jsonschema-specifications-2024.10.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2024.10.1-pyhd8ed1ab_1.conda hash: md5: 3b519bc21bc80e60b456f1e62962a766 sha256: 37127133837444cf0e6d1a95ff5a505f8214ed4e89e8e9343284840e674c6891 @@ -2465,7 +2465,7 @@ package: rfc3986-validator: '>0.1.0' uri-template: '' webcolors: '>=24.6.0' - url: https://packages.prefix.dev/conda-forge/noarch/jsonschema-with-format-nongpl-4.23.0-hd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-with-format-nongpl-4.23.0-hd8ed1ab_1.conda hash: md5: a5b1a8065857cc4bd8b7a38d063bb728 sha256: 6e0184530011961a0802fda100ecdfd4b0eca634ed94c37e553b72e21c26627d @@ -2485,7 +2485,7 @@ package: rfc3986-validator: '>0.1.0' uri-template: '' webcolors: '>=24.6.0' - url: https://packages.prefix.dev/conda-forge/noarch/jsonschema-with-format-nongpl-4.23.0-hd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-with-format-nongpl-4.23.0-hd8ed1ab_1.conda hash: md5: a5b1a8065857cc4bd8b7a38d063bb728 sha256: 6e0184530011961a0802fda100ecdfd4b0eca634ed94c37e553b72e21c26627d @@ -2516,7 +2516,7 @@ package: sphinx-thebe: '>=0.3.1,<1' sphinx-togglebutton: '' sphinxcontrib-bibtex: '>=2.5.0,<3' - url: https://packages.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 @@ -2547,7 +2547,7 @@ package: sphinx-thebe: '>=0.3.1,<1' sphinx-togglebutton: '' sphinxcontrib-bibtex: '>=2.5.0,<3' - url: https://packages.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 @@ -2567,7 +2567,7 @@ package: pyyaml: '' sqlalchemy: '>=1.3.12,<3' tabulate: '' - url: https://packages.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 @@ -2587,7 +2587,7 @@ package: pyyaml: '' sqlalchemy: '>=1.3.12,<3' tabulate: '' - url: https://packages.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 @@ -2601,7 +2601,7 @@ package: importlib-metadata: '>=4.8.3' jupyter_server: '>=1.1.2' python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/jupyter-lsp-2.2.5-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter-lsp-2.2.5-pyhd8ed1ab_1.conda hash: md5: 0b4c3908e5a38ea22ebb98ee5888c768 sha256: 1565c8b1423a37fca00fe0ab2a17cd8992c2ecf23e7867a1c9f6f86a9831c196 @@ -2615,7 +2615,7 @@ package: importlib-metadata: '>=4.8.3' jupyter_server: '>=1.1.2' python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/jupyter-lsp-2.2.5-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter-lsp-2.2.5-pyhd8ed1ab_1.conda hash: md5: 0b4c3908e5a38ea22ebb98ee5888c768 sha256: 1565c8b1423a37fca00fe0ab2a17cd8992c2ecf23e7867a1c9f6f86a9831c196 @@ -2633,7 +2633,7 @@ package: pyzmq: '>=23.0' tornado: '>=6.2' traitlets: '>=5.3' - url: https://packages.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 @@ -2651,7 +2651,7 @@ package: pyzmq: '>=23.0' tornado: '>=6.2' traitlets: '>=5.3' - url: https://packages.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 @@ -2666,7 +2666,7 @@ package: platformdirs: '>=2.5' python: '>=3.8' traitlets: '>=5.3' - url: https://packages.prefix.dev/conda-forge/noarch/jupyter_core-5.7.2-pyh31011fe_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.7.2-pyh31011fe_1.conda hash: md5: 0a2980dada0dd7fd0998f0342308b1b1 sha256: 732b1e8536bc22a5a174baa79842d79db2f4956d90293dd82dc1b3f6099bcccd @@ -2683,7 +2683,7 @@ package: python: '>=3.8' pywin32: '>=300' traitlets: '>=5.3' - url: https://packages.prefix.dev/conda-forge/noarch/jupyter_core-5.7.2-pyh5737063_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.7.2-pyh5737063_1.conda hash: md5: 46d87d1c0ea5da0aae36f77fa406e20d sha256: 7c903b2d62414c3e8da1f78db21f45b98de387aae195f8ca959794113ba4b3fd @@ -2696,14 +2696,14 @@ package: dependencies: jsonschema-with-format-nongpl: '>=4.18.0' packaging: '' - python: '' + python: '>=3.9' python-json-logger: '>=2.0.4' pyyaml: '>=5.3' referencing: '' rfc3339-validator: '' rfc3986-validator: '>=0.1.1' traitlets: '>=5.3' - url: https://packages.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 @@ -2716,14 +2716,14 @@ package: dependencies: jsonschema-with-format-nongpl: '>=4.18.0' packaging: '' - python: '' + python: '>=3.9' python-json-logger: '>=2.0.4' pyyaml: '>=5.3' referencing: '' rfc3339-validator: '' rfc3986-validator: '>=0.1.1' traitlets: '>=5.3' - url: https://packages.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 @@ -2753,7 +2753,7 @@ package: tornado: '>=6.2.0' traitlets: '>=5.6.0' websocket-client: '>=1.7' - url: https://packages.prefix.dev/conda-forge/noarch/jupyter_server-2.15.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.15.0-pyhd8ed1ab_0.conda hash: md5: 6ba8c206b5c6f52b82435056cf74ee46 sha256: be5f9774065d94c4a988f53812b83b67618bec33fcaaa005a98067d506613f8a @@ -2783,7 +2783,7 @@ package: tornado: '>=6.2.0' traitlets: '>=5.6.0' websocket-client: '>=1.7' - url: https://packages.prefix.dev/conda-forge/noarch/jupyter_server-2.15.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.15.0-pyhd8ed1ab_0.conda hash: md5: 6ba8c206b5c6f52b82435056cf74ee46 sha256: be5f9774065d94c4a988f53812b83b67618bec33fcaaa005a98067d506613f8a @@ -2796,7 +2796,7 @@ package: dependencies: python: '>=3.9' terminado: '>=0.8.3' - url: https://packages.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 @@ -2809,7 +2809,7 @@ package: dependencies: python: '>=3.9' terminado: '>=0.8.3' - url: https://packages.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 @@ -2836,7 +2836,7 @@ package: tomli: '>=1.2.2' tornado: '>=6.2.0' traitlets: '' - url: https://packages.prefix.dev/conda-forge/noarch/jupyterlab-4.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.4.0-pyhd8ed1ab_0.conda hash: md5: 2da6a5e2c788a1b1998b24c50a18572a sha256: 4d225d094d1e5a8e95c2bde0f9c9bbc5aac52d9abf7fd597dd7af0f467b44347 @@ -2863,7 +2863,7 @@ package: tomli: '>=1.2.2' tornado: '>=6.2.0' traitlets: '' - url: https://packages.prefix.dev/conda-forge/noarch/jupyterlab-4.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.4.0-pyhd8ed1ab_0.conda hash: md5: 2da6a5e2c788a1b1998b24c50a18572a sha256: 4d225d094d1e5a8e95c2bde0f9c9bbc5aac52d9abf7fd597dd7af0f467b44347 @@ -2876,7 +2876,7 @@ package: dependencies: pygments: '>=2.4.1,<3' python: '>=3.9' - url: https://packages.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 @@ -2889,7 +2889,7 @@ package: dependencies: pygments: '>=2.4.1,<3' python: '>=3.9' - url: https://packages.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 @@ -2909,7 +2909,7 @@ package: packaging: '>=21.3' python: '>=3.9' requests: '>=2.31' - url: https://packages.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 @@ -2929,7 +2929,7 @@ package: packaging: '>=21.3' python: '>=3.9' requests: '>=2.31' - url: https://packages.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 @@ -2941,7 +2941,7 @@ package: platform: linux-64 dependencies: python: '>=3.7' - url: https://packages.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 @@ -2953,7 +2953,7 @@ package: platform: win-64 dependencies: python: '>=3.7' - url: https://packages.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 @@ -2971,7 +2971,7 @@ package: python: '>=3.9' pyyaml: '' tomli: '' - url: https://packages.prefix.dev/conda-forge/noarch/jupytext-1.17.0-pyhbbac1ac_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupytext-1.17.0-pyhbbac1ac_0.conda hash: md5: d8e9471f69b3e7a7d233d43649b5061b sha256: 488a50bdca76b1c450323ea1f8213366f70130aff35ff87277ffa97107fbed2b @@ -2989,7 +2989,7 @@ package: python: '>=3.9' pyyaml: '' tomli: '' - url: https://packages.prefix.dev/conda-forge/noarch/jupytext-1.17.0-pyhbbac1ac_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupytext-1.17.0-pyhbbac1ac_0.conda hash: md5: d8e9471f69b3e7a7d233d43649b5061b sha256: 488a50bdca76b1c450323ea1f8213366f70130aff35ff87277ffa97107fbed2b @@ -3001,7 +3001,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=10.3.0' - url: https://packages.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 @@ -3017,7 +3017,7 @@ package: libstdcxx: '>=13' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://packages.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 @@ -3033,7 +3033,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -3049,7 +3049,7 @@ package: libgcc-ng: '>=12' libstdcxx-ng: '>=12' openssl: '>=3.3.1,<4.0a0' - url: https://packages.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 @@ -3064,7 +3064,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -3077,7 +3077,7 @@ package: dependencies: python: '' six: '' - url: https://packages.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 @@ -3090,7 +3090,7 @@ package: dependencies: python: '' six: '' - url: https://packages.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 @@ -3105,7 +3105,7 @@ package: libgcc: '>=13' libjpeg-turbo: '>=3.0.0,<4.0a0' libtiff: '>=4.7.0,<4.8.0a0' - url: https://packages.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 @@ -3121,7 +3121,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -3133,7 +3133,7 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://packages.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-h712a8e2_4.conda hash: md5: 01f8d123c96816249efd255a31ad7712 sha256: db73f38155d901a610b2320525b9dd3b31e4949215c870685fd92ea61b5ce472 @@ -3146,7 +3146,7 @@ package: dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://packages.prefix.dev/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2 hash: md5: 76bbff344f0134279f225174e9064c8f sha256: cb55f36dcd898203927133280ae1dc643368af041a48bcf7c026acb7c47b0c12 @@ -3159,7 +3159,7 @@ package: dependencies: vc: '>=14.2,<15' vs2015_runtime: '>=14.29.30037' - url: https://packages.prefix.dev/conda-forge/win-64/lerc-4.0.0-h63175ca_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/win-64/lerc-4.0.0-h63175ca_0.tar.bz2 hash: md5: 1900cb3cab5055833cfddb0ba233b074 sha256: f4f39d7f6a2f9b407f8fb567a6c25755270421731d70f0ff331f5de4fa367488 @@ -3172,7 +3172,7 @@ package: dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://packages.prefix.dev/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda hash: md5: 5e97e271911b8b2001a8b71860c32faa sha256: 2ef420a655528bca9d269086cf33b7e90d2f54ad941b437fb1ed5eca87cee017 @@ -3186,7 +3186,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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.3-h63175ca_0.conda hash: md5: 8723000f6ffdbdaef16025f0a01b64c5 sha256: f5c293d3cfc00f71dfdb64bd65ab53625565f8778fc2d5790575bef238976ebf @@ -3198,7 +3198,7 @@ package: platform: linux-64 dependencies: mkl: '>=2024.2.2,<2025.0a0' - url: https://packages.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 @@ -3210,7 +3210,7 @@ package: platform: win-64 dependencies: mkl: 2024.2.2 - url: https://packages.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 @@ -3223,7 +3223,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://packages.prefix.dev/conda-forge/linux-64/libbrotlicommon-1.1.0-hb9d3cd8_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.1.0-hb9d3cd8_2.conda hash: md5: 41b599ed2b02abcfdd84302bff174b23 sha256: d9db2de60ea917298e658143354a530e9ca5f9c63471c65cf47ab39fd2f429e3 @@ -3237,7 +3237,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/libbrotlicommon-1.1.0-h2466b09_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/libbrotlicommon-1.1.0-h2466b09_2.conda hash: md5: f7dc9a8f21d74eab46456df301da2972 sha256: 33e8851c6cc8e2d93059792cd65445bfe6be47e4782f826f01593898ec95764c @@ -3251,7 +3251,7 @@ package: __glibc: '>=2.17,<3.0.a0' libbrotlicommon: 1.1.0 libgcc: '>=13' - url: https://packages.prefix.dev/conda-forge/linux-64/libbrotlidec-1.1.0-hb9d3cd8_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.1.0-hb9d3cd8_2.conda hash: md5: 9566f0bd264fbd463002e759b8a82401 sha256: 2892d512cad096cb03f1b66361deeab58b64e15ba525d6592bb6d609e7045edf @@ -3266,7 +3266,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/libbrotlidec-1.1.0-h2466b09_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/libbrotlidec-1.1.0-h2466b09_2.conda hash: md5: 9bae75ce723fa34e98e239d21d752a7e sha256: 234fc92f4c4f1cf22f6464b2b15bfc872fa583c74bf3ab9539ff38892c43612f @@ -3280,7 +3280,7 @@ package: __glibc: '>=2.17,<3.0.a0' libbrotlicommon: 1.1.0 libgcc: '>=13' - url: https://packages.prefix.dev/conda-forge/linux-64/libbrotlienc-1.1.0-hb9d3cd8_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlienc-1.1.0-hb9d3cd8_2.conda hash: md5: 06f70867945ea6a84d35836af780f1de sha256: 779f58174e99de3600e939fa46eddb453ec5d3c60bb46cdaa8b4c127224dbf29 @@ -3295,7 +3295,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/libbrotlienc-1.1.0-h2466b09_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/libbrotlienc-1.1.0-h2466b09_2.conda hash: md5: 85741a24d97954a991e55e34bc55990b sha256: 3d0dd7ef505962f107b7ea8f894e0b3dd01bf46852b362c8a7fc136b039bc9e1 @@ -3307,7 +3307,7 @@ package: platform: linux-64 dependencies: libblas: 3.9.0 - url: https://packages.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 @@ -3319,7 +3319,7 @@ package: platform: win-64 dependencies: libblas: 3.9.0 - url: https://packages.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 @@ -3338,7 +3338,7 @@ package: libzlib: '>=1.3.1,<2.0a0' openssl: '>=3.4.1,<4.0a0' zstd: '>=1.5.7,<1.6.0a0' - url: https://packages.prefix.dev/conda-forge/linux-64/libcurl-8.13.0-h332b0f4_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.13.0-h332b0f4_0.conda hash: md5: cbdc92ac0d93fe3c796e36ad65c7905c sha256: 38e528acfaa0276b7052f4de44271ff9293fdb84579650601a8c49dac171482a @@ -3355,7 +3355,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/libcurl-8.13.0-h88aaa65_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/libcurl-8.13.0-h88aaa65_0.conda hash: md5: c9cf6eb842decbb66c2f34e72c3580d6 sha256: 185553b37c0299b7a15dc66a7a7e2a0d421adaac784ec9298a0b2ad745116ca5 @@ -3368,7 +3368,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://packages.prefix.dev/conda-forge/linux-64/libdeflate-1.23-h4ddbbb0_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.23-h4ddbbb0_0.conda hash: md5: 8dfae1d2e74767e9ce36d5fa0d8605db sha256: 511d801626d02f4247a04fff957cc6e9ec4cc7e8622bd9acd076bcdc5de5fe66 @@ -3382,7 +3382,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/libdeflate-1.23-h9062f6e_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/libdeflate-1.23-h9062f6e_0.conda hash: md5: a9624935147a25b06013099d3038e467 sha256: 96c47725a8258159295996ea2758fa0ff9bea330e72b59641642e16be8427ce8 @@ -3395,7 +3395,7 @@ package: dependencies: numpy: '' python: '>=3.10' - url: https://packages.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 @@ -3408,7 +3408,7 @@ package: dependencies: numpy: '' python: '>=3.10' - url: https://packages.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 @@ -3422,7 +3422,7 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' ncurses: '>=6.5,<7.0a0' - url: https://packages.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 @@ -3434,7 +3434,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://packages.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 @@ -3447,7 +3447,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://packages.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 @@ -3461,7 +3461,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -3474,7 +3474,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://packages.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 @@ -3488,7 +3488,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -3501,7 +3501,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' _openmp_mutex: '>=4.5' - url: https://packages.prefix.dev/conda-forge/linux-64/libgcc-14.2.0-h767d61c_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-14.2.0-h767d61c_2.conda hash: md5: ef504d1acbd74b7cc6849ef8af47dd03 sha256: 3a572d031cb86deb541d15c1875aaa097baefc0c580b54dc61f5edab99215792 @@ -3514,7 +3514,7 @@ package: dependencies: _openmp_mutex: '>=4.5' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' - url: https://packages.prefix.dev/conda-forge/win-64/libgcc-14.2.0-h1383e82_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/libgcc-14.2.0-h1383e82_2.conda hash: md5: 4a74c1461a0ba47a3346c04bdccbe2ad sha256: fddf2fc037bc95adb3b369e8866da8a71b6a67ebcfc4d7035ac4208309dc9e72 @@ -3526,7 +3526,7 @@ package: platform: linux-64 dependencies: libgcc: 14.2.0 - url: https://packages.prefix.dev/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_2.conda hash: md5: a2222a6ada71fb478682efe483ce0f92 sha256: fb7558c328b38b2f9d2e412c48da7890e7721ba018d733ebdfea57280df01904 @@ -3538,7 +3538,7 @@ package: platform: linux-64 dependencies: libgfortran5: 14.2.0 - url: https://packages.prefix.dev/conda-forge/linux-64/libgfortran-14.2.0-h69a702a_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-14.2.0-h69a702a_2.conda hash: md5: fb54c4ea68b460c278d26eea89cfbcc3 sha256: e05263e8960da03c341650f2a3ffa4ccae4e111cb198e8933a2908125459e5a6 @@ -3551,7 +3551,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14.2.0' - url: https://packages.prefix.dev/conda-forge/linux-64/libgfortran5-14.2.0-hf1ad2bd_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-14.2.0-hf1ad2bd_2.conda hash: md5: 556a4fdfac7287d349b8f09aba899693 sha256: c17b7cf3073a1f4e1f34d50872934fa326346e104d3c445abc1e62481ad6085c @@ -3563,7 +3563,7 @@ package: platform: win-64 dependencies: libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' - url: https://packages.prefix.dev/conda-forge/win-64/libgomp-14.2.0-h1383e82_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/libgomp-14.2.0-h1383e82_2.conda hash: md5: dd6b1ab49e28bcb6154cd131acec985b sha256: 674ec5f1bf319eac98d0d6ecb9c38e0192f3cf41969a5621d62a7e695e1aa9f3 @@ -3578,7 +3578,7 @@ package: libgcc: '>=13' libstdcxx: '>=13' libxml2: '>=2.13.4,<2.14.0a0' - url: https://packages.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 @@ -3594,7 +3594,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -3607,7 +3607,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://packages.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 @@ -3621,7 +3621,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -3633,7 +3633,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://packages.prefix.dev/conda-forge/linux-64/libjpeg-turbo-3.0.0-hd590300_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libjpeg-turbo-3.0.0-hd590300_1.conda hash: md5: ea25936bb4080d843790b586850f82b8 sha256: b954e09b7e49c2f2433d6f3bb73868eda5e378278b0f8c1dd10a7ef090e14f2f @@ -3647,7 +3647,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/libjpeg-turbo-3.0.0-hcfcfb64_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/libjpeg-turbo-3.0.0-hcfcfb64_1.conda hash: md5: 3f1b948619c45b1ca714d60c7389092c sha256: 4e7808e3098b4b4ed7e287f63bb24f9045cc4d95bfd39f0db870fc2837d74dff @@ -3659,7 +3659,7 @@ package: platform: linux-64 dependencies: libblas: 3.9.0 - url: https://packages.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 @@ -3671,7 +3671,7 @@ package: platform: win-64 dependencies: libblas: 3.9.0 - url: https://packages.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 @@ -3684,7 +3684,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://packages.prefix.dev/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_0.conda hash: md5: 0e87378639676987af32fee53ba32258 sha256: f4f21dfc54b08d462f707b771ecce3fa9bc702a2a05b55654f64154f48b141ef @@ -3698,7 +3698,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/liblzma-5.8.1-h2466b09_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/liblzma-5.8.1-h2466b09_0.conda hash: md5: 8d5cb0016b645d6688e2ff57c5d51302 sha256: 1477e9bff05318f3129d37be0e64c76cce0973c4b8c73d13a467d0b7f03d157c @@ -3716,7 +3716,7 @@ package: libstdcxx: '>=13' libzlib: '>=1.3.1,<2.0a0' openssl: '>=3.3.2,<4.0a0' - url: https://packages.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 @@ -3728,7 +3728,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://packages.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 @@ -3742,7 +3742,7 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' libzlib: '>=1.3.1,<2.0a0' - url: https://packages.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.47-h943b412_0.conda hash: md5: 55199e2ae2c3651f6f9b2a447b47bdc9 sha256: 23367d71da58c9a61c8cbd963fcffb92768d4ae5ffbef9a47cdf1f54f98c5c36 @@ -3757,7 +3757,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/libpng-1.6.47-had7236b_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/libpng-1.6.47-had7236b_0.conda hash: md5: 7d717163d9dab337c65f2bf21a676b8f sha256: cf8a594b697de103025dcae2c917ec9c100609caf7c917a94c64a683cb1db1ac @@ -3775,7 +3775,7 @@ package: libgfortran5: '>=13.3.0' liblzma: '>=5.6.3,<6.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://packages.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 @@ -3787,7 +3787,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://packages.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 @@ -3801,7 +3801,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -3815,7 +3815,7 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' libzlib: '>=1.3.1,<2.0a0' - url: https://packages.prefix.dev/conda-forge/linux-64/libsqlite-3.49.1-hee588c1_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.49.1-hee588c1_2.conda hash: md5: 962d6ac93c30b1dfc54c9cccafd1003e sha256: a086289bf75c33adc1daed3f1422024504ffb5c3c8b3285c49f025c29708ed16 @@ -3829,7 +3829,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/libsqlite-3.49.1-h67fdade_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.49.1-h67fdade_2.conda hash: md5: b58b66d4ad1aaf1c2543cbbd6afb1a59 sha256: c092d42d00fd85cf609cc58574ba2b03c141af5762283f36f5dd445ef7c0f4fe @@ -3844,7 +3844,7 @@ package: libgcc: '>=13' libzlib: '>=1.3.1,<2.0a0' openssl: '>=3.4.0,<4.0a0' - url: https://packages.prefix.dev/conda-forge/linux-64/libssh2-1.11.1-hf672d98_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.1-hf672d98_0.conda hash: md5: be2de152d8073ef1c01b7728475f2fe7 sha256: 0407ac9fda2bb67e11e357066eff144c845801d00b5f664efbc48813af1e7bb9 @@ -3860,7 +3860,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/libssh2-1.11.1-he619c9f_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/libssh2-1.11.1-he619c9f_0.conda hash: md5: af0cbf037dd614c34399b3b3e568c557 sha256: 4b3256bd2b4e4b3183005d3bd8826d651eccd1a4740b70625afa2b7e7123d191 @@ -3873,7 +3873,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: 14.2.0 - url: https://packages.prefix.dev/conda-forge/linux-64/libstdcxx-14.2.0-h8f9b012_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-14.2.0-h8f9b012_2.conda hash: md5: a78c856b6dc6bf4ea8daeb9beaaa3fb0 sha256: 8f5bd92e4a24e1d35ba015c5252e8f818898478cb3bc50bd8b12ab54707dc4da @@ -3885,7 +3885,7 @@ package: platform: linux-64 dependencies: libstdcxx: 14.2.0 - url: https://packages.prefix.dev/conda-forge/linux-64/libstdcxx-ng-14.2.0-h4852527_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-14.2.0-h4852527_2.conda hash: md5: c75da67f045c2627f59e6fcb5f4e3a9b sha256: e86f38b007cf97cc2c67cd519f2de12a313c4ee3f5ef11652ad08932a5e34189 @@ -3906,7 +3906,7 @@ package: libwebp-base: '>=1.4.0,<2.0a0' libzlib: '>=1.3.1,<2.0a0' zstd: '>=1.5.6,<1.6.0a0' - url: https://packages.prefix.dev/conda-forge/linux-64/libtiff-4.7.0-hd9ff511_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.7.0-hd9ff511_3.conda hash: md5: 0ea6510969e1296cc19966fad481f6de sha256: b224e16b88d76ea95e4af56e2bc638c603bd26a770b98d117d04541d3aafa002 @@ -3926,7 +3926,7 @@ package: vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' zstd: '>=1.5.6,<1.6.0a0' - url: https://packages.prefix.dev/conda-forge/win-64/libtiff-4.7.0-h797046b_3.conda + url: https://conda.anaconda.org/conda-forge/win-64/libtiff-4.7.0-h797046b_3.conda hash: md5: defed79ff7a9164ad40320e3f116a138 sha256: c363a8baba4ce12b8f01f0ab74fe8b0dc83facd89c6604f4a191084923682768 @@ -3938,7 +3938,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://packages.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 @@ -3951,7 +3951,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://packages.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 @@ -3965,7 +3965,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -3977,7 +3977,7 @@ package: platform: win-64 dependencies: ucrt: '' - url: https://packages.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 @@ -3993,7 +3993,7 @@ package: pthread-stubs: '' xorg-libxau: '>=1.0.11,<2.0a0' xorg-libxdmcp: '' - url: https://packages.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 @@ -4010,7 +4010,7 @@ package: ucrt: '>=10.0.20348.0' xorg-libxau: '>=1.0.11,<2.0a0' xorg-libxdmcp: '' - url: https://packages.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 @@ -4022,7 +4022,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://packages.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 @@ -4038,7 +4038,7 @@ package: libiconv: '>=1.18,<2.0a0' liblzma: '>=5.8.1,<6.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://packages.prefix.dev/conda-forge/linux-64/libxml2-2.13.7-h81593ed_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.13.7-h81593ed_1.conda hash: md5: 0619e8fc4c8025a908ea3a3422d3b775 sha256: c4f59563e017eba378ea843be5ebde4b0546c72bbe4c1e43b2b384379e827635 @@ -4054,7 +4054,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/libxml2-2.13.7-h442d1da_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/libxml2-2.13.7-h442d1da_1.conda hash: md5: c14ff7f05e57489df9244917d2b55763 sha256: 0a013527f784f4702dc18460070d8ec79d1ebb5087dd9e678d6afbeaca68d2ac @@ -4067,7 +4067,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://packages.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 @@ -4081,7 +4081,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -4094,7 +4094,7 @@ package: dependencies: python: '>=3.9' uc-micro-py: '' - url: https://packages.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 @@ -4107,36 +4107,36 @@ package: dependencies: python: '>=3.9' uc-micro-py: '' - url: https://packages.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.2 + version: 20.1.3 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://packages.prefix.dev/conda-forge/linux-64/llvm-openmp-20.1.2-h024ca30_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/llvm-openmp-20.1.3-h024ca30_0.conda hash: - md5: 39a3992c2624b8d8e6b4994dedf3102a - sha256: 2c70e18a5bcb3fc2925e5d2c2c39559253d19e38c111afc91885f0dee4540fb1 + md5: c721339ea8746513e42b1233b4bbdfb0 + sha256: 4327a463f43b0d95ca0e5f92094383ef53fd2a91d649debfc531b941fe44fd48 category: main optional: false - name: llvm-openmp - version: 20.1.2 + version: 20.1.3 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/llvm-openmp-20.1.2-h30eaf37_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/llvm-openmp-20.1.3-h30eaf37_0.conda hash: - md5: d5a4f53b65d7d1d53104ba24107eda04 - sha256: 3ba2b892d6e153599512fa7fe2791125ff1b7dd6740469f74aff2d1b48edf299 + md5: 183c102075722a7aa993f94de1d135f2 + sha256: 27326e733ce7ad87054a409c02b829594cc6276232b987eb135cd1a225eac669 category: main optional: false - name: locket @@ -4145,7 +4145,7 @@ package: platform: linux-64 dependencies: python: '>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*' - url: https://packages.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 @@ -4157,7 +4157,7 @@ package: platform: win-64 dependencies: python: '>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*' - url: https://packages.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 @@ -4171,7 +4171,7 @@ package: mdurl: '>=0.1,<1' python: '>=3.7' typing_extensions: '>=3.7.4' - url: https://packages.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 @@ -4185,7 +4185,7 @@ package: mdurl: '>=0.1,<1' python: '>=3.7' typing_extensions: '>=3.7.4' - url: https://packages.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 @@ -4200,7 +4200,7 @@ package: libgcc: '>=13' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://packages.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 @@ -4216,7 +4216,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -4243,7 +4243,7 @@ package: python-dateutil: '>=2.7' python_abi: 3.11.* tk: '>=8.6.13,<8.7.0a0' - url: https://packages.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 @@ -4270,7 +4270,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -4283,7 +4283,7 @@ package: dependencies: python: '>=3.9' traitlets: '' - url: https://packages.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 @@ -4296,7 +4296,7 @@ package: dependencies: python: '>=3.9' traitlets: '' - url: https://packages.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 @@ -4308,7 +4308,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -4320,7 +4320,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -4333,7 +4333,7 @@ package: dependencies: markdown-it-py: '>=1.0.0,<4.0.0' python: '>=3.9' - url: https://packages.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 @@ -4346,7 +4346,7 @@ package: dependencies: markdown-it-py: '>=1.0.0,<4.0.0' python: '>=3.9' - url: https://packages.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 @@ -4358,7 +4358,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -4370,7 +4370,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -4384,7 +4384,7 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' libstdcxx: '>=13' - url: https://packages.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 @@ -4395,9 +4395,9 @@ package: manager: conda platform: linux-64 dependencies: - python: '' + python: '>=3.9' typing_extensions: '' - url: https://packages.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 @@ -4408,9 +4408,9 @@ package: manager: conda platform: win-64 dependencies: - python: '' + python: '>=3.9' typing_extensions: '' - url: https://packages.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 @@ -4421,10 +4421,10 @@ package: manager: conda platform: linux-64 dependencies: - _openmp_mutex: '>=4.5' + _openmp_mutex: '*' llvm-openmp: '>=19.1.2' tbb: 2021.* - url: https://packages.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 @@ -4437,7 +4437,7 @@ package: dependencies: intel-openmp: 2024.* tbb: 2021.* - url: https://packages.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 @@ -4453,7 +4453,7 @@ package: libstdcxx: '>=13' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://packages.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.0-py311hd18a35c_0.conda hash: md5: 682f76920687f7d9283039eb542fdacf sha256: 9033fa7084cbfd10e1b7ed3b74cee17169a0731ec98244d05c372fc4a935d5c9 @@ -4469,7 +4469,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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.0-py311h3257749_0.conda hash: md5: 36562593204b081d0da8a8bfabfb278b sha256: 4e6a7979b434308ce5588970cb613952e3340bb2f9e63aaad7e5069ef1f08d1d @@ -4480,7 +4480,7 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://packages.prefix.dev/conda-forge/linux-64/mumps-include-5.7.3-h82cca05_9.conda + url: https://conda.anaconda.org/conda-forge/linux-64/mumps-include-5.7.3-h82cca05_9.conda hash: md5: 8207b975a176b5c08937bdeeeeecca20 sha256: bb41dda1084bc29c79bdb1da693295c5bc55da223fb74c4ef8487a81964cbf48 @@ -4501,7 +4501,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://packages.prefix.dev/conda-forge/linux-64/mumps-seq-5.7.3-hb5d91fa_9.conda + url: https://conda.anaconda.org/conda-forge/linux-64/mumps-seq-5.7.3-hb5d91fa_9.conda hash: md5: 33982046ecd8eed02447ddd7810aad37 sha256: 196b227df4635ce4294d40d885fa231d8d037839a95a1eee8923319985276bbe @@ -4518,7 +4518,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/mumps-seq-5.7.3-hbaa6519_9.conda + url: https://conda.anaconda.org/conda-forge/win-64/mumps-seq-5.7.3-hbaa6519_9.conda hash: md5: 3a30d32db33cc226f7a2c78d485b0503 sha256: 953c384a1b37b93bf7a2ee39b1c5763887f4d63ed220b65362103d6e6b4440a4 @@ -4530,7 +4530,7 @@ package: platform: linux-64 dependencies: python: '' - url: https://packages.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 hash: md5: 2ba8498c1018c1e9c61eb99b973dfe19 sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 @@ -4542,7 +4542,7 @@ package: platform: win-64 dependencies: python: '' - url: https://packages.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 hash: md5: 2ba8498c1018c1e9c61eb99b973dfe19 sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 @@ -4560,11 +4560,11 @@ package: myst-parser: '>=1.0.0' nbclient: '' nbformat: '>=5.0' - python: '' + python: '>=3.9' pyyaml: '' sphinx: '>=5' typing_extensions: '' - url: https://packages.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 @@ -4582,11 +4582,11 @@ package: myst-parser: '>=1.0.0' nbclient: '' nbformat: '>=5.0' - python: '' + python: '>=3.9' pyyaml: '' sphinx: '>=5' typing_extensions: '' - url: https://packages.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 @@ -4605,7 +4605,7 @@ package: pyyaml: '' sphinx: '>=5,<7' typing-extensions: '' - url: https://packages.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 @@ -4624,7 +4624,7 @@ package: pyyaml: '' sphinx: '>=5,<7' typing-extensions: '' - url: https://packages.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 @@ -4640,7 +4640,7 @@ package: nbformat: '>=5.1' python: '>=3.8' traitlets: '>=5.4' - url: https://packages.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 @@ -4656,7 +4656,7 @@ package: nbformat: '>=5.1' python: '>=3.8' traitlets: '>=5.4' - url: https://packages.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 @@ -4669,7 +4669,7 @@ package: dependencies: nbconvert-core: ==7.16.6 nbconvert-pandoc: ==7.16.6 - url: https://packages.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 @@ -4682,7 +4682,7 @@ package: dependencies: nbconvert-core: ==7.16.6 nbconvert-pandoc: ==7.16.6 - url: https://packages.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 @@ -4707,9 +4707,9 @@ package: packaging: '' pandocfilters: '>=1.4.1' pygments: '>=2.4.1' - python: '' + python: '>=3.9' traitlets: '>=5.1' - url: https://packages.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 @@ -4734,9 +4734,9 @@ package: packaging: '' pandocfilters: '>=1.4.1' pygments: '>=2.4.1' - python: '' + python: '>=3.9' traitlets: '>=5.1' - url: https://packages.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 @@ -4749,7 +4749,7 @@ package: dependencies: nbconvert-core: ==7.16.6 pandoc: '' - url: https://packages.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 @@ -4762,7 +4762,7 @@ package: dependencies: nbconvert-core: ==7.16.6 pandoc: '' - url: https://packages.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 @@ -4778,7 +4778,7 @@ package: python: '>=3.9' python-fastjsonschema: '>=2.15' traitlets: '>=5.1' - url: https://packages.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 @@ -4794,7 +4794,7 @@ package: python: '>=3.9' python-fastjsonschema: '>=2.15' traitlets: '>=5.1' - url: https://packages.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 @@ -4807,7 +4807,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://packages.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 @@ -4819,7 +4819,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -4831,7 +4831,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -4848,7 +4848,7 @@ package: notebook-shim: '>=0.2,<0.3' python: '>=3.9' tornado: '>=6.2.0' - url: https://packages.prefix.dev/conda-forge/noarch/notebook-7.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/notebook-7.4.0-pyhd8ed1ab_0.conda hash: md5: 7e82caa4495c513bcfb33a159e1222d4 sha256: d3f70987bc1e1a20b122726a49a24e5e6f09d00c9862bb399cd1682cd59a1e1e @@ -4865,7 +4865,7 @@ package: notebook-shim: '>=0.2,<0.3' python: '>=3.9' tornado: '>=6.2.0' - url: https://packages.prefix.dev/conda-forge/noarch/notebook-7.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/notebook-7.4.0-pyhd8ed1ab_0.conda hash: md5: 7e82caa4495c513bcfb33a159e1222d4 sha256: d3f70987bc1e1a20b122726a49a24e5e6f09d00c9862bb399cd1682cd59a1e1e @@ -4878,7 +4878,7 @@ package: dependencies: jupyter_server: '>=1.8,<3' python: '>=3.9' - url: https://packages.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 @@ -4891,7 +4891,7 @@ package: dependencies: jupyter_server: '>=1.8,<3' python: '>=3.9' - url: https://packages.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 @@ -4910,7 +4910,7 @@ package: numpy: '>=1.24' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://packages.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 @@ -4929,7 +4929,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -4947,7 +4947,7 @@ package: libstdcxx-ng: '>=12' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://packages.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 @@ -4966,7 +4966,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -4983,7 +4983,7 @@ package: libstdcxx: '>=13' libtiff: '>=4.7.0,<4.8.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://packages.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 @@ -5000,7 +5000,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -5014,7 +5014,7 @@ package: __glibc: '>=2.17,<3.0.a0' ca-certificates: '' libgcc: '>=13' - url: https://packages.prefix.dev/conda-forge/linux-64/openssl-3.5.0-h7b32b05_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.5.0-h7b32b05_0.conda hash: md5: bb539841f2a3fde210f387d00ed4bb9d sha256: 38285d280f84f1755b7c54baf17eccf2e3e696287954ce0adca16546b85ee62c @@ -5029,7 +5029,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/openssl-3.5.0-ha4e3fda_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/openssl-3.5.0-ha4e3fda_0.conda hash: md5: 4ea7db75035eb8c13fa680bb90171e08 sha256: 43dd7f56da142ca83c614c8b0085589650ae9032b351a901c190e48eefc73675 @@ -5042,7 +5042,7 @@ package: dependencies: python: '>=3.9' typing_utils: '' - url: https://packages.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 @@ -5055,34 +5055,34 @@ package: dependencies: python: '>=3.9' typing_utils: '' - url: https://packages.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 category: dev optional: true - name: packaging - version: '24.2' + version: '25.0' manager: conda platform: linux-64 dependencies: python: '>=3.8' - url: https://packages.prefix.dev/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda + url: https://conda.anaconda.org/conda-forge/noarch/packaging-25.0-pyhd8ed1ab_0.conda hash: - md5: 3bfed7e6228ebf2f7b9eaa47f1b4e2aa - sha256: da157b19bcd398b9804c5c52fc000fcb8ab0525bdb9c70f95beaa0bb42f85af1 + md5: 4088c0d078e2f5092ddf824495186229 + sha256: f759df4f492ae481505dcceb3d4485a120ee798af26711c92de20944a1185621 category: main optional: false - name: packaging - version: '24.2' + version: '25.0' manager: conda platform: win-64 dependencies: python: '>=3.8' - url: https://packages.prefix.dev/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda + url: https://conda.anaconda.org/conda-forge/noarch/packaging-25.0-pyhd8ed1ab_0.conda hash: - md5: 3bfed7e6228ebf2f7b9eaa47f1b4e2aa - sha256: da157b19bcd398b9804c5c52fc000fcb8ab0525bdb9c70f95beaa0bb42f85af1 + md5: 4088c0d078e2f5092ddf824495186229 + sha256: f759df4f492ae481505dcceb3d4485a120ee798af26711c92de20944a1185621 category: main optional: false - name: pandas @@ -5099,7 +5099,7 @@ package: python-tzdata: '>=2022.7' python_abi: 3.11.* pytz: '>=2020.1' - url: https://packages.prefix.dev/conda-forge/linux-64/pandas-2.2.3-py311h7db5c69_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/pandas-2.2.3-py311h7db5c69_3.conda hash: md5: c9f8fe78840d5c04e61666474bd739b2 sha256: 98cd49bfc4b803d950f9dbc4799793903aec1eaacd388c244a0b46d644159831 @@ -5119,7 +5119,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/pandas-2.2.3-py311hcf9f919_3.conda + url: https://conda.anaconda.org/conda-forge/win-64/pandas-2.2.3-py311hcf9f919_3.conda hash: md5: 84c8b4aab176baefd352cd34f7e69469 sha256: 7aabb8d23a6817844a7f1b402e7e147e341cade5f470a908b8239f969c7b681c @@ -5130,7 +5130,7 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://packages.prefix.dev/conda-forge/linux-64/pandoc-3.6.4-ha770c72_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/pandoc-3.6.4-ha770c72_0.conda hash: md5: 53f2cd4128fa7053bb029bbeafbe3f2e sha256: 16cbcab8a6d9a0cef47b9d3ebeced8a1a75ee54d379649e6260a333d1b2f743c @@ -5141,7 +5141,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://packages.prefix.dev/conda-forge/win-64/pandoc-3.6.4-h57928b3_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/pandoc-3.6.4-h57928b3_0.conda hash: md5: dac005a8550579541a6b0b6a8f8c6ddc sha256: 02ab6b0c12596f5d8481f546a1fef6cd4e3a52ec59bc32c0fa3708106e30972e @@ -5153,7 +5153,7 @@ package: platform: linux-64 dependencies: python: '!=3.0,!=3.1,!=3.2,!=3.3' - url: https://packages.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 @@ -5165,7 +5165,7 @@ package: platform: win-64 dependencies: python: '!=3.0,!=3.1,!=3.2,!=3.3' - url: https://packages.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 @@ -5177,7 +5177,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -5189,7 +5189,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -5203,7 +5203,7 @@ package: locket: '' python: '>=3.9' toolz: '' - url: https://packages.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 @@ -5217,7 +5217,7 @@ package: locket: '' python: '>=3.9' toolz: '' - url: https://packages.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 @@ -5230,7 +5230,7 @@ package: dependencies: ptyprocess: '>=0.5' python: '>=3.9' - url: https://packages.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 @@ -5242,7 +5242,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -5254,7 +5254,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -5277,7 +5277,7 @@ package: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* tk: '>=8.6.13,<8.7.0a0' - url: https://packages.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 @@ -5302,7 +5302,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -5316,7 +5316,7 @@ package: python: '>=3.9,<3.13.0a0' setuptools: '' wheel: '' - url: https://packages.prefix.dev/conda-forge/noarch/pip-25.0.1-pyh8b19718_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pip-25.0.1-pyh8b19718_0.conda hash: md5: 79b5c1440aedc5010f687048d9103628 sha256: 585940f09d87787f79f73ff5dff8eb2af8a67e5bec5eebf2f553cd26c840ba69 @@ -5330,7 +5330,7 @@ package: python: '>=3.9,<3.13.0a0' setuptools: '' wheel: '' - url: https://packages.prefix.dev/conda-forge/noarch/pip-25.0.1-pyh8b19718_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pip-25.0.1-pyh8b19718_0.conda hash: md5: 79b5c1440aedc5010f687048d9103628 sha256: 585940f09d87787f79f73ff5dff8eb2af8a67e5bec5eebf2f553cd26c840ba69 @@ -5342,7 +5342,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -5354,7 +5354,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -5365,8 +5365,8 @@ package: manager: conda platform: linux-64 dependencies: - python: '' - url: https://packages.prefix.dev/conda-forge/noarch/platformdirs-4.3.7-pyh29332c3_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.7-pyh29332c3_0.conda hash: md5: e57da6fe54bb3a5556cf36d199ff07d8 sha256: ae7d3e58224d53d6b59e1f5ac5809803bb1972f0ac4fb10cd9b8c87d4122d3e0 @@ -5377,8 +5377,8 @@ package: manager: conda platform: win-64 dependencies: - python: '' - url: https://packages.prefix.dev/conda-forge/noarch/platformdirs-4.3.7-pyh29332c3_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.7-pyh29332c3_0.conda hash: md5: e57da6fe54bb3a5556cf36d199ff07d8 sha256: ae7d3e58224d53d6b59e1f5ac5809803bb1972f0ac4fb10cd9b8c87d4122d3e0 @@ -5390,7 +5390,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_1.conda hash: md5: e9dcbce5f45f9ee500e728ae58b605b6 sha256: 122433fc5318816b8c69283aaf267c73d87aa2d09ce39f64c9805c9a3b264819 @@ -5402,7 +5402,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_1.conda hash: md5: e9dcbce5f45f9ee500e728ae58b605b6 sha256: 122433fc5318816b8c69283aaf267c73d87aa2d09ce39f64c9805c9a3b264819 @@ -5414,7 +5414,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/prometheus_client-0.21.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.21.1-pyhd8ed1ab_0.conda hash: md5: 3e01e386307acc60b2f89af0b2e161aa sha256: bc8f00d5155deb7b47702cb8370f233935704100dbc23e30747c161d1b6cf3ab @@ -5426,7 +5426,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/prometheus_client-0.21.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.21.1-pyhd8ed1ab_0.conda hash: md5: 3e01e386307acc60b2f89af0b2e161aa sha256: bc8f00d5155deb7b47702cb8370f233935704100dbc23e30747c161d1b6cf3ab @@ -5439,7 +5439,7 @@ package: dependencies: python: '>=3.9' wcwidth: '' - url: https://packages.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 @@ -5452,7 +5452,7 @@ package: dependencies: python: '>=3.9' wcwidth: '' - url: https://packages.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 @@ -5467,7 +5467,7 @@ package: libgcc: '>=13' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://packages.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 @@ -5483,7 +5483,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -5496,7 +5496,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://packages.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 @@ -5510,7 +5510,7 @@ package: libgcc: '>=13' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' ucrt: '>=10.0.20348.0' - url: https://packages.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 @@ -5522,7 +5522,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -5534,7 +5534,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -5546,7 +5546,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 +5562,7 @@ package: pyyaml: '>=3.01' setuptools: '' six: '' - url: https://packages.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 @@ -5578,7 +5578,7 @@ package: pyyaml: '>=3.01' setuptools: '' six: '' - url: https://packages.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 +5594,7 @@ package: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* setuptools: '' - url: https://packages.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 @@ -5610,7 +5610,7 @@ package: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* setuptools: '' - url: https://packages.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 @@ -5621,8 +5621,8 @@ package: manager: conda platform: linux-64 dependencies: - python: '' - url: https://packages.prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda hash: md5: 12c566707c80111f9799308d9e265aef sha256: 79db7928d13fab2d892592223d7570f5061c192f27b9febd1a418427b719acc6 @@ -5633,8 +5633,8 @@ package: manager: conda platform: win-64 dependencies: - python: '' - url: https://packages.prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda hash: md5: 12c566707c80111f9799308d9e265aef sha256: 79db7928d13fab2d892592223d7570f5061c192f27b9febd1a418427b719acc6 @@ -5651,7 +5651,7 @@ package: typing-extensions: '>=4.6.1' typing-inspection: '>=0.4.0' typing_extensions: '>=4.12.2' - url: https://packages.prefix.dev/conda-forge/noarch/pydantic-2.11.3-pyh3cfb1c2_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.11.3-pyh3cfb1c2_0.conda hash: md5: 3c6f7f8ae9b9c177ad91ccc187912756 sha256: 89183785b09ebe9f9e65710057d7c41e9d21d4a9ad05e068850e18669655d5a8 @@ -5668,7 +5668,7 @@ package: typing-extensions: '>=4.6.1' typing-inspection: '>=0.4.0' typing_extensions: '>=4.12.2' - url: https://packages.prefix.dev/conda-forge/noarch/pydantic-2.11.3-pyh3cfb1c2_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.11.3-pyh3cfb1c2_0.conda hash: md5: 3c6f7f8ae9b9c177ad91ccc187912756 sha256: 89183785b09ebe9f9e65710057d7c41e9d21d4a9ad05e068850e18669655d5a8 @@ -5684,7 +5684,7 @@ package: python: '' python_abi: 3.11.* typing-extensions: '>=4.6.0,!=4.7.0' - url: https://packages.prefix.dev/conda-forge/linux-64/pydantic-core-2.33.1-py311h687327b_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/pydantic-core-2.33.1-py311h687327b_0.conda hash: md5: 778b623dbbec0be25624b5ebd405a0a8 sha256: f293f7f2d0fe11c8334b3671944b310c13c1552dbe25ea93043d09bede814cd5 @@ -5701,7 +5701,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/pydantic-core-2.33.1-py311ha250665_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/pydantic-core-2.33.1-py311ha250665_0.conda hash: md5: 549cc2f2754ba510f7616af5c5b8aff6 sha256: bdbfb2e0a7e9f37071d1619dd9af33668bb47ba8f0117846742a5a7de3184bff @@ -5721,7 +5721,7 @@ package: python: '>=3.9' sphinx: '>=5.0' typing_extensions: '' - url: https://packages.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 @@ -5741,7 +5741,7 @@ package: python: '>=3.9' sphinx: '>=5.0' typing_extensions: '' - url: https://packages.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 @@ -5759,7 +5759,7 @@ package: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* scipy: '>=0.13' - url: https://packages.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 @@ -5778,7 +5778,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -5790,7 +5790,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -5802,7 +5802,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -5819,11 +5819,11 @@ package: isort: '>=4.2.5,<7,!=5.13.0' mccabe: '>=0.6,<0.8' platformdirs: '>=2.2.0' - python: '' + python: '>=3.9' tomli: '>=1.1.0' tomlkit: '>=0.10.1' typing_extensions: '>=3.10.0' - url: https://packages.prefix.dev/conda-forge/noarch/pylint-3.3.6-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pylint-3.3.6-pyh29332c3_0.conda hash: md5: 8242cc62822cc8a17f53d24d4efa75f4 sha256: 3e3e35b2cbb4b1ca3063fc2d6f44a85ac189e0935f00ed8fbe8e4713c0d00b99 @@ -5840,11 +5840,11 @@ package: isort: '>=4.2.5,<7,!=5.13.0' mccabe: '>=0.6,<0.8' platformdirs: '>=2.2.0' - python: '' + python: '>=3.9' tomli: '>=1.1.0' tomlkit: '>=0.10.1' typing_extensions: '>=3.10.0' - url: https://packages.prefix.dev/conda-forge/noarch/pylint-3.3.6-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pylint-3.3.6-pyh29332c3_0.conda hash: md5: 8242cc62822cc8a17f53d24d4efa75f4 sha256: 3e3e35b2cbb4b1ca3063fc2d6f44a85ac189e0935f00ed8fbe8e4713c0d00b99 @@ -5860,7 +5860,7 @@ package: pydiso: '>=0.1' python: '>=3.10' scipy: '>=1.8' - url: https://packages.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 @@ -5876,7 +5876,7 @@ package: pydiso: '>=0.1' python: '>=3.10' scipy: '>=1.8' - url: https://packages.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 @@ -5888,7 +5888,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -5900,7 +5900,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -5913,7 +5913,7 @@ package: dependencies: __unix: '' python: '>=3.9' - url: https://packages.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 @@ -5927,7 +5927,7 @@ package: __win: '' python: '>=3.9' win_inet_pton: '' - url: https://packages.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 @@ -5945,7 +5945,7 @@ package: pluggy: <2,>=1.5 python: '>=3.9' tomli: '>=1' - url: https://packages.prefix.dev/conda-forge/noarch/pytest-8.3.5-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pytest-8.3.5-pyhd8ed1ab_0.conda hash: md5: c3c9316209dec74a705a36797970c6be sha256: 963524de7340c56615583ba7b97a6beb20d5c56a59defb59724dc2a3105169c9 @@ -5963,7 +5963,7 @@ package: pluggy: <2,>=1.5 python: '>=3.9' tomli: '>=1' - url: https://packages.prefix.dev/conda-forge/noarch/pytest-8.3.5-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pytest-8.3.5-pyhd8ed1ab_0.conda hash: md5: c3c9316209dec74a705a36797970c6be sha256: 963524de7340c56615583ba7b97a6beb20d5c56a59defb59724dc2a3105169c9 @@ -5978,7 +5978,7 @@ package: pytest: '>=4.6' python: '>=3.9' toml: '' - url: https://packages.prefix.dev/conda-forge/noarch/pytest-cov-6.1.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pytest-cov-6.1.1-pyhd8ed1ab_0.conda hash: md5: 1e35d8f975bc0e984a19819aa91c440a sha256: 9961a1524f63d10bc29efdc52013ec06b0e95fb2619a250e250ff3618261d5cd @@ -5993,7 +5993,7 @@ package: pytest: '>=4.6' python: '>=3.9' toml: '' - url: https://packages.prefix.dev/conda-forge/noarch/pytest-cov-6.1.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pytest-cov-6.1.1-pyhd8ed1ab_0.conda hash: md5: 1e35d8f975bc0e984a19819aa91c440a sha256: 9961a1524f63d10bc29efdc52013ec06b0e95fb2619a250e250ff3618261d5cd @@ -6022,7 +6022,7 @@ package: readline: '>=8.2,<9.0a0' tk: '>=8.6.13,<8.7.0a0' tzdata: '' - url: https://packages.prefix.dev/conda-forge/linux-64/python-3.11.12-h9e4cc4f_0_cpython.conda + url: https://conda.anaconda.org/conda-forge/linux-64/python-3.11.12-h9e4cc4f_0_cpython.conda hash: md5: b61d4fbf583b8393d9d00ec106ad3658 sha256: 028a03968eb101a681fa4966b2c52e93c8db1e934861f8d108224f51ba2c1bc9 @@ -6046,7 +6046,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/python-3.11.12-h3f84c4b_0_cpython.conda + url: https://conda.anaconda.org/conda-forge/win-64/python-3.11.12-h3f84c4b_0_cpython.conda hash: md5: c1f91331274f591340e2f50e737dfbe9 sha256: 41e1c07eecff9436b9bb27724822229b2da6073af8461ede6c81b508c0677c56 @@ -6059,7 +6059,7 @@ package: dependencies: python: '>=3.9' six: '>=1.5' - url: https://packages.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 @@ -6072,7 +6072,7 @@ package: dependencies: python: '>=3.9' six: '>=1.5' - url: https://packages.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 @@ -6084,7 +6084,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -6096,7 +6096,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -6108,7 +6108,7 @@ package: platform: linux-64 dependencies: python: '>=3.6' - url: https://packages.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 @@ -6120,7 +6120,7 @@ package: platform: win-64 dependencies: python: '>=3.6' - url: https://packages.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 +6138,7 @@ package: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* scipy: '>=1.8' - url: https://packages.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 @@ -6157,7 +6157,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -6169,7 +6169,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -6181,7 +6181,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -6192,7 +6192,7 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://packages.prefix.dev/conda-forge/linux-64/python_abi-3.11-6_cp311.conda + url: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.11-6_cp311.conda hash: md5: 37ec65e056b9964529c0e1e2697b9955 sha256: 2ff22fffe5bb93802c1687b5c4a34b9062394b78f23cfb5c1c1ef9b635bb030e @@ -6203,7 +6203,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://packages.prefix.dev/conda-forge/win-64/python_abi-3.11-6_cp311.conda + url: https://conda.anaconda.org/conda-forge/win-64/python_abi-3.11-6_cp311.conda hash: md5: 0cdb3079c532b4d216bc9efacd510138 sha256: 82b09808cc4f80212be7539d542d5853e0aaa593bc715f02b831c0ea0552b8bf @@ -6215,7 +6215,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -6227,7 +6227,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -6243,7 +6243,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -6260,7 +6260,7 @@ package: vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' winpty: '' - url: https://packages.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 @@ -6276,7 +6276,7 @@ package: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* yaml: '>=0.2.5,<0.3.0a0' - url: https://packages.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 @@ -6293,7 +6293,7 @@ package: vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' yaml: '>=0.2.5,<0.3.0a0' - url: https://packages.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 @@ -6311,7 +6311,7 @@ package: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* zeromq: '>=4.3.5,<4.4.0a0' - url: https://packages.prefix.dev/conda-forge/linux-64/pyzmq-26.4.0-py311h7deb3e3_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/pyzmq-26.4.0-py311h7deb3e3_0.conda hash: md5: eb719a63f26215bba3ee5b0227c6452b sha256: e78fc8c500b96070359311082b4ebc5d66e52ddb2891861c728a247cf52892ba @@ -6329,7 +6329,7 @@ package: vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' zeromq: '>=4.3.5,<4.3.6.0a0' - url: https://packages.prefix.dev/conda-forge/win-64/pyzmq-26.4.0-py311h484c95c_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/pyzmq-26.4.0-py311h484c95c_0.conda hash: md5: 0497becb33761fca9b8cfcb9f7278361 sha256: d917b120cb10b32d90d40fc2b6a612cf75a9298d159e11da3a8672a3474b4f93 @@ -6342,7 +6342,7 @@ package: dependencies: libgcc: '>=13' ncurses: '>=6.5,<7.0a0' - url: https://packages.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 @@ -6357,7 +6357,7 @@ package: packaging: '' python: '>=3.9' requests: '' - url: https://packages.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 @@ -6372,7 +6372,7 @@ package: packaging: '' python: '>=3.9' requests: '' - url: https://packages.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 @@ -6384,10 +6384,10 @@ package: platform: linux-64 dependencies: attrs: '>=22.2.0' - python: '' + python: '>=3.9' rpds-py: '>=0.7.0' typing_extensions: '>=4.4.0' - url: https://packages.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 @@ -6399,10 +6399,10 @@ package: platform: win-64 dependencies: attrs: '>=22.2.0' - python: '' + python: '>=3.9' rpds-py: '>=0.7.0' typing_extensions: '>=4.4.0' - url: https://packages.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 @@ -6418,7 +6418,7 @@ package: idna: '>=2.5,<4' python: '>=3.9' urllib3: '>=1.21.1,<3' - url: https://packages.prefix.dev/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda hash: md5: a9b9368f3701a417eac9edbcae7cb737 sha256: d701ca1136197aa121bbbe0e8c18db6b5c94acbd041c2b43c70e5ae104e1d8ad @@ -6434,7 +6434,7 @@ package: idna: '>=2.5,<4' python: '>=3.9' urllib3: '>=1.21.1,<3' - url: https://packages.prefix.dev/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda hash: md5: a9b9368f3701a417eac9edbcae7cb737 sha256: d701ca1136197aa121bbbe0e8c18db6b5c94acbd041c2b43c70e5ae104e1d8ad @@ -6447,7 +6447,7 @@ package: dependencies: python: '>=3.9' six: '' - url: https://packages.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 @@ -6460,7 +6460,7 @@ package: dependencies: python: '>=3.9' six: '' - url: https://packages.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 @@ -6472,7 +6472,7 @@ package: platform: linux-64 dependencies: python: '' - url: https://packages.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 @@ -6484,7 +6484,7 @@ package: platform: win-64 dependencies: python: '' - url: https://packages.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 @@ -6499,7 +6499,7 @@ package: libgcc: '>=13' python: '' python_abi: 3.11.* - url: https://packages.prefix.dev/conda-forge/linux-64/rpds-py-0.24.0-py311h687327b_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/rpds-py-0.24.0-py311h687327b_0.conda hash: md5: e2fc6063859ff5fd62f983c31e4bf521 sha256: a45aec5ad66dc54884bc782ac590cd26e00f738bfcf4f55b4d63c8ca22915a30 @@ -6515,7 +6515,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/rpds-py-0.24.0-py311ha250665_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/rpds-py-0.24.0-py311ha250665_0.conda hash: md5: 1f1ad2bacdff1d370c13be99709130da sha256: 83bcac24bf63b83d3b9560c448f8e353cc427b39ede10d6b8e2bf829866d654f @@ -6535,7 +6535,7 @@ package: python_abi: 3.11.* scipy: '' threadpoolctl: '>=2.0.0' - url: https://packages.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 @@ -6555,7 +6555,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -6574,10 +6574,10 @@ package: libgfortran5: '>=13.3.0' liblapack: '>=3.9.0,<4.0a0' libstdcxx: '>=13' - numpy: '>=1.23.5' + numpy: <2.3 python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://packages.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 @@ -6591,13 +6591,13 @@ package: libblas: '>=3.9.0,<4.0a0' libcblas: '>=3.9.0,<4.0a0' liblapack: '>=3.9.0,<4.0a0' - numpy: '>=1.23.5' + numpy: <2.3 python: '>=3.11,<3.12.0a0' python_abi: 3.11.* ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -6610,7 +6610,7 @@ package: dependencies: __linux: '' python: '>=3.9' - url: https://packages.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 @@ -6624,7 +6624,7 @@ package: __win: '' python: '>=3.9' pywin32: '' - url: https://packages.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 @@ -6636,7 +6636,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/setuptools-78.1.0-pyhff2d567_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/setuptools-78.1.0-pyhff2d567_0.conda hash: md5: a42da9837e46c53494df0044c3eb1f53 sha256: d4c74d2140f2fbc72fe5320cbd65f3fd1d1f7832ab4d7825c37c38ab82440ae2 @@ -6648,7 +6648,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/setuptools-78.1.0-pyhff2d567_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/setuptools-78.1.0-pyhff2d567_0.conda hash: md5: a42da9837e46c53494df0044c3eb1f53 sha256: d4c74d2140f2fbc72fe5320cbd65f3fd1d1f7832ab4d7825c37c38ab82440ae2 @@ -6660,7 +6660,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -6672,7 +6672,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -6684,7 +6684,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -6696,7 +6696,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -6708,7 +6708,7 @@ package: platform: linux-64 dependencies: python: '>=2' - url: https://packages.prefix.dev/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 4d22a9315e78c6827f806065957d566e sha256: a0fd916633252d99efb6223b1050202841fa8d2d53dacca564b0ed77249d3228 @@ -6720,7 +6720,7 @@ package: platform: win-64 dependencies: python: '>=2' - url: https://packages.prefix.dev/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 4d22a9315e78c6827f806065957d566e sha256: a0fd916633252d99efb6223b1050202841fa8d2d53dacca564b0ed77249d3228 @@ -6732,7 +6732,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -6744,7 +6744,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -6756,7 +6756,7 @@ package: platform: linux-64 dependencies: python: '>=3.8' - url: https://packages.prefix.dev/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda hash: md5: 3f144b2c34f8cb5a9abd9ed23a39c561 sha256: 54ae221033db8fbcd4998ccb07f3c3828b4d77e73b0c72b18c1d6a507059059c @@ -6768,7 +6768,7 @@ package: platform: win-64 dependencies: python: '>=3.8' - url: https://packages.prefix.dev/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda hash: md5: 3f144b2c34f8cb5a9abd9ed23a39c561 sha256: 54ae221033db8fbcd4998ccb07f3c3828b4d77e73b0c72b18c1d6a507059059c @@ -6797,7 +6797,7 @@ package: sphinxcontrib-jsmath: '' sphinxcontrib-qthelp: '' sphinxcontrib-serializinghtml: '>=1.1.5' - url: https://packages.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 @@ -6826,7 +6826,7 @@ package: sphinxcontrib-jsmath: '' sphinxcontrib-qthelp: '' sphinxcontrib-serializinghtml: '>=1.1.5' - url: https://packages.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 @@ -6840,7 +6840,7 @@ package: pydata-sphinx-theme: '>=0.15.2' python: '>=3.9' sphinx: '>=5' - url: https://packages.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 @@ -6854,7 +6854,7 @@ package: pydata-sphinx-theme: '>=0.15.2' python: '>=3.9' sphinx: '>=5' - url: https://packages.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 @@ -6867,7 +6867,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=1.8' - url: https://packages.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 @@ -6880,7 +6880,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=1.8' - url: https://packages.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 @@ -6893,7 +6893,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=1.8' - url: https://packages.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 @@ -6906,7 +6906,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=1.8' - url: https://packages.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 @@ -6919,7 +6919,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5,<8' - url: https://packages.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 @@ -6932,7 +6932,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5,<8' - url: https://packages.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 @@ -6947,7 +6947,7 @@ package: python: '>=3.9' pyyaml: '' sphinx: '>=5' - url: https://packages.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 @@ -6962,7 +6962,7 @@ package: python: '>=3.9' pyyaml: '' sphinx: '>=5' - url: https://packages.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 @@ -6976,7 +6976,7 @@ package: packaging: '' python: '>=3.9' sphinx: '>=5' - url: https://packages.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 @@ -6990,7 +6990,7 @@ package: packaging: '' python: '>=3.9' sphinx: '>=5' - url: https://packages.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 @@ -7003,7 +7003,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=3' - url: https://packages.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 @@ -7016,7 +7016,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=3' - url: https://packages.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 @@ -7029,7 +7029,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=4' - url: https://packages.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 @@ -7042,7 +7042,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=4' - url: https://packages.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 @@ -7056,7 +7056,7 @@ package: docutils: '' python: '>=3.6' sphinx: '' - url: https://packages.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 @@ -7070,7 +7070,7 @@ package: docutils: '' python: '>=3.6' sphinx: '' - url: https://packages.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 @@ -7083,7 +7083,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://packages.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 @@ -7096,7 +7096,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://packages.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 +7114,7 @@ package: pybtex-docutils: '>=1' python: '>=3.6' sphinx: '>=2.1' - url: https://packages.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 @@ -7132,7 +7132,7 @@ package: pybtex-docutils: '>=1' python: '>=3.6' sphinx: '>=2.1' - url: https://packages.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 @@ -7145,7 +7145,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://packages.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 @@ -7158,7 +7158,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://packages.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 @@ -7171,7 +7171,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://packages.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 @@ -7184,7 +7184,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://packages.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 @@ -7196,7 +7196,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7208,7 +7208,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7221,7 +7221,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://packages.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 @@ -7234,7 +7234,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://packages.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 @@ -7247,7 +7247,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://packages.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 @@ -7260,7 +7260,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://packages.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 @@ -7277,7 +7277,7 @@ package: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* typing-extensions: '>=4.6.0' - url: https://packages.prefix.dev/conda-forge/linux-64/sqlalchemy-2.0.40-py311h9ecbd09_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/sqlalchemy-2.0.40-py311h9ecbd09_0.conda hash: md5: 2e0d3c5a4afb139b23a68a23a2980851 sha256: 61fd16afea0e24b99b05ee40593edcc966dad436a4ab35b62b4665a3f6bd32f6 @@ -7295,7 +7295,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/sqlalchemy-2.0.40-py311he736701_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/sqlalchemy-2.0.40-py311he736701_0.conda hash: md5: 6dd7c29db6d076ce90c7b62d7f4fb5af sha256: 6a58a12572600a723a108f3c4974edfdbe63a01dbed186a30c8044a3f8193741 @@ -7310,7 +7310,7 @@ package: executing: '' pure_eval: '' python: '>=3.9' - url: https://packages.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 @@ -7325,7 +7325,7 @@ package: executing: '' pure_eval: '' python: '>=3.9' - url: https://packages.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 @@ -7337,7 +7337,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7349,7 +7349,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7364,7 +7364,7 @@ package: libgcc: '>=13' libhwloc: '>=2.11.2,<2.11.3.0a0' libstdcxx: '>=13' - url: https://packages.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 @@ -7379,7 +7379,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -7391,7 +7391,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7403,7 +7403,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7418,7 +7418,7 @@ package: ptyprocess: '' python: '>=3.8' tornado: '>=6.1.0' - url: https://packages.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 @@ -7433,7 +7433,7 @@ package: python: '>=3.8' pywinpty: '>=1.1.0' tornado: '>=6.1.0' - url: https://packages.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 @@ -7445,7 +7445,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7457,7 +7457,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7470,7 +7470,7 @@ package: dependencies: python: '>=3.5' webencodings: '>=0.4' - url: https://packages.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 @@ -7483,7 +7483,7 @@ package: dependencies: python: '>=3.5' webencodings: '>=0.4' - url: https://packages.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 @@ -7496,7 +7496,7 @@ package: dependencies: libgcc-ng: '>=12' libzlib: '>=1.2.13,<2.0.0a0' - url: https://packages.prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda + url: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda hash: md5: d453b98d9c83e71da0741bb0ff4d76bc sha256: e0569c9caa68bf476bead1bed3d79650bb080b532c64a4af7d8ca286c08dea4e @@ -7510,7 +7510,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/tk-8.6.13-h5226925_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-h5226925_1.conda hash: md5: fc048363eb8f03cd1737600a5d08aafe sha256: 2c4e914f521ccb2718946645108c9bd3fc3216ba69aea20c2c3cedbd8db32bb1 @@ -7522,7 +7522,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7534,7 +7534,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7546,7 +7546,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7558,7 +7558,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7570,7 +7570,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/tomlkit-0.13.2-pyha770c72_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.13.2-pyha770c72_1.conda hash: md5: 1d9ab4fc875c52db83f9c9b40af4e2c8 sha256: 986fae65f5568e95dbf858d08d77a0f9cca031345a98550f1d4b51d36d8811e2 @@ -7582,7 +7582,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/tomlkit-0.13.2-pyha770c72_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.13.2-pyha770c72_1.conda hash: md5: 1d9ab4fc875c52db83f9c9b40af4e2c8 sha256: 986fae65f5568e95dbf858d08d77a0f9cca031345a98550f1d4b51d36d8811e2 @@ -7594,7 +7594,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7606,7 +7606,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7621,7 +7621,7 @@ package: libgcc: '>=13' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://packages.prefix.dev/conda-forge/linux-64/tornado-6.4.2-py311h9ecbd09_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/tornado-6.4.2-py311h9ecbd09_0.conda hash: md5: df3aee9c3e44489257a840b8354e77b9 sha256: afa3489113154b5cb0724b0bf120b62df91f426dabfe5d02f2ba09e90d346b28 @@ -7637,7 +7637,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/tornado-6.4.2-py311he736701_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/tornado-6.4.2-py311he736701_0.conda hash: md5: 7e33077ce1bc0bf45c45a92e37432f16 sha256: 7e313f1724e5eb7d13f7a1ebd6026a378f3f58a638ba7cdc3bd452c01323bb29 @@ -7650,7 +7650,7 @@ package: dependencies: colorama: '' python: '>=3.9' - url: https://packages.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 @@ -7663,7 +7663,7 @@ package: dependencies: colorama: '' python: '>=3.9' - url: https://packages.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 @@ -7675,7 +7675,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7687,7 +7687,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7699,7 +7699,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/types-python-dateutil-2.9.0.20241206-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/types-python-dateutil-2.9.0.20241206-pyhd8ed1ab_0.conda hash: md5: 1dbc4a115e2ad9fb7f9d5b68397f66f9 sha256: 8b98cd9464837174ab58aaa912fc95d5831879864676650a383994033533b8d1 @@ -7711,7 +7711,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/types-python-dateutil-2.9.0.20241206-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/types-python-dateutil-2.9.0.20241206-pyhd8ed1ab_0.conda hash: md5: 1dbc4a115e2ad9fb7f9d5b68397f66f9 sha256: 8b98cd9464837174ab58aaa912fc95d5831879864676650a383994033533b8d1 @@ -7723,7 +7723,7 @@ package: platform: linux-64 dependencies: typing_extensions: ==4.13.2 - url: https://packages.prefix.dev/conda-forge/noarch/typing-extensions-4.13.2-h0e9735f_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.13.2-h0e9735f_0.conda hash: md5: 568ed1300869dca0ba09fb750cda5dbb sha256: 4865fce0897d3cb0ffc8998219157a8325f6011c136e6fd740a9a6b169419296 @@ -7735,7 +7735,7 @@ package: platform: win-64 dependencies: typing_extensions: ==4.13.2 - url: https://packages.prefix.dev/conda-forge/noarch/typing-extensions-4.13.2-h0e9735f_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.13.2-h0e9735f_0.conda hash: md5: 568ed1300869dca0ba09fb750cda5dbb sha256: 4865fce0897d3cb0ffc8998219157a8325f6011c136e6fd740a9a6b169419296 @@ -7748,7 +7748,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '>=4.12.0' - url: https://packages.prefix.dev/conda-forge/noarch/typing-inspection-0.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/typing-inspection-0.4.0-pyhd8ed1ab_0.conda hash: md5: c5c76894b6b7bacc888ba25753bc8677 sha256: 172f971d70e1dbb978f6061d3f72be463d0f629155338603450d8ffe87cbf89d @@ -7761,7 +7761,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '>=4.12.0' - url: https://packages.prefix.dev/conda-forge/noarch/typing-inspection-0.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/typing-inspection-0.4.0-pyhd8ed1ab_0.conda hash: md5: c5c76894b6b7bacc888ba25753bc8677 sha256: 172f971d70e1dbb978f6061d3f72be463d0f629155338603450d8ffe87cbf89d @@ -7772,8 +7772,8 @@ package: manager: conda platform: linux-64 dependencies: - python: '' - url: https://packages.prefix.dev/conda-forge/noarch/typing_extensions-4.13.2-pyh29332c3_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.13.2-pyh29332c3_0.conda hash: md5: 83fc6ae00127671e301c9f44254c31b8 sha256: a8aaf351e6461de0d5d47e4911257e25eec2fa409d71f3b643bb2f748bde1c08 @@ -7784,8 +7784,8 @@ package: manager: conda platform: win-64 dependencies: - python: '' - url: https://packages.prefix.dev/conda-forge/noarch/typing_extensions-4.13.2-pyh29332c3_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.13.2-pyh29332c3_0.conda hash: md5: 83fc6ae00127671e301c9f44254c31b8 sha256: a8aaf351e6461de0d5d47e4911257e25eec2fa409d71f3b643bb2f748bde1c08 @@ -7797,7 +7797,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7809,7 +7809,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7820,7 +7820,7 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://packages.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 @@ -7831,7 +7831,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://packages.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 @@ -7843,7 +7843,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7855,7 +7855,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7866,7 +7866,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://packages.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 @@ -7881,7 +7881,7 @@ package: libgcc: '>=13' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://packages.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 @@ -7897,7 +7897,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -7909,7 +7909,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7921,7 +7921,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7937,7 +7937,7 @@ package: pysocks: '>=1.5.6,<2.0,!=1.5.7' python: '>=3.9' zstandard: '>=0.18.0' - url: https://packages.prefix.dev/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda hash: md5: c1e349028e0052c4eea844e94f773065 sha256: a25403b76f7f03ca1a906e1ef0f88521edded991b9897e7fed56a3e334b3db8c @@ -7953,7 +7953,7 @@ package: pysocks: '>=1.5.6,<2.0,!=1.5.7' python: '>=3.9' zstandard: '>=0.18.0' - url: https://packages.prefix.dev/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda hash: md5: c1e349028e0052c4eea844e94f773065 sha256: a25403b76f7f03ca1a906e1ef0f88521edded991b9897e7fed56a3e334b3db8c @@ -7965,7 +7965,7 @@ package: platform: win-64 dependencies: vc14_runtime: '>=14.42.34433' - url: https://packages.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 @@ -7977,7 +7977,7 @@ package: platform: win-64 dependencies: ucrt: '>=10.0.20348.0' - url: https://packages.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 @@ -7989,7 +7989,7 @@ package: platform: win-64 dependencies: vc14_runtime: '>=14.42.34438' - url: https://packages.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 @@ -8001,7 +8001,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -8013,7 +8013,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -8025,7 +8025,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -8037,7 +8037,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -8049,7 +8049,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -8061,7 +8061,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -8073,7 +8073,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -8085,7 +8085,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -8097,7 +8097,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -8109,7 +8109,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -8122,7 +8122,7 @@ package: dependencies: notebook: '>=4.4.1' python: '>=3.7' - url: https://packages.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 @@ -8135,7 +8135,7 @@ package: dependencies: notebook: '>=4.4.1' python: '>=3.7' - url: https://packages.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 @@ -8148,7 +8148,7 @@ package: dependencies: __win: '' python: '>=3.9' - url: https://packages.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 @@ -8159,7 +8159,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://packages.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 @@ -8174,7 +8174,7 @@ package: libgcc: '>=13' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://packages.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 @@ -8190,7 +8190,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -8203,7 +8203,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://packages.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 @@ -8217,7 +8217,7 @@ package: libgcc: '>=13' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' ucrt: '>=10.0.20348.0' - url: https://packages.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 @@ -8230,7 +8230,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://packages.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 @@ -8244,7 +8244,7 @@ package: libgcc: '>=13' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' ucrt: '>=10.0.20348.0' - url: https://packages.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 @@ -8256,7 +8256,7 @@ package: platform: linux-64 dependencies: python: '>=3.8' - url: https://packages.prefix.dev/conda-forge/noarch/xyzservices-2025.1.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/xyzservices-2025.1.0-pyhd8ed1ab_0.conda hash: md5: fdf07e281a9e5e10fc75b2dd444136e9 sha256: 9978c22319e85026d5a4134944f73bac820c948ca6b6c32af6b6985b5221cd8a @@ -8268,7 +8268,7 @@ package: platform: win-64 dependencies: python: '>=3.8' - url: https://packages.prefix.dev/conda-forge/noarch/xyzservices-2025.1.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/xyzservices-2025.1.0-pyhd8ed1ab_0.conda hash: md5: fdf07e281a9e5e10fc75b2dd444136e9 sha256: 9978c22319e85026d5a4134944f73bac820c948ca6b6c32af6b6985b5221cd8a @@ -8280,7 +8280,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=9.4.0' - url: https://packages.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 @@ -8293,7 +8293,7 @@ package: dependencies: vc: '>=14.1,<15.0a0' vs2015_runtime: '>=14.16.27012' - url: https://packages.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 @@ -8309,7 +8309,7 @@ package: numcodecs: '>=0.10.0,<0.16.0a0' numpy: '>=1.7' python: '>=3.5' - url: https://packages.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 @@ -8325,7 +8325,7 @@ package: numcodecs: '>=0.10.0,<0.16.0a0' numpy: '>=1.7' python: '>=3.5' - url: https://packages.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 @@ -8341,7 +8341,7 @@ package: libgcc: '>=13' libsodium: '>=1.0.20,<1.0.21.0a0' libstdcxx: '>=13' - url: https://packages.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 @@ -8357,7 +8357,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -8369,7 +8369,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 +8381,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -8393,7 +8393,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda hash: md5: 0c3cc595284c5e8f0f9900a9b228a332 sha256: 567c04f124525c97a096b65769834b7acb047db24b15a56888a322bf3966c3e1 @@ -8405,7 +8405,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda hash: md5: 0c3cc595284c5e8f0f9900a9b228a332 sha256: 567c04f124525c97a096b65769834b7acb047db24b15a56888a322bf3966c3e1 @@ -8421,7 +8421,7 @@ package: libgcc: '>=13' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://packages.prefix.dev/conda-forge/linux-64/zstandard-0.23.0-py311h9ecbd09_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/zstandard-0.23.0-py311h9ecbd09_1.conda hash: md5: 6d229edd907b6bb39961b74e3d52de9c sha256: 1a824220227f356f35acec5ff6a4418b1ccd0238fd752ceebeb04a0bd37acf0f @@ -8438,7 +8438,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/zstandard-0.23.0-py311he736701_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/zstandard-0.23.0-py311he736701_1.conda hash: md5: a4c147aaaf7e284762d7a6acc49e35e5 sha256: 78afa8ce76763993a76da1b0120b690cba8926271cc9e0462f66155866817c84 @@ -8453,7 +8453,7 @@ package: libgcc: '>=13' libstdcxx: '>=13' libzlib: '>=1.3.1,<2.0a0' - url: https://packages.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 @@ -8468,48 +8468,12 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 category: main optional: false -- name: dask - version: 2025.3.0 - manager: pip - platform: linux-64 - dependencies: - click: '>=8.1' - cloudpickle: '>=3.0.0' - fsspec: '>=2021.09.0' - importlib-metadata: '>=4.13.0' - packaging: '>=20.0' - partd: '>=1.4.0' - pyyaml: '>=5.3.1' - toolz: '>=0.10.0' - url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/packages/packages/bd/8a/3609033a4bfd7c9b3e8a4e8a5d6e318dfc06ab2e2d3b5cb0e01a60458858/dask-2025.3.0-py3-none-any.whl - hash: - sha256: b5d72bb33788904a218fd7da1850238517592358ecc79c30bb5c188a71df506d - category: main - optional: false -- name: dask - version: 2025.3.0 - manager: pip - platform: win-64 - dependencies: - click: '>=8.1' - cloudpickle: '>=3.0.0' - fsspec: '>=2021.09.0' - importlib-metadata: '>=4.13.0' - packaging: '>=20.0' - partd: '>=1.4.0' - pyyaml: '>=5.3.1' - toolz: '>=0.10.0' - url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/packages/packages/bd/8a/3609033a4bfd7c9b3e8a4e8a5d6e318dfc06ab2e2d3b5cb0e01a60458858/dask-2025.3.0-py3-none-any.whl - hash: - sha256: b5d72bb33788904a218fd7da1850238517592358ecc79c30bb5c188a71df506d - category: main - optional: false - name: geoapps-utils version: 0.5.0a3 manager: pip @@ -8519,7 +8483,7 @@ package: numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/geoapps-utils/0.5.0-alpha.3/geoapps_utils-0.5.0a3-py3-none-any.whl + url: https://files.pythonhosted.org/packages/7f/0b/36222385937dcda4b4789303027fc538103201f72b4bce99d53398a5b5da/geoapps_utils-0.5.0a3-py3-none-any.whl hash: sha256: a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c category: main @@ -8533,7 +8497,7 @@ package: numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/geoapps-utils/0.5.0-alpha.3/geoapps_utils-0.5.0a3-py3-none-any.whl + url: https://files.pythonhosted.org/packages/7f/0b/36222385937dcda4b4789303027fc538103201f72b4bce99d53398a5b5da/geoapps_utils-0.5.0a3-py3-none-any.whl hash: sha256: a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c category: main @@ -8547,7 +8511,7 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/geoh5py/0.11.0-alpha.4/geoh5py-0.11.0a4-py3-none-any.whl + url: https://files.pythonhosted.org/packages/cb/76/a6f12182119218ad7b55ad622a89be4596c1cc37b1182c3f121242c0b0fc/geoh5py-0.11.0a4-py3-none-any.whl hash: sha256: 4965e934b1e57460f98f76f96eca100abf48fd722245154c35af86e7ecbc10a6 category: main @@ -8561,19 +8525,17 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/geoh5py/0.11.0-alpha.4/geoh5py-0.11.0a4-py3-none-any.whl + url: https://files.pythonhosted.org/packages/cb/76/a6f12182119218ad7b55ad622a89be4596c1cc37b1182c3f121242c0b0fc/geoh5py-0.11.0a4-py3-none-any.whl hash: sha256: 4965e934b1e57460f98f76f96eca100abf48fd722245154c35af86e7ecbc10a6 category: main optional: false - name: mira-simpeg - version: 0.23.0.1a2 + version: 0.23.0.1a3.dev1+g60bcbe68b manager: pip platform: linux-64 dependencies: - dask: '*' discretize: '>=0.11' - fsspec: '>=0.3.3' geoana: '>=0.7.0' geoh5py: '>=0.11.0a1,<0.12.dev' libdlf: '*' @@ -8581,20 +8543,20 @@ package: numpy: '>=1.22' pymatsolver: '>=0.3' scipy: '>=1.8' - zarr: '*' - url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/mira-simpeg/0.23.0.1a2+mira/mira_simpeg-0.23.0.1a2-py3-none-any.whl + url: git+https://github.com/MiraGeoscience/simpeg.git@60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 hash: - sha256: 931b533984dfcca301bea0d8e4a72a5f482731f0561a9ad95a790c516262d830 + sha256: 60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 + source: + type: url + url: git+https://github.com/MiraGeoscience/simpeg.git@60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 category: main optional: false - name: mira-simpeg - version: 0.23.0.1a2 + version: 0.23.0.1a3.dev1+g60bcbe68b manager: pip platform: win-64 dependencies: - dask: '*' discretize: '>=0.11' - fsspec: '>=0.3.3' geoana: '>=0.7.0' geoh5py: '>=0.11.0a1,<0.12.dev' libdlf: '*' @@ -8602,42 +8564,44 @@ package: numpy: '>=1.22' pymatsolver: '>=0.3' scipy: '>=1.8' - zarr: '*' - url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/mira-simpeg/0.23.0.1a2+mira/mira_simpeg-0.23.0.1a2-py3-none-any.whl + url: git+https://github.com/MiraGeoscience/simpeg.git@60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 hash: - sha256: 931b533984dfcca301bea0d8e4a72a5f482731f0561a9ad95a790c516262d830 + sha256: 60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 + source: + type: url + url: git+https://github.com/MiraGeoscience/simpeg.git@60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 category: main optional: false - name: octree-creation-app - version: 0.3.0a1 + version: 0.3.0a2 manager: pip platform: linux-64 dependencies: discretize: ==0.11.* - geoapps-utils: 0.5.0a3 + geoapps-utils: '>=0.5.0a3,<0.6.dev' geoh5py: '>=0.11.0a3,<0.12.dev' numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/octree-creation-app/0.3.0-alpha.1/octree_creation_app-0.3.0a1-py3-none-any.whl + url: https://files.pythonhosted.org/packages/8a/60/0a425a5a8cd25d46d8141bf24b20511d0176c9fae0e617f0eeca4675366b/octree_creation_app-0.3.0a2-py3-none-any.whl hash: - sha256: 379dc607aca96db07af2ea8fbacadc9d0ca086e91d2508f5720b87e6e8d778a1 + sha256: 002896126bf5a958aad1bb9c0a272bfd3c6985d1456dc8022c4e07b5582730ff category: main optional: false - name: octree-creation-app - version: 0.3.0a1 + version: 0.3.0a2 manager: pip platform: win-64 dependencies: discretize: ==0.11.* - geoapps-utils: 0.5.0a3 + geoapps-utils: '>=0.5.0a3,<0.6.dev' geoh5py: '>=0.11.0a3,<0.12.dev' numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/octree-creation-app/0.3.0-alpha.1/octree_creation_app-0.3.0a1-py3-none-any.whl + url: https://files.pythonhosted.org/packages/8a/60/0a425a5a8cd25d46d8141bf24b20511d0176c9fae0e617f0eeca4675366b/octree_creation_app-0.3.0a2-py3-none-any.whl hash: - sha256: 379dc607aca96db07af2ea8fbacadc9d0ca086e91d2508f5720b87e6e8d778a1 + sha256: 002896126bf5a958aad1bb9c0a272bfd3c6985d1456dc8022c4e07b5582730ff category: main optional: false - name: param-sweeps @@ -8647,7 +8611,7 @@ package: dependencies: geoh5py: '>=0.11.0a3,<0.12.dev' numpy: '>=1.26.0,<1.27.0' - url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/param-sweeps/0.2.1-alpha.1/param_sweeps-0.2.1a1-py3-none-any.whl + url: https://files.pythonhosted.org/packages/a9/b4/5352714c3cd8075b037aac1fcbcfb5f539449c020031cb663ad82a3944d0/param_sweeps-0.2.1a1-py3-none-any.whl hash: sha256: 777618dd6eef4b6e86b4976e01c29bb202abb9d295b0774baeabf7534fb9389c category: main @@ -8659,7 +8623,7 @@ package: dependencies: geoh5py: '>=0.11.0a3,<0.12.dev' numpy: '>=1.26.0,<1.27.0' - url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/param-sweeps/0.2.1-alpha.1/param_sweeps-0.2.1a1-py3-none-any.whl + url: https://files.pythonhosted.org/packages/a9/b4/5352714c3cd8075b037aac1fcbcfb5f539449c020031cb663ad82a3944d0/param_sweeps-0.2.1a1-py3-none-any.whl hash: sha256: 777618dd6eef4b6e86b4976e01c29bb202abb9d295b0774baeabf7534fb9389c category: main diff --git a/py-3.12.conda-lock.yml b/py-3.12.conda-lock.yml index ade1f424..cdeb6ef1 100644 --- a/py-3.12.conda-lock.yml +++ b/py-3.12.conda-lock.yml @@ -15,8 +15,8 @@ version: 1 metadata: content_hash: - win-64: 40c9d8260ef2ad818f7a0dad316494f49066c56bbffb2b257d078263c4ea329f - linux-64: 1dc064917aeb518bbd08c7336c474da8966f79b47d704f7e17aa98ac37fee0d7 + win-64: b0a0dc55f494b271b3e6274e5a61928da568a8684aa2376ddf2dfa25e930fae4 + linux-64: 46e0e2b61133dc39d04ca1a932571bab7ef29a782ca68eff8139eca7c48a28b1 channels: - url: conda-forge used_env_vars: [] @@ -35,7 +35,7 @@ package: platform: linux-64 dependencies: llvm-openmp: '>=9.0.1' - url: https://packages.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://packages.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://packages.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://packages.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://packages.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://packages.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://packages.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://packages.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 @@ -137,10 +137,10 @@ package: dependencies: exceptiongroup: '>=1.0.2' idna: '>=2.8' - python: '' + python: '>=3.9' sniffio: '>=1.1' typing_extensions: '>=4.5' - url: https://packages.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 @@ -153,10 +153,10 @@ package: dependencies: exceptiongroup: '>=1.0.2' idna: '>=2.8' - python: '' + python: '>=3.9' sniffio: '>=1.1' typing_extensions: '>=4.5' - url: https://packages.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://packages.prefix.dev/conda-forge/noarch/argon2-cffi-23.1.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/argon2-cffi-23.1.0-pyhd8ed1ab_1.conda hash: md5: a7ee488b71c30ada51c48468337b85ba sha256: 7af62339394986bc470a7a231c7f37ad0173ffb41f6bc0e8e31b0be9e3b9d20f @@ -184,7 +184,7 @@ package: argon2-cffi-bindings: '' python: '>=3.9' typing-extensions: '' - url: https://packages.prefix.dev/conda-forge/noarch/argon2-cffi-23.1.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/argon2-cffi-23.1.0-pyhd8ed1ab_1.conda hash: md5: a7ee488b71c30ada51c48468337b85ba sha256: 7af62339394986bc470a7a231c7f37ad0173ffb41f6bc0e8e31b0be9e3b9d20f @@ -200,7 +200,7 @@ package: libgcc: '>=13' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://packages.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://packages.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://packages.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://packages.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://packages.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://packages.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://packages.prefix.dev/conda-forge/linux-64/astroid-3.3.9-py312h7900ff3_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/astroid-3.3.9-py312h7900ff3_0.conda hash: md5: ebbc44c436cf6fda9681e871df39097f sha256: bcb0b7965d305d2f9159a2f29e4236e3c90d537f45c5facd204c202490974ce2 @@ -295,7 +295,7 @@ package: dependencies: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://packages.prefix.dev/conda-forge/win-64/astroid-3.3.9-py312h2e8e312_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/astroid-3.3.9-py312h2e8e312_0.conda hash: md5: a31a121fab1af9b1a6550c7063d75847 sha256: d38222880edd3f171877fa236a80d9eb9c741cdb0c499c12276ca621ec653137 @@ -307,7 +307,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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://packages.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 @@ -330,9 +330,9 @@ package: manager: conda platform: linux-64 dependencies: - python: '' + python: '>=3.9' typing_extensions: '>=4.0.0' - url: https://packages.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 @@ -343,9 +343,9 @@ package: manager: conda platform: win-64 dependencies: - python: '' + python: '>=3.9' typing_extensions: '>=4.0.0' - url: https://packages.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://packages.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://packages.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://packages.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://packages.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://packages.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://packages.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 @@ -434,9 +434,9 @@ package: manager: conda platform: linux-64 dependencies: - python: '' + python: '>=3.9' webencodings: '' - url: https://packages.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 @@ -447,9 +447,9 @@ package: manager: conda platform: win-64 dependencies: - python: '' + python: '>=3.9' webencodings: '' - url: https://packages.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://packages.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://packages.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://packages.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://packages.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://packages.prefix.dev/conda-forge/linux-64/brotli-1.1.0-hb9d3cd8_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/brotli-1.1.0-hb9d3cd8_2.conda hash: md5: 98514fe74548d768907ce7a13f680e8f sha256: fcb0b5b28ba7492093e54f3184435144e074dfceab27ac8e6a9457e736565b0b @@ -550,7 +550,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/brotli-1.1.0-h2466b09_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/brotli-1.1.0-h2466b09_2.conda hash: md5: 378f1c9421775dfe644731cb121c8979 sha256: d8fd7d1b446706776117d2dcad1c0289b9f5e1521cb13405173bad38568dd252 @@ -565,7 +565,7 @@ package: libbrotlidec: 1.1.0 libbrotlienc: 1.1.0 libgcc: '>=13' - url: https://packages.prefix.dev/conda-forge/linux-64/brotli-bin-1.1.0-hb9d3cd8_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/brotli-bin-1.1.0-hb9d3cd8_2.conda hash: md5: c63b5e52939e795ba8d26e35d767a843 sha256: 261364d7445513b9a4debc345650fad13c627029bfc800655a266bf1e375bc65 @@ -581,7 +581,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/brotli-bin-1.1.0-h2466b09_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/brotli-bin-1.1.0-h2466b09_2.conda hash: md5: d22534a9be5771fc58eb7564947f669d sha256: f3bf2893613540ac256c68f211861c4de618d96291719e32178d894114ac2bc2 @@ -597,7 +597,7 @@ package: libstdcxx: '>=13' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://packages.prefix.dev/conda-forge/linux-64/brotli-python-1.1.0-py312h2ec8cdc_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.1.0-py312h2ec8cdc_2.conda hash: md5: b0b867af6fc74b2a0aa206da29c0f3cf sha256: f2a59ccd20b4816dea9a2a5cb917eb69728271dbf1aeab4e1b7e609330a50b6f @@ -613,7 +613,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/brotli-python-1.1.0-py312h275cf98_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/brotli-python-1.1.0-py312h275cf98_2.conda hash: md5: a99aec1ac46794a5fb1cd3cf5d2b6110 sha256: f83baa6f6bcba7b73f6921d5c1aa95ffc5d8b246ade933ade79250de0a4c9c4c @@ -626,7 +626,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - url: https://packages.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://packages.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,7 +653,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://packages.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 @@ -664,7 +664,7 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://packages.prefix.dev/conda-forge/linux-64/ca-certificates-2025.1.31-hbcca054_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2025.1.31-hbcca054_0.conda hash: md5: 19f3a56f68d2fd06c516076bff482c52 sha256: bf832198976d559ab44d6cdb315642655547e26d826e34da67cbee6624cda189 @@ -675,7 +675,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://packages.prefix.dev/conda-forge/win-64/ca-certificates-2025.1.31-h56e8100_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2025.1.31-h56e8100_0.conda hash: md5: 5304a31607974dfc2110dfbb662ed092 sha256: 1bedccdf25a3bd782d6b0e57ddd97cdcda5501716009f2de4479a779221df155 @@ -687,7 +687,7 @@ package: platform: linux-64 dependencies: cached_property: '>=1.5.2,<1.5.3.0a0' - url: https://packages.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 @@ -699,7 +699,7 @@ package: platform: win-64 dependencies: cached_property: '>=1.5.2,<1.5.3.0a0' - url: https://packages.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 @@ -711,7 +711,7 @@ package: platform: linux-64 dependencies: python: '>=3.6' - url: https://packages.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 @@ -723,7 +723,7 @@ package: platform: win-64 dependencies: python: '>=3.6' - url: https://packages.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 @@ -735,7 +735,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda hash: md5: c207fa5ac7ea99b149344385a9c0880d sha256: 42a78446da06a2568cb13e69be3355169fbd0ea424b00fc80b7d840f5baaacf3 @@ -747,7 +747,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda hash: md5: c207fa5ac7ea99b149344385a9c0880d sha256: 42a78446da06a2568cb13e69be3355169fbd0ea424b00fc80b7d840f5baaacf3 @@ -764,7 +764,7 @@ package: pycparser: '' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://packages.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 @@ -781,7 +781,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -793,7 +793,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda hash: md5: e83a31202d1c0a000fce3e9cf3825875 sha256: 4e0ee91b97e5de3e74567bdacea27f0139709fceca4db8adffbe24deffccb09b @@ -805,7 +805,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda hash: md5: e83a31202d1c0a000fce3e9cf3825875 sha256: 4e0ee91b97e5de3e74567bdacea27f0139709fceca4db8adffbe24deffccb09b @@ -818,7 +818,7 @@ package: dependencies: __unix: '' python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/click-8.1.8-pyh707e725_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.8-pyh707e725_0.conda hash: md5: f22f4d4970e09d68a10b922cbb0408d3 sha256: c920d23cd1fcf565031c679adb62d848af60d6fbb0edc2d50ba475cea4f0d8ab @@ -832,7 +832,7 @@ package: __win: '' colorama: '' python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/click-8.1.8-pyh7428d3b_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.8-pyh7428d3b_0.conda hash: md5: 90e5571556f7a45db92ee51cb8f97af6 sha256: c889ed359ae47eead4ffe8927b7206b22c55e67d6e74a9044c23736919d61e8d @@ -844,7 +844,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -856,7 +856,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -868,7 +868,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -880,7 +880,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -893,7 +893,7 @@ package: dependencies: python: '>=3.9' traitlets: '>=5.3' - url: https://packages.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 @@ -906,7 +906,7 @@ package: dependencies: python: '>=3.9' traitlets: '>=5.3' - url: https://packages.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 @@ -923,7 +923,7 @@ package: numpy: '>=1.23' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://packages.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 @@ -940,7 +940,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -956,7 +956,7 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* tomli: '' - url: https://packages.prefix.dev/conda-forge/linux-64/coverage-7.8.0-py312h178313f_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/coverage-7.8.0-py312h178313f_0.conda hash: md5: d0fca021e354cc96455021852a1fad6d sha256: 029278c43bd2a6ac36bfd93fde69a0cde6a4ee94c0af72d0d51236fbb1fc3720 @@ -973,7 +973,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/coverage-7.8.0-py312h31fea79_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/coverage-7.8.0-py312h31fea79_0.conda hash: md5: a52895ace8c17bc01ceba443d52325c6 sha256: 7815726b2b45065af4570deca428f48799ce1f49de7d8b5e4f6b7999f6a4dc2f @@ -986,7 +986,7 @@ package: dependencies: python: '>=3.12,<3.13.0a0' python_abi: '*' - url: https://packages.prefix.dev/conda-forge/noarch/cpython-3.12.10-py312hd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/cpython-3.12.10-py312hd8ed1ab_0.conda hash: md5: 7584a4b1e802afa25c89c0dcc72d0826 sha256: acb47715abf1cd8177a5c20f42a34555b5d9cebb68ff39a58706e84effe218e2 @@ -998,7 +998,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -1010,7 +1010,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -1026,7 +1026,7 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* toolz: '>=0.10.0' - url: https://packages.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 @@ -1043,7 +1043,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -1063,7 +1063,7 @@ package: python: '>=3.10' pyyaml: '>=5.3.1' toolz: '>=0.10.0' - url: https://packages.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 @@ -1083,7 +1083,7 @@ package: python: '>=3.10' pyyaml: '>=5.3.1' toolz: '>=0.10.0' - url: https://packages.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 @@ -1095,7 +1095,7 @@ package: platform: linux-64 dependencies: python: '>=3.7' - url: https://packages.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 @@ -1107,7 +1107,7 @@ package: platform: win-64 dependencies: python: '>=3.7' - url: https://packages.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 @@ -1123,7 +1123,7 @@ package: libstdcxx: '>=13' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://packages.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 @@ -1139,7 +1139,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -1151,7 +1151,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -1163,7 +1163,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -1175,7 +1175,7 @@ package: platform: linux-64 dependencies: python: '>=3.6' - url: https://packages.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 @@ -1187,7 +1187,7 @@ package: platform: win-64 dependencies: python: '>=3.6' - url: https://packages.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 @@ -1200,7 +1200,7 @@ package: dependencies: python: '>=3.9' wrapt: <2,>=1.10 - url: https://packages.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 @@ -1213,7 +1213,7 @@ package: dependencies: python: '>=3.9' wrapt: <2,>=1.10 - url: https://packages.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 @@ -1225,7 +1225,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -1237,7 +1237,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -1255,7 +1255,7 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* scipy: '>=1.8' - url: https://packages.prefix.dev/conda-forge/linux-64/discretize-0.11.2-py312hc39e661_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/discretize-0.11.2-py312hc39e661_1.conda hash: md5: e9c071bcefeb0f70dd18a20f88bb844f sha256: 605ee14cdad67f8797a54853d8030295b522ba478e6759a5bc1f4fec3ac2e225 @@ -1273,7 +1273,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/discretize-0.11.2-py312hbaa7e33_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/discretize-0.11.2-py312hbaa7e33_1.conda hash: md5: 43aa663b1fd1787fbbeca5a9a954dc57 sha256: 259979385edfa18bcbb5b9776490d53026a6bfaf6f738369b49b0a0b2a839303 @@ -1301,7 +1301,7 @@ package: tornado: '>=6.2.0' urllib3: '>=1.26.5' zict: '>=3.0.0' - url: https://packages.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 @@ -1329,7 +1329,7 @@ package: tornado: '>=6.2.0' urllib3: '>=1.26.5' zict: '>=3.0.0' - url: https://packages.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 @@ -1342,7 +1342,7 @@ package: dependencies: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://packages.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 @@ -1355,7 +1355,7 @@ package: dependencies: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://packages.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 @@ -1367,7 +1367,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda hash: md5: a16662747cdeb9abbac74d0057cc976e sha256: cbde2c64ec317118fc06b223c5fd87c8a680255e7348dd60e7b292d2e103e701 @@ -1379,7 +1379,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda hash: md5: a16662747cdeb9abbac74d0057cc976e sha256: cbde2c64ec317118fc06b223c5fd87c8a680255e7348dd60e7b292d2e103e701 @@ -1391,7 +1391,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/executing-2.1.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/executing-2.1.0-pyhd8ed1ab_1.conda hash: md5: ef8b5fca76806159fc25b4f48d8737eb sha256: 28d25ea375ebab4bf7479228f8430db20986187b04999136ff5c722ebd32eb60 @@ -1403,7 +1403,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/executing-2.1.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/executing-2.1.0-pyhd8ed1ab_1.conda hash: md5: ef8b5fca76806159fc25b4f48d8737eb sha256: 28d25ea375ebab4bf7479228f8430db20986187b04999136ff5c722ebd32eb60 @@ -1415,7 +1415,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -1427,7 +1427,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -1445,7 +1445,7 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* unicodedata2: '>=15.1.0' - url: https://packages.prefix.dev/conda-forge/linux-64/fonttools-4.57.0-py312h178313f_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/fonttools-4.57.0-py312h178313f_0.conda hash: md5: 97907388593b27ac01237a1023d58d3d sha256: 3d230ff0d9e9fc482de22b807adf017736bd6d19b932eea68d68eeb52b139e04 @@ -1464,7 +1464,7 @@ package: unicodedata2: '>=15.1.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/fonttools-4.57.0-py312h31fea79_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/fonttools-4.57.0-py312h31fea79_0.conda hash: md5: 5bcdfae9aaf166ad83edebfa2f6359e2 sha256: eaa9fa1c6c0f290a24066a170460e292b111cb4c67c8d7cb7eb54ca68c608646 @@ -1477,7 +1477,7 @@ package: dependencies: cached-property: '>=1.3.0' python: '>=3.9,<4' - url: https://packages.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 @@ -1490,7 +1490,7 @@ package: dependencies: cached-property: '>=1.3.0' python: '>=3.9,<4' - url: https://packages.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 @@ -1505,7 +1505,7 @@ package: libgcc: '>=13' libpng: '>=1.6.47,<1.7.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://packages.prefix.dev/conda-forge/linux-64/freetype-2.13.3-h48d6fc4_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/freetype-2.13.3-h48d6fc4_0.conda hash: md5: 9ecfd6f2ca17077dd9c2d24770bb9ccd sha256: 7385577509a9c4730130f54bb6841b9b416249d5f4e9f74bf313e6378e313c57 @@ -1521,7 +1521,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/freetype-2.13.3-h0b5ce68_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/freetype-2.13.3-h0b5ce68_0.conda hash: md5: 9c461ed7b07fb360d2c8cfe726c7d521 sha256: 67e3af0fbe6c25f5ab1af9a3d3000464c5e88a8a0b4b06602f4a5243a8a1fd42 @@ -1533,7 +1533,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/fsspec-2025.3.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/fsspec-2025.3.2-pyhd8ed1ab_0.conda hash: md5: 9c40692c3d24c7aaf335f673ac09d308 sha256: 2040d4640708bd6ab9ed6cb9901267441798c44974bc63c9b6c1cb4c1891d825 @@ -1545,7 +1545,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/fsspec-2025.3.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/fsspec-2025.3.2-pyhd8ed1ab_0.conda hash: md5: 9c40692c3d24c7aaf335f673ac09d308 sha256: 2040d4640708bd6ab9ed6cb9901267441798c44974bc63c9b6c1cb4c1891d825 @@ -1564,7 +1564,7 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* scipy: '>=1.8' - url: https://packages.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 @@ -1583,7 +1583,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -1599,7 +1599,7 @@ package: libstdcxx: '>=13' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://packages.prefix.dev/conda-forge/linux-64/greenlet-3.2.0-py312h2ec8cdc_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/greenlet-3.2.0-py312h2ec8cdc_0.conda hash: md5: fcbf85214d3dd3acd890126a9ff470b5 sha256: c18e4f41d46054d2aa2780b76f477533581b18a59a403aaa1a2382da920ef672 @@ -1615,7 +1615,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/greenlet-3.2.0-py312h275cf98_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/greenlet-3.2.0-py312h275cf98_0.conda hash: md5: f8b312c9115e67c91a5c2f9af198fe8a sha256: c80ca057bf79c2937c519e8f48585c51fa31fab610131af8fb459ec8946577e5 @@ -1628,7 +1628,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '' - url: https://packages.prefix.dev/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_1.conda hash: md5: 7ee49e89531c0dcbba9466f6d115d585 sha256: 622516185a7c740d5c7f27016d0c15b45782c1501e5611deec63fd70344ce7c8 @@ -1641,7 +1641,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '' - url: https://packages.prefix.dev/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_1.conda hash: md5: 7ee49e89531c0dcbba9466f6d115d585 sha256: 622516185a7c740d5c7f27016d0c15b45782c1501e5611deec63fd70344ce7c8 @@ -1655,7 +1655,7 @@ package: hpack: '>=4.1,<5' hyperframe: '>=6.1,<7' python: '>=3.9' - url: https://packages.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 @@ -1669,7 +1669,7 @@ package: hpack: '>=4.1,<5' hyperframe: '>=6.1,<7' python: '>=3.9' - url: https://packages.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 @@ -1687,7 +1687,7 @@ package: numpy: '>=1.19,<3' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://packages.prefix.dev/conda-forge/linux-64/h5py-3.13.0-nompi_py312hedeef09_100.conda + url: https://conda.anaconda.org/conda-forge/linux-64/h5py-3.13.0-nompi_py312hedeef09_100.conda hash: md5: ed73cf6f5e1ce5e823e6efcf54cbdc51 sha256: 76bb853325f0c756599edb0be014723b01fea61e24817fd2f0b9ddfe4c570c0f @@ -1706,7 +1706,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/h5py-3.13.0-nompi_py312ha036244_100.conda + url: https://conda.anaconda.org/conda-forge/win-64/h5py-3.13.0-nompi_py312ha036244_100.conda hash: md5: fe41c7e14279ad2729752ddf4e83bc42 sha256: 63bba52339a880a596ec38c51f08c35249e2db801d7fe6046cd60b3e611ea5b6 @@ -1726,7 +1726,7 @@ package: libstdcxx: '>=13' libzlib: '>=1.3.1,<2.0a0' openssl: '>=3.4.0,<4.0a0' - url: https://packages.prefix.dev/conda-forge/linux-64/hdf5-1.14.3-nompi_h2d575fe_109.conda + url: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.3-nompi_h2d575fe_109.conda hash: md5: e7a7a6e6f70553a31e6e79c65768d089 sha256: e8669a6d76d415f4fdbe682507ac3a3b39e8f493d2f2bdc520817f80b7cc0753 @@ -1744,7 +1744,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/hdf5-1.14.3-nompi_hb2c4d47_109.conda + url: https://conda.anaconda.org/conda-forge/win-64/hdf5-1.14.3-nompi_hb2c4d47_109.conda hash: md5: ebb61f3e8b35cc15e78876649b7246f7 sha256: d5ada33e119cdd62371c06f60eae6f545de7cea793ab83da2fba428bb1d2f813 @@ -1756,7 +1756,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -1768,7 +1768,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -1785,7 +1785,7 @@ package: h2: '>=3,<5' python: '>=3.8' sniffio: 1.* - url: https://packages.prefix.dev/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda hash: md5: 2ca8e6dbc86525c8b95e3c0ffa26442e sha256: c84d012a245171f3ed666a8bf9319580c269b7843ffa79f26468842da3abd5df @@ -1802,7 +1802,7 @@ package: h2: '>=3,<5' python: '>=3.8' sniffio: 1.* - url: https://packages.prefix.dev/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda hash: md5: 2ca8e6dbc86525c8b95e3c0ffa26442e sha256: c84d012a245171f3ed666a8bf9319580c269b7843ffa79f26468842da3abd5df @@ -1818,7 +1818,7 @@ package: httpcore: 1.* idna: '' python: '>=3.9' - url: https://packages.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 @@ -1834,7 +1834,7 @@ package: httpcore: 1.* idna: '' python: '>=3.9' - url: https://packages.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 @@ -1846,7 +1846,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -1858,7 +1858,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -1870,7 +1870,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -1882,7 +1882,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -1894,7 +1894,7 @@ package: platform: linux-64 dependencies: python: '>=3.4' - url: https://packages.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 @@ -1906,7 +1906,7 @@ package: platform: win-64 dependencies: python: '>=3.4' - url: https://packages.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: dependencies: python: '>=3.9' zipp: '>=0.5' - url: https://packages.prefix.dev/conda-forge/noarch/importlib-metadata-8.6.1-pyha770c72_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.6.1-pyha770c72_0.conda hash: md5: f4b39bf00c69f56ac01e020ebfac066c sha256: 598951ebdb23e25e4cec4bbff0ae369cec65ead80b50bc08b441d8e54de5cf03 @@ -1932,7 +1932,7 @@ package: dependencies: python: '>=3.9' zipp: '>=0.5' - url: https://packages.prefix.dev/conda-forge/noarch/importlib-metadata-8.6.1-pyha770c72_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.6.1-pyha770c72_0.conda hash: md5: f4b39bf00c69f56ac01e020ebfac066c sha256: 598951ebdb23e25e4cec4bbff0ae369cec65ead80b50bc08b441d8e54de5cf03 @@ -1944,7 +1944,7 @@ package: platform: linux-64 dependencies: importlib-metadata: '>=8.6.1,<8.6.2.0a0' - url: https://packages.prefix.dev/conda-forge/noarch/importlib_metadata-8.6.1-hd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-8.6.1-hd8ed1ab_0.conda hash: md5: 7f46575a91b1307441abc235d01cab66 sha256: 1e3eb9d65c4d7b87c7347553ef9eef6f994996f90a2299e19b35f5997d3a3e79 @@ -1956,7 +1956,7 @@ package: platform: win-64 dependencies: importlib-metadata: '>=8.6.1,<8.6.2.0a0' - url: https://packages.prefix.dev/conda-forge/noarch/importlib_metadata-8.6.1-hd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-8.6.1-hd8ed1ab_0.conda hash: md5: 7f46575a91b1307441abc235d01cab66 sha256: 1e3eb9d65c4d7b87c7347553ef9eef6f994996f90a2299e19b35f5997d3a3e79 @@ -1969,7 +1969,7 @@ package: dependencies: python: '>=3.9' zipp: '>=3.1.0' - url: https://packages.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 @@ -1982,7 +1982,7 @@ package: dependencies: python: '>=3.9' zipp: '>=3.1.0' - url: https://packages.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 @@ -1994,7 +1994,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -2017,7 +2017,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://packages.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 @@ -2042,7 +2042,7 @@ package: pyzmq: '>=24' tornado: '>=6.1' traitlets: '>=5.4.0' - url: https://packages.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 @@ -2067,7 +2067,7 @@ package: pyzmq: '>=24' tornado: '>=6.1' traitlets: '>=5.4.0' - url: https://packages.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 @@ -2088,11 +2088,11 @@ package: pickleshare: '' prompt-toolkit: '>=3.0.41,<3.1.0' pygments: '>=2.4.0' - python: '' + python: '>=3.11' stack_data: '' traitlets: '>=5.13.0' typing_extensions: '>=4.6' - url: https://packages.prefix.dev/conda-forge/noarch/ipython-9.1.0-pyhfb0248b_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/ipython-9.1.0-pyhfb0248b_0.conda hash: md5: b6c7f97b71c0f670dd9e585d3f65e867 sha256: 24cabcd711d03d2865a67ebc17941bc9bde949b3f0c9a34655c4153dce1c34c3 @@ -2113,11 +2113,11 @@ package: pickleshare: '' prompt-toolkit: '>=3.0.41,<3.1.0' pygments: '>=2.4.0' - python: '' + python: '>=3.11' stack_data: '' traitlets: '>=5.13.0' typing_extensions: '>=4.6' - url: https://packages.prefix.dev/conda-forge/noarch/ipython-9.1.0-pyhca29cf9_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/ipython-9.1.0-pyhca29cf9_0.conda hash: md5: 4f71690ae510b365a22bb1cb926e6df2 sha256: 330d452de42f10537bff1490f6ff08bf4e6c0c7288255be43f9e895e15dd2969 @@ -2129,7 +2129,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -2141,7 +2141,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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: dependencies: pygments: '' python: '>=3.9' - url: https://packages.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 @@ -2167,7 +2167,7 @@ package: dependencies: pygments: '' python: '>=3.9' - url: https://packages.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 @@ -2185,7 +2185,7 @@ package: python: '>=3.3' traitlets: '>=4.3.1' widgetsnbextension: '>=3.6.10,<3.7.0' - url: https://packages.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 @@ -2203,7 +2203,7 @@ package: python: '>=3.3' traitlets: '>=4.3.1' widgetsnbextension: '>=3.6.10,<3.7.0' - url: https://packages.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: dependencies: arrow: '>=0.15.0' python: '>=3.9' - url: https://packages.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 @@ -2229,7 +2229,7 @@ package: dependencies: arrow: '>=0.15.0' python: '>=3.9' - url: https://packages.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: python: '>=3.9,<4.0' setuptools: '' - url: https://packages.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_0.conda hash: md5: a8abfd3f223b1ecb8c699dca974933bd sha256: 9c5fb97efa0eb32b42564edaacb5edb9a1f82ba8f5f8b135e794960101115b5a @@ -2255,7 +2255,7 @@ package: dependencies: python: '>=3.9,<4.0' setuptools: '' - url: https://packages.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_0.conda hash: md5: a8abfd3f223b1ecb8c699dca974933bd sha256: 9c5fb97efa0eb32b42564edaacb5edb9a1f82ba8f5f8b135e794960101115b5a @@ -2268,7 +2268,7 @@ package: dependencies: parso: '>=0.8.3,<0.9.0' python: '>=3.9' - url: https://packages.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 @@ -2281,7 +2281,7 @@ package: dependencies: parso: '>=0.8.3,<0.9.0' python: '>=3.9' - url: https://packages.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 @@ -2294,7 +2294,7 @@ package: dependencies: markupsafe: '>=2.0' python: '>=3.9' - url: https://packages.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 @@ -2307,7 +2307,7 @@ package: dependencies: markupsafe: '>=2.0' python: '>=3.9' - url: https://packages.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 @@ -2320,7 +2320,7 @@ package: dependencies: python: '>=3.9' setuptools: '' - url: https://packages.prefix.dev/conda-forge/noarch/joblib-1.4.2-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/joblib-1.4.2-pyhd8ed1ab_1.conda hash: md5: bf8243ee348f3a10a14ed0cae323e0c1 sha256: 51cc2dc491668af0c4d9299b0ab750f16ccf413ec5e2391b924108c1fbacae9b @@ -2333,7 +2333,7 @@ package: dependencies: python: '>=3.9' setuptools: '' - url: https://packages.prefix.dev/conda-forge/noarch/joblib-1.4.2-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/joblib-1.4.2-pyhd8ed1ab_1.conda hash: md5: bf8243ee348f3a10a14ed0cae323e0c1 sha256: 51cc2dc491668af0c4d9299b0ab750f16ccf413ec5e2391b924108c1fbacae9b @@ -2345,7 +2345,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -2357,7 +2357,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -2370,7 +2370,7 @@ package: dependencies: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://packages.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 @@ -2383,7 +2383,7 @@ package: dependencies: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://packages.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 @@ -2401,7 +2401,7 @@ package: python: '>=3.9' referencing: '>=0.28.4' rpds-py: '>=0.7.1' - url: https://packages.prefix.dev/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_1.conda hash: md5: a3cead9264b331b32fe8f0aabc967522 sha256: be992a99e589146f229c58fe5083e0b60551d774511c494f91fe011931bd7893 @@ -2419,7 +2419,7 @@ package: python: '>=3.9' referencing: '>=0.28.4' rpds-py: '>=0.7.1' - url: https://packages.prefix.dev/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_1.conda hash: md5: a3cead9264b331b32fe8f0aabc967522 sha256: be992a99e589146f229c58fe5083e0b60551d774511c494f91fe011931bd7893 @@ -2432,7 +2432,7 @@ package: dependencies: python: '>=3.9' referencing: '>=0.31.0' - url: https://packages.prefix.dev/conda-forge/noarch/jsonschema-specifications-2024.10.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2024.10.1-pyhd8ed1ab_1.conda hash: md5: 3b519bc21bc80e60b456f1e62962a766 sha256: 37127133837444cf0e6d1a95ff5a505f8214ed4e89e8e9343284840e674c6891 @@ -2445,7 +2445,7 @@ package: dependencies: python: '>=3.9' referencing: '>=0.31.0' - url: https://packages.prefix.dev/conda-forge/noarch/jsonschema-specifications-2024.10.1-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2024.10.1-pyhd8ed1ab_1.conda hash: md5: 3b519bc21bc80e60b456f1e62962a766 sha256: 37127133837444cf0e6d1a95ff5a505f8214ed4e89e8e9343284840e674c6891 @@ -2465,7 +2465,7 @@ package: rfc3986-validator: '>0.1.0' uri-template: '' webcolors: '>=24.6.0' - url: https://packages.prefix.dev/conda-forge/noarch/jsonschema-with-format-nongpl-4.23.0-hd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-with-format-nongpl-4.23.0-hd8ed1ab_1.conda hash: md5: a5b1a8065857cc4bd8b7a38d063bb728 sha256: 6e0184530011961a0802fda100ecdfd4b0eca634ed94c37e553b72e21c26627d @@ -2485,7 +2485,7 @@ package: rfc3986-validator: '>0.1.0' uri-template: '' webcolors: '>=24.6.0' - url: https://packages.prefix.dev/conda-forge/noarch/jsonschema-with-format-nongpl-4.23.0-hd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-with-format-nongpl-4.23.0-hd8ed1ab_1.conda hash: md5: a5b1a8065857cc4bd8b7a38d063bb728 sha256: 6e0184530011961a0802fda100ecdfd4b0eca634ed94c37e553b72e21c26627d @@ -2516,7 +2516,7 @@ package: sphinx-thebe: '>=0.3.1,<1' sphinx-togglebutton: '' sphinxcontrib-bibtex: '>=2.5.0,<3' - url: https://packages.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 @@ -2547,7 +2547,7 @@ package: sphinx-thebe: '>=0.3.1,<1' sphinx-togglebutton: '' sphinxcontrib-bibtex: '>=2.5.0,<3' - url: https://packages.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 @@ -2567,7 +2567,7 @@ package: pyyaml: '' sqlalchemy: '>=1.3.12,<3' tabulate: '' - url: https://packages.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 @@ -2587,7 +2587,7 @@ package: pyyaml: '' sqlalchemy: '>=1.3.12,<3' tabulate: '' - url: https://packages.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 @@ -2601,7 +2601,7 @@ package: importlib-metadata: '>=4.8.3' jupyter_server: '>=1.1.2' python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/jupyter-lsp-2.2.5-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter-lsp-2.2.5-pyhd8ed1ab_1.conda hash: md5: 0b4c3908e5a38ea22ebb98ee5888c768 sha256: 1565c8b1423a37fca00fe0ab2a17cd8992c2ecf23e7867a1c9f6f86a9831c196 @@ -2615,7 +2615,7 @@ package: importlib-metadata: '>=4.8.3' jupyter_server: '>=1.1.2' python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/jupyter-lsp-2.2.5-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter-lsp-2.2.5-pyhd8ed1ab_1.conda hash: md5: 0b4c3908e5a38ea22ebb98ee5888c768 sha256: 1565c8b1423a37fca00fe0ab2a17cd8992c2ecf23e7867a1c9f6f86a9831c196 @@ -2633,7 +2633,7 @@ package: pyzmq: '>=23.0' tornado: '>=6.2' traitlets: '>=5.3' - url: https://packages.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 @@ -2651,7 +2651,7 @@ package: pyzmq: '>=23.0' tornado: '>=6.2' traitlets: '>=5.3' - url: https://packages.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 @@ -2666,7 +2666,7 @@ package: platformdirs: '>=2.5' python: '>=3.8' traitlets: '>=5.3' - url: https://packages.prefix.dev/conda-forge/noarch/jupyter_core-5.7.2-pyh31011fe_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.7.2-pyh31011fe_1.conda hash: md5: 0a2980dada0dd7fd0998f0342308b1b1 sha256: 732b1e8536bc22a5a174baa79842d79db2f4956d90293dd82dc1b3f6099bcccd @@ -2683,7 +2683,7 @@ package: python: '>=3.8' pywin32: '>=300' traitlets: '>=5.3' - url: https://packages.prefix.dev/conda-forge/noarch/jupyter_core-5.7.2-pyh5737063_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.7.2-pyh5737063_1.conda hash: md5: 46d87d1c0ea5da0aae36f77fa406e20d sha256: 7c903b2d62414c3e8da1f78db21f45b98de387aae195f8ca959794113ba4b3fd @@ -2696,14 +2696,14 @@ package: dependencies: jsonschema-with-format-nongpl: '>=4.18.0' packaging: '' - python: '' + python: '>=3.9' python-json-logger: '>=2.0.4' pyyaml: '>=5.3' referencing: '' rfc3339-validator: '' rfc3986-validator: '>=0.1.1' traitlets: '>=5.3' - url: https://packages.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 @@ -2716,14 +2716,14 @@ package: dependencies: jsonschema-with-format-nongpl: '>=4.18.0' packaging: '' - python: '' + python: '>=3.9' python-json-logger: '>=2.0.4' pyyaml: '>=5.3' referencing: '' rfc3339-validator: '' rfc3986-validator: '>=0.1.1' traitlets: '>=5.3' - url: https://packages.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 @@ -2753,7 +2753,7 @@ package: tornado: '>=6.2.0' traitlets: '>=5.6.0' websocket-client: '>=1.7' - url: https://packages.prefix.dev/conda-forge/noarch/jupyter_server-2.15.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.15.0-pyhd8ed1ab_0.conda hash: md5: 6ba8c206b5c6f52b82435056cf74ee46 sha256: be5f9774065d94c4a988f53812b83b67618bec33fcaaa005a98067d506613f8a @@ -2783,7 +2783,7 @@ package: tornado: '>=6.2.0' traitlets: '>=5.6.0' websocket-client: '>=1.7' - url: https://packages.prefix.dev/conda-forge/noarch/jupyter_server-2.15.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.15.0-pyhd8ed1ab_0.conda hash: md5: 6ba8c206b5c6f52b82435056cf74ee46 sha256: be5f9774065d94c4a988f53812b83b67618bec33fcaaa005a98067d506613f8a @@ -2796,7 +2796,7 @@ package: dependencies: python: '>=3.9' terminado: '>=0.8.3' - url: https://packages.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 @@ -2809,7 +2809,7 @@ package: dependencies: python: '>=3.9' terminado: '>=0.8.3' - url: https://packages.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 @@ -2836,7 +2836,7 @@ package: tomli: '>=1.2.2' tornado: '>=6.2.0' traitlets: '' - url: https://packages.prefix.dev/conda-forge/noarch/jupyterlab-4.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.4.0-pyhd8ed1ab_0.conda hash: md5: 2da6a5e2c788a1b1998b24c50a18572a sha256: 4d225d094d1e5a8e95c2bde0f9c9bbc5aac52d9abf7fd597dd7af0f467b44347 @@ -2863,7 +2863,7 @@ package: tomli: '>=1.2.2' tornado: '>=6.2.0' traitlets: '' - url: https://packages.prefix.dev/conda-forge/noarch/jupyterlab-4.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.4.0-pyhd8ed1ab_0.conda hash: md5: 2da6a5e2c788a1b1998b24c50a18572a sha256: 4d225d094d1e5a8e95c2bde0f9c9bbc5aac52d9abf7fd597dd7af0f467b44347 @@ -2876,7 +2876,7 @@ package: dependencies: pygments: '>=2.4.1,<3' python: '>=3.9' - url: https://packages.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 @@ -2889,7 +2889,7 @@ package: dependencies: pygments: '>=2.4.1,<3' python: '>=3.9' - url: https://packages.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 @@ -2909,7 +2909,7 @@ package: packaging: '>=21.3' python: '>=3.9' requests: '>=2.31' - url: https://packages.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 @@ -2929,7 +2929,7 @@ package: packaging: '>=21.3' python: '>=3.9' requests: '>=2.31' - url: https://packages.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 @@ -2941,7 +2941,7 @@ package: platform: linux-64 dependencies: python: '>=3.7' - url: https://packages.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 @@ -2953,7 +2953,7 @@ package: platform: win-64 dependencies: python: '>=3.7' - url: https://packages.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 @@ -2971,7 +2971,7 @@ package: python: '>=3.9' pyyaml: '' tomli: '' - url: https://packages.prefix.dev/conda-forge/noarch/jupytext-1.17.0-pyhbbac1ac_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupytext-1.17.0-pyhbbac1ac_0.conda hash: md5: d8e9471f69b3e7a7d233d43649b5061b sha256: 488a50bdca76b1c450323ea1f8213366f70130aff35ff87277ffa97107fbed2b @@ -2989,7 +2989,7 @@ package: python: '>=3.9' pyyaml: '' tomli: '' - url: https://packages.prefix.dev/conda-forge/noarch/jupytext-1.17.0-pyhbbac1ac_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupytext-1.17.0-pyhbbac1ac_0.conda hash: md5: d8e9471f69b3e7a7d233d43649b5061b sha256: 488a50bdca76b1c450323ea1f8213366f70130aff35ff87277ffa97107fbed2b @@ -3001,7 +3001,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=10.3.0' - url: https://packages.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 @@ -3017,7 +3017,7 @@ package: libstdcxx: '>=13' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://packages.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 @@ -3033,7 +3033,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -3049,7 +3049,7 @@ package: libgcc-ng: '>=12' libstdcxx-ng: '>=12' openssl: '>=3.3.1,<4.0a0' - url: https://packages.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 @@ -3064,7 +3064,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -3077,7 +3077,7 @@ package: dependencies: python: '' six: '' - url: https://packages.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 @@ -3090,7 +3090,7 @@ package: dependencies: python: '' six: '' - url: https://packages.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 @@ -3105,7 +3105,7 @@ package: libgcc: '>=13' libjpeg-turbo: '>=3.0.0,<4.0a0' libtiff: '>=4.7.0,<4.8.0a0' - url: https://packages.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 @@ -3121,7 +3121,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -3133,7 +3133,7 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://packages.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-h712a8e2_4.conda hash: md5: 01f8d123c96816249efd255a31ad7712 sha256: db73f38155d901a610b2320525b9dd3b31e4949215c870685fd92ea61b5ce472 @@ -3146,7 +3146,7 @@ package: dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://packages.prefix.dev/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2 hash: md5: 76bbff344f0134279f225174e9064c8f sha256: cb55f36dcd898203927133280ae1dc643368af041a48bcf7c026acb7c47b0c12 @@ -3159,7 +3159,7 @@ package: dependencies: vc: '>=14.2,<15' vs2015_runtime: '>=14.29.30037' - url: https://packages.prefix.dev/conda-forge/win-64/lerc-4.0.0-h63175ca_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/win-64/lerc-4.0.0-h63175ca_0.tar.bz2 hash: md5: 1900cb3cab5055833cfddb0ba233b074 sha256: f4f39d7f6a2f9b407f8fb567a6c25755270421731d70f0ff331f5de4fa367488 @@ -3172,7 +3172,7 @@ package: dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://packages.prefix.dev/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda hash: md5: 5e97e271911b8b2001a8b71860c32faa sha256: 2ef420a655528bca9d269086cf33b7e90d2f54ad941b437fb1ed5eca87cee017 @@ -3186,7 +3186,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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.3-h63175ca_0.conda hash: md5: 8723000f6ffdbdaef16025f0a01b64c5 sha256: f5c293d3cfc00f71dfdb64bd65ab53625565f8778fc2d5790575bef238976ebf @@ -3198,7 +3198,7 @@ package: platform: linux-64 dependencies: mkl: '>=2024.2.2,<2025.0a0' - url: https://packages.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 @@ -3210,7 +3210,7 @@ package: platform: win-64 dependencies: mkl: 2024.2.2 - url: https://packages.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 @@ -3223,7 +3223,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://packages.prefix.dev/conda-forge/linux-64/libbrotlicommon-1.1.0-hb9d3cd8_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.1.0-hb9d3cd8_2.conda hash: md5: 41b599ed2b02abcfdd84302bff174b23 sha256: d9db2de60ea917298e658143354a530e9ca5f9c63471c65cf47ab39fd2f429e3 @@ -3237,7 +3237,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/libbrotlicommon-1.1.0-h2466b09_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/libbrotlicommon-1.1.0-h2466b09_2.conda hash: md5: f7dc9a8f21d74eab46456df301da2972 sha256: 33e8851c6cc8e2d93059792cd65445bfe6be47e4782f826f01593898ec95764c @@ -3251,7 +3251,7 @@ package: __glibc: '>=2.17,<3.0.a0' libbrotlicommon: 1.1.0 libgcc: '>=13' - url: https://packages.prefix.dev/conda-forge/linux-64/libbrotlidec-1.1.0-hb9d3cd8_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.1.0-hb9d3cd8_2.conda hash: md5: 9566f0bd264fbd463002e759b8a82401 sha256: 2892d512cad096cb03f1b66361deeab58b64e15ba525d6592bb6d609e7045edf @@ -3266,7 +3266,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/libbrotlidec-1.1.0-h2466b09_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/libbrotlidec-1.1.0-h2466b09_2.conda hash: md5: 9bae75ce723fa34e98e239d21d752a7e sha256: 234fc92f4c4f1cf22f6464b2b15bfc872fa583c74bf3ab9539ff38892c43612f @@ -3280,7 +3280,7 @@ package: __glibc: '>=2.17,<3.0.a0' libbrotlicommon: 1.1.0 libgcc: '>=13' - url: https://packages.prefix.dev/conda-forge/linux-64/libbrotlienc-1.1.0-hb9d3cd8_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlienc-1.1.0-hb9d3cd8_2.conda hash: md5: 06f70867945ea6a84d35836af780f1de sha256: 779f58174e99de3600e939fa46eddb453ec5d3c60bb46cdaa8b4c127224dbf29 @@ -3295,7 +3295,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/libbrotlienc-1.1.0-h2466b09_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/libbrotlienc-1.1.0-h2466b09_2.conda hash: md5: 85741a24d97954a991e55e34bc55990b sha256: 3d0dd7ef505962f107b7ea8f894e0b3dd01bf46852b362c8a7fc136b039bc9e1 @@ -3307,7 +3307,7 @@ package: platform: linux-64 dependencies: libblas: 3.9.0 - url: https://packages.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 @@ -3319,7 +3319,7 @@ package: platform: win-64 dependencies: libblas: 3.9.0 - url: https://packages.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 @@ -3338,7 +3338,7 @@ package: libzlib: '>=1.3.1,<2.0a0' openssl: '>=3.4.1,<4.0a0' zstd: '>=1.5.7,<1.6.0a0' - url: https://packages.prefix.dev/conda-forge/linux-64/libcurl-8.13.0-h332b0f4_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.13.0-h332b0f4_0.conda hash: md5: cbdc92ac0d93fe3c796e36ad65c7905c sha256: 38e528acfaa0276b7052f4de44271ff9293fdb84579650601a8c49dac171482a @@ -3355,7 +3355,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/libcurl-8.13.0-h88aaa65_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/libcurl-8.13.0-h88aaa65_0.conda hash: md5: c9cf6eb842decbb66c2f34e72c3580d6 sha256: 185553b37c0299b7a15dc66a7a7e2a0d421adaac784ec9298a0b2ad745116ca5 @@ -3368,7 +3368,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://packages.prefix.dev/conda-forge/linux-64/libdeflate-1.23-h4ddbbb0_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.23-h4ddbbb0_0.conda hash: md5: 8dfae1d2e74767e9ce36d5fa0d8605db sha256: 511d801626d02f4247a04fff957cc6e9ec4cc7e8622bd9acd076bcdc5de5fe66 @@ -3382,7 +3382,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/libdeflate-1.23-h9062f6e_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/libdeflate-1.23-h9062f6e_0.conda hash: md5: a9624935147a25b06013099d3038e467 sha256: 96c47725a8258159295996ea2758fa0ff9bea330e72b59641642e16be8427ce8 @@ -3395,7 +3395,7 @@ package: dependencies: numpy: '' python: '>=3.10' - url: https://packages.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 @@ -3408,7 +3408,7 @@ package: dependencies: numpy: '' python: '>=3.10' - url: https://packages.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 @@ -3422,7 +3422,7 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' ncurses: '>=6.5,<7.0a0' - url: https://packages.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 @@ -3434,7 +3434,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://packages.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 @@ -3447,7 +3447,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://packages.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 @@ -3461,7 +3461,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -3474,7 +3474,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://packages.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 @@ -3488,7 +3488,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -3501,7 +3501,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' _openmp_mutex: '>=4.5' - url: https://packages.prefix.dev/conda-forge/linux-64/libgcc-14.2.0-h767d61c_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-14.2.0-h767d61c_2.conda hash: md5: ef504d1acbd74b7cc6849ef8af47dd03 sha256: 3a572d031cb86deb541d15c1875aaa097baefc0c580b54dc61f5edab99215792 @@ -3514,7 +3514,7 @@ package: dependencies: _openmp_mutex: '>=4.5' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' - url: https://packages.prefix.dev/conda-forge/win-64/libgcc-14.2.0-h1383e82_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/libgcc-14.2.0-h1383e82_2.conda hash: md5: 4a74c1461a0ba47a3346c04bdccbe2ad sha256: fddf2fc037bc95adb3b369e8866da8a71b6a67ebcfc4d7035ac4208309dc9e72 @@ -3526,7 +3526,7 @@ package: platform: linux-64 dependencies: libgcc: 14.2.0 - url: https://packages.prefix.dev/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_2.conda hash: md5: a2222a6ada71fb478682efe483ce0f92 sha256: fb7558c328b38b2f9d2e412c48da7890e7721ba018d733ebdfea57280df01904 @@ -3538,7 +3538,7 @@ package: platform: linux-64 dependencies: libgfortran5: 14.2.0 - url: https://packages.prefix.dev/conda-forge/linux-64/libgfortran-14.2.0-h69a702a_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-14.2.0-h69a702a_2.conda hash: md5: fb54c4ea68b460c278d26eea89cfbcc3 sha256: e05263e8960da03c341650f2a3ffa4ccae4e111cb198e8933a2908125459e5a6 @@ -3551,7 +3551,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14.2.0' - url: https://packages.prefix.dev/conda-forge/linux-64/libgfortran5-14.2.0-hf1ad2bd_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-14.2.0-hf1ad2bd_2.conda hash: md5: 556a4fdfac7287d349b8f09aba899693 sha256: c17b7cf3073a1f4e1f34d50872934fa326346e104d3c445abc1e62481ad6085c @@ -3563,7 +3563,7 @@ package: platform: win-64 dependencies: libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' - url: https://packages.prefix.dev/conda-forge/win-64/libgomp-14.2.0-h1383e82_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/libgomp-14.2.0-h1383e82_2.conda hash: md5: dd6b1ab49e28bcb6154cd131acec985b sha256: 674ec5f1bf319eac98d0d6ecb9c38e0192f3cf41969a5621d62a7e695e1aa9f3 @@ -3578,7 +3578,7 @@ package: libgcc: '>=13' libstdcxx: '>=13' libxml2: '>=2.13.4,<2.14.0a0' - url: https://packages.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 @@ -3594,7 +3594,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -3607,7 +3607,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://packages.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 @@ -3621,7 +3621,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -3633,7 +3633,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://packages.prefix.dev/conda-forge/linux-64/libjpeg-turbo-3.0.0-hd590300_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libjpeg-turbo-3.0.0-hd590300_1.conda hash: md5: ea25936bb4080d843790b586850f82b8 sha256: b954e09b7e49c2f2433d6f3bb73868eda5e378278b0f8c1dd10a7ef090e14f2f @@ -3647,7 +3647,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/libjpeg-turbo-3.0.0-hcfcfb64_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/libjpeg-turbo-3.0.0-hcfcfb64_1.conda hash: md5: 3f1b948619c45b1ca714d60c7389092c sha256: 4e7808e3098b4b4ed7e287f63bb24f9045cc4d95bfd39f0db870fc2837d74dff @@ -3659,7 +3659,7 @@ package: platform: linux-64 dependencies: libblas: 3.9.0 - url: https://packages.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 @@ -3671,7 +3671,7 @@ package: platform: win-64 dependencies: libblas: 3.9.0 - url: https://packages.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 @@ -3684,7 +3684,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://packages.prefix.dev/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_0.conda hash: md5: 0e87378639676987af32fee53ba32258 sha256: f4f21dfc54b08d462f707b771ecce3fa9bc702a2a05b55654f64154f48b141ef @@ -3698,7 +3698,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/liblzma-5.8.1-h2466b09_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/liblzma-5.8.1-h2466b09_0.conda hash: md5: 8d5cb0016b645d6688e2ff57c5d51302 sha256: 1477e9bff05318f3129d37be0e64c76cce0973c4b8c73d13a467d0b7f03d157c @@ -3716,7 +3716,7 @@ package: libstdcxx: '>=13' libzlib: '>=1.3.1,<2.0a0' openssl: '>=3.3.2,<4.0a0' - url: https://packages.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 @@ -3728,7 +3728,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://packages.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 @@ -3742,7 +3742,7 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' libzlib: '>=1.3.1,<2.0a0' - url: https://packages.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.47-h943b412_0.conda hash: md5: 55199e2ae2c3651f6f9b2a447b47bdc9 sha256: 23367d71da58c9a61c8cbd963fcffb92768d4ae5ffbef9a47cdf1f54f98c5c36 @@ -3757,7 +3757,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/libpng-1.6.47-had7236b_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/libpng-1.6.47-had7236b_0.conda hash: md5: 7d717163d9dab337c65f2bf21a676b8f sha256: cf8a594b697de103025dcae2c917ec9c100609caf7c917a94c64a683cb1db1ac @@ -3775,7 +3775,7 @@ package: libgfortran5: '>=13.3.0' liblzma: '>=5.6.3,<6.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://packages.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 @@ -3787,7 +3787,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://packages.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 @@ -3801,7 +3801,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -3815,7 +3815,7 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' libzlib: '>=1.3.1,<2.0a0' - url: https://packages.prefix.dev/conda-forge/linux-64/libsqlite-3.49.1-hee588c1_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.49.1-hee588c1_2.conda hash: md5: 962d6ac93c30b1dfc54c9cccafd1003e sha256: a086289bf75c33adc1daed3f1422024504ffb5c3c8b3285c49f025c29708ed16 @@ -3829,7 +3829,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/libsqlite-3.49.1-h67fdade_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.49.1-h67fdade_2.conda hash: md5: b58b66d4ad1aaf1c2543cbbd6afb1a59 sha256: c092d42d00fd85cf609cc58574ba2b03c141af5762283f36f5dd445ef7c0f4fe @@ -3844,7 +3844,7 @@ package: libgcc: '>=13' libzlib: '>=1.3.1,<2.0a0' openssl: '>=3.4.0,<4.0a0' - url: https://packages.prefix.dev/conda-forge/linux-64/libssh2-1.11.1-hf672d98_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.1-hf672d98_0.conda hash: md5: be2de152d8073ef1c01b7728475f2fe7 sha256: 0407ac9fda2bb67e11e357066eff144c845801d00b5f664efbc48813af1e7bb9 @@ -3860,7 +3860,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/libssh2-1.11.1-he619c9f_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/libssh2-1.11.1-he619c9f_0.conda hash: md5: af0cbf037dd614c34399b3b3e568c557 sha256: 4b3256bd2b4e4b3183005d3bd8826d651eccd1a4740b70625afa2b7e7123d191 @@ -3873,7 +3873,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: 14.2.0 - url: https://packages.prefix.dev/conda-forge/linux-64/libstdcxx-14.2.0-h8f9b012_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-14.2.0-h8f9b012_2.conda hash: md5: a78c856b6dc6bf4ea8daeb9beaaa3fb0 sha256: 8f5bd92e4a24e1d35ba015c5252e8f818898478cb3bc50bd8b12ab54707dc4da @@ -3885,7 +3885,7 @@ package: platform: linux-64 dependencies: libstdcxx: 14.2.0 - url: https://packages.prefix.dev/conda-forge/linux-64/libstdcxx-ng-14.2.0-h4852527_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-14.2.0-h4852527_2.conda hash: md5: c75da67f045c2627f59e6fcb5f4e3a9b sha256: e86f38b007cf97cc2c67cd519f2de12a313c4ee3f5ef11652ad08932a5e34189 @@ -3906,7 +3906,7 @@ package: libwebp-base: '>=1.4.0,<2.0a0' libzlib: '>=1.3.1,<2.0a0' zstd: '>=1.5.6,<1.6.0a0' - url: https://packages.prefix.dev/conda-forge/linux-64/libtiff-4.7.0-hd9ff511_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.7.0-hd9ff511_3.conda hash: md5: 0ea6510969e1296cc19966fad481f6de sha256: b224e16b88d76ea95e4af56e2bc638c603bd26a770b98d117d04541d3aafa002 @@ -3926,7 +3926,7 @@ package: vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' zstd: '>=1.5.6,<1.6.0a0' - url: https://packages.prefix.dev/conda-forge/win-64/libtiff-4.7.0-h797046b_3.conda + url: https://conda.anaconda.org/conda-forge/win-64/libtiff-4.7.0-h797046b_3.conda hash: md5: defed79ff7a9164ad40320e3f116a138 sha256: c363a8baba4ce12b8f01f0ab74fe8b0dc83facd89c6604f4a191084923682768 @@ -3938,7 +3938,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://packages.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 @@ -3951,7 +3951,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://packages.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 @@ -3965,7 +3965,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -3977,7 +3977,7 @@ package: platform: win-64 dependencies: ucrt: '' - url: https://packages.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 @@ -3993,7 +3993,7 @@ package: pthread-stubs: '' xorg-libxau: '>=1.0.11,<2.0a0' xorg-libxdmcp: '' - url: https://packages.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 @@ -4010,7 +4010,7 @@ package: ucrt: '>=10.0.20348.0' xorg-libxau: '>=1.0.11,<2.0a0' xorg-libxdmcp: '' - url: https://packages.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 @@ -4022,7 +4022,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://packages.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 @@ -4038,7 +4038,7 @@ package: libiconv: '>=1.18,<2.0a0' liblzma: '>=5.8.1,<6.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://packages.prefix.dev/conda-forge/linux-64/libxml2-2.13.7-h81593ed_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.13.7-h81593ed_1.conda hash: md5: 0619e8fc4c8025a908ea3a3422d3b775 sha256: c4f59563e017eba378ea843be5ebde4b0546c72bbe4c1e43b2b384379e827635 @@ -4054,7 +4054,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/libxml2-2.13.7-h442d1da_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/libxml2-2.13.7-h442d1da_1.conda hash: md5: c14ff7f05e57489df9244917d2b55763 sha256: 0a013527f784f4702dc18460070d8ec79d1ebb5087dd9e678d6afbeaca68d2ac @@ -4067,7 +4067,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://packages.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 @@ -4081,7 +4081,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -4094,7 +4094,7 @@ package: dependencies: python: '>=3.9' uc-micro-py: '' - url: https://packages.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 @@ -4107,36 +4107,36 @@ package: dependencies: python: '>=3.9' uc-micro-py: '' - url: https://packages.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.2 + version: 20.1.3 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://packages.prefix.dev/conda-forge/linux-64/llvm-openmp-20.1.2-h024ca30_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/llvm-openmp-20.1.3-h024ca30_0.conda hash: - md5: 39a3992c2624b8d8e6b4994dedf3102a - sha256: 2c70e18a5bcb3fc2925e5d2c2c39559253d19e38c111afc91885f0dee4540fb1 + md5: c721339ea8746513e42b1233b4bbdfb0 + sha256: 4327a463f43b0d95ca0e5f92094383ef53fd2a91d649debfc531b941fe44fd48 category: main optional: false - name: llvm-openmp - version: 20.1.2 + version: 20.1.3 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/llvm-openmp-20.1.2-h30eaf37_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/llvm-openmp-20.1.3-h30eaf37_0.conda hash: - md5: d5a4f53b65d7d1d53104ba24107eda04 - sha256: 3ba2b892d6e153599512fa7fe2791125ff1b7dd6740469f74aff2d1b48edf299 + md5: 183c102075722a7aa993f94de1d135f2 + sha256: 27326e733ce7ad87054a409c02b829594cc6276232b987eb135cd1a225eac669 category: main optional: false - name: locket @@ -4145,7 +4145,7 @@ package: platform: linux-64 dependencies: python: '>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*' - url: https://packages.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 @@ -4157,7 +4157,7 @@ package: platform: win-64 dependencies: python: '>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*' - url: https://packages.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 @@ -4171,7 +4171,7 @@ package: mdurl: '>=0.1,<1' python: '>=3.7' typing_extensions: '>=3.7.4' - url: https://packages.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 @@ -4185,7 +4185,7 @@ package: mdurl: '>=0.1,<1' python: '>=3.7' typing_extensions: '>=3.7.4' - url: https://packages.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 @@ -4200,7 +4200,7 @@ package: libgcc: '>=13' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://packages.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 @@ -4216,7 +4216,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -4243,7 +4243,7 @@ package: python-dateutil: '>=2.7' python_abi: 3.12.* tk: '>=8.6.13,<8.7.0a0' - url: https://packages.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 @@ -4270,7 +4270,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -4283,7 +4283,7 @@ package: dependencies: python: '>=3.9' traitlets: '' - url: https://packages.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 @@ -4296,7 +4296,7 @@ package: dependencies: python: '>=3.9' traitlets: '' - url: https://packages.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 @@ -4308,7 +4308,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -4320,7 +4320,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -4333,7 +4333,7 @@ package: dependencies: markdown-it-py: '>=1.0.0,<4.0.0' python: '>=3.9' - url: https://packages.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 @@ -4346,7 +4346,7 @@ package: dependencies: markdown-it-py: '>=1.0.0,<4.0.0' python: '>=3.9' - url: https://packages.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 @@ -4358,7 +4358,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -4370,7 +4370,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -4384,7 +4384,7 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' libstdcxx: '>=13' - url: https://packages.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 @@ -4395,9 +4395,9 @@ package: manager: conda platform: linux-64 dependencies: - python: '' + python: '>=3.9' typing_extensions: '' - url: https://packages.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 @@ -4408,9 +4408,9 @@ package: manager: conda platform: win-64 dependencies: - python: '' + python: '>=3.9' typing_extensions: '' - url: https://packages.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 @@ -4421,10 +4421,10 @@ package: manager: conda platform: linux-64 dependencies: - _openmp_mutex: '>=4.5' + _openmp_mutex: '*' llvm-openmp: '>=19.1.2' tbb: 2021.* - url: https://packages.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 @@ -4437,7 +4437,7 @@ package: dependencies: intel-openmp: 2024.* tbb: 2021.* - url: https://packages.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 @@ -4453,7 +4453,7 @@ package: libstdcxx: '>=13' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://packages.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.0-py312h68727a3_0.conda hash: md5: 5c9b020a3f86799cdc6115e55df06146 sha256: 4bc53333774dea1330643b7e23aa34fd6880275737fc2e07491795872d3af8dd @@ -4469,7 +4469,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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.0-py312hd5eb7cc_0.conda hash: md5: ff4f1e63a6438a06d1ab259936e5c2ac sha256: 3fd45d9c0830e931e34990cb90e88ba53cc7f89fce69fc7d1a8289639d363e85 @@ -4480,7 +4480,7 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://packages.prefix.dev/conda-forge/linux-64/mumps-include-5.7.3-h82cca05_9.conda + url: https://conda.anaconda.org/conda-forge/linux-64/mumps-include-5.7.3-h82cca05_9.conda hash: md5: 8207b975a176b5c08937bdeeeeecca20 sha256: bb41dda1084bc29c79bdb1da693295c5bc55da223fb74c4ef8487a81964cbf48 @@ -4501,7 +4501,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://packages.prefix.dev/conda-forge/linux-64/mumps-seq-5.7.3-hb5d91fa_9.conda + url: https://conda.anaconda.org/conda-forge/linux-64/mumps-seq-5.7.3-hb5d91fa_9.conda hash: md5: 33982046ecd8eed02447ddd7810aad37 sha256: 196b227df4635ce4294d40d885fa231d8d037839a95a1eee8923319985276bbe @@ -4518,7 +4518,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/mumps-seq-5.7.3-hbaa6519_9.conda + url: https://conda.anaconda.org/conda-forge/win-64/mumps-seq-5.7.3-hbaa6519_9.conda hash: md5: 3a30d32db33cc226f7a2c78d485b0503 sha256: 953c384a1b37b93bf7a2ee39b1c5763887f4d63ed220b65362103d6e6b4440a4 @@ -4530,7 +4530,7 @@ package: platform: linux-64 dependencies: python: '' - url: https://packages.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 hash: md5: 2ba8498c1018c1e9c61eb99b973dfe19 sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 @@ -4542,7 +4542,7 @@ package: platform: win-64 dependencies: python: '' - url: https://packages.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 hash: md5: 2ba8498c1018c1e9c61eb99b973dfe19 sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 @@ -4560,11 +4560,11 @@ package: myst-parser: '>=1.0.0' nbclient: '' nbformat: '>=5.0' - python: '' + python: '>=3.9' pyyaml: '' sphinx: '>=5' typing_extensions: '' - url: https://packages.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 @@ -4582,11 +4582,11 @@ package: myst-parser: '>=1.0.0' nbclient: '' nbformat: '>=5.0' - python: '' + python: '>=3.9' pyyaml: '' sphinx: '>=5' typing_extensions: '' - url: https://packages.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 @@ -4605,7 +4605,7 @@ package: pyyaml: '' sphinx: '>=5,<7' typing-extensions: '' - url: https://packages.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 @@ -4624,7 +4624,7 @@ package: pyyaml: '' sphinx: '>=5,<7' typing-extensions: '' - url: https://packages.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 @@ -4640,7 +4640,7 @@ package: nbformat: '>=5.1' python: '>=3.8' traitlets: '>=5.4' - url: https://packages.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 @@ -4656,7 +4656,7 @@ package: nbformat: '>=5.1' python: '>=3.8' traitlets: '>=5.4' - url: https://packages.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 @@ -4669,7 +4669,7 @@ package: dependencies: nbconvert-core: ==7.16.6 nbconvert-pandoc: ==7.16.6 - url: https://packages.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 @@ -4682,7 +4682,7 @@ package: dependencies: nbconvert-core: ==7.16.6 nbconvert-pandoc: ==7.16.6 - url: https://packages.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 @@ -4707,9 +4707,9 @@ package: packaging: '' pandocfilters: '>=1.4.1' pygments: '>=2.4.1' - python: '' + python: '>=3.9' traitlets: '>=5.1' - url: https://packages.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 @@ -4734,9 +4734,9 @@ package: packaging: '' pandocfilters: '>=1.4.1' pygments: '>=2.4.1' - python: '' + python: '>=3.9' traitlets: '>=5.1' - url: https://packages.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 @@ -4749,7 +4749,7 @@ package: dependencies: nbconvert-core: ==7.16.6 pandoc: '' - url: https://packages.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 @@ -4762,7 +4762,7 @@ package: dependencies: nbconvert-core: ==7.16.6 pandoc: '' - url: https://packages.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 @@ -4778,7 +4778,7 @@ package: python: '>=3.9' python-fastjsonschema: '>=2.15' traitlets: '>=5.1' - url: https://packages.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 @@ -4794,7 +4794,7 @@ package: python: '>=3.9' python-fastjsonschema: '>=2.15' traitlets: '>=5.1' - url: https://packages.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 @@ -4807,7 +4807,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://packages.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 @@ -4819,7 +4819,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -4831,7 +4831,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -4848,7 +4848,7 @@ package: notebook-shim: '>=0.2,<0.3' python: '>=3.9' tornado: '>=6.2.0' - url: https://packages.prefix.dev/conda-forge/noarch/notebook-7.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/notebook-7.4.0-pyhd8ed1ab_0.conda hash: md5: 7e82caa4495c513bcfb33a159e1222d4 sha256: d3f70987bc1e1a20b122726a49a24e5e6f09d00c9862bb399cd1682cd59a1e1e @@ -4865,7 +4865,7 @@ package: notebook-shim: '>=0.2,<0.3' python: '>=3.9' tornado: '>=6.2.0' - url: https://packages.prefix.dev/conda-forge/noarch/notebook-7.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/notebook-7.4.0-pyhd8ed1ab_0.conda hash: md5: 7e82caa4495c513bcfb33a159e1222d4 sha256: d3f70987bc1e1a20b122726a49a24e5e6f09d00c9862bb399cd1682cd59a1e1e @@ -4878,7 +4878,7 @@ package: dependencies: jupyter_server: '>=1.8,<3' python: '>=3.9' - url: https://packages.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 @@ -4891,7 +4891,7 @@ package: dependencies: jupyter_server: '>=1.8,<3' python: '>=3.9' - url: https://packages.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 @@ -4910,7 +4910,7 @@ package: numpy: '>=1.24' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://packages.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 @@ -4929,7 +4929,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -4947,7 +4947,7 @@ package: libstdcxx-ng: '>=12' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://packages.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 @@ -4966,7 +4966,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -4983,7 +4983,7 @@ package: libstdcxx: '>=13' libtiff: '>=4.7.0,<4.8.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://packages.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 @@ -5000,7 +5000,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -5014,7 +5014,7 @@ package: __glibc: '>=2.17,<3.0.a0' ca-certificates: '' libgcc: '>=13' - url: https://packages.prefix.dev/conda-forge/linux-64/openssl-3.5.0-h7b32b05_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.5.0-h7b32b05_0.conda hash: md5: bb539841f2a3fde210f387d00ed4bb9d sha256: 38285d280f84f1755b7c54baf17eccf2e3e696287954ce0adca16546b85ee62c @@ -5029,7 +5029,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/openssl-3.5.0-ha4e3fda_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/openssl-3.5.0-ha4e3fda_0.conda hash: md5: 4ea7db75035eb8c13fa680bb90171e08 sha256: 43dd7f56da142ca83c614c8b0085589650ae9032b351a901c190e48eefc73675 @@ -5042,7 +5042,7 @@ package: dependencies: python: '>=3.9' typing_utils: '' - url: https://packages.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 @@ -5055,34 +5055,34 @@ package: dependencies: python: '>=3.9' typing_utils: '' - url: https://packages.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 category: dev optional: true - name: packaging - version: '24.2' + version: '25.0' manager: conda platform: linux-64 dependencies: python: '>=3.8' - url: https://packages.prefix.dev/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda + url: https://conda.anaconda.org/conda-forge/noarch/packaging-25.0-pyhd8ed1ab_0.conda hash: - md5: 3bfed7e6228ebf2f7b9eaa47f1b4e2aa - sha256: da157b19bcd398b9804c5c52fc000fcb8ab0525bdb9c70f95beaa0bb42f85af1 + md5: 4088c0d078e2f5092ddf824495186229 + sha256: f759df4f492ae481505dcceb3d4485a120ee798af26711c92de20944a1185621 category: main optional: false - name: packaging - version: '24.2' + version: '25.0' manager: conda platform: win-64 dependencies: python: '>=3.8' - url: https://packages.prefix.dev/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda + url: https://conda.anaconda.org/conda-forge/noarch/packaging-25.0-pyhd8ed1ab_0.conda hash: - md5: 3bfed7e6228ebf2f7b9eaa47f1b4e2aa - sha256: da157b19bcd398b9804c5c52fc000fcb8ab0525bdb9c70f95beaa0bb42f85af1 + md5: 4088c0d078e2f5092ddf824495186229 + sha256: f759df4f492ae481505dcceb3d4485a120ee798af26711c92de20944a1185621 category: main optional: false - name: pandas @@ -5099,7 +5099,7 @@ package: python-tzdata: '>=2022.7' python_abi: 3.12.* pytz: '>=2020.1' - url: https://packages.prefix.dev/conda-forge/linux-64/pandas-2.2.3-py312hf9745cd_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/pandas-2.2.3-py312hf9745cd_3.conda hash: md5: 2979458c23c7755683a0598fb33e7666 sha256: b0bed36b95757bbd269d30b2367536b802158bdf7947800ee7ae55089cfa8b9c @@ -5119,7 +5119,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/pandas-2.2.3-py312h72972c8_3.conda + url: https://conda.anaconda.org/conda-forge/win-64/pandas-2.2.3-py312h72972c8_3.conda hash: md5: 08b4650b022c9f3233d45f231fb9471f sha256: 86fe04c5f0dcae3644e3d2d892ddf6760d89eeb8fe1a31ef30290ac5a6a9f125 @@ -5130,7 +5130,7 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://packages.prefix.dev/conda-forge/linux-64/pandoc-3.6.4-ha770c72_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/pandoc-3.6.4-ha770c72_0.conda hash: md5: 53f2cd4128fa7053bb029bbeafbe3f2e sha256: 16cbcab8a6d9a0cef47b9d3ebeced8a1a75ee54d379649e6260a333d1b2f743c @@ -5141,7 +5141,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://packages.prefix.dev/conda-forge/win-64/pandoc-3.6.4-h57928b3_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/pandoc-3.6.4-h57928b3_0.conda hash: md5: dac005a8550579541a6b0b6a8f8c6ddc sha256: 02ab6b0c12596f5d8481f546a1fef6cd4e3a52ec59bc32c0fa3708106e30972e @@ -5153,7 +5153,7 @@ package: platform: linux-64 dependencies: python: '!=3.0,!=3.1,!=3.2,!=3.3' - url: https://packages.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 @@ -5165,7 +5165,7 @@ package: platform: win-64 dependencies: python: '!=3.0,!=3.1,!=3.2,!=3.3' - url: https://packages.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 @@ -5177,7 +5177,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -5189,7 +5189,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -5203,7 +5203,7 @@ package: locket: '' python: '>=3.9' toolz: '' - url: https://packages.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 @@ -5217,7 +5217,7 @@ package: locket: '' python: '>=3.9' toolz: '' - url: https://packages.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 @@ -5230,7 +5230,7 @@ package: dependencies: ptyprocess: '>=0.5' python: '>=3.9' - url: https://packages.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 @@ -5242,7 +5242,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -5254,7 +5254,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -5277,7 +5277,7 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* tk: '>=8.6.13,<8.7.0a0' - url: https://packages.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 @@ -5302,7 +5302,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -5316,7 +5316,7 @@ package: python: '>=3.9,<3.13.0a0' setuptools: '' wheel: '' - url: https://packages.prefix.dev/conda-forge/noarch/pip-25.0.1-pyh8b19718_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pip-25.0.1-pyh8b19718_0.conda hash: md5: 79b5c1440aedc5010f687048d9103628 sha256: 585940f09d87787f79f73ff5dff8eb2af8a67e5bec5eebf2f553cd26c840ba69 @@ -5330,7 +5330,7 @@ package: python: '>=3.9,<3.13.0a0' setuptools: '' wheel: '' - url: https://packages.prefix.dev/conda-forge/noarch/pip-25.0.1-pyh8b19718_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pip-25.0.1-pyh8b19718_0.conda hash: md5: 79b5c1440aedc5010f687048d9103628 sha256: 585940f09d87787f79f73ff5dff8eb2af8a67e5bec5eebf2f553cd26c840ba69 @@ -5342,7 +5342,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -5354,7 +5354,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -5365,8 +5365,8 @@ package: manager: conda platform: linux-64 dependencies: - python: '' - url: https://packages.prefix.dev/conda-forge/noarch/platformdirs-4.3.7-pyh29332c3_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.7-pyh29332c3_0.conda hash: md5: e57da6fe54bb3a5556cf36d199ff07d8 sha256: ae7d3e58224d53d6b59e1f5ac5809803bb1972f0ac4fb10cd9b8c87d4122d3e0 @@ -5377,8 +5377,8 @@ package: manager: conda platform: win-64 dependencies: - python: '' - url: https://packages.prefix.dev/conda-forge/noarch/platformdirs-4.3.7-pyh29332c3_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.7-pyh29332c3_0.conda hash: md5: e57da6fe54bb3a5556cf36d199ff07d8 sha256: ae7d3e58224d53d6b59e1f5ac5809803bb1972f0ac4fb10cd9b8c87d4122d3e0 @@ -5390,7 +5390,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_1.conda hash: md5: e9dcbce5f45f9ee500e728ae58b605b6 sha256: 122433fc5318816b8c69283aaf267c73d87aa2d09ce39f64c9805c9a3b264819 @@ -5402,7 +5402,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_1.conda hash: md5: e9dcbce5f45f9ee500e728ae58b605b6 sha256: 122433fc5318816b8c69283aaf267c73d87aa2d09ce39f64c9805c9a3b264819 @@ -5414,7 +5414,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/prometheus_client-0.21.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.21.1-pyhd8ed1ab_0.conda hash: md5: 3e01e386307acc60b2f89af0b2e161aa sha256: bc8f00d5155deb7b47702cb8370f233935704100dbc23e30747c161d1b6cf3ab @@ -5426,7 +5426,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/prometheus_client-0.21.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.21.1-pyhd8ed1ab_0.conda hash: md5: 3e01e386307acc60b2f89af0b2e161aa sha256: bc8f00d5155deb7b47702cb8370f233935704100dbc23e30747c161d1b6cf3ab @@ -5439,7 +5439,7 @@ package: dependencies: python: '>=3.9' wcwidth: '' - url: https://packages.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 @@ -5452,7 +5452,7 @@ package: dependencies: python: '>=3.9' wcwidth: '' - url: https://packages.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 @@ -5467,7 +5467,7 @@ package: libgcc: '>=13' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://packages.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 @@ -5483,7 +5483,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -5496,7 +5496,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://packages.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 @@ -5510,7 +5510,7 @@ package: libgcc: '>=13' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' ucrt: '>=10.0.20348.0' - url: https://packages.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 @@ -5522,7 +5522,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -5534,7 +5534,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -5546,7 +5546,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 +5562,7 @@ package: pyyaml: '>=3.01' setuptools: '' six: '' - url: https://packages.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 @@ -5578,7 +5578,7 @@ package: pyyaml: '>=3.01' setuptools: '' six: '' - url: https://packages.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 +5594,7 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* setuptools: '' - url: https://packages.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 @@ -5610,7 +5610,7 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* setuptools: '' - url: https://packages.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 @@ -5621,8 +5621,8 @@ package: manager: conda platform: linux-64 dependencies: - python: '' - url: https://packages.prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda hash: md5: 12c566707c80111f9799308d9e265aef sha256: 79db7928d13fab2d892592223d7570f5061c192f27b9febd1a418427b719acc6 @@ -5633,8 +5633,8 @@ package: manager: conda platform: win-64 dependencies: - python: '' - url: https://packages.prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda hash: md5: 12c566707c80111f9799308d9e265aef sha256: 79db7928d13fab2d892592223d7570f5061c192f27b9febd1a418427b719acc6 @@ -5651,7 +5651,7 @@ package: typing-extensions: '>=4.6.1' typing-inspection: '>=0.4.0' typing_extensions: '>=4.12.2' - url: https://packages.prefix.dev/conda-forge/noarch/pydantic-2.11.3-pyh3cfb1c2_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.11.3-pyh3cfb1c2_0.conda hash: md5: 3c6f7f8ae9b9c177ad91ccc187912756 sha256: 89183785b09ebe9f9e65710057d7c41e9d21d4a9ad05e068850e18669655d5a8 @@ -5668,7 +5668,7 @@ package: typing-extensions: '>=4.6.1' typing-inspection: '>=0.4.0' typing_extensions: '>=4.12.2' - url: https://packages.prefix.dev/conda-forge/noarch/pydantic-2.11.3-pyh3cfb1c2_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.11.3-pyh3cfb1c2_0.conda hash: md5: 3c6f7f8ae9b9c177ad91ccc187912756 sha256: 89183785b09ebe9f9e65710057d7c41e9d21d4a9ad05e068850e18669655d5a8 @@ -5684,7 +5684,7 @@ package: python: '' python_abi: 3.12.* typing-extensions: '>=4.6.0,!=4.7.0' - url: https://packages.prefix.dev/conda-forge/linux-64/pydantic-core-2.33.1-py312h3b7be25_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/pydantic-core-2.33.1-py312h3b7be25_0.conda hash: md5: 4767e28fcbf646ffc18ef4021534c415 sha256: 281dc40103c324309bf62cf9ed861f38e949b8b1da786f25e5ad199a86a67a6d @@ -5701,7 +5701,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/pydantic-core-2.33.1-py312hfe1d9c4_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/pydantic-core-2.33.1-py312hfe1d9c4_0.conda hash: md5: 08c86823811befb8a83b9f403815e6ab sha256: 67b51ddb720d738c3eee96e7998d7a5b99530893f373714555f4941b15d1bd70 @@ -5721,7 +5721,7 @@ package: python: '>=3.9' sphinx: '>=5.0' typing_extensions: '' - url: https://packages.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 @@ -5741,7 +5741,7 @@ package: python: '>=3.9' sphinx: '>=5.0' typing_extensions: '' - url: https://packages.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 @@ -5759,7 +5759,7 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* scipy: '>=0.13' - url: https://packages.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 @@ -5778,7 +5778,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -5790,7 +5790,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -5802,7 +5802,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -5819,11 +5819,11 @@ package: isort: '>=4.2.5,<7,!=5.13.0' mccabe: '>=0.6,<0.8' platformdirs: '>=2.2.0' - python: '' + python: '>=3.9' tomli: '>=1.1.0' tomlkit: '>=0.10.1' typing_extensions: '>=3.10.0' - url: https://packages.prefix.dev/conda-forge/noarch/pylint-3.3.6-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pylint-3.3.6-pyh29332c3_0.conda hash: md5: 8242cc62822cc8a17f53d24d4efa75f4 sha256: 3e3e35b2cbb4b1ca3063fc2d6f44a85ac189e0935f00ed8fbe8e4713c0d00b99 @@ -5840,11 +5840,11 @@ package: isort: '>=4.2.5,<7,!=5.13.0' mccabe: '>=0.6,<0.8' platformdirs: '>=2.2.0' - python: '' + python: '>=3.9' tomli: '>=1.1.0' tomlkit: '>=0.10.1' typing_extensions: '>=3.10.0' - url: https://packages.prefix.dev/conda-forge/noarch/pylint-3.3.6-pyh29332c3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pylint-3.3.6-pyh29332c3_0.conda hash: md5: 8242cc62822cc8a17f53d24d4efa75f4 sha256: 3e3e35b2cbb4b1ca3063fc2d6f44a85ac189e0935f00ed8fbe8e4713c0d00b99 @@ -5860,7 +5860,7 @@ package: pydiso: '>=0.1' python: '>=3.10' scipy: '>=1.8' - url: https://packages.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 @@ -5876,7 +5876,7 @@ package: pydiso: '>=0.1' python: '>=3.10' scipy: '>=1.8' - url: https://packages.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 @@ -5888,7 +5888,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -5900,7 +5900,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -5913,7 +5913,7 @@ package: dependencies: __unix: '' python: '>=3.9' - url: https://packages.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 @@ -5927,7 +5927,7 @@ package: __win: '' python: '>=3.9' win_inet_pton: '' - url: https://packages.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 @@ -5945,7 +5945,7 @@ package: pluggy: <2,>=1.5 python: '>=3.9' tomli: '>=1' - url: https://packages.prefix.dev/conda-forge/noarch/pytest-8.3.5-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pytest-8.3.5-pyhd8ed1ab_0.conda hash: md5: c3c9316209dec74a705a36797970c6be sha256: 963524de7340c56615583ba7b97a6beb20d5c56a59defb59724dc2a3105169c9 @@ -5963,7 +5963,7 @@ package: pluggy: <2,>=1.5 python: '>=3.9' tomli: '>=1' - url: https://packages.prefix.dev/conda-forge/noarch/pytest-8.3.5-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pytest-8.3.5-pyhd8ed1ab_0.conda hash: md5: c3c9316209dec74a705a36797970c6be sha256: 963524de7340c56615583ba7b97a6beb20d5c56a59defb59724dc2a3105169c9 @@ -5978,7 +5978,7 @@ package: pytest: '>=4.6' python: '>=3.9' toml: '' - url: https://packages.prefix.dev/conda-forge/noarch/pytest-cov-6.1.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pytest-cov-6.1.1-pyhd8ed1ab_0.conda hash: md5: 1e35d8f975bc0e984a19819aa91c440a sha256: 9961a1524f63d10bc29efdc52013ec06b0e95fb2619a250e250ff3618261d5cd @@ -5993,7 +5993,7 @@ package: pytest: '>=4.6' python: '>=3.9' toml: '' - url: https://packages.prefix.dev/conda-forge/noarch/pytest-cov-6.1.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pytest-cov-6.1.1-pyhd8ed1ab_0.conda hash: md5: 1e35d8f975bc0e984a19819aa91c440a sha256: 9961a1524f63d10bc29efdc52013ec06b0e95fb2619a250e250ff3618261d5cd @@ -6022,7 +6022,7 @@ package: readline: '>=8.2,<9.0a0' tk: '>=8.6.13,<8.7.0a0' tzdata: '' - url: https://packages.prefix.dev/conda-forge/linux-64/python-3.12.10-h9e4cc4f_0_cpython.conda + url: https://conda.anaconda.org/conda-forge/linux-64/python-3.12.10-h9e4cc4f_0_cpython.conda hash: md5: a41d26cd4d47092d683915d058380dec sha256: 4dc1da115805bd353bded6ab20ff642b6a15fcc72ac2f3de0e1d014ff3612221 @@ -6046,7 +6046,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/python-3.12.10-h3f84c4b_0_cpython.conda + url: https://conda.anaconda.org/conda-forge/win-64/python-3.12.10-h3f84c4b_0_cpython.conda hash: md5: 495e849ebc04562381539d25cf303a9f sha256: a791fa8f5ce68ab00543ecd3798bfa573db327902ccd5cb7598fd7e94ea194d3 @@ -6059,7 +6059,7 @@ package: dependencies: python: '>=3.9' six: '>=1.5' - url: https://packages.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 @@ -6072,7 +6072,7 @@ package: dependencies: python: '>=3.9' six: '>=1.5' - url: https://packages.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 @@ -6084,7 +6084,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -6096,7 +6096,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -6108,7 +6108,7 @@ package: platform: linux-64 dependencies: python: '>=3.6' - url: https://packages.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 @@ -6120,7 +6120,7 @@ package: platform: win-64 dependencies: python: '>=3.6' - url: https://packages.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 +6138,7 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* scipy: '>=1.8' - url: https://packages.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 @@ -6157,7 +6157,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -6169,7 +6169,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -6181,7 +6181,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -6192,7 +6192,7 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://packages.prefix.dev/conda-forge/linux-64/python_abi-3.12-6_cp312.conda + url: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.12-6_cp312.conda hash: md5: 95bd67b1113859774c30418e8481f9d8 sha256: 09aff7ca31d1dbee63a504dba89aefa079b7c13a50dae18e1fe40a40ea71063e @@ -6203,7 +6203,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://packages.prefix.dev/conda-forge/win-64/python_abi-3.12-6_cp312.conda + url: https://conda.anaconda.org/conda-forge/win-64/python_abi-3.12-6_cp312.conda hash: md5: fd9176ac032bea8da0cfcc6fa3f724f1 sha256: a36a7ba34e5e459da2ba89c3b4021798db26768562f01c00f07a6b33f4a16987 @@ -6215,7 +6215,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -6227,7 +6227,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -6243,7 +6243,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -6260,7 +6260,7 @@ package: vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' winpty: '' - url: https://packages.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 @@ -6276,7 +6276,7 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* yaml: '>=0.2.5,<0.3.0a0' - url: https://packages.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 @@ -6293,7 +6293,7 @@ package: vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' yaml: '>=0.2.5,<0.3.0a0' - url: https://packages.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 @@ -6311,7 +6311,7 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* zeromq: '>=4.3.5,<4.4.0a0' - url: https://packages.prefix.dev/conda-forge/linux-64/pyzmq-26.4.0-py312hbf22597_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/pyzmq-26.4.0-py312hbf22597_0.conda hash: md5: fa0ab7d5bee9efbc370e71bcb5da9856 sha256: 65a264837f189b0c69c5431ea8ef44e405c472fedba145b05055f284f08bc663 @@ -6329,7 +6329,7 @@ package: vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' zeromq: '>=4.3.5,<4.3.6.0a0' - url: https://packages.prefix.dev/conda-forge/win-64/pyzmq-26.4.0-py312hd7027bb_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/pyzmq-26.4.0-py312hd7027bb_0.conda hash: md5: ccfe948627071c03e36aa46d9e94bf12 sha256: 07fbf17632c6300e53550f829f2e10d2c6f68923aa139d0618eaeadf2d0043ae @@ -6342,7 +6342,7 @@ package: dependencies: libgcc: '>=13' ncurses: '>=6.5,<7.0a0' - url: https://packages.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 @@ -6357,7 +6357,7 @@ package: packaging: '' python: '>=3.9' requests: '' - url: https://packages.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 @@ -6372,7 +6372,7 @@ package: packaging: '' python: '>=3.9' requests: '' - url: https://packages.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 @@ -6384,10 +6384,10 @@ package: platform: linux-64 dependencies: attrs: '>=22.2.0' - python: '' + python: '>=3.9' rpds-py: '>=0.7.0' typing_extensions: '>=4.4.0' - url: https://packages.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 @@ -6399,10 +6399,10 @@ package: platform: win-64 dependencies: attrs: '>=22.2.0' - python: '' + python: '>=3.9' rpds-py: '>=0.7.0' typing_extensions: '>=4.4.0' - url: https://packages.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 @@ -6418,7 +6418,7 @@ package: idna: '>=2.5,<4' python: '>=3.9' urllib3: '>=1.21.1,<3' - url: https://packages.prefix.dev/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda hash: md5: a9b9368f3701a417eac9edbcae7cb737 sha256: d701ca1136197aa121bbbe0e8c18db6b5c94acbd041c2b43c70e5ae104e1d8ad @@ -6434,7 +6434,7 @@ package: idna: '>=2.5,<4' python: '>=3.9' urllib3: '>=1.21.1,<3' - url: https://packages.prefix.dev/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda hash: md5: a9b9368f3701a417eac9edbcae7cb737 sha256: d701ca1136197aa121bbbe0e8c18db6b5c94acbd041c2b43c70e5ae104e1d8ad @@ -6447,7 +6447,7 @@ package: dependencies: python: '>=3.9' six: '' - url: https://packages.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 @@ -6460,7 +6460,7 @@ package: dependencies: python: '>=3.9' six: '' - url: https://packages.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 @@ -6472,7 +6472,7 @@ package: platform: linux-64 dependencies: python: '' - url: https://packages.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 @@ -6484,7 +6484,7 @@ package: platform: win-64 dependencies: python: '' - url: https://packages.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 @@ -6499,7 +6499,7 @@ package: libgcc: '>=13' python: '' python_abi: 3.12.* - url: https://packages.prefix.dev/conda-forge/linux-64/rpds-py-0.24.0-py312h3b7be25_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/rpds-py-0.24.0-py312h3b7be25_0.conda hash: md5: 5f5c19cbbd3526fad9c8ca0cca3e7346 sha256: 10dad6a9d40e7c1856cb1f5f941ea06500610e13ee6ec4961fba59fccbaa0dc9 @@ -6515,7 +6515,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/rpds-py-0.24.0-py312hfe1d9c4_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/rpds-py-0.24.0-py312hfe1d9c4_0.conda hash: md5: c5fc315df43a26e2c1c0a6040cae12f6 sha256: bf12ad2fefb2b5c5496d794a5fa0f7a2672a6dcfa9d70b181b6bbd968ade6454 @@ -6535,7 +6535,7 @@ package: python_abi: 3.12.* scipy: '' threadpoolctl: '>=2.0.0' - url: https://packages.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 @@ -6555,7 +6555,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -6574,10 +6574,10 @@ package: libgfortran5: '>=13.3.0' liblapack: '>=3.9.0,<4.0a0' libstdcxx: '>=13' - numpy: '>=1.23.5' + numpy: <2.3 python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://packages.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 @@ -6591,13 +6591,13 @@ package: libblas: '>=3.9.0,<4.0a0' libcblas: '>=3.9.0,<4.0a0' liblapack: '>=3.9.0,<4.0a0' - numpy: '>=1.23.5' + numpy: <2.3 python: '>=3.12,<3.13.0a0' python_abi: 3.12.* ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -6610,7 +6610,7 @@ package: dependencies: __linux: '' python: '>=3.9' - url: https://packages.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 @@ -6624,7 +6624,7 @@ package: __win: '' python: '>=3.9' pywin32: '' - url: https://packages.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 @@ -6636,7 +6636,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/setuptools-78.1.0-pyhff2d567_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/setuptools-78.1.0-pyhff2d567_0.conda hash: md5: a42da9837e46c53494df0044c3eb1f53 sha256: d4c74d2140f2fbc72fe5320cbd65f3fd1d1f7832ab4d7825c37c38ab82440ae2 @@ -6648,7 +6648,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/setuptools-78.1.0-pyhff2d567_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/setuptools-78.1.0-pyhff2d567_0.conda hash: md5: a42da9837e46c53494df0044c3eb1f53 sha256: d4c74d2140f2fbc72fe5320cbd65f3fd1d1f7832ab4d7825c37c38ab82440ae2 @@ -6660,7 +6660,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -6672,7 +6672,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -6684,7 +6684,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -6696,7 +6696,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -6708,7 +6708,7 @@ package: platform: linux-64 dependencies: python: '>=2' - url: https://packages.prefix.dev/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 4d22a9315e78c6827f806065957d566e sha256: a0fd916633252d99efb6223b1050202841fa8d2d53dacca564b0ed77249d3228 @@ -6720,7 +6720,7 @@ package: platform: win-64 dependencies: python: '>=2' - url: https://packages.prefix.dev/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 4d22a9315e78c6827f806065957d566e sha256: a0fd916633252d99efb6223b1050202841fa8d2d53dacca564b0ed77249d3228 @@ -6732,7 +6732,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -6744,7 +6744,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -6756,7 +6756,7 @@ package: platform: linux-64 dependencies: python: '>=3.8' - url: https://packages.prefix.dev/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda hash: md5: 3f144b2c34f8cb5a9abd9ed23a39c561 sha256: 54ae221033db8fbcd4998ccb07f3c3828b4d77e73b0c72b18c1d6a507059059c @@ -6768,7 +6768,7 @@ package: platform: win-64 dependencies: python: '>=3.8' - url: https://packages.prefix.dev/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda hash: md5: 3f144b2c34f8cb5a9abd9ed23a39c561 sha256: 54ae221033db8fbcd4998ccb07f3c3828b4d77e73b0c72b18c1d6a507059059c @@ -6797,7 +6797,7 @@ package: sphinxcontrib-jsmath: '' sphinxcontrib-qthelp: '' sphinxcontrib-serializinghtml: '>=1.1.5' - url: https://packages.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 @@ -6826,7 +6826,7 @@ package: sphinxcontrib-jsmath: '' sphinxcontrib-qthelp: '' sphinxcontrib-serializinghtml: '>=1.1.5' - url: https://packages.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 @@ -6840,7 +6840,7 @@ package: pydata-sphinx-theme: '>=0.15.2' python: '>=3.9' sphinx: '>=5' - url: https://packages.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 @@ -6854,7 +6854,7 @@ package: pydata-sphinx-theme: '>=0.15.2' python: '>=3.9' sphinx: '>=5' - url: https://packages.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 @@ -6867,7 +6867,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=1.8' - url: https://packages.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 @@ -6880,7 +6880,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=1.8' - url: https://packages.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 @@ -6893,7 +6893,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=1.8' - url: https://packages.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 @@ -6906,7 +6906,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=1.8' - url: https://packages.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 @@ -6919,7 +6919,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5,<8' - url: https://packages.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 @@ -6932,7 +6932,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5,<8' - url: https://packages.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 @@ -6947,7 +6947,7 @@ package: python: '>=3.9' pyyaml: '' sphinx: '>=5' - url: https://packages.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 @@ -6962,7 +6962,7 @@ package: python: '>=3.9' pyyaml: '' sphinx: '>=5' - url: https://packages.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 @@ -6976,7 +6976,7 @@ package: packaging: '' python: '>=3.9' sphinx: '>=5' - url: https://packages.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 @@ -6990,7 +6990,7 @@ package: packaging: '' python: '>=3.9' sphinx: '>=5' - url: https://packages.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 @@ -7003,7 +7003,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=3' - url: https://packages.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 @@ -7016,7 +7016,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=3' - url: https://packages.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 @@ -7029,7 +7029,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=4' - url: https://packages.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 @@ -7042,7 +7042,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=4' - url: https://packages.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 @@ -7056,7 +7056,7 @@ package: docutils: '' python: '>=3.6' sphinx: '' - url: https://packages.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 @@ -7070,7 +7070,7 @@ package: docutils: '' python: '>=3.6' sphinx: '' - url: https://packages.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 @@ -7083,7 +7083,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://packages.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 @@ -7096,7 +7096,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://packages.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 +7114,7 @@ package: pybtex-docutils: '>=1' python: '>=3.6' sphinx: '>=2.1' - url: https://packages.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 @@ -7132,7 +7132,7 @@ package: pybtex-docutils: '>=1' python: '>=3.6' sphinx: '>=2.1' - url: https://packages.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 @@ -7145,7 +7145,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://packages.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 @@ -7158,7 +7158,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://packages.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 @@ -7171,7 +7171,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://packages.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 @@ -7184,7 +7184,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://packages.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 @@ -7196,7 +7196,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7208,7 +7208,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7221,7 +7221,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://packages.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 @@ -7234,7 +7234,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://packages.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 @@ -7247,7 +7247,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://packages.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 @@ -7260,7 +7260,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://packages.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 @@ -7277,7 +7277,7 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* typing-extensions: '>=4.6.0' - url: https://packages.prefix.dev/conda-forge/linux-64/sqlalchemy-2.0.40-py312h66e93f0_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/sqlalchemy-2.0.40-py312h66e93f0_0.conda hash: md5: 933eec95cc2ba4419cb3fb434d8c8056 sha256: fe3ca23540ef6fe92592af1aefd1673c824a2155f7204e9457747984d3f79b2a @@ -7295,7 +7295,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/sqlalchemy-2.0.40-py312h4389bb4_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/sqlalchemy-2.0.40-py312h4389bb4_0.conda hash: md5: 031ea623d7022e8d71d7e6c1f5e0ad2f sha256: 67a9d5022eb6afa4cfd2cea043b2f522dd4a299ed4e9691d2b0158cafeaeabf6 @@ -7310,7 +7310,7 @@ package: executing: '' pure_eval: '' python: '>=3.9' - url: https://packages.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 @@ -7325,7 +7325,7 @@ package: executing: '' pure_eval: '' python: '>=3.9' - url: https://packages.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 @@ -7337,7 +7337,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7349,7 +7349,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7364,7 +7364,7 @@ package: libgcc: '>=13' libhwloc: '>=2.11.2,<2.11.3.0a0' libstdcxx: '>=13' - url: https://packages.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 @@ -7379,7 +7379,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -7391,7 +7391,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7403,7 +7403,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7418,7 +7418,7 @@ package: ptyprocess: '' python: '>=3.8' tornado: '>=6.1.0' - url: https://packages.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 @@ -7433,7 +7433,7 @@ package: python: '>=3.8' pywinpty: '>=1.1.0' tornado: '>=6.1.0' - url: https://packages.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 @@ -7445,7 +7445,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7457,7 +7457,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7470,7 +7470,7 @@ package: dependencies: python: '>=3.5' webencodings: '>=0.4' - url: https://packages.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 @@ -7483,7 +7483,7 @@ package: dependencies: python: '>=3.5' webencodings: '>=0.4' - url: https://packages.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 @@ -7496,7 +7496,7 @@ package: dependencies: libgcc-ng: '>=12' libzlib: '>=1.2.13,<2.0.0a0' - url: https://packages.prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda + url: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda hash: md5: d453b98d9c83e71da0741bb0ff4d76bc sha256: e0569c9caa68bf476bead1bed3d79650bb080b532c64a4af7d8ca286c08dea4e @@ -7510,7 +7510,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/tk-8.6.13-h5226925_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-h5226925_1.conda hash: md5: fc048363eb8f03cd1737600a5d08aafe sha256: 2c4e914f521ccb2718946645108c9bd3fc3216ba69aea20c2c3cedbd8db32bb1 @@ -7522,7 +7522,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7534,7 +7534,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7546,7 +7546,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7558,7 +7558,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7570,7 +7570,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/tomlkit-0.13.2-pyha770c72_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.13.2-pyha770c72_1.conda hash: md5: 1d9ab4fc875c52db83f9c9b40af4e2c8 sha256: 986fae65f5568e95dbf858d08d77a0f9cca031345a98550f1d4b51d36d8811e2 @@ -7582,7 +7582,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/tomlkit-0.13.2-pyha770c72_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.13.2-pyha770c72_1.conda hash: md5: 1d9ab4fc875c52db83f9c9b40af4e2c8 sha256: 986fae65f5568e95dbf858d08d77a0f9cca031345a98550f1d4b51d36d8811e2 @@ -7594,7 +7594,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7606,7 +7606,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7621,7 +7621,7 @@ package: libgcc: '>=13' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://packages.prefix.dev/conda-forge/linux-64/tornado-6.4.2-py312h66e93f0_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/tornado-6.4.2-py312h66e93f0_0.conda hash: md5: e417822cb989e80a0d2b1b576fdd1657 sha256: 062a3a3a37fa8615ce57929ba7e982c76f5a5810bcebd435950f6d6c4147c310 @@ -7637,7 +7637,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/tornado-6.4.2-py312h4389bb4_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/tornado-6.4.2-py312h4389bb4_0.conda hash: md5: f06104f71f496b0784b35b23e30e7990 sha256: e21f24e5d598d9a31c604f510c82fbe73d756696bc70a69f11811a2ea9dd5d95 @@ -7650,7 +7650,7 @@ package: dependencies: colorama: '' python: '>=3.9' - url: https://packages.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 @@ -7663,7 +7663,7 @@ package: dependencies: colorama: '' python: '>=3.9' - url: https://packages.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 @@ -7675,7 +7675,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7687,7 +7687,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7699,7 +7699,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/types-python-dateutil-2.9.0.20241206-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/types-python-dateutil-2.9.0.20241206-pyhd8ed1ab_0.conda hash: md5: 1dbc4a115e2ad9fb7f9d5b68397f66f9 sha256: 8b98cd9464837174ab58aaa912fc95d5831879864676650a383994033533b8d1 @@ -7711,7 +7711,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/types-python-dateutil-2.9.0.20241206-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/types-python-dateutil-2.9.0.20241206-pyhd8ed1ab_0.conda hash: md5: 1dbc4a115e2ad9fb7f9d5b68397f66f9 sha256: 8b98cd9464837174ab58aaa912fc95d5831879864676650a383994033533b8d1 @@ -7723,7 +7723,7 @@ package: platform: linux-64 dependencies: typing_extensions: ==4.13.2 - url: https://packages.prefix.dev/conda-forge/noarch/typing-extensions-4.13.2-h0e9735f_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.13.2-h0e9735f_0.conda hash: md5: 568ed1300869dca0ba09fb750cda5dbb sha256: 4865fce0897d3cb0ffc8998219157a8325f6011c136e6fd740a9a6b169419296 @@ -7735,7 +7735,7 @@ package: platform: win-64 dependencies: typing_extensions: ==4.13.2 - url: https://packages.prefix.dev/conda-forge/noarch/typing-extensions-4.13.2-h0e9735f_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.13.2-h0e9735f_0.conda hash: md5: 568ed1300869dca0ba09fb750cda5dbb sha256: 4865fce0897d3cb0ffc8998219157a8325f6011c136e6fd740a9a6b169419296 @@ -7748,7 +7748,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '>=4.12.0' - url: https://packages.prefix.dev/conda-forge/noarch/typing-inspection-0.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/typing-inspection-0.4.0-pyhd8ed1ab_0.conda hash: md5: c5c76894b6b7bacc888ba25753bc8677 sha256: 172f971d70e1dbb978f6061d3f72be463d0f629155338603450d8ffe87cbf89d @@ -7761,7 +7761,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '>=4.12.0' - url: https://packages.prefix.dev/conda-forge/noarch/typing-inspection-0.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/typing-inspection-0.4.0-pyhd8ed1ab_0.conda hash: md5: c5c76894b6b7bacc888ba25753bc8677 sha256: 172f971d70e1dbb978f6061d3f72be463d0f629155338603450d8ffe87cbf89d @@ -7772,8 +7772,8 @@ package: manager: conda platform: linux-64 dependencies: - python: '' - url: https://packages.prefix.dev/conda-forge/noarch/typing_extensions-4.13.2-pyh29332c3_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.13.2-pyh29332c3_0.conda hash: md5: 83fc6ae00127671e301c9f44254c31b8 sha256: a8aaf351e6461de0d5d47e4911257e25eec2fa409d71f3b643bb2f748bde1c08 @@ -7784,8 +7784,8 @@ package: manager: conda platform: win-64 dependencies: - python: '' - url: https://packages.prefix.dev/conda-forge/noarch/typing_extensions-4.13.2-pyh29332c3_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.13.2-pyh29332c3_0.conda hash: md5: 83fc6ae00127671e301c9f44254c31b8 sha256: a8aaf351e6461de0d5d47e4911257e25eec2fa409d71f3b643bb2f748bde1c08 @@ -7797,7 +7797,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7809,7 +7809,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7820,7 +7820,7 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://packages.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 @@ -7831,7 +7831,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://packages.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 @@ -7843,7 +7843,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7855,7 +7855,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7866,7 +7866,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://packages.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 @@ -7881,7 +7881,7 @@ package: libgcc: '>=13' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://packages.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 @@ -7897,7 +7897,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -7909,7 +7909,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7921,7 +7921,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -7937,7 +7937,7 @@ package: pysocks: '>=1.5.6,<2.0,!=1.5.7' python: '>=3.9' zstandard: '>=0.18.0' - url: https://packages.prefix.dev/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda hash: md5: c1e349028e0052c4eea844e94f773065 sha256: a25403b76f7f03ca1a906e1ef0f88521edded991b9897e7fed56a3e334b3db8c @@ -7953,7 +7953,7 @@ package: pysocks: '>=1.5.6,<2.0,!=1.5.7' python: '>=3.9' zstandard: '>=0.18.0' - url: https://packages.prefix.dev/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda hash: md5: c1e349028e0052c4eea844e94f773065 sha256: a25403b76f7f03ca1a906e1ef0f88521edded991b9897e7fed56a3e334b3db8c @@ -7965,7 +7965,7 @@ package: platform: win-64 dependencies: vc14_runtime: '>=14.42.34433' - url: https://packages.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 @@ -7977,7 +7977,7 @@ package: platform: win-64 dependencies: ucrt: '>=10.0.20348.0' - url: https://packages.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 @@ -7989,7 +7989,7 @@ package: platform: win-64 dependencies: vc14_runtime: '>=14.42.34438' - url: https://packages.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 @@ -8001,7 +8001,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -8013,7 +8013,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -8025,7 +8025,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -8037,7 +8037,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -8049,7 +8049,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -8061,7 +8061,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -8073,7 +8073,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -8085,7 +8085,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -8097,7 +8097,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -8109,7 +8109,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -8122,7 +8122,7 @@ package: dependencies: notebook: '>=4.4.1' python: '>=3.7' - url: https://packages.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 @@ -8135,7 +8135,7 @@ package: dependencies: notebook: '>=4.4.1' python: '>=3.7' - url: https://packages.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 @@ -8148,7 +8148,7 @@ package: dependencies: __win: '' python: '>=3.9' - url: https://packages.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 @@ -8159,7 +8159,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://packages.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 @@ -8174,7 +8174,7 @@ package: libgcc: '>=13' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://packages.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 @@ -8190,7 +8190,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -8203,7 +8203,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://packages.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 @@ -8217,7 +8217,7 @@ package: libgcc: '>=13' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' ucrt: '>=10.0.20348.0' - url: https://packages.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 @@ -8230,7 +8230,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://packages.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 @@ -8244,7 +8244,7 @@ package: libgcc: '>=13' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' ucrt: '>=10.0.20348.0' - url: https://packages.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 @@ -8256,7 +8256,7 @@ package: platform: linux-64 dependencies: python: '>=3.8' - url: https://packages.prefix.dev/conda-forge/noarch/xyzservices-2025.1.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/xyzservices-2025.1.0-pyhd8ed1ab_0.conda hash: md5: fdf07e281a9e5e10fc75b2dd444136e9 sha256: 9978c22319e85026d5a4134944f73bac820c948ca6b6c32af6b6985b5221cd8a @@ -8268,7 +8268,7 @@ package: platform: win-64 dependencies: python: '>=3.8' - url: https://packages.prefix.dev/conda-forge/noarch/xyzservices-2025.1.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/xyzservices-2025.1.0-pyhd8ed1ab_0.conda hash: md5: fdf07e281a9e5e10fc75b2dd444136e9 sha256: 9978c22319e85026d5a4134944f73bac820c948ca6b6c32af6b6985b5221cd8a @@ -8280,7 +8280,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=9.4.0' - url: https://packages.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 @@ -8293,7 +8293,7 @@ package: dependencies: vc: '>=14.1,<15.0a0' vs2015_runtime: '>=14.16.27012' - url: https://packages.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 @@ -8309,7 +8309,7 @@ package: numcodecs: '>=0.10.0,<0.16.0a0' numpy: '>=1.7' python: '>=3.5' - url: https://packages.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 @@ -8325,7 +8325,7 @@ package: numcodecs: '>=0.10.0,<0.16.0a0' numpy: '>=1.7' python: '>=3.5' - url: https://packages.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 @@ -8341,7 +8341,7 @@ package: libgcc: '>=13' libsodium: '>=1.0.20,<1.0.21.0a0' libstdcxx: '>=13' - url: https://packages.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 @@ -8357,7 +8357,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 @@ -8369,7 +8369,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.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 +8381,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.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 @@ -8393,7 +8393,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda hash: md5: 0c3cc595284c5e8f0f9900a9b228a332 sha256: 567c04f124525c97a096b65769834b7acb047db24b15a56888a322bf3966c3e1 @@ -8405,7 +8405,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda hash: md5: 0c3cc595284c5e8f0f9900a9b228a332 sha256: 567c04f124525c97a096b65769834b7acb047db24b15a56888a322bf3966c3e1 @@ -8421,7 +8421,7 @@ package: libgcc: '>=13' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://packages.prefix.dev/conda-forge/linux-64/zstandard-0.23.0-py312h66e93f0_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/zstandard-0.23.0-py312h66e93f0_1.conda hash: md5: d28b82fcc8d1b462b595af4b15a6cdcf sha256: b4fd6bd1cb87a183a8bbe85b4e87a1e7c51473309d0d82cd88d38fb021bcf41e @@ -8438,7 +8438,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/zstandard-0.23.0-py312h4389bb4_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/zstandard-0.23.0-py312h4389bb4_1.conda hash: md5: 5028543ffb67666ca4fc3ebd620c97b8 sha256: 17f2abbda821be146b549498fab3d0eb9cafb210e163b983524db91524b8dcb5 @@ -8453,7 +8453,7 @@ package: libgcc: '>=13' libstdcxx: '>=13' libzlib: '>=1.3.1,<2.0a0' - url: https://packages.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 @@ -8468,46 +8468,12 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.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 category: main optional: false -- name: dask - version: 2025.3.0 - manager: pip - platform: linux-64 - dependencies: - click: '>=8.1' - cloudpickle: '>=3.0.0' - fsspec: '>=2021.09.0' - packaging: '>=20.0' - partd: '>=1.4.0' - pyyaml: '>=5.3.1' - toolz: '>=0.10.0' - url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/packages/packages/bd/8a/3609033a4bfd7c9b3e8a4e8a5d6e318dfc06ab2e2d3b5cb0e01a60458858/dask-2025.3.0-py3-none-any.whl - hash: - sha256: b5d72bb33788904a218fd7da1850238517592358ecc79c30bb5c188a71df506d - category: main - optional: false -- name: dask - version: 2025.3.0 - manager: pip - platform: win-64 - dependencies: - click: '>=8.1' - cloudpickle: '>=3.0.0' - fsspec: '>=2021.09.0' - packaging: '>=20.0' - partd: '>=1.4.0' - pyyaml: '>=5.3.1' - toolz: '>=0.10.0' - url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/packages/packages/bd/8a/3609033a4bfd7c9b3e8a4e8a5d6e318dfc06ab2e2d3b5cb0e01a60458858/dask-2025.3.0-py3-none-any.whl - hash: - sha256: b5d72bb33788904a218fd7da1850238517592358ecc79c30bb5c188a71df506d - category: main - optional: false - name: geoapps-utils version: 0.5.0a3 manager: pip @@ -8517,7 +8483,7 @@ package: numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/geoapps-utils/0.5.0-alpha.3/geoapps_utils-0.5.0a3-py3-none-any.whl + url: https://files.pythonhosted.org/packages/7f/0b/36222385937dcda4b4789303027fc538103201f72b4bce99d53398a5b5da/geoapps_utils-0.5.0a3-py3-none-any.whl hash: sha256: a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c category: main @@ -8531,7 +8497,7 @@ package: numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/geoapps-utils/0.5.0-alpha.3/geoapps_utils-0.5.0a3-py3-none-any.whl + url: https://files.pythonhosted.org/packages/7f/0b/36222385937dcda4b4789303027fc538103201f72b4bce99d53398a5b5da/geoapps_utils-0.5.0a3-py3-none-any.whl hash: sha256: a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c category: main @@ -8545,7 +8511,7 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/geoh5py/0.11.0-alpha.4/geoh5py-0.11.0a4-py3-none-any.whl + url: https://files.pythonhosted.org/packages/cb/76/a6f12182119218ad7b55ad622a89be4596c1cc37b1182c3f121242c0b0fc/geoh5py-0.11.0a4-py3-none-any.whl hash: sha256: 4965e934b1e57460f98f76f96eca100abf48fd722245154c35af86e7ecbc10a6 category: main @@ -8559,19 +8525,17 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/geoh5py/0.11.0-alpha.4/geoh5py-0.11.0a4-py3-none-any.whl + url: https://files.pythonhosted.org/packages/cb/76/a6f12182119218ad7b55ad622a89be4596c1cc37b1182c3f121242c0b0fc/geoh5py-0.11.0a4-py3-none-any.whl hash: sha256: 4965e934b1e57460f98f76f96eca100abf48fd722245154c35af86e7ecbc10a6 category: main optional: false - name: mira-simpeg - version: 0.23.0.1a2 + version: 0.23.0.1a3.dev1+g60bcbe68b manager: pip platform: linux-64 dependencies: - dask: '*' discretize: '>=0.11' - fsspec: '>=0.3.3' geoana: '>=0.7.0' geoh5py: '>=0.11.0a1,<0.12.dev' libdlf: '*' @@ -8579,20 +8543,20 @@ package: numpy: '>=1.22' pymatsolver: '>=0.3' scipy: '>=1.8' - zarr: '*' - url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/mira-simpeg/0.23.0.1a2+mira/mira_simpeg-0.23.0.1a2-py3-none-any.whl + url: git+https://github.com/MiraGeoscience/simpeg.git@60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 hash: - sha256: 931b533984dfcca301bea0d8e4a72a5f482731f0561a9ad95a790c516262d830 + sha256: 60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 + source: + type: url + url: git+https://github.com/MiraGeoscience/simpeg.git@60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 category: main optional: false - name: mira-simpeg - version: 0.23.0.1a2 + version: 0.23.0.1a3.dev1+g60bcbe68b manager: pip platform: win-64 dependencies: - dask: '*' discretize: '>=0.11' - fsspec: '>=0.3.3' geoana: '>=0.7.0' geoh5py: '>=0.11.0a1,<0.12.dev' libdlf: '*' @@ -8600,42 +8564,44 @@ package: numpy: '>=1.22' pymatsolver: '>=0.3' scipy: '>=1.8' - zarr: '*' - url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/mira-simpeg/0.23.0.1a2+mira/mira_simpeg-0.23.0.1a2-py3-none-any.whl + url: git+https://github.com/MiraGeoscience/simpeg.git@60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 hash: - sha256: 931b533984dfcca301bea0d8e4a72a5f482731f0561a9ad95a790c516262d830 + sha256: 60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 + source: + type: url + url: git+https://github.com/MiraGeoscience/simpeg.git@60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 category: main optional: false - name: octree-creation-app - version: 0.3.0a1 + version: 0.3.0a2 manager: pip platform: linux-64 dependencies: discretize: ==0.11.* - geoapps-utils: 0.5.0a3 + geoapps-utils: '>=0.5.0a3,<0.6.dev' geoh5py: '>=0.11.0a3,<0.12.dev' numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/octree-creation-app/0.3.0-alpha.1/octree_creation_app-0.3.0a1-py3-none-any.whl + url: https://files.pythonhosted.org/packages/8a/60/0a425a5a8cd25d46d8141bf24b20511d0176c9fae0e617f0eeca4675366b/octree_creation_app-0.3.0a2-py3-none-any.whl hash: - sha256: 379dc607aca96db07af2ea8fbacadc9d0ca086e91d2508f5720b87e6e8d778a1 + sha256: 002896126bf5a958aad1bb9c0a272bfd3c6985d1456dc8022c4e07b5582730ff category: main optional: false - name: octree-creation-app - version: 0.3.0a1 + version: 0.3.0a2 manager: pip platform: win-64 dependencies: discretize: ==0.11.* - geoapps-utils: 0.5.0a3 + geoapps-utils: '>=0.5.0a3,<0.6.dev' geoh5py: '>=0.11.0a3,<0.12.dev' numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/octree-creation-app/0.3.0-alpha.1/octree_creation_app-0.3.0a1-py3-none-any.whl + url: https://files.pythonhosted.org/packages/8a/60/0a425a5a8cd25d46d8141bf24b20511d0176c9fae0e617f0eeca4675366b/octree_creation_app-0.3.0a2-py3-none-any.whl hash: - sha256: 379dc607aca96db07af2ea8fbacadc9d0ca086e91d2508f5720b87e6e8d778a1 + sha256: 002896126bf5a958aad1bb9c0a272bfd3c6985d1456dc8022c4e07b5582730ff category: main optional: false - name: param-sweeps @@ -8645,7 +8611,7 @@ package: dependencies: geoh5py: '>=0.11.0a3,<0.12.dev' numpy: '>=1.26.0,<1.27.0' - url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/param-sweeps/0.2.1-alpha.1/param_sweeps-0.2.1a1-py3-none-any.whl + url: https://files.pythonhosted.org/packages/a9/b4/5352714c3cd8075b037aac1fcbcfb5f539449c020031cb663ad82a3944d0/param_sweeps-0.2.1a1-py3-none-any.whl hash: sha256: 777618dd6eef4b6e86b4976e01c29bb202abb9d295b0774baeabf7534fb9389c category: main @@ -8657,7 +8623,7 @@ package: dependencies: geoh5py: '>=0.11.0a3,<0.12.dev' numpy: '>=1.26.0,<1.27.0' - url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/param-sweeps/0.2.1-alpha.1/param_sweeps-0.2.1a1-py3-none-any.whl + url: https://files.pythonhosted.org/packages/a9/b4/5352714c3cd8075b037aac1fcbcfb5f539449c020031cb663ad82a3944d0/param_sweeps-0.2.1a1-py3-none-any.whl hash: sha256: 777618dd6eef4b6e86b4976e01c29bb202abb9d295b0774baeabf7534fb9389c category: main diff --git a/pyproject.toml b/pyproject.toml index 581b4577..fb3bc17f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -55,8 +55,8 @@ octree-creation-app = {version = ">=0.3.0a1, <0.4.dev", source = "pypi", allow-p geoapps-utils = {version = ">=0.5.0a3, <0.6.dev", source = "pypi", allow-prereleases = true} #geoapps-utils = {git = "https://github.com/MiraGeoscience/geoapps-utils.git", rev = "release/0.5.0"} -mira-simpeg = {version = ">=0.23.0.1a2, <0.23.1.dev", source="pypi", allow-prereleases = true, extras = ["dask"]} -#mira-simpeg = {git = "https://github.com/MiraGeoscience/simpeg.git", rev = "release/0.23.0.1", extras = ["dask"]} +#mira-simpeg = {version = ">=0.23.0.1a2, <0.23.1.dev", source="pypi", allow-prereleases = true, extras = ["dask"]} +mira-simpeg = {git = "https://github.com/MiraGeoscience/simpeg.git", rev = "GEOPY-2137", extras = ["dask"]} param-sweeps = {version = ">=0.2.1a1, <0.3.dev", source = "pypi", allow-prereleases = true} #param-sweeps = {git = "https://github.com/MiraGeoscience/param-sweeps.git", rev = "release/0.2.1"} From dddef5c82b7cb2e63e60569ab11f25a3ccbec73c Mon Sep 17 00:00:00 2001 From: dominiquef Date: Sat, 19 Apr 2025 11:26:50 -0700 Subject: [PATCH 05/20] Fix main --- simpeg_drivers/driver.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/simpeg_drivers/driver.py b/simpeg_drivers/driver.py index da436237..c3b002d7 100644 --- a/simpeg_drivers/driver.py +++ b/simpeg_drivers/driver.py @@ -686,8 +686,7 @@ def get_path(self, filepath: str | Path) -> str: if __name__ == "__main__": - # file = Path(sys.argv[1]).resolve() - file = Path(r"C:\Users\dominiquef\Desktop\Tests\GEOPY-2137.ui.json") + file = Path(sys.argv[1]).resolve() input_file = InputFile.read_ui_json(file) n_workers = input_file.data.get("n_workers", 1) n_threads = input_file.data.get("n_threads", None) From 3bbe8b5acde683b169b70520ce7a16996a764821 Mon Sep 17 00:00:00 2001 From: dominiquef Date: Sun, 20 Apr 2025 12:03:39 -0700 Subject: [PATCH 06/20] Improve splitting --- .../components/factories/misfit_factory.py | 14 +- simpeg_drivers/driver.py | 36 +++-- tests/run_tests/driver_mt_test.py | 151 ++++++++++++------ 3 files changed, 138 insertions(+), 63 deletions(-) diff --git a/simpeg_drivers/components/factories/misfit_factory.py b/simpeg_drivers/components/factories/misfit_factory.py index 2a0c2c7f..527c5ccc 100644 --- a/simpeg_drivers/components/factories/misfit_factory.py +++ b/simpeg_drivers/components/factories/misfit_factory.py @@ -45,10 +45,10 @@ def __init__(self, params: BaseParams | BaseOptions, models=None): def concrete_object(self): return objective_function.ComboObjectiveFunction - def build(self, tiles, n_split, inversion_data, inversion_mesh, active_cells): # pylint: disable=arguments-differ + def build(self, tiles, split_list, inversion_data, inversion_mesh, active_cells): # pylint: disable=arguments-differ global_misfit = super().build( tiles=tiles, - n_split=n_split, + split_list=split_list, inversion_data=inversion_data, inversion_mesh=inversion_mesh, active_cells=active_cells, @@ -58,7 +58,7 @@ def build(self, tiles, n_split, inversion_data, inversion_mesh, active_cells): def assemble_arguments( # pylint: disable=arguments-differ self, tiles, - n_split, + split_list, inversion_data, inversion_mesh, active_cells, @@ -75,13 +75,15 @@ def assemble_arguments( # pylint: disable=arguments-differ self.ordering = [] tile_count = 0 data_count = 0 + misfit_count = 0 for local_index in tiles: if len(local_index) == 0: continue local_mesh = None - for split_ind in np.array_split(local_index, n_split): - for count, channel in enumerate(channels): + for count, channel in enumerate(channels): + n_split = split_list[misfit_count] + for split_ind in np.array_split(local_index, n_split): local_sim, split_ind, ordering, mapping = ( self.create_nested_simulation( inversion_data, @@ -171,6 +173,8 @@ def assemble_arguments( # pylint: disable=arguments-differ tile_count += 1 + misfit_count += 1 + return [local_misfits] def assemble_keyword_arguments(self, **_): diff --git a/simpeg_drivers/driver.py b/simpeg_drivers/driver.py index c3b002d7..fac7d81f 100644 --- a/simpeg_drivers/driver.py +++ b/simpeg_drivers/driver.py @@ -101,6 +101,7 @@ def __init__(self, params: BaseForwardOptions | BaseInversionOptions): self._mappings: list[maps.IdentityMap] | None = None self._window = None self._client: Client | None = None + self._workers: list[str] | None = None @property def client(self): @@ -116,26 +117,37 @@ def client(self): @property def workers(self): """List of workers""" - if self.client: - return list(self.client.cluster.workers.values()) - return [] + if self._workers is None: + if self.client: + self._workers = list(self.client.cluster.workers.values()) + else: + self._workers = [] + return self._workers @property - def n_split(self): + def split_list(self): """ - Number of splits for the data misfit to be distributed. - evenly among workers. + Number of splits for the data misfit to be distributed evenly among workers. """ - n_splits = 1 n_misfits = self.params.tile_spatial if isinstance(self.params.data_object, FEMSurvey): - n_misfits = len(self.params.data_object.channels) + n_misfits *= len(self.params.data_object.channels) - if len(self.workers) > 0 and n_misfits % len(self.workers) != 0: - n_splits = len(self.workers) + split_list = [1] * n_misfits - return n_splits + if len(self.workers) == 0: + return split_list + + count = 0 + while np.sum(split_list) % len(self.workers) != 0: + split_list[count % n_misfits] += 1 + count += 1 + + self.logger.write( + f"Number of misfits: {np.sum(split_list)} distributed over {len(self.workers)} workers.\n" + ) + return split_list @property def data_misfit(self): @@ -151,7 +163,7 @@ def data_misfit(self): self.params, models=self.models ).build( tiles, - self.n_split, + self.split_list, self.inversion_data, self.inversion_mesh, self.models.active_cells, diff --git a/tests/run_tests/driver_mt_test.py b/tests/run_tests/driver_mt_test.py index e95093b7..56a41832 100644 --- a/tests/run_tests/driver_mt_test.py +++ b/tests/run_tests/driver_mt_test.py @@ -15,6 +15,7 @@ from pathlib import Path import numpy as np +from dask.distributed import LocalCluster, performance_report from geoh5py.groups import SimPEGGroup from geoh5py.workspace import Workspace @@ -37,6 +38,53 @@ target_run = {"data_norm": 0.032649770, "phi_d": 6.68, "phi_m": 263} +def setup_data(workspace, survey): + data = {} + uncertainties = {} + components = { + "zxx_real": "Zxx (real)", + "zxx_imag": "Zxx (imag)", + "zxy_real": "Zxy (real)", + "zxy_imag": "Zxy (imag)", + "zyx_real": "Zyx (real)", + "zyx_imag": "Zyx (imag)", + "zyy_real": "Zyy (real)", + "zyy_imag": "Zyy (imag)", + } + + for comp, cname in components.items(): + data[cname] = [] + # uncertainties[f"{cname} uncertainties"] = {} + uncertainties[f"{cname} uncertainties"] = [] + for ind in range(len(survey.channels)): + data_entity = workspace.get_entity(f"Iteration_0_{comp}_[{ind}]")[0].copy( + parent=survey + ) + data[cname].append(data_entity) + + uncert = survey.add_data( + { + f"uncertainty_{comp}_[{ind}]": { + "values": np.ones_like(data_entity.values) + * np.percentile(np.abs(data_entity.values), 5) + } + } + ) + uncertainties[f"{cname} uncertainties"].append(uncert.copy(parent=survey)) + + data_groups = survey.add_components_data(data) + uncert_groups = survey.add_components_data(uncertainties) + + data_kwargs = {} + for comp, data_group, uncert_group in zip( + components, data_groups, uncert_groups, strict=True + ): + data_kwargs[f"{comp}_channel"] = data_group + data_kwargs[f"{comp}_uncertainty"] = uncert_group + + return data_kwargs + + def test_magnetotellurics_fwr_run( tmp_path: Path, n_grid_points=2, @@ -96,51 +144,7 @@ def test_magnetotellurics_run(tmp_path: Path, max_iterations=1, pytest=True): ) mesh = geoh5.get_entity("mesh")[0] topography = geoh5.get_entity("topography")[0] - - data = {} - uncertainties = {} - components = { - "zxx_real": "Zxx (real)", - "zxx_imag": "Zxx (imag)", - "zxy_real": "Zxy (real)", - "zxy_imag": "Zxy (imag)", - "zyx_real": "Zyx (real)", - "zyx_imag": "Zyx (imag)", - "zyy_real": "Zyy (real)", - "zyy_imag": "Zyy (imag)", - } - - for comp, cname in components.items(): - data[cname] = [] - # uncertainties[f"{cname} uncertainties"] = {} - uncertainties[f"{cname} uncertainties"] = [] - for ind in range(len(survey.channels)): - data_entity = geoh5.get_entity(f"Iteration_0_{comp}_[{ind}]")[0].copy( - parent=survey - ) - data[cname].append(data_entity) - - uncert = survey.add_data( - { - f"uncertainty_{comp}_[{ind}]": { - "values": np.ones_like(data_entity.values) - * np.percentile(np.abs(data_entity.values), 5) - } - } - ) - uncertainties[f"{cname} uncertainties"].append( - uncert.copy(parent=survey) - ) - - data_groups = survey.add_components_data(data) - uncert_groups = survey.add_components_data(uncertainties) - - data_kwargs = {} - for comp, data_group, uncert_group in zip( - components, data_groups, uncert_groups, strict=True - ): - data_kwargs[f"{comp}_channel"] = data_group - data_kwargs[f"{comp}_uncertainty"] = uncert_group + data_kwargs = setup_data(geoh5, survey) orig_zyy_real_1 = geoh5.get_entity("Iteration_0_zyy_real_[0]")[0].values @@ -201,12 +205,67 @@ def test_magnetotellurics_run(tmp_path: Path, max_iterations=1, pytest=True): MTInversionDriver.start(str(tmp_path / "Inv_run.ui.json")) +def test_magnetotellurics_split_run(tmp_path: Path, max_iterations=1, pytest=True): + # pass + workpath = tmp_path / "inversion_test.ui.geoh5" + if pytest: + workpath = ( + tmp_path.parent + / "test_magnetotellurics_fwr_run0" + / "inversion_test.ui.geoh5" + ) + + with Workspace(workpath) as geoh5: + survey = next( + child + for child in geoh5.get_entity("survey") + if not isinstance(child.parent, SimPEGGroup) + ) + mesh = geoh5.get_entity("mesh")[0] + topography = geoh5.get_entity("topography")[0] + data_kwargs = setup_data(geoh5, survey) + + n_workers = 5 + # Run the inverse + params = MTInversionOptions( + geoh5=geoh5, + mesh=mesh, + active_cells=ActiveCellsOptions(topography_object=topography), + data_object=survey, + starting_model=100.0, + reference_model=100.0, + alpha_s=1.0, + s_norm=1.0, + x_norm=1.0, + y_norm=1.0, + z_norm=1.0, + gradient_type="components", + cooling_rate=1, + lower_bound=0.75, + model_type="Resistivity (Ohm-m)", + background_conductivity=100.0, + max_global_iterations=max_iterations, + initial_beta_ratio=1e3, + sens_wts_threshold=1.0, + percentile=100, + store_sensitivities="ram", + solver_type="Mumps", + n_workers=n_workers, + **data_kwargs, + ) + driver = MTInversionDriver(params) + + # Fake a distributed cluster + driver._workers = ["abc"] * n_workers # pylint: disable=protected-access + assert len(driver.data_misfit.objfcts) == 5 + + if __name__ == "__main__": # Full run test_magnetotellurics_fwr_run( Path("./"), n_grid_points=8, cell_size=(5.0, 5.0, 5.0), refinement=(4, 8) ) - test_magnetotellurics_run( + test_magnetotellurics_split_run( Path("./"), max_iterations=15, pytest=False, From aa73a30c5531831e63bc9dd3c7a7e4eb4510d42b Mon Sep 17 00:00:00 2001 From: dominiquef Date: Sun, 20 Apr 2025 12:05:16 -0700 Subject: [PATCH 07/20] Fix mt test --- tests/run_tests/driver_mt_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/run_tests/driver_mt_test.py b/tests/run_tests/driver_mt_test.py index 56a41832..ead9ec04 100644 --- a/tests/run_tests/driver_mt_test.py +++ b/tests/run_tests/driver_mt_test.py @@ -207,7 +207,7 @@ def test_magnetotellurics_run(tmp_path: Path, max_iterations=1, pytest=True): def test_magnetotellurics_split_run(tmp_path: Path, max_iterations=1, pytest=True): # pass - workpath = tmp_path / "inversion_test.ui.geoh5" + workpath = tmp_path / f"{__name__}.ui.geoh5" if pytest: workpath = ( tmp_path.parent From 556c7bfea09c69962da240147d0832f8ace8beaf Mon Sep 17 00:00:00 2001 From: dominiquef Date: Sun, 20 Apr 2025 12:09:29 -0700 Subject: [PATCH 08/20] One more simplification --- tests/run_tests/driver_mt_test.py | 61 ++++--------------------------- 1 file changed, 7 insertions(+), 54 deletions(-) diff --git a/tests/run_tests/driver_mt_test.py b/tests/run_tests/driver_mt_test.py index ead9ec04..c5a2f2fc 100644 --- a/tests/run_tests/driver_mt_test.py +++ b/tests/run_tests/driver_mt_test.py @@ -204,60 +204,13 @@ def test_magnetotellurics_run(tmp_path: Path, max_iterations=1, pytest=True): params.write_ui_json(path=tmp_path / "Inv_run.ui.json") MTInversionDriver.start(str(tmp_path / "Inv_run.ui.json")) + driver = MTInversionDriver(params) -def test_magnetotellurics_split_run(tmp_path: Path, max_iterations=1, pytest=True): - # pass - workpath = tmp_path / f"{__name__}.ui.geoh5" - if pytest: - workpath = ( - tmp_path.parent - / "test_magnetotellurics_fwr_run0" - / "inversion_test.ui.geoh5" - ) - - with Workspace(workpath) as geoh5: - survey = next( - child - for child in geoh5.get_entity("survey") - if not isinstance(child.parent, SimPEGGroup) - ) - mesh = geoh5.get_entity("mesh")[0] - topography = geoh5.get_entity("topography")[0] - data_kwargs = setup_data(geoh5, survey) - - n_workers = 5 - # Run the inverse - params = MTInversionOptions( - geoh5=geoh5, - mesh=mesh, - active_cells=ActiveCellsOptions(topography_object=topography), - data_object=survey, - starting_model=100.0, - reference_model=100.0, - alpha_s=1.0, - s_norm=1.0, - x_norm=1.0, - y_norm=1.0, - z_norm=1.0, - gradient_type="components", - cooling_rate=1, - lower_bound=0.75, - model_type="Resistivity (Ohm-m)", - background_conductivity=100.0, - max_global_iterations=max_iterations, - initial_beta_ratio=1e3, - sens_wts_threshold=1.0, - percentile=100, - store_sensitivities="ram", - solver_type="Mumps", - n_workers=n_workers, - **data_kwargs, - ) - driver = MTInversionDriver(params) - - # Fake a distributed cluster - driver._workers = ["abc"] * n_workers # pylint: disable=protected-access - assert len(driver.data_misfit.objfcts) == 5 + # Fake a distributed cluster + n_workers = 5 + params.n_workers = n_workers + driver._workers = ["abc"] * n_workers # pylint: disable=protected-access + assert len(driver.data_misfit.objfcts) == 5 if __name__ == "__main__": @@ -265,7 +218,7 @@ def test_magnetotellurics_split_run(tmp_path: Path, max_iterations=1, pytest=Tru test_magnetotellurics_fwr_run( Path("./"), n_grid_points=8, cell_size=(5.0, 5.0, 5.0), refinement=(4, 8) ) - test_magnetotellurics_split_run( + test_magnetotellurics_run( Path("./"), max_iterations=15, pytest=False, From aaf2075027c2d330e591935aca9dc1c8decf57fc Mon Sep 17 00:00:00 2001 From: dominiquef Date: Sun, 20 Apr 2025 21:15:42 -0700 Subject: [PATCH 09/20] RE-lock on latest --- .../py-3.10-linux-64-dev.conda.lock.yml | 6 +- environments/py-3.10-linux-64.conda.lock.yml | 6 +- .../py-3.10-win-64-dev.conda.lock.yml | 6 +- environments/py-3.10-win-64.conda.lock.yml | 6 +- .../py-3.11-linux-64-dev.conda.lock.yml | 6 +- environments/py-3.11-linux-64.conda.lock.yml | 6 +- .../py-3.11-win-64-dev.conda.lock.yml | 6 +- environments/py-3.11-win-64.conda.lock.yml | 6 +- .../py-3.12-linux-64-dev.conda.lock.yml | 6 +- environments/py-3.12-linux-64.conda.lock.yml | 6 +- .../py-3.12-win-64-dev.conda.lock.yml | 6 +- environments/py-3.12-win-64.conda.lock.yml | 6 +- py-3.10.conda-lock.yml | 1182 ++++++++-------- py-3.11.conda-lock.yml | 1194 ++++++++--------- py-3.12.conda-lock.yml | 1194 ++++++++--------- 15 files changed, 1821 insertions(+), 1821 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 9b469933..1403c152 100644 --- a/environments/py-3.10-linux-64-dev.conda.lock.yml +++ b/environments/py-3.10-linux-64-dev.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 5f80e0e4631df6610ff6b7d985c9c32876b203c29edebe7055b66c2ac402f7c8 +# input_hash: 786f21c248833646f6ecbdad8c0a52609fa162238698d09693a88e0055df2fc3 channels: - conda-forge @@ -233,7 +233,7 @@ dependencies: - scikit-learn=1.4.2=py310h981052a_1 - scipy=1.14.1=py310hfcf56fc_2 - send2trash=1.8.3=pyh0d859eb_1 - - setuptools=78.1.0=pyhff2d567_0 + - setuptools=78.1.1=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - sniffio=1.3.1=pyhd8ed1ab_1 - snowballstemmer=2.2.0=pyhd8ed1ab_0 @@ -301,7 +301,7 @@ dependencies: - pip: - geoapps-utils == 0.5.0a3 - geoh5py == 0.11.0a4 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@730fa00953165f6fd5a87c3942d05cf8e0a7e164 - octree-creation-app == 0.3.0a2 - param-sweeps == 0.2.1a1 diff --git a/environments/py-3.10-linux-64.conda.lock.yml b/environments/py-3.10-linux-64.conda.lock.yml index f9ba44d0..789daddd 100644 --- a/environments/py-3.10-linux-64.conda.lock.yml +++ b/environments/py-3.10-linux-64.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 5f80e0e4631df6610ff6b7d985c9c32876b203c29edebe7055b66c2ac402f7c8 +# input_hash: 786f21c248833646f6ecbdad8c0a52609fa162238698d09693a88e0055df2fc3 channels: - conda-forge @@ -124,7 +124,7 @@ dependencies: - readline=8.2=h8c095d6_2 - scikit-learn=1.4.2=py310h981052a_1 - scipy=1.14.1=py310hfcf56fc_2 - - setuptools=78.1.0=pyhff2d567_0 + - setuptools=78.1.1=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - tbb=2021.13.0=hceb3a55_1 @@ -153,7 +153,7 @@ dependencies: - pip: - geoapps-utils == 0.5.0a3 - geoh5py == 0.11.0a4 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@730fa00953165f6fd5a87c3942d05cf8e0a7e164 - octree-creation-app == 0.3.0a2 - param-sweeps == 0.2.1a1 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 4121f63a..d5eeb828 100644 --- a/environments/py-3.10-win-64-dev.conda.lock.yml +++ b/environments/py-3.10-win-64-dev.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: a9aedc5bb5e600c46166d8ce530ce38fd28a1ebf36c5f83f3a3609de8a4be14c +# input_hash: e1a8f401cfc4677a5d0a5b1bfd8b2b391bfc5eaccab239b55c1974599d111e83 channels: - conda-forge @@ -218,7 +218,7 @@ dependencies: - scikit-learn=1.4.2=py310hf2a6c47_1 - scipy=1.14.1=py310hbd0dde3_2 - send2trash=1.8.3=pyh5737063_1 - - setuptools=78.1.0=pyhff2d567_0 + - setuptools=78.1.1=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - sniffio=1.3.1=pyhd8ed1ab_1 - snowballstemmer=2.2.0=pyhd8ed1ab_0 @@ -292,7 +292,7 @@ dependencies: - pip: - geoapps-utils == 0.5.0a3 - geoh5py == 0.11.0a4 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@730fa00953165f6fd5a87c3942d05cf8e0a7e164 - octree-creation-app == 0.3.0a2 - param-sweeps == 0.2.1a1 diff --git a/environments/py-3.10-win-64.conda.lock.yml b/environments/py-3.10-win-64.conda.lock.yml index a807d719..06d5efc9 100644 --- a/environments/py-3.10-win-64.conda.lock.yml +++ b/environments/py-3.10-win-64.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: a9aedc5bb5e600c46166d8ce530ce38fd28a1ebf36c5f83f3a3609de8a4be14c +# input_hash: e1a8f401cfc4677a5d0a5b1bfd8b2b391bfc5eaccab239b55c1974599d111e83 channels: - conda-forge @@ -108,7 +108,7 @@ dependencies: - pyyaml=6.0.2=py310h38315fa_2 - scikit-learn=1.4.2=py310hf2a6c47_1 - scipy=1.14.1=py310hbd0dde3_2 - - setuptools=78.1.0=pyhff2d567_0 + - setuptools=78.1.1=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - tbb=2021.13.0=h62715c5_1 @@ -142,7 +142,7 @@ dependencies: - pip: - geoapps-utils == 0.5.0a3 - geoh5py == 0.11.0a4 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@730fa00953165f6fd5a87c3942d05cf8e0a7e164 - octree-creation-app == 0.3.0a2 - param-sweeps == 0.2.1a1 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 72afc728..ff3b65cc 100644 --- a/environments/py-3.11-linux-64-dev.conda.lock.yml +++ b/environments/py-3.11-linux-64-dev.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: c5288a1ebba1f0cbb480b3f1338e21cfcc5f83a7fa348fc730452b0c8eaa152f +# input_hash: cb6665c81a612550aea5a8924b42c6100e242ca0ce8a2e66e9cd64952882efc4 channels: - conda-forge @@ -235,7 +235,7 @@ dependencies: - scikit-learn=1.4.2=py311he08f58d_1 - scipy=1.14.1=py311he9a78e4_2 - send2trash=1.8.3=pyh0d859eb_1 - - setuptools=78.1.0=pyhff2d567_0 + - setuptools=78.1.1=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - sniffio=1.3.1=pyhd8ed1ab_1 - snowballstemmer=2.2.0=pyhd8ed1ab_0 @@ -304,7 +304,7 @@ dependencies: - pip: - geoapps-utils == 0.5.0a3 - geoh5py == 0.11.0a4 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@730fa00953165f6fd5a87c3942d05cf8e0a7e164 - octree-creation-app == 0.3.0a2 - param-sweeps == 0.2.1a1 diff --git a/environments/py-3.11-linux-64.conda.lock.yml b/environments/py-3.11-linux-64.conda.lock.yml index 7184d242..51ff77e9 100644 --- a/environments/py-3.11-linux-64.conda.lock.yml +++ b/environments/py-3.11-linux-64.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: c5288a1ebba1f0cbb480b3f1338e21cfcc5f83a7fa348fc730452b0c8eaa152f +# input_hash: cb6665c81a612550aea5a8924b42c6100e242ca0ce8a2e66e9cd64952882efc4 channels: - conda-forge @@ -125,7 +125,7 @@ dependencies: - readline=8.2=h8c095d6_2 - scikit-learn=1.4.2=py311he08f58d_1 - scipy=1.14.1=py311he9a78e4_2 - - setuptools=78.1.0=pyhff2d567_0 + - setuptools=78.1.1=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - tbb=2021.13.0=hceb3a55_1 @@ -155,7 +155,7 @@ dependencies: - pip: - geoapps-utils == 0.5.0a3 - geoh5py == 0.11.0a4 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@730fa00953165f6fd5a87c3942d05cf8e0a7e164 - octree-creation-app == 0.3.0a2 - param-sweeps == 0.2.1a1 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 37d7359e..991d21ad 100644 --- a/environments/py-3.11-win-64-dev.conda.lock.yml +++ b/environments/py-3.11-win-64-dev.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: 617bef7b79ba8c81c0cabeecff2a297d77f243179cfc6277cd1c97d18ae76c5c +# input_hash: a88e5079ab2ac39fd52b1c7556f4afc444101de2cf7fbdf1da18097e4d71d43f channels: - conda-forge @@ -220,7 +220,7 @@ dependencies: - scikit-learn=1.4.2=py311hdcb8d17_1 - scipy=1.14.1=py311hf16d85f_2 - send2trash=1.8.3=pyh5737063_1 - - setuptools=78.1.0=pyhff2d567_0 + - setuptools=78.1.1=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - sniffio=1.3.1=pyhd8ed1ab_1 - snowballstemmer=2.2.0=pyhd8ed1ab_0 @@ -295,7 +295,7 @@ dependencies: - pip: - geoapps-utils == 0.5.0a3 - geoh5py == 0.11.0a4 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@730fa00953165f6fd5a87c3942d05cf8e0a7e164 - octree-creation-app == 0.3.0a2 - param-sweeps == 0.2.1a1 diff --git a/environments/py-3.11-win-64.conda.lock.yml b/environments/py-3.11-win-64.conda.lock.yml index ba673d45..3a3a3682 100644 --- a/environments/py-3.11-win-64.conda.lock.yml +++ b/environments/py-3.11-win-64.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: 617bef7b79ba8c81c0cabeecff2a297d77f243179cfc6277cd1c97d18ae76c5c +# input_hash: a88e5079ab2ac39fd52b1c7556f4afc444101de2cf7fbdf1da18097e4d71d43f channels: - conda-forge @@ -109,7 +109,7 @@ dependencies: - pyyaml=6.0.2=py311h5082efb_2 - scikit-learn=1.4.2=py311hdcb8d17_1 - scipy=1.14.1=py311hf16d85f_2 - - setuptools=78.1.0=pyhff2d567_0 + - setuptools=78.1.1=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - tbb=2021.13.0=h62715c5_1 @@ -144,7 +144,7 @@ dependencies: - pip: - geoapps-utils == 0.5.0a3 - geoh5py == 0.11.0a4 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@730fa00953165f6fd5a87c3942d05cf8e0a7e164 - octree-creation-app == 0.3.0a2 - param-sweeps == 0.2.1a1 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 e5c45fc5..a6c55ff1 100644 --- a/environments/py-3.12-linux-64-dev.conda.lock.yml +++ b/environments/py-3.12-linux-64-dev.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 46e0e2b61133dc39d04ca1a932571bab7ef29a782ca68eff8139eca7c48a28b1 +# input_hash: 398d654fb76a679002e71da3f82bc3ff4a37d34689965e0d027a9b8b8e7bd1a5 channels: - conda-forge @@ -235,7 +235,7 @@ dependencies: - scikit-learn=1.4.2=py312h1fcc3ea_1 - scipy=1.14.1=py312h62794b6_2 - send2trash=1.8.3=pyh0d859eb_1 - - setuptools=78.1.0=pyhff2d567_0 + - setuptools=78.1.1=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - sniffio=1.3.1=pyhd8ed1ab_1 - snowballstemmer=2.2.0=pyhd8ed1ab_0 @@ -304,7 +304,7 @@ dependencies: - pip: - geoapps-utils == 0.5.0a3 - geoh5py == 0.11.0a4 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@730fa00953165f6fd5a87c3942d05cf8e0a7e164 - octree-creation-app == 0.3.0a2 - param-sweeps == 0.2.1a1 diff --git a/environments/py-3.12-linux-64.conda.lock.yml b/environments/py-3.12-linux-64.conda.lock.yml index d09be109..6bafa294 100644 --- a/environments/py-3.12-linux-64.conda.lock.yml +++ b/environments/py-3.12-linux-64.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 46e0e2b61133dc39d04ca1a932571bab7ef29a782ca68eff8139eca7c48a28b1 +# input_hash: 398d654fb76a679002e71da3f82bc3ff4a37d34689965e0d027a9b8b8e7bd1a5 channels: - conda-forge @@ -125,7 +125,7 @@ dependencies: - readline=8.2=h8c095d6_2 - scikit-learn=1.4.2=py312h1fcc3ea_1 - scipy=1.14.1=py312h62794b6_2 - - setuptools=78.1.0=pyhff2d567_0 + - setuptools=78.1.1=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - tbb=2021.13.0=hceb3a55_1 @@ -155,7 +155,7 @@ dependencies: - pip: - geoapps-utils == 0.5.0a3 - geoh5py == 0.11.0a4 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@730fa00953165f6fd5a87c3942d05cf8e0a7e164 - octree-creation-app == 0.3.0a2 - param-sweeps == 0.2.1a1 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 ca4ae8cf..a583f3f2 100644 --- a/environments/py-3.12-win-64-dev.conda.lock.yml +++ b/environments/py-3.12-win-64-dev.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: b0a0dc55f494b271b3e6274e5a61928da568a8684aa2376ddf2dfa25e930fae4 +# input_hash: b7b89c455d6cfa233775cd379dfc6668ca87d22340d35670d5bfd0bf85fb08bb channels: - conda-forge @@ -220,7 +220,7 @@ dependencies: - scikit-learn=1.4.2=py312h816cc57_1 - scipy=1.14.1=py312h337df96_2 - send2trash=1.8.3=pyh5737063_1 - - setuptools=78.1.0=pyhff2d567_0 + - setuptools=78.1.1=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - sniffio=1.3.1=pyhd8ed1ab_1 - snowballstemmer=2.2.0=pyhd8ed1ab_0 @@ -295,7 +295,7 @@ dependencies: - pip: - geoapps-utils == 0.5.0a3 - geoh5py == 0.11.0a4 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@730fa00953165f6fd5a87c3942d05cf8e0a7e164 - octree-creation-app == 0.3.0a2 - param-sweeps == 0.2.1a1 diff --git a/environments/py-3.12-win-64.conda.lock.yml b/environments/py-3.12-win-64.conda.lock.yml index 630d68ee..7f4bd102 100644 --- a/environments/py-3.12-win-64.conda.lock.yml +++ b/environments/py-3.12-win-64.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: b0a0dc55f494b271b3e6274e5a61928da568a8684aa2376ddf2dfa25e930fae4 +# input_hash: b7b89c455d6cfa233775cd379dfc6668ca87d22340d35670d5bfd0bf85fb08bb channels: - conda-forge @@ -109,7 +109,7 @@ dependencies: - pyyaml=6.0.2=py312h31fea79_2 - scikit-learn=1.4.2=py312h816cc57_1 - scipy=1.14.1=py312h337df96_2 - - setuptools=78.1.0=pyhff2d567_0 + - setuptools=78.1.1=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - tbb=2021.13.0=h62715c5_1 @@ -144,7 +144,7 @@ dependencies: - pip: - geoapps-utils == 0.5.0a3 - geoh5py == 0.11.0a4 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@730fa00953165f6fd5a87c3942d05cf8e0a7e164 - octree-creation-app == 0.3.0a2 - param-sweeps == 0.2.1a1 diff --git a/py-3.10.conda-lock.yml b/py-3.10.conda-lock.yml index d6a2272f..1a287b11 100644 --- a/py-3.10.conda-lock.yml +++ b/py-3.10.conda-lock.yml @@ -15,8 +15,8 @@ version: 1 metadata: content_hash: - win-64: a9aedc5bb5e600c46166d8ce530ce38fd28a1ebf36c5f83f3a3609de8a4be14c - linux-64: 5f80e0e4631df6610ff6b7d985c9c32876b203c29edebe7055b66c2ac402f7c8 + win-64: e1a8f401cfc4677a5d0a5b1bfd8b2b391bfc5eaccab239b55c1974599d111e83 + linux-64: 786f21c248833646f6ecbdad8c0a52609fa162238698d09693a88e0055df2fc3 channels: - url: conda-forge used_env_vars: [] @@ -35,7 +35,7 @@ package: platform: linux-64 dependencies: llvm-openmp: '>=9.0.1' - url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-3_kmp_llvm.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/win-64/_openmp_mutex-4.5-2_gnu.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/accessible-pygments-0.0.5-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/accessible-pygments-0.0.5-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/alabaster-0.7.16-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/alabaster-0.7.16-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/anyio-4.9.0-pyh29332c3_0.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/anyio-4.9.0-pyh29332c3_0.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/argon2-cffi-23.1.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/argon2-cffi-23.1.0-pyhd8ed1ab_1.conda hash: md5: a7ee488b71c30ada51c48468337b85ba sha256: 7af62339394986bc470a7a231c7f37ad0173ffb41f6bc0e8e31b0be9e3b9d20f @@ -184,7 +184,7 @@ package: argon2-cffi-bindings: '' python: '>=3.9' typing-extensions: '' - url: https://conda.anaconda.org/conda-forge/noarch/argon2-cffi-23.1.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/argon2-cffi-23.1.0-pyhd8ed1ab_1.conda hash: md5: a7ee488b71c30ada51c48468337b85ba sha256: 7af62339394986bc470a7a231c7f37ad0173ffb41f6bc0e8e31b0be9e3b9d20f @@ -200,7 +200,7 @@ package: libgcc: '>=13' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://conda.anaconda.org/conda-forge/linux-64/argon2-cffi-bindings-21.2.0-py310ha75aee5_5.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/win-64/argon2-cffi-bindings-21.2.0-py310ha8f682b_5.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/arrow-1.3.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/arrow-1.3.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/asciitree-0.3.3-py_2.tar.bz2 + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/asciitree-0.3.3-py_2.tar.bz2 + url: https://repo.prefix.dev/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.0.0' - url: https://conda.anaconda.org/conda-forge/linux-64/astroid-3.3.9-py310hff52083_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/astroid-3.3.9-py310hff52083_0.conda hash: md5: 2d8f1127e88e64103552fbf86a306eee sha256: b95f04ff05b296e1ac706d57a3a0bf7bf12b3275d6042a48ac73fee0a0631793 @@ -297,7 +297,7 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* typing_extensions: '>=4.0.0' - url: https://conda.anaconda.org/conda-forge/win-64/astroid-3.3.9-py310h5588dad_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/astroid-3.3.9-py310h5588dad_0.conda hash: md5: 09a0c7f312f8a1e34547ea43cc85867f sha256: a4ce7d09c0762da3c3f67c5a6ae6e5b364339599e0f8e13ee62440c943ce692d @@ -309,7 +309,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/asttokens-3.0.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/asttokens-3.0.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/async-lru-2.0.5-pyh29332c3_0.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/async-lru-2.0.5-pyh29332c3_0.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/attrs-25.3.0-pyh71513ae_0.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/attrs-25.3.0-pyh71513ae_0.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/babel-2.17.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/babel-2.17.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.13.4-pyha770c72_0.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.13.4-pyha770c72_0.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/bleach-6.2.0-pyh29332c3_4.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/bleach-6.2.0-pyh29332c3_4.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/bleach-with-css-6.2.0-h82add2a_4.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/bleach-with-css-6.2.0-h82add2a_4.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/bokeh-3.6.3-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/bokeh-3.6.3-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/linux-64/brotli-1.1.0-hb9d3cd8_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/brotli-1.1.0-hb9d3cd8_2.conda hash: md5: 98514fe74548d768907ce7a13f680e8f sha256: fcb0b5b28ba7492093e54f3184435144e074dfceab27ac8e6a9457e736565b0b @@ -552,7 +552,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/brotli-1.1.0-h2466b09_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/brotli-1.1.0-h2466b09_2.conda hash: md5: 378f1c9421775dfe644731cb121c8979 sha256: d8fd7d1b446706776117d2dcad1c0289b9f5e1521cb13405173bad38568dd252 @@ -567,7 +567,7 @@ package: libbrotlidec: 1.1.0 libbrotlienc: 1.1.0 libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/brotli-bin-1.1.0-hb9d3cd8_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/brotli-bin-1.1.0-hb9d3cd8_2.conda hash: md5: c63b5e52939e795ba8d26e35d767a843 sha256: 261364d7445513b9a4debc345650fad13c627029bfc800655a266bf1e375bc65 @@ -583,7 +583,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/brotli-bin-1.1.0-h2466b09_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/brotli-bin-1.1.0-h2466b09_2.conda hash: md5: d22534a9be5771fc58eb7564947f669d sha256: f3bf2893613540ac256c68f211861c4de618d96291719e32178d894114ac2bc2 @@ -599,7 +599,7 @@ package: libstdcxx: '>=13' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.1.0-py310hf71b8c6_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/brotli-python-1.1.0-py310hf71b8c6_2.conda hash: md5: bf502c169c71e3c6ac0d6175addfacc2 sha256: 14f1e89d3888d560a553f40ac5ba83e4435a107552fa5b2b2029a7472554c1ef @@ -615,7 +615,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/brotli-python-1.1.0-py310h9e98ed7_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/brotli-python-1.1.0-py310h9e98ed7_2.conda hash: md5: 3a10a1d0cf3ece273195f26191fd6cc6 sha256: 1b7893a07f2323410b09b63b4627103efa86163be835ac94966333b37741cdc7 @@ -628,7 +628,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda + url: https://repo.prefix.dev/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda hash: md5: 276e7ffe9ffe39688abc665ef0f45596 sha256: 35a5dad92e88fdd7fc405e864ec239486f4f31eec229e31686e61a140a8e573b @@ -655,7 +655,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.34.5-hb9d3cd8_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/c-ares-1.34.5-hb9d3cd8_0.conda hash: md5: f7f0d6cc2dc986d42ac2689ec88192be sha256: f8003bef369f57396593ccd03d08a8e21966157269426f71e943f96e4b579aeb @@ -666,7 +666,7 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2025.1.31-hbcca054_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/ca-certificates-2025.1.31-hbcca054_0.conda hash: md5: 19f3a56f68d2fd06c516076bff482c52 sha256: bf832198976d559ab44d6cdb315642655547e26d826e34da67cbee6624cda189 @@ -677,7 +677,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2025.1.31-h56e8100_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/ca-certificates-2025.1.31-h56e8100_0.conda hash: md5: 5304a31607974dfc2110dfbb662ed092 sha256: 1bedccdf25a3bd782d6b0e57ddd97cdcda5501716009f2de4479a779221df155 @@ -689,7 +689,7 @@ package: platform: linux-64 dependencies: cached_property: '>=1.5.2,<1.5.3.0a0' - url: https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 hash: md5: 576d629e47797577ab0f1b351297ef4a sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7 @@ -725,7 +725,7 @@ package: platform: win-64 dependencies: python: '>=3.6' - url: https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 hash: md5: 576d629e47797577ab0f1b351297ef4a sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7 @@ -737,7 +737,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda hash: md5: c207fa5ac7ea99b149344385a9c0880d sha256: 42a78446da06a2568cb13e69be3355169fbd0ea424b00fc80b7d840f5baaacf3 @@ -749,7 +749,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda hash: md5: c207fa5ac7ea99b149344385a9c0880d sha256: 42a78446da06a2568cb13e69be3355169fbd0ea424b00fc80b7d840f5baaacf3 @@ -766,7 +766,7 @@ package: pycparser: '' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.17.1-py310h8deb56e_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/cffi-1.17.1-py310h8deb56e_0.conda hash: md5: 1fc24a3196ad5ede2a68148be61894f4 sha256: 1b389293670268ab80c3b8735bc61bc71366862953e000efbb82204d00e41b6c @@ -783,7 +783,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/cffi-1.17.1-py310ha8f682b_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/cffi-1.17.1-py310ha8f682b_0.conda hash: md5: 9c7ec967f4ae263aec56cff05bdbfc07 sha256: 32638e79658f76e3700f783c519025290110f207833ae1d166d262572cbec8a8 @@ -795,7 +795,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda hash: md5: e83a31202d1c0a000fce3e9cf3825875 sha256: 4e0ee91b97e5de3e74567bdacea27f0139709fceca4db8adffbe24deffccb09b @@ -807,7 +807,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda hash: md5: e83a31202d1c0a000fce3e9cf3825875 sha256: 4e0ee91b97e5de3e74567bdacea27f0139709fceca4db8adffbe24deffccb09b @@ -820,7 +820,7 @@ package: dependencies: __unix: '' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.8-pyh707e725_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/click-8.1.8-pyh707e725_0.conda hash: md5: f22f4d4970e09d68a10b922cbb0408d3 sha256: c920d23cd1fcf565031c679adb62d848af60d6fbb0edc2d50ba475cea4f0d8ab @@ -834,7 +834,7 @@ package: __win: '' colorama: '' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.8-pyh7428d3b_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/click-8.1.8-pyh7428d3b_0.conda hash: md5: 90e5571556f7a45db92ee51cb8f97af6 sha256: c889ed359ae47eead4ffe8927b7206b22c55e67d6e74a9044c23736919d61e8d @@ -846,7 +846,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/cloudpickle-3.1.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/cloudpickle-3.1.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/comm-0.2.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/comm-0.2.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/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.10,<3.11.0a0' python_abi: 3.10.* - url: https://conda.anaconda.org/conda-forge/linux-64/contourpy-1.3.2-py310h3788b33_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/contourpy-1.3.2-py310h3788b33_0.conda hash: md5: b6420d29123c7c823de168f49ccdfe6a sha256: 5231c1b68e01a9bc9debabc077a6fb48c4395206d59f40a4598d1d5e353e11d8 @@ -942,7 +942,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/contourpy-1.3.2-py310hc19bc0b_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/contourpy-1.3.2-py310hc19bc0b_0.conda hash: md5: 039416813b5290e7d100a05bb4326110 sha256: 096a7cf6bf77faf3e093936d831118151781ddbd2ab514355ee2f0104b490b1e @@ -958,7 +958,7 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* tomli: '' - url: https://conda.anaconda.org/conda-forge/linux-64/coverage-7.8.0-py310h89163eb_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.8.0-py310h89163eb_0.conda hash: md5: 9f7865c17117d16f804b687b498e35fa sha256: ac410dbd3b1e28d40b88a27f801210b853ebd388f3cf20f85c0178e97f788013 @@ -975,7 +975,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/coverage-7.8.0-py310h38315fa_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.8.0-py310h38315fa_0.conda hash: md5: 30a825dae940c63c55bca8df4f806f3e sha256: f16e7370e327f20ccba8a6edfb0441ec425c11c10744d6eaa817d05076b458a5 @@ -988,7 +988,7 @@ package: dependencies: python: '>=3.10,<3.11.0a0' python_abi: '*' - url: https://conda.anaconda.org/conda-forge/noarch/cpython-3.10.17-py310hd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/cpython-3.10.17-py310hd8ed1ab_0.conda hash: md5: e2b81369f0473107784f8b7da8e6a8e9 sha256: 6944d47f2bf3c443d5af855ee0c77156da1b90c6f0e79cedc3b934bcd2794d64 @@ -1000,7 +1000,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda hash: md5: 44600c4667a319d67dbe0681fc0bc833 sha256: 9827efa891e507a91a8a2acf64e210d2aff394e1cde432ad08e1f8c66b12293c @@ -1028,7 +1028,7 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* toolz: '>=0.10.0' - url: https://conda.anaconda.org/conda-forge/linux-64/cytoolz-1.0.1-py310ha75aee5_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/cytoolz-1.0.1-py310ha75aee5_0.conda hash: md5: d0be1adaa04a03aed745f3d02afb59ce sha256: b427689dfc24a6a297363122ce10d502ea00ddb3c43af6cff175ff563cc94eea @@ -1045,7 +1045,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/cytoolz-1.0.1-py310ha8f682b_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/cytoolz-1.0.1-py310ha8f682b_0.conda hash: md5: ed2af2a0262d44f753738588640b8534 sha256: 670800d13b6cd64b8f53756b28254b47cfc177606dcd42094696582335ed0f02 @@ -1065,7 +1065,7 @@ package: python: '>=3.10' pyyaml: '>=5.3.1' toolz: '>=0.10.0' - url: https://conda.anaconda.org/conda-forge/noarch/dask-core-2025.3.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/dask-core-2025.3.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/dataclasses-0.8-pyhc8e2a94_3.tar.bz2 + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/dataclasses-0.8-pyhc8e2a94_3.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/dataclasses-0.8-pyhc8e2a94_3.tar.bz2 hash: md5: a362b2124b06aad102e2ee4581acee7d sha256: 63a83e62e0939bc1ab32de4ec736f6403084198c4639638b354a352113809c92 @@ -1125,7 +1125,7 @@ package: libstdcxx: '>=13' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://conda.anaconda.org/conda-forge/linux-64/debugpy-1.8.14-py310hf71b8c6_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/debugpy-1.8.14-py310hf71b8c6_0.conda hash: md5: f684f79f834ebff4917f1fef366e2ca4 sha256: 532e0ec65d575b1f2b77febff5e357759e4e463118c0b4c01596d954f491bacc @@ -1141,7 +1141,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/debugpy-1.8.14-py310h9e98ed7_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/debugpy-1.8.14-py310h9e98ed7_0.conda hash: md5: 4849f4e95ac1018bf446394ee0661e16 sha256: 81c5c211a59888178a6d9011e74baf3bae5a319dfcd29a2a8ac3b30bcab5ef41 @@ -1153,7 +1153,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/decorator-5.2.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/decorator-5.2.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2 + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2 hash: md5: 961b3a227b437d82ad7054484cfa71b2 sha256: 9717a059677553562a8f38ff07f3b9f61727bd614f505658b0a5ecbcf8df89be @@ -1201,7 +1201,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda hash: md5: 885745570573eb6a08e021841928297a sha256: 43dca52c96fde0c4845aaff02bcc92f25e1c2e5266ddefc2eac1a3de0960a3b1 @@ -1213,7 +1213,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda hash: md5: 885745570573eb6a08e021841928297a sha256: 43dca52c96fde0c4845aaff02bcc92f25e1c2e5266ddefc2eac1a3de0960a3b1 @@ -1231,7 +1231,7 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* scipy: '>=1.8' - url: https://conda.anaconda.org/conda-forge/linux-64/discretize-0.11.2-py310ha2bacc8_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/discretize-0.11.2-py310ha2bacc8_1.conda hash: md5: d32664b47026c5d23de390d8b46a2701 sha256: d065d856c25e199a77115a4d8fd54139ee699724a3f1dda6a3f45f33589a66a7 @@ -1249,7 +1249,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/discretize-0.11.2-py310h3e8ed56_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/discretize-0.11.2-py310h3e8ed56_1.conda hash: md5: c9cecabe0352f8d1b7ff7e9d52df7270 sha256: e9b03398c7bd480b6e9e287fe673bf767694bdb96cc8d95bb9500bcd25766b5e @@ -1277,7 +1277,7 @@ package: tornado: '>=6.2.0' urllib3: '>=1.26.5' zict: '>=3.0.0' - url: https://conda.anaconda.org/conda-forge/noarch/distributed-2025.3.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/distributed-2025.3.0-pyhd8ed1ab_0.conda hash: md5: 968a7a4ff98bcfb515b0f1c94d35553f sha256: ea055aeda774d03ec96e0901ec119c6d3dc21ddd50af166bec664a76efd5f82a @@ -1305,7 +1305,7 @@ package: tornado: '>=6.2.0' urllib3: '>=1.26.5' zict: '>=3.0.0' - url: https://conda.anaconda.org/conda-forge/noarch/distributed-2025.3.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/distributed-2025.3.0-pyhd8ed1ab_0.conda hash: md5: 968a7a4ff98bcfb515b0f1c94d35553f sha256: ea055aeda774d03ec96e0901ec119c6d3dc21ddd50af166bec664a76efd5f82a @@ -1318,7 +1318,7 @@ package: dependencies: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://conda.anaconda.org/conda-forge/linux-64/docutils-0.19-py310hff52083_1.tar.bz2 + url: https://repo.prefix.dev/conda-forge/linux-64/docutils-0.19-py310hff52083_1.tar.bz2 hash: md5: 21b8fa2179290505e607f5ccd65b01b0 sha256: f3a564449daedafe5931ab4efe7bc4f240182f2b760e7877f15b2898b7f1c988 @@ -1331,7 +1331,7 @@ package: dependencies: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://conda.anaconda.org/conda-forge/win-64/docutils-0.19-py310h5588dad_1.tar.bz2 + url: https://repo.prefix.dev/conda-forge/win-64/docutils-0.19-py310h5588dad_1.tar.bz2 hash: md5: 88111d95b12d83681d0ecdbbc24eee8e sha256: 6b40f145b1fdf6b45016d29f193a8ca72a9359ea44cc19624901248f7a9b5ba7 @@ -1343,7 +1343,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda hash: md5: a16662747cdeb9abbac74d0057cc976e sha256: cbde2c64ec317118fc06b223c5fd87c8a680255e7348dd60e7b292d2e103e701 @@ -1355,7 +1355,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda hash: md5: a16662747cdeb9abbac74d0057cc976e sha256: cbde2c64ec317118fc06b223c5fd87c8a680255e7348dd60e7b292d2e103e701 @@ -1367,7 +1367,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/executing-2.1.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/executing-2.1.0-pyhd8ed1ab_1.conda hash: md5: ef8b5fca76806159fc25b4f48d8737eb sha256: 28d25ea375ebab4bf7479228f8430db20986187b04999136ff5c722ebd32eb60 @@ -1379,7 +1379,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/executing-2.1.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/executing-2.1.0-pyhd8ed1ab_1.conda hash: md5: ef8b5fca76806159fc25b4f48d8737eb sha256: 28d25ea375ebab4bf7479228f8430db20986187b04999136ff5c722ebd32eb60 @@ -1391,7 +1391,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/fasteners-0.19-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/fasteners-0.19-pyhd8ed1ab_1.conda hash: md5: dbe9d42e94b5ff7af7b7893f4ce052e7 sha256: 42fb170778b47303e82eddfea9a6d1e1b8af00c927cd5a34595eaa882b903a16 @@ -1403,7 +1403,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/fasteners-0.19-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/fasteners-0.19-pyhd8ed1ab_1.conda hash: md5: dbe9d42e94b5ff7af7b7893f4ce052e7 sha256: 42fb170778b47303e82eddfea9a6d1e1b8af00c927cd5a34595eaa882b903a16 @@ -1421,7 +1421,7 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* unicodedata2: '>=15.1.0' - url: https://conda.anaconda.org/conda-forge/linux-64/fonttools-4.57.0-py310h89163eb_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/fonttools-4.57.0-py310h89163eb_0.conda hash: md5: 34378af82141b3c1725dcdf898b28fc6 sha256: 8b387f0906c8ea04f14eb449e1b58e01fb2cdc4b9a093edf6afdc9625c11cfd6 @@ -1440,7 +1440,7 @@ package: unicodedata2: '>=15.1.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/fonttools-4.57.0-py310h38315fa_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/fonttools-4.57.0-py310h38315fa_0.conda hash: md5: 1f25f742c39582715cc058f5fe451975 sha256: bcb3848cb9cc0ff51284dfd91a7615d2c38ba0bd324b3c9764bd53ff0753a874 @@ -1453,7 +1453,7 @@ package: dependencies: cached-property: '>=1.3.0' python: '>=3.9,<4' - url: https://conda.anaconda.org/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_1.conda hash: md5: d3549fd50d450b6d9e7dddff25dd2110 sha256: 2509992ec2fd38ab27c7cdb42cf6cadc566a1cc0d1021a2673475d9fa87c6276 @@ -1466,7 +1466,7 @@ package: dependencies: cached-property: '>=1.3.0' python: '>=3.9,<4' - url: https://conda.anaconda.org/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_1.conda hash: md5: d3549fd50d450b6d9e7dddff25dd2110 sha256: 2509992ec2fd38ab27c7cdb42cf6cadc566a1cc0d1021a2673475d9fa87c6276 @@ -1481,7 +1481,7 @@ package: libgcc: '>=13' libpng: '>=1.6.47,<1.7.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/freetype-2.13.3-h48d6fc4_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/freetype-2.13.3-h48d6fc4_0.conda hash: md5: 9ecfd6f2ca17077dd9c2d24770bb9ccd sha256: 7385577509a9c4730130f54bb6841b9b416249d5f4e9f74bf313e6378e313c57 @@ -1497,7 +1497,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/freetype-2.13.3-h0b5ce68_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/freetype-2.13.3-h0b5ce68_0.conda hash: md5: 9c461ed7b07fb360d2c8cfe726c7d521 sha256: 67e3af0fbe6c25f5ab1af9a3d3000464c5e88a8a0b4b06602f4a5243a8a1fd42 @@ -1509,7 +1509,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/fsspec-2025.3.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2025.3.2-pyhd8ed1ab_0.conda hash: md5: 9c40692c3d24c7aaf335f673ac09d308 sha256: 2040d4640708bd6ab9ed6cb9901267441798c44974bc63c9b6c1cb4c1891d825 @@ -1521,7 +1521,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/fsspec-2025.3.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2025.3.2-pyhd8ed1ab_0.conda hash: md5: 9c40692c3d24c7aaf335f673ac09d308 sha256: 2040d4640708bd6ab9ed6cb9901267441798c44974bc63c9b6c1cb4c1891d825 @@ -1540,7 +1540,7 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* scipy: '>=1.8' - url: https://conda.anaconda.org/conda-forge/linux-64/geoana-0.7.2-py310ha2bacc8_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/geoana-0.7.2-py310ha2bacc8_0.conda hash: md5: c49d268934279b306219be6320b1b290 sha256: fdbb0e98fd00195b2d6b5d3e0d0ee08397f722e1b3da262a65f32da6fc54ef5e @@ -1559,7 +1559,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/geoana-0.7.2-py310h3e8ed56_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/geoana-0.7.2-py310h3e8ed56_0.conda hash: md5: 3105f90b59411ab6b71bc3c8b71d8b36 sha256: 4d8b287ad229c1dd59b6c76dfdc1a968af2e5229e1cbd146827fedaf419649d7 @@ -1575,7 +1575,7 @@ package: libstdcxx: '>=13' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://conda.anaconda.org/conda-forge/linux-64/greenlet-3.2.0-py310hf71b8c6_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/greenlet-3.2.0-py310hf71b8c6_0.conda hash: md5: 2d0aa4f1ea2b448a962d36d129c361cf sha256: 9bab6545c1dc4f2d2e5eff1f0a740d348fc7985a84d99b91d20ba22e8f59e67d @@ -1591,7 +1591,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/greenlet-3.2.0-py310h9e98ed7_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/greenlet-3.2.0-py310h9e98ed7_0.conda hash: md5: ab3eb05a1a08628fe621b83d943ea491 sha256: b1606a7e1b19e62ef987a230c4b671af5e2647b3418a72ba1c44709bd50f3279 @@ -1604,7 +1604,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '' - url: https://conda.anaconda.org/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_1.conda hash: md5: 7ee49e89531c0dcbba9466f6d115d585 sha256: 622516185a7c740d5c7f27016d0c15b45782c1501e5611deec63fd70344ce7c8 @@ -1617,7 +1617,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '' - url: https://conda.anaconda.org/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_1.conda hash: md5: 7ee49e89531c0dcbba9466f6d115d585 sha256: 622516185a7c740d5c7f27016d0c15b45782c1501e5611deec63fd70344ce7c8 @@ -1631,7 +1631,7 @@ package: hpack: '>=4.1,<5' hyperframe: '>=6.1,<7' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda hash: md5: b4754fb1bdcb70c8fd54f918301582c6 sha256: 0aa1cdc67a9fe75ea95b5644b734a756200d6ec9d0dff66530aec3d1c1e9df75 @@ -1645,7 +1645,7 @@ package: hpack: '>=4.1,<5' hyperframe: '>=6.1,<7' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda hash: md5: b4754fb1bdcb70c8fd54f918301582c6 sha256: 0aa1cdc67a9fe75ea95b5644b734a756200d6ec9d0dff66530aec3d1c1e9df75 @@ -1663,7 +1663,7 @@ package: numpy: '>=1.19,<3' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://conda.anaconda.org/conda-forge/linux-64/h5py-3.13.0-nompi_py310h60e0fe6_100.conda + url: https://repo.prefix.dev/conda-forge/linux-64/h5py-3.13.0-nompi_py310h60e0fe6_100.conda hash: md5: 262cb7007454532e0cdf88c34c0c8f41 sha256: 5907cd4f8a57d899a7319b2668321bda8a91b375b0a5e69a8729160b64600d67 @@ -1682,7 +1682,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/h5py-3.13.0-nompi_py310h2b0be38_100.conda + url: https://repo.prefix.dev/conda-forge/win-64/h5py-3.13.0-nompi_py310h2b0be38_100.conda hash: md5: 2ae28abdc4fe8fc89df85659c1cf8103 sha256: ac37afa6b26272b6b034d91b38e877a905059b526e238391bac500f9249b788b @@ -1702,7 +1702,7 @@ package: libstdcxx: '>=13' libzlib: '>=1.3.1,<2.0a0' openssl: '>=3.4.0,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.3-nompi_h2d575fe_109.conda + url: https://repo.prefix.dev/conda-forge/linux-64/hdf5-1.14.3-nompi_h2d575fe_109.conda hash: md5: e7a7a6e6f70553a31e6e79c65768d089 sha256: e8669a6d76d415f4fdbe682507ac3a3b39e8f493d2f2bdc520817f80b7cc0753 @@ -1720,7 +1720,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/hdf5-1.14.3-nompi_hb2c4d47_109.conda + url: https://repo.prefix.dev/conda-forge/win-64/hdf5-1.14.3-nompi_hb2c4d47_109.conda hash: md5: ebb61f3e8b35cc15e78876649b7246f7 sha256: d5ada33e119cdd62371c06f60eae6f545de7cea793ab83da2fba428bb1d2f813 @@ -1732,7 +1732,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda hash: md5: 0a802cb9888dd14eeefc611f05c40b6e sha256: 6ad78a180576c706aabeb5b4c8ceb97c0cb25f1e112d76495bff23e3779948ba @@ -1744,7 +1744,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda hash: md5: 0a802cb9888dd14eeefc611f05c40b6e sha256: 6ad78a180576c706aabeb5b4c8ceb97c0cb25f1e112d76495bff23e3779948ba @@ -1761,7 +1761,7 @@ package: h2: '>=3,<5' python: '>=3.8' sniffio: 1.* - url: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda hash: md5: 2ca8e6dbc86525c8b95e3c0ffa26442e sha256: c84d012a245171f3ed666a8bf9319580c269b7843ffa79f26468842da3abd5df @@ -1778,7 +1778,7 @@ package: h2: '>=3,<5' python: '>=3.8' sniffio: 1.* - url: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda hash: md5: 2ca8e6dbc86525c8b95e3c0ffa26442e sha256: c84d012a245171f3ed666a8bf9319580c269b7843ffa79f26468842da3abd5df @@ -1794,7 +1794,7 @@ package: httpcore: 1.* idna: '' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/httpx-0.28.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/httpx-0.28.1-pyhd8ed1ab_0.conda hash: md5: d6989ead454181f4f9bc987d3dc4e285 sha256: cd0f1de3697b252df95f98383e9edb1d00386bfdd03fdf607fa42fe5fcb09950 @@ -1810,7 +1810,7 @@ package: httpcore: 1.* idna: '' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/httpx-0.28.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/httpx-0.28.1-pyhd8ed1ab_0.conda hash: md5: d6989ead454181f4f9bc987d3dc4e285 sha256: cd0f1de3697b252df95f98383e9edb1d00386bfdd03fdf607fa42fe5fcb09950 @@ -1822,7 +1822,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda hash: md5: 8e6923fc12f1fe8f8c4e5c9f343256ac sha256: 77af6f5fe8b62ca07d09ac60127a30d9069fdc3c68d6b256754d0ffb1f7779f8 @@ -1834,7 +1834,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda hash: md5: 8e6923fc12f1fe8f8c4e5c9f343256ac sha256: 77af6f5fe8b62ca07d09ac60127a30d9069fdc3c68d6b256754d0ffb1f7779f8 @@ -1846,7 +1846,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda hash: md5: 39a4f67be3286c86d696df570b1201b7 sha256: d7a472c9fd479e2e8dcb83fb8d433fce971ea369d704ece380e876f9c3494e87 @@ -1858,7 +1858,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda hash: md5: 39a4f67be3286c86d696df570b1201b7 sha256: d7a472c9fd479e2e8dcb83fb8d433fce971ea369d704ece380e876f9c3494e87 @@ -1870,7 +1870,7 @@ package: platform: linux-64 dependencies: python: '>=3.4' - url: https://conda.anaconda.org/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2 hash: md5: 7de5386c8fea29e76b303f37dde4c352 sha256: c2bfd7043e0c4c12d8b5593de666c1e81d67b83c474a0a79282cc5c4ef845460 @@ -1882,7 +1882,7 @@ package: platform: win-64 dependencies: python: '>=3.4' - url: https://conda.anaconda.org/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2 hash: md5: 7de5386c8fea29e76b303f37dde4c352 sha256: c2bfd7043e0c4c12d8b5593de666c1e81d67b83c474a0a79282cc5c4ef845460 @@ -1895,7 +1895,7 @@ package: dependencies: python: '>=3.9' zipp: '>=0.5' - url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.6.1-pyha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/importlib-metadata-8.6.1-pyha770c72_0.conda hash: md5: f4b39bf00c69f56ac01e020ebfac066c sha256: 598951ebdb23e25e4cec4bbff0ae369cec65ead80b50bc08b441d8e54de5cf03 @@ -1908,7 +1908,7 @@ package: dependencies: python: '>=3.9' zipp: '>=0.5' - url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.6.1-pyha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/importlib-metadata-8.6.1-pyha770c72_0.conda hash: md5: f4b39bf00c69f56ac01e020ebfac066c sha256: 598951ebdb23e25e4cec4bbff0ae369cec65ead80b50bc08b441d8e54de5cf03 @@ -1920,7 +1920,7 @@ package: platform: linux-64 dependencies: importlib-metadata: '>=8.6.1,<8.6.2.0a0' - url: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-8.6.1-hd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/importlib_metadata-8.6.1-hd8ed1ab_0.conda hash: md5: 7f46575a91b1307441abc235d01cab66 sha256: 1e3eb9d65c4d7b87c7347553ef9eef6f994996f90a2299e19b35f5997d3a3e79 @@ -1932,7 +1932,7 @@ package: platform: win-64 dependencies: importlib-metadata: '>=8.6.1,<8.6.2.0a0' - url: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-8.6.1-hd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/importlib_metadata-8.6.1-hd8ed1ab_0.conda hash: md5: 7f46575a91b1307441abc235d01cab66 sha256: 1e3eb9d65c4d7b87c7347553ef9eef6f994996f90a2299e19b35f5997d3a3e79 @@ -1945,7 +1945,7 @@ package: dependencies: python: '>=3.9' zipp: '>=3.1.0' - url: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.5.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/importlib_resources-6.5.2-pyhd8ed1ab_0.conda hash: md5: c85c76dc67d75619a92f51dfbce06992 sha256: acc1d991837c0afb67c75b77fdc72b4bf022aac71fedd8b9ea45918ac9b08a80 @@ -1958,7 +1958,7 @@ package: dependencies: python: '>=3.9' zipp: '>=3.1.0' - url: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.5.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/importlib_resources-6.5.2-pyhd8ed1ab_0.conda hash: md5: c85c76dc67d75619a92f51dfbce06992 sha256: acc1d991837c0afb67c75b77fdc72b4bf022aac71fedd8b9ea45918ac9b08a80 @@ -1970,7 +1970,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda hash: md5: 6837f3eff7dcea42ecd714ce1ac2b108 sha256: 0ec8f4d02053cd03b0f3e63168316530949484f80e16f5e2fb199a1d117a89ca @@ -1982,7 +1982,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda hash: md5: 6837f3eff7dcea42ecd714ce1ac2b108 sha256: 0ec8f4d02053cd03b0f3e63168316530949484f80e16f5e2fb199a1d117a89ca @@ -1993,7 +1993,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/win-64/intel-openmp-2024.2.1-h57928b3_1083.conda + url: https://repo.prefix.dev/conda-forge/win-64/intel-openmp-2024.2.1-h57928b3_1083.conda hash: md5: 2d89243bfb53652c182a7c73182cce4f sha256: 0fd2b0b84c854029041b0ede8f4c2369242ee92acc0092f8407b1fe9238a8209 @@ -2018,7 +2018,7 @@ package: pyzmq: '>=24' tornado: '>=6.1' traitlets: '>=5.4.0' - url: https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.29.5-pyh3099207_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ipykernel-6.29.5-pyh3099207_0.conda hash: md5: b40131ab6a36ac2c09b7c57d4d3fbf99 sha256: 33cfd339bb4efac56edf93474b37ddc049e08b1b4930cf036c893cc1f5a1f32a @@ -2043,7 +2043,7 @@ package: pyzmq: '>=24' tornado: '>=6.1' traitlets: '>=5.4.0' - url: https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.29.5-pyh4bbf305_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ipykernel-6.29.5-pyh4bbf305_0.conda hash: md5: 18df5fc4944a679e085e0e8f31775fc8 sha256: dc569094125127c0078aa536f78733f383dd7e09507277ef8bcd1789786e7086 @@ -2067,7 +2067,7 @@ package: stack_data: '' traitlets: '>=5.13.0' typing_extensions: '>=4.6' - url: https://conda.anaconda.org/conda-forge/noarch/ipython-8.35.0-pyh907856f_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ipython-8.35.0-pyh907856f_0.conda hash: md5: 1c70446f398dab3c413f56adb8a5d212 sha256: 24a9f9ae8b5b15c11e1b71e44c9d4f483265c6c938ff3a88452864f57b81d104 @@ -2091,7 +2091,7 @@ package: stack_data: '' traitlets: '>=5.13.0' typing_extensions: '>=4.6' - url: https://conda.anaconda.org/conda-forge/noarch/ipython-8.35.0-pyh9ab4c32_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ipython-8.35.0-pyh9ab4c32_0.conda hash: md5: 7250b697b9f3edcb6ac3767bd170a3fe sha256: a1d2a5aa988f9ff59b247b414ab03ae439fb94b95b922fe110e7a90fb7f17677 @@ -2103,7 +2103,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/ipython_genutils-0.2.0-pyhd8ed1ab_2.conda + url: https://repo.prefix.dev/conda-forge/noarch/ipython_genutils-0.2.0-pyhd8ed1ab_2.conda hash: md5: 2f0ba4bc12af346bc6c99bdc377e8944 sha256: 45821a8986b4cb2421f766b240dbe6998a3c3123f012dd566720c1322e9b6e18 @@ -2115,7 +2115,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/ipython_genutils-0.2.0-pyhd8ed1ab_2.conda + url: https://repo.prefix.dev/conda-forge/noarch/ipython_genutils-0.2.0-pyhd8ed1ab_2.conda hash: md5: 2f0ba4bc12af346bc6c99bdc377e8944 sha256: 45821a8986b4cb2421f766b240dbe6998a3c3123f012dd566720c1322e9b6e18 @@ -2133,7 +2133,7 @@ package: python: '>=3.3' traitlets: '>=4.3.1' widgetsnbextension: '>=3.6.10,<3.7.0' - url: https://conda.anaconda.org/conda-forge/noarch/ipywidgets-7.8.5-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ipywidgets-7.8.5-pyhd8ed1ab_0.conda hash: md5: 47672c493015ab57d5fcde9531ab18ef sha256: 8cc67e44137bb779c76d92952fdc4d8cd475605f4f0d13e8d0f04f25c056939b @@ -2151,7 +2151,7 @@ package: python: '>=3.3' traitlets: '>=4.3.1' widgetsnbextension: '>=3.6.10,<3.7.0' - url: https://conda.anaconda.org/conda-forge/noarch/ipywidgets-7.8.5-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ipywidgets-7.8.5-pyhd8ed1ab_0.conda hash: md5: 47672c493015ab57d5fcde9531ab18ef sha256: 8cc67e44137bb779c76d92952fdc4d8cd475605f4f0d13e8d0f04f25c056939b @@ -2164,7 +2164,7 @@ package: dependencies: arrow: '>=0.15.0' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/isoduration-20.11.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/isoduration-20.11.0-pyhd8ed1ab_1.conda hash: md5: 0b0154421989637d424ccf0f104be51a sha256: 08e838d29c134a7684bca0468401d26840f41c92267c4126d7b43a6b533b0aed @@ -2177,7 +2177,7 @@ package: dependencies: arrow: '>=0.15.0' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/isoduration-20.11.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/isoduration-20.11.0-pyhd8ed1ab_1.conda hash: md5: 0b0154421989637d424ccf0f104be51a sha256: 08e838d29c134a7684bca0468401d26840f41c92267c4126d7b43a6b533b0aed @@ -2190,7 +2190,7 @@ package: dependencies: python: '>=3.9,<4.0' setuptools: '' - url: https://conda.anaconda.org/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_0.conda hash: md5: a8abfd3f223b1ecb8c699dca974933bd sha256: 9c5fb97efa0eb32b42564edaacb5edb9a1f82ba8f5f8b135e794960101115b5a @@ -2203,7 +2203,7 @@ package: dependencies: python: '>=3.9,<4.0' setuptools: '' - url: https://conda.anaconda.org/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_0.conda hash: md5: a8abfd3f223b1ecb8c699dca974933bd sha256: 9c5fb97efa0eb32b42564edaacb5edb9a1f82ba8f5f8b135e794960101115b5a @@ -2216,7 +2216,7 @@ package: dependencies: parso: '>=0.8.3,<0.9.0' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda hash: md5: a4f4c5dc9b80bc50e0d3dc4e6e8f1bd9 sha256: 92c4d217e2dc68983f724aa983cca5464dcb929c566627b26a2511159667dba8 @@ -2229,7 +2229,7 @@ package: dependencies: parso: '>=0.8.3,<0.9.0' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda hash: md5: a4f4c5dc9b80bc50e0d3dc4e6e8f1bd9 sha256: 92c4d217e2dc68983f724aa983cca5464dcb929c566627b26a2511159667dba8 @@ -2242,7 +2242,7 @@ package: dependencies: markupsafe: '>=2.0' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda hash: md5: 446bd6c8cb26050d528881df495ce646 sha256: f1ac18b11637ddadc05642e8185a851c7fab5998c6f5470d716812fae943b2af @@ -2255,7 +2255,7 @@ package: dependencies: markupsafe: '>=2.0' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda hash: md5: 446bd6c8cb26050d528881df495ce646 sha256: f1ac18b11637ddadc05642e8185a851c7fab5998c6f5470d716812fae943b2af @@ -2268,7 +2268,7 @@ package: dependencies: python: '>=3.9' setuptools: '' - url: https://conda.anaconda.org/conda-forge/noarch/joblib-1.4.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/joblib-1.4.2-pyhd8ed1ab_1.conda hash: md5: bf8243ee348f3a10a14ed0cae323e0c1 sha256: 51cc2dc491668af0c4d9299b0ab750f16ccf413ec5e2391b924108c1fbacae9b @@ -2281,7 +2281,7 @@ package: dependencies: python: '>=3.9' setuptools: '' - url: https://conda.anaconda.org/conda-forge/noarch/joblib-1.4.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/joblib-1.4.2-pyhd8ed1ab_1.conda hash: md5: bf8243ee348f3a10a14ed0cae323e0c1 sha256: 51cc2dc491668af0c4d9299b0ab750f16ccf413ec5e2391b924108c1fbacae9b @@ -2293,7 +2293,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/json5-0.12.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/json5-0.12.0-pyhd8ed1ab_0.conda hash: md5: 56275442557b3b45752c10980abfe2db sha256: 889e2a49de796475b5a4bc57d0ba7f4606b368ee2098e353a6d9a14b0e2c6393 @@ -2305,7 +2305,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/json5-0.12.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/json5-0.12.0-pyhd8ed1ab_0.conda hash: md5: 56275442557b3b45752c10980abfe2db sha256: 889e2a49de796475b5a4bc57d0ba7f4606b368ee2098e353a6d9a14b0e2c6393 @@ -2318,7 +2318,7 @@ package: dependencies: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://conda.anaconda.org/conda-forge/linux-64/jsonpointer-3.0.0-py310hff52083_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/jsonpointer-3.0.0-py310hff52083_1.conda hash: md5: ce614a01b0aee1b29cee13d606bcb5d5 sha256: ac8e92806a5017740b9a1113f0cab8559cd33884867ec7e99b556eb2fa847690 @@ -2331,7 +2331,7 @@ package: dependencies: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://conda.anaconda.org/conda-forge/win-64/jsonpointer-3.0.0-py310h5588dad_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/jsonpointer-3.0.0-py310h5588dad_1.conda hash: md5: 6810fe21e6fa93f073584994ea178a12 sha256: 8fa0874cd000f5592719f084abdeeffdb9cf096cc1ba09d45c265bb149a2ad63 @@ -2349,7 +2349,7 @@ package: python: '>=3.9' referencing: '>=0.28.4' rpds-py: '>=0.7.1' - url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_1.conda hash: md5: a3cead9264b331b32fe8f0aabc967522 sha256: be992a99e589146f229c58fe5083e0b60551d774511c494f91fe011931bd7893 @@ -2367,7 +2367,7 @@ package: python: '>=3.9' referencing: '>=0.28.4' rpds-py: '>=0.7.1' - url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_1.conda hash: md5: a3cead9264b331b32fe8f0aabc967522 sha256: be992a99e589146f229c58fe5083e0b60551d774511c494f91fe011931bd7893 @@ -2380,7 +2380,7 @@ package: dependencies: python: '>=3.9' referencing: '>=0.31.0' - url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2024.10.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-specifications-2024.10.1-pyhd8ed1ab_1.conda hash: md5: 3b519bc21bc80e60b456f1e62962a766 sha256: 37127133837444cf0e6d1a95ff5a505f8214ed4e89e8e9343284840e674c6891 @@ -2393,7 +2393,7 @@ package: dependencies: python: '>=3.9' referencing: '>=0.31.0' - url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2024.10.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-specifications-2024.10.1-pyhd8ed1ab_1.conda hash: md5: 3b519bc21bc80e60b456f1e62962a766 sha256: 37127133837444cf0e6d1a95ff5a505f8214ed4e89e8e9343284840e674c6891 @@ -2413,7 +2413,7 @@ package: rfc3986-validator: '>0.1.0' uri-template: '' webcolors: '>=24.6.0' - url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-with-format-nongpl-4.23.0-hd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-with-format-nongpl-4.23.0-hd8ed1ab_1.conda hash: md5: a5b1a8065857cc4bd8b7a38d063bb728 sha256: 6e0184530011961a0802fda100ecdfd4b0eca634ed94c37e553b72e21c26627d @@ -2433,7 +2433,7 @@ package: rfc3986-validator: '>0.1.0' uri-template: '' webcolors: '>=24.6.0' - url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-with-format-nongpl-4.23.0-hd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-with-format-nongpl-4.23.0-hd8ed1ab_1.conda hash: md5: a5b1a8065857cc4bd8b7a38d063bb728 sha256: 6e0184530011961a0802fda100ecdfd4b0eca634ed94c37e553b72e21c26627d @@ -2464,7 +2464,7 @@ package: sphinx-thebe: '>=0.3.1,<1' sphinx-togglebutton: '' sphinxcontrib-bibtex: '>=2.5.0,<3' - url: https://conda.anaconda.org/conda-forge/noarch/jupyter-book-1.0.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter-book-1.0.3-pyhd8ed1ab_1.conda hash: md5: 739a29ac73026e68405153b50d0c60c2 sha256: f028c32b5d97d24df44b1a41f771a9932e07815c60c02e24acd9bd2eca31097f @@ -2495,7 +2495,7 @@ package: sphinx-thebe: '>=0.3.1,<1' sphinx-togglebutton: '' sphinxcontrib-bibtex: '>=2.5.0,<3' - url: https://conda.anaconda.org/conda-forge/noarch/jupyter-book-1.0.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter-book-1.0.3-pyhd8ed1ab_1.conda hash: md5: 739a29ac73026e68405153b50d0c60c2 sha256: f028c32b5d97d24df44b1a41f771a9932e07815c60c02e24acd9bd2eca31097f @@ -2515,7 +2515,7 @@ package: pyyaml: '' sqlalchemy: '>=1.3.12,<3' tabulate: '' - url: https://conda.anaconda.org/conda-forge/noarch/jupyter-cache-1.0.1-pyhff2d567_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter-cache-1.0.1-pyhff2d567_0.conda hash: md5: b0ee650829b8974202a7abe7f8b81e5a sha256: 054d397dd45ed08bffb0976702e553dfb0d0b0a477da9cff36e2ea702e928f48 @@ -2535,7 +2535,7 @@ package: pyyaml: '' sqlalchemy: '>=1.3.12,<3' tabulate: '' - url: https://conda.anaconda.org/conda-forge/noarch/jupyter-cache-1.0.1-pyhff2d567_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter-cache-1.0.1-pyhff2d567_0.conda hash: md5: b0ee650829b8974202a7abe7f8b81e5a sha256: 054d397dd45ed08bffb0976702e553dfb0d0b0a477da9cff36e2ea702e928f48 @@ -2549,7 +2549,7 @@ package: importlib-metadata: '>=4.8.3' jupyter_server: '>=1.1.2' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/jupyter-lsp-2.2.5-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter-lsp-2.2.5-pyhd8ed1ab_1.conda hash: md5: 0b4c3908e5a38ea22ebb98ee5888c768 sha256: 1565c8b1423a37fca00fe0ab2a17cd8992c2ecf23e7867a1c9f6f86a9831c196 @@ -2563,7 +2563,7 @@ package: importlib-metadata: '>=4.8.3' jupyter_server: '>=1.1.2' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/jupyter-lsp-2.2.5-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter-lsp-2.2.5-pyhd8ed1ab_1.conda hash: md5: 0b4c3908e5a38ea22ebb98ee5888c768 sha256: 1565c8b1423a37fca00fe0ab2a17cd8992c2ecf23e7867a1c9f6f86a9831c196 @@ -2581,7 +2581,7 @@ package: pyzmq: '>=23.0' tornado: '>=6.2' traitlets: '>=5.3' - url: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda hash: md5: 4ebae00eae9705b0c3d6d1018a81d047 sha256: 19d8bd5bb2fde910ec59e081eeb59529491995ce0d653a5209366611023a0b3a @@ -2599,7 +2599,7 @@ package: pyzmq: '>=23.0' tornado: '>=6.2' traitlets: '>=5.3' - url: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda hash: md5: 4ebae00eae9705b0c3d6d1018a81d047 sha256: 19d8bd5bb2fde910ec59e081eeb59529491995ce0d653a5209366611023a0b3a @@ -2614,7 +2614,7 @@ package: platformdirs: '>=2.5' python: '>=3.8' traitlets: '>=5.3' - url: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.7.2-pyh31011fe_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter_core-5.7.2-pyh31011fe_1.conda hash: md5: 0a2980dada0dd7fd0998f0342308b1b1 sha256: 732b1e8536bc22a5a174baa79842d79db2f4956d90293dd82dc1b3f6099bcccd @@ -2631,7 +2631,7 @@ package: python: '>=3.8' pywin32: '>=300' traitlets: '>=5.3' - url: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.7.2-pyh5737063_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter_core-5.7.2-pyh5737063_1.conda hash: md5: 46d87d1c0ea5da0aae36f77fa406e20d sha256: 7c903b2d62414c3e8da1f78db21f45b98de387aae195f8ca959794113ba4b3fd @@ -2651,7 +2651,7 @@ package: rfc3339-validator: '' rfc3986-validator: '>=0.1.1' traitlets: '>=5.3' - url: https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.12.0-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter_events-0.12.0-pyh29332c3_0.conda hash: md5: f56000b36f09ab7533877e695e4e8cb0 sha256: 37e6ac3ccf7afcc730c3b93cb91a13b9ae827fd306f35dd28f958a74a14878b5 @@ -2671,7 +2671,7 @@ package: rfc3339-validator: '' rfc3986-validator: '>=0.1.1' traitlets: '>=5.3' - url: https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.12.0-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter_events-0.12.0-pyh29332c3_0.conda hash: md5: f56000b36f09ab7533877e695e4e8cb0 sha256: 37e6ac3ccf7afcc730c3b93cb91a13b9ae827fd306f35dd28f958a74a14878b5 @@ -2701,7 +2701,7 @@ package: tornado: '>=6.2.0' traitlets: '>=5.6.0' websocket-client: '>=1.7' - url: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.15.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter_server-2.15.0-pyhd8ed1ab_0.conda hash: md5: 6ba8c206b5c6f52b82435056cf74ee46 sha256: be5f9774065d94c4a988f53812b83b67618bec33fcaaa005a98067d506613f8a @@ -2731,7 +2731,7 @@ package: tornado: '>=6.2.0' traitlets: '>=5.6.0' websocket-client: '>=1.7' - url: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.15.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter_server-2.15.0-pyhd8ed1ab_0.conda hash: md5: 6ba8c206b5c6f52b82435056cf74ee46 sha256: be5f9774065d94c4a988f53812b83b67618bec33fcaaa005a98067d506613f8a @@ -2744,7 +2744,7 @@ package: dependencies: python: '>=3.9' terminado: '>=0.8.3' - url: https://conda.anaconda.org/conda-forge/noarch/jupyter_server_terminals-0.5.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter_server_terminals-0.5.3-pyhd8ed1ab_1.conda hash: md5: 2d983ff1b82a1ccb6f2e9d8784bdd6bd sha256: 0890fc79422191bc29edf17d7b42cff44ba254aa225d31eb30819f8772b775b8 @@ -2757,7 +2757,7 @@ package: dependencies: python: '>=3.9' terminado: '>=0.8.3' - url: https://conda.anaconda.org/conda-forge/noarch/jupyter_server_terminals-0.5.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter_server_terminals-0.5.3-pyhd8ed1ab_1.conda hash: md5: 2d983ff1b82a1ccb6f2e9d8784bdd6bd sha256: 0890fc79422191bc29edf17d7b42cff44ba254aa225d31eb30819f8772b775b8 @@ -2784,7 +2784,7 @@ package: tomli: '>=1.2.2' tornado: '>=6.2.0' traitlets: '' - url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.4.0-pyhd8ed1ab_0.conda hash: md5: 2da6a5e2c788a1b1998b24c50a18572a sha256: 4d225d094d1e5a8e95c2bde0f9c9bbc5aac52d9abf7fd597dd7af0f467b44347 @@ -2811,7 +2811,7 @@ package: tomli: '>=1.2.2' tornado: '>=6.2.0' traitlets: '' - url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.4.0-pyhd8ed1ab_0.conda hash: md5: 2da6a5e2c788a1b1998b24c50a18572a sha256: 4d225d094d1e5a8e95c2bde0f9c9bbc5aac52d9abf7fd597dd7af0f467b44347 @@ -2824,7 +2824,7 @@ package: dependencies: pygments: '>=2.4.1,<3' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.3.0-pyhd8ed1ab_2.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab_pygments-0.3.0-pyhd8ed1ab_2.conda hash: md5: fd312693df06da3578383232528c468d sha256: dc24b900742fdaf1e077d9a3458fd865711de80bca95fe3c6d46610c532c6ef0 @@ -2837,7 +2837,7 @@ package: dependencies: pygments: '>=2.4.1,<3' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.3.0-pyhd8ed1ab_2.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab_pygments-0.3.0-pyhd8ed1ab_2.conda hash: md5: fd312693df06da3578383232528c468d sha256: dc24b900742fdaf1e077d9a3458fd865711de80bca95fe3c6d46610c532c6ef0 @@ -2857,7 +2857,7 @@ package: packaging: '>=21.3' python: '>=3.9' requests: '>=2.31' - url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.27.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab_server-2.27.3-pyhd8ed1ab_1.conda hash: md5: 9dc4b2b0f41f0de41d27f3293e319357 sha256: d03d0b7e23fa56d322993bc9786b3a43b88ccc26e58b77c756619a921ab30e86 @@ -2877,7 +2877,7 @@ package: packaging: '>=21.3' python: '>=3.9' requests: '>=2.31' - url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.27.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab_server-2.27.3-pyhd8ed1ab_1.conda hash: md5: 9dc4b2b0f41f0de41d27f3293e319357 sha256: d03d0b7e23fa56d322993bc9786b3a43b88ccc26e58b77c756619a921ab30e86 @@ -2889,7 +2889,7 @@ package: platform: linux-64 dependencies: python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-1.1.11-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab_widgets-1.1.11-pyhd8ed1ab_0.conda hash: md5: 05a08b368343304618b6a88425aa851a sha256: 639544e96969c7513b33bf3201a4dc3095625e34cff16c187f5dec9bee2dfb2f @@ -2901,7 +2901,7 @@ package: platform: win-64 dependencies: python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-1.1.11-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab_widgets-1.1.11-pyhd8ed1ab_0.conda hash: md5: 05a08b368343304618b6a88425aa851a sha256: 639544e96969c7513b33bf3201a4dc3095625e34cff16c187f5dec9bee2dfb2f @@ -2919,7 +2919,7 @@ package: python: '>=3.9' pyyaml: '' tomli: '' - url: https://conda.anaconda.org/conda-forge/noarch/jupytext-1.17.0-pyhbbac1ac_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupytext-1.17.0-pyhbbac1ac_0.conda hash: md5: d8e9471f69b3e7a7d233d43649b5061b sha256: 488a50bdca76b1c450323ea1f8213366f70130aff35ff87277ffa97107fbed2b @@ -2937,7 +2937,7 @@ package: python: '>=3.9' pyyaml: '' tomli: '' - url: https://conda.anaconda.org/conda-forge/noarch/jupytext-1.17.0-pyhbbac1ac_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupytext-1.17.0-pyhbbac1ac_0.conda hash: md5: d8e9471f69b3e7a7d233d43649b5061b sha256: 488a50bdca76b1c450323ea1f8213366f70130aff35ff87277ffa97107fbed2b @@ -2949,7 +2949,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=10.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 hash: md5: 30186d27e2c9fa62b45fb1476b7200e3 sha256: 150c05a6e538610ca7c43beb3a40d65c90537497a4f6a5f4d15ec0451b6f5ebb @@ -2965,7 +2965,7 @@ package: libstdcxx: '>=13' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://conda.anaconda.org/conda-forge/linux-64/kiwisolver-1.4.7-py310h3788b33_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/kiwisolver-1.4.7-py310h3788b33_0.conda hash: md5: 4186d9b4d004b0fe0de6aa62496fb48a sha256: d97a9894803674e4f8155a5e98a49337d28bdee77dfd87e1614a824d190cd086 @@ -2981,7 +2981,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/kiwisolver-1.4.7-py310hc19bc0b_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/kiwisolver-1.4.7-py310hc19bc0b_0.conda hash: md5: 50d96539497fc7493cbe469fbb6b8b6e sha256: a87dff54b753a2ee19188ab9491a63d40a08873f17c7797cd5c44467a2ff4f12 @@ -2997,7 +2997,7 @@ package: libgcc-ng: '>=12' libstdcxx-ng: '>=12' openssl: '>=3.3.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda hash: md5: 3f43953b7d3fb3aaa1d0d0723d91e368 sha256: 99df692f7a8a5c27cd14b5fb1374ee55e756631b9c3d659ed3ee60830249b238 @@ -3012,7 +3012,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/krb5-1.21.3-hdf4eb48_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/krb5-1.21.3-hdf4eb48_0.conda hash: md5: 31aec030344e962fbd7dbbbbd68e60a9 sha256: 18e8b3430d7d232dad132f574268f56b3eb1a19431d6d5de8c53c29e6c18fa81 @@ -3025,7 +3025,7 @@ package: dependencies: python: '' six: '' - url: https://conda.anaconda.org/conda-forge/noarch/latexcodec-2.0.1-pyh9f0ad1d_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/latexcodec-2.0.1-pyh9f0ad1d_0.tar.bz2 hash: md5: 8d67904973263afd2985ba56aa2d6bb4 sha256: 5210d31c8f2402dd1ad1b3edcf7a53292b9da5de20cd14d9c243dbf9278b1c4f @@ -3038,7 +3038,7 @@ package: dependencies: python: '' six: '' - url: https://conda.anaconda.org/conda-forge/noarch/latexcodec-2.0.1-pyh9f0ad1d_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/latexcodec-2.0.1-pyh9f0ad1d_0.tar.bz2 hash: md5: 8d67904973263afd2985ba56aa2d6bb4 sha256: 5210d31c8f2402dd1ad1b3edcf7a53292b9da5de20cd14d9c243dbf9278b1c4f @@ -3053,7 +3053,7 @@ package: libgcc: '>=13' libjpeg-turbo: '>=3.0.0,<4.0a0' libtiff: '>=4.7.0,<4.8.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/lcms2-2.17-h717163a_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/lcms2-2.17-h717163a_0.conda hash: md5: 000e85703f0fd9594c81710dd5066471 sha256: d6a61830a354da022eae93fa896d0991385a875c6bba53c82263a289deda9db8 @@ -3069,7 +3069,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/lcms2-2.17-hbcf6048_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/lcms2-2.17-hbcf6048_0.conda hash: md5: 3538827f77b82a837fa681a4579e37a1 sha256: 7712eab5f1a35ca3ea6db48ead49e0d6ac7f96f8560da8023e61b3dbe4f3b25d @@ -3081,7 +3081,7 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_4.conda + url: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_4.conda hash: md5: 01f8d123c96816249efd255a31ad7712 sha256: db73f38155d901a610b2320525b9dd3b31e4949215c870685fd92ea61b5ce472 @@ -3094,7 +3094,7 @@ package: dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2 hash: md5: 76bbff344f0134279f225174e9064c8f sha256: cb55f36dcd898203927133280ae1dc643368af041a48bcf7c026acb7c47b0c12 @@ -3107,7 +3107,7 @@ package: dependencies: vc: '>=14.2,<15' vs2015_runtime: '>=14.29.30037' - url: https://conda.anaconda.org/conda-forge/win-64/lerc-4.0.0-h63175ca_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/win-64/lerc-4.0.0-h63175ca_0.tar.bz2 hash: md5: 1900cb3cab5055833cfddb0ba233b074 sha256: f4f39d7f6a2f9b407f8fb567a6c25755270421731d70f0ff331f5de4fa367488 @@ -3120,7 +3120,7 @@ package: dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda hash: md5: 5e97e271911b8b2001a8b71860c32faa sha256: 2ef420a655528bca9d269086cf33b7e90d2f54ad941b437fb1ed5eca87cee017 @@ -3134,7 +3134,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libaec-1.1.3-h63175ca_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libaec-1.1.3-h63175ca_0.conda hash: md5: 8723000f6ffdbdaef16025f0a01b64c5 sha256: f5c293d3cfc00f71dfdb64bd65ab53625565f8778fc2d5790575bef238976ebf @@ -3146,7 +3146,7 @@ package: platform: linux-64 dependencies: mkl: '>=2024.2.2,<2025.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-31_hfdb39a5_mkl.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libblas-3.9.0-31_hfdb39a5_mkl.conda hash: md5: bdf4a57254e8248222cb631db4393ff1 sha256: 862289f2cfb84bb6001d0e3569e908b8c42d66b881bd5b03f730a3924628b978 @@ -3158,7 +3158,7 @@ package: platform: win-64 dependencies: mkl: 2024.2.2 - url: https://conda.anaconda.org/conda-forge/win-64/libblas-3.9.0-31_h641d27c_mkl.conda + url: https://repo.prefix.dev/conda-forge/win-64/libblas-3.9.0-31_h641d27c_mkl.conda hash: md5: d05563c577fe2f37693a554b3f271e8f sha256: 7bb4d5b591e98fe607279520ee78e3571a297b5720aa789a2536041ad5540de8 @@ -3171,7 +3171,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.1.0-hb9d3cd8_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlicommon-1.1.0-hb9d3cd8_2.conda hash: md5: 41b599ed2b02abcfdd84302bff174b23 sha256: d9db2de60ea917298e658143354a530e9ca5f9c63471c65cf47ab39fd2f429e3 @@ -3185,7 +3185,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libbrotlicommon-1.1.0-h2466b09_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/libbrotlicommon-1.1.0-h2466b09_2.conda hash: md5: f7dc9a8f21d74eab46456df301da2972 sha256: 33e8851c6cc8e2d93059792cd65445bfe6be47e4782f826f01593898ec95764c @@ -3199,7 +3199,7 @@ package: __glibc: '>=2.17,<3.0.a0' libbrotlicommon: 1.1.0 libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.1.0-hb9d3cd8_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlidec-1.1.0-hb9d3cd8_2.conda hash: md5: 9566f0bd264fbd463002e759b8a82401 sha256: 2892d512cad096cb03f1b66361deeab58b64e15ba525d6592bb6d609e7045edf @@ -3214,7 +3214,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libbrotlidec-1.1.0-h2466b09_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/libbrotlidec-1.1.0-h2466b09_2.conda hash: md5: 9bae75ce723fa34e98e239d21d752a7e sha256: 234fc92f4c4f1cf22f6464b2b15bfc872fa583c74bf3ab9539ff38892c43612f @@ -3228,7 +3228,7 @@ package: __glibc: '>=2.17,<3.0.a0' libbrotlicommon: 1.1.0 libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlienc-1.1.0-hb9d3cd8_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlienc-1.1.0-hb9d3cd8_2.conda hash: md5: 06f70867945ea6a84d35836af780f1de sha256: 779f58174e99de3600e939fa46eddb453ec5d3c60bb46cdaa8b4c127224dbf29 @@ -3243,7 +3243,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libbrotlienc-1.1.0-h2466b09_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/libbrotlienc-1.1.0-h2466b09_2.conda hash: md5: 85741a24d97954a991e55e34bc55990b sha256: 3d0dd7ef505962f107b7ea8f894e0b3dd01bf46852b362c8a7fc136b039bc9e1 @@ -3255,7 +3255,7 @@ package: platform: linux-64 dependencies: libblas: 3.9.0 - url: https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-31_h372d94f_mkl.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libcblas-3.9.0-31_h372d94f_mkl.conda hash: md5: 2a06a6c16b45bd3d10002927ca204b67 sha256: 2ee3ab2b6eeb59f2d3c6f933fa0db28f1b56f0bc543ed2c0f6ec04060e4b6ec0 @@ -3267,7 +3267,7 @@ package: platform: win-64 dependencies: libblas: 3.9.0 - url: https://conda.anaconda.org/conda-forge/win-64/libcblas-3.9.0-31_h5e41251_mkl.conda + url: https://repo.prefix.dev/conda-forge/win-64/libcblas-3.9.0-31_h5e41251_mkl.conda hash: md5: 43c100b94ad2607382b0cf0f3a6b0bf3 sha256: 609f455b099919bd4d15d4a733f493dc789e02da73fe4474f1cca73afafb95b8 @@ -3286,7 +3286,7 @@ package: libzlib: '>=1.3.1,<2.0a0' openssl: '>=3.4.1,<4.0a0' zstd: '>=1.5.7,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.13.0-h332b0f4_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libcurl-8.13.0-h332b0f4_0.conda hash: md5: cbdc92ac0d93fe3c796e36ad65c7905c sha256: 38e528acfaa0276b7052f4de44271ff9293fdb84579650601a8c49dac171482a @@ -3303,7 +3303,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libcurl-8.13.0-h88aaa65_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libcurl-8.13.0-h88aaa65_0.conda hash: md5: c9cf6eb842decbb66c2f34e72c3580d6 sha256: 185553b37c0299b7a15dc66a7a7e2a0d421adaac784ec9298a0b2ad745116ca5 @@ -3316,7 +3316,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.23-h4ddbbb0_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libdeflate-1.23-h4ddbbb0_0.conda hash: md5: 8dfae1d2e74767e9ce36d5fa0d8605db sha256: 511d801626d02f4247a04fff957cc6e9ec4cc7e8622bd9acd076bcdc5de5fe66 @@ -3330,7 +3330,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libdeflate-1.23-h9062f6e_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libdeflate-1.23-h9062f6e_0.conda hash: md5: a9624935147a25b06013099d3038e467 sha256: 96c47725a8258159295996ea2758fa0ff9bea330e72b59641642e16be8427ce8 @@ -3343,7 +3343,7 @@ package: dependencies: numpy: '' python: '>=3.10' - url: https://conda.anaconda.org/conda-forge/noarch/libdlf-0.3.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/libdlf-0.3.0-pyhd8ed1ab_1.conda hash: md5: 2e9654bb2bcf5986c2def3ba35413326 sha256: 367c575a6388380d9a0da6ff06571d903ae89366c42d9f16e32de5d359b6971a @@ -3356,7 +3356,7 @@ package: dependencies: numpy: '' python: '>=3.10' - url: https://conda.anaconda.org/conda-forge/noarch/libdlf-0.3.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/libdlf-0.3.0-pyhd8ed1ab_1.conda hash: md5: 2e9654bb2bcf5986c2def3ba35413326 sha256: 367c575a6388380d9a0da6ff06571d903ae89366c42d9f16e32de5d359b6971a @@ -3370,7 +3370,7 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' ncurses: '>=6.5,<7.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.conda hash: md5: c277e0a4d549b03ac1e9d6cbbe3d017b sha256: d789471216e7aba3c184cd054ed61ce3f6dac6f87a50ec69291b9297f8c18724 @@ -3382,7 +3382,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libev-4.33-hd590300_2.conda hash: md5: 172bf1cd1ff8629f2b1179945ed45055 sha256: 1cd6048169fa0395af74ed5d8f1716e22c19a81a8a36f934c110ca3ad4dd27b4 @@ -3395,7 +3395,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.7.0-h5888daf_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libexpat-2.7.0-h5888daf_0.conda hash: md5: db0bfbe7dd197b68ad5f30333bae6ce0 sha256: 33ab03438aee65d6aa667cf7d90c91e5e7d734c19a67aa4c7040742c0a13d505 @@ -3409,7 +3409,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libexpat-2.7.0-he0c23c2_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libexpat-2.7.0-he0c23c2_0.conda hash: md5: b6f5352fdb525662f4169a0431d2dd7a sha256: 1a227c094a4e06bd54e8c2f3ec40c17ff99dcf3037d812294f842210aa66dbeb @@ -3422,7 +3422,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.6-h2dba641_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libffi-3.4.6-h2dba641_1.conda hash: md5: ede4673863426c0883c0063d853bbd85 sha256: 764432d32db45466e87f10621db5b74363a9f847d2b8b1f9743746cd160f06ab @@ -3436,7 +3436,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.6-h537db12_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/libffi-3.4.6-h537db12_1.conda hash: md5: 85d8fa5e55ed8f93f874b3b23ed54ec6 sha256: d3b0b8812eab553d3464bbd68204f007f1ebadf96ce30eb0cbc5159f72e353f5 @@ -3449,7 +3449,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' _openmp_mutex: '>=4.5' - url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-14.2.0-h767d61c_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-14.2.0-h767d61c_2.conda hash: md5: ef504d1acbd74b7cc6849ef8af47dd03 sha256: 3a572d031cb86deb541d15c1875aaa097baefc0c580b54dc61f5edab99215792 @@ -3462,7 +3462,7 @@ package: dependencies: _openmp_mutex: '>=4.5' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' - url: https://conda.anaconda.org/conda-forge/win-64/libgcc-14.2.0-h1383e82_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/libgcc-14.2.0-h1383e82_2.conda hash: md5: 4a74c1461a0ba47a3346c04bdccbe2ad sha256: fddf2fc037bc95adb3b369e8866da8a71b6a67ebcfc4d7035ac4208309dc9e72 @@ -3474,7 +3474,7 @@ package: platform: linux-64 dependencies: libgcc: 14.2.0 - url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_2.conda hash: md5: a2222a6ada71fb478682efe483ce0f92 sha256: fb7558c328b38b2f9d2e412c48da7890e7721ba018d733ebdfea57280df01904 @@ -3486,7 +3486,7 @@ package: platform: linux-64 dependencies: libgfortran5: 14.2.0 - url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-14.2.0-h69a702a_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran-14.2.0-h69a702a_2.conda hash: md5: fb54c4ea68b460c278d26eea89cfbcc3 sha256: e05263e8960da03c341650f2a3ffa4ccae4e111cb198e8933a2908125459e5a6 @@ -3499,7 +3499,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14.2.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-14.2.0-hf1ad2bd_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran5-14.2.0-hf1ad2bd_2.conda hash: md5: 556a4fdfac7287d349b8f09aba899693 sha256: c17b7cf3073a1f4e1f34d50872934fa326346e104d3c445abc1e62481ad6085c @@ -3511,7 +3511,7 @@ package: platform: win-64 dependencies: libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' - url: https://conda.anaconda.org/conda-forge/win-64/libgomp-14.2.0-h1383e82_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/libgomp-14.2.0-h1383e82_2.conda hash: md5: dd6b1ab49e28bcb6154cd131acec985b sha256: 674ec5f1bf319eac98d0d6ecb9c38e0192f3cf41969a5621d62a7e695e1aa9f3 @@ -3526,7 +3526,7 @@ package: libgcc: '>=13' libstdcxx: '>=13' libxml2: '>=2.13.4,<2.14.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libhwloc-2.11.2-default_h0d58e46_1001.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libhwloc-2.11.2-default_h0d58e46_1001.conda hash: md5: 804ca9e91bcaea0824a341d55b1684f2 sha256: d14c016482e1409ae1c50109a9ff933460a50940d2682e745ab1c172b5282a69 @@ -3542,7 +3542,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libhwloc-2.11.2-default_ha69328c_1001.conda + url: https://repo.prefix.dev/conda-forge/win-64/libhwloc-2.11.2-default_ha69328c_1001.conda hash: md5: b87a0ac5ab6495d8225db5dc72dd21cd sha256: 850e255997f538d5fb6ed651321141155a33bb781d43d326fc4ff62114dd2842 @@ -3555,7 +3555,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.18-h4ce23a2_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libiconv-1.18-h4ce23a2_1.conda hash: md5: e796ff8ddc598affdf7c173d6145f087 sha256: 18a4afe14f731bfb9cf388659994263904d20111e42f841e9eea1bb6f91f4ab4 @@ -3569,7 +3569,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libiconv-1.18-h135ad9c_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/libiconv-1.18-h135ad9c_1.conda hash: md5: 21fc5dba2cbcd8e5e26ff976a312122c sha256: ea5ed2b362b6dbc4ba7188eb4eaf576146e3dfc6f4395e9f0db76ad77465f786 @@ -3581,7 +3581,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libjpeg-turbo-3.0.0-hd590300_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libjpeg-turbo-3.0.0-hd590300_1.conda hash: md5: ea25936bb4080d843790b586850f82b8 sha256: b954e09b7e49c2f2433d6f3bb73868eda5e378278b0f8c1dd10a7ef090e14f2f @@ -3595,7 +3595,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libjpeg-turbo-3.0.0-hcfcfb64_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/libjpeg-turbo-3.0.0-hcfcfb64_1.conda hash: md5: 3f1b948619c45b1ca714d60c7389092c sha256: 4e7808e3098b4b4ed7e287f63bb24f9045cc4d95bfd39f0db870fc2837d74dff @@ -3607,7 +3607,7 @@ package: platform: linux-64 dependencies: libblas: 3.9.0 - url: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-31_hc41d3b0_mkl.conda + url: https://repo.prefix.dev/conda-forge/linux-64/liblapack-3.9.0-31_hc41d3b0_mkl.conda hash: md5: 10d012ddd7cc1c7ff9093d4974a34e53 sha256: a2d20845d916ac8fba09376cd791136a9b4547afb2131bc315178adfc87bb4ca @@ -3619,7 +3619,7 @@ package: platform: win-64 dependencies: libblas: 3.9.0 - url: https://conda.anaconda.org/conda-forge/win-64/liblapack-3.9.0-31_h1aa476e_mkl.conda + url: https://repo.prefix.dev/conda-forge/win-64/liblapack-3.9.0-31_h1aa476e_mkl.conda hash: md5: 40b47ee720a185289760960fc6185750 sha256: 9415e807aa6f8968322bbd756aab8f487379d809c74266d37c697b8d85c534ad @@ -3632,7 +3632,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_0.conda hash: md5: 0e87378639676987af32fee53ba32258 sha256: f4f21dfc54b08d462f707b771ecce3fa9bc702a2a05b55654f64154f48b141ef @@ -3646,7 +3646,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/liblzma-5.8.1-h2466b09_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/liblzma-5.8.1-h2466b09_0.conda hash: md5: 8d5cb0016b645d6688e2ff57c5d51302 sha256: 1477e9bff05318f3129d37be0e64c76cce0973c4b8c73d13a467d0b7f03d157c @@ -3664,7 +3664,7 @@ package: libstdcxx: '>=13' libzlib: '>=1.3.1,<2.0a0' openssl: '>=3.3.2,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.64.0-h161d5f1_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libnghttp2-1.64.0-h161d5f1_0.conda hash: md5: 19e57602824042dfd0446292ef90488b sha256: b0f2b3695b13a989f75d8fd7f4778e1c7aabe3b36db83f0fe80b2cd812c0e975 @@ -3676,7 +3676,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda hash: md5: 30fd6e37fe21f86f4bd26d6ee73eeec7 sha256: 26d77a3bb4dceeedc2a41bd688564fe71bf2d149fdcf117049970bc02ff1add6 @@ -3690,7 +3690,7 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' libzlib: '>=1.3.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.47-h943b412_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libpng-1.6.47-h943b412_0.conda hash: md5: 55199e2ae2c3651f6f9b2a447b47bdc9 sha256: 23367d71da58c9a61c8cbd963fcffb92768d4ae5ffbef9a47cdf1f54f98c5c36 @@ -3705,7 +3705,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libpng-1.6.47-had7236b_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libpng-1.6.47-had7236b_0.conda hash: md5: 7d717163d9dab337c65f2bf21a676b8f sha256: cf8a594b697de103025dcae2c917ec9c100609caf7c917a94c64a683cb1db1ac @@ -3723,7 +3723,7 @@ package: libgfortran5: '>=13.3.0' liblzma: '>=5.6.3,<6.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libscotch-7.0.6-hea33c07_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libscotch-7.0.6-hea33c07_1.conda hash: md5: 1b600d55dcd98c958192a69a79e6acd2 sha256: 8330bba8b7b3a37da6eca04bace985fb9f8d487d3249b8f690e8f4a3d8d3c7dc @@ -3735,7 +3735,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libsodium-1.0.20-h4ab18f5_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libsodium-1.0.20-h4ab18f5_0.conda hash: md5: a587892d3c13b6621a6091be690dbca2 sha256: 0105bd108f19ea8e6a78d2d994a6d4a8db16d19a41212070d2d1d48a63c34161 @@ -3749,7 +3749,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libsodium-1.0.20-hc70643c_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libsodium-1.0.20-hc70643c_0.conda hash: md5: 198bb594f202b205c7d18b936fa4524f sha256: 7bcb3edccea30f711b6be9601e083ecf4f435b9407d70fc48fbcf9e5d69a0fc6 @@ -3763,7 +3763,7 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' libzlib: '>=1.3.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.49.1-hee588c1_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.49.1-hee588c1_2.conda hash: md5: 962d6ac93c30b1dfc54c9cccafd1003e sha256: a086289bf75c33adc1daed3f1422024504ffb5c3c8b3285c49f025c29708ed16 @@ -3777,7 +3777,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.49.1-h67fdade_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.49.1-h67fdade_2.conda hash: md5: b58b66d4ad1aaf1c2543cbbd6afb1a59 sha256: c092d42d00fd85cf609cc58574ba2b03c141af5762283f36f5dd445ef7c0f4fe @@ -3792,7 +3792,7 @@ package: libgcc: '>=13' libzlib: '>=1.3.1,<2.0a0' openssl: '>=3.4.0,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.1-hf672d98_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libssh2-1.11.1-hf672d98_0.conda hash: md5: be2de152d8073ef1c01b7728475f2fe7 sha256: 0407ac9fda2bb67e11e357066eff144c845801d00b5f664efbc48813af1e7bb9 @@ -3808,7 +3808,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libssh2-1.11.1-he619c9f_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libssh2-1.11.1-he619c9f_0.conda hash: md5: af0cbf037dd614c34399b3b3e568c557 sha256: 4b3256bd2b4e4b3183005d3bd8826d651eccd1a4740b70625afa2b7e7123d191 @@ -3821,7 +3821,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: 14.2.0 - url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-14.2.0-h8f9b012_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-14.2.0-h8f9b012_2.conda hash: md5: a78c856b6dc6bf4ea8daeb9beaaa3fb0 sha256: 8f5bd92e4a24e1d35ba015c5252e8f818898478cb3bc50bd8b12ab54707dc4da @@ -3833,7 +3833,7 @@ package: platform: linux-64 dependencies: libstdcxx: 14.2.0 - url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-14.2.0-h4852527_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-14.2.0-h4852527_2.conda hash: md5: c75da67f045c2627f59e6fcb5f4e3a9b sha256: e86f38b007cf97cc2c67cd519f2de12a313c4ee3f5ef11652ad08932a5e34189 @@ -3854,7 +3854,7 @@ package: libwebp-base: '>=1.4.0,<2.0a0' libzlib: '>=1.3.1,<2.0a0' zstd: '>=1.5.6,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.7.0-hd9ff511_3.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libtiff-4.7.0-hd9ff511_3.conda hash: md5: 0ea6510969e1296cc19966fad481f6de sha256: b224e16b88d76ea95e4af56e2bc638c603bd26a770b98d117d04541d3aafa002 @@ -3874,7 +3874,7 @@ package: vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' zstd: '>=1.5.6,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/win-64/libtiff-4.7.0-h797046b_3.conda + url: https://repo.prefix.dev/conda-forge/win-64/libtiff-4.7.0-h797046b_3.conda hash: md5: defed79ff7a9164ad40320e3f116a138 sha256: c363a8baba4ce12b8f01f0ab74fe8b0dc83facd89c6604f4a191084923682768 @@ -3886,7 +3886,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda hash: md5: 40b61aab5c7ba9ff276c41cfffe6b80b sha256: 787eb542f055a2b3de553614b25f09eefb0a0931b0c87dbcce6efdfd92f04f18 @@ -3899,7 +3899,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.5.0-h851e524_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libwebp-base-1.5.0-h851e524_0.conda hash: md5: 63f790534398730f59e1b899c3644d4a sha256: c45283fd3e90df5f0bd3dbcd31f59cdd2b001d424cf30a07223655413b158eaf @@ -3913,7 +3913,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libwebp-base-1.5.0-h3b0e114_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libwebp-base-1.5.0-h3b0e114_0.conda hash: md5: 33f7313967072c6e6d8f865f5493c7ae sha256: 1d75274614e83a5750b8b94f7bad2fc0564c2312ff407e697d99152ed095576f @@ -3925,7 +3925,7 @@ package: platform: win-64 dependencies: ucrt: '' - url: https://conda.anaconda.org/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h57928b3_9.conda + url: https://repo.prefix.dev/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h57928b3_9.conda hash: md5: 08bfa5da6e242025304b206d152479ef sha256: 373f2973b8a358528b22be5e8d84322c165b4c5577d24d94fd67ad1bb0a0f261 @@ -3941,7 +3941,7 @@ package: pthread-stubs: '' xorg-libxau: '>=1.0.11,<2.0a0' xorg-libxdmcp: '' - url: https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda hash: md5: 92ed62436b625154323d40d5f2f11dd7 sha256: 666c0c431b23c6cec6e492840b176dde533d48b7e6fb8883f5071223433776aa @@ -3958,7 +3958,7 @@ package: ucrt: '>=10.0.20348.0' xorg-libxau: '>=1.0.11,<2.0a0' xorg-libxdmcp: '' - url: https://conda.anaconda.org/conda-forge/win-64/libxcb-1.17.0-h0e4246c_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libxcb-1.17.0-h0e4246c_0.conda hash: md5: a69bbf778a462da324489976c84cfc8c sha256: 08dec73df0e161c96765468847298a420933a36bc4f09b50e062df8793290737 @@ -3970,7 +3970,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda hash: md5: 5aa797f8787fe7a17d1b0821485b5adc sha256: 6ae68e0b86423ef188196fff6207ed0c8195dd84273cb5623b85aa08033a410c @@ -3986,7 +3986,7 @@ package: libiconv: '>=1.18,<2.0a0' liblzma: '>=5.8.1,<6.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.13.7-h81593ed_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libxml2-2.13.7-h81593ed_1.conda hash: md5: 0619e8fc4c8025a908ea3a3422d3b775 sha256: c4f59563e017eba378ea843be5ebde4b0546c72bbe4c1e43b2b384379e827635 @@ -4002,7 +4002,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libxml2-2.13.7-h442d1da_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/libxml2-2.13.7-h442d1da_1.conda hash: md5: c14ff7f05e57489df9244917d2b55763 sha256: 0a013527f784f4702dc18460070d8ec79d1ebb5087dd9e678d6afbeaca68d2ac @@ -4015,7 +4015,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda hash: md5: edb0dca6bc32e4f4789199455a1dbeb8 sha256: d4bfe88d7cb447768e31650f06257995601f89076080e76df55e3112d4e47dc4 @@ -4029,7 +4029,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda hash: md5: 41fbfac52c601159df6c01f875de31b9 sha256: ba945c6493449bed0e6e29883c4943817f7c79cbff52b83360f7b341277c6402 @@ -4042,7 +4042,7 @@ package: dependencies: python: '>=3.9' uc-micro-py: '' - url: https://conda.anaconda.org/conda-forge/noarch/linkify-it-py-2.0.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/linkify-it-py-2.0.3-pyhd8ed1ab_1.conda hash: md5: b02fe519b5dc0dc55e7299810fcdfb8e sha256: d975a2015803d4fdaaae3f53e21f64996577d7a069eb61c6d2792504f16eb57b @@ -4055,7 +4055,7 @@ package: dependencies: python: '>=3.9' uc-micro-py: '' - url: https://conda.anaconda.org/conda-forge/noarch/linkify-it-py-2.0.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/linkify-it-py-2.0.3-pyhd8ed1ab_1.conda hash: md5: b02fe519b5dc0dc55e7299810fcdfb8e sha256: d975a2015803d4fdaaae3f53e21f64996577d7a069eb61c6d2792504f16eb57b @@ -4067,7 +4067,7 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://conda.anaconda.org/conda-forge/linux-64/llvm-openmp-20.1.3-h024ca30_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-20.1.3-h024ca30_0.conda hash: md5: c721339ea8746513e42b1233b4bbdfb0 sha256: 4327a463f43b0d95ca0e5f92094383ef53fd2a91d649debfc531b941fe44fd48 @@ -4081,7 +4081,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/llvm-openmp-20.1.3-h30eaf37_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-20.1.3-h30eaf37_0.conda hash: md5: 183c102075722a7aa993f94de1d135f2 sha256: 27326e733ce7ad87054a409c02b829594cc6276232b987eb135cd1a225eac669 @@ -4093,7 +4093,7 @@ package: platform: linux-64 dependencies: python: '>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*' - url: https://conda.anaconda.org/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 91e27ef3d05cc772ce627e51cff111c4 sha256: 9afe0b5cfa418e8bdb30d8917c5a6cec10372b037924916f1f85b9f4899a67a6 @@ -4105,7 +4105,7 @@ package: platform: win-64 dependencies: python: '>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*' - url: https://conda.anaconda.org/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 91e27ef3d05cc772ce627e51cff111c4 sha256: 9afe0b5cfa418e8bdb30d8917c5a6cec10372b037924916f1f85b9f4899a67a6 @@ -4119,7 +4119,7 @@ package: mdurl: '>=0.1,<1' python: '>=3.7' typing_extensions: '>=3.7.4' - url: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-2.2.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/markdown-it-py-2.2.0-pyhd8ed1ab_0.conda hash: md5: b2928a6c6d52d7e3562b4a59c3214e3a sha256: 65ed439862c1851463f03a9bc5109992ce3e3e025e9a2d76d13ca19f576eee9f @@ -4133,7 +4133,7 @@ package: mdurl: '>=0.1,<1' python: '>=3.7' typing_extensions: '>=3.7.4' - url: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-2.2.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/markdown-it-py-2.2.0-pyhd8ed1ab_0.conda hash: md5: b2928a6c6d52d7e3562b4a59c3214e3a sha256: 65ed439862c1851463f03a9bc5109992ce3e3e025e9a2d76d13ca19f576eee9f @@ -4148,7 +4148,7 @@ package: libgcc: '>=13' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-3.0.2-py310h89163eb_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/markupsafe-3.0.2-py310h89163eb_1.conda hash: md5: 8ce3f0332fd6de0d737e2911d329523f sha256: 0bed20ec27dcbcaf04f02b2345358e1161fb338f8423a4ada1cf0f4d46918741 @@ -4164,7 +4164,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/markupsafe-3.0.2-py310h38315fa_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/markupsafe-3.0.2-py310h38315fa_1.conda hash: md5: 79dfc050ae5a7dd4e63e392c984e2576 sha256: deb8505b7ef76d363174d133e2ff814ae75b91ac4c3ae5550a7686897392f4d0 @@ -4191,7 +4191,7 @@ package: python-dateutil: '>=2.7' python_abi: 3.10.* tk: '>=8.6.13,<8.7.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/matplotlib-base-3.8.4-py310hef631a5_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/matplotlib-base-3.8.4-py310hef631a5_2.conda hash: md5: b3fa3fc2a0fa8b53b913c94297b12e27 sha256: 5733c68ff72a04a42d8363965155d4b27a1ed3364a507b8cac582c0b4881d222 @@ -4218,7 +4218,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/matplotlib-base-3.8.4-py310hadb10a8_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/matplotlib-base-3.8.4-py310hadb10a8_2.conda hash: md5: 8f5e26aa64ab245691efb7f87c584060 sha256: bc3ecb8e9f68fd1b4214e223f08e94d8f88e6fdc237dc0e86efcb9f090737e96 @@ -4231,7 +4231,7 @@ package: dependencies: python: '>=3.9' traitlets: '' - url: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_1.conda hash: md5: af6ab708897df59bd6e7283ceab1b56b sha256: 69b7dc7131703d3d60da9b0faa6dd8acbf6f6c396224cf6aef3e855b8c0c41c6 @@ -4244,7 +4244,7 @@ package: dependencies: python: '>=3.9' traitlets: '' - url: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_1.conda hash: md5: af6ab708897df59bd6e7283ceab1b56b sha256: 69b7dc7131703d3d60da9b0faa6dd8acbf6f6c396224cf6aef3e855b8c0c41c6 @@ -4256,7 +4256,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda hash: md5: 827064ddfe0de2917fb29f1da4f8f533 sha256: 9b0037171dad0100f0296699a11ae7d355237b55f42f9094aebc0f41512d96a1 @@ -4268,7 +4268,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda hash: md5: 827064ddfe0de2917fb29f1da4f8f533 sha256: 9b0037171dad0100f0296699a11ae7d355237b55f42f9094aebc0f41512d96a1 @@ -4281,7 +4281,7 @@ package: dependencies: markdown-it-py: '>=1.0.0,<4.0.0' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.4.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/mdit-py-plugins-0.4.2-pyhd8ed1ab_1.conda hash: md5: af2060041d4f3250a7eb6ab3ec0e549b sha256: c63ed79d9745109c0a70397713b0c07f06e7d3561abcb122cfc80a141ab3b449 @@ -4294,7 +4294,7 @@ package: dependencies: markdown-it-py: '>=1.0.0,<4.0.0' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.4.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/mdit-py-plugins-0.4.2-pyhd8ed1ab_1.conda hash: md5: af2060041d4f3250a7eb6ab3ec0e549b sha256: c63ed79d9745109c0a70397713b0c07f06e7d3561abcb122cfc80a141ab3b449 @@ -4306,7 +4306,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_1.conda hash: md5: 592132998493b3ff25fd7479396e8351 sha256: 78c1bbe1723449c52b7a9df1af2ee5f005209f67e40b6e1d3c7619127c43b1c7 @@ -4318,7 +4318,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_1.conda hash: md5: 592132998493b3ff25fd7479396e8351 sha256: 78c1bbe1723449c52b7a9df1af2ee5f005209f67e40b6e1d3c7619127c43b1c7 @@ -4332,7 +4332,7 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' libstdcxx: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/metis-5.1.0-hd0bcaf9_1007.conda + url: https://repo.prefix.dev/conda-forge/linux-64/metis-5.1.0-hd0bcaf9_1007.conda hash: md5: 28eb714416de4eb83e2cbc47e99a1b45 sha256: e8a00971e6d00bd49f375c5d8d005b37a9abba0b1768533aed0f90a422bf5cc7 @@ -4345,7 +4345,7 @@ package: dependencies: python: '' typing_extensions: '' - url: https://conda.anaconda.org/conda-forge/noarch/mistune-3.1.3-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/mistune-3.1.3-pyh29332c3_0.conda hash: md5: 7ec6576e328bc128f4982cd646eeba85 sha256: a67484d7dd11e815a81786580f18b6e4aa2392f292f29183631a6eccc8dc37b3 @@ -4358,7 +4358,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '' - url: https://conda.anaconda.org/conda-forge/noarch/mistune-3.1.3-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/mistune-3.1.3-pyh29332c3_0.conda hash: md5: 7ec6576e328bc128f4982cd646eeba85 sha256: a67484d7dd11e815a81786580f18b6e4aa2392f292f29183631a6eccc8dc37b3 @@ -4372,7 +4372,7 @@ package: _openmp_mutex: '>=4.5' llvm-openmp: '>=19.1.2' tbb: 2021.* - url: https://conda.anaconda.org/conda-forge/linux-64/mkl-2024.2.2-ha957f24_16.conda + url: https://repo.prefix.dev/conda-forge/linux-64/mkl-2024.2.2-ha957f24_16.conda hash: md5: 1459379c79dda834673426504d52b319 sha256: 77906b0acead8f86b489da46f53916e624897338770dbf70b04b8f673c9273c1 @@ -4385,7 +4385,7 @@ package: dependencies: intel-openmp: 2024.* tbb: 2021.* - url: https://conda.anaconda.org/conda-forge/win-64/mkl-2024.2.2-h66d3029_15.conda + url: https://repo.prefix.dev/conda-forge/win-64/mkl-2024.2.2-h66d3029_15.conda hash: md5: 302dff2807f2927b3e9e0d19d60121de sha256: 20e52b0389586d0b914a49cd286c5ccc9c47949bed60ca6df004d1d295f2edbd @@ -4401,7 +4401,7 @@ package: libstdcxx: '>=13' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://conda.anaconda.org/conda-forge/linux-64/msgpack-python-1.1.0-py310h3788b33_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/msgpack-python-1.1.0-py310h3788b33_0.conda hash: md5: 6b586fb03d84e5bfbb1a8a3d9e2c9b60 sha256: 73ca5f0c7d0727a57dcc3c402823ce3aa159ca075210be83078fcc485971e259 @@ -4417,7 +4417,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/msgpack-python-1.1.0-py310hc19bc0b_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/msgpack-python-1.1.0-py310hc19bc0b_0.conda hash: md5: 2cfcbd596afd76879de4824c2c24f4a2 sha256: db5c3d5e2d28ba0e4e1633f6d52079f0e397bdb60a6f58a2fa942e88071182d2 @@ -4428,7 +4428,7 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/mumps-include-5.7.3-h82cca05_9.conda + url: https://repo.prefix.dev/conda-forge/linux-64/mumps-include-5.7.3-h82cca05_9.conda hash: md5: 8207b975a176b5c08937bdeeeeecca20 sha256: bb41dda1084bc29c79bdb1da693295c5bc55da223fb74c4ef8487a81964cbf48 @@ -4449,7 +4449,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://conda.anaconda.org/conda-forge/linux-64/mumps-seq-5.7.3-hb5d91fa_9.conda + url: https://repo.prefix.dev/conda-forge/linux-64/mumps-seq-5.7.3-hb5d91fa_9.conda hash: md5: 33982046ecd8eed02447ddd7810aad37 sha256: 196b227df4635ce4294d40d885fa231d8d037839a95a1eee8923319985276bbe @@ -4466,7 +4466,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/mumps-seq-5.7.3-hbaa6519_9.conda + url: https://repo.prefix.dev/conda-forge/win-64/mumps-seq-5.7.3-hbaa6519_9.conda hash: md5: 3a30d32db33cc226f7a2c78d485b0503 sha256: 953c384a1b37b93bf7a2ee39b1c5763887f4d63ed220b65362103d6e6b4440a4 @@ -4478,7 +4478,7 @@ package: platform: linux-64 dependencies: python: '' - url: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 hash: md5: 2ba8498c1018c1e9c61eb99b973dfe19 sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 @@ -4490,7 +4490,7 @@ package: platform: win-64 dependencies: python: '' - url: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 hash: md5: 2ba8498c1018c1e9c61eb99b973dfe19 sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 @@ -4512,7 +4512,7 @@ package: pyyaml: '' sphinx: '>=5' typing_extensions: '' - url: https://conda.anaconda.org/conda-forge/noarch/myst-nb-1.2.0-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/myst-nb-1.2.0-pyh29332c3_0.conda hash: md5: 4f63865e1bb08e05476fa136a2dfe2ac sha256: de3e58d54126fdb667a55921675693fb8eee23757fd3be6116f6565cae710279 @@ -4534,7 +4534,7 @@ package: pyyaml: '' sphinx: '>=5' typing_extensions: '' - url: https://conda.anaconda.org/conda-forge/noarch/myst-nb-1.2.0-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/myst-nb-1.2.0-pyh29332c3_0.conda hash: md5: 4f63865e1bb08e05476fa136a2dfe2ac sha256: de3e58d54126fdb667a55921675693fb8eee23757fd3be6116f6565cae710279 @@ -4553,7 +4553,7 @@ package: pyyaml: '' sphinx: '>=5,<7' typing-extensions: '' - url: https://conda.anaconda.org/conda-forge/noarch/myst-parser-1.0.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/myst-parser-1.0.0-pyhd8ed1ab_0.conda hash: md5: e559708feb0aed1ae24c518e569ea3eb sha256: 87de591aa423932ffec61e06283bf5c3ba5c0a3cc465955984ce58f1de3ded8e @@ -4572,7 +4572,7 @@ package: pyyaml: '' sphinx: '>=5,<7' typing-extensions: '' - url: https://conda.anaconda.org/conda-forge/noarch/myst-parser-1.0.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/myst-parser-1.0.0-pyhd8ed1ab_0.conda hash: md5: e559708feb0aed1ae24c518e569ea3eb sha256: 87de591aa423932ffec61e06283bf5c3ba5c0a3cc465955984ce58f1de3ded8e @@ -4588,7 +4588,7 @@ package: nbformat: '>=5.1' python: '>=3.8' traitlets: '>=5.4' - url: https://conda.anaconda.org/conda-forge/noarch/nbclient-0.10.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/nbclient-0.10.2-pyhd8ed1ab_0.conda hash: md5: 6bb0d77277061742744176ab555b723c sha256: a20cff739d66c2f89f413e4ba4c6f6b59c50d5c30b5f0d840c13e8c9c2df9135 @@ -4604,7 +4604,7 @@ package: nbformat: '>=5.1' python: '>=3.8' traitlets: '>=5.4' - url: https://conda.anaconda.org/conda-forge/noarch/nbclient-0.10.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/nbclient-0.10.2-pyhd8ed1ab_0.conda hash: md5: 6bb0d77277061742744176ab555b723c sha256: a20cff739d66c2f89f413e4ba4c6f6b59c50d5c30b5f0d840c13e8c9c2df9135 @@ -4617,7 +4617,7 @@ package: dependencies: nbconvert-core: ==7.16.6 nbconvert-pandoc: ==7.16.6 - url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-7.16.6-hb482800_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/nbconvert-7.16.6-hb482800_0.conda hash: md5: aa90ea40c80d4bd3da35cb17ed668f22 sha256: 5480b7e05bf3079fcb7357a5a15a96c3a1649cc1371d0c468c806898a7e53088 @@ -4630,7 +4630,7 @@ package: dependencies: nbconvert-core: ==7.16.6 nbconvert-pandoc: ==7.16.6 - url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-7.16.6-hb482800_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/nbconvert-7.16.6-hb482800_0.conda hash: md5: aa90ea40c80d4bd3da35cb17ed668f22 sha256: 5480b7e05bf3079fcb7357a5a15a96c3a1649cc1371d0c468c806898a7e53088 @@ -4657,7 +4657,7 @@ package: pygments: '>=2.4.1' python: '' traitlets: '>=5.1' - url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.16.6-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/nbconvert-core-7.16.6-pyh29332c3_0.conda hash: md5: d24beda1d30748afcc87c429454ece1b sha256: dcccb07c5a1acb7dc8be94330e62d54754c0e9c9cb2bb6865c8e3cfe44cf5a58 @@ -4684,7 +4684,7 @@ package: pygments: '>=2.4.1' python: '>=3.9' traitlets: '>=5.1' - url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.16.6-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/nbconvert-core-7.16.6-pyh29332c3_0.conda hash: md5: d24beda1d30748afcc87c429454ece1b sha256: dcccb07c5a1acb7dc8be94330e62d54754c0e9c9cb2bb6865c8e3cfe44cf5a58 @@ -4697,7 +4697,7 @@ package: dependencies: nbconvert-core: ==7.16.6 pandoc: '' - url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-pandoc-7.16.6-hed9df3c_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/nbconvert-pandoc-7.16.6-hed9df3c_0.conda hash: md5: 5b0afb6c52e74a7eca2cf809a874acf4 sha256: 1e8923f1557c2ddb7bba915033cfaf8b8c1b7462c745172458102c11caee1002 @@ -4710,7 +4710,7 @@ package: dependencies: nbconvert-core: ==7.16.6 pandoc: '' - url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-pandoc-7.16.6-hed9df3c_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/nbconvert-pandoc-7.16.6-hed9df3c_0.conda hash: md5: 5b0afb6c52e74a7eca2cf809a874acf4 sha256: 1e8923f1557c2ddb7bba915033cfaf8b8c1b7462c745172458102c11caee1002 @@ -4726,7 +4726,7 @@ package: python: '>=3.9' python-fastjsonschema: '>=2.15' traitlets: '>=5.1' - url: https://conda.anaconda.org/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_1.conda hash: md5: bbe1963f1e47f594070ffe87cdf612ea sha256: 7a5bd30a2e7ddd7b85031a5e2e14f290898098dc85bea5b3a5bf147c25122838 @@ -4742,7 +4742,7 @@ package: python: '>=3.9' python-fastjsonschema: '>=2.15' traitlets: '>=5.1' - url: https://conda.anaconda.org/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_1.conda hash: md5: bbe1963f1e47f594070ffe87cdf612ea sha256: 7a5bd30a2e7ddd7b85031a5e2e14f290898098dc85bea5b3a5bf147c25122838 @@ -4755,7 +4755,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda + url: https://repo.prefix.dev/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda hash: md5: 47e340acb35de30501a76c7c799c41d7 sha256: 3fde293232fa3fca98635e1167de6b7c7fda83caf24b9d6c91ec9eefb4f4d586 @@ -4767,7 +4767,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_1.conda hash: md5: 598fd7d4d0de2455fb74f56063969a97 sha256: bb7b21d7fd0445ddc0631f64e66d91a179de4ba920b8381f29b9d006a42788c0 @@ -4779,7 +4779,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_1.conda hash: md5: 598fd7d4d0de2455fb74f56063969a97 sha256: bb7b21d7fd0445ddc0631f64e66d91a179de4ba920b8381f29b9d006a42788c0 @@ -4796,7 +4796,7 @@ package: notebook-shim: '>=0.2,<0.3' python: '>=3.9' tornado: '>=6.2.0' - url: https://conda.anaconda.org/conda-forge/noarch/notebook-7.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/notebook-7.4.0-pyhd8ed1ab_0.conda hash: md5: 7e82caa4495c513bcfb33a159e1222d4 sha256: d3f70987bc1e1a20b122726a49a24e5e6f09d00c9862bb399cd1682cd59a1e1e @@ -4813,7 +4813,7 @@ package: notebook-shim: '>=0.2,<0.3' python: '>=3.9' tornado: '>=6.2.0' - url: https://conda.anaconda.org/conda-forge/noarch/notebook-7.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/notebook-7.4.0-pyhd8ed1ab_0.conda hash: md5: 7e82caa4495c513bcfb33a159e1222d4 sha256: d3f70987bc1e1a20b122726a49a24e5e6f09d00c9862bb399cd1682cd59a1e1e @@ -4826,7 +4826,7 @@ package: dependencies: jupyter_server: '>=1.8,<3' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/notebook-shim-0.2.4-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/notebook-shim-0.2.4-pyhd8ed1ab_1.conda hash: md5: e7f89ea5f7ea9401642758ff50a2d9c1 sha256: 7b920e46b9f7a2d2aa6434222e5c8d739021dbc5cc75f32d124a8191d86f9056 @@ -4839,7 +4839,7 @@ package: dependencies: jupyter_server: '>=1.8,<3' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/notebook-shim-0.2.4-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/notebook-shim-0.2.4-pyhd8ed1ab_1.conda hash: md5: e7f89ea5f7ea9401642758ff50a2d9c1 sha256: 7b920e46b9f7a2d2aa6434222e5c8d739021dbc5cc75f32d124a8191d86f9056 @@ -4857,7 +4857,7 @@ package: numpy: '>=1.7' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://conda.anaconda.org/conda-forge/linux-64/numcodecs-0.13.1-py310h5eaa309_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/numcodecs-0.13.1-py310h5eaa309_0.conda hash: md5: a3e9933fc59e8bcd2aa20753fb56db42 sha256: 70cb0fa431ba9e75ef36d94f35324089dfa7da8f967e9c758f60e08aaf29b732 @@ -4875,7 +4875,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/numcodecs-0.13.1-py310hb4db72f_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/numcodecs-0.13.1-py310hb4db72f_0.conda hash: md5: 0d316ad384c5c153a67a416f1a8abf97 sha256: 4aa5d7fc0ea81120f2fab5ef6ff3e0c8ea3458a2c8a21935b99dff70b73a349c @@ -4893,7 +4893,7 @@ package: libstdcxx-ng: '>=12' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://conda.anaconda.org/conda-forge/linux-64/numpy-1.26.4-py310hb13e2d6_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/numpy-1.26.4-py310hb13e2d6_0.conda hash: md5: 6593de64c935768b6bad3e19b3e978be sha256: 028fe2ea8e915a0a032b75165f11747770326f3d767e642880540c60a3256425 @@ -4912,7 +4912,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/numpy-1.26.4-py310hf667824_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/numpy-1.26.4-py310hf667824_0.conda hash: md5: 93e881c391880df90e74e43a4b67c16d sha256: 20ca447a8f840c01961f2bdf0847fc7b7785a62968e867d7aa4ca8a66d70f9ad @@ -4929,7 +4929,7 @@ package: libstdcxx: '>=13' libtiff: '>=4.7.0,<4.8.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.3-h5fbd93e_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/openjpeg-2.5.3-h5fbd93e_0.conda hash: md5: 9e5816bc95d285c115a3ebc2f8563564 sha256: 5bee706ea5ba453ed7fd9da7da8380dd88b865c8d30b5aaec14d2b6dd32dbc39 @@ -4946,7 +4946,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/openjpeg-2.5.3-h4d64b90_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/openjpeg-2.5.3-h4d64b90_0.conda hash: md5: fc050366dd0b8313eb797ed1ffef3a29 sha256: 410175815df192f57a07c29a6b3fdd4231937173face9e63f0830c1234272ce3 @@ -4960,7 +4960,7 @@ package: __glibc: '>=2.17,<3.0.a0' ca-certificates: '' libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.5.0-h7b32b05_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/openssl-3.5.0-h7b32b05_0.conda hash: md5: bb539841f2a3fde210f387d00ed4bb9d sha256: 38285d280f84f1755b7c54baf17eccf2e3e696287954ce0adca16546b85ee62c @@ -4975,7 +4975,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/openssl-3.5.0-ha4e3fda_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/openssl-3.5.0-ha4e3fda_0.conda hash: md5: 4ea7db75035eb8c13fa680bb90171e08 sha256: 43dd7f56da142ca83c614c8b0085589650ae9032b351a901c190e48eefc73675 @@ -4988,7 +4988,7 @@ package: dependencies: python: '>=3.9' typing_utils: '' - url: https://conda.anaconda.org/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_1.conda hash: md5: e51f1e4089cad105b6cac64bd8166587 sha256: 1840bd90d25d4930d60f57b4f38d4e0ae3f5b8db2819638709c36098c6ba770c @@ -5001,7 +5001,7 @@ package: dependencies: python: '>=3.9' typing_utils: '' - url: https://conda.anaconda.org/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_1.conda hash: md5: e51f1e4089cad105b6cac64bd8166587 sha256: 1840bd90d25d4930d60f57b4f38d4e0ae3f5b8db2819638709c36098c6ba770c @@ -5013,7 +5013,7 @@ package: platform: linux-64 dependencies: python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/packaging-25.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyhd8ed1ab_0.conda hash: md5: 4088c0d078e2f5092ddf824495186229 sha256: f759df4f492ae481505dcceb3d4485a120ee798af26711c92de20944a1185621 @@ -5025,7 +5025,7 @@ package: platform: win-64 dependencies: python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/packaging-25.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyhd8ed1ab_0.conda hash: md5: 4088c0d078e2f5092ddf824495186229 sha256: f759df4f492ae481505dcceb3d4485a120ee798af26711c92de20944a1185621 @@ -5045,7 +5045,7 @@ package: python-tzdata: '>=2022.7' python_abi: 3.10.* pytz: '>=2020.1' - url: https://conda.anaconda.org/conda-forge/linux-64/pandas-2.2.3-py310h5eaa309_3.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pandas-2.2.3-py310h5eaa309_3.conda hash: md5: 07697a584fab513ce895c4511f7a2403 sha256: 43fd80e57ebc9e0c00d169aafce533c49359174dea327a7fa8ca7454628a56f7 @@ -5065,7 +5065,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/pandas-2.2.3-py310hb4db72f_3.conda + url: https://repo.prefix.dev/conda-forge/win-64/pandas-2.2.3-py310hb4db72f_3.conda hash: md5: 60c6ae5813eb1cbc4f7774fb69623db8 sha256: fa3986017273899fd21aa14a524469bedac3923e2ecfdfdba59a34769b56b9b8 @@ -5076,7 +5076,7 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/pandoc-3.6.4-ha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pandoc-3.6.4-ha770c72_0.conda hash: md5: 53f2cd4128fa7053bb029bbeafbe3f2e sha256: 16cbcab8a6d9a0cef47b9d3ebeced8a1a75ee54d379649e6260a333d1b2f743c @@ -5087,7 +5087,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/win-64/pandoc-3.6.4-h57928b3_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/pandoc-3.6.4-h57928b3_0.conda hash: md5: dac005a8550579541a6b0b6a8f8c6ddc sha256: 02ab6b0c12596f5d8481f546a1fef6cd4e3a52ec59bc32c0fa3708106e30972e @@ -5099,7 +5099,7 @@ package: platform: linux-64 dependencies: python: '!=3.0,!=3.1,!=3.2,!=3.3' - url: https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 457c2c8c08e54905d6954e79cb5b5db9 sha256: 2bb9ba9857f4774b85900c2562f7e711d08dd48e2add9bee4e1612fbee27e16f @@ -5111,7 +5111,7 @@ package: platform: win-64 dependencies: python: '!=3.0,!=3.1,!=3.2,!=3.3' - url: https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 457c2c8c08e54905d6954e79cb5b5db9 sha256: 2bb9ba9857f4774b85900c2562f7e711d08dd48e2add9bee4e1612fbee27e16f @@ -5123,7 +5123,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_1.conda hash: md5: 5c092057b6badd30f75b06244ecd01c9 sha256: 17131120c10401a99205fc6fe436e7903c0fa092f1b3e80452927ab377239bcc @@ -5135,7 +5135,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_1.conda hash: md5: 5c092057b6badd30f75b06244ecd01c9 sha256: 17131120c10401a99205fc6fe436e7903c0fa092f1b3e80452927ab377239bcc @@ -5149,7 +5149,7 @@ package: locket: '' python: '>=3.9' toolz: '' - url: https://conda.anaconda.org/conda-forge/noarch/partd-1.4.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/partd-1.4.2-pyhd8ed1ab_0.conda hash: md5: 0badf9c54e24cecfb0ad2f99d680c163 sha256: 472fc587c63ec4f6eba0cc0b06008a6371e0a08a5986de3cf4e8024a47b4fe6c @@ -5163,7 +5163,7 @@ package: locket: '' python: '>=3.9' toolz: '' - url: https://conda.anaconda.org/conda-forge/noarch/partd-1.4.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/partd-1.4.2-pyhd8ed1ab_0.conda hash: md5: 0badf9c54e24cecfb0ad2f99d680c163 sha256: 472fc587c63ec4f6eba0cc0b06008a6371e0a08a5986de3cf4e8024a47b4fe6c @@ -5176,7 +5176,7 @@ package: dependencies: ptyprocess: '>=0.5' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_1.conda hash: md5: d0d408b1f18883a944376da5cf8101ea sha256: 202af1de83b585d36445dc1fda94266697341994d1a3328fabde4989e1b3d07a @@ -5188,7 +5188,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-pyhd8ed1ab_1004.conda + url: https://repo.prefix.dev/conda-forge/noarch/pickleshare-0.7.5-pyhd8ed1ab_1004.conda hash: md5: 11a9d1d09a3615fc07c3faf79bc0b943 sha256: e2ac3d66c367dada209fc6da43e645672364b9fd5f9d28b9f016e24b81af475b @@ -5200,7 +5200,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-pyhd8ed1ab_1004.conda + url: https://repo.prefix.dev/conda-forge/noarch/pickleshare-0.7.5-pyhd8ed1ab_1004.conda hash: md5: 11a9d1d09a3615fc07c3faf79bc0b943 sha256: e2ac3d66c367dada209fc6da43e645672364b9fd5f9d28b9f016e24b81af475b @@ -5223,7 +5223,7 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* tk: '>=8.6.13,<8.7.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/pillow-10.3.0-py310hebfe307_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pillow-10.3.0-py310hebfe307_1.conda hash: md5: 8d357fd769e0e1a957f5916bdc8b1fa2 sha256: adb1d874246c47cc8972894b13eeb70ef1aab067f51e615f4976cfe9c3ee3208 @@ -5248,7 +5248,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/pillow-10.3.0-py310h3e38d90_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/pillow-10.3.0-py310h3e38d90_1.conda hash: md5: ee35afda8b2154e7396fae5ca7fbea6b sha256: 50a0d0f8de51c47f8ca0820f0ebfc7730aec4a7a98069347a3395b21b67f7e21 @@ -5262,7 +5262,7 @@ package: python: '>=3.9,<3.13.0a0' setuptools: '' wheel: '' - url: https://conda.anaconda.org/conda-forge/noarch/pip-25.0.1-pyh8b19718_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pip-25.0.1-pyh8b19718_0.conda hash: md5: 79b5c1440aedc5010f687048d9103628 sha256: 585940f09d87787f79f73ff5dff8eb2af8a67e5bec5eebf2f553cd26c840ba69 @@ -5276,7 +5276,7 @@ package: python: '>=3.9,<3.13.0a0' setuptools: '' wheel: '' - url: https://conda.anaconda.org/conda-forge/noarch/pip-25.0.1-pyh8b19718_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pip-25.0.1-pyh8b19718_0.conda hash: md5: 79b5c1440aedc5010f687048d9103628 sha256: 585940f09d87787f79f73ff5dff8eb2af8a67e5bec5eebf2f553cd26c840ba69 @@ -5288,7 +5288,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_2.conda + url: https://repo.prefix.dev/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_2.conda hash: md5: 5a5870a74432aa332f7d32180633ad05 sha256: adb2dde5b4f7da70ae81309cce6188ed3286ff280355cf1931b45d91164d2ad8 @@ -5300,7 +5300,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_2.conda + url: https://repo.prefix.dev/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_2.conda hash: md5: 5a5870a74432aa332f7d32180633ad05 sha256: adb2dde5b4f7da70ae81309cce6188ed3286ff280355cf1931b45d91164d2ad8 @@ -5312,7 +5312,7 @@ package: platform: linux-64 dependencies: python: '' - url: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.7-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.3.7-pyh29332c3_0.conda hash: md5: e57da6fe54bb3a5556cf36d199ff07d8 sha256: ae7d3e58224d53d6b59e1f5ac5809803bb1972f0ac4fb10cd9b8c87d4122d3e0 @@ -5324,7 +5324,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.7-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.3.7-pyh29332c3_0.conda hash: md5: e57da6fe54bb3a5556cf36d199ff07d8 sha256: ae7d3e58224d53d6b59e1f5ac5809803bb1972f0ac4fb10cd9b8c87d4122d3e0 @@ -5336,7 +5336,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_1.conda hash: md5: e9dcbce5f45f9ee500e728ae58b605b6 sha256: 122433fc5318816b8c69283aaf267c73d87aa2d09ce39f64c9805c9a3b264819 @@ -5348,7 +5348,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_1.conda hash: md5: e9dcbce5f45f9ee500e728ae58b605b6 sha256: 122433fc5318816b8c69283aaf267c73d87aa2d09ce39f64c9805c9a3b264819 @@ -5360,7 +5360,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.21.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/prometheus_client-0.21.1-pyhd8ed1ab_0.conda hash: md5: 3e01e386307acc60b2f89af0b2e161aa sha256: bc8f00d5155deb7b47702cb8370f233935704100dbc23e30747c161d1b6cf3ab @@ -5372,7 +5372,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.21.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/prometheus_client-0.21.1-pyhd8ed1ab_0.conda hash: md5: 3e01e386307acc60b2f89af0b2e161aa sha256: bc8f00d5155deb7b47702cb8370f233935704100dbc23e30747c161d1b6cf3ab @@ -5385,7 +5385,7 @@ package: dependencies: python: '>=3.9' wcwidth: '' - url: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.51-pyha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/prompt-toolkit-3.0.51-pyha770c72_0.conda hash: md5: d17ae9db4dc594267181bd199bf9a551 sha256: ebc1bb62ac612af6d40667da266ff723662394c0ca78935340a5b5c14831227b @@ -5398,7 +5398,7 @@ package: dependencies: python: '>=3.9' wcwidth: '' - url: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.51-pyha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/prompt-toolkit-3.0.51-pyha770c72_0.conda hash: md5: d17ae9db4dc594267181bd199bf9a551 sha256: ebc1bb62ac612af6d40667da266ff723662394c0ca78935340a5b5c14831227b @@ -5413,7 +5413,7 @@ package: libgcc: '>=13' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://conda.anaconda.org/conda-forge/linux-64/psutil-7.0.0-py310ha75aee5_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/psutil-7.0.0-py310ha75aee5_0.conda hash: md5: da7d592394ff9084a23f62a1186451a2 sha256: 31e46270c73cac2b24a7f3462ca03eb39f21cbfdb713b0d41eb61c00867eabe9 @@ -5429,7 +5429,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/psutil-7.0.0-py310ha8f682b_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/psutil-7.0.0-py310ha8f682b_0.conda hash: md5: ec78bb694e0ea34958e8f479e723499e sha256: 61c016c40848168bc565ceb8f3a78ad2d9288ffbe4236bcec312ef554f1caef2 @@ -5442,7 +5442,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda hash: md5: b3c17d95b5a10c6e64a21fa17573e70e sha256: 9c88f8c64590e9567c6c80823f0328e58d3b1efb0e1c539c0315ceca764e0973 @@ -5456,7 +5456,7 @@ package: libgcc: '>=13' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' ucrt: '>=10.0.20348.0' - url: https://conda.anaconda.org/conda-forge/win-64/pthread-stubs-0.4-h0e40799_1002.conda + url: https://repo.prefix.dev/conda-forge/win-64/pthread-stubs-0.4-h0e40799_1002.conda hash: md5: 3c8f2573569bb816483e5cf57efbbe29 sha256: 7e446bafb4d692792310ed022fe284e848c6a868c861655a92435af7368bae7b @@ -5468,7 +5468,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/ptyprocess-0.7.0-pyhd8ed1ab_1.conda hash: md5: 7d9daffbb8d8e0af0f769dbbcd173a54 sha256: a7713dfe30faf17508ec359e0bc7e0983f5d94682492469bd462cdaae9c64d83 @@ -5480,7 +5480,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda hash: md5: 3bfdfb8dbcdc4af1ae3f9a8eb3948f04 sha256: 71bd24600d14bb171a6321d523486f6a06f855e75e547fa0cb2a0953b02047f0 @@ -5492,7 +5492,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda hash: md5: 3bfdfb8dbcdc4af1ae3f9a8eb3948f04 sha256: 71bd24600d14bb171a6321d523486f6a06f855e75e547fa0cb2a0953b02047f0 @@ -5508,7 +5508,7 @@ package: pyyaml: '>=3.01' setuptools: '' six: '' - url: https://conda.anaconda.org/conda-forge/noarch/pybtex-0.24.0-pyhd8ed1ab_3.conda + url: https://repo.prefix.dev/conda-forge/noarch/pybtex-0.24.0-pyhd8ed1ab_3.conda hash: md5: 556a52a96313364aa79990ed1337b9a5 sha256: c87615fcc7327c5dcc247f309731c98f7b9867a48e6265e9584af6dc8cd82345 @@ -5524,7 +5524,7 @@ package: pyyaml: '>=3.01' setuptools: '' six: '' - url: https://conda.anaconda.org/conda-forge/noarch/pybtex-0.24.0-pyhd8ed1ab_3.conda + url: https://repo.prefix.dev/conda-forge/noarch/pybtex-0.24.0-pyhd8ed1ab_3.conda hash: md5: 556a52a96313364aa79990ed1337b9a5 sha256: c87615fcc7327c5dcc247f309731c98f7b9867a48e6265e9584af6dc8cd82345 @@ -5540,7 +5540,7 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* setuptools: '' - url: https://conda.anaconda.org/conda-forge/linux-64/pybtex-docutils-1.0.3-py310hff52083_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pybtex-docutils-1.0.3-py310hff52083_2.conda hash: md5: e9a2e0883b856ff34cea07ff02f702d3 sha256: c19926680a369df0a45f61bb1762e3e722afc9e28b7f50a4dc053435a322dbdc @@ -5556,7 +5556,7 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* setuptools: '' - url: https://conda.anaconda.org/conda-forge/win-64/pybtex-docutils-1.0.3-py310h5588dad_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/pybtex-docutils-1.0.3-py310h5588dad_2.conda hash: md5: 0caf4a3d5cf845e8d693e7f9bc8a7182 sha256: 1a6a996ff1bfb607f88d71dbbee0df3cfe71ca135f7d42583f0e548b5e55d9d2 @@ -5568,7 +5568,7 @@ package: platform: linux-64 dependencies: python: '' - url: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda hash: md5: 12c566707c80111f9799308d9e265aef sha256: 79db7928d13fab2d892592223d7570f5061c192f27b9febd1a418427b719acc6 @@ -5580,7 +5580,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda hash: md5: 12c566707c80111f9799308d9e265aef sha256: 79db7928d13fab2d892592223d7570f5061c192f27b9febd1a418427b719acc6 @@ -5597,7 +5597,7 @@ package: typing-extensions: '>=4.6.1' typing-inspection: '>=0.4.0' typing_extensions: '>=4.12.2' - url: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.11.3-pyh3cfb1c2_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.3-pyh3cfb1c2_0.conda hash: md5: 3c6f7f8ae9b9c177ad91ccc187912756 sha256: 89183785b09ebe9f9e65710057d7c41e9d21d4a9ad05e068850e18669655d5a8 @@ -5614,7 +5614,7 @@ package: typing-extensions: '>=4.6.1' typing-inspection: '>=0.4.0' typing_extensions: '>=4.12.2' - url: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.11.3-pyh3cfb1c2_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.3-pyh3cfb1c2_0.conda hash: md5: 3c6f7f8ae9b9c177ad91ccc187912756 sha256: 89183785b09ebe9f9e65710057d7c41e9d21d4a9ad05e068850e18669655d5a8 @@ -5630,7 +5630,7 @@ package: python: '' python_abi: 3.10.* typing-extensions: '>=4.6.0,!=4.7.0' - url: https://conda.anaconda.org/conda-forge/linux-64/pydantic-core-2.33.1-py310hc1293b2_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pydantic-core-2.33.1-py310hc1293b2_0.conda hash: md5: 24460b8a58d6d491be4088ffb5343f4b sha256: 76992a2b50b98a43b66be401998b0b71f4bbb3cc0db456309263a604dddff086 @@ -5647,7 +5647,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/pydantic-core-2.33.1-py310h7c79e54_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/pydantic-core-2.33.1-py310h7c79e54_0.conda hash: md5: 8e00f6b62285b0731e32dac4da060dd6 sha256: 5d8ba398dd9ff5086b23d753ce2a9833894c99e5cea48861dbed55f4fa0c69aa @@ -5667,7 +5667,7 @@ package: python: '>=3.9' sphinx: '>=5.0' typing_extensions: '' - url: https://conda.anaconda.org/conda-forge/noarch/pydata-sphinx-theme-0.15.4-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pydata-sphinx-theme-0.15.4-pyhd8ed1ab_0.conda hash: md5: c7c50dd5192caa58a05e6a4248a27acb sha256: 5ec877142ded763061e114e787a4e201c2fb3f0b1db2f04ace610a1187bb34ae @@ -5687,7 +5687,7 @@ package: python: '>=3.9' sphinx: '>=5.0' typing_extensions: '' - url: https://conda.anaconda.org/conda-forge/noarch/pydata-sphinx-theme-0.15.4-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pydata-sphinx-theme-0.15.4-pyhd8ed1ab_0.conda hash: md5: c7c50dd5192caa58a05e6a4248a27acb sha256: 5ec877142ded763061e114e787a4e201c2fb3f0b1db2f04ace610a1187bb34ae @@ -5705,7 +5705,7 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* scipy: '>=0.13' - url: https://conda.anaconda.org/conda-forge/linux-64/pydiso-0.1.2-py310h69a6472_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pydiso-0.1.2-py310h69a6472_0.conda hash: md5: d4ab7c8858c0f0db75600239c09b38d5 sha256: bfaa4f0455b0e3c4f7c535c8e1a3bd4ad1c3a546807647490871f4c3a6106b20 @@ -5724,7 +5724,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/pydiso-0.1.2-py310h8f92c26_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/pydiso-0.1.2-py310h8f92c26_0.conda hash: md5: 8b436acfa40172914304ac42a6387351 sha256: d86c167db66ccc00a45736f27a485c394713f075a91a18eb02e3416b8e5b4fdc @@ -5736,7 +5736,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda hash: md5: 232fb4577b6687b2d503ef8e254270c9 sha256: 28a3e3161390a9d23bc02b4419448f8d27679d9e2c250e29849e37749c8de86b @@ -5748,7 +5748,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda hash: md5: 232fb4577b6687b2d503ef8e254270c9 sha256: 28a3e3161390a9d23bc02b4419448f8d27679d9e2c250e29849e37749c8de86b @@ -5769,7 +5769,7 @@ package: tomli: '>=1.1.0' tomlkit: '>=0.10.1' typing_extensions: '>=3.10.0' - url: https://conda.anaconda.org/conda-forge/noarch/pylint-3.3.6-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pylint-3.3.6-pyh29332c3_0.conda hash: md5: 8242cc62822cc8a17f53d24d4efa75f4 sha256: 3e3e35b2cbb4b1ca3063fc2d6f44a85ac189e0935f00ed8fbe8e4713c0d00b99 @@ -5790,7 +5790,7 @@ package: tomli: '>=1.1.0' tomlkit: '>=0.10.1' typing_extensions: '>=3.10.0' - url: https://conda.anaconda.org/conda-forge/noarch/pylint-3.3.6-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pylint-3.3.6-pyh29332c3_0.conda hash: md5: 8242cc62822cc8a17f53d24d4efa75f4 sha256: 3e3e35b2cbb4b1ca3063fc2d6f44a85ac189e0935f00ed8fbe8e4713c0d00b99 @@ -5806,7 +5806,7 @@ package: pydiso: '>=0.1' python: '>=3.10' scipy: '>=1.8' - url: https://conda.anaconda.org/conda-forge/noarch/pymatsolver-0.3.1-pyh48887ae_201.conda + url: https://repo.prefix.dev/conda-forge/noarch/pymatsolver-0.3.1-pyh48887ae_201.conda hash: md5: b6805e522702eabf2ebbd236490d5eed sha256: d49ad9b58b9eeae204a3677cafc389c00c7f0f830ef76f481ab9aaf3e0260bad @@ -5822,7 +5822,7 @@ package: pydiso: '>=0.1' python: '>=3.10' scipy: '>=1.8' - url: https://conda.anaconda.org/conda-forge/noarch/pymatsolver-0.3.1-pyh48887ae_201.conda + url: https://repo.prefix.dev/conda-forge/noarch/pymatsolver-0.3.1-pyh48887ae_201.conda hash: md5: b6805e522702eabf2ebbd236490d5eed sha256: d49ad9b58b9eeae204a3677cafc389c00c7f0f830ef76f481ab9aaf3e0260bad @@ -5834,7 +5834,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.2.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/pyparsing-3.2.3-pyhd8ed1ab_1.conda hash: md5: 513d3c262ee49b54a8fec85c5bc99764 sha256: b92afb79b52fcf395fd220b29e0dd3297610f2059afac45298d44e00fcbf23b6 @@ -5846,7 +5846,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.2.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/pyparsing-3.2.3-pyhd8ed1ab_1.conda hash: md5: 513d3c262ee49b54a8fec85c5bc99764 sha256: b92afb79b52fcf395fd220b29e0dd3297610f2059afac45298d44e00fcbf23b6 @@ -5859,7 +5859,7 @@ package: dependencies: __unix: '' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha55dd90_7.conda + url: https://repo.prefix.dev/conda-forge/noarch/pysocks-1.7.1-pyha55dd90_7.conda hash: md5: 461219d1a5bd61342293efa2c0c90eac sha256: ba3b032fa52709ce0d9fd388f63d330a026754587a2f461117cac9ab73d8d0d8 @@ -5873,7 +5873,7 @@ package: __win: '' python: '>=3.9' win_inet_pton: '' - url: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyh09c184e_7.conda + url: https://repo.prefix.dev/conda-forge/noarch/pysocks-1.7.1-pyh09c184e_7.conda hash: md5: e2fd202833c4a981ce8a65974fe4abd1 sha256: d016e04b0e12063fbee4a2d5fbb9b39a8d191b5a0042f0b8459188aedeabb0ca @@ -5891,7 +5891,7 @@ package: pluggy: <2,>=1.5 python: '>=3.9' tomli: '>=1' - url: https://conda.anaconda.org/conda-forge/noarch/pytest-8.3.5-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytest-8.3.5-pyhd8ed1ab_0.conda hash: md5: c3c9316209dec74a705a36797970c6be sha256: 963524de7340c56615583ba7b97a6beb20d5c56a59defb59724dc2a3105169c9 @@ -5909,7 +5909,7 @@ package: pluggy: <2,>=1.5 python: '>=3.9' tomli: '>=1' - url: https://conda.anaconda.org/conda-forge/noarch/pytest-8.3.5-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytest-8.3.5-pyhd8ed1ab_0.conda hash: md5: c3c9316209dec74a705a36797970c6be sha256: 963524de7340c56615583ba7b97a6beb20d5c56a59defb59724dc2a3105169c9 @@ -5924,7 +5924,7 @@ package: pytest: '>=4.6' python: '>=3.9' toml: '' - url: https://conda.anaconda.org/conda-forge/noarch/pytest-cov-6.1.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-6.1.1-pyhd8ed1ab_0.conda hash: md5: 1e35d8f975bc0e984a19819aa91c440a sha256: 9961a1524f63d10bc29efdc52013ec06b0e95fb2619a250e250ff3618261d5cd @@ -5939,7 +5939,7 @@ package: pytest: '>=4.6' python: '>=3.9' toml: '' - url: https://conda.anaconda.org/conda-forge/noarch/pytest-cov-6.1.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-6.1.1-pyhd8ed1ab_0.conda hash: md5: 1e35d8f975bc0e984a19819aa91c440a sha256: 9961a1524f63d10bc29efdc52013ec06b0e95fb2619a250e250ff3618261d5cd @@ -5968,7 +5968,7 @@ package: readline: '>=8.2,<9.0a0' tk: '>=8.6.13,<8.7.0a0' tzdata: '' - url: https://conda.anaconda.org/conda-forge/linux-64/python-3.10.17-hd6af730_0_cpython.conda + url: https://repo.prefix.dev/conda-forge/linux-64/python-3.10.17-hd6af730_0_cpython.conda hash: md5: 7bb89638dae9ce1b8e051d0b721e83c2 sha256: 0ae32507817402bfad08fbf0f4a9b5ae26859d5390b98bc939da85fd0bd4239f @@ -5992,7 +5992,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/python-3.10.17-h8c5b53a_0_cpython.conda + url: https://repo.prefix.dev/conda-forge/win-64/python-3.10.17-h8c5b53a_0_cpython.conda hash: md5: 0c59918f056ab2e9c7bb45970d32b2ea sha256: 071303a9bcbba4d79ab1ca61f34ec9f4ad65bc15d897828f5006ef9507094557 @@ -6005,7 +6005,7 @@ package: dependencies: python: '>=3.9' six: '>=1.5' - url: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda hash: md5: 5ba79d7c71f03c678c8ead841f347d6e sha256: a50052536f1ef8516ed11a844f9413661829aa083304dc624c5925298d078d79 @@ -6018,7 +6018,7 @@ package: dependencies: python: '>=3.9' six: '>=1.5' - url: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda hash: md5: 5ba79d7c71f03c678c8ead841f347d6e sha256: a50052536f1ef8516ed11a844f9413661829aa083304dc624c5925298d078d79 @@ -6030,7 +6030,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.21.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/python-fastjsonschema-2.21.1-pyhd8ed1ab_0.conda hash: md5: 38e34d2d1d9dca4fb2b9a0a04f604e2c sha256: 1b09a28093071c1874862422696429d0d35bd0b8420698003ac004746c5e82a2 @@ -6042,7 +6042,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.21.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/python-fastjsonschema-2.21.1-pyhd8ed1ab_0.conda hash: md5: 38e34d2d1d9dca4fb2b9a0a04f604e2c sha256: 1b09a28093071c1874862422696429d0d35bd0b8420698003ac004746c5e82a2 @@ -6054,7 +6054,7 @@ package: platform: linux-64 dependencies: python: '>=3.6' - url: https://conda.anaconda.org/conda-forge/noarch/python-json-logger-2.0.7-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/python-json-logger-2.0.7-pyhd8ed1ab_0.conda hash: md5: a61bf9ec79426938ff785eb69dbb1960 sha256: 4790787fe1f4e8da616edca4acf6a4f8ed4e7c6967aa31b920208fc8f95efcca @@ -6066,7 +6066,7 @@ package: platform: win-64 dependencies: python: '>=3.6' - url: https://conda.anaconda.org/conda-forge/noarch/python-json-logger-2.0.7-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/python-json-logger-2.0.7-pyhd8ed1ab_0.conda hash: md5: a61bf9ec79426938ff785eb69dbb1960 sha256: 4790787fe1f4e8da616edca4acf6a4f8ed4e7c6967aa31b920208fc8f95efcca @@ -6084,7 +6084,7 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* scipy: '>=1.8' - url: https://conda.anaconda.org/conda-forge/linux-64/python-mumps-0.0.3-py310h6410a28_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/python-mumps-0.0.3-py310h6410a28_0.conda hash: md5: f7e3766b109232dadef0cc072e1e3cc6 sha256: bf869230e332833c9f9f1908731a859c3b39a612e74ae8f65b5338d67795c613 @@ -6103,7 +6103,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/python-mumps-0.0.3-py310hb64895d_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/python-mumps-0.0.3-py310hb64895d_0.conda hash: md5: 477083091731501c8bef2fd4733ec23f sha256: 1461a60b36aa7b2189ad3bd0ca9bb356d42ea2e54c8aaf122826e9f8bd33735c @@ -6115,7 +6115,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2025.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/python-tzdata-2025.2-pyhd8ed1ab_0.conda hash: md5: 88476ae6ebd24f39261e0854ac244f33 sha256: e8392a8044d56ad017c08fec2b0eb10ae3d1235ac967d0aab8bd7b41c4a5eaf0 @@ -6127,7 +6127,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2025.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/python-tzdata-2025.2-pyhd8ed1ab_0.conda hash: md5: 88476ae6ebd24f39261e0854ac244f33 sha256: e8392a8044d56ad017c08fec2b0eb10ae3d1235ac967d0aab8bd7b41c4a5eaf0 @@ -6138,7 +6138,7 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.10-6_cp310.conda + url: https://repo.prefix.dev/conda-forge/linux-64/python_abi-3.10-6_cp310.conda hash: md5: 01f0f2104b8466714804a72e511de599 sha256: 716287b4c15fb9a78b49a627dd7057c9fc7a29c6d4056b506fc84dab2cd2ca85 @@ -6149,7 +6149,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/win-64/python_abi-3.10-6_cp310.conda + url: https://repo.prefix.dev/conda-forge/win-64/python_abi-3.10-6_cp310.conda hash: md5: 041cd0bfc8be015fbd78b5b2fe9b168e sha256: 27015f67c4cea426e16cdc8054a1a3f9e78825c2e9b8a594a34e0feb9f7de606 @@ -6161,7 +6161,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda hash: md5: bc8e3267d44011051f2eb14d22fb0960 sha256: 8d2a8bf110cc1fc3df6904091dead158ba3e614d8402a83e51ed3a8aa93cdeb0 @@ -6173,7 +6173,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda hash: md5: bc8e3267d44011051f2eb14d22fb0960 sha256: 8d2a8bf110cc1fc3df6904091dead158ba3e614d8402a83e51ed3a8aa93cdeb0 @@ -6189,7 +6189,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/pywin32-307-py310h9e98ed7_3.conda + url: https://repo.prefix.dev/conda-forge/win-64/pywin32-307-py310h9e98ed7_3.conda hash: md5: 1fd1de4af8c39bb0efa5c9d5b092aa42 sha256: 712a131fadba8236830fc33d04154865a611e489f595b96370ade21cc2c1a5a2 @@ -6206,7 +6206,7 @@ package: vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' winpty: '' - url: https://conda.anaconda.org/conda-forge/win-64/pywinpty-2.0.15-py310h9e98ed7_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/pywinpty-2.0.15-py310h9e98ed7_0.conda hash: md5: f49c829097b0b3074801911047e4fd70 sha256: ca5952309c4faa76c617488da87ac8b77dbeb86b4dae7b767211b2ededf98575 @@ -6222,7 +6222,7 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* yaml: '>=0.2.5,<0.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0.2-py310h89163eb_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pyyaml-6.0.2-py310h89163eb_2.conda hash: md5: fd343408e64cf1e273ab7c710da374db sha256: 5fba7f5babcac872c72f6509c25331bcfac4f8f5031f0102530a41b41336fce6 @@ -6239,7 +6239,7 @@ package: vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' yaml: '>=0.2.5,<0.3.0a0' - url: https://conda.anaconda.org/conda-forge/win-64/pyyaml-6.0.2-py310h38315fa_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/pyyaml-6.0.2-py310h38315fa_2.conda hash: md5: 9986c3731bb820db0830dd0825c26cf9 sha256: 49dd492bdf2c479118ca9d61a59ce259594853d367a1a0548926f41a6e734724 @@ -6257,7 +6257,7 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* zeromq: '>=4.3.5,<4.4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/pyzmq-26.4.0-py310h71f11fc_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pyzmq-26.4.0-py310h71f11fc_0.conda hash: md5: 4859978df0e6408e439cb6badfbb3c5d sha256: 2c93bcd81c1dadeb9b57bc4c833b3638f518f9b960fc1a928d4670abffd25017 @@ -6275,7 +6275,7 @@ package: vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' zeromq: '>=4.3.5,<4.3.6.0a0' - url: https://conda.anaconda.org/conda-forge/win-64/pyzmq-26.4.0-py310h656833d_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/pyzmq-26.4.0-py310h656833d_0.conda hash: md5: dd340eeec5732405db972695aceb24f5 sha256: 02657a2503ebdc5ed6d64f14f50f129d27309ded9862c214dd5cfd45ed64398c @@ -6288,7 +6288,7 @@ package: dependencies: libgcc: '>=13' ncurses: '>=6.5,<7.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda hash: md5: 283b96675859b20a825f8fa30f311446 sha256: 2d6d0c026902561ed77cd646b5021aef2d4db22e57a5b0178dfc669231e06d2c @@ -6303,7 +6303,7 @@ package: packaging: '' python: '>=3.9' requests: '' - url: https://conda.anaconda.org/conda-forge/noarch/readthedocs-sphinx-ext-2.2.5-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/readthedocs-sphinx-ext-2.2.5-pyhd8ed1ab_1.conda hash: md5: 42840a95562a02bef45e7b7fb24dcba4 sha256: e391356581919077b1639ebd13f4cbb0773acfd5710cfe4188921e8a0387dc6b @@ -6318,7 +6318,7 @@ package: packaging: '' python: '>=3.9' requests: '' - url: https://conda.anaconda.org/conda-forge/noarch/readthedocs-sphinx-ext-2.2.5-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/readthedocs-sphinx-ext-2.2.5-pyhd8ed1ab_1.conda hash: md5: 42840a95562a02bef45e7b7fb24dcba4 sha256: e391356581919077b1639ebd13f4cbb0773acfd5710cfe4188921e8a0387dc6b @@ -6333,7 +6333,7 @@ package: python: '' rpds-py: '>=0.7.0' typing_extensions: '>=4.4.0' - url: https://conda.anaconda.org/conda-forge/noarch/referencing-0.36.2-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/referencing-0.36.2-pyh29332c3_0.conda hash: md5: 9140f1c09dd5489549c6a33931b943c7 sha256: e20909f474a6cece176dfc0dc1addac265deb5fa92ea90e975fbca48085b20c3 @@ -6348,7 +6348,7 @@ package: python: '>=3.9' rpds-py: '>=0.7.0' typing_extensions: '>=4.4.0' - url: https://conda.anaconda.org/conda-forge/noarch/referencing-0.36.2-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/referencing-0.36.2-pyh29332c3_0.conda hash: md5: 9140f1c09dd5489549c6a33931b943c7 sha256: e20909f474a6cece176dfc0dc1addac265deb5fa92ea90e975fbca48085b20c3 @@ -6364,7 +6364,7 @@ package: idna: '>=2.5,<4' python: '>=3.9' urllib3: '>=1.21.1,<3' - url: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda hash: md5: a9b9368f3701a417eac9edbcae7cb737 sha256: d701ca1136197aa121bbbe0e8c18db6b5c94acbd041c2b43c70e5ae104e1d8ad @@ -6380,7 +6380,7 @@ package: idna: '>=2.5,<4' python: '>=3.9' urllib3: '>=1.21.1,<3' - url: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda hash: md5: a9b9368f3701a417eac9edbcae7cb737 sha256: d701ca1136197aa121bbbe0e8c18db6b5c94acbd041c2b43c70e5ae104e1d8ad @@ -6393,7 +6393,7 @@ package: dependencies: python: '>=3.9' six: '' - url: https://conda.anaconda.org/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_1.conda hash: md5: 36de09a8d3e5d5e6f4ee63af49e59706 sha256: 2e4372f600490a6e0b3bac60717278448e323cab1c0fecd5f43f7c56535a99c5 @@ -6406,7 +6406,7 @@ package: dependencies: python: '>=3.9' six: '' - url: https://conda.anaconda.org/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_1.conda hash: md5: 36de09a8d3e5d5e6f4ee63af49e59706 sha256: 2e4372f600490a6e0b3bac60717278448e323cab1c0fecd5f43f7c56535a99c5 @@ -6418,7 +6418,7 @@ package: platform: linux-64 dependencies: python: '' - url: https://conda.anaconda.org/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2 hash: md5: 912a71cc01012ee38e6b90ddd561e36f sha256: 2a5b495a1de0f60f24d8a74578ebc23b24aa53279b1ad583755f223097c41c37 @@ -6430,7 +6430,7 @@ package: platform: win-64 dependencies: python: '' - url: https://conda.anaconda.org/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2 hash: md5: 912a71cc01012ee38e6b90ddd561e36f sha256: 2a5b495a1de0f60f24d8a74578ebc23b24aa53279b1ad583755f223097c41c37 @@ -6445,7 +6445,7 @@ package: libgcc: '>=13' python: '' python_abi: 3.10.* - url: https://conda.anaconda.org/conda-forge/linux-64/rpds-py-0.24.0-py310hc1293b2_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/rpds-py-0.24.0-py310hc1293b2_0.conda hash: md5: 2170ed457a6427f37c90104f6a63437d sha256: b0c896af1d8ce85d7948624664d87bd9286223ea5a19884d6f295d37d5cd4e0f @@ -6461,7 +6461,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/rpds-py-0.24.0-py310h7c79e54_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/rpds-py-0.24.0-py310h7c79e54_0.conda hash: md5: bd5b837169847d1f3e626ab20a9299f0 sha256: e058920df1d6609a3522662a44f6c3a465ffb163dda4e8b6449435160c911cef @@ -6481,7 +6481,7 @@ package: python_abi: 3.10.* scipy: '' threadpoolctl: '>=2.0.0' - url: https://conda.anaconda.org/conda-forge/linux-64/scikit-learn-1.4.2-py310h981052a_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/scikit-learn-1.4.2-py310h981052a_1.conda hash: md5: 672f0238a945f1c98fe97b147c8a040a sha256: b3718226723c94f5a93f417acb29ad82b0520acf945a06ae90e0b7ed076191a7 @@ -6501,7 +6501,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/scikit-learn-1.4.2-py310hf2a6c47_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/scikit-learn-1.4.2-py310hf2a6c47_1.conda hash: md5: 9142e7e901c0f6e76541b523d480043e sha256: 24e9f3db0a2f477cbe20d1c98b48edd0d768af21dd7e6c3553e286f01deabfe5 @@ -6523,7 +6523,7 @@ package: numpy: '>=1.23.5' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://conda.anaconda.org/conda-forge/linux-64/scipy-1.14.1-py310hfcf56fc_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/scipy-1.14.1-py310hfcf56fc_2.conda hash: md5: b5d548b2a7cf8d0c74fc6c4bf42d1ca5 sha256: a15008a51fd6b6dcaeb5563869ff0a8a015f1e0a8634a9d89d2c189eefbd7182 @@ -6543,7 +6543,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/scipy-1.14.1-py310hbd0dde3_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/scipy-1.14.1-py310hbd0dde3_2.conda hash: md5: 72a2a7c264a8b48d113111756c2bbbb4 sha256: 761829fa9c91fdffff0ba5a1f56f7d4cc00bec71ca7fa06859dc7f5a98117273 @@ -6556,7 +6556,7 @@ package: dependencies: __linux: '' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/send2trash-1.8.3-pyh0d859eb_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/send2trash-1.8.3-pyh0d859eb_1.conda hash: md5: 938c8de6b9de091997145b3bf25cdbf9 sha256: 00926652bbb8924e265caefdb1db100f86a479e8f1066efe395d5552dde54d02 @@ -6570,34 +6570,34 @@ package: __win: '' python: '>=3.9' pywin32: '' - url: https://conda.anaconda.org/conda-forge/noarch/send2trash-1.8.3-pyh5737063_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/send2trash-1.8.3-pyh5737063_1.conda hash: md5: e6a4e906051565caf5fdae5b0415b654 sha256: ba8b93df52e0d625177907852340d735026c81118ac197f61f1f5baea19071ad category: dev optional: true - name: setuptools - version: 78.1.0 + version: 78.1.1 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/setuptools-78.1.0-pyhff2d567_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/setuptools-78.1.1-pyhff2d567_0.conda hash: - md5: a42da9837e46c53494df0044c3eb1f53 - sha256: d4c74d2140f2fbc72fe5320cbd65f3fd1d1f7832ab4d7825c37c38ab82440ae2 + md5: 72437384f9364b6baf20b6dd68d282c2 + sha256: 33a0cab4724d8130055f65e6edc101df7136f2f26cefb52669df88de8aeee28c category: main optional: false - name: setuptools - version: 78.1.0 + version: 78.1.1 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/setuptools-78.1.0-pyhff2d567_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/setuptools-78.1.1-pyhff2d567_0.conda hash: - md5: a42da9837e46c53494df0044c3eb1f53 - sha256: d4c74d2140f2fbc72fe5320cbd65f3fd1d1f7832ab4d7825c37c38ab82440ae2 + md5: 72437384f9364b6baf20b6dd68d282c2 + sha256: 33a0cab4724d8130055f65e6edc101df7136f2f26cefb52669df88de8aeee28c category: main optional: false - name: six @@ -6606,7 +6606,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda hash: md5: a451d576819089b0d672f18768be0f65 sha256: 41db0180680cc67c3fa76544ffd48d6a5679d96f4b71d7498a759e94edc9a2db @@ -6618,7 +6618,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda hash: md5: a451d576819089b0d672f18768be0f65 sha256: 41db0180680cc67c3fa76544ffd48d6a5679d96f4b71d7498a759e94edc9a2db @@ -6630,7 +6630,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_1.conda hash: md5: bf7a226e58dfb8346c70df36065d86c9 sha256: c2248418c310bdd1719b186796ae50a8a77ce555228b6acd32768e2543a15012 @@ -6642,7 +6642,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_1.conda hash: md5: bf7a226e58dfb8346c70df36065d86c9 sha256: c2248418c310bdd1719b186796ae50a8a77ce555228b6acd32768e2543a15012 @@ -6654,7 +6654,7 @@ package: platform: linux-64 dependencies: python: '>=2' - url: https://conda.anaconda.org/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 4d22a9315e78c6827f806065957d566e sha256: a0fd916633252d99efb6223b1050202841fa8d2d53dacca564b0ed77249d3228 @@ -6666,7 +6666,7 @@ package: platform: win-64 dependencies: python: '>=2' - url: https://conda.anaconda.org/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 4d22a9315e78c6827f806065957d566e sha256: a0fd916633252d99efb6223b1050202841fa8d2d53dacca564b0ed77249d3228 @@ -6678,7 +6678,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_1.conda hash: md5: 0401a17ae845fa72c7210e206ec5647d sha256: d1e3e06b5cf26093047e63c8cc77b70d970411c5cbc0cb1fad461a8a8df599f7 @@ -6690,7 +6690,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_1.conda hash: md5: 0401a17ae845fa72c7210e206ec5647d sha256: d1e3e06b5cf26093047e63c8cc77b70d970411c5cbc0cb1fad461a8a8df599f7 @@ -6702,7 +6702,7 @@ package: platform: linux-64 dependencies: python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda hash: md5: 3f144b2c34f8cb5a9abd9ed23a39c561 sha256: 54ae221033db8fbcd4998ccb07f3c3828b4d77e73b0c72b18c1d6a507059059c @@ -6714,7 +6714,7 @@ package: platform: win-64 dependencies: python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda hash: md5: 3f144b2c34f8cb5a9abd9ed23a39c561 sha256: 54ae221033db8fbcd4998ccb07f3c3828b4d77e73b0c72b18c1d6a507059059c @@ -6743,7 +6743,7 @@ package: sphinxcontrib-jsmath: '' sphinxcontrib-qthelp: '' sphinxcontrib-serializinghtml: '>=1.1.5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-5.3.0-pyhd8ed1ab_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-5.3.0-pyhd8ed1ab_0.tar.bz2 hash: md5: f9e1fcfe235d655900bfeb6aee426472 sha256: f11fd5fb4ae2c65f41ae86e7408e3ab44844898d928264aa9e89929fffc685c8 @@ -6772,7 +6772,7 @@ package: sphinxcontrib-jsmath: '' sphinxcontrib-qthelp: '' sphinxcontrib-serializinghtml: '>=1.1.5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-5.3.0-pyhd8ed1ab_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-5.3.0-pyhd8ed1ab_0.tar.bz2 hash: md5: f9e1fcfe235d655900bfeb6aee426472 sha256: f11fd5fb4ae2c65f41ae86e7408e3ab44844898d928264aa9e89929fffc685c8 @@ -6786,7 +6786,7 @@ package: pydata-sphinx-theme: '>=0.15.2' python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-book-theme-1.1.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-book-theme-1.1.3-pyhd8ed1ab_1.conda hash: md5: 501e2d6d8aa1b8d82d2707ce8c90b287 sha256: cf1d3ae6d28042954ac750f6948678fefa619681c3994d2637d747d96a1139ea @@ -6800,7 +6800,7 @@ package: pydata-sphinx-theme: '>=0.15.2' python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-book-theme-1.1.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-book-theme-1.1.3-pyhd8ed1ab_1.conda hash: md5: 501e2d6d8aa1b8d82d2707ce8c90b287 sha256: cf1d3ae6d28042954ac750f6948678fefa619681c3994d2637d747d96a1139ea @@ -6813,7 +6813,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=1.8' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-comments-0.0.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-comments-0.0.3-pyhd8ed1ab_1.conda hash: md5: 30e02fa8e40287da066e348c95ff5609 sha256: 00129f91b905441a9e27c46ef32c22617743eb4a4f7207e1dd84bc19505d4381 @@ -6826,7 +6826,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=1.8' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-comments-0.0.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-comments-0.0.3-pyhd8ed1ab_1.conda hash: md5: 30e02fa8e40287da066e348c95ff5609 sha256: 00129f91b905441a9e27c46ef32c22617743eb4a4f7207e1dd84bc19505d4381 @@ -6839,7 +6839,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=1.8' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-copybutton-0.5.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-copybutton-0.5.2-pyhd8ed1ab_1.conda hash: md5: bf22cb9c439572760316ce0748af3713 sha256: 8cd892e49cb4d00501bc4439fb0c73ca44905f01a65b2b7fa05ba0e8f3924f19 @@ -6852,7 +6852,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=1.8' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-copybutton-0.5.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-copybutton-0.5.2-pyhd8ed1ab_1.conda hash: md5: bf22cb9c439572760316ce0748af3713 sha256: 8cd892e49cb4d00501bc4439fb0c73ca44905f01a65b2b7fa05ba0e8f3924f19 @@ -6865,7 +6865,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5,<8' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-design-0.6.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-design-0.6.1-pyhd8ed1ab_0.conda hash: md5: 51b2433e4a223b14defee96d3caf9bab sha256: 99a44df1d09a27e40002ebaf76792dac75c9cb1386af313b272a4251c8047640 @@ -6878,7 +6878,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5,<8' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-design-0.6.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-design-0.6.1-pyhd8ed1ab_0.conda hash: md5: 51b2433e4a223b14defee96d3caf9bab sha256: 99a44df1d09a27e40002ebaf76792dac75c9cb1386af313b272a4251c8047640 @@ -6893,7 +6893,7 @@ package: python: '>=3.9' pyyaml: '' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-external-toc-1.0.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-external-toc-1.0.1-pyhd8ed1ab_1.conda hash: md5: d248f9db0f1c2e7c480b058925afa9c5 sha256: 47dda7135f9fb1777b7066c3b9260fdd796d6ec2aeb8804161f39c65b3461401 @@ -6908,7 +6908,7 @@ package: python: '>=3.9' pyyaml: '' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-external-toc-1.0.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-external-toc-1.0.1-pyhd8ed1ab_1.conda hash: md5: d248f9db0f1c2e7c480b058925afa9c5 sha256: 47dda7135f9fb1777b7066c3b9260fdd796d6ec2aeb8804161f39c65b3461401 @@ -6922,7 +6922,7 @@ package: packaging: '' python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-jupyterbook-latex-1.0.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-jupyterbook-latex-1.0.0-pyhd8ed1ab_1.conda hash: md5: 9261bc5d987013f5d8dc58061c34f1a3 sha256: b64c031795918f26ddeb5148ede2d3a4944cd9f5461cf72bde3f28acdc71d2f3 @@ -6936,7 +6936,7 @@ package: packaging: '' python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-jupyterbook-latex-1.0.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-jupyterbook-latex-1.0.0-pyhd8ed1ab_1.conda hash: md5: 9261bc5d987013f5d8dc58061c34f1a3 sha256: b64c031795918f26ddeb5148ede2d3a4944cd9f5461cf72bde3f28acdc71d2f3 @@ -6949,7 +6949,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=3' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-multitoc-numbering-0.1.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-multitoc-numbering-0.1.3-pyhd8ed1ab_1.conda hash: md5: cc5fc0988f0fedab436361b9b5906a58 sha256: 9fa48b33334c3a9971c96dd3d921950e8350cfa88a8e8ebaec6d8261071ea2ac @@ -6962,7 +6962,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=3' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-multitoc-numbering-0.1.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-multitoc-numbering-0.1.3-pyhd8ed1ab_1.conda hash: md5: cc5fc0988f0fedab436361b9b5906a58 sha256: 9fa48b33334c3a9971c96dd3d921950e8350cfa88a8e8ebaec6d8261071ea2ac @@ -6975,7 +6975,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=4' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-thebe-0.3.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-thebe-0.3.1-pyhd8ed1ab_1.conda hash: md5: f6627ce09745a0f822cc6e7de8cf4f99 sha256: 9d0cd52edcb2274bf7c8e9327317d9bb48e1d092afeaed093e0242876ad3c008 @@ -6988,7 +6988,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=4' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-thebe-0.3.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-thebe-0.3.1-pyhd8ed1ab_1.conda hash: md5: f6627ce09745a0f822cc6e7de8cf4f99 sha256: 9d0cd52edcb2274bf7c8e9327317d9bb48e1d092afeaed093e0242876ad3c008 @@ -7002,7 +7002,7 @@ package: docutils: '' python: '>=3.6' sphinx: '' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-togglebutton-0.3.2-pyhd8ed1ab_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-togglebutton-0.3.2-pyhd8ed1ab_0.tar.bz2 hash: md5: 382738101934261ea7931d1460e64868 sha256: 0dcee238aae6337fae5eaf1f9a29b0c51ed9834ae501fccb2cde0fed8dae1a88 @@ -7016,7 +7016,7 @@ package: docutils: '' python: '>=3.6' sphinx: '' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-togglebutton-0.3.2-pyhd8ed1ab_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-togglebutton-0.3.2-pyhd8ed1ab_0.tar.bz2 hash: md5: 382738101934261ea7931d1460e64868 sha256: 0dcee238aae6337fae5eaf1f9a29b0c51ed9834ae501fccb2cde0fed8dae1a88 @@ -7029,7 +7029,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 16e3f039c0aa6446513e94ab18a8784b sha256: d7433a344a9ad32a680b881c81b0034bc61618d12c39dd6e3309abeffa9577ba @@ -7042,7 +7042,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 16e3f039c0aa6446513e94ab18a8784b sha256: d7433a344a9ad32a680b881c81b0034bc61618d12c39dd6e3309abeffa9577ba @@ -7060,7 +7060,7 @@ package: pybtex-docutils: '>=1' python: '>=3.6' sphinx: '>=2.1' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-bibtex-2.5.0-pyhd8ed1ab_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-bibtex-2.5.0-pyhd8ed1ab_0.tar.bz2 hash: md5: b2e5c9aece936ebf9f26abdf71ddd74b sha256: d5b02d285909b4501a469857b1a88a91a849d5f28bbe64b9e6c3e86d2388d345 @@ -7078,7 +7078,7 @@ package: pybtex-docutils: '>=1' python: '>=3.6' sphinx: '>=2.1' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-bibtex-2.5.0-pyhd8ed1ab_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-bibtex-2.5.0-pyhd8ed1ab_0.tar.bz2 hash: md5: b2e5c9aece936ebf9f26abdf71ddd74b sha256: d5b02d285909b4501a469857b1a88a91a849d5f28bbe64b9e6c3e86d2388d345 @@ -7091,7 +7091,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 910f28a05c178feba832f842155cbfff sha256: 55d5076005d20b84b20bee7844e686b7e60eb9f683af04492e598a622b12d53d @@ -7104,7 +7104,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 910f28a05c178feba832f842155cbfff sha256: 55d5076005d20b84b20bee7844e686b7e60eb9f683af04492e598a622b12d53d @@ -7117,7 +7117,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_1.conda hash: md5: e9fb3fe8a5b758b4aff187d434f94f03 sha256: c1492c0262ccf16694bdcd3bb62aa4627878ea8782d5cd3876614ffeb62b3996 @@ -7130,7 +7130,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_1.conda hash: md5: e9fb3fe8a5b758b4aff187d434f94f03 sha256: c1492c0262ccf16694bdcd3bb62aa4627878ea8782d5cd3876614ffeb62b3996 @@ -7142,7 +7142,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_1.conda hash: md5: fa839b5ff59e192f411ccc7dae6588bb sha256: 578bef5ec630e5b2b8810d898bbbf79b9ae66d49b7938bcc3efc364e679f2a62 @@ -7154,7 +7154,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_1.conda hash: md5: fa839b5ff59e192f411ccc7dae6588bb sha256: 578bef5ec630e5b2b8810d898bbbf79b9ae66d49b7938bcc3efc364e679f2a62 @@ -7167,7 +7167,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 00534ebcc0375929b45c3039b5ba7636 sha256: c664fefae4acdb5fae973bdde25836faf451f41d04342b64a358f9a7753c92ca @@ -7180,7 +7180,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 00534ebcc0375929b45c3039b5ba7636 sha256: c664fefae4acdb5fae973bdde25836faf451f41d04342b64a358f9a7753c92ca @@ -7193,7 +7193,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda hash: md5: 3bc61f7161d28137797e038263c04c54 sha256: 64d89ecc0264347486971a94487cb8d7c65bfc0176750cf7502b8a272f4ab557 @@ -7206,7 +7206,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda hash: md5: 3bc61f7161d28137797e038263c04c54 sha256: 64d89ecc0264347486971a94487cb8d7c65bfc0176750cf7502b8a272f4ab557 @@ -7223,7 +7223,7 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* typing-extensions: '>=4.6.0' - url: https://conda.anaconda.org/conda-forge/linux-64/sqlalchemy-2.0.40-py310ha75aee5_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/sqlalchemy-2.0.40-py310ha75aee5_0.conda hash: md5: bc2a512664843a017e39f70beb69fc60 sha256: ecce430c1f71cbe96fe07cc2b50d3ae895d8ec5ccf7a3083987719d1957961a9 @@ -7241,7 +7241,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/sqlalchemy-2.0.40-py310ha8f682b_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/sqlalchemy-2.0.40-py310ha8f682b_0.conda hash: md5: a0919291fec53d2694d88fb0f21009a8 sha256: c319587abaec3cdf2bb7b76aacb115527f39582c3ce8bb49d0d59c67507e32ef @@ -7256,7 +7256,7 @@ package: executing: '' pure_eval: '' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda hash: md5: b1b505328da7a6b246787df4b5a49fbc sha256: 570da295d421661af487f1595045760526964f41471021056e993e73089e9c41 @@ -7271,7 +7271,7 @@ package: executing: '' pure_eval: '' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda hash: md5: b1b505328da7a6b246787df4b5a49fbc sha256: 570da295d421661af487f1595045760526964f41471021056e993e73089e9c41 @@ -7283,7 +7283,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/tabulate-0.9.0-pyhd8ed1ab_2.conda + url: https://repo.prefix.dev/conda-forge/noarch/tabulate-0.9.0-pyhd8ed1ab_2.conda hash: md5: 959484a66b4b76befcddc4fa97c95567 sha256: 090023bddd40d83468ef86573976af8c514f64119b2bd814ee63a838a542720a @@ -7295,7 +7295,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/tabulate-0.9.0-pyhd8ed1ab_2.conda + url: https://repo.prefix.dev/conda-forge/noarch/tabulate-0.9.0-pyhd8ed1ab_2.conda hash: md5: 959484a66b4b76befcddc4fa97c95567 sha256: 090023bddd40d83468ef86573976af8c514f64119b2bd814ee63a838a542720a @@ -7310,7 +7310,7 @@ package: libgcc: '>=13' libhwloc: '>=2.11.2,<2.11.3.0a0' libstdcxx: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/tbb-2021.13.0-hceb3a55_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/tbb-2021.13.0-hceb3a55_1.conda hash: md5: ba7726b8df7b9d34ea80e82b097a4893 sha256: 65463732129899770d54b1fbf30e1bb82fdebda9d7553caf08d23db4590cd691 @@ -7325,7 +7325,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/tbb-2021.13.0-h62715c5_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/tbb-2021.13.0-h62715c5_1.conda hash: md5: 9190dd0a23d925f7602f9628b3aed511 sha256: 03cc5442046485b03dd1120d0f49d35a7e522930a2ab82f275e938e17b07b302 @@ -7337,7 +7337,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/tblib-3.1.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/tblib-3.1.0-pyhd8ed1ab_0.conda hash: md5: a15c62b8a306b8978f094f76da2f903f sha256: a83c83f5e622a2f34fb1d179c55c3ff912429cd0a54f9f3190ae44a0fdba2ad2 @@ -7349,7 +7349,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/tblib-3.1.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/tblib-3.1.0-pyhd8ed1ab_0.conda hash: md5: a15c62b8a306b8978f094f76da2f903f sha256: a83c83f5e622a2f34fb1d179c55c3ff912429cd0a54f9f3190ae44a0fdba2ad2 @@ -7364,7 +7364,7 @@ package: ptyprocess: '' python: '>=3.8' tornado: '>=6.1.0' - url: https://conda.anaconda.org/conda-forge/noarch/terminado-0.18.1-pyh0d859eb_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/terminado-0.18.1-pyh0d859eb_0.conda hash: md5: efba281bbdae5f6b0a1d53c6d4a97c93 sha256: b300557c0382478cf661ddb520263508e4b3b5871b471410450ef2846e8c352c @@ -7379,7 +7379,7 @@ package: python: '>=3.8' pywinpty: '>=1.1.0' tornado: '>=6.1.0' - url: https://conda.anaconda.org/conda-forge/noarch/terminado-0.18.1-pyh5737063_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/terminado-0.18.1-pyh5737063_0.conda hash: md5: 4abd500577430a942a995fd0d09b76a2 sha256: 8cb078291fd7882904e3de594d299c8de16dd3af7405787fce6919a385cfc238 @@ -7391,7 +7391,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/threadpoolctl-3.6.0-pyhecae5ae_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/threadpoolctl-3.6.0-pyhecae5ae_0.conda hash: md5: 9d64911b31d57ca443e9f1e36b04385f sha256: 6016672e0e72c4cf23c0cf7b1986283bd86a9c17e8d319212d78d8e9ae42fdfd @@ -7403,7 +7403,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/threadpoolctl-3.6.0-pyhecae5ae_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/threadpoolctl-3.6.0-pyhecae5ae_0.conda hash: md5: 9d64911b31d57ca443e9f1e36b04385f sha256: 6016672e0e72c4cf23c0cf7b1986283bd86a9c17e8d319212d78d8e9ae42fdfd @@ -7416,7 +7416,7 @@ package: dependencies: python: '>=3.5' webencodings: '>=0.4' - url: https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/tinycss2-1.4.0-pyhd8ed1ab_0.conda hash: md5: f1acf5fdefa8300de697982bcb1761c9 sha256: cad582d6f978276522f84bd209a5ddac824742fe2d452af6acf900f8650a73a2 @@ -7429,7 +7429,7 @@ package: dependencies: python: '>=3.5' webencodings: '>=0.4' - url: https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/tinycss2-1.4.0-pyhd8ed1ab_0.conda hash: md5: f1acf5fdefa8300de697982bcb1761c9 sha256: cad582d6f978276522f84bd209a5ddac824742fe2d452af6acf900f8650a73a2 @@ -7442,7 +7442,7 @@ package: dependencies: libgcc-ng: '>=12' libzlib: '>=1.2.13,<2.0.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda + url: https://repo.prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda hash: md5: d453b98d9c83e71da0741bb0ff4d76bc sha256: e0569c9caa68bf476bead1bed3d79650bb080b532c64a4af7d8ca286c08dea4e @@ -7456,7 +7456,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-h5226925_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/tk-8.6.13-h5226925_1.conda hash: md5: fc048363eb8f03cd1737600a5d08aafe sha256: 2c4e914f521ccb2718946645108c9bd3fc3216ba69aea20c2c3cedbd8db32bb1 @@ -7468,7 +7468,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_1.conda hash: md5: b0dd904de08b7db706167240bf37b164 sha256: 34f3a83384ac3ac30aefd1309e69498d8a4aa0bf2d1f21c645f79b180e378938 @@ -7480,7 +7480,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_1.conda hash: md5: b0dd904de08b7db706167240bf37b164 sha256: 34f3a83384ac3ac30aefd1309e69498d8a4aa0bf2d1f21c645f79b180e378938 @@ -7492,7 +7492,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda hash: md5: ac944244f1fed2eb49bae07193ae8215 sha256: 18636339a79656962723077df9a56c0ac7b8a864329eb8f847ee3d38495b863e @@ -7504,7 +7504,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda hash: md5: ac944244f1fed2eb49bae07193ae8215 sha256: 18636339a79656962723077df9a56c0ac7b8a864329eb8f847ee3d38495b863e @@ -7516,7 +7516,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.13.2-pyha770c72_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.2-pyha770c72_1.conda hash: md5: 1d9ab4fc875c52db83f9c9b40af4e2c8 sha256: 986fae65f5568e95dbf858d08d77a0f9cca031345a98550f1d4b51d36d8811e2 @@ -7528,7 +7528,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.13.2-pyha770c72_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.2-pyha770c72_1.conda hash: md5: 1d9ab4fc875c52db83f9c9b40af4e2c8 sha256: 986fae65f5568e95dbf858d08d77a0f9cca031345a98550f1d4b51d36d8811e2 @@ -7540,7 +7540,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/toolz-1.0.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/toolz-1.0.0-pyhd8ed1ab_1.conda hash: md5: 40d0ed782a8aaa16ef248e68c06c168d sha256: eda38f423c33c2eaeca49ed946a8d3bf466cc3364970e083a65eb2fd85258d87 @@ -7552,7 +7552,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/toolz-1.0.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/toolz-1.0.0-pyhd8ed1ab_1.conda hash: md5: 40d0ed782a8aaa16ef248e68c06c168d sha256: eda38f423c33c2eaeca49ed946a8d3bf466cc3364970e083a65eb2fd85258d87 @@ -7567,7 +7567,7 @@ package: libgcc: '>=13' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://conda.anaconda.org/conda-forge/linux-64/tornado-6.4.2-py310ha75aee5_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/tornado-6.4.2-py310ha75aee5_0.conda hash: md5: 166d59aab40b9c607b4cc21c03924e9d sha256: 9c2b86d4e58c8b0e7d13a7f4c440f34e2201bae9cfc1d7e1d30a5bc7ffb1d4c8 @@ -7583,7 +7583,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/tornado-6.4.2-py310ha8f682b_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/tornado-6.4.2-py310ha8f682b_0.conda hash: md5: e6819d3a0cae0f1b1838875f858421d1 sha256: 2e5671d0db03961692b3390778ce6aba40702bd57584fa60badf4baa7614679b @@ -7596,7 +7596,7 @@ package: dependencies: colorama: '' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_1.conda hash: md5: 9efbfdc37242619130ea42b1cc4ed861 sha256: 11e2c85468ae9902d24a27137b6b39b4a78099806e551d390e394a8c34b48e40 @@ -7609,7 +7609,7 @@ package: dependencies: colorama: '' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_1.conda hash: md5: 9efbfdc37242619130ea42b1cc4ed861 sha256: 11e2c85468ae9902d24a27137b6b39b4a78099806e551d390e394a8c34b48e40 @@ -7621,7 +7621,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda hash: md5: 019a7385be9af33791c989871317e1ed sha256: f39a5620c6e8e9e98357507262a7869de2ae8cc07da8b7f84e517c9fd6c2b959 @@ -7633,7 +7633,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda hash: md5: 019a7385be9af33791c989871317e1ed sha256: f39a5620c6e8e9e98357507262a7869de2ae8cc07da8b7f84e517c9fd6c2b959 @@ -7645,7 +7645,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/types-python-dateutil-2.9.0.20241206-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/types-python-dateutil-2.9.0.20241206-pyhd8ed1ab_0.conda hash: md5: 1dbc4a115e2ad9fb7f9d5b68397f66f9 sha256: 8b98cd9464837174ab58aaa912fc95d5831879864676650a383994033533b8d1 @@ -7657,7 +7657,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/types-python-dateutil-2.9.0.20241206-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/types-python-dateutil-2.9.0.20241206-pyhd8ed1ab_0.conda hash: md5: 1dbc4a115e2ad9fb7f9d5b68397f66f9 sha256: 8b98cd9464837174ab58aaa912fc95d5831879864676650a383994033533b8d1 @@ -7669,7 +7669,7 @@ package: platform: linux-64 dependencies: typing_extensions: ==4.13.2 - url: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.13.2-h0e9735f_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.13.2-h0e9735f_0.conda hash: md5: 568ed1300869dca0ba09fb750cda5dbb sha256: 4865fce0897d3cb0ffc8998219157a8325f6011c136e6fd740a9a6b169419296 @@ -7681,7 +7681,7 @@ package: platform: win-64 dependencies: typing_extensions: ==4.13.2 - url: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.13.2-h0e9735f_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.13.2-h0e9735f_0.conda hash: md5: 568ed1300869dca0ba09fb750cda5dbb sha256: 4865fce0897d3cb0ffc8998219157a8325f6011c136e6fd740a9a6b169419296 @@ -7694,7 +7694,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '>=4.12.0' - url: https://conda.anaconda.org/conda-forge/noarch/typing-inspection-0.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.0-pyhd8ed1ab_0.conda hash: md5: c5c76894b6b7bacc888ba25753bc8677 sha256: 172f971d70e1dbb978f6061d3f72be463d0f629155338603450d8ffe87cbf89d @@ -7707,7 +7707,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '>=4.12.0' - url: https://conda.anaconda.org/conda-forge/noarch/typing-inspection-0.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.0-pyhd8ed1ab_0.conda hash: md5: c5c76894b6b7bacc888ba25753bc8677 sha256: 172f971d70e1dbb978f6061d3f72be463d0f629155338603450d8ffe87cbf89d @@ -7719,7 +7719,7 @@ package: platform: linux-64 dependencies: python: '' - url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.13.2-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.13.2-pyh29332c3_0.conda hash: md5: 83fc6ae00127671e301c9f44254c31b8 sha256: a8aaf351e6461de0d5d47e4911257e25eec2fa409d71f3b643bb2f748bde1c08 @@ -7731,7 +7731,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.13.2-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.13.2-pyh29332c3_0.conda hash: md5: 83fc6ae00127671e301c9f44254c31b8 sha256: a8aaf351e6461de0d5d47e4911257e25eec2fa409d71f3b643bb2f748bde1c08 @@ -7743,7 +7743,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/typing_utils-0.1.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing_utils-0.1.0-pyhd8ed1ab_1.conda hash: md5: f6d7aa696c67756a650e91e15e88223c sha256: 3088d5d873411a56bf988eee774559335749aed6f6c28e07bf933256afb9eb6c @@ -7755,7 +7755,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/typing_utils-0.1.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing_utils-0.1.0-pyhd8ed1ab_1.conda hash: md5: f6d7aa696c67756a650e91e15e88223c sha256: 3088d5d873411a56bf988eee774559335749aed6f6c28e07bf933256afb9eb6c @@ -7766,7 +7766,7 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda hash: md5: 4222072737ccff51314b5ece9c7d6f5a sha256: 5aaa366385d716557e365f0a4e9c3fca43ba196872abbbe3d56bb610d131e192 @@ -7777,7 +7777,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda hash: md5: 4222072737ccff51314b5ece9c7d6f5a sha256: 5aaa366385d716557e365f0a4e9c3fca43ba196872abbbe3d56bb610d131e192 @@ -7789,7 +7789,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/uc-micro-py-1.0.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/uc-micro-py-1.0.3-pyhd8ed1ab_1.conda hash: md5: 9c96c9876ba45368a03056ddd0f20431 sha256: a2f837780af450d633efc052219c31378bcad31356766663fb88a99e8e4c817b @@ -7801,7 +7801,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/uc-micro-py-1.0.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/uc-micro-py-1.0.3-pyhd8ed1ab_1.conda hash: md5: 9c96c9876ba45368a03056ddd0f20431 sha256: a2f837780af450d633efc052219c31378bcad31356766663fb88a99e8e4c817b @@ -7812,7 +7812,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_1.conda hash: md5: 6797b005cd0f439c4c5c9ac565783700 sha256: db8dead3dd30fb1a032737554ce91e2819b43496a0db09927edf01c32b577450 @@ -7827,7 +7827,7 @@ package: libgcc: '>=13' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://conda.anaconda.org/conda-forge/linux-64/unicodedata2-16.0.0-py310ha75aee5_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/unicodedata2-16.0.0-py310ha75aee5_0.conda hash: md5: 1d7a4b9202cdd10d56ecdd7f6c347190 sha256: 0468c864c60190fdb94b4705bca618e77589d5cb9fa096de47caccd1f22b0b54 @@ -7843,7 +7843,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/unicodedata2-16.0.0-py310ha8f682b_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/unicodedata2-16.0.0-py310ha8f682b_0.conda hash: md5: b28aead44c6e19a1fbba7752aa242b34 sha256: b59837c68d8edcca3c86c205a8c5dec63356029e48d55ed88c5483105d73ac0c @@ -7855,7 +7855,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/uri-template-1.3.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/uri-template-1.3.0-pyhd8ed1ab_1.conda hash: md5: e7cb0f5745e4c5035a460248334af7eb sha256: e0eb6c8daf892b3056f08416a96d68b0a358b7c46b99c8a50481b22631a4dfc0 @@ -7867,7 +7867,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/uri-template-1.3.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/uri-template-1.3.0-pyhd8ed1ab_1.conda hash: md5: e7cb0f5745e4c5035a460248334af7eb sha256: e0eb6c8daf892b3056f08416a96d68b0a358b7c46b99c8a50481b22631a4dfc0 @@ -7883,7 +7883,7 @@ package: pysocks: '>=1.5.6,<2.0,!=1.5.7' python: '>=3.9' zstandard: '>=0.18.0' - url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda hash: md5: c1e349028e0052c4eea844e94f773065 sha256: a25403b76f7f03ca1a906e1ef0f88521edded991b9897e7fed56a3e334b3db8c @@ -7899,7 +7899,7 @@ package: pysocks: '>=1.5.6,<2.0,!=1.5.7' python: '>=3.9' zstandard: '>=0.18.0' - url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda hash: md5: c1e349028e0052c4eea844e94f773065 sha256: a25403b76f7f03ca1a906e1ef0f88521edded991b9897e7fed56a3e334b3db8c @@ -7911,7 +7911,7 @@ package: platform: win-64 dependencies: vc14_runtime: '>=14.42.34433' - url: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-h2b53caa_26.conda + url: https://repo.prefix.dev/conda-forge/win-64/vc-14.3-h2b53caa_26.conda hash: md5: d3f0381e38093bde620a8d85f266ae55 sha256: 7a685b5c37e9713fa314a0d26b8b1d7a2e6de5ab758698199b5d5b6dba2e3ce1 @@ -7923,7 +7923,7 @@ package: platform: win-64 dependencies: ucrt: '>=10.0.20348.0' - url: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.42.34438-hfd919c2_26.conda + url: https://repo.prefix.dev/conda-forge/win-64/vc14_runtime-14.42.34438-hfd919c2_26.conda hash: md5: 91651a36d31aa20c7ba36299fb7068f4 sha256: 30dcb71bb166e351aadbdc18f1718757c32cdaa0e1e5d9368469ee44f6bf4709 @@ -7935,7 +7935,7 @@ package: platform: win-64 dependencies: vc14_runtime: '>=14.42.34438' - url: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.42.34438-h7142326_26.conda + url: https://repo.prefix.dev/conda-forge/win-64/vs2015_runtime-14.42.34438-h7142326_26.conda hash: md5: 3357e4383dbce31eed332008ede242ab sha256: 432f2937206f1ad4a77e39f84fabc1ce7d2472b669836fb72bd2bfd19a2defc9 @@ -7947,7 +7947,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.13-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/wcwidth-0.2.13-pyhd8ed1ab_1.conda hash: md5: b68980f2495d096e71c7fd9d7ccf63e6 sha256: f21e63e8f7346f9074fd00ca3b079bd3d2fa4d71f1f89d5b6934bf31446dc2a5 @@ -7959,7 +7959,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.13-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/wcwidth-0.2.13-pyhd8ed1ab_1.conda hash: md5: b68980f2495d096e71c7fd9d7ccf63e6 sha256: f21e63e8f7346f9074fd00ca3b079bd3d2fa4d71f1f89d5b6934bf31446dc2a5 @@ -7971,7 +7971,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/webcolors-24.11.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/webcolors-24.11.1-pyhd8ed1ab_0.conda hash: md5: b49f7b291e15494aafb0a7d74806f337 sha256: 08315dc2e61766a39219b2d82685fc25a56b2817acf84d5b390176080eaacf99 @@ -7983,7 +7983,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/webcolors-24.11.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/webcolors-24.11.1-pyhd8ed1ab_0.conda hash: md5: b49f7b291e15494aafb0a7d74806f337 sha256: 08315dc2e61766a39219b2d82685fc25a56b2817acf84d5b390176080eaacf99 @@ -7995,7 +7995,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_3.conda + url: https://repo.prefix.dev/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_3.conda hash: md5: 2841eb5bfc75ce15e9a0054b98dcd64d sha256: 19ff205e138bb056a46f9e3839935a2e60bd1cf01c8241a5e172a422fed4f9c6 @@ -8007,7 +8007,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_3.conda + url: https://repo.prefix.dev/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_3.conda hash: md5: 2841eb5bfc75ce15e9a0054b98dcd64d sha256: 19ff205e138bb056a46f9e3839935a2e60bd1cf01c8241a5e172a422fed4f9c6 @@ -8019,7 +8019,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/websocket-client-1.8.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/websocket-client-1.8.0-pyhd8ed1ab_1.conda hash: md5: 84f8f77f0a9c6ef401ee96611745da8f sha256: 1dd84764424ffc82030c19ad70607e6f9e3b9cb8e633970766d697185652053e @@ -8031,7 +8031,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/websocket-client-1.8.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/websocket-client-1.8.0-pyhd8ed1ab_1.conda hash: md5: 84f8f77f0a9c6ef401ee96611745da8f sha256: 1dd84764424ffc82030c19ad70607e6f9e3b9cb8e633970766d697185652053e @@ -8043,7 +8043,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda hash: md5: 75cb7132eb58d97896e173ef12ac9986 sha256: 1b34021e815ff89a4d902d879c3bd2040bc1bd6169b32e9427497fa05c55f1ce @@ -8055,7 +8055,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda hash: md5: 75cb7132eb58d97896e173ef12ac9986 sha256: 1b34021e815ff89a4d902d879c3bd2040bc1bd6169b32e9427497fa05c55f1ce @@ -8068,7 +8068,7 @@ package: dependencies: notebook: '>=4.4.1' python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-3.6.10-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/widgetsnbextension-3.6.10-pyhd8ed1ab_0.conda hash: md5: 4d52bbdb661dc1b5a1c2aeb1afcd9a67 sha256: 6aeb16d2aacdae68ba7afd980925264f5d0459dd165e3406f13f23949df346c1 @@ -8081,7 +8081,7 @@ package: dependencies: notebook: '>=4.4.1' python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-3.6.10-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/widgetsnbextension-3.6.10-pyhd8ed1ab_0.conda hash: md5: 4d52bbdb661dc1b5a1c2aeb1afcd9a67 sha256: 6aeb16d2aacdae68ba7afd980925264f5d0459dd165e3406f13f23949df346c1 @@ -8094,7 +8094,7 @@ package: dependencies: __win: '' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/win_inet_pton-1.1.0-pyh7428d3b_8.conda + url: https://repo.prefix.dev/conda-forge/noarch/win_inet_pton-1.1.0-pyh7428d3b_8.conda hash: md5: 46e441ba871f524e2b067929da3051c2 sha256: 93807369ab91f230cf9e6e2a237eaa812492fe00face5b38068735858fba954f @@ -8105,7 +8105,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/win-64/winpty-0.4.3-4.tar.bz2 + url: https://repo.prefix.dev/conda-forge/win-64/winpty-0.4.3-4.tar.bz2 hash: md5: 1cee351bf20b830d991dbe0bc8cd7dfe sha256: 9df10c5b607dd30e05ba08cbd940009305c75db242476f4e845ea06008b0a283 @@ -8118,7 +8118,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxau-1.0.12-hb9d3cd8_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxau-1.0.12-hb9d3cd8_0.conda hash: md5: f6ebe2cb3f82ba6c057dde5d9debe4f7 sha256: ed10c9283974d311855ae08a16dfd7e56241fac632aec3b92e3cfe73cff31038 @@ -8132,7 +8132,7 @@ package: libgcc: '>=13' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' ucrt: '>=10.0.20348.0' - url: https://conda.anaconda.org/conda-forge/win-64/xorg-libxau-1.0.12-h0e40799_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/xorg-libxau-1.0.12-h0e40799_0.conda hash: md5: 2ffbfae4548098297c033228256eb96e sha256: 047836241b2712aab1e29474a6f728647bff3ab57de2806b0bb0a6cf9a2d2634 @@ -8145,7 +8145,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb9d3cd8_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb9d3cd8_0.conda hash: md5: 8035c64cb77ed555e3f150b7b3972480 sha256: 6b250f3e59db07c2514057944a3ea2044d6a8cdde8a47b6497c254520fade1ee @@ -8159,7 +8159,7 @@ package: libgcc: '>=13' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' ucrt: '>=10.0.20348.0' - url: https://conda.anaconda.org/conda-forge/win-64/xorg-libxdmcp-1.1.5-h0e40799_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/xorg-libxdmcp-1.1.5-h0e40799_0.conda hash: md5: 8393c0f7e7870b4eb45553326f81f0ff sha256: 9075f98dcaa8e9957e4a3d9d30db05c7578a536950a31c200854c5c34e1edb2c @@ -8171,7 +8171,7 @@ package: platform: linux-64 dependencies: python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/xyzservices-2025.1.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/xyzservices-2025.1.0-pyhd8ed1ab_0.conda hash: md5: fdf07e281a9e5e10fc75b2dd444136e9 sha256: 9978c22319e85026d5a4134944f73bac820c948ca6b6c32af6b6985b5221cd8a @@ -8183,7 +8183,7 @@ package: platform: win-64 dependencies: python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/xyzservices-2025.1.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/xyzservices-2025.1.0-pyhd8ed1ab_0.conda hash: md5: fdf07e281a9e5e10fc75b2dd444136e9 sha256: 9978c22319e85026d5a4134944f73bac820c948ca6b6c32af6b6985b5221cd8a @@ -8195,7 +8195,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=9.4.0' - url: https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2 + url: https://repo.prefix.dev/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2 hash: md5: 4cb3ad778ec2d5a7acbdf254eb1c42ae sha256: a4e34c710eeb26945bdbdaba82d3d74f60a78f54a874ec10d373811a5d217535 @@ -8208,7 +8208,7 @@ package: dependencies: vc: '>=14.1,<15.0a0' vs2015_runtime: '>=14.16.27012' - url: https://conda.anaconda.org/conda-forge/win-64/yaml-0.2.5-h8ffe710_2.tar.bz2 + url: https://repo.prefix.dev/conda-forge/win-64/yaml-0.2.5-h8ffe710_2.tar.bz2 hash: md5: adbfb9f45d1004a26763652246a33764 sha256: 4e2246383003acbad9682c7c63178e2e715ad0eb84f03a8df1fbfba455dfedc5 @@ -8224,7 +8224,7 @@ package: numcodecs: '>=0.10.0,<0.16.0a0' numpy: '>=1.7' python: '>=3.5' - url: https://conda.anaconda.org/conda-forge/noarch/zarr-2.14.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/zarr-2.14.2-pyhd8ed1ab_0.conda hash: md5: 0c5776fe65a12a421d7ddf90411a6c3f sha256: 0f029f7efea00b8258782b5e68989fc140c227e6d9edd231d46fdd954b39d23f @@ -8240,7 +8240,7 @@ package: numcodecs: '>=0.10.0,<0.16.0a0' numpy: '>=1.7' python: '>=3.5' - url: https://conda.anaconda.org/conda-forge/noarch/zarr-2.14.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/zarr-2.14.2-pyhd8ed1ab_0.conda hash: md5: 0c5776fe65a12a421d7ddf90411a6c3f sha256: 0f029f7efea00b8258782b5e68989fc140c227e6d9edd231d46fdd954b39d23f @@ -8256,7 +8256,7 @@ package: libgcc: '>=13' libsodium: '>=1.0.20,<1.0.21.0a0' libstdcxx: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/zeromq-4.3.5-h3b0a872_7.conda + url: https://repo.prefix.dev/conda-forge/linux-64/zeromq-4.3.5-h3b0a872_7.conda hash: md5: 3947a35e916fcc6b9825449affbf4214 sha256: a4dc72c96848f764bb5a5176aa93dd1e9b9e52804137b99daeebba277b31ea10 @@ -8272,7 +8272,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/zeromq-4.3.5-ha9f60a1_7.conda + url: https://repo.prefix.dev/conda-forge/win-64/zeromq-4.3.5-ha9f60a1_7.conda hash: md5: e03f2c245a5ee6055752465519363b1c sha256: 15cc8e2162d0a33ffeb3f7b7c7883fd830c54a4b1be6a4b8c7ee1f4fef0088fb @@ -8284,7 +8284,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/zict-3.0.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/zict-3.0.0-pyhd8ed1ab_1.conda hash: md5: e52c2ef711ccf31bb7f70ca87d144b9e sha256: 5488542dceeb9f2874e726646548ecc5608060934d6f9ceaa7c6a48c61f9cc8d @@ -8296,7 +8296,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/zict-3.0.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/zict-3.0.0-pyhd8ed1ab_1.conda hash: md5: e52c2ef711ccf31bb7f70ca87d144b9e sha256: 5488542dceeb9f2874e726646548ecc5608060934d6f9ceaa7c6a48c61f9cc8d @@ -8308,7 +8308,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda hash: md5: 0c3cc595284c5e8f0f9900a9b228a332 sha256: 567c04f124525c97a096b65769834b7acb047db24b15a56888a322bf3966c3e1 @@ -8320,7 +8320,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda hash: md5: 0c3cc595284c5e8f0f9900a9b228a332 sha256: 567c04f124525c97a096b65769834b7acb047db24b15a56888a322bf3966c3e1 @@ -8336,7 +8336,7 @@ package: libgcc: '>=13' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://conda.anaconda.org/conda-forge/linux-64/zstandard-0.23.0-py310ha75aee5_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/zstandard-0.23.0-py310ha75aee5_1.conda hash: md5: 0316e8d0e00c00631a6de89207db5b09 sha256: 96f96336f76443f5efb05f8a7232cc62f8fff969c27d03aa4aae181745f6f961 @@ -8353,7 +8353,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/zstandard-0.23.0-py310ha8f682b_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/zstandard-0.23.0-py310ha8f682b_1.conda hash: md5: 831d9f1bfdfc3616b4c0f91cdb36ed38 sha256: 6bc275161380985ba7effabf53534e8b97479d0318329f345b2e936bd2e4dbe6 @@ -8368,7 +8368,7 @@ package: libgcc: '>=13' libstdcxx: '>=13' libzlib: '>=1.3.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.7-hb8e6e7a_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb8e6e7a_2.conda hash: md5: 6432cb5d4ac0046c3ac0a8a0f95842f9 sha256: a4166e3d8ff4e35932510aaff7aa90772f84b4d07e9f6f83c614cba7ceefe0eb @@ -8383,7 +8383,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/zstd-1.5.7-hbeecb71_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/zstd-1.5.7-hbeecb71_2.conda hash: md5: 21f56217d6125fb30c3c3f10c786d751 sha256: bc64864377d809b904e877a98d0584f43836c9f2ef27d3d2a1421fa6eae7ca04 @@ -8446,7 +8446,7 @@ package: category: main optional: false - name: mira-simpeg - version: 0.23.0.1a3.dev1+g60bcbe68b + version: 0.23.0.1a3.dev2+g730fa0095 manager: pip platform: linux-64 dependencies: @@ -8458,16 +8458,16 @@ package: numpy: '>=1.22' pymatsolver: '>=0.3' scipy: '>=1.8' - url: git+https://github.com/MiraGeoscience/simpeg.git@60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 + url: git+https://github.com/MiraGeoscience/simpeg.git@730fa00953165f6fd5a87c3942d05cf8e0a7e164 hash: - sha256: 60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 + sha256: 730fa00953165f6fd5a87c3942d05cf8e0a7e164 source: type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 + url: git+https://github.com/MiraGeoscience/simpeg.git@730fa00953165f6fd5a87c3942d05cf8e0a7e164 category: main optional: false - name: mira-simpeg - version: 0.23.0.1a3.dev1+g60bcbe68b + version: 0.23.0.1a3.dev2+g730fa0095 manager: pip platform: win-64 dependencies: @@ -8479,12 +8479,12 @@ package: numpy: '>=1.22' pymatsolver: '>=0.3' scipy: '>=1.8' - url: git+https://github.com/MiraGeoscience/simpeg.git@60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 + url: git+https://github.com/MiraGeoscience/simpeg.git@730fa00953165f6fd5a87c3942d05cf8e0a7e164 hash: - sha256: 60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 + sha256: 730fa00953165f6fd5a87c3942d05cf8e0a7e164 source: type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 + url: git+https://github.com/MiraGeoscience/simpeg.git@730fa00953165f6fd5a87c3942d05cf8e0a7e164 category: main optional: false - name: octree-creation-app diff --git a/py-3.11.conda-lock.yml b/py-3.11.conda-lock.yml index aec5272b..c9a7a2e6 100644 --- a/py-3.11.conda-lock.yml +++ b/py-3.11.conda-lock.yml @@ -15,8 +15,8 @@ version: 1 metadata: content_hash: - win-64: 617bef7b79ba8c81c0cabeecff2a297d77f243179cfc6277cd1c97d18ae76c5c - linux-64: c5288a1ebba1f0cbb480b3f1338e21cfcc5f83a7fa348fc730452b0c8eaa152f + win-64: a88e5079ab2ac39fd52b1c7556f4afc444101de2cf7fbdf1da18097e4d71d43f + linux-64: cb6665c81a612550aea5a8924b42c6100e242ca0ce8a2e66e9cd64952882efc4 channels: - url: conda-forge used_env_vars: [] @@ -35,7 +35,7 @@ package: platform: linux-64 dependencies: llvm-openmp: '>=9.0.1' - url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-3_kmp_llvm.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/win-64/_openmp_mutex-4.5-2_gnu.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/accessible-pygments-0.0.5-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/accessible-pygments-0.0.5-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/alabaster-0.7.16-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/alabaster-0.7.16-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/anyio-4.9.0-pyh29332c3_0.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/anyio-4.9.0-pyh29332c3_0.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/argon2-cffi-23.1.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/argon2-cffi-23.1.0-pyhd8ed1ab_1.conda hash: md5: a7ee488b71c30ada51c48468337b85ba sha256: 7af62339394986bc470a7a231c7f37ad0173ffb41f6bc0e8e31b0be9e3b9d20f @@ -184,7 +184,7 @@ package: argon2-cffi-bindings: '' python: '>=3.9' typing-extensions: '' - url: https://conda.anaconda.org/conda-forge/noarch/argon2-cffi-23.1.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/argon2-cffi-23.1.0-pyhd8ed1ab_1.conda hash: md5: a7ee488b71c30ada51c48468337b85ba sha256: 7af62339394986bc470a7a231c7f37ad0173ffb41f6bc0e8e31b0be9e3b9d20f @@ -200,7 +200,7 @@ package: libgcc: '>=13' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://conda.anaconda.org/conda-forge/linux-64/argon2-cffi-bindings-21.2.0-py311h9ecbd09_5.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/win-64/argon2-cffi-bindings-21.2.0-py311he736701_5.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/arrow-1.3.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/arrow-1.3.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/asciitree-0.3.3-py_2.tar.bz2 + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/asciitree-0.3.3-py_2.tar.bz2 + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/linux-64/astroid-3.3.9-py311h38be061_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/astroid-3.3.9-py311h38be061_0.conda hash: md5: cabdabc18d53f957c01685765f24381a sha256: cf6c649941832b7b2ed0bdd4e79093343468c3e1003fc78f53e2a1021cefbec4 @@ -295,7 +295,7 @@ package: dependencies: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://conda.anaconda.org/conda-forge/win-64/astroid-3.3.9-py311h1ea47a8_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/astroid-3.3.9-py311h1ea47a8_0.conda hash: md5: dcfa6fc2847f6d9395b210423ab13d1b sha256: ce85abea60acda2e8d2c8bfbca7f1013e04a9b4b23d59b5e02a4b12de6ee1cf8 @@ -307,7 +307,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/asttokens-3.0.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/asttokens-3.0.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/async-lru-2.0.5-pyh29332c3_0.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/async-lru-2.0.5-pyh29332c3_0.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/attrs-25.3.0-pyh71513ae_0.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/attrs-25.3.0-pyh71513ae_0.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/babel-2.17.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/babel-2.17.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.13.4-pyha770c72_0.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.13.4-pyha770c72_0.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/bleach-6.2.0-pyh29332c3_4.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/bleach-6.2.0-pyh29332c3_4.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/bleach-with-css-6.2.0-h82add2a_4.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/bleach-with-css-6.2.0-h82add2a_4.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/bokeh-3.6.3-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/bokeh-3.6.3-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/linux-64/brotli-1.1.0-hb9d3cd8_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/brotli-1.1.0-hb9d3cd8_2.conda hash: md5: 98514fe74548d768907ce7a13f680e8f sha256: fcb0b5b28ba7492093e54f3184435144e074dfceab27ac8e6a9457e736565b0b @@ -550,7 +550,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/brotli-1.1.0-h2466b09_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/brotli-1.1.0-h2466b09_2.conda hash: md5: 378f1c9421775dfe644731cb121c8979 sha256: d8fd7d1b446706776117d2dcad1c0289b9f5e1521cb13405173bad38568dd252 @@ -565,7 +565,7 @@ package: libbrotlidec: 1.1.0 libbrotlienc: 1.1.0 libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/brotli-bin-1.1.0-hb9d3cd8_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/brotli-bin-1.1.0-hb9d3cd8_2.conda hash: md5: c63b5e52939e795ba8d26e35d767a843 sha256: 261364d7445513b9a4debc345650fad13c627029bfc800655a266bf1e375bc65 @@ -581,7 +581,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/brotli-bin-1.1.0-h2466b09_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/brotli-bin-1.1.0-h2466b09_2.conda hash: md5: d22534a9be5771fc58eb7564947f669d sha256: f3bf2893613540ac256c68f211861c4de618d96291719e32178d894114ac2bc2 @@ -597,7 +597,7 @@ package: libstdcxx: '>=13' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.1.0-py311hfdbb021_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/brotli-python-1.1.0-py311hfdbb021_2.conda hash: md5: d21daab070d76490cb39a8f1d1729d79 sha256: 949913bbd1f74d1af202d3e4bff2e0a4e792ec00271dc4dd08641d4221aa2e12 @@ -613,7 +613,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/brotli-python-1.1.0-py311hda3d55a_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/brotli-python-1.1.0-py311hda3d55a_2.conda hash: md5: a0ea2839841a06740a1c110ba3317b42 sha256: aa3ac5dbf63db2f145235708973c626c2189ee4040d769fdf0076286fa45dc26 @@ -626,7 +626,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda + url: https://repo.prefix.dev/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda hash: md5: 276e7ffe9ffe39688abc665ef0f45596 sha256: 35a5dad92e88fdd7fc405e864ec239486f4f31eec229e31686e61a140a8e573b @@ -653,7 +653,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.34.5-hb9d3cd8_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/c-ares-1.34.5-hb9d3cd8_0.conda hash: md5: f7f0d6cc2dc986d42ac2689ec88192be sha256: f8003bef369f57396593ccd03d08a8e21966157269426f71e943f96e4b579aeb @@ -664,7 +664,7 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2025.1.31-hbcca054_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/ca-certificates-2025.1.31-hbcca054_0.conda hash: md5: 19f3a56f68d2fd06c516076bff482c52 sha256: bf832198976d559ab44d6cdb315642655547e26d826e34da67cbee6624cda189 @@ -675,7 +675,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2025.1.31-h56e8100_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/ca-certificates-2025.1.31-h56e8100_0.conda hash: md5: 5304a31607974dfc2110dfbb662ed092 sha256: 1bedccdf25a3bd782d6b0e57ddd97cdcda5501716009f2de4479a779221df155 @@ -687,7 +687,7 @@ package: platform: linux-64 dependencies: cached_property: '>=1.5.2,<1.5.3.0a0' - url: https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 hash: md5: 9b347a7ec10940d3f7941ff6c460b551 sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17 @@ -699,7 +699,7 @@ package: platform: win-64 dependencies: cached_property: '>=1.5.2,<1.5.3.0a0' - url: https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 hash: md5: 9b347a7ec10940d3f7941ff6c460b551 sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17 @@ -711,7 +711,7 @@ package: platform: linux-64 dependencies: python: '>=3.6' - url: https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 hash: md5: 576d629e47797577ab0f1b351297ef4a sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7 @@ -723,7 +723,7 @@ package: platform: win-64 dependencies: python: '>=3.6' - url: https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 hash: md5: 576d629e47797577ab0f1b351297ef4a sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7 @@ -735,7 +735,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda hash: md5: c207fa5ac7ea99b149344385a9c0880d sha256: 42a78446da06a2568cb13e69be3355169fbd0ea424b00fc80b7d840f5baaacf3 @@ -747,7 +747,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda hash: md5: c207fa5ac7ea99b149344385a9c0880d sha256: 42a78446da06a2568cb13e69be3355169fbd0ea424b00fc80b7d840f5baaacf3 @@ -764,7 +764,7 @@ package: pycparser: '' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.17.1-py311hf29c0ef_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/cffi-1.17.1-py311hf29c0ef_0.conda hash: md5: 55553ecd5328336368db611f350b7039 sha256: bc47aa39c8254e9e487b8bcd74cfa3b4a3de3648869eb1a0b89905986b668e35 @@ -781,7 +781,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/cffi-1.17.1-py311he736701_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/cffi-1.17.1-py311he736701_0.conda hash: md5: e1c69be23bd05471a6c623e91680ad59 sha256: 9689fbd8a31fdf273f826601e90146006f6631619767a67955048c7ad7798a1d @@ -793,7 +793,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda hash: md5: e83a31202d1c0a000fce3e9cf3825875 sha256: 4e0ee91b97e5de3e74567bdacea27f0139709fceca4db8adffbe24deffccb09b @@ -805,7 +805,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda hash: md5: e83a31202d1c0a000fce3e9cf3825875 sha256: 4e0ee91b97e5de3e74567bdacea27f0139709fceca4db8adffbe24deffccb09b @@ -818,7 +818,7 @@ package: dependencies: __unix: '' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.8-pyh707e725_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/click-8.1.8-pyh707e725_0.conda hash: md5: f22f4d4970e09d68a10b922cbb0408d3 sha256: c920d23cd1fcf565031c679adb62d848af60d6fbb0edc2d50ba475cea4f0d8ab @@ -832,7 +832,7 @@ package: __win: '' colorama: '' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.8-pyh7428d3b_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/click-8.1.8-pyh7428d3b_0.conda hash: md5: 90e5571556f7a45db92ee51cb8f97af6 sha256: c889ed359ae47eead4ffe8927b7206b22c55e67d6e74a9044c23736919d61e8d @@ -844,7 +844,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/cloudpickle-3.1.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/cloudpickle-3.1.1-pyhd8ed1ab_0.conda hash: md5: 364ba6c9fb03886ac979b482f39ebb92 sha256: 21ecead7268241007bf65691610cd7314da68c1f88113092af690203b5780db5 @@ -856,7 +856,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/cloudpickle-3.1.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/cloudpickle-3.1.1-pyhd8ed1ab_0.conda hash: md5: 364ba6c9fb03886ac979b482f39ebb92 sha256: 21ecead7268241007bf65691610cd7314da68c1f88113092af690203b5780db5 @@ -868,7 +868,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda hash: md5: 962b9857ee8e7018c22f2776ffa0b2d7 sha256: ab29d57dc70786c1269633ba3dff20288b81664d3ff8d21af995742e2bb03287 @@ -880,7 +880,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda hash: md5: 962b9857ee8e7018c22f2776ffa0b2d7 sha256: ab29d57dc70786c1269633ba3dff20288b81664d3ff8d21af995742e2bb03287 @@ -893,7 +893,7 @@ package: dependencies: python: '>=3.9' traitlets: '>=5.3' - url: https://conda.anaconda.org/conda-forge/noarch/comm-0.2.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/comm-0.2.2-pyhd8ed1ab_1.conda hash: md5: 74673132601ec2b7fc592755605f4c1b sha256: 7e87ef7c91574d9fac19faedaaee328a70f718c9b4ddadfdc0ba9ac021bd64af @@ -906,7 +906,7 @@ package: dependencies: python: '>=3.9' traitlets: '>=5.3' - url: https://conda.anaconda.org/conda-forge/noarch/comm-0.2.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/comm-0.2.2-pyhd8ed1ab_1.conda hash: md5: 74673132601ec2b7fc592755605f4c1b sha256: 7e87ef7c91574d9fac19faedaaee328a70f718c9b4ddadfdc0ba9ac021bd64af @@ -923,7 +923,7 @@ package: numpy: '>=1.23' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://conda.anaconda.org/conda-forge/linux-64/contourpy-1.3.2-py311hd18a35c_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/contourpy-1.3.2-py311hd18a35c_0.conda hash: md5: f8e440efa026c394461a45a46cea49fc sha256: 92ec3244ee0b424612025742a73d4728ded5bf6a358301bd005f67e74fec0b21 @@ -940,7 +940,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/contourpy-1.3.2-py311h3257749_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/contourpy-1.3.2-py311h3257749_0.conda hash: md5: f9fd48bb5c67e197d3e5ed0490df5aef sha256: feec034c783bd35da5c923ca2c2a8c831b7058137c530ca76a66c993a3fbafb0 @@ -956,7 +956,7 @@ package: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* tomli: '' - url: https://conda.anaconda.org/conda-forge/linux-64/coverage-7.8.0-py311h2dc5d0c_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.8.0-py311h2dc5d0c_0.conda hash: md5: 37bc439a94beeb29914baa5b4987ebd5 sha256: 50018d9c2d805eab29be0ad2e65a4d6b9f620e5e6b196923b1f3b397efee9b10 @@ -973,7 +973,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/coverage-7.8.0-py311h5082efb_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.8.0-py311h5082efb_0.conda hash: md5: 3237b9093308b18ee36d455ff098017b sha256: 2a3a8f6304374d19e6fd1cbf73e756debf0a76e787f1a15bd8b11d74f9ef6bd2 @@ -986,7 +986,7 @@ package: dependencies: python: '>=3.11,<3.12.0a0' python_abi: '*' - url: https://conda.anaconda.org/conda-forge/noarch/cpython-3.11.12-py311hd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/cpython-3.11.12-py311hd8ed1ab_0.conda hash: md5: 451718359f1658c6819d8665f82585ab sha256: 91e8da449682e37e326a560aa3575ee0f32ab697119e4cf4a76fd68af61fc1a0 @@ -998,7 +998,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda hash: md5: 44600c4667a319d67dbe0681fc0bc833 sha256: 9827efa891e507a91a8a2acf64e210d2aff394e1cde432ad08e1f8c66b12293c @@ -1010,7 +1010,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda hash: md5: 44600c4667a319d67dbe0681fc0bc833 sha256: 9827efa891e507a91a8a2acf64e210d2aff394e1cde432ad08e1f8c66b12293c @@ -1026,7 +1026,7 @@ package: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* toolz: '>=0.10.0' - url: https://conda.anaconda.org/conda-forge/linux-64/cytoolz-1.0.1-py311h9ecbd09_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/cytoolz-1.0.1-py311h9ecbd09_0.conda hash: md5: 69a0a85acdcc5e6d0f1cc915c067ad4c sha256: fd5a8c7e613c3c538ca775951fd814ab10cfcdaed79e193c3bf7eb59c87cd114 @@ -1043,7 +1043,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/cytoolz-1.0.1-py311he736701_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/cytoolz-1.0.1-py311he736701_0.conda hash: md5: fc78ccf75bba016a930accedee7ed9af sha256: 7746ffe3a0849abbd724da6955950142ec7eedbc66053be8d3802b7885562951 @@ -1063,7 +1063,7 @@ package: python: '>=3.10' pyyaml: '>=5.3.1' toolz: '>=0.10.0' - url: https://conda.anaconda.org/conda-forge/noarch/dask-core-2025.3.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/dask-core-2025.3.0-pyhd8ed1ab_0.conda hash: md5: 36f6cc22457e3d6a6051c5370832f96c sha256: 72badd945d856d2928fdbe051f136f903bcfee8136f1526c8362c6c465b793ec @@ -1083,7 +1083,7 @@ package: python: '>=3.10' pyyaml: '>=5.3.1' toolz: '>=0.10.0' - url: https://conda.anaconda.org/conda-forge/noarch/dask-core-2025.3.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/dask-core-2025.3.0-pyhd8ed1ab_0.conda hash: md5: 36f6cc22457e3d6a6051c5370832f96c sha256: 72badd945d856d2928fdbe051f136f903bcfee8136f1526c8362c6c465b793ec @@ -1095,7 +1095,7 @@ package: platform: linux-64 dependencies: python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/dataclasses-0.8-pyhc8e2a94_3.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/dataclasses-0.8-pyhc8e2a94_3.tar.bz2 hash: md5: a362b2124b06aad102e2ee4581acee7d sha256: 63a83e62e0939bc1ab32de4ec736f6403084198c4639638b354a352113809c92 @@ -1107,7 +1107,7 @@ package: platform: win-64 dependencies: python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/dataclasses-0.8-pyhc8e2a94_3.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/dataclasses-0.8-pyhc8e2a94_3.tar.bz2 hash: md5: a362b2124b06aad102e2ee4581acee7d sha256: 63a83e62e0939bc1ab32de4ec736f6403084198c4639638b354a352113809c92 @@ -1123,7 +1123,7 @@ package: libstdcxx: '>=13' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://conda.anaconda.org/conda-forge/linux-64/debugpy-1.8.14-py311hfdbb021_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/debugpy-1.8.14-py311hfdbb021_0.conda hash: md5: 1c229452e28e2c4607457c7b6c839bc7 sha256: 2f6d43724f60828fa226a71f519248ecd1dd456f0d4fc5f887936c763ea726e4 @@ -1139,7 +1139,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/debugpy-1.8.14-py311hda3d55a_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/debugpy-1.8.14-py311hda3d55a_0.conda hash: md5: 253acd78a14d333ea1c6de5b16b5a0ae sha256: 71127b53485a633f708f6645d8d023aef2efa325ca063466b21446b778d49b94 @@ -1151,7 +1151,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/decorator-5.2.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/decorator-5.2.1-pyhd8ed1ab_0.conda hash: md5: 9ce473d1d1be1cc3810856a48b3fab32 sha256: c17c6b9937c08ad63cb20a26f403a3234088e57d4455600974a0ce865cb14017 @@ -1163,7 +1163,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/decorator-5.2.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/decorator-5.2.1-pyhd8ed1ab_0.conda hash: md5: 9ce473d1d1be1cc3810856a48b3fab32 sha256: c17c6b9937c08ad63cb20a26f403a3234088e57d4455600974a0ce865cb14017 @@ -1175,7 +1175,7 @@ package: platform: linux-64 dependencies: python: '>=3.6' - url: https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2 hash: md5: 961b3a227b437d82ad7054484cfa71b2 sha256: 9717a059677553562a8f38ff07f3b9f61727bd614f505658b0a5ecbcf8df89be @@ -1187,7 +1187,7 @@ package: platform: win-64 dependencies: python: '>=3.6' - url: https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2 hash: md5: 961b3a227b437d82ad7054484cfa71b2 sha256: 9717a059677553562a8f38ff07f3b9f61727bd614f505658b0a5ecbcf8df89be @@ -1200,7 +1200,7 @@ package: dependencies: python: '>=3.9' wrapt: <2,>=1.10 - url: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.18-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/deprecated-1.2.18-pyhd8ed1ab_0.conda hash: md5: 0cef44b1754ae4d6924ac0eef6b9fdbe sha256: d614bcff10696f1efc714df07651b50bf3808401fcc03814309ecec242cc8870 @@ -1213,7 +1213,7 @@ package: dependencies: python: '>=3.9' wrapt: <2,>=1.10 - url: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.18-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/deprecated-1.2.18-pyhd8ed1ab_0.conda hash: md5: 0cef44b1754ae4d6924ac0eef6b9fdbe sha256: d614bcff10696f1efc714df07651b50bf3808401fcc03814309ecec242cc8870 @@ -1225,7 +1225,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda hash: md5: 885745570573eb6a08e021841928297a sha256: 43dca52c96fde0c4845aaff02bcc92f25e1c2e5266ddefc2eac1a3de0960a3b1 @@ -1237,7 +1237,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda hash: md5: 885745570573eb6a08e021841928297a sha256: 43dca52c96fde0c4845aaff02bcc92f25e1c2e5266ddefc2eac1a3de0960a3b1 @@ -1255,7 +1255,7 @@ package: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* scipy: '>=1.8' - url: https://conda.anaconda.org/conda-forge/linux-64/discretize-0.11.2-py311h5b7b71f_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/discretize-0.11.2-py311h5b7b71f_1.conda hash: md5: 46691a03f4c2317ec8c798dc8575bf48 sha256: 147f8e5403fe7cc0cab3eb8e5cb362347728fe5e485e7c6ca76f5139447b1960 @@ -1273,7 +1273,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/discretize-0.11.2-py311h9b10771_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/discretize-0.11.2-py311h9b10771_0.conda hash: md5: 67a5b84650218196cfef1b647c6a9140 sha256: 0bda0975ae4898c3887be171c9888fd57a20379c129e3149a4708c9d3edf5a2b @@ -1301,7 +1301,7 @@ package: tornado: '>=6.2.0' urllib3: '>=1.26.5' zict: '>=3.0.0' - url: https://conda.anaconda.org/conda-forge/noarch/distributed-2025.3.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/distributed-2025.3.0-pyhd8ed1ab_0.conda hash: md5: 968a7a4ff98bcfb515b0f1c94d35553f sha256: ea055aeda774d03ec96e0901ec119c6d3dc21ddd50af166bec664a76efd5f82a @@ -1329,7 +1329,7 @@ package: tornado: '>=6.2.0' urllib3: '>=1.26.5' zict: '>=3.0.0' - url: https://conda.anaconda.org/conda-forge/noarch/distributed-2025.3.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/distributed-2025.3.0-pyhd8ed1ab_0.conda hash: md5: 968a7a4ff98bcfb515b0f1c94d35553f sha256: ea055aeda774d03ec96e0901ec119c6d3dc21ddd50af166bec664a76efd5f82a @@ -1342,7 +1342,7 @@ package: dependencies: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://conda.anaconda.org/conda-forge/linux-64/docutils-0.19-py311h38be061_1.tar.bz2 + url: https://repo.prefix.dev/conda-forge/linux-64/docutils-0.19-py311h38be061_1.tar.bz2 hash: md5: 599159b0740e9b82e7eef0e8471be3c2 sha256: ec7760e5a1d065b97ac32d12f7c70f19937040d8bb52a9f16573b65c6832c67a @@ -1355,7 +1355,7 @@ package: dependencies: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://conda.anaconda.org/conda-forge/win-64/docutils-0.19-py311h1ea47a8_1.tar.bz2 + url: https://repo.prefix.dev/conda-forge/win-64/docutils-0.19-py311h1ea47a8_1.tar.bz2 hash: md5: 52b2142036004451e1881d97e9d01e8a sha256: 40c678c6bda27aeb7ad8b1714f189201599d2068a0fa75087548b62f8afe9bc7 @@ -1367,7 +1367,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda hash: md5: a16662747cdeb9abbac74d0057cc976e sha256: cbde2c64ec317118fc06b223c5fd87c8a680255e7348dd60e7b292d2e103e701 @@ -1379,7 +1379,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda hash: md5: a16662747cdeb9abbac74d0057cc976e sha256: cbde2c64ec317118fc06b223c5fd87c8a680255e7348dd60e7b292d2e103e701 @@ -1391,7 +1391,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/executing-2.1.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/executing-2.1.0-pyhd8ed1ab_1.conda hash: md5: ef8b5fca76806159fc25b4f48d8737eb sha256: 28d25ea375ebab4bf7479228f8430db20986187b04999136ff5c722ebd32eb60 @@ -1403,7 +1403,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/executing-2.1.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/executing-2.1.0-pyhd8ed1ab_1.conda hash: md5: ef8b5fca76806159fc25b4f48d8737eb sha256: 28d25ea375ebab4bf7479228f8430db20986187b04999136ff5c722ebd32eb60 @@ -1415,7 +1415,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/fasteners-0.19-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/fasteners-0.19-pyhd8ed1ab_1.conda hash: md5: dbe9d42e94b5ff7af7b7893f4ce052e7 sha256: 42fb170778b47303e82eddfea9a6d1e1b8af00c927cd5a34595eaa882b903a16 @@ -1427,7 +1427,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/fasteners-0.19-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/fasteners-0.19-pyhd8ed1ab_1.conda hash: md5: dbe9d42e94b5ff7af7b7893f4ce052e7 sha256: 42fb170778b47303e82eddfea9a6d1e1b8af00c927cd5a34595eaa882b903a16 @@ -1445,7 +1445,7 @@ package: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* unicodedata2: '>=15.1.0' - url: https://conda.anaconda.org/conda-forge/linux-64/fonttools-4.57.0-py311h2dc5d0c_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/fonttools-4.57.0-py311h2dc5d0c_0.conda hash: md5: 4175f366b41d3d0c80d02661a0a03473 sha256: 2157fff1f143fc99f9b27d1358b537f08478eb65d917279a3484c9c8989ea5fc @@ -1464,7 +1464,7 @@ package: unicodedata2: '>=15.1.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/fonttools-4.57.0-py311h5082efb_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/fonttools-4.57.0-py311h5082efb_0.conda hash: md5: 9ecb6a80392fc77239da9cb631e9ab0c sha256: 59938b42ed276e716af76b9795f37f2c2ba9b03ce79e820610b37d036d1b4101 @@ -1477,7 +1477,7 @@ package: dependencies: cached-property: '>=1.3.0' python: '>=3.9,<4' - url: https://conda.anaconda.org/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_1.conda hash: md5: d3549fd50d450b6d9e7dddff25dd2110 sha256: 2509992ec2fd38ab27c7cdb42cf6cadc566a1cc0d1021a2673475d9fa87c6276 @@ -1490,7 +1490,7 @@ package: dependencies: cached-property: '>=1.3.0' python: '>=3.9,<4' - url: https://conda.anaconda.org/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_1.conda hash: md5: d3549fd50d450b6d9e7dddff25dd2110 sha256: 2509992ec2fd38ab27c7cdb42cf6cadc566a1cc0d1021a2673475d9fa87c6276 @@ -1505,7 +1505,7 @@ package: libgcc: '>=13' libpng: '>=1.6.47,<1.7.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/freetype-2.13.3-h48d6fc4_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/freetype-2.13.3-h48d6fc4_0.conda hash: md5: 9ecfd6f2ca17077dd9c2d24770bb9ccd sha256: 7385577509a9c4730130f54bb6841b9b416249d5f4e9f74bf313e6378e313c57 @@ -1521,7 +1521,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/freetype-2.13.3-h0b5ce68_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/freetype-2.13.3-h0b5ce68_0.conda hash: md5: 9c461ed7b07fb360d2c8cfe726c7d521 sha256: 67e3af0fbe6c25f5ab1af9a3d3000464c5e88a8a0b4b06602f4a5243a8a1fd42 @@ -1533,7 +1533,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/fsspec-2025.3.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2025.3.2-pyhd8ed1ab_0.conda hash: md5: 9c40692c3d24c7aaf335f673ac09d308 sha256: 2040d4640708bd6ab9ed6cb9901267441798c44974bc63c9b6c1cb4c1891d825 @@ -1545,7 +1545,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/fsspec-2025.3.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2025.3.2-pyhd8ed1ab_0.conda hash: md5: 9c40692c3d24c7aaf335f673ac09d308 sha256: 2040d4640708bd6ab9ed6cb9901267441798c44974bc63c9b6c1cb4c1891d825 @@ -1564,7 +1564,7 @@ package: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* scipy: '>=1.8' - url: https://conda.anaconda.org/conda-forge/linux-64/geoana-0.7.2-py311h5b7b71f_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/geoana-0.7.2-py311h5b7b71f_0.conda hash: md5: 43a8fbbc2388122345ec26773a07091c sha256: 549a28806517d33a391cf67319322b48cc7afbec85d45ee45792594287af5b5e @@ -1583,7 +1583,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/geoana-0.7.2-py311h9b10771_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/geoana-0.7.2-py311h9b10771_0.conda hash: md5: e611dcb0a755ab9df497b3a7b6dd72b0 sha256: a63e83fec8e75b61333693919eaa2789320b0caf2d62f37691bd68f56b296004 @@ -1599,7 +1599,7 @@ package: libstdcxx: '>=13' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://conda.anaconda.org/conda-forge/linux-64/greenlet-3.2.0-py311hfdbb021_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/greenlet-3.2.0-py311hfdbb021_0.conda hash: md5: e2d6b1307377bca8acfed2fa5e60d8d4 sha256: 3e6f513e62422362a391fe4de514b1191da297cccc03a21f9e173731b138b521 @@ -1615,7 +1615,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/greenlet-3.2.0-py311hda3d55a_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/greenlet-3.2.0-py311hda3d55a_0.conda hash: md5: d7503f1b3ee59d71c5801fe282d4eebf sha256: f996197b139ec5122ea7b1c02e8b4d9f9f5725d89facf025e128f84023172215 @@ -1628,7 +1628,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '' - url: https://conda.anaconda.org/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_1.conda hash: md5: 7ee49e89531c0dcbba9466f6d115d585 sha256: 622516185a7c740d5c7f27016d0c15b45782c1501e5611deec63fd70344ce7c8 @@ -1641,7 +1641,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '' - url: https://conda.anaconda.org/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_1.conda hash: md5: 7ee49e89531c0dcbba9466f6d115d585 sha256: 622516185a7c740d5c7f27016d0c15b45782c1501e5611deec63fd70344ce7c8 @@ -1655,7 +1655,7 @@ package: hpack: '>=4.1,<5' hyperframe: '>=6.1,<7' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda hash: md5: b4754fb1bdcb70c8fd54f918301582c6 sha256: 0aa1cdc67a9fe75ea95b5644b734a756200d6ec9d0dff66530aec3d1c1e9df75 @@ -1669,7 +1669,7 @@ package: hpack: '>=4.1,<5' hyperframe: '>=6.1,<7' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda hash: md5: b4754fb1bdcb70c8fd54f918301582c6 sha256: 0aa1cdc67a9fe75ea95b5644b734a756200d6ec9d0dff66530aec3d1c1e9df75 @@ -1687,7 +1687,7 @@ package: numpy: '>=1.19,<3' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://conda.anaconda.org/conda-forge/linux-64/h5py-3.13.0-nompi_py311hb639ac4_100.conda + url: https://repo.prefix.dev/conda-forge/linux-64/h5py-3.13.0-nompi_py311hb639ac4_100.conda hash: md5: 5e6c88350ad81f42e63f2b470b6a4b86 sha256: 61809af316c1da7db5b19396f18c4ea31fc194910901e873baa056ab103f46c7 @@ -1706,7 +1706,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/h5py-3.13.0-nompi_py311h67016bb_100.conda + url: https://repo.prefix.dev/conda-forge/win-64/h5py-3.13.0-nompi_py311h67016bb_100.conda hash: md5: 2e6c03df40daaaceb2f8229eff48a22a sha256: 5d36e278a6eeeca22e7d882b4d5e98ee23b900994eb1902aa95f8c582a2a6200 @@ -1726,7 +1726,7 @@ package: libstdcxx: '>=13' libzlib: '>=1.3.1,<2.0a0' openssl: '>=3.4.0,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.3-nompi_h2d575fe_109.conda + url: https://repo.prefix.dev/conda-forge/linux-64/hdf5-1.14.3-nompi_h2d575fe_109.conda hash: md5: e7a7a6e6f70553a31e6e79c65768d089 sha256: e8669a6d76d415f4fdbe682507ac3a3b39e8f493d2f2bdc520817f80b7cc0753 @@ -1744,7 +1744,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/hdf5-1.14.3-nompi_hb2c4d47_109.conda + url: https://repo.prefix.dev/conda-forge/win-64/hdf5-1.14.3-nompi_hb2c4d47_109.conda hash: md5: ebb61f3e8b35cc15e78876649b7246f7 sha256: d5ada33e119cdd62371c06f60eae6f545de7cea793ab83da2fba428bb1d2f813 @@ -1756,7 +1756,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda hash: md5: 0a802cb9888dd14eeefc611f05c40b6e sha256: 6ad78a180576c706aabeb5b4c8ceb97c0cb25f1e112d76495bff23e3779948ba @@ -1768,7 +1768,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda hash: md5: 0a802cb9888dd14eeefc611f05c40b6e sha256: 6ad78a180576c706aabeb5b4c8ceb97c0cb25f1e112d76495bff23e3779948ba @@ -1785,7 +1785,7 @@ package: h2: '>=3,<5' python: '>=3.8' sniffio: 1.* - url: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda hash: md5: 2ca8e6dbc86525c8b95e3c0ffa26442e sha256: c84d012a245171f3ed666a8bf9319580c269b7843ffa79f26468842da3abd5df @@ -1802,7 +1802,7 @@ package: h2: '>=3,<5' python: '>=3.8' sniffio: 1.* - url: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda hash: md5: 2ca8e6dbc86525c8b95e3c0ffa26442e sha256: c84d012a245171f3ed666a8bf9319580c269b7843ffa79f26468842da3abd5df @@ -1818,7 +1818,7 @@ package: httpcore: 1.* idna: '' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/httpx-0.28.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/httpx-0.28.1-pyhd8ed1ab_0.conda hash: md5: d6989ead454181f4f9bc987d3dc4e285 sha256: cd0f1de3697b252df95f98383e9edb1d00386bfdd03fdf607fa42fe5fcb09950 @@ -1834,7 +1834,7 @@ package: httpcore: 1.* idna: '' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/httpx-0.28.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/httpx-0.28.1-pyhd8ed1ab_0.conda hash: md5: d6989ead454181f4f9bc987d3dc4e285 sha256: cd0f1de3697b252df95f98383e9edb1d00386bfdd03fdf607fa42fe5fcb09950 @@ -1846,7 +1846,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda hash: md5: 8e6923fc12f1fe8f8c4e5c9f343256ac sha256: 77af6f5fe8b62ca07d09ac60127a30d9069fdc3c68d6b256754d0ffb1f7779f8 @@ -1858,7 +1858,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda hash: md5: 8e6923fc12f1fe8f8c4e5c9f343256ac sha256: 77af6f5fe8b62ca07d09ac60127a30d9069fdc3c68d6b256754d0ffb1f7779f8 @@ -1870,7 +1870,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda hash: md5: 39a4f67be3286c86d696df570b1201b7 sha256: d7a472c9fd479e2e8dcb83fb8d433fce971ea369d704ece380e876f9c3494e87 @@ -1882,7 +1882,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda hash: md5: 39a4f67be3286c86d696df570b1201b7 sha256: d7a472c9fd479e2e8dcb83fb8d433fce971ea369d704ece380e876f9c3494e87 @@ -1894,7 +1894,7 @@ package: platform: linux-64 dependencies: python: '>=3.4' - url: https://conda.anaconda.org/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2 hash: md5: 7de5386c8fea29e76b303f37dde4c352 sha256: c2bfd7043e0c4c12d8b5593de666c1e81d67b83c474a0a79282cc5c4ef845460 @@ -1906,7 +1906,7 @@ package: platform: win-64 dependencies: python: '>=3.4' - url: https://conda.anaconda.org/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2 hash: md5: 7de5386c8fea29e76b303f37dde4c352 sha256: c2bfd7043e0c4c12d8b5593de666c1e81d67b83c474a0a79282cc5c4ef845460 @@ -1919,7 +1919,7 @@ package: dependencies: python: '>=3.9' zipp: '>=0.5' - url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.6.1-pyha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/importlib-metadata-8.6.1-pyha770c72_0.conda hash: md5: f4b39bf00c69f56ac01e020ebfac066c sha256: 598951ebdb23e25e4cec4bbff0ae369cec65ead80b50bc08b441d8e54de5cf03 @@ -1932,7 +1932,7 @@ package: dependencies: python: '>=3.9' zipp: '>=0.5' - url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.6.1-pyha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/importlib-metadata-8.6.1-pyha770c72_0.conda hash: md5: f4b39bf00c69f56ac01e020ebfac066c sha256: 598951ebdb23e25e4cec4bbff0ae369cec65ead80b50bc08b441d8e54de5cf03 @@ -1944,7 +1944,7 @@ package: platform: linux-64 dependencies: importlib-metadata: '>=8.6.1,<8.6.2.0a0' - url: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-8.6.1-hd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/importlib_metadata-8.6.1-hd8ed1ab_0.conda hash: md5: 7f46575a91b1307441abc235d01cab66 sha256: 1e3eb9d65c4d7b87c7347553ef9eef6f994996f90a2299e19b35f5997d3a3e79 @@ -1956,7 +1956,7 @@ package: platform: win-64 dependencies: importlib-metadata: '>=8.6.1,<8.6.2.0a0' - url: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-8.6.1-hd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/importlib_metadata-8.6.1-hd8ed1ab_0.conda hash: md5: 7f46575a91b1307441abc235d01cab66 sha256: 1e3eb9d65c4d7b87c7347553ef9eef6f994996f90a2299e19b35f5997d3a3e79 @@ -1969,7 +1969,7 @@ package: dependencies: python: '>=3.9' zipp: '>=3.1.0' - url: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.5.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/importlib_resources-6.5.2-pyhd8ed1ab_0.conda hash: md5: c85c76dc67d75619a92f51dfbce06992 sha256: acc1d991837c0afb67c75b77fdc72b4bf022aac71fedd8b9ea45918ac9b08a80 @@ -1982,7 +1982,7 @@ package: dependencies: python: '>=3.9' zipp: '>=3.1.0' - url: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.5.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/importlib_resources-6.5.2-pyhd8ed1ab_0.conda hash: md5: c85c76dc67d75619a92f51dfbce06992 sha256: acc1d991837c0afb67c75b77fdc72b4bf022aac71fedd8b9ea45918ac9b08a80 @@ -1994,7 +1994,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda hash: md5: 6837f3eff7dcea42ecd714ce1ac2b108 sha256: 0ec8f4d02053cd03b0f3e63168316530949484f80e16f5e2fb199a1d117a89ca @@ -2006,7 +2006,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda hash: md5: 6837f3eff7dcea42ecd714ce1ac2b108 sha256: 0ec8f4d02053cd03b0f3e63168316530949484f80e16f5e2fb199a1d117a89ca @@ -2017,7 +2017,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/win-64/intel-openmp-2024.2.1-h57928b3_1083.conda + url: https://repo.prefix.dev/conda-forge/win-64/intel-openmp-2024.2.1-h57928b3_1083.conda hash: md5: 2d89243bfb53652c182a7c73182cce4f sha256: 0fd2b0b84c854029041b0ede8f4c2369242ee92acc0092f8407b1fe9238a8209 @@ -2042,7 +2042,7 @@ package: pyzmq: '>=24' tornado: '>=6.1' traitlets: '>=5.4.0' - url: https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.29.5-pyh3099207_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ipykernel-6.29.5-pyh3099207_0.conda hash: md5: b40131ab6a36ac2c09b7c57d4d3fbf99 sha256: 33cfd339bb4efac56edf93474b37ddc049e08b1b4930cf036c893cc1f5a1f32a @@ -2067,7 +2067,7 @@ package: pyzmq: '>=24' tornado: '>=6.1' traitlets: '>=5.4.0' - url: https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.29.5-pyh4bbf305_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ipykernel-6.29.5-pyh4bbf305_0.conda hash: md5: 18df5fc4944a679e085e0e8f31775fc8 sha256: dc569094125127c0078aa536f78733f383dd7e09507277ef8bcd1789786e7086 @@ -2092,7 +2092,7 @@ package: stack_data: '' traitlets: '>=5.13.0' typing_extensions: '>=4.6' - url: https://conda.anaconda.org/conda-forge/noarch/ipython-9.1.0-pyhfb0248b_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ipython-9.1.0-pyhfb0248b_0.conda hash: md5: b6c7f97b71c0f670dd9e585d3f65e867 sha256: 24cabcd711d03d2865a67ebc17941bc9bde949b3f0c9a34655c4153dce1c34c3 @@ -2117,7 +2117,7 @@ package: stack_data: '' traitlets: '>=5.13.0' typing_extensions: '>=4.6' - url: https://conda.anaconda.org/conda-forge/noarch/ipython-9.1.0-pyhca29cf9_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ipython-9.1.0-pyhca29cf9_0.conda hash: md5: 4f71690ae510b365a22bb1cb926e6df2 sha256: 330d452de42f10537bff1490f6ff08bf4e6c0c7288255be43f9e895e15dd2969 @@ -2129,7 +2129,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/ipython_genutils-0.2.0-pyhd8ed1ab_2.conda + url: https://repo.prefix.dev/conda-forge/noarch/ipython_genutils-0.2.0-pyhd8ed1ab_2.conda hash: md5: 2f0ba4bc12af346bc6c99bdc377e8944 sha256: 45821a8986b4cb2421f766b240dbe6998a3c3123f012dd566720c1322e9b6e18 @@ -2141,7 +2141,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/ipython_genutils-0.2.0-pyhd8ed1ab_2.conda + url: https://repo.prefix.dev/conda-forge/noarch/ipython_genutils-0.2.0-pyhd8ed1ab_2.conda hash: md5: 2f0ba4bc12af346bc6c99bdc377e8944 sha256: 45821a8986b4cb2421f766b240dbe6998a3c3123f012dd566720c1322e9b6e18 @@ -2154,7 +2154,7 @@ package: dependencies: pygments: '' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/ipython_pygments_lexers-1.1.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ipython_pygments_lexers-1.1.1-pyhd8ed1ab_0.conda hash: md5: bd80ba060603cc228d9d81c257093119 sha256: 894682a42a7d659ae12878dbcb274516a7031bbea9104e92f8e88c1f2765a104 @@ -2167,7 +2167,7 @@ package: dependencies: pygments: '' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/ipython_pygments_lexers-1.1.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ipython_pygments_lexers-1.1.1-pyhd8ed1ab_0.conda hash: md5: bd80ba060603cc228d9d81c257093119 sha256: 894682a42a7d659ae12878dbcb274516a7031bbea9104e92f8e88c1f2765a104 @@ -2185,7 +2185,7 @@ package: python: '>=3.3' traitlets: '>=4.3.1' widgetsnbextension: '>=3.6.10,<3.7.0' - url: https://conda.anaconda.org/conda-forge/noarch/ipywidgets-7.8.5-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ipywidgets-7.8.5-pyhd8ed1ab_0.conda hash: md5: 47672c493015ab57d5fcde9531ab18ef sha256: 8cc67e44137bb779c76d92952fdc4d8cd475605f4f0d13e8d0f04f25c056939b @@ -2203,7 +2203,7 @@ package: python: '>=3.3' traitlets: '>=4.3.1' widgetsnbextension: '>=3.6.10,<3.7.0' - url: https://conda.anaconda.org/conda-forge/noarch/ipywidgets-7.8.5-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ipywidgets-7.8.5-pyhd8ed1ab_0.conda hash: md5: 47672c493015ab57d5fcde9531ab18ef sha256: 8cc67e44137bb779c76d92952fdc4d8cd475605f4f0d13e8d0f04f25c056939b @@ -2216,7 +2216,7 @@ package: dependencies: arrow: '>=0.15.0' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/isoduration-20.11.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/isoduration-20.11.0-pyhd8ed1ab_1.conda hash: md5: 0b0154421989637d424ccf0f104be51a sha256: 08e838d29c134a7684bca0468401d26840f41c92267c4126d7b43a6b533b0aed @@ -2229,7 +2229,7 @@ package: dependencies: arrow: '>=0.15.0' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/isoduration-20.11.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/isoduration-20.11.0-pyhd8ed1ab_1.conda hash: md5: 0b0154421989637d424ccf0f104be51a sha256: 08e838d29c134a7684bca0468401d26840f41c92267c4126d7b43a6b533b0aed @@ -2242,7 +2242,7 @@ package: dependencies: python: '>=3.9,<4.0' setuptools: '' - url: https://conda.anaconda.org/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_0.conda hash: md5: a8abfd3f223b1ecb8c699dca974933bd sha256: 9c5fb97efa0eb32b42564edaacb5edb9a1f82ba8f5f8b135e794960101115b5a @@ -2255,7 +2255,7 @@ package: dependencies: python: '>=3.9,<4.0' setuptools: '' - url: https://conda.anaconda.org/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_0.conda hash: md5: a8abfd3f223b1ecb8c699dca974933bd sha256: 9c5fb97efa0eb32b42564edaacb5edb9a1f82ba8f5f8b135e794960101115b5a @@ -2268,7 +2268,7 @@ package: dependencies: parso: '>=0.8.3,<0.9.0' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda hash: md5: a4f4c5dc9b80bc50e0d3dc4e6e8f1bd9 sha256: 92c4d217e2dc68983f724aa983cca5464dcb929c566627b26a2511159667dba8 @@ -2281,7 +2281,7 @@ package: dependencies: parso: '>=0.8.3,<0.9.0' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda hash: md5: a4f4c5dc9b80bc50e0d3dc4e6e8f1bd9 sha256: 92c4d217e2dc68983f724aa983cca5464dcb929c566627b26a2511159667dba8 @@ -2294,7 +2294,7 @@ package: dependencies: markupsafe: '>=2.0' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda hash: md5: 446bd6c8cb26050d528881df495ce646 sha256: f1ac18b11637ddadc05642e8185a851c7fab5998c6f5470d716812fae943b2af @@ -2307,7 +2307,7 @@ package: dependencies: markupsafe: '>=2.0' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda hash: md5: 446bd6c8cb26050d528881df495ce646 sha256: f1ac18b11637ddadc05642e8185a851c7fab5998c6f5470d716812fae943b2af @@ -2320,7 +2320,7 @@ package: dependencies: python: '>=3.9' setuptools: '' - url: https://conda.anaconda.org/conda-forge/noarch/joblib-1.4.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/joblib-1.4.2-pyhd8ed1ab_1.conda hash: md5: bf8243ee348f3a10a14ed0cae323e0c1 sha256: 51cc2dc491668af0c4d9299b0ab750f16ccf413ec5e2391b924108c1fbacae9b @@ -2333,7 +2333,7 @@ package: dependencies: python: '>=3.9' setuptools: '' - url: https://conda.anaconda.org/conda-forge/noarch/joblib-1.4.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/joblib-1.4.2-pyhd8ed1ab_1.conda hash: md5: bf8243ee348f3a10a14ed0cae323e0c1 sha256: 51cc2dc491668af0c4d9299b0ab750f16ccf413ec5e2391b924108c1fbacae9b @@ -2345,7 +2345,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/json5-0.12.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/json5-0.12.0-pyhd8ed1ab_0.conda hash: md5: 56275442557b3b45752c10980abfe2db sha256: 889e2a49de796475b5a4bc57d0ba7f4606b368ee2098e353a6d9a14b0e2c6393 @@ -2357,7 +2357,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/json5-0.12.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/json5-0.12.0-pyhd8ed1ab_0.conda hash: md5: 56275442557b3b45752c10980abfe2db sha256: 889e2a49de796475b5a4bc57d0ba7f4606b368ee2098e353a6d9a14b0e2c6393 @@ -2370,7 +2370,7 @@ package: dependencies: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://conda.anaconda.org/conda-forge/linux-64/jsonpointer-3.0.0-py311h38be061_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/jsonpointer-3.0.0-py311h38be061_1.conda hash: md5: 5ca76f61b00a15a9be0612d4d883badc sha256: 2f082f7b12a7c6824e051321c1029452562ad6d496ad2e8c8b7b3dea1c8feb92 @@ -2383,7 +2383,7 @@ package: dependencies: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://conda.anaconda.org/conda-forge/win-64/jsonpointer-3.0.0-py311h1ea47a8_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/jsonpointer-3.0.0-py311h1ea47a8_1.conda hash: md5: 943f7fab631e12750641efd7279a268c sha256: 9a667eeae67936e710ff69ee7ce0e784d6052eeba9670b268c565a55178098c4 @@ -2401,7 +2401,7 @@ package: python: '>=3.9' referencing: '>=0.28.4' rpds-py: '>=0.7.1' - url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_1.conda hash: md5: a3cead9264b331b32fe8f0aabc967522 sha256: be992a99e589146f229c58fe5083e0b60551d774511c494f91fe011931bd7893 @@ -2419,7 +2419,7 @@ package: python: '>=3.9' referencing: '>=0.28.4' rpds-py: '>=0.7.1' - url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_1.conda hash: md5: a3cead9264b331b32fe8f0aabc967522 sha256: be992a99e589146f229c58fe5083e0b60551d774511c494f91fe011931bd7893 @@ -2432,7 +2432,7 @@ package: dependencies: python: '>=3.9' referencing: '>=0.31.0' - url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2024.10.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-specifications-2024.10.1-pyhd8ed1ab_1.conda hash: md5: 3b519bc21bc80e60b456f1e62962a766 sha256: 37127133837444cf0e6d1a95ff5a505f8214ed4e89e8e9343284840e674c6891 @@ -2445,7 +2445,7 @@ package: dependencies: python: '>=3.9' referencing: '>=0.31.0' - url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2024.10.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-specifications-2024.10.1-pyhd8ed1ab_1.conda hash: md5: 3b519bc21bc80e60b456f1e62962a766 sha256: 37127133837444cf0e6d1a95ff5a505f8214ed4e89e8e9343284840e674c6891 @@ -2465,7 +2465,7 @@ package: rfc3986-validator: '>0.1.0' uri-template: '' webcolors: '>=24.6.0' - url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-with-format-nongpl-4.23.0-hd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-with-format-nongpl-4.23.0-hd8ed1ab_1.conda hash: md5: a5b1a8065857cc4bd8b7a38d063bb728 sha256: 6e0184530011961a0802fda100ecdfd4b0eca634ed94c37e553b72e21c26627d @@ -2485,7 +2485,7 @@ package: rfc3986-validator: '>0.1.0' uri-template: '' webcolors: '>=24.6.0' - url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-with-format-nongpl-4.23.0-hd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-with-format-nongpl-4.23.0-hd8ed1ab_1.conda hash: md5: a5b1a8065857cc4bd8b7a38d063bb728 sha256: 6e0184530011961a0802fda100ecdfd4b0eca634ed94c37e553b72e21c26627d @@ -2516,7 +2516,7 @@ package: sphinx-thebe: '>=0.3.1,<1' sphinx-togglebutton: '' sphinxcontrib-bibtex: '>=2.5.0,<3' - url: https://conda.anaconda.org/conda-forge/noarch/jupyter-book-1.0.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter-book-1.0.3-pyhd8ed1ab_1.conda hash: md5: 739a29ac73026e68405153b50d0c60c2 sha256: f028c32b5d97d24df44b1a41f771a9932e07815c60c02e24acd9bd2eca31097f @@ -2547,7 +2547,7 @@ package: sphinx-thebe: '>=0.3.1,<1' sphinx-togglebutton: '' sphinxcontrib-bibtex: '>=2.5.0,<3' - url: https://conda.anaconda.org/conda-forge/noarch/jupyter-book-1.0.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter-book-1.0.3-pyhd8ed1ab_1.conda hash: md5: 739a29ac73026e68405153b50d0c60c2 sha256: f028c32b5d97d24df44b1a41f771a9932e07815c60c02e24acd9bd2eca31097f @@ -2567,7 +2567,7 @@ package: pyyaml: '' sqlalchemy: '>=1.3.12,<3' tabulate: '' - url: https://conda.anaconda.org/conda-forge/noarch/jupyter-cache-1.0.1-pyhff2d567_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter-cache-1.0.1-pyhff2d567_0.conda hash: md5: b0ee650829b8974202a7abe7f8b81e5a sha256: 054d397dd45ed08bffb0976702e553dfb0d0b0a477da9cff36e2ea702e928f48 @@ -2587,7 +2587,7 @@ package: pyyaml: '' sqlalchemy: '>=1.3.12,<3' tabulate: '' - url: https://conda.anaconda.org/conda-forge/noarch/jupyter-cache-1.0.1-pyhff2d567_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter-cache-1.0.1-pyhff2d567_0.conda hash: md5: b0ee650829b8974202a7abe7f8b81e5a sha256: 054d397dd45ed08bffb0976702e553dfb0d0b0a477da9cff36e2ea702e928f48 @@ -2601,7 +2601,7 @@ package: importlib-metadata: '>=4.8.3' jupyter_server: '>=1.1.2' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/jupyter-lsp-2.2.5-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter-lsp-2.2.5-pyhd8ed1ab_1.conda hash: md5: 0b4c3908e5a38ea22ebb98ee5888c768 sha256: 1565c8b1423a37fca00fe0ab2a17cd8992c2ecf23e7867a1c9f6f86a9831c196 @@ -2615,7 +2615,7 @@ package: importlib-metadata: '>=4.8.3' jupyter_server: '>=1.1.2' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/jupyter-lsp-2.2.5-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter-lsp-2.2.5-pyhd8ed1ab_1.conda hash: md5: 0b4c3908e5a38ea22ebb98ee5888c768 sha256: 1565c8b1423a37fca00fe0ab2a17cd8992c2ecf23e7867a1c9f6f86a9831c196 @@ -2633,7 +2633,7 @@ package: pyzmq: '>=23.0' tornado: '>=6.2' traitlets: '>=5.3' - url: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda hash: md5: 4ebae00eae9705b0c3d6d1018a81d047 sha256: 19d8bd5bb2fde910ec59e081eeb59529491995ce0d653a5209366611023a0b3a @@ -2651,7 +2651,7 @@ package: pyzmq: '>=23.0' tornado: '>=6.2' traitlets: '>=5.3' - url: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda hash: md5: 4ebae00eae9705b0c3d6d1018a81d047 sha256: 19d8bd5bb2fde910ec59e081eeb59529491995ce0d653a5209366611023a0b3a @@ -2666,7 +2666,7 @@ package: platformdirs: '>=2.5' python: '>=3.8' traitlets: '>=5.3' - url: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.7.2-pyh31011fe_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter_core-5.7.2-pyh31011fe_1.conda hash: md5: 0a2980dada0dd7fd0998f0342308b1b1 sha256: 732b1e8536bc22a5a174baa79842d79db2f4956d90293dd82dc1b3f6099bcccd @@ -2683,7 +2683,7 @@ package: python: '>=3.8' pywin32: '>=300' traitlets: '>=5.3' - url: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.7.2-pyh5737063_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter_core-5.7.2-pyh5737063_1.conda hash: md5: 46d87d1c0ea5da0aae36f77fa406e20d sha256: 7c903b2d62414c3e8da1f78db21f45b98de387aae195f8ca959794113ba4b3fd @@ -2703,7 +2703,7 @@ package: rfc3339-validator: '' rfc3986-validator: '>=0.1.1' traitlets: '>=5.3' - url: https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.12.0-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter_events-0.12.0-pyh29332c3_0.conda hash: md5: f56000b36f09ab7533877e695e4e8cb0 sha256: 37e6ac3ccf7afcc730c3b93cb91a13b9ae827fd306f35dd28f958a74a14878b5 @@ -2723,7 +2723,7 @@ package: rfc3339-validator: '' rfc3986-validator: '>=0.1.1' traitlets: '>=5.3' - url: https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.12.0-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter_events-0.12.0-pyh29332c3_0.conda hash: md5: f56000b36f09ab7533877e695e4e8cb0 sha256: 37e6ac3ccf7afcc730c3b93cb91a13b9ae827fd306f35dd28f958a74a14878b5 @@ -2753,7 +2753,7 @@ package: tornado: '>=6.2.0' traitlets: '>=5.6.0' websocket-client: '>=1.7' - url: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.15.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter_server-2.15.0-pyhd8ed1ab_0.conda hash: md5: 6ba8c206b5c6f52b82435056cf74ee46 sha256: be5f9774065d94c4a988f53812b83b67618bec33fcaaa005a98067d506613f8a @@ -2783,7 +2783,7 @@ package: tornado: '>=6.2.0' traitlets: '>=5.6.0' websocket-client: '>=1.7' - url: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.15.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter_server-2.15.0-pyhd8ed1ab_0.conda hash: md5: 6ba8c206b5c6f52b82435056cf74ee46 sha256: be5f9774065d94c4a988f53812b83b67618bec33fcaaa005a98067d506613f8a @@ -2796,7 +2796,7 @@ package: dependencies: python: '>=3.9' terminado: '>=0.8.3' - url: https://conda.anaconda.org/conda-forge/noarch/jupyter_server_terminals-0.5.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter_server_terminals-0.5.3-pyhd8ed1ab_1.conda hash: md5: 2d983ff1b82a1ccb6f2e9d8784bdd6bd sha256: 0890fc79422191bc29edf17d7b42cff44ba254aa225d31eb30819f8772b775b8 @@ -2809,7 +2809,7 @@ package: dependencies: python: '>=3.9' terminado: '>=0.8.3' - url: https://conda.anaconda.org/conda-forge/noarch/jupyter_server_terminals-0.5.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter_server_terminals-0.5.3-pyhd8ed1ab_1.conda hash: md5: 2d983ff1b82a1ccb6f2e9d8784bdd6bd sha256: 0890fc79422191bc29edf17d7b42cff44ba254aa225d31eb30819f8772b775b8 @@ -2836,7 +2836,7 @@ package: tomli: '>=1.2.2' tornado: '>=6.2.0' traitlets: '' - url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.4.0-pyhd8ed1ab_0.conda hash: md5: 2da6a5e2c788a1b1998b24c50a18572a sha256: 4d225d094d1e5a8e95c2bde0f9c9bbc5aac52d9abf7fd597dd7af0f467b44347 @@ -2863,7 +2863,7 @@ package: tomli: '>=1.2.2' tornado: '>=6.2.0' traitlets: '' - url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.4.0-pyhd8ed1ab_0.conda hash: md5: 2da6a5e2c788a1b1998b24c50a18572a sha256: 4d225d094d1e5a8e95c2bde0f9c9bbc5aac52d9abf7fd597dd7af0f467b44347 @@ -2876,7 +2876,7 @@ package: dependencies: pygments: '>=2.4.1,<3' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.3.0-pyhd8ed1ab_2.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab_pygments-0.3.0-pyhd8ed1ab_2.conda hash: md5: fd312693df06da3578383232528c468d sha256: dc24b900742fdaf1e077d9a3458fd865711de80bca95fe3c6d46610c532c6ef0 @@ -2889,7 +2889,7 @@ package: dependencies: pygments: '>=2.4.1,<3' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.3.0-pyhd8ed1ab_2.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab_pygments-0.3.0-pyhd8ed1ab_2.conda hash: md5: fd312693df06da3578383232528c468d sha256: dc24b900742fdaf1e077d9a3458fd865711de80bca95fe3c6d46610c532c6ef0 @@ -2909,7 +2909,7 @@ package: packaging: '>=21.3' python: '>=3.9' requests: '>=2.31' - url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.27.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab_server-2.27.3-pyhd8ed1ab_1.conda hash: md5: 9dc4b2b0f41f0de41d27f3293e319357 sha256: d03d0b7e23fa56d322993bc9786b3a43b88ccc26e58b77c756619a921ab30e86 @@ -2929,7 +2929,7 @@ package: packaging: '>=21.3' python: '>=3.9' requests: '>=2.31' - url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.27.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab_server-2.27.3-pyhd8ed1ab_1.conda hash: md5: 9dc4b2b0f41f0de41d27f3293e319357 sha256: d03d0b7e23fa56d322993bc9786b3a43b88ccc26e58b77c756619a921ab30e86 @@ -2941,7 +2941,7 @@ package: platform: linux-64 dependencies: python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-1.1.11-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab_widgets-1.1.11-pyhd8ed1ab_0.conda hash: md5: 05a08b368343304618b6a88425aa851a sha256: 639544e96969c7513b33bf3201a4dc3095625e34cff16c187f5dec9bee2dfb2f @@ -2953,7 +2953,7 @@ package: platform: win-64 dependencies: python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-1.1.11-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab_widgets-1.1.11-pyhd8ed1ab_0.conda hash: md5: 05a08b368343304618b6a88425aa851a sha256: 639544e96969c7513b33bf3201a4dc3095625e34cff16c187f5dec9bee2dfb2f @@ -2971,7 +2971,7 @@ package: python: '>=3.9' pyyaml: '' tomli: '' - url: https://conda.anaconda.org/conda-forge/noarch/jupytext-1.17.0-pyhbbac1ac_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupytext-1.17.0-pyhbbac1ac_0.conda hash: md5: d8e9471f69b3e7a7d233d43649b5061b sha256: 488a50bdca76b1c450323ea1f8213366f70130aff35ff87277ffa97107fbed2b @@ -2989,7 +2989,7 @@ package: python: '>=3.9' pyyaml: '' tomli: '' - url: https://conda.anaconda.org/conda-forge/noarch/jupytext-1.17.0-pyhbbac1ac_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupytext-1.17.0-pyhbbac1ac_0.conda hash: md5: d8e9471f69b3e7a7d233d43649b5061b sha256: 488a50bdca76b1c450323ea1f8213366f70130aff35ff87277ffa97107fbed2b @@ -3001,7 +3001,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=10.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 hash: md5: 30186d27e2c9fa62b45fb1476b7200e3 sha256: 150c05a6e538610ca7c43beb3a40d65c90537497a4f6a5f4d15ec0451b6f5ebb @@ -3017,7 +3017,7 @@ package: libstdcxx: '>=13' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://conda.anaconda.org/conda-forge/linux-64/kiwisolver-1.4.7-py311hd18a35c_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/kiwisolver-1.4.7-py311hd18a35c_0.conda hash: md5: be34c90cce87090d24da64a7c239ca96 sha256: 4af11cbc063096a284fe1689b33424e7e49732a27fd396d74c7dee03d1e788ee @@ -3033,7 +3033,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/kiwisolver-1.4.7-py311h3257749_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/kiwisolver-1.4.7-py311h3257749_0.conda hash: md5: 18fd1ac3d79a8d6550eaea5ceaa00036 sha256: a2079e13d1345a5dd61df6be933e828e805051256e7260009ba93fce55aebd75 @@ -3049,7 +3049,7 @@ package: libgcc-ng: '>=12' libstdcxx-ng: '>=12' openssl: '>=3.3.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda hash: md5: 3f43953b7d3fb3aaa1d0d0723d91e368 sha256: 99df692f7a8a5c27cd14b5fb1374ee55e756631b9c3d659ed3ee60830249b238 @@ -3064,7 +3064,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/krb5-1.21.3-hdf4eb48_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/krb5-1.21.3-hdf4eb48_0.conda hash: md5: 31aec030344e962fbd7dbbbbd68e60a9 sha256: 18e8b3430d7d232dad132f574268f56b3eb1a19431d6d5de8c53c29e6c18fa81 @@ -3077,7 +3077,7 @@ package: dependencies: python: '' six: '' - url: https://conda.anaconda.org/conda-forge/noarch/latexcodec-2.0.1-pyh9f0ad1d_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/latexcodec-2.0.1-pyh9f0ad1d_0.tar.bz2 hash: md5: 8d67904973263afd2985ba56aa2d6bb4 sha256: 5210d31c8f2402dd1ad1b3edcf7a53292b9da5de20cd14d9c243dbf9278b1c4f @@ -3090,7 +3090,7 @@ package: dependencies: python: '' six: '' - url: https://conda.anaconda.org/conda-forge/noarch/latexcodec-2.0.1-pyh9f0ad1d_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/latexcodec-2.0.1-pyh9f0ad1d_0.tar.bz2 hash: md5: 8d67904973263afd2985ba56aa2d6bb4 sha256: 5210d31c8f2402dd1ad1b3edcf7a53292b9da5de20cd14d9c243dbf9278b1c4f @@ -3105,7 +3105,7 @@ package: libgcc: '>=13' libjpeg-turbo: '>=3.0.0,<4.0a0' libtiff: '>=4.7.0,<4.8.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/lcms2-2.17-h717163a_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/lcms2-2.17-h717163a_0.conda hash: md5: 000e85703f0fd9594c81710dd5066471 sha256: d6a61830a354da022eae93fa896d0991385a875c6bba53c82263a289deda9db8 @@ -3121,7 +3121,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/lcms2-2.17-hbcf6048_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/lcms2-2.17-hbcf6048_0.conda hash: md5: 3538827f77b82a837fa681a4579e37a1 sha256: 7712eab5f1a35ca3ea6db48ead49e0d6ac7f96f8560da8023e61b3dbe4f3b25d @@ -3133,7 +3133,7 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_4.conda + url: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_4.conda hash: md5: 01f8d123c96816249efd255a31ad7712 sha256: db73f38155d901a610b2320525b9dd3b31e4949215c870685fd92ea61b5ce472 @@ -3146,7 +3146,7 @@ package: dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2 hash: md5: 76bbff344f0134279f225174e9064c8f sha256: cb55f36dcd898203927133280ae1dc643368af041a48bcf7c026acb7c47b0c12 @@ -3159,7 +3159,7 @@ package: dependencies: vc: '>=14.2,<15' vs2015_runtime: '>=14.29.30037' - url: https://conda.anaconda.org/conda-forge/win-64/lerc-4.0.0-h63175ca_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/win-64/lerc-4.0.0-h63175ca_0.tar.bz2 hash: md5: 1900cb3cab5055833cfddb0ba233b074 sha256: f4f39d7f6a2f9b407f8fb567a6c25755270421731d70f0ff331f5de4fa367488 @@ -3172,7 +3172,7 @@ package: dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda hash: md5: 5e97e271911b8b2001a8b71860c32faa sha256: 2ef420a655528bca9d269086cf33b7e90d2f54ad941b437fb1ed5eca87cee017 @@ -3186,7 +3186,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libaec-1.1.3-h63175ca_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libaec-1.1.3-h63175ca_0.conda hash: md5: 8723000f6ffdbdaef16025f0a01b64c5 sha256: f5c293d3cfc00f71dfdb64bd65ab53625565f8778fc2d5790575bef238976ebf @@ -3198,7 +3198,7 @@ package: platform: linux-64 dependencies: mkl: '>=2024.2.2,<2025.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-31_hfdb39a5_mkl.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libblas-3.9.0-31_hfdb39a5_mkl.conda hash: md5: bdf4a57254e8248222cb631db4393ff1 sha256: 862289f2cfb84bb6001d0e3569e908b8c42d66b881bd5b03f730a3924628b978 @@ -3210,7 +3210,7 @@ package: platform: win-64 dependencies: mkl: 2024.2.2 - url: https://conda.anaconda.org/conda-forge/win-64/libblas-3.9.0-31_h641d27c_mkl.conda + url: https://repo.prefix.dev/conda-forge/win-64/libblas-3.9.0-31_h641d27c_mkl.conda hash: md5: d05563c577fe2f37693a554b3f271e8f sha256: 7bb4d5b591e98fe607279520ee78e3571a297b5720aa789a2536041ad5540de8 @@ -3223,7 +3223,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.1.0-hb9d3cd8_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlicommon-1.1.0-hb9d3cd8_2.conda hash: md5: 41b599ed2b02abcfdd84302bff174b23 sha256: d9db2de60ea917298e658143354a530e9ca5f9c63471c65cf47ab39fd2f429e3 @@ -3237,7 +3237,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libbrotlicommon-1.1.0-h2466b09_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/libbrotlicommon-1.1.0-h2466b09_2.conda hash: md5: f7dc9a8f21d74eab46456df301da2972 sha256: 33e8851c6cc8e2d93059792cd65445bfe6be47e4782f826f01593898ec95764c @@ -3251,7 +3251,7 @@ package: __glibc: '>=2.17,<3.0.a0' libbrotlicommon: 1.1.0 libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.1.0-hb9d3cd8_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlidec-1.1.0-hb9d3cd8_2.conda hash: md5: 9566f0bd264fbd463002e759b8a82401 sha256: 2892d512cad096cb03f1b66361deeab58b64e15ba525d6592bb6d609e7045edf @@ -3266,7 +3266,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libbrotlidec-1.1.0-h2466b09_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/libbrotlidec-1.1.0-h2466b09_2.conda hash: md5: 9bae75ce723fa34e98e239d21d752a7e sha256: 234fc92f4c4f1cf22f6464b2b15bfc872fa583c74bf3ab9539ff38892c43612f @@ -3280,7 +3280,7 @@ package: __glibc: '>=2.17,<3.0.a0' libbrotlicommon: 1.1.0 libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlienc-1.1.0-hb9d3cd8_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlienc-1.1.0-hb9d3cd8_2.conda hash: md5: 06f70867945ea6a84d35836af780f1de sha256: 779f58174e99de3600e939fa46eddb453ec5d3c60bb46cdaa8b4c127224dbf29 @@ -3295,7 +3295,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libbrotlienc-1.1.0-h2466b09_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/libbrotlienc-1.1.0-h2466b09_2.conda hash: md5: 85741a24d97954a991e55e34bc55990b sha256: 3d0dd7ef505962f107b7ea8f894e0b3dd01bf46852b362c8a7fc136b039bc9e1 @@ -3307,7 +3307,7 @@ package: platform: linux-64 dependencies: libblas: 3.9.0 - url: https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-31_h372d94f_mkl.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libcblas-3.9.0-31_h372d94f_mkl.conda hash: md5: 2a06a6c16b45bd3d10002927ca204b67 sha256: 2ee3ab2b6eeb59f2d3c6f933fa0db28f1b56f0bc543ed2c0f6ec04060e4b6ec0 @@ -3319,7 +3319,7 @@ package: platform: win-64 dependencies: libblas: 3.9.0 - url: https://conda.anaconda.org/conda-forge/win-64/libcblas-3.9.0-31_h5e41251_mkl.conda + url: https://repo.prefix.dev/conda-forge/win-64/libcblas-3.9.0-31_h5e41251_mkl.conda hash: md5: 43c100b94ad2607382b0cf0f3a6b0bf3 sha256: 609f455b099919bd4d15d4a733f493dc789e02da73fe4474f1cca73afafb95b8 @@ -3338,7 +3338,7 @@ package: libzlib: '>=1.3.1,<2.0a0' openssl: '>=3.4.1,<4.0a0' zstd: '>=1.5.7,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.13.0-h332b0f4_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libcurl-8.13.0-h332b0f4_0.conda hash: md5: cbdc92ac0d93fe3c796e36ad65c7905c sha256: 38e528acfaa0276b7052f4de44271ff9293fdb84579650601a8c49dac171482a @@ -3355,7 +3355,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libcurl-8.13.0-h88aaa65_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libcurl-8.13.0-h88aaa65_0.conda hash: md5: c9cf6eb842decbb66c2f34e72c3580d6 sha256: 185553b37c0299b7a15dc66a7a7e2a0d421adaac784ec9298a0b2ad745116ca5 @@ -3368,7 +3368,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.23-h4ddbbb0_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libdeflate-1.23-h4ddbbb0_0.conda hash: md5: 8dfae1d2e74767e9ce36d5fa0d8605db sha256: 511d801626d02f4247a04fff957cc6e9ec4cc7e8622bd9acd076bcdc5de5fe66 @@ -3382,7 +3382,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libdeflate-1.23-h9062f6e_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libdeflate-1.23-h9062f6e_0.conda hash: md5: a9624935147a25b06013099d3038e467 sha256: 96c47725a8258159295996ea2758fa0ff9bea330e72b59641642e16be8427ce8 @@ -3395,7 +3395,7 @@ package: dependencies: numpy: '' python: '>=3.10' - url: https://conda.anaconda.org/conda-forge/noarch/libdlf-0.3.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/libdlf-0.3.0-pyhd8ed1ab_1.conda hash: md5: 2e9654bb2bcf5986c2def3ba35413326 sha256: 367c575a6388380d9a0da6ff06571d903ae89366c42d9f16e32de5d359b6971a @@ -3408,7 +3408,7 @@ package: dependencies: numpy: '' python: '>=3.10' - url: https://conda.anaconda.org/conda-forge/noarch/libdlf-0.3.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/libdlf-0.3.0-pyhd8ed1ab_1.conda hash: md5: 2e9654bb2bcf5986c2def3ba35413326 sha256: 367c575a6388380d9a0da6ff06571d903ae89366c42d9f16e32de5d359b6971a @@ -3422,7 +3422,7 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' ncurses: '>=6.5,<7.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.conda hash: md5: c277e0a4d549b03ac1e9d6cbbe3d017b sha256: d789471216e7aba3c184cd054ed61ce3f6dac6f87a50ec69291b9297f8c18724 @@ -3434,7 +3434,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libev-4.33-hd590300_2.conda hash: md5: 172bf1cd1ff8629f2b1179945ed45055 sha256: 1cd6048169fa0395af74ed5d8f1716e22c19a81a8a36f934c110ca3ad4dd27b4 @@ -3447,7 +3447,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.7.0-h5888daf_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libexpat-2.7.0-h5888daf_0.conda hash: md5: db0bfbe7dd197b68ad5f30333bae6ce0 sha256: 33ab03438aee65d6aa667cf7d90c91e5e7d734c19a67aa4c7040742c0a13d505 @@ -3461,7 +3461,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libexpat-2.7.0-he0c23c2_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libexpat-2.7.0-he0c23c2_0.conda hash: md5: b6f5352fdb525662f4169a0431d2dd7a sha256: 1a227c094a4e06bd54e8c2f3ec40c17ff99dcf3037d812294f842210aa66dbeb @@ -3474,7 +3474,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.6-h2dba641_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libffi-3.4.6-h2dba641_1.conda hash: md5: ede4673863426c0883c0063d853bbd85 sha256: 764432d32db45466e87f10621db5b74363a9f847d2b8b1f9743746cd160f06ab @@ -3488,7 +3488,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.6-h537db12_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/libffi-3.4.6-h537db12_1.conda hash: md5: 85d8fa5e55ed8f93f874b3b23ed54ec6 sha256: d3b0b8812eab553d3464bbd68204f007f1ebadf96ce30eb0cbc5159f72e353f5 @@ -3501,7 +3501,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' _openmp_mutex: '>=4.5' - url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-14.2.0-h767d61c_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-14.2.0-h767d61c_2.conda hash: md5: ef504d1acbd74b7cc6849ef8af47dd03 sha256: 3a572d031cb86deb541d15c1875aaa097baefc0c580b54dc61f5edab99215792 @@ -3514,7 +3514,7 @@ package: dependencies: _openmp_mutex: '>=4.5' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' - url: https://conda.anaconda.org/conda-forge/win-64/libgcc-14.2.0-h1383e82_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/libgcc-14.2.0-h1383e82_2.conda hash: md5: 4a74c1461a0ba47a3346c04bdccbe2ad sha256: fddf2fc037bc95adb3b369e8866da8a71b6a67ebcfc4d7035ac4208309dc9e72 @@ -3526,7 +3526,7 @@ package: platform: linux-64 dependencies: libgcc: 14.2.0 - url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_2.conda hash: md5: a2222a6ada71fb478682efe483ce0f92 sha256: fb7558c328b38b2f9d2e412c48da7890e7721ba018d733ebdfea57280df01904 @@ -3538,7 +3538,7 @@ package: platform: linux-64 dependencies: libgfortran5: 14.2.0 - url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-14.2.0-h69a702a_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran-14.2.0-h69a702a_2.conda hash: md5: fb54c4ea68b460c278d26eea89cfbcc3 sha256: e05263e8960da03c341650f2a3ffa4ccae4e111cb198e8933a2908125459e5a6 @@ -3551,7 +3551,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14.2.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-14.2.0-hf1ad2bd_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran5-14.2.0-hf1ad2bd_2.conda hash: md5: 556a4fdfac7287d349b8f09aba899693 sha256: c17b7cf3073a1f4e1f34d50872934fa326346e104d3c445abc1e62481ad6085c @@ -3563,7 +3563,7 @@ package: platform: win-64 dependencies: libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' - url: https://conda.anaconda.org/conda-forge/win-64/libgomp-14.2.0-h1383e82_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/libgomp-14.2.0-h1383e82_2.conda hash: md5: dd6b1ab49e28bcb6154cd131acec985b sha256: 674ec5f1bf319eac98d0d6ecb9c38e0192f3cf41969a5621d62a7e695e1aa9f3 @@ -3578,7 +3578,7 @@ package: libgcc: '>=13' libstdcxx: '>=13' libxml2: '>=2.13.4,<2.14.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libhwloc-2.11.2-default_h0d58e46_1001.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libhwloc-2.11.2-default_h0d58e46_1001.conda hash: md5: 804ca9e91bcaea0824a341d55b1684f2 sha256: d14c016482e1409ae1c50109a9ff933460a50940d2682e745ab1c172b5282a69 @@ -3594,7 +3594,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libhwloc-2.11.2-default_ha69328c_1001.conda + url: https://repo.prefix.dev/conda-forge/win-64/libhwloc-2.11.2-default_ha69328c_1001.conda hash: md5: b87a0ac5ab6495d8225db5dc72dd21cd sha256: 850e255997f538d5fb6ed651321141155a33bb781d43d326fc4ff62114dd2842 @@ -3607,7 +3607,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.18-h4ce23a2_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libiconv-1.18-h4ce23a2_1.conda hash: md5: e796ff8ddc598affdf7c173d6145f087 sha256: 18a4afe14f731bfb9cf388659994263904d20111e42f841e9eea1bb6f91f4ab4 @@ -3621,7 +3621,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libiconv-1.18-h135ad9c_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/libiconv-1.18-h135ad9c_1.conda hash: md5: 21fc5dba2cbcd8e5e26ff976a312122c sha256: ea5ed2b362b6dbc4ba7188eb4eaf576146e3dfc6f4395e9f0db76ad77465f786 @@ -3633,7 +3633,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libjpeg-turbo-3.0.0-hd590300_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libjpeg-turbo-3.0.0-hd590300_1.conda hash: md5: ea25936bb4080d843790b586850f82b8 sha256: b954e09b7e49c2f2433d6f3bb73868eda5e378278b0f8c1dd10a7ef090e14f2f @@ -3647,7 +3647,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libjpeg-turbo-3.0.0-hcfcfb64_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/libjpeg-turbo-3.0.0-hcfcfb64_1.conda hash: md5: 3f1b948619c45b1ca714d60c7389092c sha256: 4e7808e3098b4b4ed7e287f63bb24f9045cc4d95bfd39f0db870fc2837d74dff @@ -3659,7 +3659,7 @@ package: platform: linux-64 dependencies: libblas: 3.9.0 - url: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-31_hc41d3b0_mkl.conda + url: https://repo.prefix.dev/conda-forge/linux-64/liblapack-3.9.0-31_hc41d3b0_mkl.conda hash: md5: 10d012ddd7cc1c7ff9093d4974a34e53 sha256: a2d20845d916ac8fba09376cd791136a9b4547afb2131bc315178adfc87bb4ca @@ -3671,7 +3671,7 @@ package: platform: win-64 dependencies: libblas: 3.9.0 - url: https://conda.anaconda.org/conda-forge/win-64/liblapack-3.9.0-31_h1aa476e_mkl.conda + url: https://repo.prefix.dev/conda-forge/win-64/liblapack-3.9.0-31_h1aa476e_mkl.conda hash: md5: 40b47ee720a185289760960fc6185750 sha256: 9415e807aa6f8968322bbd756aab8f487379d809c74266d37c697b8d85c534ad @@ -3684,7 +3684,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_0.conda hash: md5: 0e87378639676987af32fee53ba32258 sha256: f4f21dfc54b08d462f707b771ecce3fa9bc702a2a05b55654f64154f48b141ef @@ -3698,7 +3698,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/liblzma-5.8.1-h2466b09_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/liblzma-5.8.1-h2466b09_0.conda hash: md5: 8d5cb0016b645d6688e2ff57c5d51302 sha256: 1477e9bff05318f3129d37be0e64c76cce0973c4b8c73d13a467d0b7f03d157c @@ -3716,7 +3716,7 @@ package: libstdcxx: '>=13' libzlib: '>=1.3.1,<2.0a0' openssl: '>=3.3.2,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.64.0-h161d5f1_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libnghttp2-1.64.0-h161d5f1_0.conda hash: md5: 19e57602824042dfd0446292ef90488b sha256: b0f2b3695b13a989f75d8fd7f4778e1c7aabe3b36db83f0fe80b2cd812c0e975 @@ -3728,7 +3728,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda hash: md5: 30fd6e37fe21f86f4bd26d6ee73eeec7 sha256: 26d77a3bb4dceeedc2a41bd688564fe71bf2d149fdcf117049970bc02ff1add6 @@ -3742,7 +3742,7 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' libzlib: '>=1.3.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.47-h943b412_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libpng-1.6.47-h943b412_0.conda hash: md5: 55199e2ae2c3651f6f9b2a447b47bdc9 sha256: 23367d71da58c9a61c8cbd963fcffb92768d4ae5ffbef9a47cdf1f54f98c5c36 @@ -3757,7 +3757,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libpng-1.6.47-had7236b_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libpng-1.6.47-had7236b_0.conda hash: md5: 7d717163d9dab337c65f2bf21a676b8f sha256: cf8a594b697de103025dcae2c917ec9c100609caf7c917a94c64a683cb1db1ac @@ -3775,7 +3775,7 @@ package: libgfortran5: '>=13.3.0' liblzma: '>=5.6.3,<6.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libscotch-7.0.6-hea33c07_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libscotch-7.0.6-hea33c07_1.conda hash: md5: 1b600d55dcd98c958192a69a79e6acd2 sha256: 8330bba8b7b3a37da6eca04bace985fb9f8d487d3249b8f690e8f4a3d8d3c7dc @@ -3787,7 +3787,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libsodium-1.0.20-h4ab18f5_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libsodium-1.0.20-h4ab18f5_0.conda hash: md5: a587892d3c13b6621a6091be690dbca2 sha256: 0105bd108f19ea8e6a78d2d994a6d4a8db16d19a41212070d2d1d48a63c34161 @@ -3801,7 +3801,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libsodium-1.0.20-hc70643c_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libsodium-1.0.20-hc70643c_0.conda hash: md5: 198bb594f202b205c7d18b936fa4524f sha256: 7bcb3edccea30f711b6be9601e083ecf4f435b9407d70fc48fbcf9e5d69a0fc6 @@ -3815,7 +3815,7 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' libzlib: '>=1.3.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.49.1-hee588c1_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.49.1-hee588c1_2.conda hash: md5: 962d6ac93c30b1dfc54c9cccafd1003e sha256: a086289bf75c33adc1daed3f1422024504ffb5c3c8b3285c49f025c29708ed16 @@ -3829,7 +3829,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.49.1-h67fdade_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.49.1-h67fdade_2.conda hash: md5: b58b66d4ad1aaf1c2543cbbd6afb1a59 sha256: c092d42d00fd85cf609cc58574ba2b03c141af5762283f36f5dd445ef7c0f4fe @@ -3844,7 +3844,7 @@ package: libgcc: '>=13' libzlib: '>=1.3.1,<2.0a0' openssl: '>=3.4.0,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.1-hf672d98_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libssh2-1.11.1-hf672d98_0.conda hash: md5: be2de152d8073ef1c01b7728475f2fe7 sha256: 0407ac9fda2bb67e11e357066eff144c845801d00b5f664efbc48813af1e7bb9 @@ -3860,7 +3860,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libssh2-1.11.1-he619c9f_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libssh2-1.11.1-he619c9f_0.conda hash: md5: af0cbf037dd614c34399b3b3e568c557 sha256: 4b3256bd2b4e4b3183005d3bd8826d651eccd1a4740b70625afa2b7e7123d191 @@ -3873,7 +3873,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: 14.2.0 - url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-14.2.0-h8f9b012_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-14.2.0-h8f9b012_2.conda hash: md5: a78c856b6dc6bf4ea8daeb9beaaa3fb0 sha256: 8f5bd92e4a24e1d35ba015c5252e8f818898478cb3bc50bd8b12ab54707dc4da @@ -3885,7 +3885,7 @@ package: platform: linux-64 dependencies: libstdcxx: 14.2.0 - url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-14.2.0-h4852527_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-14.2.0-h4852527_2.conda hash: md5: c75da67f045c2627f59e6fcb5f4e3a9b sha256: e86f38b007cf97cc2c67cd519f2de12a313c4ee3f5ef11652ad08932a5e34189 @@ -3906,7 +3906,7 @@ package: libwebp-base: '>=1.4.0,<2.0a0' libzlib: '>=1.3.1,<2.0a0' zstd: '>=1.5.6,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.7.0-hd9ff511_3.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libtiff-4.7.0-hd9ff511_3.conda hash: md5: 0ea6510969e1296cc19966fad481f6de sha256: b224e16b88d76ea95e4af56e2bc638c603bd26a770b98d117d04541d3aafa002 @@ -3926,7 +3926,7 @@ package: vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' zstd: '>=1.5.6,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/win-64/libtiff-4.7.0-h797046b_3.conda + url: https://repo.prefix.dev/conda-forge/win-64/libtiff-4.7.0-h797046b_3.conda hash: md5: defed79ff7a9164ad40320e3f116a138 sha256: c363a8baba4ce12b8f01f0ab74fe8b0dc83facd89c6604f4a191084923682768 @@ -3938,7 +3938,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda hash: md5: 40b61aab5c7ba9ff276c41cfffe6b80b sha256: 787eb542f055a2b3de553614b25f09eefb0a0931b0c87dbcce6efdfd92f04f18 @@ -3951,7 +3951,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.5.0-h851e524_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libwebp-base-1.5.0-h851e524_0.conda hash: md5: 63f790534398730f59e1b899c3644d4a sha256: c45283fd3e90df5f0bd3dbcd31f59cdd2b001d424cf30a07223655413b158eaf @@ -3965,7 +3965,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libwebp-base-1.5.0-h3b0e114_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libwebp-base-1.5.0-h3b0e114_0.conda hash: md5: 33f7313967072c6e6d8f865f5493c7ae sha256: 1d75274614e83a5750b8b94f7bad2fc0564c2312ff407e697d99152ed095576f @@ -3977,7 +3977,7 @@ package: platform: win-64 dependencies: ucrt: '' - url: https://conda.anaconda.org/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h57928b3_9.conda + url: https://repo.prefix.dev/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h57928b3_9.conda hash: md5: 08bfa5da6e242025304b206d152479ef sha256: 373f2973b8a358528b22be5e8d84322c165b4c5577d24d94fd67ad1bb0a0f261 @@ -3993,7 +3993,7 @@ package: pthread-stubs: '' xorg-libxau: '>=1.0.11,<2.0a0' xorg-libxdmcp: '' - url: https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda hash: md5: 92ed62436b625154323d40d5f2f11dd7 sha256: 666c0c431b23c6cec6e492840b176dde533d48b7e6fb8883f5071223433776aa @@ -4010,7 +4010,7 @@ package: ucrt: '>=10.0.20348.0' xorg-libxau: '>=1.0.11,<2.0a0' xorg-libxdmcp: '' - url: https://conda.anaconda.org/conda-forge/win-64/libxcb-1.17.0-h0e4246c_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libxcb-1.17.0-h0e4246c_0.conda hash: md5: a69bbf778a462da324489976c84cfc8c sha256: 08dec73df0e161c96765468847298a420933a36bc4f09b50e062df8793290737 @@ -4022,7 +4022,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda hash: md5: 5aa797f8787fe7a17d1b0821485b5adc sha256: 6ae68e0b86423ef188196fff6207ed0c8195dd84273cb5623b85aa08033a410c @@ -4038,7 +4038,7 @@ package: libiconv: '>=1.18,<2.0a0' liblzma: '>=5.8.1,<6.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.13.7-h81593ed_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libxml2-2.13.7-h81593ed_1.conda hash: md5: 0619e8fc4c8025a908ea3a3422d3b775 sha256: c4f59563e017eba378ea843be5ebde4b0546c72bbe4c1e43b2b384379e827635 @@ -4054,7 +4054,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libxml2-2.13.7-h442d1da_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/libxml2-2.13.7-h442d1da_1.conda hash: md5: c14ff7f05e57489df9244917d2b55763 sha256: 0a013527f784f4702dc18460070d8ec79d1ebb5087dd9e678d6afbeaca68d2ac @@ -4067,7 +4067,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda hash: md5: edb0dca6bc32e4f4789199455a1dbeb8 sha256: d4bfe88d7cb447768e31650f06257995601f89076080e76df55e3112d4e47dc4 @@ -4081,7 +4081,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda hash: md5: 41fbfac52c601159df6c01f875de31b9 sha256: ba945c6493449bed0e6e29883c4943817f7c79cbff52b83360f7b341277c6402 @@ -4094,7 +4094,7 @@ package: dependencies: python: '>=3.9' uc-micro-py: '' - url: https://conda.anaconda.org/conda-forge/noarch/linkify-it-py-2.0.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/linkify-it-py-2.0.3-pyhd8ed1ab_1.conda hash: md5: b02fe519b5dc0dc55e7299810fcdfb8e sha256: d975a2015803d4fdaaae3f53e21f64996577d7a069eb61c6d2792504f16eb57b @@ -4107,7 +4107,7 @@ package: dependencies: python: '>=3.9' uc-micro-py: '' - url: https://conda.anaconda.org/conda-forge/noarch/linkify-it-py-2.0.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/linkify-it-py-2.0.3-pyhd8ed1ab_1.conda hash: md5: b02fe519b5dc0dc55e7299810fcdfb8e sha256: d975a2015803d4fdaaae3f53e21f64996577d7a069eb61c6d2792504f16eb57b @@ -4119,7 +4119,7 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://conda.anaconda.org/conda-forge/linux-64/llvm-openmp-20.1.3-h024ca30_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-20.1.3-h024ca30_0.conda hash: md5: c721339ea8746513e42b1233b4bbdfb0 sha256: 4327a463f43b0d95ca0e5f92094383ef53fd2a91d649debfc531b941fe44fd48 @@ -4133,7 +4133,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/llvm-openmp-20.1.3-h30eaf37_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-20.1.3-h30eaf37_0.conda hash: md5: 183c102075722a7aa993f94de1d135f2 sha256: 27326e733ce7ad87054a409c02b829594cc6276232b987eb135cd1a225eac669 @@ -4145,7 +4145,7 @@ package: platform: linux-64 dependencies: python: '>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*' - url: https://conda.anaconda.org/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 91e27ef3d05cc772ce627e51cff111c4 sha256: 9afe0b5cfa418e8bdb30d8917c5a6cec10372b037924916f1f85b9f4899a67a6 @@ -4157,7 +4157,7 @@ package: platform: win-64 dependencies: python: '>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*' - url: https://conda.anaconda.org/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 91e27ef3d05cc772ce627e51cff111c4 sha256: 9afe0b5cfa418e8bdb30d8917c5a6cec10372b037924916f1f85b9f4899a67a6 @@ -4171,7 +4171,7 @@ package: mdurl: '>=0.1,<1' python: '>=3.7' typing_extensions: '>=3.7.4' - url: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-2.2.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/markdown-it-py-2.2.0-pyhd8ed1ab_0.conda hash: md5: b2928a6c6d52d7e3562b4a59c3214e3a sha256: 65ed439862c1851463f03a9bc5109992ce3e3e025e9a2d76d13ca19f576eee9f @@ -4185,7 +4185,7 @@ package: mdurl: '>=0.1,<1' python: '>=3.7' typing_extensions: '>=3.7.4' - url: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-2.2.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/markdown-it-py-2.2.0-pyhd8ed1ab_0.conda hash: md5: b2928a6c6d52d7e3562b4a59c3214e3a sha256: 65ed439862c1851463f03a9bc5109992ce3e3e025e9a2d76d13ca19f576eee9f @@ -4200,7 +4200,7 @@ package: libgcc: '>=13' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-3.0.2-py311h2dc5d0c_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/markupsafe-3.0.2-py311h2dc5d0c_1.conda hash: md5: 6565a715337ae279e351d0abd8ffe88a sha256: 0291d90706ac6d3eea73e66cd290ef6d805da3fad388d1d476b8536ec92ca9a8 @@ -4216,7 +4216,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/markupsafe-3.0.2-py311h5082efb_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/markupsafe-3.0.2-py311h5082efb_1.conda hash: md5: c1f2ddad665323278952a453912dc3bd sha256: 6f756e13ccf1a521d3960bd3cadddf564e013e210eaeced411c5259f070da08e @@ -4243,7 +4243,7 @@ package: python-dateutil: '>=2.7' python_abi: 3.11.* tk: '>=8.6.13,<8.7.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/matplotlib-base-3.8.4-py311ha4ca890_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/matplotlib-base-3.8.4-py311ha4ca890_2.conda hash: md5: 0848e2084cbb57014f232f48568561af sha256: 19a65ac35a9f48b3f0277b723b832052728d276e70c0ad1057f5b5bbe1f1ba28 @@ -4270,7 +4270,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/matplotlib-base-3.8.4-py311h9b31f6e_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/matplotlib-base-3.8.4-py311h9b31f6e_2.conda hash: md5: dbf84485273ba5fea107ef140a173e30 sha256: 857ed04795a1e3ea1939d8990fe0f6122b086445f72f92afe50de74ae19977d0 @@ -4283,7 +4283,7 @@ package: dependencies: python: '>=3.9' traitlets: '' - url: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_1.conda hash: md5: af6ab708897df59bd6e7283ceab1b56b sha256: 69b7dc7131703d3d60da9b0faa6dd8acbf6f6c396224cf6aef3e855b8c0c41c6 @@ -4296,7 +4296,7 @@ package: dependencies: python: '>=3.9' traitlets: '' - url: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_1.conda hash: md5: af6ab708897df59bd6e7283ceab1b56b sha256: 69b7dc7131703d3d60da9b0faa6dd8acbf6f6c396224cf6aef3e855b8c0c41c6 @@ -4308,7 +4308,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda hash: md5: 827064ddfe0de2917fb29f1da4f8f533 sha256: 9b0037171dad0100f0296699a11ae7d355237b55f42f9094aebc0f41512d96a1 @@ -4320,7 +4320,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda hash: md5: 827064ddfe0de2917fb29f1da4f8f533 sha256: 9b0037171dad0100f0296699a11ae7d355237b55f42f9094aebc0f41512d96a1 @@ -4333,7 +4333,7 @@ package: dependencies: markdown-it-py: '>=1.0.0,<4.0.0' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.4.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/mdit-py-plugins-0.4.2-pyhd8ed1ab_1.conda hash: md5: af2060041d4f3250a7eb6ab3ec0e549b sha256: c63ed79d9745109c0a70397713b0c07f06e7d3561abcb122cfc80a141ab3b449 @@ -4346,7 +4346,7 @@ package: dependencies: markdown-it-py: '>=1.0.0,<4.0.0' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.4.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/mdit-py-plugins-0.4.2-pyhd8ed1ab_1.conda hash: md5: af2060041d4f3250a7eb6ab3ec0e549b sha256: c63ed79d9745109c0a70397713b0c07f06e7d3561abcb122cfc80a141ab3b449 @@ -4358,7 +4358,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_1.conda hash: md5: 592132998493b3ff25fd7479396e8351 sha256: 78c1bbe1723449c52b7a9df1af2ee5f005209f67e40b6e1d3c7619127c43b1c7 @@ -4370,7 +4370,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_1.conda hash: md5: 592132998493b3ff25fd7479396e8351 sha256: 78c1bbe1723449c52b7a9df1af2ee5f005209f67e40b6e1d3c7619127c43b1c7 @@ -4384,7 +4384,7 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' libstdcxx: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/metis-5.1.0-hd0bcaf9_1007.conda + url: https://repo.prefix.dev/conda-forge/linux-64/metis-5.1.0-hd0bcaf9_1007.conda hash: md5: 28eb714416de4eb83e2cbc47e99a1b45 sha256: e8a00971e6d00bd49f375c5d8d005b37a9abba0b1768533aed0f90a422bf5cc7 @@ -4397,7 +4397,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '' - url: https://conda.anaconda.org/conda-forge/noarch/mistune-3.1.3-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/mistune-3.1.3-pyh29332c3_0.conda hash: md5: 7ec6576e328bc128f4982cd646eeba85 sha256: a67484d7dd11e815a81786580f18b6e4aa2392f292f29183631a6eccc8dc37b3 @@ -4410,7 +4410,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '' - url: https://conda.anaconda.org/conda-forge/noarch/mistune-3.1.3-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/mistune-3.1.3-pyh29332c3_0.conda hash: md5: 7ec6576e328bc128f4982cd646eeba85 sha256: a67484d7dd11e815a81786580f18b6e4aa2392f292f29183631a6eccc8dc37b3 @@ -4424,7 +4424,7 @@ package: _openmp_mutex: '*' llvm-openmp: '>=19.1.2' tbb: 2021.* - url: https://conda.anaconda.org/conda-forge/linux-64/mkl-2024.2.2-ha957f24_16.conda + url: https://repo.prefix.dev/conda-forge/linux-64/mkl-2024.2.2-ha957f24_16.conda hash: md5: 1459379c79dda834673426504d52b319 sha256: 77906b0acead8f86b489da46f53916e624897338770dbf70b04b8f673c9273c1 @@ -4437,7 +4437,7 @@ package: dependencies: intel-openmp: 2024.* tbb: 2021.* - url: https://conda.anaconda.org/conda-forge/win-64/mkl-2024.2.2-h66d3029_15.conda + url: https://repo.prefix.dev/conda-forge/win-64/mkl-2024.2.2-h66d3029_15.conda hash: md5: 302dff2807f2927b3e9e0d19d60121de sha256: 20e52b0389586d0b914a49cd286c5ccc9c47949bed60ca6df004d1d295f2edbd @@ -4453,7 +4453,7 @@ package: libstdcxx: '>=13' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://conda.anaconda.org/conda-forge/linux-64/msgpack-python-1.1.0-py311hd18a35c_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/msgpack-python-1.1.0-py311hd18a35c_0.conda hash: md5: 682f76920687f7d9283039eb542fdacf sha256: 9033fa7084cbfd10e1b7ed3b74cee17169a0731ec98244d05c372fc4a935d5c9 @@ -4469,7 +4469,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/msgpack-python-1.1.0-py311h3257749_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/msgpack-python-1.1.0-py311h3257749_0.conda hash: md5: 36562593204b081d0da8a8bfabfb278b sha256: 4e6a7979b434308ce5588970cb613952e3340bb2f9e63aaad7e5069ef1f08d1d @@ -4480,7 +4480,7 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/mumps-include-5.7.3-h82cca05_9.conda + url: https://repo.prefix.dev/conda-forge/linux-64/mumps-include-5.7.3-h82cca05_9.conda hash: md5: 8207b975a176b5c08937bdeeeeecca20 sha256: bb41dda1084bc29c79bdb1da693295c5bc55da223fb74c4ef8487a81964cbf48 @@ -4501,7 +4501,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://conda.anaconda.org/conda-forge/linux-64/mumps-seq-5.7.3-hb5d91fa_9.conda + url: https://repo.prefix.dev/conda-forge/linux-64/mumps-seq-5.7.3-hb5d91fa_9.conda hash: md5: 33982046ecd8eed02447ddd7810aad37 sha256: 196b227df4635ce4294d40d885fa231d8d037839a95a1eee8923319985276bbe @@ -4518,7 +4518,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/mumps-seq-5.7.3-hbaa6519_9.conda + url: https://repo.prefix.dev/conda-forge/win-64/mumps-seq-5.7.3-hbaa6519_9.conda hash: md5: 3a30d32db33cc226f7a2c78d485b0503 sha256: 953c384a1b37b93bf7a2ee39b1c5763887f4d63ed220b65362103d6e6b4440a4 @@ -4530,7 +4530,7 @@ package: platform: linux-64 dependencies: python: '' - url: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 hash: md5: 2ba8498c1018c1e9c61eb99b973dfe19 sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 @@ -4542,7 +4542,7 @@ package: platform: win-64 dependencies: python: '' - url: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 hash: md5: 2ba8498c1018c1e9c61eb99b973dfe19 sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 @@ -4564,7 +4564,7 @@ package: pyyaml: '' sphinx: '>=5' typing_extensions: '' - url: https://conda.anaconda.org/conda-forge/noarch/myst-nb-1.2.0-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/myst-nb-1.2.0-pyh29332c3_0.conda hash: md5: 4f63865e1bb08e05476fa136a2dfe2ac sha256: de3e58d54126fdb667a55921675693fb8eee23757fd3be6116f6565cae710279 @@ -4586,7 +4586,7 @@ package: pyyaml: '' sphinx: '>=5' typing_extensions: '' - url: https://conda.anaconda.org/conda-forge/noarch/myst-nb-1.2.0-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/myst-nb-1.2.0-pyh29332c3_0.conda hash: md5: 4f63865e1bb08e05476fa136a2dfe2ac sha256: de3e58d54126fdb667a55921675693fb8eee23757fd3be6116f6565cae710279 @@ -4605,7 +4605,7 @@ package: pyyaml: '' sphinx: '>=5,<7' typing-extensions: '' - url: https://conda.anaconda.org/conda-forge/noarch/myst-parser-1.0.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/myst-parser-1.0.0-pyhd8ed1ab_0.conda hash: md5: e559708feb0aed1ae24c518e569ea3eb sha256: 87de591aa423932ffec61e06283bf5c3ba5c0a3cc465955984ce58f1de3ded8e @@ -4624,7 +4624,7 @@ package: pyyaml: '' sphinx: '>=5,<7' typing-extensions: '' - url: https://conda.anaconda.org/conda-forge/noarch/myst-parser-1.0.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/myst-parser-1.0.0-pyhd8ed1ab_0.conda hash: md5: e559708feb0aed1ae24c518e569ea3eb sha256: 87de591aa423932ffec61e06283bf5c3ba5c0a3cc465955984ce58f1de3ded8e @@ -4640,7 +4640,7 @@ package: nbformat: '>=5.1' python: '>=3.8' traitlets: '>=5.4' - url: https://conda.anaconda.org/conda-forge/noarch/nbclient-0.10.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/nbclient-0.10.2-pyhd8ed1ab_0.conda hash: md5: 6bb0d77277061742744176ab555b723c sha256: a20cff739d66c2f89f413e4ba4c6f6b59c50d5c30b5f0d840c13e8c9c2df9135 @@ -4656,7 +4656,7 @@ package: nbformat: '>=5.1' python: '>=3.8' traitlets: '>=5.4' - url: https://conda.anaconda.org/conda-forge/noarch/nbclient-0.10.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/nbclient-0.10.2-pyhd8ed1ab_0.conda hash: md5: 6bb0d77277061742744176ab555b723c sha256: a20cff739d66c2f89f413e4ba4c6f6b59c50d5c30b5f0d840c13e8c9c2df9135 @@ -4669,7 +4669,7 @@ package: dependencies: nbconvert-core: ==7.16.6 nbconvert-pandoc: ==7.16.6 - url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-7.16.6-hb482800_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/nbconvert-7.16.6-hb482800_0.conda hash: md5: aa90ea40c80d4bd3da35cb17ed668f22 sha256: 5480b7e05bf3079fcb7357a5a15a96c3a1649cc1371d0c468c806898a7e53088 @@ -4682,7 +4682,7 @@ package: dependencies: nbconvert-core: ==7.16.6 nbconvert-pandoc: ==7.16.6 - url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-7.16.6-hb482800_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/nbconvert-7.16.6-hb482800_0.conda hash: md5: aa90ea40c80d4bd3da35cb17ed668f22 sha256: 5480b7e05bf3079fcb7357a5a15a96c3a1649cc1371d0c468c806898a7e53088 @@ -4709,7 +4709,7 @@ package: pygments: '>=2.4.1' python: '>=3.9' traitlets: '>=5.1' - url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.16.6-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/nbconvert-core-7.16.6-pyh29332c3_0.conda hash: md5: d24beda1d30748afcc87c429454ece1b sha256: dcccb07c5a1acb7dc8be94330e62d54754c0e9c9cb2bb6865c8e3cfe44cf5a58 @@ -4736,7 +4736,7 @@ package: pygments: '>=2.4.1' python: '>=3.9' traitlets: '>=5.1' - url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.16.6-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/nbconvert-core-7.16.6-pyh29332c3_0.conda hash: md5: d24beda1d30748afcc87c429454ece1b sha256: dcccb07c5a1acb7dc8be94330e62d54754c0e9c9cb2bb6865c8e3cfe44cf5a58 @@ -4749,7 +4749,7 @@ package: dependencies: nbconvert-core: ==7.16.6 pandoc: '' - url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-pandoc-7.16.6-hed9df3c_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/nbconvert-pandoc-7.16.6-hed9df3c_0.conda hash: md5: 5b0afb6c52e74a7eca2cf809a874acf4 sha256: 1e8923f1557c2ddb7bba915033cfaf8b8c1b7462c745172458102c11caee1002 @@ -4762,7 +4762,7 @@ package: dependencies: nbconvert-core: ==7.16.6 pandoc: '' - url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-pandoc-7.16.6-hed9df3c_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/nbconvert-pandoc-7.16.6-hed9df3c_0.conda hash: md5: 5b0afb6c52e74a7eca2cf809a874acf4 sha256: 1e8923f1557c2ddb7bba915033cfaf8b8c1b7462c745172458102c11caee1002 @@ -4778,7 +4778,7 @@ package: python: '>=3.9' python-fastjsonschema: '>=2.15' traitlets: '>=5.1' - url: https://conda.anaconda.org/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_1.conda hash: md5: bbe1963f1e47f594070ffe87cdf612ea sha256: 7a5bd30a2e7ddd7b85031a5e2e14f290898098dc85bea5b3a5bf147c25122838 @@ -4794,7 +4794,7 @@ package: python: '>=3.9' python-fastjsonschema: '>=2.15' traitlets: '>=5.1' - url: https://conda.anaconda.org/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_1.conda hash: md5: bbe1963f1e47f594070ffe87cdf612ea sha256: 7a5bd30a2e7ddd7b85031a5e2e14f290898098dc85bea5b3a5bf147c25122838 @@ -4807,7 +4807,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda + url: https://repo.prefix.dev/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda hash: md5: 47e340acb35de30501a76c7c799c41d7 sha256: 3fde293232fa3fca98635e1167de6b7c7fda83caf24b9d6c91ec9eefb4f4d586 @@ -4819,7 +4819,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_1.conda hash: md5: 598fd7d4d0de2455fb74f56063969a97 sha256: bb7b21d7fd0445ddc0631f64e66d91a179de4ba920b8381f29b9d006a42788c0 @@ -4831,7 +4831,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_1.conda hash: md5: 598fd7d4d0de2455fb74f56063969a97 sha256: bb7b21d7fd0445ddc0631f64e66d91a179de4ba920b8381f29b9d006a42788c0 @@ -4848,7 +4848,7 @@ package: notebook-shim: '>=0.2,<0.3' python: '>=3.9' tornado: '>=6.2.0' - url: https://conda.anaconda.org/conda-forge/noarch/notebook-7.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/notebook-7.4.0-pyhd8ed1ab_0.conda hash: md5: 7e82caa4495c513bcfb33a159e1222d4 sha256: d3f70987bc1e1a20b122726a49a24e5e6f09d00c9862bb399cd1682cd59a1e1e @@ -4865,7 +4865,7 @@ package: notebook-shim: '>=0.2,<0.3' python: '>=3.9' tornado: '>=6.2.0' - url: https://conda.anaconda.org/conda-forge/noarch/notebook-7.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/notebook-7.4.0-pyhd8ed1ab_0.conda hash: md5: 7e82caa4495c513bcfb33a159e1222d4 sha256: d3f70987bc1e1a20b122726a49a24e5e6f09d00c9862bb399cd1682cd59a1e1e @@ -4878,7 +4878,7 @@ package: dependencies: jupyter_server: '>=1.8,<3' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/notebook-shim-0.2.4-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/notebook-shim-0.2.4-pyhd8ed1ab_1.conda hash: md5: e7f89ea5f7ea9401642758ff50a2d9c1 sha256: 7b920e46b9f7a2d2aa6434222e5c8d739021dbc5cc75f32d124a8191d86f9056 @@ -4891,7 +4891,7 @@ package: dependencies: jupyter_server: '>=1.8,<3' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/notebook-shim-0.2.4-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/notebook-shim-0.2.4-pyhd8ed1ab_1.conda hash: md5: e7f89ea5f7ea9401642758ff50a2d9c1 sha256: 7b920e46b9f7a2d2aa6434222e5c8d739021dbc5cc75f32d124a8191d86f9056 @@ -4910,7 +4910,7 @@ package: numpy: '>=1.24' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://conda.anaconda.org/conda-forge/linux-64/numcodecs-0.15.1-py311h7db5c69_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/numcodecs-0.15.1-py311h7db5c69_0.conda hash: md5: 969c10aa2c0b994e33a436bea697e214 sha256: 38794beadfe994f21ae105ec3a888999a002f341a3fb7e8e870fef8212cebfef @@ -4929,7 +4929,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/numcodecs-0.15.1-py311hcf9f919_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/numcodecs-0.15.1-py311hcf9f919_0.conda hash: md5: 89d8435b5b12da6eb043309c45b022f2 sha256: 5c6ece778e8abaed89c5c7529f4fe276fa2ab72013e27301dd08a649e37f1f05 @@ -4947,7 +4947,7 @@ package: libstdcxx-ng: '>=12' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://conda.anaconda.org/conda-forge/linux-64/numpy-1.26.4-py311h64a7726_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/numpy-1.26.4-py311h64a7726_0.conda hash: md5: a502d7aad449a1206efb366d6a12c52d sha256: 3f4365e11b28e244c95ba8579942b0802761ba7bb31c026f50d1a9ea9c728149 @@ -4966,7 +4966,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/numpy-1.26.4-py311h0b4df5a_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/numpy-1.26.4-py311h0b4df5a_0.conda hash: md5: 7b240edd44fd7a0991aa409b07cee776 sha256: 14116e72107de3089cc58119a5ce5905c22abf9a715c9fe41f8ac14db0992326 @@ -4983,7 +4983,7 @@ package: libstdcxx: '>=13' libtiff: '>=4.7.0,<4.8.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.3-h5fbd93e_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/openjpeg-2.5.3-h5fbd93e_0.conda hash: md5: 9e5816bc95d285c115a3ebc2f8563564 sha256: 5bee706ea5ba453ed7fd9da7da8380dd88b865c8d30b5aaec14d2b6dd32dbc39 @@ -5000,7 +5000,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/openjpeg-2.5.3-h4d64b90_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/openjpeg-2.5.3-h4d64b90_0.conda hash: md5: fc050366dd0b8313eb797ed1ffef3a29 sha256: 410175815df192f57a07c29a6b3fdd4231937173face9e63f0830c1234272ce3 @@ -5014,7 +5014,7 @@ package: __glibc: '>=2.17,<3.0.a0' ca-certificates: '' libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.5.0-h7b32b05_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/openssl-3.5.0-h7b32b05_0.conda hash: md5: bb539841f2a3fde210f387d00ed4bb9d sha256: 38285d280f84f1755b7c54baf17eccf2e3e696287954ce0adca16546b85ee62c @@ -5029,7 +5029,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/openssl-3.5.0-ha4e3fda_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/openssl-3.5.0-ha4e3fda_0.conda hash: md5: 4ea7db75035eb8c13fa680bb90171e08 sha256: 43dd7f56da142ca83c614c8b0085589650ae9032b351a901c190e48eefc73675 @@ -5042,7 +5042,7 @@ package: dependencies: python: '>=3.9' typing_utils: '' - url: https://conda.anaconda.org/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_1.conda hash: md5: e51f1e4089cad105b6cac64bd8166587 sha256: 1840bd90d25d4930d60f57b4f38d4e0ae3f5b8db2819638709c36098c6ba770c @@ -5055,7 +5055,7 @@ package: dependencies: python: '>=3.9' typing_utils: '' - url: https://conda.anaconda.org/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_1.conda hash: md5: e51f1e4089cad105b6cac64bd8166587 sha256: 1840bd90d25d4930d60f57b4f38d4e0ae3f5b8db2819638709c36098c6ba770c @@ -5067,7 +5067,7 @@ package: platform: linux-64 dependencies: python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/packaging-25.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyhd8ed1ab_0.conda hash: md5: 4088c0d078e2f5092ddf824495186229 sha256: f759df4f492ae481505dcceb3d4485a120ee798af26711c92de20944a1185621 @@ -5079,7 +5079,7 @@ package: platform: win-64 dependencies: python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/packaging-25.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyhd8ed1ab_0.conda hash: md5: 4088c0d078e2f5092ddf824495186229 sha256: f759df4f492ae481505dcceb3d4485a120ee798af26711c92de20944a1185621 @@ -5099,7 +5099,7 @@ package: python-tzdata: '>=2022.7' python_abi: 3.11.* pytz: '>=2020.1' - url: https://conda.anaconda.org/conda-forge/linux-64/pandas-2.2.3-py311h7db5c69_3.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pandas-2.2.3-py311h7db5c69_3.conda hash: md5: c9f8fe78840d5c04e61666474bd739b2 sha256: 98cd49bfc4b803d950f9dbc4799793903aec1eaacd388c244a0b46d644159831 @@ -5119,7 +5119,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/pandas-2.2.3-py311hcf9f919_3.conda + url: https://repo.prefix.dev/conda-forge/win-64/pandas-2.2.3-py311hcf9f919_3.conda hash: md5: 84c8b4aab176baefd352cd34f7e69469 sha256: 7aabb8d23a6817844a7f1b402e7e147e341cade5f470a908b8239f969c7b681c @@ -5130,7 +5130,7 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/pandoc-3.6.4-ha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pandoc-3.6.4-ha770c72_0.conda hash: md5: 53f2cd4128fa7053bb029bbeafbe3f2e sha256: 16cbcab8a6d9a0cef47b9d3ebeced8a1a75ee54d379649e6260a333d1b2f743c @@ -5141,7 +5141,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/win-64/pandoc-3.6.4-h57928b3_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/pandoc-3.6.4-h57928b3_0.conda hash: md5: dac005a8550579541a6b0b6a8f8c6ddc sha256: 02ab6b0c12596f5d8481f546a1fef6cd4e3a52ec59bc32c0fa3708106e30972e @@ -5153,7 +5153,7 @@ package: platform: linux-64 dependencies: python: '!=3.0,!=3.1,!=3.2,!=3.3' - url: https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 457c2c8c08e54905d6954e79cb5b5db9 sha256: 2bb9ba9857f4774b85900c2562f7e711d08dd48e2add9bee4e1612fbee27e16f @@ -5165,7 +5165,7 @@ package: platform: win-64 dependencies: python: '!=3.0,!=3.1,!=3.2,!=3.3' - url: https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 457c2c8c08e54905d6954e79cb5b5db9 sha256: 2bb9ba9857f4774b85900c2562f7e711d08dd48e2add9bee4e1612fbee27e16f @@ -5177,7 +5177,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_1.conda hash: md5: 5c092057b6badd30f75b06244ecd01c9 sha256: 17131120c10401a99205fc6fe436e7903c0fa092f1b3e80452927ab377239bcc @@ -5189,7 +5189,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_1.conda hash: md5: 5c092057b6badd30f75b06244ecd01c9 sha256: 17131120c10401a99205fc6fe436e7903c0fa092f1b3e80452927ab377239bcc @@ -5203,7 +5203,7 @@ package: locket: '' python: '>=3.9' toolz: '' - url: https://conda.anaconda.org/conda-forge/noarch/partd-1.4.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/partd-1.4.2-pyhd8ed1ab_0.conda hash: md5: 0badf9c54e24cecfb0ad2f99d680c163 sha256: 472fc587c63ec4f6eba0cc0b06008a6371e0a08a5986de3cf4e8024a47b4fe6c @@ -5217,7 +5217,7 @@ package: locket: '' python: '>=3.9' toolz: '' - url: https://conda.anaconda.org/conda-forge/noarch/partd-1.4.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/partd-1.4.2-pyhd8ed1ab_0.conda hash: md5: 0badf9c54e24cecfb0ad2f99d680c163 sha256: 472fc587c63ec4f6eba0cc0b06008a6371e0a08a5986de3cf4e8024a47b4fe6c @@ -5230,7 +5230,7 @@ package: dependencies: ptyprocess: '>=0.5' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_1.conda hash: md5: d0d408b1f18883a944376da5cf8101ea sha256: 202af1de83b585d36445dc1fda94266697341994d1a3328fabde4989e1b3d07a @@ -5242,7 +5242,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-pyhd8ed1ab_1004.conda + url: https://repo.prefix.dev/conda-forge/noarch/pickleshare-0.7.5-pyhd8ed1ab_1004.conda hash: md5: 11a9d1d09a3615fc07c3faf79bc0b943 sha256: e2ac3d66c367dada209fc6da43e645672364b9fd5f9d28b9f016e24b81af475b @@ -5254,7 +5254,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-pyhd8ed1ab_1004.conda + url: https://repo.prefix.dev/conda-forge/noarch/pickleshare-0.7.5-pyhd8ed1ab_1004.conda hash: md5: 11a9d1d09a3615fc07c3faf79bc0b943 sha256: e2ac3d66c367dada209fc6da43e645672364b9fd5f9d28b9f016e24b81af475b @@ -5277,7 +5277,7 @@ package: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* tk: '>=8.6.13,<8.7.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/pillow-10.3.0-py311h82a398c_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pillow-10.3.0-py311h82a398c_1.conda hash: md5: 4dc0b6fcf0bc041a1bfb763fa6e5302f sha256: ce420bfba7ed8641aa376b4446e16299fcb37113c27e9655503fd5d517cb7fcd @@ -5302,7 +5302,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/pillow-10.3.0-py311h5592be9_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/pillow-10.3.0-py311h5592be9_1.conda hash: md5: 034f612fd103c2c1058538533598ce4f sha256: 5404b51b1c93180940e0f8340e905d435bf187224512bab2993c5b7f30aa0615 @@ -5316,7 +5316,7 @@ package: python: '>=3.9,<3.13.0a0' setuptools: '' wheel: '' - url: https://conda.anaconda.org/conda-forge/noarch/pip-25.0.1-pyh8b19718_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pip-25.0.1-pyh8b19718_0.conda hash: md5: 79b5c1440aedc5010f687048d9103628 sha256: 585940f09d87787f79f73ff5dff8eb2af8a67e5bec5eebf2f553cd26c840ba69 @@ -5330,7 +5330,7 @@ package: python: '>=3.9,<3.13.0a0' setuptools: '' wheel: '' - url: https://conda.anaconda.org/conda-forge/noarch/pip-25.0.1-pyh8b19718_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pip-25.0.1-pyh8b19718_0.conda hash: md5: 79b5c1440aedc5010f687048d9103628 sha256: 585940f09d87787f79f73ff5dff8eb2af8a67e5bec5eebf2f553cd26c840ba69 @@ -5342,7 +5342,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_2.conda + url: https://repo.prefix.dev/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_2.conda hash: md5: 5a5870a74432aa332f7d32180633ad05 sha256: adb2dde5b4f7da70ae81309cce6188ed3286ff280355cf1931b45d91164d2ad8 @@ -5354,7 +5354,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_2.conda + url: https://repo.prefix.dev/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_2.conda hash: md5: 5a5870a74432aa332f7d32180633ad05 sha256: adb2dde5b4f7da70ae81309cce6188ed3286ff280355cf1931b45d91164d2ad8 @@ -5366,7 +5366,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.7-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.3.7-pyh29332c3_0.conda hash: md5: e57da6fe54bb3a5556cf36d199ff07d8 sha256: ae7d3e58224d53d6b59e1f5ac5809803bb1972f0ac4fb10cd9b8c87d4122d3e0 @@ -5378,7 +5378,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.7-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.3.7-pyh29332c3_0.conda hash: md5: e57da6fe54bb3a5556cf36d199ff07d8 sha256: ae7d3e58224d53d6b59e1f5ac5809803bb1972f0ac4fb10cd9b8c87d4122d3e0 @@ -5390,7 +5390,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_1.conda hash: md5: e9dcbce5f45f9ee500e728ae58b605b6 sha256: 122433fc5318816b8c69283aaf267c73d87aa2d09ce39f64c9805c9a3b264819 @@ -5402,7 +5402,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_1.conda hash: md5: e9dcbce5f45f9ee500e728ae58b605b6 sha256: 122433fc5318816b8c69283aaf267c73d87aa2d09ce39f64c9805c9a3b264819 @@ -5414,7 +5414,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.21.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/prometheus_client-0.21.1-pyhd8ed1ab_0.conda hash: md5: 3e01e386307acc60b2f89af0b2e161aa sha256: bc8f00d5155deb7b47702cb8370f233935704100dbc23e30747c161d1b6cf3ab @@ -5426,7 +5426,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.21.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/prometheus_client-0.21.1-pyhd8ed1ab_0.conda hash: md5: 3e01e386307acc60b2f89af0b2e161aa sha256: bc8f00d5155deb7b47702cb8370f233935704100dbc23e30747c161d1b6cf3ab @@ -5439,7 +5439,7 @@ package: dependencies: python: '>=3.9' wcwidth: '' - url: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.51-pyha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/prompt-toolkit-3.0.51-pyha770c72_0.conda hash: md5: d17ae9db4dc594267181bd199bf9a551 sha256: ebc1bb62ac612af6d40667da266ff723662394c0ca78935340a5b5c14831227b @@ -5452,7 +5452,7 @@ package: dependencies: python: '>=3.9' wcwidth: '' - url: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.51-pyha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/prompt-toolkit-3.0.51-pyha770c72_0.conda hash: md5: d17ae9db4dc594267181bd199bf9a551 sha256: ebc1bb62ac612af6d40667da266ff723662394c0ca78935340a5b5c14831227b @@ -5467,7 +5467,7 @@ package: libgcc: '>=13' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://conda.anaconda.org/conda-forge/linux-64/psutil-7.0.0-py311h9ecbd09_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/psutil-7.0.0-py311h9ecbd09_0.conda hash: md5: 1a390a54b2752169f5ba4ada5a8108e4 sha256: 50d0944b59a9c6dfa6b99cc2632bf8bc9bef9c7c93710390ded6eac953f0182d @@ -5483,7 +5483,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/psutil-7.0.0-py311he736701_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/psutil-7.0.0-py311he736701_0.conda hash: md5: fc2a628caa77146532ee4747894bccd5 sha256: e3844e26821651f744ea57a1538a8f970872f15a1c6eb38fc208f0efd1c3706c @@ -5496,7 +5496,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda hash: md5: b3c17d95b5a10c6e64a21fa17573e70e sha256: 9c88f8c64590e9567c6c80823f0328e58d3b1efb0e1c539c0315ceca764e0973 @@ -5510,7 +5510,7 @@ package: libgcc: '>=13' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' ucrt: '>=10.0.20348.0' - url: https://conda.anaconda.org/conda-forge/win-64/pthread-stubs-0.4-h0e40799_1002.conda + url: https://repo.prefix.dev/conda-forge/win-64/pthread-stubs-0.4-h0e40799_1002.conda hash: md5: 3c8f2573569bb816483e5cf57efbbe29 sha256: 7e446bafb4d692792310ed022fe284e848c6a868c861655a92435af7368bae7b @@ -5522,7 +5522,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/ptyprocess-0.7.0-pyhd8ed1ab_1.conda hash: md5: 7d9daffbb8d8e0af0f769dbbcd173a54 sha256: a7713dfe30faf17508ec359e0bc7e0983f5d94682492469bd462cdaae9c64d83 @@ -5534,7 +5534,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda hash: md5: 3bfdfb8dbcdc4af1ae3f9a8eb3948f04 sha256: 71bd24600d14bb171a6321d523486f6a06f855e75e547fa0cb2a0953b02047f0 @@ -5546,7 +5546,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda hash: md5: 3bfdfb8dbcdc4af1ae3f9a8eb3948f04 sha256: 71bd24600d14bb171a6321d523486f6a06f855e75e547fa0cb2a0953b02047f0 @@ -5562,7 +5562,7 @@ package: pyyaml: '>=3.01' setuptools: '' six: '' - url: https://conda.anaconda.org/conda-forge/noarch/pybtex-0.24.0-pyhd8ed1ab_3.conda + url: https://repo.prefix.dev/conda-forge/noarch/pybtex-0.24.0-pyhd8ed1ab_3.conda hash: md5: 556a52a96313364aa79990ed1337b9a5 sha256: c87615fcc7327c5dcc247f309731c98f7b9867a48e6265e9584af6dc8cd82345 @@ -5578,7 +5578,7 @@ package: pyyaml: '>=3.01' setuptools: '' six: '' - url: https://conda.anaconda.org/conda-forge/noarch/pybtex-0.24.0-pyhd8ed1ab_3.conda + url: https://repo.prefix.dev/conda-forge/noarch/pybtex-0.24.0-pyhd8ed1ab_3.conda hash: md5: 556a52a96313364aa79990ed1337b9a5 sha256: c87615fcc7327c5dcc247f309731c98f7b9867a48e6265e9584af6dc8cd82345 @@ -5594,7 +5594,7 @@ package: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* setuptools: '' - url: https://conda.anaconda.org/conda-forge/linux-64/pybtex-docutils-1.0.3-py311h38be061_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pybtex-docutils-1.0.3-py311h38be061_2.conda hash: md5: a092cf434b09ea147245e978999a379d sha256: f6ce37fc10a1c003f0db95a2bec20f3df09802617815cb848fa379a79c660b76 @@ -5610,7 +5610,7 @@ package: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* setuptools: '' - url: https://conda.anaconda.org/conda-forge/win-64/pybtex-docutils-1.0.3-py311h1ea47a8_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/pybtex-docutils-1.0.3-py311h1ea47a8_2.conda hash: md5: 544c4eeebd01975a6d71e3776212623f sha256: 20ca92d7b6088c217ff65be59d2bfe710402d459b239e23497a04d7bf8a102c4 @@ -5622,7 +5622,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda hash: md5: 12c566707c80111f9799308d9e265aef sha256: 79db7928d13fab2d892592223d7570f5061c192f27b9febd1a418427b719acc6 @@ -5634,7 +5634,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda hash: md5: 12c566707c80111f9799308d9e265aef sha256: 79db7928d13fab2d892592223d7570f5061c192f27b9febd1a418427b719acc6 @@ -5651,7 +5651,7 @@ package: typing-extensions: '>=4.6.1' typing-inspection: '>=0.4.0' typing_extensions: '>=4.12.2' - url: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.11.3-pyh3cfb1c2_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.3-pyh3cfb1c2_0.conda hash: md5: 3c6f7f8ae9b9c177ad91ccc187912756 sha256: 89183785b09ebe9f9e65710057d7c41e9d21d4a9ad05e068850e18669655d5a8 @@ -5668,7 +5668,7 @@ package: typing-extensions: '>=4.6.1' typing-inspection: '>=0.4.0' typing_extensions: '>=4.12.2' - url: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.11.3-pyh3cfb1c2_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.3-pyh3cfb1c2_0.conda hash: md5: 3c6f7f8ae9b9c177ad91ccc187912756 sha256: 89183785b09ebe9f9e65710057d7c41e9d21d4a9ad05e068850e18669655d5a8 @@ -5684,7 +5684,7 @@ package: python: '' python_abi: 3.11.* typing-extensions: '>=4.6.0,!=4.7.0' - url: https://conda.anaconda.org/conda-forge/linux-64/pydantic-core-2.33.1-py311h687327b_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pydantic-core-2.33.1-py311h687327b_0.conda hash: md5: 778b623dbbec0be25624b5ebd405a0a8 sha256: f293f7f2d0fe11c8334b3671944b310c13c1552dbe25ea93043d09bede814cd5 @@ -5701,7 +5701,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/pydantic-core-2.33.1-py311ha250665_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/pydantic-core-2.33.1-py311ha250665_0.conda hash: md5: 549cc2f2754ba510f7616af5c5b8aff6 sha256: bdbfb2e0a7e9f37071d1619dd9af33668bb47ba8f0117846742a5a7de3184bff @@ -5721,7 +5721,7 @@ package: python: '>=3.9' sphinx: '>=5.0' typing_extensions: '' - url: https://conda.anaconda.org/conda-forge/noarch/pydata-sphinx-theme-0.15.4-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pydata-sphinx-theme-0.15.4-pyhd8ed1ab_0.conda hash: md5: c7c50dd5192caa58a05e6a4248a27acb sha256: 5ec877142ded763061e114e787a4e201c2fb3f0b1db2f04ace610a1187bb34ae @@ -5741,7 +5741,7 @@ package: python: '>=3.9' sphinx: '>=5.0' typing_extensions: '' - url: https://conda.anaconda.org/conda-forge/noarch/pydata-sphinx-theme-0.15.4-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pydata-sphinx-theme-0.15.4-pyhd8ed1ab_0.conda hash: md5: c7c50dd5192caa58a05e6a4248a27acb sha256: 5ec877142ded763061e114e787a4e201c2fb3f0b1db2f04ace610a1187bb34ae @@ -5759,7 +5759,7 @@ package: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* scipy: '>=0.13' - url: https://conda.anaconda.org/conda-forge/linux-64/pydiso-0.1.2-py311h19ea254_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pydiso-0.1.2-py311h19ea254_0.conda hash: md5: c167267bfdb40fd2b924e06e9c7241a5 sha256: e16eed2ff0eb8f45868ca47d61322052530475a292fcda8101d5c1241c428b27 @@ -5778,7 +5778,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/pydiso-0.1.2-py311h66870c1_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/pydiso-0.1.2-py311h66870c1_0.conda hash: md5: 84cec6512899d9afc17baaad404ad74c sha256: 72cbc2c46902724c61f7b745e4c3538f8814053fafb274aecae7c6b70ae92862 @@ -5790,7 +5790,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda hash: md5: 232fb4577b6687b2d503ef8e254270c9 sha256: 28a3e3161390a9d23bc02b4419448f8d27679d9e2c250e29849e37749c8de86b @@ -5802,7 +5802,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda hash: md5: 232fb4577b6687b2d503ef8e254270c9 sha256: 28a3e3161390a9d23bc02b4419448f8d27679d9e2c250e29849e37749c8de86b @@ -5823,7 +5823,7 @@ package: tomli: '>=1.1.0' tomlkit: '>=0.10.1' typing_extensions: '>=3.10.0' - url: https://conda.anaconda.org/conda-forge/noarch/pylint-3.3.6-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pylint-3.3.6-pyh29332c3_0.conda hash: md5: 8242cc62822cc8a17f53d24d4efa75f4 sha256: 3e3e35b2cbb4b1ca3063fc2d6f44a85ac189e0935f00ed8fbe8e4713c0d00b99 @@ -5844,7 +5844,7 @@ package: tomli: '>=1.1.0' tomlkit: '>=0.10.1' typing_extensions: '>=3.10.0' - url: https://conda.anaconda.org/conda-forge/noarch/pylint-3.3.6-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pylint-3.3.6-pyh29332c3_0.conda hash: md5: 8242cc62822cc8a17f53d24d4efa75f4 sha256: 3e3e35b2cbb4b1ca3063fc2d6f44a85ac189e0935f00ed8fbe8e4713c0d00b99 @@ -5860,7 +5860,7 @@ package: pydiso: '>=0.1' python: '>=3.10' scipy: '>=1.8' - url: https://conda.anaconda.org/conda-forge/noarch/pymatsolver-0.3.1-pyh48887ae_201.conda + url: https://repo.prefix.dev/conda-forge/noarch/pymatsolver-0.3.1-pyh48887ae_201.conda hash: md5: b6805e522702eabf2ebbd236490d5eed sha256: d49ad9b58b9eeae204a3677cafc389c00c7f0f830ef76f481ab9aaf3e0260bad @@ -5876,7 +5876,7 @@ package: pydiso: '>=0.1' python: '>=3.10' scipy: '>=1.8' - url: https://conda.anaconda.org/conda-forge/noarch/pymatsolver-0.3.1-pyh48887ae_201.conda + url: https://repo.prefix.dev/conda-forge/noarch/pymatsolver-0.3.1-pyh48887ae_201.conda hash: md5: b6805e522702eabf2ebbd236490d5eed sha256: d49ad9b58b9eeae204a3677cafc389c00c7f0f830ef76f481ab9aaf3e0260bad @@ -5888,7 +5888,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.2.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/pyparsing-3.2.3-pyhd8ed1ab_1.conda hash: md5: 513d3c262ee49b54a8fec85c5bc99764 sha256: b92afb79b52fcf395fd220b29e0dd3297610f2059afac45298d44e00fcbf23b6 @@ -5900,7 +5900,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.2.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/pyparsing-3.2.3-pyhd8ed1ab_1.conda hash: md5: 513d3c262ee49b54a8fec85c5bc99764 sha256: b92afb79b52fcf395fd220b29e0dd3297610f2059afac45298d44e00fcbf23b6 @@ -5913,7 +5913,7 @@ package: dependencies: __unix: '' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha55dd90_7.conda + url: https://repo.prefix.dev/conda-forge/noarch/pysocks-1.7.1-pyha55dd90_7.conda hash: md5: 461219d1a5bd61342293efa2c0c90eac sha256: ba3b032fa52709ce0d9fd388f63d330a026754587a2f461117cac9ab73d8d0d8 @@ -5927,7 +5927,7 @@ package: __win: '' python: '>=3.9' win_inet_pton: '' - url: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyh09c184e_7.conda + url: https://repo.prefix.dev/conda-forge/noarch/pysocks-1.7.1-pyh09c184e_7.conda hash: md5: e2fd202833c4a981ce8a65974fe4abd1 sha256: d016e04b0e12063fbee4a2d5fbb9b39a8d191b5a0042f0b8459188aedeabb0ca @@ -5945,7 +5945,7 @@ package: pluggy: <2,>=1.5 python: '>=3.9' tomli: '>=1' - url: https://conda.anaconda.org/conda-forge/noarch/pytest-8.3.5-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytest-8.3.5-pyhd8ed1ab_0.conda hash: md5: c3c9316209dec74a705a36797970c6be sha256: 963524de7340c56615583ba7b97a6beb20d5c56a59defb59724dc2a3105169c9 @@ -5963,7 +5963,7 @@ package: pluggy: <2,>=1.5 python: '>=3.9' tomli: '>=1' - url: https://conda.anaconda.org/conda-forge/noarch/pytest-8.3.5-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytest-8.3.5-pyhd8ed1ab_0.conda hash: md5: c3c9316209dec74a705a36797970c6be sha256: 963524de7340c56615583ba7b97a6beb20d5c56a59defb59724dc2a3105169c9 @@ -5978,7 +5978,7 @@ package: pytest: '>=4.6' python: '>=3.9' toml: '' - url: https://conda.anaconda.org/conda-forge/noarch/pytest-cov-6.1.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-6.1.1-pyhd8ed1ab_0.conda hash: md5: 1e35d8f975bc0e984a19819aa91c440a sha256: 9961a1524f63d10bc29efdc52013ec06b0e95fb2619a250e250ff3618261d5cd @@ -5993,7 +5993,7 @@ package: pytest: '>=4.6' python: '>=3.9' toml: '' - url: https://conda.anaconda.org/conda-forge/noarch/pytest-cov-6.1.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-6.1.1-pyhd8ed1ab_0.conda hash: md5: 1e35d8f975bc0e984a19819aa91c440a sha256: 9961a1524f63d10bc29efdc52013ec06b0e95fb2619a250e250ff3618261d5cd @@ -6022,7 +6022,7 @@ package: readline: '>=8.2,<9.0a0' tk: '>=8.6.13,<8.7.0a0' tzdata: '' - url: https://conda.anaconda.org/conda-forge/linux-64/python-3.11.12-h9e4cc4f_0_cpython.conda + url: https://repo.prefix.dev/conda-forge/linux-64/python-3.11.12-h9e4cc4f_0_cpython.conda hash: md5: b61d4fbf583b8393d9d00ec106ad3658 sha256: 028a03968eb101a681fa4966b2c52e93c8db1e934861f8d108224f51ba2c1bc9 @@ -6046,7 +6046,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/python-3.11.12-h3f84c4b_0_cpython.conda + url: https://repo.prefix.dev/conda-forge/win-64/python-3.11.12-h3f84c4b_0_cpython.conda hash: md5: c1f91331274f591340e2f50e737dfbe9 sha256: 41e1c07eecff9436b9bb27724822229b2da6073af8461ede6c81b508c0677c56 @@ -6059,7 +6059,7 @@ package: dependencies: python: '>=3.9' six: '>=1.5' - url: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda hash: md5: 5ba79d7c71f03c678c8ead841f347d6e sha256: a50052536f1ef8516ed11a844f9413661829aa083304dc624c5925298d078d79 @@ -6072,7 +6072,7 @@ package: dependencies: python: '>=3.9' six: '>=1.5' - url: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda hash: md5: 5ba79d7c71f03c678c8ead841f347d6e sha256: a50052536f1ef8516ed11a844f9413661829aa083304dc624c5925298d078d79 @@ -6084,7 +6084,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.21.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/python-fastjsonschema-2.21.1-pyhd8ed1ab_0.conda hash: md5: 38e34d2d1d9dca4fb2b9a0a04f604e2c sha256: 1b09a28093071c1874862422696429d0d35bd0b8420698003ac004746c5e82a2 @@ -6096,7 +6096,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.21.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/python-fastjsonschema-2.21.1-pyhd8ed1ab_0.conda hash: md5: 38e34d2d1d9dca4fb2b9a0a04f604e2c sha256: 1b09a28093071c1874862422696429d0d35bd0b8420698003ac004746c5e82a2 @@ -6108,7 +6108,7 @@ package: platform: linux-64 dependencies: python: '>=3.6' - url: https://conda.anaconda.org/conda-forge/noarch/python-json-logger-2.0.7-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/python-json-logger-2.0.7-pyhd8ed1ab_0.conda hash: md5: a61bf9ec79426938ff785eb69dbb1960 sha256: 4790787fe1f4e8da616edca4acf6a4f8ed4e7c6967aa31b920208fc8f95efcca @@ -6120,7 +6120,7 @@ package: platform: win-64 dependencies: python: '>=3.6' - url: https://conda.anaconda.org/conda-forge/noarch/python-json-logger-2.0.7-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/python-json-logger-2.0.7-pyhd8ed1ab_0.conda hash: md5: a61bf9ec79426938ff785eb69dbb1960 sha256: 4790787fe1f4e8da616edca4acf6a4f8ed4e7c6967aa31b920208fc8f95efcca @@ -6138,7 +6138,7 @@ package: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* scipy: '>=1.8' - url: https://conda.anaconda.org/conda-forge/linux-64/python-mumps-0.0.3-py311h4b558b0_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/python-mumps-0.0.3-py311h4b558b0_0.conda hash: md5: 5c50e4db02aa7d89b5200773605175e1 sha256: a46217f37ead2d17a59626d8f23517ba0f3026b9dd281ec251e880b3afe4cb13 @@ -6157,7 +6157,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/python-mumps-0.0.3-py311h5bfbc98_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/python-mumps-0.0.3-py311h5bfbc98_0.conda hash: md5: 5e8a15c6501520752ca264fa7a1a762d sha256: 330afd54afd2087de0aa320be05dbbee64893359fe395067209e8c8fd9650b05 @@ -6169,7 +6169,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2025.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/python-tzdata-2025.2-pyhd8ed1ab_0.conda hash: md5: 88476ae6ebd24f39261e0854ac244f33 sha256: e8392a8044d56ad017c08fec2b0eb10ae3d1235ac967d0aab8bd7b41c4a5eaf0 @@ -6181,7 +6181,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2025.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/python-tzdata-2025.2-pyhd8ed1ab_0.conda hash: md5: 88476ae6ebd24f39261e0854ac244f33 sha256: e8392a8044d56ad017c08fec2b0eb10ae3d1235ac967d0aab8bd7b41c4a5eaf0 @@ -6192,7 +6192,7 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.11-6_cp311.conda + url: https://repo.prefix.dev/conda-forge/linux-64/python_abi-3.11-6_cp311.conda hash: md5: 37ec65e056b9964529c0e1e2697b9955 sha256: 2ff22fffe5bb93802c1687b5c4a34b9062394b78f23cfb5c1c1ef9b635bb030e @@ -6203,7 +6203,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/win-64/python_abi-3.11-6_cp311.conda + url: https://repo.prefix.dev/conda-forge/win-64/python_abi-3.11-6_cp311.conda hash: md5: 0cdb3079c532b4d216bc9efacd510138 sha256: 82b09808cc4f80212be7539d542d5853e0aaa593bc715f02b831c0ea0552b8bf @@ -6215,7 +6215,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda hash: md5: bc8e3267d44011051f2eb14d22fb0960 sha256: 8d2a8bf110cc1fc3df6904091dead158ba3e614d8402a83e51ed3a8aa93cdeb0 @@ -6227,7 +6227,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda hash: md5: bc8e3267d44011051f2eb14d22fb0960 sha256: 8d2a8bf110cc1fc3df6904091dead158ba3e614d8402a83e51ed3a8aa93cdeb0 @@ -6243,7 +6243,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/pywin32-307-py311hda3d55a_3.conda + url: https://repo.prefix.dev/conda-forge/win-64/pywin32-307-py311hda3d55a_3.conda hash: md5: 1bc10dbe3b8d03071070c962a2bdf65f sha256: 78a4ede098bbc122a3dff4e0e27255e30b236101818e8f499779c89670c58cd6 @@ -6260,7 +6260,7 @@ package: vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' winpty: '' - url: https://conda.anaconda.org/conda-forge/win-64/pywinpty-2.0.15-py311hda3d55a_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/pywinpty-2.0.15-py311hda3d55a_0.conda hash: md5: 8a142e0fcd43513c2e876d97ba98c0fa sha256: fbf3e3f2d5596e755bd4b83b5007fa629b184349781f46e137a4e80b6754c7c0 @@ -6276,7 +6276,7 @@ package: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* yaml: '>=0.2.5,<0.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0.2-py311h2dc5d0c_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pyyaml-6.0.2-py311h2dc5d0c_2.conda hash: md5: 014417753f948da1f70d132b2de573be sha256: d107ad62ed5c62764fba9400f2c423d89adf917d687c7f2e56c3bfed605fb5b3 @@ -6293,7 +6293,7 @@ package: vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' yaml: '>=0.2.5,<0.3.0a0' - url: https://conda.anaconda.org/conda-forge/win-64/pyyaml-6.0.2-py311h5082efb_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/pyyaml-6.0.2-py311h5082efb_2.conda hash: md5: e474ba674d780f0fa3b979ae9e81ba91 sha256: 6095e1d58c666f6a06c55338df09485eac34c76e43d92121d5786794e195aa4d @@ -6311,7 +6311,7 @@ package: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* zeromq: '>=4.3.5,<4.4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/pyzmq-26.4.0-py311h7deb3e3_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pyzmq-26.4.0-py311h7deb3e3_0.conda hash: md5: eb719a63f26215bba3ee5b0227c6452b sha256: e78fc8c500b96070359311082b4ebc5d66e52ddb2891861c728a247cf52892ba @@ -6329,7 +6329,7 @@ package: vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' zeromq: '>=4.3.5,<4.3.6.0a0' - url: https://conda.anaconda.org/conda-forge/win-64/pyzmq-26.4.0-py311h484c95c_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/pyzmq-26.4.0-py311h484c95c_0.conda hash: md5: 0497becb33761fca9b8cfcb9f7278361 sha256: d917b120cb10b32d90d40fc2b6a612cf75a9298d159e11da3a8672a3474b4f93 @@ -6342,7 +6342,7 @@ package: dependencies: libgcc: '>=13' ncurses: '>=6.5,<7.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda hash: md5: 283b96675859b20a825f8fa30f311446 sha256: 2d6d0c026902561ed77cd646b5021aef2d4db22e57a5b0178dfc669231e06d2c @@ -6357,7 +6357,7 @@ package: packaging: '' python: '>=3.9' requests: '' - url: https://conda.anaconda.org/conda-forge/noarch/readthedocs-sphinx-ext-2.2.5-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/readthedocs-sphinx-ext-2.2.5-pyhd8ed1ab_1.conda hash: md5: 42840a95562a02bef45e7b7fb24dcba4 sha256: e391356581919077b1639ebd13f4cbb0773acfd5710cfe4188921e8a0387dc6b @@ -6372,7 +6372,7 @@ package: packaging: '' python: '>=3.9' requests: '' - url: https://conda.anaconda.org/conda-forge/noarch/readthedocs-sphinx-ext-2.2.5-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/readthedocs-sphinx-ext-2.2.5-pyhd8ed1ab_1.conda hash: md5: 42840a95562a02bef45e7b7fb24dcba4 sha256: e391356581919077b1639ebd13f4cbb0773acfd5710cfe4188921e8a0387dc6b @@ -6387,7 +6387,7 @@ package: python: '>=3.9' rpds-py: '>=0.7.0' typing_extensions: '>=4.4.0' - url: https://conda.anaconda.org/conda-forge/noarch/referencing-0.36.2-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/referencing-0.36.2-pyh29332c3_0.conda hash: md5: 9140f1c09dd5489549c6a33931b943c7 sha256: e20909f474a6cece176dfc0dc1addac265deb5fa92ea90e975fbca48085b20c3 @@ -6402,7 +6402,7 @@ package: python: '>=3.9' rpds-py: '>=0.7.0' typing_extensions: '>=4.4.0' - url: https://conda.anaconda.org/conda-forge/noarch/referencing-0.36.2-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/referencing-0.36.2-pyh29332c3_0.conda hash: md5: 9140f1c09dd5489549c6a33931b943c7 sha256: e20909f474a6cece176dfc0dc1addac265deb5fa92ea90e975fbca48085b20c3 @@ -6418,7 +6418,7 @@ package: idna: '>=2.5,<4' python: '>=3.9' urllib3: '>=1.21.1,<3' - url: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda hash: md5: a9b9368f3701a417eac9edbcae7cb737 sha256: d701ca1136197aa121bbbe0e8c18db6b5c94acbd041c2b43c70e5ae104e1d8ad @@ -6434,7 +6434,7 @@ package: idna: '>=2.5,<4' python: '>=3.9' urllib3: '>=1.21.1,<3' - url: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda hash: md5: a9b9368f3701a417eac9edbcae7cb737 sha256: d701ca1136197aa121bbbe0e8c18db6b5c94acbd041c2b43c70e5ae104e1d8ad @@ -6447,7 +6447,7 @@ package: dependencies: python: '>=3.9' six: '' - url: https://conda.anaconda.org/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_1.conda hash: md5: 36de09a8d3e5d5e6f4ee63af49e59706 sha256: 2e4372f600490a6e0b3bac60717278448e323cab1c0fecd5f43f7c56535a99c5 @@ -6460,7 +6460,7 @@ package: dependencies: python: '>=3.9' six: '' - url: https://conda.anaconda.org/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_1.conda hash: md5: 36de09a8d3e5d5e6f4ee63af49e59706 sha256: 2e4372f600490a6e0b3bac60717278448e323cab1c0fecd5f43f7c56535a99c5 @@ -6472,7 +6472,7 @@ package: platform: linux-64 dependencies: python: '' - url: https://conda.anaconda.org/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2 hash: md5: 912a71cc01012ee38e6b90ddd561e36f sha256: 2a5b495a1de0f60f24d8a74578ebc23b24aa53279b1ad583755f223097c41c37 @@ -6484,7 +6484,7 @@ package: platform: win-64 dependencies: python: '' - url: https://conda.anaconda.org/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2 hash: md5: 912a71cc01012ee38e6b90ddd561e36f sha256: 2a5b495a1de0f60f24d8a74578ebc23b24aa53279b1ad583755f223097c41c37 @@ -6499,7 +6499,7 @@ package: libgcc: '>=13' python: '' python_abi: 3.11.* - url: https://conda.anaconda.org/conda-forge/linux-64/rpds-py-0.24.0-py311h687327b_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/rpds-py-0.24.0-py311h687327b_0.conda hash: md5: e2fc6063859ff5fd62f983c31e4bf521 sha256: a45aec5ad66dc54884bc782ac590cd26e00f738bfcf4f55b4d63c8ca22915a30 @@ -6515,7 +6515,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/rpds-py-0.24.0-py311ha250665_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/rpds-py-0.24.0-py311ha250665_0.conda hash: md5: 1f1ad2bacdff1d370c13be99709130da sha256: 83bcac24bf63b83d3b9560c448f8e353cc427b39ede10d6b8e2bf829866d654f @@ -6535,7 +6535,7 @@ package: python_abi: 3.11.* scipy: '' threadpoolctl: '>=2.0.0' - url: https://conda.anaconda.org/conda-forge/linux-64/scikit-learn-1.4.2-py311he08f58d_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/scikit-learn-1.4.2-py311he08f58d_1.conda hash: md5: fd4a80e35c05513590b33c83fc81dcc7 sha256: b818f7df6ae949012a38b41b6577ac2319569971b1a063c0386447ec2c6c09ed @@ -6555,7 +6555,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/scikit-learn-1.4.2-py311hdcb8d17_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/scikit-learn-1.4.2-py311hdcb8d17_1.conda hash: md5: 4179839852432a4e95b5ff86dd5faa9c sha256: e38cac2faa50b04ae06da6a7c9690ad8f893f2b3318b052ac15710221f32e231 @@ -6577,7 +6577,7 @@ package: numpy: <2.3 python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://conda.anaconda.org/conda-forge/linux-64/scipy-1.14.1-py311he9a78e4_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/scipy-1.14.1-py311he9a78e4_2.conda hash: md5: c4aee8cadc4c9fc9a91aca0803473690 sha256: b28d91a55205b886308da82428cd522e9dce0ef912445a2e9d89318379c15759 @@ -6597,7 +6597,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/scipy-1.14.1-py311hf16d85f_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/scipy-1.14.1-py311hf16d85f_2.conda hash: md5: 8d3393f64df60e48be00d06ccb63bb18 sha256: ef98270586c1dfb551f9ff868312554f248f155406f924b91df07cd46c14d302 @@ -6610,7 +6610,7 @@ package: dependencies: __linux: '' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/send2trash-1.8.3-pyh0d859eb_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/send2trash-1.8.3-pyh0d859eb_1.conda hash: md5: 938c8de6b9de091997145b3bf25cdbf9 sha256: 00926652bbb8924e265caefdb1db100f86a479e8f1066efe395d5552dde54d02 @@ -6624,34 +6624,34 @@ package: __win: '' python: '>=3.9' pywin32: '' - url: https://conda.anaconda.org/conda-forge/noarch/send2trash-1.8.3-pyh5737063_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/send2trash-1.8.3-pyh5737063_1.conda hash: md5: e6a4e906051565caf5fdae5b0415b654 sha256: ba8b93df52e0d625177907852340d735026c81118ac197f61f1f5baea19071ad category: dev optional: true - name: setuptools - version: 78.1.0 + version: 78.1.1 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/setuptools-78.1.0-pyhff2d567_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/setuptools-78.1.1-pyhff2d567_0.conda hash: - md5: a42da9837e46c53494df0044c3eb1f53 - sha256: d4c74d2140f2fbc72fe5320cbd65f3fd1d1f7832ab4d7825c37c38ab82440ae2 + md5: 72437384f9364b6baf20b6dd68d282c2 + sha256: 33a0cab4724d8130055f65e6edc101df7136f2f26cefb52669df88de8aeee28c category: main optional: false - name: setuptools - version: 78.1.0 + version: 78.1.1 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/setuptools-78.1.0-pyhff2d567_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/setuptools-78.1.1-pyhff2d567_0.conda hash: - md5: a42da9837e46c53494df0044c3eb1f53 - sha256: d4c74d2140f2fbc72fe5320cbd65f3fd1d1f7832ab4d7825c37c38ab82440ae2 + md5: 72437384f9364b6baf20b6dd68d282c2 + sha256: 33a0cab4724d8130055f65e6edc101df7136f2f26cefb52669df88de8aeee28c category: main optional: false - name: six @@ -6660,7 +6660,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda hash: md5: a451d576819089b0d672f18768be0f65 sha256: 41db0180680cc67c3fa76544ffd48d6a5679d96f4b71d7498a759e94edc9a2db @@ -6672,7 +6672,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda hash: md5: a451d576819089b0d672f18768be0f65 sha256: 41db0180680cc67c3fa76544ffd48d6a5679d96f4b71d7498a759e94edc9a2db @@ -6684,7 +6684,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_1.conda hash: md5: bf7a226e58dfb8346c70df36065d86c9 sha256: c2248418c310bdd1719b186796ae50a8a77ce555228b6acd32768e2543a15012 @@ -6696,7 +6696,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_1.conda hash: md5: bf7a226e58dfb8346c70df36065d86c9 sha256: c2248418c310bdd1719b186796ae50a8a77ce555228b6acd32768e2543a15012 @@ -6708,7 +6708,7 @@ package: platform: linux-64 dependencies: python: '>=2' - url: https://conda.anaconda.org/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 4d22a9315e78c6827f806065957d566e sha256: a0fd916633252d99efb6223b1050202841fa8d2d53dacca564b0ed77249d3228 @@ -6720,7 +6720,7 @@ package: platform: win-64 dependencies: python: '>=2' - url: https://conda.anaconda.org/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 4d22a9315e78c6827f806065957d566e sha256: a0fd916633252d99efb6223b1050202841fa8d2d53dacca564b0ed77249d3228 @@ -6732,7 +6732,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_1.conda hash: md5: 0401a17ae845fa72c7210e206ec5647d sha256: d1e3e06b5cf26093047e63c8cc77b70d970411c5cbc0cb1fad461a8a8df599f7 @@ -6744,7 +6744,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_1.conda hash: md5: 0401a17ae845fa72c7210e206ec5647d sha256: d1e3e06b5cf26093047e63c8cc77b70d970411c5cbc0cb1fad461a8a8df599f7 @@ -6756,7 +6756,7 @@ package: platform: linux-64 dependencies: python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda hash: md5: 3f144b2c34f8cb5a9abd9ed23a39c561 sha256: 54ae221033db8fbcd4998ccb07f3c3828b4d77e73b0c72b18c1d6a507059059c @@ -6768,7 +6768,7 @@ package: platform: win-64 dependencies: python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda hash: md5: 3f144b2c34f8cb5a9abd9ed23a39c561 sha256: 54ae221033db8fbcd4998ccb07f3c3828b4d77e73b0c72b18c1d6a507059059c @@ -6797,7 +6797,7 @@ package: sphinxcontrib-jsmath: '' sphinxcontrib-qthelp: '' sphinxcontrib-serializinghtml: '>=1.1.5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-5.3.0-pyhd8ed1ab_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-5.3.0-pyhd8ed1ab_0.tar.bz2 hash: md5: f9e1fcfe235d655900bfeb6aee426472 sha256: f11fd5fb4ae2c65f41ae86e7408e3ab44844898d928264aa9e89929fffc685c8 @@ -6826,7 +6826,7 @@ package: sphinxcontrib-jsmath: '' sphinxcontrib-qthelp: '' sphinxcontrib-serializinghtml: '>=1.1.5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-5.3.0-pyhd8ed1ab_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-5.3.0-pyhd8ed1ab_0.tar.bz2 hash: md5: f9e1fcfe235d655900bfeb6aee426472 sha256: f11fd5fb4ae2c65f41ae86e7408e3ab44844898d928264aa9e89929fffc685c8 @@ -6840,7 +6840,7 @@ package: pydata-sphinx-theme: '>=0.15.2' python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-book-theme-1.1.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-book-theme-1.1.3-pyhd8ed1ab_1.conda hash: md5: 501e2d6d8aa1b8d82d2707ce8c90b287 sha256: cf1d3ae6d28042954ac750f6948678fefa619681c3994d2637d747d96a1139ea @@ -6854,7 +6854,7 @@ package: pydata-sphinx-theme: '>=0.15.2' python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-book-theme-1.1.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-book-theme-1.1.3-pyhd8ed1ab_1.conda hash: md5: 501e2d6d8aa1b8d82d2707ce8c90b287 sha256: cf1d3ae6d28042954ac750f6948678fefa619681c3994d2637d747d96a1139ea @@ -6867,7 +6867,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=1.8' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-comments-0.0.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-comments-0.0.3-pyhd8ed1ab_1.conda hash: md5: 30e02fa8e40287da066e348c95ff5609 sha256: 00129f91b905441a9e27c46ef32c22617743eb4a4f7207e1dd84bc19505d4381 @@ -6880,7 +6880,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=1.8' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-comments-0.0.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-comments-0.0.3-pyhd8ed1ab_1.conda hash: md5: 30e02fa8e40287da066e348c95ff5609 sha256: 00129f91b905441a9e27c46ef32c22617743eb4a4f7207e1dd84bc19505d4381 @@ -6893,7 +6893,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=1.8' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-copybutton-0.5.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-copybutton-0.5.2-pyhd8ed1ab_1.conda hash: md5: bf22cb9c439572760316ce0748af3713 sha256: 8cd892e49cb4d00501bc4439fb0c73ca44905f01a65b2b7fa05ba0e8f3924f19 @@ -6906,7 +6906,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=1.8' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-copybutton-0.5.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-copybutton-0.5.2-pyhd8ed1ab_1.conda hash: md5: bf22cb9c439572760316ce0748af3713 sha256: 8cd892e49cb4d00501bc4439fb0c73ca44905f01a65b2b7fa05ba0e8f3924f19 @@ -6919,7 +6919,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5,<8' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-design-0.6.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-design-0.6.1-pyhd8ed1ab_0.conda hash: md5: 51b2433e4a223b14defee96d3caf9bab sha256: 99a44df1d09a27e40002ebaf76792dac75c9cb1386af313b272a4251c8047640 @@ -6932,7 +6932,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5,<8' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-design-0.6.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-design-0.6.1-pyhd8ed1ab_0.conda hash: md5: 51b2433e4a223b14defee96d3caf9bab sha256: 99a44df1d09a27e40002ebaf76792dac75c9cb1386af313b272a4251c8047640 @@ -6947,7 +6947,7 @@ package: python: '>=3.9' pyyaml: '' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-external-toc-1.0.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-external-toc-1.0.1-pyhd8ed1ab_1.conda hash: md5: d248f9db0f1c2e7c480b058925afa9c5 sha256: 47dda7135f9fb1777b7066c3b9260fdd796d6ec2aeb8804161f39c65b3461401 @@ -6962,7 +6962,7 @@ package: python: '>=3.9' pyyaml: '' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-external-toc-1.0.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-external-toc-1.0.1-pyhd8ed1ab_1.conda hash: md5: d248f9db0f1c2e7c480b058925afa9c5 sha256: 47dda7135f9fb1777b7066c3b9260fdd796d6ec2aeb8804161f39c65b3461401 @@ -6976,7 +6976,7 @@ package: packaging: '' python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-jupyterbook-latex-1.0.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-jupyterbook-latex-1.0.0-pyhd8ed1ab_1.conda hash: md5: 9261bc5d987013f5d8dc58061c34f1a3 sha256: b64c031795918f26ddeb5148ede2d3a4944cd9f5461cf72bde3f28acdc71d2f3 @@ -6990,7 +6990,7 @@ package: packaging: '' python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-jupyterbook-latex-1.0.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-jupyterbook-latex-1.0.0-pyhd8ed1ab_1.conda hash: md5: 9261bc5d987013f5d8dc58061c34f1a3 sha256: b64c031795918f26ddeb5148ede2d3a4944cd9f5461cf72bde3f28acdc71d2f3 @@ -7003,7 +7003,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=3' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-multitoc-numbering-0.1.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-multitoc-numbering-0.1.3-pyhd8ed1ab_1.conda hash: md5: cc5fc0988f0fedab436361b9b5906a58 sha256: 9fa48b33334c3a9971c96dd3d921950e8350cfa88a8e8ebaec6d8261071ea2ac @@ -7016,7 +7016,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=3' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-multitoc-numbering-0.1.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-multitoc-numbering-0.1.3-pyhd8ed1ab_1.conda hash: md5: cc5fc0988f0fedab436361b9b5906a58 sha256: 9fa48b33334c3a9971c96dd3d921950e8350cfa88a8e8ebaec6d8261071ea2ac @@ -7029,7 +7029,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=4' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-thebe-0.3.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-thebe-0.3.1-pyhd8ed1ab_1.conda hash: md5: f6627ce09745a0f822cc6e7de8cf4f99 sha256: 9d0cd52edcb2274bf7c8e9327317d9bb48e1d092afeaed093e0242876ad3c008 @@ -7042,7 +7042,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=4' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-thebe-0.3.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-thebe-0.3.1-pyhd8ed1ab_1.conda hash: md5: f6627ce09745a0f822cc6e7de8cf4f99 sha256: 9d0cd52edcb2274bf7c8e9327317d9bb48e1d092afeaed093e0242876ad3c008 @@ -7056,7 +7056,7 @@ package: docutils: '' python: '>=3.6' sphinx: '' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-togglebutton-0.3.2-pyhd8ed1ab_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-togglebutton-0.3.2-pyhd8ed1ab_0.tar.bz2 hash: md5: 382738101934261ea7931d1460e64868 sha256: 0dcee238aae6337fae5eaf1f9a29b0c51ed9834ae501fccb2cde0fed8dae1a88 @@ -7070,7 +7070,7 @@ package: docutils: '' python: '>=3.6' sphinx: '' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-togglebutton-0.3.2-pyhd8ed1ab_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-togglebutton-0.3.2-pyhd8ed1ab_0.tar.bz2 hash: md5: 382738101934261ea7931d1460e64868 sha256: 0dcee238aae6337fae5eaf1f9a29b0c51ed9834ae501fccb2cde0fed8dae1a88 @@ -7083,7 +7083,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 16e3f039c0aa6446513e94ab18a8784b sha256: d7433a344a9ad32a680b881c81b0034bc61618d12c39dd6e3309abeffa9577ba @@ -7096,7 +7096,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 16e3f039c0aa6446513e94ab18a8784b sha256: d7433a344a9ad32a680b881c81b0034bc61618d12c39dd6e3309abeffa9577ba @@ -7114,7 +7114,7 @@ package: pybtex-docutils: '>=1' python: '>=3.6' sphinx: '>=2.1' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-bibtex-2.5.0-pyhd8ed1ab_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-bibtex-2.5.0-pyhd8ed1ab_0.tar.bz2 hash: md5: b2e5c9aece936ebf9f26abdf71ddd74b sha256: d5b02d285909b4501a469857b1a88a91a849d5f28bbe64b9e6c3e86d2388d345 @@ -7132,7 +7132,7 @@ package: pybtex-docutils: '>=1' python: '>=3.6' sphinx: '>=2.1' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-bibtex-2.5.0-pyhd8ed1ab_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-bibtex-2.5.0-pyhd8ed1ab_0.tar.bz2 hash: md5: b2e5c9aece936ebf9f26abdf71ddd74b sha256: d5b02d285909b4501a469857b1a88a91a849d5f28bbe64b9e6c3e86d2388d345 @@ -7145,7 +7145,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 910f28a05c178feba832f842155cbfff sha256: 55d5076005d20b84b20bee7844e686b7e60eb9f683af04492e598a622b12d53d @@ -7158,7 +7158,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 910f28a05c178feba832f842155cbfff sha256: 55d5076005d20b84b20bee7844e686b7e60eb9f683af04492e598a622b12d53d @@ -7171,7 +7171,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_1.conda hash: md5: e9fb3fe8a5b758b4aff187d434f94f03 sha256: c1492c0262ccf16694bdcd3bb62aa4627878ea8782d5cd3876614ffeb62b3996 @@ -7184,7 +7184,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_1.conda hash: md5: e9fb3fe8a5b758b4aff187d434f94f03 sha256: c1492c0262ccf16694bdcd3bb62aa4627878ea8782d5cd3876614ffeb62b3996 @@ -7196,7 +7196,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_1.conda hash: md5: fa839b5ff59e192f411ccc7dae6588bb sha256: 578bef5ec630e5b2b8810d898bbbf79b9ae66d49b7938bcc3efc364e679f2a62 @@ -7208,7 +7208,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_1.conda hash: md5: fa839b5ff59e192f411ccc7dae6588bb sha256: 578bef5ec630e5b2b8810d898bbbf79b9ae66d49b7938bcc3efc364e679f2a62 @@ -7221,7 +7221,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 00534ebcc0375929b45c3039b5ba7636 sha256: c664fefae4acdb5fae973bdde25836faf451f41d04342b64a358f9a7753c92ca @@ -7234,7 +7234,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 00534ebcc0375929b45c3039b5ba7636 sha256: c664fefae4acdb5fae973bdde25836faf451f41d04342b64a358f9a7753c92ca @@ -7247,7 +7247,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda hash: md5: 3bc61f7161d28137797e038263c04c54 sha256: 64d89ecc0264347486971a94487cb8d7c65bfc0176750cf7502b8a272f4ab557 @@ -7260,7 +7260,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda hash: md5: 3bc61f7161d28137797e038263c04c54 sha256: 64d89ecc0264347486971a94487cb8d7c65bfc0176750cf7502b8a272f4ab557 @@ -7277,7 +7277,7 @@ package: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* typing-extensions: '>=4.6.0' - url: https://conda.anaconda.org/conda-forge/linux-64/sqlalchemy-2.0.40-py311h9ecbd09_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/sqlalchemy-2.0.40-py311h9ecbd09_0.conda hash: md5: 2e0d3c5a4afb139b23a68a23a2980851 sha256: 61fd16afea0e24b99b05ee40593edcc966dad436a4ab35b62b4665a3f6bd32f6 @@ -7295,7 +7295,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/sqlalchemy-2.0.40-py311he736701_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/sqlalchemy-2.0.40-py311he736701_0.conda hash: md5: 6dd7c29db6d076ce90c7b62d7f4fb5af sha256: 6a58a12572600a723a108f3c4974edfdbe63a01dbed186a30c8044a3f8193741 @@ -7310,7 +7310,7 @@ package: executing: '' pure_eval: '' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda hash: md5: b1b505328da7a6b246787df4b5a49fbc sha256: 570da295d421661af487f1595045760526964f41471021056e993e73089e9c41 @@ -7325,7 +7325,7 @@ package: executing: '' pure_eval: '' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda hash: md5: b1b505328da7a6b246787df4b5a49fbc sha256: 570da295d421661af487f1595045760526964f41471021056e993e73089e9c41 @@ -7337,7 +7337,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/tabulate-0.9.0-pyhd8ed1ab_2.conda + url: https://repo.prefix.dev/conda-forge/noarch/tabulate-0.9.0-pyhd8ed1ab_2.conda hash: md5: 959484a66b4b76befcddc4fa97c95567 sha256: 090023bddd40d83468ef86573976af8c514f64119b2bd814ee63a838a542720a @@ -7349,7 +7349,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/tabulate-0.9.0-pyhd8ed1ab_2.conda + url: https://repo.prefix.dev/conda-forge/noarch/tabulate-0.9.0-pyhd8ed1ab_2.conda hash: md5: 959484a66b4b76befcddc4fa97c95567 sha256: 090023bddd40d83468ef86573976af8c514f64119b2bd814ee63a838a542720a @@ -7364,7 +7364,7 @@ package: libgcc: '>=13' libhwloc: '>=2.11.2,<2.11.3.0a0' libstdcxx: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/tbb-2021.13.0-hceb3a55_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/tbb-2021.13.0-hceb3a55_1.conda hash: md5: ba7726b8df7b9d34ea80e82b097a4893 sha256: 65463732129899770d54b1fbf30e1bb82fdebda9d7553caf08d23db4590cd691 @@ -7379,7 +7379,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/tbb-2021.13.0-h62715c5_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/tbb-2021.13.0-h62715c5_1.conda hash: md5: 9190dd0a23d925f7602f9628b3aed511 sha256: 03cc5442046485b03dd1120d0f49d35a7e522930a2ab82f275e938e17b07b302 @@ -7391,7 +7391,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/tblib-3.1.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/tblib-3.1.0-pyhd8ed1ab_0.conda hash: md5: a15c62b8a306b8978f094f76da2f903f sha256: a83c83f5e622a2f34fb1d179c55c3ff912429cd0a54f9f3190ae44a0fdba2ad2 @@ -7403,7 +7403,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/tblib-3.1.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/tblib-3.1.0-pyhd8ed1ab_0.conda hash: md5: a15c62b8a306b8978f094f76da2f903f sha256: a83c83f5e622a2f34fb1d179c55c3ff912429cd0a54f9f3190ae44a0fdba2ad2 @@ -7418,7 +7418,7 @@ package: ptyprocess: '' python: '>=3.8' tornado: '>=6.1.0' - url: https://conda.anaconda.org/conda-forge/noarch/terminado-0.18.1-pyh0d859eb_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/terminado-0.18.1-pyh0d859eb_0.conda hash: md5: efba281bbdae5f6b0a1d53c6d4a97c93 sha256: b300557c0382478cf661ddb520263508e4b3b5871b471410450ef2846e8c352c @@ -7433,7 +7433,7 @@ package: python: '>=3.8' pywinpty: '>=1.1.0' tornado: '>=6.1.0' - url: https://conda.anaconda.org/conda-forge/noarch/terminado-0.18.1-pyh5737063_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/terminado-0.18.1-pyh5737063_0.conda hash: md5: 4abd500577430a942a995fd0d09b76a2 sha256: 8cb078291fd7882904e3de594d299c8de16dd3af7405787fce6919a385cfc238 @@ -7445,7 +7445,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/threadpoolctl-3.6.0-pyhecae5ae_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/threadpoolctl-3.6.0-pyhecae5ae_0.conda hash: md5: 9d64911b31d57ca443e9f1e36b04385f sha256: 6016672e0e72c4cf23c0cf7b1986283bd86a9c17e8d319212d78d8e9ae42fdfd @@ -7457,7 +7457,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/threadpoolctl-3.6.0-pyhecae5ae_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/threadpoolctl-3.6.0-pyhecae5ae_0.conda hash: md5: 9d64911b31d57ca443e9f1e36b04385f sha256: 6016672e0e72c4cf23c0cf7b1986283bd86a9c17e8d319212d78d8e9ae42fdfd @@ -7470,7 +7470,7 @@ package: dependencies: python: '>=3.5' webencodings: '>=0.4' - url: https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/tinycss2-1.4.0-pyhd8ed1ab_0.conda hash: md5: f1acf5fdefa8300de697982bcb1761c9 sha256: cad582d6f978276522f84bd209a5ddac824742fe2d452af6acf900f8650a73a2 @@ -7483,7 +7483,7 @@ package: dependencies: python: '>=3.5' webencodings: '>=0.4' - url: https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/tinycss2-1.4.0-pyhd8ed1ab_0.conda hash: md5: f1acf5fdefa8300de697982bcb1761c9 sha256: cad582d6f978276522f84bd209a5ddac824742fe2d452af6acf900f8650a73a2 @@ -7496,7 +7496,7 @@ package: dependencies: libgcc-ng: '>=12' libzlib: '>=1.2.13,<2.0.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda + url: https://repo.prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda hash: md5: d453b98d9c83e71da0741bb0ff4d76bc sha256: e0569c9caa68bf476bead1bed3d79650bb080b532c64a4af7d8ca286c08dea4e @@ -7510,7 +7510,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-h5226925_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/tk-8.6.13-h5226925_1.conda hash: md5: fc048363eb8f03cd1737600a5d08aafe sha256: 2c4e914f521ccb2718946645108c9bd3fc3216ba69aea20c2c3cedbd8db32bb1 @@ -7522,7 +7522,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_1.conda hash: md5: b0dd904de08b7db706167240bf37b164 sha256: 34f3a83384ac3ac30aefd1309e69498d8a4aa0bf2d1f21c645f79b180e378938 @@ -7534,7 +7534,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_1.conda hash: md5: b0dd904de08b7db706167240bf37b164 sha256: 34f3a83384ac3ac30aefd1309e69498d8a4aa0bf2d1f21c645f79b180e378938 @@ -7546,7 +7546,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda hash: md5: ac944244f1fed2eb49bae07193ae8215 sha256: 18636339a79656962723077df9a56c0ac7b8a864329eb8f847ee3d38495b863e @@ -7558,7 +7558,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda hash: md5: ac944244f1fed2eb49bae07193ae8215 sha256: 18636339a79656962723077df9a56c0ac7b8a864329eb8f847ee3d38495b863e @@ -7570,7 +7570,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.13.2-pyha770c72_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.2-pyha770c72_1.conda hash: md5: 1d9ab4fc875c52db83f9c9b40af4e2c8 sha256: 986fae65f5568e95dbf858d08d77a0f9cca031345a98550f1d4b51d36d8811e2 @@ -7582,7 +7582,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.13.2-pyha770c72_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.2-pyha770c72_1.conda hash: md5: 1d9ab4fc875c52db83f9c9b40af4e2c8 sha256: 986fae65f5568e95dbf858d08d77a0f9cca031345a98550f1d4b51d36d8811e2 @@ -7594,7 +7594,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/toolz-1.0.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/toolz-1.0.0-pyhd8ed1ab_1.conda hash: md5: 40d0ed782a8aaa16ef248e68c06c168d sha256: eda38f423c33c2eaeca49ed946a8d3bf466cc3364970e083a65eb2fd85258d87 @@ -7606,7 +7606,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/toolz-1.0.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/toolz-1.0.0-pyhd8ed1ab_1.conda hash: md5: 40d0ed782a8aaa16ef248e68c06c168d sha256: eda38f423c33c2eaeca49ed946a8d3bf466cc3364970e083a65eb2fd85258d87 @@ -7621,7 +7621,7 @@ package: libgcc: '>=13' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://conda.anaconda.org/conda-forge/linux-64/tornado-6.4.2-py311h9ecbd09_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/tornado-6.4.2-py311h9ecbd09_0.conda hash: md5: df3aee9c3e44489257a840b8354e77b9 sha256: afa3489113154b5cb0724b0bf120b62df91f426dabfe5d02f2ba09e90d346b28 @@ -7637,7 +7637,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/tornado-6.4.2-py311he736701_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/tornado-6.4.2-py311he736701_0.conda hash: md5: 7e33077ce1bc0bf45c45a92e37432f16 sha256: 7e313f1724e5eb7d13f7a1ebd6026a378f3f58a638ba7cdc3bd452c01323bb29 @@ -7650,7 +7650,7 @@ package: dependencies: colorama: '' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_1.conda hash: md5: 9efbfdc37242619130ea42b1cc4ed861 sha256: 11e2c85468ae9902d24a27137b6b39b4a78099806e551d390e394a8c34b48e40 @@ -7663,7 +7663,7 @@ package: dependencies: colorama: '' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_1.conda hash: md5: 9efbfdc37242619130ea42b1cc4ed861 sha256: 11e2c85468ae9902d24a27137b6b39b4a78099806e551d390e394a8c34b48e40 @@ -7675,7 +7675,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda hash: md5: 019a7385be9af33791c989871317e1ed sha256: f39a5620c6e8e9e98357507262a7869de2ae8cc07da8b7f84e517c9fd6c2b959 @@ -7687,7 +7687,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda hash: md5: 019a7385be9af33791c989871317e1ed sha256: f39a5620c6e8e9e98357507262a7869de2ae8cc07da8b7f84e517c9fd6c2b959 @@ -7699,7 +7699,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/types-python-dateutil-2.9.0.20241206-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/types-python-dateutil-2.9.0.20241206-pyhd8ed1ab_0.conda hash: md5: 1dbc4a115e2ad9fb7f9d5b68397f66f9 sha256: 8b98cd9464837174ab58aaa912fc95d5831879864676650a383994033533b8d1 @@ -7711,7 +7711,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/types-python-dateutil-2.9.0.20241206-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/types-python-dateutil-2.9.0.20241206-pyhd8ed1ab_0.conda hash: md5: 1dbc4a115e2ad9fb7f9d5b68397f66f9 sha256: 8b98cd9464837174ab58aaa912fc95d5831879864676650a383994033533b8d1 @@ -7723,7 +7723,7 @@ package: platform: linux-64 dependencies: typing_extensions: ==4.13.2 - url: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.13.2-h0e9735f_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.13.2-h0e9735f_0.conda hash: md5: 568ed1300869dca0ba09fb750cda5dbb sha256: 4865fce0897d3cb0ffc8998219157a8325f6011c136e6fd740a9a6b169419296 @@ -7735,7 +7735,7 @@ package: platform: win-64 dependencies: typing_extensions: ==4.13.2 - url: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.13.2-h0e9735f_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.13.2-h0e9735f_0.conda hash: md5: 568ed1300869dca0ba09fb750cda5dbb sha256: 4865fce0897d3cb0ffc8998219157a8325f6011c136e6fd740a9a6b169419296 @@ -7748,7 +7748,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '>=4.12.0' - url: https://conda.anaconda.org/conda-forge/noarch/typing-inspection-0.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.0-pyhd8ed1ab_0.conda hash: md5: c5c76894b6b7bacc888ba25753bc8677 sha256: 172f971d70e1dbb978f6061d3f72be463d0f629155338603450d8ffe87cbf89d @@ -7761,7 +7761,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '>=4.12.0' - url: https://conda.anaconda.org/conda-forge/noarch/typing-inspection-0.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.0-pyhd8ed1ab_0.conda hash: md5: c5c76894b6b7bacc888ba25753bc8677 sha256: 172f971d70e1dbb978f6061d3f72be463d0f629155338603450d8ffe87cbf89d @@ -7773,7 +7773,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.13.2-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.13.2-pyh29332c3_0.conda hash: md5: 83fc6ae00127671e301c9f44254c31b8 sha256: a8aaf351e6461de0d5d47e4911257e25eec2fa409d71f3b643bb2f748bde1c08 @@ -7785,7 +7785,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.13.2-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.13.2-pyh29332c3_0.conda hash: md5: 83fc6ae00127671e301c9f44254c31b8 sha256: a8aaf351e6461de0d5d47e4911257e25eec2fa409d71f3b643bb2f748bde1c08 @@ -7797,7 +7797,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/typing_utils-0.1.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing_utils-0.1.0-pyhd8ed1ab_1.conda hash: md5: f6d7aa696c67756a650e91e15e88223c sha256: 3088d5d873411a56bf988eee774559335749aed6f6c28e07bf933256afb9eb6c @@ -7809,7 +7809,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/typing_utils-0.1.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing_utils-0.1.0-pyhd8ed1ab_1.conda hash: md5: f6d7aa696c67756a650e91e15e88223c sha256: 3088d5d873411a56bf988eee774559335749aed6f6c28e07bf933256afb9eb6c @@ -7820,7 +7820,7 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda hash: md5: 4222072737ccff51314b5ece9c7d6f5a sha256: 5aaa366385d716557e365f0a4e9c3fca43ba196872abbbe3d56bb610d131e192 @@ -7831,7 +7831,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda hash: md5: 4222072737ccff51314b5ece9c7d6f5a sha256: 5aaa366385d716557e365f0a4e9c3fca43ba196872abbbe3d56bb610d131e192 @@ -7843,7 +7843,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/uc-micro-py-1.0.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/uc-micro-py-1.0.3-pyhd8ed1ab_1.conda hash: md5: 9c96c9876ba45368a03056ddd0f20431 sha256: a2f837780af450d633efc052219c31378bcad31356766663fb88a99e8e4c817b @@ -7855,7 +7855,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/uc-micro-py-1.0.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/uc-micro-py-1.0.3-pyhd8ed1ab_1.conda hash: md5: 9c96c9876ba45368a03056ddd0f20431 sha256: a2f837780af450d633efc052219c31378bcad31356766663fb88a99e8e4c817b @@ -7866,7 +7866,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_1.conda hash: md5: 6797b005cd0f439c4c5c9ac565783700 sha256: db8dead3dd30fb1a032737554ce91e2819b43496a0db09927edf01c32b577450 @@ -7881,7 +7881,7 @@ package: libgcc: '>=13' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://conda.anaconda.org/conda-forge/linux-64/unicodedata2-16.0.0-py311h9ecbd09_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/unicodedata2-16.0.0-py311h9ecbd09_0.conda hash: md5: 51a12678b609f5794985fda8372b1a49 sha256: e786fb0925515fffc83e393d2a0e2814eaf9be8a434f1982b399841a2c07980b @@ -7897,7 +7897,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/unicodedata2-16.0.0-py311he736701_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/unicodedata2-16.0.0-py311he736701_0.conda hash: md5: 5ec4da89151e9d55f9ecad019f2d1e58 sha256: 3f626553bfb49ac756cf40e0c10ecb3a915a86f64e036924ab956b37ad1fa9f4 @@ -7909,7 +7909,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/uri-template-1.3.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/uri-template-1.3.0-pyhd8ed1ab_1.conda hash: md5: e7cb0f5745e4c5035a460248334af7eb sha256: e0eb6c8daf892b3056f08416a96d68b0a358b7c46b99c8a50481b22631a4dfc0 @@ -7921,7 +7921,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/uri-template-1.3.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/uri-template-1.3.0-pyhd8ed1ab_1.conda hash: md5: e7cb0f5745e4c5035a460248334af7eb sha256: e0eb6c8daf892b3056f08416a96d68b0a358b7c46b99c8a50481b22631a4dfc0 @@ -7937,7 +7937,7 @@ package: pysocks: '>=1.5.6,<2.0,!=1.5.7' python: '>=3.9' zstandard: '>=0.18.0' - url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda hash: md5: c1e349028e0052c4eea844e94f773065 sha256: a25403b76f7f03ca1a906e1ef0f88521edded991b9897e7fed56a3e334b3db8c @@ -7953,7 +7953,7 @@ package: pysocks: '>=1.5.6,<2.0,!=1.5.7' python: '>=3.9' zstandard: '>=0.18.0' - url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda hash: md5: c1e349028e0052c4eea844e94f773065 sha256: a25403b76f7f03ca1a906e1ef0f88521edded991b9897e7fed56a3e334b3db8c @@ -7965,7 +7965,7 @@ package: platform: win-64 dependencies: vc14_runtime: '>=14.42.34433' - url: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-h2b53caa_26.conda + url: https://repo.prefix.dev/conda-forge/win-64/vc-14.3-h2b53caa_26.conda hash: md5: d3f0381e38093bde620a8d85f266ae55 sha256: 7a685b5c37e9713fa314a0d26b8b1d7a2e6de5ab758698199b5d5b6dba2e3ce1 @@ -7977,7 +7977,7 @@ package: platform: win-64 dependencies: ucrt: '>=10.0.20348.0' - url: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.42.34438-hfd919c2_26.conda + url: https://repo.prefix.dev/conda-forge/win-64/vc14_runtime-14.42.34438-hfd919c2_26.conda hash: md5: 91651a36d31aa20c7ba36299fb7068f4 sha256: 30dcb71bb166e351aadbdc18f1718757c32cdaa0e1e5d9368469ee44f6bf4709 @@ -7989,7 +7989,7 @@ package: platform: win-64 dependencies: vc14_runtime: '>=14.42.34438' - url: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.42.34438-h7142326_26.conda + url: https://repo.prefix.dev/conda-forge/win-64/vs2015_runtime-14.42.34438-h7142326_26.conda hash: md5: 3357e4383dbce31eed332008ede242ab sha256: 432f2937206f1ad4a77e39f84fabc1ce7d2472b669836fb72bd2bfd19a2defc9 @@ -8001,7 +8001,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.13-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/wcwidth-0.2.13-pyhd8ed1ab_1.conda hash: md5: b68980f2495d096e71c7fd9d7ccf63e6 sha256: f21e63e8f7346f9074fd00ca3b079bd3d2fa4d71f1f89d5b6934bf31446dc2a5 @@ -8013,7 +8013,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.13-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/wcwidth-0.2.13-pyhd8ed1ab_1.conda hash: md5: b68980f2495d096e71c7fd9d7ccf63e6 sha256: f21e63e8f7346f9074fd00ca3b079bd3d2fa4d71f1f89d5b6934bf31446dc2a5 @@ -8025,7 +8025,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/webcolors-24.11.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/webcolors-24.11.1-pyhd8ed1ab_0.conda hash: md5: b49f7b291e15494aafb0a7d74806f337 sha256: 08315dc2e61766a39219b2d82685fc25a56b2817acf84d5b390176080eaacf99 @@ -8037,7 +8037,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/webcolors-24.11.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/webcolors-24.11.1-pyhd8ed1ab_0.conda hash: md5: b49f7b291e15494aafb0a7d74806f337 sha256: 08315dc2e61766a39219b2d82685fc25a56b2817acf84d5b390176080eaacf99 @@ -8049,7 +8049,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_3.conda + url: https://repo.prefix.dev/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_3.conda hash: md5: 2841eb5bfc75ce15e9a0054b98dcd64d sha256: 19ff205e138bb056a46f9e3839935a2e60bd1cf01c8241a5e172a422fed4f9c6 @@ -8061,7 +8061,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_3.conda + url: https://repo.prefix.dev/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_3.conda hash: md5: 2841eb5bfc75ce15e9a0054b98dcd64d sha256: 19ff205e138bb056a46f9e3839935a2e60bd1cf01c8241a5e172a422fed4f9c6 @@ -8073,7 +8073,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/websocket-client-1.8.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/websocket-client-1.8.0-pyhd8ed1ab_1.conda hash: md5: 84f8f77f0a9c6ef401ee96611745da8f sha256: 1dd84764424ffc82030c19ad70607e6f9e3b9cb8e633970766d697185652053e @@ -8085,7 +8085,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/websocket-client-1.8.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/websocket-client-1.8.0-pyhd8ed1ab_1.conda hash: md5: 84f8f77f0a9c6ef401ee96611745da8f sha256: 1dd84764424ffc82030c19ad70607e6f9e3b9cb8e633970766d697185652053e @@ -8097,7 +8097,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda hash: md5: 75cb7132eb58d97896e173ef12ac9986 sha256: 1b34021e815ff89a4d902d879c3bd2040bc1bd6169b32e9427497fa05c55f1ce @@ -8109,7 +8109,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda hash: md5: 75cb7132eb58d97896e173ef12ac9986 sha256: 1b34021e815ff89a4d902d879c3bd2040bc1bd6169b32e9427497fa05c55f1ce @@ -8122,7 +8122,7 @@ package: dependencies: notebook: '>=4.4.1' python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-3.6.10-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/widgetsnbextension-3.6.10-pyhd8ed1ab_0.conda hash: md5: 4d52bbdb661dc1b5a1c2aeb1afcd9a67 sha256: 6aeb16d2aacdae68ba7afd980925264f5d0459dd165e3406f13f23949df346c1 @@ -8135,7 +8135,7 @@ package: dependencies: notebook: '>=4.4.1' python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-3.6.10-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/widgetsnbextension-3.6.10-pyhd8ed1ab_0.conda hash: md5: 4d52bbdb661dc1b5a1c2aeb1afcd9a67 sha256: 6aeb16d2aacdae68ba7afd980925264f5d0459dd165e3406f13f23949df346c1 @@ -8148,7 +8148,7 @@ package: dependencies: __win: '' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/win_inet_pton-1.1.0-pyh7428d3b_8.conda + url: https://repo.prefix.dev/conda-forge/noarch/win_inet_pton-1.1.0-pyh7428d3b_8.conda hash: md5: 46e441ba871f524e2b067929da3051c2 sha256: 93807369ab91f230cf9e6e2a237eaa812492fe00face5b38068735858fba954f @@ -8159,7 +8159,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/win-64/winpty-0.4.3-4.tar.bz2 + url: https://repo.prefix.dev/conda-forge/win-64/winpty-0.4.3-4.tar.bz2 hash: md5: 1cee351bf20b830d991dbe0bc8cd7dfe sha256: 9df10c5b607dd30e05ba08cbd940009305c75db242476f4e845ea06008b0a283 @@ -8174,7 +8174,7 @@ package: libgcc: '>=13' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://conda.anaconda.org/conda-forge/linux-64/wrapt-1.17.2-py311h9ecbd09_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/wrapt-1.17.2-py311h9ecbd09_0.conda hash: md5: c4bb961f5a2020837fe3f7f30fadc2e1 sha256: e383de6512e65b5a227e7b0e1a34ffc441484044096a23ca4d3b6eb53a64d261 @@ -8190,7 +8190,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/wrapt-1.17.2-py311he736701_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/wrapt-1.17.2-py311he736701_0.conda hash: md5: 370ad80d8d1a4012e6393873ddbd7d9b sha256: 0cd8f63008d6e24576884461087b0145f388eadc32737b7e6ed57c8e67a2ae85 @@ -8203,7 +8203,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxau-1.0.12-hb9d3cd8_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxau-1.0.12-hb9d3cd8_0.conda hash: md5: f6ebe2cb3f82ba6c057dde5d9debe4f7 sha256: ed10c9283974d311855ae08a16dfd7e56241fac632aec3b92e3cfe73cff31038 @@ -8217,7 +8217,7 @@ package: libgcc: '>=13' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' ucrt: '>=10.0.20348.0' - url: https://conda.anaconda.org/conda-forge/win-64/xorg-libxau-1.0.12-h0e40799_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/xorg-libxau-1.0.12-h0e40799_0.conda hash: md5: 2ffbfae4548098297c033228256eb96e sha256: 047836241b2712aab1e29474a6f728647bff3ab57de2806b0bb0a6cf9a2d2634 @@ -8230,7 +8230,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb9d3cd8_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb9d3cd8_0.conda hash: md5: 8035c64cb77ed555e3f150b7b3972480 sha256: 6b250f3e59db07c2514057944a3ea2044d6a8cdde8a47b6497c254520fade1ee @@ -8244,7 +8244,7 @@ package: libgcc: '>=13' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' ucrt: '>=10.0.20348.0' - url: https://conda.anaconda.org/conda-forge/win-64/xorg-libxdmcp-1.1.5-h0e40799_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/xorg-libxdmcp-1.1.5-h0e40799_0.conda hash: md5: 8393c0f7e7870b4eb45553326f81f0ff sha256: 9075f98dcaa8e9957e4a3d9d30db05c7578a536950a31c200854c5c34e1edb2c @@ -8256,7 +8256,7 @@ package: platform: linux-64 dependencies: python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/xyzservices-2025.1.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/xyzservices-2025.1.0-pyhd8ed1ab_0.conda hash: md5: fdf07e281a9e5e10fc75b2dd444136e9 sha256: 9978c22319e85026d5a4134944f73bac820c948ca6b6c32af6b6985b5221cd8a @@ -8268,7 +8268,7 @@ package: platform: win-64 dependencies: python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/xyzservices-2025.1.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/xyzservices-2025.1.0-pyhd8ed1ab_0.conda hash: md5: fdf07e281a9e5e10fc75b2dd444136e9 sha256: 9978c22319e85026d5a4134944f73bac820c948ca6b6c32af6b6985b5221cd8a @@ -8280,7 +8280,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=9.4.0' - url: https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2 + url: https://repo.prefix.dev/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2 hash: md5: 4cb3ad778ec2d5a7acbdf254eb1c42ae sha256: a4e34c710eeb26945bdbdaba82d3d74f60a78f54a874ec10d373811a5d217535 @@ -8293,7 +8293,7 @@ package: dependencies: vc: '>=14.1,<15.0a0' vs2015_runtime: '>=14.16.27012' - url: https://conda.anaconda.org/conda-forge/win-64/yaml-0.2.5-h8ffe710_2.tar.bz2 + url: https://repo.prefix.dev/conda-forge/win-64/yaml-0.2.5-h8ffe710_2.tar.bz2 hash: md5: adbfb9f45d1004a26763652246a33764 sha256: 4e2246383003acbad9682c7c63178e2e715ad0eb84f03a8df1fbfba455dfedc5 @@ -8309,7 +8309,7 @@ package: numcodecs: '>=0.10.0,<0.16.0a0' numpy: '>=1.7' python: '>=3.5' - url: https://conda.anaconda.org/conda-forge/noarch/zarr-2.14.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/zarr-2.14.2-pyhd8ed1ab_0.conda hash: md5: 0c5776fe65a12a421d7ddf90411a6c3f sha256: 0f029f7efea00b8258782b5e68989fc140c227e6d9edd231d46fdd954b39d23f @@ -8325,7 +8325,7 @@ package: numcodecs: '>=0.10.0,<0.16.0a0' numpy: '>=1.7' python: '>=3.5' - url: https://conda.anaconda.org/conda-forge/noarch/zarr-2.14.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/zarr-2.14.2-pyhd8ed1ab_0.conda hash: md5: 0c5776fe65a12a421d7ddf90411a6c3f sha256: 0f029f7efea00b8258782b5e68989fc140c227e6d9edd231d46fdd954b39d23f @@ -8341,7 +8341,7 @@ package: libgcc: '>=13' libsodium: '>=1.0.20,<1.0.21.0a0' libstdcxx: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/zeromq-4.3.5-h3b0a872_7.conda + url: https://repo.prefix.dev/conda-forge/linux-64/zeromq-4.3.5-h3b0a872_7.conda hash: md5: 3947a35e916fcc6b9825449affbf4214 sha256: a4dc72c96848f764bb5a5176aa93dd1e9b9e52804137b99daeebba277b31ea10 @@ -8357,7 +8357,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/zeromq-4.3.5-ha9f60a1_7.conda + url: https://repo.prefix.dev/conda-forge/win-64/zeromq-4.3.5-ha9f60a1_7.conda hash: md5: e03f2c245a5ee6055752465519363b1c sha256: 15cc8e2162d0a33ffeb3f7b7c7883fd830c54a4b1be6a4b8c7ee1f4fef0088fb @@ -8369,7 +8369,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/zict-3.0.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/zict-3.0.0-pyhd8ed1ab_1.conda hash: md5: e52c2ef711ccf31bb7f70ca87d144b9e sha256: 5488542dceeb9f2874e726646548ecc5608060934d6f9ceaa7c6a48c61f9cc8d @@ -8381,7 +8381,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/zict-3.0.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/zict-3.0.0-pyhd8ed1ab_1.conda hash: md5: e52c2ef711ccf31bb7f70ca87d144b9e sha256: 5488542dceeb9f2874e726646548ecc5608060934d6f9ceaa7c6a48c61f9cc8d @@ -8393,7 +8393,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda hash: md5: 0c3cc595284c5e8f0f9900a9b228a332 sha256: 567c04f124525c97a096b65769834b7acb047db24b15a56888a322bf3966c3e1 @@ -8405,7 +8405,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda hash: md5: 0c3cc595284c5e8f0f9900a9b228a332 sha256: 567c04f124525c97a096b65769834b7acb047db24b15a56888a322bf3966c3e1 @@ -8421,7 +8421,7 @@ package: libgcc: '>=13' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://conda.anaconda.org/conda-forge/linux-64/zstandard-0.23.0-py311h9ecbd09_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/zstandard-0.23.0-py311h9ecbd09_1.conda hash: md5: 6d229edd907b6bb39961b74e3d52de9c sha256: 1a824220227f356f35acec5ff6a4418b1ccd0238fd752ceebeb04a0bd37acf0f @@ -8438,7 +8438,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/zstandard-0.23.0-py311he736701_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/zstandard-0.23.0-py311he736701_1.conda hash: md5: a4c147aaaf7e284762d7a6acc49e35e5 sha256: 78afa8ce76763993a76da1b0120b690cba8926271cc9e0462f66155866817c84 @@ -8453,7 +8453,7 @@ package: libgcc: '>=13' libstdcxx: '>=13' libzlib: '>=1.3.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.7-hb8e6e7a_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb8e6e7a_2.conda hash: md5: 6432cb5d4ac0046c3ac0a8a0f95842f9 sha256: a4166e3d8ff4e35932510aaff7aa90772f84b4d07e9f6f83c614cba7ceefe0eb @@ -8468,7 +8468,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/zstd-1.5.7-hbeecb71_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/zstd-1.5.7-hbeecb71_2.conda hash: md5: 21f56217d6125fb30c3c3f10c786d751 sha256: bc64864377d809b904e877a98d0584f43836c9f2ef27d3d2a1421fa6eae7ca04 @@ -8531,7 +8531,7 @@ package: category: main optional: false - name: mira-simpeg - version: 0.23.0.1a3.dev1+g60bcbe68b + version: 0.23.0.1a3.dev2+g730fa0095 manager: pip platform: linux-64 dependencies: @@ -8543,16 +8543,16 @@ package: numpy: '>=1.22' pymatsolver: '>=0.3' scipy: '>=1.8' - url: git+https://github.com/MiraGeoscience/simpeg.git@60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 + url: git+https://github.com/MiraGeoscience/simpeg.git@730fa00953165f6fd5a87c3942d05cf8e0a7e164 hash: - sha256: 60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 + sha256: 730fa00953165f6fd5a87c3942d05cf8e0a7e164 source: type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 + url: git+https://github.com/MiraGeoscience/simpeg.git@730fa00953165f6fd5a87c3942d05cf8e0a7e164 category: main optional: false - name: mira-simpeg - version: 0.23.0.1a3.dev1+g60bcbe68b + version: 0.23.0.1a3.dev2+g730fa0095 manager: pip platform: win-64 dependencies: @@ -8564,12 +8564,12 @@ package: numpy: '>=1.22' pymatsolver: '>=0.3' scipy: '>=1.8' - url: git+https://github.com/MiraGeoscience/simpeg.git@60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 + url: git+https://github.com/MiraGeoscience/simpeg.git@730fa00953165f6fd5a87c3942d05cf8e0a7e164 hash: - sha256: 60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 + sha256: 730fa00953165f6fd5a87c3942d05cf8e0a7e164 source: type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 + url: git+https://github.com/MiraGeoscience/simpeg.git@730fa00953165f6fd5a87c3942d05cf8e0a7e164 category: main optional: false - name: octree-creation-app diff --git a/py-3.12.conda-lock.yml b/py-3.12.conda-lock.yml index cdeb6ef1..1b423ee7 100644 --- a/py-3.12.conda-lock.yml +++ b/py-3.12.conda-lock.yml @@ -15,8 +15,8 @@ version: 1 metadata: content_hash: - win-64: b0a0dc55f494b271b3e6274e5a61928da568a8684aa2376ddf2dfa25e930fae4 - linux-64: 46e0e2b61133dc39d04ca1a932571bab7ef29a782ca68eff8139eca7c48a28b1 + win-64: b7b89c455d6cfa233775cd379dfc6668ca87d22340d35670d5bfd0bf85fb08bb + linux-64: 398d654fb76a679002e71da3f82bc3ff4a37d34689965e0d027a9b8b8e7bd1a5 channels: - url: conda-forge used_env_vars: [] @@ -35,7 +35,7 @@ package: platform: linux-64 dependencies: llvm-openmp: '>=9.0.1' - url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-3_kmp_llvm.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/win-64/_openmp_mutex-4.5-2_gnu.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/accessible-pygments-0.0.5-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/accessible-pygments-0.0.5-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/alabaster-0.7.16-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/alabaster-0.7.16-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/anyio-4.9.0-pyh29332c3_0.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/anyio-4.9.0-pyh29332c3_0.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/argon2-cffi-23.1.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/argon2-cffi-23.1.0-pyhd8ed1ab_1.conda hash: md5: a7ee488b71c30ada51c48468337b85ba sha256: 7af62339394986bc470a7a231c7f37ad0173ffb41f6bc0e8e31b0be9e3b9d20f @@ -184,7 +184,7 @@ package: argon2-cffi-bindings: '' python: '>=3.9' typing-extensions: '' - url: https://conda.anaconda.org/conda-forge/noarch/argon2-cffi-23.1.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/argon2-cffi-23.1.0-pyhd8ed1ab_1.conda hash: md5: a7ee488b71c30ada51c48468337b85ba sha256: 7af62339394986bc470a7a231c7f37ad0173ffb41f6bc0e8e31b0be9e3b9d20f @@ -200,7 +200,7 @@ package: libgcc: '>=13' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/linux-64/argon2-cffi-bindings-21.2.0-py312h66e93f0_5.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/win-64/argon2-cffi-bindings-21.2.0-py312h4389bb4_5.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/arrow-1.3.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/arrow-1.3.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/asciitree-0.3.3-py_2.tar.bz2 + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/asciitree-0.3.3-py_2.tar.bz2 + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/linux-64/astroid-3.3.9-py312h7900ff3_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/astroid-3.3.9-py312h7900ff3_0.conda hash: md5: ebbc44c436cf6fda9681e871df39097f sha256: bcb0b7965d305d2f9159a2f29e4236e3c90d537f45c5facd204c202490974ce2 @@ -295,7 +295,7 @@ package: dependencies: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/win-64/astroid-3.3.9-py312h2e8e312_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/astroid-3.3.9-py312h2e8e312_0.conda hash: md5: a31a121fab1af9b1a6550c7063d75847 sha256: d38222880edd3f171877fa236a80d9eb9c741cdb0c499c12276ca621ec653137 @@ -307,7 +307,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/asttokens-3.0.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/asttokens-3.0.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/async-lru-2.0.5-pyh29332c3_0.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/async-lru-2.0.5-pyh29332c3_0.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/attrs-25.3.0-pyh71513ae_0.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/attrs-25.3.0-pyh71513ae_0.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/babel-2.17.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/babel-2.17.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.13.4-pyha770c72_0.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.13.4-pyha770c72_0.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/bleach-6.2.0-pyh29332c3_4.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/bleach-6.2.0-pyh29332c3_4.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/bleach-with-css-6.2.0-h82add2a_4.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/bleach-with-css-6.2.0-h82add2a_4.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/bokeh-3.6.3-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/noarch/bokeh-3.6.3-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/linux-64/brotli-1.1.0-hb9d3cd8_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/brotli-1.1.0-hb9d3cd8_2.conda hash: md5: 98514fe74548d768907ce7a13f680e8f sha256: fcb0b5b28ba7492093e54f3184435144e074dfceab27ac8e6a9457e736565b0b @@ -550,7 +550,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/brotli-1.1.0-h2466b09_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/brotli-1.1.0-h2466b09_2.conda hash: md5: 378f1c9421775dfe644731cb121c8979 sha256: d8fd7d1b446706776117d2dcad1c0289b9f5e1521cb13405173bad38568dd252 @@ -565,7 +565,7 @@ package: libbrotlidec: 1.1.0 libbrotlienc: 1.1.0 libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/brotli-bin-1.1.0-hb9d3cd8_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/brotli-bin-1.1.0-hb9d3cd8_2.conda hash: md5: c63b5e52939e795ba8d26e35d767a843 sha256: 261364d7445513b9a4debc345650fad13c627029bfc800655a266bf1e375bc65 @@ -581,7 +581,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/brotli-bin-1.1.0-h2466b09_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/brotli-bin-1.1.0-h2466b09_2.conda hash: md5: d22534a9be5771fc58eb7564947f669d sha256: f3bf2893613540ac256c68f211861c4de618d96291719e32178d894114ac2bc2 @@ -597,7 +597,7 @@ package: libstdcxx: '>=13' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.1.0-py312h2ec8cdc_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/brotli-python-1.1.0-py312h2ec8cdc_2.conda hash: md5: b0b867af6fc74b2a0aa206da29c0f3cf sha256: f2a59ccd20b4816dea9a2a5cb917eb69728271dbf1aeab4e1b7e609330a50b6f @@ -613,7 +613,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/brotli-python-1.1.0-py312h275cf98_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/brotli-python-1.1.0-py312h275cf98_2.conda hash: md5: a99aec1ac46794a5fb1cd3cf5d2b6110 sha256: f83baa6f6bcba7b73f6921d5c1aa95ffc5d8b246ade933ade79250de0a4c9c4c @@ -626,7 +626,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda + url: https://repo.prefix.dev/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://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda + url: https://repo.prefix.dev/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda hash: md5: 276e7ffe9ffe39688abc665ef0f45596 sha256: 35a5dad92e88fdd7fc405e864ec239486f4f31eec229e31686e61a140a8e573b @@ -653,7 +653,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.34.5-hb9d3cd8_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/c-ares-1.34.5-hb9d3cd8_0.conda hash: md5: f7f0d6cc2dc986d42ac2689ec88192be sha256: f8003bef369f57396593ccd03d08a8e21966157269426f71e943f96e4b579aeb @@ -664,7 +664,7 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2025.1.31-hbcca054_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/ca-certificates-2025.1.31-hbcca054_0.conda hash: md5: 19f3a56f68d2fd06c516076bff482c52 sha256: bf832198976d559ab44d6cdb315642655547e26d826e34da67cbee6624cda189 @@ -675,7 +675,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2025.1.31-h56e8100_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/ca-certificates-2025.1.31-h56e8100_0.conda hash: md5: 5304a31607974dfc2110dfbb662ed092 sha256: 1bedccdf25a3bd782d6b0e57ddd97cdcda5501716009f2de4479a779221df155 @@ -687,7 +687,7 @@ package: platform: linux-64 dependencies: cached_property: '>=1.5.2,<1.5.3.0a0' - url: https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 hash: md5: 9b347a7ec10940d3f7941ff6c460b551 sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17 @@ -699,7 +699,7 @@ package: platform: win-64 dependencies: cached_property: '>=1.5.2,<1.5.3.0a0' - url: https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 hash: md5: 9b347a7ec10940d3f7941ff6c460b551 sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17 @@ -711,7 +711,7 @@ package: platform: linux-64 dependencies: python: '>=3.6' - url: https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 hash: md5: 576d629e47797577ab0f1b351297ef4a sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7 @@ -723,7 +723,7 @@ package: platform: win-64 dependencies: python: '>=3.6' - url: https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 hash: md5: 576d629e47797577ab0f1b351297ef4a sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7 @@ -735,7 +735,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda hash: md5: c207fa5ac7ea99b149344385a9c0880d sha256: 42a78446da06a2568cb13e69be3355169fbd0ea424b00fc80b7d840f5baaacf3 @@ -747,7 +747,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda hash: md5: c207fa5ac7ea99b149344385a9c0880d sha256: 42a78446da06a2568cb13e69be3355169fbd0ea424b00fc80b7d840f5baaacf3 @@ -764,7 +764,7 @@ package: pycparser: '' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.17.1-py312h06ac9bb_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/cffi-1.17.1-py312h06ac9bb_0.conda hash: md5: a861504bbea4161a9170b85d4d2be840 sha256: cba6ea83c4b0b4f5b5dc59cb19830519b28f95d7ebef7c9c5cf1c14843621457 @@ -781,7 +781,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/cffi-1.17.1-py312h4389bb4_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/cffi-1.17.1-py312h4389bb4_0.conda hash: md5: 08310c1a22ef957d537e547f8d484f92 sha256: ac007bf5fd56d13e16d95eea036433012f2e079dc015505c8a79efebbad1fcbc @@ -793,7 +793,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda hash: md5: e83a31202d1c0a000fce3e9cf3825875 sha256: 4e0ee91b97e5de3e74567bdacea27f0139709fceca4db8adffbe24deffccb09b @@ -805,7 +805,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda hash: md5: e83a31202d1c0a000fce3e9cf3825875 sha256: 4e0ee91b97e5de3e74567bdacea27f0139709fceca4db8adffbe24deffccb09b @@ -818,7 +818,7 @@ package: dependencies: __unix: '' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.8-pyh707e725_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/click-8.1.8-pyh707e725_0.conda hash: md5: f22f4d4970e09d68a10b922cbb0408d3 sha256: c920d23cd1fcf565031c679adb62d848af60d6fbb0edc2d50ba475cea4f0d8ab @@ -832,7 +832,7 @@ package: __win: '' colorama: '' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.8-pyh7428d3b_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/click-8.1.8-pyh7428d3b_0.conda hash: md5: 90e5571556f7a45db92ee51cb8f97af6 sha256: c889ed359ae47eead4ffe8927b7206b22c55e67d6e74a9044c23736919d61e8d @@ -844,7 +844,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/cloudpickle-3.1.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/cloudpickle-3.1.1-pyhd8ed1ab_0.conda hash: md5: 364ba6c9fb03886ac979b482f39ebb92 sha256: 21ecead7268241007bf65691610cd7314da68c1f88113092af690203b5780db5 @@ -856,7 +856,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/cloudpickle-3.1.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/cloudpickle-3.1.1-pyhd8ed1ab_0.conda hash: md5: 364ba6c9fb03886ac979b482f39ebb92 sha256: 21ecead7268241007bf65691610cd7314da68c1f88113092af690203b5780db5 @@ -868,7 +868,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda hash: md5: 962b9857ee8e7018c22f2776ffa0b2d7 sha256: ab29d57dc70786c1269633ba3dff20288b81664d3ff8d21af995742e2bb03287 @@ -880,7 +880,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda hash: md5: 962b9857ee8e7018c22f2776ffa0b2d7 sha256: ab29d57dc70786c1269633ba3dff20288b81664d3ff8d21af995742e2bb03287 @@ -893,7 +893,7 @@ package: dependencies: python: '>=3.9' traitlets: '>=5.3' - url: https://conda.anaconda.org/conda-forge/noarch/comm-0.2.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/comm-0.2.2-pyhd8ed1ab_1.conda hash: md5: 74673132601ec2b7fc592755605f4c1b sha256: 7e87ef7c91574d9fac19faedaaee328a70f718c9b4ddadfdc0ba9ac021bd64af @@ -906,7 +906,7 @@ package: dependencies: python: '>=3.9' traitlets: '>=5.3' - url: https://conda.anaconda.org/conda-forge/noarch/comm-0.2.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/comm-0.2.2-pyhd8ed1ab_1.conda hash: md5: 74673132601ec2b7fc592755605f4c1b sha256: 7e87ef7c91574d9fac19faedaaee328a70f718c9b4ddadfdc0ba9ac021bd64af @@ -923,7 +923,7 @@ package: numpy: '>=1.23' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/linux-64/contourpy-1.3.2-py312h68727a3_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/contourpy-1.3.2-py312h68727a3_0.conda hash: md5: e688276449452cdfe9f8f5d3e74c23f6 sha256: 4c8f2aa34aa031229e6f8aa18f146bce7987e26eae9c6503053722a8695ebf0c @@ -940,7 +940,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/contourpy-1.3.2-py312hd5eb7cc_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/contourpy-1.3.2-py312hd5eb7cc_0.conda hash: md5: bfcbb98aff376f62298f0801ca9bcfc3 sha256: 9b552bcab6c1e3a364cbc010bdef3d26831c90984b7d0852a1dd70659d9cf84a @@ -956,7 +956,7 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* tomli: '' - url: https://conda.anaconda.org/conda-forge/linux-64/coverage-7.8.0-py312h178313f_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.8.0-py312h178313f_0.conda hash: md5: d0fca021e354cc96455021852a1fad6d sha256: 029278c43bd2a6ac36bfd93fde69a0cde6a4ee94c0af72d0d51236fbb1fc3720 @@ -973,7 +973,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/coverage-7.8.0-py312h31fea79_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.8.0-py312h31fea79_0.conda hash: md5: a52895ace8c17bc01ceba443d52325c6 sha256: 7815726b2b45065af4570deca428f48799ce1f49de7d8b5e4f6b7999f6a4dc2f @@ -986,7 +986,7 @@ package: dependencies: python: '>=3.12,<3.13.0a0' python_abi: '*' - url: https://conda.anaconda.org/conda-forge/noarch/cpython-3.12.10-py312hd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/cpython-3.12.10-py312hd8ed1ab_0.conda hash: md5: 7584a4b1e802afa25c89c0dcc72d0826 sha256: acb47715abf1cd8177a5c20f42a34555b5d9cebb68ff39a58706e84effe218e2 @@ -998,7 +998,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda hash: md5: 44600c4667a319d67dbe0681fc0bc833 sha256: 9827efa891e507a91a8a2acf64e210d2aff394e1cde432ad08e1f8c66b12293c @@ -1010,7 +1010,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda hash: md5: 44600c4667a319d67dbe0681fc0bc833 sha256: 9827efa891e507a91a8a2acf64e210d2aff394e1cde432ad08e1f8c66b12293c @@ -1026,7 +1026,7 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* toolz: '>=0.10.0' - url: https://conda.anaconda.org/conda-forge/linux-64/cytoolz-1.0.1-py312h66e93f0_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/cytoolz-1.0.1-py312h66e93f0_0.conda hash: md5: 6198b134b1c08173f33653896974d477 sha256: 63a64d4e71148c4efd8db17b4a19b8965990d1e08ed2e24b84bc36b6c166a705 @@ -1043,7 +1043,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/cytoolz-1.0.1-py312h4389bb4_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/cytoolz-1.0.1-py312h4389bb4_0.conda hash: md5: fba0567971249f5d0cce4d35b1184c75 sha256: e657e468fdae72302951bba92f94bcb31566a237e5f979a7dd205603a0750b59 @@ -1063,7 +1063,7 @@ package: python: '>=3.10' pyyaml: '>=5.3.1' toolz: '>=0.10.0' - url: https://conda.anaconda.org/conda-forge/noarch/dask-core-2025.3.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/dask-core-2025.3.0-pyhd8ed1ab_0.conda hash: md5: 36f6cc22457e3d6a6051c5370832f96c sha256: 72badd945d856d2928fdbe051f136f903bcfee8136f1526c8362c6c465b793ec @@ -1083,7 +1083,7 @@ package: python: '>=3.10' pyyaml: '>=5.3.1' toolz: '>=0.10.0' - url: https://conda.anaconda.org/conda-forge/noarch/dask-core-2025.3.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/dask-core-2025.3.0-pyhd8ed1ab_0.conda hash: md5: 36f6cc22457e3d6a6051c5370832f96c sha256: 72badd945d856d2928fdbe051f136f903bcfee8136f1526c8362c6c465b793ec @@ -1095,7 +1095,7 @@ package: platform: linux-64 dependencies: python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/dataclasses-0.8-pyhc8e2a94_3.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/dataclasses-0.8-pyhc8e2a94_3.tar.bz2 hash: md5: a362b2124b06aad102e2ee4581acee7d sha256: 63a83e62e0939bc1ab32de4ec736f6403084198c4639638b354a352113809c92 @@ -1107,7 +1107,7 @@ package: platform: win-64 dependencies: python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/dataclasses-0.8-pyhc8e2a94_3.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/dataclasses-0.8-pyhc8e2a94_3.tar.bz2 hash: md5: a362b2124b06aad102e2ee4581acee7d sha256: 63a83e62e0939bc1ab32de4ec736f6403084198c4639638b354a352113809c92 @@ -1123,7 +1123,7 @@ package: libstdcxx: '>=13' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/linux-64/debugpy-1.8.14-py312h2ec8cdc_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/debugpy-1.8.14-py312h2ec8cdc_0.conda hash: md5: 089cf3a3becf0e2f403feaf16e921678 sha256: 8f0b338687f79ea87324f067bedddd2168f07b8eec234f0fe63b522344c6a919 @@ -1139,7 +1139,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/debugpy-1.8.14-py312h275cf98_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/debugpy-1.8.14-py312h275cf98_0.conda hash: md5: 331737db69ae5431acb6ef3e198ec623 sha256: 02ceea9c12eaaf29c7c40142e4789b77c5c98aa477bdfca1db3ae97440b9e2fe @@ -1151,7 +1151,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/decorator-5.2.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/decorator-5.2.1-pyhd8ed1ab_0.conda hash: md5: 9ce473d1d1be1cc3810856a48b3fab32 sha256: c17c6b9937c08ad63cb20a26f403a3234088e57d4455600974a0ce865cb14017 @@ -1163,7 +1163,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/decorator-5.2.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/decorator-5.2.1-pyhd8ed1ab_0.conda hash: md5: 9ce473d1d1be1cc3810856a48b3fab32 sha256: c17c6b9937c08ad63cb20a26f403a3234088e57d4455600974a0ce865cb14017 @@ -1175,7 +1175,7 @@ package: platform: linux-64 dependencies: python: '>=3.6' - url: https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2 hash: md5: 961b3a227b437d82ad7054484cfa71b2 sha256: 9717a059677553562a8f38ff07f3b9f61727bd614f505658b0a5ecbcf8df89be @@ -1187,7 +1187,7 @@ package: platform: win-64 dependencies: python: '>=3.6' - url: https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2 hash: md5: 961b3a227b437d82ad7054484cfa71b2 sha256: 9717a059677553562a8f38ff07f3b9f61727bd614f505658b0a5ecbcf8df89be @@ -1200,7 +1200,7 @@ package: dependencies: python: '>=3.9' wrapt: <2,>=1.10 - url: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.18-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/deprecated-1.2.18-pyhd8ed1ab_0.conda hash: md5: 0cef44b1754ae4d6924ac0eef6b9fdbe sha256: d614bcff10696f1efc714df07651b50bf3808401fcc03814309ecec242cc8870 @@ -1213,7 +1213,7 @@ package: dependencies: python: '>=3.9' wrapt: <2,>=1.10 - url: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.18-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/deprecated-1.2.18-pyhd8ed1ab_0.conda hash: md5: 0cef44b1754ae4d6924ac0eef6b9fdbe sha256: d614bcff10696f1efc714df07651b50bf3808401fcc03814309ecec242cc8870 @@ -1225,7 +1225,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda hash: md5: 885745570573eb6a08e021841928297a sha256: 43dca52c96fde0c4845aaff02bcc92f25e1c2e5266ddefc2eac1a3de0960a3b1 @@ -1237,7 +1237,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda hash: md5: 885745570573eb6a08e021841928297a sha256: 43dca52c96fde0c4845aaff02bcc92f25e1c2e5266ddefc2eac1a3de0960a3b1 @@ -1255,7 +1255,7 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* scipy: '>=1.8' - url: https://conda.anaconda.org/conda-forge/linux-64/discretize-0.11.2-py312hc39e661_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/discretize-0.11.2-py312hc39e661_1.conda hash: md5: e9c071bcefeb0f70dd18a20f88bb844f sha256: 605ee14cdad67f8797a54853d8030295b522ba478e6759a5bc1f4fec3ac2e225 @@ -1273,7 +1273,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/discretize-0.11.2-py312hbaa7e33_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/discretize-0.11.2-py312hbaa7e33_1.conda hash: md5: 43aa663b1fd1787fbbeca5a9a954dc57 sha256: 259979385edfa18bcbb5b9776490d53026a6bfaf6f738369b49b0a0b2a839303 @@ -1301,7 +1301,7 @@ package: tornado: '>=6.2.0' urllib3: '>=1.26.5' zict: '>=3.0.0' - url: https://conda.anaconda.org/conda-forge/noarch/distributed-2025.3.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/distributed-2025.3.0-pyhd8ed1ab_0.conda hash: md5: 968a7a4ff98bcfb515b0f1c94d35553f sha256: ea055aeda774d03ec96e0901ec119c6d3dc21ddd50af166bec664a76efd5f82a @@ -1329,7 +1329,7 @@ package: tornado: '>=6.2.0' urllib3: '>=1.26.5' zict: '>=3.0.0' - url: https://conda.anaconda.org/conda-forge/noarch/distributed-2025.3.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/distributed-2025.3.0-pyhd8ed1ab_0.conda hash: md5: 968a7a4ff98bcfb515b0f1c94d35553f sha256: ea055aeda774d03ec96e0901ec119c6d3dc21ddd50af166bec664a76efd5f82a @@ -1342,7 +1342,7 @@ package: dependencies: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/linux-64/docutils-0.18.1-py312h7900ff3_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/docutils-0.18.1-py312h7900ff3_0.conda hash: md5: b741a9f139d1ffd43cbb5da54252dae7 sha256: 27088b406250e0189f271ed795ee929e3030a29ae67acbbf193d0e82ca7f210a @@ -1355,7 +1355,7 @@ package: dependencies: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/win-64/docutils-0.18.1-py312h2e8e312_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/docutils-0.18.1-py312h2e8e312_0.conda hash: md5: 3bcf1239777952b112ef26f2b8e4d5a7 sha256: 7638c8adbd1ef73bb3f9ef2df24d03464b5c9622bac4816581ca365ee96718ce @@ -1367,7 +1367,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda hash: md5: a16662747cdeb9abbac74d0057cc976e sha256: cbde2c64ec317118fc06b223c5fd87c8a680255e7348dd60e7b292d2e103e701 @@ -1379,7 +1379,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda hash: md5: a16662747cdeb9abbac74d0057cc976e sha256: cbde2c64ec317118fc06b223c5fd87c8a680255e7348dd60e7b292d2e103e701 @@ -1391,7 +1391,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/executing-2.1.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/executing-2.1.0-pyhd8ed1ab_1.conda hash: md5: ef8b5fca76806159fc25b4f48d8737eb sha256: 28d25ea375ebab4bf7479228f8430db20986187b04999136ff5c722ebd32eb60 @@ -1403,7 +1403,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/executing-2.1.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/executing-2.1.0-pyhd8ed1ab_1.conda hash: md5: ef8b5fca76806159fc25b4f48d8737eb sha256: 28d25ea375ebab4bf7479228f8430db20986187b04999136ff5c722ebd32eb60 @@ -1415,7 +1415,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/fasteners-0.19-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/fasteners-0.19-pyhd8ed1ab_1.conda hash: md5: dbe9d42e94b5ff7af7b7893f4ce052e7 sha256: 42fb170778b47303e82eddfea9a6d1e1b8af00c927cd5a34595eaa882b903a16 @@ -1427,7 +1427,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/fasteners-0.19-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/fasteners-0.19-pyhd8ed1ab_1.conda hash: md5: dbe9d42e94b5ff7af7b7893f4ce052e7 sha256: 42fb170778b47303e82eddfea9a6d1e1b8af00c927cd5a34595eaa882b903a16 @@ -1445,7 +1445,7 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* unicodedata2: '>=15.1.0' - url: https://conda.anaconda.org/conda-forge/linux-64/fonttools-4.57.0-py312h178313f_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/fonttools-4.57.0-py312h178313f_0.conda hash: md5: 97907388593b27ac01237a1023d58d3d sha256: 3d230ff0d9e9fc482de22b807adf017736bd6d19b932eea68d68eeb52b139e04 @@ -1464,7 +1464,7 @@ package: unicodedata2: '>=15.1.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/fonttools-4.57.0-py312h31fea79_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/fonttools-4.57.0-py312h31fea79_0.conda hash: md5: 5bcdfae9aaf166ad83edebfa2f6359e2 sha256: eaa9fa1c6c0f290a24066a170460e292b111cb4c67c8d7cb7eb54ca68c608646 @@ -1477,7 +1477,7 @@ package: dependencies: cached-property: '>=1.3.0' python: '>=3.9,<4' - url: https://conda.anaconda.org/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_1.conda hash: md5: d3549fd50d450b6d9e7dddff25dd2110 sha256: 2509992ec2fd38ab27c7cdb42cf6cadc566a1cc0d1021a2673475d9fa87c6276 @@ -1490,7 +1490,7 @@ package: dependencies: cached-property: '>=1.3.0' python: '>=3.9,<4' - url: https://conda.anaconda.org/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_1.conda hash: md5: d3549fd50d450b6d9e7dddff25dd2110 sha256: 2509992ec2fd38ab27c7cdb42cf6cadc566a1cc0d1021a2673475d9fa87c6276 @@ -1505,7 +1505,7 @@ package: libgcc: '>=13' libpng: '>=1.6.47,<1.7.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/freetype-2.13.3-h48d6fc4_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/freetype-2.13.3-h48d6fc4_0.conda hash: md5: 9ecfd6f2ca17077dd9c2d24770bb9ccd sha256: 7385577509a9c4730130f54bb6841b9b416249d5f4e9f74bf313e6378e313c57 @@ -1521,7 +1521,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/freetype-2.13.3-h0b5ce68_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/freetype-2.13.3-h0b5ce68_0.conda hash: md5: 9c461ed7b07fb360d2c8cfe726c7d521 sha256: 67e3af0fbe6c25f5ab1af9a3d3000464c5e88a8a0b4b06602f4a5243a8a1fd42 @@ -1533,7 +1533,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/fsspec-2025.3.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2025.3.2-pyhd8ed1ab_0.conda hash: md5: 9c40692c3d24c7aaf335f673ac09d308 sha256: 2040d4640708bd6ab9ed6cb9901267441798c44974bc63c9b6c1cb4c1891d825 @@ -1545,7 +1545,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/fsspec-2025.3.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2025.3.2-pyhd8ed1ab_0.conda hash: md5: 9c40692c3d24c7aaf335f673ac09d308 sha256: 2040d4640708bd6ab9ed6cb9901267441798c44974bc63c9b6c1cb4c1891d825 @@ -1564,7 +1564,7 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* scipy: '>=1.8' - url: https://conda.anaconda.org/conda-forge/linux-64/geoana-0.7.2-py312hc39e661_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/geoana-0.7.2-py312hc39e661_0.conda hash: md5: 20497b2b58fd4525c178cf642eb6d51d sha256: 492ac87e5e108352ec452b11d7a1158b22913b151e6da576099f8db1ecc262b6 @@ -1583,7 +1583,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/geoana-0.7.2-py312hbaa7e33_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/geoana-0.7.2-py312hbaa7e33_0.conda hash: md5: 734e9c4267b48bd5fd1f491868994e52 sha256: 686b9a107e080169f3e097923932764d65d5ad075acc06104080311211639eaa @@ -1599,7 +1599,7 @@ package: libstdcxx: '>=13' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/linux-64/greenlet-3.2.0-py312h2ec8cdc_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/greenlet-3.2.0-py312h2ec8cdc_0.conda hash: md5: fcbf85214d3dd3acd890126a9ff470b5 sha256: c18e4f41d46054d2aa2780b76f477533581b18a59a403aaa1a2382da920ef672 @@ -1615,7 +1615,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/greenlet-3.2.0-py312h275cf98_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/greenlet-3.2.0-py312h275cf98_0.conda hash: md5: f8b312c9115e67c91a5c2f9af198fe8a sha256: c80ca057bf79c2937c519e8f48585c51fa31fab610131af8fb459ec8946577e5 @@ -1628,7 +1628,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '' - url: https://conda.anaconda.org/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_1.conda hash: md5: 7ee49e89531c0dcbba9466f6d115d585 sha256: 622516185a7c740d5c7f27016d0c15b45782c1501e5611deec63fd70344ce7c8 @@ -1641,7 +1641,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '' - url: https://conda.anaconda.org/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_1.conda hash: md5: 7ee49e89531c0dcbba9466f6d115d585 sha256: 622516185a7c740d5c7f27016d0c15b45782c1501e5611deec63fd70344ce7c8 @@ -1655,7 +1655,7 @@ package: hpack: '>=4.1,<5' hyperframe: '>=6.1,<7' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda hash: md5: b4754fb1bdcb70c8fd54f918301582c6 sha256: 0aa1cdc67a9fe75ea95b5644b734a756200d6ec9d0dff66530aec3d1c1e9df75 @@ -1669,7 +1669,7 @@ package: hpack: '>=4.1,<5' hyperframe: '>=6.1,<7' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda hash: md5: b4754fb1bdcb70c8fd54f918301582c6 sha256: 0aa1cdc67a9fe75ea95b5644b734a756200d6ec9d0dff66530aec3d1c1e9df75 @@ -1687,7 +1687,7 @@ package: numpy: '>=1.19,<3' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/linux-64/h5py-3.13.0-nompi_py312hedeef09_100.conda + url: https://repo.prefix.dev/conda-forge/linux-64/h5py-3.13.0-nompi_py312hedeef09_100.conda hash: md5: ed73cf6f5e1ce5e823e6efcf54cbdc51 sha256: 76bb853325f0c756599edb0be014723b01fea61e24817fd2f0b9ddfe4c570c0f @@ -1706,7 +1706,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/h5py-3.13.0-nompi_py312ha036244_100.conda + url: https://repo.prefix.dev/conda-forge/win-64/h5py-3.13.0-nompi_py312ha036244_100.conda hash: md5: fe41c7e14279ad2729752ddf4e83bc42 sha256: 63bba52339a880a596ec38c51f08c35249e2db801d7fe6046cd60b3e611ea5b6 @@ -1726,7 +1726,7 @@ package: libstdcxx: '>=13' libzlib: '>=1.3.1,<2.0a0' openssl: '>=3.4.0,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.3-nompi_h2d575fe_109.conda + url: https://repo.prefix.dev/conda-forge/linux-64/hdf5-1.14.3-nompi_h2d575fe_109.conda hash: md5: e7a7a6e6f70553a31e6e79c65768d089 sha256: e8669a6d76d415f4fdbe682507ac3a3b39e8f493d2f2bdc520817f80b7cc0753 @@ -1744,7 +1744,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/hdf5-1.14.3-nompi_hb2c4d47_109.conda + url: https://repo.prefix.dev/conda-forge/win-64/hdf5-1.14.3-nompi_hb2c4d47_109.conda hash: md5: ebb61f3e8b35cc15e78876649b7246f7 sha256: d5ada33e119cdd62371c06f60eae6f545de7cea793ab83da2fba428bb1d2f813 @@ -1756,7 +1756,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda hash: md5: 0a802cb9888dd14eeefc611f05c40b6e sha256: 6ad78a180576c706aabeb5b4c8ceb97c0cb25f1e112d76495bff23e3779948ba @@ -1768,7 +1768,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda hash: md5: 0a802cb9888dd14eeefc611f05c40b6e sha256: 6ad78a180576c706aabeb5b4c8ceb97c0cb25f1e112d76495bff23e3779948ba @@ -1785,7 +1785,7 @@ package: h2: '>=3,<5' python: '>=3.8' sniffio: 1.* - url: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda hash: md5: 2ca8e6dbc86525c8b95e3c0ffa26442e sha256: c84d012a245171f3ed666a8bf9319580c269b7843ffa79f26468842da3abd5df @@ -1802,7 +1802,7 @@ package: h2: '>=3,<5' python: '>=3.8' sniffio: 1.* - url: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda hash: md5: 2ca8e6dbc86525c8b95e3c0ffa26442e sha256: c84d012a245171f3ed666a8bf9319580c269b7843ffa79f26468842da3abd5df @@ -1818,7 +1818,7 @@ package: httpcore: 1.* idna: '' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/httpx-0.28.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/httpx-0.28.1-pyhd8ed1ab_0.conda hash: md5: d6989ead454181f4f9bc987d3dc4e285 sha256: cd0f1de3697b252df95f98383e9edb1d00386bfdd03fdf607fa42fe5fcb09950 @@ -1834,7 +1834,7 @@ package: httpcore: 1.* idna: '' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/httpx-0.28.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/httpx-0.28.1-pyhd8ed1ab_0.conda hash: md5: d6989ead454181f4f9bc987d3dc4e285 sha256: cd0f1de3697b252df95f98383e9edb1d00386bfdd03fdf607fa42fe5fcb09950 @@ -1846,7 +1846,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda hash: md5: 8e6923fc12f1fe8f8c4e5c9f343256ac sha256: 77af6f5fe8b62ca07d09ac60127a30d9069fdc3c68d6b256754d0ffb1f7779f8 @@ -1858,7 +1858,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda hash: md5: 8e6923fc12f1fe8f8c4e5c9f343256ac sha256: 77af6f5fe8b62ca07d09ac60127a30d9069fdc3c68d6b256754d0ffb1f7779f8 @@ -1870,7 +1870,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda hash: md5: 39a4f67be3286c86d696df570b1201b7 sha256: d7a472c9fd479e2e8dcb83fb8d433fce971ea369d704ece380e876f9c3494e87 @@ -1882,7 +1882,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda hash: md5: 39a4f67be3286c86d696df570b1201b7 sha256: d7a472c9fd479e2e8dcb83fb8d433fce971ea369d704ece380e876f9c3494e87 @@ -1894,7 +1894,7 @@ package: platform: linux-64 dependencies: python: '>=3.4' - url: https://conda.anaconda.org/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2 hash: md5: 7de5386c8fea29e76b303f37dde4c352 sha256: c2bfd7043e0c4c12d8b5593de666c1e81d67b83c474a0a79282cc5c4ef845460 @@ -1906,7 +1906,7 @@ package: platform: win-64 dependencies: python: '>=3.4' - url: https://conda.anaconda.org/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2 hash: md5: 7de5386c8fea29e76b303f37dde4c352 sha256: c2bfd7043e0c4c12d8b5593de666c1e81d67b83c474a0a79282cc5c4ef845460 @@ -1919,7 +1919,7 @@ package: dependencies: python: '>=3.9' zipp: '>=0.5' - url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.6.1-pyha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/importlib-metadata-8.6.1-pyha770c72_0.conda hash: md5: f4b39bf00c69f56ac01e020ebfac066c sha256: 598951ebdb23e25e4cec4bbff0ae369cec65ead80b50bc08b441d8e54de5cf03 @@ -1932,7 +1932,7 @@ package: dependencies: python: '>=3.9' zipp: '>=0.5' - url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.6.1-pyha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/importlib-metadata-8.6.1-pyha770c72_0.conda hash: md5: f4b39bf00c69f56ac01e020ebfac066c sha256: 598951ebdb23e25e4cec4bbff0ae369cec65ead80b50bc08b441d8e54de5cf03 @@ -1944,7 +1944,7 @@ package: platform: linux-64 dependencies: importlib-metadata: '>=8.6.1,<8.6.2.0a0' - url: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-8.6.1-hd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/importlib_metadata-8.6.1-hd8ed1ab_0.conda hash: md5: 7f46575a91b1307441abc235d01cab66 sha256: 1e3eb9d65c4d7b87c7347553ef9eef6f994996f90a2299e19b35f5997d3a3e79 @@ -1956,7 +1956,7 @@ package: platform: win-64 dependencies: importlib-metadata: '>=8.6.1,<8.6.2.0a0' - url: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-8.6.1-hd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/importlib_metadata-8.6.1-hd8ed1ab_0.conda hash: md5: 7f46575a91b1307441abc235d01cab66 sha256: 1e3eb9d65c4d7b87c7347553ef9eef6f994996f90a2299e19b35f5997d3a3e79 @@ -1969,7 +1969,7 @@ package: dependencies: python: '>=3.9' zipp: '>=3.1.0' - url: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.5.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/importlib_resources-6.5.2-pyhd8ed1ab_0.conda hash: md5: c85c76dc67d75619a92f51dfbce06992 sha256: acc1d991837c0afb67c75b77fdc72b4bf022aac71fedd8b9ea45918ac9b08a80 @@ -1982,7 +1982,7 @@ package: dependencies: python: '>=3.9' zipp: '>=3.1.0' - url: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.5.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/importlib_resources-6.5.2-pyhd8ed1ab_0.conda hash: md5: c85c76dc67d75619a92f51dfbce06992 sha256: acc1d991837c0afb67c75b77fdc72b4bf022aac71fedd8b9ea45918ac9b08a80 @@ -1994,7 +1994,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda hash: md5: 6837f3eff7dcea42ecd714ce1ac2b108 sha256: 0ec8f4d02053cd03b0f3e63168316530949484f80e16f5e2fb199a1d117a89ca @@ -2006,7 +2006,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda hash: md5: 6837f3eff7dcea42ecd714ce1ac2b108 sha256: 0ec8f4d02053cd03b0f3e63168316530949484f80e16f5e2fb199a1d117a89ca @@ -2017,7 +2017,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/win-64/intel-openmp-2024.2.1-h57928b3_1083.conda + url: https://repo.prefix.dev/conda-forge/win-64/intel-openmp-2024.2.1-h57928b3_1083.conda hash: md5: 2d89243bfb53652c182a7c73182cce4f sha256: 0fd2b0b84c854029041b0ede8f4c2369242ee92acc0092f8407b1fe9238a8209 @@ -2042,7 +2042,7 @@ package: pyzmq: '>=24' tornado: '>=6.1' traitlets: '>=5.4.0' - url: https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.29.5-pyh3099207_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ipykernel-6.29.5-pyh3099207_0.conda hash: md5: b40131ab6a36ac2c09b7c57d4d3fbf99 sha256: 33cfd339bb4efac56edf93474b37ddc049e08b1b4930cf036c893cc1f5a1f32a @@ -2067,7 +2067,7 @@ package: pyzmq: '>=24' tornado: '>=6.1' traitlets: '>=5.4.0' - url: https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.29.5-pyh4bbf305_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ipykernel-6.29.5-pyh4bbf305_0.conda hash: md5: 18df5fc4944a679e085e0e8f31775fc8 sha256: dc569094125127c0078aa536f78733f383dd7e09507277ef8bcd1789786e7086 @@ -2092,7 +2092,7 @@ package: stack_data: '' traitlets: '>=5.13.0' typing_extensions: '>=4.6' - url: https://conda.anaconda.org/conda-forge/noarch/ipython-9.1.0-pyhfb0248b_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ipython-9.1.0-pyhfb0248b_0.conda hash: md5: b6c7f97b71c0f670dd9e585d3f65e867 sha256: 24cabcd711d03d2865a67ebc17941bc9bde949b3f0c9a34655c4153dce1c34c3 @@ -2117,7 +2117,7 @@ package: stack_data: '' traitlets: '>=5.13.0' typing_extensions: '>=4.6' - url: https://conda.anaconda.org/conda-forge/noarch/ipython-9.1.0-pyhca29cf9_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ipython-9.1.0-pyhca29cf9_0.conda hash: md5: 4f71690ae510b365a22bb1cb926e6df2 sha256: 330d452de42f10537bff1490f6ff08bf4e6c0c7288255be43f9e895e15dd2969 @@ -2129,7 +2129,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/ipython_genutils-0.2.0-pyhd8ed1ab_2.conda + url: https://repo.prefix.dev/conda-forge/noarch/ipython_genutils-0.2.0-pyhd8ed1ab_2.conda hash: md5: 2f0ba4bc12af346bc6c99bdc377e8944 sha256: 45821a8986b4cb2421f766b240dbe6998a3c3123f012dd566720c1322e9b6e18 @@ -2141,7 +2141,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/ipython_genutils-0.2.0-pyhd8ed1ab_2.conda + url: https://repo.prefix.dev/conda-forge/noarch/ipython_genutils-0.2.0-pyhd8ed1ab_2.conda hash: md5: 2f0ba4bc12af346bc6c99bdc377e8944 sha256: 45821a8986b4cb2421f766b240dbe6998a3c3123f012dd566720c1322e9b6e18 @@ -2154,7 +2154,7 @@ package: dependencies: pygments: '' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/ipython_pygments_lexers-1.1.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ipython_pygments_lexers-1.1.1-pyhd8ed1ab_0.conda hash: md5: bd80ba060603cc228d9d81c257093119 sha256: 894682a42a7d659ae12878dbcb274516a7031bbea9104e92f8e88c1f2765a104 @@ -2167,7 +2167,7 @@ package: dependencies: pygments: '' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/ipython_pygments_lexers-1.1.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ipython_pygments_lexers-1.1.1-pyhd8ed1ab_0.conda hash: md5: bd80ba060603cc228d9d81c257093119 sha256: 894682a42a7d659ae12878dbcb274516a7031bbea9104e92f8e88c1f2765a104 @@ -2185,7 +2185,7 @@ package: python: '>=3.3' traitlets: '>=4.3.1' widgetsnbextension: '>=3.6.10,<3.7.0' - url: https://conda.anaconda.org/conda-forge/noarch/ipywidgets-7.8.5-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ipywidgets-7.8.5-pyhd8ed1ab_0.conda hash: md5: 47672c493015ab57d5fcde9531ab18ef sha256: 8cc67e44137bb779c76d92952fdc4d8cd475605f4f0d13e8d0f04f25c056939b @@ -2203,7 +2203,7 @@ package: python: '>=3.3' traitlets: '>=4.3.1' widgetsnbextension: '>=3.6.10,<3.7.0' - url: https://conda.anaconda.org/conda-forge/noarch/ipywidgets-7.8.5-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ipywidgets-7.8.5-pyhd8ed1ab_0.conda hash: md5: 47672c493015ab57d5fcde9531ab18ef sha256: 8cc67e44137bb779c76d92952fdc4d8cd475605f4f0d13e8d0f04f25c056939b @@ -2216,7 +2216,7 @@ package: dependencies: arrow: '>=0.15.0' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/isoduration-20.11.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/isoduration-20.11.0-pyhd8ed1ab_1.conda hash: md5: 0b0154421989637d424ccf0f104be51a sha256: 08e838d29c134a7684bca0468401d26840f41c92267c4126d7b43a6b533b0aed @@ -2229,7 +2229,7 @@ package: dependencies: arrow: '>=0.15.0' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/isoduration-20.11.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/isoduration-20.11.0-pyhd8ed1ab_1.conda hash: md5: 0b0154421989637d424ccf0f104be51a sha256: 08e838d29c134a7684bca0468401d26840f41c92267c4126d7b43a6b533b0aed @@ -2242,7 +2242,7 @@ package: dependencies: python: '>=3.9,<4.0' setuptools: '' - url: https://conda.anaconda.org/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_0.conda hash: md5: a8abfd3f223b1ecb8c699dca974933bd sha256: 9c5fb97efa0eb32b42564edaacb5edb9a1f82ba8f5f8b135e794960101115b5a @@ -2255,7 +2255,7 @@ package: dependencies: python: '>=3.9,<4.0' setuptools: '' - url: https://conda.anaconda.org/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_0.conda hash: md5: a8abfd3f223b1ecb8c699dca974933bd sha256: 9c5fb97efa0eb32b42564edaacb5edb9a1f82ba8f5f8b135e794960101115b5a @@ -2268,7 +2268,7 @@ package: dependencies: parso: '>=0.8.3,<0.9.0' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda hash: md5: a4f4c5dc9b80bc50e0d3dc4e6e8f1bd9 sha256: 92c4d217e2dc68983f724aa983cca5464dcb929c566627b26a2511159667dba8 @@ -2281,7 +2281,7 @@ package: dependencies: parso: '>=0.8.3,<0.9.0' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda hash: md5: a4f4c5dc9b80bc50e0d3dc4e6e8f1bd9 sha256: 92c4d217e2dc68983f724aa983cca5464dcb929c566627b26a2511159667dba8 @@ -2294,7 +2294,7 @@ package: dependencies: markupsafe: '>=2.0' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda hash: md5: 446bd6c8cb26050d528881df495ce646 sha256: f1ac18b11637ddadc05642e8185a851c7fab5998c6f5470d716812fae943b2af @@ -2307,7 +2307,7 @@ package: dependencies: markupsafe: '>=2.0' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda hash: md5: 446bd6c8cb26050d528881df495ce646 sha256: f1ac18b11637ddadc05642e8185a851c7fab5998c6f5470d716812fae943b2af @@ -2320,7 +2320,7 @@ package: dependencies: python: '>=3.9' setuptools: '' - url: https://conda.anaconda.org/conda-forge/noarch/joblib-1.4.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/joblib-1.4.2-pyhd8ed1ab_1.conda hash: md5: bf8243ee348f3a10a14ed0cae323e0c1 sha256: 51cc2dc491668af0c4d9299b0ab750f16ccf413ec5e2391b924108c1fbacae9b @@ -2333,7 +2333,7 @@ package: dependencies: python: '>=3.9' setuptools: '' - url: https://conda.anaconda.org/conda-forge/noarch/joblib-1.4.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/joblib-1.4.2-pyhd8ed1ab_1.conda hash: md5: bf8243ee348f3a10a14ed0cae323e0c1 sha256: 51cc2dc491668af0c4d9299b0ab750f16ccf413ec5e2391b924108c1fbacae9b @@ -2345,7 +2345,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/json5-0.12.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/json5-0.12.0-pyhd8ed1ab_0.conda hash: md5: 56275442557b3b45752c10980abfe2db sha256: 889e2a49de796475b5a4bc57d0ba7f4606b368ee2098e353a6d9a14b0e2c6393 @@ -2357,7 +2357,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/json5-0.12.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/json5-0.12.0-pyhd8ed1ab_0.conda hash: md5: 56275442557b3b45752c10980abfe2db sha256: 889e2a49de796475b5a4bc57d0ba7f4606b368ee2098e353a6d9a14b0e2c6393 @@ -2370,7 +2370,7 @@ package: dependencies: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/linux-64/jsonpointer-3.0.0-py312h7900ff3_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/jsonpointer-3.0.0-py312h7900ff3_1.conda hash: md5: 6b51f7459ea4073eeb5057207e2e1e3d sha256: 76ccb7bffc7761d1d3133ffbe1f7f1710a0f0d9aaa9f7ea522652e799f3601f4 @@ -2383,7 +2383,7 @@ package: dependencies: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/win-64/jsonpointer-3.0.0-py312h2e8e312_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/jsonpointer-3.0.0-py312h2e8e312_1.conda hash: md5: e3ceda014d8461a11ca8552830a978f9 sha256: 6865b97780e795337f65592582aee6f25e5b96214c64ffd3f8cdf580fd64ba22 @@ -2401,7 +2401,7 @@ package: python: '>=3.9' referencing: '>=0.28.4' rpds-py: '>=0.7.1' - url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_1.conda hash: md5: a3cead9264b331b32fe8f0aabc967522 sha256: be992a99e589146f229c58fe5083e0b60551d774511c494f91fe011931bd7893 @@ -2419,7 +2419,7 @@ package: python: '>=3.9' referencing: '>=0.28.4' rpds-py: '>=0.7.1' - url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_1.conda hash: md5: a3cead9264b331b32fe8f0aabc967522 sha256: be992a99e589146f229c58fe5083e0b60551d774511c494f91fe011931bd7893 @@ -2432,7 +2432,7 @@ package: dependencies: python: '>=3.9' referencing: '>=0.31.0' - url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2024.10.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-specifications-2024.10.1-pyhd8ed1ab_1.conda hash: md5: 3b519bc21bc80e60b456f1e62962a766 sha256: 37127133837444cf0e6d1a95ff5a505f8214ed4e89e8e9343284840e674c6891 @@ -2445,7 +2445,7 @@ package: dependencies: python: '>=3.9' referencing: '>=0.31.0' - url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2024.10.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-specifications-2024.10.1-pyhd8ed1ab_1.conda hash: md5: 3b519bc21bc80e60b456f1e62962a766 sha256: 37127133837444cf0e6d1a95ff5a505f8214ed4e89e8e9343284840e674c6891 @@ -2465,7 +2465,7 @@ package: rfc3986-validator: '>0.1.0' uri-template: '' webcolors: '>=24.6.0' - url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-with-format-nongpl-4.23.0-hd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-with-format-nongpl-4.23.0-hd8ed1ab_1.conda hash: md5: a5b1a8065857cc4bd8b7a38d063bb728 sha256: 6e0184530011961a0802fda100ecdfd4b0eca634ed94c37e553b72e21c26627d @@ -2485,7 +2485,7 @@ package: rfc3986-validator: '>0.1.0' uri-template: '' webcolors: '>=24.6.0' - url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-with-format-nongpl-4.23.0-hd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-with-format-nongpl-4.23.0-hd8ed1ab_1.conda hash: md5: a5b1a8065857cc4bd8b7a38d063bb728 sha256: 6e0184530011961a0802fda100ecdfd4b0eca634ed94c37e553b72e21c26627d @@ -2516,7 +2516,7 @@ package: sphinx-thebe: '>=0.3.1,<1' sphinx-togglebutton: '' sphinxcontrib-bibtex: '>=2.5.0,<3' - url: https://conda.anaconda.org/conda-forge/noarch/jupyter-book-1.0.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter-book-1.0.3-pyhd8ed1ab_1.conda hash: md5: 739a29ac73026e68405153b50d0c60c2 sha256: f028c32b5d97d24df44b1a41f771a9932e07815c60c02e24acd9bd2eca31097f @@ -2547,7 +2547,7 @@ package: sphinx-thebe: '>=0.3.1,<1' sphinx-togglebutton: '' sphinxcontrib-bibtex: '>=2.5.0,<3' - url: https://conda.anaconda.org/conda-forge/noarch/jupyter-book-1.0.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter-book-1.0.3-pyhd8ed1ab_1.conda hash: md5: 739a29ac73026e68405153b50d0c60c2 sha256: f028c32b5d97d24df44b1a41f771a9932e07815c60c02e24acd9bd2eca31097f @@ -2567,7 +2567,7 @@ package: pyyaml: '' sqlalchemy: '>=1.3.12,<3' tabulate: '' - url: https://conda.anaconda.org/conda-forge/noarch/jupyter-cache-1.0.1-pyhff2d567_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter-cache-1.0.1-pyhff2d567_0.conda hash: md5: b0ee650829b8974202a7abe7f8b81e5a sha256: 054d397dd45ed08bffb0976702e553dfb0d0b0a477da9cff36e2ea702e928f48 @@ -2587,7 +2587,7 @@ package: pyyaml: '' sqlalchemy: '>=1.3.12,<3' tabulate: '' - url: https://conda.anaconda.org/conda-forge/noarch/jupyter-cache-1.0.1-pyhff2d567_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter-cache-1.0.1-pyhff2d567_0.conda hash: md5: b0ee650829b8974202a7abe7f8b81e5a sha256: 054d397dd45ed08bffb0976702e553dfb0d0b0a477da9cff36e2ea702e928f48 @@ -2601,7 +2601,7 @@ package: importlib-metadata: '>=4.8.3' jupyter_server: '>=1.1.2' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/jupyter-lsp-2.2.5-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter-lsp-2.2.5-pyhd8ed1ab_1.conda hash: md5: 0b4c3908e5a38ea22ebb98ee5888c768 sha256: 1565c8b1423a37fca00fe0ab2a17cd8992c2ecf23e7867a1c9f6f86a9831c196 @@ -2615,7 +2615,7 @@ package: importlib-metadata: '>=4.8.3' jupyter_server: '>=1.1.2' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/jupyter-lsp-2.2.5-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter-lsp-2.2.5-pyhd8ed1ab_1.conda hash: md5: 0b4c3908e5a38ea22ebb98ee5888c768 sha256: 1565c8b1423a37fca00fe0ab2a17cd8992c2ecf23e7867a1c9f6f86a9831c196 @@ -2633,7 +2633,7 @@ package: pyzmq: '>=23.0' tornado: '>=6.2' traitlets: '>=5.3' - url: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda hash: md5: 4ebae00eae9705b0c3d6d1018a81d047 sha256: 19d8bd5bb2fde910ec59e081eeb59529491995ce0d653a5209366611023a0b3a @@ -2651,7 +2651,7 @@ package: pyzmq: '>=23.0' tornado: '>=6.2' traitlets: '>=5.3' - url: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda hash: md5: 4ebae00eae9705b0c3d6d1018a81d047 sha256: 19d8bd5bb2fde910ec59e081eeb59529491995ce0d653a5209366611023a0b3a @@ -2666,7 +2666,7 @@ package: platformdirs: '>=2.5' python: '>=3.8' traitlets: '>=5.3' - url: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.7.2-pyh31011fe_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter_core-5.7.2-pyh31011fe_1.conda hash: md5: 0a2980dada0dd7fd0998f0342308b1b1 sha256: 732b1e8536bc22a5a174baa79842d79db2f4956d90293dd82dc1b3f6099bcccd @@ -2683,7 +2683,7 @@ package: python: '>=3.8' pywin32: '>=300' traitlets: '>=5.3' - url: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.7.2-pyh5737063_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter_core-5.7.2-pyh5737063_1.conda hash: md5: 46d87d1c0ea5da0aae36f77fa406e20d sha256: 7c903b2d62414c3e8da1f78db21f45b98de387aae195f8ca959794113ba4b3fd @@ -2703,7 +2703,7 @@ package: rfc3339-validator: '' rfc3986-validator: '>=0.1.1' traitlets: '>=5.3' - url: https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.12.0-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter_events-0.12.0-pyh29332c3_0.conda hash: md5: f56000b36f09ab7533877e695e4e8cb0 sha256: 37e6ac3ccf7afcc730c3b93cb91a13b9ae827fd306f35dd28f958a74a14878b5 @@ -2723,7 +2723,7 @@ package: rfc3339-validator: '' rfc3986-validator: '>=0.1.1' traitlets: '>=5.3' - url: https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.12.0-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter_events-0.12.0-pyh29332c3_0.conda hash: md5: f56000b36f09ab7533877e695e4e8cb0 sha256: 37e6ac3ccf7afcc730c3b93cb91a13b9ae827fd306f35dd28f958a74a14878b5 @@ -2753,7 +2753,7 @@ package: tornado: '>=6.2.0' traitlets: '>=5.6.0' websocket-client: '>=1.7' - url: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.15.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter_server-2.15.0-pyhd8ed1ab_0.conda hash: md5: 6ba8c206b5c6f52b82435056cf74ee46 sha256: be5f9774065d94c4a988f53812b83b67618bec33fcaaa005a98067d506613f8a @@ -2783,7 +2783,7 @@ package: tornado: '>=6.2.0' traitlets: '>=5.6.0' websocket-client: '>=1.7' - url: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.15.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter_server-2.15.0-pyhd8ed1ab_0.conda hash: md5: 6ba8c206b5c6f52b82435056cf74ee46 sha256: be5f9774065d94c4a988f53812b83b67618bec33fcaaa005a98067d506613f8a @@ -2796,7 +2796,7 @@ package: dependencies: python: '>=3.9' terminado: '>=0.8.3' - url: https://conda.anaconda.org/conda-forge/noarch/jupyter_server_terminals-0.5.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter_server_terminals-0.5.3-pyhd8ed1ab_1.conda hash: md5: 2d983ff1b82a1ccb6f2e9d8784bdd6bd sha256: 0890fc79422191bc29edf17d7b42cff44ba254aa225d31eb30819f8772b775b8 @@ -2809,7 +2809,7 @@ package: dependencies: python: '>=3.9' terminado: '>=0.8.3' - url: https://conda.anaconda.org/conda-forge/noarch/jupyter_server_terminals-0.5.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter_server_terminals-0.5.3-pyhd8ed1ab_1.conda hash: md5: 2d983ff1b82a1ccb6f2e9d8784bdd6bd sha256: 0890fc79422191bc29edf17d7b42cff44ba254aa225d31eb30819f8772b775b8 @@ -2836,7 +2836,7 @@ package: tomli: '>=1.2.2' tornado: '>=6.2.0' traitlets: '' - url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.4.0-pyhd8ed1ab_0.conda hash: md5: 2da6a5e2c788a1b1998b24c50a18572a sha256: 4d225d094d1e5a8e95c2bde0f9c9bbc5aac52d9abf7fd597dd7af0f467b44347 @@ -2863,7 +2863,7 @@ package: tomli: '>=1.2.2' tornado: '>=6.2.0' traitlets: '' - url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.4.0-pyhd8ed1ab_0.conda hash: md5: 2da6a5e2c788a1b1998b24c50a18572a sha256: 4d225d094d1e5a8e95c2bde0f9c9bbc5aac52d9abf7fd597dd7af0f467b44347 @@ -2876,7 +2876,7 @@ package: dependencies: pygments: '>=2.4.1,<3' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.3.0-pyhd8ed1ab_2.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab_pygments-0.3.0-pyhd8ed1ab_2.conda hash: md5: fd312693df06da3578383232528c468d sha256: dc24b900742fdaf1e077d9a3458fd865711de80bca95fe3c6d46610c532c6ef0 @@ -2889,7 +2889,7 @@ package: dependencies: pygments: '>=2.4.1,<3' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.3.0-pyhd8ed1ab_2.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab_pygments-0.3.0-pyhd8ed1ab_2.conda hash: md5: fd312693df06da3578383232528c468d sha256: dc24b900742fdaf1e077d9a3458fd865711de80bca95fe3c6d46610c532c6ef0 @@ -2909,7 +2909,7 @@ package: packaging: '>=21.3' python: '>=3.9' requests: '>=2.31' - url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.27.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab_server-2.27.3-pyhd8ed1ab_1.conda hash: md5: 9dc4b2b0f41f0de41d27f3293e319357 sha256: d03d0b7e23fa56d322993bc9786b3a43b88ccc26e58b77c756619a921ab30e86 @@ -2929,7 +2929,7 @@ package: packaging: '>=21.3' python: '>=3.9' requests: '>=2.31' - url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.27.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab_server-2.27.3-pyhd8ed1ab_1.conda hash: md5: 9dc4b2b0f41f0de41d27f3293e319357 sha256: d03d0b7e23fa56d322993bc9786b3a43b88ccc26e58b77c756619a921ab30e86 @@ -2941,7 +2941,7 @@ package: platform: linux-64 dependencies: python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-1.1.11-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab_widgets-1.1.11-pyhd8ed1ab_0.conda hash: md5: 05a08b368343304618b6a88425aa851a sha256: 639544e96969c7513b33bf3201a4dc3095625e34cff16c187f5dec9bee2dfb2f @@ -2953,7 +2953,7 @@ package: platform: win-64 dependencies: python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-1.1.11-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab_widgets-1.1.11-pyhd8ed1ab_0.conda hash: md5: 05a08b368343304618b6a88425aa851a sha256: 639544e96969c7513b33bf3201a4dc3095625e34cff16c187f5dec9bee2dfb2f @@ -2971,7 +2971,7 @@ package: python: '>=3.9' pyyaml: '' tomli: '' - url: https://conda.anaconda.org/conda-forge/noarch/jupytext-1.17.0-pyhbbac1ac_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupytext-1.17.0-pyhbbac1ac_0.conda hash: md5: d8e9471f69b3e7a7d233d43649b5061b sha256: 488a50bdca76b1c450323ea1f8213366f70130aff35ff87277ffa97107fbed2b @@ -2989,7 +2989,7 @@ package: python: '>=3.9' pyyaml: '' tomli: '' - url: https://conda.anaconda.org/conda-forge/noarch/jupytext-1.17.0-pyhbbac1ac_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupytext-1.17.0-pyhbbac1ac_0.conda hash: md5: d8e9471f69b3e7a7d233d43649b5061b sha256: 488a50bdca76b1c450323ea1f8213366f70130aff35ff87277ffa97107fbed2b @@ -3001,7 +3001,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=10.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 hash: md5: 30186d27e2c9fa62b45fb1476b7200e3 sha256: 150c05a6e538610ca7c43beb3a40d65c90537497a4f6a5f4d15ec0451b6f5ebb @@ -3017,7 +3017,7 @@ package: libstdcxx: '>=13' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/linux-64/kiwisolver-1.4.8-py312h84d6215_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/kiwisolver-1.4.8-py312h84d6215_0.conda hash: md5: 6713467dc95509683bfa3aca08524e8a sha256: 3ce99d721c1543f6f8f5155e53eef11be47b2f5942a8d1060de6854f9d51f246 @@ -3033,7 +3033,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/kiwisolver-1.4.8-py312hc790b64_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/kiwisolver-1.4.8-py312hc790b64_0.conda hash: md5: 7ef59428fc0dcb8a78a5e23dc4f50aa3 sha256: 2cce3d9bcc95c68069e3032cda25b732f69be7b025f94685ee4783d7b54588dd @@ -3049,7 +3049,7 @@ package: libgcc-ng: '>=12' libstdcxx-ng: '>=12' openssl: '>=3.3.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda hash: md5: 3f43953b7d3fb3aaa1d0d0723d91e368 sha256: 99df692f7a8a5c27cd14b5fb1374ee55e756631b9c3d659ed3ee60830249b238 @@ -3064,7 +3064,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/krb5-1.21.3-hdf4eb48_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/krb5-1.21.3-hdf4eb48_0.conda hash: md5: 31aec030344e962fbd7dbbbbd68e60a9 sha256: 18e8b3430d7d232dad132f574268f56b3eb1a19431d6d5de8c53c29e6c18fa81 @@ -3077,7 +3077,7 @@ package: dependencies: python: '' six: '' - url: https://conda.anaconda.org/conda-forge/noarch/latexcodec-2.0.1-pyh9f0ad1d_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/latexcodec-2.0.1-pyh9f0ad1d_0.tar.bz2 hash: md5: 8d67904973263afd2985ba56aa2d6bb4 sha256: 5210d31c8f2402dd1ad1b3edcf7a53292b9da5de20cd14d9c243dbf9278b1c4f @@ -3090,7 +3090,7 @@ package: dependencies: python: '' six: '' - url: https://conda.anaconda.org/conda-forge/noarch/latexcodec-2.0.1-pyh9f0ad1d_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/latexcodec-2.0.1-pyh9f0ad1d_0.tar.bz2 hash: md5: 8d67904973263afd2985ba56aa2d6bb4 sha256: 5210d31c8f2402dd1ad1b3edcf7a53292b9da5de20cd14d9c243dbf9278b1c4f @@ -3105,7 +3105,7 @@ package: libgcc: '>=13' libjpeg-turbo: '>=3.0.0,<4.0a0' libtiff: '>=4.7.0,<4.8.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/lcms2-2.17-h717163a_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/lcms2-2.17-h717163a_0.conda hash: md5: 000e85703f0fd9594c81710dd5066471 sha256: d6a61830a354da022eae93fa896d0991385a875c6bba53c82263a289deda9db8 @@ -3121,7 +3121,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/lcms2-2.17-hbcf6048_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/lcms2-2.17-hbcf6048_0.conda hash: md5: 3538827f77b82a837fa681a4579e37a1 sha256: 7712eab5f1a35ca3ea6db48ead49e0d6ac7f96f8560da8023e61b3dbe4f3b25d @@ -3133,7 +3133,7 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_4.conda + url: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_4.conda hash: md5: 01f8d123c96816249efd255a31ad7712 sha256: db73f38155d901a610b2320525b9dd3b31e4949215c870685fd92ea61b5ce472 @@ -3146,7 +3146,7 @@ package: dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2 hash: md5: 76bbff344f0134279f225174e9064c8f sha256: cb55f36dcd898203927133280ae1dc643368af041a48bcf7c026acb7c47b0c12 @@ -3159,7 +3159,7 @@ package: dependencies: vc: '>=14.2,<15' vs2015_runtime: '>=14.29.30037' - url: https://conda.anaconda.org/conda-forge/win-64/lerc-4.0.0-h63175ca_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/win-64/lerc-4.0.0-h63175ca_0.tar.bz2 hash: md5: 1900cb3cab5055833cfddb0ba233b074 sha256: f4f39d7f6a2f9b407f8fb567a6c25755270421731d70f0ff331f5de4fa367488 @@ -3172,7 +3172,7 @@ package: dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda hash: md5: 5e97e271911b8b2001a8b71860c32faa sha256: 2ef420a655528bca9d269086cf33b7e90d2f54ad941b437fb1ed5eca87cee017 @@ -3186,7 +3186,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libaec-1.1.3-h63175ca_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libaec-1.1.3-h63175ca_0.conda hash: md5: 8723000f6ffdbdaef16025f0a01b64c5 sha256: f5c293d3cfc00f71dfdb64bd65ab53625565f8778fc2d5790575bef238976ebf @@ -3198,7 +3198,7 @@ package: platform: linux-64 dependencies: mkl: '>=2024.2.2,<2025.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-31_hfdb39a5_mkl.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libblas-3.9.0-31_hfdb39a5_mkl.conda hash: md5: bdf4a57254e8248222cb631db4393ff1 sha256: 862289f2cfb84bb6001d0e3569e908b8c42d66b881bd5b03f730a3924628b978 @@ -3210,7 +3210,7 @@ package: platform: win-64 dependencies: mkl: 2024.2.2 - url: https://conda.anaconda.org/conda-forge/win-64/libblas-3.9.0-31_h641d27c_mkl.conda + url: https://repo.prefix.dev/conda-forge/win-64/libblas-3.9.0-31_h641d27c_mkl.conda hash: md5: d05563c577fe2f37693a554b3f271e8f sha256: 7bb4d5b591e98fe607279520ee78e3571a297b5720aa789a2536041ad5540de8 @@ -3223,7 +3223,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.1.0-hb9d3cd8_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlicommon-1.1.0-hb9d3cd8_2.conda hash: md5: 41b599ed2b02abcfdd84302bff174b23 sha256: d9db2de60ea917298e658143354a530e9ca5f9c63471c65cf47ab39fd2f429e3 @@ -3237,7 +3237,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libbrotlicommon-1.1.0-h2466b09_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/libbrotlicommon-1.1.0-h2466b09_2.conda hash: md5: f7dc9a8f21d74eab46456df301da2972 sha256: 33e8851c6cc8e2d93059792cd65445bfe6be47e4782f826f01593898ec95764c @@ -3251,7 +3251,7 @@ package: __glibc: '>=2.17,<3.0.a0' libbrotlicommon: 1.1.0 libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.1.0-hb9d3cd8_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlidec-1.1.0-hb9d3cd8_2.conda hash: md5: 9566f0bd264fbd463002e759b8a82401 sha256: 2892d512cad096cb03f1b66361deeab58b64e15ba525d6592bb6d609e7045edf @@ -3266,7 +3266,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libbrotlidec-1.1.0-h2466b09_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/libbrotlidec-1.1.0-h2466b09_2.conda hash: md5: 9bae75ce723fa34e98e239d21d752a7e sha256: 234fc92f4c4f1cf22f6464b2b15bfc872fa583c74bf3ab9539ff38892c43612f @@ -3280,7 +3280,7 @@ package: __glibc: '>=2.17,<3.0.a0' libbrotlicommon: 1.1.0 libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlienc-1.1.0-hb9d3cd8_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlienc-1.1.0-hb9d3cd8_2.conda hash: md5: 06f70867945ea6a84d35836af780f1de sha256: 779f58174e99de3600e939fa46eddb453ec5d3c60bb46cdaa8b4c127224dbf29 @@ -3295,7 +3295,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libbrotlienc-1.1.0-h2466b09_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/libbrotlienc-1.1.0-h2466b09_2.conda hash: md5: 85741a24d97954a991e55e34bc55990b sha256: 3d0dd7ef505962f107b7ea8f894e0b3dd01bf46852b362c8a7fc136b039bc9e1 @@ -3307,7 +3307,7 @@ package: platform: linux-64 dependencies: libblas: 3.9.0 - url: https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-31_h372d94f_mkl.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libcblas-3.9.0-31_h372d94f_mkl.conda hash: md5: 2a06a6c16b45bd3d10002927ca204b67 sha256: 2ee3ab2b6eeb59f2d3c6f933fa0db28f1b56f0bc543ed2c0f6ec04060e4b6ec0 @@ -3319,7 +3319,7 @@ package: platform: win-64 dependencies: libblas: 3.9.0 - url: https://conda.anaconda.org/conda-forge/win-64/libcblas-3.9.0-31_h5e41251_mkl.conda + url: https://repo.prefix.dev/conda-forge/win-64/libcblas-3.9.0-31_h5e41251_mkl.conda hash: md5: 43c100b94ad2607382b0cf0f3a6b0bf3 sha256: 609f455b099919bd4d15d4a733f493dc789e02da73fe4474f1cca73afafb95b8 @@ -3338,7 +3338,7 @@ package: libzlib: '>=1.3.1,<2.0a0' openssl: '>=3.4.1,<4.0a0' zstd: '>=1.5.7,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.13.0-h332b0f4_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libcurl-8.13.0-h332b0f4_0.conda hash: md5: cbdc92ac0d93fe3c796e36ad65c7905c sha256: 38e528acfaa0276b7052f4de44271ff9293fdb84579650601a8c49dac171482a @@ -3355,7 +3355,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libcurl-8.13.0-h88aaa65_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libcurl-8.13.0-h88aaa65_0.conda hash: md5: c9cf6eb842decbb66c2f34e72c3580d6 sha256: 185553b37c0299b7a15dc66a7a7e2a0d421adaac784ec9298a0b2ad745116ca5 @@ -3368,7 +3368,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.23-h4ddbbb0_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libdeflate-1.23-h4ddbbb0_0.conda hash: md5: 8dfae1d2e74767e9ce36d5fa0d8605db sha256: 511d801626d02f4247a04fff957cc6e9ec4cc7e8622bd9acd076bcdc5de5fe66 @@ -3382,7 +3382,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libdeflate-1.23-h9062f6e_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libdeflate-1.23-h9062f6e_0.conda hash: md5: a9624935147a25b06013099d3038e467 sha256: 96c47725a8258159295996ea2758fa0ff9bea330e72b59641642e16be8427ce8 @@ -3395,7 +3395,7 @@ package: dependencies: numpy: '' python: '>=3.10' - url: https://conda.anaconda.org/conda-forge/noarch/libdlf-0.3.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/libdlf-0.3.0-pyhd8ed1ab_1.conda hash: md5: 2e9654bb2bcf5986c2def3ba35413326 sha256: 367c575a6388380d9a0da6ff06571d903ae89366c42d9f16e32de5d359b6971a @@ -3408,7 +3408,7 @@ package: dependencies: numpy: '' python: '>=3.10' - url: https://conda.anaconda.org/conda-forge/noarch/libdlf-0.3.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/libdlf-0.3.0-pyhd8ed1ab_1.conda hash: md5: 2e9654bb2bcf5986c2def3ba35413326 sha256: 367c575a6388380d9a0da6ff06571d903ae89366c42d9f16e32de5d359b6971a @@ -3422,7 +3422,7 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' ncurses: '>=6.5,<7.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.conda hash: md5: c277e0a4d549b03ac1e9d6cbbe3d017b sha256: d789471216e7aba3c184cd054ed61ce3f6dac6f87a50ec69291b9297f8c18724 @@ -3434,7 +3434,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libev-4.33-hd590300_2.conda hash: md5: 172bf1cd1ff8629f2b1179945ed45055 sha256: 1cd6048169fa0395af74ed5d8f1716e22c19a81a8a36f934c110ca3ad4dd27b4 @@ -3447,7 +3447,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.7.0-h5888daf_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libexpat-2.7.0-h5888daf_0.conda hash: md5: db0bfbe7dd197b68ad5f30333bae6ce0 sha256: 33ab03438aee65d6aa667cf7d90c91e5e7d734c19a67aa4c7040742c0a13d505 @@ -3461,7 +3461,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libexpat-2.7.0-he0c23c2_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libexpat-2.7.0-he0c23c2_0.conda hash: md5: b6f5352fdb525662f4169a0431d2dd7a sha256: 1a227c094a4e06bd54e8c2f3ec40c17ff99dcf3037d812294f842210aa66dbeb @@ -3474,7 +3474,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.6-h2dba641_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libffi-3.4.6-h2dba641_1.conda hash: md5: ede4673863426c0883c0063d853bbd85 sha256: 764432d32db45466e87f10621db5b74363a9f847d2b8b1f9743746cd160f06ab @@ -3488,7 +3488,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.6-h537db12_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/libffi-3.4.6-h537db12_1.conda hash: md5: 85d8fa5e55ed8f93f874b3b23ed54ec6 sha256: d3b0b8812eab553d3464bbd68204f007f1ebadf96ce30eb0cbc5159f72e353f5 @@ -3501,7 +3501,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' _openmp_mutex: '>=4.5' - url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-14.2.0-h767d61c_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-14.2.0-h767d61c_2.conda hash: md5: ef504d1acbd74b7cc6849ef8af47dd03 sha256: 3a572d031cb86deb541d15c1875aaa097baefc0c580b54dc61f5edab99215792 @@ -3514,7 +3514,7 @@ package: dependencies: _openmp_mutex: '>=4.5' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' - url: https://conda.anaconda.org/conda-forge/win-64/libgcc-14.2.0-h1383e82_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/libgcc-14.2.0-h1383e82_2.conda hash: md5: 4a74c1461a0ba47a3346c04bdccbe2ad sha256: fddf2fc037bc95adb3b369e8866da8a71b6a67ebcfc4d7035ac4208309dc9e72 @@ -3526,7 +3526,7 @@ package: platform: linux-64 dependencies: libgcc: 14.2.0 - url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_2.conda hash: md5: a2222a6ada71fb478682efe483ce0f92 sha256: fb7558c328b38b2f9d2e412c48da7890e7721ba018d733ebdfea57280df01904 @@ -3538,7 +3538,7 @@ package: platform: linux-64 dependencies: libgfortran5: 14.2.0 - url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-14.2.0-h69a702a_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran-14.2.0-h69a702a_2.conda hash: md5: fb54c4ea68b460c278d26eea89cfbcc3 sha256: e05263e8960da03c341650f2a3ffa4ccae4e111cb198e8933a2908125459e5a6 @@ -3551,7 +3551,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14.2.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-14.2.0-hf1ad2bd_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran5-14.2.0-hf1ad2bd_2.conda hash: md5: 556a4fdfac7287d349b8f09aba899693 sha256: c17b7cf3073a1f4e1f34d50872934fa326346e104d3c445abc1e62481ad6085c @@ -3563,7 +3563,7 @@ package: platform: win-64 dependencies: libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' - url: https://conda.anaconda.org/conda-forge/win-64/libgomp-14.2.0-h1383e82_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/libgomp-14.2.0-h1383e82_2.conda hash: md5: dd6b1ab49e28bcb6154cd131acec985b sha256: 674ec5f1bf319eac98d0d6ecb9c38e0192f3cf41969a5621d62a7e695e1aa9f3 @@ -3578,7 +3578,7 @@ package: libgcc: '>=13' libstdcxx: '>=13' libxml2: '>=2.13.4,<2.14.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libhwloc-2.11.2-default_h0d58e46_1001.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libhwloc-2.11.2-default_h0d58e46_1001.conda hash: md5: 804ca9e91bcaea0824a341d55b1684f2 sha256: d14c016482e1409ae1c50109a9ff933460a50940d2682e745ab1c172b5282a69 @@ -3594,7 +3594,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libhwloc-2.11.2-default_ha69328c_1001.conda + url: https://repo.prefix.dev/conda-forge/win-64/libhwloc-2.11.2-default_ha69328c_1001.conda hash: md5: b87a0ac5ab6495d8225db5dc72dd21cd sha256: 850e255997f538d5fb6ed651321141155a33bb781d43d326fc4ff62114dd2842 @@ -3607,7 +3607,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.18-h4ce23a2_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libiconv-1.18-h4ce23a2_1.conda hash: md5: e796ff8ddc598affdf7c173d6145f087 sha256: 18a4afe14f731bfb9cf388659994263904d20111e42f841e9eea1bb6f91f4ab4 @@ -3621,7 +3621,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libiconv-1.18-h135ad9c_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/libiconv-1.18-h135ad9c_1.conda hash: md5: 21fc5dba2cbcd8e5e26ff976a312122c sha256: ea5ed2b362b6dbc4ba7188eb4eaf576146e3dfc6f4395e9f0db76ad77465f786 @@ -3633,7 +3633,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libjpeg-turbo-3.0.0-hd590300_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libjpeg-turbo-3.0.0-hd590300_1.conda hash: md5: ea25936bb4080d843790b586850f82b8 sha256: b954e09b7e49c2f2433d6f3bb73868eda5e378278b0f8c1dd10a7ef090e14f2f @@ -3647,7 +3647,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libjpeg-turbo-3.0.0-hcfcfb64_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/libjpeg-turbo-3.0.0-hcfcfb64_1.conda hash: md5: 3f1b948619c45b1ca714d60c7389092c sha256: 4e7808e3098b4b4ed7e287f63bb24f9045cc4d95bfd39f0db870fc2837d74dff @@ -3659,7 +3659,7 @@ package: platform: linux-64 dependencies: libblas: 3.9.0 - url: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-31_hc41d3b0_mkl.conda + url: https://repo.prefix.dev/conda-forge/linux-64/liblapack-3.9.0-31_hc41d3b0_mkl.conda hash: md5: 10d012ddd7cc1c7ff9093d4974a34e53 sha256: a2d20845d916ac8fba09376cd791136a9b4547afb2131bc315178adfc87bb4ca @@ -3671,7 +3671,7 @@ package: platform: win-64 dependencies: libblas: 3.9.0 - url: https://conda.anaconda.org/conda-forge/win-64/liblapack-3.9.0-31_h1aa476e_mkl.conda + url: https://repo.prefix.dev/conda-forge/win-64/liblapack-3.9.0-31_h1aa476e_mkl.conda hash: md5: 40b47ee720a185289760960fc6185750 sha256: 9415e807aa6f8968322bbd756aab8f487379d809c74266d37c697b8d85c534ad @@ -3684,7 +3684,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_0.conda hash: md5: 0e87378639676987af32fee53ba32258 sha256: f4f21dfc54b08d462f707b771ecce3fa9bc702a2a05b55654f64154f48b141ef @@ -3698,7 +3698,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/liblzma-5.8.1-h2466b09_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/liblzma-5.8.1-h2466b09_0.conda hash: md5: 8d5cb0016b645d6688e2ff57c5d51302 sha256: 1477e9bff05318f3129d37be0e64c76cce0973c4b8c73d13a467d0b7f03d157c @@ -3716,7 +3716,7 @@ package: libstdcxx: '>=13' libzlib: '>=1.3.1,<2.0a0' openssl: '>=3.3.2,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.64.0-h161d5f1_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libnghttp2-1.64.0-h161d5f1_0.conda hash: md5: 19e57602824042dfd0446292ef90488b sha256: b0f2b3695b13a989f75d8fd7f4778e1c7aabe3b36db83f0fe80b2cd812c0e975 @@ -3728,7 +3728,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda hash: md5: 30fd6e37fe21f86f4bd26d6ee73eeec7 sha256: 26d77a3bb4dceeedc2a41bd688564fe71bf2d149fdcf117049970bc02ff1add6 @@ -3742,7 +3742,7 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' libzlib: '>=1.3.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.47-h943b412_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libpng-1.6.47-h943b412_0.conda hash: md5: 55199e2ae2c3651f6f9b2a447b47bdc9 sha256: 23367d71da58c9a61c8cbd963fcffb92768d4ae5ffbef9a47cdf1f54f98c5c36 @@ -3757,7 +3757,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libpng-1.6.47-had7236b_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libpng-1.6.47-had7236b_0.conda hash: md5: 7d717163d9dab337c65f2bf21a676b8f sha256: cf8a594b697de103025dcae2c917ec9c100609caf7c917a94c64a683cb1db1ac @@ -3775,7 +3775,7 @@ package: libgfortran5: '>=13.3.0' liblzma: '>=5.6.3,<6.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libscotch-7.0.6-hea33c07_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libscotch-7.0.6-hea33c07_1.conda hash: md5: 1b600d55dcd98c958192a69a79e6acd2 sha256: 8330bba8b7b3a37da6eca04bace985fb9f8d487d3249b8f690e8f4a3d8d3c7dc @@ -3787,7 +3787,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libsodium-1.0.20-h4ab18f5_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libsodium-1.0.20-h4ab18f5_0.conda hash: md5: a587892d3c13b6621a6091be690dbca2 sha256: 0105bd108f19ea8e6a78d2d994a6d4a8db16d19a41212070d2d1d48a63c34161 @@ -3801,7 +3801,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libsodium-1.0.20-hc70643c_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libsodium-1.0.20-hc70643c_0.conda hash: md5: 198bb594f202b205c7d18b936fa4524f sha256: 7bcb3edccea30f711b6be9601e083ecf4f435b9407d70fc48fbcf9e5d69a0fc6 @@ -3815,7 +3815,7 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' libzlib: '>=1.3.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.49.1-hee588c1_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.49.1-hee588c1_2.conda hash: md5: 962d6ac93c30b1dfc54c9cccafd1003e sha256: a086289bf75c33adc1daed3f1422024504ffb5c3c8b3285c49f025c29708ed16 @@ -3829,7 +3829,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.49.1-h67fdade_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.49.1-h67fdade_2.conda hash: md5: b58b66d4ad1aaf1c2543cbbd6afb1a59 sha256: c092d42d00fd85cf609cc58574ba2b03c141af5762283f36f5dd445ef7c0f4fe @@ -3844,7 +3844,7 @@ package: libgcc: '>=13' libzlib: '>=1.3.1,<2.0a0' openssl: '>=3.4.0,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.1-hf672d98_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libssh2-1.11.1-hf672d98_0.conda hash: md5: be2de152d8073ef1c01b7728475f2fe7 sha256: 0407ac9fda2bb67e11e357066eff144c845801d00b5f664efbc48813af1e7bb9 @@ -3860,7 +3860,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libssh2-1.11.1-he619c9f_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libssh2-1.11.1-he619c9f_0.conda hash: md5: af0cbf037dd614c34399b3b3e568c557 sha256: 4b3256bd2b4e4b3183005d3bd8826d651eccd1a4740b70625afa2b7e7123d191 @@ -3873,7 +3873,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: 14.2.0 - url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-14.2.0-h8f9b012_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-14.2.0-h8f9b012_2.conda hash: md5: a78c856b6dc6bf4ea8daeb9beaaa3fb0 sha256: 8f5bd92e4a24e1d35ba015c5252e8f818898478cb3bc50bd8b12ab54707dc4da @@ -3885,7 +3885,7 @@ package: platform: linux-64 dependencies: libstdcxx: 14.2.0 - url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-14.2.0-h4852527_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-14.2.0-h4852527_2.conda hash: md5: c75da67f045c2627f59e6fcb5f4e3a9b sha256: e86f38b007cf97cc2c67cd519f2de12a313c4ee3f5ef11652ad08932a5e34189 @@ -3906,7 +3906,7 @@ package: libwebp-base: '>=1.4.0,<2.0a0' libzlib: '>=1.3.1,<2.0a0' zstd: '>=1.5.6,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.7.0-hd9ff511_3.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libtiff-4.7.0-hd9ff511_3.conda hash: md5: 0ea6510969e1296cc19966fad481f6de sha256: b224e16b88d76ea95e4af56e2bc638c603bd26a770b98d117d04541d3aafa002 @@ -3926,7 +3926,7 @@ package: vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' zstd: '>=1.5.6,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/win-64/libtiff-4.7.0-h797046b_3.conda + url: https://repo.prefix.dev/conda-forge/win-64/libtiff-4.7.0-h797046b_3.conda hash: md5: defed79ff7a9164ad40320e3f116a138 sha256: c363a8baba4ce12b8f01f0ab74fe8b0dc83facd89c6604f4a191084923682768 @@ -3938,7 +3938,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda hash: md5: 40b61aab5c7ba9ff276c41cfffe6b80b sha256: 787eb542f055a2b3de553614b25f09eefb0a0931b0c87dbcce6efdfd92f04f18 @@ -3951,7 +3951,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.5.0-h851e524_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libwebp-base-1.5.0-h851e524_0.conda hash: md5: 63f790534398730f59e1b899c3644d4a sha256: c45283fd3e90df5f0bd3dbcd31f59cdd2b001d424cf30a07223655413b158eaf @@ -3965,7 +3965,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libwebp-base-1.5.0-h3b0e114_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libwebp-base-1.5.0-h3b0e114_0.conda hash: md5: 33f7313967072c6e6d8f865f5493c7ae sha256: 1d75274614e83a5750b8b94f7bad2fc0564c2312ff407e697d99152ed095576f @@ -3977,7 +3977,7 @@ package: platform: win-64 dependencies: ucrt: '' - url: https://conda.anaconda.org/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h57928b3_9.conda + url: https://repo.prefix.dev/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h57928b3_9.conda hash: md5: 08bfa5da6e242025304b206d152479ef sha256: 373f2973b8a358528b22be5e8d84322c165b4c5577d24d94fd67ad1bb0a0f261 @@ -3993,7 +3993,7 @@ package: pthread-stubs: '' xorg-libxau: '>=1.0.11,<2.0a0' xorg-libxdmcp: '' - url: https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda hash: md5: 92ed62436b625154323d40d5f2f11dd7 sha256: 666c0c431b23c6cec6e492840b176dde533d48b7e6fb8883f5071223433776aa @@ -4010,7 +4010,7 @@ package: ucrt: '>=10.0.20348.0' xorg-libxau: '>=1.0.11,<2.0a0' xorg-libxdmcp: '' - url: https://conda.anaconda.org/conda-forge/win-64/libxcb-1.17.0-h0e4246c_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libxcb-1.17.0-h0e4246c_0.conda hash: md5: a69bbf778a462da324489976c84cfc8c sha256: 08dec73df0e161c96765468847298a420933a36bc4f09b50e062df8793290737 @@ -4022,7 +4022,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda hash: md5: 5aa797f8787fe7a17d1b0821485b5adc sha256: 6ae68e0b86423ef188196fff6207ed0c8195dd84273cb5623b85aa08033a410c @@ -4038,7 +4038,7 @@ package: libiconv: '>=1.18,<2.0a0' liblzma: '>=5.8.1,<6.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.13.7-h81593ed_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libxml2-2.13.7-h81593ed_1.conda hash: md5: 0619e8fc4c8025a908ea3a3422d3b775 sha256: c4f59563e017eba378ea843be5ebde4b0546c72bbe4c1e43b2b384379e827635 @@ -4054,7 +4054,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libxml2-2.13.7-h442d1da_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/libxml2-2.13.7-h442d1da_1.conda hash: md5: c14ff7f05e57489df9244917d2b55763 sha256: 0a013527f784f4702dc18460070d8ec79d1ebb5087dd9e678d6afbeaca68d2ac @@ -4067,7 +4067,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda hash: md5: edb0dca6bc32e4f4789199455a1dbeb8 sha256: d4bfe88d7cb447768e31650f06257995601f89076080e76df55e3112d4e47dc4 @@ -4081,7 +4081,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda hash: md5: 41fbfac52c601159df6c01f875de31b9 sha256: ba945c6493449bed0e6e29883c4943817f7c79cbff52b83360f7b341277c6402 @@ -4094,7 +4094,7 @@ package: dependencies: python: '>=3.9' uc-micro-py: '' - url: https://conda.anaconda.org/conda-forge/noarch/linkify-it-py-2.0.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/linkify-it-py-2.0.3-pyhd8ed1ab_1.conda hash: md5: b02fe519b5dc0dc55e7299810fcdfb8e sha256: d975a2015803d4fdaaae3f53e21f64996577d7a069eb61c6d2792504f16eb57b @@ -4107,7 +4107,7 @@ package: dependencies: python: '>=3.9' uc-micro-py: '' - url: https://conda.anaconda.org/conda-forge/noarch/linkify-it-py-2.0.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/linkify-it-py-2.0.3-pyhd8ed1ab_1.conda hash: md5: b02fe519b5dc0dc55e7299810fcdfb8e sha256: d975a2015803d4fdaaae3f53e21f64996577d7a069eb61c6d2792504f16eb57b @@ -4119,7 +4119,7 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://conda.anaconda.org/conda-forge/linux-64/llvm-openmp-20.1.3-h024ca30_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-20.1.3-h024ca30_0.conda hash: md5: c721339ea8746513e42b1233b4bbdfb0 sha256: 4327a463f43b0d95ca0e5f92094383ef53fd2a91d649debfc531b941fe44fd48 @@ -4133,7 +4133,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/llvm-openmp-20.1.3-h30eaf37_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-20.1.3-h30eaf37_0.conda hash: md5: 183c102075722a7aa993f94de1d135f2 sha256: 27326e733ce7ad87054a409c02b829594cc6276232b987eb135cd1a225eac669 @@ -4145,7 +4145,7 @@ package: platform: linux-64 dependencies: python: '>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*' - url: https://conda.anaconda.org/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 91e27ef3d05cc772ce627e51cff111c4 sha256: 9afe0b5cfa418e8bdb30d8917c5a6cec10372b037924916f1f85b9f4899a67a6 @@ -4157,7 +4157,7 @@ package: platform: win-64 dependencies: python: '>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*' - url: https://conda.anaconda.org/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 91e27ef3d05cc772ce627e51cff111c4 sha256: 9afe0b5cfa418e8bdb30d8917c5a6cec10372b037924916f1f85b9f4899a67a6 @@ -4171,7 +4171,7 @@ package: mdurl: '>=0.1,<1' python: '>=3.7' typing_extensions: '>=3.7.4' - url: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-2.2.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/markdown-it-py-2.2.0-pyhd8ed1ab_0.conda hash: md5: b2928a6c6d52d7e3562b4a59c3214e3a sha256: 65ed439862c1851463f03a9bc5109992ce3e3e025e9a2d76d13ca19f576eee9f @@ -4185,7 +4185,7 @@ package: mdurl: '>=0.1,<1' python: '>=3.7' typing_extensions: '>=3.7.4' - url: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-2.2.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/markdown-it-py-2.2.0-pyhd8ed1ab_0.conda hash: md5: b2928a6c6d52d7e3562b4a59c3214e3a sha256: 65ed439862c1851463f03a9bc5109992ce3e3e025e9a2d76d13ca19f576eee9f @@ -4200,7 +4200,7 @@ package: libgcc: '>=13' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-3.0.2-py312h178313f_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/markupsafe-3.0.2-py312h178313f_1.conda hash: md5: eb227c3e0bf58f5bd69c0532b157975b sha256: 4a6bf68d2a2b669fecc9a4a009abd1cf8e72c2289522ff00d81b5a6e51ae78f5 @@ -4216,7 +4216,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/markupsafe-3.0.2-py312h31fea79_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/markupsafe-3.0.2-py312h31fea79_1.conda hash: md5: 944fdd848abfbd6929e57c790b8174dd sha256: bbb9595fe72231a8fbc8909cfa479af93741ecd2d28dfe37f8f205fef5df2217 @@ -4243,7 +4243,7 @@ package: python-dateutil: '>=2.7' python_abi: 3.12.* tk: '>=8.6.13,<8.7.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/matplotlib-base-3.8.4-py312h20ab3a6_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/matplotlib-base-3.8.4-py312h20ab3a6_2.conda hash: md5: fbfe798f83f0d66410903ad8f40d5283 sha256: a927afa9e4b5cf7889b5a82ef2286b089873f402a0d0e10e6adb4cbf820a4db9 @@ -4270,7 +4270,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/matplotlib-base-3.8.4-py312hfee7060_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/matplotlib-base-3.8.4-py312hfee7060_2.conda hash: md5: 6b623fa66ac3cd1601da60160c46514b sha256: 023644d13bf1fab7c58f4df0d461cd237874802b0e7370ad049463d39d2fb2f4 @@ -4283,7 +4283,7 @@ package: dependencies: python: '>=3.9' traitlets: '' - url: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_1.conda hash: md5: af6ab708897df59bd6e7283ceab1b56b sha256: 69b7dc7131703d3d60da9b0faa6dd8acbf6f6c396224cf6aef3e855b8c0c41c6 @@ -4296,7 +4296,7 @@ package: dependencies: python: '>=3.9' traitlets: '' - url: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_1.conda hash: md5: af6ab708897df59bd6e7283ceab1b56b sha256: 69b7dc7131703d3d60da9b0faa6dd8acbf6f6c396224cf6aef3e855b8c0c41c6 @@ -4308,7 +4308,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda hash: md5: 827064ddfe0de2917fb29f1da4f8f533 sha256: 9b0037171dad0100f0296699a11ae7d355237b55f42f9094aebc0f41512d96a1 @@ -4320,7 +4320,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda hash: md5: 827064ddfe0de2917fb29f1da4f8f533 sha256: 9b0037171dad0100f0296699a11ae7d355237b55f42f9094aebc0f41512d96a1 @@ -4333,7 +4333,7 @@ package: dependencies: markdown-it-py: '>=1.0.0,<4.0.0' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.4.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/mdit-py-plugins-0.4.2-pyhd8ed1ab_1.conda hash: md5: af2060041d4f3250a7eb6ab3ec0e549b sha256: c63ed79d9745109c0a70397713b0c07f06e7d3561abcb122cfc80a141ab3b449 @@ -4346,7 +4346,7 @@ package: dependencies: markdown-it-py: '>=1.0.0,<4.0.0' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.4.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/mdit-py-plugins-0.4.2-pyhd8ed1ab_1.conda hash: md5: af2060041d4f3250a7eb6ab3ec0e549b sha256: c63ed79d9745109c0a70397713b0c07f06e7d3561abcb122cfc80a141ab3b449 @@ -4358,7 +4358,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_1.conda hash: md5: 592132998493b3ff25fd7479396e8351 sha256: 78c1bbe1723449c52b7a9df1af2ee5f005209f67e40b6e1d3c7619127c43b1c7 @@ -4370,7 +4370,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_1.conda hash: md5: 592132998493b3ff25fd7479396e8351 sha256: 78c1bbe1723449c52b7a9df1af2ee5f005209f67e40b6e1d3c7619127c43b1c7 @@ -4384,7 +4384,7 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' libstdcxx: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/metis-5.1.0-hd0bcaf9_1007.conda + url: https://repo.prefix.dev/conda-forge/linux-64/metis-5.1.0-hd0bcaf9_1007.conda hash: md5: 28eb714416de4eb83e2cbc47e99a1b45 sha256: e8a00971e6d00bd49f375c5d8d005b37a9abba0b1768533aed0f90a422bf5cc7 @@ -4397,7 +4397,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '' - url: https://conda.anaconda.org/conda-forge/noarch/mistune-3.1.3-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/mistune-3.1.3-pyh29332c3_0.conda hash: md5: 7ec6576e328bc128f4982cd646eeba85 sha256: a67484d7dd11e815a81786580f18b6e4aa2392f292f29183631a6eccc8dc37b3 @@ -4410,7 +4410,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '' - url: https://conda.anaconda.org/conda-forge/noarch/mistune-3.1.3-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/mistune-3.1.3-pyh29332c3_0.conda hash: md5: 7ec6576e328bc128f4982cd646eeba85 sha256: a67484d7dd11e815a81786580f18b6e4aa2392f292f29183631a6eccc8dc37b3 @@ -4424,7 +4424,7 @@ package: _openmp_mutex: '*' llvm-openmp: '>=19.1.2' tbb: 2021.* - url: https://conda.anaconda.org/conda-forge/linux-64/mkl-2024.2.2-ha957f24_16.conda + url: https://repo.prefix.dev/conda-forge/linux-64/mkl-2024.2.2-ha957f24_16.conda hash: md5: 1459379c79dda834673426504d52b319 sha256: 77906b0acead8f86b489da46f53916e624897338770dbf70b04b8f673c9273c1 @@ -4437,7 +4437,7 @@ package: dependencies: intel-openmp: 2024.* tbb: 2021.* - url: https://conda.anaconda.org/conda-forge/win-64/mkl-2024.2.2-h66d3029_15.conda + url: https://repo.prefix.dev/conda-forge/win-64/mkl-2024.2.2-h66d3029_15.conda hash: md5: 302dff2807f2927b3e9e0d19d60121de sha256: 20e52b0389586d0b914a49cd286c5ccc9c47949bed60ca6df004d1d295f2edbd @@ -4453,7 +4453,7 @@ package: libstdcxx: '>=13' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/linux-64/msgpack-python-1.1.0-py312h68727a3_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/msgpack-python-1.1.0-py312h68727a3_0.conda hash: md5: 5c9b020a3f86799cdc6115e55df06146 sha256: 4bc53333774dea1330643b7e23aa34fd6880275737fc2e07491795872d3af8dd @@ -4469,7 +4469,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/msgpack-python-1.1.0-py312hd5eb7cc_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/msgpack-python-1.1.0-py312hd5eb7cc_0.conda hash: md5: ff4f1e63a6438a06d1ab259936e5c2ac sha256: 3fd45d9c0830e931e34990cb90e88ba53cc7f89fce69fc7d1a8289639d363e85 @@ -4480,7 +4480,7 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/mumps-include-5.7.3-h82cca05_9.conda + url: https://repo.prefix.dev/conda-forge/linux-64/mumps-include-5.7.3-h82cca05_9.conda hash: md5: 8207b975a176b5c08937bdeeeeecca20 sha256: bb41dda1084bc29c79bdb1da693295c5bc55da223fb74c4ef8487a81964cbf48 @@ -4501,7 +4501,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://conda.anaconda.org/conda-forge/linux-64/mumps-seq-5.7.3-hb5d91fa_9.conda + url: https://repo.prefix.dev/conda-forge/linux-64/mumps-seq-5.7.3-hb5d91fa_9.conda hash: md5: 33982046ecd8eed02447ddd7810aad37 sha256: 196b227df4635ce4294d40d885fa231d8d037839a95a1eee8923319985276bbe @@ -4518,7 +4518,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/mumps-seq-5.7.3-hbaa6519_9.conda + url: https://repo.prefix.dev/conda-forge/win-64/mumps-seq-5.7.3-hbaa6519_9.conda hash: md5: 3a30d32db33cc226f7a2c78d485b0503 sha256: 953c384a1b37b93bf7a2ee39b1c5763887f4d63ed220b65362103d6e6b4440a4 @@ -4530,7 +4530,7 @@ package: platform: linux-64 dependencies: python: '' - url: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 hash: md5: 2ba8498c1018c1e9c61eb99b973dfe19 sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 @@ -4542,7 +4542,7 @@ package: platform: win-64 dependencies: python: '' - url: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 hash: md5: 2ba8498c1018c1e9c61eb99b973dfe19 sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 @@ -4564,7 +4564,7 @@ package: pyyaml: '' sphinx: '>=5' typing_extensions: '' - url: https://conda.anaconda.org/conda-forge/noarch/myst-nb-1.2.0-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/myst-nb-1.2.0-pyh29332c3_0.conda hash: md5: 4f63865e1bb08e05476fa136a2dfe2ac sha256: de3e58d54126fdb667a55921675693fb8eee23757fd3be6116f6565cae710279 @@ -4586,7 +4586,7 @@ package: pyyaml: '' sphinx: '>=5' typing_extensions: '' - url: https://conda.anaconda.org/conda-forge/noarch/myst-nb-1.2.0-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/myst-nb-1.2.0-pyh29332c3_0.conda hash: md5: 4f63865e1bb08e05476fa136a2dfe2ac sha256: de3e58d54126fdb667a55921675693fb8eee23757fd3be6116f6565cae710279 @@ -4605,7 +4605,7 @@ package: pyyaml: '' sphinx: '>=5,<7' typing-extensions: '' - url: https://conda.anaconda.org/conda-forge/noarch/myst-parser-1.0.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/myst-parser-1.0.0-pyhd8ed1ab_0.conda hash: md5: e559708feb0aed1ae24c518e569ea3eb sha256: 87de591aa423932ffec61e06283bf5c3ba5c0a3cc465955984ce58f1de3ded8e @@ -4624,7 +4624,7 @@ package: pyyaml: '' sphinx: '>=5,<7' typing-extensions: '' - url: https://conda.anaconda.org/conda-forge/noarch/myst-parser-1.0.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/myst-parser-1.0.0-pyhd8ed1ab_0.conda hash: md5: e559708feb0aed1ae24c518e569ea3eb sha256: 87de591aa423932ffec61e06283bf5c3ba5c0a3cc465955984ce58f1de3ded8e @@ -4640,7 +4640,7 @@ package: nbformat: '>=5.1' python: '>=3.8' traitlets: '>=5.4' - url: https://conda.anaconda.org/conda-forge/noarch/nbclient-0.10.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/nbclient-0.10.2-pyhd8ed1ab_0.conda hash: md5: 6bb0d77277061742744176ab555b723c sha256: a20cff739d66c2f89f413e4ba4c6f6b59c50d5c30b5f0d840c13e8c9c2df9135 @@ -4656,7 +4656,7 @@ package: nbformat: '>=5.1' python: '>=3.8' traitlets: '>=5.4' - url: https://conda.anaconda.org/conda-forge/noarch/nbclient-0.10.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/nbclient-0.10.2-pyhd8ed1ab_0.conda hash: md5: 6bb0d77277061742744176ab555b723c sha256: a20cff739d66c2f89f413e4ba4c6f6b59c50d5c30b5f0d840c13e8c9c2df9135 @@ -4669,7 +4669,7 @@ package: dependencies: nbconvert-core: ==7.16.6 nbconvert-pandoc: ==7.16.6 - url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-7.16.6-hb482800_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/nbconvert-7.16.6-hb482800_0.conda hash: md5: aa90ea40c80d4bd3da35cb17ed668f22 sha256: 5480b7e05bf3079fcb7357a5a15a96c3a1649cc1371d0c468c806898a7e53088 @@ -4682,7 +4682,7 @@ package: dependencies: nbconvert-core: ==7.16.6 nbconvert-pandoc: ==7.16.6 - url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-7.16.6-hb482800_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/nbconvert-7.16.6-hb482800_0.conda hash: md5: aa90ea40c80d4bd3da35cb17ed668f22 sha256: 5480b7e05bf3079fcb7357a5a15a96c3a1649cc1371d0c468c806898a7e53088 @@ -4709,7 +4709,7 @@ package: pygments: '>=2.4.1' python: '>=3.9' traitlets: '>=5.1' - url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.16.6-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/nbconvert-core-7.16.6-pyh29332c3_0.conda hash: md5: d24beda1d30748afcc87c429454ece1b sha256: dcccb07c5a1acb7dc8be94330e62d54754c0e9c9cb2bb6865c8e3cfe44cf5a58 @@ -4736,7 +4736,7 @@ package: pygments: '>=2.4.1' python: '>=3.9' traitlets: '>=5.1' - url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.16.6-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/nbconvert-core-7.16.6-pyh29332c3_0.conda hash: md5: d24beda1d30748afcc87c429454ece1b sha256: dcccb07c5a1acb7dc8be94330e62d54754c0e9c9cb2bb6865c8e3cfe44cf5a58 @@ -4749,7 +4749,7 @@ package: dependencies: nbconvert-core: ==7.16.6 pandoc: '' - url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-pandoc-7.16.6-hed9df3c_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/nbconvert-pandoc-7.16.6-hed9df3c_0.conda hash: md5: 5b0afb6c52e74a7eca2cf809a874acf4 sha256: 1e8923f1557c2ddb7bba915033cfaf8b8c1b7462c745172458102c11caee1002 @@ -4762,7 +4762,7 @@ package: dependencies: nbconvert-core: ==7.16.6 pandoc: '' - url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-pandoc-7.16.6-hed9df3c_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/nbconvert-pandoc-7.16.6-hed9df3c_0.conda hash: md5: 5b0afb6c52e74a7eca2cf809a874acf4 sha256: 1e8923f1557c2ddb7bba915033cfaf8b8c1b7462c745172458102c11caee1002 @@ -4778,7 +4778,7 @@ package: python: '>=3.9' python-fastjsonschema: '>=2.15' traitlets: '>=5.1' - url: https://conda.anaconda.org/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_1.conda hash: md5: bbe1963f1e47f594070ffe87cdf612ea sha256: 7a5bd30a2e7ddd7b85031a5e2e14f290898098dc85bea5b3a5bf147c25122838 @@ -4794,7 +4794,7 @@ package: python: '>=3.9' python-fastjsonschema: '>=2.15' traitlets: '>=5.1' - url: https://conda.anaconda.org/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_1.conda hash: md5: bbe1963f1e47f594070ffe87cdf612ea sha256: 7a5bd30a2e7ddd7b85031a5e2e14f290898098dc85bea5b3a5bf147c25122838 @@ -4807,7 +4807,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda + url: https://repo.prefix.dev/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda hash: md5: 47e340acb35de30501a76c7c799c41d7 sha256: 3fde293232fa3fca98635e1167de6b7c7fda83caf24b9d6c91ec9eefb4f4d586 @@ -4819,7 +4819,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_1.conda hash: md5: 598fd7d4d0de2455fb74f56063969a97 sha256: bb7b21d7fd0445ddc0631f64e66d91a179de4ba920b8381f29b9d006a42788c0 @@ -4831,7 +4831,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_1.conda hash: md5: 598fd7d4d0de2455fb74f56063969a97 sha256: bb7b21d7fd0445ddc0631f64e66d91a179de4ba920b8381f29b9d006a42788c0 @@ -4848,7 +4848,7 @@ package: notebook-shim: '>=0.2,<0.3' python: '>=3.9' tornado: '>=6.2.0' - url: https://conda.anaconda.org/conda-forge/noarch/notebook-7.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/notebook-7.4.0-pyhd8ed1ab_0.conda hash: md5: 7e82caa4495c513bcfb33a159e1222d4 sha256: d3f70987bc1e1a20b122726a49a24e5e6f09d00c9862bb399cd1682cd59a1e1e @@ -4865,7 +4865,7 @@ package: notebook-shim: '>=0.2,<0.3' python: '>=3.9' tornado: '>=6.2.0' - url: https://conda.anaconda.org/conda-forge/noarch/notebook-7.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/notebook-7.4.0-pyhd8ed1ab_0.conda hash: md5: 7e82caa4495c513bcfb33a159e1222d4 sha256: d3f70987bc1e1a20b122726a49a24e5e6f09d00c9862bb399cd1682cd59a1e1e @@ -4878,7 +4878,7 @@ package: dependencies: jupyter_server: '>=1.8,<3' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/notebook-shim-0.2.4-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/notebook-shim-0.2.4-pyhd8ed1ab_1.conda hash: md5: e7f89ea5f7ea9401642758ff50a2d9c1 sha256: 7b920e46b9f7a2d2aa6434222e5c8d739021dbc5cc75f32d124a8191d86f9056 @@ -4891,7 +4891,7 @@ package: dependencies: jupyter_server: '>=1.8,<3' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/notebook-shim-0.2.4-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/notebook-shim-0.2.4-pyhd8ed1ab_1.conda hash: md5: e7f89ea5f7ea9401642758ff50a2d9c1 sha256: 7b920e46b9f7a2d2aa6434222e5c8d739021dbc5cc75f32d124a8191d86f9056 @@ -4910,7 +4910,7 @@ package: numpy: '>=1.24' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/linux-64/numcodecs-0.15.1-py312hf9745cd_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/numcodecs-0.15.1-py312hf9745cd_0.conda hash: md5: 8a1f88d4985ee1c16b0db1af39a8554d sha256: 209a84599e36db68865dce5618c3328a2d57267d339255204815885b220a20f2 @@ -4929,7 +4929,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/numcodecs-0.15.1-py312h72972c8_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/numcodecs-0.15.1-py312h72972c8_0.conda hash: md5: bba8bf88b520170565f2f51e99926683 sha256: ce01a82077b12bffd6c3e5281f02bc6a690a8e0e3750c44e3c624c68f6a70d9e @@ -4947,7 +4947,7 @@ package: libstdcxx-ng: '>=12' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/linux-64/numpy-1.26.4-py312heda63a1_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/numpy-1.26.4-py312heda63a1_0.conda hash: md5: d8285bea2a350f63fab23bf460221f3f sha256: fe3459c75cf84dcef6ef14efcc4adb0ade66038ddd27cadb894f34f4797687d8 @@ -4966,7 +4966,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/numpy-1.26.4-py312h8753938_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/numpy-1.26.4-py312h8753938_0.conda hash: md5: f9ac74c3b07c396014434aca1e58d362 sha256: 73570817a5109d396b4ebbe5124a89525959269fd33fa33fd413700289fbe0ef @@ -4983,7 +4983,7 @@ package: libstdcxx: '>=13' libtiff: '>=4.7.0,<4.8.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.3-h5fbd93e_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/openjpeg-2.5.3-h5fbd93e_0.conda hash: md5: 9e5816bc95d285c115a3ebc2f8563564 sha256: 5bee706ea5ba453ed7fd9da7da8380dd88b865c8d30b5aaec14d2b6dd32dbc39 @@ -5000,7 +5000,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/openjpeg-2.5.3-h4d64b90_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/openjpeg-2.5.3-h4d64b90_0.conda hash: md5: fc050366dd0b8313eb797ed1ffef3a29 sha256: 410175815df192f57a07c29a6b3fdd4231937173face9e63f0830c1234272ce3 @@ -5014,7 +5014,7 @@ package: __glibc: '>=2.17,<3.0.a0' ca-certificates: '' libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.5.0-h7b32b05_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/openssl-3.5.0-h7b32b05_0.conda hash: md5: bb539841f2a3fde210f387d00ed4bb9d sha256: 38285d280f84f1755b7c54baf17eccf2e3e696287954ce0adca16546b85ee62c @@ -5029,7 +5029,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/openssl-3.5.0-ha4e3fda_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/openssl-3.5.0-ha4e3fda_0.conda hash: md5: 4ea7db75035eb8c13fa680bb90171e08 sha256: 43dd7f56da142ca83c614c8b0085589650ae9032b351a901c190e48eefc73675 @@ -5042,7 +5042,7 @@ package: dependencies: python: '>=3.9' typing_utils: '' - url: https://conda.anaconda.org/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_1.conda hash: md5: e51f1e4089cad105b6cac64bd8166587 sha256: 1840bd90d25d4930d60f57b4f38d4e0ae3f5b8db2819638709c36098c6ba770c @@ -5055,7 +5055,7 @@ package: dependencies: python: '>=3.9' typing_utils: '' - url: https://conda.anaconda.org/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_1.conda hash: md5: e51f1e4089cad105b6cac64bd8166587 sha256: 1840bd90d25d4930d60f57b4f38d4e0ae3f5b8db2819638709c36098c6ba770c @@ -5067,7 +5067,7 @@ package: platform: linux-64 dependencies: python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/packaging-25.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyhd8ed1ab_0.conda hash: md5: 4088c0d078e2f5092ddf824495186229 sha256: f759df4f492ae481505dcceb3d4485a120ee798af26711c92de20944a1185621 @@ -5079,7 +5079,7 @@ package: platform: win-64 dependencies: python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/packaging-25.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyhd8ed1ab_0.conda hash: md5: 4088c0d078e2f5092ddf824495186229 sha256: f759df4f492ae481505dcceb3d4485a120ee798af26711c92de20944a1185621 @@ -5099,7 +5099,7 @@ package: python-tzdata: '>=2022.7' python_abi: 3.12.* pytz: '>=2020.1' - url: https://conda.anaconda.org/conda-forge/linux-64/pandas-2.2.3-py312hf9745cd_3.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pandas-2.2.3-py312hf9745cd_3.conda hash: md5: 2979458c23c7755683a0598fb33e7666 sha256: b0bed36b95757bbd269d30b2367536b802158bdf7947800ee7ae55089cfa8b9c @@ -5119,7 +5119,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/pandas-2.2.3-py312h72972c8_3.conda + url: https://repo.prefix.dev/conda-forge/win-64/pandas-2.2.3-py312h72972c8_3.conda hash: md5: 08b4650b022c9f3233d45f231fb9471f sha256: 86fe04c5f0dcae3644e3d2d892ddf6760d89eeb8fe1a31ef30290ac5a6a9f125 @@ -5130,7 +5130,7 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/pandoc-3.6.4-ha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pandoc-3.6.4-ha770c72_0.conda hash: md5: 53f2cd4128fa7053bb029bbeafbe3f2e sha256: 16cbcab8a6d9a0cef47b9d3ebeced8a1a75ee54d379649e6260a333d1b2f743c @@ -5141,7 +5141,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/win-64/pandoc-3.6.4-h57928b3_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/pandoc-3.6.4-h57928b3_0.conda hash: md5: dac005a8550579541a6b0b6a8f8c6ddc sha256: 02ab6b0c12596f5d8481f546a1fef6cd4e3a52ec59bc32c0fa3708106e30972e @@ -5153,7 +5153,7 @@ package: platform: linux-64 dependencies: python: '!=3.0,!=3.1,!=3.2,!=3.3' - url: https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 457c2c8c08e54905d6954e79cb5b5db9 sha256: 2bb9ba9857f4774b85900c2562f7e711d08dd48e2add9bee4e1612fbee27e16f @@ -5165,7 +5165,7 @@ package: platform: win-64 dependencies: python: '!=3.0,!=3.1,!=3.2,!=3.3' - url: https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 457c2c8c08e54905d6954e79cb5b5db9 sha256: 2bb9ba9857f4774b85900c2562f7e711d08dd48e2add9bee4e1612fbee27e16f @@ -5177,7 +5177,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_1.conda hash: md5: 5c092057b6badd30f75b06244ecd01c9 sha256: 17131120c10401a99205fc6fe436e7903c0fa092f1b3e80452927ab377239bcc @@ -5189,7 +5189,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_1.conda hash: md5: 5c092057b6badd30f75b06244ecd01c9 sha256: 17131120c10401a99205fc6fe436e7903c0fa092f1b3e80452927ab377239bcc @@ -5203,7 +5203,7 @@ package: locket: '' python: '>=3.9' toolz: '' - url: https://conda.anaconda.org/conda-forge/noarch/partd-1.4.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/partd-1.4.2-pyhd8ed1ab_0.conda hash: md5: 0badf9c54e24cecfb0ad2f99d680c163 sha256: 472fc587c63ec4f6eba0cc0b06008a6371e0a08a5986de3cf4e8024a47b4fe6c @@ -5217,7 +5217,7 @@ package: locket: '' python: '>=3.9' toolz: '' - url: https://conda.anaconda.org/conda-forge/noarch/partd-1.4.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/partd-1.4.2-pyhd8ed1ab_0.conda hash: md5: 0badf9c54e24cecfb0ad2f99d680c163 sha256: 472fc587c63ec4f6eba0cc0b06008a6371e0a08a5986de3cf4e8024a47b4fe6c @@ -5230,7 +5230,7 @@ package: dependencies: ptyprocess: '>=0.5' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_1.conda hash: md5: d0d408b1f18883a944376da5cf8101ea sha256: 202af1de83b585d36445dc1fda94266697341994d1a3328fabde4989e1b3d07a @@ -5242,7 +5242,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-pyhd8ed1ab_1004.conda + url: https://repo.prefix.dev/conda-forge/noarch/pickleshare-0.7.5-pyhd8ed1ab_1004.conda hash: md5: 11a9d1d09a3615fc07c3faf79bc0b943 sha256: e2ac3d66c367dada209fc6da43e645672364b9fd5f9d28b9f016e24b81af475b @@ -5254,7 +5254,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-pyhd8ed1ab_1004.conda + url: https://repo.prefix.dev/conda-forge/noarch/pickleshare-0.7.5-pyhd8ed1ab_1004.conda hash: md5: 11a9d1d09a3615fc07c3faf79bc0b943 sha256: e2ac3d66c367dada209fc6da43e645672364b9fd5f9d28b9f016e24b81af475b @@ -5277,7 +5277,7 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* tk: '>=8.6.13,<8.7.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/pillow-10.3.0-py312h287a98d_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pillow-10.3.0-py312h287a98d_1.conda hash: md5: b1325cda3f250f9f842180607054e6ed sha256: e1a2426f23535fc15e577d799685229a93117b645734e5cca60597bb23cef09e @@ -5302,7 +5302,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/pillow-10.3.0-py312h381445a_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/pillow-10.3.0-py312h381445a_1.conda hash: md5: 04c1de8505791c12db1a0374f12e6e01 sha256: 2bd6e58a0630fdb9a52f532ce582907babc725930e1ba784c7cd74063f28d073 @@ -5316,7 +5316,7 @@ package: python: '>=3.9,<3.13.0a0' setuptools: '' wheel: '' - url: https://conda.anaconda.org/conda-forge/noarch/pip-25.0.1-pyh8b19718_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pip-25.0.1-pyh8b19718_0.conda hash: md5: 79b5c1440aedc5010f687048d9103628 sha256: 585940f09d87787f79f73ff5dff8eb2af8a67e5bec5eebf2f553cd26c840ba69 @@ -5330,7 +5330,7 @@ package: python: '>=3.9,<3.13.0a0' setuptools: '' wheel: '' - url: https://conda.anaconda.org/conda-forge/noarch/pip-25.0.1-pyh8b19718_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pip-25.0.1-pyh8b19718_0.conda hash: md5: 79b5c1440aedc5010f687048d9103628 sha256: 585940f09d87787f79f73ff5dff8eb2af8a67e5bec5eebf2f553cd26c840ba69 @@ -5342,7 +5342,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_2.conda + url: https://repo.prefix.dev/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_2.conda hash: md5: 5a5870a74432aa332f7d32180633ad05 sha256: adb2dde5b4f7da70ae81309cce6188ed3286ff280355cf1931b45d91164d2ad8 @@ -5354,7 +5354,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_2.conda + url: https://repo.prefix.dev/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_2.conda hash: md5: 5a5870a74432aa332f7d32180633ad05 sha256: adb2dde5b4f7da70ae81309cce6188ed3286ff280355cf1931b45d91164d2ad8 @@ -5366,7 +5366,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.7-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.3.7-pyh29332c3_0.conda hash: md5: e57da6fe54bb3a5556cf36d199ff07d8 sha256: ae7d3e58224d53d6b59e1f5ac5809803bb1972f0ac4fb10cd9b8c87d4122d3e0 @@ -5378,7 +5378,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.7-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.3.7-pyh29332c3_0.conda hash: md5: e57da6fe54bb3a5556cf36d199ff07d8 sha256: ae7d3e58224d53d6b59e1f5ac5809803bb1972f0ac4fb10cd9b8c87d4122d3e0 @@ -5390,7 +5390,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_1.conda hash: md5: e9dcbce5f45f9ee500e728ae58b605b6 sha256: 122433fc5318816b8c69283aaf267c73d87aa2d09ce39f64c9805c9a3b264819 @@ -5402,7 +5402,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_1.conda hash: md5: e9dcbce5f45f9ee500e728ae58b605b6 sha256: 122433fc5318816b8c69283aaf267c73d87aa2d09ce39f64c9805c9a3b264819 @@ -5414,7 +5414,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.21.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/prometheus_client-0.21.1-pyhd8ed1ab_0.conda hash: md5: 3e01e386307acc60b2f89af0b2e161aa sha256: bc8f00d5155deb7b47702cb8370f233935704100dbc23e30747c161d1b6cf3ab @@ -5426,7 +5426,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.21.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/prometheus_client-0.21.1-pyhd8ed1ab_0.conda hash: md5: 3e01e386307acc60b2f89af0b2e161aa sha256: bc8f00d5155deb7b47702cb8370f233935704100dbc23e30747c161d1b6cf3ab @@ -5439,7 +5439,7 @@ package: dependencies: python: '>=3.9' wcwidth: '' - url: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.51-pyha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/prompt-toolkit-3.0.51-pyha770c72_0.conda hash: md5: d17ae9db4dc594267181bd199bf9a551 sha256: ebc1bb62ac612af6d40667da266ff723662394c0ca78935340a5b5c14831227b @@ -5452,7 +5452,7 @@ package: dependencies: python: '>=3.9' wcwidth: '' - url: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.51-pyha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/prompt-toolkit-3.0.51-pyha770c72_0.conda hash: md5: d17ae9db4dc594267181bd199bf9a551 sha256: ebc1bb62ac612af6d40667da266ff723662394c0ca78935340a5b5c14831227b @@ -5467,7 +5467,7 @@ package: libgcc: '>=13' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/linux-64/psutil-7.0.0-py312h66e93f0_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/psutil-7.0.0-py312h66e93f0_0.conda hash: md5: 8e30db4239508a538e4a3b3cdf5b9616 sha256: 158047d7a80e588c846437566d0df64cec5b0284c7184ceb4f3c540271406888 @@ -5483,7 +5483,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/psutil-7.0.0-py312h4389bb4_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/psutil-7.0.0-py312h4389bb4_0.conda hash: md5: f5b86d6e2e645ee276febe79a310b640 sha256: 088451ee2c9a349e1168f70afe275e58f86350faffb09c032cff76f97d4fb7bb @@ -5496,7 +5496,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda hash: md5: b3c17d95b5a10c6e64a21fa17573e70e sha256: 9c88f8c64590e9567c6c80823f0328e58d3b1efb0e1c539c0315ceca764e0973 @@ -5510,7 +5510,7 @@ package: libgcc: '>=13' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' ucrt: '>=10.0.20348.0' - url: https://conda.anaconda.org/conda-forge/win-64/pthread-stubs-0.4-h0e40799_1002.conda + url: https://repo.prefix.dev/conda-forge/win-64/pthread-stubs-0.4-h0e40799_1002.conda hash: md5: 3c8f2573569bb816483e5cf57efbbe29 sha256: 7e446bafb4d692792310ed022fe284e848c6a868c861655a92435af7368bae7b @@ -5522,7 +5522,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/ptyprocess-0.7.0-pyhd8ed1ab_1.conda hash: md5: 7d9daffbb8d8e0af0f769dbbcd173a54 sha256: a7713dfe30faf17508ec359e0bc7e0983f5d94682492469bd462cdaae9c64d83 @@ -5534,7 +5534,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda hash: md5: 3bfdfb8dbcdc4af1ae3f9a8eb3948f04 sha256: 71bd24600d14bb171a6321d523486f6a06f855e75e547fa0cb2a0953b02047f0 @@ -5546,7 +5546,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda hash: md5: 3bfdfb8dbcdc4af1ae3f9a8eb3948f04 sha256: 71bd24600d14bb171a6321d523486f6a06f855e75e547fa0cb2a0953b02047f0 @@ -5562,7 +5562,7 @@ package: pyyaml: '>=3.01' setuptools: '' six: '' - url: https://conda.anaconda.org/conda-forge/noarch/pybtex-0.24.0-pyhd8ed1ab_3.conda + url: https://repo.prefix.dev/conda-forge/noarch/pybtex-0.24.0-pyhd8ed1ab_3.conda hash: md5: 556a52a96313364aa79990ed1337b9a5 sha256: c87615fcc7327c5dcc247f309731c98f7b9867a48e6265e9584af6dc8cd82345 @@ -5578,7 +5578,7 @@ package: pyyaml: '>=3.01' setuptools: '' six: '' - url: https://conda.anaconda.org/conda-forge/noarch/pybtex-0.24.0-pyhd8ed1ab_3.conda + url: https://repo.prefix.dev/conda-forge/noarch/pybtex-0.24.0-pyhd8ed1ab_3.conda hash: md5: 556a52a96313364aa79990ed1337b9a5 sha256: c87615fcc7327c5dcc247f309731c98f7b9867a48e6265e9584af6dc8cd82345 @@ -5594,7 +5594,7 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* setuptools: '' - url: https://conda.anaconda.org/conda-forge/linux-64/pybtex-docutils-1.0.3-py312h7900ff3_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pybtex-docutils-1.0.3-py312h7900ff3_2.conda hash: md5: 0472f87b9dc0b1db7b501f4d814ba90b sha256: bf9c8f4c5282d46ce54bd2c6837fa5ff7a1c112382be3d13a7a0ae038d92b7c7 @@ -5610,7 +5610,7 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* setuptools: '' - url: https://conda.anaconda.org/conda-forge/win-64/pybtex-docutils-1.0.3-py312h2e8e312_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/pybtex-docutils-1.0.3-py312h2e8e312_2.conda hash: md5: 3bd0fdb9f643c218de4a0db9d72e734f sha256: 2118403f158511cd869ac5cfe1d8a4bb50b4a6b7a0f181272909f0e4f60cf91b @@ -5622,7 +5622,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda hash: md5: 12c566707c80111f9799308d9e265aef sha256: 79db7928d13fab2d892592223d7570f5061c192f27b9febd1a418427b719acc6 @@ -5634,7 +5634,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda hash: md5: 12c566707c80111f9799308d9e265aef sha256: 79db7928d13fab2d892592223d7570f5061c192f27b9febd1a418427b719acc6 @@ -5651,7 +5651,7 @@ package: typing-extensions: '>=4.6.1' typing-inspection: '>=0.4.0' typing_extensions: '>=4.12.2' - url: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.11.3-pyh3cfb1c2_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.3-pyh3cfb1c2_0.conda hash: md5: 3c6f7f8ae9b9c177ad91ccc187912756 sha256: 89183785b09ebe9f9e65710057d7c41e9d21d4a9ad05e068850e18669655d5a8 @@ -5668,7 +5668,7 @@ package: typing-extensions: '>=4.6.1' typing-inspection: '>=0.4.0' typing_extensions: '>=4.12.2' - url: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.11.3-pyh3cfb1c2_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.3-pyh3cfb1c2_0.conda hash: md5: 3c6f7f8ae9b9c177ad91ccc187912756 sha256: 89183785b09ebe9f9e65710057d7c41e9d21d4a9ad05e068850e18669655d5a8 @@ -5684,7 +5684,7 @@ package: python: '' python_abi: 3.12.* typing-extensions: '>=4.6.0,!=4.7.0' - url: https://conda.anaconda.org/conda-forge/linux-64/pydantic-core-2.33.1-py312h3b7be25_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pydantic-core-2.33.1-py312h3b7be25_0.conda hash: md5: 4767e28fcbf646ffc18ef4021534c415 sha256: 281dc40103c324309bf62cf9ed861f38e949b8b1da786f25e5ad199a86a67a6d @@ -5701,7 +5701,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/pydantic-core-2.33.1-py312hfe1d9c4_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/pydantic-core-2.33.1-py312hfe1d9c4_0.conda hash: md5: 08c86823811befb8a83b9f403815e6ab sha256: 67b51ddb720d738c3eee96e7998d7a5b99530893f373714555f4941b15d1bd70 @@ -5721,7 +5721,7 @@ package: python: '>=3.9' sphinx: '>=5.0' typing_extensions: '' - url: https://conda.anaconda.org/conda-forge/noarch/pydata-sphinx-theme-0.15.4-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pydata-sphinx-theme-0.15.4-pyhd8ed1ab_0.conda hash: md5: c7c50dd5192caa58a05e6a4248a27acb sha256: 5ec877142ded763061e114e787a4e201c2fb3f0b1db2f04ace610a1187bb34ae @@ -5741,7 +5741,7 @@ package: python: '>=3.9' sphinx: '>=5.0' typing_extensions: '' - url: https://conda.anaconda.org/conda-forge/noarch/pydata-sphinx-theme-0.15.4-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pydata-sphinx-theme-0.15.4-pyhd8ed1ab_0.conda hash: md5: c7c50dd5192caa58a05e6a4248a27acb sha256: 5ec877142ded763061e114e787a4e201c2fb3f0b1db2f04ace610a1187bb34ae @@ -5759,7 +5759,7 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* scipy: '>=0.13' - url: https://conda.anaconda.org/conda-forge/linux-64/pydiso-0.1.2-py312h772f2df_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pydiso-0.1.2-py312h772f2df_0.conda hash: md5: f0af4a616cc1358e6ad9477ddcbbaea3 sha256: 158bd81f3ddd52e613ec54d0c680d6d0f7c87a461ee75bd26a7fc07890cf40f0 @@ -5778,7 +5778,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/pydiso-0.1.2-py312h01acb21_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/pydiso-0.1.2-py312h01acb21_0.conda hash: md5: 14fd07b07c4819cd08beed7fbda91712 sha256: 4b8daf7934b7f3458bd0e3faeb5cd378fb3f5dc19840f71c7f23fe6a0b7c0849 @@ -5790,7 +5790,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda hash: md5: 232fb4577b6687b2d503ef8e254270c9 sha256: 28a3e3161390a9d23bc02b4419448f8d27679d9e2c250e29849e37749c8de86b @@ -5802,7 +5802,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda hash: md5: 232fb4577b6687b2d503ef8e254270c9 sha256: 28a3e3161390a9d23bc02b4419448f8d27679d9e2c250e29849e37749c8de86b @@ -5823,7 +5823,7 @@ package: tomli: '>=1.1.0' tomlkit: '>=0.10.1' typing_extensions: '>=3.10.0' - url: https://conda.anaconda.org/conda-forge/noarch/pylint-3.3.6-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pylint-3.3.6-pyh29332c3_0.conda hash: md5: 8242cc62822cc8a17f53d24d4efa75f4 sha256: 3e3e35b2cbb4b1ca3063fc2d6f44a85ac189e0935f00ed8fbe8e4713c0d00b99 @@ -5844,7 +5844,7 @@ package: tomli: '>=1.1.0' tomlkit: '>=0.10.1' typing_extensions: '>=3.10.0' - url: https://conda.anaconda.org/conda-forge/noarch/pylint-3.3.6-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pylint-3.3.6-pyh29332c3_0.conda hash: md5: 8242cc62822cc8a17f53d24d4efa75f4 sha256: 3e3e35b2cbb4b1ca3063fc2d6f44a85ac189e0935f00ed8fbe8e4713c0d00b99 @@ -5860,7 +5860,7 @@ package: pydiso: '>=0.1' python: '>=3.10' scipy: '>=1.8' - url: https://conda.anaconda.org/conda-forge/noarch/pymatsolver-0.3.1-pyh48887ae_201.conda + url: https://repo.prefix.dev/conda-forge/noarch/pymatsolver-0.3.1-pyh48887ae_201.conda hash: md5: b6805e522702eabf2ebbd236490d5eed sha256: d49ad9b58b9eeae204a3677cafc389c00c7f0f830ef76f481ab9aaf3e0260bad @@ -5876,7 +5876,7 @@ package: pydiso: '>=0.1' python: '>=3.10' scipy: '>=1.8' - url: https://conda.anaconda.org/conda-forge/noarch/pymatsolver-0.3.1-pyh48887ae_201.conda + url: https://repo.prefix.dev/conda-forge/noarch/pymatsolver-0.3.1-pyh48887ae_201.conda hash: md5: b6805e522702eabf2ebbd236490d5eed sha256: d49ad9b58b9eeae204a3677cafc389c00c7f0f830ef76f481ab9aaf3e0260bad @@ -5888,7 +5888,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.2.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/pyparsing-3.2.3-pyhd8ed1ab_1.conda hash: md5: 513d3c262ee49b54a8fec85c5bc99764 sha256: b92afb79b52fcf395fd220b29e0dd3297610f2059afac45298d44e00fcbf23b6 @@ -5900,7 +5900,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.2.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/pyparsing-3.2.3-pyhd8ed1ab_1.conda hash: md5: 513d3c262ee49b54a8fec85c5bc99764 sha256: b92afb79b52fcf395fd220b29e0dd3297610f2059afac45298d44e00fcbf23b6 @@ -5913,7 +5913,7 @@ package: dependencies: __unix: '' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha55dd90_7.conda + url: https://repo.prefix.dev/conda-forge/noarch/pysocks-1.7.1-pyha55dd90_7.conda hash: md5: 461219d1a5bd61342293efa2c0c90eac sha256: ba3b032fa52709ce0d9fd388f63d330a026754587a2f461117cac9ab73d8d0d8 @@ -5927,7 +5927,7 @@ package: __win: '' python: '>=3.9' win_inet_pton: '' - url: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyh09c184e_7.conda + url: https://repo.prefix.dev/conda-forge/noarch/pysocks-1.7.1-pyh09c184e_7.conda hash: md5: e2fd202833c4a981ce8a65974fe4abd1 sha256: d016e04b0e12063fbee4a2d5fbb9b39a8d191b5a0042f0b8459188aedeabb0ca @@ -5945,7 +5945,7 @@ package: pluggy: <2,>=1.5 python: '>=3.9' tomli: '>=1' - url: https://conda.anaconda.org/conda-forge/noarch/pytest-8.3.5-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytest-8.3.5-pyhd8ed1ab_0.conda hash: md5: c3c9316209dec74a705a36797970c6be sha256: 963524de7340c56615583ba7b97a6beb20d5c56a59defb59724dc2a3105169c9 @@ -5963,7 +5963,7 @@ package: pluggy: <2,>=1.5 python: '>=3.9' tomli: '>=1' - url: https://conda.anaconda.org/conda-forge/noarch/pytest-8.3.5-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytest-8.3.5-pyhd8ed1ab_0.conda hash: md5: c3c9316209dec74a705a36797970c6be sha256: 963524de7340c56615583ba7b97a6beb20d5c56a59defb59724dc2a3105169c9 @@ -5978,7 +5978,7 @@ package: pytest: '>=4.6' python: '>=3.9' toml: '' - url: https://conda.anaconda.org/conda-forge/noarch/pytest-cov-6.1.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-6.1.1-pyhd8ed1ab_0.conda hash: md5: 1e35d8f975bc0e984a19819aa91c440a sha256: 9961a1524f63d10bc29efdc52013ec06b0e95fb2619a250e250ff3618261d5cd @@ -5993,7 +5993,7 @@ package: pytest: '>=4.6' python: '>=3.9' toml: '' - url: https://conda.anaconda.org/conda-forge/noarch/pytest-cov-6.1.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-6.1.1-pyhd8ed1ab_0.conda hash: md5: 1e35d8f975bc0e984a19819aa91c440a sha256: 9961a1524f63d10bc29efdc52013ec06b0e95fb2619a250e250ff3618261d5cd @@ -6022,7 +6022,7 @@ package: readline: '>=8.2,<9.0a0' tk: '>=8.6.13,<8.7.0a0' tzdata: '' - url: https://conda.anaconda.org/conda-forge/linux-64/python-3.12.10-h9e4cc4f_0_cpython.conda + url: https://repo.prefix.dev/conda-forge/linux-64/python-3.12.10-h9e4cc4f_0_cpython.conda hash: md5: a41d26cd4d47092d683915d058380dec sha256: 4dc1da115805bd353bded6ab20ff642b6a15fcc72ac2f3de0e1d014ff3612221 @@ -6046,7 +6046,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/python-3.12.10-h3f84c4b_0_cpython.conda + url: https://repo.prefix.dev/conda-forge/win-64/python-3.12.10-h3f84c4b_0_cpython.conda hash: md5: 495e849ebc04562381539d25cf303a9f sha256: a791fa8f5ce68ab00543ecd3798bfa573db327902ccd5cb7598fd7e94ea194d3 @@ -6059,7 +6059,7 @@ package: dependencies: python: '>=3.9' six: '>=1.5' - url: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda hash: md5: 5ba79d7c71f03c678c8ead841f347d6e sha256: a50052536f1ef8516ed11a844f9413661829aa083304dc624c5925298d078d79 @@ -6072,7 +6072,7 @@ package: dependencies: python: '>=3.9' six: '>=1.5' - url: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda hash: md5: 5ba79d7c71f03c678c8ead841f347d6e sha256: a50052536f1ef8516ed11a844f9413661829aa083304dc624c5925298d078d79 @@ -6084,7 +6084,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.21.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/python-fastjsonschema-2.21.1-pyhd8ed1ab_0.conda hash: md5: 38e34d2d1d9dca4fb2b9a0a04f604e2c sha256: 1b09a28093071c1874862422696429d0d35bd0b8420698003ac004746c5e82a2 @@ -6096,7 +6096,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.21.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/python-fastjsonschema-2.21.1-pyhd8ed1ab_0.conda hash: md5: 38e34d2d1d9dca4fb2b9a0a04f604e2c sha256: 1b09a28093071c1874862422696429d0d35bd0b8420698003ac004746c5e82a2 @@ -6108,7 +6108,7 @@ package: platform: linux-64 dependencies: python: '>=3.6' - url: https://conda.anaconda.org/conda-forge/noarch/python-json-logger-2.0.7-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/python-json-logger-2.0.7-pyhd8ed1ab_0.conda hash: md5: a61bf9ec79426938ff785eb69dbb1960 sha256: 4790787fe1f4e8da616edca4acf6a4f8ed4e7c6967aa31b920208fc8f95efcca @@ -6120,7 +6120,7 @@ package: platform: win-64 dependencies: python: '>=3.6' - url: https://conda.anaconda.org/conda-forge/noarch/python-json-logger-2.0.7-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/python-json-logger-2.0.7-pyhd8ed1ab_0.conda hash: md5: a61bf9ec79426938ff785eb69dbb1960 sha256: 4790787fe1f4e8da616edca4acf6a4f8ed4e7c6967aa31b920208fc8f95efcca @@ -6138,7 +6138,7 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* scipy: '>=1.8' - url: https://conda.anaconda.org/conda-forge/linux-64/python-mumps-0.0.3-py312h6ad3ee3_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/python-mumps-0.0.3-py312h6ad3ee3_0.conda hash: md5: 8755e9f1fee9ef390542f834aad6f85e sha256: a5897ce6cd551999957b11da404a16b362e5f761493560c1d68fb93b63bbe031 @@ -6157,7 +6157,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/python-mumps-0.0.3-py312h8095395_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/python-mumps-0.0.3-py312h8095395_0.conda hash: md5: 7945c283a26d63be8f8a364bbd721099 sha256: 0e518ca1714fa781ffb92ca2e90fd0f12a6033ab79f7013e22fdc4a82e2eee0f @@ -6169,7 +6169,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2025.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/python-tzdata-2025.2-pyhd8ed1ab_0.conda hash: md5: 88476ae6ebd24f39261e0854ac244f33 sha256: e8392a8044d56ad017c08fec2b0eb10ae3d1235ac967d0aab8bd7b41c4a5eaf0 @@ -6181,7 +6181,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2025.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/python-tzdata-2025.2-pyhd8ed1ab_0.conda hash: md5: 88476ae6ebd24f39261e0854ac244f33 sha256: e8392a8044d56ad017c08fec2b0eb10ae3d1235ac967d0aab8bd7b41c4a5eaf0 @@ -6192,7 +6192,7 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.12-6_cp312.conda + url: https://repo.prefix.dev/conda-forge/linux-64/python_abi-3.12-6_cp312.conda hash: md5: 95bd67b1113859774c30418e8481f9d8 sha256: 09aff7ca31d1dbee63a504dba89aefa079b7c13a50dae18e1fe40a40ea71063e @@ -6203,7 +6203,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/win-64/python_abi-3.12-6_cp312.conda + url: https://repo.prefix.dev/conda-forge/win-64/python_abi-3.12-6_cp312.conda hash: md5: fd9176ac032bea8da0cfcc6fa3f724f1 sha256: a36a7ba34e5e459da2ba89c3b4021798db26768562f01c00f07a6b33f4a16987 @@ -6215,7 +6215,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda hash: md5: bc8e3267d44011051f2eb14d22fb0960 sha256: 8d2a8bf110cc1fc3df6904091dead158ba3e614d8402a83e51ed3a8aa93cdeb0 @@ -6227,7 +6227,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda hash: md5: bc8e3267d44011051f2eb14d22fb0960 sha256: 8d2a8bf110cc1fc3df6904091dead158ba3e614d8402a83e51ed3a8aa93cdeb0 @@ -6243,7 +6243,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/pywin32-307-py312h275cf98_3.conda + url: https://repo.prefix.dev/conda-forge/win-64/pywin32-307-py312h275cf98_3.conda hash: md5: 1747fbbdece8ab4358b584698b19c44d sha256: 68f8781b83942b91dbc0df883f9edfd1a54a1e645ae2a97c48203ff6c2919de3 @@ -6260,7 +6260,7 @@ package: vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' winpty: '' - url: https://conda.anaconda.org/conda-forge/win-64/pywinpty-2.0.15-py312h275cf98_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/pywinpty-2.0.15-py312h275cf98_0.conda hash: md5: 1fb4bbe58100be45b37781a367c92fe8 sha256: 22b901606eda476a19fcc9376a906ef2e16fc6690186bc1d9a213f6c8e93d061 @@ -6276,7 +6276,7 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* yaml: '>=0.2.5,<0.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0.2-py312h178313f_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pyyaml-6.0.2-py312h178313f_2.conda hash: md5: cf2485f39740de96e2a7f2bb18ed2fee sha256: 159cba13a93b3fe084a1eb9bda0a07afc9148147647f0d437c3c3da60980503b @@ -6293,7 +6293,7 @@ package: vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' yaml: '>=0.2.5,<0.3.0a0' - url: https://conda.anaconda.org/conda-forge/win-64/pyyaml-6.0.2-py312h31fea79_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/pyyaml-6.0.2-py312h31fea79_2.conda hash: md5: ba00a2e5059c1fde96459858537cc8f5 sha256: 76fec03ef7e67e37724873e1f805131fb88efb57f19e9a77b4da616068ef5c28 @@ -6311,7 +6311,7 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* zeromq: '>=4.3.5,<4.4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/pyzmq-26.4.0-py312hbf22597_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pyzmq-26.4.0-py312hbf22597_0.conda hash: md5: fa0ab7d5bee9efbc370e71bcb5da9856 sha256: 65a264837f189b0c69c5431ea8ef44e405c472fedba145b05055f284f08bc663 @@ -6329,7 +6329,7 @@ package: vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' zeromq: '>=4.3.5,<4.3.6.0a0' - url: https://conda.anaconda.org/conda-forge/win-64/pyzmq-26.4.0-py312hd7027bb_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/pyzmq-26.4.0-py312hd7027bb_0.conda hash: md5: ccfe948627071c03e36aa46d9e94bf12 sha256: 07fbf17632c6300e53550f829f2e10d2c6f68923aa139d0618eaeadf2d0043ae @@ -6342,7 +6342,7 @@ package: dependencies: libgcc: '>=13' ncurses: '>=6.5,<7.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda hash: md5: 283b96675859b20a825f8fa30f311446 sha256: 2d6d0c026902561ed77cd646b5021aef2d4db22e57a5b0178dfc669231e06d2c @@ -6357,7 +6357,7 @@ package: packaging: '' python: '>=3.9' requests: '' - url: https://conda.anaconda.org/conda-forge/noarch/readthedocs-sphinx-ext-2.2.5-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/readthedocs-sphinx-ext-2.2.5-pyhd8ed1ab_1.conda hash: md5: 42840a95562a02bef45e7b7fb24dcba4 sha256: e391356581919077b1639ebd13f4cbb0773acfd5710cfe4188921e8a0387dc6b @@ -6372,7 +6372,7 @@ package: packaging: '' python: '>=3.9' requests: '' - url: https://conda.anaconda.org/conda-forge/noarch/readthedocs-sphinx-ext-2.2.5-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/readthedocs-sphinx-ext-2.2.5-pyhd8ed1ab_1.conda hash: md5: 42840a95562a02bef45e7b7fb24dcba4 sha256: e391356581919077b1639ebd13f4cbb0773acfd5710cfe4188921e8a0387dc6b @@ -6387,7 +6387,7 @@ package: python: '>=3.9' rpds-py: '>=0.7.0' typing_extensions: '>=4.4.0' - url: https://conda.anaconda.org/conda-forge/noarch/referencing-0.36.2-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/referencing-0.36.2-pyh29332c3_0.conda hash: md5: 9140f1c09dd5489549c6a33931b943c7 sha256: e20909f474a6cece176dfc0dc1addac265deb5fa92ea90e975fbca48085b20c3 @@ -6402,7 +6402,7 @@ package: python: '>=3.9' rpds-py: '>=0.7.0' typing_extensions: '>=4.4.0' - url: https://conda.anaconda.org/conda-forge/noarch/referencing-0.36.2-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/referencing-0.36.2-pyh29332c3_0.conda hash: md5: 9140f1c09dd5489549c6a33931b943c7 sha256: e20909f474a6cece176dfc0dc1addac265deb5fa92ea90e975fbca48085b20c3 @@ -6418,7 +6418,7 @@ package: idna: '>=2.5,<4' python: '>=3.9' urllib3: '>=1.21.1,<3' - url: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda hash: md5: a9b9368f3701a417eac9edbcae7cb737 sha256: d701ca1136197aa121bbbe0e8c18db6b5c94acbd041c2b43c70e5ae104e1d8ad @@ -6434,7 +6434,7 @@ package: idna: '>=2.5,<4' python: '>=3.9' urllib3: '>=1.21.1,<3' - url: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda hash: md5: a9b9368f3701a417eac9edbcae7cb737 sha256: d701ca1136197aa121bbbe0e8c18db6b5c94acbd041c2b43c70e5ae104e1d8ad @@ -6447,7 +6447,7 @@ package: dependencies: python: '>=3.9' six: '' - url: https://conda.anaconda.org/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_1.conda hash: md5: 36de09a8d3e5d5e6f4ee63af49e59706 sha256: 2e4372f600490a6e0b3bac60717278448e323cab1c0fecd5f43f7c56535a99c5 @@ -6460,7 +6460,7 @@ package: dependencies: python: '>=3.9' six: '' - url: https://conda.anaconda.org/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_1.conda hash: md5: 36de09a8d3e5d5e6f4ee63af49e59706 sha256: 2e4372f600490a6e0b3bac60717278448e323cab1c0fecd5f43f7c56535a99c5 @@ -6472,7 +6472,7 @@ package: platform: linux-64 dependencies: python: '' - url: https://conda.anaconda.org/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2 hash: md5: 912a71cc01012ee38e6b90ddd561e36f sha256: 2a5b495a1de0f60f24d8a74578ebc23b24aa53279b1ad583755f223097c41c37 @@ -6484,7 +6484,7 @@ package: platform: win-64 dependencies: python: '' - url: https://conda.anaconda.org/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2 hash: md5: 912a71cc01012ee38e6b90ddd561e36f sha256: 2a5b495a1de0f60f24d8a74578ebc23b24aa53279b1ad583755f223097c41c37 @@ -6499,7 +6499,7 @@ package: libgcc: '>=13' python: '' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/linux-64/rpds-py-0.24.0-py312h3b7be25_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/rpds-py-0.24.0-py312h3b7be25_0.conda hash: md5: 5f5c19cbbd3526fad9c8ca0cca3e7346 sha256: 10dad6a9d40e7c1856cb1f5f941ea06500610e13ee6ec4961fba59fccbaa0dc9 @@ -6515,7 +6515,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/rpds-py-0.24.0-py312hfe1d9c4_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/rpds-py-0.24.0-py312hfe1d9c4_0.conda hash: md5: c5fc315df43a26e2c1c0a6040cae12f6 sha256: bf12ad2fefb2b5c5496d794a5fa0f7a2672a6dcfa9d70b181b6bbd968ade6454 @@ -6535,7 +6535,7 @@ package: python_abi: 3.12.* scipy: '' threadpoolctl: '>=2.0.0' - url: https://conda.anaconda.org/conda-forge/linux-64/scikit-learn-1.4.2-py312h1fcc3ea_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/scikit-learn-1.4.2-py312h1fcc3ea_1.conda hash: md5: e6610a08bdbc02525c597e555da55a3a sha256: c2676b9aa8380a4d7e10a815cfc684a66fe312234841574397283d09eba45578 @@ -6555,7 +6555,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/scikit-learn-1.4.2-py312h816cc57_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/scikit-learn-1.4.2-py312h816cc57_1.conda hash: md5: 9d5234a79af607372f44932132ca2c29 sha256: b89ae982911b956158e474777ce7d568da946db0aad91d7aa9686641b7080b9f @@ -6577,7 +6577,7 @@ package: numpy: <2.3 python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/linux-64/scipy-1.14.1-py312h62794b6_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/scipy-1.14.1-py312h62794b6_2.conda hash: md5: 94688dd449f6c092e5f951780235aca1 sha256: 6e4916d610dc15f9b504517bd6c1f3dbbae019a3c7abf0aeb55f310c452a4474 @@ -6597,7 +6597,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/scipy-1.14.1-py312h337df96_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/scipy-1.14.1-py312h337df96_2.conda hash: md5: 3ef0017e79039d4767ba3b4891113a07 sha256: eb67adcca33026895b6539d02e1bc01f495e1d593a26053d734fe7a180e708f4 @@ -6610,7 +6610,7 @@ package: dependencies: __linux: '' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/send2trash-1.8.3-pyh0d859eb_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/send2trash-1.8.3-pyh0d859eb_1.conda hash: md5: 938c8de6b9de091997145b3bf25cdbf9 sha256: 00926652bbb8924e265caefdb1db100f86a479e8f1066efe395d5552dde54d02 @@ -6624,34 +6624,34 @@ package: __win: '' python: '>=3.9' pywin32: '' - url: https://conda.anaconda.org/conda-forge/noarch/send2trash-1.8.3-pyh5737063_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/send2trash-1.8.3-pyh5737063_1.conda hash: md5: e6a4e906051565caf5fdae5b0415b654 sha256: ba8b93df52e0d625177907852340d735026c81118ac197f61f1f5baea19071ad category: dev optional: true - name: setuptools - version: 78.1.0 + version: 78.1.1 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/setuptools-78.1.0-pyhff2d567_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/setuptools-78.1.1-pyhff2d567_0.conda hash: - md5: a42da9837e46c53494df0044c3eb1f53 - sha256: d4c74d2140f2fbc72fe5320cbd65f3fd1d1f7832ab4d7825c37c38ab82440ae2 + md5: 72437384f9364b6baf20b6dd68d282c2 + sha256: 33a0cab4724d8130055f65e6edc101df7136f2f26cefb52669df88de8aeee28c category: main optional: false - name: setuptools - version: 78.1.0 + version: 78.1.1 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/setuptools-78.1.0-pyhff2d567_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/setuptools-78.1.1-pyhff2d567_0.conda hash: - md5: a42da9837e46c53494df0044c3eb1f53 - sha256: d4c74d2140f2fbc72fe5320cbd65f3fd1d1f7832ab4d7825c37c38ab82440ae2 + md5: 72437384f9364b6baf20b6dd68d282c2 + sha256: 33a0cab4724d8130055f65e6edc101df7136f2f26cefb52669df88de8aeee28c category: main optional: false - name: six @@ -6660,7 +6660,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda hash: md5: a451d576819089b0d672f18768be0f65 sha256: 41db0180680cc67c3fa76544ffd48d6a5679d96f4b71d7498a759e94edc9a2db @@ -6672,7 +6672,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda hash: md5: a451d576819089b0d672f18768be0f65 sha256: 41db0180680cc67c3fa76544ffd48d6a5679d96f4b71d7498a759e94edc9a2db @@ -6684,7 +6684,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_1.conda hash: md5: bf7a226e58dfb8346c70df36065d86c9 sha256: c2248418c310bdd1719b186796ae50a8a77ce555228b6acd32768e2543a15012 @@ -6696,7 +6696,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_1.conda hash: md5: bf7a226e58dfb8346c70df36065d86c9 sha256: c2248418c310bdd1719b186796ae50a8a77ce555228b6acd32768e2543a15012 @@ -6708,7 +6708,7 @@ package: platform: linux-64 dependencies: python: '>=2' - url: https://conda.anaconda.org/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 4d22a9315e78c6827f806065957d566e sha256: a0fd916633252d99efb6223b1050202841fa8d2d53dacca564b0ed77249d3228 @@ -6720,7 +6720,7 @@ package: platform: win-64 dependencies: python: '>=2' - url: https://conda.anaconda.org/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 4d22a9315e78c6827f806065957d566e sha256: a0fd916633252d99efb6223b1050202841fa8d2d53dacca564b0ed77249d3228 @@ -6732,7 +6732,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_1.conda hash: md5: 0401a17ae845fa72c7210e206ec5647d sha256: d1e3e06b5cf26093047e63c8cc77b70d970411c5cbc0cb1fad461a8a8df599f7 @@ -6744,7 +6744,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_1.conda hash: md5: 0401a17ae845fa72c7210e206ec5647d sha256: d1e3e06b5cf26093047e63c8cc77b70d970411c5cbc0cb1fad461a8a8df599f7 @@ -6756,7 +6756,7 @@ package: platform: linux-64 dependencies: python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda hash: md5: 3f144b2c34f8cb5a9abd9ed23a39c561 sha256: 54ae221033db8fbcd4998ccb07f3c3828b4d77e73b0c72b18c1d6a507059059c @@ -6768,7 +6768,7 @@ package: platform: win-64 dependencies: python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda hash: md5: 3f144b2c34f8cb5a9abd9ed23a39c561 sha256: 54ae221033db8fbcd4998ccb07f3c3828b4d77e73b0c72b18c1d6a507059059c @@ -6797,7 +6797,7 @@ package: sphinxcontrib-jsmath: '' sphinxcontrib-qthelp: '' sphinxcontrib-serializinghtml: '>=1.1.5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-5.3.0-pyhd8ed1ab_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-5.3.0-pyhd8ed1ab_0.tar.bz2 hash: md5: f9e1fcfe235d655900bfeb6aee426472 sha256: f11fd5fb4ae2c65f41ae86e7408e3ab44844898d928264aa9e89929fffc685c8 @@ -6826,7 +6826,7 @@ package: sphinxcontrib-jsmath: '' sphinxcontrib-qthelp: '' sphinxcontrib-serializinghtml: '>=1.1.5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-5.3.0-pyhd8ed1ab_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-5.3.0-pyhd8ed1ab_0.tar.bz2 hash: md5: f9e1fcfe235d655900bfeb6aee426472 sha256: f11fd5fb4ae2c65f41ae86e7408e3ab44844898d928264aa9e89929fffc685c8 @@ -6840,7 +6840,7 @@ package: pydata-sphinx-theme: '>=0.15.2' python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-book-theme-1.1.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-book-theme-1.1.3-pyhd8ed1ab_1.conda hash: md5: 501e2d6d8aa1b8d82d2707ce8c90b287 sha256: cf1d3ae6d28042954ac750f6948678fefa619681c3994d2637d747d96a1139ea @@ -6854,7 +6854,7 @@ package: pydata-sphinx-theme: '>=0.15.2' python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-book-theme-1.1.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-book-theme-1.1.3-pyhd8ed1ab_1.conda hash: md5: 501e2d6d8aa1b8d82d2707ce8c90b287 sha256: cf1d3ae6d28042954ac750f6948678fefa619681c3994d2637d747d96a1139ea @@ -6867,7 +6867,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=1.8' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-comments-0.0.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-comments-0.0.3-pyhd8ed1ab_1.conda hash: md5: 30e02fa8e40287da066e348c95ff5609 sha256: 00129f91b905441a9e27c46ef32c22617743eb4a4f7207e1dd84bc19505d4381 @@ -6880,7 +6880,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=1.8' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-comments-0.0.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-comments-0.0.3-pyhd8ed1ab_1.conda hash: md5: 30e02fa8e40287da066e348c95ff5609 sha256: 00129f91b905441a9e27c46ef32c22617743eb4a4f7207e1dd84bc19505d4381 @@ -6893,7 +6893,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=1.8' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-copybutton-0.5.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-copybutton-0.5.2-pyhd8ed1ab_1.conda hash: md5: bf22cb9c439572760316ce0748af3713 sha256: 8cd892e49cb4d00501bc4439fb0c73ca44905f01a65b2b7fa05ba0e8f3924f19 @@ -6906,7 +6906,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=1.8' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-copybutton-0.5.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-copybutton-0.5.2-pyhd8ed1ab_1.conda hash: md5: bf22cb9c439572760316ce0748af3713 sha256: 8cd892e49cb4d00501bc4439fb0c73ca44905f01a65b2b7fa05ba0e8f3924f19 @@ -6919,7 +6919,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5,<8' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-design-0.6.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-design-0.6.1-pyhd8ed1ab_0.conda hash: md5: 51b2433e4a223b14defee96d3caf9bab sha256: 99a44df1d09a27e40002ebaf76792dac75c9cb1386af313b272a4251c8047640 @@ -6932,7 +6932,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5,<8' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-design-0.6.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-design-0.6.1-pyhd8ed1ab_0.conda hash: md5: 51b2433e4a223b14defee96d3caf9bab sha256: 99a44df1d09a27e40002ebaf76792dac75c9cb1386af313b272a4251c8047640 @@ -6947,7 +6947,7 @@ package: python: '>=3.9' pyyaml: '' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-external-toc-1.0.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-external-toc-1.0.1-pyhd8ed1ab_1.conda hash: md5: d248f9db0f1c2e7c480b058925afa9c5 sha256: 47dda7135f9fb1777b7066c3b9260fdd796d6ec2aeb8804161f39c65b3461401 @@ -6962,7 +6962,7 @@ package: python: '>=3.9' pyyaml: '' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-external-toc-1.0.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-external-toc-1.0.1-pyhd8ed1ab_1.conda hash: md5: d248f9db0f1c2e7c480b058925afa9c5 sha256: 47dda7135f9fb1777b7066c3b9260fdd796d6ec2aeb8804161f39c65b3461401 @@ -6976,7 +6976,7 @@ package: packaging: '' python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-jupyterbook-latex-1.0.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-jupyterbook-latex-1.0.0-pyhd8ed1ab_1.conda hash: md5: 9261bc5d987013f5d8dc58061c34f1a3 sha256: b64c031795918f26ddeb5148ede2d3a4944cd9f5461cf72bde3f28acdc71d2f3 @@ -6990,7 +6990,7 @@ package: packaging: '' python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-jupyterbook-latex-1.0.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-jupyterbook-latex-1.0.0-pyhd8ed1ab_1.conda hash: md5: 9261bc5d987013f5d8dc58061c34f1a3 sha256: b64c031795918f26ddeb5148ede2d3a4944cd9f5461cf72bde3f28acdc71d2f3 @@ -7003,7 +7003,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=3' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-multitoc-numbering-0.1.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-multitoc-numbering-0.1.3-pyhd8ed1ab_1.conda hash: md5: cc5fc0988f0fedab436361b9b5906a58 sha256: 9fa48b33334c3a9971c96dd3d921950e8350cfa88a8e8ebaec6d8261071ea2ac @@ -7016,7 +7016,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=3' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-multitoc-numbering-0.1.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-multitoc-numbering-0.1.3-pyhd8ed1ab_1.conda hash: md5: cc5fc0988f0fedab436361b9b5906a58 sha256: 9fa48b33334c3a9971c96dd3d921950e8350cfa88a8e8ebaec6d8261071ea2ac @@ -7029,7 +7029,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=4' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-thebe-0.3.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-thebe-0.3.1-pyhd8ed1ab_1.conda hash: md5: f6627ce09745a0f822cc6e7de8cf4f99 sha256: 9d0cd52edcb2274bf7c8e9327317d9bb48e1d092afeaed093e0242876ad3c008 @@ -7042,7 +7042,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=4' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-thebe-0.3.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-thebe-0.3.1-pyhd8ed1ab_1.conda hash: md5: f6627ce09745a0f822cc6e7de8cf4f99 sha256: 9d0cd52edcb2274bf7c8e9327317d9bb48e1d092afeaed093e0242876ad3c008 @@ -7056,7 +7056,7 @@ package: docutils: '' python: '>=3.6' sphinx: '' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-togglebutton-0.3.2-pyhd8ed1ab_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-togglebutton-0.3.2-pyhd8ed1ab_0.tar.bz2 hash: md5: 382738101934261ea7931d1460e64868 sha256: 0dcee238aae6337fae5eaf1f9a29b0c51ed9834ae501fccb2cde0fed8dae1a88 @@ -7070,7 +7070,7 @@ package: docutils: '' python: '>=3.6' sphinx: '' - url: https://conda.anaconda.org/conda-forge/noarch/sphinx-togglebutton-0.3.2-pyhd8ed1ab_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-togglebutton-0.3.2-pyhd8ed1ab_0.tar.bz2 hash: md5: 382738101934261ea7931d1460e64868 sha256: 0dcee238aae6337fae5eaf1f9a29b0c51ed9834ae501fccb2cde0fed8dae1a88 @@ -7083,7 +7083,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 16e3f039c0aa6446513e94ab18a8784b sha256: d7433a344a9ad32a680b881c81b0034bc61618d12c39dd6e3309abeffa9577ba @@ -7096,7 +7096,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 16e3f039c0aa6446513e94ab18a8784b sha256: d7433a344a9ad32a680b881c81b0034bc61618d12c39dd6e3309abeffa9577ba @@ -7114,7 +7114,7 @@ package: pybtex-docutils: '>=1' python: '>=3.6' sphinx: '>=2.1' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-bibtex-2.5.0-pyhd8ed1ab_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-bibtex-2.5.0-pyhd8ed1ab_0.tar.bz2 hash: md5: b2e5c9aece936ebf9f26abdf71ddd74b sha256: d5b02d285909b4501a469857b1a88a91a849d5f28bbe64b9e6c3e86d2388d345 @@ -7132,7 +7132,7 @@ package: pybtex-docutils: '>=1' python: '>=3.6' sphinx: '>=2.1' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-bibtex-2.5.0-pyhd8ed1ab_0.tar.bz2 + url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-bibtex-2.5.0-pyhd8ed1ab_0.tar.bz2 hash: md5: b2e5c9aece936ebf9f26abdf71ddd74b sha256: d5b02d285909b4501a469857b1a88a91a849d5f28bbe64b9e6c3e86d2388d345 @@ -7145,7 +7145,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 910f28a05c178feba832f842155cbfff sha256: 55d5076005d20b84b20bee7844e686b7e60eb9f683af04492e598a622b12d53d @@ -7158,7 +7158,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 910f28a05c178feba832f842155cbfff sha256: 55d5076005d20b84b20bee7844e686b7e60eb9f683af04492e598a622b12d53d @@ -7171,7 +7171,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_1.conda hash: md5: e9fb3fe8a5b758b4aff187d434f94f03 sha256: c1492c0262ccf16694bdcd3bb62aa4627878ea8782d5cd3876614ffeb62b3996 @@ -7184,7 +7184,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_1.conda hash: md5: e9fb3fe8a5b758b4aff187d434f94f03 sha256: c1492c0262ccf16694bdcd3bb62aa4627878ea8782d5cd3876614ffeb62b3996 @@ -7196,7 +7196,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_1.conda hash: md5: fa839b5ff59e192f411ccc7dae6588bb sha256: 578bef5ec630e5b2b8810d898bbbf79b9ae66d49b7938bcc3efc364e679f2a62 @@ -7208,7 +7208,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_1.conda hash: md5: fa839b5ff59e192f411ccc7dae6588bb sha256: 578bef5ec630e5b2b8810d898bbbf79b9ae66d49b7938bcc3efc364e679f2a62 @@ -7221,7 +7221,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 00534ebcc0375929b45c3039b5ba7636 sha256: c664fefae4acdb5fae973bdde25836faf451f41d04342b64a358f9a7753c92ca @@ -7234,7 +7234,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 00534ebcc0375929b45c3039b5ba7636 sha256: c664fefae4acdb5fae973bdde25836faf451f41d04342b64a358f9a7753c92ca @@ -7247,7 +7247,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda hash: md5: 3bc61f7161d28137797e038263c04c54 sha256: 64d89ecc0264347486971a94487cb8d7c65bfc0176750cf7502b8a272f4ab557 @@ -7260,7 +7260,7 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda hash: md5: 3bc61f7161d28137797e038263c04c54 sha256: 64d89ecc0264347486971a94487cb8d7c65bfc0176750cf7502b8a272f4ab557 @@ -7277,7 +7277,7 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* typing-extensions: '>=4.6.0' - url: https://conda.anaconda.org/conda-forge/linux-64/sqlalchemy-2.0.40-py312h66e93f0_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/sqlalchemy-2.0.40-py312h66e93f0_0.conda hash: md5: 933eec95cc2ba4419cb3fb434d8c8056 sha256: fe3ca23540ef6fe92592af1aefd1673c824a2155f7204e9457747984d3f79b2a @@ -7295,7 +7295,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/sqlalchemy-2.0.40-py312h4389bb4_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/sqlalchemy-2.0.40-py312h4389bb4_0.conda hash: md5: 031ea623d7022e8d71d7e6c1f5e0ad2f sha256: 67a9d5022eb6afa4cfd2cea043b2f522dd4a299ed4e9691d2b0158cafeaeabf6 @@ -7310,7 +7310,7 @@ package: executing: '' pure_eval: '' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda hash: md5: b1b505328da7a6b246787df4b5a49fbc sha256: 570da295d421661af487f1595045760526964f41471021056e993e73089e9c41 @@ -7325,7 +7325,7 @@ package: executing: '' pure_eval: '' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda hash: md5: b1b505328da7a6b246787df4b5a49fbc sha256: 570da295d421661af487f1595045760526964f41471021056e993e73089e9c41 @@ -7337,7 +7337,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/tabulate-0.9.0-pyhd8ed1ab_2.conda + url: https://repo.prefix.dev/conda-forge/noarch/tabulate-0.9.0-pyhd8ed1ab_2.conda hash: md5: 959484a66b4b76befcddc4fa97c95567 sha256: 090023bddd40d83468ef86573976af8c514f64119b2bd814ee63a838a542720a @@ -7349,7 +7349,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/tabulate-0.9.0-pyhd8ed1ab_2.conda + url: https://repo.prefix.dev/conda-forge/noarch/tabulate-0.9.0-pyhd8ed1ab_2.conda hash: md5: 959484a66b4b76befcddc4fa97c95567 sha256: 090023bddd40d83468ef86573976af8c514f64119b2bd814ee63a838a542720a @@ -7364,7 +7364,7 @@ package: libgcc: '>=13' libhwloc: '>=2.11.2,<2.11.3.0a0' libstdcxx: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/tbb-2021.13.0-hceb3a55_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/tbb-2021.13.0-hceb3a55_1.conda hash: md5: ba7726b8df7b9d34ea80e82b097a4893 sha256: 65463732129899770d54b1fbf30e1bb82fdebda9d7553caf08d23db4590cd691 @@ -7379,7 +7379,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/tbb-2021.13.0-h62715c5_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/tbb-2021.13.0-h62715c5_1.conda hash: md5: 9190dd0a23d925f7602f9628b3aed511 sha256: 03cc5442046485b03dd1120d0f49d35a7e522930a2ab82f275e938e17b07b302 @@ -7391,7 +7391,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/tblib-3.1.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/tblib-3.1.0-pyhd8ed1ab_0.conda hash: md5: a15c62b8a306b8978f094f76da2f903f sha256: a83c83f5e622a2f34fb1d179c55c3ff912429cd0a54f9f3190ae44a0fdba2ad2 @@ -7403,7 +7403,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/tblib-3.1.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/tblib-3.1.0-pyhd8ed1ab_0.conda hash: md5: a15c62b8a306b8978f094f76da2f903f sha256: a83c83f5e622a2f34fb1d179c55c3ff912429cd0a54f9f3190ae44a0fdba2ad2 @@ -7418,7 +7418,7 @@ package: ptyprocess: '' python: '>=3.8' tornado: '>=6.1.0' - url: https://conda.anaconda.org/conda-forge/noarch/terminado-0.18.1-pyh0d859eb_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/terminado-0.18.1-pyh0d859eb_0.conda hash: md5: efba281bbdae5f6b0a1d53c6d4a97c93 sha256: b300557c0382478cf661ddb520263508e4b3b5871b471410450ef2846e8c352c @@ -7433,7 +7433,7 @@ package: python: '>=3.8' pywinpty: '>=1.1.0' tornado: '>=6.1.0' - url: https://conda.anaconda.org/conda-forge/noarch/terminado-0.18.1-pyh5737063_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/terminado-0.18.1-pyh5737063_0.conda hash: md5: 4abd500577430a942a995fd0d09b76a2 sha256: 8cb078291fd7882904e3de594d299c8de16dd3af7405787fce6919a385cfc238 @@ -7445,7 +7445,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/threadpoolctl-3.6.0-pyhecae5ae_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/threadpoolctl-3.6.0-pyhecae5ae_0.conda hash: md5: 9d64911b31d57ca443e9f1e36b04385f sha256: 6016672e0e72c4cf23c0cf7b1986283bd86a9c17e8d319212d78d8e9ae42fdfd @@ -7457,7 +7457,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/threadpoolctl-3.6.0-pyhecae5ae_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/threadpoolctl-3.6.0-pyhecae5ae_0.conda hash: md5: 9d64911b31d57ca443e9f1e36b04385f sha256: 6016672e0e72c4cf23c0cf7b1986283bd86a9c17e8d319212d78d8e9ae42fdfd @@ -7470,7 +7470,7 @@ package: dependencies: python: '>=3.5' webencodings: '>=0.4' - url: https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/tinycss2-1.4.0-pyhd8ed1ab_0.conda hash: md5: f1acf5fdefa8300de697982bcb1761c9 sha256: cad582d6f978276522f84bd209a5ddac824742fe2d452af6acf900f8650a73a2 @@ -7483,7 +7483,7 @@ package: dependencies: python: '>=3.5' webencodings: '>=0.4' - url: https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/tinycss2-1.4.0-pyhd8ed1ab_0.conda hash: md5: f1acf5fdefa8300de697982bcb1761c9 sha256: cad582d6f978276522f84bd209a5ddac824742fe2d452af6acf900f8650a73a2 @@ -7496,7 +7496,7 @@ package: dependencies: libgcc-ng: '>=12' libzlib: '>=1.2.13,<2.0.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda + url: https://repo.prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda hash: md5: d453b98d9c83e71da0741bb0ff4d76bc sha256: e0569c9caa68bf476bead1bed3d79650bb080b532c64a4af7d8ca286c08dea4e @@ -7510,7 +7510,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-h5226925_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/tk-8.6.13-h5226925_1.conda hash: md5: fc048363eb8f03cd1737600a5d08aafe sha256: 2c4e914f521ccb2718946645108c9bd3fc3216ba69aea20c2c3cedbd8db32bb1 @@ -7522,7 +7522,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_1.conda hash: md5: b0dd904de08b7db706167240bf37b164 sha256: 34f3a83384ac3ac30aefd1309e69498d8a4aa0bf2d1f21c645f79b180e378938 @@ -7534,7 +7534,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_1.conda hash: md5: b0dd904de08b7db706167240bf37b164 sha256: 34f3a83384ac3ac30aefd1309e69498d8a4aa0bf2d1f21c645f79b180e378938 @@ -7546,7 +7546,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda hash: md5: ac944244f1fed2eb49bae07193ae8215 sha256: 18636339a79656962723077df9a56c0ac7b8a864329eb8f847ee3d38495b863e @@ -7558,7 +7558,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda hash: md5: ac944244f1fed2eb49bae07193ae8215 sha256: 18636339a79656962723077df9a56c0ac7b8a864329eb8f847ee3d38495b863e @@ -7570,7 +7570,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.13.2-pyha770c72_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.2-pyha770c72_1.conda hash: md5: 1d9ab4fc875c52db83f9c9b40af4e2c8 sha256: 986fae65f5568e95dbf858d08d77a0f9cca031345a98550f1d4b51d36d8811e2 @@ -7582,7 +7582,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.13.2-pyha770c72_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.2-pyha770c72_1.conda hash: md5: 1d9ab4fc875c52db83f9c9b40af4e2c8 sha256: 986fae65f5568e95dbf858d08d77a0f9cca031345a98550f1d4b51d36d8811e2 @@ -7594,7 +7594,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/toolz-1.0.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/toolz-1.0.0-pyhd8ed1ab_1.conda hash: md5: 40d0ed782a8aaa16ef248e68c06c168d sha256: eda38f423c33c2eaeca49ed946a8d3bf466cc3364970e083a65eb2fd85258d87 @@ -7606,7 +7606,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/toolz-1.0.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/toolz-1.0.0-pyhd8ed1ab_1.conda hash: md5: 40d0ed782a8aaa16ef248e68c06c168d sha256: eda38f423c33c2eaeca49ed946a8d3bf466cc3364970e083a65eb2fd85258d87 @@ -7621,7 +7621,7 @@ package: libgcc: '>=13' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/linux-64/tornado-6.4.2-py312h66e93f0_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/tornado-6.4.2-py312h66e93f0_0.conda hash: md5: e417822cb989e80a0d2b1b576fdd1657 sha256: 062a3a3a37fa8615ce57929ba7e982c76f5a5810bcebd435950f6d6c4147c310 @@ -7637,7 +7637,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/tornado-6.4.2-py312h4389bb4_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/tornado-6.4.2-py312h4389bb4_0.conda hash: md5: f06104f71f496b0784b35b23e30e7990 sha256: e21f24e5d598d9a31c604f510c82fbe73d756696bc70a69f11811a2ea9dd5d95 @@ -7650,7 +7650,7 @@ package: dependencies: colorama: '' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_1.conda hash: md5: 9efbfdc37242619130ea42b1cc4ed861 sha256: 11e2c85468ae9902d24a27137b6b39b4a78099806e551d390e394a8c34b48e40 @@ -7663,7 +7663,7 @@ package: dependencies: colorama: '' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_1.conda hash: md5: 9efbfdc37242619130ea42b1cc4ed861 sha256: 11e2c85468ae9902d24a27137b6b39b4a78099806e551d390e394a8c34b48e40 @@ -7675,7 +7675,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda hash: md5: 019a7385be9af33791c989871317e1ed sha256: f39a5620c6e8e9e98357507262a7869de2ae8cc07da8b7f84e517c9fd6c2b959 @@ -7687,7 +7687,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda hash: md5: 019a7385be9af33791c989871317e1ed sha256: f39a5620c6e8e9e98357507262a7869de2ae8cc07da8b7f84e517c9fd6c2b959 @@ -7699,7 +7699,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/types-python-dateutil-2.9.0.20241206-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/types-python-dateutil-2.9.0.20241206-pyhd8ed1ab_0.conda hash: md5: 1dbc4a115e2ad9fb7f9d5b68397f66f9 sha256: 8b98cd9464837174ab58aaa912fc95d5831879864676650a383994033533b8d1 @@ -7711,7 +7711,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/types-python-dateutil-2.9.0.20241206-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/types-python-dateutil-2.9.0.20241206-pyhd8ed1ab_0.conda hash: md5: 1dbc4a115e2ad9fb7f9d5b68397f66f9 sha256: 8b98cd9464837174ab58aaa912fc95d5831879864676650a383994033533b8d1 @@ -7723,7 +7723,7 @@ package: platform: linux-64 dependencies: typing_extensions: ==4.13.2 - url: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.13.2-h0e9735f_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.13.2-h0e9735f_0.conda hash: md5: 568ed1300869dca0ba09fb750cda5dbb sha256: 4865fce0897d3cb0ffc8998219157a8325f6011c136e6fd740a9a6b169419296 @@ -7735,7 +7735,7 @@ package: platform: win-64 dependencies: typing_extensions: ==4.13.2 - url: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.13.2-h0e9735f_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.13.2-h0e9735f_0.conda hash: md5: 568ed1300869dca0ba09fb750cda5dbb sha256: 4865fce0897d3cb0ffc8998219157a8325f6011c136e6fd740a9a6b169419296 @@ -7748,7 +7748,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '>=4.12.0' - url: https://conda.anaconda.org/conda-forge/noarch/typing-inspection-0.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.0-pyhd8ed1ab_0.conda hash: md5: c5c76894b6b7bacc888ba25753bc8677 sha256: 172f971d70e1dbb978f6061d3f72be463d0f629155338603450d8ffe87cbf89d @@ -7761,7 +7761,7 @@ package: dependencies: python: '>=3.9' typing_extensions: '>=4.12.0' - url: https://conda.anaconda.org/conda-forge/noarch/typing-inspection-0.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.0-pyhd8ed1ab_0.conda hash: md5: c5c76894b6b7bacc888ba25753bc8677 sha256: 172f971d70e1dbb978f6061d3f72be463d0f629155338603450d8ffe87cbf89d @@ -7773,7 +7773,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.13.2-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.13.2-pyh29332c3_0.conda hash: md5: 83fc6ae00127671e301c9f44254c31b8 sha256: a8aaf351e6461de0d5d47e4911257e25eec2fa409d71f3b643bb2f748bde1c08 @@ -7785,7 +7785,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.13.2-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.13.2-pyh29332c3_0.conda hash: md5: 83fc6ae00127671e301c9f44254c31b8 sha256: a8aaf351e6461de0d5d47e4911257e25eec2fa409d71f3b643bb2f748bde1c08 @@ -7797,7 +7797,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/typing_utils-0.1.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing_utils-0.1.0-pyhd8ed1ab_1.conda hash: md5: f6d7aa696c67756a650e91e15e88223c sha256: 3088d5d873411a56bf988eee774559335749aed6f6c28e07bf933256afb9eb6c @@ -7809,7 +7809,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/typing_utils-0.1.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing_utils-0.1.0-pyhd8ed1ab_1.conda hash: md5: f6d7aa696c67756a650e91e15e88223c sha256: 3088d5d873411a56bf988eee774559335749aed6f6c28e07bf933256afb9eb6c @@ -7820,7 +7820,7 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda hash: md5: 4222072737ccff51314b5ece9c7d6f5a sha256: 5aaa366385d716557e365f0a4e9c3fca43ba196872abbbe3d56bb610d131e192 @@ -7831,7 +7831,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda hash: md5: 4222072737ccff51314b5ece9c7d6f5a sha256: 5aaa366385d716557e365f0a4e9c3fca43ba196872abbbe3d56bb610d131e192 @@ -7843,7 +7843,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/uc-micro-py-1.0.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/uc-micro-py-1.0.3-pyhd8ed1ab_1.conda hash: md5: 9c96c9876ba45368a03056ddd0f20431 sha256: a2f837780af450d633efc052219c31378bcad31356766663fb88a99e8e4c817b @@ -7855,7 +7855,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/uc-micro-py-1.0.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/uc-micro-py-1.0.3-pyhd8ed1ab_1.conda hash: md5: 9c96c9876ba45368a03056ddd0f20431 sha256: a2f837780af450d633efc052219c31378bcad31356766663fb88a99e8e4c817b @@ -7866,7 +7866,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_1.conda hash: md5: 6797b005cd0f439c4c5c9ac565783700 sha256: db8dead3dd30fb1a032737554ce91e2819b43496a0db09927edf01c32b577450 @@ -7881,7 +7881,7 @@ package: libgcc: '>=13' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/linux-64/unicodedata2-16.0.0-py312h66e93f0_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/unicodedata2-16.0.0-py312h66e93f0_0.conda hash: md5: 617f5d608ff8c28ad546e5d9671cbb95 sha256: 638916105a836973593547ba5cf4891d1f2cb82d1cf14354fcef93fd5b941cdc @@ -7897,7 +7897,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/unicodedata2-16.0.0-py312h4389bb4_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/unicodedata2-16.0.0-py312h4389bb4_0.conda hash: md5: 3b124c38c7852704ba6a42a170c152a1 sha256: 0889ccb541d0b63cbf42ea5b1f1686b772e872bfcddd3a18787dc4437ebbd7c6 @@ -7909,7 +7909,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/uri-template-1.3.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/uri-template-1.3.0-pyhd8ed1ab_1.conda hash: md5: e7cb0f5745e4c5035a460248334af7eb sha256: e0eb6c8daf892b3056f08416a96d68b0a358b7c46b99c8a50481b22631a4dfc0 @@ -7921,7 +7921,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/uri-template-1.3.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/uri-template-1.3.0-pyhd8ed1ab_1.conda hash: md5: e7cb0f5745e4c5035a460248334af7eb sha256: e0eb6c8daf892b3056f08416a96d68b0a358b7c46b99c8a50481b22631a4dfc0 @@ -7937,7 +7937,7 @@ package: pysocks: '>=1.5.6,<2.0,!=1.5.7' python: '>=3.9' zstandard: '>=0.18.0' - url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda hash: md5: c1e349028e0052c4eea844e94f773065 sha256: a25403b76f7f03ca1a906e1ef0f88521edded991b9897e7fed56a3e334b3db8c @@ -7953,7 +7953,7 @@ package: pysocks: '>=1.5.6,<2.0,!=1.5.7' python: '>=3.9' zstandard: '>=0.18.0' - url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda hash: md5: c1e349028e0052c4eea844e94f773065 sha256: a25403b76f7f03ca1a906e1ef0f88521edded991b9897e7fed56a3e334b3db8c @@ -7965,7 +7965,7 @@ package: platform: win-64 dependencies: vc14_runtime: '>=14.42.34433' - url: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-h2b53caa_26.conda + url: https://repo.prefix.dev/conda-forge/win-64/vc-14.3-h2b53caa_26.conda hash: md5: d3f0381e38093bde620a8d85f266ae55 sha256: 7a685b5c37e9713fa314a0d26b8b1d7a2e6de5ab758698199b5d5b6dba2e3ce1 @@ -7977,7 +7977,7 @@ package: platform: win-64 dependencies: ucrt: '>=10.0.20348.0' - url: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.42.34438-hfd919c2_26.conda + url: https://repo.prefix.dev/conda-forge/win-64/vc14_runtime-14.42.34438-hfd919c2_26.conda hash: md5: 91651a36d31aa20c7ba36299fb7068f4 sha256: 30dcb71bb166e351aadbdc18f1718757c32cdaa0e1e5d9368469ee44f6bf4709 @@ -7989,7 +7989,7 @@ package: platform: win-64 dependencies: vc14_runtime: '>=14.42.34438' - url: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.42.34438-h7142326_26.conda + url: https://repo.prefix.dev/conda-forge/win-64/vs2015_runtime-14.42.34438-h7142326_26.conda hash: md5: 3357e4383dbce31eed332008ede242ab sha256: 432f2937206f1ad4a77e39f84fabc1ce7d2472b669836fb72bd2bfd19a2defc9 @@ -8001,7 +8001,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.13-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/wcwidth-0.2.13-pyhd8ed1ab_1.conda hash: md5: b68980f2495d096e71c7fd9d7ccf63e6 sha256: f21e63e8f7346f9074fd00ca3b079bd3d2fa4d71f1f89d5b6934bf31446dc2a5 @@ -8013,7 +8013,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.13-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/wcwidth-0.2.13-pyhd8ed1ab_1.conda hash: md5: b68980f2495d096e71c7fd9d7ccf63e6 sha256: f21e63e8f7346f9074fd00ca3b079bd3d2fa4d71f1f89d5b6934bf31446dc2a5 @@ -8025,7 +8025,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/webcolors-24.11.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/webcolors-24.11.1-pyhd8ed1ab_0.conda hash: md5: b49f7b291e15494aafb0a7d74806f337 sha256: 08315dc2e61766a39219b2d82685fc25a56b2817acf84d5b390176080eaacf99 @@ -8037,7 +8037,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/webcolors-24.11.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/webcolors-24.11.1-pyhd8ed1ab_0.conda hash: md5: b49f7b291e15494aafb0a7d74806f337 sha256: 08315dc2e61766a39219b2d82685fc25a56b2817acf84d5b390176080eaacf99 @@ -8049,7 +8049,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_3.conda + url: https://repo.prefix.dev/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_3.conda hash: md5: 2841eb5bfc75ce15e9a0054b98dcd64d sha256: 19ff205e138bb056a46f9e3839935a2e60bd1cf01c8241a5e172a422fed4f9c6 @@ -8061,7 +8061,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_3.conda + url: https://repo.prefix.dev/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_3.conda hash: md5: 2841eb5bfc75ce15e9a0054b98dcd64d sha256: 19ff205e138bb056a46f9e3839935a2e60bd1cf01c8241a5e172a422fed4f9c6 @@ -8073,7 +8073,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/websocket-client-1.8.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/websocket-client-1.8.0-pyhd8ed1ab_1.conda hash: md5: 84f8f77f0a9c6ef401ee96611745da8f sha256: 1dd84764424ffc82030c19ad70607e6f9e3b9cb8e633970766d697185652053e @@ -8085,7 +8085,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/websocket-client-1.8.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/websocket-client-1.8.0-pyhd8ed1ab_1.conda hash: md5: 84f8f77f0a9c6ef401ee96611745da8f sha256: 1dd84764424ffc82030c19ad70607e6f9e3b9cb8e633970766d697185652053e @@ -8097,7 +8097,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda hash: md5: 75cb7132eb58d97896e173ef12ac9986 sha256: 1b34021e815ff89a4d902d879c3bd2040bc1bd6169b32e9427497fa05c55f1ce @@ -8109,7 +8109,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda hash: md5: 75cb7132eb58d97896e173ef12ac9986 sha256: 1b34021e815ff89a4d902d879c3bd2040bc1bd6169b32e9427497fa05c55f1ce @@ -8122,7 +8122,7 @@ package: dependencies: notebook: '>=4.4.1' python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-3.6.10-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/widgetsnbextension-3.6.10-pyhd8ed1ab_0.conda hash: md5: 4d52bbdb661dc1b5a1c2aeb1afcd9a67 sha256: 6aeb16d2aacdae68ba7afd980925264f5d0459dd165e3406f13f23949df346c1 @@ -8135,7 +8135,7 @@ package: dependencies: notebook: '>=4.4.1' python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-3.6.10-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/widgetsnbextension-3.6.10-pyhd8ed1ab_0.conda hash: md5: 4d52bbdb661dc1b5a1c2aeb1afcd9a67 sha256: 6aeb16d2aacdae68ba7afd980925264f5d0459dd165e3406f13f23949df346c1 @@ -8148,7 +8148,7 @@ package: dependencies: __win: '' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/win_inet_pton-1.1.0-pyh7428d3b_8.conda + url: https://repo.prefix.dev/conda-forge/noarch/win_inet_pton-1.1.0-pyh7428d3b_8.conda hash: md5: 46e441ba871f524e2b067929da3051c2 sha256: 93807369ab91f230cf9e6e2a237eaa812492fe00face5b38068735858fba954f @@ -8159,7 +8159,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/win-64/winpty-0.4.3-4.tar.bz2 + url: https://repo.prefix.dev/conda-forge/win-64/winpty-0.4.3-4.tar.bz2 hash: md5: 1cee351bf20b830d991dbe0bc8cd7dfe sha256: 9df10c5b607dd30e05ba08cbd940009305c75db242476f4e845ea06008b0a283 @@ -8174,7 +8174,7 @@ package: libgcc: '>=13' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/linux-64/wrapt-1.17.2-py312h66e93f0_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/wrapt-1.17.2-py312h66e93f0_0.conda hash: md5: 669e63af87710f8d52fdec9d4d63b404 sha256: ed3a1700ecc5d38c7e7dc7d2802df1bc1da6ba3d6f6017448b8ded0affb4ae00 @@ -8190,7 +8190,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/wrapt-1.17.2-py312h4389bb4_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/wrapt-1.17.2-py312h4389bb4_0.conda hash: md5: b9a81b36e0d35c9a172587ead532273b sha256: a1b86d727cc5f9d016a6fc9d8ac8b3e17c8e137764e018555ecadef05979ce93 @@ -8203,7 +8203,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxau-1.0.12-hb9d3cd8_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxau-1.0.12-hb9d3cd8_0.conda hash: md5: f6ebe2cb3f82ba6c057dde5d9debe4f7 sha256: ed10c9283974d311855ae08a16dfd7e56241fac632aec3b92e3cfe73cff31038 @@ -8217,7 +8217,7 @@ package: libgcc: '>=13' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' ucrt: '>=10.0.20348.0' - url: https://conda.anaconda.org/conda-forge/win-64/xorg-libxau-1.0.12-h0e40799_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/xorg-libxau-1.0.12-h0e40799_0.conda hash: md5: 2ffbfae4548098297c033228256eb96e sha256: 047836241b2712aab1e29474a6f728647bff3ab57de2806b0bb0a6cf9a2d2634 @@ -8230,7 +8230,7 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb9d3cd8_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb9d3cd8_0.conda hash: md5: 8035c64cb77ed555e3f150b7b3972480 sha256: 6b250f3e59db07c2514057944a3ea2044d6a8cdde8a47b6497c254520fade1ee @@ -8244,7 +8244,7 @@ package: libgcc: '>=13' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' ucrt: '>=10.0.20348.0' - url: https://conda.anaconda.org/conda-forge/win-64/xorg-libxdmcp-1.1.5-h0e40799_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/xorg-libxdmcp-1.1.5-h0e40799_0.conda hash: md5: 8393c0f7e7870b4eb45553326f81f0ff sha256: 9075f98dcaa8e9957e4a3d9d30db05c7578a536950a31c200854c5c34e1edb2c @@ -8256,7 +8256,7 @@ package: platform: linux-64 dependencies: python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/xyzservices-2025.1.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/xyzservices-2025.1.0-pyhd8ed1ab_0.conda hash: md5: fdf07e281a9e5e10fc75b2dd444136e9 sha256: 9978c22319e85026d5a4134944f73bac820c948ca6b6c32af6b6985b5221cd8a @@ -8268,7 +8268,7 @@ package: platform: win-64 dependencies: python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/xyzservices-2025.1.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/xyzservices-2025.1.0-pyhd8ed1ab_0.conda hash: md5: fdf07e281a9e5e10fc75b2dd444136e9 sha256: 9978c22319e85026d5a4134944f73bac820c948ca6b6c32af6b6985b5221cd8a @@ -8280,7 +8280,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=9.4.0' - url: https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2 + url: https://repo.prefix.dev/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2 hash: md5: 4cb3ad778ec2d5a7acbdf254eb1c42ae sha256: a4e34c710eeb26945bdbdaba82d3d74f60a78f54a874ec10d373811a5d217535 @@ -8293,7 +8293,7 @@ package: dependencies: vc: '>=14.1,<15.0a0' vs2015_runtime: '>=14.16.27012' - url: https://conda.anaconda.org/conda-forge/win-64/yaml-0.2.5-h8ffe710_2.tar.bz2 + url: https://repo.prefix.dev/conda-forge/win-64/yaml-0.2.5-h8ffe710_2.tar.bz2 hash: md5: adbfb9f45d1004a26763652246a33764 sha256: 4e2246383003acbad9682c7c63178e2e715ad0eb84f03a8df1fbfba455dfedc5 @@ -8309,7 +8309,7 @@ package: numcodecs: '>=0.10.0,<0.16.0a0' numpy: '>=1.7' python: '>=3.5' - url: https://conda.anaconda.org/conda-forge/noarch/zarr-2.14.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/zarr-2.14.2-pyhd8ed1ab_0.conda hash: md5: 0c5776fe65a12a421d7ddf90411a6c3f sha256: 0f029f7efea00b8258782b5e68989fc140c227e6d9edd231d46fdd954b39d23f @@ -8325,7 +8325,7 @@ package: numcodecs: '>=0.10.0,<0.16.0a0' numpy: '>=1.7' python: '>=3.5' - url: https://conda.anaconda.org/conda-forge/noarch/zarr-2.14.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/zarr-2.14.2-pyhd8ed1ab_0.conda hash: md5: 0c5776fe65a12a421d7ddf90411a6c3f sha256: 0f029f7efea00b8258782b5e68989fc140c227e6d9edd231d46fdd954b39d23f @@ -8341,7 +8341,7 @@ package: libgcc: '>=13' libsodium: '>=1.0.20,<1.0.21.0a0' libstdcxx: '>=13' - url: https://conda.anaconda.org/conda-forge/linux-64/zeromq-4.3.5-h3b0a872_7.conda + url: https://repo.prefix.dev/conda-forge/linux-64/zeromq-4.3.5-h3b0a872_7.conda hash: md5: 3947a35e916fcc6b9825449affbf4214 sha256: a4dc72c96848f764bb5a5176aa93dd1e9b9e52804137b99daeebba277b31ea10 @@ -8357,7 +8357,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/zeromq-4.3.5-ha9f60a1_7.conda + url: https://repo.prefix.dev/conda-forge/win-64/zeromq-4.3.5-ha9f60a1_7.conda hash: md5: e03f2c245a5ee6055752465519363b1c sha256: 15cc8e2162d0a33ffeb3f7b7c7883fd830c54a4b1be6a4b8c7ee1f4fef0088fb @@ -8369,7 +8369,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/zict-3.0.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/zict-3.0.0-pyhd8ed1ab_1.conda hash: md5: e52c2ef711ccf31bb7f70ca87d144b9e sha256: 5488542dceeb9f2874e726646548ecc5608060934d6f9ceaa7c6a48c61f9cc8d @@ -8381,7 +8381,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/zict-3.0.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/zict-3.0.0-pyhd8ed1ab_1.conda hash: md5: e52c2ef711ccf31bb7f70ca87d144b9e sha256: 5488542dceeb9f2874e726646548ecc5608060934d6f9ceaa7c6a48c61f9cc8d @@ -8393,7 +8393,7 @@ package: platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda hash: md5: 0c3cc595284c5e8f0f9900a9b228a332 sha256: 567c04f124525c97a096b65769834b7acb047db24b15a56888a322bf3966c3e1 @@ -8405,7 +8405,7 @@ package: platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda hash: md5: 0c3cc595284c5e8f0f9900a9b228a332 sha256: 567c04f124525c97a096b65769834b7acb047db24b15a56888a322bf3966c3e1 @@ -8421,7 +8421,7 @@ package: libgcc: '>=13' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/linux-64/zstandard-0.23.0-py312h66e93f0_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/zstandard-0.23.0-py312h66e93f0_1.conda hash: md5: d28b82fcc8d1b462b595af4b15a6cdcf sha256: b4fd6bd1cb87a183a8bbe85b4e87a1e7c51473309d0d82cd88d38fb021bcf41e @@ -8438,7 +8438,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/zstandard-0.23.0-py312h4389bb4_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/zstandard-0.23.0-py312h4389bb4_1.conda hash: md5: 5028543ffb67666ca4fc3ebd620c97b8 sha256: 17f2abbda821be146b549498fab3d0eb9cafb210e163b983524db91524b8dcb5 @@ -8453,7 +8453,7 @@ package: libgcc: '>=13' libstdcxx: '>=13' libzlib: '>=1.3.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.7-hb8e6e7a_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb8e6e7a_2.conda hash: md5: 6432cb5d4ac0046c3ac0a8a0f95842f9 sha256: a4166e3d8ff4e35932510aaff7aa90772f84b4d07e9f6f83c614cba7ceefe0eb @@ -8468,7 +8468,7 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/zstd-1.5.7-hbeecb71_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/zstd-1.5.7-hbeecb71_2.conda hash: md5: 21f56217d6125fb30c3c3f10c786d751 sha256: bc64864377d809b904e877a98d0584f43836c9f2ef27d3d2a1421fa6eae7ca04 @@ -8531,7 +8531,7 @@ package: category: main optional: false - name: mira-simpeg - version: 0.23.0.1a3.dev1+g60bcbe68b + version: 0.23.0.1a3.dev2+g730fa0095 manager: pip platform: linux-64 dependencies: @@ -8543,16 +8543,16 @@ package: numpy: '>=1.22' pymatsolver: '>=0.3' scipy: '>=1.8' - url: git+https://github.com/MiraGeoscience/simpeg.git@60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 + url: git+https://github.com/MiraGeoscience/simpeg.git@730fa00953165f6fd5a87c3942d05cf8e0a7e164 hash: - sha256: 60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 + sha256: 730fa00953165f6fd5a87c3942d05cf8e0a7e164 source: type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 + url: git+https://github.com/MiraGeoscience/simpeg.git@730fa00953165f6fd5a87c3942d05cf8e0a7e164 category: main optional: false - name: mira-simpeg - version: 0.23.0.1a3.dev1+g60bcbe68b + version: 0.23.0.1a3.dev2+g730fa0095 manager: pip platform: win-64 dependencies: @@ -8564,12 +8564,12 @@ package: numpy: '>=1.22' pymatsolver: '>=0.3' scipy: '>=1.8' - url: git+https://github.com/MiraGeoscience/simpeg.git@60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 + url: git+https://github.com/MiraGeoscience/simpeg.git@730fa00953165f6fd5a87c3942d05cf8e0a7e164 hash: - sha256: 60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 + sha256: 730fa00953165f6fd5a87c3942d05cf8e0a7e164 source: type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@60bcbe68b4dfb7a7316fa44173d8af292b8ce9c2 + url: git+https://github.com/MiraGeoscience/simpeg.git@730fa00953165f6fd5a87c3942d05cf8e0a7e164 category: main optional: false - name: octree-creation-app From 3ab07ce43cd17619d1f0f7b5a6362c7c4c877415 Mon Sep 17 00:00:00 2001 From: dominiquef Date: Sun, 20 Apr 2025 21:28:28 -0700 Subject: [PATCH 10/20] Update jsons --- .../uijson/direct_current_2d_forward.ui.json | 6 +++++- .../uijson/direct_current_2d_inversion.ui.json | 6 +++++- .../uijson/direct_current_3d_forward.ui.json | 6 +++++- .../uijson/direct_current_3d_inversion.ui.json | 6 +++++- .../uijson/direct_current_batch2d_forward.ui.json | 6 +++++- .../uijson/direct_current_batch2d_inversion.ui.json | 5 ++++- simpeg_drivers-assets/uijson/fdem1d_forward.ui.json | 6 +++++- simpeg_drivers-assets/uijson/fdem1d_inversion.ui.json | 6 +++++- simpeg_drivers-assets/uijson/fem_forward.ui.json | 6 +++++- simpeg_drivers-assets/uijson/fem_inversion.ui.json | 6 +++++- simpeg_drivers-assets/uijson/gravity_forward.ui.json | 6 +++++- simpeg_drivers-assets/uijson/gravity_inversion.ui.json | 6 +++++- .../uijson/induced_polarization_2d_forward.ui.json | 6 +++++- .../uijson/induced_polarization_2d_inversion.ui.json | 6 +++++- .../uijson/induced_polarization_3d_forward.ui.json | 6 +++++- .../uijson/induced_polarization_3d_inversion.ui.json | 6 +++++- .../uijson/induced_polarization_batch2d_forward.ui.json | 6 +++++- .../uijson/induced_polarization_batch2d_inversion.ui.json | 6 +++++- .../uijson/joint_cross_gradient_inversion.ui.json | 6 +++++- .../uijson/joint_surveys_inversion.ui.json | 6 +++++- .../uijson/magnetic_scalar_forward.ui.json | 6 +++++- .../uijson/magnetic_scalar_inversion.ui.json | 6 +++++- .../uijson/magnetic_vector_forward.ui.json | 6 +++++- .../uijson/magnetic_vector_inversion.ui.json | 6 +++++- .../uijson/magnetotellurics_forward.ui.json | 6 +++++- .../uijson/magnetotellurics_inversion.ui.json | 6 +++++- simpeg_drivers-assets/uijson/tdem1d_forward.ui.json | 6 +++++- simpeg_drivers-assets/uijson/tdem1d_inversion.ui.json | 6 +++++- simpeg_drivers-assets/uijson/tdem_forward.ui.json | 6 +++++- simpeg_drivers-assets/uijson/tdem_inversion.ui.json | 6 +++++- simpeg_drivers-assets/uijson/tipper_forward.ui.json | 6 +++++- simpeg_drivers-assets/uijson/tipper_inversion.ui.json | 6 +++++- 32 files changed, 159 insertions(+), 32 deletions(-) diff --git a/simpeg_drivers-assets/uijson/direct_current_2d_forward.ui.json b/simpeg_drivers-assets/uijson/direct_current_2d_forward.ui.json index 0b5fadeb..6e4c5f01 100644 --- a/simpeg_drivers-assets/uijson/direct_current_2d_forward.ui.json +++ b/simpeg_drivers-assets/uijson/direct_current_2d_forward.ui.json @@ -225,5 +225,9 @@ "value": false, "tooltip": "Generates a file for sweeping parameters instead of running the application." }, - "distributed_workers": "" + "distributed_workers": "", + "n_workers": "", + "n_threads": "", + "max_ram": "", + "performance_report": "" } diff --git a/simpeg_drivers-assets/uijson/direct_current_2d_inversion.ui.json b/simpeg_drivers-assets/uijson/direct_current_2d_inversion.ui.json index da4e8783..41053ecb 100644 --- a/simpeg_drivers-assets/uijson/direct_current_2d_inversion.ui.json +++ b/simpeg_drivers-assets/uijson/direct_current_2d_inversion.ui.json @@ -570,5 +570,9 @@ "value": false, "tooltip": "Generates a file for sweeping parameters instead of running the application." }, - "distributed_workers": "" + "distributed_workers": "", + "n_workers": "", + "n_threads": "", + "max_ram": "", + "performance_report": "" } diff --git a/simpeg_drivers-assets/uijson/direct_current_3d_forward.ui.json b/simpeg_drivers-assets/uijson/direct_current_3d_forward.ui.json index 922ab8d7..9e55322b 100644 --- a/simpeg_drivers-assets/uijson/direct_current_3d_forward.ui.json +++ b/simpeg_drivers-assets/uijson/direct_current_3d_forward.ui.json @@ -165,5 +165,9 @@ "value": false, "tooltip": "Generates a file for sweeping parameters instead of running the application." }, - "distributed_workers": "" + "distributed_workers": "", + "n_workers": "", + "n_threads": "", + "max_ram": "", + "performance_report": "" } diff --git a/simpeg_drivers-assets/uijson/direct_current_3d_inversion.ui.json b/simpeg_drivers-assets/uijson/direct_current_3d_inversion.ui.json index 896658ff..86ba32d9 100644 --- a/simpeg_drivers-assets/uijson/direct_current_3d_inversion.ui.json +++ b/simpeg_drivers-assets/uijson/direct_current_3d_inversion.ui.json @@ -550,5 +550,9 @@ "value": false, "tooltip": "Generates a file for sweeping parameters instead of running the application." }, - "distributed_workers": "" + "distributed_workers": "", + "n_workers": "", + "n_threads": "", + "max_ram": "", + "performance_report": "" } diff --git a/simpeg_drivers-assets/uijson/direct_current_batch2d_forward.ui.json b/simpeg_drivers-assets/uijson/direct_current_batch2d_forward.ui.json index ef771680..120ef94b 100644 --- a/simpeg_drivers-assets/uijson/direct_current_batch2d_forward.ui.json +++ b/simpeg_drivers-assets/uijson/direct_current_batch2d_forward.ui.json @@ -220,5 +220,9 @@ "label": "Clean directory", "value": false }, - "distributed_workers": "" + "distributed_workers": "", + "n_workers": "", + "n_threads": "", + "max_ram": "", + "performance_report": "" } 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 36761d7f..ed3ed085 100644 --- a/simpeg_drivers-assets/uijson/direct_current_batch2d_inversion.ui.json +++ b/simpeg_drivers-assets/uijson/direct_current_batch2d_inversion.ui.json @@ -564,5 +564,8 @@ "label": "Clean directory", "value": true }, - "distributed_workers": "" + "distributed_workers": "", + "n_workers": "", + "n_threads": "", + "performance_report": "" } diff --git a/simpeg_drivers-assets/uijson/fdem1d_forward.ui.json b/simpeg_drivers-assets/uijson/fdem1d_forward.ui.json index ad6024e3..b8aa26bb 100644 --- a/simpeg_drivers-assets/uijson/fdem1d_forward.ui.json +++ b/simpeg_drivers-assets/uijson/fdem1d_forward.ui.json @@ -218,5 +218,9 @@ "value": false, "tooltip": "Generates a file for sweeping parameters instead of running the application." }, - "distributed_workers": "" + "distributed_workers": "", + "n_workers": "", + "n_threads": "", + "max_ram": "", + "performance_report": "" } diff --git a/simpeg_drivers-assets/uijson/fdem1d_inversion.ui.json b/simpeg_drivers-assets/uijson/fdem1d_inversion.ui.json index 8d1ffd98..3c58cde4 100644 --- a/simpeg_drivers-assets/uijson/fdem1d_inversion.ui.json +++ b/simpeg_drivers-assets/uijson/fdem1d_inversion.ui.json @@ -588,5 +588,9 @@ "value": false, "tooltip": "Generates a file for sweeping parameters instead of running the application." }, - "distributed_workers": "" + "distributed_workers": "", + "n_workers": "", + "n_threads": "", + "max_ram": "", + "performance_report": "" } diff --git a/simpeg_drivers-assets/uijson/fem_forward.ui.json b/simpeg_drivers-assets/uijson/fem_forward.ui.json index a956d91a..e53f1951 100644 --- a/simpeg_drivers-assets/uijson/fem_forward.ui.json +++ b/simpeg_drivers-assets/uijson/fem_forward.ui.json @@ -178,5 +178,9 @@ "value": false, "tooltip": "Generates a file for sweeping parameters instead of running the application." }, - "distributed_workers": "" + "distributed_workers": "", + "n_workers": "", + "n_threads": "", + "max_ram": "", + "performance_report": "" } diff --git a/simpeg_drivers-assets/uijson/fem_inversion.ui.json b/simpeg_drivers-assets/uijson/fem_inversion.ui.json index f88585b1..e970ec64 100644 --- a/simpeg_drivers-assets/uijson/fem_inversion.ui.json +++ b/simpeg_drivers-assets/uijson/fem_inversion.ui.json @@ -586,5 +586,9 @@ "value": false, "tooltip": "Generates a file for sweeping parameters instead of running the application." }, - "distributed_workers": "" + "distributed_workers": "", + "n_workers": "", + "n_threads": "", + "max_ram": "", + "performance_report": "" } diff --git a/simpeg_drivers-assets/uijson/gravity_forward.ui.json b/simpeg_drivers-assets/uijson/gravity_forward.ui.json index 531d38f7..86fd94a1 100644 --- a/simpeg_drivers-assets/uijson/gravity_forward.ui.json +++ b/simpeg_drivers-assets/uijson/gravity_forward.ui.json @@ -212,5 +212,9 @@ "value": false, "tooltip": "Generates a file for sweeping parameters instead of running the application." }, - "distributed_workers": "" + "distributed_workers": "", + "n_workers": "", + "n_threads": "", + "max_ram": "", + "performance_report": "" } diff --git a/simpeg_drivers-assets/uijson/gravity_inversion.ui.json b/simpeg_drivers-assets/uijson/gravity_inversion.ui.json index 8b16f211..d2d982ea 100644 --- a/simpeg_drivers-assets/uijson/gravity_inversion.ui.json +++ b/simpeg_drivers-assets/uijson/gravity_inversion.ui.json @@ -814,5 +814,9 @@ "value": false, "tooltip": "Generates a file for sweeping parameters instead of running the application." }, - "distributed_workers": "" + "distributed_workers": "", + "n_workers": "", + "n_threads": "", + "max_ram": "", + "performance_report": "" } diff --git a/simpeg_drivers-assets/uijson/induced_polarization_2d_forward.ui.json b/simpeg_drivers-assets/uijson/induced_polarization_2d_forward.ui.json index cb667244..a6607954 100644 --- a/simpeg_drivers-assets/uijson/induced_polarization_2d_forward.ui.json +++ b/simpeg_drivers-assets/uijson/induced_polarization_2d_forward.ui.json @@ -236,5 +236,9 @@ "value": false, "tooltip": "Generates a file for sweeping parameters instead of running the application." }, - "distributed_workers": "" + "distributed_workers": "", + "n_workers": "", + "n_threads": "", + "max_ram": "", + "performance_report": "" } diff --git a/simpeg_drivers-assets/uijson/induced_polarization_2d_inversion.ui.json b/simpeg_drivers-assets/uijson/induced_polarization_2d_inversion.ui.json index b8fb7964..b5c91e56 100644 --- a/simpeg_drivers-assets/uijson/induced_polarization_2d_inversion.ui.json +++ b/simpeg_drivers-assets/uijson/induced_polarization_2d_inversion.ui.json @@ -580,5 +580,9 @@ "value": false, "tooltip": "Generates a file for sweeping parameters instead of running the application." }, - "distributed_workers": "" + "distributed_workers": "", + "n_workers": "", + "n_threads": "", + "max_ram": "", + "performance_report": "" } diff --git a/simpeg_drivers-assets/uijson/induced_polarization_3d_forward.ui.json b/simpeg_drivers-assets/uijson/induced_polarization_3d_forward.ui.json index 6f2f9529..96664662 100644 --- a/simpeg_drivers-assets/uijson/induced_polarization_3d_forward.ui.json +++ b/simpeg_drivers-assets/uijson/induced_polarization_3d_forward.ui.json @@ -181,5 +181,9 @@ "value": false, "tooltip": "Generates a file for sweeping parameters instead of running the application." }, - "distributed_workers": "" + "distributed_workers": "", + "n_workers": "", + "n_threads": "", + "max_ram": "", + "performance_report": "" } diff --git a/simpeg_drivers-assets/uijson/induced_polarization_3d_inversion.ui.json b/simpeg_drivers-assets/uijson/induced_polarization_3d_inversion.ui.json index 462612ec..b7c079c0 100644 --- a/simpeg_drivers-assets/uijson/induced_polarization_3d_inversion.ui.json +++ b/simpeg_drivers-assets/uijson/induced_polarization_3d_inversion.ui.json @@ -566,5 +566,9 @@ "value": false, "tooltip": "Generates a file for sweeping parameters instead of running the application." }, - "distributed_workers": "" + "distributed_workers": "", + "n_workers": "", + "n_threads": "", + "max_ram": "", + "performance_report": "" } diff --git a/simpeg_drivers-assets/uijson/induced_polarization_batch2d_forward.ui.json b/simpeg_drivers-assets/uijson/induced_polarization_batch2d_forward.ui.json index 0cc50ef4..c092898b 100644 --- a/simpeg_drivers-assets/uijson/induced_polarization_batch2d_forward.ui.json +++ b/simpeg_drivers-assets/uijson/induced_polarization_batch2d_forward.ui.json @@ -231,5 +231,9 @@ "label": "Clean directory", "value": false }, - "distributed_workers": "" + "distributed_workers": "", + "n_workers": "", + "n_threads": "", + "max_ram": "", + "performance_report": "" } 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 839d181e..c9f955b9 100644 --- a/simpeg_drivers-assets/uijson/induced_polarization_batch2d_inversion.ui.json +++ b/simpeg_drivers-assets/uijson/induced_polarization_batch2d_inversion.ui.json @@ -575,5 +575,9 @@ "label": "Clean directory", "value": true }, - "distributed_workers": "" + "distributed_workers": "", + "n_workers": "", + "n_threads": "", + "max_ram": "", + "performance_report": "" } diff --git a/simpeg_drivers-assets/uijson/joint_cross_gradient_inversion.ui.json b/simpeg_drivers-assets/uijson/joint_cross_gradient_inversion.ui.json index cb99b67f..ce3f469c 100644 --- a/simpeg_drivers-assets/uijson/joint_cross_gradient_inversion.ui.json +++ b/simpeg_drivers-assets/uijson/joint_cross_gradient_inversion.ui.json @@ -465,5 +465,9 @@ "value": false, "tooltip": "Generates a file for sweeping parameters instead of running the application." }, - "distributed_workers": "" + "distributed_workers": "", + "n_workers": "", + "n_threads": "", + "max_ram": "", + "performance_report": "" } diff --git a/simpeg_drivers-assets/uijson/joint_surveys_inversion.ui.json b/simpeg_drivers-assets/uijson/joint_surveys_inversion.ui.json index 75bab905..9fc69f84 100644 --- a/simpeg_drivers-assets/uijson/joint_surveys_inversion.ui.json +++ b/simpeg_drivers-assets/uijson/joint_surveys_inversion.ui.json @@ -545,5 +545,9 @@ "value": false, "tooltip": "Generates a file for sweeping parameters instead of running the application." }, - "distributed_workers": "" + "distributed_workers": "", + "n_workers": "", + "n_threads": "", + "max_ram": "", + "performance_report": "" } diff --git a/simpeg_drivers-assets/uijson/magnetic_scalar_forward.ui.json b/simpeg_drivers-assets/uijson/magnetic_scalar_forward.ui.json index d2184368..edcfccdd 100644 --- a/simpeg_drivers-assets/uijson/magnetic_scalar_forward.ui.json +++ b/simpeg_drivers-assets/uijson/magnetic_scalar_forward.ui.json @@ -242,5 +242,9 @@ "value": false, "tooltip": "Generates a file for sweeping parameters instead of running the application." }, - "distributed_workers": "" + "distributed_workers": "", + "n_workers": "", + "n_threads": "", + "max_ram": "", + "performance_report": "" } diff --git a/simpeg_drivers-assets/uijson/magnetic_scalar_inversion.ui.json b/simpeg_drivers-assets/uijson/magnetic_scalar_inversion.ui.json index db066843..5e28c0da 100644 --- a/simpeg_drivers-assets/uijson/magnetic_scalar_inversion.ui.json +++ b/simpeg_drivers-assets/uijson/magnetic_scalar_inversion.ui.json @@ -841,5 +841,9 @@ "value": false, "tooltip": "Generates a file for sweeping parameters instead of running the application." }, - "distributed_workers": "" + "distributed_workers": "", + "n_workers": "", + "n_threads": "", + "max_ram": "", + "performance_report": "" } diff --git a/simpeg_drivers-assets/uijson/magnetic_vector_forward.ui.json b/simpeg_drivers-assets/uijson/magnetic_vector_forward.ui.json index c39c64a9..ede26e65 100644 --- a/simpeg_drivers-assets/uijson/magnetic_vector_forward.ui.json +++ b/simpeg_drivers-assets/uijson/magnetic_vector_forward.ui.json @@ -274,5 +274,9 @@ "value": false, "tooltip": "Generates a file for sweeping parameters instead of running the application." }, - "distributed_workers": "" + "distributed_workers": "", + "n_workers": "", + "n_threads": "", + "max_ram": "", + "performance_report": "" } diff --git a/simpeg_drivers-assets/uijson/magnetic_vector_inversion.ui.json b/simpeg_drivers-assets/uijson/magnetic_vector_inversion.ui.json index 56d9e522..2e621d95 100644 --- a/simpeg_drivers-assets/uijson/magnetic_vector_inversion.ui.json +++ b/simpeg_drivers-assets/uijson/magnetic_vector_inversion.ui.json @@ -906,5 +906,9 @@ "value": false, "tooltip": "Generates a file for sweeping parameters instead of running the application." }, - "distributed_workers": "" + "distributed_workers": "", + "n_workers": "", + "n_threads": "", + "max_ram": "", + "performance_report": "" } diff --git a/simpeg_drivers-assets/uijson/magnetotellurics_forward.ui.json b/simpeg_drivers-assets/uijson/magnetotellurics_forward.ui.json index d3c969d1..fa439684 100644 --- a/simpeg_drivers-assets/uijson/magnetotellurics_forward.ui.json +++ b/simpeg_drivers-assets/uijson/magnetotellurics_forward.ui.json @@ -219,5 +219,9 @@ "value": false, "tooltip": "Generates a file for sweeping parameters instead of running the application." }, - "distributed_workers": "" + "distributed_workers": "", + "n_workers": "", + "n_threads": "", + "max_ram": "", + "performance_report": "" } diff --git a/simpeg_drivers-assets/uijson/magnetotellurics_inversion.ui.json b/simpeg_drivers-assets/uijson/magnetotellurics_inversion.ui.json index 13984b77..e8e35b2c 100644 --- a/simpeg_drivers-assets/uijson/magnetotellurics_inversion.ui.json +++ b/simpeg_drivers-assets/uijson/magnetotellurics_inversion.ui.json @@ -771,5 +771,9 @@ "value": false, "tooltip": "Generates a file for sweeping parameters instead of running the application." }, - "distributed_workers": "" + "distributed_workers": "", + "n_workers": "", + "n_threads": "", + "max_ram": "", + "performance_report": "" } diff --git a/simpeg_drivers-assets/uijson/tdem1d_forward.ui.json b/simpeg_drivers-assets/uijson/tdem1d_forward.ui.json index 3d5cd76e..9ad2a622 100644 --- a/simpeg_drivers-assets/uijson/tdem1d_forward.ui.json +++ b/simpeg_drivers-assets/uijson/tdem1d_forward.ui.json @@ -229,5 +229,9 @@ "value": false, "tooltip": "Generates a file for sweeping parameters instead of running the application." }, - "distributed_workers": "" + "distributed_workers": "", + "n_workers": "", + "n_threads": "", + "max_ram": "", + "performance_report": "" } diff --git a/simpeg_drivers-assets/uijson/tdem1d_inversion.ui.json b/simpeg_drivers-assets/uijson/tdem1d_inversion.ui.json index 6f1ff222..f809856e 100644 --- a/simpeg_drivers-assets/uijson/tdem1d_inversion.ui.json +++ b/simpeg_drivers-assets/uijson/tdem1d_inversion.ui.json @@ -569,5 +569,9 @@ "value": false, "tooltip": "Generates a file for sweeping parameters instead of running the application." }, - "distributed_workers": "" + "distributed_workers": "", + "n_workers": "", + "n_threads": "", + "max_ram": "", + "performance_report": "" } diff --git a/simpeg_drivers-assets/uijson/tdem_forward.ui.json b/simpeg_drivers-assets/uijson/tdem_forward.ui.json index 13a07113..68eb9437 100644 --- a/simpeg_drivers-assets/uijson/tdem_forward.ui.json +++ b/simpeg_drivers-assets/uijson/tdem_forward.ui.json @@ -197,5 +197,9 @@ "value": false, "tooltip": "Generates a file for sweeping parameters instead of running the application." }, - "distributed_workers": "" + "distributed_workers": "", + "n_workers": "", + "n_threads": "", + "max_ram": "", + "performance_report": "" } diff --git a/simpeg_drivers-assets/uijson/tdem_inversion.ui.json b/simpeg_drivers-assets/uijson/tdem_inversion.ui.json index a04b2d45..3e4f8a1f 100644 --- a/simpeg_drivers-assets/uijson/tdem_inversion.ui.json +++ b/simpeg_drivers-assets/uijson/tdem_inversion.ui.json @@ -620,5 +620,9 @@ "value": false, "tooltip": "Generates a file for sweeping parameters instead of running the application." }, - "distributed_workers": "" + "distributed_workers": "", + "n_workers": "", + "n_threads": "", + "max_ram": "", + "performance_report": "" } diff --git a/simpeg_drivers-assets/uijson/tipper_forward.ui.json b/simpeg_drivers-assets/uijson/tipper_forward.ui.json index eed93181..613d71cf 100644 --- a/simpeg_drivers-assets/uijson/tipper_forward.ui.json +++ b/simpeg_drivers-assets/uijson/tipper_forward.ui.json @@ -195,5 +195,9 @@ "value": false, "tooltip": "Generates a file for sweeping parameters instead of running the application." }, - "distributed_workers": "" + "distributed_workers": "", + "n_workers": "", + "n_threads": "", + "max_ram": "", + "performance_report": "" } diff --git a/simpeg_drivers-assets/uijson/tipper_inversion.ui.json b/simpeg_drivers-assets/uijson/tipper_inversion.ui.json index 75abce51..c6605368 100644 --- a/simpeg_drivers-assets/uijson/tipper_inversion.ui.json +++ b/simpeg_drivers-assets/uijson/tipper_inversion.ui.json @@ -651,5 +651,9 @@ "value": false, "tooltip": "Generates a file for sweeping parameters instead of running the application." }, - "distributed_workers": "" + "distributed_workers": "", + "n_workers": "", + "n_threads": "", + "max_ram": "", + "performance_report": "" } From ccf733e77569a2174996ba88a17907e731be0a1f Mon Sep 17 00:00:00 2001 From: dominiquef Date: Sun, 20 Apr 2025 21:36:30 -0700 Subject: [PATCH 11/20] Updates --- simpeg_drivers/driver.py | 4 ++-- simpeg_drivers/electromagnetics/base_1d_driver.py | 1 + simpeg_drivers/options.py | 6 +++++- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/simpeg_drivers/driver.py b/simpeg_drivers/driver.py index fac7d81f..cecaef84 100644 --- a/simpeg_drivers/driver.py +++ b/simpeg_drivers/driver.py @@ -700,13 +700,13 @@ def get_path(self, filepath: str | Path) -> str: if __name__ == "__main__": file = Path(sys.argv[1]).resolve() input_file = InputFile.read_ui_json(file) - n_workers = input_file.data.get("n_workers", 1) + n_workers = input_file.data.get("n_workers", None) n_threads = input_file.data.get("n_threads", None) save_report = input_file.data.get("performance_report", False) cluster = ( LocalCluster(processes=True, n_workers=n_workers, threads_per_worker=n_threads) - if (n_workers > 1 or n_threads is not None) + if (n_workers is None or n_workers > 1 or n_threads is not None) else None ) diff --git a/simpeg_drivers/electromagnetics/base_1d_driver.py b/simpeg_drivers/electromagnetics/base_1d_driver.py index 7766f8bb..1cec2aa3 100644 --- a/simpeg_drivers/electromagnetics/base_1d_driver.py +++ b/simpeg_drivers/electromagnetics/base_1d_driver.py @@ -99,6 +99,7 @@ def data_misfit(self): self.params, models=self.models ).build( tiles, + self.split_list, self.inversion_data, self.inversion_mesh, self.topo_z_drape, diff --git a/simpeg_drivers/options.py b/simpeg_drivers/options.py index c530ab1e..f19ad176 100644 --- a/simpeg_drivers/options.py +++ b/simpeg_drivers/options.py @@ -96,6 +96,10 @@ class CoreOptions(BaseData): :param out_group: Output group to save results. :param generate_sweep: Generate sweep file instead of running the app. :param distributed_workers: Distributed workers. + :param n_threads: Number of threads per worker + :param n_workers: Number of distributed workers to use. + :param max_ram: Maximum amount of RAM available + :param performance_report: Generate an HTML report from dask.diagnostics """ # TODO: Refactor to allow frozen True. Currently params.data_object is @@ -127,7 +131,7 @@ class CoreOptions(BaseData): out_group: SimPEGGroup | UIJsonGroup | None = None generate_sweep: bool = False distributed_workers: str | None = None - n_workers: int = 1 + n_workers: int | None = 1 n_threads: int | None = None max_ram: float | None = None performance_report: bool = False From e71838d8098e6c5d932cbb0900db2907cb0f6193 Mon Sep 17 00:00:00 2001 From: dominiquef Date: Sun, 20 Apr 2025 23:03:26 -0700 Subject: [PATCH 12/20] Special split for 1d em --- simpeg_drivers/electromagnetics/base_1d_driver.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/simpeg_drivers/electromagnetics/base_1d_driver.py b/simpeg_drivers/electromagnetics/base_1d_driver.py index 1cec2aa3..d5f0db8b 100644 --- a/simpeg_drivers/electromagnetics/base_1d_driver.py +++ b/simpeg_drivers/electromagnetics/base_1d_driver.py @@ -17,6 +17,7 @@ from discretize import TensorMesh from discretize.utils import mesh_utils from geoh5py import Workspace +from geoh5py.objects import FEMSurvey from geoh5py.shared.merging.drape_model import DrapeModelMerger from geoh5py.ui_json.ui_json import fetch_active_workspace @@ -118,3 +119,15 @@ def data_misfit(self): self.distributed_misfits() return self._data_misfit + + @property + def split_list(self): + """ + Split the list of data into chunks for parallel processing. + """ + n_misfits = len(self.inversion_data.indices) + + if isinstance(self.params.data_object, FEMSurvey): + n_misfits *= len(self.params.data_object.channels) + + return [1] * n_misfits From 94ed0bfd3718ed3ce2a674f9fa11a3f118278de0 Mon Sep 17 00:00:00 2001 From: dominiquef Date: Mon, 21 Apr 2025 09:09:06 -0700 Subject: [PATCH 13/20] Remove comments --- simpeg_drivers/components/factories/misfit_factory.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/simpeg_drivers/components/factories/misfit_factory.py b/simpeg_drivers/components/factories/misfit_factory.py index 527c5ccc..0caabc77 100644 --- a/simpeg_drivers/components/factories/misfit_factory.py +++ b/simpeg_drivers/components/factories/misfit_factory.py @@ -132,16 +132,6 @@ def assemble_arguments( # pylint: disable=arguments-differ local_sim.sigma = proj * mapping * self.models.conductivity - # TODO add option to export tile meshes - # from octree_creation_app.utils import treemesh_2_octree - # from geoh5py.shared.utils import fetch_active_workspace - # - # with fetch_active_workspace(self.params.geoh5) as ws: - # treemesh_2_octree(ws, local_sim.mesh) - - # TODO Parse workers to simulations - # local_sim.workers = self.params.distributed_workers - simulation = meta.MetaSimulation( simulations=[local_sim], mappings=[mapping] ) From 51768fbf7a36205cbc391450507466b4ba946d50 Mon Sep 17 00:00:00 2001 From: dominiquef Date: Mon, 21 Apr 2025 10:50:56 -0700 Subject: [PATCH 14/20] Replace print with logger --- simpeg_drivers/driver.py | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/simpeg_drivers/driver.py b/simpeg_drivers/driver.py index cecaef84..326dc7eb 100644 --- a/simpeg_drivers/driver.py +++ b/simpeg_drivers/driver.py @@ -157,7 +157,7 @@ def data_misfit(self): # Tile locations tiles = self.get_tiles() - print(f"Setting up {len(tiles)} tile(s) . . .") + self.logger.write(f"Setting up {len(tiles)} tile(s) . . .\n") # Build tiled misfits and combine to form global misfit self._data_misfit, self._sorting, self._ordering = MisfitFactory( self.params, models=self.models @@ -168,14 +168,16 @@ def data_misfit(self): self.inversion_mesh, self.models.active_cells, ) - print("Done.") - + self.logger.write("Saving data to file...\n") self.inversion_data.save_data() self._data_misfit.multipliers = np.asarray( self._data_misfit.multipliers, dtype=float ) if self.client: + self.logger.write( + "Broadcasting simulations to distributed workers...\n" + ) self.distributed_misfits() return self._data_misfit @@ -395,7 +397,7 @@ def run(self): predicted = None try: if self.params.forward_only: - print("Running the forward simulation ...") + self.logger.write("Running the forward simulation ...\n") predicted = simpeg_inversion.invProb.get_dpred( self.models.starting, None ) @@ -449,13 +451,13 @@ def start_inversion_message(self): else: data_count = self.inversion_data.n_data - print( + self.logger.write( f"Target Misfit: {self.params.chi_factor * data_count:.2e} ({data_count} data " - f"with chifact = {self.params.chi_factor})" + f"with chifact = {self.params.chi_factor})\n" ) - print( + self.logger.write( f"IRLS Start Misfit: {chi_start * data_count:.2e} ({data_count} data " - f"with chifact = {chi_start})" + f"with chifact = {chi_start})\n" ) @property From fbe156ea924547dbf723dce5d3d8dafe8a93a079 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Hensgen?= Date: Fri, 25 Apr 2025 12:14:44 -0400 Subject: [PATCH 15/20] [GEOPY-2137] move position of max_ram entry in ui.json for consistency --- .../uijson/direct_current_batch2d_inversion.ui.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ed3ed085..b4497386 100644 --- a/simpeg_drivers-assets/uijson/direct_current_batch2d_inversion.ui.json +++ b/simpeg_drivers-assets/uijson/direct_current_batch2d_inversion.ui.json @@ -523,7 +523,6 @@ "tooltip": "Use disk on a fast local SSD, and RAM elsewhere", "value": "ram" }, - "max_ram": "", "max_chunk_size": { "min": 0, "group": "Compute", @@ -567,5 +566,6 @@ "distributed_workers": "", "n_workers": "", "n_threads": "", + "max_ram": "", "performance_report": "" } From bb89405699da07507bc979f6172ceb3d2f540109 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Hensgen?= Date: Fri, 25 Apr 2025 12:15:39 -0400 Subject: [PATCH 16/20] [GEOPY-2137] relock conda env on simpeg v0.23.0.1a3 --- .../py-3.10-linux-64-dev.conda.lock.yml | 46 +- environments/py-3.10-linux-64.conda.lock.yml | 36 +- .../py-3.10-win-64-dev.conda.lock.yml | 44 +- environments/py-3.10-win-64.conda.lock.yml | 34 +- .../py-3.11-linux-64-dev.conda.lock.yml | 46 +- environments/py-3.11-linux-64.conda.lock.yml | 36 +- .../py-3.11-win-64-dev.conda.lock.yml | 44 +- environments/py-3.11-win-64.conda.lock.yml | 34 +- .../py-3.12-linux-64-dev.conda.lock.yml | 46 +- environments/py-3.12-linux-64.conda.lock.yml | 36 +- .../py-3.12-win-64-dev.conda.lock.yml | 44 +- environments/py-3.12-win-64.conda.lock.yml | 34 +- py-3.10.conda-lock.yml | 397 +++++++++------- py-3.11.conda-lock.yml | 429 ++++++++++-------- py-3.12.conda-lock.yml | 429 ++++++++++-------- pyproject.toml | 4 +- recipe.yaml | 2 +- 17 files changed, 965 insertions(+), 776 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 1403c152..1ff53ea6 100644 --- a/environments/py-3.10-linux-64-dev.conda.lock.yml +++ b/environments/py-3.10-linux-64-dev.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 786f21c248833646f6ecbdad8c0a52609fa162238698d09693a88e0055df2fc3 +# input_hash: 6792419f707082db0392c7c66ae972128d5c2dcf3407d75de33f30b4e4f1e33d channels: - conda-forge @@ -29,7 +29,7 @@ dependencies: - brotli-python=1.1.0=py310hf71b8c6_2 - bzip2=1.0.8=h4bc722e_7 - c-ares=1.34.5=hb9d3cd8_0 - - ca-certificates=2025.1.31=hbcca054_0 + - ca-certificates=2025.1.31=hbd8a1cb_1 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - certifi=2025.1.31=pyhd8ed1ab_0 @@ -53,14 +53,14 @@ dependencies: - distributed=2025.3.0=pyhd8ed1ab_0 - docutils=0.19=py310hff52083_1 - exceptiongroup=1.2.2=pyhd8ed1ab_1 - - executing=2.1.0=pyhd8ed1ab_1 + - executing=2.2.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - fonttools=4.57.0=py310h89163eb_0 - fqdn=1.5.1=pyhd8ed1ab_1 - - freetype=2.13.3=h48d6fc4_0 + - freetype=2.13.3=ha770c72_1 - fsspec=2025.3.2=pyhd8ed1ab_0 - geoana=0.7.2=py310ha2bacc8_0 - - greenlet=3.2.0=py310hf71b8c6_0 + - greenlet=3.2.1=py310hf71b8c6_0 - h11=0.14.0=pyhd8ed1ab_1 - h2=4.2.0=pyhd8ed1ab_0 - h5py=3.13.0=nompi_py310h60e0fe6_100 @@ -87,7 +87,7 @@ dependencies: - json5=0.12.0=pyhd8ed1ab_0 - jsonpointer=3.0.0=py310hff52083_1 - jsonschema=4.23.0=pyhd8ed1ab_1 - - jsonschema-specifications=2024.10.1=pyhd8ed1ab_1 + - jsonschema-specifications=2025.4.1=pyh29332c3_0 - jsonschema-with-format-nongpl=4.23.0=hd8ed1ab_1 - jupyter-book=1.0.3=pyhd8ed1ab_1 - jupyter-cache=1.0.1=pyhff2d567_0 @@ -97,7 +97,7 @@ dependencies: - jupyter_events=0.12.0=pyh29332c3_0 - jupyter_server=2.15.0=pyhd8ed1ab_0 - jupyter_server_terminals=0.5.3=pyhd8ed1ab_1 - - jupyterlab=4.4.0=pyhd8ed1ab_0 + - jupyterlab=4.4.1=pyhd8ed1ab_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_2 - jupyterlab_server=2.27.3=pyhd8ed1ab_1 - jupyterlab_widgets=1.1.11=pyhd8ed1ab_0 @@ -108,7 +108,7 @@ dependencies: - latexcodec=2.0.1=pyh9f0ad1d_0 - lcms2=2.17=h717163a_0 - ld_impl_linux-64=2.43=h712a8e2_4 - - lerc=4.0.0=h27087fc_0 + - lerc=4.0.0=h0aef613_1 - libaec=1.1.3=h59595ed_0 - libblas=3.9.0=31_hfdb39a5_mkl - libbrotlicommon=1.1.0=hb9d3cd8_2 @@ -116,19 +116,21 @@ dependencies: - libbrotlienc=1.1.0=hb9d3cd8_2 - libcblas=3.9.0=31_h372d94f_mkl - libcurl=8.13.0=h332b0f4_0 - - libdeflate=1.23=h4ddbbb0_0 + - libdeflate=1.23=h86f0d12_0 - libdlf=0.3.0=pyhd8ed1ab_1 - libedit=3.1.20250104=pl5321h7949ede_0 - libev=4.33=hd590300_2 - libexpat=2.7.0=h5888daf_0 - libffi=3.4.6=h2dba641_1 + - libfreetype=2.13.3=ha770c72_1 + - libfreetype6=2.13.3=h48d6fc4_1 - libgcc=14.2.0=h767d61c_2 - libgcc-ng=14.2.0=h69a702a_2 - libgfortran=14.2.0=h69a702a_2 - libgfortran5=14.2.0=hf1ad2bd_2 - libhwloc=2.11.2=default_h0d58e46_1001 - libiconv=1.18=h4ce23a2_1 - - libjpeg-turbo=3.0.0=hd590300_1 + - libjpeg-turbo=3.1.0=hb9d3cd8_0 - liblapack=3.9.0=31_hc41d3b0_mkl - liblzma=5.8.1=hb9d3cd8_0 - libnghttp2=1.64.0=h161d5f1_0 @@ -140,7 +142,7 @@ dependencies: - libssh2=1.11.1=hf672d98_0 - libstdcxx=14.2.0=h8f9b012_2 - libstdcxx-ng=14.2.0=h4852527_2 - - libtiff=4.7.0=hd9ff511_3 + - libtiff=4.7.0=hd9ff511_4 - libuuid=2.38.1=h0b41bf4_0 - libwebp-base=1.5.0=h851e524_0 - libxcb=1.17.0=h8a09558_0 @@ -161,8 +163,8 @@ dependencies: - mistune=3.1.3=pyh29332c3_0 - mkl=2024.2.2=ha957f24_16 - msgpack-python=1.1.0=py310h3788b33_0 - - mumps-include=5.7.3=h82cca05_9 - - mumps-seq=5.7.3=hb5d91fa_9 + - mumps-include=5.7.3=h82cca05_10 + - mumps-seq=5.7.3=h06cbf8f_10 - munkres=1.1.4=pyh9f0ad1d_0 - myst-nb=1.2.0=pyh29332c3_0 - myst-parser=1.0.0=pyhd8ed1ab_0 @@ -173,14 +175,14 @@ dependencies: - nbformat=5.10.4=pyhd8ed1ab_1 - ncurses=6.5=h2d0b736_3 - nest-asyncio=1.6.0=pyhd8ed1ab_1 - - notebook=7.4.0=pyhd8ed1ab_0 + - notebook=7.4.1=pyhd8ed1ab_0 - notebook-shim=0.2.4=pyhd8ed1ab_1 - numcodecs=0.13.1=py310h5eaa309_0 - numpy=1.26.4=py310hb13e2d6_0 - openjpeg=2.5.3=h5fbd93e_0 - openssl=3.5.0=h7b32b05_0 - overrides=7.7.0=pyhd8ed1ab_1 - - packaging=25.0=pyhd8ed1ab_0 + - packaging=25.0=pyh29332c3_1 - pandas=2.2.3=py310h5eaa309_3 - pandoc=3.6.4=ha770c72_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 @@ -219,7 +221,7 @@ dependencies: - python-json-logger=2.0.7=pyhd8ed1ab_0 - python-mumps=0.0.3=py310h6410a28_0 - python-tzdata=2025.2=pyhd8ed1ab_0 - - python_abi=3.10=6_cp310 + - python_abi=3.10=7_cp310 - pytz=2025.2=pyhd8ed1ab_0 - pyyaml=6.0.2=py310h89163eb_2 - pyzmq=26.4.0=py310h71f11fc_0 @@ -233,7 +235,7 @@ dependencies: - scikit-learn=1.4.2=py310h981052a_1 - scipy=1.14.1=py310hfcf56fc_2 - send2trash=1.8.3=pyh0d859eb_1 - - setuptools=78.1.1=pyhff2d567_0 + - setuptools=79.0.1=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - sniffio=1.3.1=pyhd8ed1ab_1 - snowballstemmer=2.2.0=pyhd8ed1ab_0 @@ -299,11 +301,11 @@ dependencies: - zstandard=0.23.0=py310ha75aee5_1 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils == 0.5.0a3 - - geoh5py == 0.11.0a4 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@730fa00953165f6fd5a87c3942d05cf8e0a7e164 - - octree-creation-app == 0.3.0a2 - - param-sweeps == 0.2.1a1 + - geoapps-utils == 0.5.0a3 --hash=sha256:a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c + - geoh5py == 0.11.0a4 --hash=sha256:4965e934b1e57460f98f76f96eca100abf48fd722245154c35af86e7ecbc10a6 + - mira-simpeg == 0.23.0.1a3 --hash=sha256:14467e65d801e082bac8a4d972a30b162018df27d06310fb1f2c6960968f88d2 + - octree-creation-app == 0.3.0a2 --hash=sha256:002896126bf5a958aad1bb9c0a272bfd3c6985d1456dc8022c4e07b5582730ff + - param-sweeps == 0.2.1a1 --hash=sha256:777618dd6eef4b6e86b4976e01c29bb202abb9d295b0774baeabf7534fb9389c variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.10-linux-64.conda.lock.yml b/environments/py-3.10-linux-64.conda.lock.yml index 789daddd..60ee9a59 100644 --- a/environments/py-3.10-linux-64.conda.lock.yml +++ b/environments/py-3.10-linux-64.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 786f21c248833646f6ecbdad8c0a52609fa162238698d09693a88e0055df2fc3 +# input_hash: 6792419f707082db0392c7c66ae972128d5c2dcf3407d75de33f30b4e4f1e33d channels: - conda-forge @@ -15,7 +15,7 @@ dependencies: - brotli-python=1.1.0=py310hf71b8c6_2 - bzip2=1.0.8=h4bc722e_7 - c-ares=1.34.5=hb9d3cd8_0 - - ca-certificates=2025.1.31=hbcca054_0 + - ca-certificates=2025.1.31=hbd8a1cb_1 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - certifi=2025.1.31=pyhd8ed1ab_0 @@ -31,7 +31,7 @@ dependencies: - distributed=2025.3.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - fonttools=4.57.0=py310h89163eb_0 - - freetype=2.13.3=h48d6fc4_0 + - freetype=2.13.3=ha770c72_1 - fsspec=2025.3.2=pyhd8ed1ab_0 - geoana=0.7.2=py310ha2bacc8_0 - h2=4.2.0=pyhd8ed1ab_0 @@ -47,7 +47,7 @@ dependencies: - krb5=1.21.3=h659f571_0 - lcms2=2.17=h717163a_0 - ld_impl_linux-64=2.43=h712a8e2_4 - - lerc=4.0.0=h27087fc_0 + - lerc=4.0.0=h0aef613_1 - libaec=1.1.3=h59595ed_0 - libblas=3.9.0=31_hfdb39a5_mkl - libbrotlicommon=1.1.0=hb9d3cd8_2 @@ -55,19 +55,21 @@ dependencies: - libbrotlienc=1.1.0=hb9d3cd8_2 - libcblas=3.9.0=31_h372d94f_mkl - libcurl=8.13.0=h332b0f4_0 - - libdeflate=1.23=h4ddbbb0_0 + - libdeflate=1.23=h86f0d12_0 - libdlf=0.3.0=pyhd8ed1ab_1 - libedit=3.1.20250104=pl5321h7949ede_0 - libev=4.33=hd590300_2 - libexpat=2.7.0=h5888daf_0 - libffi=3.4.6=h2dba641_1 + - libfreetype=2.13.3=ha770c72_1 + - libfreetype6=2.13.3=h48d6fc4_1 - libgcc=14.2.0=h767d61c_2 - libgcc-ng=14.2.0=h69a702a_2 - libgfortran=14.2.0=h69a702a_2 - libgfortran5=14.2.0=hf1ad2bd_2 - libhwloc=2.11.2=default_h0d58e46_1001 - libiconv=1.18=h4ce23a2_1 - - libjpeg-turbo=3.0.0=hd590300_1 + - libjpeg-turbo=3.1.0=hb9d3cd8_0 - liblapack=3.9.0=31_hc41d3b0_mkl - liblzma=5.8.1=hb9d3cd8_0 - libnghttp2=1.64.0=h161d5f1_0 @@ -78,7 +80,7 @@ dependencies: - libssh2=1.11.1=hf672d98_0 - libstdcxx=14.2.0=h8f9b012_2 - libstdcxx-ng=14.2.0=h4852527_2 - - libtiff=4.7.0=hd9ff511_3 + - libtiff=4.7.0=hd9ff511_4 - libuuid=2.38.1=h0b41bf4_0 - libwebp-base=1.5.0=h851e524_0 - libxcb=1.17.0=h8a09558_0 @@ -92,15 +94,15 @@ dependencies: - metis=5.1.0=hd0bcaf9_1007 - mkl=2024.2.2=ha957f24_16 - msgpack-python=1.1.0=py310h3788b33_0 - - mumps-include=5.7.3=h82cca05_9 - - mumps-seq=5.7.3=hb5d91fa_9 + - mumps-include=5.7.3=h82cca05_10 + - mumps-seq=5.7.3=h06cbf8f_10 - munkres=1.1.4=pyh9f0ad1d_0 - ncurses=6.5=h2d0b736_3 - numcodecs=0.13.1=py310h5eaa309_0 - numpy=1.26.4=py310hb13e2d6_0 - openjpeg=2.5.3=h5fbd93e_0 - openssl=3.5.0=h7b32b05_0 - - packaging=25.0=pyhd8ed1ab_0 + - packaging=25.0=pyh29332c3_1 - pandas=2.2.3=py310h5eaa309_3 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py310hebfe307_1 @@ -118,13 +120,13 @@ dependencies: - python-dateutil=2.9.0.post0=pyhff2d567_1 - python-mumps=0.0.3=py310h6410a28_0 - python-tzdata=2025.2=pyhd8ed1ab_0 - - python_abi=3.10=6_cp310 + - python_abi=3.10=7_cp310 - pytz=2025.2=pyhd8ed1ab_0 - pyyaml=6.0.2=py310h89163eb_2 - readline=8.2=h8c095d6_2 - scikit-learn=1.4.2=py310h981052a_1 - scipy=1.14.1=py310hfcf56fc_2 - - setuptools=78.1.1=pyhff2d567_0 + - setuptools=79.0.1=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - tbb=2021.13.0=hceb3a55_1 @@ -151,11 +153,11 @@ dependencies: - zstandard=0.23.0=py310ha75aee5_1 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils == 0.5.0a3 - - geoh5py == 0.11.0a4 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@730fa00953165f6fd5a87c3942d05cf8e0a7e164 - - octree-creation-app == 0.3.0a2 - - param-sweeps == 0.2.1a1 + - geoapps-utils == 0.5.0a3 --hash=sha256:a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c + - geoh5py == 0.11.0a4 --hash=sha256:4965e934b1e57460f98f76f96eca100abf48fd722245154c35af86e7ecbc10a6 + - mira-simpeg == 0.23.0.1a3 --hash=sha256:14467e65d801e082bac8a4d972a30b162018df27d06310fb1f2c6960968f88d2 + - octree-creation-app == 0.3.0a2 --hash=sha256:002896126bf5a958aad1bb9c0a272bfd3c6985d1456dc8022c4e07b5582730ff + - param-sweeps == 0.2.1a1 --hash=sha256:777618dd6eef4b6e86b4976e01c29bb202abb9d295b0774baeabf7534fb9389c variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.10-win-64-dev.conda.lock.yml b/environments/py-3.10-win-64-dev.conda.lock.yml index d5eeb828..fb57f7dd 100644 --- a/environments/py-3.10-win-64-dev.conda.lock.yml +++ b/environments/py-3.10-win-64-dev.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: e1a8f401cfc4677a5d0a5b1bfd8b2b391bfc5eaccab239b55c1974599d111e83 +# input_hash: 781e879b367bd7fe9ea047150af7fd0aadd7c5d20d87da004e52727950042707 channels: - conda-forge @@ -28,7 +28,7 @@ dependencies: - brotli-bin=1.1.0=h2466b09_2 - brotli-python=1.1.0=py310h9e98ed7_2 - bzip2=1.0.8=h2466b09_7 - - ca-certificates=2025.1.31=h56e8100_0 + - ca-certificates=2025.1.31=h4c7d964_1 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - certifi=2025.1.31=pyhd8ed1ab_0 @@ -53,14 +53,14 @@ dependencies: - distributed=2025.3.0=pyhd8ed1ab_0 - docutils=0.19=py310h5588dad_1 - exceptiongroup=1.2.2=pyhd8ed1ab_1 - - executing=2.1.0=pyhd8ed1ab_1 + - executing=2.2.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - fonttools=4.57.0=py310h38315fa_0 - fqdn=1.5.1=pyhd8ed1ab_1 - - freetype=2.13.3=h0b5ce68_0 + - freetype=2.13.3=h57928b3_1 - fsspec=2025.3.2=pyhd8ed1ab_0 - geoana=0.7.2=py310h3e8ed56_0 - - greenlet=3.2.0=py310h9e98ed7_0 + - greenlet=3.2.1=py310h9e98ed7_0 - h11=0.14.0=pyhd8ed1ab_1 - h2=4.2.0=pyhd8ed1ab_0 - h5py=3.13.0=nompi_py310h2b0be38_100 @@ -88,7 +88,7 @@ dependencies: - json5=0.12.0=pyhd8ed1ab_0 - jsonpointer=3.0.0=py310h5588dad_1 - jsonschema=4.23.0=pyhd8ed1ab_1 - - jsonschema-specifications=2024.10.1=pyhd8ed1ab_1 + - jsonschema-specifications=2025.4.1=pyh29332c3_0 - jsonschema-with-format-nongpl=4.23.0=hd8ed1ab_1 - jupyter-book=1.0.3=pyhd8ed1ab_1 - jupyter-cache=1.0.1=pyhff2d567_0 @@ -98,7 +98,7 @@ dependencies: - jupyter_events=0.12.0=pyh29332c3_0 - jupyter_server=2.15.0=pyhd8ed1ab_0 - jupyter_server_terminals=0.5.3=pyhd8ed1ab_1 - - jupyterlab=4.4.0=pyhd8ed1ab_0 + - jupyterlab=4.4.1=pyhd8ed1ab_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_2 - jupyterlab_server=2.27.3=pyhd8ed1ab_1 - jupyterlab_widgets=1.1.11=pyhd8ed1ab_0 @@ -107,7 +107,7 @@ dependencies: - krb5=1.21.3=hdf4eb48_0 - latexcodec=2.0.1=pyh9f0ad1d_0 - lcms2=2.17=hbcf6048_0 - - lerc=4.0.0=h63175ca_0 + - lerc=4.0.0=h6470a55_1 - libaec=1.1.3=h63175ca_0 - libblas=3.9.0=31_h641d27c_mkl - libbrotlicommon=1.1.0=h2466b09_2 @@ -115,22 +115,24 @@ dependencies: - libbrotlienc=1.1.0=h2466b09_2 - libcblas=3.9.0=31_h5e41251_mkl - libcurl=8.13.0=h88aaa65_0 - - libdeflate=1.23=h9062f6e_0 + - libdeflate=1.23=h76ddb4d_0 - libdlf=0.3.0=pyhd8ed1ab_1 - libexpat=2.7.0=he0c23c2_0 - libffi=3.4.6=h537db12_1 + - libfreetype=2.13.3=h57928b3_1 + - libfreetype6=2.13.3=h0b5ce68_1 - libgcc=14.2.0=h1383e82_2 - libgomp=14.2.0=h1383e82_2 - libhwloc=2.11.2=default_ha69328c_1001 - libiconv=1.18=h135ad9c_1 - - libjpeg-turbo=3.0.0=hcfcfb64_1 + - libjpeg-turbo=3.1.0=h2466b09_0 - liblapack=3.9.0=31_h1aa476e_mkl - liblzma=5.8.1=h2466b09_0 - libpng=1.6.47=had7236b_0 - libsodium=1.0.20=hc70643c_0 - libsqlite=3.49.1=h67fdade_2 - libssh2=1.11.1=he619c9f_0 - - libtiff=4.7.0=h797046b_3 + - libtiff=4.7.0=h797046b_4 - libwebp-base=1.5.0=h3b0e114_0 - libwinpthread=12.0.0.r4.gg4f2fc60ca=h57928b3_9 - libxcb=1.17.0=h0e4246c_0 @@ -149,7 +151,7 @@ dependencies: - mistune=3.1.3=pyh29332c3_0 - mkl=2024.2.2=h66d3029_15 - msgpack-python=1.1.0=py310hc19bc0b_0 - - mumps-seq=5.7.3=hbaa6519_9 + - mumps-seq=5.7.3=hbaa6519_10 - munkres=1.1.4=pyh9f0ad1d_0 - myst-nb=1.2.0=pyh29332c3_0 - myst-parser=1.0.0=pyhd8ed1ab_0 @@ -159,14 +161,14 @@ dependencies: - nbconvert-pandoc=7.16.6=hed9df3c_0 - nbformat=5.10.4=pyhd8ed1ab_1 - nest-asyncio=1.6.0=pyhd8ed1ab_1 - - notebook=7.4.0=pyhd8ed1ab_0 + - notebook=7.4.1=pyhd8ed1ab_0 - notebook-shim=0.2.4=pyhd8ed1ab_1 - numcodecs=0.13.1=py310hb4db72f_0 - numpy=1.26.4=py310hf667824_0 - openjpeg=2.5.3=h4d64b90_0 - openssl=3.5.0=ha4e3fda_0 - overrides=7.7.0=pyhd8ed1ab_1 - - packaging=25.0=pyhd8ed1ab_0 + - packaging=25.0=pyh29332c3_1 - pandas=2.2.3=py310hb4db72f_3 - pandoc=3.6.4=h57928b3_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 @@ -203,7 +205,7 @@ dependencies: - python-json-logger=2.0.7=pyhd8ed1ab_0 - python-mumps=0.0.3=py310hb64895d_0 - python-tzdata=2025.2=pyhd8ed1ab_0 - - python_abi=3.10=6_cp310 + - python_abi=3.10=7_cp310 - pytz=2025.2=pyhd8ed1ab_0 - pywin32=307=py310h9e98ed7_3 - pywinpty=2.0.15=py310h9e98ed7_0 @@ -218,7 +220,7 @@ dependencies: - scikit-learn=1.4.2=py310hf2a6c47_1 - scipy=1.14.1=py310hbd0dde3_2 - send2trash=1.8.3=pyh5737063_1 - - setuptools=78.1.1=pyhff2d567_0 + - setuptools=79.0.1=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - sniffio=1.3.1=pyhd8ed1ab_1 - snowballstemmer=2.2.0=pyhd8ed1ab_0 @@ -290,11 +292,11 @@ dependencies: - zstandard=0.23.0=py310ha8f682b_1 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils == 0.5.0a3 - - geoh5py == 0.11.0a4 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@730fa00953165f6fd5a87c3942d05cf8e0a7e164 - - octree-creation-app == 0.3.0a2 - - param-sweeps == 0.2.1a1 + - geoapps-utils == 0.5.0a3 --hash=sha256:a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c + - geoh5py == 0.11.0a4 --hash=sha256:4965e934b1e57460f98f76f96eca100abf48fd722245154c35af86e7ecbc10a6 + - mira-simpeg == 0.23.0.1a3 --hash=sha256:14467e65d801e082bac8a4d972a30b162018df27d06310fb1f2c6960968f88d2 + - octree-creation-app == 0.3.0a2 --hash=sha256:002896126bf5a958aad1bb9c0a272bfd3c6985d1456dc8022c4e07b5582730ff + - param-sweeps == 0.2.1a1 --hash=sha256:777618dd6eef4b6e86b4976e01c29bb202abb9d295b0774baeabf7534fb9389c variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.10-win-64.conda.lock.yml b/environments/py-3.10-win-64.conda.lock.yml index 06d5efc9..f5afda40 100644 --- a/environments/py-3.10-win-64.conda.lock.yml +++ b/environments/py-3.10-win-64.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: e1a8f401cfc4677a5d0a5b1bfd8b2b391bfc5eaccab239b55c1974599d111e83 +# input_hash: 781e879b367bd7fe9ea047150af7fd0aadd7c5d20d87da004e52727950042707 channels: - conda-forge @@ -14,7 +14,7 @@ dependencies: - brotli-bin=1.1.0=h2466b09_2 - brotli-python=1.1.0=py310h9e98ed7_2 - bzip2=1.0.8=h2466b09_7 - - ca-certificates=2025.1.31=h56e8100_0 + - ca-certificates=2025.1.31=h4c7d964_1 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - certifi=2025.1.31=pyhd8ed1ab_0 @@ -30,7 +30,7 @@ dependencies: - distributed=2025.3.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - fonttools=4.57.0=py310h38315fa_0 - - freetype=2.13.3=h0b5ce68_0 + - freetype=2.13.3=h57928b3_1 - fsspec=2025.3.2=pyhd8ed1ab_0 - geoana=0.7.2=py310h3e8ed56_0 - h2=4.2.0=pyhd8ed1ab_0 @@ -45,7 +45,7 @@ dependencies: - kiwisolver=1.4.7=py310hc19bc0b_0 - krb5=1.21.3=hdf4eb48_0 - lcms2=2.17=hbcf6048_0 - - lerc=4.0.0=h63175ca_0 + - lerc=4.0.0=h6470a55_1 - libaec=1.1.3=h63175ca_0 - libblas=3.9.0=31_h641d27c_mkl - libbrotlicommon=1.1.0=h2466b09_2 @@ -53,21 +53,23 @@ dependencies: - libbrotlienc=1.1.0=h2466b09_2 - libcblas=3.9.0=31_h5e41251_mkl - libcurl=8.13.0=h88aaa65_0 - - libdeflate=1.23=h9062f6e_0 + - libdeflate=1.23=h76ddb4d_0 - libdlf=0.3.0=pyhd8ed1ab_1 - libexpat=2.7.0=he0c23c2_0 - libffi=3.4.6=h537db12_1 + - libfreetype=2.13.3=h57928b3_1 + - libfreetype6=2.13.3=h0b5ce68_1 - libgcc=14.2.0=h1383e82_2 - libgomp=14.2.0=h1383e82_2 - libhwloc=2.11.2=default_ha69328c_1001 - libiconv=1.18=h135ad9c_1 - - libjpeg-turbo=3.0.0=hcfcfb64_1 + - libjpeg-turbo=3.1.0=h2466b09_0 - liblapack=3.9.0=31_h1aa476e_mkl - liblzma=5.8.1=h2466b09_0 - libpng=1.6.47=had7236b_0 - libsqlite=3.49.1=h67fdade_2 - libssh2=1.11.1=he619c9f_0 - - libtiff=4.7.0=h797046b_3 + - libtiff=4.7.0=h797046b_4 - libwebp-base=1.5.0=h3b0e114_0 - libwinpthread=12.0.0.r4.gg4f2fc60ca=h57928b3_9 - libxcb=1.17.0=h0e4246c_0 @@ -79,13 +81,13 @@ dependencies: - matplotlib-base=3.8.4=py310hadb10a8_2 - mkl=2024.2.2=h66d3029_15 - msgpack-python=1.1.0=py310hc19bc0b_0 - - mumps-seq=5.7.3=hbaa6519_9 + - mumps-seq=5.7.3=hbaa6519_10 - munkres=1.1.4=pyh9f0ad1d_0 - numcodecs=0.13.1=py310hb4db72f_0 - numpy=1.26.4=py310hf667824_0 - openjpeg=2.5.3=h4d64b90_0 - openssl=3.5.0=ha4e3fda_0 - - packaging=25.0=pyhd8ed1ab_0 + - packaging=25.0=pyh29332c3_1 - pandas=2.2.3=py310hb4db72f_3 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py310h3e38d90_1 @@ -103,12 +105,12 @@ dependencies: - python-dateutil=2.9.0.post0=pyhff2d567_1 - python-mumps=0.0.3=py310hb64895d_0 - python-tzdata=2025.2=pyhd8ed1ab_0 - - python_abi=3.10=6_cp310 + - python_abi=3.10=7_cp310 - pytz=2025.2=pyhd8ed1ab_0 - pyyaml=6.0.2=py310h38315fa_2 - scikit-learn=1.4.2=py310hf2a6c47_1 - scipy=1.14.1=py310hbd0dde3_2 - - setuptools=78.1.1=pyhff2d567_0 + - setuptools=79.0.1=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - tbb=2021.13.0=h62715c5_1 @@ -140,11 +142,11 @@ dependencies: - zstandard=0.23.0=py310ha8f682b_1 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils == 0.5.0a3 - - geoh5py == 0.11.0a4 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@730fa00953165f6fd5a87c3942d05cf8e0a7e164 - - octree-creation-app == 0.3.0a2 - - param-sweeps == 0.2.1a1 + - geoapps-utils == 0.5.0a3 --hash=sha256:a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c + - geoh5py == 0.11.0a4 --hash=sha256:4965e934b1e57460f98f76f96eca100abf48fd722245154c35af86e7ecbc10a6 + - mira-simpeg == 0.23.0.1a3 --hash=sha256:14467e65d801e082bac8a4d972a30b162018df27d06310fb1f2c6960968f88d2 + - octree-creation-app == 0.3.0a2 --hash=sha256:002896126bf5a958aad1bb9c0a272bfd3c6985d1456dc8022c4e07b5582730ff + - param-sweeps == 0.2.1a1 --hash=sha256:777618dd6eef4b6e86b4976e01c29bb202abb9d295b0774baeabf7534fb9389c variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.11-linux-64-dev.conda.lock.yml b/environments/py-3.11-linux-64-dev.conda.lock.yml index ff3b65cc..50ae8b30 100644 --- a/environments/py-3.11-linux-64-dev.conda.lock.yml +++ b/environments/py-3.11-linux-64-dev.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: cb6665c81a612550aea5a8924b42c6100e242ca0ce8a2e66e9cd64952882efc4 +# input_hash: 54ab3a684de79675ed893a381524115fd11580146bd0276a5f1b889d2229a880 channels: - conda-forge @@ -29,7 +29,7 @@ dependencies: - brotli-python=1.1.0=py311hfdbb021_2 - bzip2=1.0.8=h4bc722e_7 - c-ares=1.34.5=hb9d3cd8_0 - - ca-certificates=2025.1.31=hbcca054_0 + - ca-certificates=2025.1.31=hbd8a1cb_1 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - certifi=2025.1.31=pyhd8ed1ab_0 @@ -54,14 +54,14 @@ dependencies: - distributed=2025.3.0=pyhd8ed1ab_0 - docutils=0.19=py311h38be061_1 - exceptiongroup=1.2.2=pyhd8ed1ab_1 - - executing=2.1.0=pyhd8ed1ab_1 + - executing=2.2.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - fonttools=4.57.0=py311h2dc5d0c_0 - fqdn=1.5.1=pyhd8ed1ab_1 - - freetype=2.13.3=h48d6fc4_0 + - freetype=2.13.3=ha770c72_1 - fsspec=2025.3.2=pyhd8ed1ab_0 - geoana=0.7.2=py311h5b7b71f_0 - - greenlet=3.2.0=py311hfdbb021_0 + - greenlet=3.2.1=py311hfdbb021_0 - h11=0.14.0=pyhd8ed1ab_1 - h2=4.2.0=pyhd8ed1ab_0 - h5py=3.13.0=nompi_py311hb639ac4_100 @@ -89,7 +89,7 @@ dependencies: - json5=0.12.0=pyhd8ed1ab_0 - jsonpointer=3.0.0=py311h38be061_1 - jsonschema=4.23.0=pyhd8ed1ab_1 - - jsonschema-specifications=2024.10.1=pyhd8ed1ab_1 + - jsonschema-specifications=2025.4.1=pyh29332c3_0 - jsonschema-with-format-nongpl=4.23.0=hd8ed1ab_1 - jupyter-book=1.0.3=pyhd8ed1ab_1 - jupyter-cache=1.0.1=pyhff2d567_0 @@ -99,7 +99,7 @@ dependencies: - jupyter_events=0.12.0=pyh29332c3_0 - jupyter_server=2.15.0=pyhd8ed1ab_0 - jupyter_server_terminals=0.5.3=pyhd8ed1ab_1 - - jupyterlab=4.4.0=pyhd8ed1ab_0 + - jupyterlab=4.4.1=pyhd8ed1ab_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_2 - jupyterlab_server=2.27.3=pyhd8ed1ab_1 - jupyterlab_widgets=1.1.11=pyhd8ed1ab_0 @@ -110,7 +110,7 @@ dependencies: - latexcodec=2.0.1=pyh9f0ad1d_0 - lcms2=2.17=h717163a_0 - ld_impl_linux-64=2.43=h712a8e2_4 - - lerc=4.0.0=h27087fc_0 + - lerc=4.0.0=h0aef613_1 - libaec=1.1.3=h59595ed_0 - libblas=3.9.0=31_hfdb39a5_mkl - libbrotlicommon=1.1.0=hb9d3cd8_2 @@ -118,19 +118,21 @@ dependencies: - libbrotlienc=1.1.0=hb9d3cd8_2 - libcblas=3.9.0=31_h372d94f_mkl - libcurl=8.13.0=h332b0f4_0 - - libdeflate=1.23=h4ddbbb0_0 + - libdeflate=1.23=h86f0d12_0 - libdlf=0.3.0=pyhd8ed1ab_1 - libedit=3.1.20250104=pl5321h7949ede_0 - libev=4.33=hd590300_2 - libexpat=2.7.0=h5888daf_0 - libffi=3.4.6=h2dba641_1 + - libfreetype=2.13.3=ha770c72_1 + - libfreetype6=2.13.3=h48d6fc4_1 - libgcc=14.2.0=h767d61c_2 - libgcc-ng=14.2.0=h69a702a_2 - libgfortran=14.2.0=h69a702a_2 - libgfortran5=14.2.0=hf1ad2bd_2 - libhwloc=2.11.2=default_h0d58e46_1001 - libiconv=1.18=h4ce23a2_1 - - libjpeg-turbo=3.0.0=hd590300_1 + - libjpeg-turbo=3.1.0=hb9d3cd8_0 - liblapack=3.9.0=31_hc41d3b0_mkl - liblzma=5.8.1=hb9d3cd8_0 - libnghttp2=1.64.0=h161d5f1_0 @@ -142,7 +144,7 @@ dependencies: - libssh2=1.11.1=hf672d98_0 - libstdcxx=14.2.0=h8f9b012_2 - libstdcxx-ng=14.2.0=h4852527_2 - - libtiff=4.7.0=hd9ff511_3 + - libtiff=4.7.0=hd9ff511_4 - libuuid=2.38.1=h0b41bf4_0 - libwebp-base=1.5.0=h851e524_0 - libxcb=1.17.0=h8a09558_0 @@ -163,8 +165,8 @@ dependencies: - mistune=3.1.3=pyh29332c3_0 - mkl=2024.2.2=ha957f24_16 - msgpack-python=1.1.0=py311hd18a35c_0 - - mumps-include=5.7.3=h82cca05_9 - - mumps-seq=5.7.3=hb5d91fa_9 + - mumps-include=5.7.3=h82cca05_10 + - mumps-seq=5.7.3=h06cbf8f_10 - munkres=1.1.4=pyh9f0ad1d_0 - myst-nb=1.2.0=pyh29332c3_0 - myst-parser=1.0.0=pyhd8ed1ab_0 @@ -175,14 +177,14 @@ dependencies: - nbformat=5.10.4=pyhd8ed1ab_1 - ncurses=6.5=h2d0b736_3 - nest-asyncio=1.6.0=pyhd8ed1ab_1 - - notebook=7.4.0=pyhd8ed1ab_0 + - notebook=7.4.1=pyhd8ed1ab_0 - notebook-shim=0.2.4=pyhd8ed1ab_1 - numcodecs=0.15.1=py311h7db5c69_0 - numpy=1.26.4=py311h64a7726_0 - openjpeg=2.5.3=h5fbd93e_0 - openssl=3.5.0=h7b32b05_0 - overrides=7.7.0=pyhd8ed1ab_1 - - packaging=25.0=pyhd8ed1ab_0 + - packaging=25.0=pyh29332c3_1 - pandas=2.2.3=py311h7db5c69_3 - pandoc=3.6.4=ha770c72_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 @@ -221,7 +223,7 @@ dependencies: - python-json-logger=2.0.7=pyhd8ed1ab_0 - python-mumps=0.0.3=py311h4b558b0_0 - python-tzdata=2025.2=pyhd8ed1ab_0 - - python_abi=3.11=6_cp311 + - python_abi=3.11=7_cp311 - pytz=2025.2=pyhd8ed1ab_0 - pyyaml=6.0.2=py311h2dc5d0c_2 - pyzmq=26.4.0=py311h7deb3e3_0 @@ -235,7 +237,7 @@ dependencies: - scikit-learn=1.4.2=py311he08f58d_1 - scipy=1.14.1=py311he9a78e4_2 - send2trash=1.8.3=pyh0d859eb_1 - - setuptools=78.1.1=pyhff2d567_0 + - setuptools=79.0.1=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - sniffio=1.3.1=pyhd8ed1ab_1 - snowballstemmer=2.2.0=pyhd8ed1ab_0 @@ -302,11 +304,11 @@ dependencies: - zstandard=0.23.0=py311h9ecbd09_1 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils == 0.5.0a3 - - geoh5py == 0.11.0a4 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@730fa00953165f6fd5a87c3942d05cf8e0a7e164 - - octree-creation-app == 0.3.0a2 - - param-sweeps == 0.2.1a1 + - geoapps-utils == 0.5.0a3 --hash=sha256:a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c + - geoh5py == 0.11.0a4 --hash=sha256:4965e934b1e57460f98f76f96eca100abf48fd722245154c35af86e7ecbc10a6 + - mira-simpeg == 0.23.0.1a3 --hash=sha256:14467e65d801e082bac8a4d972a30b162018df27d06310fb1f2c6960968f88d2 + - octree-creation-app == 0.3.0a2 --hash=sha256:002896126bf5a958aad1bb9c0a272bfd3c6985d1456dc8022c4e07b5582730ff + - param-sweeps == 0.2.1a1 --hash=sha256:777618dd6eef4b6e86b4976e01c29bb202abb9d295b0774baeabf7534fb9389c variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.11-linux-64.conda.lock.yml b/environments/py-3.11-linux-64.conda.lock.yml index 51ff77e9..38774c7c 100644 --- a/environments/py-3.11-linux-64.conda.lock.yml +++ b/environments/py-3.11-linux-64.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: cb6665c81a612550aea5a8924b42c6100e242ca0ce8a2e66e9cd64952882efc4 +# input_hash: 54ab3a684de79675ed893a381524115fd11580146bd0276a5f1b889d2229a880 channels: - conda-forge @@ -15,7 +15,7 @@ dependencies: - brotli-python=1.1.0=py311hfdbb021_2 - bzip2=1.0.8=h4bc722e_7 - c-ares=1.34.5=hb9d3cd8_0 - - ca-certificates=2025.1.31=hbcca054_0 + - ca-certificates=2025.1.31=hbd8a1cb_1 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - certifi=2025.1.31=pyhd8ed1ab_0 @@ -32,7 +32,7 @@ dependencies: - distributed=2025.3.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - fonttools=4.57.0=py311h2dc5d0c_0 - - freetype=2.13.3=h48d6fc4_0 + - freetype=2.13.3=ha770c72_1 - fsspec=2025.3.2=pyhd8ed1ab_0 - geoana=0.7.2=py311h5b7b71f_0 - h2=4.2.0=pyhd8ed1ab_0 @@ -48,7 +48,7 @@ dependencies: - krb5=1.21.3=h659f571_0 - lcms2=2.17=h717163a_0 - ld_impl_linux-64=2.43=h712a8e2_4 - - lerc=4.0.0=h27087fc_0 + - lerc=4.0.0=h0aef613_1 - libaec=1.1.3=h59595ed_0 - libblas=3.9.0=31_hfdb39a5_mkl - libbrotlicommon=1.1.0=hb9d3cd8_2 @@ -56,19 +56,21 @@ dependencies: - libbrotlienc=1.1.0=hb9d3cd8_2 - libcblas=3.9.0=31_h372d94f_mkl - libcurl=8.13.0=h332b0f4_0 - - libdeflate=1.23=h4ddbbb0_0 + - libdeflate=1.23=h86f0d12_0 - libdlf=0.3.0=pyhd8ed1ab_1 - libedit=3.1.20250104=pl5321h7949ede_0 - libev=4.33=hd590300_2 - libexpat=2.7.0=h5888daf_0 - libffi=3.4.6=h2dba641_1 + - libfreetype=2.13.3=ha770c72_1 + - libfreetype6=2.13.3=h48d6fc4_1 - libgcc=14.2.0=h767d61c_2 - libgcc-ng=14.2.0=h69a702a_2 - libgfortran=14.2.0=h69a702a_2 - libgfortran5=14.2.0=hf1ad2bd_2 - libhwloc=2.11.2=default_h0d58e46_1001 - libiconv=1.18=h4ce23a2_1 - - libjpeg-turbo=3.0.0=hd590300_1 + - libjpeg-turbo=3.1.0=hb9d3cd8_0 - liblapack=3.9.0=31_hc41d3b0_mkl - liblzma=5.8.1=hb9d3cd8_0 - libnghttp2=1.64.0=h161d5f1_0 @@ -79,7 +81,7 @@ dependencies: - libssh2=1.11.1=hf672d98_0 - libstdcxx=14.2.0=h8f9b012_2 - libstdcxx-ng=14.2.0=h4852527_2 - - libtiff=4.7.0=hd9ff511_3 + - libtiff=4.7.0=hd9ff511_4 - libuuid=2.38.1=h0b41bf4_0 - libwebp-base=1.5.0=h851e524_0 - libxcb=1.17.0=h8a09558_0 @@ -93,15 +95,15 @@ dependencies: - metis=5.1.0=hd0bcaf9_1007 - mkl=2024.2.2=ha957f24_16 - msgpack-python=1.1.0=py311hd18a35c_0 - - mumps-include=5.7.3=h82cca05_9 - - mumps-seq=5.7.3=hb5d91fa_9 + - mumps-include=5.7.3=h82cca05_10 + - mumps-seq=5.7.3=h06cbf8f_10 - munkres=1.1.4=pyh9f0ad1d_0 - ncurses=6.5=h2d0b736_3 - numcodecs=0.15.1=py311h7db5c69_0 - numpy=1.26.4=py311h64a7726_0 - openjpeg=2.5.3=h5fbd93e_0 - openssl=3.5.0=h7b32b05_0 - - packaging=25.0=pyhd8ed1ab_0 + - packaging=25.0=pyh29332c3_1 - pandas=2.2.3=py311h7db5c69_3 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py311h82a398c_1 @@ -119,13 +121,13 @@ dependencies: - python-dateutil=2.9.0.post0=pyhff2d567_1 - python-mumps=0.0.3=py311h4b558b0_0 - python-tzdata=2025.2=pyhd8ed1ab_0 - - python_abi=3.11=6_cp311 + - python_abi=3.11=7_cp311 - pytz=2025.2=pyhd8ed1ab_0 - pyyaml=6.0.2=py311h2dc5d0c_2 - readline=8.2=h8c095d6_2 - scikit-learn=1.4.2=py311he08f58d_1 - scipy=1.14.1=py311he9a78e4_2 - - setuptools=78.1.1=pyhff2d567_0 + - setuptools=79.0.1=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - tbb=2021.13.0=hceb3a55_1 @@ -153,11 +155,11 @@ dependencies: - zstandard=0.23.0=py311h9ecbd09_1 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils == 0.5.0a3 - - geoh5py == 0.11.0a4 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@730fa00953165f6fd5a87c3942d05cf8e0a7e164 - - octree-creation-app == 0.3.0a2 - - param-sweeps == 0.2.1a1 + - geoapps-utils == 0.5.0a3 --hash=sha256:a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c + - geoh5py == 0.11.0a4 --hash=sha256:4965e934b1e57460f98f76f96eca100abf48fd722245154c35af86e7ecbc10a6 + - mira-simpeg == 0.23.0.1a3 --hash=sha256:14467e65d801e082bac8a4d972a30b162018df27d06310fb1f2c6960968f88d2 + - octree-creation-app == 0.3.0a2 --hash=sha256:002896126bf5a958aad1bb9c0a272bfd3c6985d1456dc8022c4e07b5582730ff + - param-sweeps == 0.2.1a1 --hash=sha256:777618dd6eef4b6e86b4976e01c29bb202abb9d295b0774baeabf7534fb9389c variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.11-win-64-dev.conda.lock.yml b/environments/py-3.11-win-64-dev.conda.lock.yml index 991d21ad..75f0eaab 100644 --- a/environments/py-3.11-win-64-dev.conda.lock.yml +++ b/environments/py-3.11-win-64-dev.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: a88e5079ab2ac39fd52b1c7556f4afc444101de2cf7fbdf1da18097e4d71d43f +# input_hash: ea0337461fc017ab34b534c39ddd1a14ee998ff73bb9c1a247fd97254f1403d9 channels: - conda-forge @@ -28,7 +28,7 @@ dependencies: - brotli-bin=1.1.0=h2466b09_2 - brotli-python=1.1.0=py311hda3d55a_2 - bzip2=1.0.8=h2466b09_7 - - ca-certificates=2025.1.31=h56e8100_0 + - ca-certificates=2025.1.31=h4c7d964_1 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - certifi=2025.1.31=pyhd8ed1ab_0 @@ -54,14 +54,14 @@ dependencies: - distributed=2025.3.0=pyhd8ed1ab_0 - docutils=0.19=py311h1ea47a8_1 - exceptiongroup=1.2.2=pyhd8ed1ab_1 - - executing=2.1.0=pyhd8ed1ab_1 + - executing=2.2.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - fonttools=4.57.0=py311h5082efb_0 - fqdn=1.5.1=pyhd8ed1ab_1 - - freetype=2.13.3=h0b5ce68_0 + - freetype=2.13.3=h57928b3_1 - fsspec=2025.3.2=pyhd8ed1ab_0 - geoana=0.7.2=py311h9b10771_0 - - greenlet=3.2.0=py311hda3d55a_0 + - greenlet=3.2.1=py311hda3d55a_0 - h11=0.14.0=pyhd8ed1ab_1 - h2=4.2.0=pyhd8ed1ab_0 - h5py=3.13.0=nompi_py311h67016bb_100 @@ -90,7 +90,7 @@ dependencies: - json5=0.12.0=pyhd8ed1ab_0 - jsonpointer=3.0.0=py311h1ea47a8_1 - jsonschema=4.23.0=pyhd8ed1ab_1 - - jsonschema-specifications=2024.10.1=pyhd8ed1ab_1 + - jsonschema-specifications=2025.4.1=pyh29332c3_0 - jsonschema-with-format-nongpl=4.23.0=hd8ed1ab_1 - jupyter-book=1.0.3=pyhd8ed1ab_1 - jupyter-cache=1.0.1=pyhff2d567_0 @@ -100,7 +100,7 @@ dependencies: - jupyter_events=0.12.0=pyh29332c3_0 - jupyter_server=2.15.0=pyhd8ed1ab_0 - jupyter_server_terminals=0.5.3=pyhd8ed1ab_1 - - jupyterlab=4.4.0=pyhd8ed1ab_0 + - jupyterlab=4.4.1=pyhd8ed1ab_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_2 - jupyterlab_server=2.27.3=pyhd8ed1ab_1 - jupyterlab_widgets=1.1.11=pyhd8ed1ab_0 @@ -109,7 +109,7 @@ dependencies: - krb5=1.21.3=hdf4eb48_0 - latexcodec=2.0.1=pyh9f0ad1d_0 - lcms2=2.17=hbcf6048_0 - - lerc=4.0.0=h63175ca_0 + - lerc=4.0.0=h6470a55_1 - libaec=1.1.3=h63175ca_0 - libblas=3.9.0=31_h641d27c_mkl - libbrotlicommon=1.1.0=h2466b09_2 @@ -117,22 +117,24 @@ dependencies: - libbrotlienc=1.1.0=h2466b09_2 - libcblas=3.9.0=31_h5e41251_mkl - libcurl=8.13.0=h88aaa65_0 - - libdeflate=1.23=h9062f6e_0 + - libdeflate=1.23=h76ddb4d_0 - libdlf=0.3.0=pyhd8ed1ab_1 - libexpat=2.7.0=he0c23c2_0 - libffi=3.4.6=h537db12_1 + - libfreetype=2.13.3=h57928b3_1 + - libfreetype6=2.13.3=h0b5ce68_1 - libgcc=14.2.0=h1383e82_2 - libgomp=14.2.0=h1383e82_2 - libhwloc=2.11.2=default_ha69328c_1001 - libiconv=1.18=h135ad9c_1 - - libjpeg-turbo=3.0.0=hcfcfb64_1 + - libjpeg-turbo=3.1.0=h2466b09_0 - liblapack=3.9.0=31_h1aa476e_mkl - liblzma=5.8.1=h2466b09_0 - libpng=1.6.47=had7236b_0 - libsodium=1.0.20=hc70643c_0 - libsqlite=3.49.1=h67fdade_2 - libssh2=1.11.1=he619c9f_0 - - libtiff=4.7.0=h797046b_3 + - libtiff=4.7.0=h797046b_4 - libwebp-base=1.5.0=h3b0e114_0 - libwinpthread=12.0.0.r4.gg4f2fc60ca=h57928b3_9 - libxcb=1.17.0=h0e4246c_0 @@ -151,7 +153,7 @@ dependencies: - mistune=3.1.3=pyh29332c3_0 - mkl=2024.2.2=h66d3029_15 - msgpack-python=1.1.0=py311h3257749_0 - - mumps-seq=5.7.3=hbaa6519_9 + - mumps-seq=5.7.3=hbaa6519_10 - munkres=1.1.4=pyh9f0ad1d_0 - myst-nb=1.2.0=pyh29332c3_0 - myst-parser=1.0.0=pyhd8ed1ab_0 @@ -161,14 +163,14 @@ dependencies: - nbconvert-pandoc=7.16.6=hed9df3c_0 - nbformat=5.10.4=pyhd8ed1ab_1 - nest-asyncio=1.6.0=pyhd8ed1ab_1 - - notebook=7.4.0=pyhd8ed1ab_0 + - notebook=7.4.1=pyhd8ed1ab_0 - notebook-shim=0.2.4=pyhd8ed1ab_1 - numcodecs=0.15.1=py311hcf9f919_0 - numpy=1.26.4=py311h0b4df5a_0 - openjpeg=2.5.3=h4d64b90_0 - openssl=3.5.0=ha4e3fda_0 - overrides=7.7.0=pyhd8ed1ab_1 - - packaging=25.0=pyhd8ed1ab_0 + - packaging=25.0=pyh29332c3_1 - pandas=2.2.3=py311hcf9f919_3 - pandoc=3.6.4=h57928b3_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 @@ -205,7 +207,7 @@ dependencies: - python-json-logger=2.0.7=pyhd8ed1ab_0 - python-mumps=0.0.3=py311h5bfbc98_0 - python-tzdata=2025.2=pyhd8ed1ab_0 - - python_abi=3.11=6_cp311 + - python_abi=3.11=7_cp311 - pytz=2025.2=pyhd8ed1ab_0 - pywin32=307=py311hda3d55a_3 - pywinpty=2.0.15=py311hda3d55a_0 @@ -220,7 +222,7 @@ dependencies: - scikit-learn=1.4.2=py311hdcb8d17_1 - scipy=1.14.1=py311hf16d85f_2 - send2trash=1.8.3=pyh5737063_1 - - setuptools=78.1.1=pyhff2d567_0 + - setuptools=79.0.1=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - sniffio=1.3.1=pyhd8ed1ab_1 - snowballstemmer=2.2.0=pyhd8ed1ab_0 @@ -293,11 +295,11 @@ dependencies: - zstandard=0.23.0=py311he736701_1 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils == 0.5.0a3 - - geoh5py == 0.11.0a4 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@730fa00953165f6fd5a87c3942d05cf8e0a7e164 - - octree-creation-app == 0.3.0a2 - - param-sweeps == 0.2.1a1 + - geoapps-utils == 0.5.0a3 --hash=sha256:a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c + - geoh5py == 0.11.0a4 --hash=sha256:4965e934b1e57460f98f76f96eca100abf48fd722245154c35af86e7ecbc10a6 + - mira-simpeg == 0.23.0.1a3 --hash=sha256:14467e65d801e082bac8a4d972a30b162018df27d06310fb1f2c6960968f88d2 + - octree-creation-app == 0.3.0a2 --hash=sha256:002896126bf5a958aad1bb9c0a272bfd3c6985d1456dc8022c4e07b5582730ff + - param-sweeps == 0.2.1a1 --hash=sha256:777618dd6eef4b6e86b4976e01c29bb202abb9d295b0774baeabf7534fb9389c variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.11-win-64.conda.lock.yml b/environments/py-3.11-win-64.conda.lock.yml index 3a3a3682..984a8f78 100644 --- a/environments/py-3.11-win-64.conda.lock.yml +++ b/environments/py-3.11-win-64.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: a88e5079ab2ac39fd52b1c7556f4afc444101de2cf7fbdf1da18097e4d71d43f +# input_hash: ea0337461fc017ab34b534c39ddd1a14ee998ff73bb9c1a247fd97254f1403d9 channels: - conda-forge @@ -14,7 +14,7 @@ dependencies: - brotli-bin=1.1.0=h2466b09_2 - brotli-python=1.1.0=py311hda3d55a_2 - bzip2=1.0.8=h2466b09_7 - - ca-certificates=2025.1.31=h56e8100_0 + - ca-certificates=2025.1.31=h4c7d964_1 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - certifi=2025.1.31=pyhd8ed1ab_0 @@ -31,7 +31,7 @@ dependencies: - distributed=2025.3.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - fonttools=4.57.0=py311h5082efb_0 - - freetype=2.13.3=h0b5ce68_0 + - freetype=2.13.3=h57928b3_1 - fsspec=2025.3.2=pyhd8ed1ab_0 - geoana=0.7.2=py311h9b10771_0 - h2=4.2.0=pyhd8ed1ab_0 @@ -46,7 +46,7 @@ dependencies: - kiwisolver=1.4.7=py311h3257749_0 - krb5=1.21.3=hdf4eb48_0 - lcms2=2.17=hbcf6048_0 - - lerc=4.0.0=h63175ca_0 + - lerc=4.0.0=h6470a55_1 - libaec=1.1.3=h63175ca_0 - libblas=3.9.0=31_h641d27c_mkl - libbrotlicommon=1.1.0=h2466b09_2 @@ -54,21 +54,23 @@ dependencies: - libbrotlienc=1.1.0=h2466b09_2 - libcblas=3.9.0=31_h5e41251_mkl - libcurl=8.13.0=h88aaa65_0 - - libdeflate=1.23=h9062f6e_0 + - libdeflate=1.23=h76ddb4d_0 - libdlf=0.3.0=pyhd8ed1ab_1 - libexpat=2.7.0=he0c23c2_0 - libffi=3.4.6=h537db12_1 + - libfreetype=2.13.3=h57928b3_1 + - libfreetype6=2.13.3=h0b5ce68_1 - libgcc=14.2.0=h1383e82_2 - libgomp=14.2.0=h1383e82_2 - libhwloc=2.11.2=default_ha69328c_1001 - libiconv=1.18=h135ad9c_1 - - libjpeg-turbo=3.0.0=hcfcfb64_1 + - libjpeg-turbo=3.1.0=h2466b09_0 - liblapack=3.9.0=31_h1aa476e_mkl - liblzma=5.8.1=h2466b09_0 - libpng=1.6.47=had7236b_0 - libsqlite=3.49.1=h67fdade_2 - libssh2=1.11.1=he619c9f_0 - - libtiff=4.7.0=h797046b_3 + - libtiff=4.7.0=h797046b_4 - libwebp-base=1.5.0=h3b0e114_0 - libwinpthread=12.0.0.r4.gg4f2fc60ca=h57928b3_9 - libxcb=1.17.0=h0e4246c_0 @@ -80,13 +82,13 @@ dependencies: - matplotlib-base=3.8.4=py311h9b31f6e_2 - mkl=2024.2.2=h66d3029_15 - msgpack-python=1.1.0=py311h3257749_0 - - mumps-seq=5.7.3=hbaa6519_9 + - mumps-seq=5.7.3=hbaa6519_10 - munkres=1.1.4=pyh9f0ad1d_0 - numcodecs=0.15.1=py311hcf9f919_0 - numpy=1.26.4=py311h0b4df5a_0 - openjpeg=2.5.3=h4d64b90_0 - openssl=3.5.0=ha4e3fda_0 - - packaging=25.0=pyhd8ed1ab_0 + - packaging=25.0=pyh29332c3_1 - pandas=2.2.3=py311hcf9f919_3 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py311h5592be9_1 @@ -104,12 +106,12 @@ dependencies: - python-dateutil=2.9.0.post0=pyhff2d567_1 - python-mumps=0.0.3=py311h5bfbc98_0 - python-tzdata=2025.2=pyhd8ed1ab_0 - - python_abi=3.11=6_cp311 + - python_abi=3.11=7_cp311 - pytz=2025.2=pyhd8ed1ab_0 - pyyaml=6.0.2=py311h5082efb_2 - scikit-learn=1.4.2=py311hdcb8d17_1 - scipy=1.14.1=py311hf16d85f_2 - - setuptools=78.1.1=pyhff2d567_0 + - setuptools=79.0.1=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - tbb=2021.13.0=h62715c5_1 @@ -142,11 +144,11 @@ dependencies: - zstandard=0.23.0=py311he736701_1 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils == 0.5.0a3 - - geoh5py == 0.11.0a4 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@730fa00953165f6fd5a87c3942d05cf8e0a7e164 - - octree-creation-app == 0.3.0a2 - - param-sweeps == 0.2.1a1 + - geoapps-utils == 0.5.0a3 --hash=sha256:a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c + - geoh5py == 0.11.0a4 --hash=sha256:4965e934b1e57460f98f76f96eca100abf48fd722245154c35af86e7ecbc10a6 + - mira-simpeg == 0.23.0.1a3 --hash=sha256:14467e65d801e082bac8a4d972a30b162018df27d06310fb1f2c6960968f88d2 + - octree-creation-app == 0.3.0a2 --hash=sha256:002896126bf5a958aad1bb9c0a272bfd3c6985d1456dc8022c4e07b5582730ff + - param-sweeps == 0.2.1a1 --hash=sha256:777618dd6eef4b6e86b4976e01c29bb202abb9d295b0774baeabf7534fb9389c variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.12-linux-64-dev.conda.lock.yml b/environments/py-3.12-linux-64-dev.conda.lock.yml index a6c55ff1..75ca3936 100644 --- a/environments/py-3.12-linux-64-dev.conda.lock.yml +++ b/environments/py-3.12-linux-64-dev.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 398d654fb76a679002e71da3f82bc3ff4a37d34689965e0d027a9b8b8e7bd1a5 +# input_hash: 4acd117552e4100eb57c2f1aac766fba9ef02ffe62a999b22cd10f4f3d117310 channels: - conda-forge @@ -29,7 +29,7 @@ dependencies: - brotli-python=1.1.0=py312h2ec8cdc_2 - bzip2=1.0.8=h4bc722e_7 - c-ares=1.34.5=hb9d3cd8_0 - - ca-certificates=2025.1.31=hbcca054_0 + - ca-certificates=2025.1.31=hbd8a1cb_1 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - certifi=2025.1.31=pyhd8ed1ab_0 @@ -54,14 +54,14 @@ dependencies: - distributed=2025.3.0=pyhd8ed1ab_0 - docutils=0.18.1=py312h7900ff3_0 - exceptiongroup=1.2.2=pyhd8ed1ab_1 - - executing=2.1.0=pyhd8ed1ab_1 + - executing=2.2.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - fonttools=4.57.0=py312h178313f_0 - fqdn=1.5.1=pyhd8ed1ab_1 - - freetype=2.13.3=h48d6fc4_0 + - freetype=2.13.3=ha770c72_1 - fsspec=2025.3.2=pyhd8ed1ab_0 - geoana=0.7.2=py312hc39e661_0 - - greenlet=3.2.0=py312h2ec8cdc_0 + - greenlet=3.2.1=py312h2ec8cdc_0 - h11=0.14.0=pyhd8ed1ab_1 - h2=4.2.0=pyhd8ed1ab_0 - h5py=3.13.0=nompi_py312hedeef09_100 @@ -89,7 +89,7 @@ dependencies: - json5=0.12.0=pyhd8ed1ab_0 - jsonpointer=3.0.0=py312h7900ff3_1 - jsonschema=4.23.0=pyhd8ed1ab_1 - - jsonschema-specifications=2024.10.1=pyhd8ed1ab_1 + - jsonschema-specifications=2025.4.1=pyh29332c3_0 - jsonschema-with-format-nongpl=4.23.0=hd8ed1ab_1 - jupyter-book=1.0.3=pyhd8ed1ab_1 - jupyter-cache=1.0.1=pyhff2d567_0 @@ -99,7 +99,7 @@ dependencies: - jupyter_events=0.12.0=pyh29332c3_0 - jupyter_server=2.15.0=pyhd8ed1ab_0 - jupyter_server_terminals=0.5.3=pyhd8ed1ab_1 - - jupyterlab=4.4.0=pyhd8ed1ab_0 + - jupyterlab=4.4.1=pyhd8ed1ab_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_2 - jupyterlab_server=2.27.3=pyhd8ed1ab_1 - jupyterlab_widgets=1.1.11=pyhd8ed1ab_0 @@ -110,7 +110,7 @@ dependencies: - latexcodec=2.0.1=pyh9f0ad1d_0 - lcms2=2.17=h717163a_0 - ld_impl_linux-64=2.43=h712a8e2_4 - - lerc=4.0.0=h27087fc_0 + - lerc=4.0.0=h0aef613_1 - libaec=1.1.3=h59595ed_0 - libblas=3.9.0=31_hfdb39a5_mkl - libbrotlicommon=1.1.0=hb9d3cd8_2 @@ -118,19 +118,21 @@ dependencies: - libbrotlienc=1.1.0=hb9d3cd8_2 - libcblas=3.9.0=31_h372d94f_mkl - libcurl=8.13.0=h332b0f4_0 - - libdeflate=1.23=h4ddbbb0_0 + - libdeflate=1.23=h86f0d12_0 - libdlf=0.3.0=pyhd8ed1ab_1 - libedit=3.1.20250104=pl5321h7949ede_0 - libev=4.33=hd590300_2 - libexpat=2.7.0=h5888daf_0 - libffi=3.4.6=h2dba641_1 + - libfreetype=2.13.3=ha770c72_1 + - libfreetype6=2.13.3=h48d6fc4_1 - libgcc=14.2.0=h767d61c_2 - libgcc-ng=14.2.0=h69a702a_2 - libgfortran=14.2.0=h69a702a_2 - libgfortran5=14.2.0=hf1ad2bd_2 - libhwloc=2.11.2=default_h0d58e46_1001 - libiconv=1.18=h4ce23a2_1 - - libjpeg-turbo=3.0.0=hd590300_1 + - libjpeg-turbo=3.1.0=hb9d3cd8_0 - liblapack=3.9.0=31_hc41d3b0_mkl - liblzma=5.8.1=hb9d3cd8_0 - libnghttp2=1.64.0=h161d5f1_0 @@ -142,7 +144,7 @@ dependencies: - libssh2=1.11.1=hf672d98_0 - libstdcxx=14.2.0=h8f9b012_2 - libstdcxx-ng=14.2.0=h4852527_2 - - libtiff=4.7.0=hd9ff511_3 + - libtiff=4.7.0=hd9ff511_4 - libuuid=2.38.1=h0b41bf4_0 - libwebp-base=1.5.0=h851e524_0 - libxcb=1.17.0=h8a09558_0 @@ -163,8 +165,8 @@ dependencies: - mistune=3.1.3=pyh29332c3_0 - mkl=2024.2.2=ha957f24_16 - msgpack-python=1.1.0=py312h68727a3_0 - - mumps-include=5.7.3=h82cca05_9 - - mumps-seq=5.7.3=hb5d91fa_9 + - mumps-include=5.7.3=h82cca05_10 + - mumps-seq=5.7.3=h06cbf8f_10 - munkres=1.1.4=pyh9f0ad1d_0 - myst-nb=1.2.0=pyh29332c3_0 - myst-parser=1.0.0=pyhd8ed1ab_0 @@ -175,14 +177,14 @@ dependencies: - nbformat=5.10.4=pyhd8ed1ab_1 - ncurses=6.5=h2d0b736_3 - nest-asyncio=1.6.0=pyhd8ed1ab_1 - - notebook=7.4.0=pyhd8ed1ab_0 + - notebook=7.4.1=pyhd8ed1ab_0 - notebook-shim=0.2.4=pyhd8ed1ab_1 - numcodecs=0.15.1=py312hf9745cd_0 - numpy=1.26.4=py312heda63a1_0 - openjpeg=2.5.3=h5fbd93e_0 - openssl=3.5.0=h7b32b05_0 - overrides=7.7.0=pyhd8ed1ab_1 - - packaging=25.0=pyhd8ed1ab_0 + - packaging=25.0=pyh29332c3_1 - pandas=2.2.3=py312hf9745cd_3 - pandoc=3.6.4=ha770c72_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 @@ -221,7 +223,7 @@ dependencies: - python-json-logger=2.0.7=pyhd8ed1ab_0 - python-mumps=0.0.3=py312h6ad3ee3_0 - python-tzdata=2025.2=pyhd8ed1ab_0 - - python_abi=3.12=6_cp312 + - python_abi=3.12=7_cp312 - pytz=2025.2=pyhd8ed1ab_0 - pyyaml=6.0.2=py312h178313f_2 - pyzmq=26.4.0=py312hbf22597_0 @@ -235,7 +237,7 @@ dependencies: - scikit-learn=1.4.2=py312h1fcc3ea_1 - scipy=1.14.1=py312h62794b6_2 - send2trash=1.8.3=pyh0d859eb_1 - - setuptools=78.1.1=pyhff2d567_0 + - setuptools=79.0.1=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - sniffio=1.3.1=pyhd8ed1ab_1 - snowballstemmer=2.2.0=pyhd8ed1ab_0 @@ -302,11 +304,11 @@ dependencies: - zstandard=0.23.0=py312h66e93f0_1 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils == 0.5.0a3 - - geoh5py == 0.11.0a4 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@730fa00953165f6fd5a87c3942d05cf8e0a7e164 - - octree-creation-app == 0.3.0a2 - - param-sweeps == 0.2.1a1 + - geoapps-utils == 0.5.0a3 --hash=sha256:a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c + - geoh5py == 0.11.0a4 --hash=sha256:4965e934b1e57460f98f76f96eca100abf48fd722245154c35af86e7ecbc10a6 + - mira-simpeg == 0.23.0.1a3 --hash=sha256:14467e65d801e082bac8a4d972a30b162018df27d06310fb1f2c6960968f88d2 + - octree-creation-app == 0.3.0a2 --hash=sha256:002896126bf5a958aad1bb9c0a272bfd3c6985d1456dc8022c4e07b5582730ff + - param-sweeps == 0.2.1a1 --hash=sha256:777618dd6eef4b6e86b4976e01c29bb202abb9d295b0774baeabf7534fb9389c variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.12-linux-64.conda.lock.yml b/environments/py-3.12-linux-64.conda.lock.yml index 6bafa294..27c567d8 100644 --- a/environments/py-3.12-linux-64.conda.lock.yml +++ b/environments/py-3.12-linux-64.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 398d654fb76a679002e71da3f82bc3ff4a37d34689965e0d027a9b8b8e7bd1a5 +# input_hash: 4acd117552e4100eb57c2f1aac766fba9ef02ffe62a999b22cd10f4f3d117310 channels: - conda-forge @@ -15,7 +15,7 @@ dependencies: - brotli-python=1.1.0=py312h2ec8cdc_2 - bzip2=1.0.8=h4bc722e_7 - c-ares=1.34.5=hb9d3cd8_0 - - ca-certificates=2025.1.31=hbcca054_0 + - ca-certificates=2025.1.31=hbd8a1cb_1 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - certifi=2025.1.31=pyhd8ed1ab_0 @@ -32,7 +32,7 @@ dependencies: - distributed=2025.3.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - fonttools=4.57.0=py312h178313f_0 - - freetype=2.13.3=h48d6fc4_0 + - freetype=2.13.3=ha770c72_1 - fsspec=2025.3.2=pyhd8ed1ab_0 - geoana=0.7.2=py312hc39e661_0 - h2=4.2.0=pyhd8ed1ab_0 @@ -48,7 +48,7 @@ dependencies: - krb5=1.21.3=h659f571_0 - lcms2=2.17=h717163a_0 - ld_impl_linux-64=2.43=h712a8e2_4 - - lerc=4.0.0=h27087fc_0 + - lerc=4.0.0=h0aef613_1 - libaec=1.1.3=h59595ed_0 - libblas=3.9.0=31_hfdb39a5_mkl - libbrotlicommon=1.1.0=hb9d3cd8_2 @@ -56,19 +56,21 @@ dependencies: - libbrotlienc=1.1.0=hb9d3cd8_2 - libcblas=3.9.0=31_h372d94f_mkl - libcurl=8.13.0=h332b0f4_0 - - libdeflate=1.23=h4ddbbb0_0 + - libdeflate=1.23=h86f0d12_0 - libdlf=0.3.0=pyhd8ed1ab_1 - libedit=3.1.20250104=pl5321h7949ede_0 - libev=4.33=hd590300_2 - libexpat=2.7.0=h5888daf_0 - libffi=3.4.6=h2dba641_1 + - libfreetype=2.13.3=ha770c72_1 + - libfreetype6=2.13.3=h48d6fc4_1 - libgcc=14.2.0=h767d61c_2 - libgcc-ng=14.2.0=h69a702a_2 - libgfortran=14.2.0=h69a702a_2 - libgfortran5=14.2.0=hf1ad2bd_2 - libhwloc=2.11.2=default_h0d58e46_1001 - libiconv=1.18=h4ce23a2_1 - - libjpeg-turbo=3.0.0=hd590300_1 + - libjpeg-turbo=3.1.0=hb9d3cd8_0 - liblapack=3.9.0=31_hc41d3b0_mkl - liblzma=5.8.1=hb9d3cd8_0 - libnghttp2=1.64.0=h161d5f1_0 @@ -79,7 +81,7 @@ dependencies: - libssh2=1.11.1=hf672d98_0 - libstdcxx=14.2.0=h8f9b012_2 - libstdcxx-ng=14.2.0=h4852527_2 - - libtiff=4.7.0=hd9ff511_3 + - libtiff=4.7.0=hd9ff511_4 - libuuid=2.38.1=h0b41bf4_0 - libwebp-base=1.5.0=h851e524_0 - libxcb=1.17.0=h8a09558_0 @@ -93,15 +95,15 @@ dependencies: - metis=5.1.0=hd0bcaf9_1007 - mkl=2024.2.2=ha957f24_16 - msgpack-python=1.1.0=py312h68727a3_0 - - mumps-include=5.7.3=h82cca05_9 - - mumps-seq=5.7.3=hb5d91fa_9 + - mumps-include=5.7.3=h82cca05_10 + - mumps-seq=5.7.3=h06cbf8f_10 - munkres=1.1.4=pyh9f0ad1d_0 - ncurses=6.5=h2d0b736_3 - numcodecs=0.15.1=py312hf9745cd_0 - numpy=1.26.4=py312heda63a1_0 - openjpeg=2.5.3=h5fbd93e_0 - openssl=3.5.0=h7b32b05_0 - - packaging=25.0=pyhd8ed1ab_0 + - packaging=25.0=pyh29332c3_1 - pandas=2.2.3=py312hf9745cd_3 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py312h287a98d_1 @@ -119,13 +121,13 @@ dependencies: - python-dateutil=2.9.0.post0=pyhff2d567_1 - python-mumps=0.0.3=py312h6ad3ee3_0 - python-tzdata=2025.2=pyhd8ed1ab_0 - - python_abi=3.12=6_cp312 + - python_abi=3.12=7_cp312 - pytz=2025.2=pyhd8ed1ab_0 - pyyaml=6.0.2=py312h178313f_2 - readline=8.2=h8c095d6_2 - scikit-learn=1.4.2=py312h1fcc3ea_1 - scipy=1.14.1=py312h62794b6_2 - - setuptools=78.1.1=pyhff2d567_0 + - setuptools=79.0.1=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - tbb=2021.13.0=hceb3a55_1 @@ -153,11 +155,11 @@ dependencies: - zstandard=0.23.0=py312h66e93f0_1 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils == 0.5.0a3 - - geoh5py == 0.11.0a4 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@730fa00953165f6fd5a87c3942d05cf8e0a7e164 - - octree-creation-app == 0.3.0a2 - - param-sweeps == 0.2.1a1 + - geoapps-utils == 0.5.0a3 --hash=sha256:a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c + - geoh5py == 0.11.0a4 --hash=sha256:4965e934b1e57460f98f76f96eca100abf48fd722245154c35af86e7ecbc10a6 + - mira-simpeg == 0.23.0.1a3 --hash=sha256:14467e65d801e082bac8a4d972a30b162018df27d06310fb1f2c6960968f88d2 + - octree-creation-app == 0.3.0a2 --hash=sha256:002896126bf5a958aad1bb9c0a272bfd3c6985d1456dc8022c4e07b5582730ff + - param-sweeps == 0.2.1a1 --hash=sha256:777618dd6eef4b6e86b4976e01c29bb202abb9d295b0774baeabf7534fb9389c variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.12-win-64-dev.conda.lock.yml b/environments/py-3.12-win-64-dev.conda.lock.yml index a583f3f2..d0de7767 100644 --- a/environments/py-3.12-win-64-dev.conda.lock.yml +++ b/environments/py-3.12-win-64-dev.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: b7b89c455d6cfa233775cd379dfc6668ca87d22340d35670d5bfd0bf85fb08bb +# input_hash: 6f1933aa237e9717452d1622fcfc68eba137cef4e0b6cc8724c06ce1c490d501 channels: - conda-forge @@ -28,7 +28,7 @@ dependencies: - brotli-bin=1.1.0=h2466b09_2 - brotli-python=1.1.0=py312h275cf98_2 - bzip2=1.0.8=h2466b09_7 - - ca-certificates=2025.1.31=h56e8100_0 + - ca-certificates=2025.1.31=h4c7d964_1 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - certifi=2025.1.31=pyhd8ed1ab_0 @@ -54,14 +54,14 @@ dependencies: - distributed=2025.3.0=pyhd8ed1ab_0 - docutils=0.18.1=py312h2e8e312_0 - exceptiongroup=1.2.2=pyhd8ed1ab_1 - - executing=2.1.0=pyhd8ed1ab_1 + - executing=2.2.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - fonttools=4.57.0=py312h31fea79_0 - fqdn=1.5.1=pyhd8ed1ab_1 - - freetype=2.13.3=h0b5ce68_0 + - freetype=2.13.3=h57928b3_1 - fsspec=2025.3.2=pyhd8ed1ab_0 - geoana=0.7.2=py312hbaa7e33_0 - - greenlet=3.2.0=py312h275cf98_0 + - greenlet=3.2.1=py312h275cf98_0 - h11=0.14.0=pyhd8ed1ab_1 - h2=4.2.0=pyhd8ed1ab_0 - h5py=3.13.0=nompi_py312ha036244_100 @@ -90,7 +90,7 @@ dependencies: - json5=0.12.0=pyhd8ed1ab_0 - jsonpointer=3.0.0=py312h2e8e312_1 - jsonschema=4.23.0=pyhd8ed1ab_1 - - jsonschema-specifications=2024.10.1=pyhd8ed1ab_1 + - jsonschema-specifications=2025.4.1=pyh29332c3_0 - jsonschema-with-format-nongpl=4.23.0=hd8ed1ab_1 - jupyter-book=1.0.3=pyhd8ed1ab_1 - jupyter-cache=1.0.1=pyhff2d567_0 @@ -100,7 +100,7 @@ dependencies: - jupyter_events=0.12.0=pyh29332c3_0 - jupyter_server=2.15.0=pyhd8ed1ab_0 - jupyter_server_terminals=0.5.3=pyhd8ed1ab_1 - - jupyterlab=4.4.0=pyhd8ed1ab_0 + - jupyterlab=4.4.1=pyhd8ed1ab_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_2 - jupyterlab_server=2.27.3=pyhd8ed1ab_1 - jupyterlab_widgets=1.1.11=pyhd8ed1ab_0 @@ -109,7 +109,7 @@ dependencies: - krb5=1.21.3=hdf4eb48_0 - latexcodec=2.0.1=pyh9f0ad1d_0 - lcms2=2.17=hbcf6048_0 - - lerc=4.0.0=h63175ca_0 + - lerc=4.0.0=h6470a55_1 - libaec=1.1.3=h63175ca_0 - libblas=3.9.0=31_h641d27c_mkl - libbrotlicommon=1.1.0=h2466b09_2 @@ -117,22 +117,24 @@ dependencies: - libbrotlienc=1.1.0=h2466b09_2 - libcblas=3.9.0=31_h5e41251_mkl - libcurl=8.13.0=h88aaa65_0 - - libdeflate=1.23=h9062f6e_0 + - libdeflate=1.23=h76ddb4d_0 - libdlf=0.3.0=pyhd8ed1ab_1 - libexpat=2.7.0=he0c23c2_0 - libffi=3.4.6=h537db12_1 + - libfreetype=2.13.3=h57928b3_1 + - libfreetype6=2.13.3=h0b5ce68_1 - libgcc=14.2.0=h1383e82_2 - libgomp=14.2.0=h1383e82_2 - libhwloc=2.11.2=default_ha69328c_1001 - libiconv=1.18=h135ad9c_1 - - libjpeg-turbo=3.0.0=hcfcfb64_1 + - libjpeg-turbo=3.1.0=h2466b09_0 - liblapack=3.9.0=31_h1aa476e_mkl - liblzma=5.8.1=h2466b09_0 - libpng=1.6.47=had7236b_0 - libsodium=1.0.20=hc70643c_0 - libsqlite=3.49.1=h67fdade_2 - libssh2=1.11.1=he619c9f_0 - - libtiff=4.7.0=h797046b_3 + - libtiff=4.7.0=h797046b_4 - libwebp-base=1.5.0=h3b0e114_0 - libwinpthread=12.0.0.r4.gg4f2fc60ca=h57928b3_9 - libxcb=1.17.0=h0e4246c_0 @@ -151,7 +153,7 @@ dependencies: - mistune=3.1.3=pyh29332c3_0 - mkl=2024.2.2=h66d3029_15 - msgpack-python=1.1.0=py312hd5eb7cc_0 - - mumps-seq=5.7.3=hbaa6519_9 + - mumps-seq=5.7.3=hbaa6519_10 - munkres=1.1.4=pyh9f0ad1d_0 - myst-nb=1.2.0=pyh29332c3_0 - myst-parser=1.0.0=pyhd8ed1ab_0 @@ -161,14 +163,14 @@ dependencies: - nbconvert-pandoc=7.16.6=hed9df3c_0 - nbformat=5.10.4=pyhd8ed1ab_1 - nest-asyncio=1.6.0=pyhd8ed1ab_1 - - notebook=7.4.0=pyhd8ed1ab_0 + - notebook=7.4.1=pyhd8ed1ab_0 - notebook-shim=0.2.4=pyhd8ed1ab_1 - numcodecs=0.15.1=py312h72972c8_0 - numpy=1.26.4=py312h8753938_0 - openjpeg=2.5.3=h4d64b90_0 - openssl=3.5.0=ha4e3fda_0 - overrides=7.7.0=pyhd8ed1ab_1 - - packaging=25.0=pyhd8ed1ab_0 + - packaging=25.0=pyh29332c3_1 - pandas=2.2.3=py312h72972c8_3 - pandoc=3.6.4=h57928b3_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 @@ -205,7 +207,7 @@ dependencies: - python-json-logger=2.0.7=pyhd8ed1ab_0 - python-mumps=0.0.3=py312h8095395_0 - python-tzdata=2025.2=pyhd8ed1ab_0 - - python_abi=3.12=6_cp312 + - python_abi=3.12=7_cp312 - pytz=2025.2=pyhd8ed1ab_0 - pywin32=307=py312h275cf98_3 - pywinpty=2.0.15=py312h275cf98_0 @@ -220,7 +222,7 @@ dependencies: - scikit-learn=1.4.2=py312h816cc57_1 - scipy=1.14.1=py312h337df96_2 - send2trash=1.8.3=pyh5737063_1 - - setuptools=78.1.1=pyhff2d567_0 + - setuptools=79.0.1=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - sniffio=1.3.1=pyhd8ed1ab_1 - snowballstemmer=2.2.0=pyhd8ed1ab_0 @@ -293,11 +295,11 @@ dependencies: - zstandard=0.23.0=py312h4389bb4_1 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils == 0.5.0a3 - - geoh5py == 0.11.0a4 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@730fa00953165f6fd5a87c3942d05cf8e0a7e164 - - octree-creation-app == 0.3.0a2 - - param-sweeps == 0.2.1a1 + - geoapps-utils == 0.5.0a3 --hash=sha256:a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c + - geoh5py == 0.11.0a4 --hash=sha256:4965e934b1e57460f98f76f96eca100abf48fd722245154c35af86e7ecbc10a6 + - mira-simpeg == 0.23.0.1a3 --hash=sha256:14467e65d801e082bac8a4d972a30b162018df27d06310fb1f2c6960968f88d2 + - octree-creation-app == 0.3.0a2 --hash=sha256:002896126bf5a958aad1bb9c0a272bfd3c6985d1456dc8022c4e07b5582730ff + - param-sweeps == 0.2.1a1 --hash=sha256:777618dd6eef4b6e86b4976e01c29bb202abb9d295b0774baeabf7534fb9389c variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.12-win-64.conda.lock.yml b/environments/py-3.12-win-64.conda.lock.yml index 7f4bd102..eae3e986 100644 --- a/environments/py-3.12-win-64.conda.lock.yml +++ b/environments/py-3.12-win-64.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: b7b89c455d6cfa233775cd379dfc6668ca87d22340d35670d5bfd0bf85fb08bb +# input_hash: 6f1933aa237e9717452d1622fcfc68eba137cef4e0b6cc8724c06ce1c490d501 channels: - conda-forge @@ -14,7 +14,7 @@ dependencies: - brotli-bin=1.1.0=h2466b09_2 - brotli-python=1.1.0=py312h275cf98_2 - bzip2=1.0.8=h2466b09_7 - - ca-certificates=2025.1.31=h56e8100_0 + - ca-certificates=2025.1.31=h4c7d964_1 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - certifi=2025.1.31=pyhd8ed1ab_0 @@ -31,7 +31,7 @@ dependencies: - distributed=2025.3.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - fonttools=4.57.0=py312h31fea79_0 - - freetype=2.13.3=h0b5ce68_0 + - freetype=2.13.3=h57928b3_1 - fsspec=2025.3.2=pyhd8ed1ab_0 - geoana=0.7.2=py312hbaa7e33_0 - h2=4.2.0=pyhd8ed1ab_0 @@ -46,7 +46,7 @@ dependencies: - kiwisolver=1.4.8=py312hc790b64_0 - krb5=1.21.3=hdf4eb48_0 - lcms2=2.17=hbcf6048_0 - - lerc=4.0.0=h63175ca_0 + - lerc=4.0.0=h6470a55_1 - libaec=1.1.3=h63175ca_0 - libblas=3.9.0=31_h641d27c_mkl - libbrotlicommon=1.1.0=h2466b09_2 @@ -54,21 +54,23 @@ dependencies: - libbrotlienc=1.1.0=h2466b09_2 - libcblas=3.9.0=31_h5e41251_mkl - libcurl=8.13.0=h88aaa65_0 - - libdeflate=1.23=h9062f6e_0 + - libdeflate=1.23=h76ddb4d_0 - libdlf=0.3.0=pyhd8ed1ab_1 - libexpat=2.7.0=he0c23c2_0 - libffi=3.4.6=h537db12_1 + - libfreetype=2.13.3=h57928b3_1 + - libfreetype6=2.13.3=h0b5ce68_1 - libgcc=14.2.0=h1383e82_2 - libgomp=14.2.0=h1383e82_2 - libhwloc=2.11.2=default_ha69328c_1001 - libiconv=1.18=h135ad9c_1 - - libjpeg-turbo=3.0.0=hcfcfb64_1 + - libjpeg-turbo=3.1.0=h2466b09_0 - liblapack=3.9.0=31_h1aa476e_mkl - liblzma=5.8.1=h2466b09_0 - libpng=1.6.47=had7236b_0 - libsqlite=3.49.1=h67fdade_2 - libssh2=1.11.1=he619c9f_0 - - libtiff=4.7.0=h797046b_3 + - libtiff=4.7.0=h797046b_4 - libwebp-base=1.5.0=h3b0e114_0 - libwinpthread=12.0.0.r4.gg4f2fc60ca=h57928b3_9 - libxcb=1.17.0=h0e4246c_0 @@ -80,13 +82,13 @@ dependencies: - matplotlib-base=3.8.4=py312hfee7060_2 - mkl=2024.2.2=h66d3029_15 - msgpack-python=1.1.0=py312hd5eb7cc_0 - - mumps-seq=5.7.3=hbaa6519_9 + - mumps-seq=5.7.3=hbaa6519_10 - munkres=1.1.4=pyh9f0ad1d_0 - numcodecs=0.15.1=py312h72972c8_0 - numpy=1.26.4=py312h8753938_0 - openjpeg=2.5.3=h4d64b90_0 - openssl=3.5.0=ha4e3fda_0 - - packaging=25.0=pyhd8ed1ab_0 + - packaging=25.0=pyh29332c3_1 - pandas=2.2.3=py312h72972c8_3 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py312h381445a_1 @@ -104,12 +106,12 @@ dependencies: - python-dateutil=2.9.0.post0=pyhff2d567_1 - python-mumps=0.0.3=py312h8095395_0 - python-tzdata=2025.2=pyhd8ed1ab_0 - - python_abi=3.12=6_cp312 + - python_abi=3.12=7_cp312 - pytz=2025.2=pyhd8ed1ab_0 - pyyaml=6.0.2=py312h31fea79_2 - scikit-learn=1.4.2=py312h816cc57_1 - scipy=1.14.1=py312h337df96_2 - - setuptools=78.1.1=pyhff2d567_0 + - setuptools=79.0.1=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - tbb=2021.13.0=h62715c5_1 @@ -142,11 +144,11 @@ dependencies: - zstandard=0.23.0=py312h4389bb4_1 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils == 0.5.0a3 - - geoh5py == 0.11.0a4 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@730fa00953165f6fd5a87c3942d05cf8e0a7e164 - - octree-creation-app == 0.3.0a2 - - param-sweeps == 0.2.1a1 + - geoapps-utils == 0.5.0a3 --hash=sha256:a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c + - geoh5py == 0.11.0a4 --hash=sha256:4965e934b1e57460f98f76f96eca100abf48fd722245154c35af86e7ecbc10a6 + - mira-simpeg == 0.23.0.1a3 --hash=sha256:14467e65d801e082bac8a4d972a30b162018df27d06310fb1f2c6960968f88d2 + - octree-creation-app == 0.3.0a2 --hash=sha256:002896126bf5a958aad1bb9c0a272bfd3c6985d1456dc8022c4e07b5582730ff + - param-sweeps == 0.2.1a1 --hash=sha256:777618dd6eef4b6e86b4976e01c29bb202abb9d295b0774baeabf7534fb9389c variables: KMP_WARNINGS: 0 diff --git a/py-3.10.conda-lock.yml b/py-3.10.conda-lock.yml index 1a287b11..07e56e14 100644 --- a/py-3.10.conda-lock.yml +++ b/py-3.10.conda-lock.yml @@ -15,8 +15,8 @@ version: 1 metadata: content_hash: - win-64: e1a8f401cfc4677a5d0a5b1bfd8b2b391bfc5eaccab239b55c1974599d111e83 - linux-64: 786f21c248833646f6ecbdad8c0a52609fa162238698d09693a88e0055df2fc3 + win-64: 781e879b367bd7fe9ea047150af7fd0aadd7c5d20d87da004e52727950042707 + linux-64: 6792419f707082db0392c7c66ae972128d5c2dcf3407d75de33f30b4e4f1e33d channels: - url: conda-forge used_env_vars: [] @@ -153,7 +153,7 @@ package: dependencies: exceptiongroup: '>=1.0.2' idna: '>=2.8' - python: '>=3.9' + python: '' sniffio: '>=1.1' typing_extensions: '>=4.5' url: https://repo.prefix.dev/conda-forge/noarch/anyio-4.9.0-pyh29332c3_0.conda @@ -345,7 +345,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' typing_extensions: '>=4.0.0' url: https://repo.prefix.dev/conda-forge/noarch/async-lru-2.0.5-pyh29332c3_0.conda hash: @@ -449,7 +449,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' webencodings: '' url: https://repo.prefix.dev/conda-forge/noarch/bleach-6.2.0-pyh29332c3_4.conda hash: @@ -665,22 +665,24 @@ package: version: 2025.1.31 manager: conda platform: linux-64 - dependencies: {} - url: https://repo.prefix.dev/conda-forge/linux-64/ca-certificates-2025.1.31-hbcca054_0.conda + dependencies: + __unix: '' + url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.1.31-hbd8a1cb_1.conda hash: - md5: 19f3a56f68d2fd06c516076bff482c52 - sha256: bf832198976d559ab44d6cdb315642655547e26d826e34da67cbee6624cda189 + md5: e74273d9fc5ab633d613cde474b55157 + sha256: 43878eddf8eb46e3ba7fcbe77a2f8d00aab9a66d9ff63bc4d072b7af17481197 category: main optional: false - name: ca-certificates version: 2025.1.31 manager: conda platform: win-64 - dependencies: {} - url: https://repo.prefix.dev/conda-forge/win-64/ca-certificates-2025.1.31-h56e8100_0.conda + dependencies: + __win: '' + url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.1.31-h4c7d964_1.conda hash: - md5: 5304a31607974dfc2110dfbb662ed092 - sha256: 1bedccdf25a3bd782d6b0e57ddd97cdcda5501716009f2de4479a779221df155 + md5: fb8af741d752521fb48b8d116c9b044e + sha256: d6326613de7aea644f4c3b5fadd87d7b19714fe2ba31c9e2d2cdd65830f95cd4 category: main optional: false - name: cached-property @@ -1362,27 +1364,27 @@ package: category: dev optional: true - name: executing - version: 2.1.0 + version: 2.2.0 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/executing-2.1.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/executing-2.2.0-pyhd8ed1ab_0.conda hash: - md5: ef8b5fca76806159fc25b4f48d8737eb - sha256: 28d25ea375ebab4bf7479228f8430db20986187b04999136ff5c722ebd32eb60 + md5: 81d30c08f9a3e556e8ca9e124b044d14 + sha256: 7510dd93b9848c6257c43fdf9ad22adf62e7aa6da5f12a6a757aed83bcfedf05 category: dev optional: true - name: executing - version: 2.1.0 + version: 2.2.0 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/executing-2.1.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/executing-2.2.0-pyhd8ed1ab_0.conda hash: - md5: ef8b5fca76806159fc25b4f48d8737eb - sha256: 28d25ea375ebab4bf7479228f8430db20986187b04999136ff5c722ebd32eb60 + md5: 81d30c08f9a3e556e8ca9e124b044d14 + sha256: 7510dd93b9848c6257c43fdf9ad22adf62e7aa6da5f12a6a757aed83bcfedf05 category: dev optional: true - name: fasteners @@ -1477,14 +1479,12 @@ package: manager: conda platform: linux-64 dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - libpng: '>=1.6.47,<1.7.0a0' - libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/freetype-2.13.3-h48d6fc4_0.conda + libfreetype: 2.13.3 + libfreetype6: 2.13.3 + url: https://repo.prefix.dev/conda-forge/linux-64/freetype-2.13.3-ha770c72_1.conda hash: - md5: 9ecfd6f2ca17077dd9c2d24770bb9ccd - sha256: 7385577509a9c4730130f54bb6841b9b416249d5f4e9f74bf313e6378e313c57 + md5: 9ccd736d31e0c6e41f54e704e5312811 + sha256: 7ef7d477c43c12a5b4cddcf048a83277414512d1116aba62ebadfa7056a7d84f category: main optional: false - name: freetype @@ -1492,15 +1492,12 @@ package: manager: conda platform: win-64 dependencies: - libpng: '>=1.6.47,<1.7.0a0' - libzlib: '>=1.3.1,<2.0a0' - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/freetype-2.13.3-h0b5ce68_0.conda + libfreetype: 2.13.3 + libfreetype6: 2.13.3 + url: https://repo.prefix.dev/conda-forge/win-64/freetype-2.13.3-h57928b3_1.conda hash: - md5: 9c461ed7b07fb360d2c8cfe726c7d521 - sha256: 67e3af0fbe6c25f5ab1af9a3d3000464c5e88a8a0b4b06602f4a5243a8a1fd42 + md5: 633504fe3f96031192e40e3e6c18ef06 + sha256: 0bcc9c868d769247c12324f957c97c4dbee7e4095485db90d9c295bcb3b1bb43 category: main optional: false - name: fsspec @@ -1566,7 +1563,7 @@ package: category: main optional: false - name: greenlet - version: 3.2.0 + version: 3.2.1 manager: conda platform: linux-64 dependencies: @@ -1575,14 +1572,14 @@ 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.0-py310hf71b8c6_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/greenlet-3.2.1-py310hf71b8c6_0.conda hash: - md5: 2d0aa4f1ea2b448a962d36d129c361cf - sha256: 9bab6545c1dc4f2d2e5eff1f0a740d348fc7985a84d99b91d20ba22e8f59e67d + md5: 2ea1237eeb69f327d507f9332db1f8c3 + sha256: 5571c71917ac625bd9389858e5a179f5cf9d20073f54ebef9ed8847ba7867d2c category: dev optional: true - name: greenlet - version: 3.2.0 + version: 3.2.1 manager: conda platform: win-64 dependencies: @@ -1591,10 +1588,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/greenlet-3.2.0-py310h9e98ed7_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/greenlet-3.2.1-py310h9e98ed7_0.conda hash: - md5: ab3eb05a1a08628fe621b83d943ea491 - sha256: b1606a7e1b19e62ef987a230c4b671af5e2647b3418a72ba1c44709bd50f3279 + md5: c49e029786080b80e56a06583e49a906 + sha256: db39f0908d8763e53d06f7ef18a694b60c244eb12414b435ff94f528ed89fba8 category: dev optional: true - name: h11 @@ -2087,7 +2084,7 @@ package: pickleshare: '' prompt-toolkit: '>=3.0.41,<3.1.0' pygments: '>=2.4.0' - python: '>=3.10' + python: '' stack_data: '' traitlets: '>=5.13.0' typing_extensions: '>=4.6' @@ -2374,29 +2371,29 @@ package: category: dev optional: true - name: jsonschema-specifications - version: 2024.10.1 + version: 2025.4.1 manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' referencing: '>=0.31.0' - url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-specifications-2024.10.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-specifications-2025.4.1-pyh29332c3_0.conda hash: - md5: 3b519bc21bc80e60b456f1e62962a766 - sha256: 37127133837444cf0e6d1a95ff5a505f8214ed4e89e8e9343284840e674c6891 + md5: 41ff526b1083fde51fbdc93f29282e0e + sha256: 66fbad7480f163509deec8bd028cd3ea68e58022982c838683586829f63f3efa category: dev optional: true - name: jsonschema-specifications - version: 2024.10.1 + version: 2025.4.1 manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' referencing: '>=0.31.0' - url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-specifications-2024.10.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-specifications-2025.4.1-pyh29332c3_0.conda hash: - md5: 3b519bc21bc80e60b456f1e62962a766 - sha256: 37127133837444cf0e6d1a95ff5a505f8214ed4e89e8e9343284840e674c6891 + md5: 41ff526b1083fde51fbdc93f29282e0e + sha256: 66fbad7480f163509deec8bd028cd3ea68e58022982c838683586829f63f3efa category: dev optional: true - name: jsonschema-with-format-nongpl @@ -2664,7 +2661,7 @@ package: dependencies: jsonschema-with-format-nongpl: '>=4.18.0' packaging: '' - python: '>=3.9' + python: '' python-json-logger: '>=2.0.4' pyyaml: '>=5.3' referencing: '' @@ -2764,7 +2761,7 @@ package: category: dev optional: true - name: jupyterlab - version: 4.4.0 + version: 4.4.1 manager: conda platform: linux-64 dependencies: @@ -2784,14 +2781,14 @@ package: tomli: '>=1.2.2' tornado: '>=6.2.0' traitlets: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.4.1-pyhd8ed1ab_0.conda hash: - md5: 2da6a5e2c788a1b1998b24c50a18572a - sha256: 4d225d094d1e5a8e95c2bde0f9c9bbc5aac52d9abf7fd597dd7af0f467b44347 + md5: 2d29877427f2c249621557dd9c840d69 + sha256: 23ef44cc7ee1f18c3ec462f27f31e75c7260a0f04b9736d70c631eba5f9c31f0 category: dev optional: true - name: jupyterlab - version: 4.4.0 + version: 4.4.1 manager: conda platform: win-64 dependencies: @@ -2811,10 +2808,10 @@ package: tomli: '>=1.2.2' tornado: '>=6.2.0' traitlets: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.4.1-pyhd8ed1ab_0.conda hash: - md5: 2da6a5e2c788a1b1998b24c50a18572a - sha256: 4d225d094d1e5a8e95c2bde0f9c9bbc5aac52d9abf7fd597dd7af0f467b44347 + md5: 2d29877427f2c249621557dd9c840d69 + sha256: 23ef44cc7ee1f18c3ec462f27f31e75c7260a0f04b9736d70c631eba5f9c31f0 category: dev optional: true - name: jupyterlab_pygments @@ -3092,12 +3089,13 @@ package: manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://repo.prefix.dev/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2 + __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 hash: - md5: 76bbff344f0134279f225174e9064c8f - sha256: cb55f36dcd898203927133280ae1dc643368af041a48bcf7c026acb7c47b0c12 + md5: 9344155d33912347b37f0ae6c410a835 + sha256: 412381a43d5ff9bbed82cd52a0bbca5b90623f62e41007c9c42d3870c60945ff category: main optional: false - name: lerc @@ -3105,12 +3103,13 @@ package: manager: conda platform: win-64 dependencies: + ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' - vs2015_runtime: '>=14.29.30037' - url: https://repo.prefix.dev/conda-forge/win-64/lerc-4.0.0-h63175ca_0.tar.bz2 + vc14_runtime: '>=14.29.30139' + url: https://repo.prefix.dev/conda-forge/win-64/lerc-4.0.0-h6470a55_1.conda hash: - md5: 1900cb3cab5055833cfddb0ba233b074 - sha256: f4f39d7f6a2f9b407f8fb567a6c25755270421731d70f0ff331f5de4fa367488 + md5: c1b81da6d29a14b542da14a36c9fbf3f + sha256: 868a3dff758cc676fa1286d3f36c3e0101cca56730f7be531ab84dc91ec58e9d category: main optional: false - name: libaec @@ -3316,10 +3315,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libdeflate-1.23-h4ddbbb0_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libdeflate-1.23-h86f0d12_0.conda hash: - md5: 8dfae1d2e74767e9ce36d5fa0d8605db - sha256: 511d801626d02f4247a04fff957cc6e9ec4cc7e8622bd9acd076bcdc5de5fe66 + md5: 27fe770decaf469a53f3e3a6d593067f + sha256: 4db2f70a1441317d964e84c268e388110ad9cf75ca98994d1336d670e62e6f07 category: main optional: false - name: libdeflate @@ -3330,10 +3329,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/libdeflate-1.23-h9062f6e_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libdeflate-1.23-h76ddb4d_0.conda hash: - md5: a9624935147a25b06013099d3038e467 - sha256: 96c47725a8258159295996ea2758fa0ff9bea330e72b59641642e16be8427ce8 + md5: 34f03138e46543944d4d7f8538048842 + sha256: 881244050587dc658078ee45dfc792ecb458bbb1fdc861da67948d747b117dc2 category: main optional: false - name: libdlf @@ -3442,6 +3441,61 @@ package: sha256: d3b0b8812eab553d3464bbd68204f007f1ebadf96ce30eb0cbc5159f72e353f5 category: main optional: false +- name: libfreetype + version: 2.13.3 + manager: conda + platform: linux-64 + dependencies: + libfreetype6: '>=2.13.3' + url: https://repo.prefix.dev/conda-forge/linux-64/libfreetype-2.13.3-ha770c72_1.conda + hash: + md5: 51f5be229d83ecd401fb369ab96ae669 + sha256: 7be9b3dac469fe3c6146ff24398b685804dfc7a1de37607b84abd076f57cc115 + category: main + optional: false +- name: libfreetype + version: 2.13.3 + manager: conda + platform: win-64 + dependencies: + libfreetype6: '>=2.13.3' + url: https://repo.prefix.dev/conda-forge/win-64/libfreetype-2.13.3-h57928b3_1.conda + hash: + md5: 410ba2c8e7bdb278dfbb5d40220e39d2 + sha256: e5bc7d0a8d11b7b234da4fcd9d78f297f7dec3fec8bd06108fd3ac7b2722e32e + category: main + optional: false +- name: libfreetype6 + version: 2.13.3 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + 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 + hash: + md5: 3c255be50a506c50765a93a6644f32fe + sha256: 7759bd5c31efe5fbc36a7a1f8ca5244c2eabdbeb8fc1bee4b99cf989f35c7d81 + category: main + optional: false +- name: libfreetype6 + version: 2.13.3 + manager: conda + platform: win-64 + dependencies: + libpng: '>=1.6.47,<1.7.0a0' + libzlib: '>=1.3.1,<2.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://repo.prefix.dev/conda-forge/win-64/libfreetype6-2.13.3-h0b5ce68_1.conda + hash: + md5: a84b7d1a13060a9372bea961a8131dbc + sha256: 61308653e7758ff36f80a60d598054168a1389ddfbac46d7864c415fafe18e69 + category: main + optional: false - name: libgcc version: 14.2.0 manager: conda @@ -3576,29 +3630,30 @@ package: category: main optional: false - name: libjpeg-turbo - version: 3.0.0 + version: 3.1.0 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - url: https://repo.prefix.dev/conda-forge/linux-64/libjpeg-turbo-3.0.0-hd590300_1.conda + __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 hash: - md5: ea25936bb4080d843790b586850f82b8 - sha256: b954e09b7e49c2f2433d6f3bb73868eda5e378278b0f8c1dd10a7ef090e14f2f + md5: 9fa334557db9f63da6c9285fd2a48638 + sha256: 98b399287e27768bf79d48faba8a99a2289748c65cd342ca21033fab1860d4a4 category: main optional: false - name: libjpeg-turbo - version: 3.0.0 + version: 3.1.0 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/libjpeg-turbo-3.0.0-hcfcfb64_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/libjpeg-turbo-3.1.0-h2466b09_0.conda hash: - md5: 3f1b948619c45b1ca714d60c7389092c - sha256: 4e7808e3098b4b4ed7e287f63bb24f9045cc4d95bfd39f0db870fc2837d74dff + md5: 7c51d27540389de84852daa1cdb9c63c + sha256: e61b0adef3028b51251124e43eb6edf724c67c0f6736f1628b02511480ac354e category: main optional: false - name: liblapack @@ -3848,16 +3903,16 @@ package: lerc: '>=4.0.0,<5.0a0' libdeflate: '>=1.23,<1.24.0a0' libgcc: '>=13' - libjpeg-turbo: '>=3.0.0,<4.0a0' - liblzma: '>=5.6.3,<6.0a0' + libjpeg-turbo: '>=3.1.0,<4.0a0' + liblzma: '>=5.8.1,<6.0a0' libstdcxx: '>=13' - libwebp-base: '>=1.4.0,<2.0a0' + libwebp-base: '>=1.5.0,<2.0a0' libzlib: '>=1.3.1,<2.0a0' - zstd: '>=1.5.6,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libtiff-4.7.0-hd9ff511_3.conda + zstd: '>=1.5.7,<1.6.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/libtiff-4.7.0-hd9ff511_4.conda hash: - md5: 0ea6510969e1296cc19966fad481f6de - sha256: b224e16b88d76ea95e4af56e2bc638c603bd26a770b98d117d04541d3aafa002 + md5: 6c1028898cf3a2032d9af46689e1b81a + sha256: 7480613af15795281bd338a4d3d2ca148f9c2ecafc967b9cc233e78ba2fe4a6d category: main optional: false - name: libtiff @@ -3867,17 +3922,17 @@ package: dependencies: lerc: '>=4.0.0,<5.0a0' libdeflate: '>=1.23,<1.24.0a0' - libjpeg-turbo: '>=3.0.0,<4.0a0' - liblzma: '>=5.6.3,<6.0a0' + libjpeg-turbo: '>=3.1.0,<4.0a0' + liblzma: '>=5.8.1,<6.0a0' libzlib: '>=1.3.1,<2.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - zstd: '>=1.5.6,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/libtiff-4.7.0-h797046b_3.conda + zstd: '>=1.5.7,<1.6.0a0' + url: https://repo.prefix.dev/conda-forge/win-64/libtiff-4.7.0-h797046b_4.conda hash: - md5: defed79ff7a9164ad40320e3f116a138 - sha256: c363a8baba4ce12b8f01f0ab74fe8b0dc83facd89c6604f4a191084923682768 + md5: 7d938ca70c64c5516767b4eae0a56172 + sha256: 3456e2a6dfe6c00fd0cda316f0cbb47caddf77f83d3ed4040b6ad17ec1610d2a category: main optional: false - name: libuuid @@ -4356,7 +4411,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' typing_extensions: '' url: https://repo.prefix.dev/conda-forge/noarch/mistune-3.1.3-pyh29332c3_0.conda hash: @@ -4428,10 +4483,10 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/linux-64/mumps-include-5.7.3-h82cca05_9.conda + url: https://repo.prefix.dev/conda-forge/linux-64/mumps-include-5.7.3-h82cca05_10.conda hash: - md5: 8207b975a176b5c08937bdeeeeecca20 - sha256: bb41dda1084bc29c79bdb1da693295c5bc55da223fb74c4ef8487a81964cbf48 + md5: d6c7d8811686ed912ed4317831dd8c44 + sha256: c723d6e331444411db0a871958fc45621758595d12b4d6561fa20324535ce67a category: main optional: false - name: mumps-seq @@ -4449,10 +4504,10 @@ 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-hb5d91fa_9.conda + url: https://repo.prefix.dev/conda-forge/linux-64/mumps-seq-5.7.3-h06cbf8f_10.conda hash: - md5: 33982046ecd8eed02447ddd7810aad37 - sha256: 196b227df4635ce4294d40d885fa231d8d037839a95a1eee8923319985276bbe + md5: deb3c7cb10d67fde01d264b3d5bc79bc + sha256: bf7049864150d714debbe3d89a9db79e3163655c1fbab7b18b1fd613f9e27878 category: main optional: false - name: mumps-seq @@ -4462,14 +4517,14 @@ package: dependencies: libblas: '>=3.9.0,<4.0a0' liblapack: '>=3.9.0,<4.0a0' - llvm-openmp: '>=19.1.7' + llvm-openmp: '>=20.1.3' 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_9.conda + url: https://repo.prefix.dev/conda-forge/win-64/mumps-seq-5.7.3-hbaa6519_10.conda hash: - md5: 3a30d32db33cc226f7a2c78d485b0503 - sha256: 953c384a1b37b93bf7a2ee39b1c5763887f4d63ed220b65362103d6e6b4440a4 + md5: 5c35d7fd93b2d7cddaa3ce881aadad83 + sha256: 6209255427a10879ca3731ec04eecf112e92b617af60c053073c8330928cb8ab category: main optional: false - name: munkres @@ -4530,7 +4585,7 @@ package: myst-parser: '>=1.0.0' nbclient: '' nbformat: '>=5.0' - python: '>=3.9' + python: '' pyyaml: '' sphinx: '>=5' typing_extensions: '' @@ -4682,7 +4737,7 @@ package: packaging: '' pandocfilters: '>=1.4.1' pygments: '>=2.4.1' - python: '>=3.9' + python: '' traitlets: '>=5.1' url: https://repo.prefix.dev/conda-forge/noarch/nbconvert-core-7.16.6-pyh29332c3_0.conda hash: @@ -4786,37 +4841,37 @@ package: category: dev optional: true - name: notebook - version: 7.4.0 + version: 7.4.1 manager: conda platform: linux-64 dependencies: jupyter_server: '>=2.4.0,<3' - jupyterlab: '>=4.4.0,<4.5' + jupyterlab: '>=4.4.1,<4.5' jupyterlab_server: '>=2.27.1,<3' notebook-shim: '>=0.2,<0.3' python: '>=3.9' tornado: '>=6.2.0' - url: https://repo.prefix.dev/conda-forge/noarch/notebook-7.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/notebook-7.4.1-pyhd8ed1ab_0.conda hash: - md5: 7e82caa4495c513bcfb33a159e1222d4 - sha256: d3f70987bc1e1a20b122726a49a24e5e6f09d00c9862bb399cd1682cd59a1e1e + md5: 464cbf01bab382746e53f917ea40e5ce + sha256: b7239777f9ffe18de170a2adfef4574f9ea76bcddac26d65552607d16cced134 category: dev optional: true - name: notebook - version: 7.4.0 + version: 7.4.1 manager: conda platform: win-64 dependencies: jupyter_server: '>=2.4.0,<3' - jupyterlab: '>=4.4.0,<4.5' + jupyterlab: '>=4.4.1,<4.5' jupyterlab_server: '>=2.27.1,<3' notebook-shim: '>=0.2,<0.3' python: '>=3.9' tornado: '>=6.2.0' - url: https://repo.prefix.dev/conda-forge/noarch/notebook-7.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/notebook-7.4.1-pyhd8ed1ab_0.conda hash: - md5: 7e82caa4495c513bcfb33a159e1222d4 - sha256: d3f70987bc1e1a20b122726a49a24e5e6f09d00c9862bb399cd1682cd59a1e1e + md5: 464cbf01bab382746e53f917ea40e5ce + sha256: b7239777f9ffe18de170a2adfef4574f9ea76bcddac26d65552607d16cced134 category: dev optional: true - name: notebook-shim @@ -5012,11 +5067,11 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.8' - url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyhd8ed1ab_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda hash: - md5: 4088c0d078e2f5092ddf824495186229 - sha256: f759df4f492ae481505dcceb3d4485a120ee798af26711c92de20944a1185621 + md5: 58335b26c38bf4a20f399384c33cbcf9 + sha256: 289861ed0c13a15d7bbb408796af4de72c2fe67e2bcb0de98f4c3fce259d7991 category: main optional: false - name: packaging @@ -5024,11 +5079,11 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.8' - url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyhd8ed1ab_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda hash: - md5: 4088c0d078e2f5092ddf824495186229 - sha256: f759df4f492ae481505dcceb3d4485a120ee798af26711c92de20944a1185621 + md5: 58335b26c38bf4a20f399384c33cbcf9 + sha256: 289861ed0c13a15d7bbb408796af4de72c2fe67e2bcb0de98f4c3fce259d7991 category: main optional: false - name: pandas @@ -5323,7 +5378,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.3.7-pyh29332c3_0.conda hash: md5: e57da6fe54bb3a5556cf36d199ff07d8 @@ -5579,7 +5634,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda hash: md5: 12c566707c80111f9799308d9e265aef @@ -5786,7 +5841,7 @@ package: isort: '>=4.2.5,<7,!=5.13.0' mccabe: '>=0.6,<0.8' platformdirs: '>=2.2.0' - python: '>=3.9' + python: '' tomli: '>=1.1.0' tomlkit: '>=0.10.1' typing_extensions: '>=3.10.0' @@ -6138,10 +6193,10 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/linux-64/python_abi-3.10-6_cp310.conda + url: https://repo.prefix.dev/conda-forge/noarch/python_abi-3.10-7_cp310.conda hash: - md5: 01f0f2104b8466714804a72e511de599 - sha256: 716287b4c15fb9a78b49a627dd7057c9fc7a29c6d4056b506fc84dab2cd2ca85 + md5: 44e871cba2b162368476a84b8d040b6c + sha256: 1316c66889313d9caebcfa5d5e9e6af25f8ba09396fc1bc196a08a3febbbabb8 category: main optional: false - name: python_abi @@ -6149,10 +6204,10 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/win-64/python_abi-3.10-6_cp310.conda + url: https://repo.prefix.dev/conda-forge/noarch/python_abi-3.10-7_cp310.conda hash: - md5: 041cd0bfc8be015fbd78b5b2fe9b168e - sha256: 27015f67c4cea426e16cdc8054a1a3f9e78825c2e9b8a594a34e0feb9f7de606 + md5: 44e871cba2b162368476a84b8d040b6c + sha256: 1316c66889313d9caebcfa5d5e9e6af25f8ba09396fc1bc196a08a3febbbabb8 category: main optional: false - name: pytz @@ -6345,7 +6400,7 @@ package: platform: win-64 dependencies: attrs: '>=22.2.0' - python: '>=3.9' + 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 @@ -6577,27 +6632,27 @@ package: category: dev optional: true - name: setuptools - version: 78.1.1 + version: 79.0.1 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/setuptools-78.1.1-pyhff2d567_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/setuptools-79.0.1-pyhff2d567_0.conda hash: - md5: 72437384f9364b6baf20b6dd68d282c2 - sha256: 33a0cab4724d8130055f65e6edc101df7136f2f26cefb52669df88de8aeee28c + md5: fa6669cc21abd4b7b6c5393b7bc71914 + sha256: 5ebc4bb71fbdc8048b08848519150c8d44b8eb18445711d3258c9d402ba87a2c category: main optional: false - name: setuptools - version: 78.1.1 + version: 79.0.1 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/setuptools-78.1.1-pyhff2d567_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/setuptools-79.0.1-pyhff2d567_0.conda hash: - md5: 72437384f9364b6baf20b6dd68d282c2 - sha256: 33a0cab4724d8130055f65e6edc101df7136f2f26cefb52669df88de8aeee28c + md5: fa6669cc21abd4b7b6c5393b7bc71914 + sha256: 5ebc4bb71fbdc8048b08848519150c8d44b8eb18445711d3258c9d402ba87a2c category: main optional: false - name: six @@ -7730,7 +7785,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.13.2-pyh29332c3_0.conda hash: md5: 83fc6ae00127671e301c9f44254c31b8 @@ -8398,7 +8453,7 @@ package: numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: https://files.pythonhosted.org/packages/7f/0b/36222385937dcda4b4789303027fc538103201f72b4bce99d53398a5b5da/geoapps_utils-0.5.0a3-py3-none-any.whl + url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/geoapps-utils/0.5.0-alpha.3/geoapps_utils-0.5.0a3-py3-none-any.whl hash: sha256: a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c category: main @@ -8412,7 +8467,7 @@ package: numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: https://files.pythonhosted.org/packages/7f/0b/36222385937dcda4b4789303027fc538103201f72b4bce99d53398a5b5da/geoapps_utils-0.5.0a3-py3-none-any.whl + url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/geoapps-utils/0.5.0-alpha.3/geoapps_utils-0.5.0a3-py3-none-any.whl hash: sha256: a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c category: main @@ -8426,7 +8481,7 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - url: https://files.pythonhosted.org/packages/cb/76/a6f12182119218ad7b55ad622a89be4596c1cc37b1182c3f121242c0b0fc/geoh5py-0.11.0a4-py3-none-any.whl + url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/geoh5py/0.11.0-alpha.4/geoh5py-0.11.0a4-py3-none-any.whl hash: sha256: 4965e934b1e57460f98f76f96eca100abf48fd722245154c35af86e7ecbc10a6 category: main @@ -8440,17 +8495,19 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - url: https://files.pythonhosted.org/packages/cb/76/a6f12182119218ad7b55ad622a89be4596c1cc37b1182c3f121242c0b0fc/geoh5py-0.11.0a4-py3-none-any.whl + url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/geoh5py/0.11.0-alpha.4/geoh5py-0.11.0a4-py3-none-any.whl hash: sha256: 4965e934b1e57460f98f76f96eca100abf48fd722245154c35af86e7ecbc10a6 category: main optional: false - name: mira-simpeg - version: 0.23.0.1a3.dev2+g730fa0095 + version: 0.23.0.1a3 manager: pip platform: linux-64 dependencies: + dask: '*' discretize: '>=0.11' + fsspec: '>=0.3.3' geoana: '>=0.7.0' geoh5py: '>=0.11.0a1,<0.12.dev' libdlf: '*' @@ -8458,20 +8515,20 @@ package: numpy: '>=1.22' pymatsolver: '>=0.3' scipy: '>=1.8' - url: git+https://github.com/MiraGeoscience/simpeg.git@730fa00953165f6fd5a87c3942d05cf8e0a7e164 + zarr: '*' + url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/mira-simpeg/0.23.0.1a3+mira/mira_simpeg-0.23.0.1a3-py3-none-any.whl hash: - sha256: 730fa00953165f6fd5a87c3942d05cf8e0a7e164 - source: - type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@730fa00953165f6fd5a87c3942d05cf8e0a7e164 + sha256: 14467e65d801e082bac8a4d972a30b162018df27d06310fb1f2c6960968f88d2 category: main optional: false - name: mira-simpeg - version: 0.23.0.1a3.dev2+g730fa0095 + version: 0.23.0.1a3 manager: pip platform: win-64 dependencies: + dask: '*' discretize: '>=0.11' + fsspec: '>=0.3.3' geoana: '>=0.7.0' geoh5py: '>=0.11.0a1,<0.12.dev' libdlf: '*' @@ -8479,12 +8536,10 @@ package: numpy: '>=1.22' pymatsolver: '>=0.3' scipy: '>=1.8' - url: git+https://github.com/MiraGeoscience/simpeg.git@730fa00953165f6fd5a87c3942d05cf8e0a7e164 + zarr: '*' + url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/mira-simpeg/0.23.0.1a3+mira/mira_simpeg-0.23.0.1a3-py3-none-any.whl hash: - sha256: 730fa00953165f6fd5a87c3942d05cf8e0a7e164 - source: - type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@730fa00953165f6fd5a87c3942d05cf8e0a7e164 + sha256: 14467e65d801e082bac8a4d972a30b162018df27d06310fb1f2c6960968f88d2 category: main optional: false - name: octree-creation-app @@ -8498,7 +8553,7 @@ package: numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: https://files.pythonhosted.org/packages/8a/60/0a425a5a8cd25d46d8141bf24b20511d0176c9fae0e617f0eeca4675366b/octree_creation_app-0.3.0a2-py3-none-any.whl + url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/octree-creation-app/0.3.0-alpha.2/octree_creation_app-0.3.0a2-py3-none-any.whl hash: sha256: 002896126bf5a958aad1bb9c0a272bfd3c6985d1456dc8022c4e07b5582730ff category: main @@ -8514,7 +8569,7 @@ package: numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: https://files.pythonhosted.org/packages/8a/60/0a425a5a8cd25d46d8141bf24b20511d0176c9fae0e617f0eeca4675366b/octree_creation_app-0.3.0a2-py3-none-any.whl + url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/octree-creation-app/0.3.0-alpha.2/octree_creation_app-0.3.0a2-py3-none-any.whl hash: sha256: 002896126bf5a958aad1bb9c0a272bfd3c6985d1456dc8022c4e07b5582730ff category: main @@ -8526,7 +8581,7 @@ package: dependencies: geoh5py: '>=0.11.0a3,<0.12.dev' numpy: '>=1.26.0,<1.27.0' - url: https://files.pythonhosted.org/packages/a9/b4/5352714c3cd8075b037aac1fcbcfb5f539449c020031cb663ad82a3944d0/param_sweeps-0.2.1a1-py3-none-any.whl + url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/param-sweeps/0.2.1-alpha.1/param_sweeps-0.2.1a1-py3-none-any.whl hash: sha256: 777618dd6eef4b6e86b4976e01c29bb202abb9d295b0774baeabf7534fb9389c category: main @@ -8538,7 +8593,7 @@ package: dependencies: geoh5py: '>=0.11.0a3,<0.12.dev' numpy: '>=1.26.0,<1.27.0' - url: https://files.pythonhosted.org/packages/a9/b4/5352714c3cd8075b037aac1fcbcfb5f539449c020031cb663ad82a3944d0/param_sweeps-0.2.1a1-py3-none-any.whl + url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/param-sweeps/0.2.1-alpha.1/param_sweeps-0.2.1a1-py3-none-any.whl hash: sha256: 777618dd6eef4b6e86b4976e01c29bb202abb9d295b0774baeabf7534fb9389c category: main diff --git a/py-3.11.conda-lock.yml b/py-3.11.conda-lock.yml index c9a7a2e6..5d396dda 100644 --- a/py-3.11.conda-lock.yml +++ b/py-3.11.conda-lock.yml @@ -15,8 +15,8 @@ version: 1 metadata: content_hash: - win-64: a88e5079ab2ac39fd52b1c7556f4afc444101de2cf7fbdf1da18097e4d71d43f - linux-64: cb6665c81a612550aea5a8924b42c6100e242ca0ce8a2e66e9cd64952882efc4 + win-64: ea0337461fc017ab34b534c39ddd1a14ee998ff73bb9c1a247fd97254f1403d9 + linux-64: 54ab3a684de79675ed893a381524115fd11580146bd0276a5f1b889d2229a880 channels: - url: conda-forge used_env_vars: [] @@ -137,7 +137,7 @@ package: dependencies: exceptiongroup: '>=1.0.2' idna: '>=2.8' - python: '>=3.9' + python: '' sniffio: '>=1.1' typing_extensions: '>=4.5' url: https://repo.prefix.dev/conda-forge/noarch/anyio-4.9.0-pyh29332c3_0.conda @@ -153,7 +153,7 @@ package: dependencies: exceptiongroup: '>=1.0.2' idna: '>=2.8' - python: '>=3.9' + python: '' sniffio: '>=1.1' typing_extensions: '>=4.5' url: https://repo.prefix.dev/conda-forge/noarch/anyio-4.9.0-pyh29332c3_0.conda @@ -330,7 +330,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' typing_extensions: '>=4.0.0' url: https://repo.prefix.dev/conda-forge/noarch/async-lru-2.0.5-pyh29332c3_0.conda hash: @@ -343,7 +343,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' typing_extensions: '>=4.0.0' url: https://repo.prefix.dev/conda-forge/noarch/async-lru-2.0.5-pyh29332c3_0.conda hash: @@ -434,7 +434,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' webencodings: '' url: https://repo.prefix.dev/conda-forge/noarch/bleach-6.2.0-pyh29332c3_4.conda hash: @@ -447,7 +447,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' webencodings: '' url: https://repo.prefix.dev/conda-forge/noarch/bleach-6.2.0-pyh29332c3_4.conda hash: @@ -663,22 +663,24 @@ package: version: 2025.1.31 manager: conda platform: linux-64 - dependencies: {} - url: https://repo.prefix.dev/conda-forge/linux-64/ca-certificates-2025.1.31-hbcca054_0.conda + dependencies: + __unix: '' + url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.1.31-hbd8a1cb_1.conda hash: - md5: 19f3a56f68d2fd06c516076bff482c52 - sha256: bf832198976d559ab44d6cdb315642655547e26d826e34da67cbee6624cda189 + md5: e74273d9fc5ab633d613cde474b55157 + sha256: 43878eddf8eb46e3ba7fcbe77a2f8d00aab9a66d9ff63bc4d072b7af17481197 category: main optional: false - name: ca-certificates version: 2025.1.31 manager: conda platform: win-64 - dependencies: {} - url: https://repo.prefix.dev/conda-forge/win-64/ca-certificates-2025.1.31-h56e8100_0.conda + dependencies: + __win: '' + url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.1.31-h4c7d964_1.conda hash: - md5: 5304a31607974dfc2110dfbb662ed092 - sha256: 1bedccdf25a3bd782d6b0e57ddd97cdcda5501716009f2de4479a779221df155 + md5: fb8af741d752521fb48b8d116c9b044e + sha256: d6326613de7aea644f4c3b5fadd87d7b19714fe2ba31c9e2d2cdd65830f95cd4 category: main optional: false - name: cached-property @@ -1386,27 +1388,27 @@ package: category: dev optional: true - name: executing - version: 2.1.0 + version: 2.2.0 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/executing-2.1.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/executing-2.2.0-pyhd8ed1ab_0.conda hash: - md5: ef8b5fca76806159fc25b4f48d8737eb - sha256: 28d25ea375ebab4bf7479228f8430db20986187b04999136ff5c722ebd32eb60 + md5: 81d30c08f9a3e556e8ca9e124b044d14 + sha256: 7510dd93b9848c6257c43fdf9ad22adf62e7aa6da5f12a6a757aed83bcfedf05 category: dev optional: true - name: executing - version: 2.1.0 + version: 2.2.0 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/executing-2.1.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/executing-2.2.0-pyhd8ed1ab_0.conda hash: - md5: ef8b5fca76806159fc25b4f48d8737eb - sha256: 28d25ea375ebab4bf7479228f8430db20986187b04999136ff5c722ebd32eb60 + md5: 81d30c08f9a3e556e8ca9e124b044d14 + sha256: 7510dd93b9848c6257c43fdf9ad22adf62e7aa6da5f12a6a757aed83bcfedf05 category: dev optional: true - name: fasteners @@ -1501,14 +1503,12 @@ package: manager: conda platform: linux-64 dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - libpng: '>=1.6.47,<1.7.0a0' - libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/freetype-2.13.3-h48d6fc4_0.conda + libfreetype: 2.13.3 + libfreetype6: 2.13.3 + url: https://repo.prefix.dev/conda-forge/linux-64/freetype-2.13.3-ha770c72_1.conda hash: - md5: 9ecfd6f2ca17077dd9c2d24770bb9ccd - sha256: 7385577509a9c4730130f54bb6841b9b416249d5f4e9f74bf313e6378e313c57 + md5: 9ccd736d31e0c6e41f54e704e5312811 + sha256: 7ef7d477c43c12a5b4cddcf048a83277414512d1116aba62ebadfa7056a7d84f category: main optional: false - name: freetype @@ -1516,15 +1516,12 @@ package: manager: conda platform: win-64 dependencies: - libpng: '>=1.6.47,<1.7.0a0' - libzlib: '>=1.3.1,<2.0a0' - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/freetype-2.13.3-h0b5ce68_0.conda + libfreetype: 2.13.3 + libfreetype6: 2.13.3 + url: https://repo.prefix.dev/conda-forge/win-64/freetype-2.13.3-h57928b3_1.conda hash: - md5: 9c461ed7b07fb360d2c8cfe726c7d521 - sha256: 67e3af0fbe6c25f5ab1af9a3d3000464c5e88a8a0b4b06602f4a5243a8a1fd42 + md5: 633504fe3f96031192e40e3e6c18ef06 + sha256: 0bcc9c868d769247c12324f957c97c4dbee7e4095485db90d9c295bcb3b1bb43 category: main optional: false - name: fsspec @@ -1590,7 +1587,7 @@ package: category: main optional: false - name: greenlet - version: 3.2.0 + version: 3.2.1 manager: conda platform: linux-64 dependencies: @@ -1599,14 +1596,14 @@ 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.0-py311hfdbb021_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/greenlet-3.2.1-py311hfdbb021_0.conda hash: - md5: e2d6b1307377bca8acfed2fa5e60d8d4 - sha256: 3e6f513e62422362a391fe4de514b1191da297cccc03a21f9e173731b138b521 + md5: 8aa3be2b6b9eff63f127a5dfcac60a43 + sha256: 89305a2aeb8ac976504962cf62bda1a14fd5db67cd7ef2026588992f0b5542ff category: dev optional: true - name: greenlet - version: 3.2.0 + version: 3.2.1 manager: conda platform: win-64 dependencies: @@ -1615,10 +1612,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/greenlet-3.2.0-py311hda3d55a_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/greenlet-3.2.1-py311hda3d55a_0.conda hash: - md5: d7503f1b3ee59d71c5801fe282d4eebf - sha256: f996197b139ec5122ea7b1c02e8b4d9f9f5725d89facf025e128f84023172215 + md5: 5b689f4b1109f129b8956d2276dae197 + sha256: ef291bdc06e54254da5657b55abbae1ef983491f4b60e2ca3ca8b60db394dc17 category: dev optional: true - name: h11 @@ -2088,7 +2085,7 @@ package: pickleshare: '' prompt-toolkit: '>=3.0.41,<3.1.0' pygments: '>=2.4.0' - python: '>=3.11' + python: '' stack_data: '' traitlets: '>=5.13.0' typing_extensions: '>=4.6' @@ -2113,7 +2110,7 @@ package: pickleshare: '' prompt-toolkit: '>=3.0.41,<3.1.0' pygments: '>=2.4.0' - python: '>=3.11' + python: '' stack_data: '' traitlets: '>=5.13.0' typing_extensions: '>=4.6' @@ -2426,29 +2423,29 @@ package: category: dev optional: true - name: jsonschema-specifications - version: 2024.10.1 + version: 2025.4.1 manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' referencing: '>=0.31.0' - url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-specifications-2024.10.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-specifications-2025.4.1-pyh29332c3_0.conda hash: - md5: 3b519bc21bc80e60b456f1e62962a766 - sha256: 37127133837444cf0e6d1a95ff5a505f8214ed4e89e8e9343284840e674c6891 + md5: 41ff526b1083fde51fbdc93f29282e0e + sha256: 66fbad7480f163509deec8bd028cd3ea68e58022982c838683586829f63f3efa category: dev optional: true - name: jsonschema-specifications - version: 2024.10.1 + version: 2025.4.1 manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' referencing: '>=0.31.0' - url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-specifications-2024.10.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-specifications-2025.4.1-pyh29332c3_0.conda hash: - md5: 3b519bc21bc80e60b456f1e62962a766 - sha256: 37127133837444cf0e6d1a95ff5a505f8214ed4e89e8e9343284840e674c6891 + md5: 41ff526b1083fde51fbdc93f29282e0e + sha256: 66fbad7480f163509deec8bd028cd3ea68e58022982c838683586829f63f3efa category: dev optional: true - name: jsonschema-with-format-nongpl @@ -2696,7 +2693,7 @@ package: dependencies: jsonschema-with-format-nongpl: '>=4.18.0' packaging: '' - python: '>=3.9' + python: '' python-json-logger: '>=2.0.4' pyyaml: '>=5.3' referencing: '' @@ -2716,7 +2713,7 @@ package: dependencies: jsonschema-with-format-nongpl: '>=4.18.0' packaging: '' - python: '>=3.9' + python: '' python-json-logger: '>=2.0.4' pyyaml: '>=5.3' referencing: '' @@ -2816,7 +2813,7 @@ package: category: dev optional: true - name: jupyterlab - version: 4.4.0 + version: 4.4.1 manager: conda platform: linux-64 dependencies: @@ -2836,14 +2833,14 @@ package: tomli: '>=1.2.2' tornado: '>=6.2.0' traitlets: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.4.1-pyhd8ed1ab_0.conda hash: - md5: 2da6a5e2c788a1b1998b24c50a18572a - sha256: 4d225d094d1e5a8e95c2bde0f9c9bbc5aac52d9abf7fd597dd7af0f467b44347 + md5: 2d29877427f2c249621557dd9c840d69 + sha256: 23ef44cc7ee1f18c3ec462f27f31e75c7260a0f04b9736d70c631eba5f9c31f0 category: dev optional: true - name: jupyterlab - version: 4.4.0 + version: 4.4.1 manager: conda platform: win-64 dependencies: @@ -2863,10 +2860,10 @@ package: tomli: '>=1.2.2' tornado: '>=6.2.0' traitlets: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.4.1-pyhd8ed1ab_0.conda hash: - md5: 2da6a5e2c788a1b1998b24c50a18572a - sha256: 4d225d094d1e5a8e95c2bde0f9c9bbc5aac52d9abf7fd597dd7af0f467b44347 + md5: 2d29877427f2c249621557dd9c840d69 + sha256: 23ef44cc7ee1f18c3ec462f27f31e75c7260a0f04b9736d70c631eba5f9c31f0 category: dev optional: true - name: jupyterlab_pygments @@ -3144,12 +3141,13 @@ package: manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://repo.prefix.dev/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2 + __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 hash: - md5: 76bbff344f0134279f225174e9064c8f - sha256: cb55f36dcd898203927133280ae1dc643368af041a48bcf7c026acb7c47b0c12 + md5: 9344155d33912347b37f0ae6c410a835 + sha256: 412381a43d5ff9bbed82cd52a0bbca5b90623f62e41007c9c42d3870c60945ff category: main optional: false - name: lerc @@ -3157,12 +3155,13 @@ package: manager: conda platform: win-64 dependencies: + ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' - vs2015_runtime: '>=14.29.30037' - url: https://repo.prefix.dev/conda-forge/win-64/lerc-4.0.0-h63175ca_0.tar.bz2 + vc14_runtime: '>=14.29.30139' + url: https://repo.prefix.dev/conda-forge/win-64/lerc-4.0.0-h6470a55_1.conda hash: - md5: 1900cb3cab5055833cfddb0ba233b074 - sha256: f4f39d7f6a2f9b407f8fb567a6c25755270421731d70f0ff331f5de4fa367488 + md5: c1b81da6d29a14b542da14a36c9fbf3f + sha256: 868a3dff758cc676fa1286d3f36c3e0101cca56730f7be531ab84dc91ec58e9d category: main optional: false - name: libaec @@ -3368,10 +3367,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libdeflate-1.23-h4ddbbb0_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libdeflate-1.23-h86f0d12_0.conda hash: - md5: 8dfae1d2e74767e9ce36d5fa0d8605db - sha256: 511d801626d02f4247a04fff957cc6e9ec4cc7e8622bd9acd076bcdc5de5fe66 + md5: 27fe770decaf469a53f3e3a6d593067f + sha256: 4db2f70a1441317d964e84c268e388110ad9cf75ca98994d1336d670e62e6f07 category: main optional: false - name: libdeflate @@ -3382,10 +3381,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/libdeflate-1.23-h9062f6e_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libdeflate-1.23-h76ddb4d_0.conda hash: - md5: a9624935147a25b06013099d3038e467 - sha256: 96c47725a8258159295996ea2758fa0ff9bea330e72b59641642e16be8427ce8 + md5: 34f03138e46543944d4d7f8538048842 + sha256: 881244050587dc658078ee45dfc792ecb458bbb1fdc861da67948d747b117dc2 category: main optional: false - name: libdlf @@ -3494,6 +3493,61 @@ package: sha256: d3b0b8812eab553d3464bbd68204f007f1ebadf96ce30eb0cbc5159f72e353f5 category: main optional: false +- name: libfreetype + version: 2.13.3 + manager: conda + platform: linux-64 + dependencies: + libfreetype6: '>=2.13.3' + url: https://repo.prefix.dev/conda-forge/linux-64/libfreetype-2.13.3-ha770c72_1.conda + hash: + md5: 51f5be229d83ecd401fb369ab96ae669 + sha256: 7be9b3dac469fe3c6146ff24398b685804dfc7a1de37607b84abd076f57cc115 + category: main + optional: false +- name: libfreetype + version: 2.13.3 + manager: conda + platform: win-64 + dependencies: + libfreetype6: '>=2.13.3' + url: https://repo.prefix.dev/conda-forge/win-64/libfreetype-2.13.3-h57928b3_1.conda + hash: + md5: 410ba2c8e7bdb278dfbb5d40220e39d2 + sha256: e5bc7d0a8d11b7b234da4fcd9d78f297f7dec3fec8bd06108fd3ac7b2722e32e + category: main + optional: false +- name: libfreetype6 + version: 2.13.3 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + 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 + hash: + md5: 3c255be50a506c50765a93a6644f32fe + sha256: 7759bd5c31efe5fbc36a7a1f8ca5244c2eabdbeb8fc1bee4b99cf989f35c7d81 + category: main + optional: false +- name: libfreetype6 + version: 2.13.3 + manager: conda + platform: win-64 + dependencies: + libpng: '>=1.6.47,<1.7.0a0' + libzlib: '>=1.3.1,<2.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://repo.prefix.dev/conda-forge/win-64/libfreetype6-2.13.3-h0b5ce68_1.conda + hash: + md5: a84b7d1a13060a9372bea961a8131dbc + sha256: 61308653e7758ff36f80a60d598054168a1389ddfbac46d7864c415fafe18e69 + category: main + optional: false - name: libgcc version: 14.2.0 manager: conda @@ -3628,29 +3682,30 @@ package: category: main optional: false - name: libjpeg-turbo - version: 3.0.0 + version: 3.1.0 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - url: https://repo.prefix.dev/conda-forge/linux-64/libjpeg-turbo-3.0.0-hd590300_1.conda + __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 hash: - md5: ea25936bb4080d843790b586850f82b8 - sha256: b954e09b7e49c2f2433d6f3bb73868eda5e378278b0f8c1dd10a7ef090e14f2f + md5: 9fa334557db9f63da6c9285fd2a48638 + sha256: 98b399287e27768bf79d48faba8a99a2289748c65cd342ca21033fab1860d4a4 category: main optional: false - name: libjpeg-turbo - version: 3.0.0 + version: 3.1.0 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/libjpeg-turbo-3.0.0-hcfcfb64_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/libjpeg-turbo-3.1.0-h2466b09_0.conda hash: - md5: 3f1b948619c45b1ca714d60c7389092c - sha256: 4e7808e3098b4b4ed7e287f63bb24f9045cc4d95bfd39f0db870fc2837d74dff + md5: 7c51d27540389de84852daa1cdb9c63c + sha256: e61b0adef3028b51251124e43eb6edf724c67c0f6736f1628b02511480ac354e category: main optional: false - name: liblapack @@ -3900,16 +3955,16 @@ package: lerc: '>=4.0.0,<5.0a0' libdeflate: '>=1.23,<1.24.0a0' libgcc: '>=13' - libjpeg-turbo: '>=3.0.0,<4.0a0' - liblzma: '>=5.6.3,<6.0a0' + libjpeg-turbo: '>=3.1.0,<4.0a0' + liblzma: '>=5.8.1,<6.0a0' libstdcxx: '>=13' - libwebp-base: '>=1.4.0,<2.0a0' + libwebp-base: '>=1.5.0,<2.0a0' libzlib: '>=1.3.1,<2.0a0' - zstd: '>=1.5.6,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libtiff-4.7.0-hd9ff511_3.conda + zstd: '>=1.5.7,<1.6.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/libtiff-4.7.0-hd9ff511_4.conda hash: - md5: 0ea6510969e1296cc19966fad481f6de - sha256: b224e16b88d76ea95e4af56e2bc638c603bd26a770b98d117d04541d3aafa002 + md5: 6c1028898cf3a2032d9af46689e1b81a + sha256: 7480613af15795281bd338a4d3d2ca148f9c2ecafc967b9cc233e78ba2fe4a6d category: main optional: false - name: libtiff @@ -3919,17 +3974,17 @@ package: dependencies: lerc: '>=4.0.0,<5.0a0' libdeflate: '>=1.23,<1.24.0a0' - libjpeg-turbo: '>=3.0.0,<4.0a0' - liblzma: '>=5.6.3,<6.0a0' + libjpeg-turbo: '>=3.1.0,<4.0a0' + liblzma: '>=5.8.1,<6.0a0' libzlib: '>=1.3.1,<2.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - zstd: '>=1.5.6,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/libtiff-4.7.0-h797046b_3.conda + zstd: '>=1.5.7,<1.6.0a0' + url: https://repo.prefix.dev/conda-forge/win-64/libtiff-4.7.0-h797046b_4.conda hash: - md5: defed79ff7a9164ad40320e3f116a138 - sha256: c363a8baba4ce12b8f01f0ab74fe8b0dc83facd89c6604f4a191084923682768 + md5: 7d938ca70c64c5516767b4eae0a56172 + sha256: 3456e2a6dfe6c00fd0cda316f0cbb47caddf77f83d3ed4040b6ad17ec1610d2a category: main optional: false - name: libuuid @@ -4395,7 +4450,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' typing_extensions: '' url: https://repo.prefix.dev/conda-forge/noarch/mistune-3.1.3-pyh29332c3_0.conda hash: @@ -4408,7 +4463,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' typing_extensions: '' url: https://repo.prefix.dev/conda-forge/noarch/mistune-3.1.3-pyh29332c3_0.conda hash: @@ -4421,7 +4476,7 @@ package: manager: conda platform: linux-64 dependencies: - _openmp_mutex: '*' + _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 @@ -4480,10 +4535,10 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/linux-64/mumps-include-5.7.3-h82cca05_9.conda + url: https://repo.prefix.dev/conda-forge/linux-64/mumps-include-5.7.3-h82cca05_10.conda hash: - md5: 8207b975a176b5c08937bdeeeeecca20 - sha256: bb41dda1084bc29c79bdb1da693295c5bc55da223fb74c4ef8487a81964cbf48 + md5: d6c7d8811686ed912ed4317831dd8c44 + sha256: c723d6e331444411db0a871958fc45621758595d12b4d6561fa20324535ce67a category: main optional: false - name: mumps-seq @@ -4501,10 +4556,10 @@ 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-hb5d91fa_9.conda + url: https://repo.prefix.dev/conda-forge/linux-64/mumps-seq-5.7.3-h06cbf8f_10.conda hash: - md5: 33982046ecd8eed02447ddd7810aad37 - sha256: 196b227df4635ce4294d40d885fa231d8d037839a95a1eee8923319985276bbe + md5: deb3c7cb10d67fde01d264b3d5bc79bc + sha256: bf7049864150d714debbe3d89a9db79e3163655c1fbab7b18b1fd613f9e27878 category: main optional: false - name: mumps-seq @@ -4514,14 +4569,14 @@ package: dependencies: libblas: '>=3.9.0,<4.0a0' liblapack: '>=3.9.0,<4.0a0' - llvm-openmp: '>=19.1.7' + llvm-openmp: '>=20.1.3' 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_9.conda + url: https://repo.prefix.dev/conda-forge/win-64/mumps-seq-5.7.3-hbaa6519_10.conda hash: - md5: 3a30d32db33cc226f7a2c78d485b0503 - sha256: 953c384a1b37b93bf7a2ee39b1c5763887f4d63ed220b65362103d6e6b4440a4 + md5: 5c35d7fd93b2d7cddaa3ce881aadad83 + sha256: 6209255427a10879ca3731ec04eecf112e92b617af60c053073c8330928cb8ab category: main optional: false - name: munkres @@ -4560,7 +4615,7 @@ package: myst-parser: '>=1.0.0' nbclient: '' nbformat: '>=5.0' - python: '>=3.9' + python: '' pyyaml: '' sphinx: '>=5' typing_extensions: '' @@ -4582,7 +4637,7 @@ package: myst-parser: '>=1.0.0' nbclient: '' nbformat: '>=5.0' - python: '>=3.9' + python: '' pyyaml: '' sphinx: '>=5' typing_extensions: '' @@ -4707,7 +4762,7 @@ package: packaging: '' pandocfilters: '>=1.4.1' pygments: '>=2.4.1' - python: '>=3.9' + python: '' traitlets: '>=5.1' url: https://repo.prefix.dev/conda-forge/noarch/nbconvert-core-7.16.6-pyh29332c3_0.conda hash: @@ -4734,7 +4789,7 @@ package: packaging: '' pandocfilters: '>=1.4.1' pygments: '>=2.4.1' - python: '>=3.9' + python: '' traitlets: '>=5.1' url: https://repo.prefix.dev/conda-forge/noarch/nbconvert-core-7.16.6-pyh29332c3_0.conda hash: @@ -4838,37 +4893,37 @@ package: category: dev optional: true - name: notebook - version: 7.4.0 + version: 7.4.1 manager: conda platform: linux-64 dependencies: jupyter_server: '>=2.4.0,<3' - jupyterlab: '>=4.4.0,<4.5' + jupyterlab: '>=4.4.1,<4.5' jupyterlab_server: '>=2.27.1,<3' notebook-shim: '>=0.2,<0.3' python: '>=3.9' tornado: '>=6.2.0' - url: https://repo.prefix.dev/conda-forge/noarch/notebook-7.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/notebook-7.4.1-pyhd8ed1ab_0.conda hash: - md5: 7e82caa4495c513bcfb33a159e1222d4 - sha256: d3f70987bc1e1a20b122726a49a24e5e6f09d00c9862bb399cd1682cd59a1e1e + md5: 464cbf01bab382746e53f917ea40e5ce + sha256: b7239777f9ffe18de170a2adfef4574f9ea76bcddac26d65552607d16cced134 category: dev optional: true - name: notebook - version: 7.4.0 + version: 7.4.1 manager: conda platform: win-64 dependencies: jupyter_server: '>=2.4.0,<3' - jupyterlab: '>=4.4.0,<4.5' + jupyterlab: '>=4.4.1,<4.5' jupyterlab_server: '>=2.27.1,<3' notebook-shim: '>=0.2,<0.3' python: '>=3.9' tornado: '>=6.2.0' - url: https://repo.prefix.dev/conda-forge/noarch/notebook-7.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/notebook-7.4.1-pyhd8ed1ab_0.conda hash: - md5: 7e82caa4495c513bcfb33a159e1222d4 - sha256: d3f70987bc1e1a20b122726a49a24e5e6f09d00c9862bb399cd1682cd59a1e1e + md5: 464cbf01bab382746e53f917ea40e5ce + sha256: b7239777f9ffe18de170a2adfef4574f9ea76bcddac26d65552607d16cced134 category: dev optional: true - name: notebook-shim @@ -5066,11 +5121,11 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.8' - url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyhd8ed1ab_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda hash: - md5: 4088c0d078e2f5092ddf824495186229 - sha256: f759df4f492ae481505dcceb3d4485a120ee798af26711c92de20944a1185621 + md5: 58335b26c38bf4a20f399384c33cbcf9 + sha256: 289861ed0c13a15d7bbb408796af4de72c2fe67e2bcb0de98f4c3fce259d7991 category: main optional: false - name: packaging @@ -5078,11 +5133,11 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.8' - url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyhd8ed1ab_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda hash: - md5: 4088c0d078e2f5092ddf824495186229 - sha256: f759df4f492ae481505dcceb3d4485a120ee798af26711c92de20944a1185621 + md5: 58335b26c38bf4a20f399384c33cbcf9 + sha256: 289861ed0c13a15d7bbb408796af4de72c2fe67e2bcb0de98f4c3fce259d7991 category: main optional: false - name: pandas @@ -5365,7 +5420,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.3.7-pyh29332c3_0.conda hash: md5: e57da6fe54bb3a5556cf36d199ff07d8 @@ -5377,7 +5432,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.3.7-pyh29332c3_0.conda hash: md5: e57da6fe54bb3a5556cf36d199ff07d8 @@ -5621,7 +5676,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda hash: md5: 12c566707c80111f9799308d9e265aef @@ -5633,7 +5688,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda hash: md5: 12c566707c80111f9799308d9e265aef @@ -5819,7 +5874,7 @@ package: isort: '>=4.2.5,<7,!=5.13.0' mccabe: '>=0.6,<0.8' platformdirs: '>=2.2.0' - python: '>=3.9' + python: '' tomli: '>=1.1.0' tomlkit: '>=0.10.1' typing_extensions: '>=3.10.0' @@ -5840,7 +5895,7 @@ package: isort: '>=4.2.5,<7,!=5.13.0' mccabe: '>=0.6,<0.8' platformdirs: '>=2.2.0' - python: '>=3.9' + python: '' tomli: '>=1.1.0' tomlkit: '>=0.10.1' typing_extensions: '>=3.10.0' @@ -6192,10 +6247,10 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/linux-64/python_abi-3.11-6_cp311.conda + url: https://repo.prefix.dev/conda-forge/noarch/python_abi-3.11-7_cp311.conda hash: - md5: 37ec65e056b9964529c0e1e2697b9955 - sha256: 2ff22fffe5bb93802c1687b5c4a34b9062394b78f23cfb5c1c1ef9b635bb030e + md5: 6320dac78b3b215ceac35858b2cfdb70 + sha256: 705d06b15c497b585d235e7e87f6c893ffe5fbfdb3326e376e56c842879e0a09 category: main optional: false - name: python_abi @@ -6203,10 +6258,10 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/win-64/python_abi-3.11-6_cp311.conda + url: https://repo.prefix.dev/conda-forge/noarch/python_abi-3.11-7_cp311.conda hash: - md5: 0cdb3079c532b4d216bc9efacd510138 - sha256: 82b09808cc4f80212be7539d542d5853e0aaa593bc715f02b831c0ea0552b8bf + md5: 6320dac78b3b215ceac35858b2cfdb70 + sha256: 705d06b15c497b585d235e7e87f6c893ffe5fbfdb3326e376e56c842879e0a09 category: main optional: false - name: pytz @@ -6384,7 +6439,7 @@ package: platform: linux-64 dependencies: attrs: '>=22.2.0' - python: '>=3.9' + 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 @@ -6399,7 +6454,7 @@ package: platform: win-64 dependencies: attrs: '>=22.2.0' - python: '>=3.9' + 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 @@ -6574,7 +6629,7 @@ package: libgfortran5: '>=13.3.0' liblapack: '>=3.9.0,<4.0a0' libstdcxx: '>=13' - numpy: <2.3 + numpy: '>=1.23.5' 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 @@ -6591,7 +6646,7 @@ package: libblas: '>=3.9.0,<4.0a0' libcblas: '>=3.9.0,<4.0a0' liblapack: '>=3.9.0,<4.0a0' - numpy: <2.3 + numpy: '>=1.23.5' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* ucrt: '>=10.0.20348.0' @@ -6631,27 +6686,27 @@ package: category: dev optional: true - name: setuptools - version: 78.1.1 + version: 79.0.1 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/setuptools-78.1.1-pyhff2d567_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/setuptools-79.0.1-pyhff2d567_0.conda hash: - md5: 72437384f9364b6baf20b6dd68d282c2 - sha256: 33a0cab4724d8130055f65e6edc101df7136f2f26cefb52669df88de8aeee28c + md5: fa6669cc21abd4b7b6c5393b7bc71914 + sha256: 5ebc4bb71fbdc8048b08848519150c8d44b8eb18445711d3258c9d402ba87a2c category: main optional: false - name: setuptools - version: 78.1.1 + version: 79.0.1 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/setuptools-78.1.1-pyhff2d567_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/setuptools-79.0.1-pyhff2d567_0.conda hash: - md5: 72437384f9364b6baf20b6dd68d282c2 - sha256: 33a0cab4724d8130055f65e6edc101df7136f2f26cefb52669df88de8aeee28c + md5: fa6669cc21abd4b7b6c5393b7bc71914 + sha256: 5ebc4bb71fbdc8048b08848519150c8d44b8eb18445711d3258c9d402ba87a2c category: main optional: false - name: six @@ -7772,7 +7827,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.13.2-pyh29332c3_0.conda hash: md5: 83fc6ae00127671e301c9f44254c31b8 @@ -7784,7 +7839,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.13.2-pyh29332c3_0.conda hash: md5: 83fc6ae00127671e301c9f44254c31b8 @@ -8483,7 +8538,7 @@ package: numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: https://files.pythonhosted.org/packages/7f/0b/36222385937dcda4b4789303027fc538103201f72b4bce99d53398a5b5da/geoapps_utils-0.5.0a3-py3-none-any.whl + url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/geoapps-utils/0.5.0-alpha.3/geoapps_utils-0.5.0a3-py3-none-any.whl hash: sha256: a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c category: main @@ -8497,7 +8552,7 @@ package: numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: https://files.pythonhosted.org/packages/7f/0b/36222385937dcda4b4789303027fc538103201f72b4bce99d53398a5b5da/geoapps_utils-0.5.0a3-py3-none-any.whl + url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/geoapps-utils/0.5.0-alpha.3/geoapps_utils-0.5.0a3-py3-none-any.whl hash: sha256: a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c category: main @@ -8511,7 +8566,7 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - url: https://files.pythonhosted.org/packages/cb/76/a6f12182119218ad7b55ad622a89be4596c1cc37b1182c3f121242c0b0fc/geoh5py-0.11.0a4-py3-none-any.whl + url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/geoh5py/0.11.0-alpha.4/geoh5py-0.11.0a4-py3-none-any.whl hash: sha256: 4965e934b1e57460f98f76f96eca100abf48fd722245154c35af86e7ecbc10a6 category: main @@ -8525,17 +8580,19 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - url: https://files.pythonhosted.org/packages/cb/76/a6f12182119218ad7b55ad622a89be4596c1cc37b1182c3f121242c0b0fc/geoh5py-0.11.0a4-py3-none-any.whl + url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/geoh5py/0.11.0-alpha.4/geoh5py-0.11.0a4-py3-none-any.whl hash: sha256: 4965e934b1e57460f98f76f96eca100abf48fd722245154c35af86e7ecbc10a6 category: main optional: false - name: mira-simpeg - version: 0.23.0.1a3.dev2+g730fa0095 + version: 0.23.0.1a3 manager: pip platform: linux-64 dependencies: + dask: '*' discretize: '>=0.11' + fsspec: '>=0.3.3' geoana: '>=0.7.0' geoh5py: '>=0.11.0a1,<0.12.dev' libdlf: '*' @@ -8543,20 +8600,20 @@ package: numpy: '>=1.22' pymatsolver: '>=0.3' scipy: '>=1.8' - url: git+https://github.com/MiraGeoscience/simpeg.git@730fa00953165f6fd5a87c3942d05cf8e0a7e164 + zarr: '*' + url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/mira-simpeg/0.23.0.1a3+mira/mira_simpeg-0.23.0.1a3-py3-none-any.whl hash: - sha256: 730fa00953165f6fd5a87c3942d05cf8e0a7e164 - source: - type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@730fa00953165f6fd5a87c3942d05cf8e0a7e164 + sha256: 14467e65d801e082bac8a4d972a30b162018df27d06310fb1f2c6960968f88d2 category: main optional: false - name: mira-simpeg - version: 0.23.0.1a3.dev2+g730fa0095 + version: 0.23.0.1a3 manager: pip platform: win-64 dependencies: + dask: '*' discretize: '>=0.11' + fsspec: '>=0.3.3' geoana: '>=0.7.0' geoh5py: '>=0.11.0a1,<0.12.dev' libdlf: '*' @@ -8564,12 +8621,10 @@ package: numpy: '>=1.22' pymatsolver: '>=0.3' scipy: '>=1.8' - url: git+https://github.com/MiraGeoscience/simpeg.git@730fa00953165f6fd5a87c3942d05cf8e0a7e164 + zarr: '*' + url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/mira-simpeg/0.23.0.1a3+mira/mira_simpeg-0.23.0.1a3-py3-none-any.whl hash: - sha256: 730fa00953165f6fd5a87c3942d05cf8e0a7e164 - source: - type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@730fa00953165f6fd5a87c3942d05cf8e0a7e164 + sha256: 14467e65d801e082bac8a4d972a30b162018df27d06310fb1f2c6960968f88d2 category: main optional: false - name: octree-creation-app @@ -8583,7 +8638,7 @@ package: numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: https://files.pythonhosted.org/packages/8a/60/0a425a5a8cd25d46d8141bf24b20511d0176c9fae0e617f0eeca4675366b/octree_creation_app-0.3.0a2-py3-none-any.whl + url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/octree-creation-app/0.3.0-alpha.2/octree_creation_app-0.3.0a2-py3-none-any.whl hash: sha256: 002896126bf5a958aad1bb9c0a272bfd3c6985d1456dc8022c4e07b5582730ff category: main @@ -8599,7 +8654,7 @@ package: numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: https://files.pythonhosted.org/packages/8a/60/0a425a5a8cd25d46d8141bf24b20511d0176c9fae0e617f0eeca4675366b/octree_creation_app-0.3.0a2-py3-none-any.whl + url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/octree-creation-app/0.3.0-alpha.2/octree_creation_app-0.3.0a2-py3-none-any.whl hash: sha256: 002896126bf5a958aad1bb9c0a272bfd3c6985d1456dc8022c4e07b5582730ff category: main @@ -8611,7 +8666,7 @@ package: dependencies: geoh5py: '>=0.11.0a3,<0.12.dev' numpy: '>=1.26.0,<1.27.0' - url: https://files.pythonhosted.org/packages/a9/b4/5352714c3cd8075b037aac1fcbcfb5f539449c020031cb663ad82a3944d0/param_sweeps-0.2.1a1-py3-none-any.whl + url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/param-sweeps/0.2.1-alpha.1/param_sweeps-0.2.1a1-py3-none-any.whl hash: sha256: 777618dd6eef4b6e86b4976e01c29bb202abb9d295b0774baeabf7534fb9389c category: main @@ -8623,7 +8678,7 @@ package: dependencies: geoh5py: '>=0.11.0a3,<0.12.dev' numpy: '>=1.26.0,<1.27.0' - url: https://files.pythonhosted.org/packages/a9/b4/5352714c3cd8075b037aac1fcbcfb5f539449c020031cb663ad82a3944d0/param_sweeps-0.2.1a1-py3-none-any.whl + url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/param-sweeps/0.2.1-alpha.1/param_sweeps-0.2.1a1-py3-none-any.whl hash: sha256: 777618dd6eef4b6e86b4976e01c29bb202abb9d295b0774baeabf7534fb9389c category: main diff --git a/py-3.12.conda-lock.yml b/py-3.12.conda-lock.yml index 1b423ee7..f88ee298 100644 --- a/py-3.12.conda-lock.yml +++ b/py-3.12.conda-lock.yml @@ -15,8 +15,8 @@ version: 1 metadata: content_hash: - win-64: b7b89c455d6cfa233775cd379dfc6668ca87d22340d35670d5bfd0bf85fb08bb - linux-64: 398d654fb76a679002e71da3f82bc3ff4a37d34689965e0d027a9b8b8e7bd1a5 + win-64: 6f1933aa237e9717452d1622fcfc68eba137cef4e0b6cc8724c06ce1c490d501 + linux-64: 4acd117552e4100eb57c2f1aac766fba9ef02ffe62a999b22cd10f4f3d117310 channels: - url: conda-forge used_env_vars: [] @@ -137,7 +137,7 @@ package: dependencies: exceptiongroup: '>=1.0.2' idna: '>=2.8' - python: '>=3.9' + python: '' sniffio: '>=1.1' typing_extensions: '>=4.5' url: https://repo.prefix.dev/conda-forge/noarch/anyio-4.9.0-pyh29332c3_0.conda @@ -153,7 +153,7 @@ package: dependencies: exceptiongroup: '>=1.0.2' idna: '>=2.8' - python: '>=3.9' + python: '' sniffio: '>=1.1' typing_extensions: '>=4.5' url: https://repo.prefix.dev/conda-forge/noarch/anyio-4.9.0-pyh29332c3_0.conda @@ -330,7 +330,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' typing_extensions: '>=4.0.0' url: https://repo.prefix.dev/conda-forge/noarch/async-lru-2.0.5-pyh29332c3_0.conda hash: @@ -343,7 +343,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' typing_extensions: '>=4.0.0' url: https://repo.prefix.dev/conda-forge/noarch/async-lru-2.0.5-pyh29332c3_0.conda hash: @@ -434,7 +434,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' webencodings: '' url: https://repo.prefix.dev/conda-forge/noarch/bleach-6.2.0-pyh29332c3_4.conda hash: @@ -447,7 +447,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' webencodings: '' url: https://repo.prefix.dev/conda-forge/noarch/bleach-6.2.0-pyh29332c3_4.conda hash: @@ -663,22 +663,24 @@ package: version: 2025.1.31 manager: conda platform: linux-64 - dependencies: {} - url: https://repo.prefix.dev/conda-forge/linux-64/ca-certificates-2025.1.31-hbcca054_0.conda + dependencies: + __unix: '' + url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.1.31-hbd8a1cb_1.conda hash: - md5: 19f3a56f68d2fd06c516076bff482c52 - sha256: bf832198976d559ab44d6cdb315642655547e26d826e34da67cbee6624cda189 + md5: e74273d9fc5ab633d613cde474b55157 + sha256: 43878eddf8eb46e3ba7fcbe77a2f8d00aab9a66d9ff63bc4d072b7af17481197 category: main optional: false - name: ca-certificates version: 2025.1.31 manager: conda platform: win-64 - dependencies: {} - url: https://repo.prefix.dev/conda-forge/win-64/ca-certificates-2025.1.31-h56e8100_0.conda + dependencies: + __win: '' + url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.1.31-h4c7d964_1.conda hash: - md5: 5304a31607974dfc2110dfbb662ed092 - sha256: 1bedccdf25a3bd782d6b0e57ddd97cdcda5501716009f2de4479a779221df155 + md5: fb8af741d752521fb48b8d116c9b044e + sha256: d6326613de7aea644f4c3b5fadd87d7b19714fe2ba31c9e2d2cdd65830f95cd4 category: main optional: false - name: cached-property @@ -1386,27 +1388,27 @@ package: category: dev optional: true - name: executing - version: 2.1.0 + version: 2.2.0 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/executing-2.1.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/executing-2.2.0-pyhd8ed1ab_0.conda hash: - md5: ef8b5fca76806159fc25b4f48d8737eb - sha256: 28d25ea375ebab4bf7479228f8430db20986187b04999136ff5c722ebd32eb60 + md5: 81d30c08f9a3e556e8ca9e124b044d14 + sha256: 7510dd93b9848c6257c43fdf9ad22adf62e7aa6da5f12a6a757aed83bcfedf05 category: dev optional: true - name: executing - version: 2.1.0 + version: 2.2.0 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/executing-2.1.0-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/executing-2.2.0-pyhd8ed1ab_0.conda hash: - md5: ef8b5fca76806159fc25b4f48d8737eb - sha256: 28d25ea375ebab4bf7479228f8430db20986187b04999136ff5c722ebd32eb60 + md5: 81d30c08f9a3e556e8ca9e124b044d14 + sha256: 7510dd93b9848c6257c43fdf9ad22adf62e7aa6da5f12a6a757aed83bcfedf05 category: dev optional: true - name: fasteners @@ -1501,14 +1503,12 @@ package: manager: conda platform: linux-64 dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - libpng: '>=1.6.47,<1.7.0a0' - libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/freetype-2.13.3-h48d6fc4_0.conda + libfreetype: 2.13.3 + libfreetype6: 2.13.3 + url: https://repo.prefix.dev/conda-forge/linux-64/freetype-2.13.3-ha770c72_1.conda hash: - md5: 9ecfd6f2ca17077dd9c2d24770bb9ccd - sha256: 7385577509a9c4730130f54bb6841b9b416249d5f4e9f74bf313e6378e313c57 + md5: 9ccd736d31e0c6e41f54e704e5312811 + sha256: 7ef7d477c43c12a5b4cddcf048a83277414512d1116aba62ebadfa7056a7d84f category: main optional: false - name: freetype @@ -1516,15 +1516,12 @@ package: manager: conda platform: win-64 dependencies: - libpng: '>=1.6.47,<1.7.0a0' - libzlib: '>=1.3.1,<2.0a0' - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/freetype-2.13.3-h0b5ce68_0.conda + libfreetype: 2.13.3 + libfreetype6: 2.13.3 + url: https://repo.prefix.dev/conda-forge/win-64/freetype-2.13.3-h57928b3_1.conda hash: - md5: 9c461ed7b07fb360d2c8cfe726c7d521 - sha256: 67e3af0fbe6c25f5ab1af9a3d3000464c5e88a8a0b4b06602f4a5243a8a1fd42 + md5: 633504fe3f96031192e40e3e6c18ef06 + sha256: 0bcc9c868d769247c12324f957c97c4dbee7e4095485db90d9c295bcb3b1bb43 category: main optional: false - name: fsspec @@ -1590,7 +1587,7 @@ package: category: main optional: false - name: greenlet - version: 3.2.0 + version: 3.2.1 manager: conda platform: linux-64 dependencies: @@ -1599,14 +1596,14 @@ 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.0-py312h2ec8cdc_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/greenlet-3.2.1-py312h2ec8cdc_0.conda hash: - md5: fcbf85214d3dd3acd890126a9ff470b5 - sha256: c18e4f41d46054d2aa2780b76f477533581b18a59a403aaa1a2382da920ef672 + md5: 5e2a0332bef6ef7cf19150d96491e42a + sha256: 15cbb32c7629011bacf29b29e1fd466cd0ae3a79e818a52073d81cd8e4ac0852 category: dev optional: true - name: greenlet - version: 3.2.0 + version: 3.2.1 manager: conda platform: win-64 dependencies: @@ -1615,10 +1612,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/greenlet-3.2.0-py312h275cf98_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/greenlet-3.2.1-py312h275cf98_0.conda hash: - md5: f8b312c9115e67c91a5c2f9af198fe8a - sha256: c80ca057bf79c2937c519e8f48585c51fa31fab610131af8fb459ec8946577e5 + md5: c3656903ef711c31aa0d19db72d99d98 + sha256: b7222cbf7dc4f9df664e30c226bcb64906098eba976a5e6a77dacc9cf3d43931 category: dev optional: true - name: h11 @@ -2088,7 +2085,7 @@ package: pickleshare: '' prompt-toolkit: '>=3.0.41,<3.1.0' pygments: '>=2.4.0' - python: '>=3.11' + python: '' stack_data: '' traitlets: '>=5.13.0' typing_extensions: '>=4.6' @@ -2113,7 +2110,7 @@ package: pickleshare: '' prompt-toolkit: '>=3.0.41,<3.1.0' pygments: '>=2.4.0' - python: '>=3.11' + python: '' stack_data: '' traitlets: '>=5.13.0' typing_extensions: '>=4.6' @@ -2426,29 +2423,29 @@ package: category: dev optional: true - name: jsonschema-specifications - version: 2024.10.1 + version: 2025.4.1 manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' referencing: '>=0.31.0' - url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-specifications-2024.10.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-specifications-2025.4.1-pyh29332c3_0.conda hash: - md5: 3b519bc21bc80e60b456f1e62962a766 - sha256: 37127133837444cf0e6d1a95ff5a505f8214ed4e89e8e9343284840e674c6891 + md5: 41ff526b1083fde51fbdc93f29282e0e + sha256: 66fbad7480f163509deec8bd028cd3ea68e58022982c838683586829f63f3efa category: dev optional: true - name: jsonschema-specifications - version: 2024.10.1 + version: 2025.4.1 manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' referencing: '>=0.31.0' - url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-specifications-2024.10.1-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-specifications-2025.4.1-pyh29332c3_0.conda hash: - md5: 3b519bc21bc80e60b456f1e62962a766 - sha256: 37127133837444cf0e6d1a95ff5a505f8214ed4e89e8e9343284840e674c6891 + md5: 41ff526b1083fde51fbdc93f29282e0e + sha256: 66fbad7480f163509deec8bd028cd3ea68e58022982c838683586829f63f3efa category: dev optional: true - name: jsonschema-with-format-nongpl @@ -2696,7 +2693,7 @@ package: dependencies: jsonschema-with-format-nongpl: '>=4.18.0' packaging: '' - python: '>=3.9' + python: '' python-json-logger: '>=2.0.4' pyyaml: '>=5.3' referencing: '' @@ -2716,7 +2713,7 @@ package: dependencies: jsonschema-with-format-nongpl: '>=4.18.0' packaging: '' - python: '>=3.9' + python: '' python-json-logger: '>=2.0.4' pyyaml: '>=5.3' referencing: '' @@ -2816,7 +2813,7 @@ package: category: dev optional: true - name: jupyterlab - version: 4.4.0 + version: 4.4.1 manager: conda platform: linux-64 dependencies: @@ -2836,14 +2833,14 @@ package: tomli: '>=1.2.2' tornado: '>=6.2.0' traitlets: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.4.1-pyhd8ed1ab_0.conda hash: - md5: 2da6a5e2c788a1b1998b24c50a18572a - sha256: 4d225d094d1e5a8e95c2bde0f9c9bbc5aac52d9abf7fd597dd7af0f467b44347 + md5: 2d29877427f2c249621557dd9c840d69 + sha256: 23ef44cc7ee1f18c3ec462f27f31e75c7260a0f04b9736d70c631eba5f9c31f0 category: dev optional: true - name: jupyterlab - version: 4.4.0 + version: 4.4.1 manager: conda platform: win-64 dependencies: @@ -2863,10 +2860,10 @@ package: tomli: '>=1.2.2' tornado: '>=6.2.0' traitlets: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.4.1-pyhd8ed1ab_0.conda hash: - md5: 2da6a5e2c788a1b1998b24c50a18572a - sha256: 4d225d094d1e5a8e95c2bde0f9c9bbc5aac52d9abf7fd597dd7af0f467b44347 + md5: 2d29877427f2c249621557dd9c840d69 + sha256: 23ef44cc7ee1f18c3ec462f27f31e75c7260a0f04b9736d70c631eba5f9c31f0 category: dev optional: true - name: jupyterlab_pygments @@ -3144,12 +3141,13 @@ package: manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://repo.prefix.dev/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2 + __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 hash: - md5: 76bbff344f0134279f225174e9064c8f - sha256: cb55f36dcd898203927133280ae1dc643368af041a48bcf7c026acb7c47b0c12 + md5: 9344155d33912347b37f0ae6c410a835 + sha256: 412381a43d5ff9bbed82cd52a0bbca5b90623f62e41007c9c42d3870c60945ff category: main optional: false - name: lerc @@ -3157,12 +3155,13 @@ package: manager: conda platform: win-64 dependencies: + ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' - vs2015_runtime: '>=14.29.30037' - url: https://repo.prefix.dev/conda-forge/win-64/lerc-4.0.0-h63175ca_0.tar.bz2 + vc14_runtime: '>=14.29.30139' + url: https://repo.prefix.dev/conda-forge/win-64/lerc-4.0.0-h6470a55_1.conda hash: - md5: 1900cb3cab5055833cfddb0ba233b074 - sha256: f4f39d7f6a2f9b407f8fb567a6c25755270421731d70f0ff331f5de4fa367488 + md5: c1b81da6d29a14b542da14a36c9fbf3f + sha256: 868a3dff758cc676fa1286d3f36c3e0101cca56730f7be531ab84dc91ec58e9d category: main optional: false - name: libaec @@ -3368,10 +3367,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libdeflate-1.23-h4ddbbb0_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libdeflate-1.23-h86f0d12_0.conda hash: - md5: 8dfae1d2e74767e9ce36d5fa0d8605db - sha256: 511d801626d02f4247a04fff957cc6e9ec4cc7e8622bd9acd076bcdc5de5fe66 + md5: 27fe770decaf469a53f3e3a6d593067f + sha256: 4db2f70a1441317d964e84c268e388110ad9cf75ca98994d1336d670e62e6f07 category: main optional: false - name: libdeflate @@ -3382,10 +3381,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/libdeflate-1.23-h9062f6e_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libdeflate-1.23-h76ddb4d_0.conda hash: - md5: a9624935147a25b06013099d3038e467 - sha256: 96c47725a8258159295996ea2758fa0ff9bea330e72b59641642e16be8427ce8 + md5: 34f03138e46543944d4d7f8538048842 + sha256: 881244050587dc658078ee45dfc792ecb458bbb1fdc861da67948d747b117dc2 category: main optional: false - name: libdlf @@ -3494,6 +3493,61 @@ package: sha256: d3b0b8812eab553d3464bbd68204f007f1ebadf96ce30eb0cbc5159f72e353f5 category: main optional: false +- name: libfreetype + version: 2.13.3 + manager: conda + platform: linux-64 + dependencies: + libfreetype6: '>=2.13.3' + url: https://repo.prefix.dev/conda-forge/linux-64/libfreetype-2.13.3-ha770c72_1.conda + hash: + md5: 51f5be229d83ecd401fb369ab96ae669 + sha256: 7be9b3dac469fe3c6146ff24398b685804dfc7a1de37607b84abd076f57cc115 + category: main + optional: false +- name: libfreetype + version: 2.13.3 + manager: conda + platform: win-64 + dependencies: + libfreetype6: '>=2.13.3' + url: https://repo.prefix.dev/conda-forge/win-64/libfreetype-2.13.3-h57928b3_1.conda + hash: + md5: 410ba2c8e7bdb278dfbb5d40220e39d2 + sha256: e5bc7d0a8d11b7b234da4fcd9d78f297f7dec3fec8bd06108fd3ac7b2722e32e + category: main + optional: false +- name: libfreetype6 + version: 2.13.3 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + 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 + hash: + md5: 3c255be50a506c50765a93a6644f32fe + sha256: 7759bd5c31efe5fbc36a7a1f8ca5244c2eabdbeb8fc1bee4b99cf989f35c7d81 + category: main + optional: false +- name: libfreetype6 + version: 2.13.3 + manager: conda + platform: win-64 + dependencies: + libpng: '>=1.6.47,<1.7.0a0' + libzlib: '>=1.3.1,<2.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://repo.prefix.dev/conda-forge/win-64/libfreetype6-2.13.3-h0b5ce68_1.conda + hash: + md5: a84b7d1a13060a9372bea961a8131dbc + sha256: 61308653e7758ff36f80a60d598054168a1389ddfbac46d7864c415fafe18e69 + category: main + optional: false - name: libgcc version: 14.2.0 manager: conda @@ -3628,29 +3682,30 @@ package: category: main optional: false - name: libjpeg-turbo - version: 3.0.0 + version: 3.1.0 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - url: https://repo.prefix.dev/conda-forge/linux-64/libjpeg-turbo-3.0.0-hd590300_1.conda + __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 hash: - md5: ea25936bb4080d843790b586850f82b8 - sha256: b954e09b7e49c2f2433d6f3bb73868eda5e378278b0f8c1dd10a7ef090e14f2f + md5: 9fa334557db9f63da6c9285fd2a48638 + sha256: 98b399287e27768bf79d48faba8a99a2289748c65cd342ca21033fab1860d4a4 category: main optional: false - name: libjpeg-turbo - version: 3.0.0 + version: 3.1.0 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/libjpeg-turbo-3.0.0-hcfcfb64_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/libjpeg-turbo-3.1.0-h2466b09_0.conda hash: - md5: 3f1b948619c45b1ca714d60c7389092c - sha256: 4e7808e3098b4b4ed7e287f63bb24f9045cc4d95bfd39f0db870fc2837d74dff + md5: 7c51d27540389de84852daa1cdb9c63c + sha256: e61b0adef3028b51251124e43eb6edf724c67c0f6736f1628b02511480ac354e category: main optional: false - name: liblapack @@ -3900,16 +3955,16 @@ package: lerc: '>=4.0.0,<5.0a0' libdeflate: '>=1.23,<1.24.0a0' libgcc: '>=13' - libjpeg-turbo: '>=3.0.0,<4.0a0' - liblzma: '>=5.6.3,<6.0a0' + libjpeg-turbo: '>=3.1.0,<4.0a0' + liblzma: '>=5.8.1,<6.0a0' libstdcxx: '>=13' - libwebp-base: '>=1.4.0,<2.0a0' + libwebp-base: '>=1.5.0,<2.0a0' libzlib: '>=1.3.1,<2.0a0' - zstd: '>=1.5.6,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libtiff-4.7.0-hd9ff511_3.conda + zstd: '>=1.5.7,<1.6.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/libtiff-4.7.0-hd9ff511_4.conda hash: - md5: 0ea6510969e1296cc19966fad481f6de - sha256: b224e16b88d76ea95e4af56e2bc638c603bd26a770b98d117d04541d3aafa002 + md5: 6c1028898cf3a2032d9af46689e1b81a + sha256: 7480613af15795281bd338a4d3d2ca148f9c2ecafc967b9cc233e78ba2fe4a6d category: main optional: false - name: libtiff @@ -3919,17 +3974,17 @@ package: dependencies: lerc: '>=4.0.0,<5.0a0' libdeflate: '>=1.23,<1.24.0a0' - libjpeg-turbo: '>=3.0.0,<4.0a0' - liblzma: '>=5.6.3,<6.0a0' + libjpeg-turbo: '>=3.1.0,<4.0a0' + liblzma: '>=5.8.1,<6.0a0' libzlib: '>=1.3.1,<2.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - zstd: '>=1.5.6,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/libtiff-4.7.0-h797046b_3.conda + zstd: '>=1.5.7,<1.6.0a0' + url: https://repo.prefix.dev/conda-forge/win-64/libtiff-4.7.0-h797046b_4.conda hash: - md5: defed79ff7a9164ad40320e3f116a138 - sha256: c363a8baba4ce12b8f01f0ab74fe8b0dc83facd89c6604f4a191084923682768 + md5: 7d938ca70c64c5516767b4eae0a56172 + sha256: 3456e2a6dfe6c00fd0cda316f0cbb47caddf77f83d3ed4040b6ad17ec1610d2a category: main optional: false - name: libuuid @@ -4395,7 +4450,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' typing_extensions: '' url: https://repo.prefix.dev/conda-forge/noarch/mistune-3.1.3-pyh29332c3_0.conda hash: @@ -4408,7 +4463,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' typing_extensions: '' url: https://repo.prefix.dev/conda-forge/noarch/mistune-3.1.3-pyh29332c3_0.conda hash: @@ -4421,7 +4476,7 @@ package: manager: conda platform: linux-64 dependencies: - _openmp_mutex: '*' + _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 @@ -4480,10 +4535,10 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/linux-64/mumps-include-5.7.3-h82cca05_9.conda + url: https://repo.prefix.dev/conda-forge/linux-64/mumps-include-5.7.3-h82cca05_10.conda hash: - md5: 8207b975a176b5c08937bdeeeeecca20 - sha256: bb41dda1084bc29c79bdb1da693295c5bc55da223fb74c4ef8487a81964cbf48 + md5: d6c7d8811686ed912ed4317831dd8c44 + sha256: c723d6e331444411db0a871958fc45621758595d12b4d6561fa20324535ce67a category: main optional: false - name: mumps-seq @@ -4501,10 +4556,10 @@ 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-hb5d91fa_9.conda + url: https://repo.prefix.dev/conda-forge/linux-64/mumps-seq-5.7.3-h06cbf8f_10.conda hash: - md5: 33982046ecd8eed02447ddd7810aad37 - sha256: 196b227df4635ce4294d40d885fa231d8d037839a95a1eee8923319985276bbe + md5: deb3c7cb10d67fde01d264b3d5bc79bc + sha256: bf7049864150d714debbe3d89a9db79e3163655c1fbab7b18b1fd613f9e27878 category: main optional: false - name: mumps-seq @@ -4514,14 +4569,14 @@ package: dependencies: libblas: '>=3.9.0,<4.0a0' liblapack: '>=3.9.0,<4.0a0' - llvm-openmp: '>=19.1.7' + llvm-openmp: '>=20.1.3' 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_9.conda + url: https://repo.prefix.dev/conda-forge/win-64/mumps-seq-5.7.3-hbaa6519_10.conda hash: - md5: 3a30d32db33cc226f7a2c78d485b0503 - sha256: 953c384a1b37b93bf7a2ee39b1c5763887f4d63ed220b65362103d6e6b4440a4 + md5: 5c35d7fd93b2d7cddaa3ce881aadad83 + sha256: 6209255427a10879ca3731ec04eecf112e92b617af60c053073c8330928cb8ab category: main optional: false - name: munkres @@ -4560,7 +4615,7 @@ package: myst-parser: '>=1.0.0' nbclient: '' nbformat: '>=5.0' - python: '>=3.9' + python: '' pyyaml: '' sphinx: '>=5' typing_extensions: '' @@ -4582,7 +4637,7 @@ package: myst-parser: '>=1.0.0' nbclient: '' nbformat: '>=5.0' - python: '>=3.9' + python: '' pyyaml: '' sphinx: '>=5' typing_extensions: '' @@ -4707,7 +4762,7 @@ package: packaging: '' pandocfilters: '>=1.4.1' pygments: '>=2.4.1' - python: '>=3.9' + python: '' traitlets: '>=5.1' url: https://repo.prefix.dev/conda-forge/noarch/nbconvert-core-7.16.6-pyh29332c3_0.conda hash: @@ -4734,7 +4789,7 @@ package: packaging: '' pandocfilters: '>=1.4.1' pygments: '>=2.4.1' - python: '>=3.9' + python: '' traitlets: '>=5.1' url: https://repo.prefix.dev/conda-forge/noarch/nbconvert-core-7.16.6-pyh29332c3_0.conda hash: @@ -4838,37 +4893,37 @@ package: category: dev optional: true - name: notebook - version: 7.4.0 + version: 7.4.1 manager: conda platform: linux-64 dependencies: jupyter_server: '>=2.4.0,<3' - jupyterlab: '>=4.4.0,<4.5' + jupyterlab: '>=4.4.1,<4.5' jupyterlab_server: '>=2.27.1,<3' notebook-shim: '>=0.2,<0.3' python: '>=3.9' tornado: '>=6.2.0' - url: https://repo.prefix.dev/conda-forge/noarch/notebook-7.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/notebook-7.4.1-pyhd8ed1ab_0.conda hash: - md5: 7e82caa4495c513bcfb33a159e1222d4 - sha256: d3f70987bc1e1a20b122726a49a24e5e6f09d00c9862bb399cd1682cd59a1e1e + md5: 464cbf01bab382746e53f917ea40e5ce + sha256: b7239777f9ffe18de170a2adfef4574f9ea76bcddac26d65552607d16cced134 category: dev optional: true - name: notebook - version: 7.4.0 + version: 7.4.1 manager: conda platform: win-64 dependencies: jupyter_server: '>=2.4.0,<3' - jupyterlab: '>=4.4.0,<4.5' + jupyterlab: '>=4.4.1,<4.5' jupyterlab_server: '>=2.27.1,<3' notebook-shim: '>=0.2,<0.3' python: '>=3.9' tornado: '>=6.2.0' - url: https://repo.prefix.dev/conda-forge/noarch/notebook-7.4.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/notebook-7.4.1-pyhd8ed1ab_0.conda hash: - md5: 7e82caa4495c513bcfb33a159e1222d4 - sha256: d3f70987bc1e1a20b122726a49a24e5e6f09d00c9862bb399cd1682cd59a1e1e + md5: 464cbf01bab382746e53f917ea40e5ce + sha256: b7239777f9ffe18de170a2adfef4574f9ea76bcddac26d65552607d16cced134 category: dev optional: true - name: notebook-shim @@ -5066,11 +5121,11 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.8' - url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyhd8ed1ab_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda hash: - md5: 4088c0d078e2f5092ddf824495186229 - sha256: f759df4f492ae481505dcceb3d4485a120ee798af26711c92de20944a1185621 + md5: 58335b26c38bf4a20f399384c33cbcf9 + sha256: 289861ed0c13a15d7bbb408796af4de72c2fe67e2bcb0de98f4c3fce259d7991 category: main optional: false - name: packaging @@ -5078,11 +5133,11 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.8' - url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyhd8ed1ab_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda hash: - md5: 4088c0d078e2f5092ddf824495186229 - sha256: f759df4f492ae481505dcceb3d4485a120ee798af26711c92de20944a1185621 + md5: 58335b26c38bf4a20f399384c33cbcf9 + sha256: 289861ed0c13a15d7bbb408796af4de72c2fe67e2bcb0de98f4c3fce259d7991 category: main optional: false - name: pandas @@ -5365,7 +5420,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.3.7-pyh29332c3_0.conda hash: md5: e57da6fe54bb3a5556cf36d199ff07d8 @@ -5377,7 +5432,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.3.7-pyh29332c3_0.conda hash: md5: e57da6fe54bb3a5556cf36d199ff07d8 @@ -5621,7 +5676,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda hash: md5: 12c566707c80111f9799308d9e265aef @@ -5633,7 +5688,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda hash: md5: 12c566707c80111f9799308d9e265aef @@ -5819,7 +5874,7 @@ package: isort: '>=4.2.5,<7,!=5.13.0' mccabe: '>=0.6,<0.8' platformdirs: '>=2.2.0' - python: '>=3.9' + python: '' tomli: '>=1.1.0' tomlkit: '>=0.10.1' typing_extensions: '>=3.10.0' @@ -5840,7 +5895,7 @@ package: isort: '>=4.2.5,<7,!=5.13.0' mccabe: '>=0.6,<0.8' platformdirs: '>=2.2.0' - python: '>=3.9' + python: '' tomli: '>=1.1.0' tomlkit: '>=0.10.1' typing_extensions: '>=3.10.0' @@ -6192,10 +6247,10 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/linux-64/python_abi-3.12-6_cp312.conda + url: https://repo.prefix.dev/conda-forge/noarch/python_abi-3.12-7_cp312.conda hash: - md5: 95bd67b1113859774c30418e8481f9d8 - sha256: 09aff7ca31d1dbee63a504dba89aefa079b7c13a50dae18e1fe40a40ea71063e + md5: 0dfcdc155cf23812a0c9deada86fb723 + sha256: a1bbced35e0df66cc713105344263570e835625c28d1bdee8f748f482b2d7793 category: main optional: false - name: python_abi @@ -6203,10 +6258,10 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/win-64/python_abi-3.12-6_cp312.conda + url: https://repo.prefix.dev/conda-forge/noarch/python_abi-3.12-7_cp312.conda hash: - md5: fd9176ac032bea8da0cfcc6fa3f724f1 - sha256: a36a7ba34e5e459da2ba89c3b4021798db26768562f01c00f07a6b33f4a16987 + md5: 0dfcdc155cf23812a0c9deada86fb723 + sha256: a1bbced35e0df66cc713105344263570e835625c28d1bdee8f748f482b2d7793 category: main optional: false - name: pytz @@ -6384,7 +6439,7 @@ package: platform: linux-64 dependencies: attrs: '>=22.2.0' - python: '>=3.9' + 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 @@ -6399,7 +6454,7 @@ package: platform: win-64 dependencies: attrs: '>=22.2.0' - python: '>=3.9' + 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 @@ -6574,7 +6629,7 @@ package: libgfortran5: '>=13.3.0' liblapack: '>=3.9.0,<4.0a0' libstdcxx: '>=13' - numpy: <2.3 + numpy: '>=1.23.5' 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 @@ -6591,7 +6646,7 @@ package: libblas: '>=3.9.0,<4.0a0' libcblas: '>=3.9.0,<4.0a0' liblapack: '>=3.9.0,<4.0a0' - numpy: <2.3 + numpy: '>=1.23.5' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* ucrt: '>=10.0.20348.0' @@ -6631,27 +6686,27 @@ package: category: dev optional: true - name: setuptools - version: 78.1.1 + version: 79.0.1 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/setuptools-78.1.1-pyhff2d567_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/setuptools-79.0.1-pyhff2d567_0.conda hash: - md5: 72437384f9364b6baf20b6dd68d282c2 - sha256: 33a0cab4724d8130055f65e6edc101df7136f2f26cefb52669df88de8aeee28c + md5: fa6669cc21abd4b7b6c5393b7bc71914 + sha256: 5ebc4bb71fbdc8048b08848519150c8d44b8eb18445711d3258c9d402ba87a2c category: main optional: false - name: setuptools - version: 78.1.1 + version: 79.0.1 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/setuptools-78.1.1-pyhff2d567_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/setuptools-79.0.1-pyhff2d567_0.conda hash: - md5: 72437384f9364b6baf20b6dd68d282c2 - sha256: 33a0cab4724d8130055f65e6edc101df7136f2f26cefb52669df88de8aeee28c + md5: fa6669cc21abd4b7b6c5393b7bc71914 + sha256: 5ebc4bb71fbdc8048b08848519150c8d44b8eb18445711d3258c9d402ba87a2c category: main optional: false - name: six @@ -7772,7 +7827,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.13.2-pyh29332c3_0.conda hash: md5: 83fc6ae00127671e301c9f44254c31b8 @@ -7784,7 +7839,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.13.2-pyh29332c3_0.conda hash: md5: 83fc6ae00127671e301c9f44254c31b8 @@ -8483,7 +8538,7 @@ package: numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: https://files.pythonhosted.org/packages/7f/0b/36222385937dcda4b4789303027fc538103201f72b4bce99d53398a5b5da/geoapps_utils-0.5.0a3-py3-none-any.whl + url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/geoapps-utils/0.5.0-alpha.3/geoapps_utils-0.5.0a3-py3-none-any.whl hash: sha256: a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c category: main @@ -8497,7 +8552,7 @@ package: numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: https://files.pythonhosted.org/packages/7f/0b/36222385937dcda4b4789303027fc538103201f72b4bce99d53398a5b5da/geoapps_utils-0.5.0a3-py3-none-any.whl + url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/geoapps-utils/0.5.0-alpha.3/geoapps_utils-0.5.0a3-py3-none-any.whl hash: sha256: a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c category: main @@ -8511,7 +8566,7 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - url: https://files.pythonhosted.org/packages/cb/76/a6f12182119218ad7b55ad622a89be4596c1cc37b1182c3f121242c0b0fc/geoh5py-0.11.0a4-py3-none-any.whl + url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/geoh5py/0.11.0-alpha.4/geoh5py-0.11.0a4-py3-none-any.whl hash: sha256: 4965e934b1e57460f98f76f96eca100abf48fd722245154c35af86e7ecbc10a6 category: main @@ -8525,17 +8580,19 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - url: https://files.pythonhosted.org/packages/cb/76/a6f12182119218ad7b55ad622a89be4596c1cc37b1182c3f121242c0b0fc/geoh5py-0.11.0a4-py3-none-any.whl + url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/geoh5py/0.11.0-alpha.4/geoh5py-0.11.0a4-py3-none-any.whl hash: sha256: 4965e934b1e57460f98f76f96eca100abf48fd722245154c35af86e7ecbc10a6 category: main optional: false - name: mira-simpeg - version: 0.23.0.1a3.dev2+g730fa0095 + version: 0.23.0.1a3 manager: pip platform: linux-64 dependencies: + dask: '*' discretize: '>=0.11' + fsspec: '>=0.3.3' geoana: '>=0.7.0' geoh5py: '>=0.11.0a1,<0.12.dev' libdlf: '*' @@ -8543,20 +8600,20 @@ package: numpy: '>=1.22' pymatsolver: '>=0.3' scipy: '>=1.8' - url: git+https://github.com/MiraGeoscience/simpeg.git@730fa00953165f6fd5a87c3942d05cf8e0a7e164 + zarr: '*' + url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/mira-simpeg/0.23.0.1a3+mira/mira_simpeg-0.23.0.1a3-py3-none-any.whl hash: - sha256: 730fa00953165f6fd5a87c3942d05cf8e0a7e164 - source: - type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@730fa00953165f6fd5a87c3942d05cf8e0a7e164 + sha256: 14467e65d801e082bac8a4d972a30b162018df27d06310fb1f2c6960968f88d2 category: main optional: false - name: mira-simpeg - version: 0.23.0.1a3.dev2+g730fa0095 + version: 0.23.0.1a3 manager: pip platform: win-64 dependencies: + dask: '*' discretize: '>=0.11' + fsspec: '>=0.3.3' geoana: '>=0.7.0' geoh5py: '>=0.11.0a1,<0.12.dev' libdlf: '*' @@ -8564,12 +8621,10 @@ package: numpy: '>=1.22' pymatsolver: '>=0.3' scipy: '>=1.8' - url: git+https://github.com/MiraGeoscience/simpeg.git@730fa00953165f6fd5a87c3942d05cf8e0a7e164 + zarr: '*' + url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/mira-simpeg/0.23.0.1a3+mira/mira_simpeg-0.23.0.1a3-py3-none-any.whl hash: - sha256: 730fa00953165f6fd5a87c3942d05cf8e0a7e164 - source: - type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@730fa00953165f6fd5a87c3942d05cf8e0a7e164 + sha256: 14467e65d801e082bac8a4d972a30b162018df27d06310fb1f2c6960968f88d2 category: main optional: false - name: octree-creation-app @@ -8583,7 +8638,7 @@ package: numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: https://files.pythonhosted.org/packages/8a/60/0a425a5a8cd25d46d8141bf24b20511d0176c9fae0e617f0eeca4675366b/octree_creation_app-0.3.0a2-py3-none-any.whl + url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/octree-creation-app/0.3.0-alpha.2/octree_creation_app-0.3.0a2-py3-none-any.whl hash: sha256: 002896126bf5a958aad1bb9c0a272bfd3c6985d1456dc8022c4e07b5582730ff category: main @@ -8599,7 +8654,7 @@ package: numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: https://files.pythonhosted.org/packages/8a/60/0a425a5a8cd25d46d8141bf24b20511d0176c9fae0e617f0eeca4675366b/octree_creation_app-0.3.0a2-py3-none-any.whl + url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/octree-creation-app/0.3.0-alpha.2/octree_creation_app-0.3.0a2-py3-none-any.whl hash: sha256: 002896126bf5a958aad1bb9c0a272bfd3c6985d1456dc8022c4e07b5582730ff category: main @@ -8611,7 +8666,7 @@ package: dependencies: geoh5py: '>=0.11.0a3,<0.12.dev' numpy: '>=1.26.0,<1.27.0' - url: https://files.pythonhosted.org/packages/a9/b4/5352714c3cd8075b037aac1fcbcfb5f539449c020031cb663ad82a3944d0/param_sweeps-0.2.1a1-py3-none-any.whl + url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/param-sweeps/0.2.1-alpha.1/param_sweeps-0.2.1a1-py3-none-any.whl hash: sha256: 777618dd6eef4b6e86b4976e01c29bb202abb9d295b0774baeabf7534fb9389c category: main @@ -8623,7 +8678,7 @@ package: dependencies: geoh5py: '>=0.11.0a3,<0.12.dev' numpy: '>=1.26.0,<1.27.0' - url: https://files.pythonhosted.org/packages/a9/b4/5352714c3cd8075b037aac1fcbcfb5f539449c020031cb663ad82a3944d0/param_sweeps-0.2.1a1-py3-none-any.whl + url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/param-sweeps/0.2.1-alpha.1/param_sweeps-0.2.1a1-py3-none-any.whl hash: sha256: 777618dd6eef4b6e86b4976e01c29bb202abb9d295b0774baeabf7534fb9389c category: main diff --git a/pyproject.toml b/pyproject.toml index ce9b66f1..addf73e7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -83,8 +83,8 @@ octree-creation-app = {version = ">=0.3.0a1, <0.4.dev", source = "pypi", allow-p geoapps-utils = {version = ">=0.5.0a3, <0.6.dev", source = "pypi", allow-prereleases = true} #geoapps-utils = {git = "https://github.com/MiraGeoscience/geoapps-utils.git", rev = "release/0.5.0"} -#mira-simpeg = {version = ">=0.23.0.1a2, <0.23.1.dev", source="pypi", allow-prereleases = true, extras = ["dask"]} -mira-simpeg = {git = "https://github.com/MiraGeoscience/simpeg.git", rev = "GEOPY-2137", extras = ["dask"]} +mira-simpeg = {version = ">=0.23.0.1a3, <0.23.1.dev", source="pypi", allow-prereleases = true, extras = ["dask"]} +#mira-simpeg = {git = "https://github.com/MiraGeoscience/simpeg.git", rev = "GEOPY-2137", extras = ["dask"]} param-sweeps = {version = ">=0.2.1a1, <0.3.dev", source = "pypi", allow-prereleases = true} #param-sweeps = {git = "https://github.com/MiraGeoscience/param-sweeps.git", rev = "release/0.2.1"} diff --git a/recipe.yaml b/recipe.yaml index a33a5d7d..919af213 100644 --- a/recipe.yaml +++ b/recipe.yaml @@ -28,7 +28,7 @@ requirements: # Mira packages - geoapps-utils >=0.5.0a3, <0.6.dev - geoh5py >=0.11.0a3, <0.12.dev - - mira-simpeg >=0.23.0.1a1, <0.23.1.dev + - mira-simpeg >=0.23.0.1a3, <0.23.1.dev - octree-creation-app >=0.3.0a1, <0.4.dev - param-sweeps >=0.2.1a1, <0.3.dev # direct dependencies From 8d2fe2f33263fa989317560a75b037a44c851c47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Hensgen?= Date: Fri, 25 Apr 2025 12:37:39 -0400 Subject: [PATCH 17/20] [GEOPY-2137] set version to alpha.5 dev.1 for publish and test --- pyproject.toml | 2 +- recipe.yaml | 2 +- simpeg_drivers/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index addf73e7..244803b5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "simpeg-drivers" -version = "0.3.0-alpha.5" +version = "0.3.0-alpha.5.dev.1" description = "Application to run SimPEG inversions with geoh5 files from Geoscience Analyst." license = "MIT" authors = ["Mira Geoscience "] diff --git a/recipe.yaml b/recipe.yaml index 919af213..d7581f4f 100644 --- a/recipe.yaml +++ b/recipe.yaml @@ -2,7 +2,7 @@ schema_version: 1 context: name: "simpeg-drivers" - version: "0.3.0a5" + version: "0.3.0a5-dev.1" python_min: "3.10" package: diff --git a/simpeg_drivers/__init__.py b/simpeg_drivers/__init__.py index 7de256ac..f91005e0 100644 --- a/simpeg_drivers/__init__.py +++ b/simpeg_drivers/__init__.py @@ -12,7 +12,7 @@ from __future__ import annotations -__version__ = "0.3.0-alpha.5" +__version__ = "0.3.0-alpha.5.dev.1" import logging From ef5cb3c3eb7498bc9388dca02ee3610b0c4112a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Hensgen?= Date: Fri, 25 Apr 2025 13:50:26 -0400 Subject: [PATCH 18/20] [GEOPY-2137] performance_report to false in ui.json --- simpeg_drivers-assets/uijson/direct_current_2d_forward.ui.json | 2 +- .../uijson/direct_current_2d_inversion.ui.json | 2 +- simpeg_drivers-assets/uijson/direct_current_3d_forward.ui.json | 2 +- .../uijson/direct_current_3d_inversion.ui.json | 2 +- .../uijson/direct_current_batch2d_forward.ui.json | 2 +- .../uijson/direct_current_batch2d_inversion.ui.json | 2 +- simpeg_drivers-assets/uijson/fdem1d_forward.ui.json | 2 +- simpeg_drivers-assets/uijson/fdem1d_inversion.ui.json | 2 +- simpeg_drivers-assets/uijson/fem_forward.ui.json | 2 +- simpeg_drivers-assets/uijson/fem_inversion.ui.json | 2 +- simpeg_drivers-assets/uijson/gravity_forward.ui.json | 2 +- simpeg_drivers-assets/uijson/gravity_inversion.ui.json | 2 +- .../uijson/induced_polarization_2d_forward.ui.json | 2 +- .../uijson/induced_polarization_2d_inversion.ui.json | 2 +- .../uijson/induced_polarization_3d_forward.ui.json | 2 +- .../uijson/induced_polarization_3d_inversion.ui.json | 2 +- .../uijson/induced_polarization_batch2d_forward.ui.json | 2 +- .../uijson/induced_polarization_batch2d_inversion.ui.json | 2 +- .../uijson/joint_cross_gradient_inversion.ui.json | 2 +- simpeg_drivers-assets/uijson/joint_surveys_inversion.ui.json | 2 +- simpeg_drivers-assets/uijson/magnetic_scalar_forward.ui.json | 2 +- simpeg_drivers-assets/uijson/magnetic_scalar_inversion.ui.json | 2 +- simpeg_drivers-assets/uijson/magnetic_vector_forward.ui.json | 2 +- simpeg_drivers-assets/uijson/magnetic_vector_inversion.ui.json | 2 +- simpeg_drivers-assets/uijson/magnetotellurics_forward.ui.json | 2 +- simpeg_drivers-assets/uijson/magnetotellurics_inversion.ui.json | 2 +- simpeg_drivers-assets/uijson/tdem1d_forward.ui.json | 2 +- simpeg_drivers-assets/uijson/tdem1d_inversion.ui.json | 2 +- simpeg_drivers-assets/uijson/tdem_forward.ui.json | 2 +- simpeg_drivers-assets/uijson/tdem_inversion.ui.json | 2 +- simpeg_drivers-assets/uijson/tipper_forward.ui.json | 2 +- simpeg_drivers-assets/uijson/tipper_inversion.ui.json | 2 +- 32 files changed, 32 insertions(+), 32 deletions(-) diff --git a/simpeg_drivers-assets/uijson/direct_current_2d_forward.ui.json b/simpeg_drivers-assets/uijson/direct_current_2d_forward.ui.json index 6e4c5f01..ff9dfa3d 100644 --- a/simpeg_drivers-assets/uijson/direct_current_2d_forward.ui.json +++ b/simpeg_drivers-assets/uijson/direct_current_2d_forward.ui.json @@ -229,5 +229,5 @@ "n_workers": "", "n_threads": "", "max_ram": "", - "performance_report": "" + "performance_report": false } diff --git a/simpeg_drivers-assets/uijson/direct_current_2d_inversion.ui.json b/simpeg_drivers-assets/uijson/direct_current_2d_inversion.ui.json index 41053ecb..7d4851a9 100644 --- a/simpeg_drivers-assets/uijson/direct_current_2d_inversion.ui.json +++ b/simpeg_drivers-assets/uijson/direct_current_2d_inversion.ui.json @@ -574,5 +574,5 @@ "n_workers": "", "n_threads": "", "max_ram": "", - "performance_report": "" + "performance_report": false } diff --git a/simpeg_drivers-assets/uijson/direct_current_3d_forward.ui.json b/simpeg_drivers-assets/uijson/direct_current_3d_forward.ui.json index 9e55322b..132f72e0 100644 --- a/simpeg_drivers-assets/uijson/direct_current_3d_forward.ui.json +++ b/simpeg_drivers-assets/uijson/direct_current_3d_forward.ui.json @@ -169,5 +169,5 @@ "n_workers": "", "n_threads": "", "max_ram": "", - "performance_report": "" + "performance_report": false } diff --git a/simpeg_drivers-assets/uijson/direct_current_3d_inversion.ui.json b/simpeg_drivers-assets/uijson/direct_current_3d_inversion.ui.json index 86ba32d9..7ffbdba7 100644 --- a/simpeg_drivers-assets/uijson/direct_current_3d_inversion.ui.json +++ b/simpeg_drivers-assets/uijson/direct_current_3d_inversion.ui.json @@ -554,5 +554,5 @@ "n_workers": "", "n_threads": "", "max_ram": "", - "performance_report": "" + "performance_report": false } diff --git a/simpeg_drivers-assets/uijson/direct_current_batch2d_forward.ui.json b/simpeg_drivers-assets/uijson/direct_current_batch2d_forward.ui.json index 120ef94b..f2625c69 100644 --- a/simpeg_drivers-assets/uijson/direct_current_batch2d_forward.ui.json +++ b/simpeg_drivers-assets/uijson/direct_current_batch2d_forward.ui.json @@ -224,5 +224,5 @@ "n_workers": "", "n_threads": "", "max_ram": "", - "performance_report": "" + "performance_report": false } 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 b4497386..df354809 100644 --- a/simpeg_drivers-assets/uijson/direct_current_batch2d_inversion.ui.json +++ b/simpeg_drivers-assets/uijson/direct_current_batch2d_inversion.ui.json @@ -567,5 +567,5 @@ "n_workers": "", "n_threads": "", "max_ram": "", - "performance_report": "" + "performance_report": false } diff --git a/simpeg_drivers-assets/uijson/fdem1d_forward.ui.json b/simpeg_drivers-assets/uijson/fdem1d_forward.ui.json index b8aa26bb..2910cc0c 100644 --- a/simpeg_drivers-assets/uijson/fdem1d_forward.ui.json +++ b/simpeg_drivers-assets/uijson/fdem1d_forward.ui.json @@ -222,5 +222,5 @@ "n_workers": "", "n_threads": "", "max_ram": "", - "performance_report": "" + "performance_report": false } diff --git a/simpeg_drivers-assets/uijson/fdem1d_inversion.ui.json b/simpeg_drivers-assets/uijson/fdem1d_inversion.ui.json index 3c58cde4..8555dc48 100644 --- a/simpeg_drivers-assets/uijson/fdem1d_inversion.ui.json +++ b/simpeg_drivers-assets/uijson/fdem1d_inversion.ui.json @@ -592,5 +592,5 @@ "n_workers": "", "n_threads": "", "max_ram": "", - "performance_report": "" + "performance_report": false } diff --git a/simpeg_drivers-assets/uijson/fem_forward.ui.json b/simpeg_drivers-assets/uijson/fem_forward.ui.json index e53f1951..d67f05b7 100644 --- a/simpeg_drivers-assets/uijson/fem_forward.ui.json +++ b/simpeg_drivers-assets/uijson/fem_forward.ui.json @@ -182,5 +182,5 @@ "n_workers": "", "n_threads": "", "max_ram": "", - "performance_report": "" + "performance_report": false } diff --git a/simpeg_drivers-assets/uijson/fem_inversion.ui.json b/simpeg_drivers-assets/uijson/fem_inversion.ui.json index e970ec64..72d2a00c 100644 --- a/simpeg_drivers-assets/uijson/fem_inversion.ui.json +++ b/simpeg_drivers-assets/uijson/fem_inversion.ui.json @@ -590,5 +590,5 @@ "n_workers": "", "n_threads": "", "max_ram": "", - "performance_report": "" + "performance_report": false } diff --git a/simpeg_drivers-assets/uijson/gravity_forward.ui.json b/simpeg_drivers-assets/uijson/gravity_forward.ui.json index 86fd94a1..53841c23 100644 --- a/simpeg_drivers-assets/uijson/gravity_forward.ui.json +++ b/simpeg_drivers-assets/uijson/gravity_forward.ui.json @@ -216,5 +216,5 @@ "n_workers": "", "n_threads": "", "max_ram": "", - "performance_report": "" + "performance_report": false } diff --git a/simpeg_drivers-assets/uijson/gravity_inversion.ui.json b/simpeg_drivers-assets/uijson/gravity_inversion.ui.json index d2d982ea..34cdae84 100644 --- a/simpeg_drivers-assets/uijson/gravity_inversion.ui.json +++ b/simpeg_drivers-assets/uijson/gravity_inversion.ui.json @@ -818,5 +818,5 @@ "n_workers": "", "n_threads": "", "max_ram": "", - "performance_report": "" + "performance_report": false } diff --git a/simpeg_drivers-assets/uijson/induced_polarization_2d_forward.ui.json b/simpeg_drivers-assets/uijson/induced_polarization_2d_forward.ui.json index a6607954..35fdbf76 100644 --- a/simpeg_drivers-assets/uijson/induced_polarization_2d_forward.ui.json +++ b/simpeg_drivers-assets/uijson/induced_polarization_2d_forward.ui.json @@ -240,5 +240,5 @@ "n_workers": "", "n_threads": "", "max_ram": "", - "performance_report": "" + "performance_report": false } diff --git a/simpeg_drivers-assets/uijson/induced_polarization_2d_inversion.ui.json b/simpeg_drivers-assets/uijson/induced_polarization_2d_inversion.ui.json index b5c91e56..291d0523 100644 --- a/simpeg_drivers-assets/uijson/induced_polarization_2d_inversion.ui.json +++ b/simpeg_drivers-assets/uijson/induced_polarization_2d_inversion.ui.json @@ -584,5 +584,5 @@ "n_workers": "", "n_threads": "", "max_ram": "", - "performance_report": "" + "performance_report": false } diff --git a/simpeg_drivers-assets/uijson/induced_polarization_3d_forward.ui.json b/simpeg_drivers-assets/uijson/induced_polarization_3d_forward.ui.json index 96664662..f3e0843d 100644 --- a/simpeg_drivers-assets/uijson/induced_polarization_3d_forward.ui.json +++ b/simpeg_drivers-assets/uijson/induced_polarization_3d_forward.ui.json @@ -185,5 +185,5 @@ "n_workers": "", "n_threads": "", "max_ram": "", - "performance_report": "" + "performance_report": false } diff --git a/simpeg_drivers-assets/uijson/induced_polarization_3d_inversion.ui.json b/simpeg_drivers-assets/uijson/induced_polarization_3d_inversion.ui.json index b7c079c0..c8c91d7d 100644 --- a/simpeg_drivers-assets/uijson/induced_polarization_3d_inversion.ui.json +++ b/simpeg_drivers-assets/uijson/induced_polarization_3d_inversion.ui.json @@ -570,5 +570,5 @@ "n_workers": "", "n_threads": "", "max_ram": "", - "performance_report": "" + "performance_report": false } diff --git a/simpeg_drivers-assets/uijson/induced_polarization_batch2d_forward.ui.json b/simpeg_drivers-assets/uijson/induced_polarization_batch2d_forward.ui.json index c092898b..74805881 100644 --- a/simpeg_drivers-assets/uijson/induced_polarization_batch2d_forward.ui.json +++ b/simpeg_drivers-assets/uijson/induced_polarization_batch2d_forward.ui.json @@ -235,5 +235,5 @@ "n_workers": "", "n_threads": "", "max_ram": "", - "performance_report": "" + "performance_report": false } 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 c9f955b9..5a75df75 100644 --- a/simpeg_drivers-assets/uijson/induced_polarization_batch2d_inversion.ui.json +++ b/simpeg_drivers-assets/uijson/induced_polarization_batch2d_inversion.ui.json @@ -579,5 +579,5 @@ "n_workers": "", "n_threads": "", "max_ram": "", - "performance_report": "" + "performance_report": false } diff --git a/simpeg_drivers-assets/uijson/joint_cross_gradient_inversion.ui.json b/simpeg_drivers-assets/uijson/joint_cross_gradient_inversion.ui.json index ce3f469c..8a262a6d 100644 --- a/simpeg_drivers-assets/uijson/joint_cross_gradient_inversion.ui.json +++ b/simpeg_drivers-assets/uijson/joint_cross_gradient_inversion.ui.json @@ -469,5 +469,5 @@ "n_workers": "", "n_threads": "", "max_ram": "", - "performance_report": "" + "performance_report": false } diff --git a/simpeg_drivers-assets/uijson/joint_surveys_inversion.ui.json b/simpeg_drivers-assets/uijson/joint_surveys_inversion.ui.json index 9fc69f84..0a5e8b12 100644 --- a/simpeg_drivers-assets/uijson/joint_surveys_inversion.ui.json +++ b/simpeg_drivers-assets/uijson/joint_surveys_inversion.ui.json @@ -549,5 +549,5 @@ "n_workers": "", "n_threads": "", "max_ram": "", - "performance_report": "" + "performance_report": false } diff --git a/simpeg_drivers-assets/uijson/magnetic_scalar_forward.ui.json b/simpeg_drivers-assets/uijson/magnetic_scalar_forward.ui.json index edcfccdd..66c823d7 100644 --- a/simpeg_drivers-assets/uijson/magnetic_scalar_forward.ui.json +++ b/simpeg_drivers-assets/uijson/magnetic_scalar_forward.ui.json @@ -246,5 +246,5 @@ "n_workers": "", "n_threads": "", "max_ram": "", - "performance_report": "" + "performance_report": false } diff --git a/simpeg_drivers-assets/uijson/magnetic_scalar_inversion.ui.json b/simpeg_drivers-assets/uijson/magnetic_scalar_inversion.ui.json index 5e28c0da..eebd0009 100644 --- a/simpeg_drivers-assets/uijson/magnetic_scalar_inversion.ui.json +++ b/simpeg_drivers-assets/uijson/magnetic_scalar_inversion.ui.json @@ -845,5 +845,5 @@ "n_workers": "", "n_threads": "", "max_ram": "", - "performance_report": "" + "performance_report": false } diff --git a/simpeg_drivers-assets/uijson/magnetic_vector_forward.ui.json b/simpeg_drivers-assets/uijson/magnetic_vector_forward.ui.json index ede26e65..e96d03b5 100644 --- a/simpeg_drivers-assets/uijson/magnetic_vector_forward.ui.json +++ b/simpeg_drivers-assets/uijson/magnetic_vector_forward.ui.json @@ -278,5 +278,5 @@ "n_workers": "", "n_threads": "", "max_ram": "", - "performance_report": "" + "performance_report": false } diff --git a/simpeg_drivers-assets/uijson/magnetic_vector_inversion.ui.json b/simpeg_drivers-assets/uijson/magnetic_vector_inversion.ui.json index 2e621d95..fbb2ea82 100644 --- a/simpeg_drivers-assets/uijson/magnetic_vector_inversion.ui.json +++ b/simpeg_drivers-assets/uijson/magnetic_vector_inversion.ui.json @@ -910,5 +910,5 @@ "n_workers": "", "n_threads": "", "max_ram": "", - "performance_report": "" + "performance_report": false } diff --git a/simpeg_drivers-assets/uijson/magnetotellurics_forward.ui.json b/simpeg_drivers-assets/uijson/magnetotellurics_forward.ui.json index fa439684..ca4841ae 100644 --- a/simpeg_drivers-assets/uijson/magnetotellurics_forward.ui.json +++ b/simpeg_drivers-assets/uijson/magnetotellurics_forward.ui.json @@ -223,5 +223,5 @@ "n_workers": "", "n_threads": "", "max_ram": "", - "performance_report": "" + "performance_report": false } diff --git a/simpeg_drivers-assets/uijson/magnetotellurics_inversion.ui.json b/simpeg_drivers-assets/uijson/magnetotellurics_inversion.ui.json index e8e35b2c..c2bf25cf 100644 --- a/simpeg_drivers-assets/uijson/magnetotellurics_inversion.ui.json +++ b/simpeg_drivers-assets/uijson/magnetotellurics_inversion.ui.json @@ -775,5 +775,5 @@ "n_workers": "", "n_threads": "", "max_ram": "", - "performance_report": "" + "performance_report": false } diff --git a/simpeg_drivers-assets/uijson/tdem1d_forward.ui.json b/simpeg_drivers-assets/uijson/tdem1d_forward.ui.json index 9ad2a622..7ceceec1 100644 --- a/simpeg_drivers-assets/uijson/tdem1d_forward.ui.json +++ b/simpeg_drivers-assets/uijson/tdem1d_forward.ui.json @@ -233,5 +233,5 @@ "n_workers": "", "n_threads": "", "max_ram": "", - "performance_report": "" + "performance_report": false } diff --git a/simpeg_drivers-assets/uijson/tdem1d_inversion.ui.json b/simpeg_drivers-assets/uijson/tdem1d_inversion.ui.json index f809856e..c80829e6 100644 --- a/simpeg_drivers-assets/uijson/tdem1d_inversion.ui.json +++ b/simpeg_drivers-assets/uijson/tdem1d_inversion.ui.json @@ -573,5 +573,5 @@ "n_workers": "", "n_threads": "", "max_ram": "", - "performance_report": "" + "performance_report": false } diff --git a/simpeg_drivers-assets/uijson/tdem_forward.ui.json b/simpeg_drivers-assets/uijson/tdem_forward.ui.json index 68eb9437..e056e8fe 100644 --- a/simpeg_drivers-assets/uijson/tdem_forward.ui.json +++ b/simpeg_drivers-assets/uijson/tdem_forward.ui.json @@ -201,5 +201,5 @@ "n_workers": "", "n_threads": "", "max_ram": "", - "performance_report": "" + "performance_report": false } diff --git a/simpeg_drivers-assets/uijson/tdem_inversion.ui.json b/simpeg_drivers-assets/uijson/tdem_inversion.ui.json index 3e4f8a1f..0278fd79 100644 --- a/simpeg_drivers-assets/uijson/tdem_inversion.ui.json +++ b/simpeg_drivers-assets/uijson/tdem_inversion.ui.json @@ -624,5 +624,5 @@ "n_workers": "", "n_threads": "", "max_ram": "", - "performance_report": "" + "performance_report": false } diff --git a/simpeg_drivers-assets/uijson/tipper_forward.ui.json b/simpeg_drivers-assets/uijson/tipper_forward.ui.json index 613d71cf..68d2e186 100644 --- a/simpeg_drivers-assets/uijson/tipper_forward.ui.json +++ b/simpeg_drivers-assets/uijson/tipper_forward.ui.json @@ -199,5 +199,5 @@ "n_workers": "", "n_threads": "", "max_ram": "", - "performance_report": "" + "performance_report": false } diff --git a/simpeg_drivers-assets/uijson/tipper_inversion.ui.json b/simpeg_drivers-assets/uijson/tipper_inversion.ui.json index c6605368..cec7c795 100644 --- a/simpeg_drivers-assets/uijson/tipper_inversion.ui.json +++ b/simpeg_drivers-assets/uijson/tipper_inversion.ui.json @@ -655,5 +655,5 @@ "n_workers": "", "n_threads": "", "max_ram": "", - "performance_report": "" + "performance_report": false } From 1de353bb1c52b64a9e056805136301e08205eae2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Hensgen?= Date: Fri, 25 Apr 2025 13:51:20 -0400 Subject: [PATCH 19/20] [GEOPY-2137] in ui.json, correct inversion_type from "fem" to "fdem" --- simpeg_drivers-assets/uijson/fem_forward.ui.json | 2 +- simpeg_drivers-assets/uijson/fem_inversion.ui.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/simpeg_drivers-assets/uijson/fem_forward.ui.json b/simpeg_drivers-assets/uijson/fem_forward.ui.json index d67f05b7..b248c620 100644 --- a/simpeg_drivers-assets/uijson/fem_forward.ui.json +++ b/simpeg_drivers-assets/uijson/fem_forward.ui.json @@ -8,7 +8,7 @@ "geoh5": "", "monitoring_directory": "", "workspace_geoh5": "", - "inversion_type": "fem", + "inversion_type": "fdem", "physical_property": "conductivity", "forward_only": true, "data_object": { diff --git a/simpeg_drivers-assets/uijson/fem_inversion.ui.json b/simpeg_drivers-assets/uijson/fem_inversion.ui.json index 72d2a00c..ec409904 100644 --- a/simpeg_drivers-assets/uijson/fem_inversion.ui.json +++ b/simpeg_drivers-assets/uijson/fem_inversion.ui.json @@ -8,7 +8,7 @@ "geoh5": "", "monitoring_directory": "", "workspace_geoh5": "", - "inversion_type": "fem", + "inversion_type": "fdem", "physical_property": "conductivity", "forward_only": false, "data_object": { From f9b3fa757d9e3c864f9e7388227f99507df4cc33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Hensgen?= Date: Fri, 25 Apr 2025 14:01:09 -0400 Subject: [PATCH 20/20] [GEOPY-2137] Revert "[GEOPY-2137] set version to alpha.5 dev.1 for publish and test" This reverts commit 8d2fe2f33263fa989317560a75b037a44c851c47. --- pyproject.toml | 2 +- recipe.yaml | 2 +- simpeg_drivers/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 244803b5..addf73e7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "simpeg-drivers" -version = "0.3.0-alpha.5.dev.1" +version = "0.3.0-alpha.5" description = "Application to run SimPEG inversions with geoh5 files from Geoscience Analyst." license = "MIT" authors = ["Mira Geoscience "] diff --git a/recipe.yaml b/recipe.yaml index d7581f4f..919af213 100644 --- a/recipe.yaml +++ b/recipe.yaml @@ -2,7 +2,7 @@ schema_version: 1 context: name: "simpeg-drivers" - version: "0.3.0a5-dev.1" + version: "0.3.0a5" python_min: "3.10" package: diff --git a/simpeg_drivers/__init__.py b/simpeg_drivers/__init__.py index f91005e0..7de256ac 100644 --- a/simpeg_drivers/__init__.py +++ b/simpeg_drivers/__init__.py @@ -12,7 +12,7 @@ from __future__ import annotations -__version__ = "0.3.0-alpha.5.dev.1" +__version__ = "0.3.0-alpha.5" import logging