From ef105d2a92a738e61d307dd2cfdf380f65dc1a68 Mon Sep 17 00:00:00 2001 From: benjamink Date: Fri, 31 Oct 2025 12:44:20 -0700 Subject: [PATCH 1/5] Add validation for single layer block models --- surface_apps/driver.py | 18 ++------------ surface_apps/iso_surfaces/params.py | 22 ++++++++++++++--- tests/run_tests/iso_surfaces_test.py | 37 ++++++++++++++++++++++++++++ 3 files changed, 57 insertions(+), 20 deletions(-) diff --git a/surface_apps/driver.py b/surface_apps/driver.py index 29f06f3..1cec18e 100644 --- a/surface_apps/driver.py +++ b/surface_apps/driver.py @@ -13,14 +13,13 @@ import sys import tempfile from abc import abstractmethod -from json import load from pathlib import Path from geoapps_utils.driver.data import BaseData from geoapps_utils.driver.driver import BaseDriver from geoh5py.groups import UIJsonGroup from geoh5py.objects import ObjectBase -from geoh5py.shared.utils import fetch_active_workspace +from geoh5py.shared.utils import fetch_active_workspace, stringify from geoh5py.ui_json import InputFile @@ -59,9 +58,7 @@ def out_group(self) -> UIJsonGroup | None: workspace=workspace, name=self.params.title, ) - self._out_group.options = InputFile.stringify( # type: ignore - InputFile.demote(self.params.input_file.ui_json) - ) + self._out_group.options = stringify(self.params.input_file.ui_json) return self._out_group @@ -101,17 +98,6 @@ def params(self, val: BaseData): raise TypeError("Parameters must be a BaseData subclass.") self._params = val - @classmethod - def start(cls, filepath: str | Path, driver_class=None, **kwargs): - with open(filepath, encoding="utf-8") as jsonfile: - uijson = load(jsonfile) - - if driver_class is None: - module = __import__(uijson["run_command"], fromlist=["Driver"]) - driver_class = module.Driver - - super().start(filepath, driver_class=driver_class, **kwargs) - def add_ui_json(self, entity: ObjectBase | UIJsonGroup) -> None: """ Add ui.json file to entity. diff --git a/surface_apps/iso_surfaces/params.py b/surface_apps/iso_surfaces/params.py index ebf392c..57fa3b4 100644 --- a/surface_apps/iso_surfaces/params.py +++ b/surface_apps/iso_surfaces/params.py @@ -16,16 +16,16 @@ from geoapps_utils.driver.data import BaseData from geoh5py.data import Data from geoh5py.groups import UIJsonGroup -from geoh5py.objects import Points, Surface +from geoh5py.objects import BlockModel, Points, Surface from geoh5py.objects.cell_object import CellObject from geoh5py.objects.grid_object import GridObject from geoh5py.ui_json.utils import str2list -from pydantic import ConfigDict, field_validator +from pydantic import BaseModel, ConfigDict, field_validator from surface_apps import assets_path -class IsoSurfaceSourceParameters(BaseData): +class IsoSurfaceSourceParameters(BaseModel): """ Source parameters providing input data to the driver. @@ -41,8 +41,22 @@ class IsoSurfaceSourceParameters(BaseData): data: Data horizon: Surface | None = None + @field_validator("objects", mode="before") + @classmethod + def no_single_layer_grids(cls, value): + """Ensure a grid has more than a single layer in any dimension.""" + + if isinstance(value, BlockModel): + n_cells = [len(getattr(value, f"{k}_cell_delimiters")) - 1 for k in "uvz"] + if any(n == 1 for n in n_cells): + raise ValueError( + "Grid source cannot be a single layer in any dimension." + ) + + return value + -class IsoSurfaceDetectionParameters(BaseData): +class IsoSurfaceDetectionParameters(BaseModel): """ Contour specification parameters. diff --git a/tests/run_tests/iso_surfaces_test.py b/tests/run_tests/iso_surfaces_test.py index 49351ca..409abee 100644 --- a/tests/run_tests/iso_surfaces_test.py +++ b/tests/run_tests/iso_surfaces_test.py @@ -16,6 +16,7 @@ from geoh5py.workspace import Workspace from surface_apps.iso_surfaces.driver import Driver as IsoSurfacesDriver +from surface_apps.iso_surfaces.params import IsoSurfaceParameters # pylint: disable=too-many-locals @@ -215,3 +216,39 @@ def test_clipping_horizon(tmp_path: Path): ) assert np.all(surface.vertices[:, -1] <= 30) + + +def test_single_layer_grid(tmp_path): + with Workspace(tmp_path / "iso_test.geoh5") as ws: + grid = BlockModel.create( + ws, + name="single_layer_grid", + u_cell_delimiters=np.linspace(0, 10, 11), + v_cell_delimiters=np.linspace(0, 10, 11), + z_cell_delimiters=np.array([0.0, 1.0]), + origin=[0, 0, 0], + ) + data = grid.add_data( + { + "elevation": { + "values": np.random.rand(grid.n_cells) * 100, + "data_type": "Float", + "association": "Cell", + } + } + ) + + params = IsoSurfaceParameters.build( + { + "geoh5": ws, + "objects": grid, + "data": data, + "interval_min": 0.0, + "interval_max": 100.0, + "interval_spacing": 20.0, + "max_distance": 50.0, + "resolution": 5.0, + } + ) + driver = IsoSurfacesDriver(params) + driver.run() From fb47714c943dbae4221ead556137c9d373380ef8 Mon Sep 17 00:00:00 2001 From: benjamink Date: Fri, 31 Oct 2025 12:57:01 -0700 Subject: [PATCH 2/5] Add catch for error and update types from BaseData -> Options and BaseDriver -> Driver --- surface_apps/driver.py | 15 +++++++------- surface_apps/iso_surfaces/params.py | 4 ++-- tests/run_tests/iso_surfaces_test.py | 29 ++++++++++++++-------------- 3 files changed, 24 insertions(+), 24 deletions(-) diff --git a/surface_apps/driver.py b/surface_apps/driver.py index 1cec18e..09296d9 100644 --- a/surface_apps/driver.py +++ b/surface_apps/driver.py @@ -15,8 +15,7 @@ from abc import abstractmethod from pathlib import Path -from geoapps_utils.driver.data import BaseData -from geoapps_utils.driver.driver import BaseDriver +from geoapps_utils.base import Driver, Options from geoh5py.groups import UIJsonGroup from geoh5py.objects import ObjectBase from geoh5py.shared.utils import fetch_active_workspace, stringify @@ -26,16 +25,16 @@ logger = logging.getLogger(__name__) -class BaseSurfaceDriver(BaseDriver): +class BaseSurfaceDriver(Driver): """ Driver for the surface application. :param parameters: Application parameters. """ - _parameter_class: type[BaseData] + _parameter_class: type[Options] - def __init__(self, parameters: BaseData | InputFile): + def __init__(self, parameters: Options | InputFile): self._out_group: UIJsonGroup | None = None if isinstance(parameters, InputFile): @@ -88,13 +87,13 @@ def run(self): self.store() @property - def params(self) -> BaseData: + def params(self) -> Options: """Application parameters.""" return self._params @params.setter - def params(self, val: BaseData): - if not isinstance(val, BaseData): + def params(self, val: Options): + if not isinstance(val, Options): raise TypeError("Parameters must be a BaseData subclass.") self._params = val diff --git a/surface_apps/iso_surfaces/params.py b/surface_apps/iso_surfaces/params.py index 57fa3b4..959ce0a 100644 --- a/surface_apps/iso_surfaces/params.py +++ b/surface_apps/iso_surfaces/params.py @@ -13,7 +13,7 @@ from typing import ClassVar import numpy as np -from geoapps_utils.driver.data import BaseData +from geoapps_utils.base import Options from geoh5py.data import Data from geoh5py.groups import UIJsonGroup from geoh5py.objects import BlockModel, Points, Surface @@ -137,7 +137,7 @@ def contours(self) -> list[float]: return contours -class IsoSurfaceParameters(BaseData): +class IsoSurfaceParameters(Options): """ Contour parameters for use with `contours.driver`. diff --git a/tests/run_tests/iso_surfaces_test.py b/tests/run_tests/iso_surfaces_test.py index 409abee..900a90a 100644 --- a/tests/run_tests/iso_surfaces_test.py +++ b/tests/run_tests/iso_surfaces_test.py @@ -12,6 +12,8 @@ from pathlib import Path import numpy as np +import pytest +from geoapps_utils.utils.importing import GeoAppsError from geoh5py.objects import BlockModel, Points, Surface from geoh5py.workspace import Workspace @@ -238,17 +240,16 @@ def test_single_layer_grid(tmp_path): } ) - params = IsoSurfaceParameters.build( - { - "geoh5": ws, - "objects": grid, - "data": data, - "interval_min": 0.0, - "interval_max": 100.0, - "interval_spacing": 20.0, - "max_distance": 50.0, - "resolution": 5.0, - } - ) - driver = IsoSurfacesDriver(params) - driver.run() + with pytest.raises(GeoAppsError, match="cannot be a single layer"): + IsoSurfaceParameters.build( + { + "geoh5": ws, + "objects": grid, + "data": data, + "interval_min": 0.0, + "interval_max": 100.0, + "interval_spacing": 20.0, + "max_distance": 50.0, + "resolution": 5.0, + } + ) From 9b0b5c630b40cb0360424097e05271f66f9e6ab4 Mon Sep 17 00:00:00 2001 From: benjamink Date: Fri, 31 Oct 2025 12:59:06 -0700 Subject: [PATCH 3/5] rename BaseData -> Options in error message --- surface_apps/driver.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/surface_apps/driver.py b/surface_apps/driver.py index 09296d9..b7a690d 100644 --- a/surface_apps/driver.py +++ b/surface_apps/driver.py @@ -94,7 +94,7 @@ def params(self) -> Options: @params.setter def params(self, val: Options): if not isinstance(val, Options): - raise TypeError("Parameters must be a BaseData subclass.") + raise TypeError("Parameters must be an Options subclass.") self._params = val def add_ui_json(self, entity: ObjectBase | UIJsonGroup) -> None: From 8f4596df051976ca2ce8dfa881fd29b755e50a73 Mon Sep 17 00:00:00 2001 From: benjamink Date: Mon, 10 Nov 2025 13:18:09 -0800 Subject: [PATCH 4/5] re-lock --- .../py-3.10-linux-64-dev.conda.lock.yml | 91 +- environments/py-3.10-linux-64.conda.lock.yml | 69 +- .../py-3.10-win-64-dev.conda.lock.yml | 97 +- environments/py-3.10-win-64.conda.lock.yml | 75 +- .../py-3.11-linux-64-dev.conda.lock.yml | 117 +- environments/py-3.11-linux-64.conda.lock.yml | 89 +- .../py-3.11-win-64-dev.conda.lock.yml | 121 +- environments/py-3.11-win-64.conda.lock.yml | 93 +- .../py-3.12-linux-64-dev.conda.lock.yml | 117 +- environments/py-3.12-linux-64.conda.lock.yml | 89 +- .../py-3.12-win-64-dev.conda.lock.yml | 121 +- environments/py-3.12-win-64.conda.lock.yml | 93 +- py-3.10.conda-lock.yml | 959 ++++++------- py-3.11.conda-lock.yml | 1215 +++++++++-------- py-3.12.conda-lock.yml | 1215 +++++++++-------- 15 files changed, 2258 insertions(+), 2303 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 19c8f77..5ee420a 100644 --- a/environments/py-3.10-linux-64-dev.conda.lock.yml +++ b/environments/py-3.10-linux-64-dev.conda.lock.yml @@ -11,7 +11,7 @@ dependencies: - alabaster=1.0.0=pyhd8ed1ab_1 - annotated-types=0.7.0=pyhd8ed1ab_1 - aom=3.9.1=hac33072_0 - - astroid=3.3.11=py310hff52083_1 + - astroid=4.0.2=py310hff52083_0 - babel=2.17.0=pyhd8ed1ab_0 - blosc=1.21.6=he440d0b_1 - brotli-python=1.1.0=py310hea6c23e_4 @@ -19,15 +19,15 @@ dependencies: - bzip2=1.0.8=hda65f42_8 - c-ares=1.34.5=hb9d3cd8_0 - c-blosc2=2.19.1=h4cfbee9_0 - - ca-certificates=2025.8.3=hbd8a1cb_0 + - ca-certificates=2025.10.5=hbd8a1cb_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2025.8.3=pyhd8ed1ab_0 - - cffi=1.17.1=py310h34a4b09_1 + - certifi=2025.10.5=pyhd8ed1ab_0 + - cffi=2.0.0=py310he7384ee_1 - charls=2.4.2=h59595ed_0 - - charset-normalizer=3.4.3=pyhd8ed1ab_0 + - charset-normalizer=3.4.4=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - - coverage=7.10.6=py310h3406613_1 + - coverage=7.11.3=py310h3406613_0 - dav1d=1.2.1=hd590300_0 - dill=0.4.0=pyhd8ed1ab_0 - docutils=0.21.2=pyhd8ed1ab_1 @@ -35,92 +35,93 @@ dependencies: - freetype=2.14.1=ha770c72_0 - giflib=5.2.2=hd590300_0 - h2=4.3.0=pyhcf101f3_0 - - h5py=3.14.0=nompi_py310h4aa865e_101 + - h5py=3.15.1=nompi_py310h4aa865e_100 - hdf5=1.14.6=nompi_h6e4c0c1_103 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - - idna=3.10=pyhd8ed1ab_1 + - icu=75.1=he02047a_0 + - idna=3.11=pyhd8ed1ab_0 - imagecodecs=2025.3.30=py310h4eb8eaf_2 - imageio=2.37.0=pyhfb79c49_0 - imagesize=1.4.1=pyhd8ed1ab_0 - importlib-metadata=8.7.0=pyhe01879c_1 - - iniconfig=2.0.0=pyhd8ed1ab_1 - - isort=6.0.1=pyhd8ed1ab_1 + - iniconfig=2.3.0=pyhd8ed1ab_0 + - isort=7.0.0=pyhd8ed1ab_0 - jinja2=3.1.6=pyhd8ed1ab_0 - jxrlib=1.1=hd590300_3 - keyutils=1.6.3=hb9d3cd8_0 - krb5=1.21.3=h659f571_0 - lazy-loader=0.4=pyhd8ed1ab_2 - lcms2=2.17=h717163a_0 - - ld_impl_linux-64=2.44=h1423503_1 + - ld_impl_linux-64=2.44=h1aa0949_5 - lerc=4.0.0=h0aef613_1 - libaec=1.1.4=h3f801dc_0 - libavif16=1.3.0=h6395336_2 - - libblas=3.9.0=35_h4a7cf45_openblas + - libblas=3.9.0=38_h4a7cf45_openblas - libbrotlicommon=1.1.0=hb03c661_4 - libbrotlidec=1.1.0=hb03c661_4 - libbrotlienc=1.1.0=hb03c661_4 - - libcblas=3.9.0=35_h0358290_openblas - - libcurl=8.14.1=h332b0f4_0 + - libcblas=3.9.0=38_h0358290_openblas + - libcurl=8.17.0=h4e3cde8_0 - libdeflate=1.24=h86f0d12_0 - libedit=3.1.20250104=pl5321h7949ede_0 - libev=4.33=hd590300_2 - libexpat=2.7.1=hecca717_0 - - libffi=3.4.6=h2dba641_1 + - libffi=3.5.2=h9ec8514_0 - libfreetype=2.14.1=ha770c72_0 - libfreetype6=2.14.1=h73754d4_0 - - libgcc=15.1.0=h767d61c_5 - - libgcc-ng=15.1.0=h69a702a_5 - - libgfortran=15.1.0=h69a702a_5 - - libgfortran5=15.1.0=hcea5267_5 - - libgomp=15.1.0=h767d61c_5 - - libhwy=1.3.0=h4c17acf_0 - - libjpeg-turbo=3.1.0=hb9d3cd8_0 + - libgcc=15.2.0=h767d61c_7 + - libgcc-ng=15.2.0=h69a702a_7 + - libgfortran=15.2.0=h69a702a_7 + - libgfortran5=15.2.0=hcd61629_7 + - libgomp=15.2.0=h767d61c_7 + - libhwy=1.3.0=h4c17acf_1 + - libjpeg-turbo=3.1.2=hb03c661_0 - libjxl=0.11.1=h6cb5226_4 - - liblapack=3.9.0=35_h47877c9_openblas + - liblapack=3.9.0=38_h47877c9_openblas - liblzma=5.8.1=hb9d3cd8_2 - libnghttp2=1.67.0=had1ee68_0 - libnsl=2.0.1=hb9d3cd8_1 - - libopenblas=0.3.30=pthreads_h94d23a6_2 + - libopenblas=0.3.30=pthreads_h94d23a6_3 - libpng=1.6.50=h421ea60_1 - - libsqlite=3.50.4=h0c1763c_0 + - libsqlite=3.51.0=hee844dc_0 - libssh2=1.11.1=hcf80075_0 - - libstdcxx=15.1.0=h8f9b012_5 - - libstdcxx-ng=15.1.0=h4852527_5 - - libtiff=4.7.0=h8261f1e_6 - - libuuid=2.41.1=he9a06e4_0 + - libstdcxx=15.2.0=h8f9b012_7 + - libstdcxx-ng=15.2.0=h4852527_7 + - libtiff=4.7.1=h8261f1e_0 + - libuuid=2.41.2=he9a06e4_0 - libwebp-base=1.6.0=hd42ef1d_0 - libxcb=1.17.0=h8a09558_0 - libxcrypt=4.4.36=hd590300_1 - libzlib=1.3.1=hb9d3cd8_2 - libzopfli=1.0.3=h9c3ff4c_0 - lz4-c=1.10.0=h5888daf_1 - - markupsafe=3.0.2=py310h89163eb_1 + - markupsafe=3.0.3=py310h3406613_0 - mccabe=0.7.0=pyhd8ed1ab_1 - ncurses=6.5=h2d0b736_3 - networkx=3.4.2=pyh267e887_2 - numpy=1.26.4=py310hb13e2d6_0 - - openjpeg=2.5.3=h55fea9a_1 - - openssl=3.5.2=h26f9b46_0 + - openjpeg=2.5.4=h55fea9a_0 + - openssl=3.5.4=h26f9b46_0 - packaging=25.0=pyh29332c3_1 - pillow=10.3.0=py310hebfe307_1 - - pip=25.2=pyh8b19718_0 - - platformdirs=4.4.0=pyhcf101f3_0 + - pip=25.3=pyh8b19718_0 + - platformdirs=4.5.0=pyhcf101f3_0 - pluggy=1.6.0=pyhd8ed1ab_0 - pthread-stubs=0.4=hb9d3cd8_1002 - pycparser=2.22=pyh29332c3_1 - - pydantic=2.11.9=pyh3cfb1c2_0 - - pydantic-core=2.33.2=py310hbcd0ec0_0 + - pydantic=2.12.4=pyh3cfb1c2_0 + - pydantic-core=2.41.5=py310hd8f68c5_0 - pygments=2.19.2=pyhd8ed1ab_0 - - pylint=3.3.8=pyhe01879c_0 + - pylint=4.0.2=pyhcf101f3_0 - pysocks=1.7.1=pyha55dd90_7 - - pytest=8.4.2=pyhd8ed1ab_0 + - pytest=9.0.0=pyhcf101f3_0 - pytest-cov=7.0.0=pyhcf101f3_1 - - python=3.10.18=hd6af730_0_cpython + - python=3.10.19=h3c07f61_2_cpython - python_abi=3.10=8_cp310 - pytz=2025.2=pyhd8ed1ab_0 - pywavelets=1.8.0=py310hf462985_0 - - pyyaml=6.0.2=py310h89163eb_2 + - pyyaml=6.0.3=py310h3406613_0 - rav1e=0.7.1=h8fae777_3 - readline=8.2=h8c095d6_2 - requests=2.32.5=pyhd8ed1ab_0 @@ -143,11 +144,11 @@ dependencies: - svt-av1=3.1.2=hecca717_0 - tifffile=2025.5.10=pyhd8ed1ab_0 - tk=8.6.13=noxft_hd72426e_102 - - tomli=2.2.1=pyhe01879c_2 + - tomli=2.3.0=pyhcf101f3_0 - tomlkit=0.13.3=pyha770c72_0 - tqdm=4.67.1=pyhd8ed1ab_1 - typing-extensions=4.15.0=h396c80c_0 - - typing-inspection=0.4.1=pyhd8ed1ab_0 + - typing-inspection=0.4.2=pyhd8ed1ab_0 - typing_extensions=4.15.0=pyhcf101f3_0 - tzdata=2025b=h78e105d_0 - urllib3=2.5.0=pyhd8ed1ab_0 @@ -158,11 +159,11 @@ dependencies: - zfp=1.0.1=h909a3a2_3 - zipp=3.23.0=pyhd8ed1ab_0 - zlib-ng=2.2.5=hde8ca8f_0 - - zstandard=0.25.0=py310h139afa4_0 + - zstandard=0.25.0=py310h139afa4_1 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@a6627f0a6e663e9c3f0e9874f401a34ab8990488 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@8f4cb4c0ebfb6ce25b3be6c83746d184f47a5f67 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@80c46588d47b70a1dd26aef06ccfa24bc1585502 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@8f630a84b2b9f2b7632f895e1521d8d61c04e80e 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 6410276..24fe201 100644 --- a/environments/py-3.10-linux-64.conda.lock.yml +++ b/environments/py-3.10-linux-64.conda.lock.yml @@ -10,90 +10,85 @@ dependencies: - _openmp_mutex=4.5=2_gnu - annotated-types=0.7.0=pyhd8ed1ab_1 - aom=3.9.1=hac33072_0 - - astroid=3.3.11=py310hff52083_1 - blosc=1.21.6=he440d0b_1 - brunsli=0.1=he3183e4_1 - bzip2=1.0.8=hda65f42_8 - c-ares=1.34.5=hb9d3cd8_0 - c-blosc2=2.19.1=h4cfbee9_0 - - ca-certificates=2025.8.3=hbd8a1cb_0 + - ca-certificates=2025.10.5=hbd8a1cb_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - charls=2.4.2=h59595ed_0 - colorama=0.4.6=pyhd8ed1ab_1 - dav1d=1.2.1=hd590300_0 - - dill=0.4.0=pyhd8ed1ab_0 - freetype=2.14.1=ha770c72_0 - giflib=5.2.2=hd590300_0 - - h5py=3.14.0=nompi_py310h4aa865e_101 + - h5py=3.15.1=nompi_py310h4aa865e_100 - hdf5=1.14.6=nompi_h6e4c0c1_103 + - icu=75.1=he02047a_0 - imagecodecs=2025.3.30=py310h4eb8eaf_2 - imageio=2.37.0=pyhfb79c49_0 - importlib-metadata=8.7.0=pyhe01879c_1 - - isort=6.0.1=pyhd8ed1ab_1 - jxrlib=1.1=hd590300_3 - keyutils=1.6.3=hb9d3cd8_0 - krb5=1.21.3=h659f571_0 - lazy-loader=0.4=pyhd8ed1ab_2 - lcms2=2.17=h717163a_0 - - ld_impl_linux-64=2.44=h1423503_1 + - ld_impl_linux-64=2.44=h1aa0949_5 - lerc=4.0.0=h0aef613_1 - libaec=1.1.4=h3f801dc_0 - libavif16=1.3.0=h6395336_2 - - libblas=3.9.0=35_h4a7cf45_openblas + - libblas=3.9.0=38_h4a7cf45_openblas - libbrotlicommon=1.1.0=hb03c661_4 - libbrotlidec=1.1.0=hb03c661_4 - libbrotlienc=1.1.0=hb03c661_4 - - libcblas=3.9.0=35_h0358290_openblas - - libcurl=8.14.1=h332b0f4_0 + - libcblas=3.9.0=38_h0358290_openblas + - libcurl=8.17.0=h4e3cde8_0 - libdeflate=1.24=h86f0d12_0 - libedit=3.1.20250104=pl5321h7949ede_0 - libev=4.33=hd590300_2 - libexpat=2.7.1=hecca717_0 - - libffi=3.4.6=h2dba641_1 + - libffi=3.5.2=h9ec8514_0 - libfreetype=2.14.1=ha770c72_0 - libfreetype6=2.14.1=h73754d4_0 - - libgcc=15.1.0=h767d61c_5 - - libgcc-ng=15.1.0=h69a702a_5 - - libgfortran=15.1.0=h69a702a_5 - - libgfortran5=15.1.0=hcea5267_5 - - libgomp=15.1.0=h767d61c_5 - - libhwy=1.3.0=h4c17acf_0 - - libjpeg-turbo=3.1.0=hb9d3cd8_0 + - libgcc=15.2.0=h767d61c_7 + - libgcc-ng=15.2.0=h69a702a_7 + - libgfortran=15.2.0=h69a702a_7 + - libgfortran5=15.2.0=hcd61629_7 + - libgomp=15.2.0=h767d61c_7 + - libhwy=1.3.0=h4c17acf_1 + - libjpeg-turbo=3.1.2=hb03c661_0 - libjxl=0.11.1=h6cb5226_4 - - liblapack=3.9.0=35_h47877c9_openblas + - liblapack=3.9.0=38_h47877c9_openblas - liblzma=5.8.1=hb9d3cd8_2 - libnghttp2=1.67.0=had1ee68_0 - libnsl=2.0.1=hb9d3cd8_1 - - libopenblas=0.3.30=pthreads_h94d23a6_2 + - libopenblas=0.3.30=pthreads_h94d23a6_3 - libpng=1.6.50=h421ea60_1 - - libsqlite=3.50.4=h0c1763c_0 + - libsqlite=3.51.0=hee844dc_0 - libssh2=1.11.1=hcf80075_0 - - libstdcxx=15.1.0=h8f9b012_5 - - libstdcxx-ng=15.1.0=h4852527_5 - - libtiff=4.7.0=h8261f1e_6 - - libuuid=2.41.1=he9a06e4_0 + - libstdcxx=15.2.0=h8f9b012_7 + - libstdcxx-ng=15.2.0=h4852527_7 + - libtiff=4.7.1=h8261f1e_0 + - libuuid=2.41.2=he9a06e4_0 - libwebp-base=1.6.0=hd42ef1d_0 - libxcb=1.17.0=h8a09558_0 - libxcrypt=4.4.36=hd590300_1 - libzlib=1.3.1=hb9d3cd8_2 - libzopfli=1.0.3=h9c3ff4c_0 - lz4-c=1.10.0=h5888daf_1 - - mccabe=0.7.0=pyhd8ed1ab_1 - ncurses=6.5=h2d0b736_3 - networkx=3.4.2=pyh267e887_2 - numpy=1.26.4=py310hb13e2d6_0 - - openjpeg=2.5.3=h55fea9a_1 - - openssl=3.5.2=h26f9b46_0 + - openjpeg=2.5.4=h55fea9a_0 + - openssl=3.5.4=h26f9b46_0 - packaging=25.0=pyh29332c3_1 - pillow=10.3.0=py310hebfe307_1 - - pip=25.2=pyh8b19718_0 - - platformdirs=4.4.0=pyhcf101f3_0 + - pip=25.3=pyh8b19718_0 - pthread-stubs=0.4=hb9d3cd8_1002 - - pydantic=2.11.9=pyh3cfb1c2_0 - - pydantic-core=2.33.2=py310hbcd0ec0_0 - - pylint=3.3.8=pyhe01879c_0 - - python=3.10.18=hd6af730_0_cpython + - pydantic=2.12.4=pyh3cfb1c2_0 + - pydantic-core=2.41.5=py310hd8f68c5_0 + - python=3.10.19=h3c07f61_2_cpython - python_abi=3.10=8_cp310 - pywavelets=1.8.0=py310hf462985_0 - rav1e=0.7.1=h8fae777_3 @@ -105,11 +100,9 @@ dependencies: - svt-av1=3.1.2=hecca717_0 - tifffile=2025.5.10=pyhd8ed1ab_0 - tk=8.6.13=noxft_hd72426e_102 - - tomli=2.2.1=pyhe01879c_2 - - tomlkit=0.13.3=pyha770c72_0 - tqdm=4.67.1=pyhd8ed1ab_1 - typing-extensions=4.15.0=h396c80c_0 - - typing-inspection=0.4.1=pyhd8ed1ab_0 + - typing-inspection=0.4.2=pyhd8ed1ab_0 - typing_extensions=4.15.0=pyhcf101f3_0 - tzdata=2025b=h78e105d_0 - wheel=0.45.1=pyhd8ed1ab_1 @@ -120,8 +113,8 @@ dependencies: - zlib-ng=2.2.5=hde8ca8f_0 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@a6627f0a6e663e9c3f0e9874f401a34ab8990488 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@8f4cb4c0ebfb6ce25b3be6c83746d184f47a5f67 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@80c46588d47b70a1dd26aef06ccfa24bc1585502 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@8f630a84b2b9f2b7632f895e1521d8d61c04e80e 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 05448de..e61e6be 100644 --- a/environments/py-3.10-win-64-dev.conda.lock.yml +++ b/environments/py-3.10-win-64-dev.conda.lock.yml @@ -11,21 +11,21 @@ dependencies: - alabaster=1.0.0=pyhd8ed1ab_1 - annotated-types=0.7.0=pyhd8ed1ab_1 - aom=3.9.1=he0c23c2_0 - - astroid=3.3.11=py310h5588dad_1 + - astroid=4.0.2=py310h5588dad_0 - babel=2.17.0=pyhd8ed1ab_0 - blosc=1.21.6=hfd34d9b_1 - brotli-python=1.1.0=py310h73ae2b4_4 - bzip2=1.0.8=h0ad9c76_8 - c-blosc2=2.19.1=h3cf07e4_0 - - ca-certificates=2025.8.3=h4c7d964_0 + - ca-certificates=2025.10.5=h4c7d964_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2025.8.3=pyhd8ed1ab_0 - - cffi=1.17.1=py310h29418f3_1 + - certifi=2025.10.5=pyhd8ed1ab_0 + - cffi=2.0.0=py310h29418f3_1 - charls=2.4.2=h1537add_0 - - charset-normalizer=3.4.3=pyhd8ed1ab_0 + - charset-normalizer=3.4.4=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - - coverage=7.10.6=py310hdb0e946_1 + - coverage=7.11.3=py310hdb0e946_0 - dav1d=1.2.1=hcfcfb64_0 - dill=0.4.0=pyhd8ed1ab_0 - docutils=0.21.2=pyhd8ed1ab_1 @@ -33,18 +33,17 @@ dependencies: - freetype=2.14.1=h57928b3_0 - giflib=5.2.2=h64bf75a_0 - h2=4.3.0=pyhcf101f3_0 - - h5py=3.14.0=nompi_py310hb7e4da9_101 + - h5py=3.15.1=nompi_py310hb7e4da9_100 - hdf5=1.14.6=nompi_he30205f_103 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - - icu=75.1=he0c23c2_0 - - idna=3.10=pyhd8ed1ab_1 + - idna=3.11=pyhd8ed1ab_0 - imagecodecs=2025.3.30=py310h9ee7ba4_2 - imageio=2.37.0=pyhfb79c49_0 - imagesize=1.4.1=pyhd8ed1ab_0 - importlib-metadata=8.7.0=pyhe01879c_1 - - iniconfig=2.0.0=pyhd8ed1ab_1 - - isort=6.0.1=pyhd8ed1ab_1 + - iniconfig=2.3.0=pyhd8ed1ab_0 + - isort=7.0.0=pyhd8ed1ab_0 - jinja2=3.1.6=pyhd8ed1ab_0 - jxrlib=1.1=hcfcfb64_3 - krb5=1.21.3=hdf4eb48_0 @@ -53,65 +52,65 @@ dependencies: - lerc=4.0.0=h6470a55_1 - libaec=1.1.4=h20038f6_0 - libavif16=1.3.0=he916da2_2 - - libblas=3.9.0=35_h5709861_mkl + - libblas=3.9.0=38_hf2e6a31_mkl - libbrotlicommon=1.1.0=hfd05255_4 - libbrotlidec=1.1.0=hfd05255_4 - libbrotlienc=1.1.0=hfd05255_4 - - libcblas=3.9.0=35_h2a3cdd5_mkl - - libcurl=8.14.1=h88aaa65_0 + - libcblas=3.9.0=38_h2a3cdd5_mkl + - libcurl=8.17.0=h43ecb02_0 - libdeflate=1.24=h76ddb4d_0 - libexpat=2.7.1=hac47afa_0 - - libffi=3.4.6=h537db12_1 + - libffi=3.5.2=h52bdfb6_0 - libfreetype=2.14.1=h57928b3_0 - libfreetype6=2.14.1=hdbac1cb_0 - - libgcc=15.1.0=h1383e82_5 - - libgomp=15.1.0=h1383e82_5 + - libgcc=15.2.0=h1383e82_7 + - libgomp=15.2.0=h1383e82_7 - libhwloc=2.12.1=default_h64bd3f2_1002 - - libhwy=1.3.0=h47aaa27_0 + - libhwy=1.3.0=ha71e874_1 - libiconv=1.18=hc1393d2_2 - - libjpeg-turbo=3.1.0=h2466b09_0 + - libjpeg-turbo=3.1.2=hfd05255_0 - libjxl=0.11.1=hb7713f0_4 - - liblapack=3.9.0=35_hf9ab0e9_mkl + - liblapack=3.9.0=38_hf9ab0e9_mkl - liblzma=5.8.1=h2466b09_2 - libpng=1.6.50=h7351971_1 - - libsqlite=3.50.4=hf5d6505_0 + - libsqlite=3.51.0=hf5d6505_0 - libssh2=1.11.1=h9aa295b_0 - - libtiff=4.7.0=h550210a_6 + - libtiff=4.7.1=h550210a_0 - libwebp-base=1.6.0=h4d5522a_0 - - libwinpthread=12.0.0.r4.gg4f2fc60ca=h57928b3_9 + - libwinpthread=12.0.0.r4.gg4f2fc60ca=h57928b3_10 - libxcb=1.17.0=h0e4246c_0 - - libxml2=2.15.0=ha29bfb0_0 - - libxml2-16=2.15.0=h06f855e_0 + - libxml2=2.15.1=h5d26750_0 + - libxml2-16=2.15.1=h692994f_0 - libzlib=1.3.1=h2466b09_2 - libzopfli=1.0.3=h0e60522_0 - - llvm-openmp=20.1.8=hfa2b4ca_2 + - llvm-openmp=21.1.5=hfa2b4ca_0 - lz4-c=1.10.0=h2466b09_1 - - markupsafe=3.0.2=py310h38315fa_1 + - markupsafe=3.0.3=py310hdb0e946_0 - mccabe=0.7.0=pyhd8ed1ab_1 - - mkl=2024.2.2=h57928b3_16 + - mkl=2025.3.0=hac47afa_454 - networkx=3.4.2=pyh267e887_2 - numpy=1.26.4=py310hf667824_0 - - openjpeg=2.5.3=h24db6dd_1 - - openssl=3.5.2=h725018a_0 + - openjpeg=2.5.4=h24db6dd_0 + - openssl=3.5.4=h725018a_0 - packaging=25.0=pyh29332c3_1 - pillow=10.3.0=py310h3e38d90_1 - - pip=25.2=pyh8b19718_0 - - platformdirs=4.4.0=pyhcf101f3_0 + - pip=25.3=pyh8b19718_0 + - platformdirs=4.5.0=pyhcf101f3_0 - pluggy=1.6.0=pyhd8ed1ab_0 - pthread-stubs=0.4=h0e40799_1002 - pycparser=2.22=pyh29332c3_1 - - pydantic=2.11.9=pyh3cfb1c2_0 - - pydantic-core=2.33.2=py310hed05c55_0 + - pydantic=2.12.4=pyh3cfb1c2_0 + - pydantic-core=2.41.5=py310h034784e_0 - pygments=2.19.2=pyhd8ed1ab_0 - - pylint=3.3.8=pyhe01879c_0 + - pylint=4.0.2=pyhcf101f3_0 - pysocks=1.7.1=pyh09c184e_7 - - pytest=8.4.2=pyhd8ed1ab_0 + - pytest=9.0.0=pyhcf101f3_0 - pytest-cov=7.0.0=pyhcf101f3_1 - - python=3.10.18=h8c5b53a_0_cpython + - python=3.10.19=hc20f281_2_cpython - python_abi=3.10=8_cp310 - pytz=2025.2=pyhd8ed1ab_0 - pywavelets=1.8.0=py310hb0944cc_0 - - pyyaml=6.0.2=py310h38315fa_2 + - pyyaml=6.0.3=py310hdb0e946_0 - rav1e=0.7.1=ha073cba_3 - requests=2.32.5=pyhd8ed1ab_0 - scikit-image=0.25.2=py310hed136d8_2 @@ -131,22 +130,22 @@ dependencies: - sphinxcontrib-qthelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_1 - svt-av1=3.1.2=hac47afa_0 - - tbb=2021.13.0=h18a62a1_3 + - tbb=2022.3.0=hd094cb3_1 - tifffile=2025.5.10=pyhd8ed1ab_0 - tk=8.6.13=h2c6b04d_2 - - tomli=2.2.1=pyhe01879c_2 + - tomli=2.3.0=pyhcf101f3_0 - tomlkit=0.13.3=pyha770c72_0 - tqdm=4.67.1=pyhd8ed1ab_1 - typing-extensions=4.15.0=h396c80c_0 - - typing-inspection=0.4.1=pyhd8ed1ab_0 + - typing-inspection=0.4.2=pyhd8ed1ab_0 - typing_extensions=4.15.0=pyhcf101f3_0 - tzdata=2025b=h78e105d_0 - ucrt=10.0.26100.0=h57928b3_0 - urllib3=2.5.0=pyhd8ed1ab_0 - - vc=14.3=h41ae7f8_31 - - vc14_runtime=14.44.35208=h818238b_31 - - vcomp14=14.44.35208=h818238b_31 - - vs2015_runtime=14.44.35208=h38c0c73_31 + - vc=14.3=h2b53caa_32 + - vc14_runtime=14.44.35208=h818238b_32 + - vcomp14=14.44.35208=h818238b_32 + - vs2015_runtime=14.44.35208=h38c0c73_32 - wheel=0.45.1=pyhd8ed1ab_1 - win_inet_pton=1.1.0=pyh7428d3b_8 - xorg-libxau=1.0.12=h0e40799_0 @@ -154,12 +153,12 @@ dependencies: - yaml=0.2.5=h6a83c73_3 - zfp=1.0.1=h2f0f97f_3 - zipp=3.23.0=pyhd8ed1ab_0 - - zlib-ng=2.2.5=h1608b31_0 - - zstandard=0.25.0=py310h1637853_0 + - zlib-ng=2.2.5=h32d8bfd_0 + - zstandard=0.25.0=py310h1637853_1 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@a6627f0a6e663e9c3f0e9874f401a34ab8990488 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@8f4cb4c0ebfb6ce25b3be6c83746d184f47a5f67 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@80c46588d47b70a1dd26aef06ccfa24bc1585502 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@8f630a84b2b9f2b7632f895e1521d8d61c04e80e 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 26650c2..2eb70d3 100644 --- a/environments/py-3.10-win-64.conda.lock.yml +++ b/environments/py-3.10-win-64.conda.lock.yml @@ -10,26 +10,22 @@ dependencies: - _openmp_mutex=4.5=2_gnu - annotated-types=0.7.0=pyhd8ed1ab_1 - aom=3.9.1=he0c23c2_0 - - astroid=3.3.11=py310h5588dad_1 - blosc=1.21.6=hfd34d9b_1 - bzip2=1.0.8=h0ad9c76_8 - c-blosc2=2.19.1=h3cf07e4_0 - - ca-certificates=2025.8.3=h4c7d964_0 + - ca-certificates=2025.10.5=h4c7d964_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - charls=2.4.2=h1537add_0 - colorama=0.4.6=pyhd8ed1ab_1 - dav1d=1.2.1=hcfcfb64_0 - - dill=0.4.0=pyhd8ed1ab_0 - freetype=2.14.1=h57928b3_0 - giflib=5.2.2=h64bf75a_0 - - h5py=3.14.0=nompi_py310hb7e4da9_101 + - h5py=3.15.1=nompi_py310hb7e4da9_100 - hdf5=1.14.6=nompi_he30205f_103 - - icu=75.1=he0c23c2_0 - imagecodecs=2025.3.30=py310h9ee7ba4_2 - imageio=2.37.0=pyhfb79c49_0 - importlib-metadata=8.7.0=pyhe01879c_1 - - isort=6.0.1=pyhd8ed1ab_1 - jxrlib=1.1=hcfcfb64_3 - krb5=1.21.3=hdf4eb48_0 - lazy-loader=0.4=pyhd8ed1ab_2 @@ -37,54 +33,51 @@ dependencies: - lerc=4.0.0=h6470a55_1 - libaec=1.1.4=h20038f6_0 - libavif16=1.3.0=he916da2_2 - - libblas=3.9.0=35_h5709861_mkl + - libblas=3.9.0=38_hf2e6a31_mkl - libbrotlicommon=1.1.0=hfd05255_4 - libbrotlidec=1.1.0=hfd05255_4 - libbrotlienc=1.1.0=hfd05255_4 - - libcblas=3.9.0=35_h2a3cdd5_mkl - - libcurl=8.14.1=h88aaa65_0 + - libcblas=3.9.0=38_h2a3cdd5_mkl + - libcurl=8.17.0=h43ecb02_0 - libdeflate=1.24=h76ddb4d_0 - libexpat=2.7.1=hac47afa_0 - - libffi=3.4.6=h537db12_1 + - libffi=3.5.2=h52bdfb6_0 - libfreetype=2.14.1=h57928b3_0 - libfreetype6=2.14.1=hdbac1cb_0 - - libgcc=15.1.0=h1383e82_5 - - libgomp=15.1.0=h1383e82_5 + - libgcc=15.2.0=h1383e82_7 + - libgomp=15.2.0=h1383e82_7 - libhwloc=2.12.1=default_h64bd3f2_1002 - - libhwy=1.3.0=h47aaa27_0 + - libhwy=1.3.0=ha71e874_1 - libiconv=1.18=hc1393d2_2 - - libjpeg-turbo=3.1.0=h2466b09_0 + - libjpeg-turbo=3.1.2=hfd05255_0 - libjxl=0.11.1=hb7713f0_4 - - liblapack=3.9.0=35_hf9ab0e9_mkl + - liblapack=3.9.0=38_hf9ab0e9_mkl - liblzma=5.8.1=h2466b09_2 - libpng=1.6.50=h7351971_1 - - libsqlite=3.50.4=hf5d6505_0 + - libsqlite=3.51.0=hf5d6505_0 - libssh2=1.11.1=h9aa295b_0 - - libtiff=4.7.0=h550210a_6 + - libtiff=4.7.1=h550210a_0 - libwebp-base=1.6.0=h4d5522a_0 - - libwinpthread=12.0.0.r4.gg4f2fc60ca=h57928b3_9 + - libwinpthread=12.0.0.r4.gg4f2fc60ca=h57928b3_10 - libxcb=1.17.0=h0e4246c_0 - - libxml2=2.15.0=ha29bfb0_0 - - libxml2-16=2.15.0=h06f855e_0 + - libxml2=2.15.1=h5d26750_0 + - libxml2-16=2.15.1=h692994f_0 - libzlib=1.3.1=h2466b09_2 - libzopfli=1.0.3=h0e60522_0 - - llvm-openmp=20.1.8=hfa2b4ca_2 + - llvm-openmp=21.1.5=hfa2b4ca_0 - lz4-c=1.10.0=h2466b09_1 - - mccabe=0.7.0=pyhd8ed1ab_1 - - mkl=2024.2.2=h57928b3_16 + - mkl=2025.3.0=hac47afa_454 - networkx=3.4.2=pyh267e887_2 - numpy=1.26.4=py310hf667824_0 - - openjpeg=2.5.3=h24db6dd_1 - - openssl=3.5.2=h725018a_0 + - openjpeg=2.5.4=h24db6dd_0 + - openssl=3.5.4=h725018a_0 - packaging=25.0=pyh29332c3_1 - pillow=10.3.0=py310h3e38d90_1 - - pip=25.2=pyh8b19718_0 - - platformdirs=4.4.0=pyhcf101f3_0 + - pip=25.3=pyh8b19718_0 - pthread-stubs=0.4=h0e40799_1002 - - pydantic=2.11.9=pyh3cfb1c2_0 - - pydantic-core=2.33.2=py310hed05c55_0 - - pylint=3.3.8=pyhe01879c_0 - - python=3.10.18=h8c5b53a_0_cpython + - pydantic=2.12.4=pyh3cfb1c2_0 + - pydantic-core=2.41.5=py310h034784e_0 + - python=3.10.19=hc20f281_2_cpython - python_abi=3.10=8_cp310 - pywavelets=1.8.0=py310hb0944cc_0 - rav1e=0.7.1=ha073cba_3 @@ -93,31 +86,29 @@ dependencies: - setuptools=80.9.0=pyhff2d567_0 - snappy=1.2.2=h7fa0ca8_0 - svt-av1=3.1.2=hac47afa_0 - - tbb=2021.13.0=h18a62a1_3 + - tbb=2022.3.0=hd094cb3_1 - tifffile=2025.5.10=pyhd8ed1ab_0 - tk=8.6.13=h2c6b04d_2 - - tomli=2.2.1=pyhe01879c_2 - - tomlkit=0.13.3=pyha770c72_0 - tqdm=4.67.1=pyhd8ed1ab_1 - typing-extensions=4.15.0=h396c80c_0 - - typing-inspection=0.4.1=pyhd8ed1ab_0 + - typing-inspection=0.4.2=pyhd8ed1ab_0 - typing_extensions=4.15.0=pyhcf101f3_0 - tzdata=2025b=h78e105d_0 - ucrt=10.0.26100.0=h57928b3_0 - - vc=14.3=h41ae7f8_31 - - vc14_runtime=14.44.35208=h818238b_31 - - vcomp14=14.44.35208=h818238b_31 - - vs2015_runtime=14.44.35208=h38c0c73_31 + - vc=14.3=h2b53caa_32 + - vc14_runtime=14.44.35208=h818238b_32 + - vcomp14=14.44.35208=h818238b_32 + - vs2015_runtime=14.44.35208=h38c0c73_32 - wheel=0.45.1=pyhd8ed1ab_1 - xorg-libxau=1.0.12=h0e40799_0 - xorg-libxdmcp=1.1.5=h0e40799_0 - zfp=1.0.1=h2f0f97f_3 - zipp=3.23.0=pyhd8ed1ab_0 - - zlib-ng=2.2.5=h1608b31_0 + - zlib-ng=2.2.5=h32d8bfd_0 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@a6627f0a6e663e9c3f0e9874f401a34ab8990488 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@8f4cb4c0ebfb6ce25b3be6c83746d184f47a5f67 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@80c46588d47b70a1dd26aef06ccfa24bc1585502 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@8f630a84b2b9f2b7632f895e1521d8d61c04e80e 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 5971a97..c2d6227 100644 --- a/environments/py-3.11-linux-64-dev.conda.lock.yml +++ b/environments/py-3.11-linux-64-dev.conda.lock.yml @@ -11,23 +11,23 @@ dependencies: - alabaster=1.0.0=pyhd8ed1ab_1 - annotated-types=0.7.0=pyhd8ed1ab_1 - aom=3.9.1=hac33072_0 - - astroid=3.3.11=py311h38be061_1 + - astroid=4.0.2=py311h38be061_0 - babel=2.17.0=pyhd8ed1ab_0 - blosc=1.21.6=he440d0b_1 - - brotli-python=1.1.0=py311h1ddb823_4 - - brunsli=0.1=he3183e4_1 + - brotli-python=1.2.0=py311h7c6b74e_0 + - brunsli=0.1=hd1e3526_2 - bzip2=1.0.8=hda65f42_8 - c-ares=1.34.5=hb9d3cd8_0 - - c-blosc2=2.21.2=h4cfbee9_0 - - ca-certificates=2025.8.3=hbd8a1cb_0 + - c-blosc2=2.22.0=h4cfbee9_0 + - ca-certificates=2025.10.5=hbd8a1cb_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2025.8.3=pyhd8ed1ab_0 - - cffi=1.17.1=py311h5b438cf_1 + - certifi=2025.10.5=pyhd8ed1ab_0 + - cffi=2.0.0=py311h03d9500_1 - charls=2.4.2=h59595ed_0 - - charset-normalizer=3.4.3=pyhd8ed1ab_0 + - charset-normalizer=3.4.4=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - - coverage=7.10.6=py311h3778330_1 + - coverage=7.11.3=py311h3778330_0 - dav1d=1.2.1=hd590300_0 - dill=0.4.0=pyhd8ed1ab_0 - docutils=0.21.2=pyhd8ed1ab_1 @@ -35,92 +35,93 @@ dependencies: - freetype=2.14.1=ha770c72_0 - giflib=5.2.2=hd590300_0 - h2=4.3.0=pyhcf101f3_0 - - h5py=3.14.0=nompi_py311h0b2f468_101 + - h5py=3.15.1=nompi_py311h0b2f468_100 - hdf5=1.14.6=nompi_h6e4c0c1_103 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - - idna=3.10=pyhd8ed1ab_1 - - imagecodecs=2025.8.2=py311h5031496_4 + - icu=75.1=he02047a_0 + - idna=3.11=pyhd8ed1ab_0 + - imagecodecs=2025.8.2=py311h99464e2_7 - imageio=2.37.0=pyhfb79c49_0 - imagesize=1.4.1=pyhd8ed1ab_0 - importlib-metadata=8.7.0=pyhe01879c_1 - - iniconfig=2.0.0=pyhd8ed1ab_1 - - isort=6.0.1=pyhd8ed1ab_1 + - iniconfig=2.3.0=pyhd8ed1ab_0 + - isort=7.0.0=pyhd8ed1ab_0 - jinja2=3.1.6=pyhd8ed1ab_0 - jxrlib=1.1=hd590300_3 - keyutils=1.6.3=hb9d3cd8_0 - krb5=1.21.3=h659f571_0 - lazy-loader=0.4=pyhd8ed1ab_2 - lcms2=2.17=h717163a_0 - - ld_impl_linux-64=2.44=h1423503_1 + - ld_impl_linux-64=2.44=h1aa0949_5 - lerc=4.0.0=h0aef613_1 - libaec=1.1.4=h3f801dc_0 - libavif16=1.3.0=h6395336_2 - - libblas=3.9.0=35_h4a7cf45_openblas - - libbrotlicommon=1.1.0=hb03c661_4 - - libbrotlidec=1.1.0=hb03c661_4 - - libbrotlienc=1.1.0=hb03c661_4 - - libcblas=3.9.0=35_h0358290_openblas - - libcurl=8.14.1=h332b0f4_0 - - libdeflate=1.24=h86f0d12_0 + - libblas=3.9.0=38_h4a7cf45_openblas + - libbrotlicommon=1.2.0=h09219d5_0 + - libbrotlidec=1.2.0=hd53d788_0 + - libbrotlienc=1.2.0=h02bd7ab_0 + - libcblas=3.9.0=38_h0358290_openblas + - libcurl=8.17.0=h4e3cde8_0 + - libdeflate=1.25=h17f619e_0 - libedit=3.1.20250104=pl5321h7949ede_0 - libev=4.33=hd590300_2 - libexpat=2.7.1=hecca717_0 - - libffi=3.4.6=h2dba641_1 + - libffi=3.5.2=h9ec8514_0 - libfreetype=2.14.1=ha770c72_0 - libfreetype6=2.14.1=h73754d4_0 - - libgcc=15.1.0=h767d61c_5 - - libgcc-ng=15.1.0=h69a702a_5 - - libgfortran=15.1.0=h69a702a_5 - - libgfortran5=15.1.0=hcea5267_5 - - libgomp=15.1.0=h767d61c_5 - - libhwy=1.3.0=h4c17acf_0 - - libjpeg-turbo=3.1.0=hb9d3cd8_0 - - libjxl=0.11.1=h6cb5226_4 - - liblapack=3.9.0=35_h47877c9_openblas + - libgcc=15.2.0=h767d61c_7 + - libgcc-ng=15.2.0=h69a702a_7 + - libgfortran=15.2.0=h69a702a_7 + - libgfortran5=15.2.0=hcd61629_7 + - libgomp=15.2.0=h767d61c_7 + - libhwy=1.3.0=h4c17acf_1 + - libjpeg-turbo=3.1.2=hb03c661_0 + - libjxl=0.11.1=hf08fa70_5 + - liblapack=3.9.0=38_h47877c9_openblas - liblzma=5.8.1=hb9d3cd8_2 - libnghttp2=1.67.0=had1ee68_0 - libnsl=2.0.1=hb9d3cd8_1 - - libopenblas=0.3.30=pthreads_h94d23a6_2 + - libopenblas=0.3.30=pthreads_h94d23a6_3 - libpng=1.6.50=h421ea60_1 - - libsqlite=3.50.4=h0c1763c_0 + - libsqlite=3.51.0=hee844dc_0 - libssh2=1.11.1=hcf80075_0 - - libstdcxx=15.1.0=h8f9b012_5 - - libstdcxx-ng=15.1.0=h4852527_5 - - libtiff=4.7.0=h8261f1e_6 - - libuuid=2.41.1=he9a06e4_0 + - libstdcxx=15.2.0=h8f9b012_7 + - libstdcxx-ng=15.2.0=h4852527_7 + - libtiff=4.7.1=h9d88235_1 + - libuuid=2.41.2=he9a06e4_0 - libwebp-base=1.6.0=hd42ef1d_0 - libxcb=1.17.0=h8a09558_0 - libxcrypt=4.4.36=hd590300_1 - libzlib=1.3.1=hb9d3cd8_2 - libzopfli=1.0.3=h9c3ff4c_0 - lz4-c=1.10.0=h5888daf_1 - - markupsafe=3.0.2=py311h2dc5d0c_1 + - markupsafe=3.0.3=py311h3778330_0 - mccabe=0.7.0=pyhd8ed1ab_1 - ncurses=6.5=h2d0b736_3 - networkx=3.5=pyhe01879c_0 - numpy=1.26.4=py311h64a7726_0 - - openjpeg=2.5.3=h55fea9a_1 - - openssl=3.5.2=h26f9b46_0 + - openjpeg=2.5.4=h55fea9a_0 + - openssl=3.5.4=h26f9b46_0 - packaging=25.0=pyh29332c3_1 - pillow=10.3.0=py311h82a398c_1 - - pip=25.2=pyh8b19718_0 - - platformdirs=4.4.0=pyhcf101f3_0 + - pip=25.3=pyh8b19718_0 + - platformdirs=4.5.0=pyhcf101f3_0 - pluggy=1.6.0=pyhd8ed1ab_0 - pthread-stubs=0.4=hb9d3cd8_1002 - pycparser=2.22=pyh29332c3_1 - - pydantic=2.11.9=pyh3cfb1c2_0 - - pydantic-core=2.33.2=py311hdae7d1d_0 + - pydantic=2.12.4=pyh3cfb1c2_0 + - pydantic-core=2.41.5=py311h902ca64_0 - pygments=2.19.2=pyhd8ed1ab_0 - - pylint=3.3.8=pyhe01879c_0 + - pylint=4.0.2=pyhcf101f3_0 - pysocks=1.7.1=pyha55dd90_7 - - pytest=8.4.2=pyhd8ed1ab_0 + - pytest=9.0.0=pyhcf101f3_0 - pytest-cov=7.0.0=pyhcf101f3_1 - - python=3.11.13=h9e4cc4f_0_cpython + - python=3.11.14=hd63d673_2_cpython - python_abi=3.11=8_cp311 - pytz=2025.2=pyhd8ed1ab_0 - - pywavelets=1.9.0=py311h0372a8f_1 - - pyyaml=6.0.2=py311h2dc5d0c_2 + - pywavelets=1.9.0=py311h0372a8f_2 + - pyyaml=6.0.3=py311h3778330_0 - rav1e=0.7.1=h8fae777_3 - readline=8.2=h8c095d6_2 - requests=2.32.5=pyhd8ed1ab_0 @@ -130,8 +131,8 @@ dependencies: - setuptools=80.9.0=pyhff2d567_0 - snappy=1.2.2=h03e3b7b_0 - snowballstemmer=3.0.1=pyhd8ed1ab_0 - - sphinx=8.3.0=pyhd8ed1ab_0 - - sphinx-autodoc-typehints=3.2.0=pyhd8ed1ab_0 + - sphinx=8.2.3=pyhd8ed1ab_0 + - sphinx-autodoc-typehints=3.5.2=pyhd8ed1ab_0 - sphinx-rtd-theme=3.0.2=hd8ed1ab_0 - sphinx_rtd_theme=3.0.2=pyha770c72_0 - sphinxcontrib-applehelp=2.0.0=pyhd8ed1ab_1 @@ -142,13 +143,13 @@ dependencies: - sphinxcontrib-qthelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_1 - svt-av1=3.1.2=hecca717_0 - - tifffile=2025.9.9=pyhd8ed1ab_0 + - tifffile=2025.10.16=pyhd8ed1ab_0 - tk=8.6.13=noxft_hd72426e_102 - - tomli=2.2.1=pyhe01879c_2 + - tomli=2.3.0=pyhcf101f3_0 - tomlkit=0.13.3=pyha770c72_0 - tqdm=4.67.1=pyhd8ed1ab_1 - typing-extensions=4.15.0=h396c80c_0 - - typing-inspection=0.4.1=pyhd8ed1ab_0 + - typing-inspection=0.4.2=pyhd8ed1ab_0 - typing_extensions=4.15.0=pyhcf101f3_0 - tzdata=2025b=h78e105d_0 - urllib3=2.5.0=pyhd8ed1ab_0 @@ -159,11 +160,11 @@ dependencies: - zfp=1.0.1=h909a3a2_3 - zipp=3.23.0=pyhd8ed1ab_0 - zlib-ng=2.2.5=hde8ca8f_0 - - zstandard=0.25.0=py311haee01d2_0 + - zstandard=0.25.0=py311haee01d2_1 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@a6627f0a6e663e9c3f0e9874f401a34ab8990488 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@8f4cb4c0ebfb6ce25b3be6c83746d184f47a5f67 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@80c46588d47b70a1dd26aef06ccfa24bc1585502 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@8f630a84b2b9f2b7632f895e1521d8d61c04e80e 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 741502c..aa2bfdf 100644 --- a/environments/py-3.11-linux-64.conda.lock.yml +++ b/environments/py-3.11-linux-64.conda.lock.yml @@ -10,92 +10,87 @@ dependencies: - _openmp_mutex=4.5=2_gnu - annotated-types=0.7.0=pyhd8ed1ab_1 - aom=3.9.1=hac33072_0 - - astroid=3.3.11=py311h38be061_1 - blosc=1.21.6=he440d0b_1 - - brunsli=0.1=he3183e4_1 + - brunsli=0.1=hd1e3526_2 - bzip2=1.0.8=hda65f42_8 - c-ares=1.34.5=hb9d3cd8_0 - - c-blosc2=2.21.2=h4cfbee9_0 - - ca-certificates=2025.8.3=hbd8a1cb_0 + - c-blosc2=2.22.0=h4cfbee9_0 + - ca-certificates=2025.10.5=hbd8a1cb_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - charls=2.4.2=h59595ed_0 - colorama=0.4.6=pyhd8ed1ab_1 - dav1d=1.2.1=hd590300_0 - - dill=0.4.0=pyhd8ed1ab_0 - freetype=2.14.1=ha770c72_0 - giflib=5.2.2=hd590300_0 - - h5py=3.14.0=nompi_py311h0b2f468_101 + - h5py=3.15.1=nompi_py311h0b2f468_100 - hdf5=1.14.6=nompi_h6e4c0c1_103 - - imagecodecs=2025.8.2=py311h5031496_4 + - icu=75.1=he02047a_0 + - imagecodecs=2025.8.2=py311h99464e2_7 - imageio=2.37.0=pyhfb79c49_0 - importlib-metadata=8.7.0=pyhe01879c_1 - - isort=6.0.1=pyhd8ed1ab_1 - jxrlib=1.1=hd590300_3 - keyutils=1.6.3=hb9d3cd8_0 - krb5=1.21.3=h659f571_0 - lazy-loader=0.4=pyhd8ed1ab_2 - lcms2=2.17=h717163a_0 - - ld_impl_linux-64=2.44=h1423503_1 + - ld_impl_linux-64=2.44=h1aa0949_5 - lerc=4.0.0=h0aef613_1 - libaec=1.1.4=h3f801dc_0 - libavif16=1.3.0=h6395336_2 - - libblas=3.9.0=35_h4a7cf45_openblas - - libbrotlicommon=1.1.0=hb03c661_4 - - libbrotlidec=1.1.0=hb03c661_4 - - libbrotlienc=1.1.0=hb03c661_4 - - libcblas=3.9.0=35_h0358290_openblas - - libcurl=8.14.1=h332b0f4_0 - - libdeflate=1.24=h86f0d12_0 + - libblas=3.9.0=38_h4a7cf45_openblas + - libbrotlicommon=1.2.0=h09219d5_0 + - libbrotlidec=1.2.0=hd53d788_0 + - libbrotlienc=1.2.0=h02bd7ab_0 + - libcblas=3.9.0=38_h0358290_openblas + - libcurl=8.17.0=h4e3cde8_0 + - libdeflate=1.25=h17f619e_0 - libedit=3.1.20250104=pl5321h7949ede_0 - libev=4.33=hd590300_2 - libexpat=2.7.1=hecca717_0 - - libffi=3.4.6=h2dba641_1 + - libffi=3.5.2=h9ec8514_0 - libfreetype=2.14.1=ha770c72_0 - libfreetype6=2.14.1=h73754d4_0 - - libgcc=15.1.0=h767d61c_5 - - libgcc-ng=15.1.0=h69a702a_5 - - libgfortran=15.1.0=h69a702a_5 - - libgfortran5=15.1.0=hcea5267_5 - - libgomp=15.1.0=h767d61c_5 - - libhwy=1.3.0=h4c17acf_0 - - libjpeg-turbo=3.1.0=hb9d3cd8_0 - - libjxl=0.11.1=h6cb5226_4 - - liblapack=3.9.0=35_h47877c9_openblas + - libgcc=15.2.0=h767d61c_7 + - libgcc-ng=15.2.0=h69a702a_7 + - libgfortran=15.2.0=h69a702a_7 + - libgfortran5=15.2.0=hcd61629_7 + - libgomp=15.2.0=h767d61c_7 + - libhwy=1.3.0=h4c17acf_1 + - libjpeg-turbo=3.1.2=hb03c661_0 + - libjxl=0.11.1=hf08fa70_5 + - liblapack=3.9.0=38_h47877c9_openblas - liblzma=5.8.1=hb9d3cd8_2 - libnghttp2=1.67.0=had1ee68_0 - libnsl=2.0.1=hb9d3cd8_1 - - libopenblas=0.3.30=pthreads_h94d23a6_2 + - libopenblas=0.3.30=pthreads_h94d23a6_3 - libpng=1.6.50=h421ea60_1 - - libsqlite=3.50.4=h0c1763c_0 + - libsqlite=3.51.0=hee844dc_0 - libssh2=1.11.1=hcf80075_0 - - libstdcxx=15.1.0=h8f9b012_5 - - libstdcxx-ng=15.1.0=h4852527_5 - - libtiff=4.7.0=h8261f1e_6 - - libuuid=2.41.1=he9a06e4_0 + - libstdcxx=15.2.0=h8f9b012_7 + - libstdcxx-ng=15.2.0=h4852527_7 + - libtiff=4.7.1=h9d88235_1 + - libuuid=2.41.2=he9a06e4_0 - libwebp-base=1.6.0=hd42ef1d_0 - libxcb=1.17.0=h8a09558_0 - libxcrypt=4.4.36=hd590300_1 - libzlib=1.3.1=hb9d3cd8_2 - libzopfli=1.0.3=h9c3ff4c_0 - lz4-c=1.10.0=h5888daf_1 - - mccabe=0.7.0=pyhd8ed1ab_1 - ncurses=6.5=h2d0b736_3 - networkx=3.5=pyhe01879c_0 - numpy=1.26.4=py311h64a7726_0 - - openjpeg=2.5.3=h55fea9a_1 - - openssl=3.5.2=h26f9b46_0 + - openjpeg=2.5.4=h55fea9a_0 + - openssl=3.5.4=h26f9b46_0 - packaging=25.0=pyh29332c3_1 - pillow=10.3.0=py311h82a398c_1 - - pip=25.2=pyh8b19718_0 - - platformdirs=4.4.0=pyhcf101f3_0 + - pip=25.3=pyh8b19718_0 - pthread-stubs=0.4=hb9d3cd8_1002 - - pydantic=2.11.9=pyh3cfb1c2_0 - - pydantic-core=2.33.2=py311hdae7d1d_0 - - pylint=3.3.8=pyhe01879c_0 - - python=3.11.13=h9e4cc4f_0_cpython + - pydantic=2.12.4=pyh3cfb1c2_0 + - pydantic-core=2.41.5=py311h902ca64_0 + - python=3.11.14=hd63d673_2_cpython - python_abi=3.11=8_cp311 - - pywavelets=1.9.0=py311h0372a8f_1 + - pywavelets=1.9.0=py311h0372a8f_2 - rav1e=0.7.1=h8fae777_3 - readline=8.2=h8c095d6_2 - scikit-image=0.25.2=py311hed34c8f_2 @@ -103,13 +98,11 @@ dependencies: - setuptools=80.9.0=pyhff2d567_0 - snappy=1.2.2=h03e3b7b_0 - svt-av1=3.1.2=hecca717_0 - - tifffile=2025.9.9=pyhd8ed1ab_0 + - tifffile=2025.10.16=pyhd8ed1ab_0 - tk=8.6.13=noxft_hd72426e_102 - - tomli=2.2.1=pyhe01879c_2 - - tomlkit=0.13.3=pyha770c72_0 - tqdm=4.67.1=pyhd8ed1ab_1 - typing-extensions=4.15.0=h396c80c_0 - - typing-inspection=0.4.1=pyhd8ed1ab_0 + - typing-inspection=0.4.2=pyhd8ed1ab_0 - typing_extensions=4.15.0=pyhcf101f3_0 - tzdata=2025b=h78e105d_0 - wheel=0.45.1=pyhd8ed1ab_1 @@ -120,8 +113,8 @@ dependencies: - zlib-ng=2.2.5=hde8ca8f_0 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@a6627f0a6e663e9c3f0e9874f401a34ab8990488 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@8f4cb4c0ebfb6ce25b3be6c83746d184f47a5f67 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@80c46588d47b70a1dd26aef06ccfa24bc1585502 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@8f630a84b2b9f2b7632f895e1521d8d61c04e80e 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 0ad12b7..7c743e6 100644 --- a/environments/py-3.11-win-64-dev.conda.lock.yml +++ b/environments/py-3.11-win-64-dev.conda.lock.yml @@ -11,21 +11,21 @@ dependencies: - alabaster=1.0.0=pyhd8ed1ab_1 - annotated-types=0.7.0=pyhd8ed1ab_1 - aom=3.9.1=he0c23c2_0 - - astroid=3.3.11=py311h1ea47a8_1 + - astroid=4.0.2=py311h1ea47a8_0 - babel=2.17.0=pyhd8ed1ab_0 - blosc=1.21.6=hfd34d9b_1 - - brotli-python=1.1.0=py311h3e6a449_4 + - brotli-python=1.2.0=py311h69b5583_0 - bzip2=1.0.8=h0ad9c76_8 - - c-blosc2=2.21.2=h3cf07e4_0 - - ca-certificates=2025.8.3=h4c7d964_0 + - c-blosc2=2.22.0=h3cf07e4_0 + - ca-certificates=2025.10.5=h4c7d964_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2025.8.3=pyhd8ed1ab_0 - - cffi=1.17.1=py311h3485c13_1 + - certifi=2025.10.5=pyhd8ed1ab_0 + - cffi=2.0.0=py311h3485c13_1 - charls=2.4.2=h1537add_0 - - charset-normalizer=3.4.3=pyhd8ed1ab_0 + - charset-normalizer=3.4.4=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - - coverage=7.10.6=py311h3f79411_1 + - coverage=7.11.3=py311h3f79411_0 - dav1d=1.2.1=hcfcfb64_0 - dill=0.4.0=pyhd8ed1ab_0 - docutils=0.21.2=pyhd8ed1ab_1 @@ -33,18 +33,17 @@ dependencies: - freetype=2.14.1=h57928b3_0 - giflib=5.2.2=h64bf75a_0 - h2=4.3.0=pyhcf101f3_0 - - h5py=3.14.0=nompi_py311hc40ba4b_101 + - h5py=3.15.1=nompi_py311hc40ba4b_100 - hdf5=1.14.6=nompi_he30205f_103 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - - icu=75.1=he0c23c2_0 - - idna=3.10=pyhd8ed1ab_1 - - imagecodecs=2025.8.2=py311h48a3f50_4 + - idna=3.11=pyhd8ed1ab_0 + - imagecodecs=2025.8.2=py311haf4ede9_7 - imageio=2.37.0=pyhfb79c49_0 - imagesize=1.4.1=pyhd8ed1ab_0 - importlib-metadata=8.7.0=pyhe01879c_1 - - iniconfig=2.0.0=pyhd8ed1ab_1 - - isort=6.0.1=pyhd8ed1ab_1 + - iniconfig=2.3.0=pyhd8ed1ab_0 + - isort=7.0.0=pyhd8ed1ab_0 - jinja2=3.1.6=pyhd8ed1ab_0 - jxrlib=1.1=hcfcfb64_3 - krb5=1.21.3=hdf4eb48_0 @@ -53,65 +52,65 @@ dependencies: - lerc=4.0.0=h6470a55_1 - libaec=1.1.4=h20038f6_0 - libavif16=1.3.0=he916da2_2 - - libblas=3.9.0=35_h5709861_mkl - - libbrotlicommon=1.1.0=hfd05255_4 - - libbrotlidec=1.1.0=hfd05255_4 - - libbrotlienc=1.1.0=hfd05255_4 - - libcblas=3.9.0=35_h2a3cdd5_mkl - - libcurl=8.14.1=h88aaa65_0 - - libdeflate=1.24=h76ddb4d_0 + - libblas=3.9.0=38_hf2e6a31_mkl + - libbrotlicommon=1.2.0=hc82b238_0 + - libbrotlidec=1.2.0=h431afc6_0 + - libbrotlienc=1.2.0=ha521d6b_0 + - libcblas=3.9.0=38_h2a3cdd5_mkl + - libcurl=8.17.0=h43ecb02_0 + - libdeflate=1.25=h51727cc_0 - libexpat=2.7.1=hac47afa_0 - - libffi=3.4.6=h537db12_1 + - libffi=3.5.2=h52bdfb6_0 - libfreetype=2.14.1=h57928b3_0 - libfreetype6=2.14.1=hdbac1cb_0 - - libgcc=15.1.0=h1383e82_5 - - libgomp=15.1.0=h1383e82_5 + - libgcc=15.2.0=h1383e82_7 + - libgomp=15.2.0=h1383e82_7 - libhwloc=2.12.1=default_h64bd3f2_1002 - - libhwy=1.3.0=h47aaa27_0 + - libhwy=1.3.0=ha71e874_1 - libiconv=1.18=hc1393d2_2 - - libjpeg-turbo=3.1.0=h2466b09_0 - - libjxl=0.11.1=hb7713f0_4 - - liblapack=3.9.0=35_hf9ab0e9_mkl + - libjpeg-turbo=3.1.2=hfd05255_0 + - libjxl=0.11.1=hac9b6f3_5 + - liblapack=3.9.0=38_hf9ab0e9_mkl - liblzma=5.8.1=h2466b09_2 - libpng=1.6.50=h7351971_1 - - libsqlite=3.50.4=hf5d6505_0 + - libsqlite=3.51.0=hf5d6505_0 - libssh2=1.11.1=h9aa295b_0 - - libtiff=4.7.0=h550210a_6 + - libtiff=4.7.1=h8f73337_1 - libwebp-base=1.6.0=h4d5522a_0 - - libwinpthread=12.0.0.r4.gg4f2fc60ca=h57928b3_9 + - libwinpthread=12.0.0.r4.gg4f2fc60ca=h57928b3_10 - libxcb=1.17.0=h0e4246c_0 - - libxml2=2.15.0=ha29bfb0_0 - - libxml2-16=2.15.0=h06f855e_0 + - libxml2=2.15.1=h5d26750_0 + - libxml2-16=2.15.1=h692994f_0 - libzlib=1.3.1=h2466b09_2 - libzopfli=1.0.3=h0e60522_0 - - llvm-openmp=20.1.8=hfa2b4ca_2 + - llvm-openmp=21.1.5=hfa2b4ca_0 - lz4-c=1.10.0=h2466b09_1 - - markupsafe=3.0.2=py311h5082efb_1 + - markupsafe=3.0.3=py311h3f79411_0 - mccabe=0.7.0=pyhd8ed1ab_1 - - mkl=2024.2.2=h57928b3_16 + - mkl=2025.3.0=hac47afa_454 - networkx=3.5=pyhe01879c_0 - numpy=1.26.4=py311h0b4df5a_0 - - openjpeg=2.5.3=h24db6dd_1 - - openssl=3.5.2=h725018a_0 + - openjpeg=2.5.4=h24db6dd_0 + - openssl=3.5.4=h725018a_0 - packaging=25.0=pyh29332c3_1 - pillow=10.3.0=py311h5592be9_1 - - pip=25.2=pyh8b19718_0 - - platformdirs=4.4.0=pyhcf101f3_0 + - pip=25.3=pyh8b19718_0 + - platformdirs=4.5.0=pyhcf101f3_0 - pluggy=1.6.0=pyhd8ed1ab_0 - pthread-stubs=0.4=h0e40799_1002 - pycparser=2.22=pyh29332c3_1 - - pydantic=2.11.9=pyh3cfb1c2_0 - - pydantic-core=2.33.2=py311hc4022dc_0 + - pydantic=2.12.4=pyh3cfb1c2_0 + - pydantic-core=2.41.5=py311hf51aa87_0 - pygments=2.19.2=pyhd8ed1ab_0 - - pylint=3.3.8=pyhe01879c_0 + - pylint=4.0.2=pyhcf101f3_0 - pysocks=1.7.1=pyh09c184e_7 - - pytest=8.4.2=pyhd8ed1ab_0 + - pytest=9.0.0=pyhcf101f3_0 - pytest-cov=7.0.0=pyhcf101f3_1 - - python=3.11.13=h3f84c4b_0_cpython + - python=3.11.14=h0159041_2_cpython - python_abi=3.11=8_cp311 - pytz=2025.2=pyhd8ed1ab_0 - - pywavelets=1.9.0=py311h17033d2_1 - - pyyaml=6.0.2=py311h5082efb_2 + - pywavelets=1.9.0=py311h17033d2_2 + - pyyaml=6.0.3=py311h3f79411_0 - rav1e=0.7.1=ha073cba_3 - requests=2.32.5=pyhd8ed1ab_0 - roman-numerals-py=3.1.0=pyhd8ed1ab_0 @@ -120,8 +119,8 @@ dependencies: - setuptools=80.9.0=pyhff2d567_0 - snappy=1.2.2=h7fa0ca8_0 - snowballstemmer=3.0.1=pyhd8ed1ab_0 - - sphinx=8.3.0=pyhd8ed1ab_0 - - sphinx-autodoc-typehints=3.2.0=pyhd8ed1ab_0 + - sphinx=8.2.3=pyhd8ed1ab_0 + - sphinx-autodoc-typehints=3.5.2=pyhd8ed1ab_0 - sphinx-rtd-theme=3.0.2=hd8ed1ab_0 - sphinx_rtd_theme=3.0.2=pyha770c72_0 - sphinxcontrib-applehelp=2.0.0=pyhd8ed1ab_1 @@ -132,22 +131,22 @@ dependencies: - sphinxcontrib-qthelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_1 - svt-av1=3.1.2=hac47afa_0 - - tbb=2021.13.0=h18a62a1_3 - - tifffile=2025.9.9=pyhd8ed1ab_0 + - tbb=2022.3.0=hd094cb3_1 + - tifffile=2025.10.16=pyhd8ed1ab_0 - tk=8.6.13=h2c6b04d_2 - - tomli=2.2.1=pyhe01879c_2 + - tomli=2.3.0=pyhcf101f3_0 - tomlkit=0.13.3=pyha770c72_0 - tqdm=4.67.1=pyhd8ed1ab_1 - typing-extensions=4.15.0=h396c80c_0 - - typing-inspection=0.4.1=pyhd8ed1ab_0 + - typing-inspection=0.4.2=pyhd8ed1ab_0 - typing_extensions=4.15.0=pyhcf101f3_0 - tzdata=2025b=h78e105d_0 - ucrt=10.0.26100.0=h57928b3_0 - urllib3=2.5.0=pyhd8ed1ab_0 - - vc=14.3=h41ae7f8_31 - - vc14_runtime=14.44.35208=h818238b_31 - - vcomp14=14.44.35208=h818238b_31 - - vs2015_runtime=14.44.35208=h38c0c73_31 + - vc=14.3=h2b53caa_32 + - vc14_runtime=14.44.35208=h818238b_32 + - vcomp14=14.44.35208=h818238b_32 + - vs2015_runtime=14.44.35208=h38c0c73_32 - wheel=0.45.1=pyhd8ed1ab_1 - win_inet_pton=1.1.0=pyh7428d3b_8 - xorg-libxau=1.0.12=h0e40799_0 @@ -155,12 +154,12 @@ dependencies: - yaml=0.2.5=h6a83c73_3 - zfp=1.0.1=h2f0f97f_3 - zipp=3.23.0=pyhd8ed1ab_0 - - zlib-ng=2.2.5=h1608b31_0 - - zstandard=0.25.0=py311hf893f09_0 + - zlib-ng=2.2.5=h32d8bfd_0 + - zstandard=0.25.0=py311hf893f09_1 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@a6627f0a6e663e9c3f0e9874f401a34ab8990488 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@8f4cb4c0ebfb6ce25b3be6c83746d184f47a5f67 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@80c46588d47b70a1dd26aef06ccfa24bc1585502 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@8f630a84b2b9f2b7632f895e1521d8d61c04e80e 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 3914ce9..047bf20 100644 --- a/environments/py-3.11-win-64.conda.lock.yml +++ b/environments/py-3.11-win-64.conda.lock.yml @@ -10,26 +10,22 @@ dependencies: - _openmp_mutex=4.5=2_gnu - annotated-types=0.7.0=pyhd8ed1ab_1 - aom=3.9.1=he0c23c2_0 - - astroid=3.3.11=py311h1ea47a8_1 - blosc=1.21.6=hfd34d9b_1 - bzip2=1.0.8=h0ad9c76_8 - - c-blosc2=2.21.2=h3cf07e4_0 - - ca-certificates=2025.8.3=h4c7d964_0 + - c-blosc2=2.22.0=h3cf07e4_0 + - ca-certificates=2025.10.5=h4c7d964_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - charls=2.4.2=h1537add_0 - colorama=0.4.6=pyhd8ed1ab_1 - dav1d=1.2.1=hcfcfb64_0 - - dill=0.4.0=pyhd8ed1ab_0 - freetype=2.14.1=h57928b3_0 - giflib=5.2.2=h64bf75a_0 - - h5py=3.14.0=nompi_py311hc40ba4b_101 + - h5py=3.15.1=nompi_py311hc40ba4b_100 - hdf5=1.14.6=nompi_he30205f_103 - - icu=75.1=he0c23c2_0 - - imagecodecs=2025.8.2=py311h48a3f50_4 + - imagecodecs=2025.8.2=py311haf4ede9_7 - imageio=2.37.0=pyhfb79c49_0 - importlib-metadata=8.7.0=pyhe01879c_1 - - isort=6.0.1=pyhd8ed1ab_1 - jxrlib=1.1=hcfcfb64_3 - krb5=1.21.3=hdf4eb48_0 - lazy-loader=0.4=pyhd8ed1ab_2 @@ -37,87 +33,82 @@ dependencies: - lerc=4.0.0=h6470a55_1 - libaec=1.1.4=h20038f6_0 - libavif16=1.3.0=he916da2_2 - - libblas=3.9.0=35_h5709861_mkl - - libbrotlicommon=1.1.0=hfd05255_4 - - libbrotlidec=1.1.0=hfd05255_4 - - libbrotlienc=1.1.0=hfd05255_4 - - libcblas=3.9.0=35_h2a3cdd5_mkl - - libcurl=8.14.1=h88aaa65_0 - - libdeflate=1.24=h76ddb4d_0 + - libblas=3.9.0=38_hf2e6a31_mkl + - libbrotlicommon=1.2.0=hc82b238_0 + - libbrotlidec=1.2.0=h431afc6_0 + - libbrotlienc=1.2.0=ha521d6b_0 + - libcblas=3.9.0=38_h2a3cdd5_mkl + - libcurl=8.17.0=h43ecb02_0 + - libdeflate=1.25=h51727cc_0 - libexpat=2.7.1=hac47afa_0 - - libffi=3.4.6=h537db12_1 + - libffi=3.5.2=h52bdfb6_0 - libfreetype=2.14.1=h57928b3_0 - libfreetype6=2.14.1=hdbac1cb_0 - - libgcc=15.1.0=h1383e82_5 - - libgomp=15.1.0=h1383e82_5 + - libgcc=15.2.0=h1383e82_7 + - libgomp=15.2.0=h1383e82_7 - libhwloc=2.12.1=default_h64bd3f2_1002 - - libhwy=1.3.0=h47aaa27_0 + - libhwy=1.3.0=ha71e874_1 - libiconv=1.18=hc1393d2_2 - - libjpeg-turbo=3.1.0=h2466b09_0 - - libjxl=0.11.1=hb7713f0_4 - - liblapack=3.9.0=35_hf9ab0e9_mkl + - libjpeg-turbo=3.1.2=hfd05255_0 + - libjxl=0.11.1=hac9b6f3_5 + - liblapack=3.9.0=38_hf9ab0e9_mkl - liblzma=5.8.1=h2466b09_2 - libpng=1.6.50=h7351971_1 - - libsqlite=3.50.4=hf5d6505_0 + - libsqlite=3.51.0=hf5d6505_0 - libssh2=1.11.1=h9aa295b_0 - - libtiff=4.7.0=h550210a_6 + - libtiff=4.7.1=h8f73337_1 - libwebp-base=1.6.0=h4d5522a_0 - - libwinpthread=12.0.0.r4.gg4f2fc60ca=h57928b3_9 + - libwinpthread=12.0.0.r4.gg4f2fc60ca=h57928b3_10 - libxcb=1.17.0=h0e4246c_0 - - libxml2=2.15.0=ha29bfb0_0 - - libxml2-16=2.15.0=h06f855e_0 + - libxml2=2.15.1=h5d26750_0 + - libxml2-16=2.15.1=h692994f_0 - libzlib=1.3.1=h2466b09_2 - libzopfli=1.0.3=h0e60522_0 - - llvm-openmp=20.1.8=hfa2b4ca_2 + - llvm-openmp=21.1.5=hfa2b4ca_0 - lz4-c=1.10.0=h2466b09_1 - - mccabe=0.7.0=pyhd8ed1ab_1 - - mkl=2024.2.2=h57928b3_16 + - mkl=2025.3.0=hac47afa_454 - networkx=3.5=pyhe01879c_0 - numpy=1.26.4=py311h0b4df5a_0 - - openjpeg=2.5.3=h24db6dd_1 - - openssl=3.5.2=h725018a_0 + - openjpeg=2.5.4=h24db6dd_0 + - openssl=3.5.4=h725018a_0 - packaging=25.0=pyh29332c3_1 - pillow=10.3.0=py311h5592be9_1 - - pip=25.2=pyh8b19718_0 - - platformdirs=4.4.0=pyhcf101f3_0 + - pip=25.3=pyh8b19718_0 - pthread-stubs=0.4=h0e40799_1002 - - pydantic=2.11.9=pyh3cfb1c2_0 - - pydantic-core=2.33.2=py311hc4022dc_0 - - pylint=3.3.8=pyhe01879c_0 - - python=3.11.13=h3f84c4b_0_cpython + - pydantic=2.12.4=pyh3cfb1c2_0 + - pydantic-core=2.41.5=py311hf51aa87_0 + - python=3.11.14=h0159041_2_cpython - python_abi=3.11=8_cp311 - - pywavelets=1.9.0=py311h17033d2_1 + - pywavelets=1.9.0=py311h17033d2_2 - rav1e=0.7.1=ha073cba_3 - scikit-image=0.25.2=py311h11fd7f3_2 - scipy=1.14.1=py311hf16d85f_2 - setuptools=80.9.0=pyhff2d567_0 - snappy=1.2.2=h7fa0ca8_0 - svt-av1=3.1.2=hac47afa_0 - - tbb=2021.13.0=h18a62a1_3 - - tifffile=2025.9.9=pyhd8ed1ab_0 + - tbb=2022.3.0=hd094cb3_1 + - tifffile=2025.10.16=pyhd8ed1ab_0 - tk=8.6.13=h2c6b04d_2 - - tomli=2.2.1=pyhe01879c_2 - - tomlkit=0.13.3=pyha770c72_0 - tqdm=4.67.1=pyhd8ed1ab_1 - typing-extensions=4.15.0=h396c80c_0 - - typing-inspection=0.4.1=pyhd8ed1ab_0 + - typing-inspection=0.4.2=pyhd8ed1ab_0 - typing_extensions=4.15.0=pyhcf101f3_0 - tzdata=2025b=h78e105d_0 - ucrt=10.0.26100.0=h57928b3_0 - - vc=14.3=h41ae7f8_31 - - vc14_runtime=14.44.35208=h818238b_31 - - vcomp14=14.44.35208=h818238b_31 - - vs2015_runtime=14.44.35208=h38c0c73_31 + - vc=14.3=h2b53caa_32 + - vc14_runtime=14.44.35208=h818238b_32 + - vcomp14=14.44.35208=h818238b_32 + - vs2015_runtime=14.44.35208=h38c0c73_32 - wheel=0.45.1=pyhd8ed1ab_1 - xorg-libxau=1.0.12=h0e40799_0 - xorg-libxdmcp=1.1.5=h0e40799_0 - zfp=1.0.1=h2f0f97f_3 - zipp=3.23.0=pyhd8ed1ab_0 - - zlib-ng=2.2.5=h1608b31_0 + - zlib-ng=2.2.5=h32d8bfd_0 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@a6627f0a6e663e9c3f0e9874f401a34ab8990488 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@8f4cb4c0ebfb6ce25b3be6c83746d184f47a5f67 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@80c46588d47b70a1dd26aef06ccfa24bc1585502 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@8f630a84b2b9f2b7632f895e1521d8d61c04e80e 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 ee0095e..153a66c 100644 --- a/environments/py-3.12-linux-64-dev.conda.lock.yml +++ b/environments/py-3.12-linux-64-dev.conda.lock.yml @@ -11,23 +11,23 @@ dependencies: - alabaster=1.0.0=pyhd8ed1ab_1 - annotated-types=0.7.0=pyhd8ed1ab_1 - aom=3.9.1=hac33072_0 - - astroid=3.3.11=py312h7900ff3_1 + - astroid=4.0.2=py312h7900ff3_0 - babel=2.17.0=pyhd8ed1ab_0 - blosc=1.21.6=he440d0b_1 - - brotli-python=1.1.0=py312h1289d80_4 - - brunsli=0.1=he3183e4_1 + - brotli-python=1.2.0=py312h67db365_0 + - brunsli=0.1=hd1e3526_2 - bzip2=1.0.8=hda65f42_8 - c-ares=1.34.5=hb9d3cd8_0 - - c-blosc2=2.21.2=h4cfbee9_0 - - ca-certificates=2025.8.3=hbd8a1cb_0 + - c-blosc2=2.22.0=h4cfbee9_0 + - ca-certificates=2025.10.5=hbd8a1cb_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2025.8.3=pyhd8ed1ab_0 - - cffi=1.17.1=py312h35888ee_1 + - certifi=2025.10.5=pyhd8ed1ab_0 + - cffi=2.0.0=py312h460c074_1 - charls=2.4.2=h59595ed_0 - - charset-normalizer=3.4.3=pyhd8ed1ab_0 + - charset-normalizer=3.4.4=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - - coverage=7.10.6=py312h8a5da7c_1 + - coverage=7.11.3=py312h8a5da7c_0 - dav1d=1.2.1=hd590300_0 - dill=0.4.0=pyhd8ed1ab_0 - docutils=0.21.2=pyhd8ed1ab_1 @@ -35,92 +35,93 @@ dependencies: - freetype=2.14.1=ha770c72_0 - giflib=5.2.2=hd590300_0 - h2=4.3.0=pyhcf101f3_0 - - h5py=3.14.0=nompi_py312ha4f8f14_101 + - h5py=3.15.1=nompi_py312ha4f8f14_100 - hdf5=1.14.6=nompi_h6e4c0c1_103 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - - idna=3.10=pyhd8ed1ab_1 - - imagecodecs=2025.8.2=py312h4ecb025_4 + - icu=75.1=he02047a_0 + - idna=3.11=pyhd8ed1ab_0 + - imagecodecs=2025.8.2=py312ha08ed9d_7 - imageio=2.37.0=pyhfb79c49_0 - imagesize=1.4.1=pyhd8ed1ab_0 - importlib-metadata=8.7.0=pyhe01879c_1 - - iniconfig=2.0.0=pyhd8ed1ab_1 - - isort=6.0.1=pyhd8ed1ab_1 + - iniconfig=2.3.0=pyhd8ed1ab_0 + - isort=7.0.0=pyhd8ed1ab_0 - jinja2=3.1.6=pyhd8ed1ab_0 - jxrlib=1.1=hd590300_3 - keyutils=1.6.3=hb9d3cd8_0 - krb5=1.21.3=h659f571_0 - lazy-loader=0.4=pyhd8ed1ab_2 - lcms2=2.17=h717163a_0 - - ld_impl_linux-64=2.44=h1423503_1 + - ld_impl_linux-64=2.44=h1aa0949_5 - lerc=4.0.0=h0aef613_1 - libaec=1.1.4=h3f801dc_0 - libavif16=1.3.0=h6395336_2 - - libblas=3.9.0=35_h4a7cf45_openblas - - libbrotlicommon=1.1.0=hb03c661_4 - - libbrotlidec=1.1.0=hb03c661_4 - - libbrotlienc=1.1.0=hb03c661_4 - - libcblas=3.9.0=35_h0358290_openblas - - libcurl=8.14.1=h332b0f4_0 - - libdeflate=1.24=h86f0d12_0 + - libblas=3.9.0=38_h4a7cf45_openblas + - libbrotlicommon=1.2.0=h09219d5_0 + - libbrotlidec=1.2.0=hd53d788_0 + - libbrotlienc=1.2.0=h02bd7ab_0 + - libcblas=3.9.0=38_h0358290_openblas + - libcurl=8.17.0=h4e3cde8_0 + - libdeflate=1.25=h17f619e_0 - libedit=3.1.20250104=pl5321h7949ede_0 - libev=4.33=hd590300_2 - libexpat=2.7.1=hecca717_0 - - libffi=3.4.6=h2dba641_1 + - libffi=3.5.2=h9ec8514_0 - libfreetype=2.14.1=ha770c72_0 - libfreetype6=2.14.1=h73754d4_0 - - libgcc=15.1.0=h767d61c_5 - - libgcc-ng=15.1.0=h69a702a_5 - - libgfortran=15.1.0=h69a702a_5 - - libgfortran5=15.1.0=hcea5267_5 - - libgomp=15.1.0=h767d61c_5 - - libhwy=1.3.0=h4c17acf_0 - - libjpeg-turbo=3.1.0=hb9d3cd8_0 - - libjxl=0.11.1=h6cb5226_4 - - liblapack=3.9.0=35_h47877c9_openblas + - libgcc=15.2.0=h767d61c_7 + - libgcc-ng=15.2.0=h69a702a_7 + - libgfortran=15.2.0=h69a702a_7 + - libgfortran5=15.2.0=hcd61629_7 + - libgomp=15.2.0=h767d61c_7 + - libhwy=1.3.0=h4c17acf_1 + - libjpeg-turbo=3.1.2=hb03c661_0 + - libjxl=0.11.1=hf08fa70_5 + - liblapack=3.9.0=38_h47877c9_openblas - liblzma=5.8.1=hb9d3cd8_2 - libnghttp2=1.67.0=had1ee68_0 - libnsl=2.0.1=hb9d3cd8_1 - - libopenblas=0.3.30=pthreads_h94d23a6_2 + - libopenblas=0.3.30=pthreads_h94d23a6_3 - libpng=1.6.50=h421ea60_1 - - libsqlite=3.50.4=h0c1763c_0 + - libsqlite=3.51.0=hee844dc_0 - libssh2=1.11.1=hcf80075_0 - - libstdcxx=15.1.0=h8f9b012_5 - - libstdcxx-ng=15.1.0=h4852527_5 - - libtiff=4.7.0=h8261f1e_6 - - libuuid=2.41.1=he9a06e4_0 + - libstdcxx=15.2.0=h8f9b012_7 + - libstdcxx-ng=15.2.0=h4852527_7 + - libtiff=4.7.1=h9d88235_1 + - libuuid=2.41.2=he9a06e4_0 - libwebp-base=1.6.0=hd42ef1d_0 - libxcb=1.17.0=h8a09558_0 - libxcrypt=4.4.36=hd590300_1 - libzlib=1.3.1=hb9d3cd8_2 - libzopfli=1.0.3=h9c3ff4c_0 - lz4-c=1.10.0=h5888daf_1 - - markupsafe=3.0.2=py312h178313f_1 + - markupsafe=3.0.3=py312h8a5da7c_0 - mccabe=0.7.0=pyhd8ed1ab_1 - ncurses=6.5=h2d0b736_3 - networkx=3.5=pyhe01879c_0 - numpy=1.26.4=py312heda63a1_0 - - openjpeg=2.5.3=h55fea9a_1 - - openssl=3.5.2=h26f9b46_0 + - openjpeg=2.5.4=h55fea9a_0 + - openssl=3.5.4=h26f9b46_0 - packaging=25.0=pyh29332c3_1 - pillow=10.3.0=py312h287a98d_1 - - pip=25.2=pyh8b19718_0 - - platformdirs=4.4.0=pyhcf101f3_0 + - pip=25.3=pyh8b19718_0 + - platformdirs=4.5.0=pyhcf101f3_0 - pluggy=1.6.0=pyhd8ed1ab_0 - pthread-stubs=0.4=hb9d3cd8_1002 - pycparser=2.22=pyh29332c3_1 - - pydantic=2.11.9=pyh3cfb1c2_0 - - pydantic-core=2.33.2=py312h680f630_0 + - pydantic=2.12.4=pyh3cfb1c2_0 + - pydantic-core=2.41.5=py312h868fb18_0 - pygments=2.19.2=pyhd8ed1ab_0 - - pylint=3.3.8=pyhe01879c_0 + - pylint=4.0.2=pyhcf101f3_0 - pysocks=1.7.1=pyha55dd90_7 - - pytest=8.4.2=pyhd8ed1ab_0 + - pytest=9.0.0=pyhcf101f3_0 - pytest-cov=7.0.0=pyhcf101f3_1 - - python=3.12.11=h9e4cc4f_0_cpython + - python=3.12.12=hd63d673_1_cpython - python_abi=3.12=8_cp312 - pytz=2025.2=pyhd8ed1ab_0 - - pywavelets=1.9.0=py312h4f23490_1 - - pyyaml=6.0.2=py312h178313f_2 + - pywavelets=1.9.0=py312h4f23490_2 + - pyyaml=6.0.3=py312h8a5da7c_0 - rav1e=0.7.1=h8fae777_3 - readline=8.2=h8c095d6_2 - requests=2.32.5=pyhd8ed1ab_0 @@ -130,8 +131,8 @@ dependencies: - setuptools=80.9.0=pyhff2d567_0 - snappy=1.2.2=h03e3b7b_0 - snowballstemmer=3.0.1=pyhd8ed1ab_0 - - sphinx=8.3.0=pyhd8ed1ab_0 - - sphinx-autodoc-typehints=3.2.0=pyhd8ed1ab_0 + - sphinx=8.2.3=pyhd8ed1ab_0 + - sphinx-autodoc-typehints=3.5.2=pyhd8ed1ab_0 - sphinx-rtd-theme=3.0.2=hd8ed1ab_0 - sphinx_rtd_theme=3.0.2=pyha770c72_0 - sphinxcontrib-applehelp=2.0.0=pyhd8ed1ab_1 @@ -142,13 +143,13 @@ dependencies: - sphinxcontrib-qthelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_1 - svt-av1=3.1.2=hecca717_0 - - tifffile=2025.9.9=pyhd8ed1ab_0 + - tifffile=2025.10.16=pyhd8ed1ab_0 - tk=8.6.13=noxft_hd72426e_102 - - tomli=2.2.1=pyhe01879c_2 + - tomli=2.3.0=pyhcf101f3_0 - tomlkit=0.13.3=pyha770c72_0 - tqdm=4.67.1=pyhd8ed1ab_1 - typing-extensions=4.15.0=h396c80c_0 - - typing-inspection=0.4.1=pyhd8ed1ab_0 + - typing-inspection=0.4.2=pyhd8ed1ab_0 - typing_extensions=4.15.0=pyhcf101f3_0 - tzdata=2025b=h78e105d_0 - urllib3=2.5.0=pyhd8ed1ab_0 @@ -159,11 +160,11 @@ dependencies: - zfp=1.0.1=h909a3a2_3 - zipp=3.23.0=pyhd8ed1ab_0 - zlib-ng=2.2.5=hde8ca8f_0 - - zstandard=0.25.0=py312h5253ce2_0 + - zstandard=0.25.0=py312h5253ce2_1 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@a6627f0a6e663e9c3f0e9874f401a34ab8990488 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@8f4cb4c0ebfb6ce25b3be6c83746d184f47a5f67 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@80c46588d47b70a1dd26aef06ccfa24bc1585502 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@8f630a84b2b9f2b7632f895e1521d8d61c04e80e 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 2bed7f1..eef47d0 100644 --- a/environments/py-3.12-linux-64.conda.lock.yml +++ b/environments/py-3.12-linux-64.conda.lock.yml @@ -10,92 +10,87 @@ dependencies: - _openmp_mutex=4.5=2_gnu - annotated-types=0.7.0=pyhd8ed1ab_1 - aom=3.9.1=hac33072_0 - - astroid=3.3.11=py312h7900ff3_1 - blosc=1.21.6=he440d0b_1 - - brunsli=0.1=he3183e4_1 + - brunsli=0.1=hd1e3526_2 - bzip2=1.0.8=hda65f42_8 - c-ares=1.34.5=hb9d3cd8_0 - - c-blosc2=2.21.2=h4cfbee9_0 - - ca-certificates=2025.8.3=hbd8a1cb_0 + - c-blosc2=2.22.0=h4cfbee9_0 + - ca-certificates=2025.10.5=hbd8a1cb_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - charls=2.4.2=h59595ed_0 - colorama=0.4.6=pyhd8ed1ab_1 - dav1d=1.2.1=hd590300_0 - - dill=0.4.0=pyhd8ed1ab_0 - freetype=2.14.1=ha770c72_0 - giflib=5.2.2=hd590300_0 - - h5py=3.14.0=nompi_py312ha4f8f14_101 + - h5py=3.15.1=nompi_py312ha4f8f14_100 - hdf5=1.14.6=nompi_h6e4c0c1_103 - - imagecodecs=2025.8.2=py312h4ecb025_4 + - icu=75.1=he02047a_0 + - imagecodecs=2025.8.2=py312ha08ed9d_7 - imageio=2.37.0=pyhfb79c49_0 - importlib-metadata=8.7.0=pyhe01879c_1 - - isort=6.0.1=pyhd8ed1ab_1 - jxrlib=1.1=hd590300_3 - keyutils=1.6.3=hb9d3cd8_0 - krb5=1.21.3=h659f571_0 - lazy-loader=0.4=pyhd8ed1ab_2 - lcms2=2.17=h717163a_0 - - ld_impl_linux-64=2.44=h1423503_1 + - ld_impl_linux-64=2.44=h1aa0949_5 - lerc=4.0.0=h0aef613_1 - libaec=1.1.4=h3f801dc_0 - libavif16=1.3.0=h6395336_2 - - libblas=3.9.0=35_h4a7cf45_openblas - - libbrotlicommon=1.1.0=hb03c661_4 - - libbrotlidec=1.1.0=hb03c661_4 - - libbrotlienc=1.1.0=hb03c661_4 - - libcblas=3.9.0=35_h0358290_openblas - - libcurl=8.14.1=h332b0f4_0 - - libdeflate=1.24=h86f0d12_0 + - libblas=3.9.0=38_h4a7cf45_openblas + - libbrotlicommon=1.2.0=h09219d5_0 + - libbrotlidec=1.2.0=hd53d788_0 + - libbrotlienc=1.2.0=h02bd7ab_0 + - libcblas=3.9.0=38_h0358290_openblas + - libcurl=8.17.0=h4e3cde8_0 + - libdeflate=1.25=h17f619e_0 - libedit=3.1.20250104=pl5321h7949ede_0 - libev=4.33=hd590300_2 - libexpat=2.7.1=hecca717_0 - - libffi=3.4.6=h2dba641_1 + - libffi=3.5.2=h9ec8514_0 - libfreetype=2.14.1=ha770c72_0 - libfreetype6=2.14.1=h73754d4_0 - - libgcc=15.1.0=h767d61c_5 - - libgcc-ng=15.1.0=h69a702a_5 - - libgfortran=15.1.0=h69a702a_5 - - libgfortran5=15.1.0=hcea5267_5 - - libgomp=15.1.0=h767d61c_5 - - libhwy=1.3.0=h4c17acf_0 - - libjpeg-turbo=3.1.0=hb9d3cd8_0 - - libjxl=0.11.1=h6cb5226_4 - - liblapack=3.9.0=35_h47877c9_openblas + - libgcc=15.2.0=h767d61c_7 + - libgcc-ng=15.2.0=h69a702a_7 + - libgfortran=15.2.0=h69a702a_7 + - libgfortran5=15.2.0=hcd61629_7 + - libgomp=15.2.0=h767d61c_7 + - libhwy=1.3.0=h4c17acf_1 + - libjpeg-turbo=3.1.2=hb03c661_0 + - libjxl=0.11.1=hf08fa70_5 + - liblapack=3.9.0=38_h47877c9_openblas - liblzma=5.8.1=hb9d3cd8_2 - libnghttp2=1.67.0=had1ee68_0 - libnsl=2.0.1=hb9d3cd8_1 - - libopenblas=0.3.30=pthreads_h94d23a6_2 + - libopenblas=0.3.30=pthreads_h94d23a6_3 - libpng=1.6.50=h421ea60_1 - - libsqlite=3.50.4=h0c1763c_0 + - libsqlite=3.51.0=hee844dc_0 - libssh2=1.11.1=hcf80075_0 - - libstdcxx=15.1.0=h8f9b012_5 - - libstdcxx-ng=15.1.0=h4852527_5 - - libtiff=4.7.0=h8261f1e_6 - - libuuid=2.41.1=he9a06e4_0 + - libstdcxx=15.2.0=h8f9b012_7 + - libstdcxx-ng=15.2.0=h4852527_7 + - libtiff=4.7.1=h9d88235_1 + - libuuid=2.41.2=he9a06e4_0 - libwebp-base=1.6.0=hd42ef1d_0 - libxcb=1.17.0=h8a09558_0 - libxcrypt=4.4.36=hd590300_1 - libzlib=1.3.1=hb9d3cd8_2 - libzopfli=1.0.3=h9c3ff4c_0 - lz4-c=1.10.0=h5888daf_1 - - mccabe=0.7.0=pyhd8ed1ab_1 - ncurses=6.5=h2d0b736_3 - networkx=3.5=pyhe01879c_0 - numpy=1.26.4=py312heda63a1_0 - - openjpeg=2.5.3=h55fea9a_1 - - openssl=3.5.2=h26f9b46_0 + - openjpeg=2.5.4=h55fea9a_0 + - openssl=3.5.4=h26f9b46_0 - packaging=25.0=pyh29332c3_1 - pillow=10.3.0=py312h287a98d_1 - - pip=25.2=pyh8b19718_0 - - platformdirs=4.4.0=pyhcf101f3_0 + - pip=25.3=pyh8b19718_0 - pthread-stubs=0.4=hb9d3cd8_1002 - - pydantic=2.11.9=pyh3cfb1c2_0 - - pydantic-core=2.33.2=py312h680f630_0 - - pylint=3.3.8=pyhe01879c_0 - - python=3.12.11=h9e4cc4f_0_cpython + - pydantic=2.12.4=pyh3cfb1c2_0 + - pydantic-core=2.41.5=py312h868fb18_0 + - python=3.12.12=hd63d673_1_cpython - python_abi=3.12=8_cp312 - - pywavelets=1.9.0=py312h4f23490_1 + - pywavelets=1.9.0=py312h4f23490_2 - rav1e=0.7.1=h8fae777_3 - readline=8.2=h8c095d6_2 - scikit-image=0.25.2=py312hf79963d_2 @@ -103,13 +98,11 @@ dependencies: - setuptools=80.9.0=pyhff2d567_0 - snappy=1.2.2=h03e3b7b_0 - svt-av1=3.1.2=hecca717_0 - - tifffile=2025.9.9=pyhd8ed1ab_0 + - tifffile=2025.10.16=pyhd8ed1ab_0 - tk=8.6.13=noxft_hd72426e_102 - - tomli=2.2.1=pyhe01879c_2 - - tomlkit=0.13.3=pyha770c72_0 - tqdm=4.67.1=pyhd8ed1ab_1 - typing-extensions=4.15.0=h396c80c_0 - - typing-inspection=0.4.1=pyhd8ed1ab_0 + - typing-inspection=0.4.2=pyhd8ed1ab_0 - typing_extensions=4.15.0=pyhcf101f3_0 - tzdata=2025b=h78e105d_0 - wheel=0.45.1=pyhd8ed1ab_1 @@ -120,8 +113,8 @@ dependencies: - zlib-ng=2.2.5=hde8ca8f_0 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@a6627f0a6e663e9c3f0e9874f401a34ab8990488 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@8f4cb4c0ebfb6ce25b3be6c83746d184f47a5f67 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@80c46588d47b70a1dd26aef06ccfa24bc1585502 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@8f630a84b2b9f2b7632f895e1521d8d61c04e80e 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 b6a11c2..c01ad06 100644 --- a/environments/py-3.12-win-64-dev.conda.lock.yml +++ b/environments/py-3.12-win-64-dev.conda.lock.yml @@ -11,21 +11,21 @@ dependencies: - alabaster=1.0.0=pyhd8ed1ab_1 - annotated-types=0.7.0=pyhd8ed1ab_1 - aom=3.9.1=he0c23c2_0 - - astroid=3.3.11=py312h2e8e312_1 + - astroid=4.0.2=py312h2e8e312_0 - babel=2.17.0=pyhd8ed1ab_0 - blosc=1.21.6=hfd34d9b_1 - - brotli-python=1.1.0=py312hbb81ca0_4 + - brotli-python=1.2.0=py312h9d5906e_0 - bzip2=1.0.8=h0ad9c76_8 - - c-blosc2=2.21.2=h3cf07e4_0 - - ca-certificates=2025.8.3=h4c7d964_0 + - c-blosc2=2.22.0=h3cf07e4_0 + - ca-certificates=2025.10.5=h4c7d964_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2025.8.3=pyhd8ed1ab_0 - - cffi=1.17.1=py312he06e257_1 + - certifi=2025.10.5=pyhd8ed1ab_0 + - cffi=2.0.0=py312he06e257_1 - charls=2.4.2=h1537add_0 - - charset-normalizer=3.4.3=pyhd8ed1ab_0 + - charset-normalizer=3.4.4=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - - coverage=7.10.6=py312h05f76fc_1 + - coverage=7.11.3=py312h05f76fc_0 - dav1d=1.2.1=hcfcfb64_0 - dill=0.4.0=pyhd8ed1ab_0 - docutils=0.21.2=pyhd8ed1ab_1 @@ -33,18 +33,17 @@ dependencies: - freetype=2.14.1=h57928b3_0 - giflib=5.2.2=h64bf75a_0 - h2=4.3.0=pyhcf101f3_0 - - h5py=3.14.0=nompi_py312h03cd2ba_101 + - h5py=3.15.1=nompi_py312h03cd2ba_100 - hdf5=1.14.6=nompi_he30205f_103 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - - icu=75.1=he0c23c2_0 - - idna=3.10=pyhd8ed1ab_1 - - imagecodecs=2025.8.2=py312h424859f_4 + - idna=3.11=pyhd8ed1ab_0 + - imagecodecs=2025.8.2=py312hf2cf878_7 - imageio=2.37.0=pyhfb79c49_0 - imagesize=1.4.1=pyhd8ed1ab_0 - importlib-metadata=8.7.0=pyhe01879c_1 - - iniconfig=2.0.0=pyhd8ed1ab_1 - - isort=6.0.1=pyhd8ed1ab_1 + - iniconfig=2.3.0=pyhd8ed1ab_0 + - isort=7.0.0=pyhd8ed1ab_0 - jinja2=3.1.6=pyhd8ed1ab_0 - jxrlib=1.1=hcfcfb64_3 - krb5=1.21.3=hdf4eb48_0 @@ -53,65 +52,65 @@ dependencies: - lerc=4.0.0=h6470a55_1 - libaec=1.1.4=h20038f6_0 - libavif16=1.3.0=he916da2_2 - - libblas=3.9.0=35_h5709861_mkl - - libbrotlicommon=1.1.0=hfd05255_4 - - libbrotlidec=1.1.0=hfd05255_4 - - libbrotlienc=1.1.0=hfd05255_4 - - libcblas=3.9.0=35_h2a3cdd5_mkl - - libcurl=8.14.1=h88aaa65_0 - - libdeflate=1.24=h76ddb4d_0 + - libblas=3.9.0=38_hf2e6a31_mkl + - libbrotlicommon=1.2.0=hc82b238_0 + - libbrotlidec=1.2.0=h431afc6_0 + - libbrotlienc=1.2.0=ha521d6b_0 + - libcblas=3.9.0=38_h2a3cdd5_mkl + - libcurl=8.17.0=h43ecb02_0 + - libdeflate=1.25=h51727cc_0 - libexpat=2.7.1=hac47afa_0 - - libffi=3.4.6=h537db12_1 + - libffi=3.5.2=h52bdfb6_0 - libfreetype=2.14.1=h57928b3_0 - libfreetype6=2.14.1=hdbac1cb_0 - - libgcc=15.1.0=h1383e82_5 - - libgomp=15.1.0=h1383e82_5 + - libgcc=15.2.0=h1383e82_7 + - libgomp=15.2.0=h1383e82_7 - libhwloc=2.12.1=default_h64bd3f2_1002 - - libhwy=1.3.0=h47aaa27_0 + - libhwy=1.3.0=ha71e874_1 - libiconv=1.18=hc1393d2_2 - - libjpeg-turbo=3.1.0=h2466b09_0 - - libjxl=0.11.1=hb7713f0_4 - - liblapack=3.9.0=35_hf9ab0e9_mkl + - libjpeg-turbo=3.1.2=hfd05255_0 + - libjxl=0.11.1=hac9b6f3_5 + - liblapack=3.9.0=38_hf9ab0e9_mkl - liblzma=5.8.1=h2466b09_2 - libpng=1.6.50=h7351971_1 - - libsqlite=3.50.4=hf5d6505_0 + - libsqlite=3.51.0=hf5d6505_0 - libssh2=1.11.1=h9aa295b_0 - - libtiff=4.7.0=h550210a_6 + - libtiff=4.7.1=h8f73337_1 - libwebp-base=1.6.0=h4d5522a_0 - - libwinpthread=12.0.0.r4.gg4f2fc60ca=h57928b3_9 + - libwinpthread=12.0.0.r4.gg4f2fc60ca=h57928b3_10 - libxcb=1.17.0=h0e4246c_0 - - libxml2=2.15.0=ha29bfb0_0 - - libxml2-16=2.15.0=h06f855e_0 + - libxml2=2.15.1=h5d26750_0 + - libxml2-16=2.15.1=h692994f_0 - libzlib=1.3.1=h2466b09_2 - libzopfli=1.0.3=h0e60522_0 - - llvm-openmp=20.1.8=hfa2b4ca_2 + - llvm-openmp=21.1.5=hfa2b4ca_0 - lz4-c=1.10.0=h2466b09_1 - - markupsafe=3.0.2=py312h31fea79_1 + - markupsafe=3.0.3=py312h05f76fc_0 - mccabe=0.7.0=pyhd8ed1ab_1 - - mkl=2024.2.2=h57928b3_16 + - mkl=2025.3.0=hac47afa_454 - networkx=3.5=pyhe01879c_0 - numpy=1.26.4=py312h8753938_0 - - openjpeg=2.5.3=h24db6dd_1 - - openssl=3.5.2=h725018a_0 + - openjpeg=2.5.4=h24db6dd_0 + - openssl=3.5.4=h725018a_0 - packaging=25.0=pyh29332c3_1 - pillow=10.3.0=py312h381445a_1 - - pip=25.2=pyh8b19718_0 - - platformdirs=4.4.0=pyhcf101f3_0 + - pip=25.3=pyh8b19718_0 + - platformdirs=4.5.0=pyhcf101f3_0 - pluggy=1.6.0=pyhd8ed1ab_0 - pthread-stubs=0.4=h0e40799_1002 - pycparser=2.22=pyh29332c3_1 - - pydantic=2.11.9=pyh3cfb1c2_0 - - pydantic-core=2.33.2=py312h8422cdd_0 + - pydantic=2.12.4=pyh3cfb1c2_0 + - pydantic-core=2.41.5=py312hdabe01f_0 - pygments=2.19.2=pyhd8ed1ab_0 - - pylint=3.3.8=pyhe01879c_0 + - pylint=4.0.2=pyhcf101f3_0 - pysocks=1.7.1=pyh09c184e_7 - - pytest=8.4.2=pyhd8ed1ab_0 + - pytest=9.0.0=pyhcf101f3_0 - pytest-cov=7.0.0=pyhcf101f3_1 - - python=3.12.11=h3f84c4b_0_cpython + - python=3.12.12=h0159041_1_cpython - python_abi=3.12=8_cp312 - pytz=2025.2=pyhd8ed1ab_0 - - pywavelets=1.9.0=py312h196c9fc_1 - - pyyaml=6.0.2=py312h31fea79_2 + - pywavelets=1.9.0=py312h196c9fc_2 + - pyyaml=6.0.3=py312h05f76fc_0 - rav1e=0.7.1=ha073cba_3 - requests=2.32.5=pyhd8ed1ab_0 - roman-numerals-py=3.1.0=pyhd8ed1ab_0 @@ -120,8 +119,8 @@ dependencies: - setuptools=80.9.0=pyhff2d567_0 - snappy=1.2.2=h7fa0ca8_0 - snowballstemmer=3.0.1=pyhd8ed1ab_0 - - sphinx=8.3.0=pyhd8ed1ab_0 - - sphinx-autodoc-typehints=3.2.0=pyhd8ed1ab_0 + - sphinx=8.2.3=pyhd8ed1ab_0 + - sphinx-autodoc-typehints=3.5.2=pyhd8ed1ab_0 - sphinx-rtd-theme=3.0.2=hd8ed1ab_0 - sphinx_rtd_theme=3.0.2=pyha770c72_0 - sphinxcontrib-applehelp=2.0.0=pyhd8ed1ab_1 @@ -132,22 +131,22 @@ dependencies: - sphinxcontrib-qthelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_1 - svt-av1=3.1.2=hac47afa_0 - - tbb=2021.13.0=h18a62a1_3 - - tifffile=2025.9.9=pyhd8ed1ab_0 + - tbb=2022.3.0=hd094cb3_1 + - tifffile=2025.10.16=pyhd8ed1ab_0 - tk=8.6.13=h2c6b04d_2 - - tomli=2.2.1=pyhe01879c_2 + - tomli=2.3.0=pyhcf101f3_0 - tomlkit=0.13.3=pyha770c72_0 - tqdm=4.67.1=pyhd8ed1ab_1 - typing-extensions=4.15.0=h396c80c_0 - - typing-inspection=0.4.1=pyhd8ed1ab_0 + - typing-inspection=0.4.2=pyhd8ed1ab_0 - typing_extensions=4.15.0=pyhcf101f3_0 - tzdata=2025b=h78e105d_0 - ucrt=10.0.26100.0=h57928b3_0 - urllib3=2.5.0=pyhd8ed1ab_0 - - vc=14.3=h41ae7f8_31 - - vc14_runtime=14.44.35208=h818238b_31 - - vcomp14=14.44.35208=h818238b_31 - - vs2015_runtime=14.44.35208=h38c0c73_31 + - vc=14.3=h2b53caa_32 + - vc14_runtime=14.44.35208=h818238b_32 + - vcomp14=14.44.35208=h818238b_32 + - vs2015_runtime=14.44.35208=h38c0c73_32 - wheel=0.45.1=pyhd8ed1ab_1 - win_inet_pton=1.1.0=pyh7428d3b_8 - xorg-libxau=1.0.12=h0e40799_0 @@ -155,12 +154,12 @@ dependencies: - yaml=0.2.5=h6a83c73_3 - zfp=1.0.1=h2f0f97f_3 - zipp=3.23.0=pyhd8ed1ab_0 - - zlib-ng=2.2.5=h1608b31_0 - - zstandard=0.25.0=py312he5662c2_0 + - zlib-ng=2.2.5=h32d8bfd_0 + - zstandard=0.25.0=py312he5662c2_1 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@a6627f0a6e663e9c3f0e9874f401a34ab8990488 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@8f4cb4c0ebfb6ce25b3be6c83746d184f47a5f67 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@80c46588d47b70a1dd26aef06ccfa24bc1585502 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@8f630a84b2b9f2b7632f895e1521d8d61c04e80e 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 889a244..f64237b 100644 --- a/environments/py-3.12-win-64.conda.lock.yml +++ b/environments/py-3.12-win-64.conda.lock.yml @@ -10,26 +10,22 @@ dependencies: - _openmp_mutex=4.5=2_gnu - annotated-types=0.7.0=pyhd8ed1ab_1 - aom=3.9.1=he0c23c2_0 - - astroid=3.3.11=py312h2e8e312_1 - blosc=1.21.6=hfd34d9b_1 - bzip2=1.0.8=h0ad9c76_8 - - c-blosc2=2.21.2=h3cf07e4_0 - - ca-certificates=2025.8.3=h4c7d964_0 + - c-blosc2=2.22.0=h3cf07e4_0 + - ca-certificates=2025.10.5=h4c7d964_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - charls=2.4.2=h1537add_0 - colorama=0.4.6=pyhd8ed1ab_1 - dav1d=1.2.1=hcfcfb64_0 - - dill=0.4.0=pyhd8ed1ab_0 - freetype=2.14.1=h57928b3_0 - giflib=5.2.2=h64bf75a_0 - - h5py=3.14.0=nompi_py312h03cd2ba_101 + - h5py=3.15.1=nompi_py312h03cd2ba_100 - hdf5=1.14.6=nompi_he30205f_103 - - icu=75.1=he0c23c2_0 - - imagecodecs=2025.8.2=py312h424859f_4 + - imagecodecs=2025.8.2=py312hf2cf878_7 - imageio=2.37.0=pyhfb79c49_0 - importlib-metadata=8.7.0=pyhe01879c_1 - - isort=6.0.1=pyhd8ed1ab_1 - jxrlib=1.1=hcfcfb64_3 - krb5=1.21.3=hdf4eb48_0 - lazy-loader=0.4=pyhd8ed1ab_2 @@ -37,87 +33,82 @@ dependencies: - lerc=4.0.0=h6470a55_1 - libaec=1.1.4=h20038f6_0 - libavif16=1.3.0=he916da2_2 - - libblas=3.9.0=35_h5709861_mkl - - libbrotlicommon=1.1.0=hfd05255_4 - - libbrotlidec=1.1.0=hfd05255_4 - - libbrotlienc=1.1.0=hfd05255_4 - - libcblas=3.9.0=35_h2a3cdd5_mkl - - libcurl=8.14.1=h88aaa65_0 - - libdeflate=1.24=h76ddb4d_0 + - libblas=3.9.0=38_hf2e6a31_mkl + - libbrotlicommon=1.2.0=hc82b238_0 + - libbrotlidec=1.2.0=h431afc6_0 + - libbrotlienc=1.2.0=ha521d6b_0 + - libcblas=3.9.0=38_h2a3cdd5_mkl + - libcurl=8.17.0=h43ecb02_0 + - libdeflate=1.25=h51727cc_0 - libexpat=2.7.1=hac47afa_0 - - libffi=3.4.6=h537db12_1 + - libffi=3.5.2=h52bdfb6_0 - libfreetype=2.14.1=h57928b3_0 - libfreetype6=2.14.1=hdbac1cb_0 - - libgcc=15.1.0=h1383e82_5 - - libgomp=15.1.0=h1383e82_5 + - libgcc=15.2.0=h1383e82_7 + - libgomp=15.2.0=h1383e82_7 - libhwloc=2.12.1=default_h64bd3f2_1002 - - libhwy=1.3.0=h47aaa27_0 + - libhwy=1.3.0=ha71e874_1 - libiconv=1.18=hc1393d2_2 - - libjpeg-turbo=3.1.0=h2466b09_0 - - libjxl=0.11.1=hb7713f0_4 - - liblapack=3.9.0=35_hf9ab0e9_mkl + - libjpeg-turbo=3.1.2=hfd05255_0 + - libjxl=0.11.1=hac9b6f3_5 + - liblapack=3.9.0=38_hf9ab0e9_mkl - liblzma=5.8.1=h2466b09_2 - libpng=1.6.50=h7351971_1 - - libsqlite=3.50.4=hf5d6505_0 + - libsqlite=3.51.0=hf5d6505_0 - libssh2=1.11.1=h9aa295b_0 - - libtiff=4.7.0=h550210a_6 + - libtiff=4.7.1=h8f73337_1 - libwebp-base=1.6.0=h4d5522a_0 - - libwinpthread=12.0.0.r4.gg4f2fc60ca=h57928b3_9 + - libwinpthread=12.0.0.r4.gg4f2fc60ca=h57928b3_10 - libxcb=1.17.0=h0e4246c_0 - - libxml2=2.15.0=ha29bfb0_0 - - libxml2-16=2.15.0=h06f855e_0 + - libxml2=2.15.1=h5d26750_0 + - libxml2-16=2.15.1=h692994f_0 - libzlib=1.3.1=h2466b09_2 - libzopfli=1.0.3=h0e60522_0 - - llvm-openmp=20.1.8=hfa2b4ca_2 + - llvm-openmp=21.1.5=hfa2b4ca_0 - lz4-c=1.10.0=h2466b09_1 - - mccabe=0.7.0=pyhd8ed1ab_1 - - mkl=2024.2.2=h57928b3_16 + - mkl=2025.3.0=hac47afa_454 - networkx=3.5=pyhe01879c_0 - numpy=1.26.4=py312h8753938_0 - - openjpeg=2.5.3=h24db6dd_1 - - openssl=3.5.2=h725018a_0 + - openjpeg=2.5.4=h24db6dd_0 + - openssl=3.5.4=h725018a_0 - packaging=25.0=pyh29332c3_1 - pillow=10.3.0=py312h381445a_1 - - pip=25.2=pyh8b19718_0 - - platformdirs=4.4.0=pyhcf101f3_0 + - pip=25.3=pyh8b19718_0 - pthread-stubs=0.4=h0e40799_1002 - - pydantic=2.11.9=pyh3cfb1c2_0 - - pydantic-core=2.33.2=py312h8422cdd_0 - - pylint=3.3.8=pyhe01879c_0 - - python=3.12.11=h3f84c4b_0_cpython + - pydantic=2.12.4=pyh3cfb1c2_0 + - pydantic-core=2.41.5=py312hdabe01f_0 + - python=3.12.12=h0159041_1_cpython - python_abi=3.12=8_cp312 - - pywavelets=1.9.0=py312h196c9fc_1 + - pywavelets=1.9.0=py312h196c9fc_2 - rav1e=0.7.1=ha073cba_3 - scikit-image=0.25.2=py312hc128f0a_2 - scipy=1.14.1=py312h337df96_2 - setuptools=80.9.0=pyhff2d567_0 - snappy=1.2.2=h7fa0ca8_0 - svt-av1=3.1.2=hac47afa_0 - - tbb=2021.13.0=h18a62a1_3 - - tifffile=2025.9.9=pyhd8ed1ab_0 + - tbb=2022.3.0=hd094cb3_1 + - tifffile=2025.10.16=pyhd8ed1ab_0 - tk=8.6.13=h2c6b04d_2 - - tomli=2.2.1=pyhe01879c_2 - - tomlkit=0.13.3=pyha770c72_0 - tqdm=4.67.1=pyhd8ed1ab_1 - typing-extensions=4.15.0=h396c80c_0 - - typing-inspection=0.4.1=pyhd8ed1ab_0 + - typing-inspection=0.4.2=pyhd8ed1ab_0 - typing_extensions=4.15.0=pyhcf101f3_0 - tzdata=2025b=h78e105d_0 - ucrt=10.0.26100.0=h57928b3_0 - - vc=14.3=h41ae7f8_31 - - vc14_runtime=14.44.35208=h818238b_31 - - vcomp14=14.44.35208=h818238b_31 - - vs2015_runtime=14.44.35208=h38c0c73_31 + - vc=14.3=h2b53caa_32 + - vc14_runtime=14.44.35208=h818238b_32 + - vcomp14=14.44.35208=h818238b_32 + - vs2015_runtime=14.44.35208=h38c0c73_32 - wheel=0.45.1=pyhd8ed1ab_1 - xorg-libxau=1.0.12=h0e40799_0 - xorg-libxdmcp=1.1.5=h0e40799_0 - zfp=1.0.1=h2f0f97f_3 - zipp=3.23.0=pyhd8ed1ab_0 - - zlib-ng=2.2.5=h1608b31_0 + - zlib-ng=2.2.5=h32d8bfd_0 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@a6627f0a6e663e9c3f0e9874f401a34ab8990488 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@8f4cb4c0ebfb6ce25b3be6c83746d184f47a5f67 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@80c46588d47b70a1dd26aef06ccfa24bc1585502 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@8f630a84b2b9f2b7632f895e1521d8d61c04e80e variables: KMP_WARNINGS: 0 diff --git a/py-3.10.conda-lock.yml b/py-3.10.conda-lock.yml index 3081315..97e689c 100644 --- a/py-3.10.conda-lock.yml +++ b/py-3.10.conda-lock.yml @@ -155,33 +155,33 @@ package: category: main optional: false - name: astroid - version: 3.3.11 + version: 4.0.2 manager: conda platform: linux-64 dependencies: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* typing_extensions: '>=4' - url: https://repo.prefix.dev/conda-forge/linux-64/astroid-3.3.11-py310hff52083_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/astroid-4.0.2-py310hff52083_0.conda hash: - md5: cf84a0665b3e7ec2056ae606b4ce1378 - sha256: 223f1330a5ddb1b3b28be57f966c04603902e0bb7b22dbb4a29f1d1240ec1ed7 - category: main - optional: false + md5: b3cbed49a8ad9812baa3918bbdf6578a + sha256: 929e1993227897b735a28227ce47b88054fb1bb2fc235143f135eab865f5eb53 + category: dev + optional: true - name: astroid - version: 3.3.11 + version: 4.0.2 manager: conda platform: win-64 dependencies: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* typing_extensions: '>=4' - url: https://repo.prefix.dev/conda-forge/win-64/astroid-3.3.11-py310h5588dad_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/astroid-4.0.2-py310h5588dad_0.conda hash: - md5: 6cd63bf117fad2a1359e93bdaab4884f - sha256: 1daca67f30e02b3d1116aa512ac263e7c8ace9bba77341fb3eff7d3a930197a6 - category: main - optional: false + md5: dacd5a88a67e4b8c082ef7a7950ca85a + sha256: 64f9277151ee5dc5ada9c06ac6ad6bdd2b94bc21eeb47490e009ff097e2f7b93 + category: dev + optional: true - name: babel version: 2.17.0 manager: conda @@ -368,27 +368,27 @@ package: category: main optional: false - name: ca-certificates - version: 2025.8.3 + version: 2025.10.5 manager: conda platform: linux-64 dependencies: __unix: '' - url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.8.3-hbd8a1cb_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.10.5-hbd8a1cb_0.conda hash: - md5: 74784ee3d225fc3dca89edb635b4e5cc - sha256: 837b795a2bb39b75694ba910c13c15fa4998d4bb2a622c214a6a5174b2ae53d1 + md5: f9e5fbc24009179e8b0409624691758a + sha256: 3b5ad78b8bb61b6cdc0978a6a99f8dfb2cc789a451378d054698441005ecbdb6 category: main optional: false - name: ca-certificates - version: 2025.8.3 + version: 2025.10.5 manager: conda platform: win-64 dependencies: __win: '' - url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.8.3-h4c7d964_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.10.5-h4c7d964_0.conda hash: - md5: c9e0c0f82f6e63323827db462b40ede8 - sha256: 3b82f62baad3fd33827b01b0426e8203a2786c8f452f633740868296bcbe8485 + md5: e54200a1cd1fe33d61c9df8d3b00b743 + sha256: bfb7f9f242f441fdcd80f1199edd2ecf09acea0f2bcef6f07d7cbb1a8131a345 category: main optional: false - name: cached-property @@ -440,48 +440,48 @@ package: category: main optional: false - name: certifi - version: 2025.8.3 + version: 2025.10.5 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.8.3-pyhd8ed1ab_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.10.5-pyhd8ed1ab_0.conda hash: - md5: 11f59985f49df4620890f3e746ed7102 - sha256: a1ad5b0a2a242f439608f22a538d2175cac4444b7b3f4e2b8c090ac337aaea40 + md5: 257ae203f1d204107ba389607d375ded + sha256: 955bac31be82592093f6bc006e09822cd13daf52b28643c9a6abd38cd5f4a306 category: dev optional: true - name: certifi - version: 2025.8.3 + version: 2025.10.5 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.8.3-pyhd8ed1ab_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.10.5-pyhd8ed1ab_0.conda hash: - md5: 11f59985f49df4620890f3e746ed7102 - sha256: a1ad5b0a2a242f439608f22a538d2175cac4444b7b3f4e2b8c090ac337aaea40 + md5: 257ae203f1d204107ba389607d375ded + sha256: 955bac31be82592093f6bc006e09822cd13daf52b28643c9a6abd38cd5f4a306 category: dev optional: true - name: cffi - version: 1.17.1 + version: 2.0.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libffi: '>=3.4.6,<3.5.0a0' + libffi: '>=3.5.2,<3.6.0a0' libgcc: '>=14' pycparser: '' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://repo.prefix.dev/conda-forge/linux-64/cffi-1.17.1-py310h34a4b09_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/cffi-2.0.0-py310he7384ee_1.conda hash: - md5: 6d582e073a58a7a011716b135819b94a - sha256: a1de720b3b79f2eb51317dd14f14409022f807a59e9107f30d621f0a74293551 + md5: 803e2d778b8dcccdc014127ec5001681 + sha256: bf76ead6d59b70f3e901476a73880ac92011be63b151972d135eec55bbbe6091 category: dev optional: true - name: cffi - version: 1.17.1 + version: 2.0.0 manager: conda platform: win-64 dependencies: @@ -491,10 +491,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/cffi-1.17.1-py310h29418f3_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/cffi-2.0.0-py310h29418f3_1.conda hash: - md5: 771663d8d11b07dcb22ece2806affac0 - sha256: 9fa2705202603342fb8c5ac29a30af7c77b8582041ff2f29d6db6503ba070a0c + md5: 269ba3d69bf6569296a29425a26400df + sha256: abd04b75ee9a04a2f00dc102b4dc126f393fde58536ca4eaf1a72bb7d60dadf4 category: dev optional: true - name: charls @@ -525,27 +525,27 @@ package: category: main optional: false - name: charset-normalizer - version: 3.4.3 + version: 3.4.4 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.3-pyhd8ed1ab_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.4-pyhd8ed1ab_0.conda hash: - md5: 7e7d5ef1b9ed630e4a1c358d6bc62284 - sha256: 838d5a011f0e7422be6427becba3de743c78f3874ad2743c341accbba9bb2624 + md5: a22d1fd9bf98827e280a02875d9a007a + sha256: b32f8362e885f1b8417bac2b3da4db7323faa12d5db62b7fd6691c02d60d6f59 category: dev optional: true - name: charset-normalizer - version: 3.4.3 + version: 3.4.4 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.3-pyhd8ed1ab_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.4-pyhd8ed1ab_0.conda hash: - md5: 7e7d5ef1b9ed630e4a1c358d6bc62284 - sha256: 838d5a011f0e7422be6427becba3de743c78f3874ad2743c341accbba9bb2624 + md5: a22d1fd9bf98827e280a02875d9a007a + sha256: b32f8362e885f1b8417bac2b3da4db7323faa12d5db62b7fd6691c02d60d6f59 category: dev optional: true - name: colorama @@ -573,7 +573,7 @@ package: category: main optional: false - name: coverage - version: 7.10.6 + version: 7.11.3 manager: conda platform: linux-64 dependencies: @@ -582,14 +582,14 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* tomli: '' - url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.10.6-py310h3406613_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.11.3-py310h3406613_0.conda hash: - md5: a42ce2be914eabff4bb1674c57304967 - sha256: 917519990bf711336345ff11642853382a8a83be8dcfb4fbd5084084b4e771ca + md5: b3911836f2e88adc8d49600b8f8958c8 + sha256: c3e72cc7c8776641aacd8aea6da4f83ba0362cb67e52d56b9b0cf1800df81ea5 category: dev optional: true - name: coverage - version: 7.10.6 + version: 7.11.3 manager: conda platform: win-64 dependencies: @@ -599,10 +599,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.10.6-py310hdb0e946_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.11.3-py310hdb0e946_0.conda hash: - md5: de8d07aa9fabb48922856f9f67233726 - sha256: 636033b29ab4a1e16840ffa0a7063864776a47c6bedf5edf97c481cc8d996a90 + md5: 74d598b7eec132177038bec0e9cf2b7e + sha256: 3649a2b433b93631bd4cac0e55f89d0cbfaa0fbcfa2160818096047b2171c1ea category: dev optional: true - name: dav1d @@ -641,8 +641,8 @@ package: hash: md5: 885745570573eb6a08e021841928297a sha256: 43dca52c96fde0c4845aaff02bcc92f25e1c2e5266ddefc2eac1a3de0960a3b1 - category: main - optional: false + category: dev + optional: true - name: dill version: 0.4.0 manager: conda @@ -653,8 +653,8 @@ package: hash: md5: 885745570573eb6a08e021841928297a sha256: 43dca52c96fde0c4845aaff02bcc92f25e1c2e5266ddefc2eac1a3de0960a3b1 - category: main - optional: false + category: dev + optional: true - name: docutils version: 0.21.2 manager: conda @@ -786,7 +786,7 @@ package: category: dev optional: true - name: h5py - version: 3.14.0 + version: 3.15.1 manager: conda platform: linux-64 dependencies: @@ -797,14 +797,14 @@ package: numpy: '>=1.21,<3' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://repo.prefix.dev/conda-forge/linux-64/h5py-3.14.0-nompi_py310h4aa865e_101.conda + url: https://repo.prefix.dev/conda-forge/linux-64/h5py-3.15.1-nompi_py310h4aa865e_100.conda hash: - md5: 67774c5937389b35e4efd43d7baa923e - sha256: 68641d6f5c5c2a916437b67008fab342b599b6dfd711a0f43c00db5c72412d26 + md5: fbde5f561c770cb485f414e3039df812 + sha256: 592d1454332e68516a084c1e0b0c772a54da461894637427839c8cc7f93c7eb6 category: main optional: false - name: h5py - version: 3.14.0 + version: 3.15.1 manager: conda platform: win-64 dependencies: @@ -816,10 +816,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/h5py-3.14.0-nompi_py310hb7e4da9_101.conda + url: https://repo.prefix.dev/conda-forge/win-64/h5py-3.15.1-nompi_py310hb7e4da9_100.conda hash: - md5: 2e924eca630566b4b0f51a98a232122e - sha256: 66d2c79028f031326139dfb31e4e8af9acde01da3ac89551e7d50cbf29b6cb8f + md5: e80c7e8303f4aa7ebbc9b0ada5a0a853 + sha256: a13926c440aa242f962949dbb3badbf89f2cd970e7a458042aa4093a6e8ec7ca category: main optional: false - name: hdf5 @@ -911,39 +911,39 @@ package: - name: icu version: '75.1' manager: conda - platform: win-64 + platform: linux-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/icu-75.1-he0c23c2_0.conda + __glibc: '>=2.17,<3.0.a0' + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + url: https://repo.prefix.dev/conda-forge/linux-64/icu-75.1-he02047a_0.conda hash: - md5: 8579b6bb8d18be7c0b27fb08adeeeb40 - sha256: 1d04369a1860a1e9e371b9fc82dd0092b616adcf057d6c88371856669280e920 + md5: 8b189310083baabfb622af68fd9d3ae3 + sha256: 71e750d509f5fa3421087ba88ef9a7b9be11c53174af3aa4d06aff4c18b38e8e category: main optional: false - name: idna - version: '3.10' + version: '3.11' manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/idna-3.11-pyhd8ed1ab_0.conda hash: - md5: 39a4f67be3286c86d696df570b1201b7 - sha256: d7a472c9fd479e2e8dcb83fb8d433fce971ea369d704ece380e876f9c3494e87 + md5: 53abe63df7e10a6ba605dc5f9f961d36 + sha256: ae89d0299ada2a3162c2614a9d26557a92aa6a77120ce142f8e0109bbf0342b0 category: dev optional: true - name: idna - version: '3.10' + version: '3.11' manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/idna-3.11-pyhd8ed1ab_0.conda hash: - md5: 39a4f67be3286c86d696df570b1201b7 - sha256: d7a472c9fd479e2e8dcb83fb8d433fce971ea369d704ece380e876f9c3494e87 + md5: 53abe63df7e10a6ba605dc5f9f961d36 + sha256: ae89d0299ada2a3162c2614a9d26557a92aa6a77120ce142f8e0109bbf0342b0 category: dev optional: true - name: imagecodecs @@ -1116,53 +1116,55 @@ package: category: main optional: false - name: iniconfig - version: 2.0.0 + version: 2.3.0 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/iniconfig-2.3.0-pyhd8ed1ab_0.conda hash: - md5: 6837f3eff7dcea42ecd714ce1ac2b108 - sha256: 0ec8f4d02053cd03b0f3e63168316530949484f80e16f5e2fb199a1d117a89ca + md5: 9614359868482abba1bd15ce465e3c42 + sha256: e1a9e3b1c8fe62dc3932a616c284b5d8cbe3124bbfbedcf4ce5c828cb166ee19 category: dev optional: true - name: iniconfig - version: 2.0.0 + version: 2.3.0 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/iniconfig-2.3.0-pyhd8ed1ab_0.conda hash: - md5: 6837f3eff7dcea42ecd714ce1ac2b108 - sha256: 0ec8f4d02053cd03b0f3e63168316530949484f80e16f5e2fb199a1d117a89ca + md5: 9614359868482abba1bd15ce465e3c42 + sha256: e1a9e3b1c8fe62dc3932a616c284b5d8cbe3124bbfbedcf4ce5c828cb166ee19 category: dev optional: true - name: isort - version: 6.0.1 + version: 7.0.0 manager: conda platform: linux-64 dependencies: - python: '>=3.9,<4.0' - url: https://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_1.conda + importlib-metadata: '>=4.6.0' + python: '>=3.10,<4.0' + url: https://repo.prefix.dev/conda-forge/noarch/isort-7.0.0-pyhd8ed1ab_0.conda hash: - md5: c25d1a27b791dab1797832aafd6a3e9a - sha256: e1d0e81e3c3da5d7854f9f57ffb89d8f4505bb64a2f05bb01d78eff24344a105 - category: main - optional: false + md5: 55a61979242077b2cc377c74326ea9f0 + sha256: 13b0005877f553eb2e5c50447c9d0047e7257124ec2d1569d7dad35697790237 + category: dev + optional: true - name: isort - version: 6.0.1 + version: 7.0.0 manager: conda platform: win-64 dependencies: - python: '>=3.9,<4.0' - url: https://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_1.conda + importlib-metadata: '>=4.6.0' + python: '>=3.10,<4.0' + url: https://repo.prefix.dev/conda-forge/noarch/isort-7.0.0-pyhd8ed1ab_0.conda hash: - md5: c25d1a27b791dab1797832aafd6a3e9a - sha256: e1d0e81e3c3da5d7854f9f57ffb89d8f4505bb64a2f05bb01d78eff24344a105 - category: main - optional: false + md5: 55a61979242077b2cc377c74326ea9f0 + sha256: 13b0005877f553eb2e5c50447c9d0047e7257124ec2d1569d7dad35697790237 + category: dev + optional: true - name: jinja2 version: 3.1.6 manager: conda @@ -1324,10 +1326,11 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.44-h1423503_1.conda + zstd: '>=1.5.7,<1.6.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.44-h1aa0949_5.conda hash: - md5: 0be7c6e070c19105f966d3758448d018 - sha256: 1a620f27d79217c1295049ba214c2f80372062fd251b569e9873d4a953d27554 + md5: 511ed8935448c1875776b60ad3daf3a1 + sha256: dab1fbf65abb05d3f2ee49dff90d60eeb2e02039fcb561343c7cea5dea523585 category: main optional: false - name: lerc @@ -1428,10 +1431,10 @@ package: platform: linux-64 dependencies: libopenblas: '>=0.3.30,<1.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libblas-3.9.0-35_h4a7cf45_openblas.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libblas-3.9.0-38_h4a7cf45_openblas.conda hash: - md5: 6da7e852c812a84096b68158574398d0 - sha256: 6cae2184069dd6527a405bc4a3de1290729f6f1c7a475fa4c937a6c02e05f058 + md5: 3509b5e2aaa5f119013c8969fdd9a905 + sha256: b26a32302194e05fa395d5135699fd04a905c6ad71f24333f97c64874e053623 category: main optional: false - name: libblas @@ -1439,11 +1442,11 @@ package: manager: conda platform: win-64 dependencies: - mkl: '>=2024.2.2,<2025.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/libblas-3.9.0-35_h5709861_mkl.conda + mkl: '>=2025.3.0,<2026.0a0' + url: https://repo.prefix.dev/conda-forge/win-64/libblas-3.9.0-38_hf2e6a31_mkl.conda hash: - md5: 45d98af023f8b4a7640b1f713ce6b602 - sha256: 4180e7ab27ed03ddf01d7e599002fcba1b32dcb68214ee25da823bac371ed362 + md5: dcee15907da751895e20b4d1ac94568d + sha256: 363920dbd6a4c09f419a4e032568d5468dc9196e8c9e401af4e8026ecf88f2b7 category: main optional: false - name: libbrotlicommon @@ -1537,10 +1540,10 @@ package: platform: linux-64 dependencies: libblas: 3.9.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libcblas-3.9.0-35_h0358290_openblas.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libcblas-3.9.0-38_h0358290_openblas.conda hash: - md5: 8aa3389d36791ecd31602a247b1f3641 - sha256: fb77db75b0bd50856a1d53edcfd70c3314cde7e7c7d87479ee9d6b7fdbe824f1 + md5: bcd928a9376a215cd9164a4312dd5e98 + sha256: 7fe653f45c01eb16d7b48ad934b068dad2885d6f4a7c41512b6a5f1f522bffe9 category: main optional: false - name: libcblas @@ -1549,33 +1552,33 @@ package: platform: win-64 dependencies: libblas: 3.9.0 - url: https://repo.prefix.dev/conda-forge/win-64/libcblas-3.9.0-35_h2a3cdd5_mkl.conda + url: https://repo.prefix.dev/conda-forge/win-64/libcblas-3.9.0-38_h2a3cdd5_mkl.conda hash: - md5: 9639091d266e92438582d0cc4cfc8350 - sha256: 88939f6c1b5da75bd26ce663aa437e1224b26ee0dab5e60cecc77600975f397e + md5: 0c1602b1d15eb3d4da15bad122740df8 + sha256: f2bec12b960877387e5e8f84af5a50e19e97f52ddb1bed6b93ea38c4fb18ab62 category: main optional: false - name: libcurl - version: 8.14.1 + version: 8.17.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' krb5: '>=1.21.3,<1.22.0a0' - libgcc: '>=13' - libnghttp2: '>=1.64.0,<2.0a0' + libgcc: '>=14' + libnghttp2: '>=1.67.0,<2.0a0' libssh2: '>=1.11.1,<2.0a0' libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.5.0,<4.0a0' + openssl: '>=3.5.4,<4.0a0' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libcurl-8.14.1-h332b0f4_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libcurl-8.17.0-h4e3cde8_0.conda hash: - md5: 45f6713cb00f124af300342512219182 - sha256: b6c5cf340a4f80d70d64b3a29a7d9885a5918d16a5cb952022820e6d3e79dc8b + md5: 01e149d4a53185622dc2e788281961f2 + sha256: 100e29ca864c32af15a5cc354f502d07b2600218740fdf2439fa7d66b50b3529 category: main optional: false - name: libcurl - version: 8.14.1 + version: 8.17.0 manager: conda platform: win-64 dependencies: @@ -1583,12 +1586,12 @@ package: libssh2: '>=1.11.1,<2.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/libcurl-8.14.1-h88aaa65_0.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/libcurl-8.17.0-h43ecb02_0.conda hash: - md5: 836b9c08f34d2017dbcaec907c6a1138 - sha256: b2cface2cf35d8522289df7fffc14370596db6f6dc481cc1b6ca313faeac19d8 + md5: cfade9be135edb796837e7d4c288c0fb + sha256: 651daa5d2bad505b5c72b1d5d4d8c7fc0776ab420e67af997ca9391b6854b1b3 category: main optional: false - name: libdeflate @@ -1672,30 +1675,30 @@ package: category: main optional: false - name: libffi - version: 3.4.6 + version: 3.5.2 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libffi-3.4.6-h2dba641_1.conda + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/libffi-3.5.2-h9ec8514_0.conda hash: - md5: ede4673863426c0883c0063d853bbd85 - sha256: 764432d32db45466e87f10621db5b74363a9f847d2b8b1f9743746cd160f06ab + md5: 35f29eec58405aaf55e01cb470d8c26a + sha256: 25cbdfa65580cfab1b8d15ee90b4c9f1e0d72128f1661449c9a999d341377d54 category: main optional: false - name: libffi - version: 3.4.6 + version: 3.5.2 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/libffi-3.4.6-h537db12_1.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/libffi-3.5.2-h52bdfb6_0.conda hash: - md5: 85d8fa5e55ed8f93f874b3b23ed54ec6 - sha256: d3b0b8812eab553d3464bbd68204f007f1ebadf96ce30eb0cbc5159f72e353f5 + md5: ba4ad812d2afc22b9a34ce8327a0930f + sha256: ddff25aaa4f0aa535413f5d831b04073789522890a4d8626366e43ecde1534a3 category: main optional: false - name: libfreetype @@ -1754,90 +1757,90 @@ package: category: main optional: false - name: libgcc - version: 15.1.0 + version: 15.2.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' _openmp_mutex: '>=4.5' - url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-15.1.0-h767d61c_5.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-15.2.0-h767d61c_7.conda hash: - md5: 264fbfba7fb20acf3b29cde153e345ce - sha256: 0caed73aac3966bfbf5710e06c728a24c6c138605121a3dacb2e03440e8baa6a + md5: c0374badb3a5d4b1372db28d19462c53 + sha256: 08f9b87578ab981c7713e4e6a7d935e40766e10691732bba376d4964562bcb45 category: main optional: false - name: libgcc - version: 15.1.0 + version: 15.2.0 manager: conda platform: win-64 dependencies: _openmp_mutex: '>=4.5' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' - url: https://repo.prefix.dev/conda-forge/win-64/libgcc-15.1.0-h1383e82_5.conda + url: https://repo.prefix.dev/conda-forge/win-64/libgcc-15.2.0-h1383e82_7.conda hash: - md5: c84381a01ede0e28d632fdbeea2debb2 - sha256: 9b997baa85ba495c04e1b30f097b80420c02dcaca6441c4bf2c6bb4b2c5d2114 + md5: 926a82fc4fa5b284b1ca1fb74f20dee2 + sha256: 174c4c75b03923ac755f227c96d956f7b4560a4b7dd83c0332709c50ff78450f category: main optional: false - name: libgcc-ng - version: 15.1.0 + version: 15.2.0 manager: conda platform: linux-64 dependencies: - libgcc: 15.1.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-ng-15.1.0-h69a702a_5.conda + libgcc: 15.2.0 + url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-ng-15.2.0-h69a702a_7.conda hash: - md5: 069afdf8ea72504e48d23ae1171d951c - sha256: f54bb9c3be12b24be327f4c1afccc2969712e0b091cdfbd1d763fb3e61cda03f + md5: 280ea6eee9e2ddefde25ff799c4f0363 + sha256: 2045066dd8e6e58aaf5ae2b722fb6dfdbb57c862b5f34ac7bfb58c40ef39b6ad category: main optional: false - name: libgfortran - version: 15.1.0 + version: 15.2.0 manager: conda platform: linux-64 dependencies: - libgfortran5: 15.1.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran-15.1.0-h69a702a_5.conda + libgfortran5: 15.2.0 + url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran-15.2.0-h69a702a_7.conda hash: - md5: 0c91408b3dec0b97e8a3c694845bd63b - sha256: 4c1a526198d0d62441549fdfd668cc8e18e77609da1e545bdcc771dd8dc6a990 + md5: 8621a450add4e231f676646880703f49 + sha256: 9ca24328e31c8ef44a77f53104773b9fe50ea8533f4c74baa8489a12de916f02 category: main optional: false - name: libgfortran5 - version: 15.1.0 + version: 15.2.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=15.1.0' - url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran5-15.1.0-hcea5267_5.conda + libgcc: '>=15.2.0' + url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran5-15.2.0-hcd61629_7.conda hash: - md5: fbd4008644add05032b6764807ee2cba - sha256: 9d06adc6d8e8187ddc1cad87525c690bc8202d8cb06c13b76ab2fc80a35ed565 + md5: f116940d825ffc9104400f0d7f1a4551 + sha256: e93ceda56498d98c9f94fedec3e2d00f717cbedfc97c49be0e5a5828802f2d34 category: main optional: false - name: libgomp - version: 15.1.0 + version: 15.2.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libgomp-15.1.0-h767d61c_5.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgomp-15.2.0-h767d61c_7.conda hash: - md5: dcd5ff1940cd38f6df777cac86819d60 - sha256: 125051d51a8c04694d0830f6343af78b556dd88cc249dfec5a97703ebfb1832d + md5: f7b4d76975aac7e5d9e6ad13845f92fe + sha256: e9fb1c258c8e66ee278397b5822692527c5f5786d372fe7a869b900853f3f5ca category: main optional: false - name: libgomp - version: 15.1.0 + version: 15.2.0 manager: conda platform: win-64 dependencies: libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' - url: https://repo.prefix.dev/conda-forge/win-64/libgomp-15.1.0-h1383e82_5.conda + url: https://repo.prefix.dev/conda-forge/win-64/libgomp-15.2.0-h1383e82_7.conda hash: - md5: eae9a32a85152da8e6928a703a514d35 - sha256: 65fd558d8f3296e364b8ae694932a64642fdd26d8eb4cf7adf08941e449be926 + md5: 7f970a7f9801622add7746aa3cbc24d5 + sha256: b8b569a9d3ec8f13531c220d3ad8e1ff35c75902c89144872e7542a77cb8c10d category: main optional: false - name: libhwloc @@ -1865,10 +1868,10 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' libstdcxx: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libhwy-1.3.0-h4c17acf_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libhwy-1.3.0-h4c17acf_1.conda hash: - md5: c563a24389a37a802c72e0c1a11bdd56 - sha256: 90db350957e1ee3b7122ededf0edf02f9cae5b1d3e119a6b1bc32af40adb1a5b + md5: c2a0c1d0120520e979685034e0b79859 + sha256: 2bdd1cdd677b119abc5e83069bec2e28fe6bfb21ebaea3cd07acee67f38ea274 category: main optional: false - name: libhwy @@ -1877,12 +1880,12 @@ package: 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/libhwy-1.3.0-h47aaa27_0.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/libhwy-1.3.0-ha71e874_1.conda hash: - md5: d175ef31c07023f9bc7f5deb274898c6 - sha256: 0c0d146bb142f86132356aabda2590498bd1dcae8396bbb7891954b6de9479e9 + md5: f4649d4b6bf40d616eda57d6255d2333 + sha256: c722a04f065656b988a46dee87303ff0bf037179c50e2e76704b693def7f9a96 category: main optional: false - name: libiconv @@ -1900,30 +1903,30 @@ package: category: main optional: false - name: libjpeg-turbo - version: 3.1.0 + version: 3.1.2 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libjpeg-turbo-3.1.0-hb9d3cd8_0.conda + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/libjpeg-turbo-3.1.2-hb03c661_0.conda hash: - md5: 9fa334557db9f63da6c9285fd2a48638 - sha256: 98b399287e27768bf79d48faba8a99a2289748c65cd342ca21033fab1860d4a4 + md5: 8397539e3a0bbd1695584fb4f927485a + sha256: cc9aba923eea0af8e30e0f94f2ad7156e2984d80d1e8e7fe6be5a1f257f0eb32 category: main optional: false - name: libjpeg-turbo - version: 3.1.0 + version: 3.1.2 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libjpeg-turbo-3.1.0-h2466b09_0.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/libjpeg-turbo-3.1.2-hfd05255_0.conda hash: - md5: 7c51d27540389de84852daa1cdb9c63c - sha256: e61b0adef3028b51251124e43eb6edf724c67c0f6736f1628b02511480ac354e + md5: 56a686f92ac0273c0f6af58858a3f013 + sha256: 795e2d4feb2f7fc4a2c6e921871575feb32b8082b5760726791f080d1e2c2597 category: main optional: false - name: libjxl @@ -1966,10 +1969,10 @@ package: platform: linux-64 dependencies: libblas: 3.9.0 - url: https://repo.prefix.dev/conda-forge/linux-64/liblapack-3.9.0-35_h47877c9_openblas.conda + url: https://repo.prefix.dev/conda-forge/linux-64/liblapack-3.9.0-38_h47877c9_openblas.conda hash: - md5: aa0b36b71d44f74686f13b9bfabec891 - sha256: 5aceb67704af9185084ccdc8d841845df498a9af52783b858ceacd3e5b9e7dd8 + md5: 88f10bff57b423a3fd2d990c6055771e + sha256: 63d6073dd4f82ab46943ad99a22fc4edda83b0f8fe6170bdaba7a43352bed007 category: main optional: false - name: liblapack @@ -1978,10 +1981,10 @@ package: platform: win-64 dependencies: libblas: 3.9.0 - url: https://repo.prefix.dev/conda-forge/win-64/liblapack-3.9.0-35_hf9ab0e9_mkl.conda + url: https://repo.prefix.dev/conda-forge/win-64/liblapack-3.9.0-38_hf9ab0e9_mkl.conda hash: - md5: 0c6ed9d722cecda18f50f17fb3c30002 - sha256: 56e0992fb58eed8f0d5fa165b8621fa150b84aa9af1467ea0a7a9bb7e2fced4f + md5: eb3167046ffba0ceb4a8824fb1b79a69 + sha256: 3b8d2d800f48fb9045a976c5a10cefe742142df88decf5a5108fe6b7c8fb5b50 category: main optional: false - name: liblzma @@ -2051,10 +2054,10 @@ package: libgcc: '>=14' libgfortran: '' libgfortran5: '>=14.3.0' - url: https://repo.prefix.dev/conda-forge/linux-64/libopenblas-0.3.30-pthreads_h94d23a6_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libopenblas-0.3.30-pthreads_h94d23a6_3.conda hash: - md5: dfc5aae7b043d9f56ba99514d5e60625 - sha256: 1b51d1f96e751dc945cc06f79caa91833b0c3326efe24e9b506bd64ef49fc9b0 + md5: ac2e4832427d6b159576e8a68305c722 + sha256: 200899e5acc01fa29550d2782258d9cf33e55ce4cbce8faed9c6fe0b774852aa category: main optional: false - name: libpng @@ -2087,31 +2090,32 @@ package: category: main optional: false - name: libsqlite - version: 3.50.4 + version: 3.51.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' + icu: '>=75.1,<76.0a0' libgcc: '>=14' libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.50.4-h0c1763c_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.51.0-hee844dc_0.conda hash: - md5: 0b367fad34931cb79e0d6b7e5c06bb1c - sha256: 6d9c32fc369af5a84875725f7ddfbfc2ace795c28f246dc70055a79f9b2003da + md5: 729a572a3ebb8c43933b30edcc628ceb + sha256: 4c992dcd0e34b68f843e75406f7f303b1b97c248d18f3c7c330bdc0bc26ae0b3 category: main optional: false - name: libsqlite - version: 3.50.4 + version: 3.51.0 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.50.4-hf5d6505_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.51.0-hf5d6505_0.conda hash: - md5: ccb20d946040f86f0c05b644d5eadeca - sha256: 5dc4f07b2d6270ac0c874caec53c6984caaaa84bc0d3eb593b0edf3dc8492efa + md5: d2c9300ebd2848862929b18c264d1b1e + sha256: 2373bd7450693bd0f624966e1bee2f49b0bf0ffbc114275ed0a43cf35aec5b21 category: main optional: false - name: libssh2 @@ -2146,32 +2150,32 @@ package: category: main optional: false - name: libstdcxx - version: 15.1.0 + version: 15.2.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: 15.1.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-15.1.0-h8f9b012_5.conda + libgcc: 15.2.0 + url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-15.2.0-h8f9b012_7.conda hash: - md5: 4e02a49aaa9d5190cb630fa43528fbe6 - sha256: 0f5f61cab229b6043541c13538d75ce11bd96fb2db76f94ecf81997b1fde6408 + md5: 5b767048b1b3ee9a954b06f4084f93dc + sha256: 1b981647d9775e1cdeb2fab0a4dd9cd75a6b0de2963f6c3953dbd712f78334b3 category: main optional: false - name: libstdcxx-ng - version: 15.1.0 + version: 15.2.0 manager: conda platform: linux-64 dependencies: - libstdcxx: 15.1.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-15.1.0-h4852527_5.conda + libstdcxx: 15.2.0 + url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-15.2.0-h4852527_7.conda hash: - md5: 8bba50c7f4679f08c861b597ad2bda6b - sha256: 7b8cabbf0ab4fe3581ca28fe8ca319f964078578a51dd2ca3f703c1d21ba23ff + md5: f627678cf829bd70bccf141a19c3ad3e + sha256: 024fd46ac3ea8032a5ec3ea7b91c4c235701a8bf0e6520fe5e6539992a6bd05f category: main optional: false - name: libtiff - version: 4.7.0 + version: 4.7.1 manager: conda platform: linux-64 dependencies: @@ -2185,14 +2189,14 @@ package: libwebp-base: '>=1.6.0,<2.0a0' libzlib: '>=1.3.1,<2.0a0' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libtiff-4.7.0-h8261f1e_6.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libtiff-4.7.1-h8261f1e_0.conda hash: - md5: b6093922931b535a7ba566b6f384fbe6 - sha256: c62694cd117548d810d2803da6d9063f78b1ffbf7367432c5388ce89474e9ebe + md5: 72b531694ebe4e8aa6f5745d1015c1b4 + sha256: ddda0d7ee67e71e904a452010c73e32da416806f5cb9145fb62c322f97e717fb category: main optional: false - name: libtiff - version: 4.7.0 + version: 4.7.1 manager: conda platform: win-64 dependencies: @@ -2205,23 +2209,23 @@ package: vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/libtiff-4.7.0-h550210a_6.conda + url: https://repo.prefix.dev/conda-forge/win-64/libtiff-4.7.1-h550210a_0.conda hash: - md5: 72d45aa52ebca91aedb0cfd9eac62655 - sha256: fd27821c8cfc425826f13760c3263d7b3b997c5372234cefa1586ff384dcc989 + md5: e23f29747d9d2aa2a39b594c114fac67 + sha256: d6cac6596ded0d5bbbc4198d7eb4db88da8c00236ebf5e2c8ad333ccde8965e2 category: main optional: false - name: libuuid - version: 2.41.1 + version: 2.41.2 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libuuid-2.41.1-he9a06e4_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libuuid-2.41.2-he9a06e4_0.conda hash: - md5: af930c65e9a79a3423d6d36e265cef65 - sha256: 776e28735cee84b97e4d05dd5d67b95221a3e2c09b8b13e3d6dbe6494337d527 + md5: 80c07c68d2f6870250959dcc95b209d1 + sha256: e5ec6d2ad7eef538ddcb9ea62ad4346fde70a4736342c4ad87bd713641eb9808 category: main optional: false - name: libwebp-base @@ -2257,10 +2261,10 @@ package: platform: win-64 dependencies: ucrt: '' - url: https://repo.prefix.dev/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h57928b3_9.conda + url: https://repo.prefix.dev/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h57928b3_10.conda hash: - md5: 08bfa5da6e242025304b206d152479ef - sha256: 373f2973b8a358528b22be5e8d84322c165b4c5577d24d94fd67ad1bb0a0f261 + md5: 8a86073cf3b343b87d03f41790d8b4e5 + sha256: 0fccf2d17026255b6e10ace1f191d0a2a18f2d65088fd02430be17c701f8ffe0 category: main optional: false - name: libxcb @@ -2309,40 +2313,38 @@ package: category: main optional: false - name: libxml2 - version: 2.15.0 + version: 2.15.1 manager: conda platform: win-64 dependencies: - icu: '>=75.1,<76.0a0' libiconv: '>=1.18,<2.0a0' liblzma: '>=5.8.1,<6.0a0' - libxml2-16: 2.15.0 + libxml2-16: 2.15.1 libzlib: '>=1.3.1,<2.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libxml2-2.15.0-ha29bfb0_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libxml2-2.15.1-h5d26750_0.conda hash: - md5: 5262552eb2f0d0b443adcfa265d97f0a - sha256: c3c2c74bd917d83b26c102b18bde97759c23f24e0260beb962acf7385627fc38 + md5: 9176ee05643a1bfe7f2e7b4c921d2c3d + sha256: f507960adf64ee9c9c7b7833d8b11980765ebd2bf5345f73d5a3b21b259eaed5 category: main optional: false - name: libxml2-16 - version: 2.15.0 + version: 2.15.1 manager: conda platform: win-64 dependencies: - icu: '>=75.1,<76.0a0' libiconv: '>=1.18,<2.0a0' liblzma: '>=5.8.1,<6.0a0' libzlib: '>=1.3.1,<2.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libxml2-16-2.15.0-h06f855e_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libxml2-16-2.15.1-h692994f_0.conda hash: - md5: a1071825a90769083fce8dbcefcccd65 - sha256: 15337581264464842ff28f616422b786161bee0169610ff292e0ea75fa78dba8 + md5: 70ca4626111579c3cd63a7108fe737f9 + sha256: 04129dc2df47a01c55e5ccf8a18caefab94caddec41b3b10fbc409e980239eb9 category: main optional: false - name: libzlib @@ -2399,17 +2401,17 @@ package: category: main optional: false - name: llvm-openmp - version: 20.1.8 + version: 21.1.5 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-20.1.8-hfa2b4ca_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-21.1.5-hfa2b4ca_0.conda hash: - md5: 2dc2edf349464c8b83a576175fc2ad42 - sha256: 8970b7f9057a1c2c18bfd743c6f5ce73b86197d7724423de4fa3d03911d5874b + md5: 3bd3154b24a1b9489d4ab04d62ffcc86 + sha256: 8c5106720e5414f48344fd28eae4db4f1a382336d8a0f30f71d41d8ae730fbb6 category: main optional: false - name: lz4-c @@ -2441,34 +2443,34 @@ package: category: main optional: false - name: markupsafe - version: 3.0.2 + version: 3.0.3 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' + libgcc: '>=14' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://repo.prefix.dev/conda-forge/linux-64/markupsafe-3.0.2-py310h89163eb_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/markupsafe-3.0.3-py310h3406613_0.conda hash: - md5: 8ce3f0332fd6de0d737e2911d329523f - sha256: 0bed20ec27dcbcaf04f02b2345358e1161fb338f8423a4ada1cf0f4d46918741 + md5: 8854df4fb4e37cc3ea0a024e48c9c180 + sha256: b3894b37cab530d1adab5b9ce39a1b9f28040403cc0042b77e04a2f227a447de category: dev optional: true - name: markupsafe - version: 3.0.2 + version: 3.0.3 manager: conda platform: win-64 dependencies: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/markupsafe-3.0.2-py310h38315fa_1.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/markupsafe-3.0.3-py310hdb0e946_0.conda hash: - md5: 79dfc050ae5a7dd4e63e392c984e2576 - sha256: deb8505b7ef76d363174d133e2ff814ae75b91ac4c3ae5550a7686897392f4d0 + md5: 1fdd2255424eaf0d5e707c205ace2c30 + sha256: 87203ea8bbe265ebabb16673c9442d2097e1b405dc70df49d6920730e7be6e74 category: dev optional: true - name: mccabe @@ -2481,8 +2483,8 @@ package: hash: md5: 827064ddfe0de2917fb29f1da4f8f533 sha256: 9b0037171dad0100f0296699a11ae7d355237b55f42f9094aebc0f41512d96a1 - category: main - optional: false + category: dev + optional: true - name: mccabe version: 0.7.0 manager: conda @@ -2493,19 +2495,22 @@ package: hash: md5: 827064ddfe0de2917fb29f1da4f8f533 sha256: 9b0037171dad0100f0296699a11ae7d355237b55f42f9094aebc0f41512d96a1 - category: main - optional: false + category: dev + optional: true - name: mkl - version: 2024.2.2 + version: 2025.3.0 manager: conda platform: win-64 dependencies: - llvm-openmp: '>=20.1.8' - tbb: 2021.* - url: https://repo.prefix.dev/conda-forge/win-64/mkl-2024.2.2-h57928b3_16.conda + llvm-openmp: '>=21.1.4' + tbb: '>=2022.2.0' + ucrt: '>=10.0.20348.0' + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/mkl-2025.3.0-hac47afa_454.conda hash: - md5: 5cddc979c74b90cf5e5cda4f97d5d8bb - sha256: ce841e7c3898764154a9293c0f92283c1eb28cdacf7a164c94b632a6af675d91 + md5: c83ec81713512467dfe1b496a8292544 + sha256: 3c432e77720726c6bd83e9ee37ac8d0e3dd7c4cf9b4c5805e1d384025f9e9ab6 category: main optional: false - name: ncurses @@ -2583,7 +2588,7 @@ package: category: main optional: false - name: openjpeg - version: 2.5.3 + version: 2.5.4 manager: conda platform: linux-64 dependencies: @@ -2591,47 +2596,47 @@ package: libgcc: '>=14' libpng: '>=1.6.50,<1.7.0a0' libstdcxx: '>=14' - libtiff: '>=4.7.0,<4.8.0a0' + libtiff: '>=4.7.1,<4.8.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/openjpeg-2.5.3-h55fea9a_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/openjpeg-2.5.4-h55fea9a_0.conda hash: - md5: 01243c4aaf71bde0297966125aea4706 - sha256: 0b7396dacf988f0b859798711b26b6bc9c6161dca21bacfd778473da58730afa + md5: 11b3379b191f63139e29c0d19dee24cd + sha256: 3900f9f2dbbf4129cf3ad6acf4e4b6f7101390b53843591c53b00f034343bc4d category: main optional: false - name: openjpeg - version: 2.5.3 + version: 2.5.4 manager: conda platform: win-64 dependencies: libpng: '>=1.6.50,<1.7.0a0' - libtiff: '>=4.7.0,<4.8.0a0' + libtiff: '>=4.7.1,<4.8.0a0' libzlib: '>=1.3.1,<2.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/openjpeg-2.5.3-h24db6dd_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/openjpeg-2.5.4-h24db6dd_0.conda hash: - md5: 25f45acb1a234ad1c9b9a20e1e6c559e - sha256: c29cb1641bc5cfc2197e9b7b436f34142be4766dd2430a937b48b7474935aa55 + md5: 5af852046226bb3cb15c7f61c2ac020a + sha256: 226c270a7e3644448954c47959c00a9bf7845f6d600c2a643db187118d028eee category: main optional: false - name: openssl - version: 3.5.2 + version: 3.5.4 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' ca-certificates: '' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/openssl-3.5.2-h26f9b46_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/openssl-3.5.4-h26f9b46_0.conda hash: - md5: ffffb341206dd0dab0c36053c048d621 - sha256: c9f54d4e8212f313be7b02eb962d0cb13a8dae015683a403d3accd4add3e520e + md5: 14edad12b59ccbfa3910d42c72adc2a0 + sha256: e807f3bad09bdf4075dbb4168619e14b0c0360bacb2e12ef18641a834c8c5549 category: main optional: false - name: openssl - version: 3.5.2 + version: 3.5.4 manager: conda platform: win-64 dependencies: @@ -2639,10 +2644,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/openssl-3.5.2-h725018a_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/openssl-3.5.4-h725018a_0.conda hash: - md5: 150d3920b420a27c0848acca158f94dc - sha256: 2413f3b4606018aea23acfa2af3c4c46af786739ab4020422e9f0c2aec75321b + md5: f28ffa510fe055ab518cbd9d6ddfea23 + sha256: 5ddc1e39e2a8b72db2431620ad1124016f3df135f87ebde450d235c212a61994 category: main optional: false - name: packaging @@ -2718,57 +2723,57 @@ package: category: main optional: false - name: pip - version: '25.2' + version: '25.3' manager: conda platform: linux-64 dependencies: - python: '>=3.9,<3.13.0a0' + python: '>=3.10,<3.13.0a0' setuptools: '' wheel: '' - url: https://repo.prefix.dev/conda-forge/noarch/pip-25.2-pyh8b19718_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pip-25.3-pyh8b19718_0.conda hash: - md5: dfce4b2af4bfe90cdcaf56ca0b28ddf5 - sha256: ec9ed3cef137679f3e3a68e286c6efd52144684e1be0b05004d9699882dadcdd + md5: c55515ca43c6444d2572e0f0d93cb6b9 + sha256: b67692da1c0084516ac1c9ada4d55eaf3c5891b54980f30f3f444541c2706f1e category: main optional: false - name: pip - version: '25.2' + version: '25.3' manager: conda platform: win-64 dependencies: - python: '>=3.9,<3.13.0a0' + python: '>=3.10,<3.13.0a0' setuptools: '' wheel: '' - url: https://repo.prefix.dev/conda-forge/noarch/pip-25.2-pyh8b19718_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pip-25.3-pyh8b19718_0.conda hash: - md5: dfce4b2af4bfe90cdcaf56ca0b28ddf5 - sha256: ec9ed3cef137679f3e3a68e286c6efd52144684e1be0b05004d9699882dadcdd + md5: c55515ca43c6444d2572e0f0d93cb6b9 + sha256: b67692da1c0084516ac1c9ada4d55eaf3c5891b54980f30f3f444541c2706f1e category: main optional: false - name: platformdirs - version: 4.4.0 + version: 4.5.0 manager: conda platform: linux-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.4.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.5.0-pyhcf101f3_0.conda hash: - md5: cc9d9a3929503785403dbfad9f707145 - sha256: dfe0fa6e351d2b0cef95ac1a1533d4f960d3992f9e0f82aeb5ec3623a699896b - category: main - optional: false + md5: 5c7a868f8241e64e1cf5fdf4962f23e2 + sha256: 7efd51b48d908de2d75cbb3c4a2e80dd9454e1c5bb8191b261af3136f7fa5888 + category: dev + optional: true - name: platformdirs - version: 4.4.0 + version: 4.5.0 manager: conda platform: win-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.4.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.5.0-pyhcf101f3_0.conda hash: - md5: cc9d9a3929503785403dbfad9f707145 - sha256: dfe0fa6e351d2b0cef95ac1a1533d4f960d3992f9e0f82aeb5ec3623a699896b - category: main - optional: false + md5: 5c7a868f8241e64e1cf5fdf4962f23e2 + sha256: 7efd51b48d908de2d75cbb3c4a2e80dd9454e1c5bb8191b261af3136f7fa5888 + category: dev + optional: true - name: pluggy version: 1.6.0 manager: conda @@ -2845,57 +2850,57 @@ package: category: dev optional: true - name: pydantic - version: 2.11.9 + version: 2.12.4 manager: conda platform: linux-64 dependencies: annotated-types: '>=0.6.0' - pydantic-core: 2.33.2 + pydantic-core: 2.41.5 python: '>=3.10' typing-extensions: '>=4.6.1' - typing-inspection: '>=0.4.0' - typing_extensions: '>=4.12.2' - url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.9-pyh3cfb1c2_0.conda + typing-inspection: '>=0.4.2' + typing_extensions: '>=4.14.1' + url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.12.4-pyh3cfb1c2_0.conda hash: - md5: a6db60d33fe1ad50314a46749267fdfc - sha256: c3ec0c2202d109cdd5cac008bf7a42b67d4aa3c4cc14b4ee3e00a00541eabd88 + md5: bf6ce72315b6759453d8c90a894e9e4c + sha256: c51297f0f6ef13776cc5b61c37d00c0d45faaed34f81d196e64bebc989f3e497 category: main optional: false - name: pydantic - version: 2.11.9 + version: 2.12.4 manager: conda platform: win-64 dependencies: annotated-types: '>=0.6.0' - pydantic-core: 2.33.2 + pydantic-core: 2.41.5 python: '>=3.10' typing-extensions: '>=4.6.1' - typing-inspection: '>=0.4.0' - typing_extensions: '>=4.12.2' - url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.9-pyh3cfb1c2_0.conda + typing-inspection: '>=0.4.2' + typing_extensions: '>=4.14.1' + url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.12.4-pyh3cfb1c2_0.conda hash: - md5: a6db60d33fe1ad50314a46749267fdfc - sha256: c3ec0c2202d109cdd5cac008bf7a42b67d4aa3c4cc14b4ee3e00a00541eabd88 + md5: bf6ce72315b6759453d8c90a894e9e4c + sha256: c51297f0f6ef13776cc5b61c37d00c0d45faaed34f81d196e64bebc989f3e497 category: main optional: false - name: pydantic-core - version: 2.33.2 + version: 2.41.5 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' + libgcc: '>=14' python: '' python_abi: 3.10.* typing-extensions: '>=4.6.0,!=4.7.0' - url: https://repo.prefix.dev/conda-forge/linux-64/pydantic-core-2.33.2-py310hbcd0ec0_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pydantic-core-2.41.5-py310hd8f68c5_0.conda hash: - md5: 6b210a72e9e1b1cb6d30b266b84ca993 - sha256: 8da9aed7f21d775a7c91db6c9f95a0e00cae2d132709d5dc608c2e6828f9344b + md5: 9b2338c7021dca0c0f3149e6b1e11bdb + sha256: 37663ebef306620b84e9c3f26bcb122f7f70904374c1fa305221cc4d87aae403 category: main optional: false - name: pydantic-core - version: 2.33.2 + version: 2.41.5 manager: conda platform: win-64 dependencies: @@ -2903,12 +2908,12 @@ package: python_abi: 3.10.* typing-extensions: '>=4.6.0,!=4.7.0' ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/pydantic-core-2.33.2-py310hed05c55_0.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/pydantic-core-2.41.5-py310h034784e_0.conda hash: - md5: 59065d98ab806083a5432d92073f1c75 - sha256: 657b2097148533aa9665678b85c94bb3cf4df015605f233f374243d4697ccd03 + md5: 082a265124fef1094d6d7941441cdc15 + sha256: f6eb0c918e7104b7f27c6f9589c7e2b0c1b73544f8f59c1cbba9ab73ec95df6e category: main optional: false - name: pygments @@ -2936,47 +2941,45 @@ package: category: dev optional: true - name: pylint - version: 3.3.8 + version: 4.0.2 manager: conda platform: linux-64 dependencies: - astroid: '>=3.3.8,<3.4.0-dev0' + astroid: '>=4.0.1,<=4.1.0.dev0' colorama: '>=0.4.5' dill: '>=0.3.7' - isort: '>=4.2.5,<7,!=5.13.0' + isort: '>=5,<8,!=5.13' mccabe: '>=0.6,<0.8' - platformdirs: '>=2.2.0' + platformdirs: '>=2.2' python: '' tomli: '>=1.1.0' tomlkit: '>=0.10.1' - typing_extensions: '>=3.10.0' - url: https://repo.prefix.dev/conda-forge/noarch/pylint-3.3.8-pyhe01879c_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pylint-4.0.2-pyhcf101f3_0.conda hash: - md5: f5ba3b2c52e855b67fc0abedcebc9675 - sha256: 5b19f8113694ff4e4f0d0870cf38357d9e84330ff6c2516127a65764289b6743 - category: main - optional: false + md5: 0259facf4dbf67ad35ec517b6ffd6982 + sha256: 594bdf44a55c3bcf79ec6eb55d86571cbe3bee9f5216ede0721708c184da4ed8 + category: dev + optional: true - name: pylint - version: 3.3.8 + version: 4.0.2 manager: conda platform: win-64 dependencies: - astroid: '>=3.3.8,<3.4.0-dev0' + astroid: '>=4.0.1,<=4.1.0.dev0' colorama: '>=0.4.5' dill: '>=0.3.7' - isort: '>=4.2.5,<7,!=5.13.0' + isort: '>=5,<8,!=5.13' mccabe: '>=0.6,<0.8' - platformdirs: '>=2.2.0' - python: '>=3.9' + platformdirs: '>=2.2' + python: '>=3.10' tomli: '>=1.1.0' tomlkit: '>=0.10.1' - typing_extensions: '>=3.10.0' - url: https://repo.prefix.dev/conda-forge/noarch/pylint-3.3.8-pyhe01879c_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pylint-4.0.2-pyhcf101f3_0.conda hash: - md5: f5ba3b2c52e855b67fc0abedcebc9675 - sha256: 5b19f8113694ff4e4f0d0870cf38357d9e84330ff6c2516127a65764289b6743 - category: main - optional: false + md5: 0259facf4dbf67ad35ec517b6ffd6982 + sha256: 594bdf44a55c3bcf79ec6eb55d86571cbe3bee9f5216ede0721708c184da4ed8 + category: dev + optional: true - name: pysocks version: 1.7.1 manager: conda @@ -3005,41 +3008,41 @@ package: category: dev optional: true - name: pytest - version: 8.4.2 + version: 9.0.0 manager: conda platform: linux-64 dependencies: colorama: '>=0.4' exceptiongroup: '>=1' - iniconfig: '>=1' - packaging: '>=20' + iniconfig: '>=1.0.1' + packaging: '>=22' pluggy: '>=1.5,<2' pygments: '>=2.7.2' - python: '>=3.10' + python: '' tomli: '>=1' - url: https://repo.prefix.dev/conda-forge/noarch/pytest-8.4.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytest-9.0.0-pyhcf101f3_0.conda hash: - md5: 1f987505580cb972cf28dc5f74a0f81b - sha256: 41053d9893e379a3133bb9b557b98a3d2142fca474fb6b964ba5d97515f78e2d + md5: 499e8e2df95ad3d263bee8d41cc3d475 + sha256: afd413cd919bd3cca1d45062b9822be8935e1f61ce6d6b2642364e8c19e2873d category: dev optional: true - name: pytest - version: 8.4.2 + version: 9.0.0 manager: conda platform: win-64 dependencies: colorama: '>=0.4' exceptiongroup: '>=1' - iniconfig: '>=1' - packaging: '>=20' + iniconfig: '>=1.0.1' + packaging: '>=22' pluggy: '>=1.5,<2' pygments: '>=2.7.2' python: '>=3.10' tomli: '>=1' - url: https://repo.prefix.dev/conda-forge/noarch/pytest-8.4.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytest-9.0.0-pyhcf101f3_0.conda hash: - md5: 1f987505580cb972cf28dc5f74a0f81b - sha256: 41053d9893e379a3133bb9b557b98a3d2142fca474fb6b964ba5d97515f78e2d + md5: 499e8e2df95ad3d263bee8d41cc3d475 + sha256: afd413cd919bd3cca1d45062b9822be8935e1f61ce6d6b2642364e8c19e2873d category: dev optional: true - name: pytest-cov @@ -3073,56 +3076,56 @@ package: category: dev optional: true - name: python - version: 3.10.18 + version: 3.10.19 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' bzip2: '>=1.0.8,<2.0a0' ld_impl_linux-64: '>=2.36.1' - libexpat: '>=2.7.0,<3.0a0' + libexpat: '>=2.7.1,<3.0a0' libffi: '>=3.4,<4.0a0' - libgcc: '>=13' + libgcc: '>=14' liblzma: '>=5.8.1,<6.0a0' libnsl: '>=2.0.1,<2.1.0a0' - libsqlite: '>=3.50.0,<4.0a0' - libuuid: '>=2.38.1,<3.0a0' + libsqlite: '>=3.50.4,<4.0a0' + libuuid: '>=2.41.2,<3.0a0' libxcrypt: '>=4.4.36' libzlib: '>=1.3.1,<2.0a0' ncurses: '>=6.5,<7.0a0' - openssl: '>=3.5.0,<4.0a0' + openssl: '>=3.5.4,<4.0a0' pip: '' readline: '>=8.2,<9.0a0' tk: '>=8.6.13,<8.7.0a0' tzdata: '' - url: https://repo.prefix.dev/conda-forge/linux-64/python-3.10.18-hd6af730_0_cpython.conda + url: https://repo.prefix.dev/conda-forge/linux-64/python-3.10.19-h3c07f61_2_cpython.conda hash: - md5: 4ea0c77cdcb0b81813a0436b162d7316 - sha256: 4111e5504fa4f4fb431d3a73fa606daccaf23a5a1da0f17a30db70ffad9336a7 + md5: 27ac896a8b4970f8977503a9e70dc745 + sha256: 6e3b6b69b3cacfc7610155d58407a003820eaacd50fbe039abff52b5e70b1e9b category: main optional: false - name: python - version: 3.10.18 + version: 3.10.19 manager: conda platform: win-64 dependencies: bzip2: '>=1.0.8,<2.0a0' - libexpat: '>=2.7.0,<3.0a0' + libexpat: '>=2.7.1,<3.0a0' libffi: '>=3.4,<4.0a0' liblzma: '>=5.8.1,<6.0a0' - libsqlite: '>=3.50.0,<4.0a0' + libsqlite: '>=3.50.4,<4.0a0' libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.5.0,<4.0a0' + openssl: '>=3.5.4,<4.0a0' pip: '' tk: '>=8.6.13,<8.7.0a0' tzdata: '' ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/python-3.10.18-h8c5b53a_0_cpython.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/python-3.10.19-hc20f281_2_cpython.conda hash: - md5: f1775dab55c8a073ebd024bfb2f689c1 - sha256: 548f9e542e72925d595c66191ffd17056f7c0029b7181e2d99dbef47e4f3f646 + md5: cd78c55405743e88fda2464be3c902b3 + sha256: 58c3066571c9c8ba62254dfa1cee696d053f9f78cd3a92c8032af58232610c32 category: main optional: false - name: python_abi @@ -3205,36 +3208,36 @@ package: category: main optional: false - name: pyyaml - version: 6.0.2 + version: 6.0.3 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' + libgcc: '>=14' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* yaml: '>=0.2.5,<0.3.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/pyyaml-6.0.2-py310h89163eb_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pyyaml-6.0.3-py310h3406613_0.conda hash: - md5: fd343408e64cf1e273ab7c710da374db - sha256: 5fba7f5babcac872c72f6509c25331bcfac4f8f5031f0102530a41b41336fce6 + md5: bc058b3b89fcb525bb4977832aa52014 + sha256: 9b5c6ff9111ac035f18d5e625bcaa6c076e2e64a6f3c8e3f83f5fe2b03bda78d category: dev optional: true - name: pyyaml - version: 6.0.2 + version: 6.0.3 manager: conda platform: win-64 dependencies: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' yaml: '>=0.2.5,<0.3.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/pyyaml-6.0.2-py310h38315fa_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/pyyaml-6.0.3-py310hdb0e946_0.conda hash: - md5: 9986c3731bb820db0830dd0825c26cf9 - sha256: 49dd492bdf2c479118ca9d61a59ce259594853d367a1a0548926f41a6e734724 + md5: c6c1bf08ce99a6f5dc7fdb155b088b26 + sha256: a2f80973dae258443b33a07266de8b8a7c9bf91cda41d5a3a907ce9553d79b0b category: dev optional: true - name: rav1e @@ -3824,7 +3827,7 @@ package: category: main optional: false - name: tbb - version: 2021.13.0 + version: 2022.3.0 manager: conda platform: win-64 dependencies: @@ -3832,10 +3835,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/tbb-2021.13.0-h18a62a1_3.conda + url: https://repo.prefix.dev/conda-forge/win-64/tbb-2022.3.0-hd094cb3_1.conda hash: - md5: 72226638648e494aaafde8155d50dab2 - sha256: 30e82640a1ad9d9b5bee006da7e847566086f8fdb63d15b918794a7ef2df862c + md5: 17c38aaf14c640b85c4617ccb59c1146 + sha256: c31cac57913a699745d124cdc016a63e31c5749f16f60b3202414d071fc50573 category: main optional: false - name: tifffile @@ -3895,29 +3898,29 @@ package: category: main optional: false - name: tomli - version: 2.2.1 + version: 2.3.0 manager: conda platform: linux-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.2.1-pyhe01879c_2.conda + url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.3.0-pyhcf101f3_0.conda hash: - md5: 30a0a26c8abccf4b7991d590fe17c699 - sha256: 040a5a05c487647c089ad5e05ad5aff5942830db2a4e656f1e300d73436436f1 - category: main - optional: false + md5: d2732eb636c264dc9aa4cbee404b1a53 + sha256: cb77c660b646c00a48ef942a9e1721ee46e90230c7c570cdeb5a893b5cce9bff + category: dev + optional: true - name: tomli - version: 2.2.1 + version: 2.3.0 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.2.1-pyhe01879c_2.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.3.0-pyhcf101f3_0.conda hash: - md5: 30a0a26c8abccf4b7991d590fe17c699 - sha256: 040a5a05c487647c089ad5e05ad5aff5942830db2a4e656f1e300d73436436f1 - category: main - optional: false + md5: d2732eb636c264dc9aa4cbee404b1a53 + sha256: cb77c660b646c00a48ef942a9e1721ee46e90230c7c570cdeb5a893b5cce9bff + category: dev + optional: true - name: tomlkit version: 0.13.3 manager: conda @@ -3928,8 +3931,8 @@ package: hash: md5: 146402bf0f11cbeb8f781fa4309a95d3 sha256: f8d3b49c084831a20923f66826f30ecfc55a4cd951e544b7213c692887343222 - category: main - optional: false + category: dev + optional: true - name: tomlkit version: 0.13.3 manager: conda @@ -3940,8 +3943,8 @@ package: hash: md5: 146402bf0f11cbeb8f781fa4309a95d3 sha256: f8d3b49c084831a20923f66826f30ecfc55a4cd951e544b7213c692887343222 - category: main - optional: false + category: dev + optional: true - name: tqdm version: 4.67.1 manager: conda @@ -3993,29 +3996,29 @@ package: category: main optional: false - name: typing-inspection - version: 0.4.1 + version: 0.4.2 manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '>=3.10' typing_extensions: '>=4.12.0' - url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.2-pyhd8ed1ab_0.conda hash: - md5: e0c3cd765dc15751ee2f0b03cd015712 - sha256: 4259a7502aea516c762ca8f3b8291b0d4114e094bdb3baae3171ccc0900e722f + md5: 399701494e731ce73fdd86c185a3d1b4 + sha256: 8aaf69b828c2b94d0784f18f70f11aa032950d304e57e88467120b45c18c24fd category: main optional: false - name: typing-inspection - version: 0.4.1 + version: 0.4.2 manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '>=3.10' typing_extensions: '>=4.12.0' - url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.2-pyhd8ed1ab_0.conda hash: - md5: e0c3cd765dc15751ee2f0b03cd015712 - sha256: 4259a7502aea516c762ca8f3b8291b0d4114e094bdb3baae3171ccc0900e722f + md5: 399701494e731ce73fdd86c185a3d1b4 + sha256: 8aaf69b828c2b94d0784f18f70f11aa032950d304e57e88467120b45c18c24fd category: main optional: false - name: typing_extensions @@ -4112,11 +4115,11 @@ package: manager: conda platform: win-64 dependencies: - vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/vc-14.3-h41ae7f8_31.conda + vc14_runtime: '>=14.42.34433' + url: https://repo.prefix.dev/conda-forge/win-64/vc-14.3-h2b53caa_32.conda hash: - md5: 28f4ca1e0337d0f27afb8602663c5723 - sha256: cb357591d069a1e6cb74199a8a43a7e3611f72a6caed9faa49dbb3d7a0a98e0b + md5: ef02bbe151253a72b8eda264a935db66 + sha256: 82250af59af9ff3c6a635dd4c4764c631d854feb334d6747d356d949af44d7cf category: main optional: false - name: vc14_runtime @@ -4126,10 +4129,10 @@ package: dependencies: ucrt: '>=10.0.20348.0' vcomp14: 14.44.35208 - url: https://repo.prefix.dev/conda-forge/win-64/vc14_runtime-14.44.35208-h818238b_31.conda + url: https://repo.prefix.dev/conda-forge/win-64/vc14_runtime-14.44.35208-h818238b_32.conda hash: - md5: 603e41da40a765fd47995faa021da946 - sha256: af4b4b354b87a9a8d05b8064ff1ea0b47083274f7c30b4eb96bc2312c9b5f08f + md5: 378d5dcec45eaea8d303da6f00447ac0 + sha256: e3a3656b70d1202e0d042811ceb743bd0d9f7e00e2acdf824d231b044ef6c0fd category: main optional: false - name: vcomp14 @@ -4138,10 +4141,10 @@ package: platform: win-64 dependencies: ucrt: '>=10.0.20348.0' - url: https://repo.prefix.dev/conda-forge/win-64/vcomp14-14.44.35208-h818238b_31.conda + url: https://repo.prefix.dev/conda-forge/win-64/vcomp14-14.44.35208-h818238b_32.conda hash: - md5: a6b1d5c1fc3cb89f88f7179ee6a9afe3 - sha256: 67b317b64f47635415776718d25170a9a6f9a1218c0f5a6202bfd687e07b6ea4 + md5: 58f67b437acbf2764317ba273d731f1d + sha256: f3790c88fbbdc55874f41de81a4237b1b91eab75e05d0e58661518ff04d2a8a1 category: main optional: false - name: vs2015_runtime @@ -4150,10 +4153,10 @@ package: platform: win-64 dependencies: vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/vs2015_runtime-14.44.35208-h38c0c73_31.conda + url: https://repo.prefix.dev/conda-forge/win-64/vs2015_runtime-14.44.35208-h38c0c73_32.conda hash: - md5: d75abcfbc522ccd98082a8c603fce34c - sha256: 8b20152d00e1153ccb1ed377a160110482f286a6d85a82b57ffcd60517d523a7 + md5: dfc1e5bbf1ecb0024a78e4e8bd45239d + sha256: 65cea43f4de99bc81d589e746c538908b2e95aead9042fecfbc56a4d14684a87 category: main optional: false - name: wheel @@ -4349,10 +4352,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/zlib-ng-2.2.5-h1608b31_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/zlib-ng-2.2.5-h32d8bfd_0.conda hash: - md5: 4a12db9135443d6177d2e79177c62b9a - sha256: f405609a36882ab3bc9f17fc277768082e2c321434b57509668e393a3c728c50 + md5: dec092b1a069abafc38655ded65a7b29 + sha256: 67a3113acf3506f1cf1c72e0748742217a20edc6c1c1c19631f901c5e028d2bc category: main optional: false - name: zstandard @@ -4366,10 +4369,10 @@ package: python: '' python_abi: 3.10.* zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/zstandard-0.25.0-py310h139afa4_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/zstandard-0.25.0-py310h139afa4_1.conda hash: - md5: 6b243b9f9477ad0b0a90552ebddb27e7 - sha256: de55fe71fa07bdd77eb6ea8819072d8558f315e3b022b4047f2f941d0854405d + md5: 3741aefc198dfed2e3c9adc79d706bb7 + sha256: b0103e8bb639dbc6b9de8ef9a18a06b403b687a33dec83c25bd003190942259a category: dev optional: true - name: zstandard @@ -4384,10 +4387,10 @@ package: vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/zstandard-0.25.0-py310h1637853_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/zstandard-0.25.0-py310h1637853_1.conda hash: - md5: b45df16a296e7127a14dd9362103b80b - sha256: 1bc80de45c577d2a80afb056a52b873f795ce3ed3d131d44a7320dd82835b8f0 + md5: 1d261480977c268b3b209b7deaca0dd7 + sha256: db2a40dbe124b275fb0b8fdfd6e3b377963849897ab2b4d7696354040c52570b category: dev optional: true - name: zstd @@ -4421,41 +4424,41 @@ package: category: main optional: false - name: geoapps-utils - version: 0.6.0a1.dev69+a6627f0 + version: 0.7.0a1.dev3+80c4658 manager: pip platform: linux-64 dependencies: - geoh5py: 0.12.0a2.dev76+8f4cb4c0 + geoh5py: 0.12.0b4.dev18+8f630a84 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@a6627f0a6e663e9c3f0e9874f401a34ab8990488 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@80c46588d47b70a1dd26aef06ccfa24bc1585502 hash: - sha256: a6627f0a6e663e9c3f0e9874f401a34ab8990488 + sha256: 80c46588d47b70a1dd26aef06ccfa24bc1585502 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@a6627f0a6e663e9c3f0e9874f401a34ab8990488 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@80c46588d47b70a1dd26aef06ccfa24bc1585502 category: main optional: false - name: geoapps-utils - version: 0.6.0a1.dev69+a6627f0 + version: 0.7.0a1.dev3+80c4658 manager: pip platform: win-64 dependencies: - geoh5py: 0.12.0a2.dev76+8f4cb4c0 + geoh5py: 0.12.0b4.dev18+8f630a84 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@a6627f0a6e663e9c3f0e9874f401a34ab8990488 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@80c46588d47b70a1dd26aef06ccfa24bc1585502 hash: - sha256: a6627f0a6e663e9c3f0e9874f401a34ab8990488 + sha256: 80c46588d47b70a1dd26aef06ccfa24bc1585502 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@a6627f0a6e663e9c3f0e9874f401a34ab8990488 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@80c46588d47b70a1dd26aef06ccfa24bc1585502 category: main optional: false - name: geoh5py - version: 0.12.0a2.dev76+8f4cb4c0 + version: 0.12.0b4.dev18+8f630a84 manager: pip platform: linux-64 dependencies: @@ -4463,17 +4466,16 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - pylint: '>=3.3.8,<4.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@8f4cb4c0ebfb6ce25b3be6c83746d184f47a5f67 + url: git+https://github.com/MiraGeoscience/geoh5py.git@8f630a84b2b9f2b7632f895e1521d8d61c04e80e hash: - sha256: 8f4cb4c0ebfb6ce25b3be6c83746d184f47a5f67 + sha256: 8f630a84b2b9f2b7632f895e1521d8d61c04e80e source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@8f4cb4c0ebfb6ce25b3be6c83746d184f47a5f67 + url: git+https://github.com/MiraGeoscience/geoh5py.git@8f630a84b2b9f2b7632f895e1521d8d61c04e80e category: main optional: false - name: geoh5py - version: 0.12.0a2.dev76+8f4cb4c0 + version: 0.12.0b4.dev18+8f630a84 manager: pip platform: win-64 dependencies: @@ -4481,12 +4483,11 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - pylint: '>=3.3.8,<4.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@8f4cb4c0ebfb6ce25b3be6c83746d184f47a5f67 + url: git+https://github.com/MiraGeoscience/geoh5py.git@8f630a84b2b9f2b7632f895e1521d8d61c04e80e hash: - sha256: 8f4cb4c0ebfb6ce25b3be6c83746d184f47a5f67 + sha256: 8f630a84b2b9f2b7632f895e1521d8d61c04e80e source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@8f4cb4c0ebfb6ce25b3be6c83746d184f47a5f67 + url: git+https://github.com/MiraGeoscience/geoh5py.git@8f630a84b2b9f2b7632f895e1521d8d61c04e80e category: main optional: false diff --git a/py-3.11.conda-lock.yml b/py-3.11.conda-lock.yml index 35bba2c..c777d22 100644 --- a/py-3.11.conda-lock.yml +++ b/py-3.11.conda-lock.yml @@ -155,31 +155,31 @@ package: category: main optional: false - name: astroid - version: 3.3.11 + version: 4.0.2 manager: conda platform: linux-64 dependencies: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://repo.prefix.dev/conda-forge/linux-64/astroid-3.3.11-py311h38be061_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/astroid-4.0.2-py311h38be061_0.conda hash: - md5: 773635d5d5594beb7fc47054cea6a741 - sha256: 7473a0c0f53ed38f60cf0bb39b744b4cd88d3bce88dc7487d69f45cffcdaf9f6 - category: main - optional: false + md5: 3bb887a56ea1eccc5c981111d8bab0be + sha256: 69132d79570383ca62d5c038b0a1e9aa30369f6aad44371100ee06584c63dabb + category: dev + optional: true - name: astroid - version: 3.3.11 + version: 4.0.2 manager: conda platform: win-64 dependencies: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://repo.prefix.dev/conda-forge/win-64/astroid-3.3.11-py311h1ea47a8_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/astroid-4.0.2-py311h1ea47a8_0.conda hash: - md5: 4cccc0a3742da6ea198a61ec6b12b6b5 - sha256: a5e8694589a10137416ef44609de13022042a840996387faf10b32abf2b0f9fb - category: main - optional: false + md5: 06910d158185318e16063ca1ebba688a + sha256: c9212886ff75e0ce4f809a0319da3aea63a1f43ca0c4d9af1e34eb7e89430c91 + category: dev + optional: true - name: babel version: 2.17.0 manager: conda @@ -243,7 +243,7 @@ package: category: main optional: false - name: brotli-python - version: 1.1.0 + version: 1.2.0 manager: conda platform: linux-64 dependencies: @@ -252,14 +252,14 @@ package: libstdcxx: '>=14' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://repo.prefix.dev/conda-forge/linux-64/brotli-python-1.1.0-py311h1ddb823_4.conda + url: https://repo.prefix.dev/conda-forge/linux-64/brotli-python-1.2.0-py311h7c6b74e_0.conda hash: - md5: 7138a06a7b0d11a23cfae323e6010a08 - sha256: 318d4985acbf46457d254fbd6f0df80cc069890b5fc0013b3546d88eee1b1a1f + md5: 645bc783bc723d67a294a51bc860762d + sha256: 5e6858dae1935793a7fa7f46d8975b0596b546c28586cb463dd2fdeba3bcc193 category: dev optional: true - name: brotli-python - version: 1.1.0 + version: 1.2.0 manager: conda platform: win-64 dependencies: @@ -268,10 +268,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/brotli-python-1.1.0-py311h3e6a449_4.conda + url: https://repo.prefix.dev/conda-forge/win-64/brotli-python-1.2.0-py311h69b5583_0.conda hash: - md5: 21d3a7fa95d27938158009cd08e461f2 - sha256: d524edc172239fec70ad946e3b2fa1b9d7eea145ad80e9e66da25a4d815770ea + md5: 2df0b338e8fb85c8bdcb38813165b48b + sha256: ba85fe5b277ad03bfac3c4376dd5c50a2216dea58519edf75a92b7763fb4ea98 category: dev optional: true - name: brunsli @@ -280,15 +280,15 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libbrotlicommon: '>=1.1.0,<1.2.0a0' - libbrotlidec: '>=1.1.0,<1.2.0a0' - libbrotlienc: '>=1.1.0,<1.2.0a0' + libbrotlicommon: '>=1.2.0,<1.3.0a0' + libbrotlidec: '>=1.2.0,<1.3.0a0' + libbrotlienc: '>=1.2.0,<1.3.0a0' libgcc: '>=14' libstdcxx: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/brunsli-0.1-he3183e4_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/brunsli-0.1-hd1e3526_2.conda hash: - md5: 799ebfe432cb3949e246b69278ef851c - sha256: fddad9bb57ee7ec619a5cf4591151578a2501c3bf8cb3b4b066ac5b54c85a4dd + md5: 5948f4fead433c6e5c46444dbfb01162 + sha256: b4831ac06bb65561342cedf3d219cf9b096f20b8d62cda74f0177dffed79d4d5 category: main optional: false - name: bzip2 @@ -332,7 +332,7 @@ package: category: main optional: false - name: c-blosc2 - version: 2.21.2 + version: 2.22.0 manager: conda platform: linux-64 dependencies: @@ -342,14 +342,14 @@ package: lz4-c: '>=1.10.0,<1.11.0a0' zlib-ng: '>=2.2.5,<2.3.0a0' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/c-blosc2-2.21.2-h4cfbee9_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/c-blosc2-2.22.0-h4cfbee9_0.conda hash: - md5: 30fe6bea5d1a914883109365eccebf3b - sha256: 18d6e1cd95c59f6e6d090721a9af26c07bf592da51a43818ea923caa8cbaa6d6 + md5: bede98a38485d588b3ec7e4ba2e46532 + sha256: c558bce3c6d1707528a9b54b1af321e3d6968e4db3e5addc9dcb906422026490 category: main optional: false - name: c-blosc2 - version: 2.21.2 + version: 2.22.0 manager: conda platform: win-64 dependencies: @@ -359,34 +359,34 @@ package: vc14_runtime: '>=14.44.35208' zlib-ng: '>=2.2.5,<2.3.0a0' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/c-blosc2-2.21.2-h3cf07e4_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/c-blosc2-2.22.0-h3cf07e4_0.conda hash: - md5: 876ba9bc5eb0e4aa2e2743708b96d09e - sha256: 9aec8a14fe13146b42a1eb16d040036c4e10f1e39605b99e44dc0baa6d002619 + md5: ab0d849766a52945ee1d872abf61fb0c + sha256: 522b3bbfcd30d4559aec29228448aa49ca02d1e9c79f4b6da446462042707680 category: main optional: false - name: ca-certificates - version: 2025.8.3 + version: 2025.10.5 manager: conda platform: linux-64 dependencies: __unix: '' - url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.8.3-hbd8a1cb_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.10.5-hbd8a1cb_0.conda hash: - md5: 74784ee3d225fc3dca89edb635b4e5cc - sha256: 837b795a2bb39b75694ba910c13c15fa4998d4bb2a622c214a6a5174b2ae53d1 + md5: f9e5fbc24009179e8b0409624691758a + sha256: 3b5ad78b8bb61b6cdc0978a6a99f8dfb2cc789a451378d054698441005ecbdb6 category: main optional: false - name: ca-certificates - version: 2025.8.3 + version: 2025.10.5 manager: conda platform: win-64 dependencies: __win: '' - url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.8.3-h4c7d964_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.10.5-h4c7d964_0.conda hash: - md5: c9e0c0f82f6e63323827db462b40ede8 - sha256: 3b82f62baad3fd33827b01b0426e8203a2786c8f452f633740868296bcbe8485 + md5: e54200a1cd1fe33d61c9df8d3b00b743 + sha256: bfb7f9f242f441fdcd80f1199edd2ecf09acea0f2bcef6f07d7cbb1a8131a345 category: main optional: false - name: cached-property @@ -438,48 +438,48 @@ package: category: main optional: false - name: certifi - version: 2025.8.3 + version: 2025.10.5 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.8.3-pyhd8ed1ab_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.10.5-pyhd8ed1ab_0.conda hash: - md5: 11f59985f49df4620890f3e746ed7102 - sha256: a1ad5b0a2a242f439608f22a538d2175cac4444b7b3f4e2b8c090ac337aaea40 + md5: 257ae203f1d204107ba389607d375ded + sha256: 955bac31be82592093f6bc006e09822cd13daf52b28643c9a6abd38cd5f4a306 category: dev optional: true - name: certifi - version: 2025.8.3 + version: 2025.10.5 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.8.3-pyhd8ed1ab_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.10.5-pyhd8ed1ab_0.conda hash: - md5: 11f59985f49df4620890f3e746ed7102 - sha256: a1ad5b0a2a242f439608f22a538d2175cac4444b7b3f4e2b8c090ac337aaea40 + md5: 257ae203f1d204107ba389607d375ded + sha256: 955bac31be82592093f6bc006e09822cd13daf52b28643c9a6abd38cd5f4a306 category: dev optional: true - name: cffi - version: 1.17.1 + version: 2.0.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libffi: '>=3.4.6,<3.5.0a0' + libffi: '>=3.5.2,<3.6.0a0' libgcc: '>=14' pycparser: '' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://repo.prefix.dev/conda-forge/linux-64/cffi-1.17.1-py311h5b438cf_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/cffi-2.0.0-py311h03d9500_1.conda hash: - md5: 82e0123a459d095ac99c76d150ccdacf - sha256: bbd04c8729e6400fa358536b1007c1376cc396d569b71de10f1df7669d44170e + md5: 3912e4373de46adafd8f1e97e4bd166b + sha256: 3ad13377356c86d3a945ae30e9b8c8734300925ef81a3cb0a9db0d755afbe7bb category: dev optional: true - name: cffi - version: 1.17.1 + version: 2.0.0 manager: conda platform: win-64 dependencies: @@ -489,10 +489,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/cffi-1.17.1-py311h3485c13_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/cffi-2.0.0-py311h3485c13_1.conda hash: - md5: 553a1836df919ca232b80ce1324fa5bb - sha256: 46baee342b50ce7fbf4c52267f73327cb0512b970332037c8911afee1e54f063 + md5: f02335db0282d5077df5bc84684f7ff9 + sha256: c9caca6098e3d92b1a269159b759d757518f2c477fbbb5949cb9fee28807c1f1 category: dev optional: true - name: charls @@ -523,27 +523,27 @@ package: category: main optional: false - name: charset-normalizer - version: 3.4.3 + version: 3.4.4 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.3-pyhd8ed1ab_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.4-pyhd8ed1ab_0.conda hash: - md5: 7e7d5ef1b9ed630e4a1c358d6bc62284 - sha256: 838d5a011f0e7422be6427becba3de743c78f3874ad2743c341accbba9bb2624 + md5: a22d1fd9bf98827e280a02875d9a007a + sha256: b32f8362e885f1b8417bac2b3da4db7323faa12d5db62b7fd6691c02d60d6f59 category: dev optional: true - name: charset-normalizer - version: 3.4.3 + version: 3.4.4 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.3-pyhd8ed1ab_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.4-pyhd8ed1ab_0.conda hash: - md5: 7e7d5ef1b9ed630e4a1c358d6bc62284 - sha256: 838d5a011f0e7422be6427becba3de743c78f3874ad2743c341accbba9bb2624 + md5: a22d1fd9bf98827e280a02875d9a007a + sha256: b32f8362e885f1b8417bac2b3da4db7323faa12d5db62b7fd6691c02d60d6f59 category: dev optional: true - name: colorama @@ -571,7 +571,7 @@ package: category: main optional: false - name: coverage - version: 7.10.6 + version: 7.11.3 manager: conda platform: linux-64 dependencies: @@ -580,14 +580,14 @@ package: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* tomli: '' - url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.10.6-py311h3778330_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.11.3-py311h3778330_0.conda hash: - md5: d4d341946049625afebfb720f011753a - sha256: 5728c93177af112d6d53ea8e1e4a11c47395c8f7d50f00b7e3aabc3b0529922f + md5: a004ef1df6211f5ca8ca169735cc5bc4 + sha256: 2d85146ba9f96307722a277649f675801d297f4881c13c8135fc3c6b99a15293 category: dev optional: true - name: coverage - version: 7.10.6 + version: 7.11.3 manager: conda platform: win-64 dependencies: @@ -597,10 +597,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.10.6-py311h3f79411_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.11.3-py311h3f79411_0.conda hash: - md5: cb00671279e93d3007cc55ff53023da7 - sha256: 2262f950b8b32e1a3869b872bbff4c0b7324b8cd81e1c590c953e9c970899572 + md5: ac74a5bc837e249598d1276ef318b07f + sha256: d632cb96b66436e0540993cfd6c11b383250b588c6e0f900bbd3064d2631adac category: dev optional: true - name: dav1d @@ -639,8 +639,8 @@ package: hash: md5: 885745570573eb6a08e021841928297a sha256: 43dca52c96fde0c4845aaff02bcc92f25e1c2e5266ddefc2eac1a3de0960a3b1 - category: main - optional: false + category: dev + optional: true - name: dill version: 0.4.0 manager: conda @@ -651,8 +651,8 @@ package: hash: md5: 885745570573eb6a08e021841928297a sha256: 43dca52c96fde0c4845aaff02bcc92f25e1c2e5266ddefc2eac1a3de0960a3b1 - category: main - optional: false + category: dev + optional: true - name: docutils version: 0.21.2 manager: conda @@ -784,7 +784,7 @@ package: category: dev optional: true - name: h5py - version: 3.14.0 + version: 3.15.1 manager: conda platform: linux-64 dependencies: @@ -795,14 +795,14 @@ package: numpy: '>=1.23,<3' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://repo.prefix.dev/conda-forge/linux-64/h5py-3.14.0-nompi_py311h0b2f468_101.conda + url: https://repo.prefix.dev/conda-forge/linux-64/h5py-3.15.1-nompi_py311h0b2f468_100.conda hash: - md5: b3dd5deacc3147498b31366315fdc6cc - sha256: f5d1955b90eb7060ee6f81bc39de0f4f8e28247b8fe810d70382b4fde9e0e1f9 + md5: 98374cf8d17901bcd934daa7cc8a28e6 + sha256: ff91ec7c4d9250cee9b41a533a8352ed1501d15136aa7cb0443b663c8317ed6e category: main optional: false - name: h5py - version: 3.14.0 + version: 3.15.1 manager: conda platform: win-64 dependencies: @@ -814,10 +814,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/h5py-3.14.0-nompi_py311hc40ba4b_101.conda + url: https://repo.prefix.dev/conda-forge/win-64/h5py-3.15.1-nompi_py311hc40ba4b_100.conda hash: - md5: 2ffcf6af42f0eadff1fa73417b848096 - sha256: 34aae9b53e14cf62373a5bd1f475151430e4257cad6626a5d38469367b049da3 + md5: cf0bb6634fafb0eec7c5e893332d91e0 + sha256: 5a7a857caff0afad0a8ba1eff3491c16a1bb0228231c01e715dc5d2012de340c category: main optional: false - name: hdf5 @@ -909,39 +909,39 @@ package: - name: icu version: '75.1' manager: conda - platform: win-64 + platform: linux-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/icu-75.1-he0c23c2_0.conda + __glibc: '>=2.17,<3.0.a0' + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + url: https://repo.prefix.dev/conda-forge/linux-64/icu-75.1-he02047a_0.conda hash: - md5: 8579b6bb8d18be7c0b27fb08adeeeb40 - sha256: 1d04369a1860a1e9e371b9fc82dd0092b616adcf057d6c88371856669280e920 + md5: 8b189310083baabfb622af68fd9d3ae3 + sha256: 71e750d509f5fa3421087ba88ef9a7b9be11c53174af3aa4d06aff4c18b38e8e category: main optional: false - name: idna - version: '3.10' + version: '3.11' manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/idna-3.11-pyhd8ed1ab_0.conda hash: - md5: 39a4f67be3286c86d696df570b1201b7 - sha256: d7a472c9fd479e2e8dcb83fb8d433fce971ea369d704ece380e876f9c3494e87 + md5: 53abe63df7e10a6ba605dc5f9f961d36 + sha256: ae89d0299ada2a3162c2614a9d26557a92aa6a77120ce142f8e0109bbf0342b0 category: dev optional: true - name: idna - version: '3.10' + version: '3.11' manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/idna-3.11-pyhd8ed1ab_0.conda hash: - md5: 39a4f67be3286c86d696df570b1201b7 - sha256: d7a472c9fd479e2e8dcb83fb8d433fce971ea369d704ece380e876f9c3494e87 + md5: 53abe63df7e10a6ba605dc5f9f961d36 + sha256: ae89d0299ada2a3162c2614a9d26557a92aa6a77120ce142f8e0109bbf0342b0 category: dev optional: true - name: imagecodecs @@ -953,7 +953,7 @@ package: blosc: '>=1.21.6,<2.0a0' brunsli: '>=0.1,<1.0a0' bzip2: '>=1.0.8,<2.0a0' - c-blosc2: '>=2.21.2,<2.22.0a0' + c-blosc2: '>=2.22.0,<2.23.0a0' charls: '>=2.4.2,<2.5.0a0' giflib: '>=5.2.2,<5.3.0a0' jxrlib: '>=1.1,<1.2.0a0' @@ -961,33 +961,33 @@ package: lerc: '>=4.0.0,<5.0a0' libaec: '>=1.1.4,<2.0a0' libavif16: '>=1.3.0,<2.0a0' - libbrotlicommon: '>=1.1.0,<1.2.0a0' - libbrotlidec: '>=1.1.0,<1.2.0a0' - libbrotlienc: '>=1.1.0,<1.2.0a0' - libdeflate: '>=1.24,<1.25.0a0' + libbrotlicommon: '>=1.2.0,<1.3.0a0' + libbrotlidec: '>=1.2.0,<1.3.0a0' + libbrotlienc: '>=1.2.0,<1.3.0a0' + libdeflate: '>=1.25,<1.26.0a0' libgcc: '>=14' libjpeg-turbo: '>=3.1.0,<4.0a0' libjxl: '>=0.11,<0.12.0a0' liblzma: '>=5.8.1,<6.0a0' libpng: '>=1.6.50,<1.7.0a0' libstdcxx: '>=14' - libtiff: '>=4.7.0,<4.8.0a0' + libtiff: '>=4.7.1,<4.8.0a0' libwebp-base: '>=1.6.0,<2.0a0' libzlib: '>=1.3.1,<2.0a0' libzopfli: '>=1.0.3,<1.1.0a0' lz4-c: '>=1.10.0,<1.11.0a0' numpy: '>=1.23,<3' - openjpeg: '>=2.5.3,<3.0a0' + openjpeg: '>=2.5.4,<3.0a0' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* snappy: '>=1.2.2,<1.3.0a0' zfp: '>=1.0.1,<2.0a0' zlib-ng: '>=2.2.5,<2.3.0a0' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/imagecodecs-2025.8.2-py311h5031496_4.conda + url: https://repo.prefix.dev/conda-forge/linux-64/imagecodecs-2025.8.2-py311h99464e2_7.conda hash: - md5: 74f8eae2c83591c6b0583aa78be58368 - sha256: 2731dbc785257a3d0db8dc57fc95a8f8d082831e0a70b0051cc385a568aef14e + md5: d5e5430c5b42fc2adb113ff2b3466839 + sha256: f8b9c87dbea2e6f22ca57da36a7235c9952fa7be7b122d20cdc1d5faa7967b10 category: main optional: false - name: imagecodecs @@ -997,7 +997,7 @@ package: dependencies: blosc: '>=1.21.6,<2.0a0' bzip2: '>=1.0.8,<2.0a0' - c-blosc2: '>=2.21.2,<2.22.0a0' + c-blosc2: '>=2.22.0,<2.23.0a0' charls: '>=2.4.2,<2.5.0a0' giflib: '>=5.2.2,<5.3.0a0' jxrlib: '>=1.1,<1.2.0a0' @@ -1005,21 +1005,21 @@ package: lerc: '>=4.0.0,<5.0a0' libaec: '>=1.1.4,<2.0a0' libavif16: '>=1.3.0,<2.0a0' - libbrotlicommon: '>=1.1.0,<1.2.0a0' - libbrotlidec: '>=1.1.0,<1.2.0a0' - libbrotlienc: '>=1.1.0,<1.2.0a0' - libdeflate: '>=1.24,<1.25.0a0' + libbrotlicommon: '>=1.2.0,<1.3.0a0' + libbrotlidec: '>=1.2.0,<1.3.0a0' + libbrotlienc: '>=1.2.0,<1.3.0a0' + libdeflate: '>=1.25,<1.26.0a0' libjpeg-turbo: '>=3.1.0,<4.0a0' libjxl: '>=0.11,<0.12.0a0' liblzma: '>=5.8.1,<6.0a0' libpng: '>=1.6.50,<1.7.0a0' - libtiff: '>=4.7.0,<4.8.0a0' + libtiff: '>=4.7.1,<4.8.0a0' libwebp-base: '>=1.6.0,<2.0a0' libzlib: '>=1.3.1,<2.0a0' libzopfli: '>=1.0.3,<1.1.0a0' lz4-c: '>=1.10.0,<1.11.0a0' numpy: '>=1.23,<3' - openjpeg: '>=2.5.3,<3.0a0' + openjpeg: '>=2.5.4,<3.0a0' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* snappy: '>=1.2.2,<1.3.0a0' @@ -1029,10 +1029,10 @@ package: zfp: '>=1.0.1,<2.0a0' zlib-ng: '>=2.2.5,<2.3.0a0' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/imagecodecs-2025.8.2-py311h48a3f50_4.conda + url: https://repo.prefix.dev/conda-forge/win-64/imagecodecs-2025.8.2-py311haf4ede9_7.conda hash: - md5: 48d52b376ce8e6063974415547795279 - sha256: fb7324fa76acf14100b2a6ba315991d759c4e3049b1cf336f09b994c68f106d8 + md5: 463d2ee214fa02d847d6d356cd8690ab + sha256: 7dadb5fe32a12cc0655545aba6f0204e388148441fb2785621d85d5e2c474b52 category: main optional: false - name: imageio @@ -1114,53 +1114,55 @@ package: category: main optional: false - name: iniconfig - version: 2.0.0 + version: 2.3.0 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/iniconfig-2.3.0-pyhd8ed1ab_0.conda hash: - md5: 6837f3eff7dcea42ecd714ce1ac2b108 - sha256: 0ec8f4d02053cd03b0f3e63168316530949484f80e16f5e2fb199a1d117a89ca + md5: 9614359868482abba1bd15ce465e3c42 + sha256: e1a9e3b1c8fe62dc3932a616c284b5d8cbe3124bbfbedcf4ce5c828cb166ee19 category: dev optional: true - name: iniconfig - version: 2.0.0 + version: 2.3.0 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/iniconfig-2.3.0-pyhd8ed1ab_0.conda hash: - md5: 6837f3eff7dcea42ecd714ce1ac2b108 - sha256: 0ec8f4d02053cd03b0f3e63168316530949484f80e16f5e2fb199a1d117a89ca + md5: 9614359868482abba1bd15ce465e3c42 + sha256: e1a9e3b1c8fe62dc3932a616c284b5d8cbe3124bbfbedcf4ce5c828cb166ee19 category: dev optional: true - name: isort - version: 6.0.1 + version: 7.0.0 manager: conda platform: linux-64 dependencies: - python: '>=3.9,<4.0' - url: https://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_1.conda + importlib-metadata: '>=4.6.0' + python: '>=3.10,<4.0' + url: https://repo.prefix.dev/conda-forge/noarch/isort-7.0.0-pyhd8ed1ab_0.conda hash: - md5: c25d1a27b791dab1797832aafd6a3e9a - sha256: e1d0e81e3c3da5d7854f9f57ffb89d8f4505bb64a2f05bb01d78eff24344a105 - category: main - optional: false + md5: 55a61979242077b2cc377c74326ea9f0 + sha256: 13b0005877f553eb2e5c50447c9d0047e7257124ec2d1569d7dad35697790237 + category: dev + optional: true - name: isort - version: 6.0.1 + version: 7.0.0 manager: conda platform: win-64 dependencies: - python: '>=3.9,<4.0' - url: https://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_1.conda + importlib-metadata: '>=4.6.0' + python: '>=3.10,<4.0' + url: https://repo.prefix.dev/conda-forge/noarch/isort-7.0.0-pyhd8ed1ab_0.conda hash: - md5: c25d1a27b791dab1797832aafd6a3e9a - sha256: e1d0e81e3c3da5d7854f9f57ffb89d8f4505bb64a2f05bb01d78eff24344a105 - category: main - optional: false + md5: 55a61979242077b2cc377c74326ea9f0 + sha256: 13b0005877f553eb2e5c50447c9d0047e7257124ec2d1569d7dad35697790237 + category: dev + optional: true - name: jinja2 version: 3.1.6 manager: conda @@ -1322,10 +1324,11 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.44-h1423503_1.conda + zstd: '>=1.5.7,<1.6.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.44-h1aa0949_5.conda hash: - md5: 0be7c6e070c19105f966d3758448d018 - sha256: 1a620f27d79217c1295049ba214c2f80372062fd251b569e9873d4a953d27554 + md5: 511ed8935448c1875776b60ad3daf3a1 + sha256: dab1fbf65abb05d3f2ee49dff90d60eeb2e02039fcb561343c7cea5dea523585 category: main optional: false - name: lerc @@ -1426,10 +1429,10 @@ package: platform: linux-64 dependencies: libopenblas: '>=0.3.30,<0.3.31.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libblas-3.9.0-35_h4a7cf45_openblas.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libblas-3.9.0-38_h4a7cf45_openblas.conda hash: - md5: 6da7e852c812a84096b68158574398d0 - sha256: 6cae2184069dd6527a405bc4a3de1290729f6f1c7a475fa4c937a6c02e05f058 + md5: 3509b5e2aaa5f119013c8969fdd9a905 + sha256: b26a32302194e05fa395d5135699fd04a905c6ad71f24333f97c64874e053623 category: main optional: false - name: libblas @@ -1437,96 +1440,96 @@ package: manager: conda platform: win-64 dependencies: - mkl: '>=2024.2.2,<2025.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/libblas-3.9.0-35_h5709861_mkl.conda + mkl: '>=2025.3.0,<2026.0a0' + url: https://repo.prefix.dev/conda-forge/win-64/libblas-3.9.0-38_hf2e6a31_mkl.conda hash: - md5: 45d98af023f8b4a7640b1f713ce6b602 - sha256: 4180e7ab27ed03ddf01d7e599002fcba1b32dcb68214ee25da823bac371ed362 + md5: dcee15907da751895e20b4d1ac94568d + sha256: 363920dbd6a4c09f419a4e032568d5468dc9196e8c9e401af4e8026ecf88f2b7 category: main optional: false - name: libbrotlicommon - version: 1.1.0 + version: 1.2.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlicommon-1.1.0-hb03c661_4.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlicommon-1.2.0-h09219d5_0.conda hash: - md5: 1d29d2e33fe59954af82ef54a8af3fe1 - sha256: 2338a92d1de71f10c8cf70f7bb9775b0144a306d75c4812276749f54925612b6 + md5: 9b3117ec960b823815b02190b41c0484 + sha256: fbbcd11742bb8c96daa5f4f550f1804a902708aad2092b39bec3faaa2c8ae88a category: main optional: false - name: libbrotlicommon - version: 1.1.0 + version: 1.2.0 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libbrotlicommon-1.1.0-hfd05255_4.conda + url: https://repo.prefix.dev/conda-forge/win-64/libbrotlicommon-1.2.0-hc82b238_0.conda hash: - md5: 58aec7a295039d8614175eae3a4f8778 - sha256: 65d0aaf1176761291987f37c8481be132060cc3dbe44b1550797bc27d1a0c920 + md5: a5607006c2135402ca3bb96ff9b87896 + sha256: 938078532c3a09e9687747fa562c08ece4a35545467ec26e5be9265a5dbff928 category: main optional: false - name: libbrotlidec - version: 1.1.0 + version: 1.2.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libbrotlicommon: 1.1.0 + libbrotlicommon: 1.2.0 libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlidec-1.1.0-hb03c661_4.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlidec-1.2.0-hd53d788_0.conda hash: - md5: 5cb5a1c9a94a78f5b23684bcb845338d - sha256: fcec0d26f67741b122f0d5eff32f0393d7ebd3ee6bb866ae2f17f3425a850936 + md5: c183787d2b228775dece45842abbbe53 + sha256: f7f357c33bd10afd58072ad4402853a8522d52d00d7ae9adb161ecf719f63574 category: main optional: false - name: libbrotlidec - version: 1.1.0 + version: 1.2.0 manager: conda platform: win-64 dependencies: - libbrotlicommon: 1.1.0 + libbrotlicommon: 1.2.0 ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libbrotlidec-1.1.0-hfd05255_4.conda + url: https://repo.prefix.dev/conda-forge/win-64/libbrotlidec-1.2.0-h431afc6_0.conda hash: - md5: bf0ced5177fec8c18a7b51d568590b7c - sha256: aa03aff197ed503e38145d0d0f17c30382ac1c6d697535db24c98c272ef57194 + md5: edc47a5d0ec6d95efefab3e99d0f4df0 + sha256: 229edc6f56b51dde812d1932b4c6f477654c2f5d477fff9cff184ebd4ce158bd category: main optional: false - name: libbrotlienc - version: 1.1.0 + version: 1.2.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libbrotlicommon: 1.1.0 + libbrotlicommon: 1.2.0 libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlienc-1.1.0-hb03c661_4.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlienc-1.2.0-h02bd7ab_0.conda hash: - md5: 2e55011fa483edb8bfe3fd92e860cd79 - sha256: d42c7f0afce21d5279a0d54ee9e64a2279d35a07a90e0c9545caae57d6d7dc57 + md5: b7a924e3e9ebc7938ffc7d94fe603ed3 + sha256: 1370c8b1a215751c4592bf95d4b5d11bac91c577770efcb237e3a0f35c326559 category: main optional: false - name: libbrotlienc - version: 1.1.0 + version: 1.2.0 manager: conda platform: win-64 dependencies: - libbrotlicommon: 1.1.0 + libbrotlicommon: 1.2.0 ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libbrotlienc-1.1.0-hfd05255_4.conda + url: https://repo.prefix.dev/conda-forge/win-64/libbrotlienc-1.2.0-ha521d6b_0.conda hash: - md5: 37f4669f8ac2f04d826440a8f3f42300 - sha256: a593cde3e728a1e0486a19537846380e3ce90ae9d6c22c1412466a49474eeeed + md5: f780291507a3f91d93a7147daea082f8 + sha256: eb54110ee720e4a73b034d0c2bb0f26eadf79a1bd6b0656ebdf914da8f14989d category: main optional: false - name: libcblas @@ -1535,10 +1538,10 @@ package: platform: linux-64 dependencies: libblas: 3.9.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libcblas-3.9.0-35_h0358290_openblas.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libcblas-3.9.0-38_h0358290_openblas.conda hash: - md5: 8aa3389d36791ecd31602a247b1f3641 - sha256: fb77db75b0bd50856a1d53edcfd70c3314cde7e7c7d87479ee9d6b7fdbe824f1 + md5: bcd928a9376a215cd9164a4312dd5e98 + sha256: 7fe653f45c01eb16d7b48ad934b068dad2885d6f4a7c41512b6a5f1f522bffe9 category: main optional: false - name: libcblas @@ -1547,33 +1550,33 @@ package: platform: win-64 dependencies: libblas: 3.9.0 - url: https://repo.prefix.dev/conda-forge/win-64/libcblas-3.9.0-35_h2a3cdd5_mkl.conda + url: https://repo.prefix.dev/conda-forge/win-64/libcblas-3.9.0-38_h2a3cdd5_mkl.conda hash: - md5: 9639091d266e92438582d0cc4cfc8350 - sha256: 88939f6c1b5da75bd26ce663aa437e1224b26ee0dab5e60cecc77600975f397e + md5: 0c1602b1d15eb3d4da15bad122740df8 + sha256: f2bec12b960877387e5e8f84af5a50e19e97f52ddb1bed6b93ea38c4fb18ab62 category: main optional: false - name: libcurl - version: 8.14.1 + version: 8.17.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' krb5: '>=1.21.3,<1.22.0a0' - libgcc: '>=13' - libnghttp2: '>=1.64.0,<2.0a0' + libgcc: '>=14' + libnghttp2: '>=1.67.0,<2.0a0' libssh2: '>=1.11.1,<2.0a0' libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.5.0,<4.0a0' + openssl: '>=3.5.4,<4.0a0' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libcurl-8.14.1-h332b0f4_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libcurl-8.17.0-h4e3cde8_0.conda hash: - md5: 45f6713cb00f124af300342512219182 - sha256: b6c5cf340a4f80d70d64b3a29a7d9885a5918d16a5cb952022820e6d3e79dc8b + md5: 01e149d4a53185622dc2e788281961f2 + sha256: 100e29ca864c32af15a5cc354f502d07b2600218740fdf2439fa7d66b50b3529 category: main optional: false - name: libcurl - version: 8.14.1 + version: 8.17.0 manager: conda platform: win-64 dependencies: @@ -1581,39 +1584,39 @@ package: libssh2: '>=1.11.1,<2.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/libcurl-8.14.1-h88aaa65_0.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/libcurl-8.17.0-h43ecb02_0.conda hash: - md5: 836b9c08f34d2017dbcaec907c6a1138 - sha256: b2cface2cf35d8522289df7fffc14370596db6f6dc481cc1b6ca313faeac19d8 + md5: cfade9be135edb796837e7d4c288c0fb + sha256: 651daa5d2bad505b5c72b1d5d4d8c7fc0776ab420e67af997ca9391b6854b1b3 category: main optional: false - name: libdeflate - version: '1.24' + version: '1.25' manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libdeflate-1.24-h86f0d12_0.conda + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/libdeflate-1.25-h17f619e_0.conda hash: - md5: 64f0c503da58ec25ebd359e4d990afa8 - sha256: 8420748ea1cc5f18ecc5068b4f24c7a023cc9b20971c99c824ba10641fb95ddf + md5: 6c77a605a7a689d17d4819c0f8ac9a00 + sha256: aa8e8c4be9a2e81610ddf574e05b64ee131fab5e0e3693210c9d6d2fba32c680 category: main optional: false - name: libdeflate - version: '1.24' + version: '1.25' manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libdeflate-1.24-h76ddb4d_0.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/libdeflate-1.25-h51727cc_0.conda hash: - md5: 08d988e266c6ae77e03d164b83786dc4 - sha256: 65347475c0009078887ede77efe60db679ea06f2b56f7853b9310787fe5ad035 + md5: e77030e67343e28b084fabd7db0ce43e + sha256: 834e4881a18b690d5ec36f44852facd38e13afe599e369be62d29bd675f107ee category: main optional: false - name: libedit @@ -1670,30 +1673,30 @@ package: category: main optional: false - name: libffi - version: 3.4.6 + version: 3.5.2 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libffi-3.4.6-h2dba641_1.conda + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/libffi-3.5.2-h9ec8514_0.conda hash: - md5: ede4673863426c0883c0063d853bbd85 - sha256: 764432d32db45466e87f10621db5b74363a9f847d2b8b1f9743746cd160f06ab + md5: 35f29eec58405aaf55e01cb470d8c26a + sha256: 25cbdfa65580cfab1b8d15ee90b4c9f1e0d72128f1661449c9a999d341377d54 category: main optional: false - name: libffi - version: 3.4.6 + version: 3.5.2 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/libffi-3.4.6-h537db12_1.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/libffi-3.5.2-h52bdfb6_0.conda hash: - md5: 85d8fa5e55ed8f93f874b3b23ed54ec6 - sha256: d3b0b8812eab553d3464bbd68204f007f1ebadf96ce30eb0cbc5159f72e353f5 + md5: ba4ad812d2afc22b9a34ce8327a0930f + sha256: ddff25aaa4f0aa535413f5d831b04073789522890a4d8626366e43ecde1534a3 category: main optional: false - name: libfreetype @@ -1752,90 +1755,90 @@ package: category: main optional: false - name: libgcc - version: 15.1.0 + version: 15.2.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' _openmp_mutex: '>=4.5' - url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-15.1.0-h767d61c_5.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-15.2.0-h767d61c_7.conda hash: - md5: 264fbfba7fb20acf3b29cde153e345ce - sha256: 0caed73aac3966bfbf5710e06c728a24c6c138605121a3dacb2e03440e8baa6a + md5: c0374badb3a5d4b1372db28d19462c53 + sha256: 08f9b87578ab981c7713e4e6a7d935e40766e10691732bba376d4964562bcb45 category: main optional: false - name: libgcc - version: 15.1.0 + version: 15.2.0 manager: conda platform: win-64 dependencies: _openmp_mutex: '>=4.5' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' - url: https://repo.prefix.dev/conda-forge/win-64/libgcc-15.1.0-h1383e82_5.conda + url: https://repo.prefix.dev/conda-forge/win-64/libgcc-15.2.0-h1383e82_7.conda hash: - md5: c84381a01ede0e28d632fdbeea2debb2 - sha256: 9b997baa85ba495c04e1b30f097b80420c02dcaca6441c4bf2c6bb4b2c5d2114 + md5: 926a82fc4fa5b284b1ca1fb74f20dee2 + sha256: 174c4c75b03923ac755f227c96d956f7b4560a4b7dd83c0332709c50ff78450f category: main optional: false - name: libgcc-ng - version: 15.1.0 + version: 15.2.0 manager: conda platform: linux-64 dependencies: - libgcc: 15.1.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-ng-15.1.0-h69a702a_5.conda + libgcc: 15.2.0 + url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-ng-15.2.0-h69a702a_7.conda hash: - md5: 069afdf8ea72504e48d23ae1171d951c - sha256: f54bb9c3be12b24be327f4c1afccc2969712e0b091cdfbd1d763fb3e61cda03f + md5: 280ea6eee9e2ddefde25ff799c4f0363 + sha256: 2045066dd8e6e58aaf5ae2b722fb6dfdbb57c862b5f34ac7bfb58c40ef39b6ad category: main optional: false - name: libgfortran - version: 15.1.0 + version: 15.2.0 manager: conda platform: linux-64 dependencies: - libgfortran5: 15.1.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran-15.1.0-h69a702a_5.conda + libgfortran5: 15.2.0 + url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran-15.2.0-h69a702a_7.conda hash: - md5: 0c91408b3dec0b97e8a3c694845bd63b - sha256: 4c1a526198d0d62441549fdfd668cc8e18e77609da1e545bdcc771dd8dc6a990 + md5: 8621a450add4e231f676646880703f49 + sha256: 9ca24328e31c8ef44a77f53104773b9fe50ea8533f4c74baa8489a12de916f02 category: main optional: false - name: libgfortran5 - version: 15.1.0 + version: 15.2.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=15.1.0' - url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran5-15.1.0-hcea5267_5.conda + libgcc: '>=15.2.0' + url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran5-15.2.0-hcd61629_7.conda hash: - md5: fbd4008644add05032b6764807ee2cba - sha256: 9d06adc6d8e8187ddc1cad87525c690bc8202d8cb06c13b76ab2fc80a35ed565 + md5: f116940d825ffc9104400f0d7f1a4551 + sha256: e93ceda56498d98c9f94fedec3e2d00f717cbedfc97c49be0e5a5828802f2d34 category: main optional: false - name: libgomp - version: 15.1.0 + version: 15.2.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libgomp-15.1.0-h767d61c_5.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgomp-15.2.0-h767d61c_7.conda hash: - md5: dcd5ff1940cd38f6df777cac86819d60 - sha256: 125051d51a8c04694d0830f6343af78b556dd88cc249dfec5a97703ebfb1832d + md5: f7b4d76975aac7e5d9e6ad13845f92fe + sha256: e9fb1c258c8e66ee278397b5822692527c5f5786d372fe7a869b900853f3f5ca category: main optional: false - name: libgomp - version: 15.1.0 + version: 15.2.0 manager: conda platform: win-64 dependencies: libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' - url: https://repo.prefix.dev/conda-forge/win-64/libgomp-15.1.0-h1383e82_5.conda + url: https://repo.prefix.dev/conda-forge/win-64/libgomp-15.2.0-h1383e82_7.conda hash: - md5: eae9a32a85152da8e6928a703a514d35 - sha256: 65fd558d8f3296e364b8ae694932a64642fdd26d8eb4cf7adf08941e449be926 + md5: 7f970a7f9801622add7746aa3cbc24d5 + sha256: b8b569a9d3ec8f13531c220d3ad8e1ff35c75902c89144872e7542a77cb8c10d category: main optional: false - name: libhwloc @@ -1863,10 +1866,10 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' libstdcxx: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libhwy-1.3.0-h4c17acf_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libhwy-1.3.0-h4c17acf_1.conda hash: - md5: c563a24389a37a802c72e0c1a11bdd56 - sha256: 90db350957e1ee3b7122ededf0edf02f9cae5b1d3e119a6b1bc32af40adb1a5b + md5: c2a0c1d0120520e979685034e0b79859 + sha256: 2bdd1cdd677b119abc5e83069bec2e28fe6bfb21ebaea3cd07acee67f38ea274 category: main optional: false - name: libhwy @@ -1875,12 +1878,12 @@ package: 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/libhwy-1.3.0-h47aaa27_0.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/libhwy-1.3.0-ha71e874_1.conda hash: - md5: d175ef31c07023f9bc7f5deb274898c6 - sha256: 0c0d146bb142f86132356aabda2590498bd1dcae8396bbb7891954b6de9479e9 + md5: f4649d4b6bf40d616eda57d6255d2333 + sha256: c722a04f065656b988a46dee87303ff0bf037179c50e2e76704b693def7f9a96 category: main optional: false - name: libiconv @@ -1898,30 +1901,30 @@ package: category: main optional: false - name: libjpeg-turbo - version: 3.1.0 + version: 3.1.2 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libjpeg-turbo-3.1.0-hb9d3cd8_0.conda + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/libjpeg-turbo-3.1.2-hb03c661_0.conda hash: - md5: 9fa334557db9f63da6c9285fd2a48638 - sha256: 98b399287e27768bf79d48faba8a99a2289748c65cd342ca21033fab1860d4a4 + md5: 8397539e3a0bbd1695584fb4f927485a + sha256: cc9aba923eea0af8e30e0f94f2ad7156e2984d80d1e8e7fe6be5a1f257f0eb32 category: main optional: false - name: libjpeg-turbo - version: 3.1.0 + version: 3.1.2 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libjpeg-turbo-3.1.0-h2466b09_0.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/libjpeg-turbo-3.1.2-hfd05255_0.conda hash: - md5: 7c51d27540389de84852daa1cdb9c63c - sha256: e61b0adef3028b51251124e43eb6edf724c67c0f6736f1628b02511480ac354e + md5: 56a686f92ac0273c0f6af58858a3f013 + sha256: 795e2d4feb2f7fc4a2c6e921871575feb32b8082b5760726791f080d1e2c2597 category: main optional: false - name: libjxl @@ -1930,15 +1933,15 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libbrotlidec: '>=1.1.0,<1.2.0a0' - libbrotlienc: '>=1.1.0,<1.2.0a0' + libbrotlidec: '>=1.2.0,<1.3.0a0' + libbrotlienc: '>=1.2.0,<1.3.0a0' libgcc: '>=14' libhwy: '>=1.3.0,<1.4.0a0' libstdcxx: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libjxl-0.11.1-h6cb5226_4.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libjxl-0.11.1-hf08fa70_5.conda hash: - md5: f2840d9c2afb19e303e126c9d3a04b36 - sha256: b9d924d69fc84cd3c660a181985748d9c2df34cd7c7bb03b92d8f70efa7753d9 + md5: 82954a6f42e3fba59628741dca105c98 + sha256: 6b9524a6a7ea6ef1ac791b697f660c2898171ae505d12e6d27509b59cf059ee6 category: main optional: false - name: libjxl @@ -1946,16 +1949,16 @@ package: manager: conda platform: win-64 dependencies: - libbrotlidec: '>=1.1.0,<1.2.0a0' - libbrotlienc: '>=1.1.0,<1.2.0a0' + libbrotlidec: '>=1.2.0,<1.3.0a0' + libbrotlienc: '>=1.2.0,<1.3.0a0' libhwy: '>=1.3.0,<1.4.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libjxl-0.11.1-hb7713f0_4.conda + url: https://repo.prefix.dev/conda-forge/win-64/libjxl-0.11.1-hac9b6f3_5.conda hash: - md5: f0584648fbaf89d1cef77d94bc838d3a - sha256: 019de576f4eb0ca78ba2466514f4f84b83e222d9be83ea920f6c0f3ae260b71a + md5: 8e3cc52433c99ad9632f430d3ac2a077 + sha256: 54e35ad6152fb705f26491c6651d4b77757315c446a494ffc477f36fb2203c79 category: main optional: false - name: liblapack @@ -1964,10 +1967,10 @@ package: platform: linux-64 dependencies: libblas: 3.9.0 - url: https://repo.prefix.dev/conda-forge/linux-64/liblapack-3.9.0-35_h47877c9_openblas.conda + url: https://repo.prefix.dev/conda-forge/linux-64/liblapack-3.9.0-38_h47877c9_openblas.conda hash: - md5: aa0b36b71d44f74686f13b9bfabec891 - sha256: 5aceb67704af9185084ccdc8d841845df498a9af52783b858ceacd3e5b9e7dd8 + md5: 88f10bff57b423a3fd2d990c6055771e + sha256: 63d6073dd4f82ab46943ad99a22fc4edda83b0f8fe6170bdaba7a43352bed007 category: main optional: false - name: liblapack @@ -1976,10 +1979,10 @@ package: platform: win-64 dependencies: libblas: 3.9.0 - url: https://repo.prefix.dev/conda-forge/win-64/liblapack-3.9.0-35_hf9ab0e9_mkl.conda + url: https://repo.prefix.dev/conda-forge/win-64/liblapack-3.9.0-38_hf9ab0e9_mkl.conda hash: - md5: 0c6ed9d722cecda18f50f17fb3c30002 - sha256: 56e0992fb58eed8f0d5fa165b8621fa150b84aa9af1467ea0a7a9bb7e2fced4f + md5: eb3167046ffba0ceb4a8824fb1b79a69 + sha256: 3b8d2d800f48fb9045a976c5a10cefe742142df88decf5a5108fe6b7c8fb5b50 category: main optional: false - name: liblzma @@ -2049,10 +2052,10 @@ package: libgcc: '>=14' libgfortran: '' libgfortran5: '>=14.3.0' - url: https://repo.prefix.dev/conda-forge/linux-64/libopenblas-0.3.30-pthreads_h94d23a6_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libopenblas-0.3.30-pthreads_h94d23a6_3.conda hash: - md5: dfc5aae7b043d9f56ba99514d5e60625 - sha256: 1b51d1f96e751dc945cc06f79caa91833b0c3326efe24e9b506bd64ef49fc9b0 + md5: ac2e4832427d6b159576e8a68305c722 + sha256: 200899e5acc01fa29550d2782258d9cf33e55ce4cbce8faed9c6fe0b774852aa category: main optional: false - name: libpng @@ -2085,31 +2088,32 @@ package: category: main optional: false - name: libsqlite - version: 3.50.4 + version: 3.51.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' + icu: '>=75.1,<76.0a0' libgcc: '>=14' libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.50.4-h0c1763c_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.51.0-hee844dc_0.conda hash: - md5: 0b367fad34931cb79e0d6b7e5c06bb1c - sha256: 6d9c32fc369af5a84875725f7ddfbfc2ace795c28f246dc70055a79f9b2003da + md5: 729a572a3ebb8c43933b30edcc628ceb + sha256: 4c992dcd0e34b68f843e75406f7f303b1b97c248d18f3c7c330bdc0bc26ae0b3 category: main optional: false - name: libsqlite - version: 3.50.4 + version: 3.51.0 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.50.4-hf5d6505_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.51.0-hf5d6505_0.conda hash: - md5: ccb20d946040f86f0c05b644d5eadeca - sha256: 5dc4f07b2d6270ac0c874caec53c6984caaaa84bc0d3eb593b0edf3dc8492efa + md5: d2c9300ebd2848862929b18c264d1b1e + sha256: 2373bd7450693bd0f624966e1bee2f49b0bf0ffbc114275ed0a43cf35aec5b21 category: main optional: false - name: libssh2 @@ -2144,38 +2148,38 @@ package: category: main optional: false - name: libstdcxx - version: 15.1.0 + version: 15.2.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: 15.1.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-15.1.0-h8f9b012_5.conda + libgcc: 15.2.0 + url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-15.2.0-h8f9b012_7.conda hash: - md5: 4e02a49aaa9d5190cb630fa43528fbe6 - sha256: 0f5f61cab229b6043541c13538d75ce11bd96fb2db76f94ecf81997b1fde6408 + md5: 5b767048b1b3ee9a954b06f4084f93dc + sha256: 1b981647d9775e1cdeb2fab0a4dd9cd75a6b0de2963f6c3953dbd712f78334b3 category: main optional: false - name: libstdcxx-ng - version: 15.1.0 + version: 15.2.0 manager: conda platform: linux-64 dependencies: - libstdcxx: 15.1.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-15.1.0-h4852527_5.conda + libstdcxx: 15.2.0 + url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-15.2.0-h4852527_7.conda hash: - md5: 8bba50c7f4679f08c861b597ad2bda6b - sha256: 7b8cabbf0ab4fe3581ca28fe8ca319f964078578a51dd2ca3f703c1d21ba23ff + md5: f627678cf829bd70bccf141a19c3ad3e + sha256: 024fd46ac3ea8032a5ec3ea7b91c4c235701a8bf0e6520fe5e6539992a6bd05f category: main optional: false - name: libtiff - version: 4.7.0 + version: 4.7.1 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' lerc: '>=4.0.0,<5.0a0' - libdeflate: '>=1.24,<1.25.0a0' + libdeflate: '>=1.25,<1.26.0a0' libgcc: '>=14' libjpeg-turbo: '>=3.1.0,<4.0a0' liblzma: '>=5.8.1,<6.0a0' @@ -2183,19 +2187,19 @@ package: libwebp-base: '>=1.6.0,<2.0a0' libzlib: '>=1.3.1,<2.0a0' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libtiff-4.7.0-h8261f1e_6.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libtiff-4.7.1-h9d88235_1.conda hash: - md5: b6093922931b535a7ba566b6f384fbe6 - sha256: c62694cd117548d810d2803da6d9063f78b1ffbf7367432c5388ce89474e9ebe + md5: cd5a90476766d53e901500df9215e927 + sha256: e5f8c38625aa6d567809733ae04bb71c161a42e44a9fa8227abe61fa5c60ebe0 category: main optional: false - name: libtiff - version: 4.7.0 + version: 4.7.1 manager: conda platform: win-64 dependencies: lerc: '>=4.0.0,<5.0a0' - libdeflate: '>=1.24,<1.25.0a0' + libdeflate: '>=1.25,<1.26.0a0' libjpeg-turbo: '>=3.1.0,<4.0a0' liblzma: '>=5.8.1,<6.0a0' libzlib: '>=1.3.1,<2.0a0' @@ -2203,23 +2207,23 @@ package: vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/libtiff-4.7.0-h550210a_6.conda + url: https://repo.prefix.dev/conda-forge/win-64/libtiff-4.7.1-h8f73337_1.conda hash: - md5: 72d45aa52ebca91aedb0cfd9eac62655 - sha256: fd27821c8cfc425826f13760c3263d7b3b997c5372234cefa1586ff384dcc989 + md5: 549845d5133100142452812feb9ba2e8 + sha256: f1b8cccaaeea38a28b9cd496694b2e3d372bb5be0e9377c9e3d14b330d1cba8a category: main optional: false - name: libuuid - version: 2.41.1 + version: 2.41.2 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libuuid-2.41.1-he9a06e4_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libuuid-2.41.2-he9a06e4_0.conda hash: - md5: af930c65e9a79a3423d6d36e265cef65 - sha256: 776e28735cee84b97e4d05dd5d67b95221a3e2c09b8b13e3d6dbe6494337d527 + md5: 80c07c68d2f6870250959dcc95b209d1 + sha256: e5ec6d2ad7eef538ddcb9ea62ad4346fde70a4736342c4ad87bd713641eb9808 category: main optional: false - name: libwebp-base @@ -2255,10 +2259,10 @@ package: platform: win-64 dependencies: ucrt: '' - url: https://repo.prefix.dev/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h57928b3_9.conda + url: https://repo.prefix.dev/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h57928b3_10.conda hash: - md5: 08bfa5da6e242025304b206d152479ef - sha256: 373f2973b8a358528b22be5e8d84322c165b4c5577d24d94fd67ad1bb0a0f261 + md5: 8a86073cf3b343b87d03f41790d8b4e5 + sha256: 0fccf2d17026255b6e10ace1f191d0a2a18f2d65088fd02430be17c701f8ffe0 category: main optional: false - name: libxcb @@ -2307,40 +2311,38 @@ package: category: main optional: false - name: libxml2 - version: 2.15.0 + version: 2.15.1 manager: conda platform: win-64 dependencies: - icu: '>=75.1,<76.0a0' libiconv: '>=1.18,<2.0a0' liblzma: '>=5.8.1,<6.0a0' - libxml2-16: 2.15.0 + libxml2-16: 2.15.1 libzlib: '>=1.3.1,<2.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libxml2-2.15.0-ha29bfb0_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libxml2-2.15.1-h5d26750_0.conda hash: - md5: 5262552eb2f0d0b443adcfa265d97f0a - sha256: c3c2c74bd917d83b26c102b18bde97759c23f24e0260beb962acf7385627fc38 + md5: 9176ee05643a1bfe7f2e7b4c921d2c3d + sha256: f507960adf64ee9c9c7b7833d8b11980765ebd2bf5345f73d5a3b21b259eaed5 category: main optional: false - name: libxml2-16 - version: 2.15.0 + version: 2.15.1 manager: conda platform: win-64 dependencies: - icu: '>=75.1,<76.0a0' libiconv: '>=1.18,<2.0a0' liblzma: '>=5.8.1,<6.0a0' libzlib: '>=1.3.1,<2.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libxml2-16-2.15.0-h06f855e_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libxml2-16-2.15.1-h692994f_0.conda hash: - md5: a1071825a90769083fce8dbcefcccd65 - sha256: 15337581264464842ff28f616422b786161bee0169610ff292e0ea75fa78dba8 + md5: 70ca4626111579c3cd63a7108fe737f9 + sha256: 04129dc2df47a01c55e5ccf8a18caefab94caddec41b3b10fbc409e980239eb9 category: main optional: false - name: libzlib @@ -2397,17 +2399,17 @@ package: category: main optional: false - name: llvm-openmp - version: 20.1.8 + version: 21.1.5 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-20.1.8-hfa2b4ca_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-21.1.5-hfa2b4ca_0.conda hash: - md5: 2dc2edf349464c8b83a576175fc2ad42 - sha256: 8970b7f9057a1c2c18bfd743c6f5ce73b86197d7724423de4fa3d03911d5874b + md5: 3bd3154b24a1b9489d4ab04d62ffcc86 + sha256: 8c5106720e5414f48344fd28eae4db4f1a382336d8a0f30f71d41d8ae730fbb6 category: main optional: false - name: lz4-c @@ -2439,34 +2441,34 @@ package: category: main optional: false - name: markupsafe - version: 3.0.2 + version: 3.0.3 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' + libgcc: '>=14' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://repo.prefix.dev/conda-forge/linux-64/markupsafe-3.0.2-py311h2dc5d0c_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/markupsafe-3.0.3-py311h3778330_0.conda hash: - md5: 6565a715337ae279e351d0abd8ffe88a - sha256: 0291d90706ac6d3eea73e66cd290ef6d805da3fad388d1d476b8536ec92ca9a8 + md5: 0954f1a6a26df4a510b54f73b2a0345c + sha256: 66c072c37aefa046f3fd4ca69978429421ef9e8a8572e19de534272a6482e997 category: dev optional: true - name: markupsafe - version: 3.0.2 + version: 3.0.3 manager: conda platform: win-64 dependencies: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/markupsafe-3.0.2-py311h5082efb_1.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/markupsafe-3.0.3-py311h3f79411_0.conda hash: - md5: c1f2ddad665323278952a453912dc3bd - sha256: 6f756e13ccf1a521d3960bd3cadddf564e013e210eaeced411c5259f070da08e + md5: f04c6970b6cce548de53b43f6be06586 + sha256: 975a1dcbdc0ced5af5bab681ec50406cf46f04e99c2aecc2f6b684497287cd7e category: dev optional: true - name: mccabe @@ -2479,8 +2481,8 @@ package: hash: md5: 827064ddfe0de2917fb29f1da4f8f533 sha256: 9b0037171dad0100f0296699a11ae7d355237b55f42f9094aebc0f41512d96a1 - category: main - optional: false + category: dev + optional: true - name: mccabe version: 0.7.0 manager: conda @@ -2491,19 +2493,22 @@ package: hash: md5: 827064ddfe0de2917fb29f1da4f8f533 sha256: 9b0037171dad0100f0296699a11ae7d355237b55f42f9094aebc0f41512d96a1 - category: main - optional: false + category: dev + optional: true - name: mkl - version: 2024.2.2 + version: 2025.3.0 manager: conda platform: win-64 dependencies: - llvm-openmp: '>=20.1.8' - tbb: 2021.* - url: https://repo.prefix.dev/conda-forge/win-64/mkl-2024.2.2-h57928b3_16.conda + llvm-openmp: '>=21.1.4' + tbb: '>=2022.2.0' + ucrt: '>=10.0.20348.0' + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/mkl-2025.3.0-hac47afa_454.conda hash: - md5: 5cddc979c74b90cf5e5cda4f97d5d8bb - sha256: ce841e7c3898764154a9293c0f92283c1eb28cdacf7a164c94b632a6af675d91 + md5: c83ec81713512467dfe1b496a8292544 + sha256: 3c432e77720726c6bd83e9ee37ac8d0e3dd7c4cf9b4c5805e1d384025f9e9ab6 category: main optional: false - name: ncurses @@ -2581,7 +2586,7 @@ package: category: main optional: false - name: openjpeg - version: 2.5.3 + version: 2.5.4 manager: conda platform: linux-64 dependencies: @@ -2589,47 +2594,47 @@ package: libgcc: '>=14' libpng: '>=1.6.50,<1.7.0a0' libstdcxx: '>=14' - libtiff: '>=4.7.0,<4.8.0a0' + libtiff: '>=4.7.1,<4.8.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/openjpeg-2.5.3-h55fea9a_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/openjpeg-2.5.4-h55fea9a_0.conda hash: - md5: 01243c4aaf71bde0297966125aea4706 - sha256: 0b7396dacf988f0b859798711b26b6bc9c6161dca21bacfd778473da58730afa + md5: 11b3379b191f63139e29c0d19dee24cd + sha256: 3900f9f2dbbf4129cf3ad6acf4e4b6f7101390b53843591c53b00f034343bc4d category: main optional: false - name: openjpeg - version: 2.5.3 + version: 2.5.4 manager: conda platform: win-64 dependencies: libpng: '>=1.6.50,<1.7.0a0' - libtiff: '>=4.7.0,<4.8.0a0' + libtiff: '>=4.7.1,<4.8.0a0' libzlib: '>=1.3.1,<2.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/openjpeg-2.5.3-h24db6dd_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/openjpeg-2.5.4-h24db6dd_0.conda hash: - md5: 25f45acb1a234ad1c9b9a20e1e6c559e - sha256: c29cb1641bc5cfc2197e9b7b436f34142be4766dd2430a937b48b7474935aa55 + md5: 5af852046226bb3cb15c7f61c2ac020a + sha256: 226c270a7e3644448954c47959c00a9bf7845f6d600c2a643db187118d028eee category: main optional: false - name: openssl - version: 3.5.2 + version: 3.5.4 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' ca-certificates: '' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/openssl-3.5.2-h26f9b46_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/openssl-3.5.4-h26f9b46_0.conda hash: - md5: ffffb341206dd0dab0c36053c048d621 - sha256: c9f54d4e8212f313be7b02eb962d0cb13a8dae015683a403d3accd4add3e520e + md5: 14edad12b59ccbfa3910d42c72adc2a0 + sha256: e807f3bad09bdf4075dbb4168619e14b0c0360bacb2e12ef18641a834c8c5549 category: main optional: false - name: openssl - version: 3.5.2 + version: 3.5.4 manager: conda platform: win-64 dependencies: @@ -2637,10 +2642,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/openssl-3.5.2-h725018a_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/openssl-3.5.4-h725018a_0.conda hash: - md5: 150d3920b420a27c0848acca158f94dc - sha256: 2413f3b4606018aea23acfa2af3c4c46af786739ab4020422e9f0c2aec75321b + md5: f28ffa510fe055ab518cbd9d6ddfea23 + sha256: 5ddc1e39e2a8b72db2431620ad1124016f3df135f87ebde450d235c212a61994 category: main optional: false - name: packaging @@ -2716,57 +2721,57 @@ package: category: main optional: false - name: pip - version: '25.2' + version: '25.3' manager: conda platform: linux-64 dependencies: - python: '>=3.9,<3.13.0a0' + python: '>=3.10,<3.13.0a0' setuptools: '' wheel: '' - url: https://repo.prefix.dev/conda-forge/noarch/pip-25.2-pyh8b19718_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pip-25.3-pyh8b19718_0.conda hash: - md5: dfce4b2af4bfe90cdcaf56ca0b28ddf5 - sha256: ec9ed3cef137679f3e3a68e286c6efd52144684e1be0b05004d9699882dadcdd + md5: c55515ca43c6444d2572e0f0d93cb6b9 + sha256: b67692da1c0084516ac1c9ada4d55eaf3c5891b54980f30f3f444541c2706f1e category: main optional: false - name: pip - version: '25.2' + version: '25.3' manager: conda platform: win-64 dependencies: - python: '>=3.9,<3.13.0a0' + python: '>=3.10,<3.13.0a0' setuptools: '' wheel: '' - url: https://repo.prefix.dev/conda-forge/noarch/pip-25.2-pyh8b19718_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pip-25.3-pyh8b19718_0.conda hash: - md5: dfce4b2af4bfe90cdcaf56ca0b28ddf5 - sha256: ec9ed3cef137679f3e3a68e286c6efd52144684e1be0b05004d9699882dadcdd + md5: c55515ca43c6444d2572e0f0d93cb6b9 + sha256: b67692da1c0084516ac1c9ada4d55eaf3c5891b54980f30f3f444541c2706f1e category: main optional: false - name: platformdirs - version: 4.4.0 + version: 4.5.0 manager: conda platform: linux-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.4.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.5.0-pyhcf101f3_0.conda hash: - md5: cc9d9a3929503785403dbfad9f707145 - sha256: dfe0fa6e351d2b0cef95ac1a1533d4f960d3992f9e0f82aeb5ec3623a699896b - category: main - optional: false + md5: 5c7a868f8241e64e1cf5fdf4962f23e2 + sha256: 7efd51b48d908de2d75cbb3c4a2e80dd9454e1c5bb8191b261af3136f7fa5888 + category: dev + optional: true - name: platformdirs - version: 4.4.0 + version: 4.5.0 manager: conda platform: win-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.4.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.5.0-pyhcf101f3_0.conda hash: - md5: cc9d9a3929503785403dbfad9f707145 - sha256: dfe0fa6e351d2b0cef95ac1a1533d4f960d3992f9e0f82aeb5ec3623a699896b - category: main - optional: false + md5: 5c7a868f8241e64e1cf5fdf4962f23e2 + sha256: 7efd51b48d908de2d75cbb3c4a2e80dd9454e1c5bb8191b261af3136f7fa5888 + category: dev + optional: true - name: pluggy version: 1.6.0 manager: conda @@ -2843,57 +2848,57 @@ package: category: dev optional: true - name: pydantic - version: 2.11.9 + version: 2.12.4 manager: conda platform: linux-64 dependencies: annotated-types: '>=0.6.0' - pydantic-core: 2.33.2 + pydantic-core: 2.41.5 python: '>=3.10' typing-extensions: '>=4.6.1' - typing-inspection: '>=0.4.0' - typing_extensions: '>=4.12.2' - url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.9-pyh3cfb1c2_0.conda + typing-inspection: '>=0.4.2' + typing_extensions: '>=4.14.1' + url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.12.4-pyh3cfb1c2_0.conda hash: - md5: a6db60d33fe1ad50314a46749267fdfc - sha256: c3ec0c2202d109cdd5cac008bf7a42b67d4aa3c4cc14b4ee3e00a00541eabd88 + md5: bf6ce72315b6759453d8c90a894e9e4c + sha256: c51297f0f6ef13776cc5b61c37d00c0d45faaed34f81d196e64bebc989f3e497 category: main optional: false - name: pydantic - version: 2.11.9 + version: 2.12.4 manager: conda platform: win-64 dependencies: annotated-types: '>=0.6.0' - pydantic-core: 2.33.2 + pydantic-core: 2.41.5 python: '>=3.10' typing-extensions: '>=4.6.1' - typing-inspection: '>=0.4.0' - typing_extensions: '>=4.12.2' - url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.9-pyh3cfb1c2_0.conda + typing-inspection: '>=0.4.2' + typing_extensions: '>=4.14.1' + url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.12.4-pyh3cfb1c2_0.conda hash: - md5: a6db60d33fe1ad50314a46749267fdfc - sha256: c3ec0c2202d109cdd5cac008bf7a42b67d4aa3c4cc14b4ee3e00a00541eabd88 + md5: bf6ce72315b6759453d8c90a894e9e4c + sha256: c51297f0f6ef13776cc5b61c37d00c0d45faaed34f81d196e64bebc989f3e497 category: main optional: false - name: pydantic-core - version: 2.33.2 + version: 2.41.5 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' + libgcc: '>=14' python: '' python_abi: 3.11.* typing-extensions: '>=4.6.0,!=4.7.0' - url: https://repo.prefix.dev/conda-forge/linux-64/pydantic-core-2.33.2-py311hdae7d1d_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pydantic-core-2.41.5-py311h902ca64_0.conda hash: - md5: 484d0d62d4b069d5372680309fc5f00c - sha256: b48e5abb6debae4f559b08cdbaf0736c7806adc00c106ced2c98a622b7081d8f + md5: ffddb15810f766cdde04fe1af24d7168 + sha256: 2632d271a937fe1aa932f40b282e8786c7d59158268042f158a31ef6bcc7edfe category: main optional: false - name: pydantic-core - version: 2.33.2 + version: 2.41.5 manager: conda platform: win-64 dependencies: @@ -2901,12 +2906,12 @@ package: python_abi: 3.11.* typing-extensions: '>=4.6.0,!=4.7.0' ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/pydantic-core-2.33.2-py311hc4022dc_0.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/pydantic-core-2.41.5-py311hf51aa87_0.conda hash: - md5: 5a644594b3066c17b7dd4590b2438424 - sha256: 0748e6b6cdb86dfdc4446bddb6035a75bef7939bc6dc382d17c02de1643f4e0f + md5: 7e97287ec2a853ff9588481dc19bc3ec + sha256: b99307c2f938550abd8e1ed2f1f5f57a81dac99f0c7daf86ccc2d8ad8a7e0e5c category: main optional: false - name: pygments @@ -2934,47 +2939,45 @@ package: category: dev optional: true - name: pylint - version: 3.3.8 + version: 4.0.2 manager: conda platform: linux-64 dependencies: - astroid: '>=3.3.8,<3.4.0-dev0' + astroid: '>=4.0.1,<=4.1.0.dev0' colorama: '>=0.4.5' dill: '>=0.3.7' - isort: '>=4.2.5,<7,!=5.13.0' + isort: '>=5,<8,!=5.13' mccabe: '>=0.6,<0.8' - platformdirs: '>=2.2.0' - python: '>=3.9' + platformdirs: '>=2.2' + python: '>=3.10' tomli: '>=1.1.0' tomlkit: '>=0.10.1' - typing_extensions: '>=3.10.0' - url: https://repo.prefix.dev/conda-forge/noarch/pylint-3.3.8-pyhe01879c_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pylint-4.0.2-pyhcf101f3_0.conda hash: - md5: f5ba3b2c52e855b67fc0abedcebc9675 - sha256: 5b19f8113694ff4e4f0d0870cf38357d9e84330ff6c2516127a65764289b6743 - category: main - optional: false + md5: 0259facf4dbf67ad35ec517b6ffd6982 + sha256: 594bdf44a55c3bcf79ec6eb55d86571cbe3bee9f5216ede0721708c184da4ed8 + category: dev + optional: true - name: pylint - version: 3.3.8 + version: 4.0.2 manager: conda platform: win-64 dependencies: - astroid: '>=3.3.8,<3.4.0-dev0' + astroid: '>=4.0.1,<=4.1.0.dev0' colorama: '>=0.4.5' dill: '>=0.3.7' - isort: '>=4.2.5,<7,!=5.13.0' + isort: '>=5,<8,!=5.13' mccabe: '>=0.6,<0.8' - platformdirs: '>=2.2.0' - python: '>=3.9' + platformdirs: '>=2.2' + python: '>=3.10' tomli: '>=1.1.0' tomlkit: '>=0.10.1' - typing_extensions: '>=3.10.0' - url: https://repo.prefix.dev/conda-forge/noarch/pylint-3.3.8-pyhe01879c_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pylint-4.0.2-pyhcf101f3_0.conda hash: - md5: f5ba3b2c52e855b67fc0abedcebc9675 - sha256: 5b19f8113694ff4e4f0d0870cf38357d9e84330ff6c2516127a65764289b6743 - category: main - optional: false + md5: 0259facf4dbf67ad35ec517b6ffd6982 + sha256: 594bdf44a55c3bcf79ec6eb55d86571cbe3bee9f5216ede0721708c184da4ed8 + category: dev + optional: true - name: pysocks version: 1.7.1 manager: conda @@ -3003,41 +3006,41 @@ package: category: dev optional: true - name: pytest - version: 8.4.2 + version: 9.0.0 manager: conda platform: linux-64 dependencies: colorama: '>=0.4' exceptiongroup: '>=1' - iniconfig: '>=1' - packaging: '>=20' + iniconfig: '>=1.0.1' + packaging: '>=22' pluggy: '>=1.5,<2' pygments: '>=2.7.2' python: '>=3.10' tomli: '>=1' - url: https://repo.prefix.dev/conda-forge/noarch/pytest-8.4.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytest-9.0.0-pyhcf101f3_0.conda hash: - md5: 1f987505580cb972cf28dc5f74a0f81b - sha256: 41053d9893e379a3133bb9b557b98a3d2142fca474fb6b964ba5d97515f78e2d + md5: 499e8e2df95ad3d263bee8d41cc3d475 + sha256: afd413cd919bd3cca1d45062b9822be8935e1f61ce6d6b2642364e8c19e2873d category: dev optional: true - name: pytest - version: 8.4.2 + version: 9.0.0 manager: conda platform: win-64 dependencies: colorama: '>=0.4' exceptiongroup: '>=1' - iniconfig: '>=1' - packaging: '>=20' + iniconfig: '>=1.0.1' + packaging: '>=22' pluggy: '>=1.5,<2' pygments: '>=2.7.2' python: '>=3.10' tomli: '>=1' - url: https://repo.prefix.dev/conda-forge/noarch/pytest-8.4.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytest-9.0.0-pyhcf101f3_0.conda hash: - md5: 1f987505580cb972cf28dc5f74a0f81b - sha256: 41053d9893e379a3133bb9b557b98a3d2142fca474fb6b964ba5d97515f78e2d + md5: 499e8e2df95ad3d263bee8d41cc3d475 + sha256: afd413cd919bd3cca1d45062b9822be8935e1f61ce6d6b2642364e8c19e2873d category: dev optional: true - name: pytest-cov @@ -3071,56 +3074,56 @@ package: category: dev optional: true - name: python - version: 3.11.13 + version: 3.11.14 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' bzip2: '>=1.0.8,<2.0a0' ld_impl_linux-64: '>=2.36.1' - libexpat: '>=2.7.0,<3.0a0' - libffi: '>=3.4.6,<3.5.0a0' - libgcc: '>=13' + libexpat: '>=2.7.1,<3.0a0' + libffi: '>=3.5.2,<3.6.0a0' + libgcc: '>=14' liblzma: '>=5.8.1,<6.0a0' libnsl: '>=2.0.1,<2.1.0a0' - libsqlite: '>=3.50.0,<4.0a0' - libuuid: '>=2.38.1,<3.0a0' + libsqlite: '>=3.50.4,<4.0a0' + libuuid: '>=2.41.2,<3.0a0' libxcrypt: '>=4.4.36' libzlib: '>=1.3.1,<2.0a0' ncurses: '>=6.5,<7.0a0' - openssl: '>=3.5.0,<4.0a0' + openssl: '>=3.5.4,<4.0a0' pip: '' readline: '>=8.2,<9.0a0' tk: '>=8.6.13,<8.7.0a0' tzdata: '' - url: https://repo.prefix.dev/conda-forge/linux-64/python-3.11.13-h9e4cc4f_0_cpython.conda + url: https://repo.prefix.dev/conda-forge/linux-64/python-3.11.14-hd63d673_2_cpython.conda hash: - md5: 8c399445b6dc73eab839659e6c7b5ad1 - sha256: 9979a7d4621049388892489267139f1aa629b10c26601ba5dce96afc2b1551d4 + md5: c4202a55b4486314fbb8c11bc43a29a0 + sha256: 5b872f7747891e50e990a96d2b235236a5c66cc9f8c9dcb7149aee674ea8145a category: main optional: false - name: python - version: 3.11.13 + version: 3.11.14 manager: conda platform: win-64 dependencies: bzip2: '>=1.0.8,<2.0a0' - libexpat: '>=2.7.0,<3.0a0' - libffi: '>=3.4.6,<3.5.0a0' + libexpat: '>=2.7.1,<3.0a0' + libffi: '>=3.5.2,<3.6.0a0' liblzma: '>=5.8.1,<6.0a0' - libsqlite: '>=3.50.0,<4.0a0' + libsqlite: '>=3.50.4,<4.0a0' libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.5.0,<4.0a0' + openssl: '>=3.5.4,<4.0a0' pip: '' tk: '>=8.6.13,<8.7.0a0' tzdata: '' ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/python-3.11.13-h3f84c4b_0_cpython.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/python-3.11.14-h0159041_2_cpython.conda hash: - md5: bedbb6f7bb654839719cd528f9b298ad - sha256: 723dbca1384f30bd2070f77dd83eefd0e8d7e4dda96ac3332fbf8fe5573a8abb + md5: 02a9ba5950d8b78e6c9862d6ba7a5045 + sha256: d5f455472597aefcdde1bc39bca313fcb40bf084f3ad987da0441f2a2ec242e4 category: main optional: false - name: python_abi @@ -3179,10 +3182,10 @@ package: numpy: '>=1.25,<3' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://repo.prefix.dev/conda-forge/linux-64/pywavelets-1.9.0-py311h0372a8f_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pywavelets-1.9.0-py311h0372a8f_2.conda hash: - md5: 31838811238427e85f86a89fea0421dc - sha256: 6accd7bc4762d43dc5db9a593b504a5e8807d71ffc31ced324ffb583b6ee896f + md5: 4e078a6bafb23473ea476450f45c9650 + sha256: 4393066e380c976a4066a7865c42f9e1f96b1b8a80f0eef03db93a4160dde77b category: main optional: false - name: pywavelets @@ -3196,43 +3199,43 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/pywavelets-1.9.0-py311h17033d2_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/pywavelets-1.9.0-py311h17033d2_2.conda hash: - md5: b96499a2b83664848195ba5244a18351 - sha256: daade5843eb0b287ef78ecc22c5ec2b84289345d3658e48241c0c3dc38aadb62 + md5: 4cdb0e2d2fbd83f802ab9d9c5fa5dfb4 + sha256: 26c84bd1aae5f0675f71f69ec7abf90a96c30959d95528f6afe1d1d1a2381def category: main optional: false - name: pyyaml - version: 6.0.2 + version: 6.0.3 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' + libgcc: '>=14' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* yaml: '>=0.2.5,<0.3.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/pyyaml-6.0.2-py311h2dc5d0c_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pyyaml-6.0.3-py311h3778330_0.conda hash: - md5: 014417753f948da1f70d132b2de573be - sha256: d107ad62ed5c62764fba9400f2c423d89adf917d687c7f2e56c3bfed605fb5b3 + md5: 707c3d23f2476d3bfde8345b4e7d7853 + sha256: 7dc5c27c0c23474a879ef5898ed80095d26de7f89f4720855603c324cca19355 category: dev optional: true - name: pyyaml - version: 6.0.2 + version: 6.0.3 manager: conda platform: win-64 dependencies: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' yaml: '>=0.2.5,<0.3.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/pyyaml-6.0.2-py311h5082efb_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/pyyaml-6.0.3-py311h3f79411_0.conda hash: - md5: e474ba674d780f0fa3b979ae9e81ba91 - sha256: 6095e1d58c666f6a06c55338df09485eac34c76e43d92121d5786794e195aa4d + md5: 4e9b677d70d641f233b29d5eab706e20 + sha256: 22dcc6c6779e5bd970a7f5208b871c02bf4985cf4d827d479c4a492ced8ce577 category: dev optional: true - name: rav1e @@ -3500,7 +3503,7 @@ package: category: dev optional: true - name: sphinx - version: 8.3.0 + version: 8.2.3 manager: conda platform: linux-64 dependencies: @@ -3522,14 +3525,14 @@ package: sphinxcontrib-jsmath: '>=1.0.1' sphinxcontrib-qthelp: '>=1.0.6' sphinxcontrib-serializinghtml: '>=1.1.9' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-8.3.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-8.2.3-pyhd8ed1ab_0.conda hash: - md5: 6ce9ddee4c0f68bda548303196f4cf4c - sha256: 03c4d8b4cf3c5418e15f30f45be52bcde7c7e05baeec7dec5aaf6e238a411481 + md5: f7af826063ed569bb13f7207d6f949b0 + sha256: 995f58c662db0197d681fa345522fd9e7ac5f05330d3dff095ab2f102e260ab0 category: dev optional: true - name: sphinx - version: 8.3.0 + version: 8.2.3 manager: conda platform: win-64 dependencies: @@ -3551,36 +3554,36 @@ package: sphinxcontrib-jsmath: '>=1.0.1' sphinxcontrib-qthelp: '>=1.0.6' sphinxcontrib-serializinghtml: '>=1.1.9' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-8.3.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-8.2.3-pyhd8ed1ab_0.conda hash: - md5: 6ce9ddee4c0f68bda548303196f4cf4c - sha256: 03c4d8b4cf3c5418e15f30f45be52bcde7c7e05baeec7dec5aaf6e238a411481 + md5: f7af826063ed569bb13f7207d6f949b0 + sha256: 995f58c662db0197d681fa345522fd9e7ac5f05330d3dff095ab2f102e260ab0 category: dev optional: true - name: sphinx-autodoc-typehints - version: 3.2.0 + version: 3.5.2 manager: conda platform: linux-64 dependencies: python: '>=3.11' - sphinx: '>=8.2' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-autodoc-typehints-3.2.0-pyhd8ed1ab_0.conda + sphinx: '>=8.2.3' + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-autodoc-typehints-3.5.2-pyhd8ed1ab_0.conda hash: - md5: 6162f3f1cf914d08b80db65ed2d51871 - sha256: e9923b7d282ac8840ebe9e2665685a337698f4a93e6eb3c81dc18fe223c1bb57 + md5: abe9fc17e8bf83725cde006800c926de + sha256: 896309836e7b7682ac7ebf8783d7fde57869d28fa82e0a36413fff41f4049eac category: dev optional: true - name: sphinx-autodoc-typehints - version: 3.2.0 + version: 3.5.2 manager: conda platform: win-64 dependencies: python: '>=3.11' - sphinx: '>=8.2' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-autodoc-typehints-3.2.0-pyhd8ed1ab_0.conda + sphinx: '>=8.2.3' + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-autodoc-typehints-3.5.2-pyhd8ed1ab_0.conda hash: - md5: 6162f3f1cf914d08b80db65ed2d51871 - sha256: e9923b7d282ac8840ebe9e2665685a337698f4a93e6eb3c81dc18fe223c1bb57 + md5: abe9fc17e8bf83725cde006800c926de + sha256: 896309836e7b7682ac7ebf8783d7fde57869d28fa82e0a36413fff41f4049eac category: dev optional: true - name: sphinx-rtd-theme @@ -3846,7 +3849,7 @@ package: category: main optional: false - name: tbb - version: 2021.13.0 + version: 2022.3.0 manager: conda platform: win-64 dependencies: @@ -3854,38 +3857,38 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/tbb-2021.13.0-h18a62a1_3.conda + url: https://repo.prefix.dev/conda-forge/win-64/tbb-2022.3.0-hd094cb3_1.conda hash: - md5: 72226638648e494aaafde8155d50dab2 - sha256: 30e82640a1ad9d9b5bee006da7e847566086f8fdb63d15b918794a7ef2df862c + md5: 17c38aaf14c640b85c4617ccb59c1146 + sha256: c31cac57913a699745d124cdc016a63e31c5749f16f60b3202414d071fc50573 category: main optional: false - name: tifffile - version: 2025.9.9 + version: 2025.10.16 manager: conda platform: linux-64 dependencies: imagecodecs: '>=2024.12.30' numpy: '>=1.19.2' python: '>=3.11' - url: https://repo.prefix.dev/conda-forge/noarch/tifffile-2025.9.9-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/tifffile-2025.10.16-pyhd8ed1ab_0.conda hash: - md5: 5a981012f5ca4fa6d6bdc49828b90e79 - sha256: ab4f48f33dbbed5a54e7f4458e086272c3873dfc05d48643d1fba083c3dca247 + md5: f5b9f02d19761f79c564900a2a399984 + sha256: 84d4c49b648971147f93a6c873ce24703fd4047bc57f91f20ff1060ca7feda8f category: main optional: false - name: tifffile - version: 2025.9.9 + version: 2025.10.16 manager: conda platform: win-64 dependencies: imagecodecs: '>=2024.12.30' numpy: '>=1.19.2' python: '>=3.11' - url: https://repo.prefix.dev/conda-forge/noarch/tifffile-2025.9.9-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/tifffile-2025.10.16-pyhd8ed1ab_0.conda hash: - md5: 5a981012f5ca4fa6d6bdc49828b90e79 - sha256: ab4f48f33dbbed5a54e7f4458e086272c3873dfc05d48643d1fba083c3dca247 + md5: f5b9f02d19761f79c564900a2a399984 + sha256: 84d4c49b648971147f93a6c873ce24703fd4047bc57f91f20ff1060ca7feda8f category: main optional: false - name: tk @@ -3917,29 +3920,29 @@ package: category: main optional: false - name: tomli - version: 2.2.1 + version: 2.3.0 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.2.1-pyhe01879c_2.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.3.0-pyhcf101f3_0.conda hash: - md5: 30a0a26c8abccf4b7991d590fe17c699 - sha256: 040a5a05c487647c089ad5e05ad5aff5942830db2a4e656f1e300d73436436f1 - category: main - optional: false + md5: d2732eb636c264dc9aa4cbee404b1a53 + sha256: cb77c660b646c00a48ef942a9e1721ee46e90230c7c570cdeb5a893b5cce9bff + category: dev + optional: true - name: tomli - version: 2.2.1 + version: 2.3.0 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.2.1-pyhe01879c_2.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.3.0-pyhcf101f3_0.conda hash: - md5: 30a0a26c8abccf4b7991d590fe17c699 - sha256: 040a5a05c487647c089ad5e05ad5aff5942830db2a4e656f1e300d73436436f1 - category: main - optional: false + md5: d2732eb636c264dc9aa4cbee404b1a53 + sha256: cb77c660b646c00a48ef942a9e1721ee46e90230c7c570cdeb5a893b5cce9bff + category: dev + optional: true - name: tomlkit version: 0.13.3 manager: conda @@ -3950,8 +3953,8 @@ package: hash: md5: 146402bf0f11cbeb8f781fa4309a95d3 sha256: f8d3b49c084831a20923f66826f30ecfc55a4cd951e544b7213c692887343222 - category: main - optional: false + category: dev + optional: true - name: tomlkit version: 0.13.3 manager: conda @@ -3962,8 +3965,8 @@ package: hash: md5: 146402bf0f11cbeb8f781fa4309a95d3 sha256: f8d3b49c084831a20923f66826f30ecfc55a4cd951e544b7213c692887343222 - category: main - optional: false + category: dev + optional: true - name: tqdm version: 4.67.1 manager: conda @@ -4015,29 +4018,29 @@ package: category: main optional: false - name: typing-inspection - version: 0.4.1 + version: 0.4.2 manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '>=3.10' typing_extensions: '>=4.12.0' - url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.2-pyhd8ed1ab_0.conda hash: - md5: e0c3cd765dc15751ee2f0b03cd015712 - sha256: 4259a7502aea516c762ca8f3b8291b0d4114e094bdb3baae3171ccc0900e722f + md5: 399701494e731ce73fdd86c185a3d1b4 + sha256: 8aaf69b828c2b94d0784f18f70f11aa032950d304e57e88467120b45c18c24fd category: main optional: false - name: typing-inspection - version: 0.4.1 + version: 0.4.2 manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '>=3.10' typing_extensions: '>=4.12.0' - url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.2-pyhd8ed1ab_0.conda hash: - md5: e0c3cd765dc15751ee2f0b03cd015712 - sha256: 4259a7502aea516c762ca8f3b8291b0d4114e094bdb3baae3171ccc0900e722f + md5: 399701494e731ce73fdd86c185a3d1b4 + sha256: 8aaf69b828c2b94d0784f18f70f11aa032950d304e57e88467120b45c18c24fd category: main optional: false - name: typing_extensions @@ -4134,11 +4137,11 @@ package: manager: conda platform: win-64 dependencies: - vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/vc-14.3-h41ae7f8_31.conda + vc14_runtime: '>=14.42.34433' + url: https://repo.prefix.dev/conda-forge/win-64/vc-14.3-h2b53caa_32.conda hash: - md5: 28f4ca1e0337d0f27afb8602663c5723 - sha256: cb357591d069a1e6cb74199a8a43a7e3611f72a6caed9faa49dbb3d7a0a98e0b + md5: ef02bbe151253a72b8eda264a935db66 + sha256: 82250af59af9ff3c6a635dd4c4764c631d854feb334d6747d356d949af44d7cf category: main optional: false - name: vc14_runtime @@ -4148,10 +4151,10 @@ package: dependencies: ucrt: '>=10.0.20348.0' vcomp14: 14.44.35208 - url: https://repo.prefix.dev/conda-forge/win-64/vc14_runtime-14.44.35208-h818238b_31.conda + url: https://repo.prefix.dev/conda-forge/win-64/vc14_runtime-14.44.35208-h818238b_32.conda hash: - md5: 603e41da40a765fd47995faa021da946 - sha256: af4b4b354b87a9a8d05b8064ff1ea0b47083274f7c30b4eb96bc2312c9b5f08f + md5: 378d5dcec45eaea8d303da6f00447ac0 + sha256: e3a3656b70d1202e0d042811ceb743bd0d9f7e00e2acdf824d231b044ef6c0fd category: main optional: false - name: vcomp14 @@ -4160,10 +4163,10 @@ package: platform: win-64 dependencies: ucrt: '>=10.0.20348.0' - url: https://repo.prefix.dev/conda-forge/win-64/vcomp14-14.44.35208-h818238b_31.conda + url: https://repo.prefix.dev/conda-forge/win-64/vcomp14-14.44.35208-h818238b_32.conda hash: - md5: a6b1d5c1fc3cb89f88f7179ee6a9afe3 - sha256: 67b317b64f47635415776718d25170a9a6f9a1218c0f5a6202bfd687e07b6ea4 + md5: 58f67b437acbf2764317ba273d731f1d + sha256: f3790c88fbbdc55874f41de81a4237b1b91eab75e05d0e58661518ff04d2a8a1 category: main optional: false - name: vs2015_runtime @@ -4172,10 +4175,10 @@ package: platform: win-64 dependencies: vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/vs2015_runtime-14.44.35208-h38c0c73_31.conda + url: https://repo.prefix.dev/conda-forge/win-64/vs2015_runtime-14.44.35208-h38c0c73_32.conda hash: - md5: d75abcfbc522ccd98082a8c603fce34c - sha256: 8b20152d00e1153ccb1ed377a160110482f286a6d85a82b57ffcd60517d523a7 + md5: dfc1e5bbf1ecb0024a78e4e8bd45239d + sha256: 65cea43f4de99bc81d589e746c538908b2e95aead9042fecfbc56a4d14684a87 category: main optional: false - name: wheel @@ -4371,10 +4374,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/zlib-ng-2.2.5-h1608b31_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/zlib-ng-2.2.5-h32d8bfd_0.conda hash: - md5: 4a12db9135443d6177d2e79177c62b9a - sha256: f405609a36882ab3bc9f17fc277768082e2c321434b57509668e393a3c728c50 + md5: dec092b1a069abafc38655ded65a7b29 + sha256: 67a3113acf3506f1cf1c72e0748742217a20edc6c1c1c19631f901c5e028d2bc category: main optional: false - name: zstandard @@ -4388,10 +4391,10 @@ package: python: '' python_abi: 3.11.* zstd: '>=1.5.7,<1.5.8.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/zstandard-0.25.0-py311haee01d2_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/zstandard-0.25.0-py311haee01d2_1.conda hash: - md5: 0fd242142b0691eb9311dc32c1d4ab76 - sha256: ed149760ea78e038e6424d8a327ea95da351727536c0e9abedccf5a61fc19932 + md5: ca45bfd4871af957aaa5035593d5efd2 + sha256: d534a6518c2d8eccfa6579d75f665261484f0f2f7377b50402446a9433d46234 category: dev optional: true - name: zstandard @@ -4406,10 +4409,10 @@ package: vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' zstd: '>=1.5.7,<1.5.8.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/zstandard-0.25.0-py311hf893f09_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/zstandard-0.25.0-py311hf893f09_1.conda hash: - md5: d26077d20b4bba54f4c718ed1313805f - sha256: 3b66d3cb738a9993e8432d1a03402d207128166c4ef0c928e712958e51aff325 + md5: b2d90bca78b57c17205ce3ca1c427813 + sha256: 10f089bedef1a28c663ef575fb9cec66b2058e342c4cf4a753083ab07591008f category: dev optional: true - name: zstd @@ -4443,41 +4446,41 @@ package: category: main optional: false - name: geoapps-utils - version: 0.6.0a1.dev69+a6627f0 + version: 0.7.0a1.dev3+80c4658 manager: pip platform: linux-64 dependencies: - geoh5py: 0.12.0a2.dev76+8f4cb4c0 + geoh5py: 0.12.0b4.dev18+8f630a84 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@a6627f0a6e663e9c3f0e9874f401a34ab8990488 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@80c46588d47b70a1dd26aef06ccfa24bc1585502 hash: - sha256: a6627f0a6e663e9c3f0e9874f401a34ab8990488 + sha256: 80c46588d47b70a1dd26aef06ccfa24bc1585502 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@a6627f0a6e663e9c3f0e9874f401a34ab8990488 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@80c46588d47b70a1dd26aef06ccfa24bc1585502 category: main optional: false - name: geoapps-utils - version: 0.6.0a1.dev69+a6627f0 + version: 0.7.0a1.dev3+80c4658 manager: pip platform: win-64 dependencies: - geoh5py: 0.12.0a2.dev76+8f4cb4c0 + geoh5py: 0.12.0b4.dev18+8f630a84 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@a6627f0a6e663e9c3f0e9874f401a34ab8990488 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@80c46588d47b70a1dd26aef06ccfa24bc1585502 hash: - sha256: a6627f0a6e663e9c3f0e9874f401a34ab8990488 + sha256: 80c46588d47b70a1dd26aef06ccfa24bc1585502 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@a6627f0a6e663e9c3f0e9874f401a34ab8990488 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@80c46588d47b70a1dd26aef06ccfa24bc1585502 category: main optional: false - name: geoh5py - version: 0.12.0a2.dev76+8f4cb4c0 + version: 0.12.0b4.dev18+8f630a84 manager: pip platform: linux-64 dependencies: @@ -4485,17 +4488,16 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - pylint: '>=3.3.8,<4.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@8f4cb4c0ebfb6ce25b3be6c83746d184f47a5f67 + url: git+https://github.com/MiraGeoscience/geoh5py.git@8f630a84b2b9f2b7632f895e1521d8d61c04e80e hash: - sha256: 8f4cb4c0ebfb6ce25b3be6c83746d184f47a5f67 + sha256: 8f630a84b2b9f2b7632f895e1521d8d61c04e80e source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@8f4cb4c0ebfb6ce25b3be6c83746d184f47a5f67 + url: git+https://github.com/MiraGeoscience/geoh5py.git@8f630a84b2b9f2b7632f895e1521d8d61c04e80e category: main optional: false - name: geoh5py - version: 0.12.0a2.dev76+8f4cb4c0 + version: 0.12.0b4.dev18+8f630a84 manager: pip platform: win-64 dependencies: @@ -4503,12 +4505,11 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - pylint: '>=3.3.8,<4.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@8f4cb4c0ebfb6ce25b3be6c83746d184f47a5f67 + url: git+https://github.com/MiraGeoscience/geoh5py.git@8f630a84b2b9f2b7632f895e1521d8d61c04e80e hash: - sha256: 8f4cb4c0ebfb6ce25b3be6c83746d184f47a5f67 + sha256: 8f630a84b2b9f2b7632f895e1521d8d61c04e80e source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@8f4cb4c0ebfb6ce25b3be6c83746d184f47a5f67 + url: git+https://github.com/MiraGeoscience/geoh5py.git@8f630a84b2b9f2b7632f895e1521d8d61c04e80e category: main optional: false diff --git a/py-3.12.conda-lock.yml b/py-3.12.conda-lock.yml index 8da261c..f3be0b2 100644 --- a/py-3.12.conda-lock.yml +++ b/py-3.12.conda-lock.yml @@ -155,31 +155,31 @@ package: category: main optional: false - name: astroid - version: 3.3.11 + version: 4.0.2 manager: conda platform: linux-64 dependencies: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/astroid-3.3.11-py312h7900ff3_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/astroid-4.0.2-py312h7900ff3_0.conda hash: - md5: f68064e559452bab9180c8f90392d724 - sha256: e8ddf4c3e00cbf6350ab2f9a046b04c6b5df71fa111e5f172bce3723b0ab6ac1 - category: main - optional: false + md5: 01ddf9d3e4a39c3f032ba14ad91bdc82 + sha256: 314383c405003585d27883e7e9f3cc3973a1b29d625ba7feb6cf1b60ed94e704 + category: dev + optional: true - name: astroid - version: 3.3.11 + version: 4.0.2 manager: conda platform: win-64 dependencies: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/win-64/astroid-3.3.11-py312h2e8e312_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/astroid-4.0.2-py312h2e8e312_0.conda hash: - md5: 1f2355e2dae4d1cdfb625fbd4af95576 - sha256: 67bc3573865fa08809779fc94def9f8de220553507cc700e546a7ee952472e94 - category: main - optional: false + md5: c5301ff9ec4c62757f2655e23eb60329 + sha256: 8722448dc0caeb86407a9d10ef0d9c735a278ffd80b1425a2734df9c974651e9 + category: dev + optional: true - name: babel version: 2.17.0 manager: conda @@ -243,7 +243,7 @@ package: category: main optional: false - name: brotli-python - version: 1.1.0 + version: 1.2.0 manager: conda platform: linux-64 dependencies: @@ -252,14 +252,14 @@ package: libstdcxx: '>=14' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/brotli-python-1.1.0-py312h1289d80_4.conda + url: https://repo.prefix.dev/conda-forge/linux-64/brotli-python-1.2.0-py312h67db365_0.conda hash: - md5: fd0e7746ed0676f008daacb706ce69e4 - sha256: 52a9ac412512b418ecdb364ba21c0f3dc96f0abbdb356b3cfbb980020b663d9b + md5: 7c9245551ebbe6b6068aeda04060afaa + sha256: 1acccd5464d81184ead80c017b4a7320c59c2774eb914f14d60ca8b4c55754e9 category: dev optional: true - name: brotli-python - version: 1.1.0 + version: 1.2.0 manager: conda platform: win-64 dependencies: @@ -268,10 +268,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/brotli-python-1.1.0-py312hbb81ca0_4.conda + url: https://repo.prefix.dev/conda-forge/win-64/brotli-python-1.2.0-py312h9d5906e_0.conda hash: - md5: 3bb5cbb24258cc7ab83126976d36e711 - sha256: f3c7c9b0a41c0ec0c231b92fe944e1ab9e64cf0b4ae9d82e25994d3233baa20c + md5: 33b94eb79455950e69771bdd22db2988 + sha256: 48ffd069cab4b3b294daeb90e2536dafed5fe0a8476bc9fdcaa9924b691568f8 category: dev optional: true - name: brunsli @@ -280,15 +280,15 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libbrotlicommon: '>=1.1.0,<1.2.0a0' - libbrotlidec: '>=1.1.0,<1.2.0a0' - libbrotlienc: '>=1.1.0,<1.2.0a0' + libbrotlicommon: '>=1.2.0,<1.3.0a0' + libbrotlidec: '>=1.2.0,<1.3.0a0' + libbrotlienc: '>=1.2.0,<1.3.0a0' libgcc: '>=14' libstdcxx: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/brunsli-0.1-he3183e4_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/brunsli-0.1-hd1e3526_2.conda hash: - md5: 799ebfe432cb3949e246b69278ef851c - sha256: fddad9bb57ee7ec619a5cf4591151578a2501c3bf8cb3b4b066ac5b54c85a4dd + md5: 5948f4fead433c6e5c46444dbfb01162 + sha256: b4831ac06bb65561342cedf3d219cf9b096f20b8d62cda74f0177dffed79d4d5 category: main optional: false - name: bzip2 @@ -332,7 +332,7 @@ package: category: main optional: false - name: c-blosc2 - version: 2.21.2 + version: 2.22.0 manager: conda platform: linux-64 dependencies: @@ -342,14 +342,14 @@ package: lz4-c: '>=1.10.0,<1.11.0a0' zlib-ng: '>=2.2.5,<2.3.0a0' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/c-blosc2-2.21.2-h4cfbee9_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/c-blosc2-2.22.0-h4cfbee9_0.conda hash: - md5: 30fe6bea5d1a914883109365eccebf3b - sha256: 18d6e1cd95c59f6e6d090721a9af26c07bf592da51a43818ea923caa8cbaa6d6 + md5: bede98a38485d588b3ec7e4ba2e46532 + sha256: c558bce3c6d1707528a9b54b1af321e3d6968e4db3e5addc9dcb906422026490 category: main optional: false - name: c-blosc2 - version: 2.21.2 + version: 2.22.0 manager: conda platform: win-64 dependencies: @@ -359,34 +359,34 @@ package: vc14_runtime: '>=14.44.35208' zlib-ng: '>=2.2.5,<2.3.0a0' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/c-blosc2-2.21.2-h3cf07e4_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/c-blosc2-2.22.0-h3cf07e4_0.conda hash: - md5: 876ba9bc5eb0e4aa2e2743708b96d09e - sha256: 9aec8a14fe13146b42a1eb16d040036c4e10f1e39605b99e44dc0baa6d002619 + md5: ab0d849766a52945ee1d872abf61fb0c + sha256: 522b3bbfcd30d4559aec29228448aa49ca02d1e9c79f4b6da446462042707680 category: main optional: false - name: ca-certificates - version: 2025.8.3 + version: 2025.10.5 manager: conda platform: linux-64 dependencies: __unix: '' - url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.8.3-hbd8a1cb_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.10.5-hbd8a1cb_0.conda hash: - md5: 74784ee3d225fc3dca89edb635b4e5cc - sha256: 837b795a2bb39b75694ba910c13c15fa4998d4bb2a622c214a6a5174b2ae53d1 + md5: f9e5fbc24009179e8b0409624691758a + sha256: 3b5ad78b8bb61b6cdc0978a6a99f8dfb2cc789a451378d054698441005ecbdb6 category: main optional: false - name: ca-certificates - version: 2025.8.3 + version: 2025.10.5 manager: conda platform: win-64 dependencies: __win: '' - url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.8.3-h4c7d964_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.10.5-h4c7d964_0.conda hash: - md5: c9e0c0f82f6e63323827db462b40ede8 - sha256: 3b82f62baad3fd33827b01b0426e8203a2786c8f452f633740868296bcbe8485 + md5: e54200a1cd1fe33d61c9df8d3b00b743 + sha256: bfb7f9f242f441fdcd80f1199edd2ecf09acea0f2bcef6f07d7cbb1a8131a345 category: main optional: false - name: cached-property @@ -438,48 +438,48 @@ package: category: main optional: false - name: certifi - version: 2025.8.3 + version: 2025.10.5 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.8.3-pyhd8ed1ab_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.10.5-pyhd8ed1ab_0.conda hash: - md5: 11f59985f49df4620890f3e746ed7102 - sha256: a1ad5b0a2a242f439608f22a538d2175cac4444b7b3f4e2b8c090ac337aaea40 + md5: 257ae203f1d204107ba389607d375ded + sha256: 955bac31be82592093f6bc006e09822cd13daf52b28643c9a6abd38cd5f4a306 category: dev optional: true - name: certifi - version: 2025.8.3 + version: 2025.10.5 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.8.3-pyhd8ed1ab_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.10.5-pyhd8ed1ab_0.conda hash: - md5: 11f59985f49df4620890f3e746ed7102 - sha256: a1ad5b0a2a242f439608f22a538d2175cac4444b7b3f4e2b8c090ac337aaea40 + md5: 257ae203f1d204107ba389607d375ded + sha256: 955bac31be82592093f6bc006e09822cd13daf52b28643c9a6abd38cd5f4a306 category: dev optional: true - name: cffi - version: 1.17.1 + version: 2.0.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libffi: '>=3.4.6,<3.5.0a0' + libffi: '>=3.5.2,<3.6.0a0' libgcc: '>=14' pycparser: '' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/cffi-1.17.1-py312h35888ee_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/cffi-2.0.0-py312h460c074_1.conda hash: - md5: 918e2510c64000a916355dcf09d26da2 - sha256: 13bf94678e7a853a39a2c6dc2674b096cfe80f43ad03d7fff4bcde05edf9fda4 + md5: 648ee28dcd4e07a1940a17da62eccd40 + sha256: 7dafe8173d5f94e46cf9cd597cc8ff476a8357fbbd4433a8b5697b2864845d9c category: dev optional: true - name: cffi - version: 1.17.1 + version: 2.0.0 manager: conda platform: win-64 dependencies: @@ -489,10 +489,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/cffi-1.17.1-py312he06e257_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/cffi-2.0.0-py312he06e257_1.conda hash: - md5: a73ee5cb34f7a18dd6a11015de607e15 - sha256: d175cbc3b11496456360922b0773d5b1f0bf8e414b48c55472d0790a5ceefdb9 + md5: 46f7dccfee37a52a97c0ed6f33fcf0a3 + sha256: 3e3bdcb85a2e79fe47d9c8ce64903c76f663b39cb63b8e761f6f884e76127f82 category: dev optional: true - name: charls @@ -523,27 +523,27 @@ package: category: main optional: false - name: charset-normalizer - version: 3.4.3 + version: 3.4.4 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.3-pyhd8ed1ab_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.4-pyhd8ed1ab_0.conda hash: - md5: 7e7d5ef1b9ed630e4a1c358d6bc62284 - sha256: 838d5a011f0e7422be6427becba3de743c78f3874ad2743c341accbba9bb2624 + md5: a22d1fd9bf98827e280a02875d9a007a + sha256: b32f8362e885f1b8417bac2b3da4db7323faa12d5db62b7fd6691c02d60d6f59 category: dev optional: true - name: charset-normalizer - version: 3.4.3 + version: 3.4.4 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.3-pyhd8ed1ab_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.4-pyhd8ed1ab_0.conda hash: - md5: 7e7d5ef1b9ed630e4a1c358d6bc62284 - sha256: 838d5a011f0e7422be6427becba3de743c78f3874ad2743c341accbba9bb2624 + md5: a22d1fd9bf98827e280a02875d9a007a + sha256: b32f8362e885f1b8417bac2b3da4db7323faa12d5db62b7fd6691c02d60d6f59 category: dev optional: true - name: colorama @@ -571,7 +571,7 @@ package: category: main optional: false - name: coverage - version: 7.10.6 + version: 7.11.3 manager: conda platform: linux-64 dependencies: @@ -580,14 +580,14 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* tomli: '' - url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.10.6-py312h8a5da7c_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.11.3-py312h8a5da7c_0.conda hash: - md5: 0bffddcd9276d65304761c70ba5c2882 - sha256: f4774396137aaeec172e812bbcfc68e21dfa1fae2a04a437a6e2aa52fbddec89 + md5: eb18b3b7b8d07a1cc10d99117b5aadc8 + sha256: 529589980631c1c6144233fdd57370ebafcb3c0cf017b1ea6474911908f9ca90 category: dev optional: true - name: coverage - version: 7.10.6 + version: 7.11.3 manager: conda platform: win-64 dependencies: @@ -597,10 +597,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.10.6-py312h05f76fc_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.11.3-py312h05f76fc_0.conda hash: - md5: 040ebae03f3f666cae7cd40b95c6ef8c - sha256: 8914bba5e99644b2976003269c87221efd6ee5ba7ad3b0a1ecf0876954116263 + md5: c05a53e641516622b2059be0157d94c7 + sha256: 7d910b7f79f7c6e2dd43078a0d0ea0db8d6a173da0e1ba59e1945f7850261e2a category: dev optional: true - name: dav1d @@ -639,8 +639,8 @@ package: hash: md5: 885745570573eb6a08e021841928297a sha256: 43dca52c96fde0c4845aaff02bcc92f25e1c2e5266ddefc2eac1a3de0960a3b1 - category: main - optional: false + category: dev + optional: true - name: dill version: 0.4.0 manager: conda @@ -651,8 +651,8 @@ package: hash: md5: 885745570573eb6a08e021841928297a sha256: 43dca52c96fde0c4845aaff02bcc92f25e1c2e5266ddefc2eac1a3de0960a3b1 - category: main - optional: false + category: dev + optional: true - name: docutils version: 0.21.2 manager: conda @@ -784,7 +784,7 @@ package: category: dev optional: true - name: h5py - version: 3.14.0 + version: 3.15.1 manager: conda platform: linux-64 dependencies: @@ -795,14 +795,14 @@ package: numpy: '>=1.23,<3' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/h5py-3.14.0-nompi_py312ha4f8f14_101.conda + url: https://repo.prefix.dev/conda-forge/linux-64/h5py-3.15.1-nompi_py312ha4f8f14_100.conda hash: - md5: fff67e7204b34a6e82ccf076786d1a7a - sha256: 6736b00b257aecef97e5e607ff275780cacdec48ff85963fe53abeb9ee4fb53f + md5: 44a8a9fe9150a6aba3c7e3845604b4ff + sha256: 5116f0aff9ae47c1ce594e4eb0d1b0b8f3b5347f91e883dff12bdbf8b782fa50 category: main optional: false - name: h5py - version: 3.14.0 + version: 3.15.1 manager: conda platform: win-64 dependencies: @@ -814,10 +814,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/h5py-3.14.0-nompi_py312h03cd2ba_101.conda + url: https://repo.prefix.dev/conda-forge/win-64/h5py-3.15.1-nompi_py312h03cd2ba_100.conda hash: - md5: dc73d015d4d8afbe3a5caf38e7be048a - sha256: 932f5a81723869cd4b201bbbac58f63c8e042ab6bb0afccc24a77e81f3eb40eb + md5: fd77224d0a5bb4f87438b80362f56a7a + sha256: 101ccbf8aa4640f0f08829899886d8586237fab402e77bc9debfeb0de9208ae7 category: main optional: false - name: hdf5 @@ -909,39 +909,39 @@ package: - name: icu version: '75.1' manager: conda - platform: win-64 + platform: linux-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/icu-75.1-he0c23c2_0.conda + __glibc: '>=2.17,<3.0.a0' + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + url: https://repo.prefix.dev/conda-forge/linux-64/icu-75.1-he02047a_0.conda hash: - md5: 8579b6bb8d18be7c0b27fb08adeeeb40 - sha256: 1d04369a1860a1e9e371b9fc82dd0092b616adcf057d6c88371856669280e920 + md5: 8b189310083baabfb622af68fd9d3ae3 + sha256: 71e750d509f5fa3421087ba88ef9a7b9be11c53174af3aa4d06aff4c18b38e8e category: main optional: false - name: idna - version: '3.10' + version: '3.11' manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/idna-3.11-pyhd8ed1ab_0.conda hash: - md5: 39a4f67be3286c86d696df570b1201b7 - sha256: d7a472c9fd479e2e8dcb83fb8d433fce971ea369d704ece380e876f9c3494e87 + md5: 53abe63df7e10a6ba605dc5f9f961d36 + sha256: ae89d0299ada2a3162c2614a9d26557a92aa6a77120ce142f8e0109bbf0342b0 category: dev optional: true - name: idna - version: '3.10' + version: '3.11' manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/idna-3.11-pyhd8ed1ab_0.conda hash: - md5: 39a4f67be3286c86d696df570b1201b7 - sha256: d7a472c9fd479e2e8dcb83fb8d433fce971ea369d704ece380e876f9c3494e87 + md5: 53abe63df7e10a6ba605dc5f9f961d36 + sha256: ae89d0299ada2a3162c2614a9d26557a92aa6a77120ce142f8e0109bbf0342b0 category: dev optional: true - name: imagecodecs @@ -953,7 +953,7 @@ package: blosc: '>=1.21.6,<2.0a0' brunsli: '>=0.1,<1.0a0' bzip2: '>=1.0.8,<2.0a0' - c-blosc2: '>=2.21.2,<2.22.0a0' + c-blosc2: '>=2.22.0,<2.23.0a0' charls: '>=2.4.2,<2.5.0a0' giflib: '>=5.2.2,<5.3.0a0' jxrlib: '>=1.1,<1.2.0a0' @@ -961,33 +961,33 @@ package: lerc: '>=4.0.0,<5.0a0' libaec: '>=1.1.4,<2.0a0' libavif16: '>=1.3.0,<2.0a0' - libbrotlicommon: '>=1.1.0,<1.2.0a0' - libbrotlidec: '>=1.1.0,<1.2.0a0' - libbrotlienc: '>=1.1.0,<1.2.0a0' - libdeflate: '>=1.24,<1.25.0a0' + libbrotlicommon: '>=1.2.0,<1.3.0a0' + libbrotlidec: '>=1.2.0,<1.3.0a0' + libbrotlienc: '>=1.2.0,<1.3.0a0' + libdeflate: '>=1.25,<1.26.0a0' libgcc: '>=14' libjpeg-turbo: '>=3.1.0,<4.0a0' libjxl: '>=0.11,<0.12.0a0' liblzma: '>=5.8.1,<6.0a0' libpng: '>=1.6.50,<1.7.0a0' libstdcxx: '>=14' - libtiff: '>=4.7.0,<4.8.0a0' + libtiff: '>=4.7.1,<4.8.0a0' libwebp-base: '>=1.6.0,<2.0a0' libzlib: '>=1.3.1,<2.0a0' libzopfli: '>=1.0.3,<1.1.0a0' lz4-c: '>=1.10.0,<1.11.0a0' numpy: '>=1.23,<3' - openjpeg: '>=2.5.3,<3.0a0' + openjpeg: '>=2.5.4,<3.0a0' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* snappy: '>=1.2.2,<1.3.0a0' zfp: '>=1.0.1,<2.0a0' zlib-ng: '>=2.2.5,<2.3.0a0' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/imagecodecs-2025.8.2-py312h4ecb025_4.conda + url: https://repo.prefix.dev/conda-forge/linux-64/imagecodecs-2025.8.2-py312ha08ed9d_7.conda hash: - md5: 2d422ec63f084653496c3e809247c268 - sha256: 8a839d301b228f7cda26ac5e0b1f8387a8c7ac1244bc44b7f8e03f78bc7fdf2c + md5: 215f296493ca54392cfe85f531494896 + sha256: b89d4aebd2c33f23461b4bdc02b6c221311e48ecf134c57d2319a08fecae467b category: main optional: false - name: imagecodecs @@ -997,7 +997,7 @@ package: dependencies: blosc: '>=1.21.6,<2.0a0' bzip2: '>=1.0.8,<2.0a0' - c-blosc2: '>=2.21.2,<2.22.0a0' + c-blosc2: '>=2.22.0,<2.23.0a0' charls: '>=2.4.2,<2.5.0a0' giflib: '>=5.2.2,<5.3.0a0' jxrlib: '>=1.1,<1.2.0a0' @@ -1005,21 +1005,21 @@ package: lerc: '>=4.0.0,<5.0a0' libaec: '>=1.1.4,<2.0a0' libavif16: '>=1.3.0,<2.0a0' - libbrotlicommon: '>=1.1.0,<1.2.0a0' - libbrotlidec: '>=1.1.0,<1.2.0a0' - libbrotlienc: '>=1.1.0,<1.2.0a0' - libdeflate: '>=1.24,<1.25.0a0' + libbrotlicommon: '>=1.2.0,<1.3.0a0' + libbrotlidec: '>=1.2.0,<1.3.0a0' + libbrotlienc: '>=1.2.0,<1.3.0a0' + libdeflate: '>=1.25,<1.26.0a0' libjpeg-turbo: '>=3.1.0,<4.0a0' libjxl: '>=0.11,<0.12.0a0' liblzma: '>=5.8.1,<6.0a0' libpng: '>=1.6.50,<1.7.0a0' - libtiff: '>=4.7.0,<4.8.0a0' + libtiff: '>=4.7.1,<4.8.0a0' libwebp-base: '>=1.6.0,<2.0a0' libzlib: '>=1.3.1,<2.0a0' libzopfli: '>=1.0.3,<1.1.0a0' lz4-c: '>=1.10.0,<1.11.0a0' numpy: '>=1.23,<3' - openjpeg: '>=2.5.3,<3.0a0' + openjpeg: '>=2.5.4,<3.0a0' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* snappy: '>=1.2.2,<1.3.0a0' @@ -1029,10 +1029,10 @@ package: zfp: '>=1.0.1,<2.0a0' zlib-ng: '>=2.2.5,<2.3.0a0' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/imagecodecs-2025.8.2-py312h424859f_4.conda + url: https://repo.prefix.dev/conda-forge/win-64/imagecodecs-2025.8.2-py312hf2cf878_7.conda hash: - md5: afbb244a9349d60e43fd1c9a58544daf - sha256: 1509a6a363aad5e4a71db7a745671993d413189cd9a3d03b8f5062a6c8e99588 + md5: b71ea9d32b03179e37205fac2a52fed7 + sha256: 05172b4209c3ed0c160890f6f7599e96d9081b84acc619226df84b49e468a6f0 category: main optional: false - name: imageio @@ -1114,53 +1114,55 @@ package: category: main optional: false - name: iniconfig - version: 2.0.0 + version: 2.3.0 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/iniconfig-2.3.0-pyhd8ed1ab_0.conda hash: - md5: 6837f3eff7dcea42ecd714ce1ac2b108 - sha256: 0ec8f4d02053cd03b0f3e63168316530949484f80e16f5e2fb199a1d117a89ca + md5: 9614359868482abba1bd15ce465e3c42 + sha256: e1a9e3b1c8fe62dc3932a616c284b5d8cbe3124bbfbedcf4ce5c828cb166ee19 category: dev optional: true - name: iniconfig - version: 2.0.0 + version: 2.3.0 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/iniconfig-2.3.0-pyhd8ed1ab_0.conda hash: - md5: 6837f3eff7dcea42ecd714ce1ac2b108 - sha256: 0ec8f4d02053cd03b0f3e63168316530949484f80e16f5e2fb199a1d117a89ca + md5: 9614359868482abba1bd15ce465e3c42 + sha256: e1a9e3b1c8fe62dc3932a616c284b5d8cbe3124bbfbedcf4ce5c828cb166ee19 category: dev optional: true - name: isort - version: 6.0.1 + version: 7.0.0 manager: conda platform: linux-64 dependencies: - python: '>=3.9,<4.0' - url: https://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_1.conda + importlib-metadata: '>=4.6.0' + python: '>=3.10,<4.0' + url: https://repo.prefix.dev/conda-forge/noarch/isort-7.0.0-pyhd8ed1ab_0.conda hash: - md5: c25d1a27b791dab1797832aafd6a3e9a - sha256: e1d0e81e3c3da5d7854f9f57ffb89d8f4505bb64a2f05bb01d78eff24344a105 - category: main - optional: false + md5: 55a61979242077b2cc377c74326ea9f0 + sha256: 13b0005877f553eb2e5c50447c9d0047e7257124ec2d1569d7dad35697790237 + category: dev + optional: true - name: isort - version: 6.0.1 + version: 7.0.0 manager: conda platform: win-64 dependencies: - python: '>=3.9,<4.0' - url: https://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_1.conda + importlib-metadata: '>=4.6.0' + python: '>=3.10,<4.0' + url: https://repo.prefix.dev/conda-forge/noarch/isort-7.0.0-pyhd8ed1ab_0.conda hash: - md5: c25d1a27b791dab1797832aafd6a3e9a - sha256: e1d0e81e3c3da5d7854f9f57ffb89d8f4505bb64a2f05bb01d78eff24344a105 - category: main - optional: false + md5: 55a61979242077b2cc377c74326ea9f0 + sha256: 13b0005877f553eb2e5c50447c9d0047e7257124ec2d1569d7dad35697790237 + category: dev + optional: true - name: jinja2 version: 3.1.6 manager: conda @@ -1322,10 +1324,11 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.44-h1423503_1.conda + zstd: '>=1.5.7,<1.6.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.44-h1aa0949_5.conda hash: - md5: 0be7c6e070c19105f966d3758448d018 - sha256: 1a620f27d79217c1295049ba214c2f80372062fd251b569e9873d4a953d27554 + md5: 511ed8935448c1875776b60ad3daf3a1 + sha256: dab1fbf65abb05d3f2ee49dff90d60eeb2e02039fcb561343c7cea5dea523585 category: main optional: false - name: lerc @@ -1426,10 +1429,10 @@ package: platform: linux-64 dependencies: libopenblas: '>=0.3.30,<0.3.31.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libblas-3.9.0-35_h4a7cf45_openblas.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libblas-3.9.0-38_h4a7cf45_openblas.conda hash: - md5: 6da7e852c812a84096b68158574398d0 - sha256: 6cae2184069dd6527a405bc4a3de1290729f6f1c7a475fa4c937a6c02e05f058 + md5: 3509b5e2aaa5f119013c8969fdd9a905 + sha256: b26a32302194e05fa395d5135699fd04a905c6ad71f24333f97c64874e053623 category: main optional: false - name: libblas @@ -1437,96 +1440,96 @@ package: manager: conda platform: win-64 dependencies: - mkl: '>=2024.2.2,<2025.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/libblas-3.9.0-35_h5709861_mkl.conda + mkl: '>=2025.3.0,<2026.0a0' + url: https://repo.prefix.dev/conda-forge/win-64/libblas-3.9.0-38_hf2e6a31_mkl.conda hash: - md5: 45d98af023f8b4a7640b1f713ce6b602 - sha256: 4180e7ab27ed03ddf01d7e599002fcba1b32dcb68214ee25da823bac371ed362 + md5: dcee15907da751895e20b4d1ac94568d + sha256: 363920dbd6a4c09f419a4e032568d5468dc9196e8c9e401af4e8026ecf88f2b7 category: main optional: false - name: libbrotlicommon - version: 1.1.0 + version: 1.2.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlicommon-1.1.0-hb03c661_4.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlicommon-1.2.0-h09219d5_0.conda hash: - md5: 1d29d2e33fe59954af82ef54a8af3fe1 - sha256: 2338a92d1de71f10c8cf70f7bb9775b0144a306d75c4812276749f54925612b6 + md5: 9b3117ec960b823815b02190b41c0484 + sha256: fbbcd11742bb8c96daa5f4f550f1804a902708aad2092b39bec3faaa2c8ae88a category: main optional: false - name: libbrotlicommon - version: 1.1.0 + version: 1.2.0 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libbrotlicommon-1.1.0-hfd05255_4.conda + url: https://repo.prefix.dev/conda-forge/win-64/libbrotlicommon-1.2.0-hc82b238_0.conda hash: - md5: 58aec7a295039d8614175eae3a4f8778 - sha256: 65d0aaf1176761291987f37c8481be132060cc3dbe44b1550797bc27d1a0c920 + md5: a5607006c2135402ca3bb96ff9b87896 + sha256: 938078532c3a09e9687747fa562c08ece4a35545467ec26e5be9265a5dbff928 category: main optional: false - name: libbrotlidec - version: 1.1.0 + version: 1.2.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libbrotlicommon: 1.1.0 + libbrotlicommon: 1.2.0 libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlidec-1.1.0-hb03c661_4.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlidec-1.2.0-hd53d788_0.conda hash: - md5: 5cb5a1c9a94a78f5b23684bcb845338d - sha256: fcec0d26f67741b122f0d5eff32f0393d7ebd3ee6bb866ae2f17f3425a850936 + md5: c183787d2b228775dece45842abbbe53 + sha256: f7f357c33bd10afd58072ad4402853a8522d52d00d7ae9adb161ecf719f63574 category: main optional: false - name: libbrotlidec - version: 1.1.0 + version: 1.2.0 manager: conda platform: win-64 dependencies: - libbrotlicommon: 1.1.0 + libbrotlicommon: 1.2.0 ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libbrotlidec-1.1.0-hfd05255_4.conda + url: https://repo.prefix.dev/conda-forge/win-64/libbrotlidec-1.2.0-h431afc6_0.conda hash: - md5: bf0ced5177fec8c18a7b51d568590b7c - sha256: aa03aff197ed503e38145d0d0f17c30382ac1c6d697535db24c98c272ef57194 + md5: edc47a5d0ec6d95efefab3e99d0f4df0 + sha256: 229edc6f56b51dde812d1932b4c6f477654c2f5d477fff9cff184ebd4ce158bd category: main optional: false - name: libbrotlienc - version: 1.1.0 + version: 1.2.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libbrotlicommon: 1.1.0 + libbrotlicommon: 1.2.0 libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlienc-1.1.0-hb03c661_4.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlienc-1.2.0-h02bd7ab_0.conda hash: - md5: 2e55011fa483edb8bfe3fd92e860cd79 - sha256: d42c7f0afce21d5279a0d54ee9e64a2279d35a07a90e0c9545caae57d6d7dc57 + md5: b7a924e3e9ebc7938ffc7d94fe603ed3 + sha256: 1370c8b1a215751c4592bf95d4b5d11bac91c577770efcb237e3a0f35c326559 category: main optional: false - name: libbrotlienc - version: 1.1.0 + version: 1.2.0 manager: conda platform: win-64 dependencies: - libbrotlicommon: 1.1.0 + libbrotlicommon: 1.2.0 ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libbrotlienc-1.1.0-hfd05255_4.conda + url: https://repo.prefix.dev/conda-forge/win-64/libbrotlienc-1.2.0-ha521d6b_0.conda hash: - md5: 37f4669f8ac2f04d826440a8f3f42300 - sha256: a593cde3e728a1e0486a19537846380e3ce90ae9d6c22c1412466a49474eeeed + md5: f780291507a3f91d93a7147daea082f8 + sha256: eb54110ee720e4a73b034d0c2bb0f26eadf79a1bd6b0656ebdf914da8f14989d category: main optional: false - name: libcblas @@ -1535,10 +1538,10 @@ package: platform: linux-64 dependencies: libblas: 3.9.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libcblas-3.9.0-35_h0358290_openblas.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libcblas-3.9.0-38_h0358290_openblas.conda hash: - md5: 8aa3389d36791ecd31602a247b1f3641 - sha256: fb77db75b0bd50856a1d53edcfd70c3314cde7e7c7d87479ee9d6b7fdbe824f1 + md5: bcd928a9376a215cd9164a4312dd5e98 + sha256: 7fe653f45c01eb16d7b48ad934b068dad2885d6f4a7c41512b6a5f1f522bffe9 category: main optional: false - name: libcblas @@ -1547,33 +1550,33 @@ package: platform: win-64 dependencies: libblas: 3.9.0 - url: https://repo.prefix.dev/conda-forge/win-64/libcblas-3.9.0-35_h2a3cdd5_mkl.conda + url: https://repo.prefix.dev/conda-forge/win-64/libcblas-3.9.0-38_h2a3cdd5_mkl.conda hash: - md5: 9639091d266e92438582d0cc4cfc8350 - sha256: 88939f6c1b5da75bd26ce663aa437e1224b26ee0dab5e60cecc77600975f397e + md5: 0c1602b1d15eb3d4da15bad122740df8 + sha256: f2bec12b960877387e5e8f84af5a50e19e97f52ddb1bed6b93ea38c4fb18ab62 category: main optional: false - name: libcurl - version: 8.14.1 + version: 8.17.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' krb5: '>=1.21.3,<1.22.0a0' - libgcc: '>=13' - libnghttp2: '>=1.64.0,<2.0a0' + libgcc: '>=14' + libnghttp2: '>=1.67.0,<2.0a0' libssh2: '>=1.11.1,<2.0a0' libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.5.0,<4.0a0' + openssl: '>=3.5.4,<4.0a0' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libcurl-8.14.1-h332b0f4_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libcurl-8.17.0-h4e3cde8_0.conda hash: - md5: 45f6713cb00f124af300342512219182 - sha256: b6c5cf340a4f80d70d64b3a29a7d9885a5918d16a5cb952022820e6d3e79dc8b + md5: 01e149d4a53185622dc2e788281961f2 + sha256: 100e29ca864c32af15a5cc354f502d07b2600218740fdf2439fa7d66b50b3529 category: main optional: false - name: libcurl - version: 8.14.1 + version: 8.17.0 manager: conda platform: win-64 dependencies: @@ -1581,39 +1584,39 @@ package: libssh2: '>=1.11.1,<2.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/libcurl-8.14.1-h88aaa65_0.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/libcurl-8.17.0-h43ecb02_0.conda hash: - md5: 836b9c08f34d2017dbcaec907c6a1138 - sha256: b2cface2cf35d8522289df7fffc14370596db6f6dc481cc1b6ca313faeac19d8 + md5: cfade9be135edb796837e7d4c288c0fb + sha256: 651daa5d2bad505b5c72b1d5d4d8c7fc0776ab420e67af997ca9391b6854b1b3 category: main optional: false - name: libdeflate - version: '1.24' + version: '1.25' manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libdeflate-1.24-h86f0d12_0.conda + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/libdeflate-1.25-h17f619e_0.conda hash: - md5: 64f0c503da58ec25ebd359e4d990afa8 - sha256: 8420748ea1cc5f18ecc5068b4f24c7a023cc9b20971c99c824ba10641fb95ddf + md5: 6c77a605a7a689d17d4819c0f8ac9a00 + sha256: aa8e8c4be9a2e81610ddf574e05b64ee131fab5e0e3693210c9d6d2fba32c680 category: main optional: false - name: libdeflate - version: '1.24' + version: '1.25' manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libdeflate-1.24-h76ddb4d_0.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/libdeflate-1.25-h51727cc_0.conda hash: - md5: 08d988e266c6ae77e03d164b83786dc4 - sha256: 65347475c0009078887ede77efe60db679ea06f2b56f7853b9310787fe5ad035 + md5: e77030e67343e28b084fabd7db0ce43e + sha256: 834e4881a18b690d5ec36f44852facd38e13afe599e369be62d29bd675f107ee category: main optional: false - name: libedit @@ -1670,30 +1673,30 @@ package: category: main optional: false - name: libffi - version: 3.4.6 + version: 3.5.2 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libffi-3.4.6-h2dba641_1.conda + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/libffi-3.5.2-h9ec8514_0.conda hash: - md5: ede4673863426c0883c0063d853bbd85 - sha256: 764432d32db45466e87f10621db5b74363a9f847d2b8b1f9743746cd160f06ab + md5: 35f29eec58405aaf55e01cb470d8c26a + sha256: 25cbdfa65580cfab1b8d15ee90b4c9f1e0d72128f1661449c9a999d341377d54 category: main optional: false - name: libffi - version: 3.4.6 + version: 3.5.2 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/libffi-3.4.6-h537db12_1.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/libffi-3.5.2-h52bdfb6_0.conda hash: - md5: 85d8fa5e55ed8f93f874b3b23ed54ec6 - sha256: d3b0b8812eab553d3464bbd68204f007f1ebadf96ce30eb0cbc5159f72e353f5 + md5: ba4ad812d2afc22b9a34ce8327a0930f + sha256: ddff25aaa4f0aa535413f5d831b04073789522890a4d8626366e43ecde1534a3 category: main optional: false - name: libfreetype @@ -1752,90 +1755,90 @@ package: category: main optional: false - name: libgcc - version: 15.1.0 + version: 15.2.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' _openmp_mutex: '>=4.5' - url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-15.1.0-h767d61c_5.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-15.2.0-h767d61c_7.conda hash: - md5: 264fbfba7fb20acf3b29cde153e345ce - sha256: 0caed73aac3966bfbf5710e06c728a24c6c138605121a3dacb2e03440e8baa6a + md5: c0374badb3a5d4b1372db28d19462c53 + sha256: 08f9b87578ab981c7713e4e6a7d935e40766e10691732bba376d4964562bcb45 category: main optional: false - name: libgcc - version: 15.1.0 + version: 15.2.0 manager: conda platform: win-64 dependencies: _openmp_mutex: '>=4.5' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' - url: https://repo.prefix.dev/conda-forge/win-64/libgcc-15.1.0-h1383e82_5.conda + url: https://repo.prefix.dev/conda-forge/win-64/libgcc-15.2.0-h1383e82_7.conda hash: - md5: c84381a01ede0e28d632fdbeea2debb2 - sha256: 9b997baa85ba495c04e1b30f097b80420c02dcaca6441c4bf2c6bb4b2c5d2114 + md5: 926a82fc4fa5b284b1ca1fb74f20dee2 + sha256: 174c4c75b03923ac755f227c96d956f7b4560a4b7dd83c0332709c50ff78450f category: main optional: false - name: libgcc-ng - version: 15.1.0 + version: 15.2.0 manager: conda platform: linux-64 dependencies: - libgcc: 15.1.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-ng-15.1.0-h69a702a_5.conda + libgcc: 15.2.0 + url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-ng-15.2.0-h69a702a_7.conda hash: - md5: 069afdf8ea72504e48d23ae1171d951c - sha256: f54bb9c3be12b24be327f4c1afccc2969712e0b091cdfbd1d763fb3e61cda03f + md5: 280ea6eee9e2ddefde25ff799c4f0363 + sha256: 2045066dd8e6e58aaf5ae2b722fb6dfdbb57c862b5f34ac7bfb58c40ef39b6ad category: main optional: false - name: libgfortran - version: 15.1.0 + version: 15.2.0 manager: conda platform: linux-64 dependencies: - libgfortran5: 15.1.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran-15.1.0-h69a702a_5.conda + libgfortran5: 15.2.0 + url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran-15.2.0-h69a702a_7.conda hash: - md5: 0c91408b3dec0b97e8a3c694845bd63b - sha256: 4c1a526198d0d62441549fdfd668cc8e18e77609da1e545bdcc771dd8dc6a990 + md5: 8621a450add4e231f676646880703f49 + sha256: 9ca24328e31c8ef44a77f53104773b9fe50ea8533f4c74baa8489a12de916f02 category: main optional: false - name: libgfortran5 - version: 15.1.0 + version: 15.2.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=15.1.0' - url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran5-15.1.0-hcea5267_5.conda + libgcc: '>=15.2.0' + url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran5-15.2.0-hcd61629_7.conda hash: - md5: fbd4008644add05032b6764807ee2cba - sha256: 9d06adc6d8e8187ddc1cad87525c690bc8202d8cb06c13b76ab2fc80a35ed565 + md5: f116940d825ffc9104400f0d7f1a4551 + sha256: e93ceda56498d98c9f94fedec3e2d00f717cbedfc97c49be0e5a5828802f2d34 category: main optional: false - name: libgomp - version: 15.1.0 + version: 15.2.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libgomp-15.1.0-h767d61c_5.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgomp-15.2.0-h767d61c_7.conda hash: - md5: dcd5ff1940cd38f6df777cac86819d60 - sha256: 125051d51a8c04694d0830f6343af78b556dd88cc249dfec5a97703ebfb1832d + md5: f7b4d76975aac7e5d9e6ad13845f92fe + sha256: e9fb1c258c8e66ee278397b5822692527c5f5786d372fe7a869b900853f3f5ca category: main optional: false - name: libgomp - version: 15.1.0 + version: 15.2.0 manager: conda platform: win-64 dependencies: libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' - url: https://repo.prefix.dev/conda-forge/win-64/libgomp-15.1.0-h1383e82_5.conda + url: https://repo.prefix.dev/conda-forge/win-64/libgomp-15.2.0-h1383e82_7.conda hash: - md5: eae9a32a85152da8e6928a703a514d35 - sha256: 65fd558d8f3296e364b8ae694932a64642fdd26d8eb4cf7adf08941e449be926 + md5: 7f970a7f9801622add7746aa3cbc24d5 + sha256: b8b569a9d3ec8f13531c220d3ad8e1ff35c75902c89144872e7542a77cb8c10d category: main optional: false - name: libhwloc @@ -1863,10 +1866,10 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' libstdcxx: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libhwy-1.3.0-h4c17acf_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libhwy-1.3.0-h4c17acf_1.conda hash: - md5: c563a24389a37a802c72e0c1a11bdd56 - sha256: 90db350957e1ee3b7122ededf0edf02f9cae5b1d3e119a6b1bc32af40adb1a5b + md5: c2a0c1d0120520e979685034e0b79859 + sha256: 2bdd1cdd677b119abc5e83069bec2e28fe6bfb21ebaea3cd07acee67f38ea274 category: main optional: false - name: libhwy @@ -1875,12 +1878,12 @@ package: 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/libhwy-1.3.0-h47aaa27_0.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/libhwy-1.3.0-ha71e874_1.conda hash: - md5: d175ef31c07023f9bc7f5deb274898c6 - sha256: 0c0d146bb142f86132356aabda2590498bd1dcae8396bbb7891954b6de9479e9 + md5: f4649d4b6bf40d616eda57d6255d2333 + sha256: c722a04f065656b988a46dee87303ff0bf037179c50e2e76704b693def7f9a96 category: main optional: false - name: libiconv @@ -1898,30 +1901,30 @@ package: category: main optional: false - name: libjpeg-turbo - version: 3.1.0 + version: 3.1.2 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libjpeg-turbo-3.1.0-hb9d3cd8_0.conda + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/libjpeg-turbo-3.1.2-hb03c661_0.conda hash: - md5: 9fa334557db9f63da6c9285fd2a48638 - sha256: 98b399287e27768bf79d48faba8a99a2289748c65cd342ca21033fab1860d4a4 + md5: 8397539e3a0bbd1695584fb4f927485a + sha256: cc9aba923eea0af8e30e0f94f2ad7156e2984d80d1e8e7fe6be5a1f257f0eb32 category: main optional: false - name: libjpeg-turbo - version: 3.1.0 + version: 3.1.2 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libjpeg-turbo-3.1.0-h2466b09_0.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/libjpeg-turbo-3.1.2-hfd05255_0.conda hash: - md5: 7c51d27540389de84852daa1cdb9c63c - sha256: e61b0adef3028b51251124e43eb6edf724c67c0f6736f1628b02511480ac354e + md5: 56a686f92ac0273c0f6af58858a3f013 + sha256: 795e2d4feb2f7fc4a2c6e921871575feb32b8082b5760726791f080d1e2c2597 category: main optional: false - name: libjxl @@ -1930,15 +1933,15 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libbrotlidec: '>=1.1.0,<1.2.0a0' - libbrotlienc: '>=1.1.0,<1.2.0a0' + libbrotlidec: '>=1.2.0,<1.3.0a0' + libbrotlienc: '>=1.2.0,<1.3.0a0' libgcc: '>=14' libhwy: '>=1.3.0,<1.4.0a0' libstdcxx: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libjxl-0.11.1-h6cb5226_4.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libjxl-0.11.1-hf08fa70_5.conda hash: - md5: f2840d9c2afb19e303e126c9d3a04b36 - sha256: b9d924d69fc84cd3c660a181985748d9c2df34cd7c7bb03b92d8f70efa7753d9 + md5: 82954a6f42e3fba59628741dca105c98 + sha256: 6b9524a6a7ea6ef1ac791b697f660c2898171ae505d12e6d27509b59cf059ee6 category: main optional: false - name: libjxl @@ -1946,16 +1949,16 @@ package: manager: conda platform: win-64 dependencies: - libbrotlidec: '>=1.1.0,<1.2.0a0' - libbrotlienc: '>=1.1.0,<1.2.0a0' + libbrotlidec: '>=1.2.0,<1.3.0a0' + libbrotlienc: '>=1.2.0,<1.3.0a0' libhwy: '>=1.3.0,<1.4.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libjxl-0.11.1-hb7713f0_4.conda + url: https://repo.prefix.dev/conda-forge/win-64/libjxl-0.11.1-hac9b6f3_5.conda hash: - md5: f0584648fbaf89d1cef77d94bc838d3a - sha256: 019de576f4eb0ca78ba2466514f4f84b83e222d9be83ea920f6c0f3ae260b71a + md5: 8e3cc52433c99ad9632f430d3ac2a077 + sha256: 54e35ad6152fb705f26491c6651d4b77757315c446a494ffc477f36fb2203c79 category: main optional: false - name: liblapack @@ -1964,10 +1967,10 @@ package: platform: linux-64 dependencies: libblas: 3.9.0 - url: https://repo.prefix.dev/conda-forge/linux-64/liblapack-3.9.0-35_h47877c9_openblas.conda + url: https://repo.prefix.dev/conda-forge/linux-64/liblapack-3.9.0-38_h47877c9_openblas.conda hash: - md5: aa0b36b71d44f74686f13b9bfabec891 - sha256: 5aceb67704af9185084ccdc8d841845df498a9af52783b858ceacd3e5b9e7dd8 + md5: 88f10bff57b423a3fd2d990c6055771e + sha256: 63d6073dd4f82ab46943ad99a22fc4edda83b0f8fe6170bdaba7a43352bed007 category: main optional: false - name: liblapack @@ -1976,10 +1979,10 @@ package: platform: win-64 dependencies: libblas: 3.9.0 - url: https://repo.prefix.dev/conda-forge/win-64/liblapack-3.9.0-35_hf9ab0e9_mkl.conda + url: https://repo.prefix.dev/conda-forge/win-64/liblapack-3.9.0-38_hf9ab0e9_mkl.conda hash: - md5: 0c6ed9d722cecda18f50f17fb3c30002 - sha256: 56e0992fb58eed8f0d5fa165b8621fa150b84aa9af1467ea0a7a9bb7e2fced4f + md5: eb3167046ffba0ceb4a8824fb1b79a69 + sha256: 3b8d2d800f48fb9045a976c5a10cefe742142df88decf5a5108fe6b7c8fb5b50 category: main optional: false - name: liblzma @@ -2049,10 +2052,10 @@ package: libgcc: '>=14' libgfortran: '' libgfortran5: '>=14.3.0' - url: https://repo.prefix.dev/conda-forge/linux-64/libopenblas-0.3.30-pthreads_h94d23a6_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libopenblas-0.3.30-pthreads_h94d23a6_3.conda hash: - md5: dfc5aae7b043d9f56ba99514d5e60625 - sha256: 1b51d1f96e751dc945cc06f79caa91833b0c3326efe24e9b506bd64ef49fc9b0 + md5: ac2e4832427d6b159576e8a68305c722 + sha256: 200899e5acc01fa29550d2782258d9cf33e55ce4cbce8faed9c6fe0b774852aa category: main optional: false - name: libpng @@ -2085,31 +2088,32 @@ package: category: main optional: false - name: libsqlite - version: 3.50.4 + version: 3.51.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' + icu: '>=75.1,<76.0a0' libgcc: '>=14' libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.50.4-h0c1763c_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.51.0-hee844dc_0.conda hash: - md5: 0b367fad34931cb79e0d6b7e5c06bb1c - sha256: 6d9c32fc369af5a84875725f7ddfbfc2ace795c28f246dc70055a79f9b2003da + md5: 729a572a3ebb8c43933b30edcc628ceb + sha256: 4c992dcd0e34b68f843e75406f7f303b1b97c248d18f3c7c330bdc0bc26ae0b3 category: main optional: false - name: libsqlite - version: 3.50.4 + version: 3.51.0 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.50.4-hf5d6505_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.51.0-hf5d6505_0.conda hash: - md5: ccb20d946040f86f0c05b644d5eadeca - sha256: 5dc4f07b2d6270ac0c874caec53c6984caaaa84bc0d3eb593b0edf3dc8492efa + md5: d2c9300ebd2848862929b18c264d1b1e + sha256: 2373bd7450693bd0f624966e1bee2f49b0bf0ffbc114275ed0a43cf35aec5b21 category: main optional: false - name: libssh2 @@ -2144,38 +2148,38 @@ package: category: main optional: false - name: libstdcxx - version: 15.1.0 + version: 15.2.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: 15.1.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-15.1.0-h8f9b012_5.conda + libgcc: 15.2.0 + url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-15.2.0-h8f9b012_7.conda hash: - md5: 4e02a49aaa9d5190cb630fa43528fbe6 - sha256: 0f5f61cab229b6043541c13538d75ce11bd96fb2db76f94ecf81997b1fde6408 + md5: 5b767048b1b3ee9a954b06f4084f93dc + sha256: 1b981647d9775e1cdeb2fab0a4dd9cd75a6b0de2963f6c3953dbd712f78334b3 category: main optional: false - name: libstdcxx-ng - version: 15.1.0 + version: 15.2.0 manager: conda platform: linux-64 dependencies: - libstdcxx: 15.1.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-15.1.0-h4852527_5.conda + libstdcxx: 15.2.0 + url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-15.2.0-h4852527_7.conda hash: - md5: 8bba50c7f4679f08c861b597ad2bda6b - sha256: 7b8cabbf0ab4fe3581ca28fe8ca319f964078578a51dd2ca3f703c1d21ba23ff + md5: f627678cf829bd70bccf141a19c3ad3e + sha256: 024fd46ac3ea8032a5ec3ea7b91c4c235701a8bf0e6520fe5e6539992a6bd05f category: main optional: false - name: libtiff - version: 4.7.0 + version: 4.7.1 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' lerc: '>=4.0.0,<5.0a0' - libdeflate: '>=1.24,<1.25.0a0' + libdeflate: '>=1.25,<1.26.0a0' libgcc: '>=14' libjpeg-turbo: '>=3.1.0,<4.0a0' liblzma: '>=5.8.1,<6.0a0' @@ -2183,19 +2187,19 @@ package: libwebp-base: '>=1.6.0,<2.0a0' libzlib: '>=1.3.1,<2.0a0' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libtiff-4.7.0-h8261f1e_6.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libtiff-4.7.1-h9d88235_1.conda hash: - md5: b6093922931b535a7ba566b6f384fbe6 - sha256: c62694cd117548d810d2803da6d9063f78b1ffbf7367432c5388ce89474e9ebe + md5: cd5a90476766d53e901500df9215e927 + sha256: e5f8c38625aa6d567809733ae04bb71c161a42e44a9fa8227abe61fa5c60ebe0 category: main optional: false - name: libtiff - version: 4.7.0 + version: 4.7.1 manager: conda platform: win-64 dependencies: lerc: '>=4.0.0,<5.0a0' - libdeflate: '>=1.24,<1.25.0a0' + libdeflate: '>=1.25,<1.26.0a0' libjpeg-turbo: '>=3.1.0,<4.0a0' liblzma: '>=5.8.1,<6.0a0' libzlib: '>=1.3.1,<2.0a0' @@ -2203,23 +2207,23 @@ package: vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/libtiff-4.7.0-h550210a_6.conda + url: https://repo.prefix.dev/conda-forge/win-64/libtiff-4.7.1-h8f73337_1.conda hash: - md5: 72d45aa52ebca91aedb0cfd9eac62655 - sha256: fd27821c8cfc425826f13760c3263d7b3b997c5372234cefa1586ff384dcc989 + md5: 549845d5133100142452812feb9ba2e8 + sha256: f1b8cccaaeea38a28b9cd496694b2e3d372bb5be0e9377c9e3d14b330d1cba8a category: main optional: false - name: libuuid - version: 2.41.1 + version: 2.41.2 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libuuid-2.41.1-he9a06e4_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libuuid-2.41.2-he9a06e4_0.conda hash: - md5: af930c65e9a79a3423d6d36e265cef65 - sha256: 776e28735cee84b97e4d05dd5d67b95221a3e2c09b8b13e3d6dbe6494337d527 + md5: 80c07c68d2f6870250959dcc95b209d1 + sha256: e5ec6d2ad7eef538ddcb9ea62ad4346fde70a4736342c4ad87bd713641eb9808 category: main optional: false - name: libwebp-base @@ -2255,10 +2259,10 @@ package: platform: win-64 dependencies: ucrt: '' - url: https://repo.prefix.dev/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h57928b3_9.conda + url: https://repo.prefix.dev/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h57928b3_10.conda hash: - md5: 08bfa5da6e242025304b206d152479ef - sha256: 373f2973b8a358528b22be5e8d84322c165b4c5577d24d94fd67ad1bb0a0f261 + md5: 8a86073cf3b343b87d03f41790d8b4e5 + sha256: 0fccf2d17026255b6e10ace1f191d0a2a18f2d65088fd02430be17c701f8ffe0 category: main optional: false - name: libxcb @@ -2307,40 +2311,38 @@ package: category: main optional: false - name: libxml2 - version: 2.15.0 + version: 2.15.1 manager: conda platform: win-64 dependencies: - icu: '>=75.1,<76.0a0' libiconv: '>=1.18,<2.0a0' liblzma: '>=5.8.1,<6.0a0' - libxml2-16: 2.15.0 + libxml2-16: 2.15.1 libzlib: '>=1.3.1,<2.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libxml2-2.15.0-ha29bfb0_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libxml2-2.15.1-h5d26750_0.conda hash: - md5: 5262552eb2f0d0b443adcfa265d97f0a - sha256: c3c2c74bd917d83b26c102b18bde97759c23f24e0260beb962acf7385627fc38 + md5: 9176ee05643a1bfe7f2e7b4c921d2c3d + sha256: f507960adf64ee9c9c7b7833d8b11980765ebd2bf5345f73d5a3b21b259eaed5 category: main optional: false - name: libxml2-16 - version: 2.15.0 + version: 2.15.1 manager: conda platform: win-64 dependencies: - icu: '>=75.1,<76.0a0' libiconv: '>=1.18,<2.0a0' liblzma: '>=5.8.1,<6.0a0' libzlib: '>=1.3.1,<2.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libxml2-16-2.15.0-h06f855e_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libxml2-16-2.15.1-h692994f_0.conda hash: - md5: a1071825a90769083fce8dbcefcccd65 - sha256: 15337581264464842ff28f616422b786161bee0169610ff292e0ea75fa78dba8 + md5: 70ca4626111579c3cd63a7108fe737f9 + sha256: 04129dc2df47a01c55e5ccf8a18caefab94caddec41b3b10fbc409e980239eb9 category: main optional: false - name: libzlib @@ -2397,17 +2399,17 @@ package: category: main optional: false - name: llvm-openmp - version: 20.1.8 + version: 21.1.5 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-20.1.8-hfa2b4ca_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-21.1.5-hfa2b4ca_0.conda hash: - md5: 2dc2edf349464c8b83a576175fc2ad42 - sha256: 8970b7f9057a1c2c18bfd743c6f5ce73b86197d7724423de4fa3d03911d5874b + md5: 3bd3154b24a1b9489d4ab04d62ffcc86 + sha256: 8c5106720e5414f48344fd28eae4db4f1a382336d8a0f30f71d41d8ae730fbb6 category: main optional: false - name: lz4-c @@ -2439,34 +2441,34 @@ package: category: main optional: false - name: markupsafe - version: 3.0.2 + version: 3.0.3 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' + libgcc: '>=14' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/markupsafe-3.0.2-py312h178313f_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/markupsafe-3.0.3-py312h8a5da7c_0.conda hash: - md5: eb227c3e0bf58f5bd69c0532b157975b - sha256: 4a6bf68d2a2b669fecc9a4a009abd1cf8e72c2289522ff00d81b5a6e51ae78f5 + md5: f775a43412f7f3d7ed218113ad233869 + sha256: f77f9f1a4da45cbc8792d16b41b6f169f649651a68afdc10b2da9da12b9aa42b category: dev optional: true - name: markupsafe - version: 3.0.2 + version: 3.0.3 manager: conda platform: win-64 dependencies: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/markupsafe-3.0.2-py312h31fea79_1.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/markupsafe-3.0.3-py312h05f76fc_0.conda hash: - md5: 944fdd848abfbd6929e57c790b8174dd - sha256: bbb9595fe72231a8fbc8909cfa479af93741ecd2d28dfe37f8f205fef5df2217 + md5: 9a50d5e7b4f2bf5db9790bbe9421cdf8 + sha256: db1d772015ef052fedb3b4e7155b13446b49431a0f8c54c56ca6f82e1d4e258f category: dev optional: true - name: mccabe @@ -2479,8 +2481,8 @@ package: hash: md5: 827064ddfe0de2917fb29f1da4f8f533 sha256: 9b0037171dad0100f0296699a11ae7d355237b55f42f9094aebc0f41512d96a1 - category: main - optional: false + category: dev + optional: true - name: mccabe version: 0.7.0 manager: conda @@ -2491,19 +2493,22 @@ package: hash: md5: 827064ddfe0de2917fb29f1da4f8f533 sha256: 9b0037171dad0100f0296699a11ae7d355237b55f42f9094aebc0f41512d96a1 - category: main - optional: false + category: dev + optional: true - name: mkl - version: 2024.2.2 + version: 2025.3.0 manager: conda platform: win-64 dependencies: - llvm-openmp: '>=20.1.8' - tbb: 2021.* - url: https://repo.prefix.dev/conda-forge/win-64/mkl-2024.2.2-h57928b3_16.conda + llvm-openmp: '>=21.1.4' + tbb: '>=2022.2.0' + ucrt: '>=10.0.20348.0' + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/mkl-2025.3.0-hac47afa_454.conda hash: - md5: 5cddc979c74b90cf5e5cda4f97d5d8bb - sha256: ce841e7c3898764154a9293c0f92283c1eb28cdacf7a164c94b632a6af675d91 + md5: c83ec81713512467dfe1b496a8292544 + sha256: 3c432e77720726c6bd83e9ee37ac8d0e3dd7c4cf9b4c5805e1d384025f9e9ab6 category: main optional: false - name: ncurses @@ -2581,7 +2586,7 @@ package: category: main optional: false - name: openjpeg - version: 2.5.3 + version: 2.5.4 manager: conda platform: linux-64 dependencies: @@ -2589,47 +2594,47 @@ package: libgcc: '>=14' libpng: '>=1.6.50,<1.7.0a0' libstdcxx: '>=14' - libtiff: '>=4.7.0,<4.8.0a0' + libtiff: '>=4.7.1,<4.8.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/openjpeg-2.5.3-h55fea9a_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/openjpeg-2.5.4-h55fea9a_0.conda hash: - md5: 01243c4aaf71bde0297966125aea4706 - sha256: 0b7396dacf988f0b859798711b26b6bc9c6161dca21bacfd778473da58730afa + md5: 11b3379b191f63139e29c0d19dee24cd + sha256: 3900f9f2dbbf4129cf3ad6acf4e4b6f7101390b53843591c53b00f034343bc4d category: main optional: false - name: openjpeg - version: 2.5.3 + version: 2.5.4 manager: conda platform: win-64 dependencies: libpng: '>=1.6.50,<1.7.0a0' - libtiff: '>=4.7.0,<4.8.0a0' + libtiff: '>=4.7.1,<4.8.0a0' libzlib: '>=1.3.1,<2.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/openjpeg-2.5.3-h24db6dd_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/openjpeg-2.5.4-h24db6dd_0.conda hash: - md5: 25f45acb1a234ad1c9b9a20e1e6c559e - sha256: c29cb1641bc5cfc2197e9b7b436f34142be4766dd2430a937b48b7474935aa55 + md5: 5af852046226bb3cb15c7f61c2ac020a + sha256: 226c270a7e3644448954c47959c00a9bf7845f6d600c2a643db187118d028eee category: main optional: false - name: openssl - version: 3.5.2 + version: 3.5.4 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' ca-certificates: '' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/openssl-3.5.2-h26f9b46_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/openssl-3.5.4-h26f9b46_0.conda hash: - md5: ffffb341206dd0dab0c36053c048d621 - sha256: c9f54d4e8212f313be7b02eb962d0cb13a8dae015683a403d3accd4add3e520e + md5: 14edad12b59ccbfa3910d42c72adc2a0 + sha256: e807f3bad09bdf4075dbb4168619e14b0c0360bacb2e12ef18641a834c8c5549 category: main optional: false - name: openssl - version: 3.5.2 + version: 3.5.4 manager: conda platform: win-64 dependencies: @@ -2637,10 +2642,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/openssl-3.5.2-h725018a_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/openssl-3.5.4-h725018a_0.conda hash: - md5: 150d3920b420a27c0848acca158f94dc - sha256: 2413f3b4606018aea23acfa2af3c4c46af786739ab4020422e9f0c2aec75321b + md5: f28ffa510fe055ab518cbd9d6ddfea23 + sha256: 5ddc1e39e2a8b72db2431620ad1124016f3df135f87ebde450d235c212a61994 category: main optional: false - name: packaging @@ -2716,57 +2721,57 @@ package: category: main optional: false - name: pip - version: '25.2' + version: '25.3' manager: conda platform: linux-64 dependencies: - python: '>=3.9,<3.13.0a0' + python: '>=3.10,<3.13.0a0' setuptools: '' wheel: '' - url: https://repo.prefix.dev/conda-forge/noarch/pip-25.2-pyh8b19718_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pip-25.3-pyh8b19718_0.conda hash: - md5: dfce4b2af4bfe90cdcaf56ca0b28ddf5 - sha256: ec9ed3cef137679f3e3a68e286c6efd52144684e1be0b05004d9699882dadcdd + md5: c55515ca43c6444d2572e0f0d93cb6b9 + sha256: b67692da1c0084516ac1c9ada4d55eaf3c5891b54980f30f3f444541c2706f1e category: main optional: false - name: pip - version: '25.2' + version: '25.3' manager: conda platform: win-64 dependencies: - python: '>=3.9,<3.13.0a0' + python: '>=3.10,<3.13.0a0' setuptools: '' wheel: '' - url: https://repo.prefix.dev/conda-forge/noarch/pip-25.2-pyh8b19718_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pip-25.3-pyh8b19718_0.conda hash: - md5: dfce4b2af4bfe90cdcaf56ca0b28ddf5 - sha256: ec9ed3cef137679f3e3a68e286c6efd52144684e1be0b05004d9699882dadcdd + md5: c55515ca43c6444d2572e0f0d93cb6b9 + sha256: b67692da1c0084516ac1c9ada4d55eaf3c5891b54980f30f3f444541c2706f1e category: main optional: false - name: platformdirs - version: 4.4.0 + version: 4.5.0 manager: conda platform: linux-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.4.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.5.0-pyhcf101f3_0.conda hash: - md5: cc9d9a3929503785403dbfad9f707145 - sha256: dfe0fa6e351d2b0cef95ac1a1533d4f960d3992f9e0f82aeb5ec3623a699896b - category: main - optional: false + md5: 5c7a868f8241e64e1cf5fdf4962f23e2 + sha256: 7efd51b48d908de2d75cbb3c4a2e80dd9454e1c5bb8191b261af3136f7fa5888 + category: dev + optional: true - name: platformdirs - version: 4.4.0 + version: 4.5.0 manager: conda platform: win-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.4.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.5.0-pyhcf101f3_0.conda hash: - md5: cc9d9a3929503785403dbfad9f707145 - sha256: dfe0fa6e351d2b0cef95ac1a1533d4f960d3992f9e0f82aeb5ec3623a699896b - category: main - optional: false + md5: 5c7a868f8241e64e1cf5fdf4962f23e2 + sha256: 7efd51b48d908de2d75cbb3c4a2e80dd9454e1c5bb8191b261af3136f7fa5888 + category: dev + optional: true - name: pluggy version: 1.6.0 manager: conda @@ -2843,57 +2848,57 @@ package: category: dev optional: true - name: pydantic - version: 2.11.9 + version: 2.12.4 manager: conda platform: linux-64 dependencies: annotated-types: '>=0.6.0' - pydantic-core: 2.33.2 + pydantic-core: 2.41.5 python: '>=3.10' typing-extensions: '>=4.6.1' - typing-inspection: '>=0.4.0' - typing_extensions: '>=4.12.2' - url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.9-pyh3cfb1c2_0.conda + typing-inspection: '>=0.4.2' + typing_extensions: '>=4.14.1' + url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.12.4-pyh3cfb1c2_0.conda hash: - md5: a6db60d33fe1ad50314a46749267fdfc - sha256: c3ec0c2202d109cdd5cac008bf7a42b67d4aa3c4cc14b4ee3e00a00541eabd88 + md5: bf6ce72315b6759453d8c90a894e9e4c + sha256: c51297f0f6ef13776cc5b61c37d00c0d45faaed34f81d196e64bebc989f3e497 category: main optional: false - name: pydantic - version: 2.11.9 + version: 2.12.4 manager: conda platform: win-64 dependencies: annotated-types: '>=0.6.0' - pydantic-core: 2.33.2 + pydantic-core: 2.41.5 python: '>=3.10' typing-extensions: '>=4.6.1' - typing-inspection: '>=0.4.0' - typing_extensions: '>=4.12.2' - url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.9-pyh3cfb1c2_0.conda + typing-inspection: '>=0.4.2' + typing_extensions: '>=4.14.1' + url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.12.4-pyh3cfb1c2_0.conda hash: - md5: a6db60d33fe1ad50314a46749267fdfc - sha256: c3ec0c2202d109cdd5cac008bf7a42b67d4aa3c4cc14b4ee3e00a00541eabd88 + md5: bf6ce72315b6759453d8c90a894e9e4c + sha256: c51297f0f6ef13776cc5b61c37d00c0d45faaed34f81d196e64bebc989f3e497 category: main optional: false - name: pydantic-core - version: 2.33.2 + version: 2.41.5 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' + libgcc: '>=14' python: '' python_abi: 3.12.* typing-extensions: '>=4.6.0,!=4.7.0' - url: https://repo.prefix.dev/conda-forge/linux-64/pydantic-core-2.33.2-py312h680f630_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pydantic-core-2.41.5-py312h868fb18_0.conda hash: - md5: cfbd96e5a0182dfb4110fc42dda63e57 - sha256: 4d14d7634c8f351ff1e63d733f6bb15cba9a0ec77e468b0de9102014a4ddc103 + md5: c7017a8aaec0ee5a5212d004e73bfdef + sha256: d1b924c342f3b526bb0a0d74e7ef8a8294f9df71355f0bbc619f9d3486931fe6 category: main optional: false - name: pydantic-core - version: 2.33.2 + version: 2.41.5 manager: conda platform: win-64 dependencies: @@ -2901,12 +2906,12 @@ package: python_abi: 3.12.* typing-extensions: '>=4.6.0,!=4.7.0' ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/pydantic-core-2.33.2-py312h8422cdd_0.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/pydantic-core-2.41.5-py312hdabe01f_0.conda hash: - md5: c61e3f191da309117e0b0478b49f6e91 - sha256: f377214abd06f1870011a6068b10c9e23dc62065d4c2de13b2f0a6014636e0ae + md5: 79baaa876cfe843b62b0bcc3d0a1db2e + sha256: 931c28d0a67d4c0a388f172ffc1ee956a32a386fa5490b643406a1e02e8135d9 category: main optional: false - name: pygments @@ -2934,47 +2939,45 @@ package: category: dev optional: true - name: pylint - version: 3.3.8 + version: 4.0.2 manager: conda platform: linux-64 dependencies: - astroid: '>=3.3.8,<3.4.0-dev0' + astroid: '>=4.0.1,<=4.1.0.dev0' colorama: '>=0.4.5' dill: '>=0.3.7' - isort: '>=4.2.5,<7,!=5.13.0' + isort: '>=5,<8,!=5.13' mccabe: '>=0.6,<0.8' - platformdirs: '>=2.2.0' - python: '>=3.9' + platformdirs: '>=2.2' + python: '>=3.10' tomli: '>=1.1.0' tomlkit: '>=0.10.1' - typing_extensions: '>=3.10.0' - url: https://repo.prefix.dev/conda-forge/noarch/pylint-3.3.8-pyhe01879c_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pylint-4.0.2-pyhcf101f3_0.conda hash: - md5: f5ba3b2c52e855b67fc0abedcebc9675 - sha256: 5b19f8113694ff4e4f0d0870cf38357d9e84330ff6c2516127a65764289b6743 - category: main - optional: false + md5: 0259facf4dbf67ad35ec517b6ffd6982 + sha256: 594bdf44a55c3bcf79ec6eb55d86571cbe3bee9f5216ede0721708c184da4ed8 + category: dev + optional: true - name: pylint - version: 3.3.8 + version: 4.0.2 manager: conda platform: win-64 dependencies: - astroid: '>=3.3.8,<3.4.0-dev0' + astroid: '>=4.0.1,<=4.1.0.dev0' colorama: '>=0.4.5' dill: '>=0.3.7' - isort: '>=4.2.5,<7,!=5.13.0' + isort: '>=5,<8,!=5.13' mccabe: '>=0.6,<0.8' - platformdirs: '>=2.2.0' - python: '>=3.9' + platformdirs: '>=2.2' + python: '>=3.10' tomli: '>=1.1.0' tomlkit: '>=0.10.1' - typing_extensions: '>=3.10.0' - url: https://repo.prefix.dev/conda-forge/noarch/pylint-3.3.8-pyhe01879c_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pylint-4.0.2-pyhcf101f3_0.conda hash: - md5: f5ba3b2c52e855b67fc0abedcebc9675 - sha256: 5b19f8113694ff4e4f0d0870cf38357d9e84330ff6c2516127a65764289b6743 - category: main - optional: false + md5: 0259facf4dbf67ad35ec517b6ffd6982 + sha256: 594bdf44a55c3bcf79ec6eb55d86571cbe3bee9f5216ede0721708c184da4ed8 + category: dev + optional: true - name: pysocks version: 1.7.1 manager: conda @@ -3003,41 +3006,41 @@ package: category: dev optional: true - name: pytest - version: 8.4.2 + version: 9.0.0 manager: conda platform: linux-64 dependencies: colorama: '>=0.4' exceptiongroup: '>=1' - iniconfig: '>=1' - packaging: '>=20' + iniconfig: '>=1.0.1' + packaging: '>=22' pluggy: '>=1.5,<2' pygments: '>=2.7.2' python: '>=3.10' tomli: '>=1' - url: https://repo.prefix.dev/conda-forge/noarch/pytest-8.4.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytest-9.0.0-pyhcf101f3_0.conda hash: - md5: 1f987505580cb972cf28dc5f74a0f81b - sha256: 41053d9893e379a3133bb9b557b98a3d2142fca474fb6b964ba5d97515f78e2d + md5: 499e8e2df95ad3d263bee8d41cc3d475 + sha256: afd413cd919bd3cca1d45062b9822be8935e1f61ce6d6b2642364e8c19e2873d category: dev optional: true - name: pytest - version: 8.4.2 + version: 9.0.0 manager: conda platform: win-64 dependencies: colorama: '>=0.4' exceptiongroup: '>=1' - iniconfig: '>=1' - packaging: '>=20' + iniconfig: '>=1.0.1' + packaging: '>=22' pluggy: '>=1.5,<2' pygments: '>=2.7.2' python: '>=3.10' tomli: '>=1' - url: https://repo.prefix.dev/conda-forge/noarch/pytest-8.4.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytest-9.0.0-pyhcf101f3_0.conda hash: - md5: 1f987505580cb972cf28dc5f74a0f81b - sha256: 41053d9893e379a3133bb9b557b98a3d2142fca474fb6b964ba5d97515f78e2d + md5: 499e8e2df95ad3d263bee8d41cc3d475 + sha256: afd413cd919bd3cca1d45062b9822be8935e1f61ce6d6b2642364e8c19e2873d category: dev optional: true - name: pytest-cov @@ -3071,56 +3074,56 @@ package: category: dev optional: true - name: python - version: 3.12.11 + version: 3.12.12 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' bzip2: '>=1.0.8,<2.0a0' ld_impl_linux-64: '>=2.36.1' - libexpat: '>=2.7.0,<3.0a0' - libffi: '>=3.4.6,<3.5.0a0' - libgcc: '>=13' + libexpat: '>=2.7.1,<3.0a0' + libffi: '>=3.5.2,<3.6.0a0' + libgcc: '>=14' liblzma: '>=5.8.1,<6.0a0' libnsl: '>=2.0.1,<2.1.0a0' - libsqlite: '>=3.50.0,<4.0a0' - libuuid: '>=2.38.1,<3.0a0' + libsqlite: '>=3.50.4,<4.0a0' + libuuid: '>=2.41.2,<3.0a0' libxcrypt: '>=4.4.36' libzlib: '>=1.3.1,<2.0a0' ncurses: '>=6.5,<7.0a0' - openssl: '>=3.5.0,<4.0a0' + openssl: '>=3.5.4,<4.0a0' pip: '' readline: '>=8.2,<9.0a0' tk: '>=8.6.13,<8.7.0a0' tzdata: '' - url: https://repo.prefix.dev/conda-forge/linux-64/python-3.12.11-h9e4cc4f_0_cpython.conda + url: https://repo.prefix.dev/conda-forge/linux-64/python-3.12.12-hd63d673_1_cpython.conda hash: - md5: 94206474a5608243a10c92cefbe0908f - sha256: 6cca004806ceceea9585d4d655059e951152fc774a471593d4f5138e6a54c81d + md5: 5c00c8cea14ee8d02941cab9121dce41 + sha256: 39898d24769a848c057ab861052e50bdc266310a7509efa3514b840e85a2ae98 category: main optional: false - name: python - version: 3.12.11 + version: 3.12.12 manager: conda platform: win-64 dependencies: bzip2: '>=1.0.8,<2.0a0' - libexpat: '>=2.7.0,<3.0a0' - libffi: '>=3.4.6,<3.5.0a0' + libexpat: '>=2.7.1,<3.0a0' + libffi: '>=3.5.2,<3.6.0a0' liblzma: '>=5.8.1,<6.0a0' - libsqlite: '>=3.50.0,<4.0a0' + libsqlite: '>=3.50.4,<4.0a0' libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.5.0,<4.0a0' + openssl: '>=3.5.4,<4.0a0' pip: '' tk: '>=8.6.13,<8.7.0a0' tzdata: '' ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/python-3.12.11-h3f84c4b_0_cpython.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/python-3.12.12-h0159041_1_cpython.conda hash: - md5: 6aa5e62df29efa6319542ae5025f4376 - sha256: b69412e64971b5da3ced0fc36f05d0eacc9393f2084c6f92b8f28ee068d83e2e + md5: 42ae551e4c15837a582bea63412dc0b4 + sha256: 9b163b0426c92eee1881d5c838e230a750a3fa372092db494772886ab91c2548 category: main optional: false - name: python_abi @@ -3179,10 +3182,10 @@ package: numpy: '>=1.25,<3' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/pywavelets-1.9.0-py312h4f23490_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pywavelets-1.9.0-py312h4f23490_2.conda hash: - md5: b182ab534776c2cc76fba59aa9916254 - sha256: 9def249251dc601c60be511e31999b126a823fbf626af6f98f8e96c6f19ab2de + md5: ab856c36638ab1acf90e70349c525cf9 + sha256: 5616729dbb1bfc21e8acc2c8f4d5e32b5e017e45e1e8f763dee8cac4c38f890b category: main optional: false - name: pywavelets @@ -3196,43 +3199,43 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/pywavelets-1.9.0-py312h196c9fc_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/pywavelets-1.9.0-py312h196c9fc_2.conda hash: - md5: 22f9b2f759780149722e4d55cd4b7355 - sha256: 68e673c4a55ee421b26f4d900506def65eff0195dddd4d7a827a3c64e0b37024 + md5: f1c2ea3586ae62747eee7aac5d2ae1fb + sha256: 566a660ded66097903ef634bb15359c189d4fc9ae377617246892dd95a47fd19 category: main optional: false - name: pyyaml - version: 6.0.2 + version: 6.0.3 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' + libgcc: '>=14' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* yaml: '>=0.2.5,<0.3.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/pyyaml-6.0.2-py312h178313f_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pyyaml-6.0.3-py312h8a5da7c_0.conda hash: - md5: cf2485f39740de96e2a7f2bb18ed2fee - sha256: 159cba13a93b3fe084a1eb9bda0a07afc9148147647f0d437c3c3da60980503b + md5: fba10c2007c8b06f77c5a23ce3a635ad + sha256: 1b3dc4c25c83093fff08b86a3574bc6b94ba355c8eba1f35d805c5e256455fc7 category: dev optional: true - name: pyyaml - version: 6.0.2 + version: 6.0.3 manager: conda platform: win-64 dependencies: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' yaml: '>=0.2.5,<0.3.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/pyyaml-6.0.2-py312h31fea79_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/pyyaml-6.0.3-py312h05f76fc_0.conda hash: - md5: ba00a2e5059c1fde96459858537cc8f5 - sha256: 76fec03ef7e67e37724873e1f805131fb88efb57f19e9a77b4da616068ef5c28 + md5: 4a68f80fbf85499f093101cc17ffbab7 + sha256: 54d04e61d17edffeba1e5cad45f10f272a016b6feec1fa8fa6af364d84a7b4fc category: dev optional: true - name: rav1e @@ -3500,7 +3503,7 @@ package: category: dev optional: true - name: sphinx - version: 8.3.0 + version: 8.2.3 manager: conda platform: linux-64 dependencies: @@ -3522,14 +3525,14 @@ package: sphinxcontrib-jsmath: '>=1.0.1' sphinxcontrib-qthelp: '>=1.0.6' sphinxcontrib-serializinghtml: '>=1.1.9' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-8.3.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-8.2.3-pyhd8ed1ab_0.conda hash: - md5: 6ce9ddee4c0f68bda548303196f4cf4c - sha256: 03c4d8b4cf3c5418e15f30f45be52bcde7c7e05baeec7dec5aaf6e238a411481 + md5: f7af826063ed569bb13f7207d6f949b0 + sha256: 995f58c662db0197d681fa345522fd9e7ac5f05330d3dff095ab2f102e260ab0 category: dev optional: true - name: sphinx - version: 8.3.0 + version: 8.2.3 manager: conda platform: win-64 dependencies: @@ -3551,36 +3554,36 @@ package: sphinxcontrib-jsmath: '>=1.0.1' sphinxcontrib-qthelp: '>=1.0.6' sphinxcontrib-serializinghtml: '>=1.1.9' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-8.3.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-8.2.3-pyhd8ed1ab_0.conda hash: - md5: 6ce9ddee4c0f68bda548303196f4cf4c - sha256: 03c4d8b4cf3c5418e15f30f45be52bcde7c7e05baeec7dec5aaf6e238a411481 + md5: f7af826063ed569bb13f7207d6f949b0 + sha256: 995f58c662db0197d681fa345522fd9e7ac5f05330d3dff095ab2f102e260ab0 category: dev optional: true - name: sphinx-autodoc-typehints - version: 3.2.0 + version: 3.5.2 manager: conda platform: linux-64 dependencies: python: '>=3.11' - sphinx: '>=8.2' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-autodoc-typehints-3.2.0-pyhd8ed1ab_0.conda + sphinx: '>=8.2.3' + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-autodoc-typehints-3.5.2-pyhd8ed1ab_0.conda hash: - md5: 6162f3f1cf914d08b80db65ed2d51871 - sha256: e9923b7d282ac8840ebe9e2665685a337698f4a93e6eb3c81dc18fe223c1bb57 + md5: abe9fc17e8bf83725cde006800c926de + sha256: 896309836e7b7682ac7ebf8783d7fde57869d28fa82e0a36413fff41f4049eac category: dev optional: true - name: sphinx-autodoc-typehints - version: 3.2.0 + version: 3.5.2 manager: conda platform: win-64 dependencies: python: '>=3.11' - sphinx: '>=8.2' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-autodoc-typehints-3.2.0-pyhd8ed1ab_0.conda + sphinx: '>=8.2.3' + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-autodoc-typehints-3.5.2-pyhd8ed1ab_0.conda hash: - md5: 6162f3f1cf914d08b80db65ed2d51871 - sha256: e9923b7d282ac8840ebe9e2665685a337698f4a93e6eb3c81dc18fe223c1bb57 + md5: abe9fc17e8bf83725cde006800c926de + sha256: 896309836e7b7682ac7ebf8783d7fde57869d28fa82e0a36413fff41f4049eac category: dev optional: true - name: sphinx-rtd-theme @@ -3846,7 +3849,7 @@ package: category: main optional: false - name: tbb - version: 2021.13.0 + version: 2022.3.0 manager: conda platform: win-64 dependencies: @@ -3854,38 +3857,38 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/tbb-2021.13.0-h18a62a1_3.conda + url: https://repo.prefix.dev/conda-forge/win-64/tbb-2022.3.0-hd094cb3_1.conda hash: - md5: 72226638648e494aaafde8155d50dab2 - sha256: 30e82640a1ad9d9b5bee006da7e847566086f8fdb63d15b918794a7ef2df862c + md5: 17c38aaf14c640b85c4617ccb59c1146 + sha256: c31cac57913a699745d124cdc016a63e31c5749f16f60b3202414d071fc50573 category: main optional: false - name: tifffile - version: 2025.9.9 + version: 2025.10.16 manager: conda platform: linux-64 dependencies: imagecodecs: '>=2024.12.30' numpy: '>=1.19.2' python: '>=3.11' - url: https://repo.prefix.dev/conda-forge/noarch/tifffile-2025.9.9-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/tifffile-2025.10.16-pyhd8ed1ab_0.conda hash: - md5: 5a981012f5ca4fa6d6bdc49828b90e79 - sha256: ab4f48f33dbbed5a54e7f4458e086272c3873dfc05d48643d1fba083c3dca247 + md5: f5b9f02d19761f79c564900a2a399984 + sha256: 84d4c49b648971147f93a6c873ce24703fd4047bc57f91f20ff1060ca7feda8f category: main optional: false - name: tifffile - version: 2025.9.9 + version: 2025.10.16 manager: conda platform: win-64 dependencies: imagecodecs: '>=2024.12.30' numpy: '>=1.19.2' python: '>=3.11' - url: https://repo.prefix.dev/conda-forge/noarch/tifffile-2025.9.9-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/tifffile-2025.10.16-pyhd8ed1ab_0.conda hash: - md5: 5a981012f5ca4fa6d6bdc49828b90e79 - sha256: ab4f48f33dbbed5a54e7f4458e086272c3873dfc05d48643d1fba083c3dca247 + md5: f5b9f02d19761f79c564900a2a399984 + sha256: 84d4c49b648971147f93a6c873ce24703fd4047bc57f91f20ff1060ca7feda8f category: main optional: false - name: tk @@ -3917,29 +3920,29 @@ package: category: main optional: false - name: tomli - version: 2.2.1 + version: 2.3.0 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.2.1-pyhe01879c_2.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.3.0-pyhcf101f3_0.conda hash: - md5: 30a0a26c8abccf4b7991d590fe17c699 - sha256: 040a5a05c487647c089ad5e05ad5aff5942830db2a4e656f1e300d73436436f1 - category: main - optional: false + md5: d2732eb636c264dc9aa4cbee404b1a53 + sha256: cb77c660b646c00a48ef942a9e1721ee46e90230c7c570cdeb5a893b5cce9bff + category: dev + optional: true - name: tomli - version: 2.2.1 + version: 2.3.0 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.2.1-pyhe01879c_2.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.3.0-pyhcf101f3_0.conda hash: - md5: 30a0a26c8abccf4b7991d590fe17c699 - sha256: 040a5a05c487647c089ad5e05ad5aff5942830db2a4e656f1e300d73436436f1 - category: main - optional: false + md5: d2732eb636c264dc9aa4cbee404b1a53 + sha256: cb77c660b646c00a48ef942a9e1721ee46e90230c7c570cdeb5a893b5cce9bff + category: dev + optional: true - name: tomlkit version: 0.13.3 manager: conda @@ -3950,8 +3953,8 @@ package: hash: md5: 146402bf0f11cbeb8f781fa4309a95d3 sha256: f8d3b49c084831a20923f66826f30ecfc55a4cd951e544b7213c692887343222 - category: main - optional: false + category: dev + optional: true - name: tomlkit version: 0.13.3 manager: conda @@ -3962,8 +3965,8 @@ package: hash: md5: 146402bf0f11cbeb8f781fa4309a95d3 sha256: f8d3b49c084831a20923f66826f30ecfc55a4cd951e544b7213c692887343222 - category: main - optional: false + category: dev + optional: true - name: tqdm version: 4.67.1 manager: conda @@ -4015,29 +4018,29 @@ package: category: main optional: false - name: typing-inspection - version: 0.4.1 + version: 0.4.2 manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '>=3.10' typing_extensions: '>=4.12.0' - url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.2-pyhd8ed1ab_0.conda hash: - md5: e0c3cd765dc15751ee2f0b03cd015712 - sha256: 4259a7502aea516c762ca8f3b8291b0d4114e094bdb3baae3171ccc0900e722f + md5: 399701494e731ce73fdd86c185a3d1b4 + sha256: 8aaf69b828c2b94d0784f18f70f11aa032950d304e57e88467120b45c18c24fd category: main optional: false - name: typing-inspection - version: 0.4.1 + version: 0.4.2 manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '>=3.10' typing_extensions: '>=4.12.0' - url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.2-pyhd8ed1ab_0.conda hash: - md5: e0c3cd765dc15751ee2f0b03cd015712 - sha256: 4259a7502aea516c762ca8f3b8291b0d4114e094bdb3baae3171ccc0900e722f + md5: 399701494e731ce73fdd86c185a3d1b4 + sha256: 8aaf69b828c2b94d0784f18f70f11aa032950d304e57e88467120b45c18c24fd category: main optional: false - name: typing_extensions @@ -4134,11 +4137,11 @@ package: manager: conda platform: win-64 dependencies: - vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/vc-14.3-h41ae7f8_31.conda + vc14_runtime: '>=14.42.34433' + url: https://repo.prefix.dev/conda-forge/win-64/vc-14.3-h2b53caa_32.conda hash: - md5: 28f4ca1e0337d0f27afb8602663c5723 - sha256: cb357591d069a1e6cb74199a8a43a7e3611f72a6caed9faa49dbb3d7a0a98e0b + md5: ef02bbe151253a72b8eda264a935db66 + sha256: 82250af59af9ff3c6a635dd4c4764c631d854feb334d6747d356d949af44d7cf category: main optional: false - name: vc14_runtime @@ -4148,10 +4151,10 @@ package: dependencies: ucrt: '>=10.0.20348.0' vcomp14: 14.44.35208 - url: https://repo.prefix.dev/conda-forge/win-64/vc14_runtime-14.44.35208-h818238b_31.conda + url: https://repo.prefix.dev/conda-forge/win-64/vc14_runtime-14.44.35208-h818238b_32.conda hash: - md5: 603e41da40a765fd47995faa021da946 - sha256: af4b4b354b87a9a8d05b8064ff1ea0b47083274f7c30b4eb96bc2312c9b5f08f + md5: 378d5dcec45eaea8d303da6f00447ac0 + sha256: e3a3656b70d1202e0d042811ceb743bd0d9f7e00e2acdf824d231b044ef6c0fd category: main optional: false - name: vcomp14 @@ -4160,10 +4163,10 @@ package: platform: win-64 dependencies: ucrt: '>=10.0.20348.0' - url: https://repo.prefix.dev/conda-forge/win-64/vcomp14-14.44.35208-h818238b_31.conda + url: https://repo.prefix.dev/conda-forge/win-64/vcomp14-14.44.35208-h818238b_32.conda hash: - md5: a6b1d5c1fc3cb89f88f7179ee6a9afe3 - sha256: 67b317b64f47635415776718d25170a9a6f9a1218c0f5a6202bfd687e07b6ea4 + md5: 58f67b437acbf2764317ba273d731f1d + sha256: f3790c88fbbdc55874f41de81a4237b1b91eab75e05d0e58661518ff04d2a8a1 category: main optional: false - name: vs2015_runtime @@ -4172,10 +4175,10 @@ package: platform: win-64 dependencies: vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/vs2015_runtime-14.44.35208-h38c0c73_31.conda + url: https://repo.prefix.dev/conda-forge/win-64/vs2015_runtime-14.44.35208-h38c0c73_32.conda hash: - md5: d75abcfbc522ccd98082a8c603fce34c - sha256: 8b20152d00e1153ccb1ed377a160110482f286a6d85a82b57ffcd60517d523a7 + md5: dfc1e5bbf1ecb0024a78e4e8bd45239d + sha256: 65cea43f4de99bc81d589e746c538908b2e95aead9042fecfbc56a4d14684a87 category: main optional: false - name: wheel @@ -4371,10 +4374,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/zlib-ng-2.2.5-h1608b31_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/zlib-ng-2.2.5-h32d8bfd_0.conda hash: - md5: 4a12db9135443d6177d2e79177c62b9a - sha256: f405609a36882ab3bc9f17fc277768082e2c321434b57509668e393a3c728c50 + md5: dec092b1a069abafc38655ded65a7b29 + sha256: 67a3113acf3506f1cf1c72e0748742217a20edc6c1c1c19631f901c5e028d2bc category: main optional: false - name: zstandard @@ -4388,10 +4391,10 @@ package: python: '' python_abi: 3.12.* zstd: '>=1.5.7,<1.5.8.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/zstandard-0.25.0-py312h5253ce2_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/zstandard-0.25.0-py312h5253ce2_1.conda hash: - md5: 05d73100768745631ab3de9dc1e08da2 - sha256: 1a3beda8068b55639edb92da8e0dc2d487e2a11aba627f709aab1d3cd5dd271c + md5: 02738ff9855946075cbd1b5274399a41 + sha256: c2bcb8aa930d6ea3c9c7a64fc4fab58ad7bcac483a9a45de294f67d2f447f413 category: dev optional: true - name: zstandard @@ -4406,10 +4409,10 @@ package: vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' zstd: '>=1.5.7,<1.5.8.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/zstandard-0.25.0-py312he5662c2_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/zstandard-0.25.0-py312he5662c2_1.conda hash: - md5: b14e2ff42f539a7eae7eaf03bd89ab82 - sha256: 23675fe9b8574fe93d3912d13a9855be9c7800bd34f8e944dd3d5b9b7265838d + md5: e9e25949b682e95535068bae33153ba6 + sha256: 49241574c373331ae63d9cb4978836db3b2571176a7db81fe48436c84ce38ff4 category: dev optional: true - name: zstd @@ -4443,41 +4446,41 @@ package: category: main optional: false - name: geoapps-utils - version: 0.6.0a1.dev69+a6627f0 + version: 0.7.0a1.dev3+80c4658 manager: pip platform: linux-64 dependencies: - geoh5py: 0.12.0a2.dev76+8f4cb4c0 + geoh5py: 0.12.0b4.dev18+8f630a84 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@a6627f0a6e663e9c3f0e9874f401a34ab8990488 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@80c46588d47b70a1dd26aef06ccfa24bc1585502 hash: - sha256: a6627f0a6e663e9c3f0e9874f401a34ab8990488 + sha256: 80c46588d47b70a1dd26aef06ccfa24bc1585502 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@a6627f0a6e663e9c3f0e9874f401a34ab8990488 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@80c46588d47b70a1dd26aef06ccfa24bc1585502 category: main optional: false - name: geoapps-utils - version: 0.6.0a1.dev69+a6627f0 + version: 0.7.0a1.dev3+80c4658 manager: pip platform: win-64 dependencies: - geoh5py: 0.12.0a2.dev76+8f4cb4c0 + geoh5py: 0.12.0b4.dev18+8f630a84 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@a6627f0a6e663e9c3f0e9874f401a34ab8990488 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@80c46588d47b70a1dd26aef06ccfa24bc1585502 hash: - sha256: a6627f0a6e663e9c3f0e9874f401a34ab8990488 + sha256: 80c46588d47b70a1dd26aef06ccfa24bc1585502 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@a6627f0a6e663e9c3f0e9874f401a34ab8990488 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@80c46588d47b70a1dd26aef06ccfa24bc1585502 category: main optional: false - name: geoh5py - version: 0.12.0a2.dev76+8f4cb4c0 + version: 0.12.0b4.dev18+8f630a84 manager: pip platform: linux-64 dependencies: @@ -4485,17 +4488,16 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - pylint: '>=3.3.8,<4.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@8f4cb4c0ebfb6ce25b3be6c83746d184f47a5f67 + url: git+https://github.com/MiraGeoscience/geoh5py.git@8f630a84b2b9f2b7632f895e1521d8d61c04e80e hash: - sha256: 8f4cb4c0ebfb6ce25b3be6c83746d184f47a5f67 + sha256: 8f630a84b2b9f2b7632f895e1521d8d61c04e80e source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@8f4cb4c0ebfb6ce25b3be6c83746d184f47a5f67 + url: git+https://github.com/MiraGeoscience/geoh5py.git@8f630a84b2b9f2b7632f895e1521d8d61c04e80e category: main optional: false - name: geoh5py - version: 0.12.0a2.dev76+8f4cb4c0 + version: 0.12.0b4.dev18+8f630a84 manager: pip platform: win-64 dependencies: @@ -4503,12 +4505,11 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - pylint: '>=3.3.8,<4.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@8f4cb4c0ebfb6ce25b3be6c83746d184f47a5f67 + url: git+https://github.com/MiraGeoscience/geoh5py.git@8f630a84b2b9f2b7632f895e1521d8d61c04e80e hash: - sha256: 8f4cb4c0ebfb6ce25b3be6c83746d184f47a5f67 + sha256: 8f630a84b2b9f2b7632f895e1521d8d61c04e80e source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@8f4cb4c0ebfb6ce25b3be6c83746d184f47a5f67 + url: git+https://github.com/MiraGeoscience/geoh5py.git@8f630a84b2b9f2b7632f895e1521d8d61c04e80e category: main optional: false From 886177f7df4aff383c45348addcc5491c0668f59 Mon Sep 17 00:00:00 2001 From: benjamink Date: Thu, 13 Nov 2025 08:29:17 -0800 Subject: [PATCH 5/5] remove outdated suggestion-mode flag --- pylintrc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pylintrc b/pylintrc index cdc7761..7b8334d 100644 --- a/pylintrc +++ b/pylintrc @@ -88,10 +88,6 @@ py-version=3.9 # Discover python modules and packages in the file system subtree. recursive=no -# When enabled, pylint would attempt to guess common misconfiguration and emit -# user-friendly hints instead of false-positive error messages. -suggestion-mode=yes - # Allow loading of arbitrary C extensions. Extensions are imported into the # active Python interpreter and may run arbitrary code. unsafe-load-any-extension=no