From 434d1c2a8d82f2585a4af086e75428d90368c496 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Hensgen?= Date: Wed, 16 Apr 2025 17:23:28 -0400 Subject: [PATCH 01/14] fix flipped line in github pipeline seems to work in simple scenario quite irregular Would not work with a matrix in the job for example. --- .github/workflows/python_deploy_prod.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python_deploy_prod.yml b/.github/workflows/python_deploy_prod.yml index 6920320..1a2110b 100644 --- a/.github/workflows/python_deploy_prod.yml +++ b/.github/workflows/python_deploy_prod.yml @@ -26,8 +26,8 @@ concurrency: jobs: call-workflow-conda-release: name: Publish production Conda package on JFrog Artifactory - uses: MiraGeoscience/CI-tools/.github/workflows/reusable-python-release_conda_assets.yml@main if: ${{ github.event_name == 'release' || github.event.inputs.publish-conda == 'true' }} + uses: MiraGeoscience/CI-tools/.github/workflows/reusable-python-release_conda_assets.yml@main with: virtual-repo-names: '["public-conda-prod"]' release-tag: ${{ github.event.release.tag_name || github.event.inputs.release-tag }} From 0cb6bfd869f5c745f4d659653936998f9a20a45d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Hensgen?= Date: Thu, 17 Apr 2025 12:56:13 -0400 Subject: [PATCH 02/14] go easy on pylint max-args as long as not too-many-positional-arguments --- pylintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pylintrc b/pylintrc index 79f6944..7839f99 100644 --- a/pylintrc +++ b/pylintrc @@ -342,7 +342,7 @@ exclude-too-few-public-methods= ignored-parents= # Maximum number of arguments for function / method. -max-args=6 +max-args=9 # as long as not hitting too-many-positional-arguments # Maximum number of attributes for a class (see R0902). max-attributes=15 From c7a9a4a08996e934e0654c9fa429a691f3ba682e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Hensgen?= Date: Fri, 18 Apr 2025 22:54:36 -0400 Subject: [PATCH 03/14] no need for pip list in Conda recipe --- recipe.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/recipe.yaml b/recipe.yaml index cd43912..7d413aa 100644 --- a/recipe.yaml +++ b/recipe.yaml @@ -53,10 +53,8 @@ tests: pip_check: false - script: - pytest --ignore=tests/version_test.py - - pip list requirements: run: - - pip - pytest files: source: From 7e45a9536c36857c45d6885f7edd0078f534fdfe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Hensgen?= Date: Fri, 18 Apr 2025 22:55:56 -0400 Subject: [PATCH 04/14] no glibc constraint should be inherited from simpeg-drivers anyway --- recipe.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/recipe.yaml b/recipe.yaml index 7d413aa..c7da3a3 100644 --- a/recipe.yaml +++ b/recipe.yaml @@ -31,15 +31,13 @@ requirements: - octree-creation-app >=0.3.0a1, <0.4.dev - param-sweeps >=0.2.1a1, <0.3.dev - simpeg-drivers >=0.3.0a1, <0.4.dev - # direct dependencies + # other direct dependencies - numpy >=1.26.0, <1.27.dev - pydantic >=2.5.2, <3.0.dev - rtree >=1.2.0, <1.3.dev - scipy >=1.14.0, <1.15.dev - threadpoolctl >=3.3.0, <3.4.dev - trimesh >=4.1.3, <4.2.dev - run_constraints: - - __glibc >=2.17 tests: - python: From 50aff90483f2cb79569bf9542ddd0ce23b543000 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Hensgen?= Date: Sat, 19 Apr 2025 22:40:35 -0400 Subject: [PATCH 05/14] use "noremote" conda repo on Artifactory --- .github/workflows/python_deploy_prod.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python_deploy_prod.yml b/.github/workflows/python_deploy_prod.yml index 1a2110b..2625062 100644 --- a/.github/workflows/python_deploy_prod.yml +++ b/.github/workflows/python_deploy_prod.yml @@ -29,7 +29,7 @@ jobs: if: ${{ github.event_name == 'release' || github.event.inputs.publish-conda == 'true' }} uses: MiraGeoscience/CI-tools/.github/workflows/reusable-python-release_conda_assets.yml@main with: - virtual-repo-names: '["public-conda-prod"]' + virtual-repo-names: '["public-noremote-conda-prod"]' release-tag: ${{ github.event.release.tag_name || github.event.inputs.release-tag }} secrets: JFROG_ARTIFACTORY_URL: ${{ secrets.JFROG_ARTIFACTORY_URL }} From 96f703a2b2c62b0c2b55a8a97f45ca5e989f87db Mon Sep 17 00:00:00 2001 From: dominiquef Date: Tue, 29 Apr 2025 10:58:14 -0700 Subject: [PATCH 06/14] Fix imports for latest change on simpeg-drivers --- plate_simulation/driver.py | 2 +- plate_simulation/params.py | 16 ++++++++-------- tests/runtest/driver_test.py | 4 ++-- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/plate_simulation/driver.py b/plate_simulation/driver.py index 0f2135f..723f3fe 100644 --- a/plate_simulation/driver.py +++ b/plate_simulation/driver.py @@ -22,7 +22,7 @@ from octree_creation_app.driver import OctreeDriver from param_sweeps.generate import generate from simpeg_drivers.driver import InversionDriver -from simpeg_drivers.params import BaseForwardOptions +from simpeg_drivers.options import BaseForwardOptions from plate_simulation.logger import get_logger from plate_simulation.models.events import Anomaly, Erosion, Overburden diff --git a/plate_simulation/params.py b/plate_simulation/params.py index 3eb73cd..cf536b4 100644 --- a/plate_simulation/params.py +++ b/plate_simulation/params.py @@ -14,22 +14,22 @@ from geoapps_utils.driver.data import BaseData from geoh5py.groups import SimPEGGroup, UIJsonGroup from geoh5py.ui_json import InputFile -from simpeg_drivers.electricals.direct_current.three_dimensions.params import ( +from simpeg_drivers.electricals.direct_current.three_dimensions.options import ( DC3DForwardOptions, ) -from simpeg_drivers.electromagnetics.frequency_domain.params import ( +from simpeg_drivers.electromagnetics.frequency_domain.options import ( FDEMForwardOptions, ) -from simpeg_drivers.electromagnetics.time_domain.params import ( +from simpeg_drivers.electromagnetics.time_domain.options import ( TDEMForwardOptions, ) -from simpeg_drivers.natural_sources.magnetotellurics.params import ( +from simpeg_drivers.natural_sources.magnetotellurics.options import ( MTForwardOptions, ) -from simpeg_drivers.natural_sources.tipper.params import TipperForwardOptions -from simpeg_drivers.params import BaseForwardOptions -from simpeg_drivers.potential_fields.gravity.params import GravityForwardOptions -from simpeg_drivers.potential_fields.magnetic_vector.params import ( +from simpeg_drivers.natural_sources.tipper.options import TipperForwardOptions +from simpeg_drivers.options import BaseForwardOptions +from simpeg_drivers.potential_fields.gravity.options import GravityForwardOptions +from simpeg_drivers.potential_fields.magnetic_vector.options import ( MVIForwardOptions, ) diff --git a/tests/runtest/driver_test.py b/tests/runtest/driver_test.py index 66940bc..3b3ccd8 100644 --- a/tests/runtest/driver_test.py +++ b/tests/runtest/driver_test.py @@ -15,8 +15,8 @@ from geoh5py.groups import SimPEGGroup from geoh5py.objects import AirborneTEMReceivers, ObjectBase, Octree, Surface from geoh5py.ui_json import InputFile -from simpeg_drivers.electromagnetics.time_domain.params import TDEMForwardOptions -from simpeg_drivers.potential_fields.gravity.params import GravityForwardOptions +from simpeg_drivers.electromagnetics.time_domain.options import TDEMForwardOptions +from simpeg_drivers.potential_fields.gravity.options import GravityForwardOptions from plate_simulation import assets_path from plate_simulation.driver import PlateSimulationDriver, PlateSimulationParams From a790377a1be44ddc74d77cbc048a9beed54f4f55 Mon Sep 17 00:00:00 2001 From: dominiquef Date: Tue, 29 Apr 2025 11:03:38 -0700 Subject: [PATCH 07/14] Re-lock --- .../py-3.10-linux-64-dev.conda.lock.yml | 48 +- environments/py-3.10-linux-64.conda.lock.yml | 46 +- .../py-3.10-win-64-dev.conda.lock.yml | 48 +- environments/py-3.10-win-64.conda.lock.yml | 46 +- .../py-3.11-linux-64-dev.conda.lock.yml | 48 +- environments/py-3.11-linux-64.conda.lock.yml | 46 +- .../py-3.11-win-64-dev.conda.lock.yml | 48 +- environments/py-3.11-win-64.conda.lock.yml | 46 +- .../py-3.12-linux-64-dev.conda.lock.yml | 48 +- environments/py-3.12-linux-64.conda.lock.yml | 46 +- .../py-3.12-win-64-dev.conda.lock.yml | 48 +- environments/py-3.12-win-64.conda.lock.yml | 46 +- py-3.10.conda-lock.yml | 1095 ++++++++-------- py-3.11.conda-lock.yml | 1115 +++++++++-------- py-3.12.conda-lock.yml | 1115 +++++++++-------- 15 files changed, 2030 insertions(+), 1859 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 c078a49..2c00fd2 100644 --- a/environments/py-3.10-linux-64-dev.conda.lock.yml +++ b/environments/py-3.10-linux-64-dev.conda.lock.yml @@ -17,7 +17,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.4.26=hbd8a1cb_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - certifi=2025.1.31=pyhd8ed1ab_0 @@ -26,19 +26,19 @@ dependencies: - click=8.1.8=pyh707e725_0 - cloudpickle=3.1.1=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - - contourpy=1.3.1=py310h3788b33_0 + - contourpy=1.3.2=py310h3788b33_0 - coverage=7.8.0=py310h89163eb_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py310ha75aee5_0 - dask-core=2025.3.0=pyhd8ed1ab_0 - - dill=0.3.9=pyhd8ed1ab_1 + - dill=0.4.0=pyhd8ed1ab_0 - discretize=0.11.2=py310ha2bacc8_1 - distributed=2025.3.0=pyhd8ed1ab_0 - docutils=0.19=py310hff52083_1 - exceptiongroup=1.2.2=pyhd8ed1ab_1 - 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 @@ -58,7 +58,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 @@ -66,19 +66,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 @@ -87,17 +89,17 @@ dependencies: - libscotch=7.0.6=hea33c07_1 - libspatialindex=2.0.0=he02047a_0 - libsqlite=3.49.1=hee588c1_2 - - libssh2=1.11.1=hf672d98_0 + - libssh2=1.11.1=hcf80075_0 - libstdcxx=14.2.0=h8f9b012_2 - libstdcxx-ng=14.2.0=h4852527_2 - - libtiff=4.7.0=hd9ff511_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 - 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 @@ -105,18 +107,18 @@ 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=24.2=pyhd8ed1ab_2 + - packaging=25.0=pyh29332c3_1 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py310hebfe307_1 - - pip=25.0.1=pyh8b19718_0 + - pip=25.1=pyh8b19718_0 - platformdirs=4.3.7=pyh29332c3_0 - pluggy=1.5.0=pyhd8ed1ab_1 - psutil=7.0.0=py310ha75aee5_0 @@ -135,7 +137,7 @@ dependencies: - python=3.10.17=hd6af730_0_cpython - python-dateutil=2.9.0.post0=pyhff2d567_1 - python-mumps=0.0.3=py310h6410a28_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 @@ -144,7 +146,7 @@ dependencies: - rtree=1.2.0=py310haf1e407_1 - scikit-learn=1.4.2=py310h981052a_1 - scipy=1.14.1=py310hfcf56fc_2 - - setuptools=78.1.0=pyhff2d567_0 + - setuptools=79.0.1=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 @@ -179,15 +181,15 @@ dependencies: - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 - zipp=3.21.0=pyhd8ed1ab_1 - - zstandard=0.23.0=py310ha75aee5_1 + - zstandard=0.23.0=py310ha75aee5_2 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@7a04b6e280309e649b2811d47168de3fd6ddf61b - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@adfe3987a9637b148c440234e67df9c16315a8d6 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@ad5b2c663795d29216d127679ee121fb13a4d78b - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@45472488f4c20cc2b6fcbf36149cec938e1b0ebf - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@4d0f8262ebb21c803c745fe85583d5cc5ce7d3e6 - - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@9e925c47f9572837d2b9bbc880362aed0c0e4ab8 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@06ee42f5f4767bb6e6da56b919f631722f6fdf36 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 + - mira-simpeg == 0.23.0.1a3 + - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@80641c96ff4b3a7e67f25278c323c5f9f931982f + - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@8d7db643fb6e43490b05e2e1d53caa9cdae07a10 + - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@cef51c8544871aaf9cff890c1ffc9c5cb4516359 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 3fd187f..4cefbaf 100644 --- a/environments/py-3.10-linux-64.conda.lock.yml +++ b/environments/py-3.10-linux-64.conda.lock.yml @@ -14,7 +14,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.4.26=hbd8a1cb_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - certifi=2025.1.31=pyhd8ed1ab_0 @@ -22,7 +22,7 @@ dependencies: - click=8.1.8=pyh707e725_0 - cloudpickle=3.1.1=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - - contourpy=1.3.1=py310h3788b33_0 + - contourpy=1.3.2=py310h3788b33_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py310ha75aee5_0 - dask-core=2025.3.0=pyhd8ed1ab_0 @@ -30,7 +30,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 @@ -46,7 +46,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 @@ -54,19 +54,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 @@ -75,35 +77,35 @@ dependencies: - libscotch=7.0.6=hea33c07_1 - libspatialindex=2.0.0=he02047a_0 - libsqlite=3.49.1=hee588c1_2 - - libssh2=1.11.1=hf672d98_0 + - libssh2=1.11.1=hcf80075_0 - libstdcxx=14.2.0=h8f9b012_2 - libstdcxx-ng=14.2.0=h4852527_2 - - libtiff=4.7.0=hd9ff511_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 - 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 - 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=24.2=pyhd8ed1ab_2 + - packaging=25.0=pyh29332c3_1 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py310hebfe307_1 - - pip=25.0.1=pyh8b19718_0 + - pip=25.1=pyh8b19718_0 - psutil=7.0.0=py310ha75aee5_0 - pthread-stubs=0.4=hb9d3cd8_1002 - pycparser=2.22=pyh29332c3_1 @@ -116,13 +118,13 @@ dependencies: - python=3.10.17=hd6af730_0_cpython - python-dateutil=2.9.0.post0=pyhff2d567_1 - python-mumps=0.0.3=py310h6410a28_0 - - python_abi=3.10=6_cp310 + - python_abi=3.10=7_cp310 - pyyaml=6.0.2=py310h89163eb_2 - readline=8.2=h8c095d6_2 - rtree=1.2.0=py310haf1e407_1 - scikit-learn=1.4.2=py310h981052a_1 - scipy=1.14.1=py310hfcf56fc_2 - - setuptools=78.1.0=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 @@ -146,15 +148,15 @@ dependencies: - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 - zipp=3.21.0=pyhd8ed1ab_1 - - zstandard=0.23.0=py310ha75aee5_1 + - zstandard=0.23.0=py310ha75aee5_2 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@7a04b6e280309e649b2811d47168de3fd6ddf61b - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@adfe3987a9637b148c440234e67df9c16315a8d6 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@ad5b2c663795d29216d127679ee121fb13a4d78b - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@45472488f4c20cc2b6fcbf36149cec938e1b0ebf - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@4d0f8262ebb21c803c745fe85583d5cc5ce7d3e6 - - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@9e925c47f9572837d2b9bbc880362aed0c0e4ab8 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@06ee42f5f4767bb6e6da56b919f631722f6fdf36 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 + - mira-simpeg == 0.23.0.1a3 + - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@80641c96ff4b3a7e67f25278c323c5f9f931982f + - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@8d7db643fb6e43490b05e2e1d53caa9cdae07a10 + - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@cef51c8544871aaf9cff890c1ffc9c5cb4516359 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 93b0c06..0c24780 100644 --- a/environments/py-3.10-win-64-dev.conda.lock.yml +++ b/environments/py-3.10-win-64-dev.conda.lock.yml @@ -16,7 +16,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.4.26=h4c7d964_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - certifi=2025.1.31=pyhd8ed1ab_0 @@ -25,19 +25,19 @@ dependencies: - click=8.1.8=pyh7428d3b_0 - cloudpickle=3.1.1=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - - contourpy=1.3.1=py310hc19bc0b_0 + - contourpy=1.3.2=py310hc19bc0b_0 - coverage=7.8.0=py310h38315fa_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py310ha8f682b_0 - dask-core=2025.3.0=pyhd8ed1ab_0 - - dill=0.3.9=pyhd8ed1ab_1 + - dill=0.4.0=pyhd8ed1ab_0 - discretize=0.11.2=py310h3e8ed56_1 - distributed=2025.3.0=pyhd8ed1ab_0 - docutils=0.19=py310h5588dad_1 - exceptiongroup=1.2.2=pyhd8ed1ab_1 - 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 @@ -56,7 +56,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 @@ -64,44 +64,46 @@ 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 + - libpng=1.6.47=h7a4582a_0 - libspatialindex=2.0.0=h5a68840_0 - libsqlite=3.49.1=h67fdade_2 - - libssh2=1.11.1=he619c9f_0 - - libtiff=4.7.0=h797046b_3 + - libssh2=1.11.1=h9aa295b_0 + - 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 - 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 - mccabe=0.7.0=pyhd8ed1ab_1 - 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=24.2=pyhd8ed1ab_2 + - packaging=25.0=pyh29332c3_1 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py310h3e38d90_1 - - pip=25.0.1=pyh8b19718_0 + - pip=25.1=pyh8b19718_0 - platformdirs=4.3.7=pyh29332c3_0 - pluggy=1.5.0=pyhd8ed1ab_1 - psutil=7.0.0=py310ha8f682b_0 @@ -120,7 +122,7 @@ dependencies: - python=3.10.17=h8c5b53a_0_cpython - python-dateutil=2.9.0.post0=pyhff2d567_1 - python-mumps=0.0.3=py310hb64895d_0 - - python_abi=3.10=6_cp310 + - python_abi=3.10=7_cp310 - pytz=2025.2=pyhd8ed1ab_0 - pyyaml=6.0.2=py310h38315fa_2 - readthedocs-sphinx-ext=2.2.5=pyhd8ed1ab_1 @@ -128,7 +130,7 @@ dependencies: - rtree=1.2.0=py310h08d5ad2_1 - scikit-learn=1.4.2=py310hf2a6c47_1 - scipy=1.14.1=py310hbd0dde3_2 - - setuptools=78.1.0=pyhff2d567_0 + - setuptools=79.0.1=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 @@ -168,15 +170,15 @@ dependencies: - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 - zipp=3.21.0=pyhd8ed1ab_1 - - zstandard=0.23.0=py310ha8f682b_1 + - zstandard=0.23.0=py310ha8f682b_2 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@7a04b6e280309e649b2811d47168de3fd6ddf61b - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@adfe3987a9637b148c440234e67df9c16315a8d6 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@ad5b2c663795d29216d127679ee121fb13a4d78b - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@45472488f4c20cc2b6fcbf36149cec938e1b0ebf - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@4d0f8262ebb21c803c745fe85583d5cc5ce7d3e6 - - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@9e925c47f9572837d2b9bbc880362aed0c0e4ab8 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@06ee42f5f4767bb6e6da56b919f631722f6fdf36 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 + - mira-simpeg == 0.23.0.1a3 + - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@80641c96ff4b3a7e67f25278c323c5f9f931982f + - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@8d7db643fb6e43490b05e2e1d53caa9cdae07a10 + - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@cef51c8544871aaf9cff890c1ffc9c5cb4516359 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 005ddb0..c0f4722 100644 --- a/environments/py-3.10-win-64.conda.lock.yml +++ b/environments/py-3.10-win-64.conda.lock.yml @@ -13,7 +13,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.4.26=h4c7d964_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - certifi=2025.1.31=pyhd8ed1ab_0 @@ -21,7 +21,7 @@ dependencies: - click=8.1.8=pyh7428d3b_0 - cloudpickle=3.1.1=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - - contourpy=1.3.1=py310hc19bc0b_0 + - contourpy=1.3.2=py310hc19bc0b_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py310ha8f682b_0 - dask-core=2025.3.0=pyhd8ed1ab_0 @@ -29,7 +29,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 @@ -44,7 +44,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 @@ -52,43 +52,45 @@ 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 + - libpng=1.6.47=h7a4582a_0 - libspatialindex=2.0.0=h5a68840_0 - libsqlite=3.49.1=h67fdade_2 - - libssh2=1.11.1=he619c9f_0 - - libtiff=4.7.0=h797046b_3 + - libssh2=1.11.1=h9aa295b_0 + - 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 - 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 - 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=24.2=pyhd8ed1ab_2 + - packaging=25.0=pyh29332c3_1 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py310h3e38d90_1 - - pip=25.0.1=pyh8b19718_0 + - pip=25.1=pyh8b19718_0 - psutil=7.0.0=py310ha8f682b_0 - pthread-stubs=0.4=h0e40799_1002 - pycparser=2.22=pyh29332c3_1 @@ -101,12 +103,12 @@ dependencies: - python=3.10.17=h8c5b53a_0_cpython - python-dateutil=2.9.0.post0=pyhff2d567_1 - python-mumps=0.0.3=py310hb64895d_0 - - python_abi=3.10=6_cp310 + - python_abi=3.10=7_cp310 - pyyaml=6.0.2=py310h38315fa_2 - rtree=1.2.0=py310h08d5ad2_1 - scikit-learn=1.4.2=py310hf2a6c47_1 - scipy=1.14.1=py310hbd0dde3_2 - - setuptools=78.1.0=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 @@ -135,15 +137,15 @@ dependencies: - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 - zipp=3.21.0=pyhd8ed1ab_1 - - zstandard=0.23.0=py310ha8f682b_1 + - zstandard=0.23.0=py310ha8f682b_2 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@7a04b6e280309e649b2811d47168de3fd6ddf61b - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@adfe3987a9637b148c440234e67df9c16315a8d6 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@ad5b2c663795d29216d127679ee121fb13a4d78b - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@45472488f4c20cc2b6fcbf36149cec938e1b0ebf - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@4d0f8262ebb21c803c745fe85583d5cc5ce7d3e6 - - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@9e925c47f9572837d2b9bbc880362aed0c0e4ab8 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@06ee42f5f4767bb6e6da56b919f631722f6fdf36 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 + - mira-simpeg == 0.23.0.1a3 + - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@80641c96ff4b3a7e67f25278c323c5f9f931982f + - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@8d7db643fb6e43490b05e2e1d53caa9cdae07a10 + - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@cef51c8544871aaf9cff890c1ffc9c5cb4516359 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 3767560..070ddd9 100644 --- a/environments/py-3.11-linux-64-dev.conda.lock.yml +++ b/environments/py-3.11-linux-64-dev.conda.lock.yml @@ -17,7 +17,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.4.26=hbd8a1cb_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - certifi=2025.1.31=pyhd8ed1ab_0 @@ -26,20 +26,20 @@ dependencies: - click=8.1.8=pyh707e725_0 - cloudpickle=3.1.1=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - - contourpy=1.3.1=py311hd18a35c_0 + - contourpy=1.3.2=py311hd18a35c_0 - coverage=7.8.0=py311h2dc5d0c_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py311h9ecbd09_0 - dask-core=2025.3.0=pyhd8ed1ab_0 - deprecated=1.2.18=pyhd8ed1ab_0 - - dill=0.3.9=pyhd8ed1ab_1 + - dill=0.4.0=pyhd8ed1ab_0 - discretize=0.11.2=py311h5b7b71f_1 - distributed=2025.3.0=pyhd8ed1ab_0 - docutils=0.19=py311h38be061_1 - exceptiongroup=1.2.2=pyhd8ed1ab_1 - 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 @@ -59,7 +59,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 @@ -67,19 +67,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 @@ -88,17 +90,17 @@ dependencies: - libscotch=7.0.6=hea33c07_1 - libspatialindex=2.0.0=he02047a_0 - libsqlite=3.49.1=hee588c1_2 - - libssh2=1.11.1=hf672d98_0 + - libssh2=1.11.1=hcf80075_0 - libstdcxx=14.2.0=h8f9b012_2 - libstdcxx-ng=14.2.0=h4852527_2 - - libtiff=4.7.0=hd9ff511_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 - 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 @@ -106,18 +108,18 @@ 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=24.2=pyhd8ed1ab_2 + - packaging=25.0=pyh29332c3_1 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py311h82a398c_1 - - pip=25.0.1=pyh8b19718_0 + - pip=25.1=pyh8b19718_0 - platformdirs=4.3.7=pyh29332c3_0 - pluggy=1.5.0=pyhd8ed1ab_1 - psutil=7.0.0=py311h9ecbd09_0 @@ -136,7 +138,7 @@ dependencies: - python=3.11.12=h9e4cc4f_0_cpython - python-dateutil=2.9.0.post0=pyhff2d567_1 - python-mumps=0.0.3=py311h4b558b0_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 @@ -145,7 +147,7 @@ dependencies: - rtree=1.2.0=py311ha1603b9_1 - scikit-learn=1.4.2=py311he08f58d_1 - scipy=1.14.1=py311he9a78e4_2 - - setuptools=78.1.0=pyhff2d567_0 + - setuptools=79.0.1=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 @@ -181,15 +183,15 @@ dependencies: - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 - zipp=3.21.0=pyhd8ed1ab_1 - - zstandard=0.23.0=py311h9ecbd09_1 + - zstandard=0.23.0=py311h9ecbd09_2 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@7a04b6e280309e649b2811d47168de3fd6ddf61b - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@adfe3987a9637b148c440234e67df9c16315a8d6 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@ad5b2c663795d29216d127679ee121fb13a4d78b - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@45472488f4c20cc2b6fcbf36149cec938e1b0ebf - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@4d0f8262ebb21c803c745fe85583d5cc5ce7d3e6 - - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@9e925c47f9572837d2b9bbc880362aed0c0e4ab8 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@06ee42f5f4767bb6e6da56b919f631722f6fdf36 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 + - mira-simpeg == 0.23.0.1a3 + - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@80641c96ff4b3a7e67f25278c323c5f9f931982f + - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@8d7db643fb6e43490b05e2e1d53caa9cdae07a10 + - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@cef51c8544871aaf9cff890c1ffc9c5cb4516359 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 d84b160..2ad5613 100644 --- a/environments/py-3.11-linux-64.conda.lock.yml +++ b/environments/py-3.11-linux-64.conda.lock.yml @@ -14,7 +14,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.4.26=hbd8a1cb_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - certifi=2025.1.31=pyhd8ed1ab_0 @@ -22,7 +22,7 @@ dependencies: - click=8.1.8=pyh707e725_0 - cloudpickle=3.1.1=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - - contourpy=1.3.1=py311hd18a35c_0 + - contourpy=1.3.2=py311hd18a35c_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py311h9ecbd09_0 - dask-core=2025.3.0=pyhd8ed1ab_0 @@ -31,7 +31,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 @@ -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 @@ -76,35 +78,35 @@ dependencies: - libscotch=7.0.6=hea33c07_1 - libspatialindex=2.0.0=he02047a_0 - libsqlite=3.49.1=hee588c1_2 - - libssh2=1.11.1=hf672d98_0 + - libssh2=1.11.1=hcf80075_0 - libstdcxx=14.2.0=h8f9b012_2 - libstdcxx-ng=14.2.0=h4852527_2 - - libtiff=4.7.0=hd9ff511_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 - 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 - 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=24.2=pyhd8ed1ab_2 + - packaging=25.0=pyh29332c3_1 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py311h82a398c_1 - - pip=25.0.1=pyh8b19718_0 + - pip=25.1=pyh8b19718_0 - psutil=7.0.0=py311h9ecbd09_0 - pthread-stubs=0.4=hb9d3cd8_1002 - pycparser=2.22=pyh29332c3_1 @@ -117,13 +119,13 @@ dependencies: - python=3.11.12=h9e4cc4f_0_cpython - python-dateutil=2.9.0.post0=pyhff2d567_1 - python-mumps=0.0.3=py311h4b558b0_0 - - python_abi=3.11=6_cp311 + - python_abi=3.11=7_cp311 - pyyaml=6.0.2=py311h2dc5d0c_2 - readline=8.2=h8c095d6_2 - rtree=1.2.0=py311ha1603b9_1 - scikit-learn=1.4.2=py311he08f58d_1 - scipy=1.14.1=py311he9a78e4_2 - - setuptools=78.1.0=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 @@ -148,15 +150,15 @@ dependencies: - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 - zipp=3.21.0=pyhd8ed1ab_1 - - zstandard=0.23.0=py311h9ecbd09_1 + - zstandard=0.23.0=py311h9ecbd09_2 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@7a04b6e280309e649b2811d47168de3fd6ddf61b - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@adfe3987a9637b148c440234e67df9c16315a8d6 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@ad5b2c663795d29216d127679ee121fb13a4d78b - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@45472488f4c20cc2b6fcbf36149cec938e1b0ebf - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@4d0f8262ebb21c803c745fe85583d5cc5ce7d3e6 - - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@9e925c47f9572837d2b9bbc880362aed0c0e4ab8 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@06ee42f5f4767bb6e6da56b919f631722f6fdf36 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 + - mira-simpeg == 0.23.0.1a3 + - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@80641c96ff4b3a7e67f25278c323c5f9f931982f + - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@8d7db643fb6e43490b05e2e1d53caa9cdae07a10 + - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@cef51c8544871aaf9cff890c1ffc9c5cb4516359 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 5f23fe7..117d0b9 100644 --- a/environments/py-3.11-win-64-dev.conda.lock.yml +++ b/environments/py-3.11-win-64-dev.conda.lock.yml @@ -16,7 +16,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.4.26=h4c7d964_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - certifi=2025.1.31=pyhd8ed1ab_0 @@ -25,20 +25,20 @@ dependencies: - click=8.1.8=pyh7428d3b_0 - cloudpickle=3.1.1=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - - contourpy=1.3.1=py311h3257749_0 + - contourpy=1.3.2=py311h3257749_0 - coverage=7.8.0=py311h5082efb_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py311he736701_0 - dask-core=2025.3.0=pyhd8ed1ab_0 - deprecated=1.2.18=pyhd8ed1ab_0 - - dill=0.3.9=pyhd8ed1ab_1 + - dill=0.4.0=pyhd8ed1ab_0 - discretize=0.11.2=py311h9b10771_0 - distributed=2025.3.0=pyhd8ed1ab_0 - docutils=0.19=py311h1ea47a8_1 - exceptiongroup=1.2.2=pyhd8ed1ab_1 - 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 @@ -57,7 +57,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 @@ -65,44 +65,46 @@ 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 + - libpng=1.6.47=h7a4582a_0 - libspatialindex=2.0.0=h5a68840_0 - libsqlite=3.49.1=h67fdade_2 - - libssh2=1.11.1=he619c9f_0 - - libtiff=4.7.0=h797046b_3 + - libssh2=1.11.1=h9aa295b_0 + - 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 - 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 - mccabe=0.7.0=pyhd8ed1ab_1 - 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=24.2=pyhd8ed1ab_2 + - packaging=25.0=pyh29332c3_1 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py311h5592be9_1 - - pip=25.0.1=pyh8b19718_0 + - pip=25.1=pyh8b19718_0 - platformdirs=4.3.7=pyh29332c3_0 - pluggy=1.5.0=pyhd8ed1ab_1 - psutil=7.0.0=py311he736701_0 @@ -121,7 +123,7 @@ dependencies: - python=3.11.12=h3f84c4b_0_cpython - python-dateutil=2.9.0.post0=pyhff2d567_1 - python-mumps=0.0.3=py311h5bfbc98_0 - - python_abi=3.11=6_cp311 + - python_abi=3.11=7_cp311 - pytz=2025.2=pyhd8ed1ab_0 - pyyaml=6.0.2=py311h5082efb_2 - readthedocs-sphinx-ext=2.2.5=pyhd8ed1ab_1 @@ -129,7 +131,7 @@ dependencies: - rtree=1.2.0=py311h44d53c4_1 - scikit-learn=1.4.2=py311hdcb8d17_1 - scipy=1.14.1=py311hf16d85f_2 - - setuptools=78.1.0=pyhff2d567_0 + - setuptools=79.0.1=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 @@ -170,15 +172,15 @@ dependencies: - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 - zipp=3.21.0=pyhd8ed1ab_1 - - zstandard=0.23.0=py311he736701_1 + - zstandard=0.23.0=py311he736701_2 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@7a04b6e280309e649b2811d47168de3fd6ddf61b - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@adfe3987a9637b148c440234e67df9c16315a8d6 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@ad5b2c663795d29216d127679ee121fb13a4d78b - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@45472488f4c20cc2b6fcbf36149cec938e1b0ebf - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@4d0f8262ebb21c803c745fe85583d5cc5ce7d3e6 - - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@9e925c47f9572837d2b9bbc880362aed0c0e4ab8 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@06ee42f5f4767bb6e6da56b919f631722f6fdf36 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 + - mira-simpeg == 0.23.0.1a3 + - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@80641c96ff4b3a7e67f25278c323c5f9f931982f + - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@8d7db643fb6e43490b05e2e1d53caa9cdae07a10 + - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@cef51c8544871aaf9cff890c1ffc9c5cb4516359 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 c9f7e8c..81bb89b 100644 --- a/environments/py-3.11-win-64.conda.lock.yml +++ b/environments/py-3.11-win-64.conda.lock.yml @@ -13,7 +13,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.4.26=h4c7d964_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - certifi=2025.1.31=pyhd8ed1ab_0 @@ -21,7 +21,7 @@ dependencies: - click=8.1.8=pyh7428d3b_0 - cloudpickle=3.1.1=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - - contourpy=1.3.1=py311h3257749_0 + - contourpy=1.3.2=py311h3257749_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py311he736701_0 - dask-core=2025.3.0=pyhd8ed1ab_0 @@ -30,7 +30,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 @@ -45,7 +45,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 @@ -53,43 +53,45 @@ 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 + - libpng=1.6.47=h7a4582a_0 - libspatialindex=2.0.0=h5a68840_0 - libsqlite=3.49.1=h67fdade_2 - - libssh2=1.11.1=he619c9f_0 - - libtiff=4.7.0=h797046b_3 + - libssh2=1.11.1=h9aa295b_0 + - 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 - 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 - 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=24.2=pyhd8ed1ab_2 + - packaging=25.0=pyh29332c3_1 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py311h5592be9_1 - - pip=25.0.1=pyh8b19718_0 + - pip=25.1=pyh8b19718_0 - psutil=7.0.0=py311he736701_0 - pthread-stubs=0.4=h0e40799_1002 - pycparser=2.22=pyh29332c3_1 @@ -102,12 +104,12 @@ dependencies: - python=3.11.12=h3f84c4b_0_cpython - python-dateutil=2.9.0.post0=pyhff2d567_1 - python-mumps=0.0.3=py311h5bfbc98_0 - - python_abi=3.11=6_cp311 + - python_abi=3.11=7_cp311 - pyyaml=6.0.2=py311h5082efb_2 - rtree=1.2.0=py311h44d53c4_1 - scikit-learn=1.4.2=py311hdcb8d17_1 - scipy=1.14.1=py311hf16d85f_2 - - setuptools=78.1.0=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 @@ -137,15 +139,15 @@ dependencies: - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 - zipp=3.21.0=pyhd8ed1ab_1 - - zstandard=0.23.0=py311he736701_1 + - zstandard=0.23.0=py311he736701_2 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@7a04b6e280309e649b2811d47168de3fd6ddf61b - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@adfe3987a9637b148c440234e67df9c16315a8d6 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@ad5b2c663795d29216d127679ee121fb13a4d78b - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@45472488f4c20cc2b6fcbf36149cec938e1b0ebf - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@4d0f8262ebb21c803c745fe85583d5cc5ce7d3e6 - - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@9e925c47f9572837d2b9bbc880362aed0c0e4ab8 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@06ee42f5f4767bb6e6da56b919f631722f6fdf36 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 + - mira-simpeg == 0.23.0.1a3 + - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@80641c96ff4b3a7e67f25278c323c5f9f931982f + - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@8d7db643fb6e43490b05e2e1d53caa9cdae07a10 + - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@cef51c8544871aaf9cff890c1ffc9c5cb4516359 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 3470222..b6dc6e4 100644 --- a/environments/py-3.12-linux-64-dev.conda.lock.yml +++ b/environments/py-3.12-linux-64-dev.conda.lock.yml @@ -17,7 +17,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.4.26=hbd8a1cb_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - certifi=2025.1.31=pyhd8ed1ab_0 @@ -26,20 +26,20 @@ dependencies: - click=8.1.8=pyh707e725_0 - cloudpickle=3.1.1=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - - contourpy=1.3.1=py312h68727a3_0 + - contourpy=1.3.2=py312h68727a3_0 - coverage=7.8.0=py312h178313f_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py312h66e93f0_0 - dask-core=2025.3.0=pyhd8ed1ab_0 - deprecated=1.2.18=pyhd8ed1ab_0 - - dill=0.3.9=pyhd8ed1ab_1 + - dill=0.4.0=pyhd8ed1ab_0 - discretize=0.11.2=py312hc39e661_1 - distributed=2025.3.0=pyhd8ed1ab_0 - docutils=0.18.1=py312h7900ff3_0 - exceptiongroup=1.2.2=pyhd8ed1ab_1 - 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 @@ -59,7 +59,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 @@ -67,19 +67,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 @@ -88,17 +90,17 @@ dependencies: - libscotch=7.0.6=hea33c07_1 - libspatialindex=2.0.0=he02047a_0 - libsqlite=3.49.1=hee588c1_2 - - libssh2=1.11.1=hf672d98_0 + - libssh2=1.11.1=hcf80075_0 - libstdcxx=14.2.0=h8f9b012_2 - libstdcxx-ng=14.2.0=h4852527_2 - - libtiff=4.7.0=hd9ff511_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 - 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 @@ -106,18 +108,18 @@ 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=24.2=pyhd8ed1ab_2 + - packaging=25.0=pyh29332c3_1 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py312h287a98d_1 - - pip=25.0.1=pyh8b19718_0 + - pip=25.1=pyh8b19718_0 - platformdirs=4.3.7=pyh29332c3_0 - pluggy=1.5.0=pyhd8ed1ab_1 - psutil=7.0.0=py312h66e93f0_0 @@ -136,7 +138,7 @@ dependencies: - python=3.12.10=h9e4cc4f_0_cpython - python-dateutil=2.9.0.post0=pyhff2d567_1 - python-mumps=0.0.3=py312h6ad3ee3_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 @@ -145,7 +147,7 @@ dependencies: - rtree=1.2.0=py312h3ed4c40_1 - scikit-learn=1.4.2=py312h1fcc3ea_1 - scipy=1.14.1=py312h62794b6_2 - - setuptools=78.1.0=pyhff2d567_0 + - setuptools=79.0.1=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 @@ -181,15 +183,15 @@ dependencies: - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 - zipp=3.21.0=pyhd8ed1ab_1 - - zstandard=0.23.0=py312h66e93f0_1 + - zstandard=0.23.0=py312h66e93f0_2 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@7a04b6e280309e649b2811d47168de3fd6ddf61b - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@adfe3987a9637b148c440234e67df9c16315a8d6 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@ad5b2c663795d29216d127679ee121fb13a4d78b - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@45472488f4c20cc2b6fcbf36149cec938e1b0ebf - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@4d0f8262ebb21c803c745fe85583d5cc5ce7d3e6 - - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@9e925c47f9572837d2b9bbc880362aed0c0e4ab8 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@06ee42f5f4767bb6e6da56b919f631722f6fdf36 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 + - mira-simpeg == 0.23.0.1a3 + - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@80641c96ff4b3a7e67f25278c323c5f9f931982f + - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@8d7db643fb6e43490b05e2e1d53caa9cdae07a10 + - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@cef51c8544871aaf9cff890c1ffc9c5cb4516359 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 3836f62..14aa277 100644 --- a/environments/py-3.12-linux-64.conda.lock.yml +++ b/environments/py-3.12-linux-64.conda.lock.yml @@ -14,7 +14,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.4.26=hbd8a1cb_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - certifi=2025.1.31=pyhd8ed1ab_0 @@ -22,7 +22,7 @@ dependencies: - click=8.1.8=pyh707e725_0 - cloudpickle=3.1.1=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - - contourpy=1.3.1=py312h68727a3_0 + - contourpy=1.3.2=py312h68727a3_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py312h66e93f0_0 - dask-core=2025.3.0=pyhd8ed1ab_0 @@ -31,7 +31,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 @@ -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 @@ -76,35 +78,35 @@ dependencies: - libscotch=7.0.6=hea33c07_1 - libspatialindex=2.0.0=he02047a_0 - libsqlite=3.49.1=hee588c1_2 - - libssh2=1.11.1=hf672d98_0 + - libssh2=1.11.1=hcf80075_0 - libstdcxx=14.2.0=h8f9b012_2 - libstdcxx-ng=14.2.0=h4852527_2 - - libtiff=4.7.0=hd9ff511_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 - 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 - 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=24.2=pyhd8ed1ab_2 + - packaging=25.0=pyh29332c3_1 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py312h287a98d_1 - - pip=25.0.1=pyh8b19718_0 + - pip=25.1=pyh8b19718_0 - psutil=7.0.0=py312h66e93f0_0 - pthread-stubs=0.4=hb9d3cd8_1002 - pycparser=2.22=pyh29332c3_1 @@ -117,13 +119,13 @@ dependencies: - python=3.12.10=h9e4cc4f_0_cpython - python-dateutil=2.9.0.post0=pyhff2d567_1 - python-mumps=0.0.3=py312h6ad3ee3_0 - - python_abi=3.12=6_cp312 + - python_abi=3.12=7_cp312 - pyyaml=6.0.2=py312h178313f_2 - readline=8.2=h8c095d6_2 - rtree=1.2.0=py312h3ed4c40_1 - scikit-learn=1.4.2=py312h1fcc3ea_1 - scipy=1.14.1=py312h62794b6_2 - - setuptools=78.1.0=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 @@ -148,15 +150,15 @@ dependencies: - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 - zipp=3.21.0=pyhd8ed1ab_1 - - zstandard=0.23.0=py312h66e93f0_1 + - zstandard=0.23.0=py312h66e93f0_2 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@7a04b6e280309e649b2811d47168de3fd6ddf61b - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@adfe3987a9637b148c440234e67df9c16315a8d6 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@ad5b2c663795d29216d127679ee121fb13a4d78b - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@45472488f4c20cc2b6fcbf36149cec938e1b0ebf - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@4d0f8262ebb21c803c745fe85583d5cc5ce7d3e6 - - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@9e925c47f9572837d2b9bbc880362aed0c0e4ab8 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@06ee42f5f4767bb6e6da56b919f631722f6fdf36 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 + - mira-simpeg == 0.23.0.1a3 + - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@80641c96ff4b3a7e67f25278c323c5f9f931982f + - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@8d7db643fb6e43490b05e2e1d53caa9cdae07a10 + - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@cef51c8544871aaf9cff890c1ffc9c5cb4516359 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 e242823..daea10e 100644 --- a/environments/py-3.12-win-64-dev.conda.lock.yml +++ b/environments/py-3.12-win-64-dev.conda.lock.yml @@ -16,7 +16,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.4.26=h4c7d964_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - certifi=2025.1.31=pyhd8ed1ab_0 @@ -25,20 +25,20 @@ dependencies: - click=8.1.8=pyh7428d3b_0 - cloudpickle=3.1.1=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - - contourpy=1.3.1=py312hd5eb7cc_0 + - contourpy=1.3.2=py312hd5eb7cc_0 - coverage=7.8.0=py312h31fea79_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py312h4389bb4_0 - dask-core=2025.3.0=pyhd8ed1ab_0 - deprecated=1.2.18=pyhd8ed1ab_0 - - dill=0.3.9=pyhd8ed1ab_1 + - dill=0.4.0=pyhd8ed1ab_0 - discretize=0.11.2=py312hbaa7e33_1 - distributed=2025.3.0=pyhd8ed1ab_0 - docutils=0.18.1=py312h2e8e312_0 - exceptiongroup=1.2.2=pyhd8ed1ab_1 - 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 @@ -57,7 +57,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 @@ -65,44 +65,46 @@ 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 + - libpng=1.6.47=h7a4582a_0 - libspatialindex=2.0.0=h5a68840_0 - libsqlite=3.49.1=h67fdade_2 - - libssh2=1.11.1=he619c9f_0 - - libtiff=4.7.0=h797046b_3 + - libssh2=1.11.1=h9aa295b_0 + - 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 - 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 - mccabe=0.7.0=pyhd8ed1ab_1 - 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=24.2=pyhd8ed1ab_2 + - packaging=25.0=pyh29332c3_1 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py312h381445a_1 - - pip=25.0.1=pyh8b19718_0 + - pip=25.1=pyh8b19718_0 - platformdirs=4.3.7=pyh29332c3_0 - pluggy=1.5.0=pyhd8ed1ab_1 - psutil=7.0.0=py312h4389bb4_0 @@ -121,7 +123,7 @@ dependencies: - python=3.12.10=h3f84c4b_0_cpython - python-dateutil=2.9.0.post0=pyhff2d567_1 - python-mumps=0.0.3=py312h8095395_0 - - python_abi=3.12=6_cp312 + - python_abi=3.12=7_cp312 - pytz=2025.2=pyhd8ed1ab_0 - pyyaml=6.0.2=py312h31fea79_2 - readthedocs-sphinx-ext=2.2.5=pyhd8ed1ab_1 @@ -129,7 +131,7 @@ dependencies: - rtree=1.2.0=py312h50e5f8f_1 - scikit-learn=1.4.2=py312h816cc57_1 - scipy=1.14.1=py312h337df96_2 - - setuptools=78.1.0=pyhff2d567_0 + - setuptools=79.0.1=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 @@ -170,15 +172,15 @@ dependencies: - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 - zipp=3.21.0=pyhd8ed1ab_1 - - zstandard=0.23.0=py312h4389bb4_1 + - zstandard=0.23.0=py312h4389bb4_2 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@7a04b6e280309e649b2811d47168de3fd6ddf61b - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@adfe3987a9637b148c440234e67df9c16315a8d6 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@ad5b2c663795d29216d127679ee121fb13a4d78b - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@45472488f4c20cc2b6fcbf36149cec938e1b0ebf - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@4d0f8262ebb21c803c745fe85583d5cc5ce7d3e6 - - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@9e925c47f9572837d2b9bbc880362aed0c0e4ab8 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@06ee42f5f4767bb6e6da56b919f631722f6fdf36 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 + - mira-simpeg == 0.23.0.1a3 + - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@80641c96ff4b3a7e67f25278c323c5f9f931982f + - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@8d7db643fb6e43490b05e2e1d53caa9cdae07a10 + - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@cef51c8544871aaf9cff890c1ffc9c5cb4516359 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 f33f31e..d574251 100644 --- a/environments/py-3.12-win-64.conda.lock.yml +++ b/environments/py-3.12-win-64.conda.lock.yml @@ -13,7 +13,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.4.26=h4c7d964_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - certifi=2025.1.31=pyhd8ed1ab_0 @@ -21,7 +21,7 @@ dependencies: - click=8.1.8=pyh7428d3b_0 - cloudpickle=3.1.1=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - - contourpy=1.3.1=py312hd5eb7cc_0 + - contourpy=1.3.2=py312hd5eb7cc_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py312h4389bb4_0 - dask-core=2025.3.0=pyhd8ed1ab_0 @@ -30,7 +30,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 @@ -45,7 +45,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 @@ -53,43 +53,45 @@ 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 + - libpng=1.6.47=h7a4582a_0 - libspatialindex=2.0.0=h5a68840_0 - libsqlite=3.49.1=h67fdade_2 - - libssh2=1.11.1=he619c9f_0 - - libtiff=4.7.0=h797046b_3 + - libssh2=1.11.1=h9aa295b_0 + - 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 - 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 - 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=24.2=pyhd8ed1ab_2 + - packaging=25.0=pyh29332c3_1 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py312h381445a_1 - - pip=25.0.1=pyh8b19718_0 + - pip=25.1=pyh8b19718_0 - psutil=7.0.0=py312h4389bb4_0 - pthread-stubs=0.4=h0e40799_1002 - pycparser=2.22=pyh29332c3_1 @@ -102,12 +104,12 @@ dependencies: - python=3.12.10=h3f84c4b_0_cpython - python-dateutil=2.9.0.post0=pyhff2d567_1 - python-mumps=0.0.3=py312h8095395_0 - - python_abi=3.12=6_cp312 + - python_abi=3.12=7_cp312 - pyyaml=6.0.2=py312h31fea79_2 - rtree=1.2.0=py312h50e5f8f_1 - scikit-learn=1.4.2=py312h816cc57_1 - scipy=1.14.1=py312h337df96_2 - - setuptools=78.1.0=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 @@ -137,15 +139,15 @@ dependencies: - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 - zipp=3.21.0=pyhd8ed1ab_1 - - zstandard=0.23.0=py312h4389bb4_1 + - zstandard=0.23.0=py312h4389bb4_2 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@7a04b6e280309e649b2811d47168de3fd6ddf61b - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@adfe3987a9637b148c440234e67df9c16315a8d6 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@ad5b2c663795d29216d127679ee121fb13a4d78b - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@45472488f4c20cc2b6fcbf36149cec938e1b0ebf - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@4d0f8262ebb21c803c745fe85583d5cc5ce7d3e6 - - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@9e925c47f9572837d2b9bbc880362aed0c0e4ab8 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@06ee42f5f4767bb6e6da56b919f631722f6fdf36 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 + - mira-simpeg == 0.23.0.1a3 + - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@80641c96ff4b3a7e67f25278c323c5f9f931982f + - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@8d7db643fb6e43490b05e2e1d53caa9cdae07a10 + - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@cef51c8544871aaf9cff890c1ffc9c5cb4516359 variables: KMP_WARNINGS: 0 diff --git a/py-3.10.conda-lock.yml b/py-3.10.conda-lock.yml index 0249b92..16f680b 100644 --- a/py-3.10.conda-lock.yml +++ b/py-3.10.conda-lock.yml @@ -35,7 +35,7 @@ package: platform: linux-64 dependencies: llvm-openmp: '>=9.0.1' - url: https://packages.prefix.dev/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://packages.prefix.dev/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 @@ -60,7 +60,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://repo.prefix.dev/conda-forge/noarch/alabaster-0.7.16-pyhd8ed1ab_0.conda hash: md5: def531a3ac77b7fb8c21d17bb5d0badb sha256: fd39ad2fabec1569bbb0dfdae34ab6ce7de6ec09dcec8638f83dad0373594069 @@ -72,7 +72,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://repo.prefix.dev/conda-forge/noarch/alabaster-0.7.16-pyhd8ed1ab_0.conda hash: md5: def531a3ac77b7fb8c21d17bb5d0badb sha256: fd39ad2fabec1569bbb0dfdae34ab6ce7de6ec09dcec8638f83dad0373594069 @@ -85,7 +85,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://repo.prefix.dev/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda hash: md5: 2934f256a8acfe48f6ebb4fce6cde29c sha256: e0ea1ba78fbb64f17062601edda82097fcf815012cf52bb704150a2668110d48 @@ -98,7 +98,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://repo.prefix.dev/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda hash: md5: 2934f256a8acfe48f6ebb4fce6cde29c sha256: e0ea1ba78fbb64f17062601edda82097fcf815012cf52bb704150a2668110d48 @@ -110,7 +110,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://repo.prefix.dev/conda-forge/noarch/asciitree-0.3.3-py_2.tar.bz2 hash: md5: c0481c9de49f040272556e2cedf42816 sha256: b3e9369529fe7d721b66f18680ff4b561e20dbf6507e209e1f60eac277c97560 @@ -122,7 +122,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://repo.prefix.dev/conda-forge/noarch/asciitree-0.3.3-py_2.tar.bz2 hash: md5: c0481c9de49f040272556e2cedf42816 sha256: b3e9369529fe7d721b66f18680ff4b561e20dbf6507e209e1f60eac277c97560 @@ -136,7 +136,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://repo.prefix.dev/conda-forge/linux-64/astroid-3.3.9-py310hff52083_0.conda hash: md5: 2d8f1127e88e64103552fbf86a306eee sha256: b95f04ff05b296e1ac706d57a3a0bf7bf12b3275d6042a48ac73fee0a0631793 @@ -150,7 +150,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://repo.prefix.dev/conda-forge/win-64/astroid-3.3.9-py310h5588dad_0.conda hash: md5: 09a0c7f312f8a1e34547ea43cc85867f sha256: a4ce7d09c0762da3c3f67c5a6ae6e5b364339599e0f8e13ee62440c943ce692d @@ -163,7 +163,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://repo.prefix.dev/conda-forge/noarch/babel-2.17.0-pyhd8ed1ab_0.conda hash: md5: 0a01c169f0ab0f91b26e77a3301fbfe4 sha256: 1c656a35800b7f57f7371605bc6507c8d3ad60fbaaec65876fce7f73df1fc8ac @@ -176,7 +176,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://repo.prefix.dev/conda-forge/noarch/babel-2.17.0-pyhd8ed1ab_0.conda hash: md5: 0a01c169f0ab0f91b26e77a3301fbfe4 sha256: 1c656a35800b7f57f7371605bc6507c8d3ad60fbaaec65876fce7f73df1fc8ac @@ -192,7 +192,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://repo.prefix.dev/conda-forge/linux-64/brotli-1.1.0-hb9d3cd8_2.conda hash: md5: 98514fe74548d768907ce7a13f680e8f sha256: fcb0b5b28ba7492093e54f3184435144e074dfceab27ac8e6a9457e736565b0b @@ -209,7 +209,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://repo.prefix.dev/conda-forge/win-64/brotli-1.1.0-h2466b09_2.conda hash: md5: 378f1c9421775dfe644731cb121c8979 sha256: d8fd7d1b446706776117d2dcad1c0289b9f5e1521cb13405173bad38568dd252 @@ -224,7 +224,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://repo.prefix.dev/conda-forge/linux-64/brotli-bin-1.1.0-hb9d3cd8_2.conda hash: md5: c63b5e52939e795ba8d26e35d767a843 sha256: 261364d7445513b9a4debc345650fad13c627029bfc800655a266bf1e375bc65 @@ -240,7 +240,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://repo.prefix.dev/conda-forge/win-64/brotli-bin-1.1.0-h2466b09_2.conda hash: md5: d22534a9be5771fc58eb7564947f669d sha256: f3bf2893613540ac256c68f211861c4de618d96291719e32178d894114ac2bc2 @@ -256,7 +256,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://repo.prefix.dev/conda-forge/linux-64/brotli-python-1.1.0-py310hf71b8c6_2.conda hash: md5: bf502c169c71e3c6ac0d6175addfacc2 sha256: 14f1e89d3888d560a553f40ac5ba83e4435a107552fa5b2b2029a7472554c1ef @@ -272,7 +272,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://repo.prefix.dev/conda-forge/win-64/brotli-python-1.1.0-py310h9e98ed7_2.conda hash: md5: 3a10a1d0cf3ece273195f26191fd6cc6 sha256: 1b7893a07f2323410b09b63b4627103efa86163be835ac94966333b37741cdc7 @@ -285,7 +285,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://repo.prefix.dev/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda hash: md5: 62ee74e96c5ebb0af99386de58cf9553 sha256: 5ced96500d945fb286c9c838e54fa759aa04a7129c59800f0846b4335cee770d @@ -299,7 +299,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://repo.prefix.dev/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda hash: md5: 276e7ffe9ffe39688abc665ef0f45596 sha256: 35a5dad92e88fdd7fc405e864ec239486f4f31eec229e31686e61a140a8e573b @@ -312,32 +312,34 @@ 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://repo.prefix.dev/conda-forge/linux-64/c-ares-1.34.5-hb9d3cd8_0.conda hash: md5: f7f0d6cc2dc986d42ac2689ec88192be sha256: f8003bef369f57396593ccd03d08a8e21966157269426f71e943f96e4b579aeb category: main optional: false - name: ca-certificates - version: 2025.1.31 + version: 2025.4.26 manager: conda platform: linux-64 - dependencies: {} - url: https://packages.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.4.26-hbd8a1cb_0.conda hash: - md5: 19f3a56f68d2fd06c516076bff482c52 - sha256: bf832198976d559ab44d6cdb315642655547e26d826e34da67cbee6624cda189 + md5: 95db94f75ba080a22eb623590993167b + sha256: 2a70ed95ace8a3f8a29e6cd1476a943df294a7111dfb3e152e3478c4c889b7ac category: main optional: false - name: ca-certificates - version: 2025.1.31 + version: 2025.4.26 manager: conda platform: win-64 - dependencies: {} - url: https://packages.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.4.26-h4c7d964_0.conda hash: - md5: 5304a31607974dfc2110dfbb662ed092 - sha256: 1bedccdf25a3bd782d6b0e57ddd97cdcda5501716009f2de4479a779221df155 + md5: 23c7fd5062b48d8294fc7f61bf157fba + sha256: 1454f3f53a3b828d3cb68a3440cb0fa9f1cc0e3c8c26e9e023773dc19d88cc06 category: main optional: false - name: cached-property @@ -346,7 +348,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://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 hash: md5: 9b347a7ec10940d3f7941ff6c460b551 sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17 @@ -358,7 +360,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://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 hash: md5: 9b347a7ec10940d3f7941ff6c460b551 sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17 @@ -370,7 +372,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://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 hash: md5: 576d629e47797577ab0f1b351297ef4a sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7 @@ -382,7 +384,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://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 hash: md5: 576d629e47797577ab0f1b351297ef4a sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7 @@ -394,7 +396,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://repo.prefix.dev/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda hash: md5: c207fa5ac7ea99b149344385a9c0880d sha256: 42a78446da06a2568cb13e69be3355169fbd0ea424b00fc80b7d840f5baaacf3 @@ -406,7 +408,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://repo.prefix.dev/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda hash: md5: c207fa5ac7ea99b149344385a9c0880d sha256: 42a78446da06a2568cb13e69be3355169fbd0ea424b00fc80b7d840f5baaacf3 @@ -423,7 +425,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://repo.prefix.dev/conda-forge/linux-64/cffi-1.17.1-py310h8deb56e_0.conda hash: md5: 1fc24a3196ad5ede2a68148be61894f4 sha256: 1b389293670268ab80c3b8735bc61bc71366862953e000efbb82204d00e41b6c @@ -440,7 +442,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://repo.prefix.dev/conda-forge/win-64/cffi-1.17.1-py310ha8f682b_0.conda hash: md5: 9c7ec967f4ae263aec56cff05bdbfc07 sha256: 32638e79658f76e3700f783c519025290110f207833ae1d166d262572cbec8a8 @@ -452,7 +454,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://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda hash: md5: e83a31202d1c0a000fce3e9cf3825875 sha256: 4e0ee91b97e5de3e74567bdacea27f0139709fceca4db8adffbe24deffccb09b @@ -464,7 +466,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://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda hash: md5: e83a31202d1c0a000fce3e9cf3825875 sha256: 4e0ee91b97e5de3e74567bdacea27f0139709fceca4db8adffbe24deffccb09b @@ -477,7 +479,7 @@ package: dependencies: __unix: '' python: '>=3.9' - url: https://packages.prefix.dev/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 @@ -491,7 +493,7 @@ package: __win: '' colorama: '' python: '>=3.9' - url: https://packages.prefix.dev/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 @@ -503,7 +505,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://repo.prefix.dev/conda-forge/noarch/cloudpickle-3.1.1-pyhd8ed1ab_0.conda hash: md5: 364ba6c9fb03886ac979b482f39ebb92 sha256: 21ecead7268241007bf65691610cd7314da68c1f88113092af690203b5780db5 @@ -515,7 +517,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://repo.prefix.dev/conda-forge/noarch/cloudpickle-3.1.1-pyhd8ed1ab_0.conda hash: md5: 364ba6c9fb03886ac979b482f39ebb92 sha256: 21ecead7268241007bf65691610cd7314da68c1f88113092af690203b5780db5 @@ -527,7 +529,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://repo.prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda hash: md5: 962b9857ee8e7018c22f2776ffa0b2d7 sha256: ab29d57dc70786c1269633ba3dff20288b81664d3ff8d21af995742e2bb03287 @@ -539,14 +541,14 @@ 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://repo.prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda hash: md5: 962b9857ee8e7018c22f2776ffa0b2d7 sha256: ab29d57dc70786c1269633ba3dff20288b81664d3ff8d21af995742e2bb03287 category: main optional: false - name: contourpy - version: 1.3.1 + version: 1.3.2 manager: conda platform: linux-64 dependencies: @@ -556,14 +558,14 @@ 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.1-py310h3788b33_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/contourpy-1.3.2-py310h3788b33_0.conda hash: - md5: f993b13665fc2bb262b30217c815d137 - sha256: 1b18ebb72fb20b9ece47c582c6112b1d4f0f7deebaa056eada99e1f994e8a81f + md5: b6420d29123c7c823de168f49ccdfe6a + sha256: 5231c1b68e01a9bc9debabc077a6fb48c4395206d59f40a4598d1d5e353e11d8 category: main optional: false - name: contourpy - version: 1.3.1 + version: 1.3.2 manager: conda platform: win-64 dependencies: @@ -573,10 +575,10 @@ 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.1-py310hc19bc0b_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/contourpy-1.3.2-py310hc19bc0b_0.conda hash: - md5: 741bcc6a07e77d3102aa23c580cad4f0 - sha256: b9e50ead1c1a7a7c0bff5b1e72436016037b0187cecba7f626c9feffe5b3deaf + md5: 039416813b5290e7d100a05bb4326110 + sha256: 096a7cf6bf77faf3e093936d831118151781ddbd2ab514355ee2f0104b490b1e category: main optional: false - name: coverage @@ -589,7 +591,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://repo.prefix.dev/conda-forge/linux-64/coverage-7.8.0-py310h89163eb_0.conda hash: md5: 9f7865c17117d16f804b687b498e35fa sha256: ac410dbd3b1e28d40b88a27f801210b853ebd388f3cf20f85c0178e97f788013 @@ -606,7 +608,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://repo.prefix.dev/conda-forge/win-64/coverage-7.8.0-py310h38315fa_0.conda hash: md5: 30a825dae940c63c55bca8df4f806f3e sha256: f16e7370e327f20ccba8a6edfb0441ec425c11c10744d6eaa817d05076b458a5 @@ -618,7 +620,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://repo.prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda hash: md5: 44600c4667a319d67dbe0681fc0bc833 sha256: 9827efa891e507a91a8a2acf64e210d2aff394e1cde432ad08e1f8c66b12293c @@ -630,7 +632,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://repo.prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda hash: md5: 44600c4667a319d67dbe0681fc0bc833 sha256: 9827efa891e507a91a8a2acf64e210d2aff394e1cde432ad08e1f8c66b12293c @@ -646,7 +648,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://repo.prefix.dev/conda-forge/linux-64/cytoolz-1.0.1-py310ha75aee5_0.conda hash: md5: d0be1adaa04a03aed745f3d02afb59ce sha256: b427689dfc24a6a297363122ce10d502ea00ddb3c43af6cff175ff563cc94eea @@ -663,7 +665,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://repo.prefix.dev/conda-forge/win-64/cytoolz-1.0.1-py310ha8f682b_0.conda hash: md5: ed2af2a0262d44f753738588640b8534 sha256: 670800d13b6cd64b8f53756b28254b47cfc177606dcd42094696582335ed0f02 @@ -683,7 +685,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://repo.prefix.dev/conda-forge/noarch/dask-core-2025.3.0-pyhd8ed1ab_0.conda hash: md5: 36f6cc22457e3d6a6051c5370832f96c sha256: 72badd945d856d2928fdbe051f136f903bcfee8136f1526c8362c6c465b793ec @@ -703,34 +705,34 @@ 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://repo.prefix.dev/conda-forge/noarch/dask-core-2025.3.0-pyhd8ed1ab_0.conda hash: md5: 36f6cc22457e3d6a6051c5370832f96c sha256: 72badd945d856d2928fdbe051f136f903bcfee8136f1526c8362c6c465b793ec category: main optional: false - name: dill - version: 0.3.9 + version: 0.4.0 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/dill-0.3.9-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda hash: - md5: 5e11310fca410e9f31381157079dee55 - sha256: 499be2f8e4397a46249e8e500535795704af27e56360ae0c964904140b41454a + md5: 885745570573eb6a08e021841928297a + sha256: 43dca52c96fde0c4845aaff02bcc92f25e1c2e5266ddefc2eac1a3de0960a3b1 category: dev optional: true - name: dill - version: 0.3.9 + version: 0.4.0 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/dill-0.3.9-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda hash: - md5: 5e11310fca410e9f31381157079dee55 - sha256: 499be2f8e4397a46249e8e500535795704af27e56360ae0c964904140b41454a + md5: 885745570573eb6a08e021841928297a + sha256: 43dca52c96fde0c4845aaff02bcc92f25e1c2e5266ddefc2eac1a3de0960a3b1 category: dev optional: true - name: discretize @@ -745,7 +747,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://repo.prefix.dev/conda-forge/linux-64/discretize-0.11.2-py310ha2bacc8_1.conda hash: md5: d32664b47026c5d23de390d8b46a2701 sha256: d065d856c25e199a77115a4d8fd54139ee699724a3f1dda6a3f45f33589a66a7 @@ -763,7 +765,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://repo.prefix.dev/conda-forge/win-64/discretize-0.11.2-py310h3e8ed56_1.conda hash: md5: c9cecabe0352f8d1b7ff7e9d52df7270 sha256: e9b03398c7bd480b6e9e287fe673bf767694bdb96cc8d95bb9500bcd25766b5e @@ -791,7 +793,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://repo.prefix.dev/conda-forge/noarch/distributed-2025.3.0-pyhd8ed1ab_0.conda hash: md5: 968a7a4ff98bcfb515b0f1c94d35553f sha256: ea055aeda774d03ec96e0901ec119c6d3dc21ddd50af166bec664a76efd5f82a @@ -819,7 +821,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://repo.prefix.dev/conda-forge/noarch/distributed-2025.3.0-pyhd8ed1ab_0.conda hash: md5: 968a7a4ff98bcfb515b0f1c94d35553f sha256: ea055aeda774d03ec96e0901ec119c6d3dc21ddd50af166bec664a76efd5f82a @@ -832,7 +834,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://repo.prefix.dev/conda-forge/linux-64/docutils-0.19-py310hff52083_1.tar.bz2 hash: md5: 21b8fa2179290505e607f5ccd65b01b0 sha256: f3a564449daedafe5931ab4efe7bc4f240182f2b760e7877f15b2898b7f1c988 @@ -845,7 +847,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://repo.prefix.dev/conda-forge/win-64/docutils-0.19-py310h5588dad_1.tar.bz2 hash: md5: 88111d95b12d83681d0ecdbbc24eee8e sha256: 6b40f145b1fdf6b45016d29f193a8ca72a9359ea44cc19624901248f7a9b5ba7 @@ -857,7 +859,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://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda hash: md5: a16662747cdeb9abbac74d0057cc976e sha256: cbde2c64ec317118fc06b223c5fd87c8a680255e7348dd60e7b292d2e103e701 @@ -869,7 +871,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://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda hash: md5: a16662747cdeb9abbac74d0057cc976e sha256: cbde2c64ec317118fc06b223c5fd87c8a680255e7348dd60e7b292d2e103e701 @@ -881,7 +883,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://repo.prefix.dev/conda-forge/noarch/fasteners-0.19-pyhd8ed1ab_1.conda hash: md5: dbe9d42e94b5ff7af7b7893f4ce052e7 sha256: 42fb170778b47303e82eddfea9a6d1e1b8af00c927cd5a34595eaa882b903a16 @@ -893,7 +895,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://repo.prefix.dev/conda-forge/noarch/fasteners-0.19-pyhd8ed1ab_1.conda hash: md5: dbe9d42e94b5ff7af7b7893f4ce052e7 sha256: 42fb170778b47303e82eddfea9a6d1e1b8af00c927cd5a34595eaa882b903a16 @@ -911,7 +913,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://repo.prefix.dev/conda-forge/linux-64/fonttools-4.57.0-py310h89163eb_0.conda hash: md5: 34378af82141b3c1725dcdf898b28fc6 sha256: 8b387f0906c8ea04f14eb449e1b58e01fb2cdc4b9a093edf6afdc9625c11cfd6 @@ -930,7 +932,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://repo.prefix.dev/conda-forge/win-64/fonttools-4.57.0-py310h38315fa_0.conda hash: md5: 1f25f742c39582715cc058f5fe451975 sha256: bcb3848cb9cc0ff51284dfd91a7615d2c38ba0bd324b3c9764bd53ff0753a874 @@ -941,14 +943,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://packages.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 @@ -956,15 +956,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://packages.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 @@ -973,7 +970,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://repo.prefix.dev/conda-forge/noarch/fsspec-2025.3.2-pyhd8ed1ab_0.conda hash: md5: 9c40692c3d24c7aaf335f673ac09d308 sha256: 2040d4640708bd6ab9ed6cb9901267441798c44974bc63c9b6c1cb4c1891d825 @@ -985,7 +982,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://repo.prefix.dev/conda-forge/noarch/fsspec-2025.3.2-pyhd8ed1ab_0.conda hash: md5: 9c40692c3d24c7aaf335f673ac09d308 sha256: 2040d4640708bd6ab9ed6cb9901267441798c44974bc63c9b6c1cb4c1891d825 @@ -1004,7 +1001,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://repo.prefix.dev/conda-forge/linux-64/geoana-0.7.2-py310ha2bacc8_0.conda hash: md5: c49d268934279b306219be6320b1b290 sha256: fdbb0e98fd00195b2d6b5d3e0d0ee08397f722e1b3da262a65f32da6fc54ef5e @@ -1023,7 +1020,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://repo.prefix.dev/conda-forge/win-64/geoana-0.7.2-py310h3e8ed56_0.conda hash: md5: 3105f90b59411ab6b71bc3c8b71d8b36 sha256: 4d8b287ad229c1dd59b6c76dfdc1a968af2e5229e1cbd146827fedaf419649d7 @@ -1037,7 +1034,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://repo.prefix.dev/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda hash: md5: b4754fb1bdcb70c8fd54f918301582c6 sha256: 0aa1cdc67a9fe75ea95b5644b734a756200d6ec9d0dff66530aec3d1c1e9df75 @@ -1051,7 +1048,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://repo.prefix.dev/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda hash: md5: b4754fb1bdcb70c8fd54f918301582c6 sha256: 0aa1cdc67a9fe75ea95b5644b734a756200d6ec9d0dff66530aec3d1c1e9df75 @@ -1069,7 +1066,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://repo.prefix.dev/conda-forge/linux-64/h5py-3.13.0-nompi_py310h60e0fe6_100.conda hash: md5: 262cb7007454532e0cdf88c34c0c8f41 sha256: 5907cd4f8a57d899a7319b2668321bda8a91b375b0a5e69a8729160b64600d67 @@ -1088,7 +1085,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://repo.prefix.dev/conda-forge/win-64/h5py-3.13.0-nompi_py310h2b0be38_100.conda hash: md5: 2ae28abdc4fe8fc89df85659c1cf8103 sha256: ac37afa6b26272b6b034d91b38e877a905059b526e238391bac500f9249b788b @@ -1108,7 +1105,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://repo.prefix.dev/conda-forge/linux-64/hdf5-1.14.3-nompi_h2d575fe_109.conda hash: md5: e7a7a6e6f70553a31e6e79c65768d089 sha256: e8669a6d76d415f4fdbe682507ac3a3b39e8f493d2f2bdc520817f80b7cc0753 @@ -1126,7 +1123,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://repo.prefix.dev/conda-forge/win-64/hdf5-1.14.3-nompi_hb2c4d47_109.conda hash: md5: ebb61f3e8b35cc15e78876649b7246f7 sha256: d5ada33e119cdd62371c06f60eae6f545de7cea793ab83da2fba428bb1d2f813 @@ -1138,7 +1135,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://repo.prefix.dev/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda hash: md5: 0a802cb9888dd14eeefc611f05c40b6e sha256: 6ad78a180576c706aabeb5b4c8ceb97c0cb25f1e112d76495bff23e3779948ba @@ -1150,7 +1147,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://repo.prefix.dev/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda hash: md5: 0a802cb9888dd14eeefc611f05c40b6e sha256: 6ad78a180576c706aabeb5b4c8ceb97c0cb25f1e112d76495bff23e3779948ba @@ -1162,7 +1159,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://repo.prefix.dev/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda hash: md5: 8e6923fc12f1fe8f8c4e5c9f343256ac sha256: 77af6f5fe8b62ca07d09ac60127a30d9069fdc3c68d6b256754d0ffb1f7779f8 @@ -1174,7 +1171,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://repo.prefix.dev/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda hash: md5: 8e6923fc12f1fe8f8c4e5c9f343256ac sha256: 77af6f5fe8b62ca07d09ac60127a30d9069fdc3c68d6b256754d0ffb1f7779f8 @@ -1186,7 +1183,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://repo.prefix.dev/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda hash: md5: 39a4f67be3286c86d696df570b1201b7 sha256: d7a472c9fd479e2e8dcb83fb8d433fce971ea369d704ece380e876f9c3494e87 @@ -1198,7 +1195,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://repo.prefix.dev/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda hash: md5: 39a4f67be3286c86d696df570b1201b7 sha256: d7a472c9fd479e2e8dcb83fb8d433fce971ea369d704ece380e876f9c3494e87 @@ -1210,7 +1207,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://repo.prefix.dev/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2 hash: md5: 7de5386c8fea29e76b303f37dde4c352 sha256: c2bfd7043e0c4c12d8b5593de666c1e81d67b83c474a0a79282cc5c4ef845460 @@ -1222,7 +1219,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://repo.prefix.dev/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2 hash: md5: 7de5386c8fea29e76b303f37dde4c352 sha256: c2bfd7043e0c4c12d8b5593de666c1e81d67b83c474a0a79282cc5c4ef845460 @@ -1235,7 +1232,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://repo.prefix.dev/conda-forge/noarch/importlib-metadata-8.6.1-pyha770c72_0.conda hash: md5: f4b39bf00c69f56ac01e020ebfac066c sha256: 598951ebdb23e25e4cec4bbff0ae369cec65ead80b50bc08b441d8e54de5cf03 @@ -1248,7 +1245,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://repo.prefix.dev/conda-forge/noarch/importlib-metadata-8.6.1-pyha770c72_0.conda hash: md5: f4b39bf00c69f56ac01e020ebfac066c sha256: 598951ebdb23e25e4cec4bbff0ae369cec65ead80b50bc08b441d8e54de5cf03 @@ -1260,7 +1257,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://repo.prefix.dev/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda hash: md5: 6837f3eff7dcea42ecd714ce1ac2b108 sha256: 0ec8f4d02053cd03b0f3e63168316530949484f80e16f5e2fb199a1d117a89ca @@ -1272,7 +1269,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://repo.prefix.dev/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda hash: md5: 6837f3eff7dcea42ecd714ce1ac2b108 sha256: 0ec8f4d02053cd03b0f3e63168316530949484f80e16f5e2fb199a1d117a89ca @@ -1283,7 +1280,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://repo.prefix.dev/conda-forge/win-64/intel-openmp-2024.2.1-h57928b3_1083.conda hash: md5: 2d89243bfb53652c182a7c73182cce4f sha256: 0fd2b0b84c854029041b0ede8f4c2369242ee92acc0092f8407b1fe9238a8209 @@ -1296,7 +1293,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://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_0.conda hash: md5: a8abfd3f223b1ecb8c699dca974933bd sha256: 9c5fb97efa0eb32b42564edaacb5edb9a1f82ba8f5f8b135e794960101115b5a @@ -1309,7 +1306,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://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_0.conda hash: md5: a8abfd3f223b1ecb8c699dca974933bd sha256: 9c5fb97efa0eb32b42564edaacb5edb9a1f82ba8f5f8b135e794960101115b5a @@ -1322,7 +1319,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://repo.prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda hash: md5: 446bd6c8cb26050d528881df495ce646 sha256: f1ac18b11637ddadc05642e8185a851c7fab5998c6f5470d716812fae943b2af @@ -1335,7 +1332,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://repo.prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda hash: md5: 446bd6c8cb26050d528881df495ce646 sha256: f1ac18b11637ddadc05642e8185a851c7fab5998c6f5470d716812fae943b2af @@ -1348,7 +1345,7 @@ package: dependencies: python: '>=3.9' setuptools: '' - url: https://packages.prefix.dev/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 @@ -1361,7 +1358,7 @@ package: dependencies: python: '>=3.9' setuptools: '' - url: https://packages.prefix.dev/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 @@ -1373,7 +1370,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://repo.prefix.dev/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 hash: md5: 30186d27e2c9fa62b45fb1476b7200e3 sha256: 150c05a6e538610ca7c43beb3a40d65c90537497a4f6a5f4d15ec0451b6f5ebb @@ -1389,7 +1386,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://repo.prefix.dev/conda-forge/linux-64/kiwisolver-1.4.7-py310h3788b33_0.conda hash: md5: 4186d9b4d004b0fe0de6aa62496fb48a sha256: d97a9894803674e4f8155a5e98a49337d28bdee77dfd87e1614a824d190cd086 @@ -1405,7 +1402,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://repo.prefix.dev/conda-forge/win-64/kiwisolver-1.4.7-py310hc19bc0b_0.conda hash: md5: 50d96539497fc7493cbe469fbb6b8b6e sha256: a87dff54b753a2ee19188ab9491a63d40a08873f17c7797cd5c44467a2ff4f12 @@ -1421,7 +1418,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://repo.prefix.dev/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda hash: md5: 3f43953b7d3fb3aaa1d0d0723d91e368 sha256: 99df692f7a8a5c27cd14b5fb1374ee55e756631b9c3d659ed3ee60830249b238 @@ -1436,7 +1433,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://repo.prefix.dev/conda-forge/win-64/krb5-1.21.3-hdf4eb48_0.conda hash: md5: 31aec030344e962fbd7dbbbbd68e60a9 sha256: 18e8b3430d7d232dad132f574268f56b3eb1a19431d6d5de8c53c29e6c18fa81 @@ -1451,7 +1448,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://repo.prefix.dev/conda-forge/linux-64/lcms2-2.17-h717163a_0.conda hash: md5: 000e85703f0fd9594c81710dd5066471 sha256: d6a61830a354da022eae93fa896d0991385a875c6bba53c82263a289deda9db8 @@ -1467,7 +1464,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://repo.prefix.dev/conda-forge/win-64/lcms2-2.17-hbcf6048_0.conda hash: md5: 3538827f77b82a837fa681a4579e37a1 sha256: 7712eab5f1a35ca3ea6db48ead49e0d6ac7f96f8560da8023e61b3dbe4f3b25d @@ -1479,7 +1476,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://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_4.conda hash: md5: 01f8d123c96816249efd255a31ad7712 sha256: db73f38155d901a610b2320525b9dd3b31e4949215c870685fd92ea61b5ce472 @@ -1490,12 +1487,13 @@ package: manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://packages.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 @@ -1503,12 +1501,13 @@ package: manager: conda platform: win-64 dependencies: + ucrt: '>=10.0.20348.0' 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 + 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 @@ -1518,7 +1517,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://repo.prefix.dev/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda hash: md5: 5e97e271911b8b2001a8b71860c32faa sha256: 2ef420a655528bca9d269086cf33b7e90d2f54ad941b437fb1ed5eca87cee017 @@ -1532,7 +1531,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://repo.prefix.dev/conda-forge/win-64/libaec-1.1.3-h63175ca_0.conda hash: md5: 8723000f6ffdbdaef16025f0a01b64c5 sha256: f5c293d3cfc00f71dfdb64bd65ab53625565f8778fc2d5790575bef238976ebf @@ -1544,7 +1543,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://repo.prefix.dev/conda-forge/linux-64/libblas-3.9.0-31_hfdb39a5_mkl.conda hash: md5: bdf4a57254e8248222cb631db4393ff1 sha256: 862289f2cfb84bb6001d0e3569e908b8c42d66b881bd5b03f730a3924628b978 @@ -1556,7 +1555,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://repo.prefix.dev/conda-forge/win-64/libblas-3.9.0-31_h641d27c_mkl.conda hash: md5: d05563c577fe2f37693a554b3f271e8f sha256: 7bb4d5b591e98fe607279520ee78e3571a297b5720aa789a2536041ad5540de8 @@ -1569,7 +1568,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://repo.prefix.dev/conda-forge/linux-64/libbrotlicommon-1.1.0-hb9d3cd8_2.conda hash: md5: 41b599ed2b02abcfdd84302bff174b23 sha256: d9db2de60ea917298e658143354a530e9ca5f9c63471c65cf47ab39fd2f429e3 @@ -1583,7 +1582,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://repo.prefix.dev/conda-forge/win-64/libbrotlicommon-1.1.0-h2466b09_2.conda hash: md5: f7dc9a8f21d74eab46456df301da2972 sha256: 33e8851c6cc8e2d93059792cd65445bfe6be47e4782f826f01593898ec95764c @@ -1597,7 +1596,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://repo.prefix.dev/conda-forge/linux-64/libbrotlidec-1.1.0-hb9d3cd8_2.conda hash: md5: 9566f0bd264fbd463002e759b8a82401 sha256: 2892d512cad096cb03f1b66361deeab58b64e15ba525d6592bb6d609e7045edf @@ -1612,7 +1611,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://repo.prefix.dev/conda-forge/win-64/libbrotlidec-1.1.0-h2466b09_2.conda hash: md5: 9bae75ce723fa34e98e239d21d752a7e sha256: 234fc92f4c4f1cf22f6464b2b15bfc872fa583c74bf3ab9539ff38892c43612f @@ -1626,7 +1625,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://repo.prefix.dev/conda-forge/linux-64/libbrotlienc-1.1.0-hb9d3cd8_2.conda hash: md5: 06f70867945ea6a84d35836af780f1de sha256: 779f58174e99de3600e939fa46eddb453ec5d3c60bb46cdaa8b4c127224dbf29 @@ -1641,7 +1640,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://repo.prefix.dev/conda-forge/win-64/libbrotlienc-1.1.0-h2466b09_2.conda hash: md5: 85741a24d97954a991e55e34bc55990b sha256: 3d0dd7ef505962f107b7ea8f894e0b3dd01bf46852b362c8a7fc136b039bc9e1 @@ -1653,7 +1652,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://repo.prefix.dev/conda-forge/linux-64/libcblas-3.9.0-31_h372d94f_mkl.conda hash: md5: 2a06a6c16b45bd3d10002927ca204b67 sha256: 2ee3ab2b6eeb59f2d3c6f933fa0db28f1b56f0bc543ed2c0f6ec04060e4b6ec0 @@ -1665,7 +1664,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://repo.prefix.dev/conda-forge/win-64/libcblas-3.9.0-31_h5e41251_mkl.conda hash: md5: 43c100b94ad2607382b0cf0f3a6b0bf3 sha256: 609f455b099919bd4d15d4a733f493dc789e02da73fe4474f1cca73afafb95b8 @@ -1684,7 +1683,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://repo.prefix.dev/conda-forge/linux-64/libcurl-8.13.0-h332b0f4_0.conda hash: md5: cbdc92ac0d93fe3c796e36ad65c7905c sha256: 38e528acfaa0276b7052f4de44271ff9293fdb84579650601a8c49dac171482a @@ -1701,7 +1700,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://repo.prefix.dev/conda-forge/win-64/libcurl-8.13.0-h88aaa65_0.conda hash: md5: c9cf6eb842decbb66c2f34e72c3580d6 sha256: 185553b37c0299b7a15dc66a7a7e2a0d421adaac784ec9298a0b2ad745116ca5 @@ -1714,10 +1713,10 @@ 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://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 @@ -1728,10 +1727,10 @@ 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://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 @@ -1741,7 +1740,7 @@ package: dependencies: numpy: '' python: '>=3.10' - url: https://packages.prefix.dev/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 @@ -1754,7 +1753,7 @@ package: dependencies: numpy: '' python: '>=3.10' - url: https://packages.prefix.dev/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 @@ -1768,7 +1767,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://repo.prefix.dev/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.conda hash: md5: c277e0a4d549b03ac1e9d6cbbe3d017b sha256: d789471216e7aba3c184cd054ed61ce3f6dac6f87a50ec69291b9297f8c18724 @@ -1780,7 +1779,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://repo.prefix.dev/conda-forge/linux-64/libev-4.33-hd590300_2.conda hash: md5: 172bf1cd1ff8629f2b1179945ed45055 sha256: 1cd6048169fa0395af74ed5d8f1716e22c19a81a8a36f934c110ca3ad4dd27b4 @@ -1793,7 +1792,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://repo.prefix.dev/conda-forge/linux-64/libexpat-2.7.0-h5888daf_0.conda hash: md5: db0bfbe7dd197b68ad5f30333bae6ce0 sha256: 33ab03438aee65d6aa667cf7d90c91e5e7d734c19a67aa4c7040742c0a13d505 @@ -1807,7 +1806,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://repo.prefix.dev/conda-forge/win-64/libexpat-2.7.0-he0c23c2_0.conda hash: md5: b6f5352fdb525662f4169a0431d2dd7a sha256: 1a227c094a4e06bd54e8c2f3ec40c17ff99dcf3037d812294f842210aa66dbeb @@ -1820,7 +1819,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://repo.prefix.dev/conda-forge/linux-64/libffi-3.4.6-h2dba641_1.conda hash: md5: ede4673863426c0883c0063d853bbd85 sha256: 764432d32db45466e87f10621db5b74363a9f847d2b8b1f9743746cd160f06ab @@ -1834,12 +1833,67 @@ 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://repo.prefix.dev/conda-forge/win-64/libffi-3.4.6-h537db12_1.conda hash: md5: 85d8fa5e55ed8f93f874b3b23ed54ec6 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 @@ -1847,7 +1901,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://repo.prefix.dev/conda-forge/linux-64/libgcc-14.2.0-h767d61c_2.conda hash: md5: ef504d1acbd74b7cc6849ef8af47dd03 sha256: 3a572d031cb86deb541d15c1875aaa097baefc0c580b54dc61f5edab99215792 @@ -1860,7 +1914,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://repo.prefix.dev/conda-forge/win-64/libgcc-14.2.0-h1383e82_2.conda hash: md5: 4a74c1461a0ba47a3346c04bdccbe2ad sha256: fddf2fc037bc95adb3b369e8866da8a71b6a67ebcfc4d7035ac4208309dc9e72 @@ -1872,7 +1926,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://repo.prefix.dev/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_2.conda hash: md5: a2222a6ada71fb478682efe483ce0f92 sha256: fb7558c328b38b2f9d2e412c48da7890e7721ba018d733ebdfea57280df01904 @@ -1884,7 +1938,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://repo.prefix.dev/conda-forge/linux-64/libgfortran-14.2.0-h69a702a_2.conda hash: md5: fb54c4ea68b460c278d26eea89cfbcc3 sha256: e05263e8960da03c341650f2a3ffa4ccae4e111cb198e8933a2908125459e5a6 @@ -1897,7 +1951,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://repo.prefix.dev/conda-forge/linux-64/libgfortran5-14.2.0-hf1ad2bd_2.conda hash: md5: 556a4fdfac7287d349b8f09aba899693 sha256: c17b7cf3073a1f4e1f34d50872934fa326346e104d3c445abc1e62481ad6085c @@ -1909,7 +1963,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://repo.prefix.dev/conda-forge/win-64/libgomp-14.2.0-h1383e82_2.conda hash: md5: dd6b1ab49e28bcb6154cd131acec985b sha256: 674ec5f1bf319eac98d0d6ecb9c38e0192f3cf41969a5621d62a7e695e1aa9f3 @@ -1924,7 +1978,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://repo.prefix.dev/conda-forge/linux-64/libhwloc-2.11.2-default_h0d58e46_1001.conda hash: md5: 804ca9e91bcaea0824a341d55b1684f2 sha256: d14c016482e1409ae1c50109a9ff933460a50940d2682e745ab1c172b5282a69 @@ -1940,7 +1994,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://repo.prefix.dev/conda-forge/win-64/libhwloc-2.11.2-default_ha69328c_1001.conda hash: md5: b87a0ac5ab6495d8225db5dc72dd21cd sha256: 850e255997f538d5fb6ed651321141155a33bb781d43d326fc4ff62114dd2842 @@ -1953,7 +2007,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://repo.prefix.dev/conda-forge/linux-64/libiconv-1.18-h4ce23a2_1.conda hash: md5: e796ff8ddc598affdf7c173d6145f087 sha256: 18a4afe14f731bfb9cf388659994263904d20111e42f841e9eea1bb6f91f4ab4 @@ -1967,36 +2021,37 @@ 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://repo.prefix.dev/conda-forge/win-64/libiconv-1.18-h135ad9c_1.conda hash: md5: 21fc5dba2cbcd8e5e26ff976a312122c sha256: ea5ed2b362b6dbc4ba7188eb4eaf576146e3dfc6f4395e9f0db76ad77465f786 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://packages.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://packages.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 @@ -2005,7 +2060,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://repo.prefix.dev/conda-forge/linux-64/liblapack-3.9.0-31_hc41d3b0_mkl.conda hash: md5: 10d012ddd7cc1c7ff9093d4974a34e53 sha256: a2d20845d916ac8fba09376cd791136a9b4547afb2131bc315178adfc87bb4ca @@ -2017,7 +2072,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://repo.prefix.dev/conda-forge/win-64/liblapack-3.9.0-31_h1aa476e_mkl.conda hash: md5: 40b47ee720a185289760960fc6185750 sha256: 9415e807aa6f8968322bbd756aab8f487379d809c74266d37c697b8d85c534ad @@ -2030,7 +2085,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://repo.prefix.dev/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_0.conda hash: md5: 0e87378639676987af32fee53ba32258 sha256: f4f21dfc54b08d462f707b771ecce3fa9bc702a2a05b55654f64154f48b141ef @@ -2044,7 +2099,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://repo.prefix.dev/conda-forge/win-64/liblzma-5.8.1-h2466b09_0.conda hash: md5: 8d5cb0016b645d6688e2ff57c5d51302 sha256: 1477e9bff05318f3129d37be0e64c76cce0973c4b8c73d13a467d0b7f03d157c @@ -2062,7 +2117,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://repo.prefix.dev/conda-forge/linux-64/libnghttp2-1.64.0-h161d5f1_0.conda hash: md5: 19e57602824042dfd0446292ef90488b sha256: b0f2b3695b13a989f75d8fd7f4778e1c7aabe3b36db83f0fe80b2cd812c0e975 @@ -2074,7 +2129,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://repo.prefix.dev/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda hash: md5: 30fd6e37fe21f86f4bd26d6ee73eeec7 sha256: 26d77a3bb4dceeedc2a41bd688564fe71bf2d149fdcf117049970bc02ff1add6 @@ -2088,7 +2143,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://repo.prefix.dev/conda-forge/linux-64/libpng-1.6.47-h943b412_0.conda hash: md5: 55199e2ae2c3651f6f9b2a447b47bdc9 sha256: 23367d71da58c9a61c8cbd963fcffb92768d4ae5ffbef9a47cdf1f54f98c5c36 @@ -2103,10 +2158,10 @@ 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://repo.prefix.dev/conda-forge/win-64/libpng-1.6.47-h7a4582a_0.conda hash: - md5: 7d717163d9dab337c65f2bf21a676b8f - sha256: cf8a594b697de103025dcae2c917ec9c100609caf7c917a94c64a683cb1db1ac + md5: ad620e92b82d2948bc019e029c574ebb + sha256: e12c46ca882080d901392ae45e0e5a1c96fc3e5acd5cd1a23c2632eb7f024f26 category: main optional: false - name: libscotch @@ -2121,7 +2176,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://repo.prefix.dev/conda-forge/linux-64/libscotch-7.0.6-hea33c07_1.conda hash: md5: 1b600d55dcd98c958192a69a79e6acd2 sha256: 8330bba8b7b3a37da6eca04bace985fb9f8d487d3249b8f690e8f4a3d8d3c7dc @@ -2135,7 +2190,7 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://packages.prefix.dev/conda-forge/linux-64/libspatialindex-2.0.0-he02047a_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libspatialindex-2.0.0-he02047a_0.conda hash: md5: e7d2dcd1a058149ff9731a8dca39566e sha256: 997a4fa13864dcb35ac9dfe87ed70fb3e9509dd071fa1951ac7f184e7ffcde5d @@ -2149,7 +2204,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/libspatialindex-2.0.0-h5a68840_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libspatialindex-2.0.0-h5a68840_0.conda hash: md5: 667559340fdf805ee1652de7b73e2b59 sha256: 7802e6c51d59bc7e062841c525d772656708cdc44e42b6556493d345f08d7e50 @@ -2163,7 +2218,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://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.49.1-hee588c1_2.conda hash: md5: 962d6ac93c30b1dfc54c9cccafd1003e sha256: a086289bf75c33adc1daed3f1422024504ffb5c3c8b3285c49f025c29708ed16 @@ -2177,7 +2232,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://repo.prefix.dev/conda-forge/win-64/libsqlite-3.49.1-h67fdade_2.conda hash: md5: b58b66d4ad1aaf1c2543cbbd6afb1a59 sha256: c092d42d00fd85cf609cc58574ba2b03c141af5762283f36f5dd445ef7c0f4fe @@ -2191,11 +2246,11 @@ package: __glibc: '>=2.17,<3.0.a0' 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 + openssl: '>=3.5.0,<4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/libssh2-1.11.1-hcf80075_0.conda hash: - md5: be2de152d8073ef1c01b7728475f2fe7 - sha256: 0407ac9fda2bb67e11e357066eff144c845801d00b5f664efbc48813af1e7bb9 + md5: eecce068c7e4eddeb169591baac20ac4 + sha256: fa39bfd69228a13e553bd24601332b7cfeb30ca11a3ca50bb028108fe90a7661 category: main optional: false - name: libssh2 @@ -2204,14 +2259,14 @@ package: platform: win-64 dependencies: libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.4.0,<4.0a0' + openssl: '>=3.5.0,<4.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/libssh2-1.11.1-he619c9f_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libssh2-1.11.1-h9aa295b_0.conda hash: - md5: af0cbf037dd614c34399b3b3e568c557 - sha256: 4b3256bd2b4e4b3183005d3bd8826d651eccd1a4740b70625afa2b7e7123d191 + md5: 9dce2f112bfd3400f4f432b3d0ac07b2 + sha256: cbdf93898f2e27cefca5f3fe46519335d1fab25c4ea2a11b11502ff63e602c09 category: main optional: false - name: libstdcxx @@ -2221,7 +2276,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://repo.prefix.dev/conda-forge/linux-64/libstdcxx-14.2.0-h8f9b012_2.conda hash: md5: a78c856b6dc6bf4ea8daeb9beaaa3fb0 sha256: 8f5bd92e4a24e1d35ba015c5252e8f818898478cb3bc50bd8b12ab54707dc4da @@ -2233,7 +2288,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://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-14.2.0-h4852527_2.conda hash: md5: c75da67f045c2627f59e6fcb5f4e3a9b sha256: e86f38b007cf97cc2c67cd519f2de12a313c4ee3f5ef11652ad08932a5e34189 @@ -2248,16 +2303,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://packages.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 @@ -2267,17 +2322,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://packages.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 @@ -2286,7 +2341,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://repo.prefix.dev/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda hash: md5: 40b61aab5c7ba9ff276c41cfffe6b80b sha256: 787eb542f055a2b3de553614b25f09eefb0a0931b0c87dbcce6efdfd92f04f18 @@ -2299,7 +2354,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://repo.prefix.dev/conda-forge/linux-64/libwebp-base-1.5.0-h851e524_0.conda hash: md5: 63f790534398730f59e1b899c3644d4a sha256: c45283fd3e90df5f0bd3dbcd31f59cdd2b001d424cf30a07223655413b158eaf @@ -2313,7 +2368,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://repo.prefix.dev/conda-forge/win-64/libwebp-base-1.5.0-h3b0e114_0.conda hash: md5: 33f7313967072c6e6d8f865f5493c7ae sha256: 1d75274614e83a5750b8b94f7bad2fc0564c2312ff407e697d99152ed095576f @@ -2325,7 +2380,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://repo.prefix.dev/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h57928b3_9.conda hash: md5: 08bfa5da6e242025304b206d152479ef sha256: 373f2973b8a358528b22be5e8d84322c165b4c5577d24d94fd67ad1bb0a0f261 @@ -2341,7 +2396,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://repo.prefix.dev/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda hash: md5: 92ed62436b625154323d40d5f2f11dd7 sha256: 666c0c431b23c6cec6e492840b176dde533d48b7e6fb8883f5071223433776aa @@ -2358,7 +2413,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://repo.prefix.dev/conda-forge/win-64/libxcb-1.17.0-h0e4246c_0.conda hash: md5: a69bbf778a462da324489976c84cfc8c sha256: 08dec73df0e161c96765468847298a420933a36bc4f09b50e062df8793290737 @@ -2370,7 +2425,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://repo.prefix.dev/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda hash: md5: 5aa797f8787fe7a17d1b0821485b5adc sha256: 6ae68e0b86423ef188196fff6207ed0c8195dd84273cb5623b85aa08033a410c @@ -2386,7 +2441,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://repo.prefix.dev/conda-forge/linux-64/libxml2-2.13.7-h81593ed_1.conda hash: md5: 0619e8fc4c8025a908ea3a3422d3b775 sha256: c4f59563e017eba378ea843be5ebde4b0546c72bbe4c1e43b2b384379e827635 @@ -2402,7 +2457,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://repo.prefix.dev/conda-forge/win-64/libxml2-2.13.7-h442d1da_1.conda hash: md5: c14ff7f05e57489df9244917d2b55763 sha256: 0a013527f784f4702dc18460070d8ec79d1ebb5087dd9e678d6afbeaca68d2ac @@ -2415,7 +2470,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://repo.prefix.dev/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda hash: md5: edb0dca6bc32e4f4789199455a1dbeb8 sha256: d4bfe88d7cb447768e31650f06257995601f89076080e76df55e3112d4e47dc4 @@ -2429,36 +2484,36 @@ 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://repo.prefix.dev/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda hash: md5: 41fbfac52c601159df6c01f875de31b9 sha256: ba945c6493449bed0e6e29883c4943817f7c79cbff52b83360f7b341277c6402 category: main optional: false - 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://repo.prefix.dev/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://repo.prefix.dev/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 @@ -2467,7 +2522,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://repo.prefix.dev/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 91e27ef3d05cc772ce627e51cff111c4 sha256: 9afe0b5cfa418e8bdb30d8917c5a6cec10372b037924916f1f85b9f4899a67a6 @@ -2479,7 +2534,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://repo.prefix.dev/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 91e27ef3d05cc772ce627e51cff111c4 sha256: 9afe0b5cfa418e8bdb30d8917c5a6cec10372b037924916f1f85b9f4899a67a6 @@ -2494,7 +2549,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://repo.prefix.dev/conda-forge/linux-64/markupsafe-3.0.2-py310h89163eb_1.conda hash: md5: 8ce3f0332fd6de0d737e2911d329523f sha256: 0bed20ec27dcbcaf04f02b2345358e1161fb338f8423a4ada1cf0f4d46918741 @@ -2510,7 +2565,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://repo.prefix.dev/conda-forge/win-64/markupsafe-3.0.2-py310h38315fa_1.conda hash: md5: 79dfc050ae5a7dd4e63e392c984e2576 sha256: deb8505b7ef76d363174d133e2ff814ae75b91ac4c3ae5550a7686897392f4d0 @@ -2537,7 +2592,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://repo.prefix.dev/conda-forge/linux-64/matplotlib-base-3.8.4-py310hef631a5_2.conda hash: md5: b3fa3fc2a0fa8b53b913c94297b12e27 sha256: 5733c68ff72a04a42d8363965155d4b27a1ed3364a507b8cac582c0b4881d222 @@ -2564,7 +2619,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://repo.prefix.dev/conda-forge/win-64/matplotlib-base-3.8.4-py310hadb10a8_2.conda hash: md5: 8f5e26aa64ab245691efb7f87c584060 sha256: bc3ecb8e9f68fd1b4214e223f08e94d8f88e6fdc237dc0e86efcb9f090737e96 @@ -2576,7 +2631,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://repo.prefix.dev/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda hash: md5: 827064ddfe0de2917fb29f1da4f8f533 sha256: 9b0037171dad0100f0296699a11ae7d355237b55f42f9094aebc0f41512d96a1 @@ -2588,7 +2643,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://repo.prefix.dev/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda hash: md5: 827064ddfe0de2917fb29f1da4f8f533 sha256: 9b0037171dad0100f0296699a11ae7d355237b55f42f9094aebc0f41512d96a1 @@ -2602,7 +2657,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://repo.prefix.dev/conda-forge/linux-64/metis-5.1.0-hd0bcaf9_1007.conda hash: md5: 28eb714416de4eb83e2cbc47e99a1b45 sha256: e8a00971e6d00bd49f375c5d8d005b37a9abba0b1768533aed0f90a422bf5cc7 @@ -2616,7 +2671,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://repo.prefix.dev/conda-forge/linux-64/mkl-2024.2.2-ha957f24_16.conda hash: md5: 1459379c79dda834673426504d52b319 sha256: 77906b0acead8f86b489da46f53916e624897338770dbf70b04b8f673c9273c1 @@ -2629,7 +2684,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://repo.prefix.dev/conda-forge/win-64/mkl-2024.2.2-h66d3029_15.conda hash: md5: 302dff2807f2927b3e9e0d19d60121de sha256: 20e52b0389586d0b914a49cd286c5ccc9c47949bed60ca6df004d1d295f2edbd @@ -2645,7 +2700,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://repo.prefix.dev/conda-forge/linux-64/msgpack-python-1.1.0-py310h3788b33_0.conda hash: md5: 6b586fb03d84e5bfbb1a8a3d9e2c9b60 sha256: 73ca5f0c7d0727a57dcc3c402823ce3aa159ca075210be83078fcc485971e259 @@ -2661,7 +2716,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://repo.prefix.dev/conda-forge/win-64/msgpack-python-1.1.0-py310hc19bc0b_0.conda hash: md5: 2cfcbd596afd76879de4824c2c24f4a2 sha256: db5c3d5e2d28ba0e4e1633f6d52079f0e397bdb60a6f58a2fa942e88071182d2 @@ -2672,10 +2727,10 @@ 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://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 @@ -2693,10 +2748,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://packages.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 @@ -2706,14 +2761,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://packages.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 @@ -2722,7 +2777,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://repo.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 hash: md5: 2ba8498c1018c1e9c61eb99b973dfe19 sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 @@ -2734,7 +2789,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://repo.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 hash: md5: 2ba8498c1018c1e9c61eb99b973dfe19 sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 @@ -2747,7 +2802,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://repo.prefix.dev/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda hash: md5: 47e340acb35de30501a76c7c799c41d7 sha256: 3fde293232fa3fca98635e1167de6b7c7fda83caf24b9d6c91ec9eefb4f4d586 @@ -2765,7 +2820,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://repo.prefix.dev/conda-forge/linux-64/numcodecs-0.13.1-py310h5eaa309_0.conda hash: md5: a3e9933fc59e8bcd2aa20753fb56db42 sha256: 70cb0fa431ba9e75ef36d94f35324089dfa7da8f967e9c758f60e08aaf29b732 @@ -2783,7 +2838,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://repo.prefix.dev/conda-forge/win-64/numcodecs-0.13.1-py310hb4db72f_0.conda hash: md5: 0d316ad384c5c153a67a416f1a8abf97 sha256: 4aa5d7fc0ea81120f2fab5ef6ff3e0c8ea3458a2c8a21935b99dff70b73a349c @@ -2801,7 +2856,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://repo.prefix.dev/conda-forge/linux-64/numpy-1.26.4-py310hb13e2d6_0.conda hash: md5: 6593de64c935768b6bad3e19b3e978be sha256: 028fe2ea8e915a0a032b75165f11747770326f3d767e642880540c60a3256425 @@ -2820,7 +2875,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://repo.prefix.dev/conda-forge/win-64/numpy-1.26.4-py310hf667824_0.conda hash: md5: 93e881c391880df90e74e43a4b67c16d sha256: 20ca447a8f840c01961f2bdf0847fc7b7785a62968e867d7aa4ca8a66d70f9ad @@ -2837,7 +2892,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://repo.prefix.dev/conda-forge/linux-64/openjpeg-2.5.3-h5fbd93e_0.conda hash: md5: 9e5816bc95d285c115a3ebc2f8563564 sha256: 5bee706ea5ba453ed7fd9da7da8380dd88b865c8d30b5aaec14d2b6dd32dbc39 @@ -2854,7 +2909,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://repo.prefix.dev/conda-forge/win-64/openjpeg-2.5.3-h4d64b90_0.conda hash: md5: fc050366dd0b8313eb797ed1ffef3a29 sha256: 410175815df192f57a07c29a6b3fdd4231937173face9e63f0830c1234272ce3 @@ -2868,7 +2923,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://repo.prefix.dev/conda-forge/linux-64/openssl-3.5.0-h7b32b05_0.conda hash: md5: bb539841f2a3fde210f387d00ed4bb9d sha256: 38285d280f84f1755b7c54baf17eccf2e3e696287954ce0adca16546b85ee62c @@ -2883,34 +2938,34 @@ 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://repo.prefix.dev/conda-forge/win-64/openssl-3.5.0-ha4e3fda_0.conda hash: md5: 4ea7db75035eb8c13fa680bb90171e08 sha256: 43dd7f56da142ca83c614c8b0085589650ae9032b351a901c190e48eefc73675 category: main optional: false - 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 + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda hash: - md5: 3bfed7e6228ebf2f7b9eaa47f1b4e2aa - sha256: da157b19bcd398b9804c5c52fc000fcb8ab0525bdb9c70f95beaa0bb42f85af1 + md5: 58335b26c38bf4a20f399384c33cbcf9 + sha256: 289861ed0c13a15d7bbb408796af4de72c2fe67e2bcb0de98f4c3fce259d7991 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://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda hash: - md5: 3bfed7e6228ebf2f7b9eaa47f1b4e2aa - sha256: da157b19bcd398b9804c5c52fc000fcb8ab0525bdb9c70f95beaa0bb42f85af1 + md5: 58335b26c38bf4a20f399384c33cbcf9 + sha256: 289861ed0c13a15d7bbb408796af4de72c2fe67e2bcb0de98f4c3fce259d7991 category: main optional: false - name: partd @@ -2921,7 +2976,7 @@ package: locket: '' python: '>=3.9' toolz: '' - url: https://packages.prefix.dev/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 @@ -2935,7 +2990,7 @@ package: locket: '' python: '>=3.9' toolz: '' - url: https://packages.prefix.dev/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 @@ -2958,7 +3013,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://repo.prefix.dev/conda-forge/linux-64/pillow-10.3.0-py310hebfe307_1.conda hash: md5: 8d357fd769e0e1a957f5916bdc8b1fa2 sha256: adb1d874246c47cc8972894b13eeb70ef1aab067f51e615f4976cfe9c3ee3208 @@ -2983,38 +3038,38 @@ 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://repo.prefix.dev/conda-forge/win-64/pillow-10.3.0-py310h3e38d90_1.conda hash: md5: ee35afda8b2154e7396fae5ca7fbea6b sha256: 50a0d0f8de51c47f8ca0820f0ebfc7730aec4a7a98069347a3395b21b67f7e21 category: main optional: false - name: pip - version: 25.0.1 + version: '25.1' manager: conda platform: linux-64 dependencies: 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://repo.prefix.dev/conda-forge/noarch/pip-25.1-pyh8b19718_0.conda hash: - md5: 79b5c1440aedc5010f687048d9103628 - sha256: 585940f09d87787f79f73ff5dff8eb2af8a67e5bec5eebf2f553cd26c840ba69 + md5: 2247aa245832ea47e8b971bef73d7094 + sha256: 81a7ffe7b7ca8718bc09476a258cd48754e1d4e1bd3b80a6fef41ffb71e3bfc8 category: main optional: false - name: pip - version: 25.0.1 + version: '25.1' manager: conda platform: win-64 dependencies: 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://repo.prefix.dev/conda-forge/noarch/pip-25.1-pyh8b19718_0.conda hash: - md5: 79b5c1440aedc5010f687048d9103628 - sha256: 585940f09d87787f79f73ff5dff8eb2af8a67e5bec5eebf2f553cd26c840ba69 + md5: 2247aa245832ea47e8b971bef73d7094 + sha256: 81a7ffe7b7ca8718bc09476a258cd48754e1d4e1bd3b80a6fef41ffb71e3bfc8 category: main optional: false - name: platformdirs @@ -3023,7 +3078,7 @@ package: platform: linux-64 dependencies: python: '' - url: https://packages.prefix.dev/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 @@ -3034,8 +3089,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://repo.prefix.dev/conda-forge/noarch/platformdirs-4.3.7-pyh29332c3_0.conda hash: md5: e57da6fe54bb3a5556cf36d199ff07d8 sha256: ae7d3e58224d53d6b59e1f5ac5809803bb1972f0ac4fb10cd9b8c87d4122d3e0 @@ -3047,7 +3102,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://repo.prefix.dev/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_1.conda hash: md5: e9dcbce5f45f9ee500e728ae58b605b6 sha256: 122433fc5318816b8c69283aaf267c73d87aa2d09ce39f64c9805c9a3b264819 @@ -3059,7 +3114,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://repo.prefix.dev/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_1.conda hash: md5: e9dcbce5f45f9ee500e728ae58b605b6 sha256: 122433fc5318816b8c69283aaf267c73d87aa2d09ce39f64c9805c9a3b264819 @@ -3074,7 +3129,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://repo.prefix.dev/conda-forge/linux-64/psutil-7.0.0-py310ha75aee5_0.conda hash: md5: da7d592394ff9084a23f62a1186451a2 sha256: 31e46270c73cac2b24a7f3462ca03eb39f21cbfdb713b0d41eb61c00867eabe9 @@ -3090,7 +3145,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://repo.prefix.dev/conda-forge/win-64/psutil-7.0.0-py310ha8f682b_0.conda hash: md5: ec78bb694e0ea34958e8f479e723499e sha256: 61c016c40848168bc565ceb8f3a78ad2d9288ffbe4236bcec312ef554f1caef2 @@ -3103,7 +3158,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://repo.prefix.dev/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda hash: md5: b3c17d95b5a10c6e64a21fa17573e70e sha256: 9c88f8c64590e9567c6c80823f0328e58d3b1efb0e1c539c0315ceca764e0973 @@ -3117,7 +3172,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://repo.prefix.dev/conda-forge/win-64/pthread-stubs-0.4-h0e40799_1002.conda hash: md5: 3c8f2573569bb816483e5cf57efbbe29 sha256: 7e446bafb4d692792310ed022fe284e848c6a868c861655a92435af7368bae7b @@ -3129,7 +3184,7 @@ package: platform: linux-64 dependencies: python: '' - url: https://packages.prefix.dev/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 @@ -3140,8 +3195,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://repo.prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda hash: md5: 12c566707c80111f9799308d9e265aef sha256: 79db7928d13fab2d892592223d7570f5061c192f27b9febd1a418427b719acc6 @@ -3158,7 +3213,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://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.3-pyh3cfb1c2_0.conda hash: md5: 3c6f7f8ae9b9c177ad91ccc187912756 sha256: 89183785b09ebe9f9e65710057d7c41e9d21d4a9ad05e068850e18669655d5a8 @@ -3175,7 +3230,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://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.3-pyh3cfb1c2_0.conda hash: md5: 3c6f7f8ae9b9c177ad91ccc187912756 sha256: 89183785b09ebe9f9e65710057d7c41e9d21d4a9ad05e068850e18669655d5a8 @@ -3191,7 +3246,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://repo.prefix.dev/conda-forge/linux-64/pydantic-core-2.33.1-py310hc1293b2_0.conda hash: md5: 24460b8a58d6d491be4088ffb5343f4b sha256: 76992a2b50b98a43b66be401998b0b71f4bbb3cc0db456309263a604dddff086 @@ -3208,7 +3263,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://repo.prefix.dev/conda-forge/win-64/pydantic-core-2.33.1-py310h7c79e54_0.conda hash: md5: 8e00f6b62285b0731e32dac4da060dd6 sha256: 5d8ba398dd9ff5086b23d753ce2a9833894c99e5cea48861dbed55f4fa0c69aa @@ -3226,7 +3281,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://repo.prefix.dev/conda-forge/linux-64/pydiso-0.1.2-py310h69a6472_0.conda hash: md5: d4ab7c8858c0f0db75600239c09b38d5 sha256: bfaa4f0455b0e3c4f7c535c8e1a3bd4ad1c3a546807647490871f4c3a6106b20 @@ -3245,7 +3300,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://repo.prefix.dev/conda-forge/win-64/pydiso-0.1.2-py310h8f92c26_0.conda hash: md5: 8b436acfa40172914304ac42a6387351 sha256: d86c167db66ccc00a45736f27a485c394713f075a91a18eb02e3416b8e5b4fdc @@ -3257,7 +3312,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://repo.prefix.dev/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda hash: md5: 232fb4577b6687b2d503ef8e254270c9 sha256: 28a3e3161390a9d23bc02b4419448f8d27679d9e2c250e29849e37749c8de86b @@ -3269,7 +3324,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://repo.prefix.dev/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda hash: md5: 232fb4577b6687b2d503ef8e254270c9 sha256: 28a3e3161390a9d23bc02b4419448f8d27679d9e2c250e29849e37749c8de86b @@ -3290,7 +3345,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://repo.prefix.dev/conda-forge/noarch/pylint-3.3.6-pyh29332c3_0.conda hash: md5: 8242cc62822cc8a17f53d24d4efa75f4 sha256: 3e3e35b2cbb4b1ca3063fc2d6f44a85ac189e0935f00ed8fbe8e4713c0d00b99 @@ -3307,11 +3362,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://repo.prefix.dev/conda-forge/noarch/pylint-3.3.6-pyh29332c3_0.conda hash: md5: 8242cc62822cc8a17f53d24d4efa75f4 sha256: 3e3e35b2cbb4b1ca3063fc2d6f44a85ac189e0935f00ed8fbe8e4713c0d00b99 @@ -3327,7 +3382,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://repo.prefix.dev/conda-forge/noarch/pymatsolver-0.3.1-pyh48887ae_201.conda hash: md5: b6805e522702eabf2ebbd236490d5eed sha256: d49ad9b58b9eeae204a3677cafc389c00c7f0f830ef76f481ab9aaf3e0260bad @@ -3343,7 +3398,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://repo.prefix.dev/conda-forge/noarch/pymatsolver-0.3.1-pyh48887ae_201.conda hash: md5: b6805e522702eabf2ebbd236490d5eed sha256: d49ad9b58b9eeae204a3677cafc389c00c7f0f830ef76f481ab9aaf3e0260bad @@ -3355,7 +3410,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://repo.prefix.dev/conda-forge/noarch/pyparsing-3.2.3-pyhd8ed1ab_1.conda hash: md5: 513d3c262ee49b54a8fec85c5bc99764 sha256: b92afb79b52fcf395fd220b29e0dd3297610f2059afac45298d44e00fcbf23b6 @@ -3367,7 +3422,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://repo.prefix.dev/conda-forge/noarch/pyparsing-3.2.3-pyhd8ed1ab_1.conda hash: md5: 513d3c262ee49b54a8fec85c5bc99764 sha256: b92afb79b52fcf395fd220b29e0dd3297610f2059afac45298d44e00fcbf23b6 @@ -3380,7 +3435,7 @@ package: dependencies: __unix: '' python: '>=3.9' - url: https://packages.prefix.dev/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 @@ -3394,7 +3449,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://repo.prefix.dev/conda-forge/noarch/pysocks-1.7.1-pyh09c184e_7.conda hash: md5: e2fd202833c4a981ce8a65974fe4abd1 sha256: d016e04b0e12063fbee4a2d5fbb9b39a8d191b5a0042f0b8459188aedeabb0ca @@ -3412,7 +3467,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://repo.prefix.dev/conda-forge/noarch/pytest-8.3.5-pyhd8ed1ab_0.conda hash: md5: c3c9316209dec74a705a36797970c6be sha256: 963524de7340c56615583ba7b97a6beb20d5c56a59defb59724dc2a3105169c9 @@ -3430,7 +3485,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://repo.prefix.dev/conda-forge/noarch/pytest-8.3.5-pyhd8ed1ab_0.conda hash: md5: c3c9316209dec74a705a36797970c6be sha256: 963524de7340c56615583ba7b97a6beb20d5c56a59defb59724dc2a3105169c9 @@ -3445,7 +3500,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://repo.prefix.dev/conda-forge/noarch/pytest-cov-6.1.1-pyhd8ed1ab_0.conda hash: md5: 1e35d8f975bc0e984a19819aa91c440a sha256: 9961a1524f63d10bc29efdc52013ec06b0e95fb2619a250e250ff3618261d5cd @@ -3460,7 +3515,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://repo.prefix.dev/conda-forge/noarch/pytest-cov-6.1.1-pyhd8ed1ab_0.conda hash: md5: 1e35d8f975bc0e984a19819aa91c440a sha256: 9961a1524f63d10bc29efdc52013ec06b0e95fb2619a250e250ff3618261d5cd @@ -3489,7 +3544,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://repo.prefix.dev/conda-forge/linux-64/python-3.10.17-hd6af730_0_cpython.conda hash: md5: 7bb89638dae9ce1b8e051d0b721e83c2 sha256: 0ae32507817402bfad08fbf0f4a9b5ae26859d5390b98bc939da85fd0bd4239f @@ -3513,7 +3568,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://repo.prefix.dev/conda-forge/win-64/python-3.10.17-h8c5b53a_0_cpython.conda hash: md5: 0c59918f056ab2e9c7bb45970d32b2ea sha256: 071303a9bcbba4d79ab1ca61f34ec9f4ad65bc15d897828f5006ef9507094557 @@ -3526,7 +3581,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://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda hash: md5: 5ba79d7c71f03c678c8ead841f347d6e sha256: a50052536f1ef8516ed11a844f9413661829aa083304dc624c5925298d078d79 @@ -3539,7 +3594,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://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda hash: md5: 5ba79d7c71f03c678c8ead841f347d6e sha256: a50052536f1ef8516ed11a844f9413661829aa083304dc624c5925298d078d79 @@ -3557,7 +3612,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://repo.prefix.dev/conda-forge/linux-64/python-mumps-0.0.3-py310h6410a28_0.conda hash: md5: f7e3766b109232dadef0cc072e1e3cc6 sha256: bf869230e332833c9f9f1908731a859c3b39a612e74ae8f65b5338d67795c613 @@ -3576,7 +3631,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://repo.prefix.dev/conda-forge/win-64/python-mumps-0.0.3-py310hb64895d_0.conda hash: md5: 477083091731501c8bef2fd4733ec23f sha256: 1461a60b36aa7b2189ad3bd0ca9bb356d42ea2e54c8aaf122826e9f8bd33735c @@ -3587,10 +3642,10 @@ 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://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 @@ -3598,10 +3653,10 @@ 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://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 @@ -3610,7 +3665,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://repo.prefix.dev/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda hash: md5: bc8e3267d44011051f2eb14d22fb0960 sha256: 8d2a8bf110cc1fc3df6904091dead158ba3e614d8402a83e51ed3a8aa93cdeb0 @@ -3622,7 +3677,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://repo.prefix.dev/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda hash: md5: bc8e3267d44011051f2eb14d22fb0960 sha256: 8d2a8bf110cc1fc3df6904091dead158ba3e614d8402a83e51ed3a8aa93cdeb0 @@ -3638,7 +3693,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://repo.prefix.dev/conda-forge/linux-64/pyyaml-6.0.2-py310h89163eb_2.conda hash: md5: fd343408e64cf1e273ab7c710da374db sha256: 5fba7f5babcac872c72f6509c25331bcfac4f8f5031f0102530a41b41336fce6 @@ -3655,7 +3710,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://repo.prefix.dev/conda-forge/win-64/pyyaml-6.0.2-py310h38315fa_2.conda hash: md5: 9986c3731bb820db0830dd0825c26cf9 sha256: 49dd492bdf2c479118ca9d61a59ce259594853d367a1a0548926f41a6e734724 @@ -3668,7 +3723,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://repo.prefix.dev/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda hash: md5: 283b96675859b20a825f8fa30f311446 sha256: 2d6d0c026902561ed77cd646b5021aef2d4db22e57a5b0178dfc669231e06d2c @@ -3683,7 +3738,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://repo.prefix.dev/conda-forge/noarch/readthedocs-sphinx-ext-2.2.5-pyhd8ed1ab_1.conda hash: md5: 42840a95562a02bef45e7b7fb24dcba4 sha256: e391356581919077b1639ebd13f4cbb0773acfd5710cfe4188921e8a0387dc6b @@ -3698,7 +3753,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://repo.prefix.dev/conda-forge/noarch/readthedocs-sphinx-ext-2.2.5-pyhd8ed1ab_1.conda hash: md5: 42840a95562a02bef45e7b7fb24dcba4 sha256: e391356581919077b1639ebd13f4cbb0773acfd5710cfe4188921e8a0387dc6b @@ -3714,7 +3769,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://repo.prefix.dev/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda hash: md5: a9b9368f3701a417eac9edbcae7cb737 sha256: d701ca1136197aa121bbbe0e8c18db6b5c94acbd041c2b43c70e5ae104e1d8ad @@ -3730,7 +3785,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://repo.prefix.dev/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda hash: md5: a9b9368f3701a417eac9edbcae7cb737 sha256: d701ca1136197aa121bbbe0e8c18db6b5c94acbd041c2b43c70e5ae104e1d8ad @@ -3744,7 +3799,7 @@ package: libspatialindex: '>=2.0.0,<2.0.1.0a0' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://packages.prefix.dev/conda-forge/linux-64/rtree-1.2.0-py310haf1e407_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/rtree-1.2.0-py310haf1e407_1.conda hash: md5: aab35e5bbaac5bc7057effffe2b55df8 sha256: 6eb76990124941e5303eb739b2ab8684112f829b6bfafc81b43bd722c3c91616 @@ -3758,7 +3813,7 @@ package: libspatialindex: '>=2.0.0,<2.0.1.0a0' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://packages.prefix.dev/conda-forge/win-64/rtree-1.2.0-py310h08d5ad2_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/rtree-1.2.0-py310h08d5ad2_1.conda hash: md5: ffc97287567416c807a69aeeee794678 sha256: 5c1dbc4390adc6a75e2c648761b9e5e2a70ec1fab4e4055fed64bb3852604ace @@ -3778,7 +3833,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://repo.prefix.dev/conda-forge/linux-64/scikit-learn-1.4.2-py310h981052a_1.conda hash: md5: 672f0238a945f1c98fe97b147c8a040a sha256: b3718226723c94f5a93f417acb29ad82b0520acf945a06ae90e0b7ed076191a7 @@ -3798,7 +3853,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://repo.prefix.dev/conda-forge/win-64/scikit-learn-1.4.2-py310hf2a6c47_1.conda hash: md5: 9142e7e901c0f6e76541b523d480043e sha256: 24e9f3db0a2f477cbe20d1c98b48edd0d768af21dd7e6c3553e286f01deabfe5 @@ -3820,7 +3875,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://repo.prefix.dev/conda-forge/linux-64/scipy-1.14.1-py310hfcf56fc_2.conda hash: md5: b5d548b2a7cf8d0c74fc6c4bf42d1ca5 sha256: a15008a51fd6b6dcaeb5563869ff0a8a015f1e0a8634a9d89d2c189eefbd7182 @@ -3840,34 +3895,34 @@ 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://repo.prefix.dev/conda-forge/win-64/scipy-1.14.1-py310hbd0dde3_2.conda hash: md5: 72a2a7c264a8b48d113111756c2bbbb4 sha256: 761829fa9c91fdffff0ba5a1f56f7d4cc00bec71ca7fa06859dc7f5a98117273 category: main optional: false - name: setuptools - version: 78.1.0 + version: 79.0.1 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/setuptools-78.1.0-pyhff2d567_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/setuptools-79.0.1-pyhff2d567_0.conda hash: - md5: a42da9837e46c53494df0044c3eb1f53 - sha256: d4c74d2140f2fbc72fe5320cbd65f3fd1d1f7832ab4d7825c37c38ab82440ae2 + md5: fa6669cc21abd4b7b6c5393b7bc71914 + sha256: 5ebc4bb71fbdc8048b08848519150c8d44b8eb18445711d3258c9d402ba87a2c category: main optional: false - name: setuptools - version: 78.1.0 + version: 79.0.1 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/setuptools-78.1.0-pyhff2d567_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/setuptools-79.0.1-pyhff2d567_0.conda hash: - md5: a42da9837e46c53494df0044c3eb1f53 - sha256: d4c74d2140f2fbc72fe5320cbd65f3fd1d1f7832ab4d7825c37c38ab82440ae2 + md5: fa6669cc21abd4b7b6c5393b7bc71914 + sha256: 5ebc4bb71fbdc8048b08848519150c8d44b8eb18445711d3258c9d402ba87a2c category: main optional: false - name: six @@ -3876,7 +3931,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://repo.prefix.dev/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda hash: md5: a451d576819089b0d672f18768be0f65 sha256: 41db0180680cc67c3fa76544ffd48d6a5679d96f4b71d7498a759e94edc9a2db @@ -3888,7 +3943,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://repo.prefix.dev/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda hash: md5: a451d576819089b0d672f18768be0f65 sha256: 41db0180680cc67c3fa76544ffd48d6a5679d96f4b71d7498a759e94edc9a2db @@ -3900,7 +3955,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://repo.prefix.dev/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 4d22a9315e78c6827f806065957d566e sha256: a0fd916633252d99efb6223b1050202841fa8d2d53dacca564b0ed77249d3228 @@ -3912,7 +3967,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://repo.prefix.dev/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 4d22a9315e78c6827f806065957d566e sha256: a0fd916633252d99efb6223b1050202841fa8d2d53dacca564b0ed77249d3228 @@ -3924,7 +3979,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://repo.prefix.dev/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_1.conda hash: md5: 0401a17ae845fa72c7210e206ec5647d sha256: d1e3e06b5cf26093047e63c8cc77b70d970411c5cbc0cb1fad461a8a8df599f7 @@ -3936,7 +3991,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://repo.prefix.dev/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_1.conda hash: md5: 0401a17ae845fa72c7210e206ec5647d sha256: d1e3e06b5cf26093047e63c8cc77b70d970411c5cbc0cb1fad461a8a8df599f7 @@ -3965,7 +4020,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://repo.prefix.dev/conda-forge/noarch/sphinx-5.3.0-pyhd8ed1ab_0.tar.bz2 hash: md5: f9e1fcfe235d655900bfeb6aee426472 sha256: f11fd5fb4ae2c65f41ae86e7408e3ab44844898d928264aa9e89929fffc685c8 @@ -3994,7 +4049,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://repo.prefix.dev/conda-forge/noarch/sphinx-5.3.0-pyhd8ed1ab_0.tar.bz2 hash: md5: f9e1fcfe235d655900bfeb6aee426472 sha256: f11fd5fb4ae2c65f41ae86e7408e3ab44844898d928264aa9e89929fffc685c8 @@ -4007,7 +4062,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 16e3f039c0aa6446513e94ab18a8784b sha256: d7433a344a9ad32a680b881c81b0034bc61618d12c39dd6e3309abeffa9577ba @@ -4020,7 +4075,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 16e3f039c0aa6446513e94ab18a8784b sha256: d7433a344a9ad32a680b881c81b0034bc61618d12c39dd6e3309abeffa9577ba @@ -4033,7 +4088,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 910f28a05c178feba832f842155cbfff sha256: 55d5076005d20b84b20bee7844e686b7e60eb9f683af04492e598a622b12d53d @@ -4046,7 +4101,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 910f28a05c178feba832f842155cbfff sha256: 55d5076005d20b84b20bee7844e686b7e60eb9f683af04492e598a622b12d53d @@ -4059,7 +4114,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_1.conda hash: md5: e9fb3fe8a5b758b4aff187d434f94f03 sha256: c1492c0262ccf16694bdcd3bb62aa4627878ea8782d5cd3876614ffeb62b3996 @@ -4072,7 +4127,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_1.conda hash: md5: e9fb3fe8a5b758b4aff187d434f94f03 sha256: c1492c0262ccf16694bdcd3bb62aa4627878ea8782d5cd3876614ffeb62b3996 @@ -4084,7 +4139,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_1.conda hash: md5: fa839b5ff59e192f411ccc7dae6588bb sha256: 578bef5ec630e5b2b8810d898bbbf79b9ae66d49b7938bcc3efc364e679f2a62 @@ -4096,7 +4151,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_1.conda hash: md5: fa839b5ff59e192f411ccc7dae6588bb sha256: 578bef5ec630e5b2b8810d898bbbf79b9ae66d49b7938bcc3efc364e679f2a62 @@ -4109,7 +4164,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 00534ebcc0375929b45c3039b5ba7636 sha256: c664fefae4acdb5fae973bdde25836faf451f41d04342b64a358f9a7753c92ca @@ -4122,7 +4177,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 00534ebcc0375929b45c3039b5ba7636 sha256: c664fefae4acdb5fae973bdde25836faf451f41d04342b64a358f9a7753c92ca @@ -4135,7 +4190,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda hash: md5: 3bc61f7161d28137797e038263c04c54 sha256: 64d89ecc0264347486971a94487cb8d7c65bfc0176750cf7502b8a272f4ab557 @@ -4148,7 +4203,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda hash: md5: 3bc61f7161d28137797e038263c04c54 sha256: 64d89ecc0264347486971a94487cb8d7c65bfc0176750cf7502b8a272f4ab557 @@ -4163,7 +4218,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://repo.prefix.dev/conda-forge/linux-64/tbb-2021.13.0-hceb3a55_1.conda hash: md5: ba7726b8df7b9d34ea80e82b097a4893 sha256: 65463732129899770d54b1fbf30e1bb82fdebda9d7553caf08d23db4590cd691 @@ -4178,7 +4233,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://repo.prefix.dev/conda-forge/win-64/tbb-2021.13.0-h62715c5_1.conda hash: md5: 9190dd0a23d925f7602f9628b3aed511 sha256: 03cc5442046485b03dd1120d0f49d35a7e522930a2ab82f275e938e17b07b302 @@ -4190,7 +4245,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://repo.prefix.dev/conda-forge/noarch/tblib-3.1.0-pyhd8ed1ab_0.conda hash: md5: a15c62b8a306b8978f094f76da2f903f sha256: a83c83f5e622a2f34fb1d179c55c3ff912429cd0a54f9f3190ae44a0fdba2ad2 @@ -4202,7 +4257,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://repo.prefix.dev/conda-forge/noarch/tblib-3.1.0-pyhd8ed1ab_0.conda hash: md5: a15c62b8a306b8978f094f76da2f903f sha256: a83c83f5e622a2f34fb1d179c55c3ff912429cd0a54f9f3190ae44a0fdba2ad2 @@ -4214,7 +4269,7 @@ package: platform: linux-64 dependencies: python: '>=3.8' - url: https://packages.prefix.dev/conda-forge/noarch/threadpoolctl-3.3.0-pyhc1e730c_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/threadpoolctl-3.3.0-pyhc1e730c_0.conda hash: md5: 698d2d2b621640bddb9191f132967c9f sha256: 5ba8bd3f2d49b3b860eb4481ca9505c57d4427212eb12cadd2b351309d5c28e6 @@ -4226,7 +4281,7 @@ package: platform: win-64 dependencies: python: '>=3.8' - url: https://packages.prefix.dev/conda-forge/noarch/threadpoolctl-3.3.0-pyhc1e730c_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/threadpoolctl-3.3.0-pyhc1e730c_0.conda hash: md5: 698d2d2b621640bddb9191f132967c9f sha256: 5ba8bd3f2d49b3b860eb4481ca9505c57d4427212eb12cadd2b351309d5c28e6 @@ -4239,7 +4294,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://repo.prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda hash: md5: d453b98d9c83e71da0741bb0ff4d76bc sha256: e0569c9caa68bf476bead1bed3d79650bb080b532c64a4af7d8ca286c08dea4e @@ -4253,7 +4308,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://repo.prefix.dev/conda-forge/win-64/tk-8.6.13-h5226925_1.conda hash: md5: fc048363eb8f03cd1737600a5d08aafe sha256: 2c4e914f521ccb2718946645108c9bd3fc3216ba69aea20c2c3cedbd8db32bb1 @@ -4265,7 +4320,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://repo.prefix.dev/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_1.conda hash: md5: b0dd904de08b7db706167240bf37b164 sha256: 34f3a83384ac3ac30aefd1309e69498d8a4aa0bf2d1f21c645f79b180e378938 @@ -4277,7 +4332,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://repo.prefix.dev/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_1.conda hash: md5: b0dd904de08b7db706167240bf37b164 sha256: 34f3a83384ac3ac30aefd1309e69498d8a4aa0bf2d1f21c645f79b180e378938 @@ -4289,7 +4344,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://repo.prefix.dev/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda hash: md5: ac944244f1fed2eb49bae07193ae8215 sha256: 18636339a79656962723077df9a56c0ac7b8a864329eb8f847ee3d38495b863e @@ -4301,7 +4356,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://repo.prefix.dev/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda hash: md5: ac944244f1fed2eb49bae07193ae8215 sha256: 18636339a79656962723077df9a56c0ac7b8a864329eb8f847ee3d38495b863e @@ -4313,7 +4368,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://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.2-pyha770c72_1.conda hash: md5: 1d9ab4fc875c52db83f9c9b40af4e2c8 sha256: 986fae65f5568e95dbf858d08d77a0f9cca031345a98550f1d4b51d36d8811e2 @@ -4325,7 +4380,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://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.2-pyha770c72_1.conda hash: md5: 1d9ab4fc875c52db83f9c9b40af4e2c8 sha256: 986fae65f5568e95dbf858d08d77a0f9cca031345a98550f1d4b51d36d8811e2 @@ -4337,7 +4392,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://repo.prefix.dev/conda-forge/noarch/toolz-1.0.0-pyhd8ed1ab_1.conda hash: md5: 40d0ed782a8aaa16ef248e68c06c168d sha256: eda38f423c33c2eaeca49ed946a8d3bf466cc3364970e083a65eb2fd85258d87 @@ -4349,7 +4404,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://repo.prefix.dev/conda-forge/noarch/toolz-1.0.0-pyhd8ed1ab_1.conda hash: md5: 40d0ed782a8aaa16ef248e68c06c168d sha256: eda38f423c33c2eaeca49ed946a8d3bf466cc3364970e083a65eb2fd85258d87 @@ -4364,7 +4419,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://repo.prefix.dev/conda-forge/linux-64/tornado-6.4.2-py310ha75aee5_0.conda hash: md5: 166d59aab40b9c607b4cc21c03924e9d sha256: 9c2b86d4e58c8b0e7d13a7f4c440f34e2201bae9cfc1d7e1d30a5bc7ffb1d4c8 @@ -4380,7 +4435,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://repo.prefix.dev/conda-forge/win-64/tornado-6.4.2-py310ha8f682b_0.conda hash: md5: e6819d3a0cae0f1b1838875f858421d1 sha256: 2e5671d0db03961692b3390778ce6aba40702bd57584fa60badf4baa7614679b @@ -4393,7 +4448,7 @@ package: dependencies: colorama: '' python: '>=3.9' - url: https://packages.prefix.dev/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 @@ -4406,7 +4461,7 @@ package: dependencies: colorama: '' python: '>=3.9' - url: https://packages.prefix.dev/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 @@ -4419,7 +4474,7 @@ package: dependencies: numpy: '' python: '>=2.7' - url: https://packages.prefix.dev/conda-forge/noarch/trimesh-4.1.8-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/trimesh-4.1.8-pyhd8ed1ab_0.conda hash: md5: 78302527eb6c9d18b07a91e6a72ef957 sha256: 021110c37eca2f0fca85ba6ac4576c509d23079758f63942e2f9a6954282f2ce @@ -4432,7 +4487,7 @@ package: dependencies: numpy: '' python: '>=2.7' - url: https://packages.prefix.dev/conda-forge/noarch/trimesh-4.1.8-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/trimesh-4.1.8-pyhd8ed1ab_0.conda hash: md5: 78302527eb6c9d18b07a91e6a72ef957 sha256: 021110c37eca2f0fca85ba6ac4576c509d23079758f63942e2f9a6954282f2ce @@ -4444,7 +4499,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://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.13.2-h0e9735f_0.conda hash: md5: 568ed1300869dca0ba09fb750cda5dbb sha256: 4865fce0897d3cb0ffc8998219157a8325f6011c136e6fd740a9a6b169419296 @@ -4456,7 +4511,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://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.13.2-h0e9735f_0.conda hash: md5: 568ed1300869dca0ba09fb750cda5dbb sha256: 4865fce0897d3cb0ffc8998219157a8325f6011c136e6fd740a9a6b169419296 @@ -4469,7 +4524,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://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.0-pyhd8ed1ab_0.conda hash: md5: c5c76894b6b7bacc888ba25753bc8677 sha256: 172f971d70e1dbb978f6061d3f72be463d0f629155338603450d8ffe87cbf89d @@ -4482,7 +4537,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://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.0-pyhd8ed1ab_0.conda hash: md5: c5c76894b6b7bacc888ba25753bc8677 sha256: 172f971d70e1dbb978f6061d3f72be463d0f629155338603450d8ffe87cbf89d @@ -4494,7 +4549,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://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.13.2-pyh29332c3_0.conda hash: md5: 83fc6ae00127671e301c9f44254c31b8 sha256: a8aaf351e6461de0d5d47e4911257e25eec2fa409d71f3b643bb2f748bde1c08 @@ -4505,8 +4560,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://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.13.2-pyh29332c3_0.conda hash: md5: 83fc6ae00127671e301c9f44254c31b8 sha256: a8aaf351e6461de0d5d47e4911257e25eec2fa409d71f3b643bb2f748bde1c08 @@ -4517,7 +4572,7 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://packages.prefix.dev/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 @@ -4528,7 +4583,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://packages.prefix.dev/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 @@ -4539,7 +4594,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://repo.prefix.dev/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_1.conda hash: md5: 6797b005cd0f439c4c5c9ac565783700 sha256: db8dead3dd30fb1a032737554ce91e2819b43496a0db09927edf01c32b577450 @@ -4554,7 +4609,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://repo.prefix.dev/conda-forge/linux-64/unicodedata2-16.0.0-py310ha75aee5_0.conda hash: md5: 1d7a4b9202cdd10d56ecdd7f6c347190 sha256: 0468c864c60190fdb94b4705bca618e77589d5cb9fa096de47caccd1f22b0b54 @@ -4570,7 +4625,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://repo.prefix.dev/conda-forge/win-64/unicodedata2-16.0.0-py310ha8f682b_0.conda hash: md5: b28aead44c6e19a1fbba7752aa242b34 sha256: b59837c68d8edcca3c86c205a8c5dec63356029e48d55ed88c5483105d73ac0c @@ -4586,7 +4641,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://repo.prefix.dev/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda hash: md5: c1e349028e0052c4eea844e94f773065 sha256: a25403b76f7f03ca1a906e1ef0f88521edded991b9897e7fed56a3e334b3db8c @@ -4602,7 +4657,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://repo.prefix.dev/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda hash: md5: c1e349028e0052c4eea844e94f773065 sha256: a25403b76f7f03ca1a906e1ef0f88521edded991b9897e7fed56a3e334b3db8c @@ -4614,7 +4669,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://repo.prefix.dev/conda-forge/win-64/vc-14.3-h2b53caa_26.conda hash: md5: d3f0381e38093bde620a8d85f266ae55 sha256: 7a685b5c37e9713fa314a0d26b8b1d7a2e6de5ab758698199b5d5b6dba2e3ce1 @@ -4626,7 +4681,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://repo.prefix.dev/conda-forge/win-64/vc14_runtime-14.42.34438-hfd919c2_26.conda hash: md5: 91651a36d31aa20c7ba36299fb7068f4 sha256: 30dcb71bb166e351aadbdc18f1718757c32cdaa0e1e5d9368469ee44f6bf4709 @@ -4638,7 +4693,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://repo.prefix.dev/conda-forge/win-64/vs2015_runtime-14.42.34438-h7142326_26.conda hash: md5: 3357e4383dbce31eed332008ede242ab sha256: 432f2937206f1ad4a77e39f84fabc1ce7d2472b669836fb72bd2bfd19a2defc9 @@ -4650,7 +4705,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://repo.prefix.dev/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda hash: md5: 75cb7132eb58d97896e173ef12ac9986 sha256: 1b34021e815ff89a4d902d879c3bd2040bc1bd6169b32e9427497fa05c55f1ce @@ -4662,7 +4717,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://repo.prefix.dev/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda hash: md5: 75cb7132eb58d97896e173ef12ac9986 sha256: 1b34021e815ff89a4d902d879c3bd2040bc1bd6169b32e9427497fa05c55f1ce @@ -4675,7 +4730,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://repo.prefix.dev/conda-forge/noarch/win_inet_pton-1.1.0-pyh7428d3b_8.conda hash: md5: 46e441ba871f524e2b067929da3051c2 sha256: 93807369ab91f230cf9e6e2a237eaa812492fe00face5b38068735858fba954f @@ -4688,7 +4743,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://repo.prefix.dev/conda-forge/linux-64/xorg-libxau-1.0.12-hb9d3cd8_0.conda hash: md5: f6ebe2cb3f82ba6c057dde5d9debe4f7 sha256: ed10c9283974d311855ae08a16dfd7e56241fac632aec3b92e3cfe73cff31038 @@ -4702,7 +4757,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://repo.prefix.dev/conda-forge/win-64/xorg-libxau-1.0.12-h0e40799_0.conda hash: md5: 2ffbfae4548098297c033228256eb96e sha256: 047836241b2712aab1e29474a6f728647bff3ab57de2806b0bb0a6cf9a2d2634 @@ -4715,7 +4770,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://repo.prefix.dev/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb9d3cd8_0.conda hash: md5: 8035c64cb77ed555e3f150b7b3972480 sha256: 6b250f3e59db07c2514057944a3ea2044d6a8cdde8a47b6497c254520fade1ee @@ -4729,7 +4784,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://repo.prefix.dev/conda-forge/win-64/xorg-libxdmcp-1.1.5-h0e40799_0.conda hash: md5: 8393c0f7e7870b4eb45553326f81f0ff sha256: 9075f98dcaa8e9957e4a3d9d30db05c7578a536950a31c200854c5c34e1edb2c @@ -4741,7 +4796,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://repo.prefix.dev/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2 hash: md5: 4cb3ad778ec2d5a7acbdf254eb1c42ae sha256: a4e34c710eeb26945bdbdaba82d3d74f60a78f54a874ec10d373811a5d217535 @@ -4754,7 +4809,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://repo.prefix.dev/conda-forge/win-64/yaml-0.2.5-h8ffe710_2.tar.bz2 hash: md5: adbfb9f45d1004a26763652246a33764 sha256: 4e2246383003acbad9682c7c63178e2e715ad0eb84f03a8df1fbfba455dfedc5 @@ -4770,7 +4825,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://repo.prefix.dev/conda-forge/noarch/zarr-2.14.2-pyhd8ed1ab_0.conda hash: md5: 0c5776fe65a12a421d7ddf90411a6c3f sha256: 0f029f7efea00b8258782b5e68989fc140c227e6d9edd231d46fdd954b39d23f @@ -4786,7 +4841,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://repo.prefix.dev/conda-forge/noarch/zarr-2.14.2-pyhd8ed1ab_0.conda hash: md5: 0c5776fe65a12a421d7ddf90411a6c3f sha256: 0f029f7efea00b8258782b5e68989fc140c227e6d9edd231d46fdd954b39d23f @@ -4798,7 +4853,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://repo.prefix.dev/conda-forge/noarch/zict-3.0.0-pyhd8ed1ab_1.conda hash: md5: e52c2ef711ccf31bb7f70ca87d144b9e sha256: 5488542dceeb9f2874e726646548ecc5608060934d6f9ceaa7c6a48c61f9cc8d @@ -4810,7 +4865,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://repo.prefix.dev/conda-forge/noarch/zict-3.0.0-pyhd8ed1ab_1.conda hash: md5: e52c2ef711ccf31bb7f70ca87d144b9e sha256: 5488542dceeb9f2874e726646548ecc5608060934d6f9ceaa7c6a48c61f9cc8d @@ -4822,7 +4877,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://repo.prefix.dev/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda hash: md5: 0c3cc595284c5e8f0f9900a9b228a332 sha256: 567c04f124525c97a096b65769834b7acb047db24b15a56888a322bf3966c3e1 @@ -4834,7 +4889,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://repo.prefix.dev/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda hash: md5: 0c3cc595284c5e8f0f9900a9b228a332 sha256: 567c04f124525c97a096b65769834b7acb047db24b15a56888a322bf3966c3e1 @@ -4850,10 +4905,10 @@ 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://repo.prefix.dev/conda-forge/linux-64/zstandard-0.23.0-py310ha75aee5_2.conda hash: - md5: 0316e8d0e00c00631a6de89207db5b09 - sha256: 96f96336f76443f5efb05f8a7232cc62f8fff969c27d03aa4aae181745f6f961 + md5: f9254b5b0193982416b91edcb4b2676f + sha256: f9b76c2f8a0f96e656843553272e547170182f5b8aba1a6bcba28f7611d87c23 category: main optional: false - name: zstandard @@ -4867,10 +4922,10 @@ 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://repo.prefix.dev/conda-forge/win-64/zstandard-0.23.0-py310ha8f682b_2.conda hash: - md5: 831d9f1bfdfc3616b4c0f91cdb36ed38 - sha256: 6bc275161380985ba7effabf53534e8b97479d0318329f345b2e936bd2e4dbe6 + md5: fdc36a989175bb166109e400c106defa + sha256: 76bf75ef83e952ef4974e0e6656a7a90b4c4c1c22cea984cb9fc29aca05e5999 category: main optional: false - name: zstd @@ -4882,7 +4937,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://repo.prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb8e6e7a_2.conda hash: md5: 6432cb5d4ac0046c3ac0a8a0f95842f9 sha256: a4166e3d8ff4e35932510aaff7aa90772f84b4d07e9f6f83c614cba7ceefe0eb @@ -4897,7 +4952,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/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 @@ -4908,16 +4963,16 @@ package: manager: pip platform: linux-64 dependencies: - geoh5py: 0.11.0-alpha.3 + geoh5py: 0.11.0-alpha.5 numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@7a04b6e280309e649b2811d47168de3fd6ddf61b + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@06ee42f5f4767bb6e6da56b919f631722f6fdf36 hash: - sha256: 7a04b6e280309e649b2811d47168de3fd6ddf61b + sha256: 06ee42f5f4767bb6e6da56b919f631722f6fdf36 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@7a04b6e280309e649b2811d47168de3fd6ddf61b + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@06ee42f5f4767bb6e6da56b919f631722f6fdf36 category: main optional: false - name: geoapps-utils @@ -4925,20 +4980,20 @@ package: manager: pip platform: win-64 dependencies: - geoh5py: 0.11.0-alpha.3 + geoh5py: 0.11.0-alpha.5 numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@7a04b6e280309e649b2811d47168de3fd6ddf61b + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@06ee42f5f4767bb6e6da56b919f631722f6fdf36 hash: - sha256: 7a04b6e280309e649b2811d47168de3fd6ddf61b + sha256: 06ee42f5f4767bb6e6da56b919f631722f6fdf36 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@7a04b6e280309e649b2811d47168de3fd6ddf61b + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@06ee42f5f4767bb6e6da56b919f631722f6fdf36 category: main optional: false - name: geoh5py - version: 0.11.0-alpha.3 + version: 0.11.0-alpha.5 manager: pip platform: linux-64 dependencies: @@ -4946,16 +5001,16 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@adfe3987a9637b148c440234e67df9c16315a8d6 + url: git+https://github.com/MiraGeoscience/geoh5py.git@55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 hash: - sha256: adfe3987a9637b148c440234e67df9c16315a8d6 + sha256: 55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@adfe3987a9637b148c440234e67df9c16315a8d6 + url: git+https://github.com/MiraGeoscience/geoh5py.git@55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 category: main optional: false - name: geoh5py - version: 0.11.0-alpha.3 + version: 0.11.0-alpha.5 manager: pip platform: win-64 dependencies: @@ -4963,16 +5018,16 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@adfe3987a9637b148c440234e67df9c16315a8d6 + url: git+https://github.com/MiraGeoscience/geoh5py.git@55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 hash: - sha256: adfe3987a9637b148c440234e67df9c16315a8d6 + sha256: 55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@adfe3987a9637b148c440234e67df9c16315a8d6 + url: git+https://github.com/MiraGeoscience/geoh5py.git@55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 category: main optional: false - name: mira-simpeg - version: 0.23.0.1a1 + version: 0.23.0.1a3 manager: pip platform: linux-64 dependencies: @@ -4987,16 +5042,13 @@ package: pymatsolver: '>=0.3' scipy: '>=1.8' zarr: '*' - url: git+https://github.com/MiraGeoscience/simpeg.git@ad5b2c663795d29216d127679ee121fb13a4d78b + url: https://files.pythonhosted.org/packages/a9/f1/225e442cdcbbeb6786ec9eb456f86f95b30f515addea1df6f453af899120/mira_simpeg-0.23.0.1a3-py3-none-any.whl hash: - sha256: ad5b2c663795d29216d127679ee121fb13a4d78b - source: - type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@ad5b2c663795d29216d127679ee121fb13a4d78b + sha256: 14467e65d801e082bac8a4d972a30b162018df27d06310fb1f2c6960968f88d2 category: main optional: false - name: mira-simpeg - version: 0.23.0.1a1 + version: 0.23.0.1a3 manager: pip platform: win-64 dependencies: @@ -5011,50 +5063,47 @@ package: pymatsolver: '>=0.3' scipy: '>=1.8' zarr: '*' - url: git+https://github.com/MiraGeoscience/simpeg.git@ad5b2c663795d29216d127679ee121fb13a4d78b + url: https://files.pythonhosted.org/packages/a9/f1/225e442cdcbbeb6786ec9eb456f86f95b30f515addea1df6f453af899120/mira_simpeg-0.23.0.1a3-py3-none-any.whl hash: - sha256: ad5b2c663795d29216d127679ee121fb13a4d78b - source: - type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@ad5b2c663795d29216d127679ee121fb13a4d78b + sha256: 14467e65d801e082bac8a4d972a30b162018df27d06310fb1f2c6960968f88d2 category: main optional: false - name: octree-creation-app - version: 0.3.0-alpha.2 + version: 0.3.0-alpha.3 manager: pip platform: linux-64 dependencies: discretize: ==0.11.* - geoapps-utils: 0.5.0-alpha.4 - geoh5py: 0.11.0-alpha.3 + 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: git+https://github.com/MiraGeoscience/octree-creation-app.git@45472488f4c20cc2b6fcbf36149cec938e1b0ebf + url: git+https://github.com/MiraGeoscience/octree-creation-app.git@80641c96ff4b3a7e67f25278c323c5f9f931982f hash: - sha256: 45472488f4c20cc2b6fcbf36149cec938e1b0ebf + sha256: 80641c96ff4b3a7e67f25278c323c5f9f931982f source: type: url - url: git+https://github.com/MiraGeoscience/octree-creation-app.git@45472488f4c20cc2b6fcbf36149cec938e1b0ebf + url: git+https://github.com/MiraGeoscience/octree-creation-app.git@80641c96ff4b3a7e67f25278c323c5f9f931982f category: main optional: false - name: octree-creation-app - version: 0.3.0-alpha.2 + version: 0.3.0-alpha.3 manager: pip platform: win-64 dependencies: discretize: ==0.11.* - geoapps-utils: 0.5.0-alpha.4 - geoh5py: 0.11.0-alpha.3 + 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: git+https://github.com/MiraGeoscience/octree-creation-app.git@45472488f4c20cc2b6fcbf36149cec938e1b0ebf + url: git+https://github.com/MiraGeoscience/octree-creation-app.git@80641c96ff4b3a7e67f25278c323c5f9f931982f hash: - sha256: 45472488f4c20cc2b6fcbf36149cec938e1b0ebf + sha256: 80641c96ff4b3a7e67f25278c323c5f9f931982f source: type: url - url: git+https://github.com/MiraGeoscience/octree-creation-app.git@45472488f4c20cc2b6fcbf36149cec938e1b0ebf + url: git+https://github.com/MiraGeoscience/octree-creation-app.git@80641c96ff4b3a7e67f25278c323c5f9f931982f category: main optional: false - name: param-sweeps @@ -5062,14 +5111,14 @@ package: manager: pip platform: linux-64 dependencies: - geoh5py: 0.11.0-alpha.3 + geoh5py: 0.11.0-alpha.5 numpy: '>=1.26.0,<1.27.0' - url: git+https://github.com/MiraGeoscience/param-sweeps.git@4d0f8262ebb21c803c745fe85583d5cc5ce7d3e6 + url: git+https://github.com/MiraGeoscience/param-sweeps.git@8d7db643fb6e43490b05e2e1d53caa9cdae07a10 hash: - sha256: 4d0f8262ebb21c803c745fe85583d5cc5ce7d3e6 + sha256: 8d7db643fb6e43490b05e2e1d53caa9cdae07a10 source: type: url - url: git+https://github.com/MiraGeoscience/param-sweeps.git@4d0f8262ebb21c803c745fe85583d5cc5ce7d3e6 + url: git+https://github.com/MiraGeoscience/param-sweeps.git@8d7db643fb6e43490b05e2e1d53caa9cdae07a10 category: main optional: false - name: param-sweeps @@ -5077,69 +5126,69 @@ package: manager: pip platform: win-64 dependencies: - geoh5py: 0.11.0-alpha.3 + geoh5py: 0.11.0-alpha.5 numpy: '>=1.26.0,<1.27.0' - url: git+https://github.com/MiraGeoscience/param-sweeps.git@4d0f8262ebb21c803c745fe85583d5cc5ce7d3e6 + url: git+https://github.com/MiraGeoscience/param-sweeps.git@8d7db643fb6e43490b05e2e1d53caa9cdae07a10 hash: - sha256: 4d0f8262ebb21c803c745fe85583d5cc5ce7d3e6 + sha256: 8d7db643fb6e43490b05e2e1d53caa9cdae07a10 source: type: url - url: git+https://github.com/MiraGeoscience/param-sweeps.git@4d0f8262ebb21c803c745fe85583d5cc5ce7d3e6 + url: git+https://github.com/MiraGeoscience/param-sweeps.git@8d7db643fb6e43490b05e2e1d53caa9cdae07a10 category: main optional: false - name: simpeg-drivers - version: 0.3.0-alpha.2 + version: 0.3.0-alpha.6 manager: pip platform: linux-64 dependencies: - dask-core: ==2025.3.* + dask: '>=2025.3,<2025.4.dev' discretize: ==0.11.* - distributed: ==2025.3.* - geoapps-utils: 0.5.0-alpha.4 - geoh5py: 0.11.0-alpha.3 - mira-simpeg: 0.23.0.1a1 + distributed: '>=2025.3,<2025.4.dev' + geoapps-utils: '>=0.5.0a3,<0.6.dev' + geoh5py: '>=0.11.0a3,<0.12.dev' + mira-simpeg: '>=0.23.0.1a3,<0.23.1.dev' numpy: '>=1.26.0,<1.27.0' - octree-creation-app: 0.3.0-alpha.2 - param-sweeps: 0.2.1-alpha.2 + octree-creation-app: '>=0.3.0a1,<0.4.dev' + param-sweeps: '>=0.2.1a1,<0.3.dev' pydantic: '>=2.5.2,<3.0.0' pydiso: '>=0.1.0,<0.2.dev' python-mumps: '>=0.0.3,<0.0.4.dev' scikit-learn: '>=1.4.0,<1.5.0' scipy: '>=1.14.0,<1.15.0' tqdm: '>=4.66.1,<5.0.0' - url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@9e925c47f9572837d2b9bbc880362aed0c0e4ab8 + url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@cef51c8544871aaf9cff890c1ffc9c5cb4516359 hash: - sha256: 9e925c47f9572837d2b9bbc880362aed0c0e4ab8 + sha256: cef51c8544871aaf9cff890c1ffc9c5cb4516359 source: type: url - url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@9e925c47f9572837d2b9bbc880362aed0c0e4ab8 + url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@cef51c8544871aaf9cff890c1ffc9c5cb4516359 category: main optional: false - name: simpeg-drivers - version: 0.3.0-alpha.2 + version: 0.3.0-alpha.6 manager: pip platform: win-64 dependencies: - dask-core: ==2025.3.* + dask: '>=2025.3,<2025.4.dev' discretize: ==0.11.* - distributed: ==2025.3.* - geoapps-utils: 0.5.0-alpha.4 - geoh5py: 0.11.0-alpha.3 - mira-simpeg: 0.23.0.1a1 + distributed: '>=2025.3,<2025.4.dev' + geoapps-utils: '>=0.5.0a3,<0.6.dev' + geoh5py: '>=0.11.0a3,<0.12.dev' + mira-simpeg: '>=0.23.0.1a3,<0.23.1.dev' numpy: '>=1.26.0,<1.27.0' - octree-creation-app: 0.3.0-alpha.2 - param-sweeps: 0.2.1-alpha.2 + octree-creation-app: '>=0.3.0a1,<0.4.dev' + param-sweeps: '>=0.2.1a1,<0.3.dev' pydantic: '>=2.5.2,<3.0.0' pydiso: '>=0.1.0,<0.2.dev' python-mumps: '>=0.0.3,<0.0.4.dev' scikit-learn: '>=1.4.0,<1.5.0' scipy: '>=1.14.0,<1.15.0' tqdm: '>=4.66.1,<5.0.0' - url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@9e925c47f9572837d2b9bbc880362aed0c0e4ab8 + url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@cef51c8544871aaf9cff890c1ffc9c5cb4516359 hash: - sha256: 9e925c47f9572837d2b9bbc880362aed0c0e4ab8 + sha256: cef51c8544871aaf9cff890c1ffc9c5cb4516359 source: type: url - url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@9e925c47f9572837d2b9bbc880362aed0c0e4ab8 + url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@cef51c8544871aaf9cff890c1ffc9c5cb4516359 category: main optional: false diff --git a/py-3.11.conda-lock.yml b/py-3.11.conda-lock.yml index 7646ec0..07a61c4 100644 --- a/py-3.11.conda-lock.yml +++ b/py-3.11.conda-lock.yml @@ -35,7 +35,7 @@ package: platform: linux-64 dependencies: llvm-openmp: '>=9.0.1' - url: https://packages.prefix.dev/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://packages.prefix.dev/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 @@ -60,7 +60,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://repo.prefix.dev/conda-forge/noarch/alabaster-0.7.16-pyhd8ed1ab_0.conda hash: md5: def531a3ac77b7fb8c21d17bb5d0badb sha256: fd39ad2fabec1569bbb0dfdae34ab6ce7de6ec09dcec8638f83dad0373594069 @@ -72,7 +72,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://repo.prefix.dev/conda-forge/noarch/alabaster-0.7.16-pyhd8ed1ab_0.conda hash: md5: def531a3ac77b7fb8c21d17bb5d0badb sha256: fd39ad2fabec1569bbb0dfdae34ab6ce7de6ec09dcec8638f83dad0373594069 @@ -85,7 +85,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://repo.prefix.dev/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda hash: md5: 2934f256a8acfe48f6ebb4fce6cde29c sha256: e0ea1ba78fbb64f17062601edda82097fcf815012cf52bb704150a2668110d48 @@ -98,7 +98,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://repo.prefix.dev/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda hash: md5: 2934f256a8acfe48f6ebb4fce6cde29c sha256: e0ea1ba78fbb64f17062601edda82097fcf815012cf52bb704150a2668110d48 @@ -110,7 +110,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://repo.prefix.dev/conda-forge/noarch/asciitree-0.3.3-py_2.tar.bz2 hash: md5: c0481c9de49f040272556e2cedf42816 sha256: b3e9369529fe7d721b66f18680ff4b561e20dbf6507e209e1f60eac277c97560 @@ -122,7 +122,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://repo.prefix.dev/conda-forge/noarch/asciitree-0.3.3-py_2.tar.bz2 hash: md5: c0481c9de49f040272556e2cedf42816 sha256: b3e9369529fe7d721b66f18680ff4b561e20dbf6507e209e1f60eac277c97560 @@ -135,7 +135,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://repo.prefix.dev/conda-forge/linux-64/astroid-3.3.9-py311h38be061_0.conda hash: md5: cabdabc18d53f957c01685765f24381a sha256: cf6c649941832b7b2ed0bdd4e79093343468c3e1003fc78f53e2a1021cefbec4 @@ -148,7 +148,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://repo.prefix.dev/conda-forge/win-64/astroid-3.3.9-py311h1ea47a8_0.conda hash: md5: dcfa6fc2847f6d9395b210423ab13d1b sha256: ce85abea60acda2e8d2c8bfbca7f1013e04a9b4b23d59b5e02a4b12de6ee1cf8 @@ -161,7 +161,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://repo.prefix.dev/conda-forge/noarch/babel-2.17.0-pyhd8ed1ab_0.conda hash: md5: 0a01c169f0ab0f91b26e77a3301fbfe4 sha256: 1c656a35800b7f57f7371605bc6507c8d3ad60fbaaec65876fce7f73df1fc8ac @@ -174,7 +174,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://repo.prefix.dev/conda-forge/noarch/babel-2.17.0-pyhd8ed1ab_0.conda hash: md5: 0a01c169f0ab0f91b26e77a3301fbfe4 sha256: 1c656a35800b7f57f7371605bc6507c8d3ad60fbaaec65876fce7f73df1fc8ac @@ -190,7 +190,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://repo.prefix.dev/conda-forge/linux-64/brotli-1.1.0-hb9d3cd8_2.conda hash: md5: 98514fe74548d768907ce7a13f680e8f sha256: fcb0b5b28ba7492093e54f3184435144e074dfceab27ac8e6a9457e736565b0b @@ -207,7 +207,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://repo.prefix.dev/conda-forge/win-64/brotli-1.1.0-h2466b09_2.conda hash: md5: 378f1c9421775dfe644731cb121c8979 sha256: d8fd7d1b446706776117d2dcad1c0289b9f5e1521cb13405173bad38568dd252 @@ -222,7 +222,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://repo.prefix.dev/conda-forge/linux-64/brotli-bin-1.1.0-hb9d3cd8_2.conda hash: md5: c63b5e52939e795ba8d26e35d767a843 sha256: 261364d7445513b9a4debc345650fad13c627029bfc800655a266bf1e375bc65 @@ -238,7 +238,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://repo.prefix.dev/conda-forge/win-64/brotli-bin-1.1.0-h2466b09_2.conda hash: md5: d22534a9be5771fc58eb7564947f669d sha256: f3bf2893613540ac256c68f211861c4de618d96291719e32178d894114ac2bc2 @@ -254,7 +254,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://repo.prefix.dev/conda-forge/linux-64/brotli-python-1.1.0-py311hfdbb021_2.conda hash: md5: d21daab070d76490cb39a8f1d1729d79 sha256: 949913bbd1f74d1af202d3e4bff2e0a4e792ec00271dc4dd08641d4221aa2e12 @@ -270,7 +270,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://repo.prefix.dev/conda-forge/win-64/brotli-python-1.1.0-py311hda3d55a_2.conda hash: md5: a0ea2839841a06740a1c110ba3317b42 sha256: aa3ac5dbf63db2f145235708973c626c2189ee4040d769fdf0076286fa45dc26 @@ -283,7 +283,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://repo.prefix.dev/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda hash: md5: 62ee74e96c5ebb0af99386de58cf9553 sha256: 5ced96500d945fb286c9c838e54fa759aa04a7129c59800f0846b4335cee770d @@ -297,7 +297,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://repo.prefix.dev/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda hash: md5: 276e7ffe9ffe39688abc665ef0f45596 sha256: 35a5dad92e88fdd7fc405e864ec239486f4f31eec229e31686e61a140a8e573b @@ -310,32 +310,34 @@ 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://repo.prefix.dev/conda-forge/linux-64/c-ares-1.34.5-hb9d3cd8_0.conda hash: md5: f7f0d6cc2dc986d42ac2689ec88192be sha256: f8003bef369f57396593ccd03d08a8e21966157269426f71e943f96e4b579aeb category: main optional: false - name: ca-certificates - version: 2025.1.31 + version: 2025.4.26 manager: conda platform: linux-64 - dependencies: {} - url: https://packages.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.4.26-hbd8a1cb_0.conda hash: - md5: 19f3a56f68d2fd06c516076bff482c52 - sha256: bf832198976d559ab44d6cdb315642655547e26d826e34da67cbee6624cda189 + md5: 95db94f75ba080a22eb623590993167b + sha256: 2a70ed95ace8a3f8a29e6cd1476a943df294a7111dfb3e152e3478c4c889b7ac category: main optional: false - name: ca-certificates - version: 2025.1.31 + version: 2025.4.26 manager: conda platform: win-64 - dependencies: {} - url: https://packages.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.4.26-h4c7d964_0.conda hash: - md5: 5304a31607974dfc2110dfbb662ed092 - sha256: 1bedccdf25a3bd782d6b0e57ddd97cdcda5501716009f2de4479a779221df155 + md5: 23c7fd5062b48d8294fc7f61bf157fba + sha256: 1454f3f53a3b828d3cb68a3440cb0fa9f1cc0e3c8c26e9e023773dc19d88cc06 category: main optional: false - name: cached-property @@ -344,7 +346,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://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 hash: md5: 9b347a7ec10940d3f7941ff6c460b551 sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17 @@ -356,7 +358,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://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 hash: md5: 9b347a7ec10940d3f7941ff6c460b551 sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17 @@ -368,7 +370,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://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 hash: md5: 576d629e47797577ab0f1b351297ef4a sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7 @@ -380,7 +382,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://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 hash: md5: 576d629e47797577ab0f1b351297ef4a sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7 @@ -392,7 +394,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://repo.prefix.dev/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda hash: md5: c207fa5ac7ea99b149344385a9c0880d sha256: 42a78446da06a2568cb13e69be3355169fbd0ea424b00fc80b7d840f5baaacf3 @@ -404,7 +406,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://repo.prefix.dev/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda hash: md5: c207fa5ac7ea99b149344385a9c0880d sha256: 42a78446da06a2568cb13e69be3355169fbd0ea424b00fc80b7d840f5baaacf3 @@ -421,7 +423,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://repo.prefix.dev/conda-forge/linux-64/cffi-1.17.1-py311hf29c0ef_0.conda hash: md5: 55553ecd5328336368db611f350b7039 sha256: bc47aa39c8254e9e487b8bcd74cfa3b4a3de3648869eb1a0b89905986b668e35 @@ -438,7 +440,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://repo.prefix.dev/conda-forge/win-64/cffi-1.17.1-py311he736701_0.conda hash: md5: e1c69be23bd05471a6c623e91680ad59 sha256: 9689fbd8a31fdf273f826601e90146006f6631619767a67955048c7ad7798a1d @@ -450,7 +452,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://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda hash: md5: e83a31202d1c0a000fce3e9cf3825875 sha256: 4e0ee91b97e5de3e74567bdacea27f0139709fceca4db8adffbe24deffccb09b @@ -462,7 +464,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://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda hash: md5: e83a31202d1c0a000fce3e9cf3825875 sha256: 4e0ee91b97e5de3e74567bdacea27f0139709fceca4db8adffbe24deffccb09b @@ -475,7 +477,7 @@ package: dependencies: __unix: '' python: '>=3.9' - url: https://packages.prefix.dev/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 @@ -489,7 +491,7 @@ package: __win: '' colorama: '' python: '>=3.9' - url: https://packages.prefix.dev/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 @@ -501,7 +503,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://repo.prefix.dev/conda-forge/noarch/cloudpickle-3.1.1-pyhd8ed1ab_0.conda hash: md5: 364ba6c9fb03886ac979b482f39ebb92 sha256: 21ecead7268241007bf65691610cd7314da68c1f88113092af690203b5780db5 @@ -513,7 +515,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://repo.prefix.dev/conda-forge/noarch/cloudpickle-3.1.1-pyhd8ed1ab_0.conda hash: md5: 364ba6c9fb03886ac979b482f39ebb92 sha256: 21ecead7268241007bf65691610cd7314da68c1f88113092af690203b5780db5 @@ -525,7 +527,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://repo.prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda hash: md5: 962b9857ee8e7018c22f2776ffa0b2d7 sha256: ab29d57dc70786c1269633ba3dff20288b81664d3ff8d21af995742e2bb03287 @@ -537,14 +539,14 @@ 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://repo.prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda hash: md5: 962b9857ee8e7018c22f2776ffa0b2d7 sha256: ab29d57dc70786c1269633ba3dff20288b81664d3ff8d21af995742e2bb03287 category: main optional: false - name: contourpy - version: 1.3.1 + version: 1.3.2 manager: conda platform: linux-64 dependencies: @@ -554,14 +556,14 @@ 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.1-py311hd18a35c_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/contourpy-1.3.2-py311hd18a35c_0.conda hash: - md5: 351cb68d2081e249069748b6e60b3cd2 - sha256: 08be6120dc9369f07858677dde2a8474644cc7ec2ae146b39a6953aadc536dfd + md5: f8e440efa026c394461a45a46cea49fc + sha256: 92ec3244ee0b424612025742a73d4728ded5bf6a358301bd005f67e74fec0b21 category: main optional: false - name: contourpy - version: 1.3.1 + version: 1.3.2 manager: conda platform: win-64 dependencies: @@ -571,10 +573,10 @@ 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.1-py311h3257749_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/contourpy-1.3.2-py311h3257749_0.conda hash: - md5: 91d8504588e1b3c77e605503e5a1bc11 - sha256: dbb0c161dd75e72e66c13f31715941adb094a45471016f89d6a1cfab30967ba8 + md5: f9fd48bb5c67e197d3e5ed0490df5aef + sha256: feec034c783bd35da5c923ca2c2a8c831b7058137c530ca76a66c993a3fbafb0 category: main optional: false - name: coverage @@ -587,7 +589,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://repo.prefix.dev/conda-forge/linux-64/coverage-7.8.0-py311h2dc5d0c_0.conda hash: md5: 37bc439a94beeb29914baa5b4987ebd5 sha256: 50018d9c2d805eab29be0ad2e65a4d6b9f620e5e6b196923b1f3b397efee9b10 @@ -604,7 +606,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://repo.prefix.dev/conda-forge/win-64/coverage-7.8.0-py311h5082efb_0.conda hash: md5: 3237b9093308b18ee36d455ff098017b sha256: 2a3a8f6304374d19e6fd1cbf73e756debf0a76e787f1a15bd8b11d74f9ef6bd2 @@ -616,7 +618,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://repo.prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda hash: md5: 44600c4667a319d67dbe0681fc0bc833 sha256: 9827efa891e507a91a8a2acf64e210d2aff394e1cde432ad08e1f8c66b12293c @@ -628,7 +630,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://repo.prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda hash: md5: 44600c4667a319d67dbe0681fc0bc833 sha256: 9827efa891e507a91a8a2acf64e210d2aff394e1cde432ad08e1f8c66b12293c @@ -644,7 +646,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://repo.prefix.dev/conda-forge/linux-64/cytoolz-1.0.1-py311h9ecbd09_0.conda hash: md5: 69a0a85acdcc5e6d0f1cc915c067ad4c sha256: fd5a8c7e613c3c538ca775951fd814ab10cfcdaed79e193c3bf7eb59c87cd114 @@ -661,7 +663,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://repo.prefix.dev/conda-forge/win-64/cytoolz-1.0.1-py311he736701_0.conda hash: md5: fc78ccf75bba016a930accedee7ed9af sha256: 7746ffe3a0849abbd724da6955950142ec7eedbc66053be8d3802b7885562951 @@ -681,7 +683,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://repo.prefix.dev/conda-forge/noarch/dask-core-2025.3.0-pyhd8ed1ab_0.conda hash: md5: 36f6cc22457e3d6a6051c5370832f96c sha256: 72badd945d856d2928fdbe051f136f903bcfee8136f1526c8362c6c465b793ec @@ -701,7 +703,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://repo.prefix.dev/conda-forge/noarch/dask-core-2025.3.0-pyhd8ed1ab_0.conda hash: md5: 36f6cc22457e3d6a6051c5370832f96c sha256: 72badd945d856d2928fdbe051f136f903bcfee8136f1526c8362c6c465b793ec @@ -714,7 +716,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://repo.prefix.dev/conda-forge/noarch/deprecated-1.2.18-pyhd8ed1ab_0.conda hash: md5: 0cef44b1754ae4d6924ac0eef6b9fdbe sha256: d614bcff10696f1efc714df07651b50bf3808401fcc03814309ecec242cc8870 @@ -727,34 +729,34 @@ 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://repo.prefix.dev/conda-forge/noarch/deprecated-1.2.18-pyhd8ed1ab_0.conda hash: md5: 0cef44b1754ae4d6924ac0eef6b9fdbe sha256: d614bcff10696f1efc714df07651b50bf3808401fcc03814309ecec242cc8870 category: main optional: false - name: dill - version: 0.3.9 + version: 0.4.0 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/dill-0.3.9-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda hash: - md5: 5e11310fca410e9f31381157079dee55 - sha256: 499be2f8e4397a46249e8e500535795704af27e56360ae0c964904140b41454a + md5: 885745570573eb6a08e021841928297a + sha256: 43dca52c96fde0c4845aaff02bcc92f25e1c2e5266ddefc2eac1a3de0960a3b1 category: dev optional: true - name: dill - version: 0.3.9 + version: 0.4.0 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/dill-0.3.9-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda hash: - md5: 5e11310fca410e9f31381157079dee55 - sha256: 499be2f8e4397a46249e8e500535795704af27e56360ae0c964904140b41454a + md5: 885745570573eb6a08e021841928297a + sha256: 43dca52c96fde0c4845aaff02bcc92f25e1c2e5266ddefc2eac1a3de0960a3b1 category: dev optional: true - name: discretize @@ -769,7 +771,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://repo.prefix.dev/conda-forge/linux-64/discretize-0.11.2-py311h5b7b71f_1.conda hash: md5: 46691a03f4c2317ec8c798dc8575bf48 sha256: 147f8e5403fe7cc0cab3eb8e5cb362347728fe5e485e7c6ca76f5139447b1960 @@ -787,7 +789,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://repo.prefix.dev/conda-forge/win-64/discretize-0.11.2-py311h9b10771_0.conda hash: md5: 67a5b84650218196cfef1b647c6a9140 sha256: 0bda0975ae4898c3887be171c9888fd57a20379c129e3149a4708c9d3edf5a2b @@ -815,7 +817,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://repo.prefix.dev/conda-forge/noarch/distributed-2025.3.0-pyhd8ed1ab_0.conda hash: md5: 968a7a4ff98bcfb515b0f1c94d35553f sha256: ea055aeda774d03ec96e0901ec119c6d3dc21ddd50af166bec664a76efd5f82a @@ -843,7 +845,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://repo.prefix.dev/conda-forge/noarch/distributed-2025.3.0-pyhd8ed1ab_0.conda hash: md5: 968a7a4ff98bcfb515b0f1c94d35553f sha256: ea055aeda774d03ec96e0901ec119c6d3dc21ddd50af166bec664a76efd5f82a @@ -856,7 +858,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://repo.prefix.dev/conda-forge/linux-64/docutils-0.19-py311h38be061_1.tar.bz2 hash: md5: 599159b0740e9b82e7eef0e8471be3c2 sha256: ec7760e5a1d065b97ac32d12f7c70f19937040d8bb52a9f16573b65c6832c67a @@ -869,7 +871,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://repo.prefix.dev/conda-forge/win-64/docutils-0.19-py311h1ea47a8_1.tar.bz2 hash: md5: 52b2142036004451e1881d97e9d01e8a sha256: 40c678c6bda27aeb7ad8b1714f189201599d2068a0fa75087548b62f8afe9bc7 @@ -881,7 +883,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://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda hash: md5: a16662747cdeb9abbac74d0057cc976e sha256: cbde2c64ec317118fc06b223c5fd87c8a680255e7348dd60e7b292d2e103e701 @@ -893,7 +895,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://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda hash: md5: a16662747cdeb9abbac74d0057cc976e sha256: cbde2c64ec317118fc06b223c5fd87c8a680255e7348dd60e7b292d2e103e701 @@ -905,7 +907,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://repo.prefix.dev/conda-forge/noarch/fasteners-0.19-pyhd8ed1ab_1.conda hash: md5: dbe9d42e94b5ff7af7b7893f4ce052e7 sha256: 42fb170778b47303e82eddfea9a6d1e1b8af00c927cd5a34595eaa882b903a16 @@ -917,7 +919,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://repo.prefix.dev/conda-forge/noarch/fasteners-0.19-pyhd8ed1ab_1.conda hash: md5: dbe9d42e94b5ff7af7b7893f4ce052e7 sha256: 42fb170778b47303e82eddfea9a6d1e1b8af00c927cd5a34595eaa882b903a16 @@ -935,7 +937,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://repo.prefix.dev/conda-forge/linux-64/fonttools-4.57.0-py311h2dc5d0c_0.conda hash: md5: 4175f366b41d3d0c80d02661a0a03473 sha256: 2157fff1f143fc99f9b27d1358b537f08478eb65d917279a3484c9c8989ea5fc @@ -954,7 +956,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://repo.prefix.dev/conda-forge/win-64/fonttools-4.57.0-py311h5082efb_0.conda hash: md5: 9ecb6a80392fc77239da9cb631e9ab0c sha256: 59938b42ed276e716af76b9795f37f2c2ba9b03ce79e820610b37d036d1b4101 @@ -965,14 +967,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://packages.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 @@ -980,15 +980,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://packages.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 @@ -997,7 +994,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://repo.prefix.dev/conda-forge/noarch/fsspec-2025.3.2-pyhd8ed1ab_0.conda hash: md5: 9c40692c3d24c7aaf335f673ac09d308 sha256: 2040d4640708bd6ab9ed6cb9901267441798c44974bc63c9b6c1cb4c1891d825 @@ -1009,7 +1006,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://repo.prefix.dev/conda-forge/noarch/fsspec-2025.3.2-pyhd8ed1ab_0.conda hash: md5: 9c40692c3d24c7aaf335f673ac09d308 sha256: 2040d4640708bd6ab9ed6cb9901267441798c44974bc63c9b6c1cb4c1891d825 @@ -1028,7 +1025,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://repo.prefix.dev/conda-forge/linux-64/geoana-0.7.2-py311h5b7b71f_0.conda hash: md5: 43a8fbbc2388122345ec26773a07091c sha256: 549a28806517d33a391cf67319322b48cc7afbec85d45ee45792594287af5b5e @@ -1047,7 +1044,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://repo.prefix.dev/conda-forge/win-64/geoana-0.7.2-py311h9b10771_0.conda hash: md5: e611dcb0a755ab9df497b3a7b6dd72b0 sha256: a63e83fec8e75b61333693919eaa2789320b0caf2d62f37691bd68f56b296004 @@ -1061,7 +1058,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://repo.prefix.dev/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda hash: md5: b4754fb1bdcb70c8fd54f918301582c6 sha256: 0aa1cdc67a9fe75ea95b5644b734a756200d6ec9d0dff66530aec3d1c1e9df75 @@ -1075,7 +1072,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://repo.prefix.dev/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda hash: md5: b4754fb1bdcb70c8fd54f918301582c6 sha256: 0aa1cdc67a9fe75ea95b5644b734a756200d6ec9d0dff66530aec3d1c1e9df75 @@ -1093,7 +1090,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://repo.prefix.dev/conda-forge/linux-64/h5py-3.13.0-nompi_py311hb639ac4_100.conda hash: md5: 5e6c88350ad81f42e63f2b470b6a4b86 sha256: 61809af316c1da7db5b19396f18c4ea31fc194910901e873baa056ab103f46c7 @@ -1112,7 +1109,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://repo.prefix.dev/conda-forge/win-64/h5py-3.13.0-nompi_py311h67016bb_100.conda hash: md5: 2e6c03df40daaaceb2f8229eff48a22a sha256: 5d36e278a6eeeca22e7d882b4d5e98ee23b900994eb1902aa95f8c582a2a6200 @@ -1132,7 +1129,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://repo.prefix.dev/conda-forge/linux-64/hdf5-1.14.3-nompi_h2d575fe_109.conda hash: md5: e7a7a6e6f70553a31e6e79c65768d089 sha256: e8669a6d76d415f4fdbe682507ac3a3b39e8f493d2f2bdc520817f80b7cc0753 @@ -1150,7 +1147,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://repo.prefix.dev/conda-forge/win-64/hdf5-1.14.3-nompi_hb2c4d47_109.conda hash: md5: ebb61f3e8b35cc15e78876649b7246f7 sha256: d5ada33e119cdd62371c06f60eae6f545de7cea793ab83da2fba428bb1d2f813 @@ -1162,7 +1159,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://repo.prefix.dev/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda hash: md5: 0a802cb9888dd14eeefc611f05c40b6e sha256: 6ad78a180576c706aabeb5b4c8ceb97c0cb25f1e112d76495bff23e3779948ba @@ -1174,7 +1171,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://repo.prefix.dev/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda hash: md5: 0a802cb9888dd14eeefc611f05c40b6e sha256: 6ad78a180576c706aabeb5b4c8ceb97c0cb25f1e112d76495bff23e3779948ba @@ -1186,7 +1183,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://repo.prefix.dev/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda hash: md5: 8e6923fc12f1fe8f8c4e5c9f343256ac sha256: 77af6f5fe8b62ca07d09ac60127a30d9069fdc3c68d6b256754d0ffb1f7779f8 @@ -1198,7 +1195,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://repo.prefix.dev/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda hash: md5: 8e6923fc12f1fe8f8c4e5c9f343256ac sha256: 77af6f5fe8b62ca07d09ac60127a30d9069fdc3c68d6b256754d0ffb1f7779f8 @@ -1210,7 +1207,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://repo.prefix.dev/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda hash: md5: 39a4f67be3286c86d696df570b1201b7 sha256: d7a472c9fd479e2e8dcb83fb8d433fce971ea369d704ece380e876f9c3494e87 @@ -1222,7 +1219,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://repo.prefix.dev/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda hash: md5: 39a4f67be3286c86d696df570b1201b7 sha256: d7a472c9fd479e2e8dcb83fb8d433fce971ea369d704ece380e876f9c3494e87 @@ -1234,7 +1231,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://repo.prefix.dev/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2 hash: md5: 7de5386c8fea29e76b303f37dde4c352 sha256: c2bfd7043e0c4c12d8b5593de666c1e81d67b83c474a0a79282cc5c4ef845460 @@ -1246,7 +1243,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://repo.prefix.dev/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2 hash: md5: 7de5386c8fea29e76b303f37dde4c352 sha256: c2bfd7043e0c4c12d8b5593de666c1e81d67b83c474a0a79282cc5c4ef845460 @@ -1259,7 +1256,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://repo.prefix.dev/conda-forge/noarch/importlib-metadata-8.6.1-pyha770c72_0.conda hash: md5: f4b39bf00c69f56ac01e020ebfac066c sha256: 598951ebdb23e25e4cec4bbff0ae369cec65ead80b50bc08b441d8e54de5cf03 @@ -1272,7 +1269,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://repo.prefix.dev/conda-forge/noarch/importlib-metadata-8.6.1-pyha770c72_0.conda hash: md5: f4b39bf00c69f56ac01e020ebfac066c sha256: 598951ebdb23e25e4cec4bbff0ae369cec65ead80b50bc08b441d8e54de5cf03 @@ -1284,7 +1281,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://repo.prefix.dev/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda hash: md5: 6837f3eff7dcea42ecd714ce1ac2b108 sha256: 0ec8f4d02053cd03b0f3e63168316530949484f80e16f5e2fb199a1d117a89ca @@ -1296,7 +1293,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://repo.prefix.dev/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda hash: md5: 6837f3eff7dcea42ecd714ce1ac2b108 sha256: 0ec8f4d02053cd03b0f3e63168316530949484f80e16f5e2fb199a1d117a89ca @@ -1307,7 +1304,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://repo.prefix.dev/conda-forge/win-64/intel-openmp-2024.2.1-h57928b3_1083.conda hash: md5: 2d89243bfb53652c182a7c73182cce4f sha256: 0fd2b0b84c854029041b0ede8f4c2369242ee92acc0092f8407b1fe9238a8209 @@ -1320,7 +1317,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://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_0.conda hash: md5: a8abfd3f223b1ecb8c699dca974933bd sha256: 9c5fb97efa0eb32b42564edaacb5edb9a1f82ba8f5f8b135e794960101115b5a @@ -1333,7 +1330,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://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_0.conda hash: md5: a8abfd3f223b1ecb8c699dca974933bd sha256: 9c5fb97efa0eb32b42564edaacb5edb9a1f82ba8f5f8b135e794960101115b5a @@ -1346,7 +1343,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://repo.prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda hash: md5: 446bd6c8cb26050d528881df495ce646 sha256: f1ac18b11637ddadc05642e8185a851c7fab5998c6f5470d716812fae943b2af @@ -1359,7 +1356,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://repo.prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda hash: md5: 446bd6c8cb26050d528881df495ce646 sha256: f1ac18b11637ddadc05642e8185a851c7fab5998c6f5470d716812fae943b2af @@ -1372,7 +1369,7 @@ package: dependencies: python: '>=3.9' setuptools: '' - url: https://packages.prefix.dev/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 @@ -1385,7 +1382,7 @@ package: dependencies: python: '>=3.9' setuptools: '' - url: https://packages.prefix.dev/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 @@ -1397,7 +1394,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://repo.prefix.dev/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 hash: md5: 30186d27e2c9fa62b45fb1476b7200e3 sha256: 150c05a6e538610ca7c43beb3a40d65c90537497a4f6a5f4d15ec0451b6f5ebb @@ -1413,7 +1410,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://repo.prefix.dev/conda-forge/linux-64/kiwisolver-1.4.7-py311hd18a35c_0.conda hash: md5: be34c90cce87090d24da64a7c239ca96 sha256: 4af11cbc063096a284fe1689b33424e7e49732a27fd396d74c7dee03d1e788ee @@ -1429,7 +1426,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://repo.prefix.dev/conda-forge/win-64/kiwisolver-1.4.7-py311h3257749_0.conda hash: md5: 18fd1ac3d79a8d6550eaea5ceaa00036 sha256: a2079e13d1345a5dd61df6be933e828e805051256e7260009ba93fce55aebd75 @@ -1445,7 +1442,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://repo.prefix.dev/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda hash: md5: 3f43953b7d3fb3aaa1d0d0723d91e368 sha256: 99df692f7a8a5c27cd14b5fb1374ee55e756631b9c3d659ed3ee60830249b238 @@ -1460,7 +1457,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://repo.prefix.dev/conda-forge/win-64/krb5-1.21.3-hdf4eb48_0.conda hash: md5: 31aec030344e962fbd7dbbbbd68e60a9 sha256: 18e8b3430d7d232dad132f574268f56b3eb1a19431d6d5de8c53c29e6c18fa81 @@ -1475,7 +1472,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://repo.prefix.dev/conda-forge/linux-64/lcms2-2.17-h717163a_0.conda hash: md5: 000e85703f0fd9594c81710dd5066471 sha256: d6a61830a354da022eae93fa896d0991385a875c6bba53c82263a289deda9db8 @@ -1491,7 +1488,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://repo.prefix.dev/conda-forge/win-64/lcms2-2.17-hbcf6048_0.conda hash: md5: 3538827f77b82a837fa681a4579e37a1 sha256: 7712eab5f1a35ca3ea6db48ead49e0d6ac7f96f8560da8023e61b3dbe4f3b25d @@ -1503,7 +1500,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://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_4.conda hash: md5: 01f8d123c96816249efd255a31ad7712 sha256: db73f38155d901a610b2320525b9dd3b31e4949215c870685fd92ea61b5ce472 @@ -1514,12 +1511,13 @@ package: manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://packages.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 @@ -1527,12 +1525,13 @@ package: manager: conda platform: win-64 dependencies: + ucrt: '>=10.0.20348.0' 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 + 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 @@ -1542,7 +1541,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://repo.prefix.dev/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda hash: md5: 5e97e271911b8b2001a8b71860c32faa sha256: 2ef420a655528bca9d269086cf33b7e90d2f54ad941b437fb1ed5eca87cee017 @@ -1556,7 +1555,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://repo.prefix.dev/conda-forge/win-64/libaec-1.1.3-h63175ca_0.conda hash: md5: 8723000f6ffdbdaef16025f0a01b64c5 sha256: f5c293d3cfc00f71dfdb64bd65ab53625565f8778fc2d5790575bef238976ebf @@ -1568,7 +1567,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://repo.prefix.dev/conda-forge/linux-64/libblas-3.9.0-31_hfdb39a5_mkl.conda hash: md5: bdf4a57254e8248222cb631db4393ff1 sha256: 862289f2cfb84bb6001d0e3569e908b8c42d66b881bd5b03f730a3924628b978 @@ -1580,7 +1579,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://repo.prefix.dev/conda-forge/win-64/libblas-3.9.0-31_h641d27c_mkl.conda hash: md5: d05563c577fe2f37693a554b3f271e8f sha256: 7bb4d5b591e98fe607279520ee78e3571a297b5720aa789a2536041ad5540de8 @@ -1593,7 +1592,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://repo.prefix.dev/conda-forge/linux-64/libbrotlicommon-1.1.0-hb9d3cd8_2.conda hash: md5: 41b599ed2b02abcfdd84302bff174b23 sha256: d9db2de60ea917298e658143354a530e9ca5f9c63471c65cf47ab39fd2f429e3 @@ -1607,7 +1606,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://repo.prefix.dev/conda-forge/win-64/libbrotlicommon-1.1.0-h2466b09_2.conda hash: md5: f7dc9a8f21d74eab46456df301da2972 sha256: 33e8851c6cc8e2d93059792cd65445bfe6be47e4782f826f01593898ec95764c @@ -1621,7 +1620,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://repo.prefix.dev/conda-forge/linux-64/libbrotlidec-1.1.0-hb9d3cd8_2.conda hash: md5: 9566f0bd264fbd463002e759b8a82401 sha256: 2892d512cad096cb03f1b66361deeab58b64e15ba525d6592bb6d609e7045edf @@ -1636,7 +1635,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://repo.prefix.dev/conda-forge/win-64/libbrotlidec-1.1.0-h2466b09_2.conda hash: md5: 9bae75ce723fa34e98e239d21d752a7e sha256: 234fc92f4c4f1cf22f6464b2b15bfc872fa583c74bf3ab9539ff38892c43612f @@ -1650,7 +1649,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://repo.prefix.dev/conda-forge/linux-64/libbrotlienc-1.1.0-hb9d3cd8_2.conda hash: md5: 06f70867945ea6a84d35836af780f1de sha256: 779f58174e99de3600e939fa46eddb453ec5d3c60bb46cdaa8b4c127224dbf29 @@ -1665,7 +1664,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://repo.prefix.dev/conda-forge/win-64/libbrotlienc-1.1.0-h2466b09_2.conda hash: md5: 85741a24d97954a991e55e34bc55990b sha256: 3d0dd7ef505962f107b7ea8f894e0b3dd01bf46852b362c8a7fc136b039bc9e1 @@ -1677,7 +1676,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://repo.prefix.dev/conda-forge/linux-64/libcblas-3.9.0-31_h372d94f_mkl.conda hash: md5: 2a06a6c16b45bd3d10002927ca204b67 sha256: 2ee3ab2b6eeb59f2d3c6f933fa0db28f1b56f0bc543ed2c0f6ec04060e4b6ec0 @@ -1689,7 +1688,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://repo.prefix.dev/conda-forge/win-64/libcblas-3.9.0-31_h5e41251_mkl.conda hash: md5: 43c100b94ad2607382b0cf0f3a6b0bf3 sha256: 609f455b099919bd4d15d4a733f493dc789e02da73fe4474f1cca73afafb95b8 @@ -1708,7 +1707,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://repo.prefix.dev/conda-forge/linux-64/libcurl-8.13.0-h332b0f4_0.conda hash: md5: cbdc92ac0d93fe3c796e36ad65c7905c sha256: 38e528acfaa0276b7052f4de44271ff9293fdb84579650601a8c49dac171482a @@ -1725,7 +1724,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://repo.prefix.dev/conda-forge/win-64/libcurl-8.13.0-h88aaa65_0.conda hash: md5: c9cf6eb842decbb66c2f34e72c3580d6 sha256: 185553b37c0299b7a15dc66a7a7e2a0d421adaac784ec9298a0b2ad745116ca5 @@ -1738,10 +1737,10 @@ 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://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 @@ -1752,10 +1751,10 @@ 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://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 @@ -1765,7 +1764,7 @@ package: dependencies: numpy: '' python: '>=3.10' - url: https://packages.prefix.dev/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 @@ -1778,7 +1777,7 @@ package: dependencies: numpy: '' python: '>=3.10' - url: https://packages.prefix.dev/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 @@ -1792,7 +1791,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://repo.prefix.dev/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.conda hash: md5: c277e0a4d549b03ac1e9d6cbbe3d017b sha256: d789471216e7aba3c184cd054ed61ce3f6dac6f87a50ec69291b9297f8c18724 @@ -1804,7 +1803,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://repo.prefix.dev/conda-forge/linux-64/libev-4.33-hd590300_2.conda hash: md5: 172bf1cd1ff8629f2b1179945ed45055 sha256: 1cd6048169fa0395af74ed5d8f1716e22c19a81a8a36f934c110ca3ad4dd27b4 @@ -1817,7 +1816,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://repo.prefix.dev/conda-forge/linux-64/libexpat-2.7.0-h5888daf_0.conda hash: md5: db0bfbe7dd197b68ad5f30333bae6ce0 sha256: 33ab03438aee65d6aa667cf7d90c91e5e7d734c19a67aa4c7040742c0a13d505 @@ -1831,7 +1830,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://repo.prefix.dev/conda-forge/win-64/libexpat-2.7.0-he0c23c2_0.conda hash: md5: b6f5352fdb525662f4169a0431d2dd7a sha256: 1a227c094a4e06bd54e8c2f3ec40c17ff99dcf3037d812294f842210aa66dbeb @@ -1844,7 +1843,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://repo.prefix.dev/conda-forge/linux-64/libffi-3.4.6-h2dba641_1.conda hash: md5: ede4673863426c0883c0063d853bbd85 sha256: 764432d32db45466e87f10621db5b74363a9f847d2b8b1f9743746cd160f06ab @@ -1858,12 +1857,67 @@ 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://repo.prefix.dev/conda-forge/win-64/libffi-3.4.6-h537db12_1.conda hash: md5: 85d8fa5e55ed8f93f874b3b23ed54ec6 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 @@ -1871,7 +1925,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://repo.prefix.dev/conda-forge/linux-64/libgcc-14.2.0-h767d61c_2.conda hash: md5: ef504d1acbd74b7cc6849ef8af47dd03 sha256: 3a572d031cb86deb541d15c1875aaa097baefc0c580b54dc61f5edab99215792 @@ -1884,7 +1938,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://repo.prefix.dev/conda-forge/win-64/libgcc-14.2.0-h1383e82_2.conda hash: md5: 4a74c1461a0ba47a3346c04bdccbe2ad sha256: fddf2fc037bc95adb3b369e8866da8a71b6a67ebcfc4d7035ac4208309dc9e72 @@ -1896,7 +1950,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://repo.prefix.dev/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_2.conda hash: md5: a2222a6ada71fb478682efe483ce0f92 sha256: fb7558c328b38b2f9d2e412c48da7890e7721ba018d733ebdfea57280df01904 @@ -1908,7 +1962,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://repo.prefix.dev/conda-forge/linux-64/libgfortran-14.2.0-h69a702a_2.conda hash: md5: fb54c4ea68b460c278d26eea89cfbcc3 sha256: e05263e8960da03c341650f2a3ffa4ccae4e111cb198e8933a2908125459e5a6 @@ -1921,7 +1975,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://repo.prefix.dev/conda-forge/linux-64/libgfortran5-14.2.0-hf1ad2bd_2.conda hash: md5: 556a4fdfac7287d349b8f09aba899693 sha256: c17b7cf3073a1f4e1f34d50872934fa326346e104d3c445abc1e62481ad6085c @@ -1933,7 +1987,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://repo.prefix.dev/conda-forge/win-64/libgomp-14.2.0-h1383e82_2.conda hash: md5: dd6b1ab49e28bcb6154cd131acec985b sha256: 674ec5f1bf319eac98d0d6ecb9c38e0192f3cf41969a5621d62a7e695e1aa9f3 @@ -1948,7 +2002,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://repo.prefix.dev/conda-forge/linux-64/libhwloc-2.11.2-default_h0d58e46_1001.conda hash: md5: 804ca9e91bcaea0824a341d55b1684f2 sha256: d14c016482e1409ae1c50109a9ff933460a50940d2682e745ab1c172b5282a69 @@ -1964,7 +2018,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://repo.prefix.dev/conda-forge/win-64/libhwloc-2.11.2-default_ha69328c_1001.conda hash: md5: b87a0ac5ab6495d8225db5dc72dd21cd sha256: 850e255997f538d5fb6ed651321141155a33bb781d43d326fc4ff62114dd2842 @@ -1977,7 +2031,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://repo.prefix.dev/conda-forge/linux-64/libiconv-1.18-h4ce23a2_1.conda hash: md5: e796ff8ddc598affdf7c173d6145f087 sha256: 18a4afe14f731bfb9cf388659994263904d20111e42f841e9eea1bb6f91f4ab4 @@ -1991,36 +2045,37 @@ 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://repo.prefix.dev/conda-forge/win-64/libiconv-1.18-h135ad9c_1.conda hash: md5: 21fc5dba2cbcd8e5e26ff976a312122c sha256: ea5ed2b362b6dbc4ba7188eb4eaf576146e3dfc6f4395e9f0db76ad77465f786 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://packages.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://packages.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 @@ -2029,7 +2084,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://repo.prefix.dev/conda-forge/linux-64/liblapack-3.9.0-31_hc41d3b0_mkl.conda hash: md5: 10d012ddd7cc1c7ff9093d4974a34e53 sha256: a2d20845d916ac8fba09376cd791136a9b4547afb2131bc315178adfc87bb4ca @@ -2041,7 +2096,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://repo.prefix.dev/conda-forge/win-64/liblapack-3.9.0-31_h1aa476e_mkl.conda hash: md5: 40b47ee720a185289760960fc6185750 sha256: 9415e807aa6f8968322bbd756aab8f487379d809c74266d37c697b8d85c534ad @@ -2054,7 +2109,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://repo.prefix.dev/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_0.conda hash: md5: 0e87378639676987af32fee53ba32258 sha256: f4f21dfc54b08d462f707b771ecce3fa9bc702a2a05b55654f64154f48b141ef @@ -2068,7 +2123,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://repo.prefix.dev/conda-forge/win-64/liblzma-5.8.1-h2466b09_0.conda hash: md5: 8d5cb0016b645d6688e2ff57c5d51302 sha256: 1477e9bff05318f3129d37be0e64c76cce0973c4b8c73d13a467d0b7f03d157c @@ -2086,7 +2141,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://repo.prefix.dev/conda-forge/linux-64/libnghttp2-1.64.0-h161d5f1_0.conda hash: md5: 19e57602824042dfd0446292ef90488b sha256: b0f2b3695b13a989f75d8fd7f4778e1c7aabe3b36db83f0fe80b2cd812c0e975 @@ -2098,7 +2153,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://repo.prefix.dev/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda hash: md5: 30fd6e37fe21f86f4bd26d6ee73eeec7 sha256: 26d77a3bb4dceeedc2a41bd688564fe71bf2d149fdcf117049970bc02ff1add6 @@ -2112,7 +2167,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://repo.prefix.dev/conda-forge/linux-64/libpng-1.6.47-h943b412_0.conda hash: md5: 55199e2ae2c3651f6f9b2a447b47bdc9 sha256: 23367d71da58c9a61c8cbd963fcffb92768d4ae5ffbef9a47cdf1f54f98c5c36 @@ -2127,10 +2182,10 @@ 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://repo.prefix.dev/conda-forge/win-64/libpng-1.6.47-h7a4582a_0.conda hash: - md5: 7d717163d9dab337c65f2bf21a676b8f - sha256: cf8a594b697de103025dcae2c917ec9c100609caf7c917a94c64a683cb1db1ac + md5: ad620e92b82d2948bc019e029c574ebb + sha256: e12c46ca882080d901392ae45e0e5a1c96fc3e5acd5cd1a23c2632eb7f024f26 category: main optional: false - name: libscotch @@ -2145,7 +2200,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://repo.prefix.dev/conda-forge/linux-64/libscotch-7.0.6-hea33c07_1.conda hash: md5: 1b600d55dcd98c958192a69a79e6acd2 sha256: 8330bba8b7b3a37da6eca04bace985fb9f8d487d3249b8f690e8f4a3d8d3c7dc @@ -2159,7 +2214,7 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://packages.prefix.dev/conda-forge/linux-64/libspatialindex-2.0.0-he02047a_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libspatialindex-2.0.0-he02047a_0.conda hash: md5: e7d2dcd1a058149ff9731a8dca39566e sha256: 997a4fa13864dcb35ac9dfe87ed70fb3e9509dd071fa1951ac7f184e7ffcde5d @@ -2173,7 +2228,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/libspatialindex-2.0.0-h5a68840_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libspatialindex-2.0.0-h5a68840_0.conda hash: md5: 667559340fdf805ee1652de7b73e2b59 sha256: 7802e6c51d59bc7e062841c525d772656708cdc44e42b6556493d345f08d7e50 @@ -2187,7 +2242,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://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.49.1-hee588c1_2.conda hash: md5: 962d6ac93c30b1dfc54c9cccafd1003e sha256: a086289bf75c33adc1daed3f1422024504ffb5c3c8b3285c49f025c29708ed16 @@ -2201,7 +2256,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://repo.prefix.dev/conda-forge/win-64/libsqlite-3.49.1-h67fdade_2.conda hash: md5: b58b66d4ad1aaf1c2543cbbd6afb1a59 sha256: c092d42d00fd85cf609cc58574ba2b03c141af5762283f36f5dd445ef7c0f4fe @@ -2215,11 +2270,11 @@ package: __glibc: '>=2.17,<3.0.a0' 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 + openssl: '>=3.5.0,<4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/libssh2-1.11.1-hcf80075_0.conda hash: - md5: be2de152d8073ef1c01b7728475f2fe7 - sha256: 0407ac9fda2bb67e11e357066eff144c845801d00b5f664efbc48813af1e7bb9 + md5: eecce068c7e4eddeb169591baac20ac4 + sha256: fa39bfd69228a13e553bd24601332b7cfeb30ca11a3ca50bb028108fe90a7661 category: main optional: false - name: libssh2 @@ -2228,14 +2283,14 @@ package: platform: win-64 dependencies: libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.4.0,<4.0a0' + openssl: '>=3.5.0,<4.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/libssh2-1.11.1-he619c9f_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libssh2-1.11.1-h9aa295b_0.conda hash: - md5: af0cbf037dd614c34399b3b3e568c557 - sha256: 4b3256bd2b4e4b3183005d3bd8826d651eccd1a4740b70625afa2b7e7123d191 + md5: 9dce2f112bfd3400f4f432b3d0ac07b2 + sha256: cbdf93898f2e27cefca5f3fe46519335d1fab25c4ea2a11b11502ff63e602c09 category: main optional: false - name: libstdcxx @@ -2245,7 +2300,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://repo.prefix.dev/conda-forge/linux-64/libstdcxx-14.2.0-h8f9b012_2.conda hash: md5: a78c856b6dc6bf4ea8daeb9beaaa3fb0 sha256: 8f5bd92e4a24e1d35ba015c5252e8f818898478cb3bc50bd8b12ab54707dc4da @@ -2257,7 +2312,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://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-14.2.0-h4852527_2.conda hash: md5: c75da67f045c2627f59e6fcb5f4e3a9b sha256: e86f38b007cf97cc2c67cd519f2de12a313c4ee3f5ef11652ad08932a5e34189 @@ -2272,16 +2327,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://packages.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 @@ -2291,17 +2346,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://packages.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 @@ -2310,7 +2365,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://repo.prefix.dev/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda hash: md5: 40b61aab5c7ba9ff276c41cfffe6b80b sha256: 787eb542f055a2b3de553614b25f09eefb0a0931b0c87dbcce6efdfd92f04f18 @@ -2323,7 +2378,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://repo.prefix.dev/conda-forge/linux-64/libwebp-base-1.5.0-h851e524_0.conda hash: md5: 63f790534398730f59e1b899c3644d4a sha256: c45283fd3e90df5f0bd3dbcd31f59cdd2b001d424cf30a07223655413b158eaf @@ -2337,7 +2392,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://repo.prefix.dev/conda-forge/win-64/libwebp-base-1.5.0-h3b0e114_0.conda hash: md5: 33f7313967072c6e6d8f865f5493c7ae sha256: 1d75274614e83a5750b8b94f7bad2fc0564c2312ff407e697d99152ed095576f @@ -2349,7 +2404,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://repo.prefix.dev/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h57928b3_9.conda hash: md5: 08bfa5da6e242025304b206d152479ef sha256: 373f2973b8a358528b22be5e8d84322c165b4c5577d24d94fd67ad1bb0a0f261 @@ -2365,7 +2420,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://repo.prefix.dev/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda hash: md5: 92ed62436b625154323d40d5f2f11dd7 sha256: 666c0c431b23c6cec6e492840b176dde533d48b7e6fb8883f5071223433776aa @@ -2382,7 +2437,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://repo.prefix.dev/conda-forge/win-64/libxcb-1.17.0-h0e4246c_0.conda hash: md5: a69bbf778a462da324489976c84cfc8c sha256: 08dec73df0e161c96765468847298a420933a36bc4f09b50e062df8793290737 @@ -2394,7 +2449,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://repo.prefix.dev/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda hash: md5: 5aa797f8787fe7a17d1b0821485b5adc sha256: 6ae68e0b86423ef188196fff6207ed0c8195dd84273cb5623b85aa08033a410c @@ -2410,7 +2465,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://repo.prefix.dev/conda-forge/linux-64/libxml2-2.13.7-h81593ed_1.conda hash: md5: 0619e8fc4c8025a908ea3a3422d3b775 sha256: c4f59563e017eba378ea843be5ebde4b0546c72bbe4c1e43b2b384379e827635 @@ -2426,7 +2481,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://repo.prefix.dev/conda-forge/win-64/libxml2-2.13.7-h442d1da_1.conda hash: md5: c14ff7f05e57489df9244917d2b55763 sha256: 0a013527f784f4702dc18460070d8ec79d1ebb5087dd9e678d6afbeaca68d2ac @@ -2439,7 +2494,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://repo.prefix.dev/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda hash: md5: edb0dca6bc32e4f4789199455a1dbeb8 sha256: d4bfe88d7cb447768e31650f06257995601f89076080e76df55e3112d4e47dc4 @@ -2453,36 +2508,36 @@ 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://repo.prefix.dev/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda hash: md5: 41fbfac52c601159df6c01f875de31b9 sha256: ba945c6493449bed0e6e29883c4943817f7c79cbff52b83360f7b341277c6402 category: main optional: false - 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://repo.prefix.dev/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://repo.prefix.dev/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 @@ -2491,7 +2546,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://repo.prefix.dev/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 91e27ef3d05cc772ce627e51cff111c4 sha256: 9afe0b5cfa418e8bdb30d8917c5a6cec10372b037924916f1f85b9f4899a67a6 @@ -2503,7 +2558,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://repo.prefix.dev/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 91e27ef3d05cc772ce627e51cff111c4 sha256: 9afe0b5cfa418e8bdb30d8917c5a6cec10372b037924916f1f85b9f4899a67a6 @@ -2518,7 +2573,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://repo.prefix.dev/conda-forge/linux-64/markupsafe-3.0.2-py311h2dc5d0c_1.conda hash: md5: 6565a715337ae279e351d0abd8ffe88a sha256: 0291d90706ac6d3eea73e66cd290ef6d805da3fad388d1d476b8536ec92ca9a8 @@ -2534,7 +2589,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://repo.prefix.dev/conda-forge/win-64/markupsafe-3.0.2-py311h5082efb_1.conda hash: md5: c1f2ddad665323278952a453912dc3bd sha256: 6f756e13ccf1a521d3960bd3cadddf564e013e210eaeced411c5259f070da08e @@ -2561,7 +2616,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://repo.prefix.dev/conda-forge/linux-64/matplotlib-base-3.8.4-py311ha4ca890_2.conda hash: md5: 0848e2084cbb57014f232f48568561af sha256: 19a65ac35a9f48b3f0277b723b832052728d276e70c0ad1057f5b5bbe1f1ba28 @@ -2588,7 +2643,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://repo.prefix.dev/conda-forge/win-64/matplotlib-base-3.8.4-py311h9b31f6e_2.conda hash: md5: dbf84485273ba5fea107ef140a173e30 sha256: 857ed04795a1e3ea1939d8990fe0f6122b086445f72f92afe50de74ae19977d0 @@ -2600,7 +2655,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://repo.prefix.dev/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda hash: md5: 827064ddfe0de2917fb29f1da4f8f533 sha256: 9b0037171dad0100f0296699a11ae7d355237b55f42f9094aebc0f41512d96a1 @@ -2612,7 +2667,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://repo.prefix.dev/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda hash: md5: 827064ddfe0de2917fb29f1da4f8f533 sha256: 9b0037171dad0100f0296699a11ae7d355237b55f42f9094aebc0f41512d96a1 @@ -2626,7 +2681,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://repo.prefix.dev/conda-forge/linux-64/metis-5.1.0-hd0bcaf9_1007.conda hash: md5: 28eb714416de4eb83e2cbc47e99a1b45 sha256: e8a00971e6d00bd49f375c5d8d005b37a9abba0b1768533aed0f90a422bf5cc7 @@ -2637,10 +2692,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://repo.prefix.dev/conda-forge/linux-64/mkl-2024.2.2-ha957f24_16.conda hash: md5: 1459379c79dda834673426504d52b319 sha256: 77906b0acead8f86b489da46f53916e624897338770dbf70b04b8f673c9273c1 @@ -2653,7 +2708,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://repo.prefix.dev/conda-forge/win-64/mkl-2024.2.2-h66d3029_15.conda hash: md5: 302dff2807f2927b3e9e0d19d60121de sha256: 20e52b0389586d0b914a49cd286c5ccc9c47949bed60ca6df004d1d295f2edbd @@ -2669,7 +2724,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://repo.prefix.dev/conda-forge/linux-64/msgpack-python-1.1.0-py311hd18a35c_0.conda hash: md5: 682f76920687f7d9283039eb542fdacf sha256: 9033fa7084cbfd10e1b7ed3b74cee17169a0731ec98244d05c372fc4a935d5c9 @@ -2685,7 +2740,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://repo.prefix.dev/conda-forge/win-64/msgpack-python-1.1.0-py311h3257749_0.conda hash: md5: 36562593204b081d0da8a8bfabfb278b sha256: 4e6a7979b434308ce5588970cb613952e3340bb2f9e63aaad7e5069ef1f08d1d @@ -2696,10 +2751,10 @@ 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://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 @@ -2717,10 +2772,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://packages.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 @@ -2730,14 +2785,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://packages.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 @@ -2746,7 +2801,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://repo.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 hash: md5: 2ba8498c1018c1e9c61eb99b973dfe19 sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 @@ -2758,7 +2813,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://repo.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 hash: md5: 2ba8498c1018c1e9c61eb99b973dfe19 sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 @@ -2771,7 +2826,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://repo.prefix.dev/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda hash: md5: 47e340acb35de30501a76c7c799c41d7 sha256: 3fde293232fa3fca98635e1167de6b7c7fda83caf24b9d6c91ec9eefb4f4d586 @@ -2790,7 +2845,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://repo.prefix.dev/conda-forge/linux-64/numcodecs-0.15.1-py311h7db5c69_0.conda hash: md5: 969c10aa2c0b994e33a436bea697e214 sha256: 38794beadfe994f21ae105ec3a888999a002f341a3fb7e8e870fef8212cebfef @@ -2809,7 +2864,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://repo.prefix.dev/conda-forge/win-64/numcodecs-0.15.1-py311hcf9f919_0.conda hash: md5: 89d8435b5b12da6eb043309c45b022f2 sha256: 5c6ece778e8abaed89c5c7529f4fe276fa2ab72013e27301dd08a649e37f1f05 @@ -2827,7 +2882,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://repo.prefix.dev/conda-forge/linux-64/numpy-1.26.4-py311h64a7726_0.conda hash: md5: a502d7aad449a1206efb366d6a12c52d sha256: 3f4365e11b28e244c95ba8579942b0802761ba7bb31c026f50d1a9ea9c728149 @@ -2846,7 +2901,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://repo.prefix.dev/conda-forge/win-64/numpy-1.26.4-py311h0b4df5a_0.conda hash: md5: 7b240edd44fd7a0991aa409b07cee776 sha256: 14116e72107de3089cc58119a5ce5905c22abf9a715c9fe41f8ac14db0992326 @@ -2863,7 +2918,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://repo.prefix.dev/conda-forge/linux-64/openjpeg-2.5.3-h5fbd93e_0.conda hash: md5: 9e5816bc95d285c115a3ebc2f8563564 sha256: 5bee706ea5ba453ed7fd9da7da8380dd88b865c8d30b5aaec14d2b6dd32dbc39 @@ -2880,7 +2935,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://repo.prefix.dev/conda-forge/win-64/openjpeg-2.5.3-h4d64b90_0.conda hash: md5: fc050366dd0b8313eb797ed1ffef3a29 sha256: 410175815df192f57a07c29a6b3fdd4231937173face9e63f0830c1234272ce3 @@ -2894,7 +2949,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://repo.prefix.dev/conda-forge/linux-64/openssl-3.5.0-h7b32b05_0.conda hash: md5: bb539841f2a3fde210f387d00ed4bb9d sha256: 38285d280f84f1755b7c54baf17eccf2e3e696287954ce0adca16546b85ee62c @@ -2909,34 +2964,34 @@ 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://repo.prefix.dev/conda-forge/win-64/openssl-3.5.0-ha4e3fda_0.conda hash: md5: 4ea7db75035eb8c13fa680bb90171e08 sha256: 43dd7f56da142ca83c614c8b0085589650ae9032b351a901c190e48eefc73675 category: main optional: false - 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://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda hash: - md5: 3bfed7e6228ebf2f7b9eaa47f1b4e2aa - sha256: da157b19bcd398b9804c5c52fc000fcb8ab0525bdb9c70f95beaa0bb42f85af1 + md5: 58335b26c38bf4a20f399384c33cbcf9 + sha256: 289861ed0c13a15d7bbb408796af4de72c2fe67e2bcb0de98f4c3fce259d7991 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://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda hash: - md5: 3bfed7e6228ebf2f7b9eaa47f1b4e2aa - sha256: da157b19bcd398b9804c5c52fc000fcb8ab0525bdb9c70f95beaa0bb42f85af1 + md5: 58335b26c38bf4a20f399384c33cbcf9 + sha256: 289861ed0c13a15d7bbb408796af4de72c2fe67e2bcb0de98f4c3fce259d7991 category: main optional: false - name: partd @@ -2947,7 +3002,7 @@ package: locket: '' python: '>=3.9' toolz: '' - url: https://packages.prefix.dev/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 @@ -2961,7 +3016,7 @@ package: locket: '' python: '>=3.9' toolz: '' - url: https://packages.prefix.dev/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 @@ -2984,7 +3039,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://repo.prefix.dev/conda-forge/linux-64/pillow-10.3.0-py311h82a398c_1.conda hash: md5: 4dc0b6fcf0bc041a1bfb763fa6e5302f sha256: ce420bfba7ed8641aa376b4446e16299fcb37113c27e9655503fd5d517cb7fcd @@ -3009,38 +3064,38 @@ 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://repo.prefix.dev/conda-forge/win-64/pillow-10.3.0-py311h5592be9_1.conda hash: md5: 034f612fd103c2c1058538533598ce4f sha256: 5404b51b1c93180940e0f8340e905d435bf187224512bab2993c5b7f30aa0615 category: main optional: false - name: pip - version: 25.0.1 + version: '25.1' manager: conda platform: linux-64 dependencies: 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://repo.prefix.dev/conda-forge/noarch/pip-25.1-pyh8b19718_0.conda hash: - md5: 79b5c1440aedc5010f687048d9103628 - sha256: 585940f09d87787f79f73ff5dff8eb2af8a67e5bec5eebf2f553cd26c840ba69 + md5: 2247aa245832ea47e8b971bef73d7094 + sha256: 81a7ffe7b7ca8718bc09476a258cd48754e1d4e1bd3b80a6fef41ffb71e3bfc8 category: main optional: false - name: pip - version: 25.0.1 + version: '25.1' manager: conda platform: win-64 dependencies: 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://repo.prefix.dev/conda-forge/noarch/pip-25.1-pyh8b19718_0.conda hash: - md5: 79b5c1440aedc5010f687048d9103628 - sha256: 585940f09d87787f79f73ff5dff8eb2af8a67e5bec5eebf2f553cd26c840ba69 + md5: 2247aa245832ea47e8b971bef73d7094 + sha256: 81a7ffe7b7ca8718bc09476a258cd48754e1d4e1bd3b80a6fef41ffb71e3bfc8 category: main optional: false - name: platformdirs @@ -3048,8 +3103,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://repo.prefix.dev/conda-forge/noarch/platformdirs-4.3.7-pyh29332c3_0.conda hash: md5: e57da6fe54bb3a5556cf36d199ff07d8 sha256: ae7d3e58224d53d6b59e1f5ac5809803bb1972f0ac4fb10cd9b8c87d4122d3e0 @@ -3060,8 +3115,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://repo.prefix.dev/conda-forge/noarch/platformdirs-4.3.7-pyh29332c3_0.conda hash: md5: e57da6fe54bb3a5556cf36d199ff07d8 sha256: ae7d3e58224d53d6b59e1f5ac5809803bb1972f0ac4fb10cd9b8c87d4122d3e0 @@ -3073,7 +3128,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://repo.prefix.dev/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_1.conda hash: md5: e9dcbce5f45f9ee500e728ae58b605b6 sha256: 122433fc5318816b8c69283aaf267c73d87aa2d09ce39f64c9805c9a3b264819 @@ -3085,7 +3140,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://repo.prefix.dev/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_1.conda hash: md5: e9dcbce5f45f9ee500e728ae58b605b6 sha256: 122433fc5318816b8c69283aaf267c73d87aa2d09ce39f64c9805c9a3b264819 @@ -3100,7 +3155,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://repo.prefix.dev/conda-forge/linux-64/psutil-7.0.0-py311h9ecbd09_0.conda hash: md5: 1a390a54b2752169f5ba4ada5a8108e4 sha256: 50d0944b59a9c6dfa6b99cc2632bf8bc9bef9c7c93710390ded6eac953f0182d @@ -3116,7 +3171,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://repo.prefix.dev/conda-forge/win-64/psutil-7.0.0-py311he736701_0.conda hash: md5: fc2a628caa77146532ee4747894bccd5 sha256: e3844e26821651f744ea57a1538a8f970872f15a1c6eb38fc208f0efd1c3706c @@ -3129,7 +3184,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://repo.prefix.dev/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda hash: md5: b3c17d95b5a10c6e64a21fa17573e70e sha256: 9c88f8c64590e9567c6c80823f0328e58d3b1efb0e1c539c0315ceca764e0973 @@ -3143,7 +3198,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://repo.prefix.dev/conda-forge/win-64/pthread-stubs-0.4-h0e40799_1002.conda hash: md5: 3c8f2573569bb816483e5cf57efbbe29 sha256: 7e446bafb4d692792310ed022fe284e848c6a868c861655a92435af7368bae7b @@ -3154,8 +3209,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://repo.prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda hash: md5: 12c566707c80111f9799308d9e265aef sha256: 79db7928d13fab2d892592223d7570f5061c192f27b9febd1a418427b719acc6 @@ -3166,8 +3221,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://repo.prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda hash: md5: 12c566707c80111f9799308d9e265aef sha256: 79db7928d13fab2d892592223d7570f5061c192f27b9febd1a418427b719acc6 @@ -3184,7 +3239,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://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.3-pyh3cfb1c2_0.conda hash: md5: 3c6f7f8ae9b9c177ad91ccc187912756 sha256: 89183785b09ebe9f9e65710057d7c41e9d21d4a9ad05e068850e18669655d5a8 @@ -3201,7 +3256,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://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.3-pyh3cfb1c2_0.conda hash: md5: 3c6f7f8ae9b9c177ad91ccc187912756 sha256: 89183785b09ebe9f9e65710057d7c41e9d21d4a9ad05e068850e18669655d5a8 @@ -3217,7 +3272,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://repo.prefix.dev/conda-forge/linux-64/pydantic-core-2.33.1-py311h687327b_0.conda hash: md5: 778b623dbbec0be25624b5ebd405a0a8 sha256: f293f7f2d0fe11c8334b3671944b310c13c1552dbe25ea93043d09bede814cd5 @@ -3234,7 +3289,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://repo.prefix.dev/conda-forge/win-64/pydantic-core-2.33.1-py311ha250665_0.conda hash: md5: 549cc2f2754ba510f7616af5c5b8aff6 sha256: bdbfb2e0a7e9f37071d1619dd9af33668bb47ba8f0117846742a5a7de3184bff @@ -3252,7 +3307,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://repo.prefix.dev/conda-forge/linux-64/pydiso-0.1.2-py311h19ea254_0.conda hash: md5: c167267bfdb40fd2b924e06e9c7241a5 sha256: e16eed2ff0eb8f45868ca47d61322052530475a292fcda8101d5c1241c428b27 @@ -3271,7 +3326,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://repo.prefix.dev/conda-forge/win-64/pydiso-0.1.2-py311h66870c1_0.conda hash: md5: 84cec6512899d9afc17baaad404ad74c sha256: 72cbc2c46902724c61f7b745e4c3538f8814053fafb274aecae7c6b70ae92862 @@ -3283,7 +3338,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://repo.prefix.dev/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda hash: md5: 232fb4577b6687b2d503ef8e254270c9 sha256: 28a3e3161390a9d23bc02b4419448f8d27679d9e2c250e29849e37749c8de86b @@ -3295,7 +3350,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://repo.prefix.dev/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda hash: md5: 232fb4577b6687b2d503ef8e254270c9 sha256: 28a3e3161390a9d23bc02b4419448f8d27679d9e2c250e29849e37749c8de86b @@ -3312,11 +3367,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://repo.prefix.dev/conda-forge/noarch/pylint-3.3.6-pyh29332c3_0.conda hash: md5: 8242cc62822cc8a17f53d24d4efa75f4 sha256: 3e3e35b2cbb4b1ca3063fc2d6f44a85ac189e0935f00ed8fbe8e4713c0d00b99 @@ -3333,11 +3388,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://repo.prefix.dev/conda-forge/noarch/pylint-3.3.6-pyh29332c3_0.conda hash: md5: 8242cc62822cc8a17f53d24d4efa75f4 sha256: 3e3e35b2cbb4b1ca3063fc2d6f44a85ac189e0935f00ed8fbe8e4713c0d00b99 @@ -3353,7 +3408,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://repo.prefix.dev/conda-forge/noarch/pymatsolver-0.3.1-pyh48887ae_201.conda hash: md5: b6805e522702eabf2ebbd236490d5eed sha256: d49ad9b58b9eeae204a3677cafc389c00c7f0f830ef76f481ab9aaf3e0260bad @@ -3369,7 +3424,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://repo.prefix.dev/conda-forge/noarch/pymatsolver-0.3.1-pyh48887ae_201.conda hash: md5: b6805e522702eabf2ebbd236490d5eed sha256: d49ad9b58b9eeae204a3677cafc389c00c7f0f830ef76f481ab9aaf3e0260bad @@ -3381,7 +3436,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://repo.prefix.dev/conda-forge/noarch/pyparsing-3.2.3-pyhd8ed1ab_1.conda hash: md5: 513d3c262ee49b54a8fec85c5bc99764 sha256: b92afb79b52fcf395fd220b29e0dd3297610f2059afac45298d44e00fcbf23b6 @@ -3393,7 +3448,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://repo.prefix.dev/conda-forge/noarch/pyparsing-3.2.3-pyhd8ed1ab_1.conda hash: md5: 513d3c262ee49b54a8fec85c5bc99764 sha256: b92afb79b52fcf395fd220b29e0dd3297610f2059afac45298d44e00fcbf23b6 @@ -3406,7 +3461,7 @@ package: dependencies: __unix: '' python: '>=3.9' - url: https://packages.prefix.dev/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 @@ -3420,7 +3475,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://repo.prefix.dev/conda-forge/noarch/pysocks-1.7.1-pyh09c184e_7.conda hash: md5: e2fd202833c4a981ce8a65974fe4abd1 sha256: d016e04b0e12063fbee4a2d5fbb9b39a8d191b5a0042f0b8459188aedeabb0ca @@ -3438,7 +3493,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://repo.prefix.dev/conda-forge/noarch/pytest-8.3.5-pyhd8ed1ab_0.conda hash: md5: c3c9316209dec74a705a36797970c6be sha256: 963524de7340c56615583ba7b97a6beb20d5c56a59defb59724dc2a3105169c9 @@ -3456,7 +3511,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://repo.prefix.dev/conda-forge/noarch/pytest-8.3.5-pyhd8ed1ab_0.conda hash: md5: c3c9316209dec74a705a36797970c6be sha256: 963524de7340c56615583ba7b97a6beb20d5c56a59defb59724dc2a3105169c9 @@ -3471,7 +3526,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://repo.prefix.dev/conda-forge/noarch/pytest-cov-6.1.1-pyhd8ed1ab_0.conda hash: md5: 1e35d8f975bc0e984a19819aa91c440a sha256: 9961a1524f63d10bc29efdc52013ec06b0e95fb2619a250e250ff3618261d5cd @@ -3486,7 +3541,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://repo.prefix.dev/conda-forge/noarch/pytest-cov-6.1.1-pyhd8ed1ab_0.conda hash: md5: 1e35d8f975bc0e984a19819aa91c440a sha256: 9961a1524f63d10bc29efdc52013ec06b0e95fb2619a250e250ff3618261d5cd @@ -3515,7 +3570,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://repo.prefix.dev/conda-forge/linux-64/python-3.11.12-h9e4cc4f_0_cpython.conda hash: md5: b61d4fbf583b8393d9d00ec106ad3658 sha256: 028a03968eb101a681fa4966b2c52e93c8db1e934861f8d108224f51ba2c1bc9 @@ -3539,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/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 @@ -3552,7 +3607,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://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda hash: md5: 5ba79d7c71f03c678c8ead841f347d6e sha256: a50052536f1ef8516ed11a844f9413661829aa083304dc624c5925298d078d79 @@ -3565,7 +3620,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://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda hash: md5: 5ba79d7c71f03c678c8ead841f347d6e sha256: a50052536f1ef8516ed11a844f9413661829aa083304dc624c5925298d078d79 @@ -3583,7 +3638,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://repo.prefix.dev/conda-forge/linux-64/python-mumps-0.0.3-py311h4b558b0_0.conda hash: md5: 5c50e4db02aa7d89b5200773605175e1 sha256: a46217f37ead2d17a59626d8f23517ba0f3026b9dd281ec251e880b3afe4cb13 @@ -3602,7 +3657,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://repo.prefix.dev/conda-forge/win-64/python-mumps-0.0.3-py311h5bfbc98_0.conda hash: md5: 5e8a15c6501520752ca264fa7a1a762d sha256: 330afd54afd2087de0aa320be05dbbee64893359fe395067209e8c8fd9650b05 @@ -3613,10 +3668,10 @@ 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://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 @@ -3624,10 +3679,10 @@ 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://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 @@ -3636,7 +3691,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://repo.prefix.dev/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda hash: md5: bc8e3267d44011051f2eb14d22fb0960 sha256: 8d2a8bf110cc1fc3df6904091dead158ba3e614d8402a83e51ed3a8aa93cdeb0 @@ -3648,7 +3703,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://repo.prefix.dev/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda hash: md5: bc8e3267d44011051f2eb14d22fb0960 sha256: 8d2a8bf110cc1fc3df6904091dead158ba3e614d8402a83e51ed3a8aa93cdeb0 @@ -3664,7 +3719,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://repo.prefix.dev/conda-forge/linux-64/pyyaml-6.0.2-py311h2dc5d0c_2.conda hash: md5: 014417753f948da1f70d132b2de573be sha256: d107ad62ed5c62764fba9400f2c423d89adf917d687c7f2e56c3bfed605fb5b3 @@ -3681,7 +3736,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://repo.prefix.dev/conda-forge/win-64/pyyaml-6.0.2-py311h5082efb_2.conda hash: md5: e474ba674d780f0fa3b979ae9e81ba91 sha256: 6095e1d58c666f6a06c55338df09485eac34c76e43d92121d5786794e195aa4d @@ -3694,7 +3749,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://repo.prefix.dev/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda hash: md5: 283b96675859b20a825f8fa30f311446 sha256: 2d6d0c026902561ed77cd646b5021aef2d4db22e57a5b0178dfc669231e06d2c @@ -3709,7 +3764,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://repo.prefix.dev/conda-forge/noarch/readthedocs-sphinx-ext-2.2.5-pyhd8ed1ab_1.conda hash: md5: 42840a95562a02bef45e7b7fb24dcba4 sha256: e391356581919077b1639ebd13f4cbb0773acfd5710cfe4188921e8a0387dc6b @@ -3724,7 +3779,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://repo.prefix.dev/conda-forge/noarch/readthedocs-sphinx-ext-2.2.5-pyhd8ed1ab_1.conda hash: md5: 42840a95562a02bef45e7b7fb24dcba4 sha256: e391356581919077b1639ebd13f4cbb0773acfd5710cfe4188921e8a0387dc6b @@ -3740,7 +3795,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://repo.prefix.dev/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda hash: md5: a9b9368f3701a417eac9edbcae7cb737 sha256: d701ca1136197aa121bbbe0e8c18db6b5c94acbd041c2b43c70e5ae104e1d8ad @@ -3756,7 +3811,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://repo.prefix.dev/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda hash: md5: a9b9368f3701a417eac9edbcae7cb737 sha256: d701ca1136197aa121bbbe0e8c18db6b5c94acbd041c2b43c70e5ae104e1d8ad @@ -3770,7 +3825,7 @@ package: libspatialindex: '>=2.0.0,<2.0.1.0a0' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://packages.prefix.dev/conda-forge/linux-64/rtree-1.2.0-py311ha1603b9_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/rtree-1.2.0-py311ha1603b9_1.conda hash: md5: 0737315cc9761f4060f9d52d12cea92e sha256: 9b9d5be1924ced85110f635331379354ba57d44c5416c5709070ddb111048ef6 @@ -3784,7 +3839,7 @@ package: libspatialindex: '>=2.0.0,<2.0.1.0a0' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://packages.prefix.dev/conda-forge/win-64/rtree-1.2.0-py311h44d53c4_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/rtree-1.2.0-py311h44d53c4_1.conda hash: md5: a182e3a376af719a275136bfdbc3a70e sha256: 78fecaad4f4b25ba60dc55af7fb5326d1b3512b8ed240eb45aabc1e86e50e77e @@ -3804,7 +3859,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://repo.prefix.dev/conda-forge/linux-64/scikit-learn-1.4.2-py311he08f58d_1.conda hash: md5: fd4a80e35c05513590b33c83fc81dcc7 sha256: b818f7df6ae949012a38b41b6577ac2319569971b1a063c0386447ec2c6c09ed @@ -3824,7 +3879,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://repo.prefix.dev/conda-forge/win-64/scikit-learn-1.4.2-py311hdcb8d17_1.conda hash: md5: 4179839852432a4e95b5ff86dd5faa9c sha256: e38cac2faa50b04ae06da6a7c9690ad8f893f2b3318b052ac15710221f32e231 @@ -3843,10 +3898,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://repo.prefix.dev/conda-forge/linux-64/scipy-1.14.1-py311he9a78e4_2.conda hash: md5: c4aee8cadc4c9fc9a91aca0803473690 sha256: b28d91a55205b886308da82428cd522e9dce0ef912445a2e9d89318379c15759 @@ -3860,40 +3915,40 @@ 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://repo.prefix.dev/conda-forge/win-64/scipy-1.14.1-py311hf16d85f_2.conda hash: md5: 8d3393f64df60e48be00d06ccb63bb18 sha256: ef98270586c1dfb551f9ff868312554f248f155406f924b91df07cd46c14d302 category: main optional: false - name: setuptools - version: 78.1.0 + version: 79.0.1 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/setuptools-78.1.0-pyhff2d567_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/setuptools-79.0.1-pyhff2d567_0.conda hash: - md5: a42da9837e46c53494df0044c3eb1f53 - sha256: d4c74d2140f2fbc72fe5320cbd65f3fd1d1f7832ab4d7825c37c38ab82440ae2 + md5: fa6669cc21abd4b7b6c5393b7bc71914 + sha256: 5ebc4bb71fbdc8048b08848519150c8d44b8eb18445711d3258c9d402ba87a2c category: main optional: false - name: setuptools - version: 78.1.0 + version: 79.0.1 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/setuptools-78.1.0-pyhff2d567_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/setuptools-79.0.1-pyhff2d567_0.conda hash: - md5: a42da9837e46c53494df0044c3eb1f53 - sha256: d4c74d2140f2fbc72fe5320cbd65f3fd1d1f7832ab4d7825c37c38ab82440ae2 + md5: fa6669cc21abd4b7b6c5393b7bc71914 + sha256: 5ebc4bb71fbdc8048b08848519150c8d44b8eb18445711d3258c9d402ba87a2c category: main optional: false - name: six @@ -3902,7 +3957,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://repo.prefix.dev/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda hash: md5: a451d576819089b0d672f18768be0f65 sha256: 41db0180680cc67c3fa76544ffd48d6a5679d96f4b71d7498a759e94edc9a2db @@ -3914,7 +3969,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://repo.prefix.dev/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda hash: md5: a451d576819089b0d672f18768be0f65 sha256: 41db0180680cc67c3fa76544ffd48d6a5679d96f4b71d7498a759e94edc9a2db @@ -3926,7 +3981,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://repo.prefix.dev/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 4d22a9315e78c6827f806065957d566e sha256: a0fd916633252d99efb6223b1050202841fa8d2d53dacca564b0ed77249d3228 @@ -3938,7 +3993,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://repo.prefix.dev/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 4d22a9315e78c6827f806065957d566e sha256: a0fd916633252d99efb6223b1050202841fa8d2d53dacca564b0ed77249d3228 @@ -3950,7 +4005,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://repo.prefix.dev/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_1.conda hash: md5: 0401a17ae845fa72c7210e206ec5647d sha256: d1e3e06b5cf26093047e63c8cc77b70d970411c5cbc0cb1fad461a8a8df599f7 @@ -3962,7 +4017,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://repo.prefix.dev/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_1.conda hash: md5: 0401a17ae845fa72c7210e206ec5647d sha256: d1e3e06b5cf26093047e63c8cc77b70d970411c5cbc0cb1fad461a8a8df599f7 @@ -3991,7 +4046,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://repo.prefix.dev/conda-forge/noarch/sphinx-5.3.0-pyhd8ed1ab_0.tar.bz2 hash: md5: f9e1fcfe235d655900bfeb6aee426472 sha256: f11fd5fb4ae2c65f41ae86e7408e3ab44844898d928264aa9e89929fffc685c8 @@ -4020,7 +4075,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://repo.prefix.dev/conda-forge/noarch/sphinx-5.3.0-pyhd8ed1ab_0.tar.bz2 hash: md5: f9e1fcfe235d655900bfeb6aee426472 sha256: f11fd5fb4ae2c65f41ae86e7408e3ab44844898d928264aa9e89929fffc685c8 @@ -4033,7 +4088,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 16e3f039c0aa6446513e94ab18a8784b sha256: d7433a344a9ad32a680b881c81b0034bc61618d12c39dd6e3309abeffa9577ba @@ -4046,7 +4101,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 16e3f039c0aa6446513e94ab18a8784b sha256: d7433a344a9ad32a680b881c81b0034bc61618d12c39dd6e3309abeffa9577ba @@ -4059,7 +4114,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 910f28a05c178feba832f842155cbfff sha256: 55d5076005d20b84b20bee7844e686b7e60eb9f683af04492e598a622b12d53d @@ -4072,7 +4127,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 910f28a05c178feba832f842155cbfff sha256: 55d5076005d20b84b20bee7844e686b7e60eb9f683af04492e598a622b12d53d @@ -4085,7 +4140,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_1.conda hash: md5: e9fb3fe8a5b758b4aff187d434f94f03 sha256: c1492c0262ccf16694bdcd3bb62aa4627878ea8782d5cd3876614ffeb62b3996 @@ -4098,7 +4153,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_1.conda hash: md5: e9fb3fe8a5b758b4aff187d434f94f03 sha256: c1492c0262ccf16694bdcd3bb62aa4627878ea8782d5cd3876614ffeb62b3996 @@ -4110,7 +4165,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_1.conda hash: md5: fa839b5ff59e192f411ccc7dae6588bb sha256: 578bef5ec630e5b2b8810d898bbbf79b9ae66d49b7938bcc3efc364e679f2a62 @@ -4122,7 +4177,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_1.conda hash: md5: fa839b5ff59e192f411ccc7dae6588bb sha256: 578bef5ec630e5b2b8810d898bbbf79b9ae66d49b7938bcc3efc364e679f2a62 @@ -4135,7 +4190,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 00534ebcc0375929b45c3039b5ba7636 sha256: c664fefae4acdb5fae973bdde25836faf451f41d04342b64a358f9a7753c92ca @@ -4148,7 +4203,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 00534ebcc0375929b45c3039b5ba7636 sha256: c664fefae4acdb5fae973bdde25836faf451f41d04342b64a358f9a7753c92ca @@ -4161,7 +4216,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda hash: md5: 3bc61f7161d28137797e038263c04c54 sha256: 64d89ecc0264347486971a94487cb8d7c65bfc0176750cf7502b8a272f4ab557 @@ -4174,7 +4229,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda hash: md5: 3bc61f7161d28137797e038263c04c54 sha256: 64d89ecc0264347486971a94487cb8d7c65bfc0176750cf7502b8a272f4ab557 @@ -4189,7 +4244,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://repo.prefix.dev/conda-forge/linux-64/tbb-2021.13.0-hceb3a55_1.conda hash: md5: ba7726b8df7b9d34ea80e82b097a4893 sha256: 65463732129899770d54b1fbf30e1bb82fdebda9d7553caf08d23db4590cd691 @@ -4204,7 +4259,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://repo.prefix.dev/conda-forge/win-64/tbb-2021.13.0-h62715c5_1.conda hash: md5: 9190dd0a23d925f7602f9628b3aed511 sha256: 03cc5442046485b03dd1120d0f49d35a7e522930a2ab82f275e938e17b07b302 @@ -4216,7 +4271,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://repo.prefix.dev/conda-forge/noarch/tblib-3.1.0-pyhd8ed1ab_0.conda hash: md5: a15c62b8a306b8978f094f76da2f903f sha256: a83c83f5e622a2f34fb1d179c55c3ff912429cd0a54f9f3190ae44a0fdba2ad2 @@ -4228,7 +4283,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://repo.prefix.dev/conda-forge/noarch/tblib-3.1.0-pyhd8ed1ab_0.conda hash: md5: a15c62b8a306b8978f094f76da2f903f sha256: a83c83f5e622a2f34fb1d179c55c3ff912429cd0a54f9f3190ae44a0fdba2ad2 @@ -4240,7 +4295,7 @@ package: platform: linux-64 dependencies: python: '>=3.8' - url: https://packages.prefix.dev/conda-forge/noarch/threadpoolctl-3.3.0-pyhc1e730c_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/threadpoolctl-3.3.0-pyhc1e730c_0.conda hash: md5: 698d2d2b621640bddb9191f132967c9f sha256: 5ba8bd3f2d49b3b860eb4481ca9505c57d4427212eb12cadd2b351309d5c28e6 @@ -4252,7 +4307,7 @@ package: platform: win-64 dependencies: python: '>=3.8' - url: https://packages.prefix.dev/conda-forge/noarch/threadpoolctl-3.3.0-pyhc1e730c_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/threadpoolctl-3.3.0-pyhc1e730c_0.conda hash: md5: 698d2d2b621640bddb9191f132967c9f sha256: 5ba8bd3f2d49b3b860eb4481ca9505c57d4427212eb12cadd2b351309d5c28e6 @@ -4265,7 +4320,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://repo.prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda hash: md5: d453b98d9c83e71da0741bb0ff4d76bc sha256: e0569c9caa68bf476bead1bed3d79650bb080b532c64a4af7d8ca286c08dea4e @@ -4279,7 +4334,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://repo.prefix.dev/conda-forge/win-64/tk-8.6.13-h5226925_1.conda hash: md5: fc048363eb8f03cd1737600a5d08aafe sha256: 2c4e914f521ccb2718946645108c9bd3fc3216ba69aea20c2c3cedbd8db32bb1 @@ -4291,7 +4346,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://repo.prefix.dev/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_1.conda hash: md5: b0dd904de08b7db706167240bf37b164 sha256: 34f3a83384ac3ac30aefd1309e69498d8a4aa0bf2d1f21c645f79b180e378938 @@ -4303,7 +4358,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://repo.prefix.dev/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_1.conda hash: md5: b0dd904de08b7db706167240bf37b164 sha256: 34f3a83384ac3ac30aefd1309e69498d8a4aa0bf2d1f21c645f79b180e378938 @@ -4315,7 +4370,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://repo.prefix.dev/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda hash: md5: ac944244f1fed2eb49bae07193ae8215 sha256: 18636339a79656962723077df9a56c0ac7b8a864329eb8f847ee3d38495b863e @@ -4327,7 +4382,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://repo.prefix.dev/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda hash: md5: ac944244f1fed2eb49bae07193ae8215 sha256: 18636339a79656962723077df9a56c0ac7b8a864329eb8f847ee3d38495b863e @@ -4339,7 +4394,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://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.2-pyha770c72_1.conda hash: md5: 1d9ab4fc875c52db83f9c9b40af4e2c8 sha256: 986fae65f5568e95dbf858d08d77a0f9cca031345a98550f1d4b51d36d8811e2 @@ -4351,7 +4406,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://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.2-pyha770c72_1.conda hash: md5: 1d9ab4fc875c52db83f9c9b40af4e2c8 sha256: 986fae65f5568e95dbf858d08d77a0f9cca031345a98550f1d4b51d36d8811e2 @@ -4363,7 +4418,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://repo.prefix.dev/conda-forge/noarch/toolz-1.0.0-pyhd8ed1ab_1.conda hash: md5: 40d0ed782a8aaa16ef248e68c06c168d sha256: eda38f423c33c2eaeca49ed946a8d3bf466cc3364970e083a65eb2fd85258d87 @@ -4375,7 +4430,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://repo.prefix.dev/conda-forge/noarch/toolz-1.0.0-pyhd8ed1ab_1.conda hash: md5: 40d0ed782a8aaa16ef248e68c06c168d sha256: eda38f423c33c2eaeca49ed946a8d3bf466cc3364970e083a65eb2fd85258d87 @@ -4390,7 +4445,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://repo.prefix.dev/conda-forge/linux-64/tornado-6.4.2-py311h9ecbd09_0.conda hash: md5: df3aee9c3e44489257a840b8354e77b9 sha256: afa3489113154b5cb0724b0bf120b62df91f426dabfe5d02f2ba09e90d346b28 @@ -4406,7 +4461,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://repo.prefix.dev/conda-forge/win-64/tornado-6.4.2-py311he736701_0.conda hash: md5: 7e33077ce1bc0bf45c45a92e37432f16 sha256: 7e313f1724e5eb7d13f7a1ebd6026a378f3f58a638ba7cdc3bd452c01323bb29 @@ -4419,7 +4474,7 @@ package: dependencies: colorama: '' python: '>=3.9' - url: https://packages.prefix.dev/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 @@ -4432,7 +4487,7 @@ package: dependencies: colorama: '' python: '>=3.9' - url: https://packages.prefix.dev/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 @@ -4445,7 +4500,7 @@ package: dependencies: numpy: '' python: '>=2.7' - url: https://packages.prefix.dev/conda-forge/noarch/trimesh-4.1.8-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/trimesh-4.1.8-pyhd8ed1ab_0.conda hash: md5: 78302527eb6c9d18b07a91e6a72ef957 sha256: 021110c37eca2f0fca85ba6ac4576c509d23079758f63942e2f9a6954282f2ce @@ -4458,7 +4513,7 @@ package: dependencies: numpy: '' python: '>=2.7' - url: https://packages.prefix.dev/conda-forge/noarch/trimesh-4.1.8-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/trimesh-4.1.8-pyhd8ed1ab_0.conda hash: md5: 78302527eb6c9d18b07a91e6a72ef957 sha256: 021110c37eca2f0fca85ba6ac4576c509d23079758f63942e2f9a6954282f2ce @@ -4470,7 +4525,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://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.13.2-h0e9735f_0.conda hash: md5: 568ed1300869dca0ba09fb750cda5dbb sha256: 4865fce0897d3cb0ffc8998219157a8325f6011c136e6fd740a9a6b169419296 @@ -4482,7 +4537,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://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.13.2-h0e9735f_0.conda hash: md5: 568ed1300869dca0ba09fb750cda5dbb sha256: 4865fce0897d3cb0ffc8998219157a8325f6011c136e6fd740a9a6b169419296 @@ -4495,7 +4550,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://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.0-pyhd8ed1ab_0.conda hash: md5: c5c76894b6b7bacc888ba25753bc8677 sha256: 172f971d70e1dbb978f6061d3f72be463d0f629155338603450d8ffe87cbf89d @@ -4508,7 +4563,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://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.0-pyhd8ed1ab_0.conda hash: md5: c5c76894b6b7bacc888ba25753bc8677 sha256: 172f971d70e1dbb978f6061d3f72be463d0f629155338603450d8ffe87cbf89d @@ -4519,8 +4574,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://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.13.2-pyh29332c3_0.conda hash: md5: 83fc6ae00127671e301c9f44254c31b8 sha256: a8aaf351e6461de0d5d47e4911257e25eec2fa409d71f3b643bb2f748bde1c08 @@ -4531,8 +4586,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://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.13.2-pyh29332c3_0.conda hash: md5: 83fc6ae00127671e301c9f44254c31b8 sha256: a8aaf351e6461de0d5d47e4911257e25eec2fa409d71f3b643bb2f748bde1c08 @@ -4543,7 +4598,7 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://packages.prefix.dev/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 @@ -4554,7 +4609,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://packages.prefix.dev/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 @@ -4565,7 +4620,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://repo.prefix.dev/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_1.conda hash: md5: 6797b005cd0f439c4c5c9ac565783700 sha256: db8dead3dd30fb1a032737554ce91e2819b43496a0db09927edf01c32b577450 @@ -4580,7 +4635,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://repo.prefix.dev/conda-forge/linux-64/unicodedata2-16.0.0-py311h9ecbd09_0.conda hash: md5: 51a12678b609f5794985fda8372b1a49 sha256: e786fb0925515fffc83e393d2a0e2814eaf9be8a434f1982b399841a2c07980b @@ -4596,7 +4651,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://repo.prefix.dev/conda-forge/win-64/unicodedata2-16.0.0-py311he736701_0.conda hash: md5: 5ec4da89151e9d55f9ecad019f2d1e58 sha256: 3f626553bfb49ac756cf40e0c10ecb3a915a86f64e036924ab956b37ad1fa9f4 @@ -4612,7 +4667,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://repo.prefix.dev/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda hash: md5: c1e349028e0052c4eea844e94f773065 sha256: a25403b76f7f03ca1a906e1ef0f88521edded991b9897e7fed56a3e334b3db8c @@ -4628,7 +4683,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://repo.prefix.dev/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda hash: md5: c1e349028e0052c4eea844e94f773065 sha256: a25403b76f7f03ca1a906e1ef0f88521edded991b9897e7fed56a3e334b3db8c @@ -4640,7 +4695,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://repo.prefix.dev/conda-forge/win-64/vc-14.3-h2b53caa_26.conda hash: md5: d3f0381e38093bde620a8d85f266ae55 sha256: 7a685b5c37e9713fa314a0d26b8b1d7a2e6de5ab758698199b5d5b6dba2e3ce1 @@ -4652,7 +4707,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://repo.prefix.dev/conda-forge/win-64/vc14_runtime-14.42.34438-hfd919c2_26.conda hash: md5: 91651a36d31aa20c7ba36299fb7068f4 sha256: 30dcb71bb166e351aadbdc18f1718757c32cdaa0e1e5d9368469ee44f6bf4709 @@ -4664,7 +4719,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://repo.prefix.dev/conda-forge/win-64/vs2015_runtime-14.42.34438-h7142326_26.conda hash: md5: 3357e4383dbce31eed332008ede242ab sha256: 432f2937206f1ad4a77e39f84fabc1ce7d2472b669836fb72bd2bfd19a2defc9 @@ -4676,7 +4731,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://repo.prefix.dev/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda hash: md5: 75cb7132eb58d97896e173ef12ac9986 sha256: 1b34021e815ff89a4d902d879c3bd2040bc1bd6169b32e9427497fa05c55f1ce @@ -4688,7 +4743,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://repo.prefix.dev/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda hash: md5: 75cb7132eb58d97896e173ef12ac9986 sha256: 1b34021e815ff89a4d902d879c3bd2040bc1bd6169b32e9427497fa05c55f1ce @@ -4701,7 +4756,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://repo.prefix.dev/conda-forge/noarch/win_inet_pton-1.1.0-pyh7428d3b_8.conda hash: md5: 46e441ba871f524e2b067929da3051c2 sha256: 93807369ab91f230cf9e6e2a237eaa812492fe00face5b38068735858fba954f @@ -4716,7 +4771,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://repo.prefix.dev/conda-forge/linux-64/wrapt-1.17.2-py311h9ecbd09_0.conda hash: md5: c4bb961f5a2020837fe3f7f30fadc2e1 sha256: e383de6512e65b5a227e7b0e1a34ffc441484044096a23ca4d3b6eb53a64d261 @@ -4732,7 +4787,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://repo.prefix.dev/conda-forge/win-64/wrapt-1.17.2-py311he736701_0.conda hash: md5: 370ad80d8d1a4012e6393873ddbd7d9b sha256: 0cd8f63008d6e24576884461087b0145f388eadc32737b7e6ed57c8e67a2ae85 @@ -4745,7 +4800,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://repo.prefix.dev/conda-forge/linux-64/xorg-libxau-1.0.12-hb9d3cd8_0.conda hash: md5: f6ebe2cb3f82ba6c057dde5d9debe4f7 sha256: ed10c9283974d311855ae08a16dfd7e56241fac632aec3b92e3cfe73cff31038 @@ -4759,7 +4814,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://repo.prefix.dev/conda-forge/win-64/xorg-libxau-1.0.12-h0e40799_0.conda hash: md5: 2ffbfae4548098297c033228256eb96e sha256: 047836241b2712aab1e29474a6f728647bff3ab57de2806b0bb0a6cf9a2d2634 @@ -4772,7 +4827,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://repo.prefix.dev/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb9d3cd8_0.conda hash: md5: 8035c64cb77ed555e3f150b7b3972480 sha256: 6b250f3e59db07c2514057944a3ea2044d6a8cdde8a47b6497c254520fade1ee @@ -4786,7 +4841,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://repo.prefix.dev/conda-forge/win-64/xorg-libxdmcp-1.1.5-h0e40799_0.conda hash: md5: 8393c0f7e7870b4eb45553326f81f0ff sha256: 9075f98dcaa8e9957e4a3d9d30db05c7578a536950a31c200854c5c34e1edb2c @@ -4798,7 +4853,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://repo.prefix.dev/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2 hash: md5: 4cb3ad778ec2d5a7acbdf254eb1c42ae sha256: a4e34c710eeb26945bdbdaba82d3d74f60a78f54a874ec10d373811a5d217535 @@ -4811,7 +4866,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://repo.prefix.dev/conda-forge/win-64/yaml-0.2.5-h8ffe710_2.tar.bz2 hash: md5: adbfb9f45d1004a26763652246a33764 sha256: 4e2246383003acbad9682c7c63178e2e715ad0eb84f03a8df1fbfba455dfedc5 @@ -4827,7 +4882,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://repo.prefix.dev/conda-forge/noarch/zarr-2.14.2-pyhd8ed1ab_0.conda hash: md5: 0c5776fe65a12a421d7ddf90411a6c3f sha256: 0f029f7efea00b8258782b5e68989fc140c227e6d9edd231d46fdd954b39d23f @@ -4843,7 +4898,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://repo.prefix.dev/conda-forge/noarch/zarr-2.14.2-pyhd8ed1ab_0.conda hash: md5: 0c5776fe65a12a421d7ddf90411a6c3f sha256: 0f029f7efea00b8258782b5e68989fc140c227e6d9edd231d46fdd954b39d23f @@ -4855,7 +4910,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://repo.prefix.dev/conda-forge/noarch/zict-3.0.0-pyhd8ed1ab_1.conda hash: md5: e52c2ef711ccf31bb7f70ca87d144b9e sha256: 5488542dceeb9f2874e726646548ecc5608060934d6f9ceaa7c6a48c61f9cc8d @@ -4867,7 +4922,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://repo.prefix.dev/conda-forge/noarch/zict-3.0.0-pyhd8ed1ab_1.conda hash: md5: e52c2ef711ccf31bb7f70ca87d144b9e sha256: 5488542dceeb9f2874e726646548ecc5608060934d6f9ceaa7c6a48c61f9cc8d @@ -4879,7 +4934,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://repo.prefix.dev/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda hash: md5: 0c3cc595284c5e8f0f9900a9b228a332 sha256: 567c04f124525c97a096b65769834b7acb047db24b15a56888a322bf3966c3e1 @@ -4891,7 +4946,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://repo.prefix.dev/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda hash: md5: 0c3cc595284c5e8f0f9900a9b228a332 sha256: 567c04f124525c97a096b65769834b7acb047db24b15a56888a322bf3966c3e1 @@ -4907,10 +4962,10 @@ 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://repo.prefix.dev/conda-forge/linux-64/zstandard-0.23.0-py311h9ecbd09_2.conda hash: - md5: 6d229edd907b6bb39961b74e3d52de9c - sha256: 1a824220227f356f35acec5ff6a4418b1ccd0238fd752ceebeb04a0bd37acf0f + md5: ca02de88df1cc3cfc8f24766ff50cb3c + sha256: 76d28240cc9fa0c3cb2cde750ecaf98716ce397afaf1ce90f8d18f5f43a122f1 category: main optional: false - name: zstandard @@ -4924,10 +4979,10 @@ 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://repo.prefix.dev/conda-forge/win-64/zstandard-0.23.0-py311he736701_2.conda hash: - md5: a4c147aaaf7e284762d7a6acc49e35e5 - sha256: 78afa8ce76763993a76da1b0120b690cba8926271cc9e0462f66155866817c84 + md5: 8355ec073f73581e29adf77c49096aed + sha256: aaae40057eac5b5996db4e6b3d8eb00d38455e67571e796135d29702a19736bd category: main optional: false - name: zstd @@ -4939,7 +4994,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://repo.prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb8e6e7a_2.conda hash: md5: 6432cb5d4ac0046c3ac0a8a0f95842f9 sha256: a4166e3d8ff4e35932510aaff7aa90772f84b4d07e9f6f83c614cba7ceefe0eb @@ -4954,7 +5009,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/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 @@ -4965,16 +5020,16 @@ package: manager: pip platform: linux-64 dependencies: - geoh5py: 0.11.0-alpha.3 + geoh5py: 0.11.0-alpha.5 numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@7a04b6e280309e649b2811d47168de3fd6ddf61b + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@06ee42f5f4767bb6e6da56b919f631722f6fdf36 hash: - sha256: 7a04b6e280309e649b2811d47168de3fd6ddf61b + sha256: 06ee42f5f4767bb6e6da56b919f631722f6fdf36 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@7a04b6e280309e649b2811d47168de3fd6ddf61b + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@06ee42f5f4767bb6e6da56b919f631722f6fdf36 category: main optional: false - name: geoapps-utils @@ -4982,20 +5037,20 @@ package: manager: pip platform: win-64 dependencies: - geoh5py: 0.11.0-alpha.3 + geoh5py: 0.11.0-alpha.5 numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@7a04b6e280309e649b2811d47168de3fd6ddf61b + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@06ee42f5f4767bb6e6da56b919f631722f6fdf36 hash: - sha256: 7a04b6e280309e649b2811d47168de3fd6ddf61b + sha256: 06ee42f5f4767bb6e6da56b919f631722f6fdf36 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@7a04b6e280309e649b2811d47168de3fd6ddf61b + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@06ee42f5f4767bb6e6da56b919f631722f6fdf36 category: main optional: false - name: geoh5py - version: 0.11.0-alpha.3 + version: 0.11.0-alpha.5 manager: pip platform: linux-64 dependencies: @@ -5003,16 +5058,16 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@adfe3987a9637b148c440234e67df9c16315a8d6 + url: git+https://github.com/MiraGeoscience/geoh5py.git@55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 hash: - sha256: adfe3987a9637b148c440234e67df9c16315a8d6 + sha256: 55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@adfe3987a9637b148c440234e67df9c16315a8d6 + url: git+https://github.com/MiraGeoscience/geoh5py.git@55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 category: main optional: false - name: geoh5py - version: 0.11.0-alpha.3 + version: 0.11.0-alpha.5 manager: pip platform: win-64 dependencies: @@ -5020,16 +5075,16 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@adfe3987a9637b148c440234e67df9c16315a8d6 + url: git+https://github.com/MiraGeoscience/geoh5py.git@55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 hash: - sha256: adfe3987a9637b148c440234e67df9c16315a8d6 + sha256: 55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@adfe3987a9637b148c440234e67df9c16315a8d6 + url: git+https://github.com/MiraGeoscience/geoh5py.git@55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 category: main optional: false - name: mira-simpeg - version: 0.23.0.1a1 + version: 0.23.0.1a3 manager: pip platform: linux-64 dependencies: @@ -5044,16 +5099,13 @@ package: pymatsolver: '>=0.3' scipy: '>=1.8' zarr: '*' - url: git+https://github.com/MiraGeoscience/simpeg.git@ad5b2c663795d29216d127679ee121fb13a4d78b + url: https://files.pythonhosted.org/packages/a9/f1/225e442cdcbbeb6786ec9eb456f86f95b30f515addea1df6f453af899120/mira_simpeg-0.23.0.1a3-py3-none-any.whl hash: - sha256: ad5b2c663795d29216d127679ee121fb13a4d78b - source: - type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@ad5b2c663795d29216d127679ee121fb13a4d78b + sha256: 14467e65d801e082bac8a4d972a30b162018df27d06310fb1f2c6960968f88d2 category: main optional: false - name: mira-simpeg - version: 0.23.0.1a1 + version: 0.23.0.1a3 manager: pip platform: win-64 dependencies: @@ -5068,50 +5120,47 @@ package: pymatsolver: '>=0.3' scipy: '>=1.8' zarr: '*' - url: git+https://github.com/MiraGeoscience/simpeg.git@ad5b2c663795d29216d127679ee121fb13a4d78b + url: https://files.pythonhosted.org/packages/a9/f1/225e442cdcbbeb6786ec9eb456f86f95b30f515addea1df6f453af899120/mira_simpeg-0.23.0.1a3-py3-none-any.whl hash: - sha256: ad5b2c663795d29216d127679ee121fb13a4d78b - source: - type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@ad5b2c663795d29216d127679ee121fb13a4d78b + sha256: 14467e65d801e082bac8a4d972a30b162018df27d06310fb1f2c6960968f88d2 category: main optional: false - name: octree-creation-app - version: 0.3.0-alpha.2 + version: 0.3.0-alpha.3 manager: pip platform: linux-64 dependencies: discretize: ==0.11.* - geoapps-utils: 0.5.0-alpha.4 - geoh5py: 0.11.0-alpha.3 + 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: git+https://github.com/MiraGeoscience/octree-creation-app.git@45472488f4c20cc2b6fcbf36149cec938e1b0ebf + url: git+https://github.com/MiraGeoscience/octree-creation-app.git@80641c96ff4b3a7e67f25278c323c5f9f931982f hash: - sha256: 45472488f4c20cc2b6fcbf36149cec938e1b0ebf + sha256: 80641c96ff4b3a7e67f25278c323c5f9f931982f source: type: url - url: git+https://github.com/MiraGeoscience/octree-creation-app.git@45472488f4c20cc2b6fcbf36149cec938e1b0ebf + url: git+https://github.com/MiraGeoscience/octree-creation-app.git@80641c96ff4b3a7e67f25278c323c5f9f931982f category: main optional: false - name: octree-creation-app - version: 0.3.0-alpha.2 + version: 0.3.0-alpha.3 manager: pip platform: win-64 dependencies: discretize: ==0.11.* - geoapps-utils: 0.5.0-alpha.4 - geoh5py: 0.11.0-alpha.3 + 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: git+https://github.com/MiraGeoscience/octree-creation-app.git@45472488f4c20cc2b6fcbf36149cec938e1b0ebf + url: git+https://github.com/MiraGeoscience/octree-creation-app.git@80641c96ff4b3a7e67f25278c323c5f9f931982f hash: - sha256: 45472488f4c20cc2b6fcbf36149cec938e1b0ebf + sha256: 80641c96ff4b3a7e67f25278c323c5f9f931982f source: type: url - url: git+https://github.com/MiraGeoscience/octree-creation-app.git@45472488f4c20cc2b6fcbf36149cec938e1b0ebf + url: git+https://github.com/MiraGeoscience/octree-creation-app.git@80641c96ff4b3a7e67f25278c323c5f9f931982f category: main optional: false - name: param-sweeps @@ -5119,14 +5168,14 @@ package: manager: pip platform: linux-64 dependencies: - geoh5py: 0.11.0-alpha.3 + geoh5py: 0.11.0-alpha.5 numpy: '>=1.26.0,<1.27.0' - url: git+https://github.com/MiraGeoscience/param-sweeps.git@4d0f8262ebb21c803c745fe85583d5cc5ce7d3e6 + url: git+https://github.com/MiraGeoscience/param-sweeps.git@8d7db643fb6e43490b05e2e1d53caa9cdae07a10 hash: - sha256: 4d0f8262ebb21c803c745fe85583d5cc5ce7d3e6 + sha256: 8d7db643fb6e43490b05e2e1d53caa9cdae07a10 source: type: url - url: git+https://github.com/MiraGeoscience/param-sweeps.git@4d0f8262ebb21c803c745fe85583d5cc5ce7d3e6 + url: git+https://github.com/MiraGeoscience/param-sweeps.git@8d7db643fb6e43490b05e2e1d53caa9cdae07a10 category: main optional: false - name: param-sweeps @@ -5134,69 +5183,69 @@ package: manager: pip platform: win-64 dependencies: - geoh5py: 0.11.0-alpha.3 + geoh5py: 0.11.0-alpha.5 numpy: '>=1.26.0,<1.27.0' - url: git+https://github.com/MiraGeoscience/param-sweeps.git@4d0f8262ebb21c803c745fe85583d5cc5ce7d3e6 + url: git+https://github.com/MiraGeoscience/param-sweeps.git@8d7db643fb6e43490b05e2e1d53caa9cdae07a10 hash: - sha256: 4d0f8262ebb21c803c745fe85583d5cc5ce7d3e6 + sha256: 8d7db643fb6e43490b05e2e1d53caa9cdae07a10 source: type: url - url: git+https://github.com/MiraGeoscience/param-sweeps.git@4d0f8262ebb21c803c745fe85583d5cc5ce7d3e6 + url: git+https://github.com/MiraGeoscience/param-sweeps.git@8d7db643fb6e43490b05e2e1d53caa9cdae07a10 category: main optional: false - name: simpeg-drivers - version: 0.3.0-alpha.2 + version: 0.3.0-alpha.6 manager: pip platform: linux-64 dependencies: - dask-core: ==2025.3.* + dask: '>=2025.3,<2025.4.dev' discretize: ==0.11.* - distributed: ==2025.3.* - geoapps-utils: 0.5.0-alpha.4 - geoh5py: 0.11.0-alpha.3 - mira-simpeg: 0.23.0.1a1 + distributed: '>=2025.3,<2025.4.dev' + geoapps-utils: '>=0.5.0a3,<0.6.dev' + geoh5py: '>=0.11.0a3,<0.12.dev' + mira-simpeg: '>=0.23.0.1a3,<0.23.1.dev' numpy: '>=1.26.0,<1.27.0' - octree-creation-app: 0.3.0-alpha.2 - param-sweeps: 0.2.1-alpha.2 + octree-creation-app: '>=0.3.0a1,<0.4.dev' + param-sweeps: '>=0.2.1a1,<0.3.dev' pydantic: '>=2.5.2,<3.0.0' pydiso: '>=0.1.0,<0.2.dev' python-mumps: '>=0.0.3,<0.0.4.dev' scikit-learn: '>=1.4.0,<1.5.0' scipy: '>=1.14.0,<1.15.0' tqdm: '>=4.66.1,<5.0.0' - url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@9e925c47f9572837d2b9bbc880362aed0c0e4ab8 + url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@cef51c8544871aaf9cff890c1ffc9c5cb4516359 hash: - sha256: 9e925c47f9572837d2b9bbc880362aed0c0e4ab8 + sha256: cef51c8544871aaf9cff890c1ffc9c5cb4516359 source: type: url - url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@9e925c47f9572837d2b9bbc880362aed0c0e4ab8 + url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@cef51c8544871aaf9cff890c1ffc9c5cb4516359 category: main optional: false - name: simpeg-drivers - version: 0.3.0-alpha.2 + version: 0.3.0-alpha.6 manager: pip platform: win-64 dependencies: - dask-core: ==2025.3.* + dask: '>=2025.3,<2025.4.dev' discretize: ==0.11.* - distributed: ==2025.3.* - geoapps-utils: 0.5.0-alpha.4 - geoh5py: 0.11.0-alpha.3 - mira-simpeg: 0.23.0.1a1 + distributed: '>=2025.3,<2025.4.dev' + geoapps-utils: '>=0.5.0a3,<0.6.dev' + geoh5py: '>=0.11.0a3,<0.12.dev' + mira-simpeg: '>=0.23.0.1a3,<0.23.1.dev' numpy: '>=1.26.0,<1.27.0' - octree-creation-app: 0.3.0-alpha.2 - param-sweeps: 0.2.1-alpha.2 + octree-creation-app: '>=0.3.0a1,<0.4.dev' + param-sweeps: '>=0.2.1a1,<0.3.dev' pydantic: '>=2.5.2,<3.0.0' pydiso: '>=0.1.0,<0.2.dev' python-mumps: '>=0.0.3,<0.0.4.dev' scikit-learn: '>=1.4.0,<1.5.0' scipy: '>=1.14.0,<1.15.0' tqdm: '>=4.66.1,<5.0.0' - url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@9e925c47f9572837d2b9bbc880362aed0c0e4ab8 + url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@cef51c8544871aaf9cff890c1ffc9c5cb4516359 hash: - sha256: 9e925c47f9572837d2b9bbc880362aed0c0e4ab8 + sha256: cef51c8544871aaf9cff890c1ffc9c5cb4516359 source: type: url - url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@9e925c47f9572837d2b9bbc880362aed0c0e4ab8 + url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@cef51c8544871aaf9cff890c1ffc9c5cb4516359 category: main optional: false diff --git a/py-3.12.conda-lock.yml b/py-3.12.conda-lock.yml index 967692b..4b27b0c 100644 --- a/py-3.12.conda-lock.yml +++ b/py-3.12.conda-lock.yml @@ -35,7 +35,7 @@ package: platform: linux-64 dependencies: llvm-openmp: '>=9.0.1' - url: https://packages.prefix.dev/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://packages.prefix.dev/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 @@ -60,7 +60,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://repo.prefix.dev/conda-forge/noarch/alabaster-0.7.16-pyhd8ed1ab_0.conda hash: md5: def531a3ac77b7fb8c21d17bb5d0badb sha256: fd39ad2fabec1569bbb0dfdae34ab6ce7de6ec09dcec8638f83dad0373594069 @@ -72,7 +72,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://repo.prefix.dev/conda-forge/noarch/alabaster-0.7.16-pyhd8ed1ab_0.conda hash: md5: def531a3ac77b7fb8c21d17bb5d0badb sha256: fd39ad2fabec1569bbb0dfdae34ab6ce7de6ec09dcec8638f83dad0373594069 @@ -85,7 +85,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://repo.prefix.dev/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda hash: md5: 2934f256a8acfe48f6ebb4fce6cde29c sha256: e0ea1ba78fbb64f17062601edda82097fcf815012cf52bb704150a2668110d48 @@ -98,7 +98,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://repo.prefix.dev/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda hash: md5: 2934f256a8acfe48f6ebb4fce6cde29c sha256: e0ea1ba78fbb64f17062601edda82097fcf815012cf52bb704150a2668110d48 @@ -110,7 +110,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://repo.prefix.dev/conda-forge/noarch/asciitree-0.3.3-py_2.tar.bz2 hash: md5: c0481c9de49f040272556e2cedf42816 sha256: b3e9369529fe7d721b66f18680ff4b561e20dbf6507e209e1f60eac277c97560 @@ -122,7 +122,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://repo.prefix.dev/conda-forge/noarch/asciitree-0.3.3-py_2.tar.bz2 hash: md5: c0481c9de49f040272556e2cedf42816 sha256: b3e9369529fe7d721b66f18680ff4b561e20dbf6507e209e1f60eac277c97560 @@ -135,7 +135,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://repo.prefix.dev/conda-forge/linux-64/astroid-3.3.9-py312h7900ff3_0.conda hash: md5: ebbc44c436cf6fda9681e871df39097f sha256: bcb0b7965d305d2f9159a2f29e4236e3c90d537f45c5facd204c202490974ce2 @@ -148,7 +148,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://repo.prefix.dev/conda-forge/win-64/astroid-3.3.9-py312h2e8e312_0.conda hash: md5: a31a121fab1af9b1a6550c7063d75847 sha256: d38222880edd3f171877fa236a80d9eb9c741cdb0c499c12276ca621ec653137 @@ -161,7 +161,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://repo.prefix.dev/conda-forge/noarch/babel-2.17.0-pyhd8ed1ab_0.conda hash: md5: 0a01c169f0ab0f91b26e77a3301fbfe4 sha256: 1c656a35800b7f57f7371605bc6507c8d3ad60fbaaec65876fce7f73df1fc8ac @@ -174,7 +174,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://repo.prefix.dev/conda-forge/noarch/babel-2.17.0-pyhd8ed1ab_0.conda hash: md5: 0a01c169f0ab0f91b26e77a3301fbfe4 sha256: 1c656a35800b7f57f7371605bc6507c8d3ad60fbaaec65876fce7f73df1fc8ac @@ -190,7 +190,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://repo.prefix.dev/conda-forge/linux-64/brotli-1.1.0-hb9d3cd8_2.conda hash: md5: 98514fe74548d768907ce7a13f680e8f sha256: fcb0b5b28ba7492093e54f3184435144e074dfceab27ac8e6a9457e736565b0b @@ -207,7 +207,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://repo.prefix.dev/conda-forge/win-64/brotli-1.1.0-h2466b09_2.conda hash: md5: 378f1c9421775dfe644731cb121c8979 sha256: d8fd7d1b446706776117d2dcad1c0289b9f5e1521cb13405173bad38568dd252 @@ -222,7 +222,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://repo.prefix.dev/conda-forge/linux-64/brotli-bin-1.1.0-hb9d3cd8_2.conda hash: md5: c63b5e52939e795ba8d26e35d767a843 sha256: 261364d7445513b9a4debc345650fad13c627029bfc800655a266bf1e375bc65 @@ -238,7 +238,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://repo.prefix.dev/conda-forge/win-64/brotli-bin-1.1.0-h2466b09_2.conda hash: md5: d22534a9be5771fc58eb7564947f669d sha256: f3bf2893613540ac256c68f211861c4de618d96291719e32178d894114ac2bc2 @@ -254,7 +254,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://repo.prefix.dev/conda-forge/linux-64/brotli-python-1.1.0-py312h2ec8cdc_2.conda hash: md5: b0b867af6fc74b2a0aa206da29c0f3cf sha256: f2a59ccd20b4816dea9a2a5cb917eb69728271dbf1aeab4e1b7e609330a50b6f @@ -270,7 +270,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://repo.prefix.dev/conda-forge/win-64/brotli-python-1.1.0-py312h275cf98_2.conda hash: md5: a99aec1ac46794a5fb1cd3cf5d2b6110 sha256: f83baa6f6bcba7b73f6921d5c1aa95ffc5d8b246ade933ade79250de0a4c9c4c @@ -283,7 +283,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://repo.prefix.dev/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda hash: md5: 62ee74e96c5ebb0af99386de58cf9553 sha256: 5ced96500d945fb286c9c838e54fa759aa04a7129c59800f0846b4335cee770d @@ -297,7 +297,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://repo.prefix.dev/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda hash: md5: 276e7ffe9ffe39688abc665ef0f45596 sha256: 35a5dad92e88fdd7fc405e864ec239486f4f31eec229e31686e61a140a8e573b @@ -310,32 +310,34 @@ 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://repo.prefix.dev/conda-forge/linux-64/c-ares-1.34.5-hb9d3cd8_0.conda hash: md5: f7f0d6cc2dc986d42ac2689ec88192be sha256: f8003bef369f57396593ccd03d08a8e21966157269426f71e943f96e4b579aeb category: main optional: false - name: ca-certificates - version: 2025.1.31 + version: 2025.4.26 manager: conda platform: linux-64 - dependencies: {} - url: https://packages.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.4.26-hbd8a1cb_0.conda hash: - md5: 19f3a56f68d2fd06c516076bff482c52 - sha256: bf832198976d559ab44d6cdb315642655547e26d826e34da67cbee6624cda189 + md5: 95db94f75ba080a22eb623590993167b + sha256: 2a70ed95ace8a3f8a29e6cd1476a943df294a7111dfb3e152e3478c4c889b7ac category: main optional: false - name: ca-certificates - version: 2025.1.31 + version: 2025.4.26 manager: conda platform: win-64 - dependencies: {} - url: https://packages.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.4.26-h4c7d964_0.conda hash: - md5: 5304a31607974dfc2110dfbb662ed092 - sha256: 1bedccdf25a3bd782d6b0e57ddd97cdcda5501716009f2de4479a779221df155 + md5: 23c7fd5062b48d8294fc7f61bf157fba + sha256: 1454f3f53a3b828d3cb68a3440cb0fa9f1cc0e3c8c26e9e023773dc19d88cc06 category: main optional: false - name: cached-property @@ -344,7 +346,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://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 hash: md5: 9b347a7ec10940d3f7941ff6c460b551 sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17 @@ -356,7 +358,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://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 hash: md5: 9b347a7ec10940d3f7941ff6c460b551 sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17 @@ -368,7 +370,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://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 hash: md5: 576d629e47797577ab0f1b351297ef4a sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7 @@ -380,7 +382,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://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 hash: md5: 576d629e47797577ab0f1b351297ef4a sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7 @@ -392,7 +394,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://repo.prefix.dev/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda hash: md5: c207fa5ac7ea99b149344385a9c0880d sha256: 42a78446da06a2568cb13e69be3355169fbd0ea424b00fc80b7d840f5baaacf3 @@ -404,7 +406,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://repo.prefix.dev/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda hash: md5: c207fa5ac7ea99b149344385a9c0880d sha256: 42a78446da06a2568cb13e69be3355169fbd0ea424b00fc80b7d840f5baaacf3 @@ -421,7 +423,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://repo.prefix.dev/conda-forge/linux-64/cffi-1.17.1-py312h06ac9bb_0.conda hash: md5: a861504bbea4161a9170b85d4d2be840 sha256: cba6ea83c4b0b4f5b5dc59cb19830519b28f95d7ebef7c9c5cf1c14843621457 @@ -438,7 +440,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://repo.prefix.dev/conda-forge/win-64/cffi-1.17.1-py312h4389bb4_0.conda hash: md5: 08310c1a22ef957d537e547f8d484f92 sha256: ac007bf5fd56d13e16d95eea036433012f2e079dc015505c8a79efebbad1fcbc @@ -450,7 +452,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://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda hash: md5: e83a31202d1c0a000fce3e9cf3825875 sha256: 4e0ee91b97e5de3e74567bdacea27f0139709fceca4db8adffbe24deffccb09b @@ -462,7 +464,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://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda hash: md5: e83a31202d1c0a000fce3e9cf3825875 sha256: 4e0ee91b97e5de3e74567bdacea27f0139709fceca4db8adffbe24deffccb09b @@ -475,7 +477,7 @@ package: dependencies: __unix: '' python: '>=3.9' - url: https://packages.prefix.dev/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 @@ -489,7 +491,7 @@ package: __win: '' colorama: '' python: '>=3.9' - url: https://packages.prefix.dev/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 @@ -501,7 +503,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://repo.prefix.dev/conda-forge/noarch/cloudpickle-3.1.1-pyhd8ed1ab_0.conda hash: md5: 364ba6c9fb03886ac979b482f39ebb92 sha256: 21ecead7268241007bf65691610cd7314da68c1f88113092af690203b5780db5 @@ -513,7 +515,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://repo.prefix.dev/conda-forge/noarch/cloudpickle-3.1.1-pyhd8ed1ab_0.conda hash: md5: 364ba6c9fb03886ac979b482f39ebb92 sha256: 21ecead7268241007bf65691610cd7314da68c1f88113092af690203b5780db5 @@ -525,7 +527,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://repo.prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda hash: md5: 962b9857ee8e7018c22f2776ffa0b2d7 sha256: ab29d57dc70786c1269633ba3dff20288b81664d3ff8d21af995742e2bb03287 @@ -537,14 +539,14 @@ 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://repo.prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda hash: md5: 962b9857ee8e7018c22f2776ffa0b2d7 sha256: ab29d57dc70786c1269633ba3dff20288b81664d3ff8d21af995742e2bb03287 category: main optional: false - name: contourpy - version: 1.3.1 + version: 1.3.2 manager: conda platform: linux-64 dependencies: @@ -554,14 +556,14 @@ 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.1-py312h68727a3_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/contourpy-1.3.2-py312h68727a3_0.conda hash: - md5: f5fbba0394ee45e9a64a73c2a994126a - sha256: e977af50b844b5b8cfec358131a4e923f0aa718e8334321cf8d84f5093576259 + md5: e688276449452cdfe9f8f5d3e74c23f6 + sha256: 4c8f2aa34aa031229e6f8aa18f146bce7987e26eae9c6503053722a8695ebf0c category: main optional: false - name: contourpy - version: 1.3.1 + version: 1.3.2 manager: conda platform: win-64 dependencies: @@ -571,10 +573,10 @@ 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.1-py312hd5eb7cc_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/contourpy-1.3.2-py312hd5eb7cc_0.conda hash: - md5: 83f7a2ec652abd37a178e35493dfd029 - sha256: b5643ea0dd0bf57e1847679f5985feb649289de872b85c3db900f4110ac83cdd + md5: bfcbb98aff376f62298f0801ca9bcfc3 + sha256: 9b552bcab6c1e3a364cbc010bdef3d26831c90984b7d0852a1dd70659d9cf84a category: main optional: false - name: coverage @@ -587,7 +589,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://repo.prefix.dev/conda-forge/linux-64/coverage-7.8.0-py312h178313f_0.conda hash: md5: d0fca021e354cc96455021852a1fad6d sha256: 029278c43bd2a6ac36bfd93fde69a0cde6a4ee94c0af72d0d51236fbb1fc3720 @@ -604,7 +606,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://repo.prefix.dev/conda-forge/win-64/coverage-7.8.0-py312h31fea79_0.conda hash: md5: a52895ace8c17bc01ceba443d52325c6 sha256: 7815726b2b45065af4570deca428f48799ce1f49de7d8b5e4f6b7999f6a4dc2f @@ -616,7 +618,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://repo.prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda hash: md5: 44600c4667a319d67dbe0681fc0bc833 sha256: 9827efa891e507a91a8a2acf64e210d2aff394e1cde432ad08e1f8c66b12293c @@ -628,7 +630,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://repo.prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda hash: md5: 44600c4667a319d67dbe0681fc0bc833 sha256: 9827efa891e507a91a8a2acf64e210d2aff394e1cde432ad08e1f8c66b12293c @@ -644,7 +646,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://repo.prefix.dev/conda-forge/linux-64/cytoolz-1.0.1-py312h66e93f0_0.conda hash: md5: 6198b134b1c08173f33653896974d477 sha256: 63a64d4e71148c4efd8db17b4a19b8965990d1e08ed2e24b84bc36b6c166a705 @@ -661,7 +663,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://repo.prefix.dev/conda-forge/win-64/cytoolz-1.0.1-py312h4389bb4_0.conda hash: md5: fba0567971249f5d0cce4d35b1184c75 sha256: e657e468fdae72302951bba92f94bcb31566a237e5f979a7dd205603a0750b59 @@ -681,7 +683,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://repo.prefix.dev/conda-forge/noarch/dask-core-2025.3.0-pyhd8ed1ab_0.conda hash: md5: 36f6cc22457e3d6a6051c5370832f96c sha256: 72badd945d856d2928fdbe051f136f903bcfee8136f1526c8362c6c465b793ec @@ -701,7 +703,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://repo.prefix.dev/conda-forge/noarch/dask-core-2025.3.0-pyhd8ed1ab_0.conda hash: md5: 36f6cc22457e3d6a6051c5370832f96c sha256: 72badd945d856d2928fdbe051f136f903bcfee8136f1526c8362c6c465b793ec @@ -714,7 +716,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://repo.prefix.dev/conda-forge/noarch/deprecated-1.2.18-pyhd8ed1ab_0.conda hash: md5: 0cef44b1754ae4d6924ac0eef6b9fdbe sha256: d614bcff10696f1efc714df07651b50bf3808401fcc03814309ecec242cc8870 @@ -727,34 +729,34 @@ 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://repo.prefix.dev/conda-forge/noarch/deprecated-1.2.18-pyhd8ed1ab_0.conda hash: md5: 0cef44b1754ae4d6924ac0eef6b9fdbe sha256: d614bcff10696f1efc714df07651b50bf3808401fcc03814309ecec242cc8870 category: main optional: false - name: dill - version: 0.3.9 + version: 0.4.0 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/dill-0.3.9-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda hash: - md5: 5e11310fca410e9f31381157079dee55 - sha256: 499be2f8e4397a46249e8e500535795704af27e56360ae0c964904140b41454a + md5: 885745570573eb6a08e021841928297a + sha256: 43dca52c96fde0c4845aaff02bcc92f25e1c2e5266ddefc2eac1a3de0960a3b1 category: dev optional: true - name: dill - version: 0.3.9 + version: 0.4.0 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/dill-0.3.9-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda hash: - md5: 5e11310fca410e9f31381157079dee55 - sha256: 499be2f8e4397a46249e8e500535795704af27e56360ae0c964904140b41454a + md5: 885745570573eb6a08e021841928297a + sha256: 43dca52c96fde0c4845aaff02bcc92f25e1c2e5266ddefc2eac1a3de0960a3b1 category: dev optional: true - name: discretize @@ -769,7 +771,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://repo.prefix.dev/conda-forge/linux-64/discretize-0.11.2-py312hc39e661_1.conda hash: md5: e9c071bcefeb0f70dd18a20f88bb844f sha256: 605ee14cdad67f8797a54853d8030295b522ba478e6759a5bc1f4fec3ac2e225 @@ -787,7 +789,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://repo.prefix.dev/conda-forge/win-64/discretize-0.11.2-py312hbaa7e33_1.conda hash: md5: 43aa663b1fd1787fbbeca5a9a954dc57 sha256: 259979385edfa18bcbb5b9776490d53026a6bfaf6f738369b49b0a0b2a839303 @@ -815,7 +817,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://repo.prefix.dev/conda-forge/noarch/distributed-2025.3.0-pyhd8ed1ab_0.conda hash: md5: 968a7a4ff98bcfb515b0f1c94d35553f sha256: ea055aeda774d03ec96e0901ec119c6d3dc21ddd50af166bec664a76efd5f82a @@ -843,7 +845,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://repo.prefix.dev/conda-forge/noarch/distributed-2025.3.0-pyhd8ed1ab_0.conda hash: md5: 968a7a4ff98bcfb515b0f1c94d35553f sha256: ea055aeda774d03ec96e0901ec119c6d3dc21ddd50af166bec664a76efd5f82a @@ -856,7 +858,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://repo.prefix.dev/conda-forge/linux-64/docutils-0.18.1-py312h7900ff3_0.conda hash: md5: b741a9f139d1ffd43cbb5da54252dae7 sha256: 27088b406250e0189f271ed795ee929e3030a29ae67acbbf193d0e82ca7f210a @@ -869,7 +871,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://repo.prefix.dev/conda-forge/win-64/docutils-0.18.1-py312h2e8e312_0.conda hash: md5: 3bcf1239777952b112ef26f2b8e4d5a7 sha256: 7638c8adbd1ef73bb3f9ef2df24d03464b5c9622bac4816581ca365ee96718ce @@ -881,7 +883,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://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda hash: md5: a16662747cdeb9abbac74d0057cc976e sha256: cbde2c64ec317118fc06b223c5fd87c8a680255e7348dd60e7b292d2e103e701 @@ -893,7 +895,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://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda hash: md5: a16662747cdeb9abbac74d0057cc976e sha256: cbde2c64ec317118fc06b223c5fd87c8a680255e7348dd60e7b292d2e103e701 @@ -905,7 +907,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://repo.prefix.dev/conda-forge/noarch/fasteners-0.19-pyhd8ed1ab_1.conda hash: md5: dbe9d42e94b5ff7af7b7893f4ce052e7 sha256: 42fb170778b47303e82eddfea9a6d1e1b8af00c927cd5a34595eaa882b903a16 @@ -917,7 +919,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://repo.prefix.dev/conda-forge/noarch/fasteners-0.19-pyhd8ed1ab_1.conda hash: md5: dbe9d42e94b5ff7af7b7893f4ce052e7 sha256: 42fb170778b47303e82eddfea9a6d1e1b8af00c927cd5a34595eaa882b903a16 @@ -935,7 +937,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://repo.prefix.dev/conda-forge/linux-64/fonttools-4.57.0-py312h178313f_0.conda hash: md5: 97907388593b27ac01237a1023d58d3d sha256: 3d230ff0d9e9fc482de22b807adf017736bd6d19b932eea68d68eeb52b139e04 @@ -954,7 +956,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://repo.prefix.dev/conda-forge/win-64/fonttools-4.57.0-py312h31fea79_0.conda hash: md5: 5bcdfae9aaf166ad83edebfa2f6359e2 sha256: eaa9fa1c6c0f290a24066a170460e292b111cb4c67c8d7cb7eb54ca68c608646 @@ -965,14 +967,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://packages.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 @@ -980,15 +980,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://packages.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 @@ -997,7 +994,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://repo.prefix.dev/conda-forge/noarch/fsspec-2025.3.2-pyhd8ed1ab_0.conda hash: md5: 9c40692c3d24c7aaf335f673ac09d308 sha256: 2040d4640708bd6ab9ed6cb9901267441798c44974bc63c9b6c1cb4c1891d825 @@ -1009,7 +1006,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://repo.prefix.dev/conda-forge/noarch/fsspec-2025.3.2-pyhd8ed1ab_0.conda hash: md5: 9c40692c3d24c7aaf335f673ac09d308 sha256: 2040d4640708bd6ab9ed6cb9901267441798c44974bc63c9b6c1cb4c1891d825 @@ -1028,7 +1025,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://repo.prefix.dev/conda-forge/linux-64/geoana-0.7.2-py312hc39e661_0.conda hash: md5: 20497b2b58fd4525c178cf642eb6d51d sha256: 492ac87e5e108352ec452b11d7a1158b22913b151e6da576099f8db1ecc262b6 @@ -1047,7 +1044,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://repo.prefix.dev/conda-forge/win-64/geoana-0.7.2-py312hbaa7e33_0.conda hash: md5: 734e9c4267b48bd5fd1f491868994e52 sha256: 686b9a107e080169f3e097923932764d65d5ad075acc06104080311211639eaa @@ -1061,7 +1058,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://repo.prefix.dev/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda hash: md5: b4754fb1bdcb70c8fd54f918301582c6 sha256: 0aa1cdc67a9fe75ea95b5644b734a756200d6ec9d0dff66530aec3d1c1e9df75 @@ -1075,7 +1072,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://repo.prefix.dev/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda hash: md5: b4754fb1bdcb70c8fd54f918301582c6 sha256: 0aa1cdc67a9fe75ea95b5644b734a756200d6ec9d0dff66530aec3d1c1e9df75 @@ -1093,7 +1090,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://repo.prefix.dev/conda-forge/linux-64/h5py-3.13.0-nompi_py312hedeef09_100.conda hash: md5: ed73cf6f5e1ce5e823e6efcf54cbdc51 sha256: 76bb853325f0c756599edb0be014723b01fea61e24817fd2f0b9ddfe4c570c0f @@ -1112,7 +1109,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://repo.prefix.dev/conda-forge/win-64/h5py-3.13.0-nompi_py312ha036244_100.conda hash: md5: fe41c7e14279ad2729752ddf4e83bc42 sha256: 63bba52339a880a596ec38c51f08c35249e2db801d7fe6046cd60b3e611ea5b6 @@ -1132,7 +1129,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://repo.prefix.dev/conda-forge/linux-64/hdf5-1.14.3-nompi_h2d575fe_109.conda hash: md5: e7a7a6e6f70553a31e6e79c65768d089 sha256: e8669a6d76d415f4fdbe682507ac3a3b39e8f493d2f2bdc520817f80b7cc0753 @@ -1150,7 +1147,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://repo.prefix.dev/conda-forge/win-64/hdf5-1.14.3-nompi_hb2c4d47_109.conda hash: md5: ebb61f3e8b35cc15e78876649b7246f7 sha256: d5ada33e119cdd62371c06f60eae6f545de7cea793ab83da2fba428bb1d2f813 @@ -1162,7 +1159,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://repo.prefix.dev/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda hash: md5: 0a802cb9888dd14eeefc611f05c40b6e sha256: 6ad78a180576c706aabeb5b4c8ceb97c0cb25f1e112d76495bff23e3779948ba @@ -1174,7 +1171,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://repo.prefix.dev/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda hash: md5: 0a802cb9888dd14eeefc611f05c40b6e sha256: 6ad78a180576c706aabeb5b4c8ceb97c0cb25f1e112d76495bff23e3779948ba @@ -1186,7 +1183,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://repo.prefix.dev/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda hash: md5: 8e6923fc12f1fe8f8c4e5c9f343256ac sha256: 77af6f5fe8b62ca07d09ac60127a30d9069fdc3c68d6b256754d0ffb1f7779f8 @@ -1198,7 +1195,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://repo.prefix.dev/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda hash: md5: 8e6923fc12f1fe8f8c4e5c9f343256ac sha256: 77af6f5fe8b62ca07d09ac60127a30d9069fdc3c68d6b256754d0ffb1f7779f8 @@ -1210,7 +1207,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://repo.prefix.dev/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda hash: md5: 39a4f67be3286c86d696df570b1201b7 sha256: d7a472c9fd479e2e8dcb83fb8d433fce971ea369d704ece380e876f9c3494e87 @@ -1222,7 +1219,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://repo.prefix.dev/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda hash: md5: 39a4f67be3286c86d696df570b1201b7 sha256: d7a472c9fd479e2e8dcb83fb8d433fce971ea369d704ece380e876f9c3494e87 @@ -1234,7 +1231,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://repo.prefix.dev/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2 hash: md5: 7de5386c8fea29e76b303f37dde4c352 sha256: c2bfd7043e0c4c12d8b5593de666c1e81d67b83c474a0a79282cc5c4ef845460 @@ -1246,7 +1243,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://repo.prefix.dev/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2 hash: md5: 7de5386c8fea29e76b303f37dde4c352 sha256: c2bfd7043e0c4c12d8b5593de666c1e81d67b83c474a0a79282cc5c4ef845460 @@ -1259,7 +1256,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://repo.prefix.dev/conda-forge/noarch/importlib-metadata-8.6.1-pyha770c72_0.conda hash: md5: f4b39bf00c69f56ac01e020ebfac066c sha256: 598951ebdb23e25e4cec4bbff0ae369cec65ead80b50bc08b441d8e54de5cf03 @@ -1272,7 +1269,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://repo.prefix.dev/conda-forge/noarch/importlib-metadata-8.6.1-pyha770c72_0.conda hash: md5: f4b39bf00c69f56ac01e020ebfac066c sha256: 598951ebdb23e25e4cec4bbff0ae369cec65ead80b50bc08b441d8e54de5cf03 @@ -1284,7 +1281,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://repo.prefix.dev/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda hash: md5: 6837f3eff7dcea42ecd714ce1ac2b108 sha256: 0ec8f4d02053cd03b0f3e63168316530949484f80e16f5e2fb199a1d117a89ca @@ -1296,7 +1293,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://repo.prefix.dev/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda hash: md5: 6837f3eff7dcea42ecd714ce1ac2b108 sha256: 0ec8f4d02053cd03b0f3e63168316530949484f80e16f5e2fb199a1d117a89ca @@ -1307,7 +1304,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://repo.prefix.dev/conda-forge/win-64/intel-openmp-2024.2.1-h57928b3_1083.conda hash: md5: 2d89243bfb53652c182a7c73182cce4f sha256: 0fd2b0b84c854029041b0ede8f4c2369242ee92acc0092f8407b1fe9238a8209 @@ -1320,7 +1317,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://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_0.conda hash: md5: a8abfd3f223b1ecb8c699dca974933bd sha256: 9c5fb97efa0eb32b42564edaacb5edb9a1f82ba8f5f8b135e794960101115b5a @@ -1333,7 +1330,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://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_0.conda hash: md5: a8abfd3f223b1ecb8c699dca974933bd sha256: 9c5fb97efa0eb32b42564edaacb5edb9a1f82ba8f5f8b135e794960101115b5a @@ -1346,7 +1343,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://repo.prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda hash: md5: 446bd6c8cb26050d528881df495ce646 sha256: f1ac18b11637ddadc05642e8185a851c7fab5998c6f5470d716812fae943b2af @@ -1359,7 +1356,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://repo.prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda hash: md5: 446bd6c8cb26050d528881df495ce646 sha256: f1ac18b11637ddadc05642e8185a851c7fab5998c6f5470d716812fae943b2af @@ -1372,7 +1369,7 @@ package: dependencies: python: '>=3.9' setuptools: '' - url: https://packages.prefix.dev/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 @@ -1385,7 +1382,7 @@ package: dependencies: python: '>=3.9' setuptools: '' - url: https://packages.prefix.dev/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 @@ -1397,7 +1394,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://repo.prefix.dev/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 hash: md5: 30186d27e2c9fa62b45fb1476b7200e3 sha256: 150c05a6e538610ca7c43beb3a40d65c90537497a4f6a5f4d15ec0451b6f5ebb @@ -1413,7 +1410,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://repo.prefix.dev/conda-forge/linux-64/kiwisolver-1.4.8-py312h84d6215_0.conda hash: md5: 6713467dc95509683bfa3aca08524e8a sha256: 3ce99d721c1543f6f8f5155e53eef11be47b2f5942a8d1060de6854f9d51f246 @@ -1429,7 +1426,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://repo.prefix.dev/conda-forge/win-64/kiwisolver-1.4.8-py312hc790b64_0.conda hash: md5: 7ef59428fc0dcb8a78a5e23dc4f50aa3 sha256: 2cce3d9bcc95c68069e3032cda25b732f69be7b025f94685ee4783d7b54588dd @@ -1445,7 +1442,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://repo.prefix.dev/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda hash: md5: 3f43953b7d3fb3aaa1d0d0723d91e368 sha256: 99df692f7a8a5c27cd14b5fb1374ee55e756631b9c3d659ed3ee60830249b238 @@ -1460,7 +1457,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://repo.prefix.dev/conda-forge/win-64/krb5-1.21.3-hdf4eb48_0.conda hash: md5: 31aec030344e962fbd7dbbbbd68e60a9 sha256: 18e8b3430d7d232dad132f574268f56b3eb1a19431d6d5de8c53c29e6c18fa81 @@ -1475,7 +1472,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://repo.prefix.dev/conda-forge/linux-64/lcms2-2.17-h717163a_0.conda hash: md5: 000e85703f0fd9594c81710dd5066471 sha256: d6a61830a354da022eae93fa896d0991385a875c6bba53c82263a289deda9db8 @@ -1491,7 +1488,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://repo.prefix.dev/conda-forge/win-64/lcms2-2.17-hbcf6048_0.conda hash: md5: 3538827f77b82a837fa681a4579e37a1 sha256: 7712eab5f1a35ca3ea6db48ead49e0d6ac7f96f8560da8023e61b3dbe4f3b25d @@ -1503,7 +1500,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://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_4.conda hash: md5: 01f8d123c96816249efd255a31ad7712 sha256: db73f38155d901a610b2320525b9dd3b31e4949215c870685fd92ea61b5ce472 @@ -1514,12 +1511,13 @@ package: manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://packages.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 @@ -1527,12 +1525,13 @@ package: manager: conda platform: win-64 dependencies: + ucrt: '>=10.0.20348.0' 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 + 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 @@ -1542,7 +1541,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://repo.prefix.dev/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda hash: md5: 5e97e271911b8b2001a8b71860c32faa sha256: 2ef420a655528bca9d269086cf33b7e90d2f54ad941b437fb1ed5eca87cee017 @@ -1556,7 +1555,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://repo.prefix.dev/conda-forge/win-64/libaec-1.1.3-h63175ca_0.conda hash: md5: 8723000f6ffdbdaef16025f0a01b64c5 sha256: f5c293d3cfc00f71dfdb64bd65ab53625565f8778fc2d5790575bef238976ebf @@ -1568,7 +1567,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://repo.prefix.dev/conda-forge/linux-64/libblas-3.9.0-31_hfdb39a5_mkl.conda hash: md5: bdf4a57254e8248222cb631db4393ff1 sha256: 862289f2cfb84bb6001d0e3569e908b8c42d66b881bd5b03f730a3924628b978 @@ -1580,7 +1579,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://repo.prefix.dev/conda-forge/win-64/libblas-3.9.0-31_h641d27c_mkl.conda hash: md5: d05563c577fe2f37693a554b3f271e8f sha256: 7bb4d5b591e98fe607279520ee78e3571a297b5720aa789a2536041ad5540de8 @@ -1593,7 +1592,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://repo.prefix.dev/conda-forge/linux-64/libbrotlicommon-1.1.0-hb9d3cd8_2.conda hash: md5: 41b599ed2b02abcfdd84302bff174b23 sha256: d9db2de60ea917298e658143354a530e9ca5f9c63471c65cf47ab39fd2f429e3 @@ -1607,7 +1606,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://repo.prefix.dev/conda-forge/win-64/libbrotlicommon-1.1.0-h2466b09_2.conda hash: md5: f7dc9a8f21d74eab46456df301da2972 sha256: 33e8851c6cc8e2d93059792cd65445bfe6be47e4782f826f01593898ec95764c @@ -1621,7 +1620,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://repo.prefix.dev/conda-forge/linux-64/libbrotlidec-1.1.0-hb9d3cd8_2.conda hash: md5: 9566f0bd264fbd463002e759b8a82401 sha256: 2892d512cad096cb03f1b66361deeab58b64e15ba525d6592bb6d609e7045edf @@ -1636,7 +1635,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://repo.prefix.dev/conda-forge/win-64/libbrotlidec-1.1.0-h2466b09_2.conda hash: md5: 9bae75ce723fa34e98e239d21d752a7e sha256: 234fc92f4c4f1cf22f6464b2b15bfc872fa583c74bf3ab9539ff38892c43612f @@ -1650,7 +1649,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://repo.prefix.dev/conda-forge/linux-64/libbrotlienc-1.1.0-hb9d3cd8_2.conda hash: md5: 06f70867945ea6a84d35836af780f1de sha256: 779f58174e99de3600e939fa46eddb453ec5d3c60bb46cdaa8b4c127224dbf29 @@ -1665,7 +1664,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://repo.prefix.dev/conda-forge/win-64/libbrotlienc-1.1.0-h2466b09_2.conda hash: md5: 85741a24d97954a991e55e34bc55990b sha256: 3d0dd7ef505962f107b7ea8f894e0b3dd01bf46852b362c8a7fc136b039bc9e1 @@ -1677,7 +1676,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://repo.prefix.dev/conda-forge/linux-64/libcblas-3.9.0-31_h372d94f_mkl.conda hash: md5: 2a06a6c16b45bd3d10002927ca204b67 sha256: 2ee3ab2b6eeb59f2d3c6f933fa0db28f1b56f0bc543ed2c0f6ec04060e4b6ec0 @@ -1689,7 +1688,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://repo.prefix.dev/conda-forge/win-64/libcblas-3.9.0-31_h5e41251_mkl.conda hash: md5: 43c100b94ad2607382b0cf0f3a6b0bf3 sha256: 609f455b099919bd4d15d4a733f493dc789e02da73fe4474f1cca73afafb95b8 @@ -1708,7 +1707,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://repo.prefix.dev/conda-forge/linux-64/libcurl-8.13.0-h332b0f4_0.conda hash: md5: cbdc92ac0d93fe3c796e36ad65c7905c sha256: 38e528acfaa0276b7052f4de44271ff9293fdb84579650601a8c49dac171482a @@ -1725,7 +1724,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://repo.prefix.dev/conda-forge/win-64/libcurl-8.13.0-h88aaa65_0.conda hash: md5: c9cf6eb842decbb66c2f34e72c3580d6 sha256: 185553b37c0299b7a15dc66a7a7e2a0d421adaac784ec9298a0b2ad745116ca5 @@ -1738,10 +1737,10 @@ 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://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 @@ -1752,10 +1751,10 @@ 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://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 @@ -1765,7 +1764,7 @@ package: dependencies: numpy: '' python: '>=3.10' - url: https://packages.prefix.dev/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 @@ -1778,7 +1777,7 @@ package: dependencies: numpy: '' python: '>=3.10' - url: https://packages.prefix.dev/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 @@ -1792,7 +1791,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://repo.prefix.dev/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.conda hash: md5: c277e0a4d549b03ac1e9d6cbbe3d017b sha256: d789471216e7aba3c184cd054ed61ce3f6dac6f87a50ec69291b9297f8c18724 @@ -1804,7 +1803,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://repo.prefix.dev/conda-forge/linux-64/libev-4.33-hd590300_2.conda hash: md5: 172bf1cd1ff8629f2b1179945ed45055 sha256: 1cd6048169fa0395af74ed5d8f1716e22c19a81a8a36f934c110ca3ad4dd27b4 @@ -1817,7 +1816,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://repo.prefix.dev/conda-forge/linux-64/libexpat-2.7.0-h5888daf_0.conda hash: md5: db0bfbe7dd197b68ad5f30333bae6ce0 sha256: 33ab03438aee65d6aa667cf7d90c91e5e7d734c19a67aa4c7040742c0a13d505 @@ -1831,7 +1830,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://repo.prefix.dev/conda-forge/win-64/libexpat-2.7.0-he0c23c2_0.conda hash: md5: b6f5352fdb525662f4169a0431d2dd7a sha256: 1a227c094a4e06bd54e8c2f3ec40c17ff99dcf3037d812294f842210aa66dbeb @@ -1844,7 +1843,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://repo.prefix.dev/conda-forge/linux-64/libffi-3.4.6-h2dba641_1.conda hash: md5: ede4673863426c0883c0063d853bbd85 sha256: 764432d32db45466e87f10621db5b74363a9f847d2b8b1f9743746cd160f06ab @@ -1858,12 +1857,67 @@ 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://repo.prefix.dev/conda-forge/win-64/libffi-3.4.6-h537db12_1.conda hash: md5: 85d8fa5e55ed8f93f874b3b23ed54ec6 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 @@ -1871,7 +1925,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://repo.prefix.dev/conda-forge/linux-64/libgcc-14.2.0-h767d61c_2.conda hash: md5: ef504d1acbd74b7cc6849ef8af47dd03 sha256: 3a572d031cb86deb541d15c1875aaa097baefc0c580b54dc61f5edab99215792 @@ -1884,7 +1938,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://repo.prefix.dev/conda-forge/win-64/libgcc-14.2.0-h1383e82_2.conda hash: md5: 4a74c1461a0ba47a3346c04bdccbe2ad sha256: fddf2fc037bc95adb3b369e8866da8a71b6a67ebcfc4d7035ac4208309dc9e72 @@ -1896,7 +1950,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://repo.prefix.dev/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_2.conda hash: md5: a2222a6ada71fb478682efe483ce0f92 sha256: fb7558c328b38b2f9d2e412c48da7890e7721ba018d733ebdfea57280df01904 @@ -1908,7 +1962,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://repo.prefix.dev/conda-forge/linux-64/libgfortran-14.2.0-h69a702a_2.conda hash: md5: fb54c4ea68b460c278d26eea89cfbcc3 sha256: e05263e8960da03c341650f2a3ffa4ccae4e111cb198e8933a2908125459e5a6 @@ -1921,7 +1975,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://repo.prefix.dev/conda-forge/linux-64/libgfortran5-14.2.0-hf1ad2bd_2.conda hash: md5: 556a4fdfac7287d349b8f09aba899693 sha256: c17b7cf3073a1f4e1f34d50872934fa326346e104d3c445abc1e62481ad6085c @@ -1933,7 +1987,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://repo.prefix.dev/conda-forge/win-64/libgomp-14.2.0-h1383e82_2.conda hash: md5: dd6b1ab49e28bcb6154cd131acec985b sha256: 674ec5f1bf319eac98d0d6ecb9c38e0192f3cf41969a5621d62a7e695e1aa9f3 @@ -1948,7 +2002,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://repo.prefix.dev/conda-forge/linux-64/libhwloc-2.11.2-default_h0d58e46_1001.conda hash: md5: 804ca9e91bcaea0824a341d55b1684f2 sha256: d14c016482e1409ae1c50109a9ff933460a50940d2682e745ab1c172b5282a69 @@ -1964,7 +2018,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://repo.prefix.dev/conda-forge/win-64/libhwloc-2.11.2-default_ha69328c_1001.conda hash: md5: b87a0ac5ab6495d8225db5dc72dd21cd sha256: 850e255997f538d5fb6ed651321141155a33bb781d43d326fc4ff62114dd2842 @@ -1977,7 +2031,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://repo.prefix.dev/conda-forge/linux-64/libiconv-1.18-h4ce23a2_1.conda hash: md5: e796ff8ddc598affdf7c173d6145f087 sha256: 18a4afe14f731bfb9cf388659994263904d20111e42f841e9eea1bb6f91f4ab4 @@ -1991,36 +2045,37 @@ 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://repo.prefix.dev/conda-forge/win-64/libiconv-1.18-h135ad9c_1.conda hash: md5: 21fc5dba2cbcd8e5e26ff976a312122c sha256: ea5ed2b362b6dbc4ba7188eb4eaf576146e3dfc6f4395e9f0db76ad77465f786 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://packages.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://packages.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 @@ -2029,7 +2084,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://repo.prefix.dev/conda-forge/linux-64/liblapack-3.9.0-31_hc41d3b0_mkl.conda hash: md5: 10d012ddd7cc1c7ff9093d4974a34e53 sha256: a2d20845d916ac8fba09376cd791136a9b4547afb2131bc315178adfc87bb4ca @@ -2041,7 +2096,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://repo.prefix.dev/conda-forge/win-64/liblapack-3.9.0-31_h1aa476e_mkl.conda hash: md5: 40b47ee720a185289760960fc6185750 sha256: 9415e807aa6f8968322bbd756aab8f487379d809c74266d37c697b8d85c534ad @@ -2054,7 +2109,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://repo.prefix.dev/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_0.conda hash: md5: 0e87378639676987af32fee53ba32258 sha256: f4f21dfc54b08d462f707b771ecce3fa9bc702a2a05b55654f64154f48b141ef @@ -2068,7 +2123,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://repo.prefix.dev/conda-forge/win-64/liblzma-5.8.1-h2466b09_0.conda hash: md5: 8d5cb0016b645d6688e2ff57c5d51302 sha256: 1477e9bff05318f3129d37be0e64c76cce0973c4b8c73d13a467d0b7f03d157c @@ -2086,7 +2141,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://repo.prefix.dev/conda-forge/linux-64/libnghttp2-1.64.0-h161d5f1_0.conda hash: md5: 19e57602824042dfd0446292ef90488b sha256: b0f2b3695b13a989f75d8fd7f4778e1c7aabe3b36db83f0fe80b2cd812c0e975 @@ -2098,7 +2153,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://repo.prefix.dev/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda hash: md5: 30fd6e37fe21f86f4bd26d6ee73eeec7 sha256: 26d77a3bb4dceeedc2a41bd688564fe71bf2d149fdcf117049970bc02ff1add6 @@ -2112,7 +2167,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://repo.prefix.dev/conda-forge/linux-64/libpng-1.6.47-h943b412_0.conda hash: md5: 55199e2ae2c3651f6f9b2a447b47bdc9 sha256: 23367d71da58c9a61c8cbd963fcffb92768d4ae5ffbef9a47cdf1f54f98c5c36 @@ -2127,10 +2182,10 @@ 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://repo.prefix.dev/conda-forge/win-64/libpng-1.6.47-h7a4582a_0.conda hash: - md5: 7d717163d9dab337c65f2bf21a676b8f - sha256: cf8a594b697de103025dcae2c917ec9c100609caf7c917a94c64a683cb1db1ac + md5: ad620e92b82d2948bc019e029c574ebb + sha256: e12c46ca882080d901392ae45e0e5a1c96fc3e5acd5cd1a23c2632eb7f024f26 category: main optional: false - name: libscotch @@ -2145,7 +2200,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://repo.prefix.dev/conda-forge/linux-64/libscotch-7.0.6-hea33c07_1.conda hash: md5: 1b600d55dcd98c958192a69a79e6acd2 sha256: 8330bba8b7b3a37da6eca04bace985fb9f8d487d3249b8f690e8f4a3d8d3c7dc @@ -2159,7 +2214,7 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://packages.prefix.dev/conda-forge/linux-64/libspatialindex-2.0.0-he02047a_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libspatialindex-2.0.0-he02047a_0.conda hash: md5: e7d2dcd1a058149ff9731a8dca39566e sha256: 997a4fa13864dcb35ac9dfe87ed70fb3e9509dd071fa1951ac7f184e7ffcde5d @@ -2173,7 +2228,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/libspatialindex-2.0.0-h5a68840_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libspatialindex-2.0.0-h5a68840_0.conda hash: md5: 667559340fdf805ee1652de7b73e2b59 sha256: 7802e6c51d59bc7e062841c525d772656708cdc44e42b6556493d345f08d7e50 @@ -2187,7 +2242,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://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.49.1-hee588c1_2.conda hash: md5: 962d6ac93c30b1dfc54c9cccafd1003e sha256: a086289bf75c33adc1daed3f1422024504ffb5c3c8b3285c49f025c29708ed16 @@ -2201,7 +2256,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://repo.prefix.dev/conda-forge/win-64/libsqlite-3.49.1-h67fdade_2.conda hash: md5: b58b66d4ad1aaf1c2543cbbd6afb1a59 sha256: c092d42d00fd85cf609cc58574ba2b03c141af5762283f36f5dd445ef7c0f4fe @@ -2215,11 +2270,11 @@ package: __glibc: '>=2.17,<3.0.a0' 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 + openssl: '>=3.5.0,<4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/libssh2-1.11.1-hcf80075_0.conda hash: - md5: be2de152d8073ef1c01b7728475f2fe7 - sha256: 0407ac9fda2bb67e11e357066eff144c845801d00b5f664efbc48813af1e7bb9 + md5: eecce068c7e4eddeb169591baac20ac4 + sha256: fa39bfd69228a13e553bd24601332b7cfeb30ca11a3ca50bb028108fe90a7661 category: main optional: false - name: libssh2 @@ -2228,14 +2283,14 @@ package: platform: win-64 dependencies: libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.4.0,<4.0a0' + openssl: '>=3.5.0,<4.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/libssh2-1.11.1-he619c9f_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libssh2-1.11.1-h9aa295b_0.conda hash: - md5: af0cbf037dd614c34399b3b3e568c557 - sha256: 4b3256bd2b4e4b3183005d3bd8826d651eccd1a4740b70625afa2b7e7123d191 + md5: 9dce2f112bfd3400f4f432b3d0ac07b2 + sha256: cbdf93898f2e27cefca5f3fe46519335d1fab25c4ea2a11b11502ff63e602c09 category: main optional: false - name: libstdcxx @@ -2245,7 +2300,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://repo.prefix.dev/conda-forge/linux-64/libstdcxx-14.2.0-h8f9b012_2.conda hash: md5: a78c856b6dc6bf4ea8daeb9beaaa3fb0 sha256: 8f5bd92e4a24e1d35ba015c5252e8f818898478cb3bc50bd8b12ab54707dc4da @@ -2257,7 +2312,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://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-14.2.0-h4852527_2.conda hash: md5: c75da67f045c2627f59e6fcb5f4e3a9b sha256: e86f38b007cf97cc2c67cd519f2de12a313c4ee3f5ef11652ad08932a5e34189 @@ -2272,16 +2327,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://packages.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 @@ -2291,17 +2346,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://packages.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 @@ -2310,7 +2365,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://repo.prefix.dev/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda hash: md5: 40b61aab5c7ba9ff276c41cfffe6b80b sha256: 787eb542f055a2b3de553614b25f09eefb0a0931b0c87dbcce6efdfd92f04f18 @@ -2323,7 +2378,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://repo.prefix.dev/conda-forge/linux-64/libwebp-base-1.5.0-h851e524_0.conda hash: md5: 63f790534398730f59e1b899c3644d4a sha256: c45283fd3e90df5f0bd3dbcd31f59cdd2b001d424cf30a07223655413b158eaf @@ -2337,7 +2392,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://repo.prefix.dev/conda-forge/win-64/libwebp-base-1.5.0-h3b0e114_0.conda hash: md5: 33f7313967072c6e6d8f865f5493c7ae sha256: 1d75274614e83a5750b8b94f7bad2fc0564c2312ff407e697d99152ed095576f @@ -2349,7 +2404,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://repo.prefix.dev/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h57928b3_9.conda hash: md5: 08bfa5da6e242025304b206d152479ef sha256: 373f2973b8a358528b22be5e8d84322c165b4c5577d24d94fd67ad1bb0a0f261 @@ -2365,7 +2420,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://repo.prefix.dev/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda hash: md5: 92ed62436b625154323d40d5f2f11dd7 sha256: 666c0c431b23c6cec6e492840b176dde533d48b7e6fb8883f5071223433776aa @@ -2382,7 +2437,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://repo.prefix.dev/conda-forge/win-64/libxcb-1.17.0-h0e4246c_0.conda hash: md5: a69bbf778a462da324489976c84cfc8c sha256: 08dec73df0e161c96765468847298a420933a36bc4f09b50e062df8793290737 @@ -2394,7 +2449,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://repo.prefix.dev/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda hash: md5: 5aa797f8787fe7a17d1b0821485b5adc sha256: 6ae68e0b86423ef188196fff6207ed0c8195dd84273cb5623b85aa08033a410c @@ -2410,7 +2465,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://repo.prefix.dev/conda-forge/linux-64/libxml2-2.13.7-h81593ed_1.conda hash: md5: 0619e8fc4c8025a908ea3a3422d3b775 sha256: c4f59563e017eba378ea843be5ebde4b0546c72bbe4c1e43b2b384379e827635 @@ -2426,7 +2481,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://repo.prefix.dev/conda-forge/win-64/libxml2-2.13.7-h442d1da_1.conda hash: md5: c14ff7f05e57489df9244917d2b55763 sha256: 0a013527f784f4702dc18460070d8ec79d1ebb5087dd9e678d6afbeaca68d2ac @@ -2439,7 +2494,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://repo.prefix.dev/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda hash: md5: edb0dca6bc32e4f4789199455a1dbeb8 sha256: d4bfe88d7cb447768e31650f06257995601f89076080e76df55e3112d4e47dc4 @@ -2453,36 +2508,36 @@ 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://repo.prefix.dev/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda hash: md5: 41fbfac52c601159df6c01f875de31b9 sha256: ba945c6493449bed0e6e29883c4943817f7c79cbff52b83360f7b341277c6402 category: main optional: false - 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://repo.prefix.dev/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://repo.prefix.dev/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 @@ -2491,7 +2546,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://repo.prefix.dev/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 91e27ef3d05cc772ce627e51cff111c4 sha256: 9afe0b5cfa418e8bdb30d8917c5a6cec10372b037924916f1f85b9f4899a67a6 @@ -2503,7 +2558,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://repo.prefix.dev/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 91e27ef3d05cc772ce627e51cff111c4 sha256: 9afe0b5cfa418e8bdb30d8917c5a6cec10372b037924916f1f85b9f4899a67a6 @@ -2518,7 +2573,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://repo.prefix.dev/conda-forge/linux-64/markupsafe-3.0.2-py312h178313f_1.conda hash: md5: eb227c3e0bf58f5bd69c0532b157975b sha256: 4a6bf68d2a2b669fecc9a4a009abd1cf8e72c2289522ff00d81b5a6e51ae78f5 @@ -2534,7 +2589,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://repo.prefix.dev/conda-forge/win-64/markupsafe-3.0.2-py312h31fea79_1.conda hash: md5: 944fdd848abfbd6929e57c790b8174dd sha256: bbb9595fe72231a8fbc8909cfa479af93741ecd2d28dfe37f8f205fef5df2217 @@ -2561,7 +2616,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://repo.prefix.dev/conda-forge/linux-64/matplotlib-base-3.8.4-py312h20ab3a6_2.conda hash: md5: fbfe798f83f0d66410903ad8f40d5283 sha256: a927afa9e4b5cf7889b5a82ef2286b089873f402a0d0e10e6adb4cbf820a4db9 @@ -2588,7 +2643,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://repo.prefix.dev/conda-forge/win-64/matplotlib-base-3.8.4-py312hfee7060_2.conda hash: md5: 6b623fa66ac3cd1601da60160c46514b sha256: 023644d13bf1fab7c58f4df0d461cd237874802b0e7370ad049463d39d2fb2f4 @@ -2600,7 +2655,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://repo.prefix.dev/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda hash: md5: 827064ddfe0de2917fb29f1da4f8f533 sha256: 9b0037171dad0100f0296699a11ae7d355237b55f42f9094aebc0f41512d96a1 @@ -2612,7 +2667,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://repo.prefix.dev/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda hash: md5: 827064ddfe0de2917fb29f1da4f8f533 sha256: 9b0037171dad0100f0296699a11ae7d355237b55f42f9094aebc0f41512d96a1 @@ -2626,7 +2681,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://repo.prefix.dev/conda-forge/linux-64/metis-5.1.0-hd0bcaf9_1007.conda hash: md5: 28eb714416de4eb83e2cbc47e99a1b45 sha256: e8a00971e6d00bd49f375c5d8d005b37a9abba0b1768533aed0f90a422bf5cc7 @@ -2637,10 +2692,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://repo.prefix.dev/conda-forge/linux-64/mkl-2024.2.2-ha957f24_16.conda hash: md5: 1459379c79dda834673426504d52b319 sha256: 77906b0acead8f86b489da46f53916e624897338770dbf70b04b8f673c9273c1 @@ -2653,7 +2708,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://repo.prefix.dev/conda-forge/win-64/mkl-2024.2.2-h66d3029_15.conda hash: md5: 302dff2807f2927b3e9e0d19d60121de sha256: 20e52b0389586d0b914a49cd286c5ccc9c47949bed60ca6df004d1d295f2edbd @@ -2669,7 +2724,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://repo.prefix.dev/conda-forge/linux-64/msgpack-python-1.1.0-py312h68727a3_0.conda hash: md5: 5c9b020a3f86799cdc6115e55df06146 sha256: 4bc53333774dea1330643b7e23aa34fd6880275737fc2e07491795872d3af8dd @@ -2685,7 +2740,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://repo.prefix.dev/conda-forge/win-64/msgpack-python-1.1.0-py312hd5eb7cc_0.conda hash: md5: ff4f1e63a6438a06d1ab259936e5c2ac sha256: 3fd45d9c0830e931e34990cb90e88ba53cc7f89fce69fc7d1a8289639d363e85 @@ -2696,10 +2751,10 @@ 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://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 @@ -2717,10 +2772,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://packages.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 @@ -2730,14 +2785,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://packages.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 @@ -2746,7 +2801,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://repo.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 hash: md5: 2ba8498c1018c1e9c61eb99b973dfe19 sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 @@ -2758,7 +2813,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://repo.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 hash: md5: 2ba8498c1018c1e9c61eb99b973dfe19 sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 @@ -2771,7 +2826,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://repo.prefix.dev/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda hash: md5: 47e340acb35de30501a76c7c799c41d7 sha256: 3fde293232fa3fca98635e1167de6b7c7fda83caf24b9d6c91ec9eefb4f4d586 @@ -2790,7 +2845,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://repo.prefix.dev/conda-forge/linux-64/numcodecs-0.15.1-py312hf9745cd_0.conda hash: md5: 8a1f88d4985ee1c16b0db1af39a8554d sha256: 209a84599e36db68865dce5618c3328a2d57267d339255204815885b220a20f2 @@ -2809,7 +2864,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://repo.prefix.dev/conda-forge/win-64/numcodecs-0.15.1-py312h72972c8_0.conda hash: md5: bba8bf88b520170565f2f51e99926683 sha256: ce01a82077b12bffd6c3e5281f02bc6a690a8e0e3750c44e3c624c68f6a70d9e @@ -2827,7 +2882,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://repo.prefix.dev/conda-forge/linux-64/numpy-1.26.4-py312heda63a1_0.conda hash: md5: d8285bea2a350f63fab23bf460221f3f sha256: fe3459c75cf84dcef6ef14efcc4adb0ade66038ddd27cadb894f34f4797687d8 @@ -2846,7 +2901,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://repo.prefix.dev/conda-forge/win-64/numpy-1.26.4-py312h8753938_0.conda hash: md5: f9ac74c3b07c396014434aca1e58d362 sha256: 73570817a5109d396b4ebbe5124a89525959269fd33fa33fd413700289fbe0ef @@ -2863,7 +2918,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://repo.prefix.dev/conda-forge/linux-64/openjpeg-2.5.3-h5fbd93e_0.conda hash: md5: 9e5816bc95d285c115a3ebc2f8563564 sha256: 5bee706ea5ba453ed7fd9da7da8380dd88b865c8d30b5aaec14d2b6dd32dbc39 @@ -2880,7 +2935,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://repo.prefix.dev/conda-forge/win-64/openjpeg-2.5.3-h4d64b90_0.conda hash: md5: fc050366dd0b8313eb797ed1ffef3a29 sha256: 410175815df192f57a07c29a6b3fdd4231937173face9e63f0830c1234272ce3 @@ -2894,7 +2949,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://repo.prefix.dev/conda-forge/linux-64/openssl-3.5.0-h7b32b05_0.conda hash: md5: bb539841f2a3fde210f387d00ed4bb9d sha256: 38285d280f84f1755b7c54baf17eccf2e3e696287954ce0adca16546b85ee62c @@ -2909,34 +2964,34 @@ 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://repo.prefix.dev/conda-forge/win-64/openssl-3.5.0-ha4e3fda_0.conda hash: md5: 4ea7db75035eb8c13fa680bb90171e08 sha256: 43dd7f56da142ca83c614c8b0085589650ae9032b351a901c190e48eefc73675 category: main optional: false - 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://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda hash: - md5: 3bfed7e6228ebf2f7b9eaa47f1b4e2aa - sha256: da157b19bcd398b9804c5c52fc000fcb8ab0525bdb9c70f95beaa0bb42f85af1 + md5: 58335b26c38bf4a20f399384c33cbcf9 + sha256: 289861ed0c13a15d7bbb408796af4de72c2fe67e2bcb0de98f4c3fce259d7991 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://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda hash: - md5: 3bfed7e6228ebf2f7b9eaa47f1b4e2aa - sha256: da157b19bcd398b9804c5c52fc000fcb8ab0525bdb9c70f95beaa0bb42f85af1 + md5: 58335b26c38bf4a20f399384c33cbcf9 + sha256: 289861ed0c13a15d7bbb408796af4de72c2fe67e2bcb0de98f4c3fce259d7991 category: main optional: false - name: partd @@ -2947,7 +3002,7 @@ package: locket: '' python: '>=3.9' toolz: '' - url: https://packages.prefix.dev/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 @@ -2961,7 +3016,7 @@ package: locket: '' python: '>=3.9' toolz: '' - url: https://packages.prefix.dev/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 @@ -2984,7 +3039,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://repo.prefix.dev/conda-forge/linux-64/pillow-10.3.0-py312h287a98d_1.conda hash: md5: b1325cda3f250f9f842180607054e6ed sha256: e1a2426f23535fc15e577d799685229a93117b645734e5cca60597bb23cef09e @@ -3009,38 +3064,38 @@ 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://repo.prefix.dev/conda-forge/win-64/pillow-10.3.0-py312h381445a_1.conda hash: md5: 04c1de8505791c12db1a0374f12e6e01 sha256: 2bd6e58a0630fdb9a52f532ce582907babc725930e1ba784c7cd74063f28d073 category: main optional: false - name: pip - version: 25.0.1 + version: '25.1' manager: conda platform: linux-64 dependencies: 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://repo.prefix.dev/conda-forge/noarch/pip-25.1-pyh8b19718_0.conda hash: - md5: 79b5c1440aedc5010f687048d9103628 - sha256: 585940f09d87787f79f73ff5dff8eb2af8a67e5bec5eebf2f553cd26c840ba69 + md5: 2247aa245832ea47e8b971bef73d7094 + sha256: 81a7ffe7b7ca8718bc09476a258cd48754e1d4e1bd3b80a6fef41ffb71e3bfc8 category: main optional: false - name: pip - version: 25.0.1 + version: '25.1' manager: conda platform: win-64 dependencies: 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://repo.prefix.dev/conda-forge/noarch/pip-25.1-pyh8b19718_0.conda hash: - md5: 79b5c1440aedc5010f687048d9103628 - sha256: 585940f09d87787f79f73ff5dff8eb2af8a67e5bec5eebf2f553cd26c840ba69 + md5: 2247aa245832ea47e8b971bef73d7094 + sha256: 81a7ffe7b7ca8718bc09476a258cd48754e1d4e1bd3b80a6fef41ffb71e3bfc8 category: main optional: false - name: platformdirs @@ -3048,8 +3103,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://repo.prefix.dev/conda-forge/noarch/platformdirs-4.3.7-pyh29332c3_0.conda hash: md5: e57da6fe54bb3a5556cf36d199ff07d8 sha256: ae7d3e58224d53d6b59e1f5ac5809803bb1972f0ac4fb10cd9b8c87d4122d3e0 @@ -3060,8 +3115,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://repo.prefix.dev/conda-forge/noarch/platformdirs-4.3.7-pyh29332c3_0.conda hash: md5: e57da6fe54bb3a5556cf36d199ff07d8 sha256: ae7d3e58224d53d6b59e1f5ac5809803bb1972f0ac4fb10cd9b8c87d4122d3e0 @@ -3073,7 +3128,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://repo.prefix.dev/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_1.conda hash: md5: e9dcbce5f45f9ee500e728ae58b605b6 sha256: 122433fc5318816b8c69283aaf267c73d87aa2d09ce39f64c9805c9a3b264819 @@ -3085,7 +3140,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://repo.prefix.dev/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_1.conda hash: md5: e9dcbce5f45f9ee500e728ae58b605b6 sha256: 122433fc5318816b8c69283aaf267c73d87aa2d09ce39f64c9805c9a3b264819 @@ -3100,7 +3155,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://repo.prefix.dev/conda-forge/linux-64/psutil-7.0.0-py312h66e93f0_0.conda hash: md5: 8e30db4239508a538e4a3b3cdf5b9616 sha256: 158047d7a80e588c846437566d0df64cec5b0284c7184ceb4f3c540271406888 @@ -3116,7 +3171,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://repo.prefix.dev/conda-forge/win-64/psutil-7.0.0-py312h4389bb4_0.conda hash: md5: f5b86d6e2e645ee276febe79a310b640 sha256: 088451ee2c9a349e1168f70afe275e58f86350faffb09c032cff76f97d4fb7bb @@ -3129,7 +3184,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://repo.prefix.dev/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda hash: md5: b3c17d95b5a10c6e64a21fa17573e70e sha256: 9c88f8c64590e9567c6c80823f0328e58d3b1efb0e1c539c0315ceca764e0973 @@ -3143,7 +3198,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://repo.prefix.dev/conda-forge/win-64/pthread-stubs-0.4-h0e40799_1002.conda hash: md5: 3c8f2573569bb816483e5cf57efbbe29 sha256: 7e446bafb4d692792310ed022fe284e848c6a868c861655a92435af7368bae7b @@ -3154,8 +3209,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://repo.prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda hash: md5: 12c566707c80111f9799308d9e265aef sha256: 79db7928d13fab2d892592223d7570f5061c192f27b9febd1a418427b719acc6 @@ -3166,8 +3221,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://repo.prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda hash: md5: 12c566707c80111f9799308d9e265aef sha256: 79db7928d13fab2d892592223d7570f5061c192f27b9febd1a418427b719acc6 @@ -3184,7 +3239,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://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.3-pyh3cfb1c2_0.conda hash: md5: 3c6f7f8ae9b9c177ad91ccc187912756 sha256: 89183785b09ebe9f9e65710057d7c41e9d21d4a9ad05e068850e18669655d5a8 @@ -3201,7 +3256,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://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.3-pyh3cfb1c2_0.conda hash: md5: 3c6f7f8ae9b9c177ad91ccc187912756 sha256: 89183785b09ebe9f9e65710057d7c41e9d21d4a9ad05e068850e18669655d5a8 @@ -3217,7 +3272,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://repo.prefix.dev/conda-forge/linux-64/pydantic-core-2.33.1-py312h3b7be25_0.conda hash: md5: 4767e28fcbf646ffc18ef4021534c415 sha256: 281dc40103c324309bf62cf9ed861f38e949b8b1da786f25e5ad199a86a67a6d @@ -3234,7 +3289,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://repo.prefix.dev/conda-forge/win-64/pydantic-core-2.33.1-py312hfe1d9c4_0.conda hash: md5: 08c86823811befb8a83b9f403815e6ab sha256: 67b51ddb720d738c3eee96e7998d7a5b99530893f373714555f4941b15d1bd70 @@ -3252,7 +3307,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://repo.prefix.dev/conda-forge/linux-64/pydiso-0.1.2-py312h772f2df_0.conda hash: md5: f0af4a616cc1358e6ad9477ddcbbaea3 sha256: 158bd81f3ddd52e613ec54d0c680d6d0f7c87a461ee75bd26a7fc07890cf40f0 @@ -3271,7 +3326,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://repo.prefix.dev/conda-forge/win-64/pydiso-0.1.2-py312h01acb21_0.conda hash: md5: 14fd07b07c4819cd08beed7fbda91712 sha256: 4b8daf7934b7f3458bd0e3faeb5cd378fb3f5dc19840f71c7f23fe6a0b7c0849 @@ -3283,7 +3338,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://repo.prefix.dev/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda hash: md5: 232fb4577b6687b2d503ef8e254270c9 sha256: 28a3e3161390a9d23bc02b4419448f8d27679d9e2c250e29849e37749c8de86b @@ -3295,7 +3350,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://repo.prefix.dev/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda hash: md5: 232fb4577b6687b2d503ef8e254270c9 sha256: 28a3e3161390a9d23bc02b4419448f8d27679d9e2c250e29849e37749c8de86b @@ -3312,11 +3367,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://repo.prefix.dev/conda-forge/noarch/pylint-3.3.6-pyh29332c3_0.conda hash: md5: 8242cc62822cc8a17f53d24d4efa75f4 sha256: 3e3e35b2cbb4b1ca3063fc2d6f44a85ac189e0935f00ed8fbe8e4713c0d00b99 @@ -3333,11 +3388,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://repo.prefix.dev/conda-forge/noarch/pylint-3.3.6-pyh29332c3_0.conda hash: md5: 8242cc62822cc8a17f53d24d4efa75f4 sha256: 3e3e35b2cbb4b1ca3063fc2d6f44a85ac189e0935f00ed8fbe8e4713c0d00b99 @@ -3353,7 +3408,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://repo.prefix.dev/conda-forge/noarch/pymatsolver-0.3.1-pyh48887ae_201.conda hash: md5: b6805e522702eabf2ebbd236490d5eed sha256: d49ad9b58b9eeae204a3677cafc389c00c7f0f830ef76f481ab9aaf3e0260bad @@ -3369,7 +3424,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://repo.prefix.dev/conda-forge/noarch/pymatsolver-0.3.1-pyh48887ae_201.conda hash: md5: b6805e522702eabf2ebbd236490d5eed sha256: d49ad9b58b9eeae204a3677cafc389c00c7f0f830ef76f481ab9aaf3e0260bad @@ -3381,7 +3436,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://repo.prefix.dev/conda-forge/noarch/pyparsing-3.2.3-pyhd8ed1ab_1.conda hash: md5: 513d3c262ee49b54a8fec85c5bc99764 sha256: b92afb79b52fcf395fd220b29e0dd3297610f2059afac45298d44e00fcbf23b6 @@ -3393,7 +3448,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://repo.prefix.dev/conda-forge/noarch/pyparsing-3.2.3-pyhd8ed1ab_1.conda hash: md5: 513d3c262ee49b54a8fec85c5bc99764 sha256: b92afb79b52fcf395fd220b29e0dd3297610f2059afac45298d44e00fcbf23b6 @@ -3406,7 +3461,7 @@ package: dependencies: __unix: '' python: '>=3.9' - url: https://packages.prefix.dev/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 @@ -3420,7 +3475,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://repo.prefix.dev/conda-forge/noarch/pysocks-1.7.1-pyh09c184e_7.conda hash: md5: e2fd202833c4a981ce8a65974fe4abd1 sha256: d016e04b0e12063fbee4a2d5fbb9b39a8d191b5a0042f0b8459188aedeabb0ca @@ -3438,7 +3493,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://repo.prefix.dev/conda-forge/noarch/pytest-8.3.5-pyhd8ed1ab_0.conda hash: md5: c3c9316209dec74a705a36797970c6be sha256: 963524de7340c56615583ba7b97a6beb20d5c56a59defb59724dc2a3105169c9 @@ -3456,7 +3511,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://repo.prefix.dev/conda-forge/noarch/pytest-8.3.5-pyhd8ed1ab_0.conda hash: md5: c3c9316209dec74a705a36797970c6be sha256: 963524de7340c56615583ba7b97a6beb20d5c56a59defb59724dc2a3105169c9 @@ -3471,7 +3526,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://repo.prefix.dev/conda-forge/noarch/pytest-cov-6.1.1-pyhd8ed1ab_0.conda hash: md5: 1e35d8f975bc0e984a19819aa91c440a sha256: 9961a1524f63d10bc29efdc52013ec06b0e95fb2619a250e250ff3618261d5cd @@ -3486,7 +3541,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://repo.prefix.dev/conda-forge/noarch/pytest-cov-6.1.1-pyhd8ed1ab_0.conda hash: md5: 1e35d8f975bc0e984a19819aa91c440a sha256: 9961a1524f63d10bc29efdc52013ec06b0e95fb2619a250e250ff3618261d5cd @@ -3515,7 +3570,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://repo.prefix.dev/conda-forge/linux-64/python-3.12.10-h9e4cc4f_0_cpython.conda hash: md5: a41d26cd4d47092d683915d058380dec sha256: 4dc1da115805bd353bded6ab20ff642b6a15fcc72ac2f3de0e1d014ff3612221 @@ -3539,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/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 @@ -3552,7 +3607,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://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda hash: md5: 5ba79d7c71f03c678c8ead841f347d6e sha256: a50052536f1ef8516ed11a844f9413661829aa083304dc624c5925298d078d79 @@ -3565,7 +3620,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://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda hash: md5: 5ba79d7c71f03c678c8ead841f347d6e sha256: a50052536f1ef8516ed11a844f9413661829aa083304dc624c5925298d078d79 @@ -3583,7 +3638,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://repo.prefix.dev/conda-forge/linux-64/python-mumps-0.0.3-py312h6ad3ee3_0.conda hash: md5: 8755e9f1fee9ef390542f834aad6f85e sha256: a5897ce6cd551999957b11da404a16b362e5f761493560c1d68fb93b63bbe031 @@ -3602,7 +3657,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://repo.prefix.dev/conda-forge/win-64/python-mumps-0.0.3-py312h8095395_0.conda hash: md5: 7945c283a26d63be8f8a364bbd721099 sha256: 0e518ca1714fa781ffb92ca2e90fd0f12a6033ab79f7013e22fdc4a82e2eee0f @@ -3613,10 +3668,10 @@ 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://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 @@ -3624,10 +3679,10 @@ 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://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 @@ -3636,7 +3691,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://repo.prefix.dev/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda hash: md5: bc8e3267d44011051f2eb14d22fb0960 sha256: 8d2a8bf110cc1fc3df6904091dead158ba3e614d8402a83e51ed3a8aa93cdeb0 @@ -3648,7 +3703,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://repo.prefix.dev/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda hash: md5: bc8e3267d44011051f2eb14d22fb0960 sha256: 8d2a8bf110cc1fc3df6904091dead158ba3e614d8402a83e51ed3a8aa93cdeb0 @@ -3664,7 +3719,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://repo.prefix.dev/conda-forge/linux-64/pyyaml-6.0.2-py312h178313f_2.conda hash: md5: cf2485f39740de96e2a7f2bb18ed2fee sha256: 159cba13a93b3fe084a1eb9bda0a07afc9148147647f0d437c3c3da60980503b @@ -3681,7 +3736,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://repo.prefix.dev/conda-forge/win-64/pyyaml-6.0.2-py312h31fea79_2.conda hash: md5: ba00a2e5059c1fde96459858537cc8f5 sha256: 76fec03ef7e67e37724873e1f805131fb88efb57f19e9a77b4da616068ef5c28 @@ -3694,7 +3749,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://repo.prefix.dev/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda hash: md5: 283b96675859b20a825f8fa30f311446 sha256: 2d6d0c026902561ed77cd646b5021aef2d4db22e57a5b0178dfc669231e06d2c @@ -3709,7 +3764,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://repo.prefix.dev/conda-forge/noarch/readthedocs-sphinx-ext-2.2.5-pyhd8ed1ab_1.conda hash: md5: 42840a95562a02bef45e7b7fb24dcba4 sha256: e391356581919077b1639ebd13f4cbb0773acfd5710cfe4188921e8a0387dc6b @@ -3724,7 +3779,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://repo.prefix.dev/conda-forge/noarch/readthedocs-sphinx-ext-2.2.5-pyhd8ed1ab_1.conda hash: md5: 42840a95562a02bef45e7b7fb24dcba4 sha256: e391356581919077b1639ebd13f4cbb0773acfd5710cfe4188921e8a0387dc6b @@ -3740,7 +3795,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://repo.prefix.dev/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda hash: md5: a9b9368f3701a417eac9edbcae7cb737 sha256: d701ca1136197aa121bbbe0e8c18db6b5c94acbd041c2b43c70e5ae104e1d8ad @@ -3756,7 +3811,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://repo.prefix.dev/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda hash: md5: a9b9368f3701a417eac9edbcae7cb737 sha256: d701ca1136197aa121bbbe0e8c18db6b5c94acbd041c2b43c70e5ae104e1d8ad @@ -3770,7 +3825,7 @@ package: libspatialindex: '>=2.0.0,<2.0.1.0a0' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://packages.prefix.dev/conda-forge/linux-64/rtree-1.2.0-py312h3ed4c40_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/rtree-1.2.0-py312h3ed4c40_1.conda hash: md5: 99780d5aa94447bc17298a22565ad592 sha256: 2936fc466bac7dd43b80072440b2daaa1e76db504e2218b76a4e3b7528acb196 @@ -3784,7 +3839,7 @@ package: libspatialindex: '>=2.0.0,<2.0.1.0a0' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://packages.prefix.dev/conda-forge/win-64/rtree-1.2.0-py312h50e5f8f_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/rtree-1.2.0-py312h50e5f8f_1.conda hash: md5: bf074df5a51c193b2d14d13c1bf404a3 sha256: c0cdbd6ede905c2ff0c6c86277bac5f8967da373185649d47984bb4ee21f72fb @@ -3804,7 +3859,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://repo.prefix.dev/conda-forge/linux-64/scikit-learn-1.4.2-py312h1fcc3ea_1.conda hash: md5: e6610a08bdbc02525c597e555da55a3a sha256: c2676b9aa8380a4d7e10a815cfc684a66fe312234841574397283d09eba45578 @@ -3824,7 +3879,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://repo.prefix.dev/conda-forge/win-64/scikit-learn-1.4.2-py312h816cc57_1.conda hash: md5: 9d5234a79af607372f44932132ca2c29 sha256: b89ae982911b956158e474777ce7d568da946db0aad91d7aa9686641b7080b9f @@ -3843,10 +3898,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://repo.prefix.dev/conda-forge/linux-64/scipy-1.14.1-py312h62794b6_2.conda hash: md5: 94688dd449f6c092e5f951780235aca1 sha256: 6e4916d610dc15f9b504517bd6c1f3dbbae019a3c7abf0aeb55f310c452a4474 @@ -3860,40 +3915,40 @@ 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://repo.prefix.dev/conda-forge/win-64/scipy-1.14.1-py312h337df96_2.conda hash: md5: 3ef0017e79039d4767ba3b4891113a07 sha256: eb67adcca33026895b6539d02e1bc01f495e1d593a26053d734fe7a180e708f4 category: main optional: false - name: setuptools - version: 78.1.0 + version: 79.0.1 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/setuptools-78.1.0-pyhff2d567_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/setuptools-79.0.1-pyhff2d567_0.conda hash: - md5: a42da9837e46c53494df0044c3eb1f53 - sha256: d4c74d2140f2fbc72fe5320cbd65f3fd1d1f7832ab4d7825c37c38ab82440ae2 + md5: fa6669cc21abd4b7b6c5393b7bc71914 + sha256: 5ebc4bb71fbdc8048b08848519150c8d44b8eb18445711d3258c9d402ba87a2c category: main optional: false - name: setuptools - version: 78.1.0 + version: 79.0.1 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/setuptools-78.1.0-pyhff2d567_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/setuptools-79.0.1-pyhff2d567_0.conda hash: - md5: a42da9837e46c53494df0044c3eb1f53 - sha256: d4c74d2140f2fbc72fe5320cbd65f3fd1d1f7832ab4d7825c37c38ab82440ae2 + md5: fa6669cc21abd4b7b6c5393b7bc71914 + sha256: 5ebc4bb71fbdc8048b08848519150c8d44b8eb18445711d3258c9d402ba87a2c category: main optional: false - name: six @@ -3902,7 +3957,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://repo.prefix.dev/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda hash: md5: a451d576819089b0d672f18768be0f65 sha256: 41db0180680cc67c3fa76544ffd48d6a5679d96f4b71d7498a759e94edc9a2db @@ -3914,7 +3969,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://repo.prefix.dev/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda hash: md5: a451d576819089b0d672f18768be0f65 sha256: 41db0180680cc67c3fa76544ffd48d6a5679d96f4b71d7498a759e94edc9a2db @@ -3926,7 +3981,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://repo.prefix.dev/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 4d22a9315e78c6827f806065957d566e sha256: a0fd916633252d99efb6223b1050202841fa8d2d53dacca564b0ed77249d3228 @@ -3938,7 +3993,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://repo.prefix.dev/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 4d22a9315e78c6827f806065957d566e sha256: a0fd916633252d99efb6223b1050202841fa8d2d53dacca564b0ed77249d3228 @@ -3950,7 +4005,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://repo.prefix.dev/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_1.conda hash: md5: 0401a17ae845fa72c7210e206ec5647d sha256: d1e3e06b5cf26093047e63c8cc77b70d970411c5cbc0cb1fad461a8a8df599f7 @@ -3962,7 +4017,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://repo.prefix.dev/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_1.conda hash: md5: 0401a17ae845fa72c7210e206ec5647d sha256: d1e3e06b5cf26093047e63c8cc77b70d970411c5cbc0cb1fad461a8a8df599f7 @@ -3991,7 +4046,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://repo.prefix.dev/conda-forge/noarch/sphinx-5.3.0-pyhd8ed1ab_0.tar.bz2 hash: md5: f9e1fcfe235d655900bfeb6aee426472 sha256: f11fd5fb4ae2c65f41ae86e7408e3ab44844898d928264aa9e89929fffc685c8 @@ -4020,7 +4075,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://repo.prefix.dev/conda-forge/noarch/sphinx-5.3.0-pyhd8ed1ab_0.tar.bz2 hash: md5: f9e1fcfe235d655900bfeb6aee426472 sha256: f11fd5fb4ae2c65f41ae86e7408e3ab44844898d928264aa9e89929fffc685c8 @@ -4033,7 +4088,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 16e3f039c0aa6446513e94ab18a8784b sha256: d7433a344a9ad32a680b881c81b0034bc61618d12c39dd6e3309abeffa9577ba @@ -4046,7 +4101,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 16e3f039c0aa6446513e94ab18a8784b sha256: d7433a344a9ad32a680b881c81b0034bc61618d12c39dd6e3309abeffa9577ba @@ -4059,7 +4114,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 910f28a05c178feba832f842155cbfff sha256: 55d5076005d20b84b20bee7844e686b7e60eb9f683af04492e598a622b12d53d @@ -4072,7 +4127,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 910f28a05c178feba832f842155cbfff sha256: 55d5076005d20b84b20bee7844e686b7e60eb9f683af04492e598a622b12d53d @@ -4085,7 +4140,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_1.conda hash: md5: e9fb3fe8a5b758b4aff187d434f94f03 sha256: c1492c0262ccf16694bdcd3bb62aa4627878ea8782d5cd3876614ffeb62b3996 @@ -4098,7 +4153,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_1.conda hash: md5: e9fb3fe8a5b758b4aff187d434f94f03 sha256: c1492c0262ccf16694bdcd3bb62aa4627878ea8782d5cd3876614ffeb62b3996 @@ -4110,7 +4165,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_1.conda hash: md5: fa839b5ff59e192f411ccc7dae6588bb sha256: 578bef5ec630e5b2b8810d898bbbf79b9ae66d49b7938bcc3efc364e679f2a62 @@ -4122,7 +4177,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_1.conda hash: md5: fa839b5ff59e192f411ccc7dae6588bb sha256: 578bef5ec630e5b2b8810d898bbbf79b9ae66d49b7938bcc3efc364e679f2a62 @@ -4135,7 +4190,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 00534ebcc0375929b45c3039b5ba7636 sha256: c664fefae4acdb5fae973bdde25836faf451f41d04342b64a358f9a7753c92ca @@ -4148,7 +4203,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 00534ebcc0375929b45c3039b5ba7636 sha256: c664fefae4acdb5fae973bdde25836faf451f41d04342b64a358f9a7753c92ca @@ -4161,7 +4216,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda hash: md5: 3bc61f7161d28137797e038263c04c54 sha256: 64d89ecc0264347486971a94487cb8d7c65bfc0176750cf7502b8a272f4ab557 @@ -4174,7 +4229,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda hash: md5: 3bc61f7161d28137797e038263c04c54 sha256: 64d89ecc0264347486971a94487cb8d7c65bfc0176750cf7502b8a272f4ab557 @@ -4189,7 +4244,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://repo.prefix.dev/conda-forge/linux-64/tbb-2021.13.0-hceb3a55_1.conda hash: md5: ba7726b8df7b9d34ea80e82b097a4893 sha256: 65463732129899770d54b1fbf30e1bb82fdebda9d7553caf08d23db4590cd691 @@ -4204,7 +4259,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://repo.prefix.dev/conda-forge/win-64/tbb-2021.13.0-h62715c5_1.conda hash: md5: 9190dd0a23d925f7602f9628b3aed511 sha256: 03cc5442046485b03dd1120d0f49d35a7e522930a2ab82f275e938e17b07b302 @@ -4216,7 +4271,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://repo.prefix.dev/conda-forge/noarch/tblib-3.1.0-pyhd8ed1ab_0.conda hash: md5: a15c62b8a306b8978f094f76da2f903f sha256: a83c83f5e622a2f34fb1d179c55c3ff912429cd0a54f9f3190ae44a0fdba2ad2 @@ -4228,7 +4283,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://repo.prefix.dev/conda-forge/noarch/tblib-3.1.0-pyhd8ed1ab_0.conda hash: md5: a15c62b8a306b8978f094f76da2f903f sha256: a83c83f5e622a2f34fb1d179c55c3ff912429cd0a54f9f3190ae44a0fdba2ad2 @@ -4240,7 +4295,7 @@ package: platform: linux-64 dependencies: python: '>=3.8' - url: https://packages.prefix.dev/conda-forge/noarch/threadpoolctl-3.3.0-pyhc1e730c_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/threadpoolctl-3.3.0-pyhc1e730c_0.conda hash: md5: 698d2d2b621640bddb9191f132967c9f sha256: 5ba8bd3f2d49b3b860eb4481ca9505c57d4427212eb12cadd2b351309d5c28e6 @@ -4252,7 +4307,7 @@ package: platform: win-64 dependencies: python: '>=3.8' - url: https://packages.prefix.dev/conda-forge/noarch/threadpoolctl-3.3.0-pyhc1e730c_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/threadpoolctl-3.3.0-pyhc1e730c_0.conda hash: md5: 698d2d2b621640bddb9191f132967c9f sha256: 5ba8bd3f2d49b3b860eb4481ca9505c57d4427212eb12cadd2b351309d5c28e6 @@ -4265,7 +4320,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://repo.prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda hash: md5: d453b98d9c83e71da0741bb0ff4d76bc sha256: e0569c9caa68bf476bead1bed3d79650bb080b532c64a4af7d8ca286c08dea4e @@ -4279,7 +4334,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://repo.prefix.dev/conda-forge/win-64/tk-8.6.13-h5226925_1.conda hash: md5: fc048363eb8f03cd1737600a5d08aafe sha256: 2c4e914f521ccb2718946645108c9bd3fc3216ba69aea20c2c3cedbd8db32bb1 @@ -4291,7 +4346,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://repo.prefix.dev/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_1.conda hash: md5: b0dd904de08b7db706167240bf37b164 sha256: 34f3a83384ac3ac30aefd1309e69498d8a4aa0bf2d1f21c645f79b180e378938 @@ -4303,7 +4358,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://repo.prefix.dev/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_1.conda hash: md5: b0dd904de08b7db706167240bf37b164 sha256: 34f3a83384ac3ac30aefd1309e69498d8a4aa0bf2d1f21c645f79b180e378938 @@ -4315,7 +4370,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://repo.prefix.dev/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda hash: md5: ac944244f1fed2eb49bae07193ae8215 sha256: 18636339a79656962723077df9a56c0ac7b8a864329eb8f847ee3d38495b863e @@ -4327,7 +4382,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://repo.prefix.dev/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda hash: md5: ac944244f1fed2eb49bae07193ae8215 sha256: 18636339a79656962723077df9a56c0ac7b8a864329eb8f847ee3d38495b863e @@ -4339,7 +4394,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://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.2-pyha770c72_1.conda hash: md5: 1d9ab4fc875c52db83f9c9b40af4e2c8 sha256: 986fae65f5568e95dbf858d08d77a0f9cca031345a98550f1d4b51d36d8811e2 @@ -4351,7 +4406,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://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.2-pyha770c72_1.conda hash: md5: 1d9ab4fc875c52db83f9c9b40af4e2c8 sha256: 986fae65f5568e95dbf858d08d77a0f9cca031345a98550f1d4b51d36d8811e2 @@ -4363,7 +4418,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://repo.prefix.dev/conda-forge/noarch/toolz-1.0.0-pyhd8ed1ab_1.conda hash: md5: 40d0ed782a8aaa16ef248e68c06c168d sha256: eda38f423c33c2eaeca49ed946a8d3bf466cc3364970e083a65eb2fd85258d87 @@ -4375,7 +4430,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://repo.prefix.dev/conda-forge/noarch/toolz-1.0.0-pyhd8ed1ab_1.conda hash: md5: 40d0ed782a8aaa16ef248e68c06c168d sha256: eda38f423c33c2eaeca49ed946a8d3bf466cc3364970e083a65eb2fd85258d87 @@ -4390,7 +4445,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://repo.prefix.dev/conda-forge/linux-64/tornado-6.4.2-py312h66e93f0_0.conda hash: md5: e417822cb989e80a0d2b1b576fdd1657 sha256: 062a3a3a37fa8615ce57929ba7e982c76f5a5810bcebd435950f6d6c4147c310 @@ -4406,7 +4461,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://repo.prefix.dev/conda-forge/win-64/tornado-6.4.2-py312h4389bb4_0.conda hash: md5: f06104f71f496b0784b35b23e30e7990 sha256: e21f24e5d598d9a31c604f510c82fbe73d756696bc70a69f11811a2ea9dd5d95 @@ -4419,7 +4474,7 @@ package: dependencies: colorama: '' python: '>=3.9' - url: https://packages.prefix.dev/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 @@ -4432,7 +4487,7 @@ package: dependencies: colorama: '' python: '>=3.9' - url: https://packages.prefix.dev/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 @@ -4445,7 +4500,7 @@ package: dependencies: numpy: '' python: '>=2.7' - url: https://packages.prefix.dev/conda-forge/noarch/trimesh-4.1.8-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/trimesh-4.1.8-pyhd8ed1ab_0.conda hash: md5: 78302527eb6c9d18b07a91e6a72ef957 sha256: 021110c37eca2f0fca85ba6ac4576c509d23079758f63942e2f9a6954282f2ce @@ -4458,7 +4513,7 @@ package: dependencies: numpy: '' python: '>=2.7' - url: https://packages.prefix.dev/conda-forge/noarch/trimesh-4.1.8-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/trimesh-4.1.8-pyhd8ed1ab_0.conda hash: md5: 78302527eb6c9d18b07a91e6a72ef957 sha256: 021110c37eca2f0fca85ba6ac4576c509d23079758f63942e2f9a6954282f2ce @@ -4470,7 +4525,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://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.13.2-h0e9735f_0.conda hash: md5: 568ed1300869dca0ba09fb750cda5dbb sha256: 4865fce0897d3cb0ffc8998219157a8325f6011c136e6fd740a9a6b169419296 @@ -4482,7 +4537,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://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.13.2-h0e9735f_0.conda hash: md5: 568ed1300869dca0ba09fb750cda5dbb sha256: 4865fce0897d3cb0ffc8998219157a8325f6011c136e6fd740a9a6b169419296 @@ -4495,7 +4550,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://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.0-pyhd8ed1ab_0.conda hash: md5: c5c76894b6b7bacc888ba25753bc8677 sha256: 172f971d70e1dbb978f6061d3f72be463d0f629155338603450d8ffe87cbf89d @@ -4508,7 +4563,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://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.0-pyhd8ed1ab_0.conda hash: md5: c5c76894b6b7bacc888ba25753bc8677 sha256: 172f971d70e1dbb978f6061d3f72be463d0f629155338603450d8ffe87cbf89d @@ -4519,8 +4574,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://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.13.2-pyh29332c3_0.conda hash: md5: 83fc6ae00127671e301c9f44254c31b8 sha256: a8aaf351e6461de0d5d47e4911257e25eec2fa409d71f3b643bb2f748bde1c08 @@ -4531,8 +4586,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://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.13.2-pyh29332c3_0.conda hash: md5: 83fc6ae00127671e301c9f44254c31b8 sha256: a8aaf351e6461de0d5d47e4911257e25eec2fa409d71f3b643bb2f748bde1c08 @@ -4543,7 +4598,7 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://packages.prefix.dev/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 @@ -4554,7 +4609,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://packages.prefix.dev/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 @@ -4565,7 +4620,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://repo.prefix.dev/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_1.conda hash: md5: 6797b005cd0f439c4c5c9ac565783700 sha256: db8dead3dd30fb1a032737554ce91e2819b43496a0db09927edf01c32b577450 @@ -4580,7 +4635,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://repo.prefix.dev/conda-forge/linux-64/unicodedata2-16.0.0-py312h66e93f0_0.conda hash: md5: 617f5d608ff8c28ad546e5d9671cbb95 sha256: 638916105a836973593547ba5cf4891d1f2cb82d1cf14354fcef93fd5b941cdc @@ -4596,7 +4651,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://repo.prefix.dev/conda-forge/win-64/unicodedata2-16.0.0-py312h4389bb4_0.conda hash: md5: 3b124c38c7852704ba6a42a170c152a1 sha256: 0889ccb541d0b63cbf42ea5b1f1686b772e872bfcddd3a18787dc4437ebbd7c6 @@ -4612,7 +4667,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://repo.prefix.dev/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda hash: md5: c1e349028e0052c4eea844e94f773065 sha256: a25403b76f7f03ca1a906e1ef0f88521edded991b9897e7fed56a3e334b3db8c @@ -4628,7 +4683,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://repo.prefix.dev/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda hash: md5: c1e349028e0052c4eea844e94f773065 sha256: a25403b76f7f03ca1a906e1ef0f88521edded991b9897e7fed56a3e334b3db8c @@ -4640,7 +4695,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://repo.prefix.dev/conda-forge/win-64/vc-14.3-h2b53caa_26.conda hash: md5: d3f0381e38093bde620a8d85f266ae55 sha256: 7a685b5c37e9713fa314a0d26b8b1d7a2e6de5ab758698199b5d5b6dba2e3ce1 @@ -4652,7 +4707,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://repo.prefix.dev/conda-forge/win-64/vc14_runtime-14.42.34438-hfd919c2_26.conda hash: md5: 91651a36d31aa20c7ba36299fb7068f4 sha256: 30dcb71bb166e351aadbdc18f1718757c32cdaa0e1e5d9368469ee44f6bf4709 @@ -4664,7 +4719,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://repo.prefix.dev/conda-forge/win-64/vs2015_runtime-14.42.34438-h7142326_26.conda hash: md5: 3357e4383dbce31eed332008ede242ab sha256: 432f2937206f1ad4a77e39f84fabc1ce7d2472b669836fb72bd2bfd19a2defc9 @@ -4676,7 +4731,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://repo.prefix.dev/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda hash: md5: 75cb7132eb58d97896e173ef12ac9986 sha256: 1b34021e815ff89a4d902d879c3bd2040bc1bd6169b32e9427497fa05c55f1ce @@ -4688,7 +4743,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://repo.prefix.dev/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda hash: md5: 75cb7132eb58d97896e173ef12ac9986 sha256: 1b34021e815ff89a4d902d879c3bd2040bc1bd6169b32e9427497fa05c55f1ce @@ -4701,7 +4756,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://repo.prefix.dev/conda-forge/noarch/win_inet_pton-1.1.0-pyh7428d3b_8.conda hash: md5: 46e441ba871f524e2b067929da3051c2 sha256: 93807369ab91f230cf9e6e2a237eaa812492fe00face5b38068735858fba954f @@ -4716,7 +4771,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://repo.prefix.dev/conda-forge/linux-64/wrapt-1.17.2-py312h66e93f0_0.conda hash: md5: 669e63af87710f8d52fdec9d4d63b404 sha256: ed3a1700ecc5d38c7e7dc7d2802df1bc1da6ba3d6f6017448b8ded0affb4ae00 @@ -4732,7 +4787,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://repo.prefix.dev/conda-forge/win-64/wrapt-1.17.2-py312h4389bb4_0.conda hash: md5: b9a81b36e0d35c9a172587ead532273b sha256: a1b86d727cc5f9d016a6fc9d8ac8b3e17c8e137764e018555ecadef05979ce93 @@ -4745,7 +4800,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://repo.prefix.dev/conda-forge/linux-64/xorg-libxau-1.0.12-hb9d3cd8_0.conda hash: md5: f6ebe2cb3f82ba6c057dde5d9debe4f7 sha256: ed10c9283974d311855ae08a16dfd7e56241fac632aec3b92e3cfe73cff31038 @@ -4759,7 +4814,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://repo.prefix.dev/conda-forge/win-64/xorg-libxau-1.0.12-h0e40799_0.conda hash: md5: 2ffbfae4548098297c033228256eb96e sha256: 047836241b2712aab1e29474a6f728647bff3ab57de2806b0bb0a6cf9a2d2634 @@ -4772,7 +4827,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://repo.prefix.dev/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb9d3cd8_0.conda hash: md5: 8035c64cb77ed555e3f150b7b3972480 sha256: 6b250f3e59db07c2514057944a3ea2044d6a8cdde8a47b6497c254520fade1ee @@ -4786,7 +4841,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://repo.prefix.dev/conda-forge/win-64/xorg-libxdmcp-1.1.5-h0e40799_0.conda hash: md5: 8393c0f7e7870b4eb45553326f81f0ff sha256: 9075f98dcaa8e9957e4a3d9d30db05c7578a536950a31c200854c5c34e1edb2c @@ -4798,7 +4853,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://repo.prefix.dev/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2 hash: md5: 4cb3ad778ec2d5a7acbdf254eb1c42ae sha256: a4e34c710eeb26945bdbdaba82d3d74f60a78f54a874ec10d373811a5d217535 @@ -4811,7 +4866,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://repo.prefix.dev/conda-forge/win-64/yaml-0.2.5-h8ffe710_2.tar.bz2 hash: md5: adbfb9f45d1004a26763652246a33764 sha256: 4e2246383003acbad9682c7c63178e2e715ad0eb84f03a8df1fbfba455dfedc5 @@ -4827,7 +4882,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://repo.prefix.dev/conda-forge/noarch/zarr-2.14.2-pyhd8ed1ab_0.conda hash: md5: 0c5776fe65a12a421d7ddf90411a6c3f sha256: 0f029f7efea00b8258782b5e68989fc140c227e6d9edd231d46fdd954b39d23f @@ -4843,7 +4898,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://repo.prefix.dev/conda-forge/noarch/zarr-2.14.2-pyhd8ed1ab_0.conda hash: md5: 0c5776fe65a12a421d7ddf90411a6c3f sha256: 0f029f7efea00b8258782b5e68989fc140c227e6d9edd231d46fdd954b39d23f @@ -4855,7 +4910,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://repo.prefix.dev/conda-forge/noarch/zict-3.0.0-pyhd8ed1ab_1.conda hash: md5: e52c2ef711ccf31bb7f70ca87d144b9e sha256: 5488542dceeb9f2874e726646548ecc5608060934d6f9ceaa7c6a48c61f9cc8d @@ -4867,7 +4922,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://repo.prefix.dev/conda-forge/noarch/zict-3.0.0-pyhd8ed1ab_1.conda hash: md5: e52c2ef711ccf31bb7f70ca87d144b9e sha256: 5488542dceeb9f2874e726646548ecc5608060934d6f9ceaa7c6a48c61f9cc8d @@ -4879,7 +4934,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://repo.prefix.dev/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda hash: md5: 0c3cc595284c5e8f0f9900a9b228a332 sha256: 567c04f124525c97a096b65769834b7acb047db24b15a56888a322bf3966c3e1 @@ -4891,7 +4946,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://repo.prefix.dev/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda hash: md5: 0c3cc595284c5e8f0f9900a9b228a332 sha256: 567c04f124525c97a096b65769834b7acb047db24b15a56888a322bf3966c3e1 @@ -4907,10 +4962,10 @@ 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://repo.prefix.dev/conda-forge/linux-64/zstandard-0.23.0-py312h66e93f0_2.conda hash: - md5: d28b82fcc8d1b462b595af4b15a6cdcf - sha256: b4fd6bd1cb87a183a8bbe85b4e87a1e7c51473309d0d82cd88d38fb021bcf41e + md5: 630db208bc7bbb96725ce9832c7423bb + sha256: ff62d2e1ed98a3ec18de7e5cf26c0634fd338cb87304cf03ad8cbafe6fe674ba category: main optional: false - name: zstandard @@ -4924,10 +4979,10 @@ 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://repo.prefix.dev/conda-forge/win-64/zstandard-0.23.0-py312h4389bb4_2.conda hash: - md5: 5028543ffb67666ca4fc3ebd620c97b8 - sha256: 17f2abbda821be146b549498fab3d0eb9cafb210e163b983524db91524b8dcb5 + md5: 24554d76d0efcca11faa0a013c16ed5a + sha256: 10f25f85f856dbc776b4a2cf801d31edd07cbfaa45b9cca14dd776a9f2887cb5 category: main optional: false - name: zstd @@ -4939,7 +4994,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://repo.prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb8e6e7a_2.conda hash: md5: 6432cb5d4ac0046c3ac0a8a0f95842f9 sha256: a4166e3d8ff4e35932510aaff7aa90772f84b4d07e9f6f83c614cba7ceefe0eb @@ -4954,7 +5009,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/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 @@ -4965,16 +5020,16 @@ package: manager: pip platform: linux-64 dependencies: - geoh5py: 0.11.0-alpha.3 + geoh5py: 0.11.0-alpha.5 numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@7a04b6e280309e649b2811d47168de3fd6ddf61b + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@06ee42f5f4767bb6e6da56b919f631722f6fdf36 hash: - sha256: 7a04b6e280309e649b2811d47168de3fd6ddf61b + sha256: 06ee42f5f4767bb6e6da56b919f631722f6fdf36 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@7a04b6e280309e649b2811d47168de3fd6ddf61b + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@06ee42f5f4767bb6e6da56b919f631722f6fdf36 category: main optional: false - name: geoapps-utils @@ -4982,20 +5037,20 @@ package: manager: pip platform: win-64 dependencies: - geoh5py: 0.11.0-alpha.3 + geoh5py: 0.11.0-alpha.5 numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@7a04b6e280309e649b2811d47168de3fd6ddf61b + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@06ee42f5f4767bb6e6da56b919f631722f6fdf36 hash: - sha256: 7a04b6e280309e649b2811d47168de3fd6ddf61b + sha256: 06ee42f5f4767bb6e6da56b919f631722f6fdf36 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@7a04b6e280309e649b2811d47168de3fd6ddf61b + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@06ee42f5f4767bb6e6da56b919f631722f6fdf36 category: main optional: false - name: geoh5py - version: 0.11.0-alpha.3 + version: 0.11.0-alpha.5 manager: pip platform: linux-64 dependencies: @@ -5003,16 +5058,16 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@adfe3987a9637b148c440234e67df9c16315a8d6 + url: git+https://github.com/MiraGeoscience/geoh5py.git@55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 hash: - sha256: adfe3987a9637b148c440234e67df9c16315a8d6 + sha256: 55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@adfe3987a9637b148c440234e67df9c16315a8d6 + url: git+https://github.com/MiraGeoscience/geoh5py.git@55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 category: main optional: false - name: geoh5py - version: 0.11.0-alpha.3 + version: 0.11.0-alpha.5 manager: pip platform: win-64 dependencies: @@ -5020,16 +5075,16 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@adfe3987a9637b148c440234e67df9c16315a8d6 + url: git+https://github.com/MiraGeoscience/geoh5py.git@55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 hash: - sha256: adfe3987a9637b148c440234e67df9c16315a8d6 + sha256: 55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@adfe3987a9637b148c440234e67df9c16315a8d6 + url: git+https://github.com/MiraGeoscience/geoh5py.git@55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 category: main optional: false - name: mira-simpeg - version: 0.23.0.1a1 + version: 0.23.0.1a3 manager: pip platform: linux-64 dependencies: @@ -5044,16 +5099,13 @@ package: pymatsolver: '>=0.3' scipy: '>=1.8' zarr: '*' - url: git+https://github.com/MiraGeoscience/simpeg.git@ad5b2c663795d29216d127679ee121fb13a4d78b + url: https://files.pythonhosted.org/packages/a9/f1/225e442cdcbbeb6786ec9eb456f86f95b30f515addea1df6f453af899120/mira_simpeg-0.23.0.1a3-py3-none-any.whl hash: - sha256: ad5b2c663795d29216d127679ee121fb13a4d78b - source: - type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@ad5b2c663795d29216d127679ee121fb13a4d78b + sha256: 14467e65d801e082bac8a4d972a30b162018df27d06310fb1f2c6960968f88d2 category: main optional: false - name: mira-simpeg - version: 0.23.0.1a1 + version: 0.23.0.1a3 manager: pip platform: win-64 dependencies: @@ -5068,50 +5120,47 @@ package: pymatsolver: '>=0.3' scipy: '>=1.8' zarr: '*' - url: git+https://github.com/MiraGeoscience/simpeg.git@ad5b2c663795d29216d127679ee121fb13a4d78b + url: https://files.pythonhosted.org/packages/a9/f1/225e442cdcbbeb6786ec9eb456f86f95b30f515addea1df6f453af899120/mira_simpeg-0.23.0.1a3-py3-none-any.whl hash: - sha256: ad5b2c663795d29216d127679ee121fb13a4d78b - source: - type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@ad5b2c663795d29216d127679ee121fb13a4d78b + sha256: 14467e65d801e082bac8a4d972a30b162018df27d06310fb1f2c6960968f88d2 category: main optional: false - name: octree-creation-app - version: 0.3.0-alpha.2 + version: 0.3.0-alpha.3 manager: pip platform: linux-64 dependencies: discretize: ==0.11.* - geoapps-utils: 0.5.0-alpha.4 - geoh5py: 0.11.0-alpha.3 + 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: git+https://github.com/MiraGeoscience/octree-creation-app.git@45472488f4c20cc2b6fcbf36149cec938e1b0ebf + url: git+https://github.com/MiraGeoscience/octree-creation-app.git@80641c96ff4b3a7e67f25278c323c5f9f931982f hash: - sha256: 45472488f4c20cc2b6fcbf36149cec938e1b0ebf + sha256: 80641c96ff4b3a7e67f25278c323c5f9f931982f source: type: url - url: git+https://github.com/MiraGeoscience/octree-creation-app.git@45472488f4c20cc2b6fcbf36149cec938e1b0ebf + url: git+https://github.com/MiraGeoscience/octree-creation-app.git@80641c96ff4b3a7e67f25278c323c5f9f931982f category: main optional: false - name: octree-creation-app - version: 0.3.0-alpha.2 + version: 0.3.0-alpha.3 manager: pip platform: win-64 dependencies: discretize: ==0.11.* - geoapps-utils: 0.5.0-alpha.4 - geoh5py: 0.11.0-alpha.3 + 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: git+https://github.com/MiraGeoscience/octree-creation-app.git@45472488f4c20cc2b6fcbf36149cec938e1b0ebf + url: git+https://github.com/MiraGeoscience/octree-creation-app.git@80641c96ff4b3a7e67f25278c323c5f9f931982f hash: - sha256: 45472488f4c20cc2b6fcbf36149cec938e1b0ebf + sha256: 80641c96ff4b3a7e67f25278c323c5f9f931982f source: type: url - url: git+https://github.com/MiraGeoscience/octree-creation-app.git@45472488f4c20cc2b6fcbf36149cec938e1b0ebf + url: git+https://github.com/MiraGeoscience/octree-creation-app.git@80641c96ff4b3a7e67f25278c323c5f9f931982f category: main optional: false - name: param-sweeps @@ -5119,14 +5168,14 @@ package: manager: pip platform: linux-64 dependencies: - geoh5py: 0.11.0-alpha.3 + geoh5py: 0.11.0-alpha.5 numpy: '>=1.26.0,<1.27.0' - url: git+https://github.com/MiraGeoscience/param-sweeps.git@4d0f8262ebb21c803c745fe85583d5cc5ce7d3e6 + url: git+https://github.com/MiraGeoscience/param-sweeps.git@8d7db643fb6e43490b05e2e1d53caa9cdae07a10 hash: - sha256: 4d0f8262ebb21c803c745fe85583d5cc5ce7d3e6 + sha256: 8d7db643fb6e43490b05e2e1d53caa9cdae07a10 source: type: url - url: git+https://github.com/MiraGeoscience/param-sweeps.git@4d0f8262ebb21c803c745fe85583d5cc5ce7d3e6 + url: git+https://github.com/MiraGeoscience/param-sweeps.git@8d7db643fb6e43490b05e2e1d53caa9cdae07a10 category: main optional: false - name: param-sweeps @@ -5134,69 +5183,69 @@ package: manager: pip platform: win-64 dependencies: - geoh5py: 0.11.0-alpha.3 + geoh5py: 0.11.0-alpha.5 numpy: '>=1.26.0,<1.27.0' - url: git+https://github.com/MiraGeoscience/param-sweeps.git@4d0f8262ebb21c803c745fe85583d5cc5ce7d3e6 + url: git+https://github.com/MiraGeoscience/param-sweeps.git@8d7db643fb6e43490b05e2e1d53caa9cdae07a10 hash: - sha256: 4d0f8262ebb21c803c745fe85583d5cc5ce7d3e6 + sha256: 8d7db643fb6e43490b05e2e1d53caa9cdae07a10 source: type: url - url: git+https://github.com/MiraGeoscience/param-sweeps.git@4d0f8262ebb21c803c745fe85583d5cc5ce7d3e6 + url: git+https://github.com/MiraGeoscience/param-sweeps.git@8d7db643fb6e43490b05e2e1d53caa9cdae07a10 category: main optional: false - name: simpeg-drivers - version: 0.3.0-alpha.2 + version: 0.3.0-alpha.6 manager: pip platform: linux-64 dependencies: - dask-core: ==2025.3.* + dask: '>=2025.3,<2025.4.dev' discretize: ==0.11.* - distributed: ==2025.3.* - geoapps-utils: 0.5.0-alpha.4 - geoh5py: 0.11.0-alpha.3 - mira-simpeg: 0.23.0.1a1 + distributed: '>=2025.3,<2025.4.dev' + geoapps-utils: '>=0.5.0a3,<0.6.dev' + geoh5py: '>=0.11.0a3,<0.12.dev' + mira-simpeg: '>=0.23.0.1a3,<0.23.1.dev' numpy: '>=1.26.0,<1.27.0' - octree-creation-app: 0.3.0-alpha.2 - param-sweeps: 0.2.1-alpha.2 + octree-creation-app: '>=0.3.0a1,<0.4.dev' + param-sweeps: '>=0.2.1a1,<0.3.dev' pydantic: '>=2.5.2,<3.0.0' pydiso: '>=0.1.0,<0.2.dev' python-mumps: '>=0.0.3,<0.0.4.dev' scikit-learn: '>=1.4.0,<1.5.0' scipy: '>=1.14.0,<1.15.0' tqdm: '>=4.66.1,<5.0.0' - url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@9e925c47f9572837d2b9bbc880362aed0c0e4ab8 + url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@cef51c8544871aaf9cff890c1ffc9c5cb4516359 hash: - sha256: 9e925c47f9572837d2b9bbc880362aed0c0e4ab8 + sha256: cef51c8544871aaf9cff890c1ffc9c5cb4516359 source: type: url - url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@9e925c47f9572837d2b9bbc880362aed0c0e4ab8 + url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@cef51c8544871aaf9cff890c1ffc9c5cb4516359 category: main optional: false - name: simpeg-drivers - version: 0.3.0-alpha.2 + version: 0.3.0-alpha.6 manager: pip platform: win-64 dependencies: - dask-core: ==2025.3.* + dask: '>=2025.3,<2025.4.dev' discretize: ==0.11.* - distributed: ==2025.3.* - geoapps-utils: 0.5.0-alpha.4 - geoh5py: 0.11.0-alpha.3 - mira-simpeg: 0.23.0.1a1 + distributed: '>=2025.3,<2025.4.dev' + geoapps-utils: '>=0.5.0a3,<0.6.dev' + geoh5py: '>=0.11.0a3,<0.12.dev' + mira-simpeg: '>=0.23.0.1a3,<0.23.1.dev' numpy: '>=1.26.0,<1.27.0' - octree-creation-app: 0.3.0-alpha.2 - param-sweeps: 0.2.1-alpha.2 + octree-creation-app: '>=0.3.0a1,<0.4.dev' + param-sweeps: '>=0.2.1a1,<0.3.dev' pydantic: '>=2.5.2,<3.0.0' pydiso: '>=0.1.0,<0.2.dev' python-mumps: '>=0.0.3,<0.0.4.dev' scikit-learn: '>=1.4.0,<1.5.0' scipy: '>=1.14.0,<1.15.0' tqdm: '>=4.66.1,<5.0.0' - url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@9e925c47f9572837d2b9bbc880362aed0c0e4ab8 + url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@cef51c8544871aaf9cff890c1ffc9c5cb4516359 hash: - sha256: 9e925c47f9572837d2b9bbc880362aed0c0e4ab8 + sha256: cef51c8544871aaf9cff890c1ffc9c5cb4516359 source: type: url - url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@9e925c47f9572837d2b9bbc880362aed0c0e4ab8 + url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@cef51c8544871aaf9cff890c1ffc9c5cb4516359 category: main optional: false From 53c13572dedb6afa636b203932814cbfcaafeced Mon Sep 17 00:00:00 2001 From: dominiquef Date: Tue, 29 Apr 2025 11:25:35 -0700 Subject: [PATCH 08/14] Rename all --- plate_simulation/driver.py | 6 +++--- .../mesh/{params.py => options.py} | 2 +- .../models/{params.py => options.py} | 12 +++++------ plate_simulation/models/plates.py | 4 ++-- plate_simulation/{params.py => options.py} | 10 +++++----- tests/models/events_test.py | 4 ++-- tests/models/params_test.py | 6 +++--- tests/models/plates_test.py | 6 +++--- tests/runtest/driver_test.py | 12 +++++------ tests/runtest/gravity_test.py | 20 +++++++++++-------- 10 files changed, 43 insertions(+), 39 deletions(-) rename plate_simulation/mesh/{params.py => options.py} (98%) rename plate_simulation/models/{params.py => options.py} (96%) rename plate_simulation/{params.py => options.py} (95%) diff --git a/plate_simulation/driver.py b/plate_simulation/driver.py index 723f3fe..65d1061 100644 --- a/plate_simulation/driver.py +++ b/plate_simulation/driver.py @@ -28,7 +28,7 @@ from plate_simulation.models.events import Anomaly, Erosion, Overburden from plate_simulation.models.plates import Plate from plate_simulation.models.series import DikeSwarm, Geology -from plate_simulation.params import PlateSimulationParams +from plate_simulation.options import PlateSimulationOptions from plate_simulation.utils import replicate @@ -44,7 +44,7 @@ class PlateSimulationDriver: :param survey: Survey object for the simulation """ - def __init__(self, params: PlateSimulationParams): + def __init__(self, params: PlateSimulationOptions): self.params = params self._surfaces: list[Surface] | None = None @@ -305,7 +305,7 @@ def start(ifile: str | Path | InputFile): return None with ifile.geoh5.open(mode="r+"): # type: ignore - params = PlateSimulationParams.build(ifile) + params = PlateSimulationOptions.build(ifile) return PlateSimulationDriver(params).run() diff --git a/plate_simulation/mesh/params.py b/plate_simulation/mesh/options.py similarity index 98% rename from plate_simulation/mesh/params.py rename to plate_simulation/mesh/options.py index d259b87..ed41468 100644 --- a/plate_simulation/mesh/params.py +++ b/plate_simulation/mesh/options.py @@ -14,7 +14,7 @@ from pydantic import BaseModel -class MeshParams(BaseModel): +class MeshOptions(BaseModel): """Core parameters for octree mesh creation.""" u_cell_size: float diff --git a/plate_simulation/models/params.py b/plate_simulation/models/options.py similarity index 96% rename from plate_simulation/models/params.py rename to plate_simulation/models/options.py index 3c4e13c..3b34ffa 100644 --- a/plate_simulation/models/params.py +++ b/plate_simulation/models/options.py @@ -23,7 +23,7 @@ T = TypeVar("T") -class PlateParams(BaseModel): +class PlateOptions(BaseModel): """ Parameters describing an anomalous plate. @@ -72,7 +72,7 @@ class PlateParams(BaseModel): @field_validator("reference_surface", "reference_type", mode="before") @classmethod def none_to_default(cls, value: T | None, info: ValidationInfo) -> T: - return value or cls.model_fields[info.field_name].default # type: ignore + return value or cls.model_fields[info.field_name].default # pylint: disable=unsubscriptable-object @model_validator(mode="after") def single_plate(self): @@ -132,7 +132,7 @@ def _get_z(self, surface: Points, offset: float = 0.0) -> float: return z -class OverburdenParams(BaseModel): +class OverburdenOptions(BaseModel): """ Parameters for the overburden layer. @@ -144,7 +144,7 @@ class OverburdenParams(BaseModel): overburden: float -class ModelParams(BaseModel): +class ModelOptions(BaseModel): """ Parameters for the blackground + overburden and plate model. @@ -158,5 +158,5 @@ class ModelParams(BaseModel): name: str background: float - overburden: OverburdenParams - plate: PlateParams + overburden: OverburdenOptions + plate: PlateOptions diff --git a/plate_simulation/models/plates.py b/plate_simulation/models/plates.py index e3cbafe..238ab1b 100644 --- a/plate_simulation/models/plates.py +++ b/plate_simulation/models/plates.py @@ -18,7 +18,7 @@ from geoh5py.ui_json.utils import fetch_active_workspace from geoh5py.workspace import Workspace -from plate_simulation.models.params import PlateParams +from plate_simulation.models.options import PlateOptions class Plate: @@ -31,7 +31,7 @@ class Plate: def __init__( self, - params: PlateParams, + params: PlateOptions, center_x: float = 0.0, center_y: float = 0.0, center_z: float = 0.0, diff --git a/plate_simulation/params.py b/plate_simulation/options.py similarity index 95% rename from plate_simulation/params.py rename to plate_simulation/options.py index cf536b4..b090e9a 100644 --- a/plate_simulation/params.py +++ b/plate_simulation/options.py @@ -34,8 +34,8 @@ ) from . import assets_path -from .mesh.params import MeshParams -from .models.params import ModelParams +from .mesh.options import MeshOptions +from .models.options import ModelOptions PARAM_MAP = { @@ -49,7 +49,7 @@ } -class PlateSimulationParams(BaseData): +class PlateSimulationOptions(BaseData): """ Parameters for the plate simulation driver. @@ -67,8 +67,8 @@ class PlateSimulationParams(BaseData): run_command: ClassVar[str] = "plate_simulation.driver" out_group: UIJsonGroup | None = None - mesh: MeshParams - model: ModelParams + mesh: MeshOptions + model: ModelOptions simulation: SimPEGGroup def simulation_parameters(self) -> BaseForwardOptions: diff --git a/tests/models/events_test.py b/tests/models/events_test.py index e8b0747..55d7e3e 100644 --- a/tests/models/events_test.py +++ b/tests/models/events_test.py @@ -12,7 +12,7 @@ from geoh5py.objects import Surface from plate_simulation.models.events import Anomaly, Deposition, Erosion, Overburden -from plate_simulation.models.params import PlateParams +from plate_simulation.models.options import PlateOptions from plate_simulation.models.plates import Plate from . import get_topo_mesh @@ -79,7 +79,7 @@ def test_overburden(tmp_path): def test_anomaly(tmp_path): with Workspace(tmp_path / "test.geoh5") as workspace: _, octree = get_topo_mesh(workspace) - params = PlateParams( + params = PlateOptions( name="my plate", plate=10.0, elevation=-1.5, diff --git a/tests/models/params_test.py b/tests/models/params_test.py index 46e1472..f3bb780 100644 --- a/tests/models/params_test.py +++ b/tests/models/params_test.py @@ -11,12 +11,12 @@ from geoh5py import Workspace from geoh5py.objects import Points, Surface -from plate_simulation.models.params import PlateParams +from plate_simulation.models.options import PlateOptions def test_plate_params(tmp_path): workspace = Workspace(tmp_path / "test.geoh5") - params = PlateParams( + params = PlateOptions( name="my plate", plate=1.0, width=20.0, @@ -57,7 +57,7 @@ def test_plate_params(tmp_path): def test_plate_params_empty_reference(): - params = PlateParams( + params = PlateOptions( name="my plate", plate=1.0, width=20.0, diff --git a/tests/models/plates_test.py b/tests/models/plates_test.py index 71af677..5cb1e37 100644 --- a/tests/models/plates_test.py +++ b/tests/models/plates_test.py @@ -11,7 +11,7 @@ from geoapps_utils.utils.transformations import rotate_xyz from geoh5py import Workspace -from plate_simulation.models.params import PlateParams +from plate_simulation.models.options import PlateOptions from plate_simulation.models.plates import Plate @@ -24,7 +24,7 @@ def are_collocated(pts1, pts2): def vertical_east_striking_plate(workspace): - params = PlateParams( + params = PlateOptions( name="my plate", plate=1.0, elevation=0.0, @@ -73,7 +73,7 @@ def test_dipping_plates_all_quadrants(tmp_path): for dip_direction in np.arange(0.0, 361.0, 45.0): for dip in [20.0, 70.0]: - params = PlateParams( + params = PlateOptions( name=f"plate dipping {dip} at {dip_direction}", plate=1.0, elevation=0.0, diff --git a/tests/runtest/driver_test.py b/tests/runtest/driver_test.py index 3b3ccd8..a895f72 100644 --- a/tests/runtest/driver_test.py +++ b/tests/runtest/driver_test.py @@ -19,9 +19,9 @@ from simpeg_drivers.potential_fields.gravity.options import GravityForwardOptions from plate_simulation import assets_path -from plate_simulation.driver import PlateSimulationDriver, PlateSimulationParams -from plate_simulation.mesh.params import MeshParams -from plate_simulation.models.params import ModelParams +from plate_simulation.driver import PlateSimulationDriver, PlateSimulationOptions +from plate_simulation.mesh.options import MeshOptions +from plate_simulation.models.options import ModelOptions from . import get_survey, get_topography @@ -191,7 +191,7 @@ def test_plate_simulation_params_from_input_file(tmp_path): ifile.data["reference_surface"] = "topography" ifile.data["reference_type"] = "mean" - params = PlateSimulationParams.build(ifile) + params = PlateSimulationOptions.build(ifile) assert isinstance(params.simulation, SimPEGGroup) simulation_parameters = params.simulation_parameters() @@ -204,7 +204,7 @@ def test_plate_simulation_params_from_input_file(tmp_path): ) assert simulation_parameters.data_object.uid == survey.uid - assert isinstance(params.mesh, MeshParams) + assert isinstance(params.mesh, MeshOptions) assert params.mesh.u_cell_size == 10.0 assert params.mesh.v_cell_size == 10.0 assert params.mesh.w_cell_size == 10.0 @@ -214,7 +214,7 @@ def test_plate_simulation_params_from_input_file(tmp_path): assert params.mesh.minimum_level == 8 assert not params.mesh.diagonal_balance - assert isinstance(params.model, ModelParams) + assert isinstance(params.model, ModelOptions) assert params.model.name == "test_gravity_plate_simulation" assert params.model.background == 1000.0 assert params.model.overburden.thickness == 50.0 diff --git a/tests/runtest/gravity_test.py b/tests/runtest/gravity_test.py index 1cc9002..b7b6eff 100644 --- a/tests/runtest/gravity_test.py +++ b/tests/runtest/gravity_test.py @@ -15,9 +15,13 @@ from simpeg_drivers.constants import default_ui_json from plate_simulation.driver import PlateSimulationDriver -from plate_simulation.mesh.params import MeshParams -from plate_simulation.models.params import ModelParams, OverburdenParams, PlateParams -from plate_simulation.params import PlateSimulationParams +from plate_simulation.mesh.options import MeshOptions +from plate_simulation.models.options import ( + ModelOptions, + OverburdenOptions, + PlateOptions, +) +from plate_simulation.options import PlateSimulationOptions from . import get_survey, get_topography @@ -27,7 +31,7 @@ def test_gravity_plate_simulation(tmp_path): topography = get_topography(ws) survey = get_survey(ws, 10, 10) - mesh_params = MeshParams( + mesh_params = MeshOptions( u_cell_size=10.0, v_cell_size=10.0, w_cell_size=10.0, @@ -36,9 +40,9 @@ def test_gravity_plate_simulation(tmp_path): max_distance=200.0, ) - overburden_params = OverburdenParams(thickness=50.0, overburden=0.2) + overburden_params = OverburdenOptions(thickness=50.0, overburden=0.2) - plate_params = PlateParams( + plate_params = PlateOptions( name="plate", plate=0.5, elevation=-250.0, @@ -50,7 +54,7 @@ def test_gravity_plate_simulation(tmp_path): reference="center", ) - model_params = ModelParams( + model_params = ModelOptions( name="density", background=0.0, overburden=overburden_params, @@ -68,7 +72,7 @@ def test_gravity_plate_simulation(tmp_path): gravity_inversion = SimPEGGroup.create(ws) gravity_inversion.options = options - params = PlateSimulationParams( + params = PlateSimulationOptions( title="test", run_command="run", geoh5=ws, From 1e64d9b8ba9910f90a928e956cc02348550b7224 Mon Sep 17 00:00:00 2001 From: dominiquef Date: Tue, 29 Apr 2025 13:06:21 -0700 Subject: [PATCH 09/14] Update uijson --- .../uijson/plate_simulation.ui.json | 493 +++++++++--------- 1 file changed, 251 insertions(+), 242 deletions(-) diff --git a/plate_simulation-assets/uijson/plate_simulation.ui.json b/plate_simulation-assets/uijson/plate_simulation.ui.json index 8ca757a..773b8d2 100644 --- a/plate_simulation-assets/uijson/plate_simulation.ui.json +++ b/plate_simulation-assets/uijson/plate_simulation.ui.json @@ -1,244 +1,253 @@ { - "title": "Plate simulation", - "run_command": "plate_simulation.driver", - "conda_environment": "plate_simulation", - "monitoring_directory": "", - "geoh5": "", - "workspace_geoh5": "", - "simulation": { - "main": true, - "label": "TEM SimPEG Group", - "groupType": "{55ed3daf-c192-4d4b-a439-60fa987fe2b8}", - "value": "", - "enabled": true, - "tooltip": "Forward modelling SimPEG group with at least the topogarphy and survey set. " - }, - "name": { - "main": true, - "label": "Label", - "value": "plate", - "enabled": true, - "tooltip": "Provide the name for the result group." - }, - "background": { - "main": true, - "group": "Basement", - "label": "Physical property (SI)", - "value": 2000.0, - "tooltip": "Value of the basement resisitivity (ohm-m), density (g/cc) or susceptibility (SI)", - "enabled": true - }, - "overburden": { - "main": true, - "group": "Overburden", - "label": "Physical property (SI)", - "value": 8000.0, - "tooltip": "Value of the overburden resisitivity (ohm-m), density (g/cc) or susceptibility (SI)", - "enabled": true - }, - "thickness": { - "main": true, - "group": "Overburden", - "label": "Thickness", - "value": 200.0, - "enabled": true, - "tooltip": "Thickness of the overburden." - }, - "number": { - "main": true, - "group": "Plate", - "label": "Number of plates", - "value": 1, - "enabled": true, - "tooltip": "If more than one the plates will be parallel, equally spaced over the center of the model." - }, - "spacing": { - "main": true, - "group": "Plate", - "label": "Spacing (m)", - "value": 0.0, - "enabled": true, - "tooltip": "Spacing between plates." - }, - "plate": { - "main": true, - "group": "Plate", - "label": "Physical property (SI)", - "value": 20.0, - "tooltip": "Value of the plate resisitivity (ohm-m), density (g/cc) or susceptibility (SI)", - "enabled": true - }, - "width": { - "label": "Thickness", - "group": "Plate", - "main": true, - "value": 90.0, - "enabled": true, - "tooltip": "Thickness of the plate." - }, - "strike_length": { - "label": "Strike Length", - "group": "Plate", - "main": true, - "value": 800.0, - "enabled": true, - "tooltip": "Length of the plate along the strike direction." - }, - "dip_length": { - "label": "Dip Length", - "group": "Plate", - "main": true, - "value": 800.0, - "enabled": true, - "tooltip": "Length of the plate along the dip direction." - }, - "dip": { - "label": "Dip", - "group": "Plate", - "main": true, - "value": 60.0, - "enabled": true, - "min": 0.0, - "max": 90.0, - "tooltip": "Dip of the plate in degrees from horizontal." - }, - "dip_direction": { - "label": "Dip Direction", - "group": "Plate", - "main": true, - "value": 90.0, - "enabled": true, - "min": 0.0, - "max": 360.0, - "tooltip": "Direction of the dip vector in degrees from North." - }, - "relative_locations": { - "label": "Relative locations", - "main": true, - "group": "Plate", - "value": true, - "enabled": true, - "tooltip": "If checked locations are relative to the survey center and either topography or overburden in z according to 'Depth reference' selection." - }, - "easting": { - "label": "Easting (m)", - "group": "Plate", - "main": true, - "value": 0.0, - "enabled": true, - "tooltip": "If relative locations, Easting is relative to the center of the survey." - }, - "northing": { - "label": "Northing (m)", - "main": true, - "group": "Plate", - "value": 0.0, - "enabled": true, - "tooltip": "If relative locations, Northing is relative to the center of the survey." - }, - "elevation": { - "label": "Elevation (m)", - "main": true, - "group": "Plate", - "value": 0.0, - "enabled": true, - "tooltip": "If relative location, Elevation is relative to the topography or overburden according to 'Depth reference' selection." - }, - "reference_surface": { - "label": "Depth reference", - "main": true, - "group": "Plate", - "dependency": "relative_locations", - "dependencyType": "enabled", - "choiceList": ["topography", "overburden"], - "tooltop": "If relative locations, the depth will be below the min/mean/max (according to 'Reference type') of the reference surface chosen.", - "value": "overburden" - }, - "reference_type": { - "label": "Reference type", - "main": true, - "group": "Plate", - "dependency": "relative_locations", - "dependencyType": "enabled", - "choiceList": ["min", "mean", "max"], - "tooltip": "If relative locations, the depth will be below the min/mean/max of the 'Depth reference' chosen.", - "value": "min" - }, - "generate_sweep": { - "label": "Generate sweep file", - "main": true, - "value": false - }, - "u_cell_size": { - "min": 0.0, - "group": "Mesh", - "label": "Easting core cell size (m)", - "value": 25.0, - "enabled": true - }, - "v_cell_size": { - "min": 0.0, - "group": "Mesh", - "label": "Northing core cell size (m)", - "value": 25.0, - "enabled": true - }, - "w_cell_size": { - "min": 0.0, - "group": "Mesh", - "label": "Vertical core cell size (m)", - "value": 25.0, - "enabled": true - }, - "depth_core": { - "min": 0.0, - "group": "Mesh", - "label": "Depth of core refinement volume", - "value": 500.0, - "enabled": true - }, - "max_distance": { - "min": 0.0, - "group": "Mesh", - "label": "Maximum padding distance", - "value": 200.0, - "enabled": true - }, - "padding_distance": { - "min": 0.0, - "group": "Mesh", - "label": "Padding distance", - "value": 1000.0, - "enabled": true - }, - "diagonal_balance": { - "group": "Mesh", - "label": "Diagonal Balance", - "main": false, - "value": true, - "tooltip": "Assure single octree level change on corner neighbours. UBC compatible mesh." - }, - "minimum_level": { - "enabled": true, - "group": "Mesh", - "label": "Minimum refinement level.", - "main": false, - "min": 1, - "tooltip": "Minimum refinement in padding region: 2**(n-1) x base_cell.", - "value": 6 - }, - "export_model": { - "main": false, - "label": "Export mesh/model", - "value": true, - "enabled": true - }, - "out_group": { - "label": "Simulation group", - "value": "", - "groupType": "{BB50AC61-A657-4926-9C82-067658E246A0}", - "visible": true, - "optional": true, - "enabled": false - } + "icon": "maxwellplate", + "version": "0.2.0-alpha.1", + "title": "Plate simulation", + "documentation": "https://mirageoscience-plate-simulation.readthedocs-hosted.com/", + "conda_environment": "plate_simulation", + "run_command": "plate_simulation.driver", + "geoh5": "", + "monitoring_directory": "", + "simulation": { + "main": true, + "label": "TEM SimPEG Group", + "groupType": "{55ed3daf-c192-4d4b-a439-60fa987fe2b8}", + "value": "", + "enabled": true, + "tooltip": "Forward modelling SimPEG group with at least the topogarphy and survey set" + }, + "name": { + "main": true, + "label": "Label", + "value": "plate", + "enabled": true, + "tooltip": "Provide the name for the result group" + }, + "background": { + "main": true, + "group": "Basement", + "label": "Physical property (SI)", + "value": 2000.0, + "tooltip": "Value of the basement resisitivity (ohm-m), density (g/cc) or susceptibility (SI)", + "enabled": true + }, + "overburden": { + "main": true, + "group": "Overburden", + "label": "Physical property (SI)", + "value": 8000.0, + "tooltip": "Value of the overburden resisitivity (ohm-m), density (g/cc) or susceptibility (SI)", + "enabled": true + }, + "thickness": { + "main": true, + "group": "Overburden", + "label": "Thickness", + "value": 200.0, + "enabled": true, + "tooltip": "Thickness of the overburden" + }, + "number": { + "main": true, + "group": "Plate", + "label": "Number of plates", + "value": 1, + "enabled": true, + "tooltip": "If more than one the plates will be parallel, equally spaced over the center of the model" + }, + "spacing": { + "main": true, + "group": "Plate", + "label": "Spacing (m)", + "value": 0.0, + "enabled": true, + "tooltip": "Spacing between plates" + }, + "plate": { + "main": true, + "group": "Plate", + "label": "Physical property (SI)", + "value": 20.0, + "tooltip": "Value of the plate resisitivity (ohm-m), density (g/cc) or susceptibility (SI)", + "enabled": true + }, + "width": { + "label": "Thickness", + "group": "Plate", + "main": true, + "value": 90.0, + "enabled": true, + "tooltip": "Thickness of the plate" + }, + "strike_length": { + "label": "Strike length", + "group": "Plate", + "main": true, + "value": 800.0, + "enabled": true, + "tooltip": "Length of the plate along the strike direction" + }, + "dip_length": { + "label": "Dip length", + "group": "Plate", + "main": true, + "value": 800.0, + "enabled": true, + "tooltip": "Length of the plate along the dip direction" + }, + "dip": { + "label": "Dip", + "group": "Plate", + "main": true, + "value": 60.0, + "enabled": true, + "min": 0.0, + "max": 90.0, + "tooltip": "Dip of the plate in degrees from horizontal" + }, + "dip_direction": { + "label": "Dip direction", + "group": "Plate", + "main": true, + "value": 90.0, + "enabled": true, + "min": 0.0, + "max": 360.0, + "tooltip": "Direction of the dip vector in degrees from North" + }, + "relative_locations": { + "label": "Relative locations", + "main": true, + "group": "Plate", + "value": true, + "enabled": true, + "tooltip": "If checked locations are relative to the survey center and either topography or overburden in z according to 'Depth reference' selection" + }, + "easting": { + "label": "Easting (m)", + "group": "Plate", + "main": true, + "value": 0.0, + "enabled": true, + "tooltip": "If relative locations, Easting is relative to the center of the survey" + }, + "northing": { + "label": "Northing (m)", + "main": true, + "group": "Plate", + "value": 0.0, + "enabled": true, + "tooltip": "If relative locations, Northing is relative to the center of the survey" + }, + "elevation": { + "label": "Elevation (m)", + "main": true, + "group": "Plate", + "value": 0.0, + "enabled": true, + "tooltip": "If relative location, Elevation is relative to the topography or overburden according to 'Depth reference' selection" + }, + "reference_surface": { + "label": "Depth reference", + "main": true, + "group": "Plate", + "dependency": "relative_locations", + "dependencyType": "enabled", + "choiceList": [ + "topography", + "overburden" + ], + "tooltop": "If relative locations, the depth will be below the min/mean/max (according to 'Reference type') of the reference surface chosen.", + "value": "overburden" + }, + "reference_type": { + "label": "Reference type", + "main": true, + "group": "Plate", + "dependency": "relative_locations", + "dependencyType": "enabled", + "choiceList": [ + "min", + "mean", + "max" + ], + "tooltip": "If relative locations, the depth will be below the min/mean/max of the 'Depth reference' chosen", + "value": "min" + }, + "generate_sweep": { + "label": "Generate sweep file", + "main": true, + "value": false + }, + "u_cell_size": { + "min": 0.0, + "group": "Mesh", + "label": "Easting core cell size (m)", + "value": 25.0, + "enabled": true + }, + "v_cell_size": { + "min": 0.0, + "group": "Mesh", + "label": "Northing core cell size (m)", + "value": 25.0, + "enabled": true + }, + "w_cell_size": { + "min": 0.0, + "group": "Mesh", + "label": "Vertical core cell size (m)", + "value": 25.0, + "enabled": true + }, + "depth_core": { + "min": 0.0, + "group": "Mesh", + "label": "Depth of core refinement volume", + "value": 500.0, + "enabled": true + }, + "max_distance": { + "min": 0.0, + "group": "Mesh", + "label": "Maximum padding distance", + "value": 200.0, + "enabled": true + }, + "padding_distance": { + "min": 0.0, + "group": "Mesh", + "label": "Padding distance", + "value": 1000.0, + "enabled": true + }, + "diagonal_balance": { + "group": "Mesh", + "label": "Diagonal balance", + "main": false, + "value": true, + "tooltip": "Assure single octree level change on corner neighbours. UBC compatible mesh" + }, + "minimum_level": { + "enabled": true, + "group": "Mesh", + "label": "Minimum refinement level", + "main": false, + "min": 1, + "tooltip": "Minimum refinement in padding region: 2**(n-1) x base_cell", + "value": 6 + }, + "export_model": { + "main": false, + "label": "Export mesh/model", + "value": true, + "enabled": true + }, + "out_group": { + "label": "Simulation group", + "value": "", + "groupType": "{BB50AC61-A657-4926-9C82-067658E246A0}", + "visible": true, + "optional": true, + "enabled": false + } } From e40a794c3b3f9a2d09854e0d1c9cc09582b0be78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Hensgen?= Date: Wed, 30 Apr 2025 17:53:23 -0400 Subject: [PATCH 10/14] Update plate_simulation-assets/uijson/plate_simulation.ui.json --- plate_simulation-assets/uijson/plate_simulation.ui.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plate_simulation-assets/uijson/plate_simulation.ui.json b/plate_simulation-assets/uijson/plate_simulation.ui.json index 773b8d2..e28c381 100644 --- a/plate_simulation-assets/uijson/plate_simulation.ui.json +++ b/plate_simulation-assets/uijson/plate_simulation.ui.json @@ -2,7 +2,7 @@ "icon": "maxwellplate", "version": "0.2.0-alpha.1", "title": "Plate simulation", - "documentation": "https://mirageoscience-plate-simulation.readthedocs-hosted.com/", + "documentation": "https://mirageoscience-plate-simulation.readthedocs-hosted.com/en/latest/", "conda_environment": "plate_simulation", "run_command": "plate_simulation.driver", "geoh5": "", From 3bdfd5bde28b1d444ca0fab04732c659fcfbcad8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Hensgen?= Date: Thu, 1 May 2025 18:31:16 -0400 Subject: [PATCH 11/14] [GEOPY-2049] relock envs on simpeg-drivers 0.3.0-alpha.6 --- .../py-3.10-linux-64-dev.conda.lock.yml | 18 +- environments/py-3.10-linux-64.conda.lock.yml | 18 +- .../py-3.10-win-64-dev.conda.lock.yml | 18 +- environments/py-3.10-win-64.conda.lock.yml | 18 +- .../py-3.11-linux-64-dev.conda.lock.yml | 18 +- environments/py-3.11-linux-64.conda.lock.yml | 18 +- .../py-3.11-win-64-dev.conda.lock.yml | 18 +- environments/py-3.11-win-64.conda.lock.yml | 18 +- .../py-3.12-linux-64-dev.conda.lock.yml | 18 +- environments/py-3.12-linux-64.conda.lock.yml | 18 +- .../py-3.12-win-64-dev.conda.lock.yml | 18 +- environments/py-3.12-win-64.conda.lock.yml | 18 +- py-3.10.conda-lock.yml | 148 +++++++--------- py-3.11.conda-lock.yml | 164 +++++++----------- py-3.12.conda-lock.yml | 164 +++++++----------- pyproject.toml | 20 +-- recipe.yaml | 2 +- 17 files changed, 312 insertions(+), 402 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 2c00fd2..862c272 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: b50b758699c65849696b34397e0e0ad3e17c9f0dae3ee2a3d6ac1c0f560fc32c +# input_hash: c9efe34ac74213cafb55ac35006a3c7f8602e962d4540e51bd36cc3e0f14aca5 channels: - conda-forge @@ -99,7 +99,7 @@ dependencies: - libxcrypt=4.4.36=hd590300_1 - libxml2=2.13.7=h81593ed_1 - libzlib=1.3.1=hb9d3cd8_2 - - llvm-openmp=20.1.3=h024ca30_0 + - llvm-openmp=20.1.4=h024ca30_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py310h89163eb_1 - matplotlib-base=3.8.4=py310hef631a5_2 @@ -146,7 +146,7 @@ dependencies: - rtree=1.2.0=py310haf1e407_1 - scikit-learn=1.4.2=py310h981052a_1 - scipy=1.14.1=py310hfcf56fc_2 - - setuptools=79.0.1=pyhff2d567_0 + - setuptools=80.1.0=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 @@ -184,12 +184,12 @@ dependencies: - zstandard=0.23.0=py310ha75aee5_2 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@06ee42f5f4767bb6e6da56b919f631722f6fdf36 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 - - mira-simpeg == 0.23.0.1a3 - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@80641c96ff4b3a7e67f25278c323c5f9f931982f - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@8d7db643fb6e43490b05e2e1d53caa9cdae07a10 - - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@cef51c8544871aaf9cff890c1ffc9c5cb4516359 + - geoapps-utils == 0.5.0a3 --hash=sha256:a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c + - geoh5py == 0.11.0a5 --hash=sha256:78efa387e693fac737e4fd304ab024d37d9eb3eb95c5191a85de57fb82ceea2e + - 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 + - simpeg-drivers == 0.3.0a6 --hash=sha256:674a0c823cbf434311f29877c2f15c678bf8ec26a9ade03a52e036f53426a6b3 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 4cefbaf..82fc8a4 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: b50b758699c65849696b34397e0e0ad3e17c9f0dae3ee2a3d6ac1c0f560fc32c +# input_hash: c9efe34ac74213cafb55ac35006a3c7f8602e962d4540e51bd36cc3e0f14aca5 channels: - conda-forge @@ -87,7 +87,7 @@ dependencies: - libxcrypt=4.4.36=hd590300_1 - libxml2=2.13.7=h81593ed_1 - libzlib=1.3.1=hb9d3cd8_2 - - llvm-openmp=20.1.3=h024ca30_0 + - llvm-openmp=20.1.4=h024ca30_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py310h89163eb_1 - matplotlib-base=3.8.4=py310hef631a5_2 @@ -124,7 +124,7 @@ dependencies: - rtree=1.2.0=py310haf1e407_1 - scikit-learn=1.4.2=py310h981052a_1 - scipy=1.14.1=py310hfcf56fc_2 - - setuptools=79.0.1=pyhff2d567_0 + - setuptools=80.1.0=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - tbb=2021.13.0=hceb3a55_1 @@ -151,12 +151,12 @@ dependencies: - zstandard=0.23.0=py310ha75aee5_2 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@06ee42f5f4767bb6e6da56b919f631722f6fdf36 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 - - mira-simpeg == 0.23.0.1a3 - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@80641c96ff4b3a7e67f25278c323c5f9f931982f - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@8d7db643fb6e43490b05e2e1d53caa9cdae07a10 - - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@cef51c8544871aaf9cff890c1ffc9c5cb4516359 + - geoapps-utils == 0.5.0a3 --hash=sha256:a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c + - geoh5py == 0.11.0a5 --hash=sha256:78efa387e693fac737e4fd304ab024d37d9eb3eb95c5191a85de57fb82ceea2e + - 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 + - simpeg-drivers == 0.3.0a6 --hash=sha256:674a0c823cbf434311f29877c2f15c678bf8ec26a9ade03a52e036f53426a6b3 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 0c24780..db9677e 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: 64514e903c8100918f4f7448e984bcd1e56d02dbe0efe7d40b1879e5afbaa4a7 +# input_hash: 51d0161263c1c9d180facf73bea290fe4f67838ad2d4abf806541439ac56cdd5 channels: - conda-forge @@ -87,7 +87,7 @@ dependencies: - libxcb=1.17.0=h0e4246c_0 - libxml2=2.13.7=h442d1da_1 - libzlib=1.3.1=h2466b09_2 - - llvm-openmp=20.1.3=h30eaf37_0 + - llvm-openmp=20.1.4=h30eaf37_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py310h38315fa_1 - matplotlib-base=3.8.4=py310hadb10a8_2 @@ -130,7 +130,7 @@ dependencies: - rtree=1.2.0=py310h08d5ad2_1 - scikit-learn=1.4.2=py310hf2a6c47_1 - scipy=1.14.1=py310hbd0dde3_2 - - setuptools=79.0.1=pyhff2d567_0 + - setuptools=80.1.0=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 @@ -173,12 +173,12 @@ dependencies: - zstandard=0.23.0=py310ha8f682b_2 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@06ee42f5f4767bb6e6da56b919f631722f6fdf36 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 - - mira-simpeg == 0.23.0.1a3 - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@80641c96ff4b3a7e67f25278c323c5f9f931982f - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@8d7db643fb6e43490b05e2e1d53caa9cdae07a10 - - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@cef51c8544871aaf9cff890c1ffc9c5cb4516359 + - geoapps-utils == 0.5.0a3 --hash=sha256:a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c + - geoh5py == 0.11.0a5 --hash=sha256:78efa387e693fac737e4fd304ab024d37d9eb3eb95c5191a85de57fb82ceea2e + - 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 + - simpeg-drivers == 0.3.0a6 --hash=sha256:674a0c823cbf434311f29877c2f15c678bf8ec26a9ade03a52e036f53426a6b3 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 c0f4722..25d9389 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: 64514e903c8100918f4f7448e984bcd1e56d02dbe0efe7d40b1879e5afbaa4a7 +# input_hash: 51d0161263c1c9d180facf73bea290fe4f67838ad2d4abf806541439ac56cdd5 channels: - conda-forge @@ -75,7 +75,7 @@ dependencies: - libxcb=1.17.0=h0e4246c_0 - libxml2=2.13.7=h442d1da_1 - libzlib=1.3.1=h2466b09_2 - - llvm-openmp=20.1.3=h30eaf37_0 + - llvm-openmp=20.1.4=h30eaf37_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py310h38315fa_1 - matplotlib-base=3.8.4=py310hadb10a8_2 @@ -108,7 +108,7 @@ dependencies: - rtree=1.2.0=py310h08d5ad2_1 - scikit-learn=1.4.2=py310hf2a6c47_1 - scipy=1.14.1=py310hbd0dde3_2 - - setuptools=79.0.1=pyhff2d567_0 + - setuptools=80.1.0=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - tbb=2021.13.0=h62715c5_1 @@ -140,12 +140,12 @@ dependencies: - zstandard=0.23.0=py310ha8f682b_2 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@06ee42f5f4767bb6e6da56b919f631722f6fdf36 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 - - mira-simpeg == 0.23.0.1a3 - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@80641c96ff4b3a7e67f25278c323c5f9f931982f - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@8d7db643fb6e43490b05e2e1d53caa9cdae07a10 - - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@cef51c8544871aaf9cff890c1ffc9c5cb4516359 + - geoapps-utils == 0.5.0a3 --hash=sha256:a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c + - geoh5py == 0.11.0a5 --hash=sha256:78efa387e693fac737e4fd304ab024d37d9eb3eb95c5191a85de57fb82ceea2e + - 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 + - simpeg-drivers == 0.3.0a6 --hash=sha256:674a0c823cbf434311f29877c2f15c678bf8ec26a9ade03a52e036f53426a6b3 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 070ddd9..900f3b1 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: 8516722c272520bd78d183653ce256ae4784b6fd9e2c0c3a6a7112178c591a81 +# input_hash: 57fd7e2276719af70e0631a88a464b961acee7e0dd3348b944112d2dd20cf65d channels: - conda-forge @@ -100,7 +100,7 @@ dependencies: - libxcrypt=4.4.36=hd590300_1 - libxml2=2.13.7=h81593ed_1 - libzlib=1.3.1=hb9d3cd8_2 - - llvm-openmp=20.1.3=h024ca30_0 + - llvm-openmp=20.1.4=h024ca30_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py311h2dc5d0c_1 - matplotlib-base=3.8.4=py311ha4ca890_2 @@ -147,7 +147,7 @@ dependencies: - rtree=1.2.0=py311ha1603b9_1 - scikit-learn=1.4.2=py311he08f58d_1 - scipy=1.14.1=py311he9a78e4_2 - - setuptools=79.0.1=pyhff2d567_0 + - setuptools=80.1.0=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 @@ -186,12 +186,12 @@ dependencies: - zstandard=0.23.0=py311h9ecbd09_2 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@06ee42f5f4767bb6e6da56b919f631722f6fdf36 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 - - mira-simpeg == 0.23.0.1a3 - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@80641c96ff4b3a7e67f25278c323c5f9f931982f - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@8d7db643fb6e43490b05e2e1d53caa9cdae07a10 - - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@cef51c8544871aaf9cff890c1ffc9c5cb4516359 + - geoapps-utils == 0.5.0a3 --hash=sha256:a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c + - geoh5py == 0.11.0a5 --hash=sha256:78efa387e693fac737e4fd304ab024d37d9eb3eb95c5191a85de57fb82ceea2e + - 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 + - simpeg-drivers == 0.3.0a6 --hash=sha256:674a0c823cbf434311f29877c2f15c678bf8ec26a9ade03a52e036f53426a6b3 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 2ad5613..340803a 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: 8516722c272520bd78d183653ce256ae4784b6fd9e2c0c3a6a7112178c591a81 +# input_hash: 57fd7e2276719af70e0631a88a464b961acee7e0dd3348b944112d2dd20cf65d channels: - conda-forge @@ -88,7 +88,7 @@ dependencies: - libxcrypt=4.4.36=hd590300_1 - libxml2=2.13.7=h81593ed_1 - libzlib=1.3.1=hb9d3cd8_2 - - llvm-openmp=20.1.3=h024ca30_0 + - llvm-openmp=20.1.4=h024ca30_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py311h2dc5d0c_1 - matplotlib-base=3.8.4=py311ha4ca890_2 @@ -125,7 +125,7 @@ dependencies: - rtree=1.2.0=py311ha1603b9_1 - scikit-learn=1.4.2=py311he08f58d_1 - scipy=1.14.1=py311he9a78e4_2 - - setuptools=79.0.1=pyhff2d567_0 + - setuptools=80.1.0=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - tbb=2021.13.0=hceb3a55_1 @@ -153,12 +153,12 @@ dependencies: - zstandard=0.23.0=py311h9ecbd09_2 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@06ee42f5f4767bb6e6da56b919f631722f6fdf36 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 - - mira-simpeg == 0.23.0.1a3 - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@80641c96ff4b3a7e67f25278c323c5f9f931982f - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@8d7db643fb6e43490b05e2e1d53caa9cdae07a10 - - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@cef51c8544871aaf9cff890c1ffc9c5cb4516359 + - geoapps-utils == 0.5.0a3 --hash=sha256:a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c + - geoh5py == 0.11.0a5 --hash=sha256:78efa387e693fac737e4fd304ab024d37d9eb3eb95c5191a85de57fb82ceea2e + - 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 + - simpeg-drivers == 0.3.0a6 --hash=sha256:674a0c823cbf434311f29877c2f15c678bf8ec26a9ade03a52e036f53426a6b3 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 117d0b9..18260a6 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: e8056ea211d8fa3c26ac84d3b33a4cfa7beb854138cc87403de63abb34a5e0ef +# input_hash: 18014be1793f4d33dad1b4d65b56c92f1cbac80b6ee39173fc31cea139bfdf30 channels: - conda-forge @@ -88,7 +88,7 @@ dependencies: - libxcb=1.17.0=h0e4246c_0 - libxml2=2.13.7=h442d1da_1 - libzlib=1.3.1=h2466b09_2 - - llvm-openmp=20.1.3=h30eaf37_0 + - llvm-openmp=20.1.4=h30eaf37_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py311h5082efb_1 - matplotlib-base=3.8.4=py311h9b31f6e_2 @@ -131,7 +131,7 @@ dependencies: - rtree=1.2.0=py311h44d53c4_1 - scikit-learn=1.4.2=py311hdcb8d17_1 - scipy=1.14.1=py311hf16d85f_2 - - setuptools=79.0.1=pyhff2d567_0 + - setuptools=80.1.0=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 @@ -175,12 +175,12 @@ dependencies: - zstandard=0.23.0=py311he736701_2 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@06ee42f5f4767bb6e6da56b919f631722f6fdf36 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 - - mira-simpeg == 0.23.0.1a3 - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@80641c96ff4b3a7e67f25278c323c5f9f931982f - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@8d7db643fb6e43490b05e2e1d53caa9cdae07a10 - - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@cef51c8544871aaf9cff890c1ffc9c5cb4516359 + - geoapps-utils == 0.5.0a3 --hash=sha256:a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c + - geoh5py == 0.11.0a5 --hash=sha256:78efa387e693fac737e4fd304ab024d37d9eb3eb95c5191a85de57fb82ceea2e + - 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 + - simpeg-drivers == 0.3.0a6 --hash=sha256:674a0c823cbf434311f29877c2f15c678bf8ec26a9ade03a52e036f53426a6b3 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 81bb89b..2de553c 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: e8056ea211d8fa3c26ac84d3b33a4cfa7beb854138cc87403de63abb34a5e0ef +# input_hash: 18014be1793f4d33dad1b4d65b56c92f1cbac80b6ee39173fc31cea139bfdf30 channels: - conda-forge @@ -76,7 +76,7 @@ dependencies: - libxcb=1.17.0=h0e4246c_0 - libxml2=2.13.7=h442d1da_1 - libzlib=1.3.1=h2466b09_2 - - llvm-openmp=20.1.3=h30eaf37_0 + - llvm-openmp=20.1.4=h30eaf37_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py311h5082efb_1 - matplotlib-base=3.8.4=py311h9b31f6e_2 @@ -109,7 +109,7 @@ dependencies: - rtree=1.2.0=py311h44d53c4_1 - scikit-learn=1.4.2=py311hdcb8d17_1 - scipy=1.14.1=py311hf16d85f_2 - - setuptools=79.0.1=pyhff2d567_0 + - setuptools=80.1.0=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - tbb=2021.13.0=h62715c5_1 @@ -142,12 +142,12 @@ dependencies: - zstandard=0.23.0=py311he736701_2 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@06ee42f5f4767bb6e6da56b919f631722f6fdf36 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 - - mira-simpeg == 0.23.0.1a3 - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@80641c96ff4b3a7e67f25278c323c5f9f931982f - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@8d7db643fb6e43490b05e2e1d53caa9cdae07a10 - - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@cef51c8544871aaf9cff890c1ffc9c5cb4516359 + - geoapps-utils == 0.5.0a3 --hash=sha256:a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c + - geoh5py == 0.11.0a5 --hash=sha256:78efa387e693fac737e4fd304ab024d37d9eb3eb95c5191a85de57fb82ceea2e + - 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 + - simpeg-drivers == 0.3.0a6 --hash=sha256:674a0c823cbf434311f29877c2f15c678bf8ec26a9ade03a52e036f53426a6b3 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 b6dc6e4..9305bef 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: b6c54918f42fd6d80bf70f2057913998c9e4e9bd4e5e0502896912cc30a55c73 +# input_hash: bdaa416013890ee4e81546c956d896ef1f9ae6c0245bdbcfe42c2d4c2bd179c0 channels: - conda-forge @@ -100,7 +100,7 @@ dependencies: - libxcrypt=4.4.36=hd590300_1 - libxml2=2.13.7=h81593ed_1 - libzlib=1.3.1=hb9d3cd8_2 - - llvm-openmp=20.1.3=h024ca30_0 + - llvm-openmp=20.1.4=h024ca30_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py312h178313f_1 - matplotlib-base=3.8.4=py312h20ab3a6_2 @@ -147,7 +147,7 @@ dependencies: - rtree=1.2.0=py312h3ed4c40_1 - scikit-learn=1.4.2=py312h1fcc3ea_1 - scipy=1.14.1=py312h62794b6_2 - - setuptools=79.0.1=pyhff2d567_0 + - setuptools=80.1.0=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 @@ -186,12 +186,12 @@ dependencies: - zstandard=0.23.0=py312h66e93f0_2 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@06ee42f5f4767bb6e6da56b919f631722f6fdf36 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 - - mira-simpeg == 0.23.0.1a3 - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@80641c96ff4b3a7e67f25278c323c5f9f931982f - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@8d7db643fb6e43490b05e2e1d53caa9cdae07a10 - - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@cef51c8544871aaf9cff890c1ffc9c5cb4516359 + - geoapps-utils == 0.5.0a3 --hash=sha256:a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c + - geoh5py == 0.11.0a5 --hash=sha256:78efa387e693fac737e4fd304ab024d37d9eb3eb95c5191a85de57fb82ceea2e + - 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 + - simpeg-drivers == 0.3.0a6 --hash=sha256:674a0c823cbf434311f29877c2f15c678bf8ec26a9ade03a52e036f53426a6b3 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 14aa277..194e155 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: b6c54918f42fd6d80bf70f2057913998c9e4e9bd4e5e0502896912cc30a55c73 +# input_hash: bdaa416013890ee4e81546c956d896ef1f9ae6c0245bdbcfe42c2d4c2bd179c0 channels: - conda-forge @@ -88,7 +88,7 @@ dependencies: - libxcrypt=4.4.36=hd590300_1 - libxml2=2.13.7=h81593ed_1 - libzlib=1.3.1=hb9d3cd8_2 - - llvm-openmp=20.1.3=h024ca30_0 + - llvm-openmp=20.1.4=h024ca30_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py312h178313f_1 - matplotlib-base=3.8.4=py312h20ab3a6_2 @@ -125,7 +125,7 @@ dependencies: - rtree=1.2.0=py312h3ed4c40_1 - scikit-learn=1.4.2=py312h1fcc3ea_1 - scipy=1.14.1=py312h62794b6_2 - - setuptools=79.0.1=pyhff2d567_0 + - setuptools=80.1.0=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - tbb=2021.13.0=hceb3a55_1 @@ -153,12 +153,12 @@ dependencies: - zstandard=0.23.0=py312h66e93f0_2 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@06ee42f5f4767bb6e6da56b919f631722f6fdf36 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 - - mira-simpeg == 0.23.0.1a3 - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@80641c96ff4b3a7e67f25278c323c5f9f931982f - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@8d7db643fb6e43490b05e2e1d53caa9cdae07a10 - - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@cef51c8544871aaf9cff890c1ffc9c5cb4516359 + - geoapps-utils == 0.5.0a3 --hash=sha256:a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c + - geoh5py == 0.11.0a5 --hash=sha256:78efa387e693fac737e4fd304ab024d37d9eb3eb95c5191a85de57fb82ceea2e + - 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 + - simpeg-drivers == 0.3.0a6 --hash=sha256:674a0c823cbf434311f29877c2f15c678bf8ec26a9ade03a52e036f53426a6b3 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 daea10e..e12fede 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: 7a5d95922f3cec8818bb12f6e5d0ccf9dca701732799276d6571e277079e7add +# input_hash: 9385bcb342567fbc6d44b85825cac4d9223e61f916dbf4ed980432341eb0efa5 channels: - conda-forge @@ -88,7 +88,7 @@ dependencies: - libxcb=1.17.0=h0e4246c_0 - libxml2=2.13.7=h442d1da_1 - libzlib=1.3.1=h2466b09_2 - - llvm-openmp=20.1.3=h30eaf37_0 + - llvm-openmp=20.1.4=h30eaf37_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py312h31fea79_1 - matplotlib-base=3.8.4=py312hfee7060_2 @@ -131,7 +131,7 @@ dependencies: - rtree=1.2.0=py312h50e5f8f_1 - scikit-learn=1.4.2=py312h816cc57_1 - scipy=1.14.1=py312h337df96_2 - - setuptools=79.0.1=pyhff2d567_0 + - setuptools=80.1.0=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 @@ -175,12 +175,12 @@ dependencies: - zstandard=0.23.0=py312h4389bb4_2 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@06ee42f5f4767bb6e6da56b919f631722f6fdf36 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 - - mira-simpeg == 0.23.0.1a3 - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@80641c96ff4b3a7e67f25278c323c5f9f931982f - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@8d7db643fb6e43490b05e2e1d53caa9cdae07a10 - - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@cef51c8544871aaf9cff890c1ffc9c5cb4516359 + - geoapps-utils == 0.5.0a3 --hash=sha256:a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c + - geoh5py == 0.11.0a5 --hash=sha256:78efa387e693fac737e4fd304ab024d37d9eb3eb95c5191a85de57fb82ceea2e + - 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 + - simpeg-drivers == 0.3.0a6 --hash=sha256:674a0c823cbf434311f29877c2f15c678bf8ec26a9ade03a52e036f53426a6b3 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 d574251..cdcfa0b 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: 7a5d95922f3cec8818bb12f6e5d0ccf9dca701732799276d6571e277079e7add +# input_hash: 9385bcb342567fbc6d44b85825cac4d9223e61f916dbf4ed980432341eb0efa5 channels: - conda-forge @@ -76,7 +76,7 @@ dependencies: - libxcb=1.17.0=h0e4246c_0 - libxml2=2.13.7=h442d1da_1 - libzlib=1.3.1=h2466b09_2 - - llvm-openmp=20.1.3=h30eaf37_0 + - llvm-openmp=20.1.4=h30eaf37_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py312h31fea79_1 - matplotlib-base=3.8.4=py312hfee7060_2 @@ -109,7 +109,7 @@ dependencies: - rtree=1.2.0=py312h50e5f8f_1 - scikit-learn=1.4.2=py312h816cc57_1 - scipy=1.14.1=py312h337df96_2 - - setuptools=79.0.1=pyhff2d567_0 + - setuptools=80.1.0=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - tbb=2021.13.0=h62715c5_1 @@ -142,12 +142,12 @@ dependencies: - zstandard=0.23.0=py312h4389bb4_2 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@06ee42f5f4767bb6e6da56b919f631722f6fdf36 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 - - mira-simpeg == 0.23.0.1a3 - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@80641c96ff4b3a7e67f25278c323c5f9f931982f - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@8d7db643fb6e43490b05e2e1d53caa9cdae07a10 - - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@cef51c8544871aaf9cff890c1ffc9c5cb4516359 + - geoapps-utils == 0.5.0a3 --hash=sha256:a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c + - geoh5py == 0.11.0a5 --hash=sha256:78efa387e693fac737e4fd304ab024d37d9eb3eb95c5191a85de57fb82ceea2e + - 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 + - simpeg-drivers == 0.3.0a6 --hash=sha256:674a0c823cbf434311f29877c2f15c678bf8ec26a9ade03a52e036f53426a6b3 variables: KMP_WARNINGS: 0 diff --git a/py-3.10.conda-lock.yml b/py-3.10.conda-lock.yml index 16f680b..754c115 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: 64514e903c8100918f4f7448e984bcd1e56d02dbe0efe7d40b1879e5afbaa4a7 - linux-64: b50b758699c65849696b34397e0e0ad3e17c9f0dae3ee2a3d6ac1c0f560fc32c + win-64: 51d0161263c1c9d180facf73bea290fe4f67838ad2d4abf806541439ac56cdd5 + linux-64: c9efe34ac74213cafb55ac35006a3c7f8602e962d4540e51bd36cc3e0f14aca5 channels: - url: conda-forge used_env_vars: [] @@ -2491,29 +2491,29 @@ package: category: main optional: false - name: llvm-openmp - version: 20.1.3 + version: 20.1.4 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-20.1.3-h024ca30_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-20.1.4-h024ca30_0.conda hash: - md5: c721339ea8746513e42b1233b4bbdfb0 - sha256: 4327a463f43b0d95ca0e5f92094383ef53fd2a91d649debfc531b941fe44fd48 + md5: 4fc395cda27912a7d904b86b5dbf3a4d + sha256: 5b39cdde3457e41b133d6f1fe53095c7fd3951bbdab46580098ccbf5ee9c99f7 category: main optional: false - name: llvm-openmp - version: 20.1.3 + version: 20.1.4 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-20.1.3-h30eaf37_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-20.1.4-h30eaf37_0.conda hash: - md5: 183c102075722a7aa993f94de1d135f2 - sha256: 27326e733ce7ad87054a409c02b829594cc6276232b987eb135cd1a225eac669 + md5: 3087da6f7e741dc1498e85ef87a553dc + sha256: 0c85b0ceda02c26bbea5a789c2d1735485dbc2a1089655a8f2193c5850a7bbab category: main optional: false - name: locket @@ -2961,7 +2961,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.8' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda hash: md5: 58335b26c38bf4a20f399384c33cbcf9 @@ -3089,7 +3089,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 @@ -3195,7 +3195,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 @@ -3362,7 +3362,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' @@ -3902,27 +3902,27 @@ package: category: main optional: false - name: setuptools - version: 79.0.1 + version: 80.1.0 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/setuptools-79.0.1-pyhff2d567_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/setuptools-80.1.0-pyhff2d567_0.conda hash: - md5: fa6669cc21abd4b7b6c5393b7bc71914 - sha256: 5ebc4bb71fbdc8048b08848519150c8d44b8eb18445711d3258c9d402ba87a2c + md5: f6f72d0837c79eaec77661be43e8a691 + sha256: 777d34ed359cedd5a5004c930077c101bb3b70e5fbb04d29da5058d75b0ba487 category: main optional: false - name: setuptools - version: 79.0.1 + version: 80.1.0 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/setuptools-79.0.1-pyhff2d567_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/setuptools-80.1.0-pyhff2d567_0.conda hash: - md5: fa6669cc21abd4b7b6c5393b7bc71914 - sha256: 5ebc4bb71fbdc8048b08848519150c8d44b8eb18445711d3258c9d402ba87a2c + md5: f6f72d0837c79eaec77661be43e8a691 + sha256: 777d34ed359cedd5a5004c930077c101bb3b70e5fbb04d29da5058d75b0ba487 category: main optional: false - name: six @@ -4560,7 +4560,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 @@ -4959,41 +4959,35 @@ package: category: main optional: false - name: geoapps-utils - version: 0.5.0-alpha.4 + version: 0.5.0a3 manager: pip platform: linux-64 dependencies: - geoh5py: 0.11.0-alpha.5 + geoh5py: '>=0.11.0a1,<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: git+https://github.com/MiraGeoscience/geoapps-utils.git@06ee42f5f4767bb6e6da56b919f631722f6fdf36 + 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: 06ee42f5f4767bb6e6da56b919f631722f6fdf36 - source: - type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@06ee42f5f4767bb6e6da56b919f631722f6fdf36 + sha256: a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c category: main optional: false - name: geoapps-utils - version: 0.5.0-alpha.4 + version: 0.5.0a3 manager: pip platform: win-64 dependencies: - geoh5py: 0.11.0-alpha.5 + geoh5py: '>=0.11.0a1,<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: git+https://github.com/MiraGeoscience/geoapps-utils.git@06ee42f5f4767bb6e6da56b919f631722f6fdf36 + 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: 06ee42f5f4767bb6e6da56b919f631722f6fdf36 - source: - type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@06ee42f5f4767bb6e6da56b919f631722f6fdf36 + sha256: a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c category: main optional: false - name: geoh5py - version: 0.11.0-alpha.5 + version: 0.11.0a5 manager: pip platform: linux-64 dependencies: @@ -5001,16 +4995,13 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 + url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/geoh5py/0.11.0-alpha.5/geoh5py-0.11.0a5-py3-none-any.whl hash: - sha256: 55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 - source: - type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 + sha256: 78efa387e693fac737e4fd304ab024d37d9eb3eb95c5191a85de57fb82ceea2e category: main optional: false - name: geoh5py - version: 0.11.0-alpha.5 + version: 0.11.0a5 manager: pip platform: win-64 dependencies: @@ -5018,12 +5009,9 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 + url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/geoh5py/0.11.0-alpha.5/geoh5py-0.11.0a5-py3-none-any.whl hash: - sha256: 55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 - source: - type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 + sha256: 78efa387e693fac737e4fd304ab024d37d9eb3eb95c5191a85de57fb82ceea2e category: main optional: false - name: mira-simpeg @@ -5042,7 +5030,7 @@ package: pymatsolver: '>=0.3' scipy: '>=1.8' zarr: '*' - url: https://files.pythonhosted.org/packages/a9/f1/225e442cdcbbeb6786ec9eb456f86f95b30f515addea1df6f453af899120/mira_simpeg-0.23.0.1a3-py3-none-any.whl + 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: 14467e65d801e082bac8a4d972a30b162018df27d06310fb1f2c6960968f88d2 category: main @@ -5063,13 +5051,13 @@ package: pymatsolver: '>=0.3' scipy: '>=1.8' zarr: '*' - url: https://files.pythonhosted.org/packages/a9/f1/225e442cdcbbeb6786ec9eb456f86f95b30f515addea1df6f453af899120/mira_simpeg-0.23.0.1a3-py3-none-any.whl + 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: 14467e65d801e082bac8a4d972a30b162018df27d06310fb1f2c6960968f88d2 category: main optional: false - name: octree-creation-app - version: 0.3.0-alpha.3 + version: 0.3.0a2 manager: pip platform: linux-64 dependencies: @@ -5079,16 +5067,13 @@ package: numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/octree-creation-app.git@80641c96ff4b3a7e67f25278c323c5f9f931982f + 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: 80641c96ff4b3a7e67f25278c323c5f9f931982f - source: - type: url - url: git+https://github.com/MiraGeoscience/octree-creation-app.git@80641c96ff4b3a7e67f25278c323c5f9f931982f + sha256: 002896126bf5a958aad1bb9c0a272bfd3c6985d1456dc8022c4e07b5582730ff category: main optional: false - name: octree-creation-app - version: 0.3.0-alpha.3 + version: 0.3.0a2 manager: pip platform: win-64 dependencies: @@ -5098,46 +5083,37 @@ package: numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/octree-creation-app.git@80641c96ff4b3a7e67f25278c323c5f9f931982f + 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: 80641c96ff4b3a7e67f25278c323c5f9f931982f - source: - type: url - url: git+https://github.com/MiraGeoscience/octree-creation-app.git@80641c96ff4b3a7e67f25278c323c5f9f931982f + sha256: 002896126bf5a958aad1bb9c0a272bfd3c6985d1456dc8022c4e07b5582730ff category: main optional: false - name: param-sweeps - version: 0.2.1-alpha.2 + version: 0.2.1a1 manager: pip platform: linux-64 dependencies: - geoh5py: 0.11.0-alpha.5 + geoh5py: '>=0.11.0a3,<0.12.dev' numpy: '>=1.26.0,<1.27.0' - url: git+https://github.com/MiraGeoscience/param-sweeps.git@8d7db643fb6e43490b05e2e1d53caa9cdae07a10 + 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: 8d7db643fb6e43490b05e2e1d53caa9cdae07a10 - source: - type: url - url: git+https://github.com/MiraGeoscience/param-sweeps.git@8d7db643fb6e43490b05e2e1d53caa9cdae07a10 + sha256: 777618dd6eef4b6e86b4976e01c29bb202abb9d295b0774baeabf7534fb9389c category: main optional: false - name: param-sweeps - version: 0.2.1-alpha.2 + version: 0.2.1a1 manager: pip platform: win-64 dependencies: - geoh5py: 0.11.0-alpha.5 + geoh5py: '>=0.11.0a3,<0.12.dev' numpy: '>=1.26.0,<1.27.0' - url: git+https://github.com/MiraGeoscience/param-sweeps.git@8d7db643fb6e43490b05e2e1d53caa9cdae07a10 + 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: 8d7db643fb6e43490b05e2e1d53caa9cdae07a10 - source: - type: url - url: git+https://github.com/MiraGeoscience/param-sweeps.git@8d7db643fb6e43490b05e2e1d53caa9cdae07a10 + sha256: 777618dd6eef4b6e86b4976e01c29bb202abb9d295b0774baeabf7534fb9389c category: main optional: false - name: simpeg-drivers - version: 0.3.0-alpha.6 + version: 0.3.0a6 manager: pip platform: linux-64 dependencies: @@ -5156,16 +5132,13 @@ package: scikit-learn: '>=1.4.0,<1.5.0' scipy: '>=1.14.0,<1.15.0' tqdm: '>=4.66.1,<5.0.0' - url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@cef51c8544871aaf9cff890c1ffc9c5cb4516359 + url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/simpeg-drivers/0.3.0-alpha.6/simpeg_drivers-0.3.0a6-py3-none-any.whl hash: - sha256: cef51c8544871aaf9cff890c1ffc9c5cb4516359 - source: - type: url - url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@cef51c8544871aaf9cff890c1ffc9c5cb4516359 + sha256: 674a0c823cbf434311f29877c2f15c678bf8ec26a9ade03a52e036f53426a6b3 category: main optional: false - name: simpeg-drivers - version: 0.3.0-alpha.6 + version: 0.3.0a6 manager: pip platform: win-64 dependencies: @@ -5184,11 +5157,8 @@ package: scikit-learn: '>=1.4.0,<1.5.0' scipy: '>=1.14.0,<1.15.0' tqdm: '>=4.66.1,<5.0.0' - url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@cef51c8544871aaf9cff890c1ffc9c5cb4516359 + url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/simpeg-drivers/0.3.0-alpha.6/simpeg_drivers-0.3.0a6-py3-none-any.whl hash: - sha256: cef51c8544871aaf9cff890c1ffc9c5cb4516359 - source: - type: url - url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@cef51c8544871aaf9cff890c1ffc9c5cb4516359 + sha256: 674a0c823cbf434311f29877c2f15c678bf8ec26a9ade03a52e036f53426a6b3 category: main optional: false diff --git a/py-3.11.conda-lock.yml b/py-3.11.conda-lock.yml index 07a61c4..e8450ff 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: e8056ea211d8fa3c26ac84d3b33a4cfa7beb854138cc87403de63abb34a5e0ef - linux-64: 8516722c272520bd78d183653ce256ae4784b6fd9e2c0c3a6a7112178c591a81 + win-64: 18014be1793f4d33dad1b4d65b56c92f1cbac80b6ee39173fc31cea139bfdf30 + linux-64: 57fd7e2276719af70e0631a88a464b961acee7e0dd3348b944112d2dd20cf65d channels: - url: conda-forge used_env_vars: [] @@ -2515,29 +2515,29 @@ package: category: main optional: false - name: llvm-openmp - version: 20.1.3 + version: 20.1.4 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-20.1.3-h024ca30_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-20.1.4-h024ca30_0.conda hash: - md5: c721339ea8746513e42b1233b4bbdfb0 - sha256: 4327a463f43b0d95ca0e5f92094383ef53fd2a91d649debfc531b941fe44fd48 + md5: 4fc395cda27912a7d904b86b5dbf3a4d + sha256: 5b39cdde3457e41b133d6f1fe53095c7fd3951bbdab46580098ccbf5ee9c99f7 category: main optional: false - name: llvm-openmp - version: 20.1.3 + version: 20.1.4 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-20.1.3-h30eaf37_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-20.1.4-h30eaf37_0.conda hash: - md5: 183c102075722a7aa993f94de1d135f2 - sha256: 27326e733ce7ad87054a409c02b829594cc6276232b987eb135cd1a225eac669 + md5: 3087da6f7e741dc1498e85ef87a553dc + sha256: 0c85b0ceda02c26bbea5a789c2d1735485dbc2a1089655a8f2193c5850a7bbab category: main optional: false - name: locket @@ -2692,7 +2692,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 @@ -2975,7 +2975,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.8' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda hash: md5: 58335b26c38bf4a20f399384c33cbcf9 @@ -2987,7 +2987,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.8' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda hash: md5: 58335b26c38bf4a20f399384c33cbcf9 @@ -3103,7 +3103,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 @@ -3115,7 +3115,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 @@ -3209,7 +3209,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 @@ -3221,7 +3221,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 @@ -3367,7 +3367,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' @@ -3388,7 +3388,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' @@ -3898,7 +3898,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 @@ -3915,7 +3915,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' @@ -3928,27 +3928,27 @@ package: category: main optional: false - name: setuptools - version: 79.0.1 + version: 80.1.0 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/setuptools-79.0.1-pyhff2d567_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/setuptools-80.1.0-pyhff2d567_0.conda hash: - md5: fa6669cc21abd4b7b6c5393b7bc71914 - sha256: 5ebc4bb71fbdc8048b08848519150c8d44b8eb18445711d3258c9d402ba87a2c + md5: f6f72d0837c79eaec77661be43e8a691 + sha256: 777d34ed359cedd5a5004c930077c101bb3b70e5fbb04d29da5058d75b0ba487 category: main optional: false - name: setuptools - version: 79.0.1 + version: 80.1.0 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/setuptools-79.0.1-pyhff2d567_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/setuptools-80.1.0-pyhff2d567_0.conda hash: - md5: fa6669cc21abd4b7b6c5393b7bc71914 - sha256: 5ebc4bb71fbdc8048b08848519150c8d44b8eb18445711d3258c9d402ba87a2c + md5: f6f72d0837c79eaec77661be43e8a691 + sha256: 777d34ed359cedd5a5004c930077c101bb3b70e5fbb04d29da5058d75b0ba487 category: main optional: false - name: six @@ -4574,7 +4574,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 @@ -4586,7 +4586,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 @@ -5016,41 +5016,35 @@ package: category: main optional: false - name: geoapps-utils - version: 0.5.0-alpha.4 + version: 0.5.0a3 manager: pip platform: linux-64 dependencies: - geoh5py: 0.11.0-alpha.5 + geoh5py: '>=0.11.0a1,<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: git+https://github.com/MiraGeoscience/geoapps-utils.git@06ee42f5f4767bb6e6da56b919f631722f6fdf36 + 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: 06ee42f5f4767bb6e6da56b919f631722f6fdf36 - source: - type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@06ee42f5f4767bb6e6da56b919f631722f6fdf36 + sha256: a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c category: main optional: false - name: geoapps-utils - version: 0.5.0-alpha.4 + version: 0.5.0a3 manager: pip platform: win-64 dependencies: - geoh5py: 0.11.0-alpha.5 + geoh5py: '>=0.11.0a1,<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: git+https://github.com/MiraGeoscience/geoapps-utils.git@06ee42f5f4767bb6e6da56b919f631722f6fdf36 + 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: 06ee42f5f4767bb6e6da56b919f631722f6fdf36 - source: - type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@06ee42f5f4767bb6e6da56b919f631722f6fdf36 + sha256: a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c category: main optional: false - name: geoh5py - version: 0.11.0-alpha.5 + version: 0.11.0a5 manager: pip platform: linux-64 dependencies: @@ -5058,16 +5052,13 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 + url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/geoh5py/0.11.0-alpha.5/geoh5py-0.11.0a5-py3-none-any.whl hash: - sha256: 55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 - source: - type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 + sha256: 78efa387e693fac737e4fd304ab024d37d9eb3eb95c5191a85de57fb82ceea2e category: main optional: false - name: geoh5py - version: 0.11.0-alpha.5 + version: 0.11.0a5 manager: pip platform: win-64 dependencies: @@ -5075,12 +5066,9 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 + url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/geoh5py/0.11.0-alpha.5/geoh5py-0.11.0a5-py3-none-any.whl hash: - sha256: 55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 - source: - type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 + sha256: 78efa387e693fac737e4fd304ab024d37d9eb3eb95c5191a85de57fb82ceea2e category: main optional: false - name: mira-simpeg @@ -5099,7 +5087,7 @@ package: pymatsolver: '>=0.3' scipy: '>=1.8' zarr: '*' - url: https://files.pythonhosted.org/packages/a9/f1/225e442cdcbbeb6786ec9eb456f86f95b30f515addea1df6f453af899120/mira_simpeg-0.23.0.1a3-py3-none-any.whl + 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: 14467e65d801e082bac8a4d972a30b162018df27d06310fb1f2c6960968f88d2 category: main @@ -5120,13 +5108,13 @@ package: pymatsolver: '>=0.3' scipy: '>=1.8' zarr: '*' - url: https://files.pythonhosted.org/packages/a9/f1/225e442cdcbbeb6786ec9eb456f86f95b30f515addea1df6f453af899120/mira_simpeg-0.23.0.1a3-py3-none-any.whl + 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: 14467e65d801e082bac8a4d972a30b162018df27d06310fb1f2c6960968f88d2 category: main optional: false - name: octree-creation-app - version: 0.3.0-alpha.3 + version: 0.3.0a2 manager: pip platform: linux-64 dependencies: @@ -5136,16 +5124,13 @@ package: numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/octree-creation-app.git@80641c96ff4b3a7e67f25278c323c5f9f931982f + 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: 80641c96ff4b3a7e67f25278c323c5f9f931982f - source: - type: url - url: git+https://github.com/MiraGeoscience/octree-creation-app.git@80641c96ff4b3a7e67f25278c323c5f9f931982f + sha256: 002896126bf5a958aad1bb9c0a272bfd3c6985d1456dc8022c4e07b5582730ff category: main optional: false - name: octree-creation-app - version: 0.3.0-alpha.3 + version: 0.3.0a2 manager: pip platform: win-64 dependencies: @@ -5155,46 +5140,37 @@ package: numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/octree-creation-app.git@80641c96ff4b3a7e67f25278c323c5f9f931982f + 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: 80641c96ff4b3a7e67f25278c323c5f9f931982f - source: - type: url - url: git+https://github.com/MiraGeoscience/octree-creation-app.git@80641c96ff4b3a7e67f25278c323c5f9f931982f + sha256: 002896126bf5a958aad1bb9c0a272bfd3c6985d1456dc8022c4e07b5582730ff category: main optional: false - name: param-sweeps - version: 0.2.1-alpha.2 + version: 0.2.1a1 manager: pip platform: linux-64 dependencies: - geoh5py: 0.11.0-alpha.5 + geoh5py: '>=0.11.0a3,<0.12.dev' numpy: '>=1.26.0,<1.27.0' - url: git+https://github.com/MiraGeoscience/param-sweeps.git@8d7db643fb6e43490b05e2e1d53caa9cdae07a10 + 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: 8d7db643fb6e43490b05e2e1d53caa9cdae07a10 - source: - type: url - url: git+https://github.com/MiraGeoscience/param-sweeps.git@8d7db643fb6e43490b05e2e1d53caa9cdae07a10 + sha256: 777618dd6eef4b6e86b4976e01c29bb202abb9d295b0774baeabf7534fb9389c category: main optional: false - name: param-sweeps - version: 0.2.1-alpha.2 + version: 0.2.1a1 manager: pip platform: win-64 dependencies: - geoh5py: 0.11.0-alpha.5 + geoh5py: '>=0.11.0a3,<0.12.dev' numpy: '>=1.26.0,<1.27.0' - url: git+https://github.com/MiraGeoscience/param-sweeps.git@8d7db643fb6e43490b05e2e1d53caa9cdae07a10 + 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: 8d7db643fb6e43490b05e2e1d53caa9cdae07a10 - source: - type: url - url: git+https://github.com/MiraGeoscience/param-sweeps.git@8d7db643fb6e43490b05e2e1d53caa9cdae07a10 + sha256: 777618dd6eef4b6e86b4976e01c29bb202abb9d295b0774baeabf7534fb9389c category: main optional: false - name: simpeg-drivers - version: 0.3.0-alpha.6 + version: 0.3.0a6 manager: pip platform: linux-64 dependencies: @@ -5213,16 +5189,13 @@ package: scikit-learn: '>=1.4.0,<1.5.0' scipy: '>=1.14.0,<1.15.0' tqdm: '>=4.66.1,<5.0.0' - url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@cef51c8544871aaf9cff890c1ffc9c5cb4516359 + url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/simpeg-drivers/0.3.0-alpha.6/simpeg_drivers-0.3.0a6-py3-none-any.whl hash: - sha256: cef51c8544871aaf9cff890c1ffc9c5cb4516359 - source: - type: url - url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@cef51c8544871aaf9cff890c1ffc9c5cb4516359 + sha256: 674a0c823cbf434311f29877c2f15c678bf8ec26a9ade03a52e036f53426a6b3 category: main optional: false - name: simpeg-drivers - version: 0.3.0-alpha.6 + version: 0.3.0a6 manager: pip platform: win-64 dependencies: @@ -5241,11 +5214,8 @@ package: scikit-learn: '>=1.4.0,<1.5.0' scipy: '>=1.14.0,<1.15.0' tqdm: '>=4.66.1,<5.0.0' - url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@cef51c8544871aaf9cff890c1ffc9c5cb4516359 + url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/simpeg-drivers/0.3.0-alpha.6/simpeg_drivers-0.3.0a6-py3-none-any.whl hash: - sha256: cef51c8544871aaf9cff890c1ffc9c5cb4516359 - source: - type: url - url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@cef51c8544871aaf9cff890c1ffc9c5cb4516359 + sha256: 674a0c823cbf434311f29877c2f15c678bf8ec26a9ade03a52e036f53426a6b3 category: main optional: false diff --git a/py-3.12.conda-lock.yml b/py-3.12.conda-lock.yml index 4b27b0c..933a0e2 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: 7a5d95922f3cec8818bb12f6e5d0ccf9dca701732799276d6571e277079e7add - linux-64: b6c54918f42fd6d80bf70f2057913998c9e4e9bd4e5e0502896912cc30a55c73 + win-64: 9385bcb342567fbc6d44b85825cac4d9223e61f916dbf4ed980432341eb0efa5 + linux-64: bdaa416013890ee4e81546c956d896ef1f9ae6c0245bdbcfe42c2d4c2bd179c0 channels: - url: conda-forge used_env_vars: [] @@ -2515,29 +2515,29 @@ package: category: main optional: false - name: llvm-openmp - version: 20.1.3 + version: 20.1.4 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-20.1.3-h024ca30_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-20.1.4-h024ca30_0.conda hash: - md5: c721339ea8746513e42b1233b4bbdfb0 - sha256: 4327a463f43b0d95ca0e5f92094383ef53fd2a91d649debfc531b941fe44fd48 + md5: 4fc395cda27912a7d904b86b5dbf3a4d + sha256: 5b39cdde3457e41b133d6f1fe53095c7fd3951bbdab46580098ccbf5ee9c99f7 category: main optional: false - name: llvm-openmp - version: 20.1.3 + version: 20.1.4 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-20.1.3-h30eaf37_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-20.1.4-h30eaf37_0.conda hash: - md5: 183c102075722a7aa993f94de1d135f2 - sha256: 27326e733ce7ad87054a409c02b829594cc6276232b987eb135cd1a225eac669 + md5: 3087da6f7e741dc1498e85ef87a553dc + sha256: 0c85b0ceda02c26bbea5a789c2d1735485dbc2a1089655a8f2193c5850a7bbab category: main optional: false - name: locket @@ -2692,7 +2692,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 @@ -2975,7 +2975,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.8' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda hash: md5: 58335b26c38bf4a20f399384c33cbcf9 @@ -2987,7 +2987,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.8' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda hash: md5: 58335b26c38bf4a20f399384c33cbcf9 @@ -3103,7 +3103,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 @@ -3115,7 +3115,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 @@ -3209,7 +3209,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 @@ -3221,7 +3221,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 @@ -3367,7 +3367,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' @@ -3388,7 +3388,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' @@ -3898,7 +3898,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 @@ -3915,7 +3915,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' @@ -3928,27 +3928,27 @@ package: category: main optional: false - name: setuptools - version: 79.0.1 + version: 80.1.0 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/setuptools-79.0.1-pyhff2d567_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/setuptools-80.1.0-pyhff2d567_0.conda hash: - md5: fa6669cc21abd4b7b6c5393b7bc71914 - sha256: 5ebc4bb71fbdc8048b08848519150c8d44b8eb18445711d3258c9d402ba87a2c + md5: f6f72d0837c79eaec77661be43e8a691 + sha256: 777d34ed359cedd5a5004c930077c101bb3b70e5fbb04d29da5058d75b0ba487 category: main optional: false - name: setuptools - version: 79.0.1 + version: 80.1.0 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/setuptools-79.0.1-pyhff2d567_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/setuptools-80.1.0-pyhff2d567_0.conda hash: - md5: fa6669cc21abd4b7b6c5393b7bc71914 - sha256: 5ebc4bb71fbdc8048b08848519150c8d44b8eb18445711d3258c9d402ba87a2c + md5: f6f72d0837c79eaec77661be43e8a691 + sha256: 777d34ed359cedd5a5004c930077c101bb3b70e5fbb04d29da5058d75b0ba487 category: main optional: false - name: six @@ -4574,7 +4574,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 @@ -4586,7 +4586,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 @@ -5016,41 +5016,35 @@ package: category: main optional: false - name: geoapps-utils - version: 0.5.0-alpha.4 + version: 0.5.0a3 manager: pip platform: linux-64 dependencies: - geoh5py: 0.11.0-alpha.5 + geoh5py: '>=0.11.0a1,<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: git+https://github.com/MiraGeoscience/geoapps-utils.git@06ee42f5f4767bb6e6da56b919f631722f6fdf36 + 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: 06ee42f5f4767bb6e6da56b919f631722f6fdf36 - source: - type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@06ee42f5f4767bb6e6da56b919f631722f6fdf36 + sha256: a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c category: main optional: false - name: geoapps-utils - version: 0.5.0-alpha.4 + version: 0.5.0a3 manager: pip platform: win-64 dependencies: - geoh5py: 0.11.0-alpha.5 + geoh5py: '>=0.11.0a1,<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: git+https://github.com/MiraGeoscience/geoapps-utils.git@06ee42f5f4767bb6e6da56b919f631722f6fdf36 + 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: 06ee42f5f4767bb6e6da56b919f631722f6fdf36 - source: - type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@06ee42f5f4767bb6e6da56b919f631722f6fdf36 + sha256: a752b0c8d4b11cf7f5906c1794631f1ee65e77bd17eb3c5bb85390ff06a61c3c category: main optional: false - name: geoh5py - version: 0.11.0-alpha.5 + version: 0.11.0a5 manager: pip platform: linux-64 dependencies: @@ -5058,16 +5052,13 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 + url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/geoh5py/0.11.0-alpha.5/geoh5py-0.11.0a5-py3-none-any.whl hash: - sha256: 55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 - source: - type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 + sha256: 78efa387e693fac737e4fd304ab024d37d9eb3eb95c5191a85de57fb82ceea2e category: main optional: false - name: geoh5py - version: 0.11.0-alpha.5 + version: 0.11.0a5 manager: pip platform: win-64 dependencies: @@ -5075,12 +5066,9 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 + url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/geoh5py/0.11.0-alpha.5/geoh5py-0.11.0a5-py3-none-any.whl hash: - sha256: 55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 - source: - type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@55937a4441fd17a8a95efcb4d4d678dfd3d13ef6 + sha256: 78efa387e693fac737e4fd304ab024d37d9eb3eb95c5191a85de57fb82ceea2e category: main optional: false - name: mira-simpeg @@ -5099,7 +5087,7 @@ package: pymatsolver: '>=0.3' scipy: '>=1.8' zarr: '*' - url: https://files.pythonhosted.org/packages/a9/f1/225e442cdcbbeb6786ec9eb456f86f95b30f515addea1df6f453af899120/mira_simpeg-0.23.0.1a3-py3-none-any.whl + 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: 14467e65d801e082bac8a4d972a30b162018df27d06310fb1f2c6960968f88d2 category: main @@ -5120,13 +5108,13 @@ package: pymatsolver: '>=0.3' scipy: '>=1.8' zarr: '*' - url: https://files.pythonhosted.org/packages/a9/f1/225e442cdcbbeb6786ec9eb456f86f95b30f515addea1df6f453af899120/mira_simpeg-0.23.0.1a3-py3-none-any.whl + 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: 14467e65d801e082bac8a4d972a30b162018df27d06310fb1f2c6960968f88d2 category: main optional: false - name: octree-creation-app - version: 0.3.0-alpha.3 + version: 0.3.0a2 manager: pip platform: linux-64 dependencies: @@ -5136,16 +5124,13 @@ package: numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/octree-creation-app.git@80641c96ff4b3a7e67f25278c323c5f9f931982f + 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: 80641c96ff4b3a7e67f25278c323c5f9f931982f - source: - type: url - url: git+https://github.com/MiraGeoscience/octree-creation-app.git@80641c96ff4b3a7e67f25278c323c5f9f931982f + sha256: 002896126bf5a958aad1bb9c0a272bfd3c6985d1456dc8022c4e07b5582730ff category: main optional: false - name: octree-creation-app - version: 0.3.0-alpha.3 + version: 0.3.0a2 manager: pip platform: win-64 dependencies: @@ -5155,46 +5140,37 @@ package: numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/octree-creation-app.git@80641c96ff4b3a7e67f25278c323c5f9f931982f + 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: 80641c96ff4b3a7e67f25278c323c5f9f931982f - source: - type: url - url: git+https://github.com/MiraGeoscience/octree-creation-app.git@80641c96ff4b3a7e67f25278c323c5f9f931982f + sha256: 002896126bf5a958aad1bb9c0a272bfd3c6985d1456dc8022c4e07b5582730ff category: main optional: false - name: param-sweeps - version: 0.2.1-alpha.2 + version: 0.2.1a1 manager: pip platform: linux-64 dependencies: - geoh5py: 0.11.0-alpha.5 + geoh5py: '>=0.11.0a3,<0.12.dev' numpy: '>=1.26.0,<1.27.0' - url: git+https://github.com/MiraGeoscience/param-sweeps.git@8d7db643fb6e43490b05e2e1d53caa9cdae07a10 + 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: 8d7db643fb6e43490b05e2e1d53caa9cdae07a10 - source: - type: url - url: git+https://github.com/MiraGeoscience/param-sweeps.git@8d7db643fb6e43490b05e2e1d53caa9cdae07a10 + sha256: 777618dd6eef4b6e86b4976e01c29bb202abb9d295b0774baeabf7534fb9389c category: main optional: false - name: param-sweeps - version: 0.2.1-alpha.2 + version: 0.2.1a1 manager: pip platform: win-64 dependencies: - geoh5py: 0.11.0-alpha.5 + geoh5py: '>=0.11.0a3,<0.12.dev' numpy: '>=1.26.0,<1.27.0' - url: git+https://github.com/MiraGeoscience/param-sweeps.git@8d7db643fb6e43490b05e2e1d53caa9cdae07a10 + 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: 8d7db643fb6e43490b05e2e1d53caa9cdae07a10 - source: - type: url - url: git+https://github.com/MiraGeoscience/param-sweeps.git@8d7db643fb6e43490b05e2e1d53caa9cdae07a10 + sha256: 777618dd6eef4b6e86b4976e01c29bb202abb9d295b0774baeabf7534fb9389c category: main optional: false - name: simpeg-drivers - version: 0.3.0-alpha.6 + version: 0.3.0a6 manager: pip platform: linux-64 dependencies: @@ -5213,16 +5189,13 @@ package: scikit-learn: '>=1.4.0,<1.5.0' scipy: '>=1.14.0,<1.15.0' tqdm: '>=4.66.1,<5.0.0' - url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@cef51c8544871aaf9cff890c1ffc9c5cb4516359 + url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/simpeg-drivers/0.3.0-alpha.6/simpeg_drivers-0.3.0a6-py3-none-any.whl hash: - sha256: cef51c8544871aaf9cff890c1ffc9c5cb4516359 - source: - type: url - url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@cef51c8544871aaf9cff890c1ffc9c5cb4516359 + sha256: 674a0c823cbf434311f29877c2f15c678bf8ec26a9ade03a52e036f53426a6b3 category: main optional: false - name: simpeg-drivers - version: 0.3.0-alpha.6 + version: 0.3.0a6 manager: pip platform: win-64 dependencies: @@ -5241,11 +5214,8 @@ package: scikit-learn: '>=1.4.0,<1.5.0' scipy: '>=1.14.0,<1.15.0' tqdm: '>=4.66.1,<5.0.0' - url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@cef51c8544871aaf9cff890c1ffc9c5cb4516359 + url: https://mirageoscienceltd.jfrog.io/artifactory/api/pypi/geoplus-pypi-dev/simpeg-drivers/0.3.0-alpha.6/simpeg_drivers-0.3.0a6-py3-none-any.whl hash: - sha256: cef51c8544871aaf9cff890c1ffc9c5cb4516359 - source: - type: url - url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@cef51c8544871aaf9cff890c1ffc9c5cb4516359 + sha256: 674a0c823cbf434311f29877c2f15c678bf8ec26a9ade03a52e036f53426a6b3 category: main optional: false diff --git a/pyproject.toml b/pyproject.toml index 7c5ec35..ec9ed19 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -61,20 +61,20 @@ trimesh = "~4.1.3" ## Pip dependencies from Git repositories #---------------------------------------- -#geoh5py = {version = ">=0.11.0a3, <0.12.dev", source = "pypi", allow-prereleases = true} -geoh5py = {git = "https://github.com/MiraGeoscience/geoh5py.git", rev = "release/0.11.0"} +geoh5py = {version = ">=0.11.0a3, <0.12.dev", source = "pypi", allow-prereleases = true} +#geoh5py = {git = "https://github.com/MiraGeoscience/geoh5py.git", rev = "release/0.11.0"} -#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"} +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"} -#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"} +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"} -#octree-creation-app = {version = ">=0.3.0a1, <0.4.dev", source = "pypi", allow-prereleases = true} -octree-creation-app = {git = "https://github.com/MiraGeoscience/octree-creation-app.git", rev = "release/0.3.0"} +octree-creation-app = {version = ">=0.3.0a1, <0.4.dev", source = "pypi", allow-prereleases = true} +#octree-creation-app = {git = "https://github.com/MiraGeoscience/octree-creation-app.git", rev = "release/0.3.0"} -#simpeg-drivers = {version = ">=0.3.0a1, <0.4.dev", source = "pypi", allow-prereleases = true} -simpeg-drivers = {git = "https://github.com/MiraGeoscience/simpeg-drivers.git", rev = "release/0.3.0" } +simpeg-drivers = {version = ">=0.3.0a6, <0.4.dev", source = "pypi", allow-prereleases = true} +#simpeg-drivers = {git = "https://github.com/MiraGeoscience/simpeg-drivers.git", rev = "release/0.3.0" } ## about pip dependencies diff --git a/recipe.yaml b/recipe.yaml index c7da3a3..62c252b 100644 --- a/recipe.yaml +++ b/recipe.yaml @@ -30,7 +30,7 @@ requirements: - geoh5py >=0.11.0a3, <0.12.dev - octree-creation-app >=0.3.0a1, <0.4.dev - param-sweeps >=0.2.1a1, <0.3.dev - - simpeg-drivers >=0.3.0a1, <0.4.dev + - simpeg-drivers >=0.3.0a6, <0.4.dev # other direct dependencies - numpy >=1.26.0, <1.27.dev - pydantic >=2.5.2, <3.0.dev From eb3a2ad5c9a8c40560dc70a709db5aa1e3d8d6b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Hensgen?= Date: Thu, 1 May 2025 21:37:33 -0400 Subject: [PATCH 12/14] bump version to alpha.3 --- plate_simulation/__init__.py | 2 +- pyproject.toml | 2 +- recipe.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/plate_simulation/__init__.py b/plate_simulation/__init__.py index 83b0c90..f0bdfe1 100644 --- a/plate_simulation/__init__.py +++ b/plate_simulation/__init__.py @@ -12,7 +12,7 @@ from pathlib import Path -__version__ = "0.2.0-alpha.2" +__version__ = "0.2.0-alpha.3" from geoapps_utils.utils.importing import assets_path as assets_path_impl diff --git a/pyproject.toml b/pyproject.toml index ec9ed19..9d4b10d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "plate-simulation" -version = "0.2.0-alpha.2" +version = "0.2.0-alpha.3" license = "MIT" description = """ diff --git a/recipe.yaml b/recipe.yaml index 62c252b..a9f0aaf 100644 --- a/recipe.yaml +++ b/recipe.yaml @@ -2,7 +2,7 @@ schema_version: 1 context: name: "plate-simulation" - version: "0.2.0a2" + version: "0.2.0a3" python_min: "3.10" package: From b079d8513df5ccd2c2f2e8cc963e707e47509918 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Hensgen?= Date: Thu, 1 May 2025 23:34:38 -0400 Subject: [PATCH 13/14] pre-commit autoupdate --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index d43f76f..0665e64 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -12,7 +12,7 @@ ci: repos: - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.11.5 + rev: v0.11.8 hooks: - id: ruff args: From 7c9197e7fe11bbefadfb18f401c5a56614e2c68d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Hensgen?= Date: Thu, 1 May 2025 23:40:03 -0400 Subject: [PATCH 14/14] [GEOPY-2049] relock envs --- .../py-3.10-linux-64-dev.conda.lock.yml | 48 +- environments/py-3.10-linux-64.conda.lock.yml | 46 +- .../py-3.10-win-64-dev.conda.lock.yml | 48 +- environments/py-3.10-win-64.conda.lock.yml | 46 +- .../py-3.11-linux-64-dev.conda.lock.yml | 48 +- environments/py-3.11-linux-64.conda.lock.yml | 46 +- .../py-3.11-win-64-dev.conda.lock.yml | 48 +- environments/py-3.11-win-64.conda.lock.yml | 46 +- .../py-3.12-linux-64-dev.conda.lock.yml | 48 +- environments/py-3.12-linux-64.conda.lock.yml | 46 +- .../py-3.12-win-64-dev.conda.lock.yml | 48 +- environments/py-3.12-win-64.conda.lock.yml | 46 +- py-3.10.conda-lock.yml | 1027 ++++++++-------- py-3.11.conda-lock.yml | 1035 +++++++++-------- py-3.12.conda-lock.yml | 1035 +++++++++-------- 15 files changed, 1925 insertions(+), 1736 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 9e4d6da..256bf0c 100644 --- a/environments/py-3.10-linux-64-dev.conda.lock.yml +++ b/environments/py-3.10-linux-64-dev.conda.lock.yml @@ -17,7 +17,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.4.26=hbd8a1cb_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - certifi=2025.1.31=pyhd8ed1ab_0 @@ -26,19 +26,19 @@ dependencies: - click=8.1.8=pyh707e725_0 - cloudpickle=3.1.1=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - - contourpy=1.3.1=py310h3788b33_0 + - contourpy=1.3.2=py310h3788b33_0 - coverage=7.8.0=py310h89163eb_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py310ha75aee5_0 - dask-core=2025.3.0=pyhd8ed1ab_0 - - dill=0.3.9=pyhd8ed1ab_1 + - dill=0.4.0=pyhd8ed1ab_0 - discretize=0.11.2=py310ha2bacc8_1 - distributed=2025.3.0=pyhd8ed1ab_0 - docutils=0.19=py310hff52083_1 - exceptiongroup=1.2.2=pyhd8ed1ab_1 - 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 @@ -58,7 +58,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 @@ -66,19 +66,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 @@ -87,17 +89,17 @@ dependencies: - libscotch=7.0.6=hea33c07_1 - libspatialindex=2.0.0=he02047a_0 - libsqlite=3.49.1=hee588c1_2 - - libssh2=1.11.1=hf672d98_0 + - libssh2=1.11.1=hcf80075_0 - libstdcxx=14.2.0=h8f9b012_2 - libstdcxx-ng=14.2.0=h4852527_2 - - libtiff=4.7.0=hd9ff511_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 - 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.4=h024ca30_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py310h89163eb_1 - matplotlib-base=3.8.4=py310hef631a5_2 @@ -105,18 +107,18 @@ 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=24.2=pyhd8ed1ab_2 + - packaging=25.0=pyh29332c3_1 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py310hebfe307_1 - - pip=25.0.1=pyh8b19718_0 + - pip=25.1=pyh8b19718_0 - platformdirs=4.3.7=pyh29332c3_0 - pluggy=1.5.0=pyhd8ed1ab_1 - psutil=7.0.0=py310ha75aee5_0 @@ -135,7 +137,7 @@ dependencies: - python=3.10.17=hd6af730_0_cpython - python-dateutil=2.9.0.post0=pyhff2d567_1 - python-mumps=0.0.3=py310h6410a28_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 @@ -144,7 +146,7 @@ dependencies: - rtree=1.2.0=py310haf1e407_1 - scikit-learn=1.4.2=py310h981052a_1 - scipy=1.14.1=py310hfcf56fc_2 - - setuptools=78.1.0=pyhff2d567_0 + - setuptools=80.1.0=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 @@ -179,15 +181,15 @@ dependencies: - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 - zipp=3.21.0=pyhd8ed1ab_1 - - zstandard=0.23.0=py310ha75aee5_1 + - zstandard=0.23.0=py310ha75aee5_2 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@6e21320c89581dccb1635d8460dfe296ec41b6da - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@4b9756b5c9e98c709a2b23e2e558edb29e5f3416 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@8c73f0647ae51f1ca7d4af6ded7f2e63db52a428 - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@e9c99d6fd5d324571a2717990aecb3ed673cbaca - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 - - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@7544763d9d873237256b963c32db54ce33c329c7 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@6e21320c89581dccb1635d8460dfe296ec41b6da + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@24027d81b65df99d5f582acc4497ed33df8a3396 + - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@e9c99d6fd5d324571a2717990aecb3ed673cbaca + - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@2d510ad712a20663dc0abb9afbead41537d10d91 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 8b3bb95..2380a82 100644 --- a/environments/py-3.10-linux-64.conda.lock.yml +++ b/environments/py-3.10-linux-64.conda.lock.yml @@ -14,7 +14,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.4.26=hbd8a1cb_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - certifi=2025.1.31=pyhd8ed1ab_0 @@ -22,7 +22,7 @@ dependencies: - click=8.1.8=pyh707e725_0 - cloudpickle=3.1.1=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - - contourpy=1.3.1=py310h3788b33_0 + - contourpy=1.3.2=py310h3788b33_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py310ha75aee5_0 - dask-core=2025.3.0=pyhd8ed1ab_0 @@ -30,7 +30,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 @@ -46,7 +46,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 @@ -54,19 +54,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 @@ -75,35 +77,35 @@ dependencies: - libscotch=7.0.6=hea33c07_1 - libspatialindex=2.0.0=he02047a_0 - libsqlite=3.49.1=hee588c1_2 - - libssh2=1.11.1=hf672d98_0 + - libssh2=1.11.1=hcf80075_0 - libstdcxx=14.2.0=h8f9b012_2 - libstdcxx-ng=14.2.0=h4852527_2 - - libtiff=4.7.0=hd9ff511_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 - 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.4=h024ca30_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py310h89163eb_1 - matplotlib-base=3.8.4=py310hef631a5_2 - metis=5.1.0=hd0bcaf9_1007 - mkl=2024.2.2=ha957f24_16 - msgpack-python=1.1.0=py310h3788b33_0 - - 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=24.2=pyhd8ed1ab_2 + - packaging=25.0=pyh29332c3_1 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py310hebfe307_1 - - pip=25.0.1=pyh8b19718_0 + - pip=25.1=pyh8b19718_0 - psutil=7.0.0=py310ha75aee5_0 - pthread-stubs=0.4=hb9d3cd8_1002 - pycparser=2.22=pyh29332c3_1 @@ -116,13 +118,13 @@ dependencies: - python=3.10.17=hd6af730_0_cpython - python-dateutil=2.9.0.post0=pyhff2d567_1 - python-mumps=0.0.3=py310h6410a28_0 - - python_abi=3.10=6_cp310 + - python_abi=3.10=7_cp310 - pyyaml=6.0.2=py310h89163eb_2 - readline=8.2=h8c095d6_2 - rtree=1.2.0=py310haf1e407_1 - scikit-learn=1.4.2=py310h981052a_1 - scipy=1.14.1=py310hfcf56fc_2 - - setuptools=78.1.0=pyhff2d567_0 + - setuptools=80.1.0=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - tbb=2021.13.0=hceb3a55_1 @@ -146,15 +148,15 @@ dependencies: - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 - zipp=3.21.0=pyhd8ed1ab_1 - - zstandard=0.23.0=py310ha75aee5_1 + - zstandard=0.23.0=py310ha75aee5_2 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@6e21320c89581dccb1635d8460dfe296ec41b6da - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@4b9756b5c9e98c709a2b23e2e558edb29e5f3416 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@8c73f0647ae51f1ca7d4af6ded7f2e63db52a428 - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@e9c99d6fd5d324571a2717990aecb3ed673cbaca - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 - - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@7544763d9d873237256b963c32db54ce33c329c7 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@6e21320c89581dccb1635d8460dfe296ec41b6da + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@24027d81b65df99d5f582acc4497ed33df8a3396 + - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@e9c99d6fd5d324571a2717990aecb3ed673cbaca + - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@2d510ad712a20663dc0abb9afbead41537d10d91 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 8771384..faf04b2 100644 --- a/environments/py-3.10-win-64-dev.conda.lock.yml +++ b/environments/py-3.10-win-64-dev.conda.lock.yml @@ -16,7 +16,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.4.26=h4c7d964_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - certifi=2025.1.31=pyhd8ed1ab_0 @@ -25,19 +25,19 @@ dependencies: - click=8.1.8=pyh7428d3b_0 - cloudpickle=3.1.1=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - - contourpy=1.3.1=py310hc19bc0b_0 + - contourpy=1.3.2=py310hc19bc0b_0 - coverage=7.8.0=py310h38315fa_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py310ha8f682b_0 - dask-core=2025.3.0=pyhd8ed1ab_0 - - dill=0.3.9=pyhd8ed1ab_1 + - dill=0.4.0=pyhd8ed1ab_0 - discretize=0.11.2=py310h3e8ed56_1 - distributed=2025.3.0=pyhd8ed1ab_0 - docutils=0.19=py310h5588dad_1 - exceptiongroup=1.2.2=pyhd8ed1ab_1 - 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 @@ -56,7 +56,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 @@ -64,44 +64,46 @@ 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 + - libpng=1.6.47=h7a4582a_0 - libspatialindex=2.0.0=h5a68840_0 - libsqlite=3.49.1=h67fdade_2 - - libssh2=1.11.1=he619c9f_0 - - libtiff=4.7.0=h797046b_3 + - libssh2=1.11.1=h9aa295b_0 + - 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 - libxml2=2.13.7=h442d1da_1 - libzlib=1.3.1=h2466b09_2 - - llvm-openmp=20.1.2=h30eaf37_1 + - llvm-openmp=20.1.4=h30eaf37_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py310h38315fa_1 - matplotlib-base=3.8.4=py310hadb10a8_2 - mccabe=0.7.0=pyhd8ed1ab_1 - mkl=2024.2.2=h66d3029_15 - msgpack-python=1.1.0=py310hc19bc0b_0 - - 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=24.2=pyhd8ed1ab_2 + - packaging=25.0=pyh29332c3_1 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py310h3e38d90_1 - - pip=25.0.1=pyh8b19718_0 + - pip=25.1=pyh8b19718_0 - platformdirs=4.3.7=pyh29332c3_0 - pluggy=1.5.0=pyhd8ed1ab_1 - psutil=7.0.0=py310ha8f682b_0 @@ -120,7 +122,7 @@ dependencies: - python=3.10.17=h8c5b53a_0_cpython - python-dateutil=2.9.0.post0=pyhff2d567_1 - python-mumps=0.0.3=py310hb64895d_0 - - python_abi=3.10=6_cp310 + - python_abi=3.10=7_cp310 - pytz=2025.2=pyhd8ed1ab_0 - pyyaml=6.0.2=py310h38315fa_2 - readthedocs-sphinx-ext=2.2.5=pyhd8ed1ab_1 @@ -128,7 +130,7 @@ dependencies: - rtree=1.2.0=py310h08d5ad2_1 - scikit-learn=1.4.2=py310hf2a6c47_1 - scipy=1.14.1=py310hbd0dde3_2 - - setuptools=78.1.0=pyhff2d567_0 + - setuptools=80.1.0=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 @@ -168,15 +170,15 @@ dependencies: - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 - zipp=3.21.0=pyhd8ed1ab_1 - - zstandard=0.23.0=py310ha8f682b_1 + - zstandard=0.23.0=py310ha8f682b_2 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@6e21320c89581dccb1635d8460dfe296ec41b6da - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@4b9756b5c9e98c709a2b23e2e558edb29e5f3416 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@8c73f0647ae51f1ca7d4af6ded7f2e63db52a428 - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@e9c99d6fd5d324571a2717990aecb3ed673cbaca - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 - - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@7544763d9d873237256b963c32db54ce33c329c7 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@6e21320c89581dccb1635d8460dfe296ec41b6da + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@24027d81b65df99d5f582acc4497ed33df8a3396 + - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@e9c99d6fd5d324571a2717990aecb3ed673cbaca + - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@2d510ad712a20663dc0abb9afbead41537d10d91 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 588ff5d..6898fb4 100644 --- a/environments/py-3.10-win-64.conda.lock.yml +++ b/environments/py-3.10-win-64.conda.lock.yml @@ -13,7 +13,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.4.26=h4c7d964_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - certifi=2025.1.31=pyhd8ed1ab_0 @@ -21,7 +21,7 @@ dependencies: - click=8.1.8=pyh7428d3b_0 - cloudpickle=3.1.1=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - - contourpy=1.3.1=py310hc19bc0b_0 + - contourpy=1.3.2=py310hc19bc0b_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py310ha8f682b_0 - dask-core=2025.3.0=pyhd8ed1ab_0 @@ -29,7 +29,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 @@ -44,7 +44,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 @@ -52,43 +52,45 @@ 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 + - libpng=1.6.47=h7a4582a_0 - libspatialindex=2.0.0=h5a68840_0 - libsqlite=3.49.1=h67fdade_2 - - libssh2=1.11.1=he619c9f_0 - - libtiff=4.7.0=h797046b_3 + - libssh2=1.11.1=h9aa295b_0 + - 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 - libxml2=2.13.7=h442d1da_1 - libzlib=1.3.1=h2466b09_2 - - llvm-openmp=20.1.2=h30eaf37_1 + - llvm-openmp=20.1.4=h30eaf37_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py310h38315fa_1 - matplotlib-base=3.8.4=py310hadb10a8_2 - mkl=2024.2.2=h66d3029_15 - msgpack-python=1.1.0=py310hc19bc0b_0 - - 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=24.2=pyhd8ed1ab_2 + - packaging=25.0=pyh29332c3_1 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py310h3e38d90_1 - - pip=25.0.1=pyh8b19718_0 + - pip=25.1=pyh8b19718_0 - psutil=7.0.0=py310ha8f682b_0 - pthread-stubs=0.4=h0e40799_1002 - pycparser=2.22=pyh29332c3_1 @@ -101,12 +103,12 @@ dependencies: - python=3.10.17=h8c5b53a_0_cpython - python-dateutil=2.9.0.post0=pyhff2d567_1 - python-mumps=0.0.3=py310hb64895d_0 - - python_abi=3.10=6_cp310 + - python_abi=3.10=7_cp310 - pyyaml=6.0.2=py310h38315fa_2 - rtree=1.2.0=py310h08d5ad2_1 - scikit-learn=1.4.2=py310hf2a6c47_1 - scipy=1.14.1=py310hbd0dde3_2 - - setuptools=78.1.0=pyhff2d567_0 + - setuptools=80.1.0=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - tbb=2021.13.0=h62715c5_1 @@ -135,15 +137,15 @@ dependencies: - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 - zipp=3.21.0=pyhd8ed1ab_1 - - zstandard=0.23.0=py310ha8f682b_1 + - zstandard=0.23.0=py310ha8f682b_2 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@6e21320c89581dccb1635d8460dfe296ec41b6da - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@4b9756b5c9e98c709a2b23e2e558edb29e5f3416 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@8c73f0647ae51f1ca7d4af6ded7f2e63db52a428 - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@e9c99d6fd5d324571a2717990aecb3ed673cbaca - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 - - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@7544763d9d873237256b963c32db54ce33c329c7 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@6e21320c89581dccb1635d8460dfe296ec41b6da + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@24027d81b65df99d5f582acc4497ed33df8a3396 + - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@e9c99d6fd5d324571a2717990aecb3ed673cbaca + - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@2d510ad712a20663dc0abb9afbead41537d10d91 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 e280a77..1b492cb 100644 --- a/environments/py-3.11-linux-64-dev.conda.lock.yml +++ b/environments/py-3.11-linux-64-dev.conda.lock.yml @@ -17,7 +17,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.4.26=hbd8a1cb_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - certifi=2025.1.31=pyhd8ed1ab_0 @@ -26,20 +26,20 @@ dependencies: - click=8.1.8=pyh707e725_0 - cloudpickle=3.1.1=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - - contourpy=1.3.1=py311hd18a35c_0 + - contourpy=1.3.2=py311hd18a35c_0 - coverage=7.8.0=py311h2dc5d0c_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py311h9ecbd09_0 - dask-core=2025.3.0=pyhd8ed1ab_0 - deprecated=1.2.18=pyhd8ed1ab_0 - - dill=0.3.9=pyhd8ed1ab_1 + - dill=0.4.0=pyhd8ed1ab_0 - discretize=0.11.2=py311h5b7b71f_1 - distributed=2025.3.0=pyhd8ed1ab_0 - docutils=0.19=py311h38be061_1 - exceptiongroup=1.2.2=pyhd8ed1ab_1 - 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 @@ -59,7 +59,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 @@ -67,19 +67,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 @@ -88,17 +90,17 @@ dependencies: - libscotch=7.0.6=hea33c07_1 - libspatialindex=2.0.0=he02047a_0 - libsqlite=3.49.1=hee588c1_2 - - libssh2=1.11.1=hf672d98_0 + - libssh2=1.11.1=hcf80075_0 - libstdcxx=14.2.0=h8f9b012_2 - libstdcxx-ng=14.2.0=h4852527_2 - - libtiff=4.7.0=hd9ff511_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 - 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.4=h024ca30_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py311h2dc5d0c_1 - matplotlib-base=3.8.4=py311ha4ca890_2 @@ -106,18 +108,18 @@ 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=24.2=pyhd8ed1ab_2 + - packaging=25.0=pyh29332c3_1 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py311h82a398c_1 - - pip=25.0.1=pyh8b19718_0 + - pip=25.1=pyh8b19718_0 - platformdirs=4.3.7=pyh29332c3_0 - pluggy=1.5.0=pyhd8ed1ab_1 - psutil=7.0.0=py311h9ecbd09_0 @@ -136,7 +138,7 @@ dependencies: - python=3.11.12=h9e4cc4f_0_cpython - python-dateutil=2.9.0.post0=pyhff2d567_1 - python-mumps=0.0.3=py311h4b558b0_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 @@ -145,7 +147,7 @@ dependencies: - rtree=1.2.0=py311ha1603b9_1 - scikit-learn=1.4.2=py311he08f58d_1 - scipy=1.14.1=py311he9a78e4_2 - - setuptools=78.1.0=pyhff2d567_0 + - setuptools=80.1.0=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 @@ -181,15 +183,15 @@ dependencies: - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 - zipp=3.21.0=pyhd8ed1ab_1 - - zstandard=0.23.0=py311h9ecbd09_1 + - zstandard=0.23.0=py311h9ecbd09_2 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@6e21320c89581dccb1635d8460dfe296ec41b6da - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@4b9756b5c9e98c709a2b23e2e558edb29e5f3416 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@8c73f0647ae51f1ca7d4af6ded7f2e63db52a428 - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@e9c99d6fd5d324571a2717990aecb3ed673cbaca - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 - - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@7544763d9d873237256b963c32db54ce33c329c7 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@6e21320c89581dccb1635d8460dfe296ec41b6da + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@24027d81b65df99d5f582acc4497ed33df8a3396 + - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@e9c99d6fd5d324571a2717990aecb3ed673cbaca + - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@2d510ad712a20663dc0abb9afbead41537d10d91 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 b2d355e..b29692a 100644 --- a/environments/py-3.11-linux-64.conda.lock.yml +++ b/environments/py-3.11-linux-64.conda.lock.yml @@ -14,7 +14,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.4.26=hbd8a1cb_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - certifi=2025.1.31=pyhd8ed1ab_0 @@ -22,7 +22,7 @@ dependencies: - click=8.1.8=pyh707e725_0 - cloudpickle=3.1.1=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - - contourpy=1.3.1=py311hd18a35c_0 + - contourpy=1.3.2=py311hd18a35c_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py311h9ecbd09_0 - dask-core=2025.3.0=pyhd8ed1ab_0 @@ -31,7 +31,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 @@ -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 @@ -76,35 +78,35 @@ dependencies: - libscotch=7.0.6=hea33c07_1 - libspatialindex=2.0.0=he02047a_0 - libsqlite=3.49.1=hee588c1_2 - - libssh2=1.11.1=hf672d98_0 + - libssh2=1.11.1=hcf80075_0 - libstdcxx=14.2.0=h8f9b012_2 - libstdcxx-ng=14.2.0=h4852527_2 - - libtiff=4.7.0=hd9ff511_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 - 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.4=h024ca30_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py311h2dc5d0c_1 - matplotlib-base=3.8.4=py311ha4ca890_2 - metis=5.1.0=hd0bcaf9_1007 - mkl=2024.2.2=ha957f24_16 - msgpack-python=1.1.0=py311hd18a35c_0 - - 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=24.2=pyhd8ed1ab_2 + - packaging=25.0=pyh29332c3_1 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py311h82a398c_1 - - pip=25.0.1=pyh8b19718_0 + - pip=25.1=pyh8b19718_0 - psutil=7.0.0=py311h9ecbd09_0 - pthread-stubs=0.4=hb9d3cd8_1002 - pycparser=2.22=pyh29332c3_1 @@ -117,13 +119,13 @@ dependencies: - python=3.11.12=h9e4cc4f_0_cpython - python-dateutil=2.9.0.post0=pyhff2d567_1 - python-mumps=0.0.3=py311h4b558b0_0 - - python_abi=3.11=6_cp311 + - python_abi=3.11=7_cp311 - pyyaml=6.0.2=py311h2dc5d0c_2 - readline=8.2=h8c095d6_2 - rtree=1.2.0=py311ha1603b9_1 - scikit-learn=1.4.2=py311he08f58d_1 - scipy=1.14.1=py311he9a78e4_2 - - setuptools=78.1.0=pyhff2d567_0 + - setuptools=80.1.0=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - tbb=2021.13.0=hceb3a55_1 @@ -148,15 +150,15 @@ dependencies: - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 - zipp=3.21.0=pyhd8ed1ab_1 - - zstandard=0.23.0=py311h9ecbd09_1 + - zstandard=0.23.0=py311h9ecbd09_2 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@6e21320c89581dccb1635d8460dfe296ec41b6da - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@4b9756b5c9e98c709a2b23e2e558edb29e5f3416 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@8c73f0647ae51f1ca7d4af6ded7f2e63db52a428 - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@e9c99d6fd5d324571a2717990aecb3ed673cbaca - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 - - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@7544763d9d873237256b963c32db54ce33c329c7 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@6e21320c89581dccb1635d8460dfe296ec41b6da + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@24027d81b65df99d5f582acc4497ed33df8a3396 + - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@e9c99d6fd5d324571a2717990aecb3ed673cbaca + - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@2d510ad712a20663dc0abb9afbead41537d10d91 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 bb06d72..3fdcac8 100644 --- a/environments/py-3.11-win-64-dev.conda.lock.yml +++ b/environments/py-3.11-win-64-dev.conda.lock.yml @@ -16,7 +16,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.4.26=h4c7d964_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - certifi=2025.1.31=pyhd8ed1ab_0 @@ -25,20 +25,20 @@ dependencies: - click=8.1.8=pyh7428d3b_0 - cloudpickle=3.1.1=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - - contourpy=1.3.1=py311h3257749_0 + - contourpy=1.3.2=py311h3257749_0 - coverage=7.8.0=py311h5082efb_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py311he736701_0 - dask-core=2025.3.0=pyhd8ed1ab_0 - deprecated=1.2.18=pyhd8ed1ab_0 - - dill=0.3.9=pyhd8ed1ab_1 + - dill=0.4.0=pyhd8ed1ab_0 - discretize=0.11.2=py311h9b10771_0 - distributed=2025.3.0=pyhd8ed1ab_0 - docutils=0.19=py311h1ea47a8_1 - exceptiongroup=1.2.2=pyhd8ed1ab_1 - 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 @@ -57,7 +57,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 @@ -65,44 +65,46 @@ 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 + - libpng=1.6.47=h7a4582a_0 - libspatialindex=2.0.0=h5a68840_0 - libsqlite=3.49.1=h67fdade_2 - - libssh2=1.11.1=he619c9f_0 - - libtiff=4.7.0=h797046b_3 + - libssh2=1.11.1=h9aa295b_0 + - 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 - libxml2=2.13.7=h442d1da_1 - libzlib=1.3.1=h2466b09_2 - - llvm-openmp=20.1.2=h30eaf37_1 + - llvm-openmp=20.1.4=h30eaf37_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py311h5082efb_1 - matplotlib-base=3.8.4=py311h9b31f6e_2 - mccabe=0.7.0=pyhd8ed1ab_1 - mkl=2024.2.2=h66d3029_15 - msgpack-python=1.1.0=py311h3257749_0 - - 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=24.2=pyhd8ed1ab_2 + - packaging=25.0=pyh29332c3_1 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py311h5592be9_1 - - pip=25.0.1=pyh8b19718_0 + - pip=25.1=pyh8b19718_0 - platformdirs=4.3.7=pyh29332c3_0 - pluggy=1.5.0=pyhd8ed1ab_1 - psutil=7.0.0=py311he736701_0 @@ -121,7 +123,7 @@ dependencies: - python=3.11.12=h3f84c4b_0_cpython - python-dateutil=2.9.0.post0=pyhff2d567_1 - python-mumps=0.0.3=py311h5bfbc98_0 - - python_abi=3.11=6_cp311 + - python_abi=3.11=7_cp311 - pytz=2025.2=pyhd8ed1ab_0 - pyyaml=6.0.2=py311h5082efb_2 - readthedocs-sphinx-ext=2.2.5=pyhd8ed1ab_1 @@ -129,7 +131,7 @@ dependencies: - rtree=1.2.0=py311h44d53c4_1 - scikit-learn=1.4.2=py311hdcb8d17_1 - scipy=1.14.1=py311hf16d85f_2 - - setuptools=78.1.0=pyhff2d567_0 + - setuptools=80.1.0=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 @@ -170,15 +172,15 @@ dependencies: - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 - zipp=3.21.0=pyhd8ed1ab_1 - - zstandard=0.23.0=py311he736701_1 + - zstandard=0.23.0=py311he736701_2 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@6e21320c89581dccb1635d8460dfe296ec41b6da - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@4b9756b5c9e98c709a2b23e2e558edb29e5f3416 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@8c73f0647ae51f1ca7d4af6ded7f2e63db52a428 - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@e9c99d6fd5d324571a2717990aecb3ed673cbaca - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 - - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@7544763d9d873237256b963c32db54ce33c329c7 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@6e21320c89581dccb1635d8460dfe296ec41b6da + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@24027d81b65df99d5f582acc4497ed33df8a3396 + - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@e9c99d6fd5d324571a2717990aecb3ed673cbaca + - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@2d510ad712a20663dc0abb9afbead41537d10d91 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 7686182..262c8ee 100644 --- a/environments/py-3.11-win-64.conda.lock.yml +++ b/environments/py-3.11-win-64.conda.lock.yml @@ -13,7 +13,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.4.26=h4c7d964_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - certifi=2025.1.31=pyhd8ed1ab_0 @@ -21,7 +21,7 @@ dependencies: - click=8.1.8=pyh7428d3b_0 - cloudpickle=3.1.1=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - - contourpy=1.3.1=py311h3257749_0 + - contourpy=1.3.2=py311h3257749_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py311he736701_0 - dask-core=2025.3.0=pyhd8ed1ab_0 @@ -30,7 +30,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 @@ -45,7 +45,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 @@ -53,43 +53,45 @@ 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 + - libpng=1.6.47=h7a4582a_0 - libspatialindex=2.0.0=h5a68840_0 - libsqlite=3.49.1=h67fdade_2 - - libssh2=1.11.1=he619c9f_0 - - libtiff=4.7.0=h797046b_3 + - libssh2=1.11.1=h9aa295b_0 + - 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 - libxml2=2.13.7=h442d1da_1 - libzlib=1.3.1=h2466b09_2 - - llvm-openmp=20.1.2=h30eaf37_1 + - llvm-openmp=20.1.4=h30eaf37_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py311h5082efb_1 - matplotlib-base=3.8.4=py311h9b31f6e_2 - mkl=2024.2.2=h66d3029_15 - msgpack-python=1.1.0=py311h3257749_0 - - 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=24.2=pyhd8ed1ab_2 + - packaging=25.0=pyh29332c3_1 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py311h5592be9_1 - - pip=25.0.1=pyh8b19718_0 + - pip=25.1=pyh8b19718_0 - psutil=7.0.0=py311he736701_0 - pthread-stubs=0.4=h0e40799_1002 - pycparser=2.22=pyh29332c3_1 @@ -102,12 +104,12 @@ dependencies: - python=3.11.12=h3f84c4b_0_cpython - python-dateutil=2.9.0.post0=pyhff2d567_1 - python-mumps=0.0.3=py311h5bfbc98_0 - - python_abi=3.11=6_cp311 + - python_abi=3.11=7_cp311 - pyyaml=6.0.2=py311h5082efb_2 - rtree=1.2.0=py311h44d53c4_1 - scikit-learn=1.4.2=py311hdcb8d17_1 - scipy=1.14.1=py311hf16d85f_2 - - setuptools=78.1.0=pyhff2d567_0 + - setuptools=80.1.0=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - tbb=2021.13.0=h62715c5_1 @@ -137,15 +139,15 @@ dependencies: - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 - zipp=3.21.0=pyhd8ed1ab_1 - - zstandard=0.23.0=py311he736701_1 + - zstandard=0.23.0=py311he736701_2 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@6e21320c89581dccb1635d8460dfe296ec41b6da - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@4b9756b5c9e98c709a2b23e2e558edb29e5f3416 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@8c73f0647ae51f1ca7d4af6ded7f2e63db52a428 - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@e9c99d6fd5d324571a2717990aecb3ed673cbaca - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 - - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@7544763d9d873237256b963c32db54ce33c329c7 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@6e21320c89581dccb1635d8460dfe296ec41b6da + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@24027d81b65df99d5f582acc4497ed33df8a3396 + - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@e9c99d6fd5d324571a2717990aecb3ed673cbaca + - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@2d510ad712a20663dc0abb9afbead41537d10d91 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 cff7246..7006521 100644 --- a/environments/py-3.12-linux-64-dev.conda.lock.yml +++ b/environments/py-3.12-linux-64-dev.conda.lock.yml @@ -17,7 +17,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.4.26=hbd8a1cb_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - certifi=2025.1.31=pyhd8ed1ab_0 @@ -26,20 +26,20 @@ dependencies: - click=8.1.8=pyh707e725_0 - cloudpickle=3.1.1=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - - contourpy=1.3.1=py312h68727a3_0 + - contourpy=1.3.2=py312h68727a3_0 - coverage=7.8.0=py312h178313f_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py312h66e93f0_0 - dask-core=2025.3.0=pyhd8ed1ab_0 - deprecated=1.2.18=pyhd8ed1ab_0 - - dill=0.3.9=pyhd8ed1ab_1 + - dill=0.4.0=pyhd8ed1ab_0 - discretize=0.11.2=py312hc39e661_1 - distributed=2025.3.0=pyhd8ed1ab_0 - docutils=0.18.1=py312h7900ff3_0 - exceptiongroup=1.2.2=pyhd8ed1ab_1 - 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 @@ -59,7 +59,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 @@ -67,19 +67,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 @@ -88,17 +90,17 @@ dependencies: - libscotch=7.0.6=hea33c07_1 - libspatialindex=2.0.0=he02047a_0 - libsqlite=3.49.1=hee588c1_2 - - libssh2=1.11.1=hf672d98_0 + - libssh2=1.11.1=hcf80075_0 - libstdcxx=14.2.0=h8f9b012_2 - libstdcxx-ng=14.2.0=h4852527_2 - - libtiff=4.7.0=hd9ff511_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 - 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.4=h024ca30_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py312h178313f_1 - matplotlib-base=3.8.4=py312h20ab3a6_2 @@ -106,18 +108,18 @@ 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=24.2=pyhd8ed1ab_2 + - packaging=25.0=pyh29332c3_1 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py312h287a98d_1 - - pip=25.0.1=pyh8b19718_0 + - pip=25.1=pyh8b19718_0 - platformdirs=4.3.7=pyh29332c3_0 - pluggy=1.5.0=pyhd8ed1ab_1 - psutil=7.0.0=py312h66e93f0_0 @@ -136,7 +138,7 @@ dependencies: - python=3.12.10=h9e4cc4f_0_cpython - python-dateutil=2.9.0.post0=pyhff2d567_1 - python-mumps=0.0.3=py312h6ad3ee3_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 @@ -145,7 +147,7 @@ dependencies: - rtree=1.2.0=py312h3ed4c40_1 - scikit-learn=1.4.2=py312h1fcc3ea_1 - scipy=1.14.1=py312h62794b6_2 - - setuptools=78.1.0=pyhff2d567_0 + - setuptools=80.1.0=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 @@ -181,15 +183,15 @@ dependencies: - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 - zipp=3.21.0=pyhd8ed1ab_1 - - zstandard=0.23.0=py312h66e93f0_1 + - zstandard=0.23.0=py312h66e93f0_2 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@6e21320c89581dccb1635d8460dfe296ec41b6da - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@4b9756b5c9e98c709a2b23e2e558edb29e5f3416 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@8c73f0647ae51f1ca7d4af6ded7f2e63db52a428 - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@e9c99d6fd5d324571a2717990aecb3ed673cbaca - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 - - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@7544763d9d873237256b963c32db54ce33c329c7 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@6e21320c89581dccb1635d8460dfe296ec41b6da + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@24027d81b65df99d5f582acc4497ed33df8a3396 + - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@e9c99d6fd5d324571a2717990aecb3ed673cbaca + - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@2d510ad712a20663dc0abb9afbead41537d10d91 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 ab5651b..9f1b676 100644 --- a/environments/py-3.12-linux-64.conda.lock.yml +++ b/environments/py-3.12-linux-64.conda.lock.yml @@ -14,7 +14,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.4.26=hbd8a1cb_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - certifi=2025.1.31=pyhd8ed1ab_0 @@ -22,7 +22,7 @@ dependencies: - click=8.1.8=pyh707e725_0 - cloudpickle=3.1.1=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - - contourpy=1.3.1=py312h68727a3_0 + - contourpy=1.3.2=py312h68727a3_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py312h66e93f0_0 - dask-core=2025.3.0=pyhd8ed1ab_0 @@ -31,7 +31,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 @@ -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 @@ -76,35 +78,35 @@ dependencies: - libscotch=7.0.6=hea33c07_1 - libspatialindex=2.0.0=he02047a_0 - libsqlite=3.49.1=hee588c1_2 - - libssh2=1.11.1=hf672d98_0 + - libssh2=1.11.1=hcf80075_0 - libstdcxx=14.2.0=h8f9b012_2 - libstdcxx-ng=14.2.0=h4852527_2 - - libtiff=4.7.0=hd9ff511_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 - 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.4=h024ca30_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py312h178313f_1 - matplotlib-base=3.8.4=py312h20ab3a6_2 - metis=5.1.0=hd0bcaf9_1007 - mkl=2024.2.2=ha957f24_16 - msgpack-python=1.1.0=py312h68727a3_0 - - 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=24.2=pyhd8ed1ab_2 + - packaging=25.0=pyh29332c3_1 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py312h287a98d_1 - - pip=25.0.1=pyh8b19718_0 + - pip=25.1=pyh8b19718_0 - psutil=7.0.0=py312h66e93f0_0 - pthread-stubs=0.4=hb9d3cd8_1002 - pycparser=2.22=pyh29332c3_1 @@ -117,13 +119,13 @@ dependencies: - python=3.12.10=h9e4cc4f_0_cpython - python-dateutil=2.9.0.post0=pyhff2d567_1 - python-mumps=0.0.3=py312h6ad3ee3_0 - - python_abi=3.12=6_cp312 + - python_abi=3.12=7_cp312 - pyyaml=6.0.2=py312h178313f_2 - readline=8.2=h8c095d6_2 - rtree=1.2.0=py312h3ed4c40_1 - scikit-learn=1.4.2=py312h1fcc3ea_1 - scipy=1.14.1=py312h62794b6_2 - - setuptools=78.1.0=pyhff2d567_0 + - setuptools=80.1.0=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - tbb=2021.13.0=hceb3a55_1 @@ -148,15 +150,15 @@ dependencies: - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 - zipp=3.21.0=pyhd8ed1ab_1 - - zstandard=0.23.0=py312h66e93f0_1 + - zstandard=0.23.0=py312h66e93f0_2 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@6e21320c89581dccb1635d8460dfe296ec41b6da - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@4b9756b5c9e98c709a2b23e2e558edb29e5f3416 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@8c73f0647ae51f1ca7d4af6ded7f2e63db52a428 - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@e9c99d6fd5d324571a2717990aecb3ed673cbaca - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 - - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@7544763d9d873237256b963c32db54ce33c329c7 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@6e21320c89581dccb1635d8460dfe296ec41b6da + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@24027d81b65df99d5f582acc4497ed33df8a3396 + - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@e9c99d6fd5d324571a2717990aecb3ed673cbaca + - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@2d510ad712a20663dc0abb9afbead41537d10d91 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 411e136..34dadd0 100644 --- a/environments/py-3.12-win-64-dev.conda.lock.yml +++ b/environments/py-3.12-win-64-dev.conda.lock.yml @@ -16,7 +16,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.4.26=h4c7d964_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - certifi=2025.1.31=pyhd8ed1ab_0 @@ -25,20 +25,20 @@ dependencies: - click=8.1.8=pyh7428d3b_0 - cloudpickle=3.1.1=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - - contourpy=1.3.1=py312hd5eb7cc_0 + - contourpy=1.3.2=py312hd5eb7cc_0 - coverage=7.8.0=py312h31fea79_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py312h4389bb4_0 - dask-core=2025.3.0=pyhd8ed1ab_0 - deprecated=1.2.18=pyhd8ed1ab_0 - - dill=0.3.9=pyhd8ed1ab_1 + - dill=0.4.0=pyhd8ed1ab_0 - discretize=0.11.2=py312hbaa7e33_1 - distributed=2025.3.0=pyhd8ed1ab_0 - docutils=0.18.1=py312h2e8e312_0 - exceptiongroup=1.2.2=pyhd8ed1ab_1 - 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 @@ -57,7 +57,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 @@ -65,44 +65,46 @@ 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 + - libpng=1.6.47=h7a4582a_0 - libspatialindex=2.0.0=h5a68840_0 - libsqlite=3.49.1=h67fdade_2 - - libssh2=1.11.1=he619c9f_0 - - libtiff=4.7.0=h797046b_3 + - libssh2=1.11.1=h9aa295b_0 + - 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 - libxml2=2.13.7=h442d1da_1 - libzlib=1.3.1=h2466b09_2 - - llvm-openmp=20.1.2=h30eaf37_1 + - llvm-openmp=20.1.4=h30eaf37_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py312h31fea79_1 - matplotlib-base=3.8.4=py312hfee7060_2 - mccabe=0.7.0=pyhd8ed1ab_1 - mkl=2024.2.2=h66d3029_15 - msgpack-python=1.1.0=py312hd5eb7cc_0 - - 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=24.2=pyhd8ed1ab_2 + - packaging=25.0=pyh29332c3_1 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py312h381445a_1 - - pip=25.0.1=pyh8b19718_0 + - pip=25.1=pyh8b19718_0 - platformdirs=4.3.7=pyh29332c3_0 - pluggy=1.5.0=pyhd8ed1ab_1 - psutil=7.0.0=py312h4389bb4_0 @@ -121,7 +123,7 @@ dependencies: - python=3.12.10=h3f84c4b_0_cpython - python-dateutil=2.9.0.post0=pyhff2d567_1 - python-mumps=0.0.3=py312h8095395_0 - - python_abi=3.12=6_cp312 + - python_abi=3.12=7_cp312 - pytz=2025.2=pyhd8ed1ab_0 - pyyaml=6.0.2=py312h31fea79_2 - readthedocs-sphinx-ext=2.2.5=pyhd8ed1ab_1 @@ -129,7 +131,7 @@ dependencies: - rtree=1.2.0=py312h50e5f8f_1 - scikit-learn=1.4.2=py312h816cc57_1 - scipy=1.14.1=py312h337df96_2 - - setuptools=78.1.0=pyhff2d567_0 + - setuptools=80.1.0=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 @@ -170,15 +172,15 @@ dependencies: - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 - zipp=3.21.0=pyhd8ed1ab_1 - - zstandard=0.23.0=py312h4389bb4_1 + - zstandard=0.23.0=py312h4389bb4_2 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@6e21320c89581dccb1635d8460dfe296ec41b6da - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@4b9756b5c9e98c709a2b23e2e558edb29e5f3416 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@8c73f0647ae51f1ca7d4af6ded7f2e63db52a428 - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@e9c99d6fd5d324571a2717990aecb3ed673cbaca - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 - - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@7544763d9d873237256b963c32db54ce33c329c7 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@6e21320c89581dccb1635d8460dfe296ec41b6da + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@24027d81b65df99d5f582acc4497ed33df8a3396 + - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@e9c99d6fd5d324571a2717990aecb3ed673cbaca + - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@2d510ad712a20663dc0abb9afbead41537d10d91 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 84503ae..37aef51 100644 --- a/environments/py-3.12-win-64.conda.lock.yml +++ b/environments/py-3.12-win-64.conda.lock.yml @@ -13,7 +13,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.4.26=h4c7d964_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - certifi=2025.1.31=pyhd8ed1ab_0 @@ -21,7 +21,7 @@ dependencies: - click=8.1.8=pyh7428d3b_0 - cloudpickle=3.1.1=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - - contourpy=1.3.1=py312hd5eb7cc_0 + - contourpy=1.3.2=py312hd5eb7cc_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py312h4389bb4_0 - dask-core=2025.3.0=pyhd8ed1ab_0 @@ -30,7 +30,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 @@ -45,7 +45,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 @@ -53,43 +53,45 @@ 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 + - libpng=1.6.47=h7a4582a_0 - libspatialindex=2.0.0=h5a68840_0 - libsqlite=3.49.1=h67fdade_2 - - libssh2=1.11.1=he619c9f_0 - - libtiff=4.7.0=h797046b_3 + - libssh2=1.11.1=h9aa295b_0 + - 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 - libxml2=2.13.7=h442d1da_1 - libzlib=1.3.1=h2466b09_2 - - llvm-openmp=20.1.2=h30eaf37_1 + - llvm-openmp=20.1.4=h30eaf37_0 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py312h31fea79_1 - matplotlib-base=3.8.4=py312hfee7060_2 - mkl=2024.2.2=h66d3029_15 - msgpack-python=1.1.0=py312hd5eb7cc_0 - - 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=24.2=pyhd8ed1ab_2 + - packaging=25.0=pyh29332c3_1 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py312h381445a_1 - - pip=25.0.1=pyh8b19718_0 + - pip=25.1=pyh8b19718_0 - psutil=7.0.0=py312h4389bb4_0 - pthread-stubs=0.4=h0e40799_1002 - pycparser=2.22=pyh29332c3_1 @@ -102,12 +104,12 @@ dependencies: - python=3.12.10=h3f84c4b_0_cpython - python-dateutil=2.9.0.post0=pyhff2d567_1 - python-mumps=0.0.3=py312h8095395_0 - - python_abi=3.12=6_cp312 + - python_abi=3.12=7_cp312 - pyyaml=6.0.2=py312h31fea79_2 - rtree=1.2.0=py312h50e5f8f_1 - scikit-learn=1.4.2=py312h816cc57_1 - scipy=1.14.1=py312h337df96_2 - - setuptools=78.1.0=pyhff2d567_0 + - setuptools=80.1.0=pyhff2d567_0 - six=1.17.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - tbb=2021.13.0=h62715c5_1 @@ -137,15 +139,15 @@ dependencies: - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 - zipp=3.21.0=pyhd8ed1ab_1 - - zstandard=0.23.0=py312h4389bb4_1 + - zstandard=0.23.0=py312h4389bb4_2 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@6e21320c89581dccb1635d8460dfe296ec41b6da - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@4b9756b5c9e98c709a2b23e2e558edb29e5f3416 - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@8c73f0647ae51f1ca7d4af6ded7f2e63db52a428 - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@e9c99d6fd5d324571a2717990aecb3ed673cbaca - - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 - - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@7544763d9d873237256b963c32db54ce33c329c7 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@6e21320c89581dccb1635d8460dfe296ec41b6da + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@24027d81b65df99d5f582acc4497ed33df8a3396 + - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@e9c99d6fd5d324571a2717990aecb3ed673cbaca + - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 + - simpeg-drivers @ git+https://github.com/MiraGeoscience/simpeg-drivers.git@2d510ad712a20663dc0abb9afbead41537d10d91 variables: KMP_WARNINGS: 0 diff --git a/py-3.10.conda-lock.yml b/py-3.10.conda-lock.yml index baed762..e1d8bc5 100644 --- a/py-3.10.conda-lock.yml +++ b/py-3.10.conda-lock.yml @@ -35,7 +35,7 @@ package: platform: linux-64 dependencies: llvm-openmp: '>=9.0.1' - url: https://packages.prefix.dev/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://packages.prefix.dev/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 @@ -60,7 +60,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://repo.prefix.dev/conda-forge/noarch/alabaster-0.7.16-pyhd8ed1ab_0.conda hash: md5: def531a3ac77b7fb8c21d17bb5d0badb sha256: fd39ad2fabec1569bbb0dfdae34ab6ce7de6ec09dcec8638f83dad0373594069 @@ -72,7 +72,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://repo.prefix.dev/conda-forge/noarch/alabaster-0.7.16-pyhd8ed1ab_0.conda hash: md5: def531a3ac77b7fb8c21d17bb5d0badb sha256: fd39ad2fabec1569bbb0dfdae34ab6ce7de6ec09dcec8638f83dad0373594069 @@ -85,7 +85,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://repo.prefix.dev/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda hash: md5: 2934f256a8acfe48f6ebb4fce6cde29c sha256: e0ea1ba78fbb64f17062601edda82097fcf815012cf52bb704150a2668110d48 @@ -98,7 +98,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://repo.prefix.dev/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda hash: md5: 2934f256a8acfe48f6ebb4fce6cde29c sha256: e0ea1ba78fbb64f17062601edda82097fcf815012cf52bb704150a2668110d48 @@ -110,7 +110,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://repo.prefix.dev/conda-forge/noarch/asciitree-0.3.3-py_2.tar.bz2 hash: md5: c0481c9de49f040272556e2cedf42816 sha256: b3e9369529fe7d721b66f18680ff4b561e20dbf6507e209e1f60eac277c97560 @@ -122,7 +122,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://repo.prefix.dev/conda-forge/noarch/asciitree-0.3.3-py_2.tar.bz2 hash: md5: c0481c9de49f040272556e2cedf42816 sha256: b3e9369529fe7d721b66f18680ff4b561e20dbf6507e209e1f60eac277c97560 @@ -136,7 +136,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://repo.prefix.dev/conda-forge/linux-64/astroid-3.3.9-py310hff52083_0.conda hash: md5: 2d8f1127e88e64103552fbf86a306eee sha256: b95f04ff05b296e1ac706d57a3a0bf7bf12b3275d6042a48ac73fee0a0631793 @@ -150,7 +150,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://repo.prefix.dev/conda-forge/win-64/astroid-3.3.9-py310h5588dad_0.conda hash: md5: 09a0c7f312f8a1e34547ea43cc85867f sha256: a4ce7d09c0762da3c3f67c5a6ae6e5b364339599e0f8e13ee62440c943ce692d @@ -163,7 +163,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://repo.prefix.dev/conda-forge/noarch/babel-2.17.0-pyhd8ed1ab_0.conda hash: md5: 0a01c169f0ab0f91b26e77a3301fbfe4 sha256: 1c656a35800b7f57f7371605bc6507c8d3ad60fbaaec65876fce7f73df1fc8ac @@ -176,7 +176,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://repo.prefix.dev/conda-forge/noarch/babel-2.17.0-pyhd8ed1ab_0.conda hash: md5: 0a01c169f0ab0f91b26e77a3301fbfe4 sha256: 1c656a35800b7f57f7371605bc6507c8d3ad60fbaaec65876fce7f73df1fc8ac @@ -192,7 +192,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://repo.prefix.dev/conda-forge/linux-64/brotli-1.1.0-hb9d3cd8_2.conda hash: md5: 98514fe74548d768907ce7a13f680e8f sha256: fcb0b5b28ba7492093e54f3184435144e074dfceab27ac8e6a9457e736565b0b @@ -209,7 +209,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://repo.prefix.dev/conda-forge/win-64/brotli-1.1.0-h2466b09_2.conda hash: md5: 378f1c9421775dfe644731cb121c8979 sha256: d8fd7d1b446706776117d2dcad1c0289b9f5e1521cb13405173bad38568dd252 @@ -224,7 +224,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://repo.prefix.dev/conda-forge/linux-64/brotli-bin-1.1.0-hb9d3cd8_2.conda hash: md5: c63b5e52939e795ba8d26e35d767a843 sha256: 261364d7445513b9a4debc345650fad13c627029bfc800655a266bf1e375bc65 @@ -240,7 +240,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://repo.prefix.dev/conda-forge/win-64/brotli-bin-1.1.0-h2466b09_2.conda hash: md5: d22534a9be5771fc58eb7564947f669d sha256: f3bf2893613540ac256c68f211861c4de618d96291719e32178d894114ac2bc2 @@ -256,7 +256,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://repo.prefix.dev/conda-forge/linux-64/brotli-python-1.1.0-py310hf71b8c6_2.conda hash: md5: bf502c169c71e3c6ac0d6175addfacc2 sha256: 14f1e89d3888d560a553f40ac5ba83e4435a107552fa5b2b2029a7472554c1ef @@ -272,7 +272,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://repo.prefix.dev/conda-forge/win-64/brotli-python-1.1.0-py310h9e98ed7_2.conda hash: md5: 3a10a1d0cf3ece273195f26191fd6cc6 sha256: 1b7893a07f2323410b09b63b4627103efa86163be835ac94966333b37741cdc7 @@ -285,7 +285,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://repo.prefix.dev/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda hash: md5: 62ee74e96c5ebb0af99386de58cf9553 sha256: 5ced96500d945fb286c9c838e54fa759aa04a7129c59800f0846b4335cee770d @@ -299,7 +299,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://repo.prefix.dev/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda hash: md5: 276e7ffe9ffe39688abc665ef0f45596 sha256: 35a5dad92e88fdd7fc405e864ec239486f4f31eec229e31686e61a140a8e573b @@ -312,32 +312,34 @@ 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://repo.prefix.dev/conda-forge/linux-64/c-ares-1.34.5-hb9d3cd8_0.conda hash: md5: f7f0d6cc2dc986d42ac2689ec88192be sha256: f8003bef369f57396593ccd03d08a8e21966157269426f71e943f96e4b579aeb category: main optional: false - name: ca-certificates - version: 2025.1.31 + version: 2025.4.26 manager: conda platform: linux-64 - dependencies: {} - url: https://packages.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.4.26-hbd8a1cb_0.conda hash: - md5: 19f3a56f68d2fd06c516076bff482c52 - sha256: bf832198976d559ab44d6cdb315642655547e26d826e34da67cbee6624cda189 + md5: 95db94f75ba080a22eb623590993167b + sha256: 2a70ed95ace8a3f8a29e6cd1476a943df294a7111dfb3e152e3478c4c889b7ac category: main optional: false - name: ca-certificates - version: 2025.1.31 + version: 2025.4.26 manager: conda platform: win-64 - dependencies: {} - url: https://packages.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.4.26-h4c7d964_0.conda hash: - md5: 5304a31607974dfc2110dfbb662ed092 - sha256: 1bedccdf25a3bd782d6b0e57ddd97cdcda5501716009f2de4479a779221df155 + md5: 23c7fd5062b48d8294fc7f61bf157fba + sha256: 1454f3f53a3b828d3cb68a3440cb0fa9f1cc0e3c8c26e9e023773dc19d88cc06 category: main optional: false - name: cached-property @@ -346,7 +348,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://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 hash: md5: 9b347a7ec10940d3f7941ff6c460b551 sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17 @@ -358,7 +360,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://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 hash: md5: 9b347a7ec10940d3f7941ff6c460b551 sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17 @@ -370,7 +372,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://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 hash: md5: 576d629e47797577ab0f1b351297ef4a sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7 @@ -382,7 +384,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://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 hash: md5: 576d629e47797577ab0f1b351297ef4a sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7 @@ -394,7 +396,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://repo.prefix.dev/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda hash: md5: c207fa5ac7ea99b149344385a9c0880d sha256: 42a78446da06a2568cb13e69be3355169fbd0ea424b00fc80b7d840f5baaacf3 @@ -406,7 +408,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://repo.prefix.dev/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda hash: md5: c207fa5ac7ea99b149344385a9c0880d sha256: 42a78446da06a2568cb13e69be3355169fbd0ea424b00fc80b7d840f5baaacf3 @@ -423,7 +425,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://repo.prefix.dev/conda-forge/linux-64/cffi-1.17.1-py310h8deb56e_0.conda hash: md5: 1fc24a3196ad5ede2a68148be61894f4 sha256: 1b389293670268ab80c3b8735bc61bc71366862953e000efbb82204d00e41b6c @@ -440,7 +442,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://repo.prefix.dev/conda-forge/win-64/cffi-1.17.1-py310ha8f682b_0.conda hash: md5: 9c7ec967f4ae263aec56cff05bdbfc07 sha256: 32638e79658f76e3700f783c519025290110f207833ae1d166d262572cbec8a8 @@ -452,7 +454,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://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda hash: md5: e83a31202d1c0a000fce3e9cf3825875 sha256: 4e0ee91b97e5de3e74567bdacea27f0139709fceca4db8adffbe24deffccb09b @@ -464,7 +466,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://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda hash: md5: e83a31202d1c0a000fce3e9cf3825875 sha256: 4e0ee91b97e5de3e74567bdacea27f0139709fceca4db8adffbe24deffccb09b @@ -477,7 +479,7 @@ package: dependencies: __unix: '' python: '>=3.9' - url: https://packages.prefix.dev/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 @@ -491,7 +493,7 @@ package: __win: '' colorama: '' python: '>=3.9' - url: https://packages.prefix.dev/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 @@ -503,7 +505,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://repo.prefix.dev/conda-forge/noarch/cloudpickle-3.1.1-pyhd8ed1ab_0.conda hash: md5: 364ba6c9fb03886ac979b482f39ebb92 sha256: 21ecead7268241007bf65691610cd7314da68c1f88113092af690203b5780db5 @@ -515,7 +517,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://repo.prefix.dev/conda-forge/noarch/cloudpickle-3.1.1-pyhd8ed1ab_0.conda hash: md5: 364ba6c9fb03886ac979b482f39ebb92 sha256: 21ecead7268241007bf65691610cd7314da68c1f88113092af690203b5780db5 @@ -527,7 +529,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://repo.prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda hash: md5: 962b9857ee8e7018c22f2776ffa0b2d7 sha256: ab29d57dc70786c1269633ba3dff20288b81664d3ff8d21af995742e2bb03287 @@ -539,14 +541,14 @@ 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://repo.prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda hash: md5: 962b9857ee8e7018c22f2776ffa0b2d7 sha256: ab29d57dc70786c1269633ba3dff20288b81664d3ff8d21af995742e2bb03287 category: main optional: false - name: contourpy - version: 1.3.1 + version: 1.3.2 manager: conda platform: linux-64 dependencies: @@ -556,14 +558,14 @@ 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.1-py310h3788b33_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/contourpy-1.3.2-py310h3788b33_0.conda hash: - md5: f993b13665fc2bb262b30217c815d137 - sha256: 1b18ebb72fb20b9ece47c582c6112b1d4f0f7deebaa056eada99e1f994e8a81f + md5: b6420d29123c7c823de168f49ccdfe6a + sha256: 5231c1b68e01a9bc9debabc077a6fb48c4395206d59f40a4598d1d5e353e11d8 category: main optional: false - name: contourpy - version: 1.3.1 + version: 1.3.2 manager: conda platform: win-64 dependencies: @@ -573,10 +575,10 @@ 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.1-py310hc19bc0b_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/contourpy-1.3.2-py310hc19bc0b_0.conda hash: - md5: 741bcc6a07e77d3102aa23c580cad4f0 - sha256: b9e50ead1c1a7a7c0bff5b1e72436016037b0187cecba7f626c9feffe5b3deaf + md5: 039416813b5290e7d100a05bb4326110 + sha256: 096a7cf6bf77faf3e093936d831118151781ddbd2ab514355ee2f0104b490b1e category: main optional: false - name: coverage @@ -589,7 +591,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://repo.prefix.dev/conda-forge/linux-64/coverage-7.8.0-py310h89163eb_0.conda hash: md5: 9f7865c17117d16f804b687b498e35fa sha256: ac410dbd3b1e28d40b88a27f801210b853ebd388f3cf20f85c0178e97f788013 @@ -606,7 +608,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://repo.prefix.dev/conda-forge/win-64/coverage-7.8.0-py310h38315fa_0.conda hash: md5: 30a825dae940c63c55bca8df4f806f3e sha256: f16e7370e327f20ccba8a6edfb0441ec425c11c10744d6eaa817d05076b458a5 @@ -618,7 +620,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://repo.prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda hash: md5: 44600c4667a319d67dbe0681fc0bc833 sha256: 9827efa891e507a91a8a2acf64e210d2aff394e1cde432ad08e1f8c66b12293c @@ -630,7 +632,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://repo.prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda hash: md5: 44600c4667a319d67dbe0681fc0bc833 sha256: 9827efa891e507a91a8a2acf64e210d2aff394e1cde432ad08e1f8c66b12293c @@ -646,7 +648,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://repo.prefix.dev/conda-forge/linux-64/cytoolz-1.0.1-py310ha75aee5_0.conda hash: md5: d0be1adaa04a03aed745f3d02afb59ce sha256: b427689dfc24a6a297363122ce10d502ea00ddb3c43af6cff175ff563cc94eea @@ -663,7 +665,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://repo.prefix.dev/conda-forge/win-64/cytoolz-1.0.1-py310ha8f682b_0.conda hash: md5: ed2af2a0262d44f753738588640b8534 sha256: 670800d13b6cd64b8f53756b28254b47cfc177606dcd42094696582335ed0f02 @@ -683,7 +685,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://repo.prefix.dev/conda-forge/noarch/dask-core-2025.3.0-pyhd8ed1ab_0.conda hash: md5: 36f6cc22457e3d6a6051c5370832f96c sha256: 72badd945d856d2928fdbe051f136f903bcfee8136f1526c8362c6c465b793ec @@ -703,34 +705,34 @@ 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://repo.prefix.dev/conda-forge/noarch/dask-core-2025.3.0-pyhd8ed1ab_0.conda hash: md5: 36f6cc22457e3d6a6051c5370832f96c sha256: 72badd945d856d2928fdbe051f136f903bcfee8136f1526c8362c6c465b793ec category: main optional: false - name: dill - version: 0.3.9 + version: 0.4.0 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/dill-0.3.9-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda hash: - md5: 5e11310fca410e9f31381157079dee55 - sha256: 499be2f8e4397a46249e8e500535795704af27e56360ae0c964904140b41454a + md5: 885745570573eb6a08e021841928297a + sha256: 43dca52c96fde0c4845aaff02bcc92f25e1c2e5266ddefc2eac1a3de0960a3b1 category: dev optional: true - name: dill - version: 0.3.9 + version: 0.4.0 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/dill-0.3.9-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda hash: - md5: 5e11310fca410e9f31381157079dee55 - sha256: 499be2f8e4397a46249e8e500535795704af27e56360ae0c964904140b41454a + md5: 885745570573eb6a08e021841928297a + sha256: 43dca52c96fde0c4845aaff02bcc92f25e1c2e5266ddefc2eac1a3de0960a3b1 category: dev optional: true - name: discretize @@ -745,7 +747,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://repo.prefix.dev/conda-forge/linux-64/discretize-0.11.2-py310ha2bacc8_1.conda hash: md5: d32664b47026c5d23de390d8b46a2701 sha256: d065d856c25e199a77115a4d8fd54139ee699724a3f1dda6a3f45f33589a66a7 @@ -763,7 +765,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://repo.prefix.dev/conda-forge/win-64/discretize-0.11.2-py310h3e8ed56_1.conda hash: md5: c9cecabe0352f8d1b7ff7e9d52df7270 sha256: e9b03398c7bd480b6e9e287fe673bf767694bdb96cc8d95bb9500bcd25766b5e @@ -791,7 +793,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://repo.prefix.dev/conda-forge/noarch/distributed-2025.3.0-pyhd8ed1ab_0.conda hash: md5: 968a7a4ff98bcfb515b0f1c94d35553f sha256: ea055aeda774d03ec96e0901ec119c6d3dc21ddd50af166bec664a76efd5f82a @@ -819,7 +821,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://repo.prefix.dev/conda-forge/noarch/distributed-2025.3.0-pyhd8ed1ab_0.conda hash: md5: 968a7a4ff98bcfb515b0f1c94d35553f sha256: ea055aeda774d03ec96e0901ec119c6d3dc21ddd50af166bec664a76efd5f82a @@ -832,7 +834,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://repo.prefix.dev/conda-forge/linux-64/docutils-0.19-py310hff52083_1.tar.bz2 hash: md5: 21b8fa2179290505e607f5ccd65b01b0 sha256: f3a564449daedafe5931ab4efe7bc4f240182f2b760e7877f15b2898b7f1c988 @@ -845,7 +847,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://repo.prefix.dev/conda-forge/win-64/docutils-0.19-py310h5588dad_1.tar.bz2 hash: md5: 88111d95b12d83681d0ecdbbc24eee8e sha256: 6b40f145b1fdf6b45016d29f193a8ca72a9359ea44cc19624901248f7a9b5ba7 @@ -857,7 +859,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://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda hash: md5: a16662747cdeb9abbac74d0057cc976e sha256: cbde2c64ec317118fc06b223c5fd87c8a680255e7348dd60e7b292d2e103e701 @@ -869,7 +871,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://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda hash: md5: a16662747cdeb9abbac74d0057cc976e sha256: cbde2c64ec317118fc06b223c5fd87c8a680255e7348dd60e7b292d2e103e701 @@ -881,7 +883,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://repo.prefix.dev/conda-forge/noarch/fasteners-0.19-pyhd8ed1ab_1.conda hash: md5: dbe9d42e94b5ff7af7b7893f4ce052e7 sha256: 42fb170778b47303e82eddfea9a6d1e1b8af00c927cd5a34595eaa882b903a16 @@ -893,7 +895,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://repo.prefix.dev/conda-forge/noarch/fasteners-0.19-pyhd8ed1ab_1.conda hash: md5: dbe9d42e94b5ff7af7b7893f4ce052e7 sha256: 42fb170778b47303e82eddfea9a6d1e1b8af00c927cd5a34595eaa882b903a16 @@ -911,7 +913,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://repo.prefix.dev/conda-forge/linux-64/fonttools-4.57.0-py310h89163eb_0.conda hash: md5: 34378af82141b3c1725dcdf898b28fc6 sha256: 8b387f0906c8ea04f14eb449e1b58e01fb2cdc4b9a093edf6afdc9625c11cfd6 @@ -930,7 +932,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://repo.prefix.dev/conda-forge/win-64/fonttools-4.57.0-py310h38315fa_0.conda hash: md5: 1f25f742c39582715cc058f5fe451975 sha256: bcb3848cb9cc0ff51284dfd91a7615d2c38ba0bd324b3c9764bd53ff0753a874 @@ -941,14 +943,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://packages.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 @@ -956,15 +956,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://packages.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 @@ -973,7 +970,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://repo.prefix.dev/conda-forge/noarch/fsspec-2025.3.2-pyhd8ed1ab_0.conda hash: md5: 9c40692c3d24c7aaf335f673ac09d308 sha256: 2040d4640708bd6ab9ed6cb9901267441798c44974bc63c9b6c1cb4c1891d825 @@ -985,7 +982,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://repo.prefix.dev/conda-forge/noarch/fsspec-2025.3.2-pyhd8ed1ab_0.conda hash: md5: 9c40692c3d24c7aaf335f673ac09d308 sha256: 2040d4640708bd6ab9ed6cb9901267441798c44974bc63c9b6c1cb4c1891d825 @@ -1004,7 +1001,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://repo.prefix.dev/conda-forge/linux-64/geoana-0.7.2-py310ha2bacc8_0.conda hash: md5: c49d268934279b306219be6320b1b290 sha256: fdbb0e98fd00195b2d6b5d3e0d0ee08397f722e1b3da262a65f32da6fc54ef5e @@ -1023,7 +1020,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://repo.prefix.dev/conda-forge/win-64/geoana-0.7.2-py310h3e8ed56_0.conda hash: md5: 3105f90b59411ab6b71bc3c8b71d8b36 sha256: 4d8b287ad229c1dd59b6c76dfdc1a968af2e5229e1cbd146827fedaf419649d7 @@ -1037,7 +1034,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://repo.prefix.dev/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda hash: md5: b4754fb1bdcb70c8fd54f918301582c6 sha256: 0aa1cdc67a9fe75ea95b5644b734a756200d6ec9d0dff66530aec3d1c1e9df75 @@ -1051,7 +1048,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://repo.prefix.dev/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda hash: md5: b4754fb1bdcb70c8fd54f918301582c6 sha256: 0aa1cdc67a9fe75ea95b5644b734a756200d6ec9d0dff66530aec3d1c1e9df75 @@ -1069,7 +1066,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://repo.prefix.dev/conda-forge/linux-64/h5py-3.13.0-nompi_py310h60e0fe6_100.conda hash: md5: 262cb7007454532e0cdf88c34c0c8f41 sha256: 5907cd4f8a57d899a7319b2668321bda8a91b375b0a5e69a8729160b64600d67 @@ -1088,7 +1085,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://repo.prefix.dev/conda-forge/win-64/h5py-3.13.0-nompi_py310h2b0be38_100.conda hash: md5: 2ae28abdc4fe8fc89df85659c1cf8103 sha256: ac37afa6b26272b6b034d91b38e877a905059b526e238391bac500f9249b788b @@ -1108,7 +1105,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://repo.prefix.dev/conda-forge/linux-64/hdf5-1.14.3-nompi_h2d575fe_109.conda hash: md5: e7a7a6e6f70553a31e6e79c65768d089 sha256: e8669a6d76d415f4fdbe682507ac3a3b39e8f493d2f2bdc520817f80b7cc0753 @@ -1126,7 +1123,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://repo.prefix.dev/conda-forge/win-64/hdf5-1.14.3-nompi_hb2c4d47_109.conda hash: md5: ebb61f3e8b35cc15e78876649b7246f7 sha256: d5ada33e119cdd62371c06f60eae6f545de7cea793ab83da2fba428bb1d2f813 @@ -1138,7 +1135,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://repo.prefix.dev/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda hash: md5: 0a802cb9888dd14eeefc611f05c40b6e sha256: 6ad78a180576c706aabeb5b4c8ceb97c0cb25f1e112d76495bff23e3779948ba @@ -1150,7 +1147,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://repo.prefix.dev/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda hash: md5: 0a802cb9888dd14eeefc611f05c40b6e sha256: 6ad78a180576c706aabeb5b4c8ceb97c0cb25f1e112d76495bff23e3779948ba @@ -1162,7 +1159,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://repo.prefix.dev/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda hash: md5: 8e6923fc12f1fe8f8c4e5c9f343256ac sha256: 77af6f5fe8b62ca07d09ac60127a30d9069fdc3c68d6b256754d0ffb1f7779f8 @@ -1174,7 +1171,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://repo.prefix.dev/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda hash: md5: 8e6923fc12f1fe8f8c4e5c9f343256ac sha256: 77af6f5fe8b62ca07d09ac60127a30d9069fdc3c68d6b256754d0ffb1f7779f8 @@ -1186,7 +1183,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://repo.prefix.dev/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda hash: md5: 39a4f67be3286c86d696df570b1201b7 sha256: d7a472c9fd479e2e8dcb83fb8d433fce971ea369d704ece380e876f9c3494e87 @@ -1198,7 +1195,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://repo.prefix.dev/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda hash: md5: 39a4f67be3286c86d696df570b1201b7 sha256: d7a472c9fd479e2e8dcb83fb8d433fce971ea369d704ece380e876f9c3494e87 @@ -1210,7 +1207,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://repo.prefix.dev/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2 hash: md5: 7de5386c8fea29e76b303f37dde4c352 sha256: c2bfd7043e0c4c12d8b5593de666c1e81d67b83c474a0a79282cc5c4ef845460 @@ -1222,7 +1219,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://repo.prefix.dev/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2 hash: md5: 7de5386c8fea29e76b303f37dde4c352 sha256: c2bfd7043e0c4c12d8b5593de666c1e81d67b83c474a0a79282cc5c4ef845460 @@ -1235,7 +1232,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://repo.prefix.dev/conda-forge/noarch/importlib-metadata-8.6.1-pyha770c72_0.conda hash: md5: f4b39bf00c69f56ac01e020ebfac066c sha256: 598951ebdb23e25e4cec4bbff0ae369cec65ead80b50bc08b441d8e54de5cf03 @@ -1248,7 +1245,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://repo.prefix.dev/conda-forge/noarch/importlib-metadata-8.6.1-pyha770c72_0.conda hash: md5: f4b39bf00c69f56ac01e020ebfac066c sha256: 598951ebdb23e25e4cec4bbff0ae369cec65ead80b50bc08b441d8e54de5cf03 @@ -1260,7 +1257,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://repo.prefix.dev/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda hash: md5: 6837f3eff7dcea42ecd714ce1ac2b108 sha256: 0ec8f4d02053cd03b0f3e63168316530949484f80e16f5e2fb199a1d117a89ca @@ -1272,7 +1269,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://repo.prefix.dev/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda hash: md5: 6837f3eff7dcea42ecd714ce1ac2b108 sha256: 0ec8f4d02053cd03b0f3e63168316530949484f80e16f5e2fb199a1d117a89ca @@ -1283,7 +1280,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://repo.prefix.dev/conda-forge/win-64/intel-openmp-2024.2.1-h57928b3_1083.conda hash: md5: 2d89243bfb53652c182a7c73182cce4f sha256: 0fd2b0b84c854029041b0ede8f4c2369242ee92acc0092f8407b1fe9238a8209 @@ -1296,7 +1293,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://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_0.conda hash: md5: a8abfd3f223b1ecb8c699dca974933bd sha256: 9c5fb97efa0eb32b42564edaacb5edb9a1f82ba8f5f8b135e794960101115b5a @@ -1309,7 +1306,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://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_0.conda hash: md5: a8abfd3f223b1ecb8c699dca974933bd sha256: 9c5fb97efa0eb32b42564edaacb5edb9a1f82ba8f5f8b135e794960101115b5a @@ -1322,7 +1319,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://repo.prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda hash: md5: 446bd6c8cb26050d528881df495ce646 sha256: f1ac18b11637ddadc05642e8185a851c7fab5998c6f5470d716812fae943b2af @@ -1335,7 +1332,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://repo.prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda hash: md5: 446bd6c8cb26050d528881df495ce646 sha256: f1ac18b11637ddadc05642e8185a851c7fab5998c6f5470d716812fae943b2af @@ -1348,7 +1345,7 @@ package: dependencies: python: '>=3.9' setuptools: '' - url: https://packages.prefix.dev/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 @@ -1361,7 +1358,7 @@ package: dependencies: python: '>=3.9' setuptools: '' - url: https://packages.prefix.dev/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 @@ -1373,7 +1370,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://repo.prefix.dev/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 hash: md5: 30186d27e2c9fa62b45fb1476b7200e3 sha256: 150c05a6e538610ca7c43beb3a40d65c90537497a4f6a5f4d15ec0451b6f5ebb @@ -1389,7 +1386,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://repo.prefix.dev/conda-forge/linux-64/kiwisolver-1.4.7-py310h3788b33_0.conda hash: md5: 4186d9b4d004b0fe0de6aa62496fb48a sha256: d97a9894803674e4f8155a5e98a49337d28bdee77dfd87e1614a824d190cd086 @@ -1405,7 +1402,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://repo.prefix.dev/conda-forge/win-64/kiwisolver-1.4.7-py310hc19bc0b_0.conda hash: md5: 50d96539497fc7493cbe469fbb6b8b6e sha256: a87dff54b753a2ee19188ab9491a63d40a08873f17c7797cd5c44467a2ff4f12 @@ -1421,7 +1418,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://repo.prefix.dev/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda hash: md5: 3f43953b7d3fb3aaa1d0d0723d91e368 sha256: 99df692f7a8a5c27cd14b5fb1374ee55e756631b9c3d659ed3ee60830249b238 @@ -1436,7 +1433,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://repo.prefix.dev/conda-forge/win-64/krb5-1.21.3-hdf4eb48_0.conda hash: md5: 31aec030344e962fbd7dbbbbd68e60a9 sha256: 18e8b3430d7d232dad132f574268f56b3eb1a19431d6d5de8c53c29e6c18fa81 @@ -1451,7 +1448,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://repo.prefix.dev/conda-forge/linux-64/lcms2-2.17-h717163a_0.conda hash: md5: 000e85703f0fd9594c81710dd5066471 sha256: d6a61830a354da022eae93fa896d0991385a875c6bba53c82263a289deda9db8 @@ -1467,7 +1464,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://repo.prefix.dev/conda-forge/win-64/lcms2-2.17-hbcf6048_0.conda hash: md5: 3538827f77b82a837fa681a4579e37a1 sha256: 7712eab5f1a35ca3ea6db48ead49e0d6ac7f96f8560da8023e61b3dbe4f3b25d @@ -1479,7 +1476,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://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_4.conda hash: md5: 01f8d123c96816249efd255a31ad7712 sha256: db73f38155d901a610b2320525b9dd3b31e4949215c870685fd92ea61b5ce472 @@ -1490,12 +1487,13 @@ package: manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://packages.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 @@ -1503,12 +1501,13 @@ package: manager: conda platform: win-64 dependencies: + ucrt: '>=10.0.20348.0' 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 + 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 @@ -1518,7 +1517,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://repo.prefix.dev/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda hash: md5: 5e97e271911b8b2001a8b71860c32faa sha256: 2ef420a655528bca9d269086cf33b7e90d2f54ad941b437fb1ed5eca87cee017 @@ -1532,7 +1531,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://repo.prefix.dev/conda-forge/win-64/libaec-1.1.3-h63175ca_0.conda hash: md5: 8723000f6ffdbdaef16025f0a01b64c5 sha256: f5c293d3cfc00f71dfdb64bd65ab53625565f8778fc2d5790575bef238976ebf @@ -1544,7 +1543,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://repo.prefix.dev/conda-forge/linux-64/libblas-3.9.0-31_hfdb39a5_mkl.conda hash: md5: bdf4a57254e8248222cb631db4393ff1 sha256: 862289f2cfb84bb6001d0e3569e908b8c42d66b881bd5b03f730a3924628b978 @@ -1556,7 +1555,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://repo.prefix.dev/conda-forge/win-64/libblas-3.9.0-31_h641d27c_mkl.conda hash: md5: d05563c577fe2f37693a554b3f271e8f sha256: 7bb4d5b591e98fe607279520ee78e3571a297b5720aa789a2536041ad5540de8 @@ -1569,7 +1568,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://repo.prefix.dev/conda-forge/linux-64/libbrotlicommon-1.1.0-hb9d3cd8_2.conda hash: md5: 41b599ed2b02abcfdd84302bff174b23 sha256: d9db2de60ea917298e658143354a530e9ca5f9c63471c65cf47ab39fd2f429e3 @@ -1583,7 +1582,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://repo.prefix.dev/conda-forge/win-64/libbrotlicommon-1.1.0-h2466b09_2.conda hash: md5: f7dc9a8f21d74eab46456df301da2972 sha256: 33e8851c6cc8e2d93059792cd65445bfe6be47e4782f826f01593898ec95764c @@ -1597,7 +1596,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://repo.prefix.dev/conda-forge/linux-64/libbrotlidec-1.1.0-hb9d3cd8_2.conda hash: md5: 9566f0bd264fbd463002e759b8a82401 sha256: 2892d512cad096cb03f1b66361deeab58b64e15ba525d6592bb6d609e7045edf @@ -1612,7 +1611,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://repo.prefix.dev/conda-forge/win-64/libbrotlidec-1.1.0-h2466b09_2.conda hash: md5: 9bae75ce723fa34e98e239d21d752a7e sha256: 234fc92f4c4f1cf22f6464b2b15bfc872fa583c74bf3ab9539ff38892c43612f @@ -1626,7 +1625,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://repo.prefix.dev/conda-forge/linux-64/libbrotlienc-1.1.0-hb9d3cd8_2.conda hash: md5: 06f70867945ea6a84d35836af780f1de sha256: 779f58174e99de3600e939fa46eddb453ec5d3c60bb46cdaa8b4c127224dbf29 @@ -1641,7 +1640,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://repo.prefix.dev/conda-forge/win-64/libbrotlienc-1.1.0-h2466b09_2.conda hash: md5: 85741a24d97954a991e55e34bc55990b sha256: 3d0dd7ef505962f107b7ea8f894e0b3dd01bf46852b362c8a7fc136b039bc9e1 @@ -1653,7 +1652,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://repo.prefix.dev/conda-forge/linux-64/libcblas-3.9.0-31_h372d94f_mkl.conda hash: md5: 2a06a6c16b45bd3d10002927ca204b67 sha256: 2ee3ab2b6eeb59f2d3c6f933fa0db28f1b56f0bc543ed2c0f6ec04060e4b6ec0 @@ -1665,7 +1664,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://repo.prefix.dev/conda-forge/win-64/libcblas-3.9.0-31_h5e41251_mkl.conda hash: md5: 43c100b94ad2607382b0cf0f3a6b0bf3 sha256: 609f455b099919bd4d15d4a733f493dc789e02da73fe4474f1cca73afafb95b8 @@ -1684,7 +1683,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://repo.prefix.dev/conda-forge/linux-64/libcurl-8.13.0-h332b0f4_0.conda hash: md5: cbdc92ac0d93fe3c796e36ad65c7905c sha256: 38e528acfaa0276b7052f4de44271ff9293fdb84579650601a8c49dac171482a @@ -1701,7 +1700,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://repo.prefix.dev/conda-forge/win-64/libcurl-8.13.0-h88aaa65_0.conda hash: md5: c9cf6eb842decbb66c2f34e72c3580d6 sha256: 185553b37c0299b7a15dc66a7a7e2a0d421adaac784ec9298a0b2ad745116ca5 @@ -1714,10 +1713,10 @@ 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://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 @@ -1728,10 +1727,10 @@ 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://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 @@ -1741,7 +1740,7 @@ package: dependencies: numpy: '' python: '>=3.10' - url: https://packages.prefix.dev/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 @@ -1754,7 +1753,7 @@ package: dependencies: numpy: '' python: '>=3.10' - url: https://packages.prefix.dev/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 @@ -1768,7 +1767,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://repo.prefix.dev/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.conda hash: md5: c277e0a4d549b03ac1e9d6cbbe3d017b sha256: d789471216e7aba3c184cd054ed61ce3f6dac6f87a50ec69291b9297f8c18724 @@ -1780,7 +1779,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://repo.prefix.dev/conda-forge/linux-64/libev-4.33-hd590300_2.conda hash: md5: 172bf1cd1ff8629f2b1179945ed45055 sha256: 1cd6048169fa0395af74ed5d8f1716e22c19a81a8a36f934c110ca3ad4dd27b4 @@ -1793,7 +1792,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://repo.prefix.dev/conda-forge/linux-64/libexpat-2.7.0-h5888daf_0.conda hash: md5: db0bfbe7dd197b68ad5f30333bae6ce0 sha256: 33ab03438aee65d6aa667cf7d90c91e5e7d734c19a67aa4c7040742c0a13d505 @@ -1807,7 +1806,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://repo.prefix.dev/conda-forge/win-64/libexpat-2.7.0-he0c23c2_0.conda hash: md5: b6f5352fdb525662f4169a0431d2dd7a sha256: 1a227c094a4e06bd54e8c2f3ec40c17ff99dcf3037d812294f842210aa66dbeb @@ -1820,7 +1819,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://repo.prefix.dev/conda-forge/linux-64/libffi-3.4.6-h2dba641_1.conda hash: md5: ede4673863426c0883c0063d853bbd85 sha256: 764432d32db45466e87f10621db5b74363a9f847d2b8b1f9743746cd160f06ab @@ -1834,12 +1833,67 @@ 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://repo.prefix.dev/conda-forge/win-64/libffi-3.4.6-h537db12_1.conda hash: md5: 85d8fa5e55ed8f93f874b3b23ed54ec6 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 @@ -1847,7 +1901,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://repo.prefix.dev/conda-forge/linux-64/libgcc-14.2.0-h767d61c_2.conda hash: md5: ef504d1acbd74b7cc6849ef8af47dd03 sha256: 3a572d031cb86deb541d15c1875aaa097baefc0c580b54dc61f5edab99215792 @@ -1860,7 +1914,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://repo.prefix.dev/conda-forge/win-64/libgcc-14.2.0-h1383e82_2.conda hash: md5: 4a74c1461a0ba47a3346c04bdccbe2ad sha256: fddf2fc037bc95adb3b369e8866da8a71b6a67ebcfc4d7035ac4208309dc9e72 @@ -1872,7 +1926,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://repo.prefix.dev/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_2.conda hash: md5: a2222a6ada71fb478682efe483ce0f92 sha256: fb7558c328b38b2f9d2e412c48da7890e7721ba018d733ebdfea57280df01904 @@ -1884,7 +1938,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://repo.prefix.dev/conda-forge/linux-64/libgfortran-14.2.0-h69a702a_2.conda hash: md5: fb54c4ea68b460c278d26eea89cfbcc3 sha256: e05263e8960da03c341650f2a3ffa4ccae4e111cb198e8933a2908125459e5a6 @@ -1897,7 +1951,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://repo.prefix.dev/conda-forge/linux-64/libgfortran5-14.2.0-hf1ad2bd_2.conda hash: md5: 556a4fdfac7287d349b8f09aba899693 sha256: c17b7cf3073a1f4e1f34d50872934fa326346e104d3c445abc1e62481ad6085c @@ -1909,7 +1963,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://repo.prefix.dev/conda-forge/win-64/libgomp-14.2.0-h1383e82_2.conda hash: md5: dd6b1ab49e28bcb6154cd131acec985b sha256: 674ec5f1bf319eac98d0d6ecb9c38e0192f3cf41969a5621d62a7e695e1aa9f3 @@ -1924,7 +1978,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://repo.prefix.dev/conda-forge/linux-64/libhwloc-2.11.2-default_h0d58e46_1001.conda hash: md5: 804ca9e91bcaea0824a341d55b1684f2 sha256: d14c016482e1409ae1c50109a9ff933460a50940d2682e745ab1c172b5282a69 @@ -1940,7 +1994,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://repo.prefix.dev/conda-forge/win-64/libhwloc-2.11.2-default_ha69328c_1001.conda hash: md5: b87a0ac5ab6495d8225db5dc72dd21cd sha256: 850e255997f538d5fb6ed651321141155a33bb781d43d326fc4ff62114dd2842 @@ -1953,7 +2007,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://repo.prefix.dev/conda-forge/linux-64/libiconv-1.18-h4ce23a2_1.conda hash: md5: e796ff8ddc598affdf7c173d6145f087 sha256: 18a4afe14f731bfb9cf388659994263904d20111e42f841e9eea1bb6f91f4ab4 @@ -1967,36 +2021,37 @@ 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://repo.prefix.dev/conda-forge/win-64/libiconv-1.18-h135ad9c_1.conda hash: md5: 21fc5dba2cbcd8e5e26ff976a312122c sha256: ea5ed2b362b6dbc4ba7188eb4eaf576146e3dfc6f4395e9f0db76ad77465f786 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://packages.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://packages.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 @@ -2005,7 +2060,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://repo.prefix.dev/conda-forge/linux-64/liblapack-3.9.0-31_hc41d3b0_mkl.conda hash: md5: 10d012ddd7cc1c7ff9093d4974a34e53 sha256: a2d20845d916ac8fba09376cd791136a9b4547afb2131bc315178adfc87bb4ca @@ -2017,7 +2072,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://repo.prefix.dev/conda-forge/win-64/liblapack-3.9.0-31_h1aa476e_mkl.conda hash: md5: 40b47ee720a185289760960fc6185750 sha256: 9415e807aa6f8968322bbd756aab8f487379d809c74266d37c697b8d85c534ad @@ -2030,7 +2085,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://repo.prefix.dev/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_0.conda hash: md5: 0e87378639676987af32fee53ba32258 sha256: f4f21dfc54b08d462f707b771ecce3fa9bc702a2a05b55654f64154f48b141ef @@ -2044,7 +2099,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://repo.prefix.dev/conda-forge/win-64/liblzma-5.8.1-h2466b09_0.conda hash: md5: 8d5cb0016b645d6688e2ff57c5d51302 sha256: 1477e9bff05318f3129d37be0e64c76cce0973c4b8c73d13a467d0b7f03d157c @@ -2062,7 +2117,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://repo.prefix.dev/conda-forge/linux-64/libnghttp2-1.64.0-h161d5f1_0.conda hash: md5: 19e57602824042dfd0446292ef90488b sha256: b0f2b3695b13a989f75d8fd7f4778e1c7aabe3b36db83f0fe80b2cd812c0e975 @@ -2074,7 +2129,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://repo.prefix.dev/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda hash: md5: 30fd6e37fe21f86f4bd26d6ee73eeec7 sha256: 26d77a3bb4dceeedc2a41bd688564fe71bf2d149fdcf117049970bc02ff1add6 @@ -2088,7 +2143,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://repo.prefix.dev/conda-forge/linux-64/libpng-1.6.47-h943b412_0.conda hash: md5: 55199e2ae2c3651f6f9b2a447b47bdc9 sha256: 23367d71da58c9a61c8cbd963fcffb92768d4ae5ffbef9a47cdf1f54f98c5c36 @@ -2103,10 +2158,10 @@ 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://repo.prefix.dev/conda-forge/win-64/libpng-1.6.47-h7a4582a_0.conda hash: - md5: 7d717163d9dab337c65f2bf21a676b8f - sha256: cf8a594b697de103025dcae2c917ec9c100609caf7c917a94c64a683cb1db1ac + md5: ad620e92b82d2948bc019e029c574ebb + sha256: e12c46ca882080d901392ae45e0e5a1c96fc3e5acd5cd1a23c2632eb7f024f26 category: main optional: false - name: libscotch @@ -2121,7 +2176,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://repo.prefix.dev/conda-forge/linux-64/libscotch-7.0.6-hea33c07_1.conda hash: md5: 1b600d55dcd98c958192a69a79e6acd2 sha256: 8330bba8b7b3a37da6eca04bace985fb9f8d487d3249b8f690e8f4a3d8d3c7dc @@ -2135,7 +2190,7 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://packages.prefix.dev/conda-forge/linux-64/libspatialindex-2.0.0-he02047a_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libspatialindex-2.0.0-he02047a_0.conda hash: md5: e7d2dcd1a058149ff9731a8dca39566e sha256: 997a4fa13864dcb35ac9dfe87ed70fb3e9509dd071fa1951ac7f184e7ffcde5d @@ -2149,7 +2204,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/libspatialindex-2.0.0-h5a68840_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libspatialindex-2.0.0-h5a68840_0.conda hash: md5: 667559340fdf805ee1652de7b73e2b59 sha256: 7802e6c51d59bc7e062841c525d772656708cdc44e42b6556493d345f08d7e50 @@ -2163,7 +2218,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://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.49.1-hee588c1_2.conda hash: md5: 962d6ac93c30b1dfc54c9cccafd1003e sha256: a086289bf75c33adc1daed3f1422024504ffb5c3c8b3285c49f025c29708ed16 @@ -2177,7 +2232,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://repo.prefix.dev/conda-forge/win-64/libsqlite-3.49.1-h67fdade_2.conda hash: md5: b58b66d4ad1aaf1c2543cbbd6afb1a59 sha256: c092d42d00fd85cf609cc58574ba2b03c141af5762283f36f5dd445ef7c0f4fe @@ -2191,11 +2246,11 @@ package: __glibc: '>=2.17,<3.0.a0' 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 + openssl: '>=3.5.0,<4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/libssh2-1.11.1-hcf80075_0.conda hash: - md5: be2de152d8073ef1c01b7728475f2fe7 - sha256: 0407ac9fda2bb67e11e357066eff144c845801d00b5f664efbc48813af1e7bb9 + md5: eecce068c7e4eddeb169591baac20ac4 + sha256: fa39bfd69228a13e553bd24601332b7cfeb30ca11a3ca50bb028108fe90a7661 category: main optional: false - name: libssh2 @@ -2204,14 +2259,14 @@ package: platform: win-64 dependencies: libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.4.0,<4.0a0' + openssl: '>=3.5.0,<4.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/libssh2-1.11.1-he619c9f_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libssh2-1.11.1-h9aa295b_0.conda hash: - md5: af0cbf037dd614c34399b3b3e568c557 - sha256: 4b3256bd2b4e4b3183005d3bd8826d651eccd1a4740b70625afa2b7e7123d191 + md5: 9dce2f112bfd3400f4f432b3d0ac07b2 + sha256: cbdf93898f2e27cefca5f3fe46519335d1fab25c4ea2a11b11502ff63e602c09 category: main optional: false - name: libstdcxx @@ -2221,7 +2276,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://repo.prefix.dev/conda-forge/linux-64/libstdcxx-14.2.0-h8f9b012_2.conda hash: md5: a78c856b6dc6bf4ea8daeb9beaaa3fb0 sha256: 8f5bd92e4a24e1d35ba015c5252e8f818898478cb3bc50bd8b12ab54707dc4da @@ -2233,7 +2288,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://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-14.2.0-h4852527_2.conda hash: md5: c75da67f045c2627f59e6fcb5f4e3a9b sha256: e86f38b007cf97cc2c67cd519f2de12a313c4ee3f5ef11652ad08932a5e34189 @@ -2248,16 +2303,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://packages.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 @@ -2267,17 +2322,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://packages.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 @@ -2286,7 +2341,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://repo.prefix.dev/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda hash: md5: 40b61aab5c7ba9ff276c41cfffe6b80b sha256: 787eb542f055a2b3de553614b25f09eefb0a0931b0c87dbcce6efdfd92f04f18 @@ -2299,7 +2354,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://repo.prefix.dev/conda-forge/linux-64/libwebp-base-1.5.0-h851e524_0.conda hash: md5: 63f790534398730f59e1b899c3644d4a sha256: c45283fd3e90df5f0bd3dbcd31f59cdd2b001d424cf30a07223655413b158eaf @@ -2313,7 +2368,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://repo.prefix.dev/conda-forge/win-64/libwebp-base-1.5.0-h3b0e114_0.conda hash: md5: 33f7313967072c6e6d8f865f5493c7ae sha256: 1d75274614e83a5750b8b94f7bad2fc0564c2312ff407e697d99152ed095576f @@ -2325,7 +2380,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://repo.prefix.dev/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h57928b3_9.conda hash: md5: 08bfa5da6e242025304b206d152479ef sha256: 373f2973b8a358528b22be5e8d84322c165b4c5577d24d94fd67ad1bb0a0f261 @@ -2341,7 +2396,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://repo.prefix.dev/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda hash: md5: 92ed62436b625154323d40d5f2f11dd7 sha256: 666c0c431b23c6cec6e492840b176dde533d48b7e6fb8883f5071223433776aa @@ -2358,7 +2413,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://repo.prefix.dev/conda-forge/win-64/libxcb-1.17.0-h0e4246c_0.conda hash: md5: a69bbf778a462da324489976c84cfc8c sha256: 08dec73df0e161c96765468847298a420933a36bc4f09b50e062df8793290737 @@ -2370,7 +2425,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://repo.prefix.dev/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda hash: md5: 5aa797f8787fe7a17d1b0821485b5adc sha256: 6ae68e0b86423ef188196fff6207ed0c8195dd84273cb5623b85aa08033a410c @@ -2386,7 +2441,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://repo.prefix.dev/conda-forge/linux-64/libxml2-2.13.7-h81593ed_1.conda hash: md5: 0619e8fc4c8025a908ea3a3422d3b775 sha256: c4f59563e017eba378ea843be5ebde4b0546c72bbe4c1e43b2b384379e827635 @@ -2402,7 +2457,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://repo.prefix.dev/conda-forge/win-64/libxml2-2.13.7-h442d1da_1.conda hash: md5: c14ff7f05e57489df9244917d2b55763 sha256: 0a013527f784f4702dc18460070d8ec79d1ebb5087dd9e678d6afbeaca68d2ac @@ -2415,7 +2470,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://repo.prefix.dev/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda hash: md5: edb0dca6bc32e4f4789199455a1dbeb8 sha256: d4bfe88d7cb447768e31650f06257995601f89076080e76df55e3112d4e47dc4 @@ -2429,36 +2484,36 @@ 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://repo.prefix.dev/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda hash: md5: 41fbfac52c601159df6c01f875de31b9 sha256: ba945c6493449bed0e6e29883c4943817f7c79cbff52b83360f7b341277c6402 category: main optional: false - name: llvm-openmp - version: 20.1.2 + version: 20.1.4 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://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-20.1.4-h024ca30_0.conda hash: - md5: 39a3992c2624b8d8e6b4994dedf3102a - sha256: 2c70e18a5bcb3fc2925e5d2c2c39559253d19e38c111afc91885f0dee4540fb1 + md5: 4fc395cda27912a7d904b86b5dbf3a4d + sha256: 5b39cdde3457e41b133d6f1fe53095c7fd3951bbdab46580098ccbf5ee9c99f7 category: main optional: false - name: llvm-openmp - version: 20.1.2 + version: 20.1.4 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://repo.prefix.dev/conda-forge/win-64/llvm-openmp-20.1.4-h30eaf37_0.conda hash: - md5: d5a4f53b65d7d1d53104ba24107eda04 - sha256: 3ba2b892d6e153599512fa7fe2791125ff1b7dd6740469f74aff2d1b48edf299 + md5: 3087da6f7e741dc1498e85ef87a553dc + sha256: 0c85b0ceda02c26bbea5a789c2d1735485dbc2a1089655a8f2193c5850a7bbab category: main optional: false - name: locket @@ -2467,7 +2522,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://repo.prefix.dev/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 91e27ef3d05cc772ce627e51cff111c4 sha256: 9afe0b5cfa418e8bdb30d8917c5a6cec10372b037924916f1f85b9f4899a67a6 @@ -2479,7 +2534,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://repo.prefix.dev/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 91e27ef3d05cc772ce627e51cff111c4 sha256: 9afe0b5cfa418e8bdb30d8917c5a6cec10372b037924916f1f85b9f4899a67a6 @@ -2494,7 +2549,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://repo.prefix.dev/conda-forge/linux-64/markupsafe-3.0.2-py310h89163eb_1.conda hash: md5: 8ce3f0332fd6de0d737e2911d329523f sha256: 0bed20ec27dcbcaf04f02b2345358e1161fb338f8423a4ada1cf0f4d46918741 @@ -2510,7 +2565,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://repo.prefix.dev/conda-forge/win-64/markupsafe-3.0.2-py310h38315fa_1.conda hash: md5: 79dfc050ae5a7dd4e63e392c984e2576 sha256: deb8505b7ef76d363174d133e2ff814ae75b91ac4c3ae5550a7686897392f4d0 @@ -2537,7 +2592,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://repo.prefix.dev/conda-forge/linux-64/matplotlib-base-3.8.4-py310hef631a5_2.conda hash: md5: b3fa3fc2a0fa8b53b913c94297b12e27 sha256: 5733c68ff72a04a42d8363965155d4b27a1ed3364a507b8cac582c0b4881d222 @@ -2564,7 +2619,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://repo.prefix.dev/conda-forge/win-64/matplotlib-base-3.8.4-py310hadb10a8_2.conda hash: md5: 8f5e26aa64ab245691efb7f87c584060 sha256: bc3ecb8e9f68fd1b4214e223f08e94d8f88e6fdc237dc0e86efcb9f090737e96 @@ -2576,7 +2631,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://repo.prefix.dev/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda hash: md5: 827064ddfe0de2917fb29f1da4f8f533 sha256: 9b0037171dad0100f0296699a11ae7d355237b55f42f9094aebc0f41512d96a1 @@ -2588,7 +2643,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://repo.prefix.dev/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda hash: md5: 827064ddfe0de2917fb29f1da4f8f533 sha256: 9b0037171dad0100f0296699a11ae7d355237b55f42f9094aebc0f41512d96a1 @@ -2602,7 +2657,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://repo.prefix.dev/conda-forge/linux-64/metis-5.1.0-hd0bcaf9_1007.conda hash: md5: 28eb714416de4eb83e2cbc47e99a1b45 sha256: e8a00971e6d00bd49f375c5d8d005b37a9abba0b1768533aed0f90a422bf5cc7 @@ -2616,7 +2671,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://repo.prefix.dev/conda-forge/linux-64/mkl-2024.2.2-ha957f24_16.conda hash: md5: 1459379c79dda834673426504d52b319 sha256: 77906b0acead8f86b489da46f53916e624897338770dbf70b04b8f673c9273c1 @@ -2629,7 +2684,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://repo.prefix.dev/conda-forge/win-64/mkl-2024.2.2-h66d3029_15.conda hash: md5: 302dff2807f2927b3e9e0d19d60121de sha256: 20e52b0389586d0b914a49cd286c5ccc9c47949bed60ca6df004d1d295f2edbd @@ -2645,7 +2700,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://repo.prefix.dev/conda-forge/linux-64/msgpack-python-1.1.0-py310h3788b33_0.conda hash: md5: 6b586fb03d84e5bfbb1a8a3d9e2c9b60 sha256: 73ca5f0c7d0727a57dcc3c402823ce3aa159ca075210be83078fcc485971e259 @@ -2661,7 +2716,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://repo.prefix.dev/conda-forge/win-64/msgpack-python-1.1.0-py310hc19bc0b_0.conda hash: md5: 2cfcbd596afd76879de4824c2c24f4a2 sha256: db5c3d5e2d28ba0e4e1633f6d52079f0e397bdb60a6f58a2fa942e88071182d2 @@ -2672,10 +2727,10 @@ 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://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 @@ -2693,10 +2748,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://packages.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 @@ -2706,14 +2761,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://packages.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 @@ -2722,7 +2777,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://repo.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 hash: md5: 2ba8498c1018c1e9c61eb99b973dfe19 sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 @@ -2734,7 +2789,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://repo.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 hash: md5: 2ba8498c1018c1e9c61eb99b973dfe19 sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 @@ -2747,7 +2802,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://repo.prefix.dev/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda hash: md5: 47e340acb35de30501a76c7c799c41d7 sha256: 3fde293232fa3fca98635e1167de6b7c7fda83caf24b9d6c91ec9eefb4f4d586 @@ -2765,7 +2820,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://repo.prefix.dev/conda-forge/linux-64/numcodecs-0.13.1-py310h5eaa309_0.conda hash: md5: a3e9933fc59e8bcd2aa20753fb56db42 sha256: 70cb0fa431ba9e75ef36d94f35324089dfa7da8f967e9c758f60e08aaf29b732 @@ -2783,7 +2838,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://repo.prefix.dev/conda-forge/win-64/numcodecs-0.13.1-py310hb4db72f_0.conda hash: md5: 0d316ad384c5c153a67a416f1a8abf97 sha256: 4aa5d7fc0ea81120f2fab5ef6ff3e0c8ea3458a2c8a21935b99dff70b73a349c @@ -2801,7 +2856,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://repo.prefix.dev/conda-forge/linux-64/numpy-1.26.4-py310hb13e2d6_0.conda hash: md5: 6593de64c935768b6bad3e19b3e978be sha256: 028fe2ea8e915a0a032b75165f11747770326f3d767e642880540c60a3256425 @@ -2820,7 +2875,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://repo.prefix.dev/conda-forge/win-64/numpy-1.26.4-py310hf667824_0.conda hash: md5: 93e881c391880df90e74e43a4b67c16d sha256: 20ca447a8f840c01961f2bdf0847fc7b7785a62968e867d7aa4ca8a66d70f9ad @@ -2837,7 +2892,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://repo.prefix.dev/conda-forge/linux-64/openjpeg-2.5.3-h5fbd93e_0.conda hash: md5: 9e5816bc95d285c115a3ebc2f8563564 sha256: 5bee706ea5ba453ed7fd9da7da8380dd88b865c8d30b5aaec14d2b6dd32dbc39 @@ -2854,7 +2909,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://repo.prefix.dev/conda-forge/win-64/openjpeg-2.5.3-h4d64b90_0.conda hash: md5: fc050366dd0b8313eb797ed1ffef3a29 sha256: 410175815df192f57a07c29a6b3fdd4231937173face9e63f0830c1234272ce3 @@ -2868,7 +2923,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://repo.prefix.dev/conda-forge/linux-64/openssl-3.5.0-h7b32b05_0.conda hash: md5: bb539841f2a3fde210f387d00ed4bb9d sha256: 38285d280f84f1755b7c54baf17eccf2e3e696287954ce0adca16546b85ee62c @@ -2883,34 +2938,34 @@ 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://repo.prefix.dev/conda-forge/win-64/openssl-3.5.0-ha4e3fda_0.conda hash: md5: 4ea7db75035eb8c13fa680bb90171e08 sha256: 43dd7f56da142ca83c614c8b0085589650ae9032b351a901c190e48eefc73675 category: main optional: false - 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 + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda hash: - md5: 3bfed7e6228ebf2f7b9eaa47f1b4e2aa - sha256: da157b19bcd398b9804c5c52fc000fcb8ab0525bdb9c70f95beaa0bb42f85af1 + md5: 58335b26c38bf4a20f399384c33cbcf9 + sha256: 289861ed0c13a15d7bbb408796af4de72c2fe67e2bcb0de98f4c3fce259d7991 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 + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda hash: - md5: 3bfed7e6228ebf2f7b9eaa47f1b4e2aa - sha256: da157b19bcd398b9804c5c52fc000fcb8ab0525bdb9c70f95beaa0bb42f85af1 + md5: 58335b26c38bf4a20f399384c33cbcf9 + sha256: 289861ed0c13a15d7bbb408796af4de72c2fe67e2bcb0de98f4c3fce259d7991 category: main optional: false - name: partd @@ -2921,7 +2976,7 @@ package: locket: '' python: '>=3.9' toolz: '' - url: https://packages.prefix.dev/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 @@ -2935,7 +2990,7 @@ package: locket: '' python: '>=3.9' toolz: '' - url: https://packages.prefix.dev/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 @@ -2958,7 +3013,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://repo.prefix.dev/conda-forge/linux-64/pillow-10.3.0-py310hebfe307_1.conda hash: md5: 8d357fd769e0e1a957f5916bdc8b1fa2 sha256: adb1d874246c47cc8972894b13eeb70ef1aab067f51e615f4976cfe9c3ee3208 @@ -2983,38 +3038,38 @@ 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://repo.prefix.dev/conda-forge/win-64/pillow-10.3.0-py310h3e38d90_1.conda hash: md5: ee35afda8b2154e7396fae5ca7fbea6b sha256: 50a0d0f8de51c47f8ca0820f0ebfc7730aec4a7a98069347a3395b21b67f7e21 category: main optional: false - name: pip - version: 25.0.1 + version: '25.1' manager: conda platform: linux-64 dependencies: 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://repo.prefix.dev/conda-forge/noarch/pip-25.1-pyh8b19718_0.conda hash: - md5: 79b5c1440aedc5010f687048d9103628 - sha256: 585940f09d87787f79f73ff5dff8eb2af8a67e5bec5eebf2f553cd26c840ba69 + md5: 2247aa245832ea47e8b971bef73d7094 + sha256: 81a7ffe7b7ca8718bc09476a258cd48754e1d4e1bd3b80a6fef41ffb71e3bfc8 category: main optional: false - name: pip - version: 25.0.1 + version: '25.1' manager: conda platform: win-64 dependencies: 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://repo.prefix.dev/conda-forge/noarch/pip-25.1-pyh8b19718_0.conda hash: - md5: 79b5c1440aedc5010f687048d9103628 - sha256: 585940f09d87787f79f73ff5dff8eb2af8a67e5bec5eebf2f553cd26c840ba69 + md5: 2247aa245832ea47e8b971bef73d7094 + sha256: 81a7ffe7b7ca8718bc09476a258cd48754e1d4e1bd3b80a6fef41ffb71e3bfc8 category: main optional: false - name: platformdirs @@ -3023,7 +3078,7 @@ package: platform: linux-64 dependencies: python: '' - url: https://packages.prefix.dev/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 @@ -3035,7 +3090,7 @@ package: platform: win-64 dependencies: python: '' - url: https://packages.prefix.dev/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 @@ -3047,7 +3102,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://repo.prefix.dev/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_1.conda hash: md5: e9dcbce5f45f9ee500e728ae58b605b6 sha256: 122433fc5318816b8c69283aaf267c73d87aa2d09ce39f64c9805c9a3b264819 @@ -3059,7 +3114,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://repo.prefix.dev/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_1.conda hash: md5: e9dcbce5f45f9ee500e728ae58b605b6 sha256: 122433fc5318816b8c69283aaf267c73d87aa2d09ce39f64c9805c9a3b264819 @@ -3074,7 +3129,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://repo.prefix.dev/conda-forge/linux-64/psutil-7.0.0-py310ha75aee5_0.conda hash: md5: da7d592394ff9084a23f62a1186451a2 sha256: 31e46270c73cac2b24a7f3462ca03eb39f21cbfdb713b0d41eb61c00867eabe9 @@ -3090,7 +3145,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://repo.prefix.dev/conda-forge/win-64/psutil-7.0.0-py310ha8f682b_0.conda hash: md5: ec78bb694e0ea34958e8f479e723499e sha256: 61c016c40848168bc565ceb8f3a78ad2d9288ffbe4236bcec312ef554f1caef2 @@ -3103,7 +3158,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://repo.prefix.dev/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda hash: md5: b3c17d95b5a10c6e64a21fa17573e70e sha256: 9c88f8c64590e9567c6c80823f0328e58d3b1efb0e1c539c0315ceca764e0973 @@ -3117,7 +3172,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://repo.prefix.dev/conda-forge/win-64/pthread-stubs-0.4-h0e40799_1002.conda hash: md5: 3c8f2573569bb816483e5cf57efbbe29 sha256: 7e446bafb4d692792310ed022fe284e848c6a868c861655a92435af7368bae7b @@ -3129,7 +3184,7 @@ package: platform: linux-64 dependencies: python: '' - url: https://packages.prefix.dev/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 @@ -3141,7 +3196,7 @@ package: platform: win-64 dependencies: python: '' - url: https://packages.prefix.dev/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 @@ -3158,7 +3213,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://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.3-pyh3cfb1c2_0.conda hash: md5: 3c6f7f8ae9b9c177ad91ccc187912756 sha256: 89183785b09ebe9f9e65710057d7c41e9d21d4a9ad05e068850e18669655d5a8 @@ -3175,7 +3230,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://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.3-pyh3cfb1c2_0.conda hash: md5: 3c6f7f8ae9b9c177ad91ccc187912756 sha256: 89183785b09ebe9f9e65710057d7c41e9d21d4a9ad05e068850e18669655d5a8 @@ -3191,7 +3246,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://repo.prefix.dev/conda-forge/linux-64/pydantic-core-2.33.1-py310hc1293b2_0.conda hash: md5: 24460b8a58d6d491be4088ffb5343f4b sha256: 76992a2b50b98a43b66be401998b0b71f4bbb3cc0db456309263a604dddff086 @@ -3208,7 +3263,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://repo.prefix.dev/conda-forge/win-64/pydantic-core-2.33.1-py310h7c79e54_0.conda hash: md5: 8e00f6b62285b0731e32dac4da060dd6 sha256: 5d8ba398dd9ff5086b23d753ce2a9833894c99e5cea48861dbed55f4fa0c69aa @@ -3226,7 +3281,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://repo.prefix.dev/conda-forge/linux-64/pydiso-0.1.2-py310h69a6472_0.conda hash: md5: d4ab7c8858c0f0db75600239c09b38d5 sha256: bfaa4f0455b0e3c4f7c535c8e1a3bd4ad1c3a546807647490871f4c3a6106b20 @@ -3245,7 +3300,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://repo.prefix.dev/conda-forge/win-64/pydiso-0.1.2-py310h8f92c26_0.conda hash: md5: 8b436acfa40172914304ac42a6387351 sha256: d86c167db66ccc00a45736f27a485c394713f075a91a18eb02e3416b8e5b4fdc @@ -3257,7 +3312,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://repo.prefix.dev/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda hash: md5: 232fb4577b6687b2d503ef8e254270c9 sha256: 28a3e3161390a9d23bc02b4419448f8d27679d9e2c250e29849e37749c8de86b @@ -3269,7 +3324,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://repo.prefix.dev/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda hash: md5: 232fb4577b6687b2d503ef8e254270c9 sha256: 28a3e3161390a9d23bc02b4419448f8d27679d9e2c250e29849e37749c8de86b @@ -3290,7 +3345,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://repo.prefix.dev/conda-forge/noarch/pylint-3.3.6-pyh29332c3_0.conda hash: md5: 8242cc62822cc8a17f53d24d4efa75f4 sha256: 3e3e35b2cbb4b1ca3063fc2d6f44a85ac189e0935f00ed8fbe8e4713c0d00b99 @@ -3311,7 +3366,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://repo.prefix.dev/conda-forge/noarch/pylint-3.3.6-pyh29332c3_0.conda hash: md5: 8242cc62822cc8a17f53d24d4efa75f4 sha256: 3e3e35b2cbb4b1ca3063fc2d6f44a85ac189e0935f00ed8fbe8e4713c0d00b99 @@ -3327,7 +3382,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://repo.prefix.dev/conda-forge/noarch/pymatsolver-0.3.1-pyh48887ae_201.conda hash: md5: b6805e522702eabf2ebbd236490d5eed sha256: d49ad9b58b9eeae204a3677cafc389c00c7f0f830ef76f481ab9aaf3e0260bad @@ -3343,7 +3398,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://repo.prefix.dev/conda-forge/noarch/pymatsolver-0.3.1-pyh48887ae_201.conda hash: md5: b6805e522702eabf2ebbd236490d5eed sha256: d49ad9b58b9eeae204a3677cafc389c00c7f0f830ef76f481ab9aaf3e0260bad @@ -3355,7 +3410,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://repo.prefix.dev/conda-forge/noarch/pyparsing-3.2.3-pyhd8ed1ab_1.conda hash: md5: 513d3c262ee49b54a8fec85c5bc99764 sha256: b92afb79b52fcf395fd220b29e0dd3297610f2059afac45298d44e00fcbf23b6 @@ -3367,7 +3422,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://repo.prefix.dev/conda-forge/noarch/pyparsing-3.2.3-pyhd8ed1ab_1.conda hash: md5: 513d3c262ee49b54a8fec85c5bc99764 sha256: b92afb79b52fcf395fd220b29e0dd3297610f2059afac45298d44e00fcbf23b6 @@ -3380,7 +3435,7 @@ package: dependencies: __unix: '' python: '>=3.9' - url: https://packages.prefix.dev/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 @@ -3394,7 +3449,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://repo.prefix.dev/conda-forge/noarch/pysocks-1.7.1-pyh09c184e_7.conda hash: md5: e2fd202833c4a981ce8a65974fe4abd1 sha256: d016e04b0e12063fbee4a2d5fbb9b39a8d191b5a0042f0b8459188aedeabb0ca @@ -3412,7 +3467,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://repo.prefix.dev/conda-forge/noarch/pytest-8.3.5-pyhd8ed1ab_0.conda hash: md5: c3c9316209dec74a705a36797970c6be sha256: 963524de7340c56615583ba7b97a6beb20d5c56a59defb59724dc2a3105169c9 @@ -3430,7 +3485,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://repo.prefix.dev/conda-forge/noarch/pytest-8.3.5-pyhd8ed1ab_0.conda hash: md5: c3c9316209dec74a705a36797970c6be sha256: 963524de7340c56615583ba7b97a6beb20d5c56a59defb59724dc2a3105169c9 @@ -3445,7 +3500,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://repo.prefix.dev/conda-forge/noarch/pytest-cov-6.1.1-pyhd8ed1ab_0.conda hash: md5: 1e35d8f975bc0e984a19819aa91c440a sha256: 9961a1524f63d10bc29efdc52013ec06b0e95fb2619a250e250ff3618261d5cd @@ -3460,7 +3515,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://repo.prefix.dev/conda-forge/noarch/pytest-cov-6.1.1-pyhd8ed1ab_0.conda hash: md5: 1e35d8f975bc0e984a19819aa91c440a sha256: 9961a1524f63d10bc29efdc52013ec06b0e95fb2619a250e250ff3618261d5cd @@ -3489,7 +3544,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://repo.prefix.dev/conda-forge/linux-64/python-3.10.17-hd6af730_0_cpython.conda hash: md5: 7bb89638dae9ce1b8e051d0b721e83c2 sha256: 0ae32507817402bfad08fbf0f4a9b5ae26859d5390b98bc939da85fd0bd4239f @@ -3513,7 +3568,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://repo.prefix.dev/conda-forge/win-64/python-3.10.17-h8c5b53a_0_cpython.conda hash: md5: 0c59918f056ab2e9c7bb45970d32b2ea sha256: 071303a9bcbba4d79ab1ca61f34ec9f4ad65bc15d897828f5006ef9507094557 @@ -3526,7 +3581,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://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda hash: md5: 5ba79d7c71f03c678c8ead841f347d6e sha256: a50052536f1ef8516ed11a844f9413661829aa083304dc624c5925298d078d79 @@ -3539,7 +3594,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://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda hash: md5: 5ba79d7c71f03c678c8ead841f347d6e sha256: a50052536f1ef8516ed11a844f9413661829aa083304dc624c5925298d078d79 @@ -3557,7 +3612,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://repo.prefix.dev/conda-forge/linux-64/python-mumps-0.0.3-py310h6410a28_0.conda hash: md5: f7e3766b109232dadef0cc072e1e3cc6 sha256: bf869230e332833c9f9f1908731a859c3b39a612e74ae8f65b5338d67795c613 @@ -3576,7 +3631,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://repo.prefix.dev/conda-forge/win-64/python-mumps-0.0.3-py310hb64895d_0.conda hash: md5: 477083091731501c8bef2fd4733ec23f sha256: 1461a60b36aa7b2189ad3bd0ca9bb356d42ea2e54c8aaf122826e9f8bd33735c @@ -3587,10 +3642,10 @@ 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://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 @@ -3598,10 +3653,10 @@ 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://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 @@ -3610,7 +3665,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://repo.prefix.dev/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda hash: md5: bc8e3267d44011051f2eb14d22fb0960 sha256: 8d2a8bf110cc1fc3df6904091dead158ba3e614d8402a83e51ed3a8aa93cdeb0 @@ -3622,7 +3677,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://repo.prefix.dev/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda hash: md5: bc8e3267d44011051f2eb14d22fb0960 sha256: 8d2a8bf110cc1fc3df6904091dead158ba3e614d8402a83e51ed3a8aa93cdeb0 @@ -3638,7 +3693,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://repo.prefix.dev/conda-forge/linux-64/pyyaml-6.0.2-py310h89163eb_2.conda hash: md5: fd343408e64cf1e273ab7c710da374db sha256: 5fba7f5babcac872c72f6509c25331bcfac4f8f5031f0102530a41b41336fce6 @@ -3655,7 +3710,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://repo.prefix.dev/conda-forge/win-64/pyyaml-6.0.2-py310h38315fa_2.conda hash: md5: 9986c3731bb820db0830dd0825c26cf9 sha256: 49dd492bdf2c479118ca9d61a59ce259594853d367a1a0548926f41a6e734724 @@ -3668,7 +3723,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://repo.prefix.dev/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda hash: md5: 283b96675859b20a825f8fa30f311446 sha256: 2d6d0c026902561ed77cd646b5021aef2d4db22e57a5b0178dfc669231e06d2c @@ -3683,7 +3738,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://repo.prefix.dev/conda-forge/noarch/readthedocs-sphinx-ext-2.2.5-pyhd8ed1ab_1.conda hash: md5: 42840a95562a02bef45e7b7fb24dcba4 sha256: e391356581919077b1639ebd13f4cbb0773acfd5710cfe4188921e8a0387dc6b @@ -3698,7 +3753,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://repo.prefix.dev/conda-forge/noarch/readthedocs-sphinx-ext-2.2.5-pyhd8ed1ab_1.conda hash: md5: 42840a95562a02bef45e7b7fb24dcba4 sha256: e391356581919077b1639ebd13f4cbb0773acfd5710cfe4188921e8a0387dc6b @@ -3714,7 +3769,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://repo.prefix.dev/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda hash: md5: a9b9368f3701a417eac9edbcae7cb737 sha256: d701ca1136197aa121bbbe0e8c18db6b5c94acbd041c2b43c70e5ae104e1d8ad @@ -3730,7 +3785,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://repo.prefix.dev/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda hash: md5: a9b9368f3701a417eac9edbcae7cb737 sha256: d701ca1136197aa121bbbe0e8c18db6b5c94acbd041c2b43c70e5ae104e1d8ad @@ -3744,7 +3799,7 @@ package: libspatialindex: '>=2.0.0,<2.0.1.0a0' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://packages.prefix.dev/conda-forge/linux-64/rtree-1.2.0-py310haf1e407_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/rtree-1.2.0-py310haf1e407_1.conda hash: md5: aab35e5bbaac5bc7057effffe2b55df8 sha256: 6eb76990124941e5303eb739b2ab8684112f829b6bfafc81b43bd722c3c91616 @@ -3758,7 +3813,7 @@ package: libspatialindex: '>=2.0.0,<2.0.1.0a0' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://packages.prefix.dev/conda-forge/win-64/rtree-1.2.0-py310h08d5ad2_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/rtree-1.2.0-py310h08d5ad2_1.conda hash: md5: ffc97287567416c807a69aeeee794678 sha256: 5c1dbc4390adc6a75e2c648761b9e5e2a70ec1fab4e4055fed64bb3852604ace @@ -3778,7 +3833,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://repo.prefix.dev/conda-forge/linux-64/scikit-learn-1.4.2-py310h981052a_1.conda hash: md5: 672f0238a945f1c98fe97b147c8a040a sha256: b3718226723c94f5a93f417acb29ad82b0520acf945a06ae90e0b7ed076191a7 @@ -3798,7 +3853,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://repo.prefix.dev/conda-forge/win-64/scikit-learn-1.4.2-py310hf2a6c47_1.conda hash: md5: 9142e7e901c0f6e76541b523d480043e sha256: 24e9f3db0a2f477cbe20d1c98b48edd0d768af21dd7e6c3553e286f01deabfe5 @@ -3820,7 +3875,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://repo.prefix.dev/conda-forge/linux-64/scipy-1.14.1-py310hfcf56fc_2.conda hash: md5: b5d548b2a7cf8d0c74fc6c4bf42d1ca5 sha256: a15008a51fd6b6dcaeb5563869ff0a8a015f1e0a8634a9d89d2c189eefbd7182 @@ -3840,34 +3895,34 @@ 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://repo.prefix.dev/conda-forge/win-64/scipy-1.14.1-py310hbd0dde3_2.conda hash: md5: 72a2a7c264a8b48d113111756c2bbbb4 sha256: 761829fa9c91fdffff0ba5a1f56f7d4cc00bec71ca7fa06859dc7f5a98117273 category: main optional: false - name: setuptools - version: 78.1.0 + version: 80.1.0 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/setuptools-78.1.0-pyhff2d567_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/setuptools-80.1.0-pyhff2d567_0.conda hash: - md5: a42da9837e46c53494df0044c3eb1f53 - sha256: d4c74d2140f2fbc72fe5320cbd65f3fd1d1f7832ab4d7825c37c38ab82440ae2 + md5: f6f72d0837c79eaec77661be43e8a691 + sha256: 777d34ed359cedd5a5004c930077c101bb3b70e5fbb04d29da5058d75b0ba487 category: main optional: false - name: setuptools - version: 78.1.0 + version: 80.1.0 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/setuptools-78.1.0-pyhff2d567_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/setuptools-80.1.0-pyhff2d567_0.conda hash: - md5: a42da9837e46c53494df0044c3eb1f53 - sha256: d4c74d2140f2fbc72fe5320cbd65f3fd1d1f7832ab4d7825c37c38ab82440ae2 + md5: f6f72d0837c79eaec77661be43e8a691 + sha256: 777d34ed359cedd5a5004c930077c101bb3b70e5fbb04d29da5058d75b0ba487 category: main optional: false - name: six @@ -3876,7 +3931,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://repo.prefix.dev/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda hash: md5: a451d576819089b0d672f18768be0f65 sha256: 41db0180680cc67c3fa76544ffd48d6a5679d96f4b71d7498a759e94edc9a2db @@ -3888,7 +3943,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://repo.prefix.dev/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda hash: md5: a451d576819089b0d672f18768be0f65 sha256: 41db0180680cc67c3fa76544ffd48d6a5679d96f4b71d7498a759e94edc9a2db @@ -3900,7 +3955,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://repo.prefix.dev/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 4d22a9315e78c6827f806065957d566e sha256: a0fd916633252d99efb6223b1050202841fa8d2d53dacca564b0ed77249d3228 @@ -3912,7 +3967,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://repo.prefix.dev/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 4d22a9315e78c6827f806065957d566e sha256: a0fd916633252d99efb6223b1050202841fa8d2d53dacca564b0ed77249d3228 @@ -3924,7 +3979,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://repo.prefix.dev/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_1.conda hash: md5: 0401a17ae845fa72c7210e206ec5647d sha256: d1e3e06b5cf26093047e63c8cc77b70d970411c5cbc0cb1fad461a8a8df599f7 @@ -3936,7 +3991,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://repo.prefix.dev/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_1.conda hash: md5: 0401a17ae845fa72c7210e206ec5647d sha256: d1e3e06b5cf26093047e63c8cc77b70d970411c5cbc0cb1fad461a8a8df599f7 @@ -3965,7 +4020,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://repo.prefix.dev/conda-forge/noarch/sphinx-5.3.0-pyhd8ed1ab_0.tar.bz2 hash: md5: f9e1fcfe235d655900bfeb6aee426472 sha256: f11fd5fb4ae2c65f41ae86e7408e3ab44844898d928264aa9e89929fffc685c8 @@ -3994,7 +4049,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://repo.prefix.dev/conda-forge/noarch/sphinx-5.3.0-pyhd8ed1ab_0.tar.bz2 hash: md5: f9e1fcfe235d655900bfeb6aee426472 sha256: f11fd5fb4ae2c65f41ae86e7408e3ab44844898d928264aa9e89929fffc685c8 @@ -4007,7 +4062,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 16e3f039c0aa6446513e94ab18a8784b sha256: d7433a344a9ad32a680b881c81b0034bc61618d12c39dd6e3309abeffa9577ba @@ -4020,7 +4075,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 16e3f039c0aa6446513e94ab18a8784b sha256: d7433a344a9ad32a680b881c81b0034bc61618d12c39dd6e3309abeffa9577ba @@ -4033,7 +4088,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 910f28a05c178feba832f842155cbfff sha256: 55d5076005d20b84b20bee7844e686b7e60eb9f683af04492e598a622b12d53d @@ -4046,7 +4101,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 910f28a05c178feba832f842155cbfff sha256: 55d5076005d20b84b20bee7844e686b7e60eb9f683af04492e598a622b12d53d @@ -4059,7 +4114,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_1.conda hash: md5: e9fb3fe8a5b758b4aff187d434f94f03 sha256: c1492c0262ccf16694bdcd3bb62aa4627878ea8782d5cd3876614ffeb62b3996 @@ -4072,7 +4127,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_1.conda hash: md5: e9fb3fe8a5b758b4aff187d434f94f03 sha256: c1492c0262ccf16694bdcd3bb62aa4627878ea8782d5cd3876614ffeb62b3996 @@ -4084,7 +4139,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_1.conda hash: md5: fa839b5ff59e192f411ccc7dae6588bb sha256: 578bef5ec630e5b2b8810d898bbbf79b9ae66d49b7938bcc3efc364e679f2a62 @@ -4096,7 +4151,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_1.conda hash: md5: fa839b5ff59e192f411ccc7dae6588bb sha256: 578bef5ec630e5b2b8810d898bbbf79b9ae66d49b7938bcc3efc364e679f2a62 @@ -4109,7 +4164,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 00534ebcc0375929b45c3039b5ba7636 sha256: c664fefae4acdb5fae973bdde25836faf451f41d04342b64a358f9a7753c92ca @@ -4122,7 +4177,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 00534ebcc0375929b45c3039b5ba7636 sha256: c664fefae4acdb5fae973bdde25836faf451f41d04342b64a358f9a7753c92ca @@ -4135,7 +4190,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda hash: md5: 3bc61f7161d28137797e038263c04c54 sha256: 64d89ecc0264347486971a94487cb8d7c65bfc0176750cf7502b8a272f4ab557 @@ -4148,7 +4203,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda hash: md5: 3bc61f7161d28137797e038263c04c54 sha256: 64d89ecc0264347486971a94487cb8d7c65bfc0176750cf7502b8a272f4ab557 @@ -4163,7 +4218,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://repo.prefix.dev/conda-forge/linux-64/tbb-2021.13.0-hceb3a55_1.conda hash: md5: ba7726b8df7b9d34ea80e82b097a4893 sha256: 65463732129899770d54b1fbf30e1bb82fdebda9d7553caf08d23db4590cd691 @@ -4178,7 +4233,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://repo.prefix.dev/conda-forge/win-64/tbb-2021.13.0-h62715c5_1.conda hash: md5: 9190dd0a23d925f7602f9628b3aed511 sha256: 03cc5442046485b03dd1120d0f49d35a7e522930a2ab82f275e938e17b07b302 @@ -4190,7 +4245,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://repo.prefix.dev/conda-forge/noarch/tblib-3.1.0-pyhd8ed1ab_0.conda hash: md5: a15c62b8a306b8978f094f76da2f903f sha256: a83c83f5e622a2f34fb1d179c55c3ff912429cd0a54f9f3190ae44a0fdba2ad2 @@ -4202,7 +4257,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://repo.prefix.dev/conda-forge/noarch/tblib-3.1.0-pyhd8ed1ab_0.conda hash: md5: a15c62b8a306b8978f094f76da2f903f sha256: a83c83f5e622a2f34fb1d179c55c3ff912429cd0a54f9f3190ae44a0fdba2ad2 @@ -4214,7 +4269,7 @@ package: platform: linux-64 dependencies: python: '>=3.8' - url: https://packages.prefix.dev/conda-forge/noarch/threadpoolctl-3.3.0-pyhc1e730c_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/threadpoolctl-3.3.0-pyhc1e730c_0.conda hash: md5: 698d2d2b621640bddb9191f132967c9f sha256: 5ba8bd3f2d49b3b860eb4481ca9505c57d4427212eb12cadd2b351309d5c28e6 @@ -4226,7 +4281,7 @@ package: platform: win-64 dependencies: python: '>=3.8' - url: https://packages.prefix.dev/conda-forge/noarch/threadpoolctl-3.3.0-pyhc1e730c_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/threadpoolctl-3.3.0-pyhc1e730c_0.conda hash: md5: 698d2d2b621640bddb9191f132967c9f sha256: 5ba8bd3f2d49b3b860eb4481ca9505c57d4427212eb12cadd2b351309d5c28e6 @@ -4239,7 +4294,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://repo.prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda hash: md5: d453b98d9c83e71da0741bb0ff4d76bc sha256: e0569c9caa68bf476bead1bed3d79650bb080b532c64a4af7d8ca286c08dea4e @@ -4253,7 +4308,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://repo.prefix.dev/conda-forge/win-64/tk-8.6.13-h5226925_1.conda hash: md5: fc048363eb8f03cd1737600a5d08aafe sha256: 2c4e914f521ccb2718946645108c9bd3fc3216ba69aea20c2c3cedbd8db32bb1 @@ -4265,7 +4320,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://repo.prefix.dev/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_1.conda hash: md5: b0dd904de08b7db706167240bf37b164 sha256: 34f3a83384ac3ac30aefd1309e69498d8a4aa0bf2d1f21c645f79b180e378938 @@ -4277,7 +4332,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://repo.prefix.dev/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_1.conda hash: md5: b0dd904de08b7db706167240bf37b164 sha256: 34f3a83384ac3ac30aefd1309e69498d8a4aa0bf2d1f21c645f79b180e378938 @@ -4289,7 +4344,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://repo.prefix.dev/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda hash: md5: ac944244f1fed2eb49bae07193ae8215 sha256: 18636339a79656962723077df9a56c0ac7b8a864329eb8f847ee3d38495b863e @@ -4301,7 +4356,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://repo.prefix.dev/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda hash: md5: ac944244f1fed2eb49bae07193ae8215 sha256: 18636339a79656962723077df9a56c0ac7b8a864329eb8f847ee3d38495b863e @@ -4313,7 +4368,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://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.2-pyha770c72_1.conda hash: md5: 1d9ab4fc875c52db83f9c9b40af4e2c8 sha256: 986fae65f5568e95dbf858d08d77a0f9cca031345a98550f1d4b51d36d8811e2 @@ -4325,7 +4380,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://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.2-pyha770c72_1.conda hash: md5: 1d9ab4fc875c52db83f9c9b40af4e2c8 sha256: 986fae65f5568e95dbf858d08d77a0f9cca031345a98550f1d4b51d36d8811e2 @@ -4337,7 +4392,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://repo.prefix.dev/conda-forge/noarch/toolz-1.0.0-pyhd8ed1ab_1.conda hash: md5: 40d0ed782a8aaa16ef248e68c06c168d sha256: eda38f423c33c2eaeca49ed946a8d3bf466cc3364970e083a65eb2fd85258d87 @@ -4349,7 +4404,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://repo.prefix.dev/conda-forge/noarch/toolz-1.0.0-pyhd8ed1ab_1.conda hash: md5: 40d0ed782a8aaa16ef248e68c06c168d sha256: eda38f423c33c2eaeca49ed946a8d3bf466cc3364970e083a65eb2fd85258d87 @@ -4364,7 +4419,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://repo.prefix.dev/conda-forge/linux-64/tornado-6.4.2-py310ha75aee5_0.conda hash: md5: 166d59aab40b9c607b4cc21c03924e9d sha256: 9c2b86d4e58c8b0e7d13a7f4c440f34e2201bae9cfc1d7e1d30a5bc7ffb1d4c8 @@ -4380,7 +4435,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://repo.prefix.dev/conda-forge/win-64/tornado-6.4.2-py310ha8f682b_0.conda hash: md5: e6819d3a0cae0f1b1838875f858421d1 sha256: 2e5671d0db03961692b3390778ce6aba40702bd57584fa60badf4baa7614679b @@ -4393,7 +4448,7 @@ package: dependencies: colorama: '' python: '>=3.9' - url: https://packages.prefix.dev/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 @@ -4406,7 +4461,7 @@ package: dependencies: colorama: '' python: '>=3.9' - url: https://packages.prefix.dev/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 @@ -4419,7 +4474,7 @@ package: dependencies: numpy: '' python: '>=2.7' - url: https://packages.prefix.dev/conda-forge/noarch/trimesh-4.1.8-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/trimesh-4.1.8-pyhd8ed1ab_0.conda hash: md5: 78302527eb6c9d18b07a91e6a72ef957 sha256: 021110c37eca2f0fca85ba6ac4576c509d23079758f63942e2f9a6954282f2ce @@ -4432,7 +4487,7 @@ package: dependencies: numpy: '' python: '>=2.7' - url: https://packages.prefix.dev/conda-forge/noarch/trimesh-4.1.8-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/trimesh-4.1.8-pyhd8ed1ab_0.conda hash: md5: 78302527eb6c9d18b07a91e6a72ef957 sha256: 021110c37eca2f0fca85ba6ac4576c509d23079758f63942e2f9a6954282f2ce @@ -4444,7 +4499,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://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.13.2-h0e9735f_0.conda hash: md5: 568ed1300869dca0ba09fb750cda5dbb sha256: 4865fce0897d3cb0ffc8998219157a8325f6011c136e6fd740a9a6b169419296 @@ -4456,7 +4511,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://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.13.2-h0e9735f_0.conda hash: md5: 568ed1300869dca0ba09fb750cda5dbb sha256: 4865fce0897d3cb0ffc8998219157a8325f6011c136e6fd740a9a6b169419296 @@ -4469,7 +4524,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://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.0-pyhd8ed1ab_0.conda hash: md5: c5c76894b6b7bacc888ba25753bc8677 sha256: 172f971d70e1dbb978f6061d3f72be463d0f629155338603450d8ffe87cbf89d @@ -4482,7 +4537,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://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.0-pyhd8ed1ab_0.conda hash: md5: c5c76894b6b7bacc888ba25753bc8677 sha256: 172f971d70e1dbb978f6061d3f72be463d0f629155338603450d8ffe87cbf89d @@ -4494,7 +4549,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://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.13.2-pyh29332c3_0.conda hash: md5: 83fc6ae00127671e301c9f44254c31b8 sha256: a8aaf351e6461de0d5d47e4911257e25eec2fa409d71f3b643bb2f748bde1c08 @@ -4506,7 +4561,7 @@ package: platform: win-64 dependencies: python: '' - url: https://packages.prefix.dev/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 @@ -4517,7 +4572,7 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://packages.prefix.dev/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 @@ -4528,7 +4583,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://packages.prefix.dev/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 @@ -4539,7 +4594,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://repo.prefix.dev/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_1.conda hash: md5: 6797b005cd0f439c4c5c9ac565783700 sha256: db8dead3dd30fb1a032737554ce91e2819b43496a0db09927edf01c32b577450 @@ -4554,7 +4609,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://repo.prefix.dev/conda-forge/linux-64/unicodedata2-16.0.0-py310ha75aee5_0.conda hash: md5: 1d7a4b9202cdd10d56ecdd7f6c347190 sha256: 0468c864c60190fdb94b4705bca618e77589d5cb9fa096de47caccd1f22b0b54 @@ -4570,7 +4625,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://repo.prefix.dev/conda-forge/win-64/unicodedata2-16.0.0-py310ha8f682b_0.conda hash: md5: b28aead44c6e19a1fbba7752aa242b34 sha256: b59837c68d8edcca3c86c205a8c5dec63356029e48d55ed88c5483105d73ac0c @@ -4586,7 +4641,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://repo.prefix.dev/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda hash: md5: c1e349028e0052c4eea844e94f773065 sha256: a25403b76f7f03ca1a906e1ef0f88521edded991b9897e7fed56a3e334b3db8c @@ -4602,7 +4657,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://repo.prefix.dev/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda hash: md5: c1e349028e0052c4eea844e94f773065 sha256: a25403b76f7f03ca1a906e1ef0f88521edded991b9897e7fed56a3e334b3db8c @@ -4614,7 +4669,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://repo.prefix.dev/conda-forge/win-64/vc-14.3-h2b53caa_26.conda hash: md5: d3f0381e38093bde620a8d85f266ae55 sha256: 7a685b5c37e9713fa314a0d26b8b1d7a2e6de5ab758698199b5d5b6dba2e3ce1 @@ -4626,7 +4681,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://repo.prefix.dev/conda-forge/win-64/vc14_runtime-14.42.34438-hfd919c2_26.conda hash: md5: 91651a36d31aa20c7ba36299fb7068f4 sha256: 30dcb71bb166e351aadbdc18f1718757c32cdaa0e1e5d9368469ee44f6bf4709 @@ -4638,7 +4693,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://repo.prefix.dev/conda-forge/win-64/vs2015_runtime-14.42.34438-h7142326_26.conda hash: md5: 3357e4383dbce31eed332008ede242ab sha256: 432f2937206f1ad4a77e39f84fabc1ce7d2472b669836fb72bd2bfd19a2defc9 @@ -4650,7 +4705,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://repo.prefix.dev/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda hash: md5: 75cb7132eb58d97896e173ef12ac9986 sha256: 1b34021e815ff89a4d902d879c3bd2040bc1bd6169b32e9427497fa05c55f1ce @@ -4662,7 +4717,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://repo.prefix.dev/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda hash: md5: 75cb7132eb58d97896e173ef12ac9986 sha256: 1b34021e815ff89a4d902d879c3bd2040bc1bd6169b32e9427497fa05c55f1ce @@ -4675,7 +4730,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://repo.prefix.dev/conda-forge/noarch/win_inet_pton-1.1.0-pyh7428d3b_8.conda hash: md5: 46e441ba871f524e2b067929da3051c2 sha256: 93807369ab91f230cf9e6e2a237eaa812492fe00face5b38068735858fba954f @@ -4688,7 +4743,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://repo.prefix.dev/conda-forge/linux-64/xorg-libxau-1.0.12-hb9d3cd8_0.conda hash: md5: f6ebe2cb3f82ba6c057dde5d9debe4f7 sha256: ed10c9283974d311855ae08a16dfd7e56241fac632aec3b92e3cfe73cff31038 @@ -4702,7 +4757,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://repo.prefix.dev/conda-forge/win-64/xorg-libxau-1.0.12-h0e40799_0.conda hash: md5: 2ffbfae4548098297c033228256eb96e sha256: 047836241b2712aab1e29474a6f728647bff3ab57de2806b0bb0a6cf9a2d2634 @@ -4715,7 +4770,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://repo.prefix.dev/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb9d3cd8_0.conda hash: md5: 8035c64cb77ed555e3f150b7b3972480 sha256: 6b250f3e59db07c2514057944a3ea2044d6a8cdde8a47b6497c254520fade1ee @@ -4729,7 +4784,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://repo.prefix.dev/conda-forge/win-64/xorg-libxdmcp-1.1.5-h0e40799_0.conda hash: md5: 8393c0f7e7870b4eb45553326f81f0ff sha256: 9075f98dcaa8e9957e4a3d9d30db05c7578a536950a31c200854c5c34e1edb2c @@ -4741,7 +4796,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://repo.prefix.dev/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2 hash: md5: 4cb3ad778ec2d5a7acbdf254eb1c42ae sha256: a4e34c710eeb26945bdbdaba82d3d74f60a78f54a874ec10d373811a5d217535 @@ -4754,7 +4809,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://repo.prefix.dev/conda-forge/win-64/yaml-0.2.5-h8ffe710_2.tar.bz2 hash: md5: adbfb9f45d1004a26763652246a33764 sha256: 4e2246383003acbad9682c7c63178e2e715ad0eb84f03a8df1fbfba455dfedc5 @@ -4770,7 +4825,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://repo.prefix.dev/conda-forge/noarch/zarr-2.14.2-pyhd8ed1ab_0.conda hash: md5: 0c5776fe65a12a421d7ddf90411a6c3f sha256: 0f029f7efea00b8258782b5e68989fc140c227e6d9edd231d46fdd954b39d23f @@ -4786,7 +4841,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://repo.prefix.dev/conda-forge/noarch/zarr-2.14.2-pyhd8ed1ab_0.conda hash: md5: 0c5776fe65a12a421d7ddf90411a6c3f sha256: 0f029f7efea00b8258782b5e68989fc140c227e6d9edd231d46fdd954b39d23f @@ -4798,7 +4853,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://repo.prefix.dev/conda-forge/noarch/zict-3.0.0-pyhd8ed1ab_1.conda hash: md5: e52c2ef711ccf31bb7f70ca87d144b9e sha256: 5488542dceeb9f2874e726646548ecc5608060934d6f9ceaa7c6a48c61f9cc8d @@ -4810,7 +4865,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://repo.prefix.dev/conda-forge/noarch/zict-3.0.0-pyhd8ed1ab_1.conda hash: md5: e52c2ef711ccf31bb7f70ca87d144b9e sha256: 5488542dceeb9f2874e726646548ecc5608060934d6f9ceaa7c6a48c61f9cc8d @@ -4822,7 +4877,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://repo.prefix.dev/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda hash: md5: 0c3cc595284c5e8f0f9900a9b228a332 sha256: 567c04f124525c97a096b65769834b7acb047db24b15a56888a322bf3966c3e1 @@ -4834,7 +4889,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://repo.prefix.dev/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda hash: md5: 0c3cc595284c5e8f0f9900a9b228a332 sha256: 567c04f124525c97a096b65769834b7acb047db24b15a56888a322bf3966c3e1 @@ -4850,10 +4905,10 @@ 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://repo.prefix.dev/conda-forge/linux-64/zstandard-0.23.0-py310ha75aee5_2.conda hash: - md5: 0316e8d0e00c00631a6de89207db5b09 - sha256: 96f96336f76443f5efb05f8a7232cc62f8fff969c27d03aa4aae181745f6f961 + md5: f9254b5b0193982416b91edcb4b2676f + sha256: f9b76c2f8a0f96e656843553272e547170182f5b8aba1a6bcba28f7611d87c23 category: main optional: false - name: zstandard @@ -4867,10 +4922,10 @@ 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://repo.prefix.dev/conda-forge/win-64/zstandard-0.23.0-py310ha8f682b_2.conda hash: - md5: 831d9f1bfdfc3616b4c0f91cdb36ed38 - sha256: 6bc275161380985ba7effabf53534e8b97479d0318329f345b2e936bd2e4dbe6 + md5: fdc36a989175bb166109e400c106defa + sha256: 76bf75ef83e952ef4974e0e6656a7a90b4c4c1c22cea984cb9fc29aca05e5999 category: main optional: false - name: zstd @@ -4882,7 +4937,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://repo.prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb8e6e7a_2.conda hash: md5: 6432cb5d4ac0046c3ac0a8a0f95842f9 sha256: a4166e3d8ff4e35932510aaff7aa90772f84b4d07e9f6f83c614cba7ceefe0eb @@ -4897,7 +4952,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/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 @@ -4908,7 +4963,7 @@ package: manager: pip platform: linux-64 dependencies: - geoh5py: 0.12.0-alpha.1 + geoh5py: 0.12.0a1 numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' @@ -4925,7 +4980,7 @@ package: manager: pip platform: win-64 dependencies: - geoh5py: 0.12.0-alpha.1 + geoh5py: 0.12.0a1 numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' @@ -4938,7 +4993,7 @@ package: category: main optional: false - name: geoh5py - version: 0.12.0-alpha.1 + version: 0.12.0a1 manager: pip platform: linux-64 dependencies: @@ -4946,16 +5001,16 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@4b9756b5c9e98c709a2b23e2e558edb29e5f3416 + url: git+https://github.com/MiraGeoscience/geoh5py.git@4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 hash: - sha256: 4b9756b5c9e98c709a2b23e2e558edb29e5f3416 + sha256: 4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@4b9756b5c9e98c709a2b23e2e558edb29e5f3416 + url: git+https://github.com/MiraGeoscience/geoh5py.git@4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 category: main optional: false - name: geoh5py - version: 0.12.0-alpha.1 + version: 0.12.0a1 manager: pip platform: win-64 dependencies: @@ -4963,16 +5018,16 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@4b9756b5c9e98c709a2b23e2e558edb29e5f3416 + url: git+https://github.com/MiraGeoscience/geoh5py.git@4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 hash: - sha256: 4b9756b5c9e98c709a2b23e2e558edb29e5f3416 + sha256: 4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@4b9756b5c9e98c709a2b23e2e558edb29e5f3416 + url: git+https://github.com/MiraGeoscience/geoh5py.git@4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 category: main optional: false - name: mira-simpeg - version: 0.23.0.2a1.dev0 + version: 0.23.0.1a3.dev4+g24027d81b manager: pip platform: linux-64 dependencies: @@ -4987,16 +5042,16 @@ package: pymatsolver: '>=0.3' scipy: '>=1.8' zarr: '*' - url: git+https://github.com/MiraGeoscience/simpeg.git@8c73f0647ae51f1ca7d4af6ded7f2e63db52a428 + url: git+https://github.com/MiraGeoscience/simpeg.git@24027d81b65df99d5f582acc4497ed33df8a3396 hash: - sha256: 8c73f0647ae51f1ca7d4af6ded7f2e63db52a428 + sha256: 24027d81b65df99d5f582acc4497ed33df8a3396 source: type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@8c73f0647ae51f1ca7d4af6ded7f2e63db52a428 + url: git+https://github.com/MiraGeoscience/simpeg.git@24027d81b65df99d5f582acc4497ed33df8a3396 category: main optional: false - name: mira-simpeg - version: 0.23.0.2a1.dev0 + version: 0.23.0.1a3.dev4+g24027d81b manager: pip platform: win-64 dependencies: @@ -5011,12 +5066,12 @@ package: pymatsolver: '>=0.3' scipy: '>=1.8' zarr: '*' - url: git+https://github.com/MiraGeoscience/simpeg.git@8c73f0647ae51f1ca7d4af6ded7f2e63db52a428 + url: git+https://github.com/MiraGeoscience/simpeg.git@24027d81b65df99d5f582acc4497ed33df8a3396 hash: - sha256: 8c73f0647ae51f1ca7d4af6ded7f2e63db52a428 + sha256: 24027d81b65df99d5f582acc4497ed33df8a3396 source: type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@8c73f0647ae51f1ca7d4af6ded7f2e63db52a428 + url: git+https://github.com/MiraGeoscience/simpeg.git@24027d81b65df99d5f582acc4497ed33df8a3396 category: main optional: false - name: octree-creation-app @@ -5026,7 +5081,7 @@ package: dependencies: discretize: ==0.11.* geoapps-utils: 0.6.0-alpha.1 - geoh5py: 0.12.0-alpha.1 + geoh5py: 0.12.0a1 numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' @@ -5045,7 +5100,7 @@ package: dependencies: discretize: ==0.11.* geoapps-utils: 0.6.0-alpha.1 - geoh5py: 0.12.0-alpha.1 + geoh5py: 0.12.0a1 numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' @@ -5062,7 +5117,7 @@ package: manager: pip platform: linux-64 dependencies: - geoh5py: 0.12.0-alpha.1 + geoh5py: 0.12.0a1 numpy: '>=1.26.0,<1.27.0' url: git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 hash: @@ -5077,7 +5132,7 @@ package: manager: pip platform: win-64 dependencies: - geoh5py: 0.12.0-alpha.1 + geoh5py: 0.12.0a1 numpy: '>=1.26.0,<1.27.0' url: git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 hash: @@ -5092,12 +5147,12 @@ package: manager: pip platform: linux-64 dependencies: - dask-core: ==2025.3.* + dask: '>=2025.3,<2025.4.dev' discretize: ==0.11.* - distributed: ==2025.3.* + distributed: '>=2025.3,<2025.4.dev' geoapps-utils: 0.6.0-alpha.1 - geoh5py: 0.12.0-alpha.1 - mira-simpeg: 0.23.0.2a1.dev0 + geoh5py: 0.12.0a1 + mira-simpeg: 0.23.0.1a3.dev4+g24027d81b numpy: '>=1.26.0,<1.27.0' octree-creation-app: 0.4.0-alpha.1 param-sweeps: 0.3.0-alpha.1 @@ -5107,12 +5162,12 @@ package: scikit-learn: '>=1.4.0,<1.5.0' scipy: '>=1.14.0,<1.15.0' tqdm: '>=4.66.1,<5.0.0' - url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@7544763d9d873237256b963c32db54ce33c329c7 + url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@2d510ad712a20663dc0abb9afbead41537d10d91 hash: - sha256: 7544763d9d873237256b963c32db54ce33c329c7 + sha256: 2d510ad712a20663dc0abb9afbead41537d10d91 source: type: url - url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@7544763d9d873237256b963c32db54ce33c329c7 + url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@2d510ad712a20663dc0abb9afbead41537d10d91 category: main optional: false - name: simpeg-drivers @@ -5120,12 +5175,12 @@ package: manager: pip platform: win-64 dependencies: - dask-core: ==2025.3.* + dask: '>=2025.3,<2025.4.dev' discretize: ==0.11.* - distributed: ==2025.3.* + distributed: '>=2025.3,<2025.4.dev' geoapps-utils: 0.6.0-alpha.1 - geoh5py: 0.12.0-alpha.1 - mira-simpeg: 0.23.0.2a1.dev0 + geoh5py: 0.12.0a1 + mira-simpeg: 0.23.0.1a3.dev4+g24027d81b numpy: '>=1.26.0,<1.27.0' octree-creation-app: 0.4.0-alpha.1 param-sweeps: 0.3.0-alpha.1 @@ -5135,11 +5190,11 @@ package: scikit-learn: '>=1.4.0,<1.5.0' scipy: '>=1.14.0,<1.15.0' tqdm: '>=4.66.1,<5.0.0' - url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@7544763d9d873237256b963c32db54ce33c329c7 + url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@2d510ad712a20663dc0abb9afbead41537d10d91 hash: - sha256: 7544763d9d873237256b963c32db54ce33c329c7 + sha256: 2d510ad712a20663dc0abb9afbead41537d10d91 source: type: url - url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@7544763d9d873237256b963c32db54ce33c329c7 + url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@2d510ad712a20663dc0abb9afbead41537d10d91 category: main optional: false diff --git a/py-3.11.conda-lock.yml b/py-3.11.conda-lock.yml index e763d68..90dc205 100644 --- a/py-3.11.conda-lock.yml +++ b/py-3.11.conda-lock.yml @@ -35,7 +35,7 @@ package: platform: linux-64 dependencies: llvm-openmp: '>=9.0.1' - url: https://packages.prefix.dev/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://packages.prefix.dev/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 @@ -60,7 +60,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://repo.prefix.dev/conda-forge/noarch/alabaster-0.7.16-pyhd8ed1ab_0.conda hash: md5: def531a3ac77b7fb8c21d17bb5d0badb sha256: fd39ad2fabec1569bbb0dfdae34ab6ce7de6ec09dcec8638f83dad0373594069 @@ -72,7 +72,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://repo.prefix.dev/conda-forge/noarch/alabaster-0.7.16-pyhd8ed1ab_0.conda hash: md5: def531a3ac77b7fb8c21d17bb5d0badb sha256: fd39ad2fabec1569bbb0dfdae34ab6ce7de6ec09dcec8638f83dad0373594069 @@ -85,7 +85,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://repo.prefix.dev/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda hash: md5: 2934f256a8acfe48f6ebb4fce6cde29c sha256: e0ea1ba78fbb64f17062601edda82097fcf815012cf52bb704150a2668110d48 @@ -98,7 +98,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://repo.prefix.dev/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda hash: md5: 2934f256a8acfe48f6ebb4fce6cde29c sha256: e0ea1ba78fbb64f17062601edda82097fcf815012cf52bb704150a2668110d48 @@ -110,7 +110,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://repo.prefix.dev/conda-forge/noarch/asciitree-0.3.3-py_2.tar.bz2 hash: md5: c0481c9de49f040272556e2cedf42816 sha256: b3e9369529fe7d721b66f18680ff4b561e20dbf6507e209e1f60eac277c97560 @@ -122,7 +122,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://repo.prefix.dev/conda-forge/noarch/asciitree-0.3.3-py_2.tar.bz2 hash: md5: c0481c9de49f040272556e2cedf42816 sha256: b3e9369529fe7d721b66f18680ff4b561e20dbf6507e209e1f60eac277c97560 @@ -135,7 +135,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://repo.prefix.dev/conda-forge/linux-64/astroid-3.3.9-py311h38be061_0.conda hash: md5: cabdabc18d53f957c01685765f24381a sha256: cf6c649941832b7b2ed0bdd4e79093343468c3e1003fc78f53e2a1021cefbec4 @@ -148,7 +148,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://repo.prefix.dev/conda-forge/win-64/astroid-3.3.9-py311h1ea47a8_0.conda hash: md5: dcfa6fc2847f6d9395b210423ab13d1b sha256: ce85abea60acda2e8d2c8bfbca7f1013e04a9b4b23d59b5e02a4b12de6ee1cf8 @@ -161,7 +161,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://repo.prefix.dev/conda-forge/noarch/babel-2.17.0-pyhd8ed1ab_0.conda hash: md5: 0a01c169f0ab0f91b26e77a3301fbfe4 sha256: 1c656a35800b7f57f7371605bc6507c8d3ad60fbaaec65876fce7f73df1fc8ac @@ -174,7 +174,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://repo.prefix.dev/conda-forge/noarch/babel-2.17.0-pyhd8ed1ab_0.conda hash: md5: 0a01c169f0ab0f91b26e77a3301fbfe4 sha256: 1c656a35800b7f57f7371605bc6507c8d3ad60fbaaec65876fce7f73df1fc8ac @@ -190,7 +190,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://repo.prefix.dev/conda-forge/linux-64/brotli-1.1.0-hb9d3cd8_2.conda hash: md5: 98514fe74548d768907ce7a13f680e8f sha256: fcb0b5b28ba7492093e54f3184435144e074dfceab27ac8e6a9457e736565b0b @@ -207,7 +207,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://repo.prefix.dev/conda-forge/win-64/brotli-1.1.0-h2466b09_2.conda hash: md5: 378f1c9421775dfe644731cb121c8979 sha256: d8fd7d1b446706776117d2dcad1c0289b9f5e1521cb13405173bad38568dd252 @@ -222,7 +222,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://repo.prefix.dev/conda-forge/linux-64/brotli-bin-1.1.0-hb9d3cd8_2.conda hash: md5: c63b5e52939e795ba8d26e35d767a843 sha256: 261364d7445513b9a4debc345650fad13c627029bfc800655a266bf1e375bc65 @@ -238,7 +238,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://repo.prefix.dev/conda-forge/win-64/brotli-bin-1.1.0-h2466b09_2.conda hash: md5: d22534a9be5771fc58eb7564947f669d sha256: f3bf2893613540ac256c68f211861c4de618d96291719e32178d894114ac2bc2 @@ -254,7 +254,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://repo.prefix.dev/conda-forge/linux-64/brotli-python-1.1.0-py311hfdbb021_2.conda hash: md5: d21daab070d76490cb39a8f1d1729d79 sha256: 949913bbd1f74d1af202d3e4bff2e0a4e792ec00271dc4dd08641d4221aa2e12 @@ -270,7 +270,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://repo.prefix.dev/conda-forge/win-64/brotli-python-1.1.0-py311hda3d55a_2.conda hash: md5: a0ea2839841a06740a1c110ba3317b42 sha256: aa3ac5dbf63db2f145235708973c626c2189ee4040d769fdf0076286fa45dc26 @@ -283,7 +283,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://repo.prefix.dev/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda hash: md5: 62ee74e96c5ebb0af99386de58cf9553 sha256: 5ced96500d945fb286c9c838e54fa759aa04a7129c59800f0846b4335cee770d @@ -297,7 +297,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://repo.prefix.dev/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda hash: md5: 276e7ffe9ffe39688abc665ef0f45596 sha256: 35a5dad92e88fdd7fc405e864ec239486f4f31eec229e31686e61a140a8e573b @@ -310,32 +310,34 @@ 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://repo.prefix.dev/conda-forge/linux-64/c-ares-1.34.5-hb9d3cd8_0.conda hash: md5: f7f0d6cc2dc986d42ac2689ec88192be sha256: f8003bef369f57396593ccd03d08a8e21966157269426f71e943f96e4b579aeb category: main optional: false - name: ca-certificates - version: 2025.1.31 + version: 2025.4.26 manager: conda platform: linux-64 - dependencies: {} - url: https://packages.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.4.26-hbd8a1cb_0.conda hash: - md5: 19f3a56f68d2fd06c516076bff482c52 - sha256: bf832198976d559ab44d6cdb315642655547e26d826e34da67cbee6624cda189 + md5: 95db94f75ba080a22eb623590993167b + sha256: 2a70ed95ace8a3f8a29e6cd1476a943df294a7111dfb3e152e3478c4c889b7ac category: main optional: false - name: ca-certificates - version: 2025.1.31 + version: 2025.4.26 manager: conda platform: win-64 - dependencies: {} - url: https://packages.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.4.26-h4c7d964_0.conda hash: - md5: 5304a31607974dfc2110dfbb662ed092 - sha256: 1bedccdf25a3bd782d6b0e57ddd97cdcda5501716009f2de4479a779221df155 + md5: 23c7fd5062b48d8294fc7f61bf157fba + sha256: 1454f3f53a3b828d3cb68a3440cb0fa9f1cc0e3c8c26e9e023773dc19d88cc06 category: main optional: false - name: cached-property @@ -344,7 +346,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://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 hash: md5: 9b347a7ec10940d3f7941ff6c460b551 sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17 @@ -356,7 +358,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://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 hash: md5: 9b347a7ec10940d3f7941ff6c460b551 sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17 @@ -368,7 +370,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://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 hash: md5: 576d629e47797577ab0f1b351297ef4a sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7 @@ -380,7 +382,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://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 hash: md5: 576d629e47797577ab0f1b351297ef4a sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7 @@ -392,7 +394,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://repo.prefix.dev/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda hash: md5: c207fa5ac7ea99b149344385a9c0880d sha256: 42a78446da06a2568cb13e69be3355169fbd0ea424b00fc80b7d840f5baaacf3 @@ -404,7 +406,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://repo.prefix.dev/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda hash: md5: c207fa5ac7ea99b149344385a9c0880d sha256: 42a78446da06a2568cb13e69be3355169fbd0ea424b00fc80b7d840f5baaacf3 @@ -421,7 +423,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://repo.prefix.dev/conda-forge/linux-64/cffi-1.17.1-py311hf29c0ef_0.conda hash: md5: 55553ecd5328336368db611f350b7039 sha256: bc47aa39c8254e9e487b8bcd74cfa3b4a3de3648869eb1a0b89905986b668e35 @@ -438,7 +440,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://repo.prefix.dev/conda-forge/win-64/cffi-1.17.1-py311he736701_0.conda hash: md5: e1c69be23bd05471a6c623e91680ad59 sha256: 9689fbd8a31fdf273f826601e90146006f6631619767a67955048c7ad7798a1d @@ -450,7 +452,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://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda hash: md5: e83a31202d1c0a000fce3e9cf3825875 sha256: 4e0ee91b97e5de3e74567bdacea27f0139709fceca4db8adffbe24deffccb09b @@ -462,7 +464,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://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda hash: md5: e83a31202d1c0a000fce3e9cf3825875 sha256: 4e0ee91b97e5de3e74567bdacea27f0139709fceca4db8adffbe24deffccb09b @@ -475,7 +477,7 @@ package: dependencies: __unix: '' python: '>=3.9' - url: https://packages.prefix.dev/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 @@ -489,7 +491,7 @@ package: __win: '' colorama: '' python: '>=3.9' - url: https://packages.prefix.dev/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 @@ -501,7 +503,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://repo.prefix.dev/conda-forge/noarch/cloudpickle-3.1.1-pyhd8ed1ab_0.conda hash: md5: 364ba6c9fb03886ac979b482f39ebb92 sha256: 21ecead7268241007bf65691610cd7314da68c1f88113092af690203b5780db5 @@ -513,7 +515,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://repo.prefix.dev/conda-forge/noarch/cloudpickle-3.1.1-pyhd8ed1ab_0.conda hash: md5: 364ba6c9fb03886ac979b482f39ebb92 sha256: 21ecead7268241007bf65691610cd7314da68c1f88113092af690203b5780db5 @@ -525,7 +527,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://repo.prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda hash: md5: 962b9857ee8e7018c22f2776ffa0b2d7 sha256: ab29d57dc70786c1269633ba3dff20288b81664d3ff8d21af995742e2bb03287 @@ -537,14 +539,14 @@ 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://repo.prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda hash: md5: 962b9857ee8e7018c22f2776ffa0b2d7 sha256: ab29d57dc70786c1269633ba3dff20288b81664d3ff8d21af995742e2bb03287 category: main optional: false - name: contourpy - version: 1.3.1 + version: 1.3.2 manager: conda platform: linux-64 dependencies: @@ -554,14 +556,14 @@ 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.1-py311hd18a35c_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/contourpy-1.3.2-py311hd18a35c_0.conda hash: - md5: 351cb68d2081e249069748b6e60b3cd2 - sha256: 08be6120dc9369f07858677dde2a8474644cc7ec2ae146b39a6953aadc536dfd + md5: f8e440efa026c394461a45a46cea49fc + sha256: 92ec3244ee0b424612025742a73d4728ded5bf6a358301bd005f67e74fec0b21 category: main optional: false - name: contourpy - version: 1.3.1 + version: 1.3.2 manager: conda platform: win-64 dependencies: @@ -571,10 +573,10 @@ 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.1-py311h3257749_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/contourpy-1.3.2-py311h3257749_0.conda hash: - md5: 91d8504588e1b3c77e605503e5a1bc11 - sha256: dbb0c161dd75e72e66c13f31715941adb094a45471016f89d6a1cfab30967ba8 + md5: f9fd48bb5c67e197d3e5ed0490df5aef + sha256: feec034c783bd35da5c923ca2c2a8c831b7058137c530ca76a66c993a3fbafb0 category: main optional: false - name: coverage @@ -587,7 +589,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://repo.prefix.dev/conda-forge/linux-64/coverage-7.8.0-py311h2dc5d0c_0.conda hash: md5: 37bc439a94beeb29914baa5b4987ebd5 sha256: 50018d9c2d805eab29be0ad2e65a4d6b9f620e5e6b196923b1f3b397efee9b10 @@ -604,7 +606,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://repo.prefix.dev/conda-forge/win-64/coverage-7.8.0-py311h5082efb_0.conda hash: md5: 3237b9093308b18ee36d455ff098017b sha256: 2a3a8f6304374d19e6fd1cbf73e756debf0a76e787f1a15bd8b11d74f9ef6bd2 @@ -616,7 +618,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://repo.prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda hash: md5: 44600c4667a319d67dbe0681fc0bc833 sha256: 9827efa891e507a91a8a2acf64e210d2aff394e1cde432ad08e1f8c66b12293c @@ -628,7 +630,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://repo.prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda hash: md5: 44600c4667a319d67dbe0681fc0bc833 sha256: 9827efa891e507a91a8a2acf64e210d2aff394e1cde432ad08e1f8c66b12293c @@ -644,7 +646,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://repo.prefix.dev/conda-forge/linux-64/cytoolz-1.0.1-py311h9ecbd09_0.conda hash: md5: 69a0a85acdcc5e6d0f1cc915c067ad4c sha256: fd5a8c7e613c3c538ca775951fd814ab10cfcdaed79e193c3bf7eb59c87cd114 @@ -661,7 +663,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://repo.prefix.dev/conda-forge/win-64/cytoolz-1.0.1-py311he736701_0.conda hash: md5: fc78ccf75bba016a930accedee7ed9af sha256: 7746ffe3a0849abbd724da6955950142ec7eedbc66053be8d3802b7885562951 @@ -681,7 +683,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://repo.prefix.dev/conda-forge/noarch/dask-core-2025.3.0-pyhd8ed1ab_0.conda hash: md5: 36f6cc22457e3d6a6051c5370832f96c sha256: 72badd945d856d2928fdbe051f136f903bcfee8136f1526c8362c6c465b793ec @@ -701,7 +703,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://repo.prefix.dev/conda-forge/noarch/dask-core-2025.3.0-pyhd8ed1ab_0.conda hash: md5: 36f6cc22457e3d6a6051c5370832f96c sha256: 72badd945d856d2928fdbe051f136f903bcfee8136f1526c8362c6c465b793ec @@ -714,7 +716,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://repo.prefix.dev/conda-forge/noarch/deprecated-1.2.18-pyhd8ed1ab_0.conda hash: md5: 0cef44b1754ae4d6924ac0eef6b9fdbe sha256: d614bcff10696f1efc714df07651b50bf3808401fcc03814309ecec242cc8870 @@ -727,34 +729,34 @@ 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://repo.prefix.dev/conda-forge/noarch/deprecated-1.2.18-pyhd8ed1ab_0.conda hash: md5: 0cef44b1754ae4d6924ac0eef6b9fdbe sha256: d614bcff10696f1efc714df07651b50bf3808401fcc03814309ecec242cc8870 category: main optional: false - name: dill - version: 0.3.9 + version: 0.4.0 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/dill-0.3.9-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda hash: - md5: 5e11310fca410e9f31381157079dee55 - sha256: 499be2f8e4397a46249e8e500535795704af27e56360ae0c964904140b41454a + md5: 885745570573eb6a08e021841928297a + sha256: 43dca52c96fde0c4845aaff02bcc92f25e1c2e5266ddefc2eac1a3de0960a3b1 category: dev optional: true - name: dill - version: 0.3.9 + version: 0.4.0 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/dill-0.3.9-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda hash: - md5: 5e11310fca410e9f31381157079dee55 - sha256: 499be2f8e4397a46249e8e500535795704af27e56360ae0c964904140b41454a + md5: 885745570573eb6a08e021841928297a + sha256: 43dca52c96fde0c4845aaff02bcc92f25e1c2e5266ddefc2eac1a3de0960a3b1 category: dev optional: true - name: discretize @@ -769,7 +771,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://repo.prefix.dev/conda-forge/linux-64/discretize-0.11.2-py311h5b7b71f_1.conda hash: md5: 46691a03f4c2317ec8c798dc8575bf48 sha256: 147f8e5403fe7cc0cab3eb8e5cb362347728fe5e485e7c6ca76f5139447b1960 @@ -787,7 +789,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://repo.prefix.dev/conda-forge/win-64/discretize-0.11.2-py311h9b10771_0.conda hash: md5: 67a5b84650218196cfef1b647c6a9140 sha256: 0bda0975ae4898c3887be171c9888fd57a20379c129e3149a4708c9d3edf5a2b @@ -815,7 +817,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://repo.prefix.dev/conda-forge/noarch/distributed-2025.3.0-pyhd8ed1ab_0.conda hash: md5: 968a7a4ff98bcfb515b0f1c94d35553f sha256: ea055aeda774d03ec96e0901ec119c6d3dc21ddd50af166bec664a76efd5f82a @@ -843,7 +845,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://repo.prefix.dev/conda-forge/noarch/distributed-2025.3.0-pyhd8ed1ab_0.conda hash: md5: 968a7a4ff98bcfb515b0f1c94d35553f sha256: ea055aeda774d03ec96e0901ec119c6d3dc21ddd50af166bec664a76efd5f82a @@ -856,7 +858,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://repo.prefix.dev/conda-forge/linux-64/docutils-0.19-py311h38be061_1.tar.bz2 hash: md5: 599159b0740e9b82e7eef0e8471be3c2 sha256: ec7760e5a1d065b97ac32d12f7c70f19937040d8bb52a9f16573b65c6832c67a @@ -869,7 +871,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://repo.prefix.dev/conda-forge/win-64/docutils-0.19-py311h1ea47a8_1.tar.bz2 hash: md5: 52b2142036004451e1881d97e9d01e8a sha256: 40c678c6bda27aeb7ad8b1714f189201599d2068a0fa75087548b62f8afe9bc7 @@ -881,7 +883,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://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda hash: md5: a16662747cdeb9abbac74d0057cc976e sha256: cbde2c64ec317118fc06b223c5fd87c8a680255e7348dd60e7b292d2e103e701 @@ -893,7 +895,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://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda hash: md5: a16662747cdeb9abbac74d0057cc976e sha256: cbde2c64ec317118fc06b223c5fd87c8a680255e7348dd60e7b292d2e103e701 @@ -905,7 +907,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://repo.prefix.dev/conda-forge/noarch/fasteners-0.19-pyhd8ed1ab_1.conda hash: md5: dbe9d42e94b5ff7af7b7893f4ce052e7 sha256: 42fb170778b47303e82eddfea9a6d1e1b8af00c927cd5a34595eaa882b903a16 @@ -917,7 +919,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://repo.prefix.dev/conda-forge/noarch/fasteners-0.19-pyhd8ed1ab_1.conda hash: md5: dbe9d42e94b5ff7af7b7893f4ce052e7 sha256: 42fb170778b47303e82eddfea9a6d1e1b8af00c927cd5a34595eaa882b903a16 @@ -935,7 +937,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://repo.prefix.dev/conda-forge/linux-64/fonttools-4.57.0-py311h2dc5d0c_0.conda hash: md5: 4175f366b41d3d0c80d02661a0a03473 sha256: 2157fff1f143fc99f9b27d1358b537f08478eb65d917279a3484c9c8989ea5fc @@ -954,7 +956,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://repo.prefix.dev/conda-forge/win-64/fonttools-4.57.0-py311h5082efb_0.conda hash: md5: 9ecb6a80392fc77239da9cb631e9ab0c sha256: 59938b42ed276e716af76b9795f37f2c2ba9b03ce79e820610b37d036d1b4101 @@ -965,14 +967,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://packages.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 @@ -980,15 +980,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://packages.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 @@ -997,7 +994,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://repo.prefix.dev/conda-forge/noarch/fsspec-2025.3.2-pyhd8ed1ab_0.conda hash: md5: 9c40692c3d24c7aaf335f673ac09d308 sha256: 2040d4640708bd6ab9ed6cb9901267441798c44974bc63c9b6c1cb4c1891d825 @@ -1009,7 +1006,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://repo.prefix.dev/conda-forge/noarch/fsspec-2025.3.2-pyhd8ed1ab_0.conda hash: md5: 9c40692c3d24c7aaf335f673ac09d308 sha256: 2040d4640708bd6ab9ed6cb9901267441798c44974bc63c9b6c1cb4c1891d825 @@ -1028,7 +1025,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://repo.prefix.dev/conda-forge/linux-64/geoana-0.7.2-py311h5b7b71f_0.conda hash: md5: 43a8fbbc2388122345ec26773a07091c sha256: 549a28806517d33a391cf67319322b48cc7afbec85d45ee45792594287af5b5e @@ -1047,7 +1044,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://repo.prefix.dev/conda-forge/win-64/geoana-0.7.2-py311h9b10771_0.conda hash: md5: e611dcb0a755ab9df497b3a7b6dd72b0 sha256: a63e83fec8e75b61333693919eaa2789320b0caf2d62f37691bd68f56b296004 @@ -1061,7 +1058,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://repo.prefix.dev/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda hash: md5: b4754fb1bdcb70c8fd54f918301582c6 sha256: 0aa1cdc67a9fe75ea95b5644b734a756200d6ec9d0dff66530aec3d1c1e9df75 @@ -1075,7 +1072,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://repo.prefix.dev/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda hash: md5: b4754fb1bdcb70c8fd54f918301582c6 sha256: 0aa1cdc67a9fe75ea95b5644b734a756200d6ec9d0dff66530aec3d1c1e9df75 @@ -1093,7 +1090,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://repo.prefix.dev/conda-forge/linux-64/h5py-3.13.0-nompi_py311hb639ac4_100.conda hash: md5: 5e6c88350ad81f42e63f2b470b6a4b86 sha256: 61809af316c1da7db5b19396f18c4ea31fc194910901e873baa056ab103f46c7 @@ -1112,7 +1109,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://repo.prefix.dev/conda-forge/win-64/h5py-3.13.0-nompi_py311h67016bb_100.conda hash: md5: 2e6c03df40daaaceb2f8229eff48a22a sha256: 5d36e278a6eeeca22e7d882b4d5e98ee23b900994eb1902aa95f8c582a2a6200 @@ -1132,7 +1129,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://repo.prefix.dev/conda-forge/linux-64/hdf5-1.14.3-nompi_h2d575fe_109.conda hash: md5: e7a7a6e6f70553a31e6e79c65768d089 sha256: e8669a6d76d415f4fdbe682507ac3a3b39e8f493d2f2bdc520817f80b7cc0753 @@ -1150,7 +1147,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://repo.prefix.dev/conda-forge/win-64/hdf5-1.14.3-nompi_hb2c4d47_109.conda hash: md5: ebb61f3e8b35cc15e78876649b7246f7 sha256: d5ada33e119cdd62371c06f60eae6f545de7cea793ab83da2fba428bb1d2f813 @@ -1162,7 +1159,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://repo.prefix.dev/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda hash: md5: 0a802cb9888dd14eeefc611f05c40b6e sha256: 6ad78a180576c706aabeb5b4c8ceb97c0cb25f1e112d76495bff23e3779948ba @@ -1174,7 +1171,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://repo.prefix.dev/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda hash: md5: 0a802cb9888dd14eeefc611f05c40b6e sha256: 6ad78a180576c706aabeb5b4c8ceb97c0cb25f1e112d76495bff23e3779948ba @@ -1186,7 +1183,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://repo.prefix.dev/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda hash: md5: 8e6923fc12f1fe8f8c4e5c9f343256ac sha256: 77af6f5fe8b62ca07d09ac60127a30d9069fdc3c68d6b256754d0ffb1f7779f8 @@ -1198,7 +1195,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://repo.prefix.dev/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda hash: md5: 8e6923fc12f1fe8f8c4e5c9f343256ac sha256: 77af6f5fe8b62ca07d09ac60127a30d9069fdc3c68d6b256754d0ffb1f7779f8 @@ -1210,7 +1207,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://repo.prefix.dev/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda hash: md5: 39a4f67be3286c86d696df570b1201b7 sha256: d7a472c9fd479e2e8dcb83fb8d433fce971ea369d704ece380e876f9c3494e87 @@ -1222,7 +1219,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://repo.prefix.dev/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda hash: md5: 39a4f67be3286c86d696df570b1201b7 sha256: d7a472c9fd479e2e8dcb83fb8d433fce971ea369d704ece380e876f9c3494e87 @@ -1234,7 +1231,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://repo.prefix.dev/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2 hash: md5: 7de5386c8fea29e76b303f37dde4c352 sha256: c2bfd7043e0c4c12d8b5593de666c1e81d67b83c474a0a79282cc5c4ef845460 @@ -1246,7 +1243,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://repo.prefix.dev/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2 hash: md5: 7de5386c8fea29e76b303f37dde4c352 sha256: c2bfd7043e0c4c12d8b5593de666c1e81d67b83c474a0a79282cc5c4ef845460 @@ -1259,7 +1256,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://repo.prefix.dev/conda-forge/noarch/importlib-metadata-8.6.1-pyha770c72_0.conda hash: md5: f4b39bf00c69f56ac01e020ebfac066c sha256: 598951ebdb23e25e4cec4bbff0ae369cec65ead80b50bc08b441d8e54de5cf03 @@ -1272,7 +1269,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://repo.prefix.dev/conda-forge/noarch/importlib-metadata-8.6.1-pyha770c72_0.conda hash: md5: f4b39bf00c69f56ac01e020ebfac066c sha256: 598951ebdb23e25e4cec4bbff0ae369cec65ead80b50bc08b441d8e54de5cf03 @@ -1284,7 +1281,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://repo.prefix.dev/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda hash: md5: 6837f3eff7dcea42ecd714ce1ac2b108 sha256: 0ec8f4d02053cd03b0f3e63168316530949484f80e16f5e2fb199a1d117a89ca @@ -1296,7 +1293,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://repo.prefix.dev/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda hash: md5: 6837f3eff7dcea42ecd714ce1ac2b108 sha256: 0ec8f4d02053cd03b0f3e63168316530949484f80e16f5e2fb199a1d117a89ca @@ -1307,7 +1304,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://repo.prefix.dev/conda-forge/win-64/intel-openmp-2024.2.1-h57928b3_1083.conda hash: md5: 2d89243bfb53652c182a7c73182cce4f sha256: 0fd2b0b84c854029041b0ede8f4c2369242ee92acc0092f8407b1fe9238a8209 @@ -1320,7 +1317,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://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_0.conda hash: md5: a8abfd3f223b1ecb8c699dca974933bd sha256: 9c5fb97efa0eb32b42564edaacb5edb9a1f82ba8f5f8b135e794960101115b5a @@ -1333,7 +1330,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://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_0.conda hash: md5: a8abfd3f223b1ecb8c699dca974933bd sha256: 9c5fb97efa0eb32b42564edaacb5edb9a1f82ba8f5f8b135e794960101115b5a @@ -1346,7 +1343,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://repo.prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda hash: md5: 446bd6c8cb26050d528881df495ce646 sha256: f1ac18b11637ddadc05642e8185a851c7fab5998c6f5470d716812fae943b2af @@ -1359,7 +1356,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://repo.prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda hash: md5: 446bd6c8cb26050d528881df495ce646 sha256: f1ac18b11637ddadc05642e8185a851c7fab5998c6f5470d716812fae943b2af @@ -1372,7 +1369,7 @@ package: dependencies: python: '>=3.9' setuptools: '' - url: https://packages.prefix.dev/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 @@ -1385,7 +1382,7 @@ package: dependencies: python: '>=3.9' setuptools: '' - url: https://packages.prefix.dev/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 @@ -1397,7 +1394,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://repo.prefix.dev/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 hash: md5: 30186d27e2c9fa62b45fb1476b7200e3 sha256: 150c05a6e538610ca7c43beb3a40d65c90537497a4f6a5f4d15ec0451b6f5ebb @@ -1413,7 +1410,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://repo.prefix.dev/conda-forge/linux-64/kiwisolver-1.4.7-py311hd18a35c_0.conda hash: md5: be34c90cce87090d24da64a7c239ca96 sha256: 4af11cbc063096a284fe1689b33424e7e49732a27fd396d74c7dee03d1e788ee @@ -1429,7 +1426,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://repo.prefix.dev/conda-forge/win-64/kiwisolver-1.4.7-py311h3257749_0.conda hash: md5: 18fd1ac3d79a8d6550eaea5ceaa00036 sha256: a2079e13d1345a5dd61df6be933e828e805051256e7260009ba93fce55aebd75 @@ -1445,7 +1442,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://repo.prefix.dev/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda hash: md5: 3f43953b7d3fb3aaa1d0d0723d91e368 sha256: 99df692f7a8a5c27cd14b5fb1374ee55e756631b9c3d659ed3ee60830249b238 @@ -1460,7 +1457,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://repo.prefix.dev/conda-forge/win-64/krb5-1.21.3-hdf4eb48_0.conda hash: md5: 31aec030344e962fbd7dbbbbd68e60a9 sha256: 18e8b3430d7d232dad132f574268f56b3eb1a19431d6d5de8c53c29e6c18fa81 @@ -1475,7 +1472,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://repo.prefix.dev/conda-forge/linux-64/lcms2-2.17-h717163a_0.conda hash: md5: 000e85703f0fd9594c81710dd5066471 sha256: d6a61830a354da022eae93fa896d0991385a875c6bba53c82263a289deda9db8 @@ -1491,7 +1488,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://repo.prefix.dev/conda-forge/win-64/lcms2-2.17-hbcf6048_0.conda hash: md5: 3538827f77b82a837fa681a4579e37a1 sha256: 7712eab5f1a35ca3ea6db48ead49e0d6ac7f96f8560da8023e61b3dbe4f3b25d @@ -1503,7 +1500,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://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_4.conda hash: md5: 01f8d123c96816249efd255a31ad7712 sha256: db73f38155d901a610b2320525b9dd3b31e4949215c870685fd92ea61b5ce472 @@ -1514,12 +1511,13 @@ package: manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://packages.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 @@ -1527,12 +1525,13 @@ package: manager: conda platform: win-64 dependencies: + ucrt: '>=10.0.20348.0' 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 + 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 @@ -1542,7 +1541,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://repo.prefix.dev/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda hash: md5: 5e97e271911b8b2001a8b71860c32faa sha256: 2ef420a655528bca9d269086cf33b7e90d2f54ad941b437fb1ed5eca87cee017 @@ -1556,7 +1555,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://repo.prefix.dev/conda-forge/win-64/libaec-1.1.3-h63175ca_0.conda hash: md5: 8723000f6ffdbdaef16025f0a01b64c5 sha256: f5c293d3cfc00f71dfdb64bd65ab53625565f8778fc2d5790575bef238976ebf @@ -1568,7 +1567,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://repo.prefix.dev/conda-forge/linux-64/libblas-3.9.0-31_hfdb39a5_mkl.conda hash: md5: bdf4a57254e8248222cb631db4393ff1 sha256: 862289f2cfb84bb6001d0e3569e908b8c42d66b881bd5b03f730a3924628b978 @@ -1580,7 +1579,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://repo.prefix.dev/conda-forge/win-64/libblas-3.9.0-31_h641d27c_mkl.conda hash: md5: d05563c577fe2f37693a554b3f271e8f sha256: 7bb4d5b591e98fe607279520ee78e3571a297b5720aa789a2536041ad5540de8 @@ -1593,7 +1592,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://repo.prefix.dev/conda-forge/linux-64/libbrotlicommon-1.1.0-hb9d3cd8_2.conda hash: md5: 41b599ed2b02abcfdd84302bff174b23 sha256: d9db2de60ea917298e658143354a530e9ca5f9c63471c65cf47ab39fd2f429e3 @@ -1607,7 +1606,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://repo.prefix.dev/conda-forge/win-64/libbrotlicommon-1.1.0-h2466b09_2.conda hash: md5: f7dc9a8f21d74eab46456df301da2972 sha256: 33e8851c6cc8e2d93059792cd65445bfe6be47e4782f826f01593898ec95764c @@ -1621,7 +1620,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://repo.prefix.dev/conda-forge/linux-64/libbrotlidec-1.1.0-hb9d3cd8_2.conda hash: md5: 9566f0bd264fbd463002e759b8a82401 sha256: 2892d512cad096cb03f1b66361deeab58b64e15ba525d6592bb6d609e7045edf @@ -1636,7 +1635,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://repo.prefix.dev/conda-forge/win-64/libbrotlidec-1.1.0-h2466b09_2.conda hash: md5: 9bae75ce723fa34e98e239d21d752a7e sha256: 234fc92f4c4f1cf22f6464b2b15bfc872fa583c74bf3ab9539ff38892c43612f @@ -1650,7 +1649,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://repo.prefix.dev/conda-forge/linux-64/libbrotlienc-1.1.0-hb9d3cd8_2.conda hash: md5: 06f70867945ea6a84d35836af780f1de sha256: 779f58174e99de3600e939fa46eddb453ec5d3c60bb46cdaa8b4c127224dbf29 @@ -1665,7 +1664,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://repo.prefix.dev/conda-forge/win-64/libbrotlienc-1.1.0-h2466b09_2.conda hash: md5: 85741a24d97954a991e55e34bc55990b sha256: 3d0dd7ef505962f107b7ea8f894e0b3dd01bf46852b362c8a7fc136b039bc9e1 @@ -1677,7 +1676,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://repo.prefix.dev/conda-forge/linux-64/libcblas-3.9.0-31_h372d94f_mkl.conda hash: md5: 2a06a6c16b45bd3d10002927ca204b67 sha256: 2ee3ab2b6eeb59f2d3c6f933fa0db28f1b56f0bc543ed2c0f6ec04060e4b6ec0 @@ -1689,7 +1688,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://repo.prefix.dev/conda-forge/win-64/libcblas-3.9.0-31_h5e41251_mkl.conda hash: md5: 43c100b94ad2607382b0cf0f3a6b0bf3 sha256: 609f455b099919bd4d15d4a733f493dc789e02da73fe4474f1cca73afafb95b8 @@ -1708,7 +1707,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://repo.prefix.dev/conda-forge/linux-64/libcurl-8.13.0-h332b0f4_0.conda hash: md5: cbdc92ac0d93fe3c796e36ad65c7905c sha256: 38e528acfaa0276b7052f4de44271ff9293fdb84579650601a8c49dac171482a @@ -1725,7 +1724,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://repo.prefix.dev/conda-forge/win-64/libcurl-8.13.0-h88aaa65_0.conda hash: md5: c9cf6eb842decbb66c2f34e72c3580d6 sha256: 185553b37c0299b7a15dc66a7a7e2a0d421adaac784ec9298a0b2ad745116ca5 @@ -1738,10 +1737,10 @@ 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://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 @@ -1752,10 +1751,10 @@ 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://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 @@ -1765,7 +1764,7 @@ package: dependencies: numpy: '' python: '>=3.10' - url: https://packages.prefix.dev/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 @@ -1778,7 +1777,7 @@ package: dependencies: numpy: '' python: '>=3.10' - url: https://packages.prefix.dev/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 @@ -1792,7 +1791,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://repo.prefix.dev/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.conda hash: md5: c277e0a4d549b03ac1e9d6cbbe3d017b sha256: d789471216e7aba3c184cd054ed61ce3f6dac6f87a50ec69291b9297f8c18724 @@ -1804,7 +1803,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://repo.prefix.dev/conda-forge/linux-64/libev-4.33-hd590300_2.conda hash: md5: 172bf1cd1ff8629f2b1179945ed45055 sha256: 1cd6048169fa0395af74ed5d8f1716e22c19a81a8a36f934c110ca3ad4dd27b4 @@ -1817,7 +1816,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://repo.prefix.dev/conda-forge/linux-64/libexpat-2.7.0-h5888daf_0.conda hash: md5: db0bfbe7dd197b68ad5f30333bae6ce0 sha256: 33ab03438aee65d6aa667cf7d90c91e5e7d734c19a67aa4c7040742c0a13d505 @@ -1831,7 +1830,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://repo.prefix.dev/conda-forge/win-64/libexpat-2.7.0-he0c23c2_0.conda hash: md5: b6f5352fdb525662f4169a0431d2dd7a sha256: 1a227c094a4e06bd54e8c2f3ec40c17ff99dcf3037d812294f842210aa66dbeb @@ -1844,7 +1843,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://repo.prefix.dev/conda-forge/linux-64/libffi-3.4.6-h2dba641_1.conda hash: md5: ede4673863426c0883c0063d853bbd85 sha256: 764432d32db45466e87f10621db5b74363a9f847d2b8b1f9743746cd160f06ab @@ -1858,12 +1857,67 @@ 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://repo.prefix.dev/conda-forge/win-64/libffi-3.4.6-h537db12_1.conda hash: md5: 85d8fa5e55ed8f93f874b3b23ed54ec6 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 @@ -1871,7 +1925,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://repo.prefix.dev/conda-forge/linux-64/libgcc-14.2.0-h767d61c_2.conda hash: md5: ef504d1acbd74b7cc6849ef8af47dd03 sha256: 3a572d031cb86deb541d15c1875aaa097baefc0c580b54dc61f5edab99215792 @@ -1884,7 +1938,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://repo.prefix.dev/conda-forge/win-64/libgcc-14.2.0-h1383e82_2.conda hash: md5: 4a74c1461a0ba47a3346c04bdccbe2ad sha256: fddf2fc037bc95adb3b369e8866da8a71b6a67ebcfc4d7035ac4208309dc9e72 @@ -1896,7 +1950,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://repo.prefix.dev/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_2.conda hash: md5: a2222a6ada71fb478682efe483ce0f92 sha256: fb7558c328b38b2f9d2e412c48da7890e7721ba018d733ebdfea57280df01904 @@ -1908,7 +1962,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://repo.prefix.dev/conda-forge/linux-64/libgfortran-14.2.0-h69a702a_2.conda hash: md5: fb54c4ea68b460c278d26eea89cfbcc3 sha256: e05263e8960da03c341650f2a3ffa4ccae4e111cb198e8933a2908125459e5a6 @@ -1921,7 +1975,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://repo.prefix.dev/conda-forge/linux-64/libgfortran5-14.2.0-hf1ad2bd_2.conda hash: md5: 556a4fdfac7287d349b8f09aba899693 sha256: c17b7cf3073a1f4e1f34d50872934fa326346e104d3c445abc1e62481ad6085c @@ -1933,7 +1987,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://repo.prefix.dev/conda-forge/win-64/libgomp-14.2.0-h1383e82_2.conda hash: md5: dd6b1ab49e28bcb6154cd131acec985b sha256: 674ec5f1bf319eac98d0d6ecb9c38e0192f3cf41969a5621d62a7e695e1aa9f3 @@ -1948,7 +2002,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://repo.prefix.dev/conda-forge/linux-64/libhwloc-2.11.2-default_h0d58e46_1001.conda hash: md5: 804ca9e91bcaea0824a341d55b1684f2 sha256: d14c016482e1409ae1c50109a9ff933460a50940d2682e745ab1c172b5282a69 @@ -1964,7 +2018,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://repo.prefix.dev/conda-forge/win-64/libhwloc-2.11.2-default_ha69328c_1001.conda hash: md5: b87a0ac5ab6495d8225db5dc72dd21cd sha256: 850e255997f538d5fb6ed651321141155a33bb781d43d326fc4ff62114dd2842 @@ -1977,7 +2031,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://repo.prefix.dev/conda-forge/linux-64/libiconv-1.18-h4ce23a2_1.conda hash: md5: e796ff8ddc598affdf7c173d6145f087 sha256: 18a4afe14f731bfb9cf388659994263904d20111e42f841e9eea1bb6f91f4ab4 @@ -1991,36 +2045,37 @@ 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://repo.prefix.dev/conda-forge/win-64/libiconv-1.18-h135ad9c_1.conda hash: md5: 21fc5dba2cbcd8e5e26ff976a312122c sha256: ea5ed2b362b6dbc4ba7188eb4eaf576146e3dfc6f4395e9f0db76ad77465f786 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://packages.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://packages.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 @@ -2029,7 +2084,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://repo.prefix.dev/conda-forge/linux-64/liblapack-3.9.0-31_hc41d3b0_mkl.conda hash: md5: 10d012ddd7cc1c7ff9093d4974a34e53 sha256: a2d20845d916ac8fba09376cd791136a9b4547afb2131bc315178adfc87bb4ca @@ -2041,7 +2096,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://repo.prefix.dev/conda-forge/win-64/liblapack-3.9.0-31_h1aa476e_mkl.conda hash: md5: 40b47ee720a185289760960fc6185750 sha256: 9415e807aa6f8968322bbd756aab8f487379d809c74266d37c697b8d85c534ad @@ -2054,7 +2109,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://repo.prefix.dev/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_0.conda hash: md5: 0e87378639676987af32fee53ba32258 sha256: f4f21dfc54b08d462f707b771ecce3fa9bc702a2a05b55654f64154f48b141ef @@ -2068,7 +2123,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://repo.prefix.dev/conda-forge/win-64/liblzma-5.8.1-h2466b09_0.conda hash: md5: 8d5cb0016b645d6688e2ff57c5d51302 sha256: 1477e9bff05318f3129d37be0e64c76cce0973c4b8c73d13a467d0b7f03d157c @@ -2086,7 +2141,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://repo.prefix.dev/conda-forge/linux-64/libnghttp2-1.64.0-h161d5f1_0.conda hash: md5: 19e57602824042dfd0446292ef90488b sha256: b0f2b3695b13a989f75d8fd7f4778e1c7aabe3b36db83f0fe80b2cd812c0e975 @@ -2098,7 +2153,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://repo.prefix.dev/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda hash: md5: 30fd6e37fe21f86f4bd26d6ee73eeec7 sha256: 26d77a3bb4dceeedc2a41bd688564fe71bf2d149fdcf117049970bc02ff1add6 @@ -2112,7 +2167,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://repo.prefix.dev/conda-forge/linux-64/libpng-1.6.47-h943b412_0.conda hash: md5: 55199e2ae2c3651f6f9b2a447b47bdc9 sha256: 23367d71da58c9a61c8cbd963fcffb92768d4ae5ffbef9a47cdf1f54f98c5c36 @@ -2127,10 +2182,10 @@ 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://repo.prefix.dev/conda-forge/win-64/libpng-1.6.47-h7a4582a_0.conda hash: - md5: 7d717163d9dab337c65f2bf21a676b8f - sha256: cf8a594b697de103025dcae2c917ec9c100609caf7c917a94c64a683cb1db1ac + md5: ad620e92b82d2948bc019e029c574ebb + sha256: e12c46ca882080d901392ae45e0e5a1c96fc3e5acd5cd1a23c2632eb7f024f26 category: main optional: false - name: libscotch @@ -2145,7 +2200,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://repo.prefix.dev/conda-forge/linux-64/libscotch-7.0.6-hea33c07_1.conda hash: md5: 1b600d55dcd98c958192a69a79e6acd2 sha256: 8330bba8b7b3a37da6eca04bace985fb9f8d487d3249b8f690e8f4a3d8d3c7dc @@ -2159,7 +2214,7 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://packages.prefix.dev/conda-forge/linux-64/libspatialindex-2.0.0-he02047a_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libspatialindex-2.0.0-he02047a_0.conda hash: md5: e7d2dcd1a058149ff9731a8dca39566e sha256: 997a4fa13864dcb35ac9dfe87ed70fb3e9509dd071fa1951ac7f184e7ffcde5d @@ -2173,7 +2228,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/libspatialindex-2.0.0-h5a68840_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libspatialindex-2.0.0-h5a68840_0.conda hash: md5: 667559340fdf805ee1652de7b73e2b59 sha256: 7802e6c51d59bc7e062841c525d772656708cdc44e42b6556493d345f08d7e50 @@ -2187,7 +2242,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://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.49.1-hee588c1_2.conda hash: md5: 962d6ac93c30b1dfc54c9cccafd1003e sha256: a086289bf75c33adc1daed3f1422024504ffb5c3c8b3285c49f025c29708ed16 @@ -2201,7 +2256,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://repo.prefix.dev/conda-forge/win-64/libsqlite-3.49.1-h67fdade_2.conda hash: md5: b58b66d4ad1aaf1c2543cbbd6afb1a59 sha256: c092d42d00fd85cf609cc58574ba2b03c141af5762283f36f5dd445ef7c0f4fe @@ -2215,11 +2270,11 @@ package: __glibc: '>=2.17,<3.0.a0' 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 + openssl: '>=3.5.0,<4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/libssh2-1.11.1-hcf80075_0.conda hash: - md5: be2de152d8073ef1c01b7728475f2fe7 - sha256: 0407ac9fda2bb67e11e357066eff144c845801d00b5f664efbc48813af1e7bb9 + md5: eecce068c7e4eddeb169591baac20ac4 + sha256: fa39bfd69228a13e553bd24601332b7cfeb30ca11a3ca50bb028108fe90a7661 category: main optional: false - name: libssh2 @@ -2228,14 +2283,14 @@ package: platform: win-64 dependencies: libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.4.0,<4.0a0' + openssl: '>=3.5.0,<4.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/libssh2-1.11.1-he619c9f_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libssh2-1.11.1-h9aa295b_0.conda hash: - md5: af0cbf037dd614c34399b3b3e568c557 - sha256: 4b3256bd2b4e4b3183005d3bd8826d651eccd1a4740b70625afa2b7e7123d191 + md5: 9dce2f112bfd3400f4f432b3d0ac07b2 + sha256: cbdf93898f2e27cefca5f3fe46519335d1fab25c4ea2a11b11502ff63e602c09 category: main optional: false - name: libstdcxx @@ -2245,7 +2300,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://repo.prefix.dev/conda-forge/linux-64/libstdcxx-14.2.0-h8f9b012_2.conda hash: md5: a78c856b6dc6bf4ea8daeb9beaaa3fb0 sha256: 8f5bd92e4a24e1d35ba015c5252e8f818898478cb3bc50bd8b12ab54707dc4da @@ -2257,7 +2312,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://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-14.2.0-h4852527_2.conda hash: md5: c75da67f045c2627f59e6fcb5f4e3a9b sha256: e86f38b007cf97cc2c67cd519f2de12a313c4ee3f5ef11652ad08932a5e34189 @@ -2272,16 +2327,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://packages.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 @@ -2291,17 +2346,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://packages.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 @@ -2310,7 +2365,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://repo.prefix.dev/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda hash: md5: 40b61aab5c7ba9ff276c41cfffe6b80b sha256: 787eb542f055a2b3de553614b25f09eefb0a0931b0c87dbcce6efdfd92f04f18 @@ -2323,7 +2378,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://repo.prefix.dev/conda-forge/linux-64/libwebp-base-1.5.0-h851e524_0.conda hash: md5: 63f790534398730f59e1b899c3644d4a sha256: c45283fd3e90df5f0bd3dbcd31f59cdd2b001d424cf30a07223655413b158eaf @@ -2337,7 +2392,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://repo.prefix.dev/conda-forge/win-64/libwebp-base-1.5.0-h3b0e114_0.conda hash: md5: 33f7313967072c6e6d8f865f5493c7ae sha256: 1d75274614e83a5750b8b94f7bad2fc0564c2312ff407e697d99152ed095576f @@ -2349,7 +2404,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://repo.prefix.dev/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h57928b3_9.conda hash: md5: 08bfa5da6e242025304b206d152479ef sha256: 373f2973b8a358528b22be5e8d84322c165b4c5577d24d94fd67ad1bb0a0f261 @@ -2365,7 +2420,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://repo.prefix.dev/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda hash: md5: 92ed62436b625154323d40d5f2f11dd7 sha256: 666c0c431b23c6cec6e492840b176dde533d48b7e6fb8883f5071223433776aa @@ -2382,7 +2437,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://repo.prefix.dev/conda-forge/win-64/libxcb-1.17.0-h0e4246c_0.conda hash: md5: a69bbf778a462da324489976c84cfc8c sha256: 08dec73df0e161c96765468847298a420933a36bc4f09b50e062df8793290737 @@ -2394,7 +2449,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://repo.prefix.dev/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda hash: md5: 5aa797f8787fe7a17d1b0821485b5adc sha256: 6ae68e0b86423ef188196fff6207ed0c8195dd84273cb5623b85aa08033a410c @@ -2410,7 +2465,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://repo.prefix.dev/conda-forge/linux-64/libxml2-2.13.7-h81593ed_1.conda hash: md5: 0619e8fc4c8025a908ea3a3422d3b775 sha256: c4f59563e017eba378ea843be5ebde4b0546c72bbe4c1e43b2b384379e827635 @@ -2426,7 +2481,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://repo.prefix.dev/conda-forge/win-64/libxml2-2.13.7-h442d1da_1.conda hash: md5: c14ff7f05e57489df9244917d2b55763 sha256: 0a013527f784f4702dc18460070d8ec79d1ebb5087dd9e678d6afbeaca68d2ac @@ -2439,7 +2494,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://repo.prefix.dev/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda hash: md5: edb0dca6bc32e4f4789199455a1dbeb8 sha256: d4bfe88d7cb447768e31650f06257995601f89076080e76df55e3112d4e47dc4 @@ -2453,36 +2508,36 @@ 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://repo.prefix.dev/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda hash: md5: 41fbfac52c601159df6c01f875de31b9 sha256: ba945c6493449bed0e6e29883c4943817f7c79cbff52b83360f7b341277c6402 category: main optional: false - name: llvm-openmp - version: 20.1.2 + version: 20.1.4 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://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-20.1.4-h024ca30_0.conda hash: - md5: 39a3992c2624b8d8e6b4994dedf3102a - sha256: 2c70e18a5bcb3fc2925e5d2c2c39559253d19e38c111afc91885f0dee4540fb1 + md5: 4fc395cda27912a7d904b86b5dbf3a4d + sha256: 5b39cdde3457e41b133d6f1fe53095c7fd3951bbdab46580098ccbf5ee9c99f7 category: main optional: false - name: llvm-openmp - version: 20.1.2 + version: 20.1.4 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://repo.prefix.dev/conda-forge/win-64/llvm-openmp-20.1.4-h30eaf37_0.conda hash: - md5: d5a4f53b65d7d1d53104ba24107eda04 - sha256: 3ba2b892d6e153599512fa7fe2791125ff1b7dd6740469f74aff2d1b48edf299 + md5: 3087da6f7e741dc1498e85ef87a553dc + sha256: 0c85b0ceda02c26bbea5a789c2d1735485dbc2a1089655a8f2193c5850a7bbab category: main optional: false - name: locket @@ -2491,7 +2546,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://repo.prefix.dev/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 91e27ef3d05cc772ce627e51cff111c4 sha256: 9afe0b5cfa418e8bdb30d8917c5a6cec10372b037924916f1f85b9f4899a67a6 @@ -2503,7 +2558,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://repo.prefix.dev/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 91e27ef3d05cc772ce627e51cff111c4 sha256: 9afe0b5cfa418e8bdb30d8917c5a6cec10372b037924916f1f85b9f4899a67a6 @@ -2518,7 +2573,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://repo.prefix.dev/conda-forge/linux-64/markupsafe-3.0.2-py311h2dc5d0c_1.conda hash: md5: 6565a715337ae279e351d0abd8ffe88a sha256: 0291d90706ac6d3eea73e66cd290ef6d805da3fad388d1d476b8536ec92ca9a8 @@ -2534,7 +2589,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://repo.prefix.dev/conda-forge/win-64/markupsafe-3.0.2-py311h5082efb_1.conda hash: md5: c1f2ddad665323278952a453912dc3bd sha256: 6f756e13ccf1a521d3960bd3cadddf564e013e210eaeced411c5259f070da08e @@ -2561,7 +2616,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://repo.prefix.dev/conda-forge/linux-64/matplotlib-base-3.8.4-py311ha4ca890_2.conda hash: md5: 0848e2084cbb57014f232f48568561af sha256: 19a65ac35a9f48b3f0277b723b832052728d276e70c0ad1057f5b5bbe1f1ba28 @@ -2588,7 +2643,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://repo.prefix.dev/conda-forge/win-64/matplotlib-base-3.8.4-py311h9b31f6e_2.conda hash: md5: dbf84485273ba5fea107ef140a173e30 sha256: 857ed04795a1e3ea1939d8990fe0f6122b086445f72f92afe50de74ae19977d0 @@ -2600,7 +2655,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://repo.prefix.dev/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda hash: md5: 827064ddfe0de2917fb29f1da4f8f533 sha256: 9b0037171dad0100f0296699a11ae7d355237b55f42f9094aebc0f41512d96a1 @@ -2612,7 +2667,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://repo.prefix.dev/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda hash: md5: 827064ddfe0de2917fb29f1da4f8f533 sha256: 9b0037171dad0100f0296699a11ae7d355237b55f42f9094aebc0f41512d96a1 @@ -2626,7 +2681,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://repo.prefix.dev/conda-forge/linux-64/metis-5.1.0-hd0bcaf9_1007.conda hash: md5: 28eb714416de4eb83e2cbc47e99a1b45 sha256: e8a00971e6d00bd49f375c5d8d005b37a9abba0b1768533aed0f90a422bf5cc7 @@ -2640,7 +2695,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://repo.prefix.dev/conda-forge/linux-64/mkl-2024.2.2-ha957f24_16.conda hash: md5: 1459379c79dda834673426504d52b319 sha256: 77906b0acead8f86b489da46f53916e624897338770dbf70b04b8f673c9273c1 @@ -2653,7 +2708,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://repo.prefix.dev/conda-forge/win-64/mkl-2024.2.2-h66d3029_15.conda hash: md5: 302dff2807f2927b3e9e0d19d60121de sha256: 20e52b0389586d0b914a49cd286c5ccc9c47949bed60ca6df004d1d295f2edbd @@ -2669,7 +2724,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://repo.prefix.dev/conda-forge/linux-64/msgpack-python-1.1.0-py311hd18a35c_0.conda hash: md5: 682f76920687f7d9283039eb542fdacf sha256: 9033fa7084cbfd10e1b7ed3b74cee17169a0731ec98244d05c372fc4a935d5c9 @@ -2685,7 +2740,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://repo.prefix.dev/conda-forge/win-64/msgpack-python-1.1.0-py311h3257749_0.conda hash: md5: 36562593204b081d0da8a8bfabfb278b sha256: 4e6a7979b434308ce5588970cb613952e3340bb2f9e63aaad7e5069ef1f08d1d @@ -2696,10 +2751,10 @@ 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://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 @@ -2717,10 +2772,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://packages.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 @@ -2730,14 +2785,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://packages.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 @@ -2746,7 +2801,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://repo.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 hash: md5: 2ba8498c1018c1e9c61eb99b973dfe19 sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 @@ -2758,7 +2813,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://repo.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 hash: md5: 2ba8498c1018c1e9c61eb99b973dfe19 sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 @@ -2771,7 +2826,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://repo.prefix.dev/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda hash: md5: 47e340acb35de30501a76c7c799c41d7 sha256: 3fde293232fa3fca98635e1167de6b7c7fda83caf24b9d6c91ec9eefb4f4d586 @@ -2790,7 +2845,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://repo.prefix.dev/conda-forge/linux-64/numcodecs-0.15.1-py311h7db5c69_0.conda hash: md5: 969c10aa2c0b994e33a436bea697e214 sha256: 38794beadfe994f21ae105ec3a888999a002f341a3fb7e8e870fef8212cebfef @@ -2809,7 +2864,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://repo.prefix.dev/conda-forge/win-64/numcodecs-0.15.1-py311hcf9f919_0.conda hash: md5: 89d8435b5b12da6eb043309c45b022f2 sha256: 5c6ece778e8abaed89c5c7529f4fe276fa2ab72013e27301dd08a649e37f1f05 @@ -2827,7 +2882,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://repo.prefix.dev/conda-forge/linux-64/numpy-1.26.4-py311h64a7726_0.conda hash: md5: a502d7aad449a1206efb366d6a12c52d sha256: 3f4365e11b28e244c95ba8579942b0802761ba7bb31c026f50d1a9ea9c728149 @@ -2846,7 +2901,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://repo.prefix.dev/conda-forge/win-64/numpy-1.26.4-py311h0b4df5a_0.conda hash: md5: 7b240edd44fd7a0991aa409b07cee776 sha256: 14116e72107de3089cc58119a5ce5905c22abf9a715c9fe41f8ac14db0992326 @@ -2863,7 +2918,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://repo.prefix.dev/conda-forge/linux-64/openjpeg-2.5.3-h5fbd93e_0.conda hash: md5: 9e5816bc95d285c115a3ebc2f8563564 sha256: 5bee706ea5ba453ed7fd9da7da8380dd88b865c8d30b5aaec14d2b6dd32dbc39 @@ -2880,7 +2935,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://repo.prefix.dev/conda-forge/win-64/openjpeg-2.5.3-h4d64b90_0.conda hash: md5: fc050366dd0b8313eb797ed1ffef3a29 sha256: 410175815df192f57a07c29a6b3fdd4231937173face9e63f0830c1234272ce3 @@ -2894,7 +2949,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://repo.prefix.dev/conda-forge/linux-64/openssl-3.5.0-h7b32b05_0.conda hash: md5: bb539841f2a3fde210f387d00ed4bb9d sha256: 38285d280f84f1755b7c54baf17eccf2e3e696287954ce0adca16546b85ee62c @@ -2909,34 +2964,34 @@ 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://repo.prefix.dev/conda-forge/win-64/openssl-3.5.0-ha4e3fda_0.conda hash: md5: 4ea7db75035eb8c13fa680bb90171e08 sha256: 43dd7f56da142ca83c614c8b0085589650ae9032b351a901c190e48eefc73675 category: main optional: false - 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 + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda hash: - md5: 3bfed7e6228ebf2f7b9eaa47f1b4e2aa - sha256: da157b19bcd398b9804c5c52fc000fcb8ab0525bdb9c70f95beaa0bb42f85af1 + md5: 58335b26c38bf4a20f399384c33cbcf9 + sha256: 289861ed0c13a15d7bbb408796af4de72c2fe67e2bcb0de98f4c3fce259d7991 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 + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda hash: - md5: 3bfed7e6228ebf2f7b9eaa47f1b4e2aa - sha256: da157b19bcd398b9804c5c52fc000fcb8ab0525bdb9c70f95beaa0bb42f85af1 + md5: 58335b26c38bf4a20f399384c33cbcf9 + sha256: 289861ed0c13a15d7bbb408796af4de72c2fe67e2bcb0de98f4c3fce259d7991 category: main optional: false - name: partd @@ -2947,7 +3002,7 @@ package: locket: '' python: '>=3.9' toolz: '' - url: https://packages.prefix.dev/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 @@ -2961,7 +3016,7 @@ package: locket: '' python: '>=3.9' toolz: '' - url: https://packages.prefix.dev/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 @@ -2984,7 +3039,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://repo.prefix.dev/conda-forge/linux-64/pillow-10.3.0-py311h82a398c_1.conda hash: md5: 4dc0b6fcf0bc041a1bfb763fa6e5302f sha256: ce420bfba7ed8641aa376b4446e16299fcb37113c27e9655503fd5d517cb7fcd @@ -3009,38 +3064,38 @@ 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://repo.prefix.dev/conda-forge/win-64/pillow-10.3.0-py311h5592be9_1.conda hash: md5: 034f612fd103c2c1058538533598ce4f sha256: 5404b51b1c93180940e0f8340e905d435bf187224512bab2993c5b7f30aa0615 category: main optional: false - name: pip - version: 25.0.1 + version: '25.1' manager: conda platform: linux-64 dependencies: 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://repo.prefix.dev/conda-forge/noarch/pip-25.1-pyh8b19718_0.conda hash: - md5: 79b5c1440aedc5010f687048d9103628 - sha256: 585940f09d87787f79f73ff5dff8eb2af8a67e5bec5eebf2f553cd26c840ba69 + md5: 2247aa245832ea47e8b971bef73d7094 + sha256: 81a7ffe7b7ca8718bc09476a258cd48754e1d4e1bd3b80a6fef41ffb71e3bfc8 category: main optional: false - name: pip - version: 25.0.1 + version: '25.1' manager: conda platform: win-64 dependencies: 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://repo.prefix.dev/conda-forge/noarch/pip-25.1-pyh8b19718_0.conda hash: - md5: 79b5c1440aedc5010f687048d9103628 - sha256: 585940f09d87787f79f73ff5dff8eb2af8a67e5bec5eebf2f553cd26c840ba69 + md5: 2247aa245832ea47e8b971bef73d7094 + sha256: 81a7ffe7b7ca8718bc09476a258cd48754e1d4e1bd3b80a6fef41ffb71e3bfc8 category: main optional: false - name: platformdirs @@ -3049,7 +3104,7 @@ package: platform: linux-64 dependencies: python: '' - url: https://packages.prefix.dev/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 @@ -3061,7 +3116,7 @@ package: platform: win-64 dependencies: python: '' - url: https://packages.prefix.dev/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 @@ -3073,7 +3128,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://repo.prefix.dev/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_1.conda hash: md5: e9dcbce5f45f9ee500e728ae58b605b6 sha256: 122433fc5318816b8c69283aaf267c73d87aa2d09ce39f64c9805c9a3b264819 @@ -3085,7 +3140,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://repo.prefix.dev/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_1.conda hash: md5: e9dcbce5f45f9ee500e728ae58b605b6 sha256: 122433fc5318816b8c69283aaf267c73d87aa2d09ce39f64c9805c9a3b264819 @@ -3100,7 +3155,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://repo.prefix.dev/conda-forge/linux-64/psutil-7.0.0-py311h9ecbd09_0.conda hash: md5: 1a390a54b2752169f5ba4ada5a8108e4 sha256: 50d0944b59a9c6dfa6b99cc2632bf8bc9bef9c7c93710390ded6eac953f0182d @@ -3116,7 +3171,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://repo.prefix.dev/conda-forge/win-64/psutil-7.0.0-py311he736701_0.conda hash: md5: fc2a628caa77146532ee4747894bccd5 sha256: e3844e26821651f744ea57a1538a8f970872f15a1c6eb38fc208f0efd1c3706c @@ -3129,7 +3184,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://repo.prefix.dev/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda hash: md5: b3c17d95b5a10c6e64a21fa17573e70e sha256: 9c88f8c64590e9567c6c80823f0328e58d3b1efb0e1c539c0315ceca764e0973 @@ -3143,7 +3198,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://repo.prefix.dev/conda-forge/win-64/pthread-stubs-0.4-h0e40799_1002.conda hash: md5: 3c8f2573569bb816483e5cf57efbbe29 sha256: 7e446bafb4d692792310ed022fe284e848c6a868c861655a92435af7368bae7b @@ -3155,7 +3210,7 @@ package: platform: linux-64 dependencies: python: '' - url: https://packages.prefix.dev/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 @@ -3167,7 +3222,7 @@ package: platform: win-64 dependencies: python: '' - url: https://packages.prefix.dev/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 @@ -3184,7 +3239,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://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.3-pyh3cfb1c2_0.conda hash: md5: 3c6f7f8ae9b9c177ad91ccc187912756 sha256: 89183785b09ebe9f9e65710057d7c41e9d21d4a9ad05e068850e18669655d5a8 @@ -3201,7 +3256,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://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.3-pyh3cfb1c2_0.conda hash: md5: 3c6f7f8ae9b9c177ad91ccc187912756 sha256: 89183785b09ebe9f9e65710057d7c41e9d21d4a9ad05e068850e18669655d5a8 @@ -3217,7 +3272,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://repo.prefix.dev/conda-forge/linux-64/pydantic-core-2.33.1-py311h687327b_0.conda hash: md5: 778b623dbbec0be25624b5ebd405a0a8 sha256: f293f7f2d0fe11c8334b3671944b310c13c1552dbe25ea93043d09bede814cd5 @@ -3234,7 +3289,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://repo.prefix.dev/conda-forge/win-64/pydantic-core-2.33.1-py311ha250665_0.conda hash: md5: 549cc2f2754ba510f7616af5c5b8aff6 sha256: bdbfb2e0a7e9f37071d1619dd9af33668bb47ba8f0117846742a5a7de3184bff @@ -3252,7 +3307,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://repo.prefix.dev/conda-forge/linux-64/pydiso-0.1.2-py311h19ea254_0.conda hash: md5: c167267bfdb40fd2b924e06e9c7241a5 sha256: e16eed2ff0eb8f45868ca47d61322052530475a292fcda8101d5c1241c428b27 @@ -3271,7 +3326,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://repo.prefix.dev/conda-forge/win-64/pydiso-0.1.2-py311h66870c1_0.conda hash: md5: 84cec6512899d9afc17baaad404ad74c sha256: 72cbc2c46902724c61f7b745e4c3538f8814053fafb274aecae7c6b70ae92862 @@ -3283,7 +3338,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://repo.prefix.dev/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda hash: md5: 232fb4577b6687b2d503ef8e254270c9 sha256: 28a3e3161390a9d23bc02b4419448f8d27679d9e2c250e29849e37749c8de86b @@ -3295,7 +3350,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://repo.prefix.dev/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda hash: md5: 232fb4577b6687b2d503ef8e254270c9 sha256: 28a3e3161390a9d23bc02b4419448f8d27679d9e2c250e29849e37749c8de86b @@ -3316,7 +3371,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://repo.prefix.dev/conda-forge/noarch/pylint-3.3.6-pyh29332c3_0.conda hash: md5: 8242cc62822cc8a17f53d24d4efa75f4 sha256: 3e3e35b2cbb4b1ca3063fc2d6f44a85ac189e0935f00ed8fbe8e4713c0d00b99 @@ -3337,7 +3392,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://repo.prefix.dev/conda-forge/noarch/pylint-3.3.6-pyh29332c3_0.conda hash: md5: 8242cc62822cc8a17f53d24d4efa75f4 sha256: 3e3e35b2cbb4b1ca3063fc2d6f44a85ac189e0935f00ed8fbe8e4713c0d00b99 @@ -3353,7 +3408,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://repo.prefix.dev/conda-forge/noarch/pymatsolver-0.3.1-pyh48887ae_201.conda hash: md5: b6805e522702eabf2ebbd236490d5eed sha256: d49ad9b58b9eeae204a3677cafc389c00c7f0f830ef76f481ab9aaf3e0260bad @@ -3369,7 +3424,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://repo.prefix.dev/conda-forge/noarch/pymatsolver-0.3.1-pyh48887ae_201.conda hash: md5: b6805e522702eabf2ebbd236490d5eed sha256: d49ad9b58b9eeae204a3677cafc389c00c7f0f830ef76f481ab9aaf3e0260bad @@ -3381,7 +3436,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://repo.prefix.dev/conda-forge/noarch/pyparsing-3.2.3-pyhd8ed1ab_1.conda hash: md5: 513d3c262ee49b54a8fec85c5bc99764 sha256: b92afb79b52fcf395fd220b29e0dd3297610f2059afac45298d44e00fcbf23b6 @@ -3393,7 +3448,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://repo.prefix.dev/conda-forge/noarch/pyparsing-3.2.3-pyhd8ed1ab_1.conda hash: md5: 513d3c262ee49b54a8fec85c5bc99764 sha256: b92afb79b52fcf395fd220b29e0dd3297610f2059afac45298d44e00fcbf23b6 @@ -3406,7 +3461,7 @@ package: dependencies: __unix: '' python: '>=3.9' - url: https://packages.prefix.dev/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 @@ -3420,7 +3475,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://repo.prefix.dev/conda-forge/noarch/pysocks-1.7.1-pyh09c184e_7.conda hash: md5: e2fd202833c4a981ce8a65974fe4abd1 sha256: d016e04b0e12063fbee4a2d5fbb9b39a8d191b5a0042f0b8459188aedeabb0ca @@ -3438,7 +3493,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://repo.prefix.dev/conda-forge/noarch/pytest-8.3.5-pyhd8ed1ab_0.conda hash: md5: c3c9316209dec74a705a36797970c6be sha256: 963524de7340c56615583ba7b97a6beb20d5c56a59defb59724dc2a3105169c9 @@ -3456,7 +3511,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://repo.prefix.dev/conda-forge/noarch/pytest-8.3.5-pyhd8ed1ab_0.conda hash: md5: c3c9316209dec74a705a36797970c6be sha256: 963524de7340c56615583ba7b97a6beb20d5c56a59defb59724dc2a3105169c9 @@ -3471,7 +3526,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://repo.prefix.dev/conda-forge/noarch/pytest-cov-6.1.1-pyhd8ed1ab_0.conda hash: md5: 1e35d8f975bc0e984a19819aa91c440a sha256: 9961a1524f63d10bc29efdc52013ec06b0e95fb2619a250e250ff3618261d5cd @@ -3486,7 +3541,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://repo.prefix.dev/conda-forge/noarch/pytest-cov-6.1.1-pyhd8ed1ab_0.conda hash: md5: 1e35d8f975bc0e984a19819aa91c440a sha256: 9961a1524f63d10bc29efdc52013ec06b0e95fb2619a250e250ff3618261d5cd @@ -3515,7 +3570,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://repo.prefix.dev/conda-forge/linux-64/python-3.11.12-h9e4cc4f_0_cpython.conda hash: md5: b61d4fbf583b8393d9d00ec106ad3658 sha256: 028a03968eb101a681fa4966b2c52e93c8db1e934861f8d108224f51ba2c1bc9 @@ -3539,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/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 @@ -3552,7 +3607,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://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda hash: md5: 5ba79d7c71f03c678c8ead841f347d6e sha256: a50052536f1ef8516ed11a844f9413661829aa083304dc624c5925298d078d79 @@ -3565,7 +3620,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://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda hash: md5: 5ba79d7c71f03c678c8ead841f347d6e sha256: a50052536f1ef8516ed11a844f9413661829aa083304dc624c5925298d078d79 @@ -3583,7 +3638,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://repo.prefix.dev/conda-forge/linux-64/python-mumps-0.0.3-py311h4b558b0_0.conda hash: md5: 5c50e4db02aa7d89b5200773605175e1 sha256: a46217f37ead2d17a59626d8f23517ba0f3026b9dd281ec251e880b3afe4cb13 @@ -3602,7 +3657,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://repo.prefix.dev/conda-forge/win-64/python-mumps-0.0.3-py311h5bfbc98_0.conda hash: md5: 5e8a15c6501520752ca264fa7a1a762d sha256: 330afd54afd2087de0aa320be05dbbee64893359fe395067209e8c8fd9650b05 @@ -3613,10 +3668,10 @@ 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://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 @@ -3624,10 +3679,10 @@ 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://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 @@ -3636,7 +3691,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://repo.prefix.dev/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda hash: md5: bc8e3267d44011051f2eb14d22fb0960 sha256: 8d2a8bf110cc1fc3df6904091dead158ba3e614d8402a83e51ed3a8aa93cdeb0 @@ -3648,7 +3703,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://repo.prefix.dev/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda hash: md5: bc8e3267d44011051f2eb14d22fb0960 sha256: 8d2a8bf110cc1fc3df6904091dead158ba3e614d8402a83e51ed3a8aa93cdeb0 @@ -3664,7 +3719,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://repo.prefix.dev/conda-forge/linux-64/pyyaml-6.0.2-py311h2dc5d0c_2.conda hash: md5: 014417753f948da1f70d132b2de573be sha256: d107ad62ed5c62764fba9400f2c423d89adf917d687c7f2e56c3bfed605fb5b3 @@ -3681,7 +3736,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://repo.prefix.dev/conda-forge/win-64/pyyaml-6.0.2-py311h5082efb_2.conda hash: md5: e474ba674d780f0fa3b979ae9e81ba91 sha256: 6095e1d58c666f6a06c55338df09485eac34c76e43d92121d5786794e195aa4d @@ -3694,7 +3749,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://repo.prefix.dev/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda hash: md5: 283b96675859b20a825f8fa30f311446 sha256: 2d6d0c026902561ed77cd646b5021aef2d4db22e57a5b0178dfc669231e06d2c @@ -3709,7 +3764,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://repo.prefix.dev/conda-forge/noarch/readthedocs-sphinx-ext-2.2.5-pyhd8ed1ab_1.conda hash: md5: 42840a95562a02bef45e7b7fb24dcba4 sha256: e391356581919077b1639ebd13f4cbb0773acfd5710cfe4188921e8a0387dc6b @@ -3724,7 +3779,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://repo.prefix.dev/conda-forge/noarch/readthedocs-sphinx-ext-2.2.5-pyhd8ed1ab_1.conda hash: md5: 42840a95562a02bef45e7b7fb24dcba4 sha256: e391356581919077b1639ebd13f4cbb0773acfd5710cfe4188921e8a0387dc6b @@ -3740,7 +3795,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://repo.prefix.dev/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda hash: md5: a9b9368f3701a417eac9edbcae7cb737 sha256: d701ca1136197aa121bbbe0e8c18db6b5c94acbd041c2b43c70e5ae104e1d8ad @@ -3756,7 +3811,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://repo.prefix.dev/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda hash: md5: a9b9368f3701a417eac9edbcae7cb737 sha256: d701ca1136197aa121bbbe0e8c18db6b5c94acbd041c2b43c70e5ae104e1d8ad @@ -3770,7 +3825,7 @@ package: libspatialindex: '>=2.0.0,<2.0.1.0a0' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://packages.prefix.dev/conda-forge/linux-64/rtree-1.2.0-py311ha1603b9_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/rtree-1.2.0-py311ha1603b9_1.conda hash: md5: 0737315cc9761f4060f9d52d12cea92e sha256: 9b9d5be1924ced85110f635331379354ba57d44c5416c5709070ddb111048ef6 @@ -3784,7 +3839,7 @@ package: libspatialindex: '>=2.0.0,<2.0.1.0a0' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://packages.prefix.dev/conda-forge/win-64/rtree-1.2.0-py311h44d53c4_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/rtree-1.2.0-py311h44d53c4_1.conda hash: md5: a182e3a376af719a275136bfdbc3a70e sha256: 78fecaad4f4b25ba60dc55af7fb5326d1b3512b8ed240eb45aabc1e86e50e77e @@ -3804,7 +3859,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://repo.prefix.dev/conda-forge/linux-64/scikit-learn-1.4.2-py311he08f58d_1.conda hash: md5: fd4a80e35c05513590b33c83fc81dcc7 sha256: b818f7df6ae949012a38b41b6577ac2319569971b1a063c0386447ec2c6c09ed @@ -3824,7 +3879,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://repo.prefix.dev/conda-forge/win-64/scikit-learn-1.4.2-py311hdcb8d17_1.conda hash: md5: 4179839852432a4e95b5ff86dd5faa9c sha256: e38cac2faa50b04ae06da6a7c9690ad8f893f2b3318b052ac15710221f32e231 @@ -3846,7 +3901,7 @@ package: numpy: '>=1.23.5' 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://repo.prefix.dev/conda-forge/linux-64/scipy-1.14.1-py311he9a78e4_2.conda hash: md5: c4aee8cadc4c9fc9a91aca0803473690 sha256: b28d91a55205b886308da82428cd522e9dce0ef912445a2e9d89318379c15759 @@ -3866,34 +3921,34 @@ 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-py311hf16d85f_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/scipy-1.14.1-py311hf16d85f_2.conda hash: md5: 8d3393f64df60e48be00d06ccb63bb18 sha256: ef98270586c1dfb551f9ff868312554f248f155406f924b91df07cd46c14d302 category: main optional: false - name: setuptools - version: 78.1.0 + version: 80.1.0 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/setuptools-78.1.0-pyhff2d567_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/setuptools-80.1.0-pyhff2d567_0.conda hash: - md5: a42da9837e46c53494df0044c3eb1f53 - sha256: d4c74d2140f2fbc72fe5320cbd65f3fd1d1f7832ab4d7825c37c38ab82440ae2 + md5: f6f72d0837c79eaec77661be43e8a691 + sha256: 777d34ed359cedd5a5004c930077c101bb3b70e5fbb04d29da5058d75b0ba487 category: main optional: false - name: setuptools - version: 78.1.0 + version: 80.1.0 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/setuptools-78.1.0-pyhff2d567_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/setuptools-80.1.0-pyhff2d567_0.conda hash: - md5: a42da9837e46c53494df0044c3eb1f53 - sha256: d4c74d2140f2fbc72fe5320cbd65f3fd1d1f7832ab4d7825c37c38ab82440ae2 + md5: f6f72d0837c79eaec77661be43e8a691 + sha256: 777d34ed359cedd5a5004c930077c101bb3b70e5fbb04d29da5058d75b0ba487 category: main optional: false - name: six @@ -3902,7 +3957,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://repo.prefix.dev/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda hash: md5: a451d576819089b0d672f18768be0f65 sha256: 41db0180680cc67c3fa76544ffd48d6a5679d96f4b71d7498a759e94edc9a2db @@ -3914,7 +3969,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://repo.prefix.dev/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda hash: md5: a451d576819089b0d672f18768be0f65 sha256: 41db0180680cc67c3fa76544ffd48d6a5679d96f4b71d7498a759e94edc9a2db @@ -3926,7 +3981,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://repo.prefix.dev/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 4d22a9315e78c6827f806065957d566e sha256: a0fd916633252d99efb6223b1050202841fa8d2d53dacca564b0ed77249d3228 @@ -3938,7 +3993,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://repo.prefix.dev/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 4d22a9315e78c6827f806065957d566e sha256: a0fd916633252d99efb6223b1050202841fa8d2d53dacca564b0ed77249d3228 @@ -3950,7 +4005,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://repo.prefix.dev/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_1.conda hash: md5: 0401a17ae845fa72c7210e206ec5647d sha256: d1e3e06b5cf26093047e63c8cc77b70d970411c5cbc0cb1fad461a8a8df599f7 @@ -3962,7 +4017,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://repo.prefix.dev/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_1.conda hash: md5: 0401a17ae845fa72c7210e206ec5647d sha256: d1e3e06b5cf26093047e63c8cc77b70d970411c5cbc0cb1fad461a8a8df599f7 @@ -3991,7 +4046,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://repo.prefix.dev/conda-forge/noarch/sphinx-5.3.0-pyhd8ed1ab_0.tar.bz2 hash: md5: f9e1fcfe235d655900bfeb6aee426472 sha256: f11fd5fb4ae2c65f41ae86e7408e3ab44844898d928264aa9e89929fffc685c8 @@ -4020,7 +4075,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://repo.prefix.dev/conda-forge/noarch/sphinx-5.3.0-pyhd8ed1ab_0.tar.bz2 hash: md5: f9e1fcfe235d655900bfeb6aee426472 sha256: f11fd5fb4ae2c65f41ae86e7408e3ab44844898d928264aa9e89929fffc685c8 @@ -4033,7 +4088,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 16e3f039c0aa6446513e94ab18a8784b sha256: d7433a344a9ad32a680b881c81b0034bc61618d12c39dd6e3309abeffa9577ba @@ -4046,7 +4101,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 16e3f039c0aa6446513e94ab18a8784b sha256: d7433a344a9ad32a680b881c81b0034bc61618d12c39dd6e3309abeffa9577ba @@ -4059,7 +4114,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 910f28a05c178feba832f842155cbfff sha256: 55d5076005d20b84b20bee7844e686b7e60eb9f683af04492e598a622b12d53d @@ -4072,7 +4127,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 910f28a05c178feba832f842155cbfff sha256: 55d5076005d20b84b20bee7844e686b7e60eb9f683af04492e598a622b12d53d @@ -4085,7 +4140,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_1.conda hash: md5: e9fb3fe8a5b758b4aff187d434f94f03 sha256: c1492c0262ccf16694bdcd3bb62aa4627878ea8782d5cd3876614ffeb62b3996 @@ -4098,7 +4153,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_1.conda hash: md5: e9fb3fe8a5b758b4aff187d434f94f03 sha256: c1492c0262ccf16694bdcd3bb62aa4627878ea8782d5cd3876614ffeb62b3996 @@ -4110,7 +4165,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_1.conda hash: md5: fa839b5ff59e192f411ccc7dae6588bb sha256: 578bef5ec630e5b2b8810d898bbbf79b9ae66d49b7938bcc3efc364e679f2a62 @@ -4122,7 +4177,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_1.conda hash: md5: fa839b5ff59e192f411ccc7dae6588bb sha256: 578bef5ec630e5b2b8810d898bbbf79b9ae66d49b7938bcc3efc364e679f2a62 @@ -4135,7 +4190,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 00534ebcc0375929b45c3039b5ba7636 sha256: c664fefae4acdb5fae973bdde25836faf451f41d04342b64a358f9a7753c92ca @@ -4148,7 +4203,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 00534ebcc0375929b45c3039b5ba7636 sha256: c664fefae4acdb5fae973bdde25836faf451f41d04342b64a358f9a7753c92ca @@ -4161,7 +4216,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda hash: md5: 3bc61f7161d28137797e038263c04c54 sha256: 64d89ecc0264347486971a94487cb8d7c65bfc0176750cf7502b8a272f4ab557 @@ -4174,7 +4229,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda hash: md5: 3bc61f7161d28137797e038263c04c54 sha256: 64d89ecc0264347486971a94487cb8d7c65bfc0176750cf7502b8a272f4ab557 @@ -4189,7 +4244,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://repo.prefix.dev/conda-forge/linux-64/tbb-2021.13.0-hceb3a55_1.conda hash: md5: ba7726b8df7b9d34ea80e82b097a4893 sha256: 65463732129899770d54b1fbf30e1bb82fdebda9d7553caf08d23db4590cd691 @@ -4204,7 +4259,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://repo.prefix.dev/conda-forge/win-64/tbb-2021.13.0-h62715c5_1.conda hash: md5: 9190dd0a23d925f7602f9628b3aed511 sha256: 03cc5442046485b03dd1120d0f49d35a7e522930a2ab82f275e938e17b07b302 @@ -4216,7 +4271,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://repo.prefix.dev/conda-forge/noarch/tblib-3.1.0-pyhd8ed1ab_0.conda hash: md5: a15c62b8a306b8978f094f76da2f903f sha256: a83c83f5e622a2f34fb1d179c55c3ff912429cd0a54f9f3190ae44a0fdba2ad2 @@ -4228,7 +4283,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://repo.prefix.dev/conda-forge/noarch/tblib-3.1.0-pyhd8ed1ab_0.conda hash: md5: a15c62b8a306b8978f094f76da2f903f sha256: a83c83f5e622a2f34fb1d179c55c3ff912429cd0a54f9f3190ae44a0fdba2ad2 @@ -4240,7 +4295,7 @@ package: platform: linux-64 dependencies: python: '>=3.8' - url: https://packages.prefix.dev/conda-forge/noarch/threadpoolctl-3.3.0-pyhc1e730c_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/threadpoolctl-3.3.0-pyhc1e730c_0.conda hash: md5: 698d2d2b621640bddb9191f132967c9f sha256: 5ba8bd3f2d49b3b860eb4481ca9505c57d4427212eb12cadd2b351309d5c28e6 @@ -4252,7 +4307,7 @@ package: platform: win-64 dependencies: python: '>=3.8' - url: https://packages.prefix.dev/conda-forge/noarch/threadpoolctl-3.3.0-pyhc1e730c_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/threadpoolctl-3.3.0-pyhc1e730c_0.conda hash: md5: 698d2d2b621640bddb9191f132967c9f sha256: 5ba8bd3f2d49b3b860eb4481ca9505c57d4427212eb12cadd2b351309d5c28e6 @@ -4265,7 +4320,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://repo.prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda hash: md5: d453b98d9c83e71da0741bb0ff4d76bc sha256: e0569c9caa68bf476bead1bed3d79650bb080b532c64a4af7d8ca286c08dea4e @@ -4279,7 +4334,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://repo.prefix.dev/conda-forge/win-64/tk-8.6.13-h5226925_1.conda hash: md5: fc048363eb8f03cd1737600a5d08aafe sha256: 2c4e914f521ccb2718946645108c9bd3fc3216ba69aea20c2c3cedbd8db32bb1 @@ -4291,7 +4346,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://repo.prefix.dev/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_1.conda hash: md5: b0dd904de08b7db706167240bf37b164 sha256: 34f3a83384ac3ac30aefd1309e69498d8a4aa0bf2d1f21c645f79b180e378938 @@ -4303,7 +4358,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://repo.prefix.dev/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_1.conda hash: md5: b0dd904de08b7db706167240bf37b164 sha256: 34f3a83384ac3ac30aefd1309e69498d8a4aa0bf2d1f21c645f79b180e378938 @@ -4315,7 +4370,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://repo.prefix.dev/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda hash: md5: ac944244f1fed2eb49bae07193ae8215 sha256: 18636339a79656962723077df9a56c0ac7b8a864329eb8f847ee3d38495b863e @@ -4327,7 +4382,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://repo.prefix.dev/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda hash: md5: ac944244f1fed2eb49bae07193ae8215 sha256: 18636339a79656962723077df9a56c0ac7b8a864329eb8f847ee3d38495b863e @@ -4339,7 +4394,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://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.2-pyha770c72_1.conda hash: md5: 1d9ab4fc875c52db83f9c9b40af4e2c8 sha256: 986fae65f5568e95dbf858d08d77a0f9cca031345a98550f1d4b51d36d8811e2 @@ -4351,7 +4406,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://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.2-pyha770c72_1.conda hash: md5: 1d9ab4fc875c52db83f9c9b40af4e2c8 sha256: 986fae65f5568e95dbf858d08d77a0f9cca031345a98550f1d4b51d36d8811e2 @@ -4363,7 +4418,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://repo.prefix.dev/conda-forge/noarch/toolz-1.0.0-pyhd8ed1ab_1.conda hash: md5: 40d0ed782a8aaa16ef248e68c06c168d sha256: eda38f423c33c2eaeca49ed946a8d3bf466cc3364970e083a65eb2fd85258d87 @@ -4375,7 +4430,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://repo.prefix.dev/conda-forge/noarch/toolz-1.0.0-pyhd8ed1ab_1.conda hash: md5: 40d0ed782a8aaa16ef248e68c06c168d sha256: eda38f423c33c2eaeca49ed946a8d3bf466cc3364970e083a65eb2fd85258d87 @@ -4390,7 +4445,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://repo.prefix.dev/conda-forge/linux-64/tornado-6.4.2-py311h9ecbd09_0.conda hash: md5: df3aee9c3e44489257a840b8354e77b9 sha256: afa3489113154b5cb0724b0bf120b62df91f426dabfe5d02f2ba09e90d346b28 @@ -4406,7 +4461,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://repo.prefix.dev/conda-forge/win-64/tornado-6.4.2-py311he736701_0.conda hash: md5: 7e33077ce1bc0bf45c45a92e37432f16 sha256: 7e313f1724e5eb7d13f7a1ebd6026a378f3f58a638ba7cdc3bd452c01323bb29 @@ -4419,7 +4474,7 @@ package: dependencies: colorama: '' python: '>=3.9' - url: https://packages.prefix.dev/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 @@ -4432,7 +4487,7 @@ package: dependencies: colorama: '' python: '>=3.9' - url: https://packages.prefix.dev/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 @@ -4445,7 +4500,7 @@ package: dependencies: numpy: '' python: '>=2.7' - url: https://packages.prefix.dev/conda-forge/noarch/trimesh-4.1.8-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/trimesh-4.1.8-pyhd8ed1ab_0.conda hash: md5: 78302527eb6c9d18b07a91e6a72ef957 sha256: 021110c37eca2f0fca85ba6ac4576c509d23079758f63942e2f9a6954282f2ce @@ -4458,7 +4513,7 @@ package: dependencies: numpy: '' python: '>=2.7' - url: https://packages.prefix.dev/conda-forge/noarch/trimesh-4.1.8-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/trimesh-4.1.8-pyhd8ed1ab_0.conda hash: md5: 78302527eb6c9d18b07a91e6a72ef957 sha256: 021110c37eca2f0fca85ba6ac4576c509d23079758f63942e2f9a6954282f2ce @@ -4470,7 +4525,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://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.13.2-h0e9735f_0.conda hash: md5: 568ed1300869dca0ba09fb750cda5dbb sha256: 4865fce0897d3cb0ffc8998219157a8325f6011c136e6fd740a9a6b169419296 @@ -4482,7 +4537,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://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.13.2-h0e9735f_0.conda hash: md5: 568ed1300869dca0ba09fb750cda5dbb sha256: 4865fce0897d3cb0ffc8998219157a8325f6011c136e6fd740a9a6b169419296 @@ -4495,7 +4550,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://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.0-pyhd8ed1ab_0.conda hash: md5: c5c76894b6b7bacc888ba25753bc8677 sha256: 172f971d70e1dbb978f6061d3f72be463d0f629155338603450d8ffe87cbf89d @@ -4508,7 +4563,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://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.0-pyhd8ed1ab_0.conda hash: md5: c5c76894b6b7bacc888ba25753bc8677 sha256: 172f971d70e1dbb978f6061d3f72be463d0f629155338603450d8ffe87cbf89d @@ -4520,7 +4575,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://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.13.2-pyh29332c3_0.conda hash: md5: 83fc6ae00127671e301c9f44254c31b8 sha256: a8aaf351e6461de0d5d47e4911257e25eec2fa409d71f3b643bb2f748bde1c08 @@ -4532,7 +4587,7 @@ package: platform: win-64 dependencies: python: '' - url: https://packages.prefix.dev/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 @@ -4543,7 +4598,7 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://packages.prefix.dev/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 @@ -4554,7 +4609,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://packages.prefix.dev/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 @@ -4565,7 +4620,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://repo.prefix.dev/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_1.conda hash: md5: 6797b005cd0f439c4c5c9ac565783700 sha256: db8dead3dd30fb1a032737554ce91e2819b43496a0db09927edf01c32b577450 @@ -4580,7 +4635,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://repo.prefix.dev/conda-forge/linux-64/unicodedata2-16.0.0-py311h9ecbd09_0.conda hash: md5: 51a12678b609f5794985fda8372b1a49 sha256: e786fb0925515fffc83e393d2a0e2814eaf9be8a434f1982b399841a2c07980b @@ -4596,7 +4651,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://repo.prefix.dev/conda-forge/win-64/unicodedata2-16.0.0-py311he736701_0.conda hash: md5: 5ec4da89151e9d55f9ecad019f2d1e58 sha256: 3f626553bfb49ac756cf40e0c10ecb3a915a86f64e036924ab956b37ad1fa9f4 @@ -4612,7 +4667,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://repo.prefix.dev/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda hash: md5: c1e349028e0052c4eea844e94f773065 sha256: a25403b76f7f03ca1a906e1ef0f88521edded991b9897e7fed56a3e334b3db8c @@ -4628,7 +4683,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://repo.prefix.dev/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda hash: md5: c1e349028e0052c4eea844e94f773065 sha256: a25403b76f7f03ca1a906e1ef0f88521edded991b9897e7fed56a3e334b3db8c @@ -4640,7 +4695,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://repo.prefix.dev/conda-forge/win-64/vc-14.3-h2b53caa_26.conda hash: md5: d3f0381e38093bde620a8d85f266ae55 sha256: 7a685b5c37e9713fa314a0d26b8b1d7a2e6de5ab758698199b5d5b6dba2e3ce1 @@ -4652,7 +4707,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://repo.prefix.dev/conda-forge/win-64/vc14_runtime-14.42.34438-hfd919c2_26.conda hash: md5: 91651a36d31aa20c7ba36299fb7068f4 sha256: 30dcb71bb166e351aadbdc18f1718757c32cdaa0e1e5d9368469ee44f6bf4709 @@ -4664,7 +4719,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://repo.prefix.dev/conda-forge/win-64/vs2015_runtime-14.42.34438-h7142326_26.conda hash: md5: 3357e4383dbce31eed332008ede242ab sha256: 432f2937206f1ad4a77e39f84fabc1ce7d2472b669836fb72bd2bfd19a2defc9 @@ -4676,7 +4731,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://repo.prefix.dev/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda hash: md5: 75cb7132eb58d97896e173ef12ac9986 sha256: 1b34021e815ff89a4d902d879c3bd2040bc1bd6169b32e9427497fa05c55f1ce @@ -4688,7 +4743,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://repo.prefix.dev/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda hash: md5: 75cb7132eb58d97896e173ef12ac9986 sha256: 1b34021e815ff89a4d902d879c3bd2040bc1bd6169b32e9427497fa05c55f1ce @@ -4701,7 +4756,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://repo.prefix.dev/conda-forge/noarch/win_inet_pton-1.1.0-pyh7428d3b_8.conda hash: md5: 46e441ba871f524e2b067929da3051c2 sha256: 93807369ab91f230cf9e6e2a237eaa812492fe00face5b38068735858fba954f @@ -4716,7 +4771,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://repo.prefix.dev/conda-forge/linux-64/wrapt-1.17.2-py311h9ecbd09_0.conda hash: md5: c4bb961f5a2020837fe3f7f30fadc2e1 sha256: e383de6512e65b5a227e7b0e1a34ffc441484044096a23ca4d3b6eb53a64d261 @@ -4732,7 +4787,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://repo.prefix.dev/conda-forge/win-64/wrapt-1.17.2-py311he736701_0.conda hash: md5: 370ad80d8d1a4012e6393873ddbd7d9b sha256: 0cd8f63008d6e24576884461087b0145f388eadc32737b7e6ed57c8e67a2ae85 @@ -4745,7 +4800,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://repo.prefix.dev/conda-forge/linux-64/xorg-libxau-1.0.12-hb9d3cd8_0.conda hash: md5: f6ebe2cb3f82ba6c057dde5d9debe4f7 sha256: ed10c9283974d311855ae08a16dfd7e56241fac632aec3b92e3cfe73cff31038 @@ -4759,7 +4814,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://repo.prefix.dev/conda-forge/win-64/xorg-libxau-1.0.12-h0e40799_0.conda hash: md5: 2ffbfae4548098297c033228256eb96e sha256: 047836241b2712aab1e29474a6f728647bff3ab57de2806b0bb0a6cf9a2d2634 @@ -4772,7 +4827,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://repo.prefix.dev/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb9d3cd8_0.conda hash: md5: 8035c64cb77ed555e3f150b7b3972480 sha256: 6b250f3e59db07c2514057944a3ea2044d6a8cdde8a47b6497c254520fade1ee @@ -4786,7 +4841,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://repo.prefix.dev/conda-forge/win-64/xorg-libxdmcp-1.1.5-h0e40799_0.conda hash: md5: 8393c0f7e7870b4eb45553326f81f0ff sha256: 9075f98dcaa8e9957e4a3d9d30db05c7578a536950a31c200854c5c34e1edb2c @@ -4798,7 +4853,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://repo.prefix.dev/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2 hash: md5: 4cb3ad778ec2d5a7acbdf254eb1c42ae sha256: a4e34c710eeb26945bdbdaba82d3d74f60a78f54a874ec10d373811a5d217535 @@ -4811,7 +4866,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://repo.prefix.dev/conda-forge/win-64/yaml-0.2.5-h8ffe710_2.tar.bz2 hash: md5: adbfb9f45d1004a26763652246a33764 sha256: 4e2246383003acbad9682c7c63178e2e715ad0eb84f03a8df1fbfba455dfedc5 @@ -4827,7 +4882,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://repo.prefix.dev/conda-forge/noarch/zarr-2.14.2-pyhd8ed1ab_0.conda hash: md5: 0c5776fe65a12a421d7ddf90411a6c3f sha256: 0f029f7efea00b8258782b5e68989fc140c227e6d9edd231d46fdd954b39d23f @@ -4843,7 +4898,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://repo.prefix.dev/conda-forge/noarch/zarr-2.14.2-pyhd8ed1ab_0.conda hash: md5: 0c5776fe65a12a421d7ddf90411a6c3f sha256: 0f029f7efea00b8258782b5e68989fc140c227e6d9edd231d46fdd954b39d23f @@ -4855,7 +4910,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://repo.prefix.dev/conda-forge/noarch/zict-3.0.0-pyhd8ed1ab_1.conda hash: md5: e52c2ef711ccf31bb7f70ca87d144b9e sha256: 5488542dceeb9f2874e726646548ecc5608060934d6f9ceaa7c6a48c61f9cc8d @@ -4867,7 +4922,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://repo.prefix.dev/conda-forge/noarch/zict-3.0.0-pyhd8ed1ab_1.conda hash: md5: e52c2ef711ccf31bb7f70ca87d144b9e sha256: 5488542dceeb9f2874e726646548ecc5608060934d6f9ceaa7c6a48c61f9cc8d @@ -4879,7 +4934,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://repo.prefix.dev/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda hash: md5: 0c3cc595284c5e8f0f9900a9b228a332 sha256: 567c04f124525c97a096b65769834b7acb047db24b15a56888a322bf3966c3e1 @@ -4891,7 +4946,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://repo.prefix.dev/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda hash: md5: 0c3cc595284c5e8f0f9900a9b228a332 sha256: 567c04f124525c97a096b65769834b7acb047db24b15a56888a322bf3966c3e1 @@ -4907,10 +4962,10 @@ 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://repo.prefix.dev/conda-forge/linux-64/zstandard-0.23.0-py311h9ecbd09_2.conda hash: - md5: 6d229edd907b6bb39961b74e3d52de9c - sha256: 1a824220227f356f35acec5ff6a4418b1ccd0238fd752ceebeb04a0bd37acf0f + md5: ca02de88df1cc3cfc8f24766ff50cb3c + sha256: 76d28240cc9fa0c3cb2cde750ecaf98716ce397afaf1ce90f8d18f5f43a122f1 category: main optional: false - name: zstandard @@ -4924,10 +4979,10 @@ 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://repo.prefix.dev/conda-forge/win-64/zstandard-0.23.0-py311he736701_2.conda hash: - md5: a4c147aaaf7e284762d7a6acc49e35e5 - sha256: 78afa8ce76763993a76da1b0120b690cba8926271cc9e0462f66155866817c84 + md5: 8355ec073f73581e29adf77c49096aed + sha256: aaae40057eac5b5996db4e6b3d8eb00d38455e67571e796135d29702a19736bd category: main optional: false - name: zstd @@ -4939,7 +4994,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://repo.prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb8e6e7a_2.conda hash: md5: 6432cb5d4ac0046c3ac0a8a0f95842f9 sha256: a4166e3d8ff4e35932510aaff7aa90772f84b4d07e9f6f83c614cba7ceefe0eb @@ -4954,7 +5009,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/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 @@ -4965,7 +5020,7 @@ package: manager: pip platform: linux-64 dependencies: - geoh5py: 0.12.0-alpha.1 + geoh5py: 0.12.0a1 numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' @@ -4982,7 +5037,7 @@ package: manager: pip platform: win-64 dependencies: - geoh5py: 0.12.0-alpha.1 + geoh5py: 0.12.0a1 numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' @@ -4995,7 +5050,7 @@ package: category: main optional: false - name: geoh5py - version: 0.12.0-alpha.1 + version: 0.12.0a1 manager: pip platform: linux-64 dependencies: @@ -5003,16 +5058,16 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@4b9756b5c9e98c709a2b23e2e558edb29e5f3416 + url: git+https://github.com/MiraGeoscience/geoh5py.git@4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 hash: - sha256: 4b9756b5c9e98c709a2b23e2e558edb29e5f3416 + sha256: 4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@4b9756b5c9e98c709a2b23e2e558edb29e5f3416 + url: git+https://github.com/MiraGeoscience/geoh5py.git@4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 category: main optional: false - name: geoh5py - version: 0.12.0-alpha.1 + version: 0.12.0a1 manager: pip platform: win-64 dependencies: @@ -5020,16 +5075,16 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@4b9756b5c9e98c709a2b23e2e558edb29e5f3416 + url: git+https://github.com/MiraGeoscience/geoh5py.git@4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 hash: - sha256: 4b9756b5c9e98c709a2b23e2e558edb29e5f3416 + sha256: 4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@4b9756b5c9e98c709a2b23e2e558edb29e5f3416 + url: git+https://github.com/MiraGeoscience/geoh5py.git@4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 category: main optional: false - name: mira-simpeg - version: 0.23.0.2a1.dev0 + version: 0.23.0.1a3.dev4+g24027d81b manager: pip platform: linux-64 dependencies: @@ -5044,16 +5099,16 @@ package: pymatsolver: '>=0.3' scipy: '>=1.8' zarr: '*' - url: git+https://github.com/MiraGeoscience/simpeg.git@8c73f0647ae51f1ca7d4af6ded7f2e63db52a428 + url: git+https://github.com/MiraGeoscience/simpeg.git@24027d81b65df99d5f582acc4497ed33df8a3396 hash: - sha256: 8c73f0647ae51f1ca7d4af6ded7f2e63db52a428 + sha256: 24027d81b65df99d5f582acc4497ed33df8a3396 source: type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@8c73f0647ae51f1ca7d4af6ded7f2e63db52a428 + url: git+https://github.com/MiraGeoscience/simpeg.git@24027d81b65df99d5f582acc4497ed33df8a3396 category: main optional: false - name: mira-simpeg - version: 0.23.0.2a1.dev0 + version: 0.23.0.1a3.dev4+g24027d81b manager: pip platform: win-64 dependencies: @@ -5068,12 +5123,12 @@ package: pymatsolver: '>=0.3' scipy: '>=1.8' zarr: '*' - url: git+https://github.com/MiraGeoscience/simpeg.git@8c73f0647ae51f1ca7d4af6ded7f2e63db52a428 + url: git+https://github.com/MiraGeoscience/simpeg.git@24027d81b65df99d5f582acc4497ed33df8a3396 hash: - sha256: 8c73f0647ae51f1ca7d4af6ded7f2e63db52a428 + sha256: 24027d81b65df99d5f582acc4497ed33df8a3396 source: type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@8c73f0647ae51f1ca7d4af6ded7f2e63db52a428 + url: git+https://github.com/MiraGeoscience/simpeg.git@24027d81b65df99d5f582acc4497ed33df8a3396 category: main optional: false - name: octree-creation-app @@ -5083,7 +5138,7 @@ package: dependencies: discretize: ==0.11.* geoapps-utils: 0.6.0-alpha.1 - geoh5py: 0.12.0-alpha.1 + geoh5py: 0.12.0a1 numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' @@ -5102,7 +5157,7 @@ package: dependencies: discretize: ==0.11.* geoapps-utils: 0.6.0-alpha.1 - geoh5py: 0.12.0-alpha.1 + geoh5py: 0.12.0a1 numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' @@ -5119,7 +5174,7 @@ package: manager: pip platform: linux-64 dependencies: - geoh5py: 0.12.0-alpha.1 + geoh5py: 0.12.0a1 numpy: '>=1.26.0,<1.27.0' url: git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 hash: @@ -5134,7 +5189,7 @@ package: manager: pip platform: win-64 dependencies: - geoh5py: 0.12.0-alpha.1 + geoh5py: 0.12.0a1 numpy: '>=1.26.0,<1.27.0' url: git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 hash: @@ -5149,12 +5204,12 @@ package: manager: pip platform: linux-64 dependencies: - dask-core: ==2025.3.* + dask: '>=2025.3,<2025.4.dev' discretize: ==0.11.* - distributed: ==2025.3.* + distributed: '>=2025.3,<2025.4.dev' geoapps-utils: 0.6.0-alpha.1 - geoh5py: 0.12.0-alpha.1 - mira-simpeg: 0.23.0.2a1.dev0 + geoh5py: 0.12.0a1 + mira-simpeg: 0.23.0.1a3.dev4+g24027d81b numpy: '>=1.26.0,<1.27.0' octree-creation-app: 0.4.0-alpha.1 param-sweeps: 0.3.0-alpha.1 @@ -5164,12 +5219,12 @@ package: scikit-learn: '>=1.4.0,<1.5.0' scipy: '>=1.14.0,<1.15.0' tqdm: '>=4.66.1,<5.0.0' - url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@7544763d9d873237256b963c32db54ce33c329c7 + url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@2d510ad712a20663dc0abb9afbead41537d10d91 hash: - sha256: 7544763d9d873237256b963c32db54ce33c329c7 + sha256: 2d510ad712a20663dc0abb9afbead41537d10d91 source: type: url - url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@7544763d9d873237256b963c32db54ce33c329c7 + url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@2d510ad712a20663dc0abb9afbead41537d10d91 category: main optional: false - name: simpeg-drivers @@ -5177,12 +5232,12 @@ package: manager: pip platform: win-64 dependencies: - dask-core: ==2025.3.* + dask: '>=2025.3,<2025.4.dev' discretize: ==0.11.* - distributed: ==2025.3.* + distributed: '>=2025.3,<2025.4.dev' geoapps-utils: 0.6.0-alpha.1 - geoh5py: 0.12.0-alpha.1 - mira-simpeg: 0.23.0.2a1.dev0 + geoh5py: 0.12.0a1 + mira-simpeg: 0.23.0.1a3.dev4+g24027d81b numpy: '>=1.26.0,<1.27.0' octree-creation-app: 0.4.0-alpha.1 param-sweeps: 0.3.0-alpha.1 @@ -5192,11 +5247,11 @@ package: scikit-learn: '>=1.4.0,<1.5.0' scipy: '>=1.14.0,<1.15.0' tqdm: '>=4.66.1,<5.0.0' - url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@7544763d9d873237256b963c32db54ce33c329c7 + url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@2d510ad712a20663dc0abb9afbead41537d10d91 hash: - sha256: 7544763d9d873237256b963c32db54ce33c329c7 + sha256: 2d510ad712a20663dc0abb9afbead41537d10d91 source: type: url - url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@7544763d9d873237256b963c32db54ce33c329c7 + url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@2d510ad712a20663dc0abb9afbead41537d10d91 category: main optional: false diff --git a/py-3.12.conda-lock.yml b/py-3.12.conda-lock.yml index f1173ee..febb1c7 100644 --- a/py-3.12.conda-lock.yml +++ b/py-3.12.conda-lock.yml @@ -35,7 +35,7 @@ package: platform: linux-64 dependencies: llvm-openmp: '>=9.0.1' - url: https://packages.prefix.dev/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://packages.prefix.dev/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 @@ -60,7 +60,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://repo.prefix.dev/conda-forge/noarch/alabaster-0.7.16-pyhd8ed1ab_0.conda hash: md5: def531a3ac77b7fb8c21d17bb5d0badb sha256: fd39ad2fabec1569bbb0dfdae34ab6ce7de6ec09dcec8638f83dad0373594069 @@ -72,7 +72,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://repo.prefix.dev/conda-forge/noarch/alabaster-0.7.16-pyhd8ed1ab_0.conda hash: md5: def531a3ac77b7fb8c21d17bb5d0badb sha256: fd39ad2fabec1569bbb0dfdae34ab6ce7de6ec09dcec8638f83dad0373594069 @@ -85,7 +85,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://repo.prefix.dev/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda hash: md5: 2934f256a8acfe48f6ebb4fce6cde29c sha256: e0ea1ba78fbb64f17062601edda82097fcf815012cf52bb704150a2668110d48 @@ -98,7 +98,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://repo.prefix.dev/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda hash: md5: 2934f256a8acfe48f6ebb4fce6cde29c sha256: e0ea1ba78fbb64f17062601edda82097fcf815012cf52bb704150a2668110d48 @@ -110,7 +110,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://repo.prefix.dev/conda-forge/noarch/asciitree-0.3.3-py_2.tar.bz2 hash: md5: c0481c9de49f040272556e2cedf42816 sha256: b3e9369529fe7d721b66f18680ff4b561e20dbf6507e209e1f60eac277c97560 @@ -122,7 +122,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://repo.prefix.dev/conda-forge/noarch/asciitree-0.3.3-py_2.tar.bz2 hash: md5: c0481c9de49f040272556e2cedf42816 sha256: b3e9369529fe7d721b66f18680ff4b561e20dbf6507e209e1f60eac277c97560 @@ -135,7 +135,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://repo.prefix.dev/conda-forge/linux-64/astroid-3.3.9-py312h7900ff3_0.conda hash: md5: ebbc44c436cf6fda9681e871df39097f sha256: bcb0b7965d305d2f9159a2f29e4236e3c90d537f45c5facd204c202490974ce2 @@ -148,7 +148,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://repo.prefix.dev/conda-forge/win-64/astroid-3.3.9-py312h2e8e312_0.conda hash: md5: a31a121fab1af9b1a6550c7063d75847 sha256: d38222880edd3f171877fa236a80d9eb9c741cdb0c499c12276ca621ec653137 @@ -161,7 +161,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://repo.prefix.dev/conda-forge/noarch/babel-2.17.0-pyhd8ed1ab_0.conda hash: md5: 0a01c169f0ab0f91b26e77a3301fbfe4 sha256: 1c656a35800b7f57f7371605bc6507c8d3ad60fbaaec65876fce7f73df1fc8ac @@ -174,7 +174,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://repo.prefix.dev/conda-forge/noarch/babel-2.17.0-pyhd8ed1ab_0.conda hash: md5: 0a01c169f0ab0f91b26e77a3301fbfe4 sha256: 1c656a35800b7f57f7371605bc6507c8d3ad60fbaaec65876fce7f73df1fc8ac @@ -190,7 +190,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://repo.prefix.dev/conda-forge/linux-64/brotli-1.1.0-hb9d3cd8_2.conda hash: md5: 98514fe74548d768907ce7a13f680e8f sha256: fcb0b5b28ba7492093e54f3184435144e074dfceab27ac8e6a9457e736565b0b @@ -207,7 +207,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://repo.prefix.dev/conda-forge/win-64/brotli-1.1.0-h2466b09_2.conda hash: md5: 378f1c9421775dfe644731cb121c8979 sha256: d8fd7d1b446706776117d2dcad1c0289b9f5e1521cb13405173bad38568dd252 @@ -222,7 +222,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://repo.prefix.dev/conda-forge/linux-64/brotli-bin-1.1.0-hb9d3cd8_2.conda hash: md5: c63b5e52939e795ba8d26e35d767a843 sha256: 261364d7445513b9a4debc345650fad13c627029bfc800655a266bf1e375bc65 @@ -238,7 +238,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://repo.prefix.dev/conda-forge/win-64/brotli-bin-1.1.0-h2466b09_2.conda hash: md5: d22534a9be5771fc58eb7564947f669d sha256: f3bf2893613540ac256c68f211861c4de618d96291719e32178d894114ac2bc2 @@ -254,7 +254,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://repo.prefix.dev/conda-forge/linux-64/brotli-python-1.1.0-py312h2ec8cdc_2.conda hash: md5: b0b867af6fc74b2a0aa206da29c0f3cf sha256: f2a59ccd20b4816dea9a2a5cb917eb69728271dbf1aeab4e1b7e609330a50b6f @@ -270,7 +270,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://repo.prefix.dev/conda-forge/win-64/brotli-python-1.1.0-py312h275cf98_2.conda hash: md5: a99aec1ac46794a5fb1cd3cf5d2b6110 sha256: f83baa6f6bcba7b73f6921d5c1aa95ffc5d8b246ade933ade79250de0a4c9c4c @@ -283,7 +283,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://repo.prefix.dev/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda hash: md5: 62ee74e96c5ebb0af99386de58cf9553 sha256: 5ced96500d945fb286c9c838e54fa759aa04a7129c59800f0846b4335cee770d @@ -297,7 +297,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://repo.prefix.dev/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda hash: md5: 276e7ffe9ffe39688abc665ef0f45596 sha256: 35a5dad92e88fdd7fc405e864ec239486f4f31eec229e31686e61a140a8e573b @@ -310,32 +310,34 @@ 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://repo.prefix.dev/conda-forge/linux-64/c-ares-1.34.5-hb9d3cd8_0.conda hash: md5: f7f0d6cc2dc986d42ac2689ec88192be sha256: f8003bef369f57396593ccd03d08a8e21966157269426f71e943f96e4b579aeb category: main optional: false - name: ca-certificates - version: 2025.1.31 + version: 2025.4.26 manager: conda platform: linux-64 - dependencies: {} - url: https://packages.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.4.26-hbd8a1cb_0.conda hash: - md5: 19f3a56f68d2fd06c516076bff482c52 - sha256: bf832198976d559ab44d6cdb315642655547e26d826e34da67cbee6624cda189 + md5: 95db94f75ba080a22eb623590993167b + sha256: 2a70ed95ace8a3f8a29e6cd1476a943df294a7111dfb3e152e3478c4c889b7ac category: main optional: false - name: ca-certificates - version: 2025.1.31 + version: 2025.4.26 manager: conda platform: win-64 - dependencies: {} - url: https://packages.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.4.26-h4c7d964_0.conda hash: - md5: 5304a31607974dfc2110dfbb662ed092 - sha256: 1bedccdf25a3bd782d6b0e57ddd97cdcda5501716009f2de4479a779221df155 + md5: 23c7fd5062b48d8294fc7f61bf157fba + sha256: 1454f3f53a3b828d3cb68a3440cb0fa9f1cc0e3c8c26e9e023773dc19d88cc06 category: main optional: false - name: cached-property @@ -344,7 +346,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://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 hash: md5: 9b347a7ec10940d3f7941ff6c460b551 sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17 @@ -356,7 +358,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://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 hash: md5: 9b347a7ec10940d3f7941ff6c460b551 sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17 @@ -368,7 +370,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://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 hash: md5: 576d629e47797577ab0f1b351297ef4a sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7 @@ -380,7 +382,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://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 hash: md5: 576d629e47797577ab0f1b351297ef4a sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7 @@ -392,7 +394,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://repo.prefix.dev/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda hash: md5: c207fa5ac7ea99b149344385a9c0880d sha256: 42a78446da06a2568cb13e69be3355169fbd0ea424b00fc80b7d840f5baaacf3 @@ -404,7 +406,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://repo.prefix.dev/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda hash: md5: c207fa5ac7ea99b149344385a9c0880d sha256: 42a78446da06a2568cb13e69be3355169fbd0ea424b00fc80b7d840f5baaacf3 @@ -421,7 +423,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://repo.prefix.dev/conda-forge/linux-64/cffi-1.17.1-py312h06ac9bb_0.conda hash: md5: a861504bbea4161a9170b85d4d2be840 sha256: cba6ea83c4b0b4f5b5dc59cb19830519b28f95d7ebef7c9c5cf1c14843621457 @@ -438,7 +440,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://repo.prefix.dev/conda-forge/win-64/cffi-1.17.1-py312h4389bb4_0.conda hash: md5: 08310c1a22ef957d537e547f8d484f92 sha256: ac007bf5fd56d13e16d95eea036433012f2e079dc015505c8a79efebbad1fcbc @@ -450,7 +452,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://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda hash: md5: e83a31202d1c0a000fce3e9cf3825875 sha256: 4e0ee91b97e5de3e74567bdacea27f0139709fceca4db8adffbe24deffccb09b @@ -462,7 +464,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://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda hash: md5: e83a31202d1c0a000fce3e9cf3825875 sha256: 4e0ee91b97e5de3e74567bdacea27f0139709fceca4db8adffbe24deffccb09b @@ -475,7 +477,7 @@ package: dependencies: __unix: '' python: '>=3.9' - url: https://packages.prefix.dev/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 @@ -489,7 +491,7 @@ package: __win: '' colorama: '' python: '>=3.9' - url: https://packages.prefix.dev/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 @@ -501,7 +503,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://repo.prefix.dev/conda-forge/noarch/cloudpickle-3.1.1-pyhd8ed1ab_0.conda hash: md5: 364ba6c9fb03886ac979b482f39ebb92 sha256: 21ecead7268241007bf65691610cd7314da68c1f88113092af690203b5780db5 @@ -513,7 +515,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://repo.prefix.dev/conda-forge/noarch/cloudpickle-3.1.1-pyhd8ed1ab_0.conda hash: md5: 364ba6c9fb03886ac979b482f39ebb92 sha256: 21ecead7268241007bf65691610cd7314da68c1f88113092af690203b5780db5 @@ -525,7 +527,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://repo.prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda hash: md5: 962b9857ee8e7018c22f2776ffa0b2d7 sha256: ab29d57dc70786c1269633ba3dff20288b81664d3ff8d21af995742e2bb03287 @@ -537,14 +539,14 @@ 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://repo.prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda hash: md5: 962b9857ee8e7018c22f2776ffa0b2d7 sha256: ab29d57dc70786c1269633ba3dff20288b81664d3ff8d21af995742e2bb03287 category: main optional: false - name: contourpy - version: 1.3.1 + version: 1.3.2 manager: conda platform: linux-64 dependencies: @@ -554,14 +556,14 @@ 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.1-py312h68727a3_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/contourpy-1.3.2-py312h68727a3_0.conda hash: - md5: f5fbba0394ee45e9a64a73c2a994126a - sha256: e977af50b844b5b8cfec358131a4e923f0aa718e8334321cf8d84f5093576259 + md5: e688276449452cdfe9f8f5d3e74c23f6 + sha256: 4c8f2aa34aa031229e6f8aa18f146bce7987e26eae9c6503053722a8695ebf0c category: main optional: false - name: contourpy - version: 1.3.1 + version: 1.3.2 manager: conda platform: win-64 dependencies: @@ -571,10 +573,10 @@ 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.1-py312hd5eb7cc_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/contourpy-1.3.2-py312hd5eb7cc_0.conda hash: - md5: 83f7a2ec652abd37a178e35493dfd029 - sha256: b5643ea0dd0bf57e1847679f5985feb649289de872b85c3db900f4110ac83cdd + md5: bfcbb98aff376f62298f0801ca9bcfc3 + sha256: 9b552bcab6c1e3a364cbc010bdef3d26831c90984b7d0852a1dd70659d9cf84a category: main optional: false - name: coverage @@ -587,7 +589,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://repo.prefix.dev/conda-forge/linux-64/coverage-7.8.0-py312h178313f_0.conda hash: md5: d0fca021e354cc96455021852a1fad6d sha256: 029278c43bd2a6ac36bfd93fde69a0cde6a4ee94c0af72d0d51236fbb1fc3720 @@ -604,7 +606,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://repo.prefix.dev/conda-forge/win-64/coverage-7.8.0-py312h31fea79_0.conda hash: md5: a52895ace8c17bc01ceba443d52325c6 sha256: 7815726b2b45065af4570deca428f48799ce1f49de7d8b5e4f6b7999f6a4dc2f @@ -616,7 +618,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://repo.prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda hash: md5: 44600c4667a319d67dbe0681fc0bc833 sha256: 9827efa891e507a91a8a2acf64e210d2aff394e1cde432ad08e1f8c66b12293c @@ -628,7 +630,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://repo.prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda hash: md5: 44600c4667a319d67dbe0681fc0bc833 sha256: 9827efa891e507a91a8a2acf64e210d2aff394e1cde432ad08e1f8c66b12293c @@ -644,7 +646,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://repo.prefix.dev/conda-forge/linux-64/cytoolz-1.0.1-py312h66e93f0_0.conda hash: md5: 6198b134b1c08173f33653896974d477 sha256: 63a64d4e71148c4efd8db17b4a19b8965990d1e08ed2e24b84bc36b6c166a705 @@ -661,7 +663,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://repo.prefix.dev/conda-forge/win-64/cytoolz-1.0.1-py312h4389bb4_0.conda hash: md5: fba0567971249f5d0cce4d35b1184c75 sha256: e657e468fdae72302951bba92f94bcb31566a237e5f979a7dd205603a0750b59 @@ -681,7 +683,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://repo.prefix.dev/conda-forge/noarch/dask-core-2025.3.0-pyhd8ed1ab_0.conda hash: md5: 36f6cc22457e3d6a6051c5370832f96c sha256: 72badd945d856d2928fdbe051f136f903bcfee8136f1526c8362c6c465b793ec @@ -701,7 +703,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://repo.prefix.dev/conda-forge/noarch/dask-core-2025.3.0-pyhd8ed1ab_0.conda hash: md5: 36f6cc22457e3d6a6051c5370832f96c sha256: 72badd945d856d2928fdbe051f136f903bcfee8136f1526c8362c6c465b793ec @@ -714,7 +716,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://repo.prefix.dev/conda-forge/noarch/deprecated-1.2.18-pyhd8ed1ab_0.conda hash: md5: 0cef44b1754ae4d6924ac0eef6b9fdbe sha256: d614bcff10696f1efc714df07651b50bf3808401fcc03814309ecec242cc8870 @@ -727,34 +729,34 @@ 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://repo.prefix.dev/conda-forge/noarch/deprecated-1.2.18-pyhd8ed1ab_0.conda hash: md5: 0cef44b1754ae4d6924ac0eef6b9fdbe sha256: d614bcff10696f1efc714df07651b50bf3808401fcc03814309ecec242cc8870 category: main optional: false - name: dill - version: 0.3.9 + version: 0.4.0 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/dill-0.3.9-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda hash: - md5: 5e11310fca410e9f31381157079dee55 - sha256: 499be2f8e4397a46249e8e500535795704af27e56360ae0c964904140b41454a + md5: 885745570573eb6a08e021841928297a + sha256: 43dca52c96fde0c4845aaff02bcc92f25e1c2e5266ddefc2eac1a3de0960a3b1 category: dev optional: true - name: dill - version: 0.3.9 + version: 0.4.0 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/dill-0.3.9-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda hash: - md5: 5e11310fca410e9f31381157079dee55 - sha256: 499be2f8e4397a46249e8e500535795704af27e56360ae0c964904140b41454a + md5: 885745570573eb6a08e021841928297a + sha256: 43dca52c96fde0c4845aaff02bcc92f25e1c2e5266ddefc2eac1a3de0960a3b1 category: dev optional: true - name: discretize @@ -769,7 +771,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://repo.prefix.dev/conda-forge/linux-64/discretize-0.11.2-py312hc39e661_1.conda hash: md5: e9c071bcefeb0f70dd18a20f88bb844f sha256: 605ee14cdad67f8797a54853d8030295b522ba478e6759a5bc1f4fec3ac2e225 @@ -787,7 +789,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://repo.prefix.dev/conda-forge/win-64/discretize-0.11.2-py312hbaa7e33_1.conda hash: md5: 43aa663b1fd1787fbbeca5a9a954dc57 sha256: 259979385edfa18bcbb5b9776490d53026a6bfaf6f738369b49b0a0b2a839303 @@ -815,7 +817,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://repo.prefix.dev/conda-forge/noarch/distributed-2025.3.0-pyhd8ed1ab_0.conda hash: md5: 968a7a4ff98bcfb515b0f1c94d35553f sha256: ea055aeda774d03ec96e0901ec119c6d3dc21ddd50af166bec664a76efd5f82a @@ -843,7 +845,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://repo.prefix.dev/conda-forge/noarch/distributed-2025.3.0-pyhd8ed1ab_0.conda hash: md5: 968a7a4ff98bcfb515b0f1c94d35553f sha256: ea055aeda774d03ec96e0901ec119c6d3dc21ddd50af166bec664a76efd5f82a @@ -856,7 +858,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://repo.prefix.dev/conda-forge/linux-64/docutils-0.18.1-py312h7900ff3_0.conda hash: md5: b741a9f139d1ffd43cbb5da54252dae7 sha256: 27088b406250e0189f271ed795ee929e3030a29ae67acbbf193d0e82ca7f210a @@ -869,7 +871,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://repo.prefix.dev/conda-forge/win-64/docutils-0.18.1-py312h2e8e312_0.conda hash: md5: 3bcf1239777952b112ef26f2b8e4d5a7 sha256: 7638c8adbd1ef73bb3f9ef2df24d03464b5c9622bac4816581ca365ee96718ce @@ -881,7 +883,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://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda hash: md5: a16662747cdeb9abbac74d0057cc976e sha256: cbde2c64ec317118fc06b223c5fd87c8a680255e7348dd60e7b292d2e103e701 @@ -893,7 +895,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://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda hash: md5: a16662747cdeb9abbac74d0057cc976e sha256: cbde2c64ec317118fc06b223c5fd87c8a680255e7348dd60e7b292d2e103e701 @@ -905,7 +907,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://repo.prefix.dev/conda-forge/noarch/fasteners-0.19-pyhd8ed1ab_1.conda hash: md5: dbe9d42e94b5ff7af7b7893f4ce052e7 sha256: 42fb170778b47303e82eddfea9a6d1e1b8af00c927cd5a34595eaa882b903a16 @@ -917,7 +919,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://repo.prefix.dev/conda-forge/noarch/fasteners-0.19-pyhd8ed1ab_1.conda hash: md5: dbe9d42e94b5ff7af7b7893f4ce052e7 sha256: 42fb170778b47303e82eddfea9a6d1e1b8af00c927cd5a34595eaa882b903a16 @@ -935,7 +937,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://repo.prefix.dev/conda-forge/linux-64/fonttools-4.57.0-py312h178313f_0.conda hash: md5: 97907388593b27ac01237a1023d58d3d sha256: 3d230ff0d9e9fc482de22b807adf017736bd6d19b932eea68d68eeb52b139e04 @@ -954,7 +956,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://repo.prefix.dev/conda-forge/win-64/fonttools-4.57.0-py312h31fea79_0.conda hash: md5: 5bcdfae9aaf166ad83edebfa2f6359e2 sha256: eaa9fa1c6c0f290a24066a170460e292b111cb4c67c8d7cb7eb54ca68c608646 @@ -965,14 +967,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://packages.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 @@ -980,15 +980,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://packages.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 @@ -997,7 +994,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://repo.prefix.dev/conda-forge/noarch/fsspec-2025.3.2-pyhd8ed1ab_0.conda hash: md5: 9c40692c3d24c7aaf335f673ac09d308 sha256: 2040d4640708bd6ab9ed6cb9901267441798c44974bc63c9b6c1cb4c1891d825 @@ -1009,7 +1006,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://repo.prefix.dev/conda-forge/noarch/fsspec-2025.3.2-pyhd8ed1ab_0.conda hash: md5: 9c40692c3d24c7aaf335f673ac09d308 sha256: 2040d4640708bd6ab9ed6cb9901267441798c44974bc63c9b6c1cb4c1891d825 @@ -1028,7 +1025,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://repo.prefix.dev/conda-forge/linux-64/geoana-0.7.2-py312hc39e661_0.conda hash: md5: 20497b2b58fd4525c178cf642eb6d51d sha256: 492ac87e5e108352ec452b11d7a1158b22913b151e6da576099f8db1ecc262b6 @@ -1047,7 +1044,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://repo.prefix.dev/conda-forge/win-64/geoana-0.7.2-py312hbaa7e33_0.conda hash: md5: 734e9c4267b48bd5fd1f491868994e52 sha256: 686b9a107e080169f3e097923932764d65d5ad075acc06104080311211639eaa @@ -1061,7 +1058,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://repo.prefix.dev/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda hash: md5: b4754fb1bdcb70c8fd54f918301582c6 sha256: 0aa1cdc67a9fe75ea95b5644b734a756200d6ec9d0dff66530aec3d1c1e9df75 @@ -1075,7 +1072,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://repo.prefix.dev/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda hash: md5: b4754fb1bdcb70c8fd54f918301582c6 sha256: 0aa1cdc67a9fe75ea95b5644b734a756200d6ec9d0dff66530aec3d1c1e9df75 @@ -1093,7 +1090,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://repo.prefix.dev/conda-forge/linux-64/h5py-3.13.0-nompi_py312hedeef09_100.conda hash: md5: ed73cf6f5e1ce5e823e6efcf54cbdc51 sha256: 76bb853325f0c756599edb0be014723b01fea61e24817fd2f0b9ddfe4c570c0f @@ -1112,7 +1109,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://repo.prefix.dev/conda-forge/win-64/h5py-3.13.0-nompi_py312ha036244_100.conda hash: md5: fe41c7e14279ad2729752ddf4e83bc42 sha256: 63bba52339a880a596ec38c51f08c35249e2db801d7fe6046cd60b3e611ea5b6 @@ -1132,7 +1129,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://repo.prefix.dev/conda-forge/linux-64/hdf5-1.14.3-nompi_h2d575fe_109.conda hash: md5: e7a7a6e6f70553a31e6e79c65768d089 sha256: e8669a6d76d415f4fdbe682507ac3a3b39e8f493d2f2bdc520817f80b7cc0753 @@ -1150,7 +1147,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://repo.prefix.dev/conda-forge/win-64/hdf5-1.14.3-nompi_hb2c4d47_109.conda hash: md5: ebb61f3e8b35cc15e78876649b7246f7 sha256: d5ada33e119cdd62371c06f60eae6f545de7cea793ab83da2fba428bb1d2f813 @@ -1162,7 +1159,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://repo.prefix.dev/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda hash: md5: 0a802cb9888dd14eeefc611f05c40b6e sha256: 6ad78a180576c706aabeb5b4c8ceb97c0cb25f1e112d76495bff23e3779948ba @@ -1174,7 +1171,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://repo.prefix.dev/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda hash: md5: 0a802cb9888dd14eeefc611f05c40b6e sha256: 6ad78a180576c706aabeb5b4c8ceb97c0cb25f1e112d76495bff23e3779948ba @@ -1186,7 +1183,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://repo.prefix.dev/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda hash: md5: 8e6923fc12f1fe8f8c4e5c9f343256ac sha256: 77af6f5fe8b62ca07d09ac60127a30d9069fdc3c68d6b256754d0ffb1f7779f8 @@ -1198,7 +1195,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://repo.prefix.dev/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda hash: md5: 8e6923fc12f1fe8f8c4e5c9f343256ac sha256: 77af6f5fe8b62ca07d09ac60127a30d9069fdc3c68d6b256754d0ffb1f7779f8 @@ -1210,7 +1207,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://repo.prefix.dev/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda hash: md5: 39a4f67be3286c86d696df570b1201b7 sha256: d7a472c9fd479e2e8dcb83fb8d433fce971ea369d704ece380e876f9c3494e87 @@ -1222,7 +1219,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://repo.prefix.dev/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda hash: md5: 39a4f67be3286c86d696df570b1201b7 sha256: d7a472c9fd479e2e8dcb83fb8d433fce971ea369d704ece380e876f9c3494e87 @@ -1234,7 +1231,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://repo.prefix.dev/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2 hash: md5: 7de5386c8fea29e76b303f37dde4c352 sha256: c2bfd7043e0c4c12d8b5593de666c1e81d67b83c474a0a79282cc5c4ef845460 @@ -1246,7 +1243,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://repo.prefix.dev/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2 hash: md5: 7de5386c8fea29e76b303f37dde4c352 sha256: c2bfd7043e0c4c12d8b5593de666c1e81d67b83c474a0a79282cc5c4ef845460 @@ -1259,7 +1256,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://repo.prefix.dev/conda-forge/noarch/importlib-metadata-8.6.1-pyha770c72_0.conda hash: md5: f4b39bf00c69f56ac01e020ebfac066c sha256: 598951ebdb23e25e4cec4bbff0ae369cec65ead80b50bc08b441d8e54de5cf03 @@ -1272,7 +1269,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://repo.prefix.dev/conda-forge/noarch/importlib-metadata-8.6.1-pyha770c72_0.conda hash: md5: f4b39bf00c69f56ac01e020ebfac066c sha256: 598951ebdb23e25e4cec4bbff0ae369cec65ead80b50bc08b441d8e54de5cf03 @@ -1284,7 +1281,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://repo.prefix.dev/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda hash: md5: 6837f3eff7dcea42ecd714ce1ac2b108 sha256: 0ec8f4d02053cd03b0f3e63168316530949484f80e16f5e2fb199a1d117a89ca @@ -1296,7 +1293,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://repo.prefix.dev/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda hash: md5: 6837f3eff7dcea42ecd714ce1ac2b108 sha256: 0ec8f4d02053cd03b0f3e63168316530949484f80e16f5e2fb199a1d117a89ca @@ -1307,7 +1304,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://repo.prefix.dev/conda-forge/win-64/intel-openmp-2024.2.1-h57928b3_1083.conda hash: md5: 2d89243bfb53652c182a7c73182cce4f sha256: 0fd2b0b84c854029041b0ede8f4c2369242ee92acc0092f8407b1fe9238a8209 @@ -1320,7 +1317,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://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_0.conda hash: md5: a8abfd3f223b1ecb8c699dca974933bd sha256: 9c5fb97efa0eb32b42564edaacb5edb9a1f82ba8f5f8b135e794960101115b5a @@ -1333,7 +1330,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://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_0.conda hash: md5: a8abfd3f223b1ecb8c699dca974933bd sha256: 9c5fb97efa0eb32b42564edaacb5edb9a1f82ba8f5f8b135e794960101115b5a @@ -1346,7 +1343,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://repo.prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda hash: md5: 446bd6c8cb26050d528881df495ce646 sha256: f1ac18b11637ddadc05642e8185a851c7fab5998c6f5470d716812fae943b2af @@ -1359,7 +1356,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://repo.prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda hash: md5: 446bd6c8cb26050d528881df495ce646 sha256: f1ac18b11637ddadc05642e8185a851c7fab5998c6f5470d716812fae943b2af @@ -1372,7 +1369,7 @@ package: dependencies: python: '>=3.9' setuptools: '' - url: https://packages.prefix.dev/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 @@ -1385,7 +1382,7 @@ package: dependencies: python: '>=3.9' setuptools: '' - url: https://packages.prefix.dev/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 @@ -1397,7 +1394,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://repo.prefix.dev/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 hash: md5: 30186d27e2c9fa62b45fb1476b7200e3 sha256: 150c05a6e538610ca7c43beb3a40d65c90537497a4f6a5f4d15ec0451b6f5ebb @@ -1413,7 +1410,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://repo.prefix.dev/conda-forge/linux-64/kiwisolver-1.4.8-py312h84d6215_0.conda hash: md5: 6713467dc95509683bfa3aca08524e8a sha256: 3ce99d721c1543f6f8f5155e53eef11be47b2f5942a8d1060de6854f9d51f246 @@ -1429,7 +1426,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://repo.prefix.dev/conda-forge/win-64/kiwisolver-1.4.8-py312hc790b64_0.conda hash: md5: 7ef59428fc0dcb8a78a5e23dc4f50aa3 sha256: 2cce3d9bcc95c68069e3032cda25b732f69be7b025f94685ee4783d7b54588dd @@ -1445,7 +1442,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://repo.prefix.dev/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda hash: md5: 3f43953b7d3fb3aaa1d0d0723d91e368 sha256: 99df692f7a8a5c27cd14b5fb1374ee55e756631b9c3d659ed3ee60830249b238 @@ -1460,7 +1457,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://repo.prefix.dev/conda-forge/win-64/krb5-1.21.3-hdf4eb48_0.conda hash: md5: 31aec030344e962fbd7dbbbbd68e60a9 sha256: 18e8b3430d7d232dad132f574268f56b3eb1a19431d6d5de8c53c29e6c18fa81 @@ -1475,7 +1472,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://repo.prefix.dev/conda-forge/linux-64/lcms2-2.17-h717163a_0.conda hash: md5: 000e85703f0fd9594c81710dd5066471 sha256: d6a61830a354da022eae93fa896d0991385a875c6bba53c82263a289deda9db8 @@ -1491,7 +1488,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://repo.prefix.dev/conda-forge/win-64/lcms2-2.17-hbcf6048_0.conda hash: md5: 3538827f77b82a837fa681a4579e37a1 sha256: 7712eab5f1a35ca3ea6db48ead49e0d6ac7f96f8560da8023e61b3dbe4f3b25d @@ -1503,7 +1500,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://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_4.conda hash: md5: 01f8d123c96816249efd255a31ad7712 sha256: db73f38155d901a610b2320525b9dd3b31e4949215c870685fd92ea61b5ce472 @@ -1514,12 +1511,13 @@ package: manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://packages.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 @@ -1527,12 +1525,13 @@ package: manager: conda platform: win-64 dependencies: + ucrt: '>=10.0.20348.0' 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 + 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 @@ -1542,7 +1541,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://repo.prefix.dev/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda hash: md5: 5e97e271911b8b2001a8b71860c32faa sha256: 2ef420a655528bca9d269086cf33b7e90d2f54ad941b437fb1ed5eca87cee017 @@ -1556,7 +1555,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://repo.prefix.dev/conda-forge/win-64/libaec-1.1.3-h63175ca_0.conda hash: md5: 8723000f6ffdbdaef16025f0a01b64c5 sha256: f5c293d3cfc00f71dfdb64bd65ab53625565f8778fc2d5790575bef238976ebf @@ -1568,7 +1567,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://repo.prefix.dev/conda-forge/linux-64/libblas-3.9.0-31_hfdb39a5_mkl.conda hash: md5: bdf4a57254e8248222cb631db4393ff1 sha256: 862289f2cfb84bb6001d0e3569e908b8c42d66b881bd5b03f730a3924628b978 @@ -1580,7 +1579,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://repo.prefix.dev/conda-forge/win-64/libblas-3.9.0-31_h641d27c_mkl.conda hash: md5: d05563c577fe2f37693a554b3f271e8f sha256: 7bb4d5b591e98fe607279520ee78e3571a297b5720aa789a2536041ad5540de8 @@ -1593,7 +1592,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://repo.prefix.dev/conda-forge/linux-64/libbrotlicommon-1.1.0-hb9d3cd8_2.conda hash: md5: 41b599ed2b02abcfdd84302bff174b23 sha256: d9db2de60ea917298e658143354a530e9ca5f9c63471c65cf47ab39fd2f429e3 @@ -1607,7 +1606,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://repo.prefix.dev/conda-forge/win-64/libbrotlicommon-1.1.0-h2466b09_2.conda hash: md5: f7dc9a8f21d74eab46456df301da2972 sha256: 33e8851c6cc8e2d93059792cd65445bfe6be47e4782f826f01593898ec95764c @@ -1621,7 +1620,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://repo.prefix.dev/conda-forge/linux-64/libbrotlidec-1.1.0-hb9d3cd8_2.conda hash: md5: 9566f0bd264fbd463002e759b8a82401 sha256: 2892d512cad096cb03f1b66361deeab58b64e15ba525d6592bb6d609e7045edf @@ -1636,7 +1635,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://repo.prefix.dev/conda-forge/win-64/libbrotlidec-1.1.0-h2466b09_2.conda hash: md5: 9bae75ce723fa34e98e239d21d752a7e sha256: 234fc92f4c4f1cf22f6464b2b15bfc872fa583c74bf3ab9539ff38892c43612f @@ -1650,7 +1649,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://repo.prefix.dev/conda-forge/linux-64/libbrotlienc-1.1.0-hb9d3cd8_2.conda hash: md5: 06f70867945ea6a84d35836af780f1de sha256: 779f58174e99de3600e939fa46eddb453ec5d3c60bb46cdaa8b4c127224dbf29 @@ -1665,7 +1664,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://repo.prefix.dev/conda-forge/win-64/libbrotlienc-1.1.0-h2466b09_2.conda hash: md5: 85741a24d97954a991e55e34bc55990b sha256: 3d0dd7ef505962f107b7ea8f894e0b3dd01bf46852b362c8a7fc136b039bc9e1 @@ -1677,7 +1676,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://repo.prefix.dev/conda-forge/linux-64/libcblas-3.9.0-31_h372d94f_mkl.conda hash: md5: 2a06a6c16b45bd3d10002927ca204b67 sha256: 2ee3ab2b6eeb59f2d3c6f933fa0db28f1b56f0bc543ed2c0f6ec04060e4b6ec0 @@ -1689,7 +1688,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://repo.prefix.dev/conda-forge/win-64/libcblas-3.9.0-31_h5e41251_mkl.conda hash: md5: 43c100b94ad2607382b0cf0f3a6b0bf3 sha256: 609f455b099919bd4d15d4a733f493dc789e02da73fe4474f1cca73afafb95b8 @@ -1708,7 +1707,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://repo.prefix.dev/conda-forge/linux-64/libcurl-8.13.0-h332b0f4_0.conda hash: md5: cbdc92ac0d93fe3c796e36ad65c7905c sha256: 38e528acfaa0276b7052f4de44271ff9293fdb84579650601a8c49dac171482a @@ -1725,7 +1724,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://repo.prefix.dev/conda-forge/win-64/libcurl-8.13.0-h88aaa65_0.conda hash: md5: c9cf6eb842decbb66c2f34e72c3580d6 sha256: 185553b37c0299b7a15dc66a7a7e2a0d421adaac784ec9298a0b2ad745116ca5 @@ -1738,10 +1737,10 @@ 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://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 @@ -1752,10 +1751,10 @@ 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://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 @@ -1765,7 +1764,7 @@ package: dependencies: numpy: '' python: '>=3.10' - url: https://packages.prefix.dev/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 @@ -1778,7 +1777,7 @@ package: dependencies: numpy: '' python: '>=3.10' - url: https://packages.prefix.dev/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 @@ -1792,7 +1791,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://repo.prefix.dev/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.conda hash: md5: c277e0a4d549b03ac1e9d6cbbe3d017b sha256: d789471216e7aba3c184cd054ed61ce3f6dac6f87a50ec69291b9297f8c18724 @@ -1804,7 +1803,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://repo.prefix.dev/conda-forge/linux-64/libev-4.33-hd590300_2.conda hash: md5: 172bf1cd1ff8629f2b1179945ed45055 sha256: 1cd6048169fa0395af74ed5d8f1716e22c19a81a8a36f934c110ca3ad4dd27b4 @@ -1817,7 +1816,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://repo.prefix.dev/conda-forge/linux-64/libexpat-2.7.0-h5888daf_0.conda hash: md5: db0bfbe7dd197b68ad5f30333bae6ce0 sha256: 33ab03438aee65d6aa667cf7d90c91e5e7d734c19a67aa4c7040742c0a13d505 @@ -1831,7 +1830,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://repo.prefix.dev/conda-forge/win-64/libexpat-2.7.0-he0c23c2_0.conda hash: md5: b6f5352fdb525662f4169a0431d2dd7a sha256: 1a227c094a4e06bd54e8c2f3ec40c17ff99dcf3037d812294f842210aa66dbeb @@ -1844,7 +1843,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://repo.prefix.dev/conda-forge/linux-64/libffi-3.4.6-h2dba641_1.conda hash: md5: ede4673863426c0883c0063d853bbd85 sha256: 764432d32db45466e87f10621db5b74363a9f847d2b8b1f9743746cd160f06ab @@ -1858,12 +1857,67 @@ 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://repo.prefix.dev/conda-forge/win-64/libffi-3.4.6-h537db12_1.conda hash: md5: 85d8fa5e55ed8f93f874b3b23ed54ec6 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 @@ -1871,7 +1925,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://repo.prefix.dev/conda-forge/linux-64/libgcc-14.2.0-h767d61c_2.conda hash: md5: ef504d1acbd74b7cc6849ef8af47dd03 sha256: 3a572d031cb86deb541d15c1875aaa097baefc0c580b54dc61f5edab99215792 @@ -1884,7 +1938,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://repo.prefix.dev/conda-forge/win-64/libgcc-14.2.0-h1383e82_2.conda hash: md5: 4a74c1461a0ba47a3346c04bdccbe2ad sha256: fddf2fc037bc95adb3b369e8866da8a71b6a67ebcfc4d7035ac4208309dc9e72 @@ -1896,7 +1950,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://repo.prefix.dev/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_2.conda hash: md5: a2222a6ada71fb478682efe483ce0f92 sha256: fb7558c328b38b2f9d2e412c48da7890e7721ba018d733ebdfea57280df01904 @@ -1908,7 +1962,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://repo.prefix.dev/conda-forge/linux-64/libgfortran-14.2.0-h69a702a_2.conda hash: md5: fb54c4ea68b460c278d26eea89cfbcc3 sha256: e05263e8960da03c341650f2a3ffa4ccae4e111cb198e8933a2908125459e5a6 @@ -1921,7 +1975,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://repo.prefix.dev/conda-forge/linux-64/libgfortran5-14.2.0-hf1ad2bd_2.conda hash: md5: 556a4fdfac7287d349b8f09aba899693 sha256: c17b7cf3073a1f4e1f34d50872934fa326346e104d3c445abc1e62481ad6085c @@ -1933,7 +1987,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://repo.prefix.dev/conda-forge/win-64/libgomp-14.2.0-h1383e82_2.conda hash: md5: dd6b1ab49e28bcb6154cd131acec985b sha256: 674ec5f1bf319eac98d0d6ecb9c38e0192f3cf41969a5621d62a7e695e1aa9f3 @@ -1948,7 +2002,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://repo.prefix.dev/conda-forge/linux-64/libhwloc-2.11.2-default_h0d58e46_1001.conda hash: md5: 804ca9e91bcaea0824a341d55b1684f2 sha256: d14c016482e1409ae1c50109a9ff933460a50940d2682e745ab1c172b5282a69 @@ -1964,7 +2018,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://repo.prefix.dev/conda-forge/win-64/libhwloc-2.11.2-default_ha69328c_1001.conda hash: md5: b87a0ac5ab6495d8225db5dc72dd21cd sha256: 850e255997f538d5fb6ed651321141155a33bb781d43d326fc4ff62114dd2842 @@ -1977,7 +2031,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://repo.prefix.dev/conda-forge/linux-64/libiconv-1.18-h4ce23a2_1.conda hash: md5: e796ff8ddc598affdf7c173d6145f087 sha256: 18a4afe14f731bfb9cf388659994263904d20111e42f841e9eea1bb6f91f4ab4 @@ -1991,36 +2045,37 @@ 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://repo.prefix.dev/conda-forge/win-64/libiconv-1.18-h135ad9c_1.conda hash: md5: 21fc5dba2cbcd8e5e26ff976a312122c sha256: ea5ed2b362b6dbc4ba7188eb4eaf576146e3dfc6f4395e9f0db76ad77465f786 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://packages.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://packages.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 @@ -2029,7 +2084,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://repo.prefix.dev/conda-forge/linux-64/liblapack-3.9.0-31_hc41d3b0_mkl.conda hash: md5: 10d012ddd7cc1c7ff9093d4974a34e53 sha256: a2d20845d916ac8fba09376cd791136a9b4547afb2131bc315178adfc87bb4ca @@ -2041,7 +2096,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://repo.prefix.dev/conda-forge/win-64/liblapack-3.9.0-31_h1aa476e_mkl.conda hash: md5: 40b47ee720a185289760960fc6185750 sha256: 9415e807aa6f8968322bbd756aab8f487379d809c74266d37c697b8d85c534ad @@ -2054,7 +2109,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://repo.prefix.dev/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_0.conda hash: md5: 0e87378639676987af32fee53ba32258 sha256: f4f21dfc54b08d462f707b771ecce3fa9bc702a2a05b55654f64154f48b141ef @@ -2068,7 +2123,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://repo.prefix.dev/conda-forge/win-64/liblzma-5.8.1-h2466b09_0.conda hash: md5: 8d5cb0016b645d6688e2ff57c5d51302 sha256: 1477e9bff05318f3129d37be0e64c76cce0973c4b8c73d13a467d0b7f03d157c @@ -2086,7 +2141,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://repo.prefix.dev/conda-forge/linux-64/libnghttp2-1.64.0-h161d5f1_0.conda hash: md5: 19e57602824042dfd0446292ef90488b sha256: b0f2b3695b13a989f75d8fd7f4778e1c7aabe3b36db83f0fe80b2cd812c0e975 @@ -2098,7 +2153,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://repo.prefix.dev/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda hash: md5: 30fd6e37fe21f86f4bd26d6ee73eeec7 sha256: 26d77a3bb4dceeedc2a41bd688564fe71bf2d149fdcf117049970bc02ff1add6 @@ -2112,7 +2167,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://repo.prefix.dev/conda-forge/linux-64/libpng-1.6.47-h943b412_0.conda hash: md5: 55199e2ae2c3651f6f9b2a447b47bdc9 sha256: 23367d71da58c9a61c8cbd963fcffb92768d4ae5ffbef9a47cdf1f54f98c5c36 @@ -2127,10 +2182,10 @@ 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://repo.prefix.dev/conda-forge/win-64/libpng-1.6.47-h7a4582a_0.conda hash: - md5: 7d717163d9dab337c65f2bf21a676b8f - sha256: cf8a594b697de103025dcae2c917ec9c100609caf7c917a94c64a683cb1db1ac + md5: ad620e92b82d2948bc019e029c574ebb + sha256: e12c46ca882080d901392ae45e0e5a1c96fc3e5acd5cd1a23c2632eb7f024f26 category: main optional: false - name: libscotch @@ -2145,7 +2200,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://repo.prefix.dev/conda-forge/linux-64/libscotch-7.0.6-hea33c07_1.conda hash: md5: 1b600d55dcd98c958192a69a79e6acd2 sha256: 8330bba8b7b3a37da6eca04bace985fb9f8d487d3249b8f690e8f4a3d8d3c7dc @@ -2159,7 +2214,7 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://packages.prefix.dev/conda-forge/linux-64/libspatialindex-2.0.0-he02047a_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libspatialindex-2.0.0-he02047a_0.conda hash: md5: e7d2dcd1a058149ff9731a8dca39566e sha256: 997a4fa13864dcb35ac9dfe87ed70fb3e9509dd071fa1951ac7f184e7ffcde5d @@ -2173,7 +2228,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/libspatialindex-2.0.0-h5a68840_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libspatialindex-2.0.0-h5a68840_0.conda hash: md5: 667559340fdf805ee1652de7b73e2b59 sha256: 7802e6c51d59bc7e062841c525d772656708cdc44e42b6556493d345f08d7e50 @@ -2187,7 +2242,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://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.49.1-hee588c1_2.conda hash: md5: 962d6ac93c30b1dfc54c9cccafd1003e sha256: a086289bf75c33adc1daed3f1422024504ffb5c3c8b3285c49f025c29708ed16 @@ -2201,7 +2256,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://repo.prefix.dev/conda-forge/win-64/libsqlite-3.49.1-h67fdade_2.conda hash: md5: b58b66d4ad1aaf1c2543cbbd6afb1a59 sha256: c092d42d00fd85cf609cc58574ba2b03c141af5762283f36f5dd445ef7c0f4fe @@ -2215,11 +2270,11 @@ package: __glibc: '>=2.17,<3.0.a0' 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 + openssl: '>=3.5.0,<4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/libssh2-1.11.1-hcf80075_0.conda hash: - md5: be2de152d8073ef1c01b7728475f2fe7 - sha256: 0407ac9fda2bb67e11e357066eff144c845801d00b5f664efbc48813af1e7bb9 + md5: eecce068c7e4eddeb169591baac20ac4 + sha256: fa39bfd69228a13e553bd24601332b7cfeb30ca11a3ca50bb028108fe90a7661 category: main optional: false - name: libssh2 @@ -2228,14 +2283,14 @@ package: platform: win-64 dependencies: libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.4.0,<4.0a0' + openssl: '>=3.5.0,<4.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://packages.prefix.dev/conda-forge/win-64/libssh2-1.11.1-he619c9f_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libssh2-1.11.1-h9aa295b_0.conda hash: - md5: af0cbf037dd614c34399b3b3e568c557 - sha256: 4b3256bd2b4e4b3183005d3bd8826d651eccd1a4740b70625afa2b7e7123d191 + md5: 9dce2f112bfd3400f4f432b3d0ac07b2 + sha256: cbdf93898f2e27cefca5f3fe46519335d1fab25c4ea2a11b11502ff63e602c09 category: main optional: false - name: libstdcxx @@ -2245,7 +2300,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://repo.prefix.dev/conda-forge/linux-64/libstdcxx-14.2.0-h8f9b012_2.conda hash: md5: a78c856b6dc6bf4ea8daeb9beaaa3fb0 sha256: 8f5bd92e4a24e1d35ba015c5252e8f818898478cb3bc50bd8b12ab54707dc4da @@ -2257,7 +2312,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://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-14.2.0-h4852527_2.conda hash: md5: c75da67f045c2627f59e6fcb5f4e3a9b sha256: e86f38b007cf97cc2c67cd519f2de12a313c4ee3f5ef11652ad08932a5e34189 @@ -2272,16 +2327,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://packages.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 @@ -2291,17 +2346,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://packages.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 @@ -2310,7 +2365,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://repo.prefix.dev/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda hash: md5: 40b61aab5c7ba9ff276c41cfffe6b80b sha256: 787eb542f055a2b3de553614b25f09eefb0a0931b0c87dbcce6efdfd92f04f18 @@ -2323,7 +2378,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://repo.prefix.dev/conda-forge/linux-64/libwebp-base-1.5.0-h851e524_0.conda hash: md5: 63f790534398730f59e1b899c3644d4a sha256: c45283fd3e90df5f0bd3dbcd31f59cdd2b001d424cf30a07223655413b158eaf @@ -2337,7 +2392,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://repo.prefix.dev/conda-forge/win-64/libwebp-base-1.5.0-h3b0e114_0.conda hash: md5: 33f7313967072c6e6d8f865f5493c7ae sha256: 1d75274614e83a5750b8b94f7bad2fc0564c2312ff407e697d99152ed095576f @@ -2349,7 +2404,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://repo.prefix.dev/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h57928b3_9.conda hash: md5: 08bfa5da6e242025304b206d152479ef sha256: 373f2973b8a358528b22be5e8d84322c165b4c5577d24d94fd67ad1bb0a0f261 @@ -2365,7 +2420,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://repo.prefix.dev/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda hash: md5: 92ed62436b625154323d40d5f2f11dd7 sha256: 666c0c431b23c6cec6e492840b176dde533d48b7e6fb8883f5071223433776aa @@ -2382,7 +2437,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://repo.prefix.dev/conda-forge/win-64/libxcb-1.17.0-h0e4246c_0.conda hash: md5: a69bbf778a462da324489976c84cfc8c sha256: 08dec73df0e161c96765468847298a420933a36bc4f09b50e062df8793290737 @@ -2394,7 +2449,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://repo.prefix.dev/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda hash: md5: 5aa797f8787fe7a17d1b0821485b5adc sha256: 6ae68e0b86423ef188196fff6207ed0c8195dd84273cb5623b85aa08033a410c @@ -2410,7 +2465,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://repo.prefix.dev/conda-forge/linux-64/libxml2-2.13.7-h81593ed_1.conda hash: md5: 0619e8fc4c8025a908ea3a3422d3b775 sha256: c4f59563e017eba378ea843be5ebde4b0546c72bbe4c1e43b2b384379e827635 @@ -2426,7 +2481,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://repo.prefix.dev/conda-forge/win-64/libxml2-2.13.7-h442d1da_1.conda hash: md5: c14ff7f05e57489df9244917d2b55763 sha256: 0a013527f784f4702dc18460070d8ec79d1ebb5087dd9e678d6afbeaca68d2ac @@ -2439,7 +2494,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://repo.prefix.dev/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda hash: md5: edb0dca6bc32e4f4789199455a1dbeb8 sha256: d4bfe88d7cb447768e31650f06257995601f89076080e76df55e3112d4e47dc4 @@ -2453,36 +2508,36 @@ 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://repo.prefix.dev/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda hash: md5: 41fbfac52c601159df6c01f875de31b9 sha256: ba945c6493449bed0e6e29883c4943817f7c79cbff52b83360f7b341277c6402 category: main optional: false - name: llvm-openmp - version: 20.1.2 + version: 20.1.4 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://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-20.1.4-h024ca30_0.conda hash: - md5: 39a3992c2624b8d8e6b4994dedf3102a - sha256: 2c70e18a5bcb3fc2925e5d2c2c39559253d19e38c111afc91885f0dee4540fb1 + md5: 4fc395cda27912a7d904b86b5dbf3a4d + sha256: 5b39cdde3457e41b133d6f1fe53095c7fd3951bbdab46580098ccbf5ee9c99f7 category: main optional: false - name: llvm-openmp - version: 20.1.2 + version: 20.1.4 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://repo.prefix.dev/conda-forge/win-64/llvm-openmp-20.1.4-h30eaf37_0.conda hash: - md5: d5a4f53b65d7d1d53104ba24107eda04 - sha256: 3ba2b892d6e153599512fa7fe2791125ff1b7dd6740469f74aff2d1b48edf299 + md5: 3087da6f7e741dc1498e85ef87a553dc + sha256: 0c85b0ceda02c26bbea5a789c2d1735485dbc2a1089655a8f2193c5850a7bbab category: main optional: false - name: locket @@ -2491,7 +2546,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://repo.prefix.dev/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 91e27ef3d05cc772ce627e51cff111c4 sha256: 9afe0b5cfa418e8bdb30d8917c5a6cec10372b037924916f1f85b9f4899a67a6 @@ -2503,7 +2558,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://repo.prefix.dev/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 91e27ef3d05cc772ce627e51cff111c4 sha256: 9afe0b5cfa418e8bdb30d8917c5a6cec10372b037924916f1f85b9f4899a67a6 @@ -2518,7 +2573,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://repo.prefix.dev/conda-forge/linux-64/markupsafe-3.0.2-py312h178313f_1.conda hash: md5: eb227c3e0bf58f5bd69c0532b157975b sha256: 4a6bf68d2a2b669fecc9a4a009abd1cf8e72c2289522ff00d81b5a6e51ae78f5 @@ -2534,7 +2589,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://repo.prefix.dev/conda-forge/win-64/markupsafe-3.0.2-py312h31fea79_1.conda hash: md5: 944fdd848abfbd6929e57c790b8174dd sha256: bbb9595fe72231a8fbc8909cfa479af93741ecd2d28dfe37f8f205fef5df2217 @@ -2561,7 +2616,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://repo.prefix.dev/conda-forge/linux-64/matplotlib-base-3.8.4-py312h20ab3a6_2.conda hash: md5: fbfe798f83f0d66410903ad8f40d5283 sha256: a927afa9e4b5cf7889b5a82ef2286b089873f402a0d0e10e6adb4cbf820a4db9 @@ -2588,7 +2643,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://repo.prefix.dev/conda-forge/win-64/matplotlib-base-3.8.4-py312hfee7060_2.conda hash: md5: 6b623fa66ac3cd1601da60160c46514b sha256: 023644d13bf1fab7c58f4df0d461cd237874802b0e7370ad049463d39d2fb2f4 @@ -2600,7 +2655,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://repo.prefix.dev/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda hash: md5: 827064ddfe0de2917fb29f1da4f8f533 sha256: 9b0037171dad0100f0296699a11ae7d355237b55f42f9094aebc0f41512d96a1 @@ -2612,7 +2667,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://repo.prefix.dev/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda hash: md5: 827064ddfe0de2917fb29f1da4f8f533 sha256: 9b0037171dad0100f0296699a11ae7d355237b55f42f9094aebc0f41512d96a1 @@ -2626,7 +2681,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://repo.prefix.dev/conda-forge/linux-64/metis-5.1.0-hd0bcaf9_1007.conda hash: md5: 28eb714416de4eb83e2cbc47e99a1b45 sha256: e8a00971e6d00bd49f375c5d8d005b37a9abba0b1768533aed0f90a422bf5cc7 @@ -2640,7 +2695,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://repo.prefix.dev/conda-forge/linux-64/mkl-2024.2.2-ha957f24_16.conda hash: md5: 1459379c79dda834673426504d52b319 sha256: 77906b0acead8f86b489da46f53916e624897338770dbf70b04b8f673c9273c1 @@ -2653,7 +2708,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://repo.prefix.dev/conda-forge/win-64/mkl-2024.2.2-h66d3029_15.conda hash: md5: 302dff2807f2927b3e9e0d19d60121de sha256: 20e52b0389586d0b914a49cd286c5ccc9c47949bed60ca6df004d1d295f2edbd @@ -2669,7 +2724,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://repo.prefix.dev/conda-forge/linux-64/msgpack-python-1.1.0-py312h68727a3_0.conda hash: md5: 5c9b020a3f86799cdc6115e55df06146 sha256: 4bc53333774dea1330643b7e23aa34fd6880275737fc2e07491795872d3af8dd @@ -2685,7 +2740,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://repo.prefix.dev/conda-forge/win-64/msgpack-python-1.1.0-py312hd5eb7cc_0.conda hash: md5: ff4f1e63a6438a06d1ab259936e5c2ac sha256: 3fd45d9c0830e931e34990cb90e88ba53cc7f89fce69fc7d1a8289639d363e85 @@ -2696,10 +2751,10 @@ 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://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 @@ -2717,10 +2772,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://packages.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 @@ -2730,14 +2785,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://packages.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 @@ -2746,7 +2801,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://repo.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 hash: md5: 2ba8498c1018c1e9c61eb99b973dfe19 sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 @@ -2758,7 +2813,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://repo.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 hash: md5: 2ba8498c1018c1e9c61eb99b973dfe19 sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 @@ -2771,7 +2826,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://repo.prefix.dev/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda hash: md5: 47e340acb35de30501a76c7c799c41d7 sha256: 3fde293232fa3fca98635e1167de6b7c7fda83caf24b9d6c91ec9eefb4f4d586 @@ -2790,7 +2845,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://repo.prefix.dev/conda-forge/linux-64/numcodecs-0.15.1-py312hf9745cd_0.conda hash: md5: 8a1f88d4985ee1c16b0db1af39a8554d sha256: 209a84599e36db68865dce5618c3328a2d57267d339255204815885b220a20f2 @@ -2809,7 +2864,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://repo.prefix.dev/conda-forge/win-64/numcodecs-0.15.1-py312h72972c8_0.conda hash: md5: bba8bf88b520170565f2f51e99926683 sha256: ce01a82077b12bffd6c3e5281f02bc6a690a8e0e3750c44e3c624c68f6a70d9e @@ -2827,7 +2882,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://repo.prefix.dev/conda-forge/linux-64/numpy-1.26.4-py312heda63a1_0.conda hash: md5: d8285bea2a350f63fab23bf460221f3f sha256: fe3459c75cf84dcef6ef14efcc4adb0ade66038ddd27cadb894f34f4797687d8 @@ -2846,7 +2901,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://repo.prefix.dev/conda-forge/win-64/numpy-1.26.4-py312h8753938_0.conda hash: md5: f9ac74c3b07c396014434aca1e58d362 sha256: 73570817a5109d396b4ebbe5124a89525959269fd33fa33fd413700289fbe0ef @@ -2863,7 +2918,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://repo.prefix.dev/conda-forge/linux-64/openjpeg-2.5.3-h5fbd93e_0.conda hash: md5: 9e5816bc95d285c115a3ebc2f8563564 sha256: 5bee706ea5ba453ed7fd9da7da8380dd88b865c8d30b5aaec14d2b6dd32dbc39 @@ -2880,7 +2935,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://repo.prefix.dev/conda-forge/win-64/openjpeg-2.5.3-h4d64b90_0.conda hash: md5: fc050366dd0b8313eb797ed1ffef3a29 sha256: 410175815df192f57a07c29a6b3fdd4231937173face9e63f0830c1234272ce3 @@ -2894,7 +2949,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://repo.prefix.dev/conda-forge/linux-64/openssl-3.5.0-h7b32b05_0.conda hash: md5: bb539841f2a3fde210f387d00ed4bb9d sha256: 38285d280f84f1755b7c54baf17eccf2e3e696287954ce0adca16546b85ee62c @@ -2909,34 +2964,34 @@ 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://repo.prefix.dev/conda-forge/win-64/openssl-3.5.0-ha4e3fda_0.conda hash: md5: 4ea7db75035eb8c13fa680bb90171e08 sha256: 43dd7f56da142ca83c614c8b0085589650ae9032b351a901c190e48eefc73675 category: main optional: false - 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 + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda hash: - md5: 3bfed7e6228ebf2f7b9eaa47f1b4e2aa - sha256: da157b19bcd398b9804c5c52fc000fcb8ab0525bdb9c70f95beaa0bb42f85af1 + md5: 58335b26c38bf4a20f399384c33cbcf9 + sha256: 289861ed0c13a15d7bbb408796af4de72c2fe67e2bcb0de98f4c3fce259d7991 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 + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda hash: - md5: 3bfed7e6228ebf2f7b9eaa47f1b4e2aa - sha256: da157b19bcd398b9804c5c52fc000fcb8ab0525bdb9c70f95beaa0bb42f85af1 + md5: 58335b26c38bf4a20f399384c33cbcf9 + sha256: 289861ed0c13a15d7bbb408796af4de72c2fe67e2bcb0de98f4c3fce259d7991 category: main optional: false - name: partd @@ -2947,7 +3002,7 @@ package: locket: '' python: '>=3.9' toolz: '' - url: https://packages.prefix.dev/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 @@ -2961,7 +3016,7 @@ package: locket: '' python: '>=3.9' toolz: '' - url: https://packages.prefix.dev/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 @@ -2984,7 +3039,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://repo.prefix.dev/conda-forge/linux-64/pillow-10.3.0-py312h287a98d_1.conda hash: md5: b1325cda3f250f9f842180607054e6ed sha256: e1a2426f23535fc15e577d799685229a93117b645734e5cca60597bb23cef09e @@ -3009,38 +3064,38 @@ 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://repo.prefix.dev/conda-forge/win-64/pillow-10.3.0-py312h381445a_1.conda hash: md5: 04c1de8505791c12db1a0374f12e6e01 sha256: 2bd6e58a0630fdb9a52f532ce582907babc725930e1ba784c7cd74063f28d073 category: main optional: false - name: pip - version: 25.0.1 + version: '25.1' manager: conda platform: linux-64 dependencies: 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://repo.prefix.dev/conda-forge/noarch/pip-25.1-pyh8b19718_0.conda hash: - md5: 79b5c1440aedc5010f687048d9103628 - sha256: 585940f09d87787f79f73ff5dff8eb2af8a67e5bec5eebf2f553cd26c840ba69 + md5: 2247aa245832ea47e8b971bef73d7094 + sha256: 81a7ffe7b7ca8718bc09476a258cd48754e1d4e1bd3b80a6fef41ffb71e3bfc8 category: main optional: false - name: pip - version: 25.0.1 + version: '25.1' manager: conda platform: win-64 dependencies: 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://repo.prefix.dev/conda-forge/noarch/pip-25.1-pyh8b19718_0.conda hash: - md5: 79b5c1440aedc5010f687048d9103628 - sha256: 585940f09d87787f79f73ff5dff8eb2af8a67e5bec5eebf2f553cd26c840ba69 + md5: 2247aa245832ea47e8b971bef73d7094 + sha256: 81a7ffe7b7ca8718bc09476a258cd48754e1d4e1bd3b80a6fef41ffb71e3bfc8 category: main optional: false - name: platformdirs @@ -3049,7 +3104,7 @@ package: platform: linux-64 dependencies: python: '' - url: https://packages.prefix.dev/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 @@ -3061,7 +3116,7 @@ package: platform: win-64 dependencies: python: '' - url: https://packages.prefix.dev/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 @@ -3073,7 +3128,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://repo.prefix.dev/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_1.conda hash: md5: e9dcbce5f45f9ee500e728ae58b605b6 sha256: 122433fc5318816b8c69283aaf267c73d87aa2d09ce39f64c9805c9a3b264819 @@ -3085,7 +3140,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://repo.prefix.dev/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_1.conda hash: md5: e9dcbce5f45f9ee500e728ae58b605b6 sha256: 122433fc5318816b8c69283aaf267c73d87aa2d09ce39f64c9805c9a3b264819 @@ -3100,7 +3155,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://repo.prefix.dev/conda-forge/linux-64/psutil-7.0.0-py312h66e93f0_0.conda hash: md5: 8e30db4239508a538e4a3b3cdf5b9616 sha256: 158047d7a80e588c846437566d0df64cec5b0284c7184ceb4f3c540271406888 @@ -3116,7 +3171,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://repo.prefix.dev/conda-forge/win-64/psutil-7.0.0-py312h4389bb4_0.conda hash: md5: f5b86d6e2e645ee276febe79a310b640 sha256: 088451ee2c9a349e1168f70afe275e58f86350faffb09c032cff76f97d4fb7bb @@ -3129,7 +3184,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://repo.prefix.dev/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda hash: md5: b3c17d95b5a10c6e64a21fa17573e70e sha256: 9c88f8c64590e9567c6c80823f0328e58d3b1efb0e1c539c0315ceca764e0973 @@ -3143,7 +3198,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://repo.prefix.dev/conda-forge/win-64/pthread-stubs-0.4-h0e40799_1002.conda hash: md5: 3c8f2573569bb816483e5cf57efbbe29 sha256: 7e446bafb4d692792310ed022fe284e848c6a868c861655a92435af7368bae7b @@ -3155,7 +3210,7 @@ package: platform: linux-64 dependencies: python: '' - url: https://packages.prefix.dev/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 @@ -3167,7 +3222,7 @@ package: platform: win-64 dependencies: python: '' - url: https://packages.prefix.dev/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 @@ -3184,7 +3239,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://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.3-pyh3cfb1c2_0.conda hash: md5: 3c6f7f8ae9b9c177ad91ccc187912756 sha256: 89183785b09ebe9f9e65710057d7c41e9d21d4a9ad05e068850e18669655d5a8 @@ -3201,7 +3256,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://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.3-pyh3cfb1c2_0.conda hash: md5: 3c6f7f8ae9b9c177ad91ccc187912756 sha256: 89183785b09ebe9f9e65710057d7c41e9d21d4a9ad05e068850e18669655d5a8 @@ -3217,7 +3272,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://repo.prefix.dev/conda-forge/linux-64/pydantic-core-2.33.1-py312h3b7be25_0.conda hash: md5: 4767e28fcbf646ffc18ef4021534c415 sha256: 281dc40103c324309bf62cf9ed861f38e949b8b1da786f25e5ad199a86a67a6d @@ -3234,7 +3289,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://repo.prefix.dev/conda-forge/win-64/pydantic-core-2.33.1-py312hfe1d9c4_0.conda hash: md5: 08c86823811befb8a83b9f403815e6ab sha256: 67b51ddb720d738c3eee96e7998d7a5b99530893f373714555f4941b15d1bd70 @@ -3252,7 +3307,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://repo.prefix.dev/conda-forge/linux-64/pydiso-0.1.2-py312h772f2df_0.conda hash: md5: f0af4a616cc1358e6ad9477ddcbbaea3 sha256: 158bd81f3ddd52e613ec54d0c680d6d0f7c87a461ee75bd26a7fc07890cf40f0 @@ -3271,7 +3326,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://repo.prefix.dev/conda-forge/win-64/pydiso-0.1.2-py312h01acb21_0.conda hash: md5: 14fd07b07c4819cd08beed7fbda91712 sha256: 4b8daf7934b7f3458bd0e3faeb5cd378fb3f5dc19840f71c7f23fe6a0b7c0849 @@ -3283,7 +3338,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://repo.prefix.dev/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda hash: md5: 232fb4577b6687b2d503ef8e254270c9 sha256: 28a3e3161390a9d23bc02b4419448f8d27679d9e2c250e29849e37749c8de86b @@ -3295,7 +3350,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://repo.prefix.dev/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda hash: md5: 232fb4577b6687b2d503ef8e254270c9 sha256: 28a3e3161390a9d23bc02b4419448f8d27679d9e2c250e29849e37749c8de86b @@ -3316,7 +3371,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://repo.prefix.dev/conda-forge/noarch/pylint-3.3.6-pyh29332c3_0.conda hash: md5: 8242cc62822cc8a17f53d24d4efa75f4 sha256: 3e3e35b2cbb4b1ca3063fc2d6f44a85ac189e0935f00ed8fbe8e4713c0d00b99 @@ -3337,7 +3392,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://repo.prefix.dev/conda-forge/noarch/pylint-3.3.6-pyh29332c3_0.conda hash: md5: 8242cc62822cc8a17f53d24d4efa75f4 sha256: 3e3e35b2cbb4b1ca3063fc2d6f44a85ac189e0935f00ed8fbe8e4713c0d00b99 @@ -3353,7 +3408,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://repo.prefix.dev/conda-forge/noarch/pymatsolver-0.3.1-pyh48887ae_201.conda hash: md5: b6805e522702eabf2ebbd236490d5eed sha256: d49ad9b58b9eeae204a3677cafc389c00c7f0f830ef76f481ab9aaf3e0260bad @@ -3369,7 +3424,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://repo.prefix.dev/conda-forge/noarch/pymatsolver-0.3.1-pyh48887ae_201.conda hash: md5: b6805e522702eabf2ebbd236490d5eed sha256: d49ad9b58b9eeae204a3677cafc389c00c7f0f830ef76f481ab9aaf3e0260bad @@ -3381,7 +3436,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://repo.prefix.dev/conda-forge/noarch/pyparsing-3.2.3-pyhd8ed1ab_1.conda hash: md5: 513d3c262ee49b54a8fec85c5bc99764 sha256: b92afb79b52fcf395fd220b29e0dd3297610f2059afac45298d44e00fcbf23b6 @@ -3393,7 +3448,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://repo.prefix.dev/conda-forge/noarch/pyparsing-3.2.3-pyhd8ed1ab_1.conda hash: md5: 513d3c262ee49b54a8fec85c5bc99764 sha256: b92afb79b52fcf395fd220b29e0dd3297610f2059afac45298d44e00fcbf23b6 @@ -3406,7 +3461,7 @@ package: dependencies: __unix: '' python: '>=3.9' - url: https://packages.prefix.dev/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 @@ -3420,7 +3475,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://repo.prefix.dev/conda-forge/noarch/pysocks-1.7.1-pyh09c184e_7.conda hash: md5: e2fd202833c4a981ce8a65974fe4abd1 sha256: d016e04b0e12063fbee4a2d5fbb9b39a8d191b5a0042f0b8459188aedeabb0ca @@ -3438,7 +3493,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://repo.prefix.dev/conda-forge/noarch/pytest-8.3.5-pyhd8ed1ab_0.conda hash: md5: c3c9316209dec74a705a36797970c6be sha256: 963524de7340c56615583ba7b97a6beb20d5c56a59defb59724dc2a3105169c9 @@ -3456,7 +3511,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://repo.prefix.dev/conda-forge/noarch/pytest-8.3.5-pyhd8ed1ab_0.conda hash: md5: c3c9316209dec74a705a36797970c6be sha256: 963524de7340c56615583ba7b97a6beb20d5c56a59defb59724dc2a3105169c9 @@ -3471,7 +3526,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://repo.prefix.dev/conda-forge/noarch/pytest-cov-6.1.1-pyhd8ed1ab_0.conda hash: md5: 1e35d8f975bc0e984a19819aa91c440a sha256: 9961a1524f63d10bc29efdc52013ec06b0e95fb2619a250e250ff3618261d5cd @@ -3486,7 +3541,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://repo.prefix.dev/conda-forge/noarch/pytest-cov-6.1.1-pyhd8ed1ab_0.conda hash: md5: 1e35d8f975bc0e984a19819aa91c440a sha256: 9961a1524f63d10bc29efdc52013ec06b0e95fb2619a250e250ff3618261d5cd @@ -3515,7 +3570,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://repo.prefix.dev/conda-forge/linux-64/python-3.12.10-h9e4cc4f_0_cpython.conda hash: md5: a41d26cd4d47092d683915d058380dec sha256: 4dc1da115805bd353bded6ab20ff642b6a15fcc72ac2f3de0e1d014ff3612221 @@ -3539,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/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 @@ -3552,7 +3607,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://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda hash: md5: 5ba79d7c71f03c678c8ead841f347d6e sha256: a50052536f1ef8516ed11a844f9413661829aa083304dc624c5925298d078d79 @@ -3565,7 +3620,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://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda hash: md5: 5ba79d7c71f03c678c8ead841f347d6e sha256: a50052536f1ef8516ed11a844f9413661829aa083304dc624c5925298d078d79 @@ -3583,7 +3638,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://repo.prefix.dev/conda-forge/linux-64/python-mumps-0.0.3-py312h6ad3ee3_0.conda hash: md5: 8755e9f1fee9ef390542f834aad6f85e sha256: a5897ce6cd551999957b11da404a16b362e5f761493560c1d68fb93b63bbe031 @@ -3602,7 +3657,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://repo.prefix.dev/conda-forge/win-64/python-mumps-0.0.3-py312h8095395_0.conda hash: md5: 7945c283a26d63be8f8a364bbd721099 sha256: 0e518ca1714fa781ffb92ca2e90fd0f12a6033ab79f7013e22fdc4a82e2eee0f @@ -3613,10 +3668,10 @@ 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://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 @@ -3624,10 +3679,10 @@ 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://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 @@ -3636,7 +3691,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://repo.prefix.dev/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda hash: md5: bc8e3267d44011051f2eb14d22fb0960 sha256: 8d2a8bf110cc1fc3df6904091dead158ba3e614d8402a83e51ed3a8aa93cdeb0 @@ -3648,7 +3703,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://repo.prefix.dev/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda hash: md5: bc8e3267d44011051f2eb14d22fb0960 sha256: 8d2a8bf110cc1fc3df6904091dead158ba3e614d8402a83e51ed3a8aa93cdeb0 @@ -3664,7 +3719,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://repo.prefix.dev/conda-forge/linux-64/pyyaml-6.0.2-py312h178313f_2.conda hash: md5: cf2485f39740de96e2a7f2bb18ed2fee sha256: 159cba13a93b3fe084a1eb9bda0a07afc9148147647f0d437c3c3da60980503b @@ -3681,7 +3736,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://repo.prefix.dev/conda-forge/win-64/pyyaml-6.0.2-py312h31fea79_2.conda hash: md5: ba00a2e5059c1fde96459858537cc8f5 sha256: 76fec03ef7e67e37724873e1f805131fb88efb57f19e9a77b4da616068ef5c28 @@ -3694,7 +3749,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://repo.prefix.dev/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda hash: md5: 283b96675859b20a825f8fa30f311446 sha256: 2d6d0c026902561ed77cd646b5021aef2d4db22e57a5b0178dfc669231e06d2c @@ -3709,7 +3764,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://repo.prefix.dev/conda-forge/noarch/readthedocs-sphinx-ext-2.2.5-pyhd8ed1ab_1.conda hash: md5: 42840a95562a02bef45e7b7fb24dcba4 sha256: e391356581919077b1639ebd13f4cbb0773acfd5710cfe4188921e8a0387dc6b @@ -3724,7 +3779,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://repo.prefix.dev/conda-forge/noarch/readthedocs-sphinx-ext-2.2.5-pyhd8ed1ab_1.conda hash: md5: 42840a95562a02bef45e7b7fb24dcba4 sha256: e391356581919077b1639ebd13f4cbb0773acfd5710cfe4188921e8a0387dc6b @@ -3740,7 +3795,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://repo.prefix.dev/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda hash: md5: a9b9368f3701a417eac9edbcae7cb737 sha256: d701ca1136197aa121bbbe0e8c18db6b5c94acbd041c2b43c70e5ae104e1d8ad @@ -3756,7 +3811,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://repo.prefix.dev/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda hash: md5: a9b9368f3701a417eac9edbcae7cb737 sha256: d701ca1136197aa121bbbe0e8c18db6b5c94acbd041c2b43c70e5ae104e1d8ad @@ -3770,7 +3825,7 @@ package: libspatialindex: '>=2.0.0,<2.0.1.0a0' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://packages.prefix.dev/conda-forge/linux-64/rtree-1.2.0-py312h3ed4c40_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/rtree-1.2.0-py312h3ed4c40_1.conda hash: md5: 99780d5aa94447bc17298a22565ad592 sha256: 2936fc466bac7dd43b80072440b2daaa1e76db504e2218b76a4e3b7528acb196 @@ -3784,7 +3839,7 @@ package: libspatialindex: '>=2.0.0,<2.0.1.0a0' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://packages.prefix.dev/conda-forge/win-64/rtree-1.2.0-py312h50e5f8f_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/rtree-1.2.0-py312h50e5f8f_1.conda hash: md5: bf074df5a51c193b2d14d13c1bf404a3 sha256: c0cdbd6ede905c2ff0c6c86277bac5f8967da373185649d47984bb4ee21f72fb @@ -3804,7 +3859,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://repo.prefix.dev/conda-forge/linux-64/scikit-learn-1.4.2-py312h1fcc3ea_1.conda hash: md5: e6610a08bdbc02525c597e555da55a3a sha256: c2676b9aa8380a4d7e10a815cfc684a66fe312234841574397283d09eba45578 @@ -3824,7 +3879,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://repo.prefix.dev/conda-forge/win-64/scikit-learn-1.4.2-py312h816cc57_1.conda hash: md5: 9d5234a79af607372f44932132ca2c29 sha256: b89ae982911b956158e474777ce7d568da946db0aad91d7aa9686641b7080b9f @@ -3846,7 +3901,7 @@ package: numpy: '>=1.23.5' 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://repo.prefix.dev/conda-forge/linux-64/scipy-1.14.1-py312h62794b6_2.conda hash: md5: 94688dd449f6c092e5f951780235aca1 sha256: 6e4916d610dc15f9b504517bd6c1f3dbbae019a3c7abf0aeb55f310c452a4474 @@ -3866,34 +3921,34 @@ 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-py312h337df96_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/scipy-1.14.1-py312h337df96_2.conda hash: md5: 3ef0017e79039d4767ba3b4891113a07 sha256: eb67adcca33026895b6539d02e1bc01f495e1d593a26053d734fe7a180e708f4 category: main optional: false - name: setuptools - version: 78.1.0 + version: 80.1.0 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/setuptools-78.1.0-pyhff2d567_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/setuptools-80.1.0-pyhff2d567_0.conda hash: - md5: a42da9837e46c53494df0044c3eb1f53 - sha256: d4c74d2140f2fbc72fe5320cbd65f3fd1d1f7832ab4d7825c37c38ab82440ae2 + md5: f6f72d0837c79eaec77661be43e8a691 + sha256: 777d34ed359cedd5a5004c930077c101bb3b70e5fbb04d29da5058d75b0ba487 category: main optional: false - name: setuptools - version: 78.1.0 + version: 80.1.0 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://packages.prefix.dev/conda-forge/noarch/setuptools-78.1.0-pyhff2d567_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/setuptools-80.1.0-pyhff2d567_0.conda hash: - md5: a42da9837e46c53494df0044c3eb1f53 - sha256: d4c74d2140f2fbc72fe5320cbd65f3fd1d1f7832ab4d7825c37c38ab82440ae2 + md5: f6f72d0837c79eaec77661be43e8a691 + sha256: 777d34ed359cedd5a5004c930077c101bb3b70e5fbb04d29da5058d75b0ba487 category: main optional: false - name: six @@ -3902,7 +3957,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://repo.prefix.dev/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda hash: md5: a451d576819089b0d672f18768be0f65 sha256: 41db0180680cc67c3fa76544ffd48d6a5679d96f4b71d7498a759e94edc9a2db @@ -3914,7 +3969,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://repo.prefix.dev/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda hash: md5: a451d576819089b0d672f18768be0f65 sha256: 41db0180680cc67c3fa76544ffd48d6a5679d96f4b71d7498a759e94edc9a2db @@ -3926,7 +3981,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://repo.prefix.dev/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 4d22a9315e78c6827f806065957d566e sha256: a0fd916633252d99efb6223b1050202841fa8d2d53dacca564b0ed77249d3228 @@ -3938,7 +3993,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://repo.prefix.dev/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2 hash: md5: 4d22a9315e78c6827f806065957d566e sha256: a0fd916633252d99efb6223b1050202841fa8d2d53dacca564b0ed77249d3228 @@ -3950,7 +4005,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://repo.prefix.dev/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_1.conda hash: md5: 0401a17ae845fa72c7210e206ec5647d sha256: d1e3e06b5cf26093047e63c8cc77b70d970411c5cbc0cb1fad461a8a8df599f7 @@ -3962,7 +4017,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://repo.prefix.dev/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_1.conda hash: md5: 0401a17ae845fa72c7210e206ec5647d sha256: d1e3e06b5cf26093047e63c8cc77b70d970411c5cbc0cb1fad461a8a8df599f7 @@ -3991,7 +4046,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://repo.prefix.dev/conda-forge/noarch/sphinx-5.3.0-pyhd8ed1ab_0.tar.bz2 hash: md5: f9e1fcfe235d655900bfeb6aee426472 sha256: f11fd5fb4ae2c65f41ae86e7408e3ab44844898d928264aa9e89929fffc685c8 @@ -4020,7 +4075,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://repo.prefix.dev/conda-forge/noarch/sphinx-5.3.0-pyhd8ed1ab_0.tar.bz2 hash: md5: f9e1fcfe235d655900bfeb6aee426472 sha256: f11fd5fb4ae2c65f41ae86e7408e3ab44844898d928264aa9e89929fffc685c8 @@ -4033,7 +4088,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 16e3f039c0aa6446513e94ab18a8784b sha256: d7433a344a9ad32a680b881c81b0034bc61618d12c39dd6e3309abeffa9577ba @@ -4046,7 +4101,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 16e3f039c0aa6446513e94ab18a8784b sha256: d7433a344a9ad32a680b881c81b0034bc61618d12c39dd6e3309abeffa9577ba @@ -4059,7 +4114,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 910f28a05c178feba832f842155cbfff sha256: 55d5076005d20b84b20bee7844e686b7e60eb9f683af04492e598a622b12d53d @@ -4072,7 +4127,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 910f28a05c178feba832f842155cbfff sha256: 55d5076005d20b84b20bee7844e686b7e60eb9f683af04492e598a622b12d53d @@ -4085,7 +4140,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_1.conda hash: md5: e9fb3fe8a5b758b4aff187d434f94f03 sha256: c1492c0262ccf16694bdcd3bb62aa4627878ea8782d5cd3876614ffeb62b3996 @@ -4098,7 +4153,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_1.conda hash: md5: e9fb3fe8a5b758b4aff187d434f94f03 sha256: c1492c0262ccf16694bdcd3bb62aa4627878ea8782d5cd3876614ffeb62b3996 @@ -4110,7 +4165,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_1.conda hash: md5: fa839b5ff59e192f411ccc7dae6588bb sha256: 578bef5ec630e5b2b8810d898bbbf79b9ae66d49b7938bcc3efc364e679f2a62 @@ -4122,7 +4177,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_1.conda hash: md5: fa839b5ff59e192f411ccc7dae6588bb sha256: 578bef5ec630e5b2b8810d898bbbf79b9ae66d49b7938bcc3efc364e679f2a62 @@ -4135,7 +4190,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 00534ebcc0375929b45c3039b5ba7636 sha256: c664fefae4acdb5fae973bdde25836faf451f41d04342b64a358f9a7753c92ca @@ -4148,7 +4203,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_1.conda hash: md5: 00534ebcc0375929b45c3039b5ba7636 sha256: c664fefae4acdb5fae973bdde25836faf451f41d04342b64a358f9a7753c92ca @@ -4161,7 +4216,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda hash: md5: 3bc61f7161d28137797e038263c04c54 sha256: 64d89ecc0264347486971a94487cb8d7c65bfc0176750cf7502b8a272f4ab557 @@ -4174,7 +4229,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://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda hash: md5: 3bc61f7161d28137797e038263c04c54 sha256: 64d89ecc0264347486971a94487cb8d7c65bfc0176750cf7502b8a272f4ab557 @@ -4189,7 +4244,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://repo.prefix.dev/conda-forge/linux-64/tbb-2021.13.0-hceb3a55_1.conda hash: md5: ba7726b8df7b9d34ea80e82b097a4893 sha256: 65463732129899770d54b1fbf30e1bb82fdebda9d7553caf08d23db4590cd691 @@ -4204,7 +4259,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://repo.prefix.dev/conda-forge/win-64/tbb-2021.13.0-h62715c5_1.conda hash: md5: 9190dd0a23d925f7602f9628b3aed511 sha256: 03cc5442046485b03dd1120d0f49d35a7e522930a2ab82f275e938e17b07b302 @@ -4216,7 +4271,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://repo.prefix.dev/conda-forge/noarch/tblib-3.1.0-pyhd8ed1ab_0.conda hash: md5: a15c62b8a306b8978f094f76da2f903f sha256: a83c83f5e622a2f34fb1d179c55c3ff912429cd0a54f9f3190ae44a0fdba2ad2 @@ -4228,7 +4283,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://repo.prefix.dev/conda-forge/noarch/tblib-3.1.0-pyhd8ed1ab_0.conda hash: md5: a15c62b8a306b8978f094f76da2f903f sha256: a83c83f5e622a2f34fb1d179c55c3ff912429cd0a54f9f3190ae44a0fdba2ad2 @@ -4240,7 +4295,7 @@ package: platform: linux-64 dependencies: python: '>=3.8' - url: https://packages.prefix.dev/conda-forge/noarch/threadpoolctl-3.3.0-pyhc1e730c_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/threadpoolctl-3.3.0-pyhc1e730c_0.conda hash: md5: 698d2d2b621640bddb9191f132967c9f sha256: 5ba8bd3f2d49b3b860eb4481ca9505c57d4427212eb12cadd2b351309d5c28e6 @@ -4252,7 +4307,7 @@ package: platform: win-64 dependencies: python: '>=3.8' - url: https://packages.prefix.dev/conda-forge/noarch/threadpoolctl-3.3.0-pyhc1e730c_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/threadpoolctl-3.3.0-pyhc1e730c_0.conda hash: md5: 698d2d2b621640bddb9191f132967c9f sha256: 5ba8bd3f2d49b3b860eb4481ca9505c57d4427212eb12cadd2b351309d5c28e6 @@ -4265,7 +4320,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://repo.prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda hash: md5: d453b98d9c83e71da0741bb0ff4d76bc sha256: e0569c9caa68bf476bead1bed3d79650bb080b532c64a4af7d8ca286c08dea4e @@ -4279,7 +4334,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://repo.prefix.dev/conda-forge/win-64/tk-8.6.13-h5226925_1.conda hash: md5: fc048363eb8f03cd1737600a5d08aafe sha256: 2c4e914f521ccb2718946645108c9bd3fc3216ba69aea20c2c3cedbd8db32bb1 @@ -4291,7 +4346,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://repo.prefix.dev/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_1.conda hash: md5: b0dd904de08b7db706167240bf37b164 sha256: 34f3a83384ac3ac30aefd1309e69498d8a4aa0bf2d1f21c645f79b180e378938 @@ -4303,7 +4358,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://repo.prefix.dev/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_1.conda hash: md5: b0dd904de08b7db706167240bf37b164 sha256: 34f3a83384ac3ac30aefd1309e69498d8a4aa0bf2d1f21c645f79b180e378938 @@ -4315,7 +4370,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://repo.prefix.dev/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda hash: md5: ac944244f1fed2eb49bae07193ae8215 sha256: 18636339a79656962723077df9a56c0ac7b8a864329eb8f847ee3d38495b863e @@ -4327,7 +4382,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://repo.prefix.dev/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda hash: md5: ac944244f1fed2eb49bae07193ae8215 sha256: 18636339a79656962723077df9a56c0ac7b8a864329eb8f847ee3d38495b863e @@ -4339,7 +4394,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://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.2-pyha770c72_1.conda hash: md5: 1d9ab4fc875c52db83f9c9b40af4e2c8 sha256: 986fae65f5568e95dbf858d08d77a0f9cca031345a98550f1d4b51d36d8811e2 @@ -4351,7 +4406,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://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.2-pyha770c72_1.conda hash: md5: 1d9ab4fc875c52db83f9c9b40af4e2c8 sha256: 986fae65f5568e95dbf858d08d77a0f9cca031345a98550f1d4b51d36d8811e2 @@ -4363,7 +4418,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://repo.prefix.dev/conda-forge/noarch/toolz-1.0.0-pyhd8ed1ab_1.conda hash: md5: 40d0ed782a8aaa16ef248e68c06c168d sha256: eda38f423c33c2eaeca49ed946a8d3bf466cc3364970e083a65eb2fd85258d87 @@ -4375,7 +4430,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://repo.prefix.dev/conda-forge/noarch/toolz-1.0.0-pyhd8ed1ab_1.conda hash: md5: 40d0ed782a8aaa16ef248e68c06c168d sha256: eda38f423c33c2eaeca49ed946a8d3bf466cc3364970e083a65eb2fd85258d87 @@ -4390,7 +4445,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://repo.prefix.dev/conda-forge/linux-64/tornado-6.4.2-py312h66e93f0_0.conda hash: md5: e417822cb989e80a0d2b1b576fdd1657 sha256: 062a3a3a37fa8615ce57929ba7e982c76f5a5810bcebd435950f6d6c4147c310 @@ -4406,7 +4461,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://repo.prefix.dev/conda-forge/win-64/tornado-6.4.2-py312h4389bb4_0.conda hash: md5: f06104f71f496b0784b35b23e30e7990 sha256: e21f24e5d598d9a31c604f510c82fbe73d756696bc70a69f11811a2ea9dd5d95 @@ -4419,7 +4474,7 @@ package: dependencies: colorama: '' python: '>=3.9' - url: https://packages.prefix.dev/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 @@ -4432,7 +4487,7 @@ package: dependencies: colorama: '' python: '>=3.9' - url: https://packages.prefix.dev/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 @@ -4445,7 +4500,7 @@ package: dependencies: numpy: '' python: '>=2.7' - url: https://packages.prefix.dev/conda-forge/noarch/trimesh-4.1.8-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/trimesh-4.1.8-pyhd8ed1ab_0.conda hash: md5: 78302527eb6c9d18b07a91e6a72ef957 sha256: 021110c37eca2f0fca85ba6ac4576c509d23079758f63942e2f9a6954282f2ce @@ -4458,7 +4513,7 @@ package: dependencies: numpy: '' python: '>=2.7' - url: https://packages.prefix.dev/conda-forge/noarch/trimesh-4.1.8-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/trimesh-4.1.8-pyhd8ed1ab_0.conda hash: md5: 78302527eb6c9d18b07a91e6a72ef957 sha256: 021110c37eca2f0fca85ba6ac4576c509d23079758f63942e2f9a6954282f2ce @@ -4470,7 +4525,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://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.13.2-h0e9735f_0.conda hash: md5: 568ed1300869dca0ba09fb750cda5dbb sha256: 4865fce0897d3cb0ffc8998219157a8325f6011c136e6fd740a9a6b169419296 @@ -4482,7 +4537,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://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.13.2-h0e9735f_0.conda hash: md5: 568ed1300869dca0ba09fb750cda5dbb sha256: 4865fce0897d3cb0ffc8998219157a8325f6011c136e6fd740a9a6b169419296 @@ -4495,7 +4550,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://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.0-pyhd8ed1ab_0.conda hash: md5: c5c76894b6b7bacc888ba25753bc8677 sha256: 172f971d70e1dbb978f6061d3f72be463d0f629155338603450d8ffe87cbf89d @@ -4508,7 +4563,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://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.0-pyhd8ed1ab_0.conda hash: md5: c5c76894b6b7bacc888ba25753bc8677 sha256: 172f971d70e1dbb978f6061d3f72be463d0f629155338603450d8ffe87cbf89d @@ -4520,7 +4575,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://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.13.2-pyh29332c3_0.conda hash: md5: 83fc6ae00127671e301c9f44254c31b8 sha256: a8aaf351e6461de0d5d47e4911257e25eec2fa409d71f3b643bb2f748bde1c08 @@ -4532,7 +4587,7 @@ package: platform: win-64 dependencies: python: '' - url: https://packages.prefix.dev/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 @@ -4543,7 +4598,7 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://packages.prefix.dev/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 @@ -4554,7 +4609,7 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://packages.prefix.dev/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 @@ -4565,7 +4620,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://repo.prefix.dev/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_1.conda hash: md5: 6797b005cd0f439c4c5c9ac565783700 sha256: db8dead3dd30fb1a032737554ce91e2819b43496a0db09927edf01c32b577450 @@ -4580,7 +4635,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://repo.prefix.dev/conda-forge/linux-64/unicodedata2-16.0.0-py312h66e93f0_0.conda hash: md5: 617f5d608ff8c28ad546e5d9671cbb95 sha256: 638916105a836973593547ba5cf4891d1f2cb82d1cf14354fcef93fd5b941cdc @@ -4596,7 +4651,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://repo.prefix.dev/conda-forge/win-64/unicodedata2-16.0.0-py312h4389bb4_0.conda hash: md5: 3b124c38c7852704ba6a42a170c152a1 sha256: 0889ccb541d0b63cbf42ea5b1f1686b772e872bfcddd3a18787dc4437ebbd7c6 @@ -4612,7 +4667,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://repo.prefix.dev/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda hash: md5: c1e349028e0052c4eea844e94f773065 sha256: a25403b76f7f03ca1a906e1ef0f88521edded991b9897e7fed56a3e334b3db8c @@ -4628,7 +4683,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://repo.prefix.dev/conda-forge/noarch/urllib3-2.4.0-pyhd8ed1ab_0.conda hash: md5: c1e349028e0052c4eea844e94f773065 sha256: a25403b76f7f03ca1a906e1ef0f88521edded991b9897e7fed56a3e334b3db8c @@ -4640,7 +4695,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://repo.prefix.dev/conda-forge/win-64/vc-14.3-h2b53caa_26.conda hash: md5: d3f0381e38093bde620a8d85f266ae55 sha256: 7a685b5c37e9713fa314a0d26b8b1d7a2e6de5ab758698199b5d5b6dba2e3ce1 @@ -4652,7 +4707,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://repo.prefix.dev/conda-forge/win-64/vc14_runtime-14.42.34438-hfd919c2_26.conda hash: md5: 91651a36d31aa20c7ba36299fb7068f4 sha256: 30dcb71bb166e351aadbdc18f1718757c32cdaa0e1e5d9368469ee44f6bf4709 @@ -4664,7 +4719,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://repo.prefix.dev/conda-forge/win-64/vs2015_runtime-14.42.34438-h7142326_26.conda hash: md5: 3357e4383dbce31eed332008ede242ab sha256: 432f2937206f1ad4a77e39f84fabc1ce7d2472b669836fb72bd2bfd19a2defc9 @@ -4676,7 +4731,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://repo.prefix.dev/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda hash: md5: 75cb7132eb58d97896e173ef12ac9986 sha256: 1b34021e815ff89a4d902d879c3bd2040bc1bd6169b32e9427497fa05c55f1ce @@ -4688,7 +4743,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://repo.prefix.dev/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda hash: md5: 75cb7132eb58d97896e173ef12ac9986 sha256: 1b34021e815ff89a4d902d879c3bd2040bc1bd6169b32e9427497fa05c55f1ce @@ -4701,7 +4756,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://repo.prefix.dev/conda-forge/noarch/win_inet_pton-1.1.0-pyh7428d3b_8.conda hash: md5: 46e441ba871f524e2b067929da3051c2 sha256: 93807369ab91f230cf9e6e2a237eaa812492fe00face5b38068735858fba954f @@ -4716,7 +4771,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://repo.prefix.dev/conda-forge/linux-64/wrapt-1.17.2-py312h66e93f0_0.conda hash: md5: 669e63af87710f8d52fdec9d4d63b404 sha256: ed3a1700ecc5d38c7e7dc7d2802df1bc1da6ba3d6f6017448b8ded0affb4ae00 @@ -4732,7 +4787,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://repo.prefix.dev/conda-forge/win-64/wrapt-1.17.2-py312h4389bb4_0.conda hash: md5: b9a81b36e0d35c9a172587ead532273b sha256: a1b86d727cc5f9d016a6fc9d8ac8b3e17c8e137764e018555ecadef05979ce93 @@ -4745,7 +4800,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://repo.prefix.dev/conda-forge/linux-64/xorg-libxau-1.0.12-hb9d3cd8_0.conda hash: md5: f6ebe2cb3f82ba6c057dde5d9debe4f7 sha256: ed10c9283974d311855ae08a16dfd7e56241fac632aec3b92e3cfe73cff31038 @@ -4759,7 +4814,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://repo.prefix.dev/conda-forge/win-64/xorg-libxau-1.0.12-h0e40799_0.conda hash: md5: 2ffbfae4548098297c033228256eb96e sha256: 047836241b2712aab1e29474a6f728647bff3ab57de2806b0bb0a6cf9a2d2634 @@ -4772,7 +4827,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://repo.prefix.dev/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb9d3cd8_0.conda hash: md5: 8035c64cb77ed555e3f150b7b3972480 sha256: 6b250f3e59db07c2514057944a3ea2044d6a8cdde8a47b6497c254520fade1ee @@ -4786,7 +4841,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://repo.prefix.dev/conda-forge/win-64/xorg-libxdmcp-1.1.5-h0e40799_0.conda hash: md5: 8393c0f7e7870b4eb45553326f81f0ff sha256: 9075f98dcaa8e9957e4a3d9d30db05c7578a536950a31c200854c5c34e1edb2c @@ -4798,7 +4853,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://repo.prefix.dev/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2 hash: md5: 4cb3ad778ec2d5a7acbdf254eb1c42ae sha256: a4e34c710eeb26945bdbdaba82d3d74f60a78f54a874ec10d373811a5d217535 @@ -4811,7 +4866,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://repo.prefix.dev/conda-forge/win-64/yaml-0.2.5-h8ffe710_2.tar.bz2 hash: md5: adbfb9f45d1004a26763652246a33764 sha256: 4e2246383003acbad9682c7c63178e2e715ad0eb84f03a8df1fbfba455dfedc5 @@ -4827,7 +4882,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://repo.prefix.dev/conda-forge/noarch/zarr-2.14.2-pyhd8ed1ab_0.conda hash: md5: 0c5776fe65a12a421d7ddf90411a6c3f sha256: 0f029f7efea00b8258782b5e68989fc140c227e6d9edd231d46fdd954b39d23f @@ -4843,7 +4898,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://repo.prefix.dev/conda-forge/noarch/zarr-2.14.2-pyhd8ed1ab_0.conda hash: md5: 0c5776fe65a12a421d7ddf90411a6c3f sha256: 0f029f7efea00b8258782b5e68989fc140c227e6d9edd231d46fdd954b39d23f @@ -4855,7 +4910,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://repo.prefix.dev/conda-forge/noarch/zict-3.0.0-pyhd8ed1ab_1.conda hash: md5: e52c2ef711ccf31bb7f70ca87d144b9e sha256: 5488542dceeb9f2874e726646548ecc5608060934d6f9ceaa7c6a48c61f9cc8d @@ -4867,7 +4922,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://repo.prefix.dev/conda-forge/noarch/zict-3.0.0-pyhd8ed1ab_1.conda hash: md5: e52c2ef711ccf31bb7f70ca87d144b9e sha256: 5488542dceeb9f2874e726646548ecc5608060934d6f9ceaa7c6a48c61f9cc8d @@ -4879,7 +4934,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://repo.prefix.dev/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda hash: md5: 0c3cc595284c5e8f0f9900a9b228a332 sha256: 567c04f124525c97a096b65769834b7acb047db24b15a56888a322bf3966c3e1 @@ -4891,7 +4946,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://repo.prefix.dev/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda hash: md5: 0c3cc595284c5e8f0f9900a9b228a332 sha256: 567c04f124525c97a096b65769834b7acb047db24b15a56888a322bf3966c3e1 @@ -4907,10 +4962,10 @@ 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://repo.prefix.dev/conda-forge/linux-64/zstandard-0.23.0-py312h66e93f0_2.conda hash: - md5: d28b82fcc8d1b462b595af4b15a6cdcf - sha256: b4fd6bd1cb87a183a8bbe85b4e87a1e7c51473309d0d82cd88d38fb021bcf41e + md5: 630db208bc7bbb96725ce9832c7423bb + sha256: ff62d2e1ed98a3ec18de7e5cf26c0634fd338cb87304cf03ad8cbafe6fe674ba category: main optional: false - name: zstandard @@ -4924,10 +4979,10 @@ 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://repo.prefix.dev/conda-forge/win-64/zstandard-0.23.0-py312h4389bb4_2.conda hash: - md5: 5028543ffb67666ca4fc3ebd620c97b8 - sha256: 17f2abbda821be146b549498fab3d0eb9cafb210e163b983524db91524b8dcb5 + md5: 24554d76d0efcca11faa0a013c16ed5a + sha256: 10f25f85f856dbc776b4a2cf801d31edd07cbfaa45b9cca14dd776a9f2887cb5 category: main optional: false - name: zstd @@ -4939,7 +4994,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://repo.prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb8e6e7a_2.conda hash: md5: 6432cb5d4ac0046c3ac0a8a0f95842f9 sha256: a4166e3d8ff4e35932510aaff7aa90772f84b4d07e9f6f83c614cba7ceefe0eb @@ -4954,7 +5009,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/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 @@ -4965,7 +5020,7 @@ package: manager: pip platform: linux-64 dependencies: - geoh5py: 0.12.0-alpha.1 + geoh5py: 0.12.0a1 numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' @@ -4982,7 +5037,7 @@ package: manager: pip platform: win-64 dependencies: - geoh5py: 0.12.0-alpha.1 + geoh5py: 0.12.0a1 numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' @@ -4995,7 +5050,7 @@ package: category: main optional: false - name: geoh5py - version: 0.12.0-alpha.1 + version: 0.12.0a1 manager: pip platform: linux-64 dependencies: @@ -5003,16 +5058,16 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@4b9756b5c9e98c709a2b23e2e558edb29e5f3416 + url: git+https://github.com/MiraGeoscience/geoh5py.git@4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 hash: - sha256: 4b9756b5c9e98c709a2b23e2e558edb29e5f3416 + sha256: 4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@4b9756b5c9e98c709a2b23e2e558edb29e5f3416 + url: git+https://github.com/MiraGeoscience/geoh5py.git@4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 category: main optional: false - name: geoh5py - version: 0.12.0-alpha.1 + version: 0.12.0a1 manager: pip platform: win-64 dependencies: @@ -5020,16 +5075,16 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@4b9756b5c9e98c709a2b23e2e558edb29e5f3416 + url: git+https://github.com/MiraGeoscience/geoh5py.git@4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 hash: - sha256: 4b9756b5c9e98c709a2b23e2e558edb29e5f3416 + sha256: 4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@4b9756b5c9e98c709a2b23e2e558edb29e5f3416 + url: git+https://github.com/MiraGeoscience/geoh5py.git@4acc52a74c4c20a6ffc7f335e431f9ef3f6392b1 category: main optional: false - name: mira-simpeg - version: 0.23.0.2a1.dev0 + version: 0.23.0.1a3.dev4+g24027d81b manager: pip platform: linux-64 dependencies: @@ -5044,16 +5099,16 @@ package: pymatsolver: '>=0.3' scipy: '>=1.8' zarr: '*' - url: git+https://github.com/MiraGeoscience/simpeg.git@8c73f0647ae51f1ca7d4af6ded7f2e63db52a428 + url: git+https://github.com/MiraGeoscience/simpeg.git@24027d81b65df99d5f582acc4497ed33df8a3396 hash: - sha256: 8c73f0647ae51f1ca7d4af6ded7f2e63db52a428 + sha256: 24027d81b65df99d5f582acc4497ed33df8a3396 source: type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@8c73f0647ae51f1ca7d4af6ded7f2e63db52a428 + url: git+https://github.com/MiraGeoscience/simpeg.git@24027d81b65df99d5f582acc4497ed33df8a3396 category: main optional: false - name: mira-simpeg - version: 0.23.0.2a1.dev0 + version: 0.23.0.1a3.dev4+g24027d81b manager: pip platform: win-64 dependencies: @@ -5068,12 +5123,12 @@ package: pymatsolver: '>=0.3' scipy: '>=1.8' zarr: '*' - url: git+https://github.com/MiraGeoscience/simpeg.git@8c73f0647ae51f1ca7d4af6ded7f2e63db52a428 + url: git+https://github.com/MiraGeoscience/simpeg.git@24027d81b65df99d5f582acc4497ed33df8a3396 hash: - sha256: 8c73f0647ae51f1ca7d4af6ded7f2e63db52a428 + sha256: 24027d81b65df99d5f582acc4497ed33df8a3396 source: type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@8c73f0647ae51f1ca7d4af6ded7f2e63db52a428 + url: git+https://github.com/MiraGeoscience/simpeg.git@24027d81b65df99d5f582acc4497ed33df8a3396 category: main optional: false - name: octree-creation-app @@ -5083,7 +5138,7 @@ package: dependencies: discretize: ==0.11.* geoapps-utils: 0.6.0-alpha.1 - geoh5py: 0.12.0-alpha.1 + geoh5py: 0.12.0a1 numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' @@ -5102,7 +5157,7 @@ package: dependencies: discretize: ==0.11.* geoapps-utils: 0.6.0-alpha.1 - geoh5py: 0.12.0-alpha.1 + geoh5py: 0.12.0a1 numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' @@ -5119,7 +5174,7 @@ package: manager: pip platform: linux-64 dependencies: - geoh5py: 0.12.0-alpha.1 + geoh5py: 0.12.0a1 numpy: '>=1.26.0,<1.27.0' url: git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 hash: @@ -5134,7 +5189,7 @@ package: manager: pip platform: win-64 dependencies: - geoh5py: 0.12.0-alpha.1 + geoh5py: 0.12.0a1 numpy: '>=1.26.0,<1.27.0' url: git+https://github.com/MiraGeoscience/param-sweeps.git@d5959a0e19b45a89eb8a02cd608bc8accb74adb7 hash: @@ -5149,12 +5204,12 @@ package: manager: pip platform: linux-64 dependencies: - dask-core: ==2025.3.* + dask: '>=2025.3,<2025.4.dev' discretize: ==0.11.* - distributed: ==2025.3.* + distributed: '>=2025.3,<2025.4.dev' geoapps-utils: 0.6.0-alpha.1 - geoh5py: 0.12.0-alpha.1 - mira-simpeg: 0.23.0.2a1.dev0 + geoh5py: 0.12.0a1 + mira-simpeg: 0.23.0.1a3.dev4+g24027d81b numpy: '>=1.26.0,<1.27.0' octree-creation-app: 0.4.0-alpha.1 param-sweeps: 0.3.0-alpha.1 @@ -5164,12 +5219,12 @@ package: scikit-learn: '>=1.4.0,<1.5.0' scipy: '>=1.14.0,<1.15.0' tqdm: '>=4.66.1,<5.0.0' - url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@7544763d9d873237256b963c32db54ce33c329c7 + url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@2d510ad712a20663dc0abb9afbead41537d10d91 hash: - sha256: 7544763d9d873237256b963c32db54ce33c329c7 + sha256: 2d510ad712a20663dc0abb9afbead41537d10d91 source: type: url - url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@7544763d9d873237256b963c32db54ce33c329c7 + url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@2d510ad712a20663dc0abb9afbead41537d10d91 category: main optional: false - name: simpeg-drivers @@ -5177,12 +5232,12 @@ package: manager: pip platform: win-64 dependencies: - dask-core: ==2025.3.* + dask: '>=2025.3,<2025.4.dev' discretize: ==0.11.* - distributed: ==2025.3.* + distributed: '>=2025.3,<2025.4.dev' geoapps-utils: 0.6.0-alpha.1 - geoh5py: 0.12.0-alpha.1 - mira-simpeg: 0.23.0.2a1.dev0 + geoh5py: 0.12.0a1 + mira-simpeg: 0.23.0.1a3.dev4+g24027d81b numpy: '>=1.26.0,<1.27.0' octree-creation-app: 0.4.0-alpha.1 param-sweeps: 0.3.0-alpha.1 @@ -5192,11 +5247,11 @@ package: scikit-learn: '>=1.4.0,<1.5.0' scipy: '>=1.14.0,<1.15.0' tqdm: '>=4.66.1,<5.0.0' - url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@7544763d9d873237256b963c32db54ce33c329c7 + url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@2d510ad712a20663dc0abb9afbead41537d10d91 hash: - sha256: 7544763d9d873237256b963c32db54ce33c329c7 + sha256: 2d510ad712a20663dc0abb9afbead41537d10d91 source: type: url - url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@7544763d9d873237256b963c32db54ce33c329c7 + url: git+https://github.com/MiraGeoscience/simpeg-drivers.git@2d510ad712a20663dc0abb9afbead41537d10d91 category: main optional: false