diff --git a/.github/workflows/python_analysis.yml b/.github/workflows/python_analysis.yml index 2fb020b..724a3b7 100644 --- a/.github/workflows/python_analysis.yml +++ b/.github/workflows/python_analysis.yml @@ -33,7 +33,7 @@ jobs: with: package-manager: 'conda' app-name: 'curve_apps' - python-version: '3.10' + python-version: '3.12' call-workflow-pytest: name: Pytest uses: MiraGeoscience/CI-tools/.github/workflows/reusable-python-pytest.yml@v2 @@ -42,10 +42,10 @@ jobs: pull-requests: read with: package-manager: 'conda' - python-versions: '["3.10", "3.11", "3.12"]' + python-versions: '["3.12", "3.13"]' os: '["ubuntu-latest", "windows-latest"]' cache-number: 1 - codecov-reference-python-version: '3.10' + codecov-reference-python-version: '3.12' codecov-reference-os: '["windows-latest"]' secrets: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} diff --git a/.github/workflows/python_deploy_dev.yml b/.github/workflows/python_deploy_dev.yml index 52a4d8a..224ce98 100644 --- a/.github/workflows/python_deploy_dev.yml +++ b/.github/workflows/python_deploy_dev.yml @@ -20,7 +20,7 @@ jobs: contents: write with: package-name: 'curve-apps' - python-version: '3.10' + python-version: '3.12' source-repo-names: '["public-noremote-conda-dev"]' conda-channels: '["conda-forge"]' publish-repo-names: '["public-noremote-conda-dev"]' @@ -37,7 +37,7 @@ jobs: package-manager: 'poetry' package-name: 'curve-apps' version-tag: ${{ github.ref_name }} - python-version: '3.10' + python-version: '3.12' virtual-repo-names: '["public-pypi-dev", "test-pypi"]' secrets: JFROG_ARTIFACTORY_URL: ${{ secrets.JFROG_ARTIFACTORY_URL }} diff --git a/.idea/curve-apps.iml b/.idea/curve-apps.iml index 8bde837..aed7b31 100644 --- a/.idea/curve-apps.iml +++ b/.idea/curve-apps.iml @@ -1,13 +1,24 @@ - + - - - - + + + + + + + + \ No newline at end of file diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 918ebe4..72ecfeb 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -35,8 +35,8 @@ repos: hooks: - id: mypy additional_dependencies: [ - numpy==1.26.*, - pydantic==2.5.*, + numpy==2.4.*, + pydantic==2.12.*, types-toml, types-waitress==3.0.*, types-PyYAML, diff --git a/curve_apps/contours/options.py b/curve_apps/contours/options.py index 3fc4083..ba38a22 100644 --- a/curve_apps/contours/options.py +++ b/curve_apps/contours/options.py @@ -91,7 +91,12 @@ def has_intervals(self) -> bool: def intervals(self) -> list[float]: """Returns arange of requested contour intervals.""" - if self.has_intervals: + if ( + self.interval_min is not None + and self.interval_max is not None + and self.interval_spacing is not None + and self.interval_spacing != 0 + ): intervals = np.arange( self.interval_min, self.interval_max + self.interval_spacing / 2, # type: ignore diff --git a/curve_apps/peak_finder/line_group.py b/curve_apps/peak_finder/line_group.py index 9b4e060..0f323f0 100644 --- a/curve_apps/peak_finder/line_group.py +++ b/curve_apps/peak_finder/line_group.py @@ -14,6 +14,7 @@ import numpy as np +from curve_apps.peak_finder.anomaly import Anomaly from curve_apps.peak_finder.anomaly_group import AnomalyGroup from curve_apps.peak_finder.line_data import LineData from curve_apps.peak_finder.line_position import LinePosition @@ -282,11 +283,12 @@ def group_n_groups(self, groups: list[AnomalyGroup]) -> list[AnomalyGroup]: return_groups: list[AnomalyGroup] = [] all_starts = np.array([group.start for group in groups]) - sort_inds = np.argsort(all_starts) - sorted_groups: list[AnomalyGroup] = list(np.array(groups)[sort_inds]) - - max_separation = np.ceil(self.max_separation / self.position.sampling) - neighbours_list = self.find_neighbour_groups(sorted_groups, max_separation) + sorted_groups: list[AnomalyGroup] = list( + np.array(groups)[np.argsort(all_starts)] + ) + neighbours_list = self.find_neighbour_groups( + sorted_groups, np.ceil(self.max_separation / self.position.sampling) + ) if len(neighbours_list) == 0: return return_groups @@ -304,8 +306,12 @@ def group_n_groups(self, groups: list[AnomalyGroup]) -> list[AnomalyGroup]: if len(indices) < self.n_groups: continue + anomalies: list[Anomaly] = [] + for ind in indices: + anomalies += sorted_groups[ind].anomalies.tolist() + new_group = AnomalyGroup( - np.concatenate([sorted_groups[ind].anomalies for ind in indices]), + anomalies, self.property_group, subgroups={sorted_groups[ind] for ind in indices}, ) diff --git a/curve_apps/utils.py b/curve_apps/utils.py index 0bf0fbd..7036a30 100644 --- a/curve_apps/utils.py +++ b/curve_apps/utils.py @@ -117,7 +117,9 @@ def get_contour_list(params: ContourDetectionParameters) -> list[float]: """ if ( - None not in [params.interval_min, params.interval_max, params.interval_spacing] + params.interval_min is not None + and params.interval_max is not None + and params.interval_spacing is not None and params.interval_spacing != 0 ): interval_contours = np.arange( diff --git a/deps-lock-config.yaml b/deps-lock-config.yaml index 4cedd44..81af661 100644 --- a/deps-lock-config.yaml +++ b/deps-lock-config.yaml @@ -1,8 +1,7 @@ include_dev: True py_versions: - - "3.10" - - "3.11" - "3.12" + - "3.13" suffix_for_extras: "": ["webview"] "raw": [""] diff --git a/environments/env-python-3.10.yml b/environments/env-python-3.13.yml similarity index 55% rename from environments/env-python-3.10.yml rename to environments/env-python-3.13.yml index 1dcc728..f3de72d 100644 --- a/environments/env-python-3.10.yml +++ b/environments/env-python-3.13.yml @@ -1,3 +1,3 @@ dependencies: - - python=3.10.* + - python=3.13.* - pip diff --git a/environments/env-python-3.11.yml b/environments/env-python-3.14.yml similarity index 55% rename from environments/env-python-3.11.yml rename to environments/env-python-3.14.yml index 6e37849..3c95ae1 100644 --- a/environments/env-python-3.11.yml +++ b/environments/env-python-3.14.yml @@ -1,3 +1,3 @@ dependencies: - - python=3.11.* + - python=3.14.* - pip diff --git a/environments/py-3.10-linux-64-dev-raw.conda.lock.yml b/environments/py-3.10-linux-64-dev-raw.conda.lock.yml deleted file mode 100644 index 0ef2547..0000000 --- a/environments/py-3.10-linux-64-dev-raw.conda.lock.yml +++ /dev/null @@ -1,204 +0,0 @@ -# Generated by conda-lock. -# platform: linux-64 -# input_hash: 37c0425e920c09dc1bdc08de3632592a31c13dee3d703d00750adb68992f73e0 - -channels: - - conda-forge - - nodefaults -dependencies: - - _libgcc_mutex=0.1=conda_forge - - _openmp_mutex=4.5=2_gnu - - alabaster=1.0.0=pyhd8ed1ab_1 - - annotated-types=0.7.0=pyhd8ed1ab_1 - - aom=3.9.1=hac33072_0 - - astroid=4.0.3=py310hff52083_0 - - babel=2.17.0=pyhd8ed1ab_0 - - blinker=1.9.0=pyhff2d567_0 - - blosc=1.21.6=he440d0b_1 - - brotli=1.1.0=hb03c661_4 - - brotli-bin=1.1.0=hb03c661_4 - - brotli-python=1.1.0=py310hea6c23e_4 - - brunsli=0.1=he3183e4_1 - - bzip2=1.0.8=hda65f42_8 - - c-ares=1.34.6=hb03c661_0 - - c-blosc2=2.19.1=h4cfbee9_0 - - ca-certificates=2026.1.4=hbd8a1cb_0 - - cached-property=1.5.2=hd8ed1ab_1 - - cached_property=1.5.2=pyha770c72_1 - - certifi=2026.1.4=pyhd8ed1ab_0 - - cffi=2.0.0=py310he7384ee_1 - - charls=2.4.2=h59595ed_0 - - charset-normalizer=3.4.4=pyhd8ed1ab_0 - - click=8.3.1=pyh8f84b5b_1 - - cloudpickle=3.1.2=pyhcf101f3_1 - - colorama=0.4.6=pyhd8ed1ab_1 - - contourpy=1.3.2=py310h3788b33_0 - - coverage=7.13.1=py310h3406613_0 - - cycler=0.12.1=pyhcf101f3_2 - - dash=3.3.0=pyhd8ed1ab_0 - - dash-ag-grid=32.3.4=pyhd8ed1ab_0 - - dash-bootstrap-components=2.0.4=pyhcf101f3_0 - - dash-core-components=2.0.0=pyhd8ed1ab_1 - - dash-daq=0.6.0=pyhd8ed1ab_0 - - dash-html-components=2.0.0=pyhd8ed1ab_2 - - dash-table=5.0.0=pyhd8ed1ab_1 - - dask-core=2025.3.0=pyhd8ed1ab_0 - - dav1d=1.2.1=hd590300_0 - - dill=0.4.0=pyhcf101f3_1 - - docutils=0.21.2=pyhd8ed1ab_1 - - exceptiongroup=1.3.1=pyhd8ed1ab_0 - - flask=3.1.2=pyhd8ed1ab_0 - - fonttools=4.61.1=py310h3406613_0 - - freetype=2.14.1=ha770c72_0 - - fsspec=2025.12.0=pyhd8ed1ab_0 - - giflib=5.2.2=hd590300_0 - - h2=4.3.0=pyhcf101f3_0 - - h5py=3.15.1=nompi_py310h4aa865e_101 - - hdf5=1.14.6=nompi_h1b119a7_104 - - hpack=4.1.0=pyhd8ed1ab_0 - - hyperframe=6.1.0=pyhd8ed1ab_0 - - icu=78.2=h33c6efd_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.3.0=pyhd8ed1ab_0 - - isort=7.0.0=pyhd8ed1ab_0 - - itsdangerous=2.2.0=pyhd8ed1ab_1 - - jinja2=3.1.6=pyhcf101f3_1 - - jxrlib=1.1=hd590300_3 - - keyutils=1.6.3=hb9d3cd8_0 - - kiwisolver=1.4.9=py310haaf941d_2 - - krb5=1.21.3=h659f571_0 - - lazy-loader=0.4=pyhd8ed1ab_2 - - lcms2=2.17=h717163a_0 - - ld_impl_linux-64=2.45=default_hbd61a6d_105 - - lerc=4.0.0=h0aef613_1 - - libaec=1.1.4=h3f801dc_0 - - libavif16=1.3.0=h6395336_2 - - libblas=3.11.0=5_h4a7cf45_openblas - - libbrotlicommon=1.1.0=hb03c661_4 - - libbrotlidec=1.1.0=hb03c661_4 - - libbrotlienc=1.1.0=hb03c661_4 - - libcblas=3.11.0=5_h0358290_openblas - - libcurl=8.18.0=h4e3cde8_0 - - libdeflate=1.24=h86f0d12_0 - - libedit=3.1.20250104=pl5321h7949ede_0 - - libev=4.33=hd590300_2 - - libexpat=2.7.3=hecca717_0 - - libffi=3.5.2=h9ec8514_0 - - libfreetype=2.14.1=ha770c72_0 - - libfreetype6=2.14.1=h73754d4_0 - - libgcc=15.2.0=he0feb66_16 - - libgcc-ng=15.2.0=h69a702a_16 - - libgfortran=15.2.0=h69a702a_16 - - libgfortran5=15.2.0=h68bc16d_16 - - libgomp=15.2.0=he0feb66_16 - - libhwy=1.3.0=h4c17acf_1 - - libjpeg-turbo=3.1.2=hb03c661_0 - - libjxl=0.11.1=h6cb5226_4 - - liblapack=3.11.0=5_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_4 - - libpng=1.6.53=h421ea60_0 - - libsqlite=3.51.1=hf4e2dac_1 - - libssh2=1.11.1=hcf80075_0 - - libstdcxx=15.2.0=h934c35e_16 - - libstdcxx-ng=15.2.0=hdf11a46_16 - - libtiff=4.7.1=h8261f1e_0 - - libuuid=2.41.3=h5347b49_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 - - locket=1.0.0=pyhd8ed1ab_0 - - lz4-c=1.10.0=h5888daf_1 - - markupsafe=3.0.3=py310h3406613_0 - - matplotlib-base=3.8.4=py310hef631a5_2 - - mccabe=0.7.0=pyhd8ed1ab_1 - - munkres=1.1.4=pyhd8ed1ab_1 - - narwhals=2.15.0=pyhcf101f3_0 - - ncurses=6.5=h2d0b736_3 - - nest-asyncio=1.6.0=pyhd8ed1ab_1 - - networkx=3.4.2=pyh267e887_2 - - numpy=1.26.4=py310hb13e2d6_0 - - openjpeg=2.5.4=h55fea9a_0 - - openssl=3.6.0=h26f9b46_0 - - packaging=25.0=pyh29332c3_1 - - partd=1.4.2=pyhd8ed1ab_0 - - pillow=10.3.0=py310hebfe307_1 - - pip=25.3=pyh8b19718_0 - - platformdirs=4.5.1=pyhcf101f3_0 - - plotly=6.5.1=pyhd8ed1ab_0 - - pluggy=1.6.0=pyhf9edf01_1 - - pthread-stubs=0.4=hb9d3cd8_1002 - - pycparser=2.22=pyh29332c3_1 - - pydantic=2.12.5=pyhcf101f3_1 - - pydantic-core=2.41.5=py310hd8f68c5_1 - - pygments=2.19.2=pyhd8ed1ab_0 - - pylint=4.0.4=pyhcf101f3_0 - - pyparsing=3.3.1=pyhcf101f3_0 - - pysocks=1.7.1=pyha55dd90_7 - - pytest=9.0.2=pyhcf101f3_0 - - pytest-cov=7.0.0=pyhcf101f3_1 - - python=3.10.19=h3c07f61_2_cpython - - python-dateutil=2.9.0.post0=pyhe01879c_2 - - python_abi=3.10=8_cp310 - - pytz=2025.2=pyhd8ed1ab_0 - - pywavelets=1.8.0=py310hf462985_0 - - pyyaml=6.0.3=py310h3406613_0 - - rav1e=0.7.1=h8fae777_3 - - readline=8.3=h853b02a_0 - - requests=2.32.5=pyhcf101f3_1 - - retrying=1.4.2=pyhe01879c_0 - - scikit-image=0.25.2=py310h0158d43_2 - - scipy=1.14.1=py310hfcf56fc_2 - - setuptools=80.9.0=pyhff2d567_0 - - six=1.17.0=pyhe01879c_1 - - snappy=1.2.2=h03e3b7b_1 - - snowballstemmer=3.0.1=pyhd8ed1ab_0 - - sphinx=8.1.3=pyhd8ed1ab_1 - - sphinx-autodoc-typehints=3.0.1=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 - - sphinxcontrib-devhelp=2.0.0=pyhd8ed1ab_1 - - sphinxcontrib-htmlhelp=2.1.0=pyhd8ed1ab_1 - - sphinxcontrib-jquery=4.1=pyhd8ed1ab_1 - - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_1 - - sphinxcontrib-qthelp=2.0.0=pyhd8ed1ab_1 - - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_1 - - svt-av1=3.1.2=hecca717_0 - - tifffile=2025.5.10=pyhd8ed1ab_0 - - tk=8.6.13=noxft_ha0e22de_103 - - tomli=2.3.0=pyhcf101f3_0 - - tomlkit=0.13.3=pyha770c72_0 - - toolz=1.1.0=pyhd8ed1ab_1 - - tqdm=4.67.1=pyhd8ed1ab_1 - - typing-extensions=4.15.0=h396c80c_0 - - typing-inspection=0.4.2=pyhd8ed1ab_1 - - typing_extensions=4.15.0=pyhcf101f3_0 - - tzdata=2025c=hc9c84f9_1 - - unicodedata2=17.0.0=py310h7c4b9e2_1 - - urllib3=2.5.0=pyhd8ed1ab_0 - - waitress=3.0.2=pyhcf101f3_2 - - werkzeug=3.1.5=pyhcf101f3_0 - - wheel=0.45.1=pyhd8ed1ab_1 - - xorg-libxau=1.0.12=hb03c661_1 - - xorg-libxdmcp=1.1.5=hb03c661_1 - - yaml=0.2.5=h280c20c_3 - - zfp=1.0.1=h909a3a2_5 - - zipp=3.23.0=pyhcf101f3_1 - - zlib-ng=2.2.5=hde8ca8f_1 - - zstandard=0.25.0=py310h139afa4_1 - - zstd=1.5.7=hb78ec9c_6 - - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 - -variables: - KMP_WARNINGS: 0 diff --git a/environments/py-3.10-linux-64-dev.conda.lock.yml b/environments/py-3.10-linux-64-dev.conda.lock.yml deleted file mode 100644 index 6ba1611..0000000 --- a/environments/py-3.10-linux-64-dev.conda.lock.yml +++ /dev/null @@ -1,209 +0,0 @@ -# Generated by conda-lock. -# platform: linux-64 -# input_hash: 37c0425e920c09dc1bdc08de3632592a31c13dee3d703d00750adb68992f73e0 - -channels: - - conda-forge - - nodefaults -dependencies: - - _libgcc_mutex=0.1=conda_forge - - _openmp_mutex=4.5=2_gnu - - alabaster=1.0.0=pyhd8ed1ab_1 - - annotated-types=0.7.0=pyhd8ed1ab_1 - - aom=3.9.1=hac33072_0 - - astroid=4.0.3=py310hff52083_0 - - babel=2.17.0=pyhd8ed1ab_0 - - blinker=1.9.0=pyhff2d567_0 - - blosc=1.21.6=he440d0b_1 - - bottle=0.13.4=pyhe01879c_0 - - brotli=1.1.0=hb03c661_4 - - brotli-bin=1.1.0=hb03c661_4 - - brotli-python=1.1.0=py310hea6c23e_4 - - brunsli=0.1=he3183e4_1 - - bzip2=1.0.8=hda65f42_8 - - c-ares=1.34.6=hb03c661_0 - - c-blosc2=2.19.1=h4cfbee9_0 - - ca-certificates=2026.1.4=hbd8a1cb_0 - - cached-property=1.5.2=hd8ed1ab_1 - - cached_property=1.5.2=pyha770c72_1 - - certifi=2026.1.4=pyhd8ed1ab_0 - - cffi=2.0.0=py310he7384ee_1 - - charls=2.4.2=h59595ed_0 - - charset-normalizer=3.4.4=pyhd8ed1ab_0 - - click=8.3.1=pyh8f84b5b_1 - - cloudpickle=3.1.2=pyhcf101f3_1 - - clr_loader=0.2.10=pyhd8ed1ab_0 - - colorama=0.4.6=pyhd8ed1ab_1 - - contourpy=1.3.2=py310h3788b33_0 - - coverage=7.13.1=py310h3406613_0 - - cycler=0.12.1=pyhcf101f3_2 - - dash=3.3.0=pyhd8ed1ab_0 - - dash-ag-grid=32.3.4=pyhd8ed1ab_0 - - dash-bootstrap-components=2.0.4=pyhcf101f3_0 - - dash-core-components=2.0.0=pyhd8ed1ab_1 - - dash-daq=0.6.0=pyhd8ed1ab_0 - - dash-html-components=2.0.0=pyhd8ed1ab_2 - - dash-table=5.0.0=pyhd8ed1ab_1 - - dask-core=2025.3.0=pyhd8ed1ab_0 - - dav1d=1.2.1=hd590300_0 - - dill=0.4.0=pyhcf101f3_1 - - docutils=0.21.2=pyhd8ed1ab_1 - - exceptiongroup=1.3.1=pyhd8ed1ab_0 - - flask=3.1.2=pyhd8ed1ab_0 - - fonttools=4.61.1=py310h3406613_0 - - freetype=2.14.1=ha770c72_0 - - fsspec=2025.12.0=pyhd8ed1ab_0 - - giflib=5.2.2=hd590300_0 - - h2=4.3.0=pyhcf101f3_0 - - h5py=3.15.1=nompi_py310h4aa865e_101 - - hdf5=1.14.6=nompi_h1b119a7_104 - - hpack=4.1.0=pyhd8ed1ab_0 - - hyperframe=6.1.0=pyhd8ed1ab_0 - - icu=78.2=h33c6efd_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.3.0=pyhd8ed1ab_0 - - isort=7.0.0=pyhd8ed1ab_0 - - itsdangerous=2.2.0=pyhd8ed1ab_1 - - jinja2=3.1.6=pyhcf101f3_1 - - jxrlib=1.1=hd590300_3 - - keyutils=1.6.3=hb9d3cd8_0 - - kiwisolver=1.4.9=py310haaf941d_2 - - krb5=1.21.3=h659f571_0 - - lazy-loader=0.4=pyhd8ed1ab_2 - - lcms2=2.17=h717163a_0 - - ld_impl_linux-64=2.45=default_hbd61a6d_105 - - lerc=4.0.0=h0aef613_1 - - libaec=1.1.4=h3f801dc_0 - - libavif16=1.3.0=h6395336_2 - - libblas=3.11.0=5_h4a7cf45_openblas - - libbrotlicommon=1.1.0=hb03c661_4 - - libbrotlidec=1.1.0=hb03c661_4 - - libbrotlienc=1.1.0=hb03c661_4 - - libcblas=3.11.0=5_h0358290_openblas - - libcurl=8.18.0=h4e3cde8_0 - - libdeflate=1.24=h86f0d12_0 - - libedit=3.1.20250104=pl5321h7949ede_0 - - libev=4.33=hd590300_2 - - libexpat=2.7.3=hecca717_0 - - libffi=3.5.2=h9ec8514_0 - - libfreetype=2.14.1=ha770c72_0 - - libfreetype6=2.14.1=h73754d4_0 - - libgcc=15.2.0=he0feb66_16 - - libgcc-ng=15.2.0=h69a702a_16 - - libgfortran=15.2.0=h69a702a_16 - - libgfortran5=15.2.0=h68bc16d_16 - - libgomp=15.2.0=he0feb66_16 - - libhwy=1.3.0=h4c17acf_1 - - libjpeg-turbo=3.1.2=hb03c661_0 - - libjxl=0.11.1=h6cb5226_4 - - liblapack=3.11.0=5_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_4 - - libpng=1.6.53=h421ea60_0 - - libsqlite=3.51.1=hf4e2dac_1 - - libssh2=1.11.1=hcf80075_0 - - libstdcxx=15.2.0=h934c35e_16 - - libstdcxx-ng=15.2.0=hdf11a46_16 - - libtiff=4.7.1=h8261f1e_0 - - libuuid=2.41.3=h5347b49_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 - - locket=1.0.0=pyhd8ed1ab_0 - - lz4-c=1.10.0=h5888daf_1 - - markupsafe=3.0.3=py310h3406613_0 - - matplotlib-base=3.8.4=py310hef631a5_2 - - mccabe=0.7.0=pyhd8ed1ab_1 - - munkres=1.1.4=pyhd8ed1ab_1 - - narwhals=2.15.0=pyhcf101f3_0 - - ncurses=6.5=h2d0b736_3 - - nest-asyncio=1.6.0=pyhd8ed1ab_1 - - networkx=3.4.2=pyh267e887_2 - - numpy=1.26.4=py310hb13e2d6_0 - - openjpeg=2.5.4=h55fea9a_0 - - openssl=3.6.0=h26f9b46_0 - - packaging=25.0=pyh29332c3_1 - - partd=1.4.2=pyhd8ed1ab_0 - - pillow=10.3.0=py310hebfe307_1 - - pip=25.3=pyh8b19718_0 - - platformdirs=4.5.1=pyhcf101f3_0 - - plotly=6.5.1=pyhd8ed1ab_0 - - pluggy=1.6.0=pyhf9edf01_1 - - proxy-tools=0.1.0=pyhd8ed1ab_0 - - pthread-stubs=0.4=hb9d3cd8_1002 - - pycparser=2.22=pyh29332c3_1 - - pydantic=2.12.5=pyhcf101f3_1 - - pydantic-core=2.41.5=py310hd8f68c5_1 - - pygments=2.19.2=pyhd8ed1ab_0 - - pylint=4.0.4=pyhcf101f3_0 - - pyparsing=3.3.1=pyhcf101f3_0 - - pysocks=1.7.1=pyha55dd90_7 - - pytest=9.0.2=pyhcf101f3_0 - - pytest-cov=7.0.0=pyhcf101f3_1 - - python=3.10.19=h3c07f61_2_cpython - - python-dateutil=2.9.0.post0=pyhe01879c_2 - - python_abi=3.10=8_cp310 - - pythonnet=3.0.5=pyhd8ed1ab_0 - - pytz=2025.2=pyhd8ed1ab_0 - - pywavelets=1.8.0=py310hf462985_0 - - pyyaml=6.0.3=py310h3406613_0 - - rav1e=0.7.1=h8fae777_3 - - readline=8.3=h853b02a_0 - - requests=2.32.5=pyhcf101f3_1 - - retrying=1.4.2=pyhe01879c_0 - - scikit-image=0.25.2=py310h0158d43_2 - - scipy=1.14.1=py310hfcf56fc_2 - - setuptools=80.9.0=pyhff2d567_0 - - six=1.17.0=pyhe01879c_1 - - snappy=1.2.2=h03e3b7b_1 - - snowballstemmer=3.0.1=pyhd8ed1ab_0 - - sphinx=8.1.3=pyhd8ed1ab_1 - - sphinx-autodoc-typehints=3.0.1=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 - - sphinxcontrib-devhelp=2.0.0=pyhd8ed1ab_1 - - sphinxcontrib-htmlhelp=2.1.0=pyhd8ed1ab_1 - - sphinxcontrib-jquery=4.1=pyhd8ed1ab_1 - - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_1 - - sphinxcontrib-qthelp=2.0.0=pyhd8ed1ab_1 - - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_1 - - svt-av1=3.1.2=hecca717_0 - - tifffile=2025.5.10=pyhd8ed1ab_0 - - tk=8.6.13=noxft_ha0e22de_103 - - tomli=2.3.0=pyhcf101f3_0 - - tomlkit=0.13.3=pyha770c72_0 - - toolz=1.1.0=pyhd8ed1ab_1 - - tqdm=4.67.1=pyhd8ed1ab_1 - - typing-extensions=4.15.0=h396c80c_0 - - typing-inspection=0.4.2=pyhd8ed1ab_1 - - typing_extensions=4.15.0=pyhcf101f3_0 - - tzdata=2025c=hc9c84f9_1 - - unicodedata2=17.0.0=py310h7c4b9e2_1 - - urllib3=2.5.0=pyhd8ed1ab_0 - - waitress=3.0.2=pyhcf101f3_2 - - werkzeug=3.1.5=pyhcf101f3_0 - - wheel=0.45.1=pyhd8ed1ab_1 - - xorg-libxau=1.0.12=hb03c661_1 - - xorg-libxdmcp=1.1.5=hb03c661_1 - - yaml=0.2.5=h280c20c_3 - - zfp=1.0.1=h909a3a2_5 - - zipp=3.23.0=pyhcf101f3_1 - - zlib-ng=2.2.5=hde8ca8f_1 - - zstandard=0.25.0=py310h139afa4_1 - - zstd=1.5.7=hb78ec9c_6 - - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 - - pywebview == 6.1 - -variables: - KMP_WARNINGS: 0 diff --git a/environments/py-3.10-linux-64-raw.conda.lock.yml b/environments/py-3.10-linux-64-raw.conda.lock.yml deleted file mode 100644 index 456acd0..0000000 --- a/environments/py-3.10-linux-64-raw.conda.lock.yml +++ /dev/null @@ -1,172 +0,0 @@ -# Generated by conda-lock. -# platform: linux-64 -# input_hash: 37c0425e920c09dc1bdc08de3632592a31c13dee3d703d00750adb68992f73e0 - -channels: - - conda-forge - - nodefaults -dependencies: - - _libgcc_mutex=0.1=conda_forge - - _openmp_mutex=4.5=2_gnu - - annotated-types=0.7.0=pyhd8ed1ab_1 - - aom=3.9.1=hac33072_0 - - blinker=1.9.0=pyhff2d567_0 - - blosc=1.21.6=he440d0b_1 - - brotli=1.1.0=hb03c661_4 - - brotli-bin=1.1.0=hb03c661_4 - - brotli-python=1.1.0=py310hea6c23e_4 - - brunsli=0.1=he3183e4_1 - - bzip2=1.0.8=hda65f42_8 - - c-ares=1.34.6=hb03c661_0 - - c-blosc2=2.19.1=h4cfbee9_0 - - ca-certificates=2026.1.4=hbd8a1cb_0 - - cached-property=1.5.2=hd8ed1ab_1 - - cached_property=1.5.2=pyha770c72_1 - - certifi=2026.1.4=pyhd8ed1ab_0 - - cffi=2.0.0=py310he7384ee_1 - - charls=2.4.2=h59595ed_0 - - charset-normalizer=3.4.4=pyhd8ed1ab_0 - - click=8.3.1=pyh8f84b5b_1 - - cloudpickle=3.1.2=pyhcf101f3_1 - - colorama=0.4.6=pyhd8ed1ab_1 - - contourpy=1.3.2=py310h3788b33_0 - - cycler=0.12.1=pyhcf101f3_2 - - dash=3.3.0=pyhd8ed1ab_0 - - dash-ag-grid=32.3.4=pyhd8ed1ab_0 - - dash-bootstrap-components=2.0.4=pyhcf101f3_0 - - dash-core-components=2.0.0=pyhd8ed1ab_1 - - dash-daq=0.6.0=pyhd8ed1ab_0 - - dash-html-components=2.0.0=pyhd8ed1ab_2 - - dash-table=5.0.0=pyhd8ed1ab_1 - - dask-core=2025.3.0=pyhd8ed1ab_0 - - dav1d=1.2.1=hd590300_0 - - flask=3.1.2=pyhd8ed1ab_0 - - fonttools=4.61.1=py310h3406613_0 - - freetype=2.14.1=ha770c72_0 - - fsspec=2025.12.0=pyhd8ed1ab_0 - - giflib=5.2.2=hd590300_0 - - h2=4.3.0=pyhcf101f3_0 - - h5py=3.15.1=nompi_py310h4aa865e_101 - - hdf5=1.14.6=nompi_h1b119a7_104 - - hpack=4.1.0=pyhd8ed1ab_0 - - hyperframe=6.1.0=pyhd8ed1ab_0 - - icu=78.2=h33c6efd_0 - - idna=3.11=pyhd8ed1ab_0 - - imagecodecs=2025.3.30=py310h4eb8eaf_2 - - imageio=2.37.0=pyhfb79c49_0 - - importlib-metadata=8.7.0=pyhe01879c_1 - - itsdangerous=2.2.0=pyhd8ed1ab_1 - - jinja2=3.1.6=pyhcf101f3_1 - - jxrlib=1.1=hd590300_3 - - keyutils=1.6.3=hb9d3cd8_0 - - kiwisolver=1.4.9=py310haaf941d_2 - - krb5=1.21.3=h659f571_0 - - lazy-loader=0.4=pyhd8ed1ab_2 - - lcms2=2.17=h717163a_0 - - ld_impl_linux-64=2.45=default_hbd61a6d_105 - - lerc=4.0.0=h0aef613_1 - - libaec=1.1.4=h3f801dc_0 - - libavif16=1.3.0=h6395336_2 - - libblas=3.11.0=5_h4a7cf45_openblas - - libbrotlicommon=1.1.0=hb03c661_4 - - libbrotlidec=1.1.0=hb03c661_4 - - libbrotlienc=1.1.0=hb03c661_4 - - libcblas=3.11.0=5_h0358290_openblas - - libcurl=8.18.0=h4e3cde8_0 - - libdeflate=1.24=h86f0d12_0 - - libedit=3.1.20250104=pl5321h7949ede_0 - - libev=4.33=hd590300_2 - - libexpat=2.7.3=hecca717_0 - - libffi=3.5.2=h9ec8514_0 - - libfreetype=2.14.1=ha770c72_0 - - libfreetype6=2.14.1=h73754d4_0 - - libgcc=15.2.0=he0feb66_16 - - libgcc-ng=15.2.0=h69a702a_16 - - libgfortran=15.2.0=h69a702a_16 - - libgfortran5=15.2.0=h68bc16d_16 - - libgomp=15.2.0=he0feb66_16 - - libhwy=1.3.0=h4c17acf_1 - - libjpeg-turbo=3.1.2=hb03c661_0 - - libjxl=0.11.1=h6cb5226_4 - - liblapack=3.11.0=5_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_4 - - libpng=1.6.53=h421ea60_0 - - libsqlite=3.51.1=hf4e2dac_1 - - libssh2=1.11.1=hcf80075_0 - - libstdcxx=15.2.0=h934c35e_16 - - libstdcxx-ng=15.2.0=hdf11a46_16 - - libtiff=4.7.1=h8261f1e_0 - - libuuid=2.41.3=h5347b49_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 - - locket=1.0.0=pyhd8ed1ab_0 - - lz4-c=1.10.0=h5888daf_1 - - markupsafe=3.0.3=py310h3406613_0 - - matplotlib-base=3.8.4=py310hef631a5_2 - - munkres=1.1.4=pyhd8ed1ab_1 - - narwhals=2.15.0=pyhcf101f3_0 - - ncurses=6.5=h2d0b736_3 - - nest-asyncio=1.6.0=pyhd8ed1ab_1 - - networkx=3.4.2=pyh267e887_2 - - numpy=1.26.4=py310hb13e2d6_0 - - openjpeg=2.5.4=h55fea9a_0 - - openssl=3.6.0=h26f9b46_0 - - packaging=25.0=pyh29332c3_1 - - partd=1.4.2=pyhd8ed1ab_0 - - pillow=10.3.0=py310hebfe307_1 - - pip=25.3=pyh8b19718_0 - - plotly=6.5.1=pyhd8ed1ab_0 - - pthread-stubs=0.4=hb9d3cd8_1002 - - pycparser=2.22=pyh29332c3_1 - - pydantic=2.12.5=pyhcf101f3_1 - - pydantic-core=2.41.5=py310hd8f68c5_1 - - pyparsing=3.3.1=pyhcf101f3_0 - - pysocks=1.7.1=pyha55dd90_7 - - python=3.10.19=h3c07f61_2_cpython - - python-dateutil=2.9.0.post0=pyhe01879c_2 - - python_abi=3.10=8_cp310 - - pywavelets=1.8.0=py310hf462985_0 - - pyyaml=6.0.3=py310h3406613_0 - - rav1e=0.7.1=h8fae777_3 - - readline=8.3=h853b02a_0 - - requests=2.32.5=pyhcf101f3_1 - - retrying=1.4.2=pyhe01879c_0 - - scikit-image=0.25.2=py310h0158d43_2 - - scipy=1.14.1=py310hfcf56fc_2 - - setuptools=80.9.0=pyhff2d567_0 - - six=1.17.0=pyhe01879c_1 - - snappy=1.2.2=h03e3b7b_1 - - svt-av1=3.1.2=hecca717_0 - - tifffile=2025.5.10=pyhd8ed1ab_0 - - tk=8.6.13=noxft_ha0e22de_103 - - toolz=1.1.0=pyhd8ed1ab_1 - - tqdm=4.67.1=pyhd8ed1ab_1 - - typing-extensions=4.15.0=h396c80c_0 - - typing-inspection=0.4.2=pyhd8ed1ab_1 - - typing_extensions=4.15.0=pyhcf101f3_0 - - tzdata=2025c=hc9c84f9_1 - - unicodedata2=17.0.0=py310h7c4b9e2_1 - - urllib3=2.5.0=pyhd8ed1ab_0 - - waitress=3.0.2=pyhcf101f3_2 - - werkzeug=3.1.5=pyhcf101f3_0 - - wheel=0.45.1=pyhd8ed1ab_1 - - xorg-libxau=1.0.12=hb03c661_1 - - xorg-libxdmcp=1.1.5=hb03c661_1 - - yaml=0.2.5=h280c20c_3 - - zfp=1.0.1=h909a3a2_5 - - zipp=3.23.0=pyhcf101f3_1 - - zlib-ng=2.2.5=hde8ca8f_1 - - zstandard=0.25.0=py310h139afa4_1 - - zstd=1.5.7=hb78ec9c_6 - - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 - -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 deleted file mode 100644 index 9e31f9c..0000000 --- a/environments/py-3.10-linux-64.conda.lock.yml +++ /dev/null @@ -1,177 +0,0 @@ -# Generated by conda-lock. -# platform: linux-64 -# input_hash: 37c0425e920c09dc1bdc08de3632592a31c13dee3d703d00750adb68992f73e0 - -channels: - - conda-forge - - nodefaults -dependencies: - - _libgcc_mutex=0.1=conda_forge - - _openmp_mutex=4.5=2_gnu - - annotated-types=0.7.0=pyhd8ed1ab_1 - - aom=3.9.1=hac33072_0 - - blinker=1.9.0=pyhff2d567_0 - - blosc=1.21.6=he440d0b_1 - - bottle=0.13.4=pyhe01879c_0 - - brotli=1.1.0=hb03c661_4 - - brotli-bin=1.1.0=hb03c661_4 - - brotli-python=1.1.0=py310hea6c23e_4 - - brunsli=0.1=he3183e4_1 - - bzip2=1.0.8=hda65f42_8 - - c-ares=1.34.6=hb03c661_0 - - c-blosc2=2.19.1=h4cfbee9_0 - - ca-certificates=2026.1.4=hbd8a1cb_0 - - cached-property=1.5.2=hd8ed1ab_1 - - cached_property=1.5.2=pyha770c72_1 - - certifi=2026.1.4=pyhd8ed1ab_0 - - cffi=2.0.0=py310he7384ee_1 - - charls=2.4.2=h59595ed_0 - - charset-normalizer=3.4.4=pyhd8ed1ab_0 - - click=8.3.1=pyh8f84b5b_1 - - cloudpickle=3.1.2=pyhcf101f3_1 - - clr_loader=0.2.10=pyhd8ed1ab_0 - - colorama=0.4.6=pyhd8ed1ab_1 - - contourpy=1.3.2=py310h3788b33_0 - - cycler=0.12.1=pyhcf101f3_2 - - dash=3.3.0=pyhd8ed1ab_0 - - dash-ag-grid=32.3.4=pyhd8ed1ab_0 - - dash-bootstrap-components=2.0.4=pyhcf101f3_0 - - dash-core-components=2.0.0=pyhd8ed1ab_1 - - dash-daq=0.6.0=pyhd8ed1ab_0 - - dash-html-components=2.0.0=pyhd8ed1ab_2 - - dash-table=5.0.0=pyhd8ed1ab_1 - - dask-core=2025.3.0=pyhd8ed1ab_0 - - dav1d=1.2.1=hd590300_0 - - flask=3.1.2=pyhd8ed1ab_0 - - fonttools=4.61.1=py310h3406613_0 - - freetype=2.14.1=ha770c72_0 - - fsspec=2025.12.0=pyhd8ed1ab_0 - - giflib=5.2.2=hd590300_0 - - h2=4.3.0=pyhcf101f3_0 - - h5py=3.15.1=nompi_py310h4aa865e_101 - - hdf5=1.14.6=nompi_h1b119a7_104 - - hpack=4.1.0=pyhd8ed1ab_0 - - hyperframe=6.1.0=pyhd8ed1ab_0 - - icu=78.2=h33c6efd_0 - - idna=3.11=pyhd8ed1ab_0 - - imagecodecs=2025.3.30=py310h4eb8eaf_2 - - imageio=2.37.0=pyhfb79c49_0 - - importlib-metadata=8.7.0=pyhe01879c_1 - - itsdangerous=2.2.0=pyhd8ed1ab_1 - - jinja2=3.1.6=pyhcf101f3_1 - - jxrlib=1.1=hd590300_3 - - keyutils=1.6.3=hb9d3cd8_0 - - kiwisolver=1.4.9=py310haaf941d_2 - - krb5=1.21.3=h659f571_0 - - lazy-loader=0.4=pyhd8ed1ab_2 - - lcms2=2.17=h717163a_0 - - ld_impl_linux-64=2.45=default_hbd61a6d_105 - - lerc=4.0.0=h0aef613_1 - - libaec=1.1.4=h3f801dc_0 - - libavif16=1.3.0=h6395336_2 - - libblas=3.11.0=5_h4a7cf45_openblas - - libbrotlicommon=1.1.0=hb03c661_4 - - libbrotlidec=1.1.0=hb03c661_4 - - libbrotlienc=1.1.0=hb03c661_4 - - libcblas=3.11.0=5_h0358290_openblas - - libcurl=8.18.0=h4e3cde8_0 - - libdeflate=1.24=h86f0d12_0 - - libedit=3.1.20250104=pl5321h7949ede_0 - - libev=4.33=hd590300_2 - - libexpat=2.7.3=hecca717_0 - - libffi=3.5.2=h9ec8514_0 - - libfreetype=2.14.1=ha770c72_0 - - libfreetype6=2.14.1=h73754d4_0 - - libgcc=15.2.0=he0feb66_16 - - libgcc-ng=15.2.0=h69a702a_16 - - libgfortran=15.2.0=h69a702a_16 - - libgfortran5=15.2.0=h68bc16d_16 - - libgomp=15.2.0=he0feb66_16 - - libhwy=1.3.0=h4c17acf_1 - - libjpeg-turbo=3.1.2=hb03c661_0 - - libjxl=0.11.1=h6cb5226_4 - - liblapack=3.11.0=5_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_4 - - libpng=1.6.53=h421ea60_0 - - libsqlite=3.51.1=hf4e2dac_1 - - libssh2=1.11.1=hcf80075_0 - - libstdcxx=15.2.0=h934c35e_16 - - libstdcxx-ng=15.2.0=hdf11a46_16 - - libtiff=4.7.1=h8261f1e_0 - - libuuid=2.41.3=h5347b49_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 - - locket=1.0.0=pyhd8ed1ab_0 - - lz4-c=1.10.0=h5888daf_1 - - markupsafe=3.0.3=py310h3406613_0 - - matplotlib-base=3.8.4=py310hef631a5_2 - - munkres=1.1.4=pyhd8ed1ab_1 - - narwhals=2.15.0=pyhcf101f3_0 - - ncurses=6.5=h2d0b736_3 - - nest-asyncio=1.6.0=pyhd8ed1ab_1 - - networkx=3.4.2=pyh267e887_2 - - numpy=1.26.4=py310hb13e2d6_0 - - openjpeg=2.5.4=h55fea9a_0 - - openssl=3.6.0=h26f9b46_0 - - packaging=25.0=pyh29332c3_1 - - partd=1.4.2=pyhd8ed1ab_0 - - pillow=10.3.0=py310hebfe307_1 - - pip=25.3=pyh8b19718_0 - - plotly=6.5.1=pyhd8ed1ab_0 - - proxy-tools=0.1.0=pyhd8ed1ab_0 - - pthread-stubs=0.4=hb9d3cd8_1002 - - pycparser=2.22=pyh29332c3_1 - - pydantic=2.12.5=pyhcf101f3_1 - - pydantic-core=2.41.5=py310hd8f68c5_1 - - pyparsing=3.3.1=pyhcf101f3_0 - - pysocks=1.7.1=pyha55dd90_7 - - python=3.10.19=h3c07f61_2_cpython - - python-dateutil=2.9.0.post0=pyhe01879c_2 - - python_abi=3.10=8_cp310 - - pythonnet=3.0.5=pyhd8ed1ab_0 - - pywavelets=1.8.0=py310hf462985_0 - - pyyaml=6.0.3=py310h3406613_0 - - rav1e=0.7.1=h8fae777_3 - - readline=8.3=h853b02a_0 - - requests=2.32.5=pyhcf101f3_1 - - retrying=1.4.2=pyhe01879c_0 - - scikit-image=0.25.2=py310h0158d43_2 - - scipy=1.14.1=py310hfcf56fc_2 - - setuptools=80.9.0=pyhff2d567_0 - - six=1.17.0=pyhe01879c_1 - - snappy=1.2.2=h03e3b7b_1 - - svt-av1=3.1.2=hecca717_0 - - tifffile=2025.5.10=pyhd8ed1ab_0 - - tk=8.6.13=noxft_ha0e22de_103 - - toolz=1.1.0=pyhd8ed1ab_1 - - tqdm=4.67.1=pyhd8ed1ab_1 - - typing-extensions=4.15.0=h396c80c_0 - - typing-inspection=0.4.2=pyhd8ed1ab_1 - - typing_extensions=4.15.0=pyhcf101f3_0 - - tzdata=2025c=hc9c84f9_1 - - unicodedata2=17.0.0=py310h7c4b9e2_1 - - urllib3=2.5.0=pyhd8ed1ab_0 - - waitress=3.0.2=pyhcf101f3_2 - - werkzeug=3.1.5=pyhcf101f3_0 - - wheel=0.45.1=pyhd8ed1ab_1 - - xorg-libxau=1.0.12=hb03c661_1 - - xorg-libxdmcp=1.1.5=hb03c661_1 - - yaml=0.2.5=h280c20c_3 - - zfp=1.0.1=h909a3a2_5 - - zipp=3.23.0=pyhcf101f3_1 - - zlib-ng=2.2.5=hde8ca8f_1 - - zstandard=0.25.0=py310h139afa4_1 - - zstd=1.5.7=hb78ec9c_6 - - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 - - pywebview == 6.1 - -variables: - KMP_WARNINGS: 0 diff --git a/environments/py-3.10-win-64-dev-raw.conda.lock.yml b/environments/py-3.10-win-64-dev-raw.conda.lock.yml deleted file mode 100644 index 9f7707a..0000000 --- a/environments/py-3.10-win-64-dev-raw.conda.lock.yml +++ /dev/null @@ -1,200 +0,0 @@ -# Generated by conda-lock. -# platform: win-64 -# input_hash: 87f909a7e2b3897610726c8b244816c01f5b20d292c0ff23c92e4fd9aeb5bb24 - -channels: - - conda-forge - - nodefaults -dependencies: - - _libavif_api=1.3.0=h57928b3_2 - - _openmp_mutex=4.5=2_gnu - - alabaster=1.0.0=pyhd8ed1ab_1 - - annotated-types=0.7.0=pyhd8ed1ab_1 - - aom=3.9.1=he0c23c2_0 - - astroid=4.0.3=py310h5588dad_0 - - babel=2.17.0=pyhd8ed1ab_0 - - blinker=1.9.0=pyhff2d567_0 - - blosc=1.21.6=hfd34d9b_1 - - brotli=1.1.0=hfd05255_4 - - brotli-bin=1.1.0=hfd05255_4 - - brotli-python=1.1.0=py310h73ae2b4_4 - - bzip2=1.0.8=h0ad9c76_8 - - c-blosc2=2.19.1=h3cf07e4_0 - - ca-certificates=2026.1.4=h4c7d964_0 - - cached-property=1.5.2=hd8ed1ab_1 - - cached_property=1.5.2=pyha770c72_1 - - certifi=2026.1.4=pyhd8ed1ab_0 - - cffi=2.0.0=py310h29418f3_1 - - charls=2.4.2=h1537add_0 - - charset-normalizer=3.4.4=pyhd8ed1ab_0 - - click=8.3.1=pyha7b4d00_1 - - cloudpickle=3.1.2=pyhcf101f3_1 - - colorama=0.4.6=pyhd8ed1ab_1 - - contourpy=1.3.2=py310hc19bc0b_0 - - coverage=7.13.1=py310hdb0e946_0 - - cycler=0.12.1=pyhcf101f3_2 - - dash=3.3.0=pyhd8ed1ab_0 - - dash-ag-grid=32.3.4=pyhd8ed1ab_0 - - dash-bootstrap-components=2.0.4=pyhcf101f3_0 - - dash-core-components=2.0.0=pyhd8ed1ab_1 - - dash-daq=0.6.0=pyhd8ed1ab_0 - - dash-html-components=2.0.0=pyhd8ed1ab_2 - - dash-table=5.0.0=pyhd8ed1ab_1 - - dask-core=2025.3.0=pyhd8ed1ab_0 - - dav1d=1.2.1=hcfcfb64_0 - - dill=0.4.0=pyhcf101f3_1 - - docutils=0.21.2=pyhd8ed1ab_1 - - exceptiongroup=1.3.1=pyhd8ed1ab_0 - - flask=3.1.2=pyhd8ed1ab_0 - - fonttools=4.61.1=py310hdb0e946_0 - - freetype=2.14.1=h57928b3_0 - - fsspec=2025.12.0=pyhd8ed1ab_0 - - giflib=5.2.2=h64bf75a_0 - - h2=4.3.0=pyhcf101f3_0 - - h5py=3.15.1=nompi_py310hb7e4da9_101 - - hdf5=1.14.6=nompi_h89f0904_104 - - hpack=4.1.0=pyhd8ed1ab_0 - - hyperframe=6.1.0=pyhd8ed1ab_0 - - icu=78.2=h637d24d_0 - - 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.3.0=pyhd8ed1ab_0 - - isort=7.0.0=pyhd8ed1ab_0 - - itsdangerous=2.2.0=pyhd8ed1ab_1 - - jinja2=3.1.6=pyhcf101f3_1 - - jxrlib=1.1=hcfcfb64_3 - - kiwisolver=1.4.9=py310h1e1005b_2 - - krb5=1.21.3=hdf4eb48_0 - - lazy-loader=0.4=pyhd8ed1ab_2 - - lcms2=2.17=hbcf6048_0 - - lerc=4.0.0=h6470a55_1 - - libaec=1.1.4=h20038f6_0 - - libavif16=1.3.0=he916da2_2 - - libblas=3.11.0=5_hf2e6a31_mkl - - libbrotlicommon=1.1.0=hfd05255_4 - - libbrotlidec=1.1.0=hfd05255_4 - - libbrotlienc=1.1.0=hfd05255_4 - - libcblas=3.11.0=5_h2a3cdd5_mkl - - libcurl=8.18.0=h43ecb02_0 - - libdeflate=1.24=h76ddb4d_0 - - libexpat=2.7.3=hac47afa_0 - - libffi=3.5.2=h52bdfb6_0 - - libfreetype=2.14.1=h57928b3_0 - - libfreetype6=2.14.1=hdbac1cb_0 - - libgcc=15.2.0=h8ee18e1_16 - - libgomp=15.2.0=h8ee18e1_16 - - libhwloc=2.12.2=default_h4379cf1_1000 - - libhwy=1.3.0=ha71e874_1 - - libiconv=1.18=hc1393d2_2 - - libjpeg-turbo=3.1.2=hfd05255_0 - - libjxl=0.11.1=hb7713f0_4 - - liblapack=3.11.0=5_hf9ab0e9_mkl - - liblzma=5.8.1=h2466b09_2 - - libpng=1.6.53=h7351971_0 - - libsqlite=3.51.1=hf5d6505_1 - - libssh2=1.11.1=h9aa295b_0 - - libtiff=4.7.1=h550210a_0 - - libwebp-base=1.6.0=h4d5522a_0 - - libwinpthread=12.0.0.r4.gg4f2fc60ca=h57928b3_10 - - libxcb=1.17.0=h0e4246c_0 - - libxml2=2.15.1=h779ef1b_1 - - libxml2-16=2.15.1=h3cfd58e_1 - - libzlib=1.3.1=h2466b09_2 - - libzopfli=1.0.3=h0e60522_0 - - llvm-openmp=21.1.8=h4fa8253_0 - - locket=1.0.0=pyhd8ed1ab_0 - - lz4-c=1.10.0=h2466b09_1 - - markupsafe=3.0.3=py310hdb0e946_0 - - matplotlib-base=3.8.4=py310hadb10a8_2 - - mccabe=0.7.0=pyhd8ed1ab_1 - - mkl=2025.3.0=hac47afa_455 - - munkres=1.1.4=pyhd8ed1ab_1 - - narwhals=2.15.0=pyhcf101f3_0 - - nest-asyncio=1.6.0=pyhd8ed1ab_1 - - networkx=3.4.2=pyh267e887_2 - - numpy=1.26.4=py310hf667824_0 - - openjpeg=2.5.4=h24db6dd_0 - - openssl=3.6.0=h725018a_0 - - packaging=25.0=pyh29332c3_1 - - partd=1.4.2=pyhd8ed1ab_0 - - pillow=10.3.0=py310h3e38d90_1 - - pip=25.3=pyh8b19718_0 - - platformdirs=4.5.1=pyhcf101f3_0 - - plotly=6.5.1=pyhd8ed1ab_0 - - pluggy=1.6.0=pyhf9edf01_1 - - pthread-stubs=0.4=h0e40799_1002 - - pycparser=2.22=pyh29332c3_1 - - pydantic=2.12.5=pyhcf101f3_1 - - pydantic-core=2.41.5=py310h034784e_1 - - pygments=2.19.2=pyhd8ed1ab_0 - - pylint=4.0.4=pyhcf101f3_0 - - pyparsing=3.3.1=pyhcf101f3_0 - - pysocks=1.7.1=pyh09c184e_7 - - pytest=9.0.2=pyhcf101f3_0 - - pytest-cov=7.0.0=pyhcf101f3_1 - - python=3.10.19=hc20f281_2_cpython - - python-dateutil=2.9.0.post0=pyhe01879c_2 - - python_abi=3.10=8_cp310 - - pytz=2025.2=pyhd8ed1ab_0 - - pywavelets=1.8.0=py310hb0944cc_0 - - pyyaml=6.0.3=py310hdb0e946_0 - - rav1e=0.7.1=ha073cba_3 - - requests=2.32.5=pyhcf101f3_1 - - retrying=1.4.2=pyhe01879c_0 - - scikit-image=0.25.2=py310hed136d8_2 - - scipy=1.14.1=py310hbd0dde3_2 - - setuptools=80.9.0=pyhff2d567_0 - - six=1.17.0=pyhe01879c_1 - - snappy=1.2.2=h7fa0ca8_1 - - snowballstemmer=3.0.1=pyhd8ed1ab_0 - - sphinx=8.1.3=pyhd8ed1ab_1 - - sphinx-autodoc-typehints=3.0.1=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 - - sphinxcontrib-devhelp=2.0.0=pyhd8ed1ab_1 - - sphinxcontrib-htmlhelp=2.1.0=pyhd8ed1ab_1 - - sphinxcontrib-jquery=4.1=pyhd8ed1ab_1 - - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_1 - - sphinxcontrib-qthelp=2.0.0=pyhd8ed1ab_1 - - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_1 - - svt-av1=3.1.2=hac47afa_0 - - tbb=2022.3.0=h3155e25_2 - - tifffile=2025.5.10=pyhd8ed1ab_0 - - tk=8.6.13=h2c6b04d_3 - - tomli=2.3.0=pyhcf101f3_0 - - tomlkit=0.13.3=pyha770c72_0 - - toolz=1.1.0=pyhd8ed1ab_1 - - tqdm=4.67.1=pyhd8ed1ab_1 - - typing-extensions=4.15.0=h396c80c_0 - - typing-inspection=0.4.2=pyhd8ed1ab_1 - - typing_extensions=4.15.0=pyhcf101f3_0 - - tzdata=2025c=hc9c84f9_1 - - ucrt=10.0.26100.0=h57928b3_0 - - unicodedata2=17.0.0=py310h29418f3_1 - - urllib3=2.5.0=pyhd8ed1ab_0 - - vc=14.3=h41ae7f8_34 - - vc14_runtime=14.44.35208=h818238b_34 - - vcomp14=14.44.35208=h818238b_34 - - vs2015_runtime=14.44.35208=h38c0c73_34 - - waitress=3.0.2=pyhcf101f3_2 - - werkzeug=3.1.5=pyhcf101f3_0 - - wheel=0.45.1=pyhd8ed1ab_1 - - win_inet_pton=1.1.0=pyh7428d3b_8 - - xorg-libxau=1.0.12=hba3369d_1 - - xorg-libxdmcp=1.1.5=hba3369d_1 - - yaml=0.2.5=h6a83c73_3 - - zfp=1.0.1=h2f0f97f_5 - - zipp=3.23.0=pyhcf101f3_1 - - zlib-ng=2.2.5=h32d8bfd_1 - - zstandard=0.25.0=py310h1637853_1 - - zstd=1.5.7=h534d264_6 - - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 - -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 deleted file mode 100644 index f2d0301..0000000 --- a/environments/py-3.10-win-64-dev.conda.lock.yml +++ /dev/null @@ -1,205 +0,0 @@ -# Generated by conda-lock. -# platform: win-64 -# input_hash: 87f909a7e2b3897610726c8b244816c01f5b20d292c0ff23c92e4fd9aeb5bb24 - -channels: - - conda-forge - - nodefaults -dependencies: - - _libavif_api=1.3.0=h57928b3_2 - - _openmp_mutex=4.5=2_gnu - - alabaster=1.0.0=pyhd8ed1ab_1 - - annotated-types=0.7.0=pyhd8ed1ab_1 - - aom=3.9.1=he0c23c2_0 - - astroid=4.0.3=py310h5588dad_0 - - babel=2.17.0=pyhd8ed1ab_0 - - blinker=1.9.0=pyhff2d567_0 - - blosc=1.21.6=hfd34d9b_1 - - bottle=0.13.4=pyhe01879c_0 - - brotli=1.1.0=hfd05255_4 - - brotli-bin=1.1.0=hfd05255_4 - - brotli-python=1.1.0=py310h73ae2b4_4 - - bzip2=1.0.8=h0ad9c76_8 - - c-blosc2=2.19.1=h3cf07e4_0 - - ca-certificates=2026.1.4=h4c7d964_0 - - cached-property=1.5.2=hd8ed1ab_1 - - cached_property=1.5.2=pyha770c72_1 - - certifi=2026.1.4=pyhd8ed1ab_0 - - cffi=2.0.0=py310h29418f3_1 - - charls=2.4.2=h1537add_0 - - charset-normalizer=3.4.4=pyhd8ed1ab_0 - - click=8.3.1=pyha7b4d00_1 - - cloudpickle=3.1.2=pyhcf101f3_1 - - clr_loader=0.2.10=pyhd8ed1ab_0 - - colorama=0.4.6=pyhd8ed1ab_1 - - contourpy=1.3.2=py310hc19bc0b_0 - - coverage=7.13.1=py310hdb0e946_0 - - cycler=0.12.1=pyhcf101f3_2 - - dash=3.3.0=pyhd8ed1ab_0 - - dash-ag-grid=32.3.4=pyhd8ed1ab_0 - - dash-bootstrap-components=2.0.4=pyhcf101f3_0 - - dash-core-components=2.0.0=pyhd8ed1ab_1 - - dash-daq=0.6.0=pyhd8ed1ab_0 - - dash-html-components=2.0.0=pyhd8ed1ab_2 - - dash-table=5.0.0=pyhd8ed1ab_1 - - dask-core=2025.3.0=pyhd8ed1ab_0 - - dav1d=1.2.1=hcfcfb64_0 - - dill=0.4.0=pyhcf101f3_1 - - docutils=0.21.2=pyhd8ed1ab_1 - - exceptiongroup=1.3.1=pyhd8ed1ab_0 - - flask=3.1.2=pyhd8ed1ab_0 - - fonttools=4.61.1=py310hdb0e946_0 - - freetype=2.14.1=h57928b3_0 - - fsspec=2025.12.0=pyhd8ed1ab_0 - - giflib=5.2.2=h64bf75a_0 - - h2=4.3.0=pyhcf101f3_0 - - h5py=3.15.1=nompi_py310hb7e4da9_101 - - hdf5=1.14.6=nompi_h89f0904_104 - - hpack=4.1.0=pyhd8ed1ab_0 - - hyperframe=6.1.0=pyhd8ed1ab_0 - - icu=78.2=h637d24d_0 - - 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.3.0=pyhd8ed1ab_0 - - isort=7.0.0=pyhd8ed1ab_0 - - itsdangerous=2.2.0=pyhd8ed1ab_1 - - jinja2=3.1.6=pyhcf101f3_1 - - jxrlib=1.1=hcfcfb64_3 - - kiwisolver=1.4.9=py310h1e1005b_2 - - krb5=1.21.3=hdf4eb48_0 - - lazy-loader=0.4=pyhd8ed1ab_2 - - lcms2=2.17=hbcf6048_0 - - lerc=4.0.0=h6470a55_1 - - libaec=1.1.4=h20038f6_0 - - libavif16=1.3.0=he916da2_2 - - libblas=3.11.0=5_hf2e6a31_mkl - - libbrotlicommon=1.1.0=hfd05255_4 - - libbrotlidec=1.1.0=hfd05255_4 - - libbrotlienc=1.1.0=hfd05255_4 - - libcblas=3.11.0=5_h2a3cdd5_mkl - - libcurl=8.18.0=h43ecb02_0 - - libdeflate=1.24=h76ddb4d_0 - - libexpat=2.7.3=hac47afa_0 - - libffi=3.5.2=h52bdfb6_0 - - libfreetype=2.14.1=h57928b3_0 - - libfreetype6=2.14.1=hdbac1cb_0 - - libgcc=15.2.0=h8ee18e1_16 - - libgomp=15.2.0=h8ee18e1_16 - - libhwloc=2.12.2=default_h4379cf1_1000 - - libhwy=1.3.0=ha71e874_1 - - libiconv=1.18=hc1393d2_2 - - libjpeg-turbo=3.1.2=hfd05255_0 - - libjxl=0.11.1=hb7713f0_4 - - liblapack=3.11.0=5_hf9ab0e9_mkl - - liblzma=5.8.1=h2466b09_2 - - libpng=1.6.53=h7351971_0 - - libsqlite=3.51.1=hf5d6505_1 - - libssh2=1.11.1=h9aa295b_0 - - libtiff=4.7.1=h550210a_0 - - libwebp-base=1.6.0=h4d5522a_0 - - libwinpthread=12.0.0.r4.gg4f2fc60ca=h57928b3_10 - - libxcb=1.17.0=h0e4246c_0 - - libxml2=2.15.1=h779ef1b_1 - - libxml2-16=2.15.1=h3cfd58e_1 - - libzlib=1.3.1=h2466b09_2 - - libzopfli=1.0.3=h0e60522_0 - - llvm-openmp=21.1.8=h4fa8253_0 - - locket=1.0.0=pyhd8ed1ab_0 - - lz4-c=1.10.0=h2466b09_1 - - markupsafe=3.0.3=py310hdb0e946_0 - - matplotlib-base=3.8.4=py310hadb10a8_2 - - mccabe=0.7.0=pyhd8ed1ab_1 - - mkl=2025.3.0=hac47afa_455 - - munkres=1.1.4=pyhd8ed1ab_1 - - narwhals=2.15.0=pyhcf101f3_0 - - nest-asyncio=1.6.0=pyhd8ed1ab_1 - - networkx=3.4.2=pyh267e887_2 - - numpy=1.26.4=py310hf667824_0 - - openjpeg=2.5.4=h24db6dd_0 - - openssl=3.6.0=h725018a_0 - - packaging=25.0=pyh29332c3_1 - - partd=1.4.2=pyhd8ed1ab_0 - - pillow=10.3.0=py310h3e38d90_1 - - pip=25.3=pyh8b19718_0 - - platformdirs=4.5.1=pyhcf101f3_0 - - plotly=6.5.1=pyhd8ed1ab_0 - - pluggy=1.6.0=pyhf9edf01_1 - - proxy-tools=0.1.0=pyhd8ed1ab_0 - - pthread-stubs=0.4=h0e40799_1002 - - pycparser=2.22=pyh29332c3_1 - - pydantic=2.12.5=pyhcf101f3_1 - - pydantic-core=2.41.5=py310h034784e_1 - - pygments=2.19.2=pyhd8ed1ab_0 - - pylint=4.0.4=pyhcf101f3_0 - - pyparsing=3.3.1=pyhcf101f3_0 - - pysocks=1.7.1=pyh09c184e_7 - - pytest=9.0.2=pyhcf101f3_0 - - pytest-cov=7.0.0=pyhcf101f3_1 - - python=3.10.19=hc20f281_2_cpython - - python-dateutil=2.9.0.post0=pyhe01879c_2 - - python_abi=3.10=8_cp310 - - pythonnet=3.0.5=pyhd8ed1ab_0 - - pytz=2025.2=pyhd8ed1ab_0 - - pywavelets=1.8.0=py310hb0944cc_0 - - pyyaml=6.0.3=py310hdb0e946_0 - - rav1e=0.7.1=ha073cba_3 - - requests=2.32.5=pyhcf101f3_1 - - retrying=1.4.2=pyhe01879c_0 - - scikit-image=0.25.2=py310hed136d8_2 - - scipy=1.14.1=py310hbd0dde3_2 - - setuptools=80.9.0=pyhff2d567_0 - - six=1.17.0=pyhe01879c_1 - - snappy=1.2.2=h7fa0ca8_1 - - snowballstemmer=3.0.1=pyhd8ed1ab_0 - - sphinx=8.1.3=pyhd8ed1ab_1 - - sphinx-autodoc-typehints=3.0.1=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 - - sphinxcontrib-devhelp=2.0.0=pyhd8ed1ab_1 - - sphinxcontrib-htmlhelp=2.1.0=pyhd8ed1ab_1 - - sphinxcontrib-jquery=4.1=pyhd8ed1ab_1 - - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_1 - - sphinxcontrib-qthelp=2.0.0=pyhd8ed1ab_1 - - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_1 - - svt-av1=3.1.2=hac47afa_0 - - tbb=2022.3.0=h3155e25_2 - - tifffile=2025.5.10=pyhd8ed1ab_0 - - tk=8.6.13=h2c6b04d_3 - - tomli=2.3.0=pyhcf101f3_0 - - tomlkit=0.13.3=pyha770c72_0 - - toolz=1.1.0=pyhd8ed1ab_1 - - tqdm=4.67.1=pyhd8ed1ab_1 - - typing-extensions=4.15.0=h396c80c_0 - - typing-inspection=0.4.2=pyhd8ed1ab_1 - - typing_extensions=4.15.0=pyhcf101f3_0 - - tzdata=2025c=hc9c84f9_1 - - ucrt=10.0.26100.0=h57928b3_0 - - unicodedata2=17.0.0=py310h29418f3_1 - - urllib3=2.5.0=pyhd8ed1ab_0 - - vc=14.3=h41ae7f8_34 - - vc14_runtime=14.44.35208=h818238b_34 - - vcomp14=14.44.35208=h818238b_34 - - vs2015_runtime=14.44.35208=h38c0c73_34 - - waitress=3.0.2=pyhcf101f3_2 - - werkzeug=3.1.5=pyhcf101f3_0 - - wheel=0.45.1=pyhd8ed1ab_1 - - win_inet_pton=1.1.0=pyh7428d3b_8 - - xorg-libxau=1.0.12=hba3369d_1 - - xorg-libxdmcp=1.1.5=hba3369d_1 - - yaml=0.2.5=h6a83c73_3 - - zfp=1.0.1=h2f0f97f_5 - - zipp=3.23.0=pyhcf101f3_1 - - zlib-ng=2.2.5=h32d8bfd_1 - - zstandard=0.25.0=py310h1637853_1 - - zstd=1.5.7=h534d264_6 - - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 - - pywebview == 6.1 - -variables: - KMP_WARNINGS: 0 diff --git a/environments/py-3.10-win-64-raw.conda.lock.yml b/environments/py-3.10-win-64-raw.conda.lock.yml deleted file mode 100644 index 96657fd..0000000 --- a/environments/py-3.10-win-64-raw.conda.lock.yml +++ /dev/null @@ -1,168 +0,0 @@ -# Generated by conda-lock. -# platform: win-64 -# input_hash: 87f909a7e2b3897610726c8b244816c01f5b20d292c0ff23c92e4fd9aeb5bb24 - -channels: - - conda-forge - - nodefaults -dependencies: - - _libavif_api=1.3.0=h57928b3_2 - - _openmp_mutex=4.5=2_gnu - - annotated-types=0.7.0=pyhd8ed1ab_1 - - aom=3.9.1=he0c23c2_0 - - blinker=1.9.0=pyhff2d567_0 - - blosc=1.21.6=hfd34d9b_1 - - brotli=1.1.0=hfd05255_4 - - brotli-bin=1.1.0=hfd05255_4 - - brotli-python=1.1.0=py310h73ae2b4_4 - - bzip2=1.0.8=h0ad9c76_8 - - c-blosc2=2.19.1=h3cf07e4_0 - - ca-certificates=2026.1.4=h4c7d964_0 - - cached-property=1.5.2=hd8ed1ab_1 - - cached_property=1.5.2=pyha770c72_1 - - certifi=2026.1.4=pyhd8ed1ab_0 - - cffi=2.0.0=py310h29418f3_1 - - charls=2.4.2=h1537add_0 - - charset-normalizer=3.4.4=pyhd8ed1ab_0 - - click=8.3.1=pyha7b4d00_1 - - cloudpickle=3.1.2=pyhcf101f3_1 - - colorama=0.4.6=pyhd8ed1ab_1 - - contourpy=1.3.2=py310hc19bc0b_0 - - cycler=0.12.1=pyhcf101f3_2 - - dash=3.3.0=pyhd8ed1ab_0 - - dash-ag-grid=32.3.4=pyhd8ed1ab_0 - - dash-bootstrap-components=2.0.4=pyhcf101f3_0 - - dash-core-components=2.0.0=pyhd8ed1ab_1 - - dash-daq=0.6.0=pyhd8ed1ab_0 - - dash-html-components=2.0.0=pyhd8ed1ab_2 - - dash-table=5.0.0=pyhd8ed1ab_1 - - dask-core=2025.3.0=pyhd8ed1ab_0 - - dav1d=1.2.1=hcfcfb64_0 - - flask=3.1.2=pyhd8ed1ab_0 - - fonttools=4.61.1=py310hdb0e946_0 - - freetype=2.14.1=h57928b3_0 - - fsspec=2025.12.0=pyhd8ed1ab_0 - - giflib=5.2.2=h64bf75a_0 - - h2=4.3.0=pyhcf101f3_0 - - h5py=3.15.1=nompi_py310hb7e4da9_101 - - hdf5=1.14.6=nompi_h89f0904_104 - - hpack=4.1.0=pyhd8ed1ab_0 - - hyperframe=6.1.0=pyhd8ed1ab_0 - - icu=78.2=h637d24d_0 - - idna=3.11=pyhd8ed1ab_0 - - imagecodecs=2025.3.30=py310h9ee7ba4_2 - - imageio=2.37.0=pyhfb79c49_0 - - importlib-metadata=8.7.0=pyhe01879c_1 - - itsdangerous=2.2.0=pyhd8ed1ab_1 - - jinja2=3.1.6=pyhcf101f3_1 - - jxrlib=1.1=hcfcfb64_3 - - kiwisolver=1.4.9=py310h1e1005b_2 - - krb5=1.21.3=hdf4eb48_0 - - lazy-loader=0.4=pyhd8ed1ab_2 - - lcms2=2.17=hbcf6048_0 - - lerc=4.0.0=h6470a55_1 - - libaec=1.1.4=h20038f6_0 - - libavif16=1.3.0=he916da2_2 - - libblas=3.11.0=5_hf2e6a31_mkl - - libbrotlicommon=1.1.0=hfd05255_4 - - libbrotlidec=1.1.0=hfd05255_4 - - libbrotlienc=1.1.0=hfd05255_4 - - libcblas=3.11.0=5_h2a3cdd5_mkl - - libcurl=8.18.0=h43ecb02_0 - - libdeflate=1.24=h76ddb4d_0 - - libexpat=2.7.3=hac47afa_0 - - libffi=3.5.2=h52bdfb6_0 - - libfreetype=2.14.1=h57928b3_0 - - libfreetype6=2.14.1=hdbac1cb_0 - - libgcc=15.2.0=h8ee18e1_16 - - libgomp=15.2.0=h8ee18e1_16 - - libhwloc=2.12.2=default_h4379cf1_1000 - - libhwy=1.3.0=ha71e874_1 - - libiconv=1.18=hc1393d2_2 - - libjpeg-turbo=3.1.2=hfd05255_0 - - libjxl=0.11.1=hb7713f0_4 - - liblapack=3.11.0=5_hf9ab0e9_mkl - - liblzma=5.8.1=h2466b09_2 - - libpng=1.6.53=h7351971_0 - - libsqlite=3.51.1=hf5d6505_1 - - libssh2=1.11.1=h9aa295b_0 - - libtiff=4.7.1=h550210a_0 - - libwebp-base=1.6.0=h4d5522a_0 - - libwinpthread=12.0.0.r4.gg4f2fc60ca=h57928b3_10 - - libxcb=1.17.0=h0e4246c_0 - - libxml2=2.15.1=h779ef1b_1 - - libxml2-16=2.15.1=h3cfd58e_1 - - libzlib=1.3.1=h2466b09_2 - - libzopfli=1.0.3=h0e60522_0 - - llvm-openmp=21.1.8=h4fa8253_0 - - locket=1.0.0=pyhd8ed1ab_0 - - lz4-c=1.10.0=h2466b09_1 - - markupsafe=3.0.3=py310hdb0e946_0 - - matplotlib-base=3.8.4=py310hadb10a8_2 - - mkl=2025.3.0=hac47afa_455 - - munkres=1.1.4=pyhd8ed1ab_1 - - narwhals=2.15.0=pyhcf101f3_0 - - nest-asyncio=1.6.0=pyhd8ed1ab_1 - - networkx=3.4.2=pyh267e887_2 - - numpy=1.26.4=py310hf667824_0 - - openjpeg=2.5.4=h24db6dd_0 - - openssl=3.6.0=h725018a_0 - - packaging=25.0=pyh29332c3_1 - - partd=1.4.2=pyhd8ed1ab_0 - - pillow=10.3.0=py310h3e38d90_1 - - pip=25.3=pyh8b19718_0 - - plotly=6.5.1=pyhd8ed1ab_0 - - pthread-stubs=0.4=h0e40799_1002 - - pycparser=2.22=pyh29332c3_1 - - pydantic=2.12.5=pyhcf101f3_1 - - pydantic-core=2.41.5=py310h034784e_1 - - pyparsing=3.3.1=pyhcf101f3_0 - - pysocks=1.7.1=pyh09c184e_7 - - python=3.10.19=hc20f281_2_cpython - - python-dateutil=2.9.0.post0=pyhe01879c_2 - - python_abi=3.10=8_cp310 - - pywavelets=1.8.0=py310hb0944cc_0 - - pyyaml=6.0.3=py310hdb0e946_0 - - rav1e=0.7.1=ha073cba_3 - - requests=2.32.5=pyhcf101f3_1 - - retrying=1.4.2=pyhe01879c_0 - - scikit-image=0.25.2=py310hed136d8_2 - - scipy=1.14.1=py310hbd0dde3_2 - - setuptools=80.9.0=pyhff2d567_0 - - six=1.17.0=pyhe01879c_1 - - snappy=1.2.2=h7fa0ca8_1 - - svt-av1=3.1.2=hac47afa_0 - - tbb=2022.3.0=h3155e25_2 - - tifffile=2025.5.10=pyhd8ed1ab_0 - - tk=8.6.13=h2c6b04d_3 - - toolz=1.1.0=pyhd8ed1ab_1 - - tqdm=4.67.1=pyhd8ed1ab_1 - - typing-extensions=4.15.0=h396c80c_0 - - typing-inspection=0.4.2=pyhd8ed1ab_1 - - typing_extensions=4.15.0=pyhcf101f3_0 - - tzdata=2025c=hc9c84f9_1 - - ucrt=10.0.26100.0=h57928b3_0 - - unicodedata2=17.0.0=py310h29418f3_1 - - urllib3=2.5.0=pyhd8ed1ab_0 - - vc=14.3=h41ae7f8_34 - - vc14_runtime=14.44.35208=h818238b_34 - - vcomp14=14.44.35208=h818238b_34 - - vs2015_runtime=14.44.35208=h38c0c73_34 - - waitress=3.0.2=pyhcf101f3_2 - - werkzeug=3.1.5=pyhcf101f3_0 - - wheel=0.45.1=pyhd8ed1ab_1 - - win_inet_pton=1.1.0=pyh7428d3b_8 - - xorg-libxau=1.0.12=hba3369d_1 - - xorg-libxdmcp=1.1.5=hba3369d_1 - - yaml=0.2.5=h6a83c73_3 - - zfp=1.0.1=h2f0f97f_5 - - zipp=3.23.0=pyhcf101f3_1 - - zlib-ng=2.2.5=h32d8bfd_1 - - zstandard=0.25.0=py310h1637853_1 - - zstd=1.5.7=h534d264_6 - - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 - -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 deleted file mode 100644 index 590115d..0000000 --- a/environments/py-3.10-win-64.conda.lock.yml +++ /dev/null @@ -1,173 +0,0 @@ -# Generated by conda-lock. -# platform: win-64 -# input_hash: 87f909a7e2b3897610726c8b244816c01f5b20d292c0ff23c92e4fd9aeb5bb24 - -channels: - - conda-forge - - nodefaults -dependencies: - - _libavif_api=1.3.0=h57928b3_2 - - _openmp_mutex=4.5=2_gnu - - annotated-types=0.7.0=pyhd8ed1ab_1 - - aom=3.9.1=he0c23c2_0 - - blinker=1.9.0=pyhff2d567_0 - - blosc=1.21.6=hfd34d9b_1 - - bottle=0.13.4=pyhe01879c_0 - - brotli=1.1.0=hfd05255_4 - - brotli-bin=1.1.0=hfd05255_4 - - brotli-python=1.1.0=py310h73ae2b4_4 - - bzip2=1.0.8=h0ad9c76_8 - - c-blosc2=2.19.1=h3cf07e4_0 - - ca-certificates=2026.1.4=h4c7d964_0 - - cached-property=1.5.2=hd8ed1ab_1 - - cached_property=1.5.2=pyha770c72_1 - - certifi=2026.1.4=pyhd8ed1ab_0 - - cffi=2.0.0=py310h29418f3_1 - - charls=2.4.2=h1537add_0 - - charset-normalizer=3.4.4=pyhd8ed1ab_0 - - click=8.3.1=pyha7b4d00_1 - - cloudpickle=3.1.2=pyhcf101f3_1 - - clr_loader=0.2.10=pyhd8ed1ab_0 - - colorama=0.4.6=pyhd8ed1ab_1 - - contourpy=1.3.2=py310hc19bc0b_0 - - cycler=0.12.1=pyhcf101f3_2 - - dash=3.3.0=pyhd8ed1ab_0 - - dash-ag-grid=32.3.4=pyhd8ed1ab_0 - - dash-bootstrap-components=2.0.4=pyhcf101f3_0 - - dash-core-components=2.0.0=pyhd8ed1ab_1 - - dash-daq=0.6.0=pyhd8ed1ab_0 - - dash-html-components=2.0.0=pyhd8ed1ab_2 - - dash-table=5.0.0=pyhd8ed1ab_1 - - dask-core=2025.3.0=pyhd8ed1ab_0 - - dav1d=1.2.1=hcfcfb64_0 - - flask=3.1.2=pyhd8ed1ab_0 - - fonttools=4.61.1=py310hdb0e946_0 - - freetype=2.14.1=h57928b3_0 - - fsspec=2025.12.0=pyhd8ed1ab_0 - - giflib=5.2.2=h64bf75a_0 - - h2=4.3.0=pyhcf101f3_0 - - h5py=3.15.1=nompi_py310hb7e4da9_101 - - hdf5=1.14.6=nompi_h89f0904_104 - - hpack=4.1.0=pyhd8ed1ab_0 - - hyperframe=6.1.0=pyhd8ed1ab_0 - - icu=78.2=h637d24d_0 - - idna=3.11=pyhd8ed1ab_0 - - imagecodecs=2025.3.30=py310h9ee7ba4_2 - - imageio=2.37.0=pyhfb79c49_0 - - importlib-metadata=8.7.0=pyhe01879c_1 - - itsdangerous=2.2.0=pyhd8ed1ab_1 - - jinja2=3.1.6=pyhcf101f3_1 - - jxrlib=1.1=hcfcfb64_3 - - kiwisolver=1.4.9=py310h1e1005b_2 - - krb5=1.21.3=hdf4eb48_0 - - lazy-loader=0.4=pyhd8ed1ab_2 - - lcms2=2.17=hbcf6048_0 - - lerc=4.0.0=h6470a55_1 - - libaec=1.1.4=h20038f6_0 - - libavif16=1.3.0=he916da2_2 - - libblas=3.11.0=5_hf2e6a31_mkl - - libbrotlicommon=1.1.0=hfd05255_4 - - libbrotlidec=1.1.0=hfd05255_4 - - libbrotlienc=1.1.0=hfd05255_4 - - libcblas=3.11.0=5_h2a3cdd5_mkl - - libcurl=8.18.0=h43ecb02_0 - - libdeflate=1.24=h76ddb4d_0 - - libexpat=2.7.3=hac47afa_0 - - libffi=3.5.2=h52bdfb6_0 - - libfreetype=2.14.1=h57928b3_0 - - libfreetype6=2.14.1=hdbac1cb_0 - - libgcc=15.2.0=h8ee18e1_16 - - libgomp=15.2.0=h8ee18e1_16 - - libhwloc=2.12.2=default_h4379cf1_1000 - - libhwy=1.3.0=ha71e874_1 - - libiconv=1.18=hc1393d2_2 - - libjpeg-turbo=3.1.2=hfd05255_0 - - libjxl=0.11.1=hb7713f0_4 - - liblapack=3.11.0=5_hf9ab0e9_mkl - - liblzma=5.8.1=h2466b09_2 - - libpng=1.6.53=h7351971_0 - - libsqlite=3.51.1=hf5d6505_1 - - libssh2=1.11.1=h9aa295b_0 - - libtiff=4.7.1=h550210a_0 - - libwebp-base=1.6.0=h4d5522a_0 - - libwinpthread=12.0.0.r4.gg4f2fc60ca=h57928b3_10 - - libxcb=1.17.0=h0e4246c_0 - - libxml2=2.15.1=h779ef1b_1 - - libxml2-16=2.15.1=h3cfd58e_1 - - libzlib=1.3.1=h2466b09_2 - - libzopfli=1.0.3=h0e60522_0 - - llvm-openmp=21.1.8=h4fa8253_0 - - locket=1.0.0=pyhd8ed1ab_0 - - lz4-c=1.10.0=h2466b09_1 - - markupsafe=3.0.3=py310hdb0e946_0 - - matplotlib-base=3.8.4=py310hadb10a8_2 - - mkl=2025.3.0=hac47afa_455 - - munkres=1.1.4=pyhd8ed1ab_1 - - narwhals=2.15.0=pyhcf101f3_0 - - nest-asyncio=1.6.0=pyhd8ed1ab_1 - - networkx=3.4.2=pyh267e887_2 - - numpy=1.26.4=py310hf667824_0 - - openjpeg=2.5.4=h24db6dd_0 - - openssl=3.6.0=h725018a_0 - - packaging=25.0=pyh29332c3_1 - - partd=1.4.2=pyhd8ed1ab_0 - - pillow=10.3.0=py310h3e38d90_1 - - pip=25.3=pyh8b19718_0 - - plotly=6.5.1=pyhd8ed1ab_0 - - proxy-tools=0.1.0=pyhd8ed1ab_0 - - pthread-stubs=0.4=h0e40799_1002 - - pycparser=2.22=pyh29332c3_1 - - pydantic=2.12.5=pyhcf101f3_1 - - pydantic-core=2.41.5=py310h034784e_1 - - pyparsing=3.3.1=pyhcf101f3_0 - - pysocks=1.7.1=pyh09c184e_7 - - python=3.10.19=hc20f281_2_cpython - - python-dateutil=2.9.0.post0=pyhe01879c_2 - - python_abi=3.10=8_cp310 - - pythonnet=3.0.5=pyhd8ed1ab_0 - - pywavelets=1.8.0=py310hb0944cc_0 - - pyyaml=6.0.3=py310hdb0e946_0 - - rav1e=0.7.1=ha073cba_3 - - requests=2.32.5=pyhcf101f3_1 - - retrying=1.4.2=pyhe01879c_0 - - scikit-image=0.25.2=py310hed136d8_2 - - scipy=1.14.1=py310hbd0dde3_2 - - setuptools=80.9.0=pyhff2d567_0 - - six=1.17.0=pyhe01879c_1 - - snappy=1.2.2=h7fa0ca8_1 - - svt-av1=3.1.2=hac47afa_0 - - tbb=2022.3.0=h3155e25_2 - - tifffile=2025.5.10=pyhd8ed1ab_0 - - tk=8.6.13=h2c6b04d_3 - - toolz=1.1.0=pyhd8ed1ab_1 - - tqdm=4.67.1=pyhd8ed1ab_1 - - typing-extensions=4.15.0=h396c80c_0 - - typing-inspection=0.4.2=pyhd8ed1ab_1 - - typing_extensions=4.15.0=pyhcf101f3_0 - - tzdata=2025c=hc9c84f9_1 - - ucrt=10.0.26100.0=h57928b3_0 - - unicodedata2=17.0.0=py310h29418f3_1 - - urllib3=2.5.0=pyhd8ed1ab_0 - - vc=14.3=h41ae7f8_34 - - vc14_runtime=14.44.35208=h818238b_34 - - vcomp14=14.44.35208=h818238b_34 - - vs2015_runtime=14.44.35208=h38c0c73_34 - - waitress=3.0.2=pyhcf101f3_2 - - werkzeug=3.1.5=pyhcf101f3_0 - - wheel=0.45.1=pyhd8ed1ab_1 - - win_inet_pton=1.1.0=pyh7428d3b_8 - - xorg-libxau=1.0.12=hba3369d_1 - - xorg-libxdmcp=1.1.5=hba3369d_1 - - yaml=0.2.5=h6a83c73_3 - - zfp=1.0.1=h2f0f97f_5 - - zipp=3.23.0=pyhcf101f3_1 - - zlib-ng=2.2.5=h32d8bfd_1 - - zstandard=0.25.0=py310h1637853_1 - - zstd=1.5.7=h534d264_6 - - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 - - pywebview == 6.1 - -variables: - KMP_WARNINGS: 0 diff --git a/environments/py-3.12-linux-64-dev-raw.conda.lock.yml b/environments/py-3.12-linux-64-dev-raw.conda.lock.yml index 201574d..fd40f7b 100644 --- a/environments/py-3.12-linux-64-dev-raw.conda.lock.yml +++ b/environments/py-3.12-linux-64-dev-raw.conda.lock.yml @@ -1,18 +1,17 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 90f90f73a20defb2155f372002fe80f9558c047775f6f2659bf0faf118035a88 +# input_hash: d5791aa9f3d6422de4e84227a70ddb0dd23f8231221a5e91b24f98ce6106325e channels: - conda-forge - nodefaults dependencies: - - _libgcc_mutex=0.1=conda_forge - - _openmp_mutex=4.5=2_gnu + - _openmp_mutex=4.5=20_gnu - alabaster=1.0.0=pyhd8ed1ab_1 - annotated-types=0.7.0=pyhd8ed1ab_1 - aom=3.9.1=hac33072_0 - - astroid=4.0.3=py312h7900ff3_0 - - babel=2.17.0=pyhd8ed1ab_0 + - astroid=4.0.4=py312h7900ff3_0 + - babel=2.18.0=pyhcf101f3_1 - backports.zstd=1.3.0=py312h90b7ffd_0 - blinker=1.9.0=pyhff2d567_0 - blosc=1.21.6=he440d0b_1 @@ -20,94 +19,94 @@ dependencies: - brotli-bin=1.2.0=hb03c661_1 - brotli-python=1.2.0=py312hdb49522_1 - brunsli=0.1=hd1e3526_2 - - bzip2=1.0.8=hda65f42_8 + - bzip2=1.0.8=hda65f42_9 - c-ares=1.34.6=hb03c661_0 - - c-blosc2=2.22.0=hc31b594_1 - - ca-certificates=2026.1.4=hbd8a1cb_0 + - c-blosc2=2.23.1=hc31b594_0 + - ca-certificates=2026.2.25=hbd8a1cb_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2026.1.4=pyhd8ed1ab_0 - - charls=2.4.2=h59595ed_0 - - charset-normalizer=3.4.4=pyhd8ed1ab_0 + - certifi=2026.2.25=pyhd8ed1ab_0 + - charls=2.4.3=hecca717_0 + - charset-normalizer=3.4.6=pyhd8ed1ab_0 - click=8.3.1=pyh8f84b5b_1 - cloudpickle=3.1.2=pyhcf101f3_1 - colorama=0.4.6=pyhd8ed1ab_1 - - contourpy=1.3.3=py312hd9148b4_3 - - coverage=7.13.1=py312h8a5da7c_0 + - contourpy=1.3.3=py312h0a2e395_4 + - coverage=7.13.5=py312h8a5da7c_0 - cycler=0.12.1=pyhcf101f3_2 - - dash=3.3.0=pyhd8ed1ab_0 + - dash=3.4.0=pyhd8ed1ab_0 - dash-ag-grid=32.3.4=pyhd8ed1ab_0 - dash-bootstrap-components=2.0.4=pyhcf101f3_0 - dash-core-components=2.0.0=pyhd8ed1ab_1 - dash-daq=0.6.0=pyhd8ed1ab_0 - dash-html-components=2.0.0=pyhd8ed1ab_2 - dash-table=5.0.0=pyhd8ed1ab_1 - - dask-core=2025.3.0=pyhd8ed1ab_0 + - dask-core=2025.3.1=pyhd8ed1ab_0 - dav1d=1.2.1=hd590300_0 - - dill=0.4.0=pyhcf101f3_1 + - dill=0.4.1=pyhcf101f3_0 - docutils=0.21.2=pyhd8ed1ab_1 - exceptiongroup=1.3.1=pyhd8ed1ab_0 - - flask=3.1.2=pyhd8ed1ab_0 - - fonttools=4.61.1=py312h8a5da7c_0 - - freetype=2.14.1=ha770c72_0 - - fsspec=2025.12.0=pyhd8ed1ab_0 + - flask=3.1.3=pyhcf101f3_1 + - fonttools=4.62.0=py312h8a5da7c_0 + - freetype=2.14.2=ha770c72_0 + - fsspec=2026.2.0=pyhd8ed1ab_0 - giflib=5.2.2=hd590300_0 - h2=4.3.0=pyhcf101f3_0 - h5py=3.15.1=nompi_py312ha4f8f14_101 - - hdf5=1.14.6=nompi_h1b119a7_104 + - hdf5=1.14.6=nompi_h19486de_106 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - - icu=78.2=h33c6efd_0 + - icu=78.3=h33c6efd_0 - idna=3.11=pyhd8ed1ab_0 - - imagecodecs=2026.1.1=py312ha4965bc_0 + - imagecodecs=2026.3.6=py312h40df4bb_1 - imageio=2.37.0=pyhfb79c49_0 - - imagesize=1.4.1=pyhd8ed1ab_0 + - imagesize=2.0.0=pyhd8ed1ab_0 - importlib-metadata=8.7.0=pyhe01879c_1 - iniconfig=2.3.0=pyhd8ed1ab_0 - - isort=7.0.0=pyhd8ed1ab_0 + - isort=8.0.1=pyhd8ed1ab_0 - itsdangerous=2.2.0=pyhd8ed1ab_1 - jinja2=3.1.6=pyhcf101f3_1 - jxrlib=1.1=hd590300_3 - keyutils=1.6.3=hb9d3cd8_0 - - kiwisolver=1.4.9=py312h0a2e395_2 - - krb5=1.21.3=h659f571_0 - - lazy-loader=0.4=pyhd8ed1ab_2 - - lcms2=2.17=h717163a_0 - - ld_impl_linux-64=2.45=default_hbd61a6d_105 - - lerc=4.0.0=h0aef613_1 - - libaec=1.1.4=h3f801dc_0 - - libavif16=1.3.0=h6395336_2 + - kiwisolver=1.5.0=py312h0a2e395_0 + - krb5=1.22.2=ha1258a1_0 + - lazy-loader=0.5=pyhd8ed1ab_0 + - lcms2=2.18=h0c24ade_0 + - ld_impl_linux-64=2.45.1=default_hbd61a6d_101 + - lerc=4.1.0=hdb68285_0 + - libaec=1.1.5=h088129d_0 + - libavif16=1.4.0=hcfa2d63_0 - libblas=3.11.0=5_h4a7cf45_openblas - libbrotlicommon=1.2.0=hb03c661_1 - libbrotlidec=1.2.0=hb03c661_1 - libbrotlienc=1.2.0=hb03c661_1 - libcblas=3.11.0=5_h0358290_openblas - - libcurl=8.18.0=h4e3cde8_0 + - libcurl=8.19.0=hcf29cc6_0 - libdeflate=1.25=h17f619e_0 - libedit=3.1.20250104=pl5321h7949ede_0 - libev=4.33=hd590300_2 - - libexpat=2.7.3=hecca717_0 - - libffi=3.5.2=h9ec8514_0 - - libfreetype=2.14.1=ha770c72_0 - - libfreetype6=2.14.1=h73754d4_0 - - libgcc=15.2.0=he0feb66_16 - - libgcc-ng=15.2.0=h69a702a_16 - - libgfortran=15.2.0=h69a702a_16 - - libgfortran5=15.2.0=h68bc16d_16 - - libgomp=15.2.0=he0feb66_16 + - libexpat=2.7.4=hecca717_0 + - libffi=3.5.2=h3435931_0 + - libfreetype=2.14.2=ha770c72_0 + - libfreetype6=2.14.2=h73754d4_0 + - libgcc=15.2.0=he0feb66_18 + - libgcc-ng=15.2.0=h69a702a_18 + - libgfortran=15.2.0=h69a702a_18 + - libgfortran5=15.2.0=h68bc16d_18 + - libgomp=15.2.0=he0feb66_18 - libhwy=1.3.0=h4c17acf_1 - libjpeg-turbo=3.1.2=hb03c661_0 - - libjxl=0.11.1=hf08fa70_5 + - libjxl=0.11.2=ha09017c_0 - liblapack=3.11.0=5_h47877c9_openblas - - liblzma=5.8.1=hb9d3cd8_2 - - libnghttp2=1.67.0=had1ee68_0 + - liblzma=5.8.2=hb03c661_0 + - libnghttp2=1.68.1=h877daf1_0 - libnsl=2.0.1=hb9d3cd8_1 - libopenblas=0.3.30=pthreads_h94d23a6_4 - - libpng=1.6.53=h421ea60_0 - - libsqlite=3.51.1=hf4e2dac_1 + - libpng=1.6.55=h421ea60_0 + - libsqlite=3.52.0=hf4e2dac_0 - libssh2=1.11.1=hcf80075_0 - - libstdcxx=15.2.0=h934c35e_16 - - libstdcxx-ng=15.2.0=hdf11a46_16 + - libstdcxx=15.2.0=h934c35e_18 + - libstdcxx-ng=15.2.0=hdf11a46_18 - libtiff=4.7.1=h9d88235_1 - libuuid=2.41.3=h5347b49_0 - libwebp-base=1.6.0=hd42ef1d_0 @@ -117,56 +116,55 @@ dependencies: - libzopfli=1.0.3=h9c3ff4c_0 - locket=1.0.0=pyhd8ed1ab_0 - lz4-c=1.10.0=h5888daf_1 - - markupsafe=3.0.3=py312h8a5da7c_0 - - matplotlib-base=3.8.4=py312h20ab3a6_2 + - markupsafe=3.0.3=py312h8a5da7c_1 + - matplotlib-base=3.10.8=py312he3d6523_0 - mccabe=0.7.0=pyhd8ed1ab_1 - munkres=1.1.4=pyhd8ed1ab_1 - - narwhals=2.15.0=pyhcf101f3_0 + - narwhals=2.18.0=pyhcf101f3_0 - ncurses=6.5=h2d0b736_3 - nest-asyncio=1.6.0=pyhd8ed1ab_1 - networkx=3.6.1=pyhcf101f3_0 - - numpy=1.26.4=py312heda63a1_0 + - numpy=2.4.3=py312h33ff503_0 - openjpeg=2.5.4=h55fea9a_0 - - openjph=0.26.0=h8d634f6_0 - - openssl=3.6.0=h26f9b46_0 - - packaging=25.0=pyh29332c3_1 + - openjph=0.26.3=h8d634f6_0 + - openssl=3.6.1=h35e630c_1 + - packaging=26.0=pyhcf101f3_0 - partd=1.4.2=pyhd8ed1ab_0 - - pillow=10.3.0=py312h287a98d_1 - - pip=25.3=pyh8b19718_0 - - platformdirs=4.5.1=pyhcf101f3_0 - - plotly=6.5.1=pyhd8ed1ab_0 + - pillow=12.1.1=py312h50c33e8_0 + - pip=26.0.1=pyh8b19718_0 + - platformdirs=4.9.4=pyhcf101f3_0 + - plotly=6.6.0=pyhd8ed1ab_0 - pluggy=1.6.0=pyhf9edf01_1 - pthread-stubs=0.4=hb9d3cd8_1002 - pydantic=2.12.5=pyhcf101f3_1 - pydantic-core=2.41.5=py312h868fb18_1 - pygments=2.19.2=pyhd8ed1ab_0 - - pylint=4.0.4=pyhcf101f3_0 - - pyparsing=3.3.1=pyhcf101f3_0 + - pylint=4.0.5=pyhcf101f3_0 + - pyparsing=3.3.2=pyhcf101f3_0 - pysocks=1.7.1=pyha55dd90_7 - pytest=9.0.2=pyhcf101f3_0 - pytest-cov=7.0.0=pyhcf101f3_1 - - python=3.12.12=hd63d673_1_cpython + - python=3.12.13=hd63d673_0_cpython - python-dateutil=2.9.0.post0=pyhe01879c_2 - python_abi=3.12=8_cp312 - - pytz=2025.2=pyhd8ed1ab_0 - - pywavelets=1.9.0=py312h4f23490_2 - - pyyaml=6.0.3=py312h8a5da7c_0 - - rav1e=0.7.1=h8fae777_3 + - pyyaml=6.0.3=py312h8a5da7c_1 + - qhull=2020.2=h434a139_5 + - rav1e=0.8.1=h1fbca29_0 - readline=8.3=h853b02a_0 - requests=2.32.5=pyhcf101f3_1 - retrying=1.4.2=pyhe01879c_0 - roman-numerals=4.1.0=pyhd8ed1ab_0 - roman-numerals-py=4.1.0=pyhd8ed1ab_0 - - scikit-image=0.25.2=py312hf79963d_2 - - scipy=1.14.1=py312h62794b6_2 - - setuptools=80.9.0=pyhff2d567_0 + - scikit-image=0.26.0=np2py312h4ae17e4_0 + - scipy=1.17.1=py312h54fa4ab_0 + - setuptools=82.0.1=pyh332efcf_0 - six=1.17.0=pyhe01879c_1 - snappy=1.2.2=h03e3b7b_1 - snowballstemmer=3.0.1=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 + - sphinx-rtd-theme=3.1.0=hd8ed1ab_0 + - sphinx_rtd_theme=3.1.0=pyha770c72_0 - sphinxcontrib-applehelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-devhelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-htmlhelp=2.1.0=pyhd8ed1ab_1 @@ -174,32 +172,32 @@ dependencies: - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_1 - sphinxcontrib-qthelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_1 - - svt-av1=3.1.2=hecca717_0 - - tifffile=2025.12.20=pyhd8ed1ab_0 - - tk=8.6.13=noxft_ha0e22de_103 - - tomli=2.3.0=pyhcf101f3_0 - - tomlkit=0.13.3=pyha770c72_0 + - svt-av1=4.0.1=hecca717_0 + - tifffile=2026.3.3=pyhd8ed1ab_0 + - tk=8.6.13=noxft_h366c992_103 + - tomli=2.4.0=pyhcf101f3_0 + - tomlkit=0.14.0=pyha770c72_0 - toolz=1.1.0=pyhd8ed1ab_1 - - tqdm=4.67.1=pyhd8ed1ab_1 + - tqdm=4.67.3=pyh8f84b5b_0 - typing-extensions=4.15.0=h396c80c_0 - typing-inspection=0.4.2=pyhd8ed1ab_1 - typing_extensions=4.15.0=pyhcf101f3_0 - tzdata=2025c=hc9c84f9_1 - - unicodedata2=17.0.0=py312h4c3975b_1 + - unicodedata2=17.0.1=py312h4c3975b_0 - urllib3=2.6.3=pyhd8ed1ab_0 - waitress=3.0.2=pyhcf101f3_2 - - werkzeug=3.1.5=pyhcf101f3_0 - - wheel=0.45.1=pyhd8ed1ab_1 + - werkzeug=3.1.6=pyhcf101f3_0 + - wheel=0.46.3=pyhd8ed1ab_0 - xorg-libxau=1.0.12=hb03c661_1 - xorg-libxdmcp=1.1.5=hb03c661_1 - yaml=0.2.5=h280c20c_3 - zfp=1.0.1=h909a3a2_5 - zipp=3.23.0=pyhcf101f3_1 - - zlib-ng=2.3.2=hceb46e0_1 + - zlib-ng=2.3.3=hceb46e0_1 - zstd=1.5.7=hb78ec9c_6 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@fb86adf72fb82ea23c8904a39585982ca8793c52 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@771ae87ccae825e2eae4058b5f51fd6d5f4791cf 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 cb87d09..5afc909 100644 --- a/environments/py-3.12-linux-64-dev.conda.lock.yml +++ b/environments/py-3.12-linux-64-dev.conda.lock.yml @@ -1,18 +1,17 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 90f90f73a20defb2155f372002fe80f9558c047775f6f2659bf0faf118035a88 +# input_hash: d5791aa9f3d6422de4e84227a70ddb0dd23f8231221a5e91b24f98ce6106325e channels: - conda-forge - nodefaults dependencies: - - _libgcc_mutex=0.1=conda_forge - - _openmp_mutex=4.5=2_gnu + - _openmp_mutex=4.5=20_gnu - alabaster=1.0.0=pyhd8ed1ab_1 - annotated-types=0.7.0=pyhd8ed1ab_1 - aom=3.9.1=hac33072_0 - - astroid=4.0.3=py312h7900ff3_0 - - babel=2.17.0=pyhd8ed1ab_0 + - astroid=4.0.4=py312h7900ff3_0 + - babel=2.18.0=pyhcf101f3_1 - backports.zstd=1.3.0=py312h90b7ffd_0 - blinker=1.9.0=pyhff2d567_0 - blosc=1.21.6=he440d0b_1 @@ -21,96 +20,96 @@ dependencies: - brotli-bin=1.2.0=hb03c661_1 - brotli-python=1.2.0=py312hdb49522_1 - brunsli=0.1=hd1e3526_2 - - bzip2=1.0.8=hda65f42_8 + - bzip2=1.0.8=hda65f42_9 - c-ares=1.34.6=hb03c661_0 - - c-blosc2=2.22.0=hc31b594_1 - - ca-certificates=2026.1.4=hbd8a1cb_0 + - c-blosc2=2.23.1=hc31b594_0 + - ca-certificates=2026.2.25=hbd8a1cb_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2026.1.4=pyhd8ed1ab_0 + - certifi=2026.2.25=pyhd8ed1ab_0 - cffi=2.0.0=py312h460c074_1 - - charls=2.4.2=h59595ed_0 - - charset-normalizer=3.4.4=pyhd8ed1ab_0 + - charls=2.4.3=hecca717_0 + - charset-normalizer=3.4.6=pyhd8ed1ab_0 - click=8.3.1=pyh8f84b5b_1 - cloudpickle=3.1.2=pyhcf101f3_1 - clr_loader=0.2.10=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - - contourpy=1.3.3=py312hd9148b4_3 - - coverage=7.13.1=py312h8a5da7c_0 + - contourpy=1.3.3=py312h0a2e395_4 + - coverage=7.13.5=py312h8a5da7c_0 - cycler=0.12.1=pyhcf101f3_2 - - dash=3.3.0=pyhd8ed1ab_0 + - dash=3.4.0=pyhd8ed1ab_0 - dash-ag-grid=32.3.4=pyhd8ed1ab_0 - dash-bootstrap-components=2.0.4=pyhcf101f3_0 - dash-core-components=2.0.0=pyhd8ed1ab_1 - dash-daq=0.6.0=pyhd8ed1ab_0 - dash-html-components=2.0.0=pyhd8ed1ab_2 - dash-table=5.0.0=pyhd8ed1ab_1 - - dask-core=2025.3.0=pyhd8ed1ab_0 + - dask-core=2025.3.1=pyhd8ed1ab_0 - dav1d=1.2.1=hd590300_0 - - dill=0.4.0=pyhcf101f3_1 + - dill=0.4.1=pyhcf101f3_0 - docutils=0.21.2=pyhd8ed1ab_1 - exceptiongroup=1.3.1=pyhd8ed1ab_0 - - flask=3.1.2=pyhd8ed1ab_0 - - fonttools=4.61.1=py312h8a5da7c_0 - - freetype=2.14.1=ha770c72_0 - - fsspec=2025.12.0=pyhd8ed1ab_0 + - flask=3.1.3=pyhcf101f3_1 + - fonttools=4.62.0=py312h8a5da7c_0 + - freetype=2.14.2=ha770c72_0 + - fsspec=2026.2.0=pyhd8ed1ab_0 - giflib=5.2.2=hd590300_0 - h2=4.3.0=pyhcf101f3_0 - h5py=3.15.1=nompi_py312ha4f8f14_101 - - hdf5=1.14.6=nompi_h1b119a7_104 + - hdf5=1.14.6=nompi_h19486de_106 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - - icu=78.2=h33c6efd_0 + - icu=78.3=h33c6efd_0 - idna=3.11=pyhd8ed1ab_0 - - imagecodecs=2026.1.1=py312ha4965bc_0 + - imagecodecs=2026.3.6=py312h40df4bb_1 - imageio=2.37.0=pyhfb79c49_0 - - imagesize=1.4.1=pyhd8ed1ab_0 + - imagesize=2.0.0=pyhd8ed1ab_0 - importlib-metadata=8.7.0=pyhe01879c_1 - iniconfig=2.3.0=pyhd8ed1ab_0 - - isort=7.0.0=pyhd8ed1ab_0 + - isort=8.0.1=pyhd8ed1ab_0 - itsdangerous=2.2.0=pyhd8ed1ab_1 - jinja2=3.1.6=pyhcf101f3_1 - jxrlib=1.1=hd590300_3 - keyutils=1.6.3=hb9d3cd8_0 - - kiwisolver=1.4.9=py312h0a2e395_2 - - krb5=1.21.3=h659f571_0 - - lazy-loader=0.4=pyhd8ed1ab_2 - - lcms2=2.17=h717163a_0 - - ld_impl_linux-64=2.45=default_hbd61a6d_105 - - lerc=4.0.0=h0aef613_1 - - libaec=1.1.4=h3f801dc_0 - - libavif16=1.3.0=h6395336_2 + - kiwisolver=1.5.0=py312h0a2e395_0 + - krb5=1.22.2=ha1258a1_0 + - lazy-loader=0.5=pyhd8ed1ab_0 + - lcms2=2.18=h0c24ade_0 + - ld_impl_linux-64=2.45.1=default_hbd61a6d_101 + - lerc=4.1.0=hdb68285_0 + - libaec=1.1.5=h088129d_0 + - libavif16=1.4.0=hcfa2d63_0 - libblas=3.11.0=5_h4a7cf45_openblas - libbrotlicommon=1.2.0=hb03c661_1 - libbrotlidec=1.2.0=hb03c661_1 - libbrotlienc=1.2.0=hb03c661_1 - libcblas=3.11.0=5_h0358290_openblas - - libcurl=8.18.0=h4e3cde8_0 + - libcurl=8.19.0=hcf29cc6_0 - libdeflate=1.25=h17f619e_0 - libedit=3.1.20250104=pl5321h7949ede_0 - libev=4.33=hd590300_2 - - libexpat=2.7.3=hecca717_0 - - libffi=3.5.2=h9ec8514_0 - - libfreetype=2.14.1=ha770c72_0 - - libfreetype6=2.14.1=h73754d4_0 - - libgcc=15.2.0=he0feb66_16 - - libgcc-ng=15.2.0=h69a702a_16 - - libgfortran=15.2.0=h69a702a_16 - - libgfortran5=15.2.0=h68bc16d_16 - - libgomp=15.2.0=he0feb66_16 + - libexpat=2.7.4=hecca717_0 + - libffi=3.5.2=h3435931_0 + - libfreetype=2.14.2=ha770c72_0 + - libfreetype6=2.14.2=h73754d4_0 + - libgcc=15.2.0=he0feb66_18 + - libgcc-ng=15.2.0=h69a702a_18 + - libgfortran=15.2.0=h69a702a_18 + - libgfortran5=15.2.0=h68bc16d_18 + - libgomp=15.2.0=he0feb66_18 - libhwy=1.3.0=h4c17acf_1 - libjpeg-turbo=3.1.2=hb03c661_0 - - libjxl=0.11.1=hf08fa70_5 + - libjxl=0.11.2=ha09017c_0 - liblapack=3.11.0=5_h47877c9_openblas - - liblzma=5.8.1=hb9d3cd8_2 - - libnghttp2=1.67.0=had1ee68_0 + - liblzma=5.8.2=hb03c661_0 + - libnghttp2=1.68.1=h877daf1_0 - libnsl=2.0.1=hb9d3cd8_1 - libopenblas=0.3.30=pthreads_h94d23a6_4 - - libpng=1.6.53=h421ea60_0 - - libsqlite=3.51.1=hf4e2dac_1 + - libpng=1.6.55=h421ea60_0 + - libsqlite=3.52.0=hf4e2dac_0 - libssh2=1.11.1=hcf80075_0 - - libstdcxx=15.2.0=h934c35e_16 - - libstdcxx-ng=15.2.0=hdf11a46_16 + - libstdcxx=15.2.0=h934c35e_18 + - libstdcxx-ng=15.2.0=hdf11a46_18 - libtiff=4.7.1=h9d88235_1 - libuuid=2.41.3=h5347b49_0 - libwebp-base=1.6.0=hd42ef1d_0 @@ -120,24 +119,24 @@ dependencies: - libzopfli=1.0.3=h9c3ff4c_0 - locket=1.0.0=pyhd8ed1ab_0 - lz4-c=1.10.0=h5888daf_1 - - markupsafe=3.0.3=py312h8a5da7c_0 - - matplotlib-base=3.8.4=py312h20ab3a6_2 + - markupsafe=3.0.3=py312h8a5da7c_1 + - matplotlib-base=3.10.8=py312he3d6523_0 - mccabe=0.7.0=pyhd8ed1ab_1 - munkres=1.1.4=pyhd8ed1ab_1 - - narwhals=2.15.0=pyhcf101f3_0 + - narwhals=2.18.0=pyhcf101f3_0 - ncurses=6.5=h2d0b736_3 - nest-asyncio=1.6.0=pyhd8ed1ab_1 - networkx=3.6.1=pyhcf101f3_0 - - numpy=1.26.4=py312heda63a1_0 + - numpy=2.4.3=py312h33ff503_0 - openjpeg=2.5.4=h55fea9a_0 - - openjph=0.26.0=h8d634f6_0 - - openssl=3.6.0=h26f9b46_0 - - packaging=25.0=pyh29332c3_1 + - openjph=0.26.3=h8d634f6_0 + - openssl=3.6.1=h35e630c_1 + - packaging=26.0=pyhcf101f3_0 - partd=1.4.2=pyhd8ed1ab_0 - - pillow=10.3.0=py312h287a98d_1 - - pip=25.3=pyh8b19718_0 - - platformdirs=4.5.1=pyhcf101f3_0 - - plotly=6.5.1=pyhd8ed1ab_0 + - pillow=12.1.1=py312h50c33e8_0 + - pip=26.0.1=pyh8b19718_0 + - platformdirs=4.9.4=pyhcf101f3_0 + - plotly=6.6.0=pyhd8ed1ab_0 - pluggy=1.6.0=pyhf9edf01_1 - proxy-tools=0.1.0=pyhd8ed1ab_0 - pthread-stubs=0.4=hb9d3cd8_1002 @@ -145,34 +144,33 @@ dependencies: - pydantic=2.12.5=pyhcf101f3_1 - pydantic-core=2.41.5=py312h868fb18_1 - pygments=2.19.2=pyhd8ed1ab_0 - - pylint=4.0.4=pyhcf101f3_0 - - pyparsing=3.3.1=pyhcf101f3_0 + - pylint=4.0.5=pyhcf101f3_0 + - pyparsing=3.3.2=pyhcf101f3_0 - pysocks=1.7.1=pyha55dd90_7 - pytest=9.0.2=pyhcf101f3_0 - pytest-cov=7.0.0=pyhcf101f3_1 - - python=3.12.12=hd63d673_1_cpython + - python=3.12.13=hd63d673_0_cpython - python-dateutil=2.9.0.post0=pyhe01879c_2 - python_abi=3.12=8_cp312 - pythonnet=3.0.5=pyhd8ed1ab_0 - - pytz=2025.2=pyhd8ed1ab_0 - - pywavelets=1.9.0=py312h4f23490_2 - - pyyaml=6.0.3=py312h8a5da7c_0 - - rav1e=0.7.1=h8fae777_3 + - pyyaml=6.0.3=py312h8a5da7c_1 + - qhull=2020.2=h434a139_5 + - rav1e=0.8.1=h1fbca29_0 - readline=8.3=h853b02a_0 - requests=2.32.5=pyhcf101f3_1 - retrying=1.4.2=pyhe01879c_0 - roman-numerals=4.1.0=pyhd8ed1ab_0 - roman-numerals-py=4.1.0=pyhd8ed1ab_0 - - scikit-image=0.25.2=py312hf79963d_2 - - scipy=1.14.1=py312h62794b6_2 - - setuptools=80.9.0=pyhff2d567_0 + - scikit-image=0.26.0=np2py312h4ae17e4_0 + - scipy=1.17.1=py312h54fa4ab_0 + - setuptools=82.0.1=pyh332efcf_0 - six=1.17.0=pyhe01879c_1 - snappy=1.2.2=h03e3b7b_1 - snowballstemmer=3.0.1=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 + - sphinx-rtd-theme=3.1.0=hd8ed1ab_0 + - sphinx_rtd_theme=3.1.0=pyha770c72_0 - sphinxcontrib-applehelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-devhelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-htmlhelp=2.1.0=pyhd8ed1ab_1 @@ -180,32 +178,32 @@ dependencies: - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_1 - sphinxcontrib-qthelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_1 - - svt-av1=3.1.2=hecca717_0 - - tifffile=2025.12.20=pyhd8ed1ab_0 - - tk=8.6.13=noxft_ha0e22de_103 - - tomli=2.3.0=pyhcf101f3_0 - - tomlkit=0.13.3=pyha770c72_0 + - svt-av1=4.0.1=hecca717_0 + - tifffile=2026.3.3=pyhd8ed1ab_0 + - tk=8.6.13=noxft_h366c992_103 + - tomli=2.4.0=pyhcf101f3_0 + - tomlkit=0.14.0=pyha770c72_0 - toolz=1.1.0=pyhd8ed1ab_1 - - tqdm=4.67.1=pyhd8ed1ab_1 + - tqdm=4.67.3=pyh8f84b5b_0 - typing-extensions=4.15.0=h396c80c_0 - typing-inspection=0.4.2=pyhd8ed1ab_1 - typing_extensions=4.15.0=pyhcf101f3_0 - tzdata=2025c=hc9c84f9_1 - - unicodedata2=17.0.0=py312h4c3975b_1 + - unicodedata2=17.0.1=py312h4c3975b_0 - urllib3=2.6.3=pyhd8ed1ab_0 - waitress=3.0.2=pyhcf101f3_2 - - werkzeug=3.1.5=pyhcf101f3_0 - - wheel=0.45.1=pyhd8ed1ab_1 + - werkzeug=3.1.6=pyhcf101f3_0 + - wheel=0.46.3=pyhd8ed1ab_0 - xorg-libxau=1.0.12=hb03c661_1 - xorg-libxdmcp=1.1.5=hb03c661_1 - yaml=0.2.5=h280c20c_3 - zfp=1.0.1=h909a3a2_5 - zipp=3.23.0=pyhcf101f3_1 - - zlib-ng=2.3.2=hceb46e0_1 + - zlib-ng=2.3.3=hceb46e0_1 - zstd=1.5.7=hb78ec9c_6 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@fb86adf72fb82ea23c8904a39585982ca8793c52 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@771ae87ccae825e2eae4058b5f51fd6d5f4791cf - pywebview == 6.1 variables: diff --git a/environments/py-3.12-linux-64-raw.conda.lock.yml b/environments/py-3.12-linux-64-raw.conda.lock.yml index 7d4c96f..fdea759 100644 --- a/environments/py-3.12-linux-64-raw.conda.lock.yml +++ b/environments/py-3.12-linux-64-raw.conda.lock.yml @@ -1,13 +1,12 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 90f90f73a20defb2155f372002fe80f9558c047775f6f2659bf0faf118035a88 +# input_hash: d5791aa9f3d6422de4e84227a70ddb0dd23f8231221a5e91b24f98ce6106325e channels: - conda-forge - nodefaults dependencies: - - _libgcc_mutex=0.1=conda_forge - - _openmp_mutex=4.5=2_gnu + - _openmp_mutex=4.5=20_gnu - annotated-types=0.7.0=pyhd8ed1ab_1 - aom=3.9.1=hac33072_0 - backports.zstd=1.3.0=py312h90b7ffd_0 @@ -17,87 +16,86 @@ dependencies: - brotli-bin=1.2.0=hb03c661_1 - brotli-python=1.2.0=py312hdb49522_1 - brunsli=0.1=hd1e3526_2 - - bzip2=1.0.8=hda65f42_8 + - bzip2=1.0.8=hda65f42_9 - c-ares=1.34.6=hb03c661_0 - - c-blosc2=2.22.0=hc31b594_1 - - ca-certificates=2026.1.4=hbd8a1cb_0 + - c-blosc2=2.23.1=hc31b594_0 + - ca-certificates=2026.2.25=hbd8a1cb_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2026.1.4=pyhd8ed1ab_0 - - charls=2.4.2=h59595ed_0 - - charset-normalizer=3.4.4=pyhd8ed1ab_0 + - certifi=2026.2.25=pyhd8ed1ab_0 + - charls=2.4.3=hecca717_0 + - charset-normalizer=3.4.6=pyhd8ed1ab_0 - click=8.3.1=pyh8f84b5b_1 - cloudpickle=3.1.2=pyhcf101f3_1 - - colorama=0.4.6=pyhd8ed1ab_1 - - contourpy=1.3.3=py312hd9148b4_3 + - contourpy=1.3.3=py312h0a2e395_4 - cycler=0.12.1=pyhcf101f3_2 - - dash=3.3.0=pyhd8ed1ab_0 + - dash=3.4.0=pyhd8ed1ab_0 - dash-ag-grid=32.3.4=pyhd8ed1ab_0 - dash-bootstrap-components=2.0.4=pyhcf101f3_0 - dash-core-components=2.0.0=pyhd8ed1ab_1 - dash-daq=0.6.0=pyhd8ed1ab_0 - dash-html-components=2.0.0=pyhd8ed1ab_2 - dash-table=5.0.0=pyhd8ed1ab_1 - - dask-core=2025.3.0=pyhd8ed1ab_0 + - dask-core=2025.3.1=pyhd8ed1ab_0 - dav1d=1.2.1=hd590300_0 - - flask=3.1.2=pyhd8ed1ab_0 - - fonttools=4.61.1=py312h8a5da7c_0 - - freetype=2.14.1=ha770c72_0 - - fsspec=2025.12.0=pyhd8ed1ab_0 + - flask=3.1.3=pyhcf101f3_1 + - fonttools=4.62.0=py312h8a5da7c_0 + - freetype=2.14.2=ha770c72_0 + - fsspec=2026.2.0=pyhd8ed1ab_0 - giflib=5.2.2=hd590300_0 - h2=4.3.0=pyhcf101f3_0 - h5py=3.15.1=nompi_py312ha4f8f14_101 - - hdf5=1.14.6=nompi_h1b119a7_104 + - hdf5=1.14.6=nompi_h19486de_106 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - - icu=78.2=h33c6efd_0 + - icu=78.3=h33c6efd_0 - idna=3.11=pyhd8ed1ab_0 - - imagecodecs=2026.1.1=py312ha4965bc_0 + - imagecodecs=2026.3.6=py312h40df4bb_1 - imageio=2.37.0=pyhfb79c49_0 - importlib-metadata=8.7.0=pyhe01879c_1 - itsdangerous=2.2.0=pyhd8ed1ab_1 - jinja2=3.1.6=pyhcf101f3_1 - jxrlib=1.1=hd590300_3 - keyutils=1.6.3=hb9d3cd8_0 - - kiwisolver=1.4.9=py312h0a2e395_2 - - krb5=1.21.3=h659f571_0 - - lazy-loader=0.4=pyhd8ed1ab_2 - - lcms2=2.17=h717163a_0 - - ld_impl_linux-64=2.45=default_hbd61a6d_105 - - lerc=4.0.0=h0aef613_1 - - libaec=1.1.4=h3f801dc_0 - - libavif16=1.3.0=h6395336_2 + - kiwisolver=1.5.0=py312h0a2e395_0 + - krb5=1.22.2=ha1258a1_0 + - lazy-loader=0.5=pyhd8ed1ab_0 + - lcms2=2.18=h0c24ade_0 + - ld_impl_linux-64=2.45.1=default_hbd61a6d_101 + - lerc=4.1.0=hdb68285_0 + - libaec=1.1.5=h088129d_0 + - libavif16=1.4.0=hcfa2d63_0 - libblas=3.11.0=5_h4a7cf45_openblas - libbrotlicommon=1.2.0=hb03c661_1 - libbrotlidec=1.2.0=hb03c661_1 - libbrotlienc=1.2.0=hb03c661_1 - libcblas=3.11.0=5_h0358290_openblas - - libcurl=8.18.0=h4e3cde8_0 + - libcurl=8.19.0=hcf29cc6_0 - libdeflate=1.25=h17f619e_0 - libedit=3.1.20250104=pl5321h7949ede_0 - libev=4.33=hd590300_2 - - libexpat=2.7.3=hecca717_0 - - libffi=3.5.2=h9ec8514_0 - - libfreetype=2.14.1=ha770c72_0 - - libfreetype6=2.14.1=h73754d4_0 - - libgcc=15.2.0=he0feb66_16 - - libgcc-ng=15.2.0=h69a702a_16 - - libgfortran=15.2.0=h69a702a_16 - - libgfortran5=15.2.0=h68bc16d_16 - - libgomp=15.2.0=he0feb66_16 + - libexpat=2.7.4=hecca717_0 + - libffi=3.5.2=h3435931_0 + - libfreetype=2.14.2=ha770c72_0 + - libfreetype6=2.14.2=h73754d4_0 + - libgcc=15.2.0=he0feb66_18 + - libgcc-ng=15.2.0=h69a702a_18 + - libgfortran=15.2.0=h69a702a_18 + - libgfortran5=15.2.0=h68bc16d_18 + - libgomp=15.2.0=he0feb66_18 - libhwy=1.3.0=h4c17acf_1 - libjpeg-turbo=3.1.2=hb03c661_0 - - libjxl=0.11.1=hf08fa70_5 + - libjxl=0.11.2=ha09017c_0 - liblapack=3.11.0=5_h47877c9_openblas - - liblzma=5.8.1=hb9d3cd8_2 - - libnghttp2=1.67.0=had1ee68_0 + - liblzma=5.8.2=hb03c661_0 + - libnghttp2=1.68.1=h877daf1_0 - libnsl=2.0.1=hb9d3cd8_1 - libopenblas=0.3.30=pthreads_h94d23a6_4 - - libpng=1.6.53=h421ea60_0 - - libsqlite=3.51.1=hf4e2dac_1 + - libpng=1.6.55=h421ea60_0 + - libsqlite=3.52.0=hf4e2dac_0 - libssh2=1.11.1=hcf80075_0 - - libstdcxx=15.2.0=h934c35e_16 - - libstdcxx-ng=15.2.0=hdf11a46_16 + - libstdcxx=15.2.0=h934c35e_18 + - libstdcxx-ng=15.2.0=hdf11a46_18 - libtiff=4.7.1=h9d88235_1 - libuuid=2.41.3=h5347b49_0 - libwebp-base=1.6.0=hd42ef1d_0 @@ -107,65 +105,65 @@ dependencies: - libzopfli=1.0.3=h9c3ff4c_0 - locket=1.0.0=pyhd8ed1ab_0 - lz4-c=1.10.0=h5888daf_1 - - markupsafe=3.0.3=py312h8a5da7c_0 - - matplotlib-base=3.8.4=py312h20ab3a6_2 + - markupsafe=3.0.3=py312h8a5da7c_1 + - matplotlib-base=3.10.8=py312he3d6523_0 - munkres=1.1.4=pyhd8ed1ab_1 - - narwhals=2.15.0=pyhcf101f3_0 + - narwhals=2.18.0=pyhcf101f3_0 - ncurses=6.5=h2d0b736_3 - nest-asyncio=1.6.0=pyhd8ed1ab_1 - networkx=3.6.1=pyhcf101f3_0 - - numpy=1.26.4=py312heda63a1_0 + - numpy=2.4.3=py312h33ff503_0 - openjpeg=2.5.4=h55fea9a_0 - - openjph=0.26.0=h8d634f6_0 - - openssl=3.6.0=h26f9b46_0 - - packaging=25.0=pyh29332c3_1 + - openjph=0.26.3=h8d634f6_0 + - openssl=3.6.1=h35e630c_1 + - packaging=26.0=pyhcf101f3_0 - partd=1.4.2=pyhd8ed1ab_0 - - pillow=10.3.0=py312h287a98d_1 - - pip=25.3=pyh8b19718_0 - - plotly=6.5.1=pyhd8ed1ab_0 + - pillow=12.1.1=py312h50c33e8_0 + - pip=26.0.1=pyh8b19718_0 + - plotly=6.6.0=pyhd8ed1ab_0 - pthread-stubs=0.4=hb9d3cd8_1002 - pydantic=2.12.5=pyhcf101f3_1 - pydantic-core=2.41.5=py312h868fb18_1 - - pyparsing=3.3.1=pyhcf101f3_0 + - pyparsing=3.3.2=pyhcf101f3_0 - pysocks=1.7.1=pyha55dd90_7 - - python=3.12.12=hd63d673_1_cpython + - python=3.12.13=hd63d673_0_cpython - python-dateutil=2.9.0.post0=pyhe01879c_2 - python_abi=3.12=8_cp312 - - pywavelets=1.9.0=py312h4f23490_2 - - pyyaml=6.0.3=py312h8a5da7c_0 - - rav1e=0.7.1=h8fae777_3 + - pyyaml=6.0.3=py312h8a5da7c_1 + - qhull=2020.2=h434a139_5 + - rav1e=0.8.1=h1fbca29_0 - readline=8.3=h853b02a_0 - requests=2.32.5=pyhcf101f3_1 - retrying=1.4.2=pyhe01879c_0 - - scikit-image=0.25.2=py312hf79963d_2 - - scipy=1.14.1=py312h62794b6_2 - - setuptools=80.9.0=pyhff2d567_0 + - scikit-image=0.26.0=np2py312h4ae17e4_0 + - scipy=1.17.1=py312h54fa4ab_0 + - setuptools=82.0.1=pyh332efcf_0 - six=1.17.0=pyhe01879c_1 - snappy=1.2.2=h03e3b7b_1 - - svt-av1=3.1.2=hecca717_0 - - tifffile=2025.12.20=pyhd8ed1ab_0 - - tk=8.6.13=noxft_ha0e22de_103 + - svt-av1=4.0.1=hecca717_0 + - tifffile=2026.3.3=pyhd8ed1ab_0 + - tk=8.6.13=noxft_h366c992_103 - toolz=1.1.0=pyhd8ed1ab_1 - - tqdm=4.67.1=pyhd8ed1ab_1 + - tqdm=4.67.3=pyh8f84b5b_0 - typing-extensions=4.15.0=h396c80c_0 - typing-inspection=0.4.2=pyhd8ed1ab_1 - typing_extensions=4.15.0=pyhcf101f3_0 - tzdata=2025c=hc9c84f9_1 - - unicodedata2=17.0.0=py312h4c3975b_1 + - unicodedata2=17.0.1=py312h4c3975b_0 - urllib3=2.6.3=pyhd8ed1ab_0 - waitress=3.0.2=pyhcf101f3_2 - - werkzeug=3.1.5=pyhcf101f3_0 - - wheel=0.45.1=pyhd8ed1ab_1 + - werkzeug=3.1.6=pyhcf101f3_0 + - wheel=0.46.3=pyhd8ed1ab_0 - xorg-libxau=1.0.12=hb03c661_1 - xorg-libxdmcp=1.1.5=hb03c661_1 - yaml=0.2.5=h280c20c_3 - zfp=1.0.1=h909a3a2_5 - zipp=3.23.0=pyhcf101f3_1 - - zlib-ng=2.3.2=hceb46e0_1 + - zlib-ng=2.3.3=hceb46e0_1 - zstd=1.5.7=hb78ec9c_6 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@fb86adf72fb82ea23c8904a39585982ca8793c52 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@771ae87ccae825e2eae4058b5f51fd6d5f4791cf 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 fc0c52e..908c0d7 100644 --- a/environments/py-3.12-linux-64.conda.lock.yml +++ b/environments/py-3.12-linux-64.conda.lock.yml @@ -1,13 +1,12 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 90f90f73a20defb2155f372002fe80f9558c047775f6f2659bf0faf118035a88 +# input_hash: d5791aa9f3d6422de4e84227a70ddb0dd23f8231221a5e91b24f98ce6106325e channels: - conda-forge - nodefaults dependencies: - - _libgcc_mutex=0.1=conda_forge - - _openmp_mutex=4.5=2_gnu + - _openmp_mutex=4.5=20_gnu - annotated-types=0.7.0=pyhd8ed1ab_1 - aom=3.9.1=hac33072_0 - backports.zstd=1.3.0=py312h90b7ffd_0 @@ -18,89 +17,88 @@ dependencies: - brotli-bin=1.2.0=hb03c661_1 - brotli-python=1.2.0=py312hdb49522_1 - brunsli=0.1=hd1e3526_2 - - bzip2=1.0.8=hda65f42_8 + - bzip2=1.0.8=hda65f42_9 - c-ares=1.34.6=hb03c661_0 - - c-blosc2=2.22.0=hc31b594_1 - - ca-certificates=2026.1.4=hbd8a1cb_0 + - c-blosc2=2.23.1=hc31b594_0 + - ca-certificates=2026.2.25=hbd8a1cb_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2026.1.4=pyhd8ed1ab_0 + - certifi=2026.2.25=pyhd8ed1ab_0 - cffi=2.0.0=py312h460c074_1 - - charls=2.4.2=h59595ed_0 - - charset-normalizer=3.4.4=pyhd8ed1ab_0 + - charls=2.4.3=hecca717_0 + - charset-normalizer=3.4.6=pyhd8ed1ab_0 - click=8.3.1=pyh8f84b5b_1 - cloudpickle=3.1.2=pyhcf101f3_1 - clr_loader=0.2.10=pyhd8ed1ab_0 - - colorama=0.4.6=pyhd8ed1ab_1 - - contourpy=1.3.3=py312hd9148b4_3 + - contourpy=1.3.3=py312h0a2e395_4 - cycler=0.12.1=pyhcf101f3_2 - - dash=3.3.0=pyhd8ed1ab_0 + - dash=3.4.0=pyhd8ed1ab_0 - dash-ag-grid=32.3.4=pyhd8ed1ab_0 - dash-bootstrap-components=2.0.4=pyhcf101f3_0 - dash-core-components=2.0.0=pyhd8ed1ab_1 - dash-daq=0.6.0=pyhd8ed1ab_0 - dash-html-components=2.0.0=pyhd8ed1ab_2 - dash-table=5.0.0=pyhd8ed1ab_1 - - dask-core=2025.3.0=pyhd8ed1ab_0 + - dask-core=2025.3.1=pyhd8ed1ab_0 - dav1d=1.2.1=hd590300_0 - - flask=3.1.2=pyhd8ed1ab_0 - - fonttools=4.61.1=py312h8a5da7c_0 - - freetype=2.14.1=ha770c72_0 - - fsspec=2025.12.0=pyhd8ed1ab_0 + - flask=3.1.3=pyhcf101f3_1 + - fonttools=4.62.0=py312h8a5da7c_0 + - freetype=2.14.2=ha770c72_0 + - fsspec=2026.2.0=pyhd8ed1ab_0 - giflib=5.2.2=hd590300_0 - h2=4.3.0=pyhcf101f3_0 - h5py=3.15.1=nompi_py312ha4f8f14_101 - - hdf5=1.14.6=nompi_h1b119a7_104 + - hdf5=1.14.6=nompi_h19486de_106 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - - icu=78.2=h33c6efd_0 + - icu=78.3=h33c6efd_0 - idna=3.11=pyhd8ed1ab_0 - - imagecodecs=2026.1.1=py312ha4965bc_0 + - imagecodecs=2026.3.6=py312h40df4bb_1 - imageio=2.37.0=pyhfb79c49_0 - importlib-metadata=8.7.0=pyhe01879c_1 - itsdangerous=2.2.0=pyhd8ed1ab_1 - jinja2=3.1.6=pyhcf101f3_1 - jxrlib=1.1=hd590300_3 - keyutils=1.6.3=hb9d3cd8_0 - - kiwisolver=1.4.9=py312h0a2e395_2 - - krb5=1.21.3=h659f571_0 - - lazy-loader=0.4=pyhd8ed1ab_2 - - lcms2=2.17=h717163a_0 - - ld_impl_linux-64=2.45=default_hbd61a6d_105 - - lerc=4.0.0=h0aef613_1 - - libaec=1.1.4=h3f801dc_0 - - libavif16=1.3.0=h6395336_2 + - kiwisolver=1.5.0=py312h0a2e395_0 + - krb5=1.22.2=ha1258a1_0 + - lazy-loader=0.5=pyhd8ed1ab_0 + - lcms2=2.18=h0c24ade_0 + - ld_impl_linux-64=2.45.1=default_hbd61a6d_101 + - lerc=4.1.0=hdb68285_0 + - libaec=1.1.5=h088129d_0 + - libavif16=1.4.0=hcfa2d63_0 - libblas=3.11.0=5_h4a7cf45_openblas - libbrotlicommon=1.2.0=hb03c661_1 - libbrotlidec=1.2.0=hb03c661_1 - libbrotlienc=1.2.0=hb03c661_1 - libcblas=3.11.0=5_h0358290_openblas - - libcurl=8.18.0=h4e3cde8_0 + - libcurl=8.19.0=hcf29cc6_0 - libdeflate=1.25=h17f619e_0 - libedit=3.1.20250104=pl5321h7949ede_0 - libev=4.33=hd590300_2 - - libexpat=2.7.3=hecca717_0 - - libffi=3.5.2=h9ec8514_0 - - libfreetype=2.14.1=ha770c72_0 - - libfreetype6=2.14.1=h73754d4_0 - - libgcc=15.2.0=he0feb66_16 - - libgcc-ng=15.2.0=h69a702a_16 - - libgfortran=15.2.0=h69a702a_16 - - libgfortran5=15.2.0=h68bc16d_16 - - libgomp=15.2.0=he0feb66_16 + - libexpat=2.7.4=hecca717_0 + - libffi=3.5.2=h3435931_0 + - libfreetype=2.14.2=ha770c72_0 + - libfreetype6=2.14.2=h73754d4_0 + - libgcc=15.2.0=he0feb66_18 + - libgcc-ng=15.2.0=h69a702a_18 + - libgfortran=15.2.0=h69a702a_18 + - libgfortran5=15.2.0=h68bc16d_18 + - libgomp=15.2.0=he0feb66_18 - libhwy=1.3.0=h4c17acf_1 - libjpeg-turbo=3.1.2=hb03c661_0 - - libjxl=0.11.1=hf08fa70_5 + - libjxl=0.11.2=ha09017c_0 - liblapack=3.11.0=5_h47877c9_openblas - - liblzma=5.8.1=hb9d3cd8_2 - - libnghttp2=1.67.0=had1ee68_0 + - liblzma=5.8.2=hb03c661_0 + - libnghttp2=1.68.1=h877daf1_0 - libnsl=2.0.1=hb9d3cd8_1 - libopenblas=0.3.30=pthreads_h94d23a6_4 - - libpng=1.6.53=h421ea60_0 - - libsqlite=3.51.1=hf4e2dac_1 + - libpng=1.6.55=h421ea60_0 + - libsqlite=3.52.0=hf4e2dac_0 - libssh2=1.11.1=hcf80075_0 - - libstdcxx=15.2.0=h934c35e_16 - - libstdcxx-ng=15.2.0=hdf11a46_16 + - libstdcxx=15.2.0=h934c35e_18 + - libstdcxx-ng=15.2.0=hdf11a46_18 - libtiff=4.7.1=h9d88235_1 - libuuid=2.41.3=h5347b49_0 - libwebp-base=1.6.0=hd42ef1d_0 @@ -110,68 +108,68 @@ dependencies: - libzopfli=1.0.3=h9c3ff4c_0 - locket=1.0.0=pyhd8ed1ab_0 - lz4-c=1.10.0=h5888daf_1 - - markupsafe=3.0.3=py312h8a5da7c_0 - - matplotlib-base=3.8.4=py312h20ab3a6_2 + - markupsafe=3.0.3=py312h8a5da7c_1 + - matplotlib-base=3.10.8=py312he3d6523_0 - munkres=1.1.4=pyhd8ed1ab_1 - - narwhals=2.15.0=pyhcf101f3_0 + - narwhals=2.18.0=pyhcf101f3_0 - ncurses=6.5=h2d0b736_3 - nest-asyncio=1.6.0=pyhd8ed1ab_1 - networkx=3.6.1=pyhcf101f3_0 - - numpy=1.26.4=py312heda63a1_0 + - numpy=2.4.3=py312h33ff503_0 - openjpeg=2.5.4=h55fea9a_0 - - openjph=0.26.0=h8d634f6_0 - - openssl=3.6.0=h26f9b46_0 - - packaging=25.0=pyh29332c3_1 + - openjph=0.26.3=h8d634f6_0 + - openssl=3.6.1=h35e630c_1 + - packaging=26.0=pyhcf101f3_0 - partd=1.4.2=pyhd8ed1ab_0 - - pillow=10.3.0=py312h287a98d_1 - - pip=25.3=pyh8b19718_0 - - plotly=6.5.1=pyhd8ed1ab_0 + - pillow=12.1.1=py312h50c33e8_0 + - pip=26.0.1=pyh8b19718_0 + - plotly=6.6.0=pyhd8ed1ab_0 - proxy-tools=0.1.0=pyhd8ed1ab_0 - pthread-stubs=0.4=hb9d3cd8_1002 - pycparser=2.22=pyh29332c3_1 - pydantic=2.12.5=pyhcf101f3_1 - pydantic-core=2.41.5=py312h868fb18_1 - - pyparsing=3.3.1=pyhcf101f3_0 + - pyparsing=3.3.2=pyhcf101f3_0 - pysocks=1.7.1=pyha55dd90_7 - - python=3.12.12=hd63d673_1_cpython + - python=3.12.13=hd63d673_0_cpython - python-dateutil=2.9.0.post0=pyhe01879c_2 - python_abi=3.12=8_cp312 - pythonnet=3.0.5=pyhd8ed1ab_0 - - pywavelets=1.9.0=py312h4f23490_2 - - pyyaml=6.0.3=py312h8a5da7c_0 - - rav1e=0.7.1=h8fae777_3 + - pyyaml=6.0.3=py312h8a5da7c_1 + - qhull=2020.2=h434a139_5 + - rav1e=0.8.1=h1fbca29_0 - readline=8.3=h853b02a_0 - requests=2.32.5=pyhcf101f3_1 - retrying=1.4.2=pyhe01879c_0 - - scikit-image=0.25.2=py312hf79963d_2 - - scipy=1.14.1=py312h62794b6_2 - - setuptools=80.9.0=pyhff2d567_0 + - scikit-image=0.26.0=np2py312h4ae17e4_0 + - scipy=1.17.1=py312h54fa4ab_0 + - setuptools=82.0.1=pyh332efcf_0 - six=1.17.0=pyhe01879c_1 - snappy=1.2.2=h03e3b7b_1 - - svt-av1=3.1.2=hecca717_0 - - tifffile=2025.12.20=pyhd8ed1ab_0 - - tk=8.6.13=noxft_ha0e22de_103 + - svt-av1=4.0.1=hecca717_0 + - tifffile=2026.3.3=pyhd8ed1ab_0 + - tk=8.6.13=noxft_h366c992_103 - toolz=1.1.0=pyhd8ed1ab_1 - - tqdm=4.67.1=pyhd8ed1ab_1 + - tqdm=4.67.3=pyh8f84b5b_0 - typing-extensions=4.15.0=h396c80c_0 - typing-inspection=0.4.2=pyhd8ed1ab_1 - typing_extensions=4.15.0=pyhcf101f3_0 - tzdata=2025c=hc9c84f9_1 - - unicodedata2=17.0.0=py312h4c3975b_1 + - unicodedata2=17.0.1=py312h4c3975b_0 - urllib3=2.6.3=pyhd8ed1ab_0 - waitress=3.0.2=pyhcf101f3_2 - - werkzeug=3.1.5=pyhcf101f3_0 - - wheel=0.45.1=pyhd8ed1ab_1 + - werkzeug=3.1.6=pyhcf101f3_0 + - wheel=0.46.3=pyhd8ed1ab_0 - xorg-libxau=1.0.12=hb03c661_1 - xorg-libxdmcp=1.1.5=hb03c661_1 - yaml=0.2.5=h280c20c_3 - zfp=1.0.1=h909a3a2_5 - zipp=3.23.0=pyhcf101f3_1 - - zlib-ng=2.3.2=hceb46e0_1 + - zlib-ng=2.3.3=hceb46e0_1 - zstd=1.5.7=hb78ec9c_6 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@fb86adf72fb82ea23c8904a39585982ca8793c52 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@771ae87ccae825e2eae4058b5f51fd6d5f4791cf - pywebview == 6.1 variables: diff --git a/environments/py-3.12-win-64-dev-raw.conda.lock.yml b/environments/py-3.12-win-64-dev-raw.conda.lock.yml index bbf21f1..c027f0d 100644 --- a/environments/py-3.12-win-64-dev-raw.conda.lock.yml +++ b/environments/py-3.12-win-64-dev-raw.conda.lock.yml @@ -1,161 +1,159 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: 2d3fd3e13fa9a4d1f0fa8035856f6e4c524142e213cca0addef8247d76a9aa09 +# input_hash: a7814601cb378aedff7765c2b80a595c65b6f4ce34b7651f5ce21b4ac18562a3 channels: - conda-forge - nodefaults dependencies: - - _libavif_api=1.3.0=h57928b3_2 - - _openmp_mutex=4.5=2_gnu + - _libavif_api=1.4.0=h57928b3_0 + - _openmp_mutex=4.5=20_gnu - alabaster=1.0.0=pyhd8ed1ab_1 - annotated-types=0.7.0=pyhd8ed1ab_1 - aom=3.9.1=he0c23c2_0 - - astroid=4.0.3=py312h2e8e312_0 - - babel=2.17.0=pyhd8ed1ab_0 + - astroid=4.0.4=py312h2e8e312_0 + - babel=2.18.0=pyhcf101f3_1 - backports.zstd=1.3.0=py312h06d0912_0 - blinker=1.9.0=pyhff2d567_0 - blosc=1.21.6=hfd34d9b_1 - brotli=1.2.0=h2d644bc_1 - brotli-bin=1.2.0=hfd05255_1 - brotli-python=1.2.0=py312hc6d9e41_1 - - bzip2=1.0.8=h0ad9c76_8 - - c-blosc2=2.22.0=h2af8807_1 - - ca-certificates=2026.1.4=h4c7d964_0 + - bzip2=1.0.8=h0ad9c76_9 + - c-blosc2=2.23.1=h2af8807_0 + - ca-certificates=2026.2.25=h4c7d964_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2026.1.4=pyhd8ed1ab_0 - - charls=2.4.2=h1537add_0 - - charset-normalizer=3.4.4=pyhd8ed1ab_0 + - certifi=2026.2.25=pyhd8ed1ab_0 + - charls=2.4.3=h7cafa3a_0 + - charset-normalizer=3.4.6=pyhd8ed1ab_0 - click=8.3.1=pyha7b4d00_1 - cloudpickle=3.1.2=pyhcf101f3_1 - colorama=0.4.6=pyhd8ed1ab_1 - - contourpy=1.3.3=py312hf90b1b7_3 - - coverage=7.13.1=py312h05f76fc_0 + - contourpy=1.3.3=py312h78d62e6_4 + - coverage=7.13.5=py312h05f76fc_0 - cycler=0.12.1=pyhcf101f3_2 - - dash=3.3.0=pyhd8ed1ab_0 + - dash=3.4.0=pyhd8ed1ab_0 - dash-ag-grid=32.3.4=pyhd8ed1ab_0 - dash-bootstrap-components=2.0.4=pyhcf101f3_0 - dash-core-components=2.0.0=pyhd8ed1ab_1 - dash-daq=0.6.0=pyhd8ed1ab_0 - dash-html-components=2.0.0=pyhd8ed1ab_2 - dash-table=5.0.0=pyhd8ed1ab_1 - - dask-core=2025.3.0=pyhd8ed1ab_0 + - dask-core=2025.3.1=pyhd8ed1ab_0 - dav1d=1.2.1=hcfcfb64_0 - - dill=0.4.0=pyhcf101f3_1 + - dill=0.4.1=pyhcf101f3_0 - docutils=0.21.2=pyhd8ed1ab_1 - exceptiongroup=1.3.1=pyhd8ed1ab_0 - - flask=3.1.2=pyhd8ed1ab_0 - - fonttools=4.61.1=py312h05f76fc_0 - - freetype=2.14.1=h57928b3_0 - - fsspec=2025.12.0=pyhd8ed1ab_0 + - flask=3.1.3=pyhcf101f3_1 + - fonttools=4.62.0=py312h05f76fc_0 + - freetype=2.14.2=h57928b3_0 + - fsspec=2026.2.0=pyhd8ed1ab_0 - giflib=5.2.2=h64bf75a_0 - h2=4.3.0=pyhcf101f3_0 - h5py=3.15.1=nompi_py312h03cd2ba_101 - - hdf5=1.14.6=nompi_h89f0904_104 + - hdf5=1.14.6=nompi_hae35d4c_106 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - - icu=78.2=h637d24d_0 - idna=3.11=pyhd8ed1ab_0 - - imagecodecs=2026.1.1=py312he7cbf3d_0 + - imagecodecs=2026.3.6=py312hb0afafc_1 - imageio=2.37.0=pyhfb79c49_0 - - imagesize=1.4.1=pyhd8ed1ab_0 + - imagesize=2.0.0=pyhd8ed1ab_0 - importlib-metadata=8.7.0=pyhe01879c_1 - iniconfig=2.3.0=pyhd8ed1ab_0 - - isort=7.0.0=pyhd8ed1ab_0 + - isort=8.0.1=pyhd8ed1ab_0 - itsdangerous=2.2.0=pyhd8ed1ab_1 - jinja2=3.1.6=pyhcf101f3_1 - jxrlib=1.1=hcfcfb64_3 - - kiwisolver=1.4.9=py312h78d62e6_2 - - krb5=1.21.3=hdf4eb48_0 - - lazy-loader=0.4=pyhd8ed1ab_2 - - lcms2=2.17=hbcf6048_0 - - lerc=4.0.0=h6470a55_1 - - libaec=1.1.4=h20038f6_0 - - libavif16=1.3.0=he916da2_2 + - kiwisolver=1.5.0=py312h78d62e6_0 + - krb5=1.22.2=h0ea6238_0 + - lazy-loader=0.5=pyhd8ed1ab_0 + - lcms2=2.18=hf2c6c5f_0 + - lerc=4.1.0=hd936e49_0 + - libaec=1.1.5=haf901d7_0 + - libavif16=1.4.0=h41d0b9c_0 - libblas=3.11.0=5_hf2e6a31_mkl - libbrotlicommon=1.2.0=hfd05255_1 - libbrotlidec=1.2.0=hfd05255_1 - libbrotlienc=1.2.0=hfd05255_1 - libcblas=3.11.0=5_h2a3cdd5_mkl - - libcurl=8.18.0=h43ecb02_0 + - libcurl=8.19.0=h8206538_0 - libdeflate=1.25=h51727cc_0 - - libexpat=2.7.3=hac47afa_0 - - libffi=3.5.2=h52bdfb6_0 - - libfreetype=2.14.1=h57928b3_0 - - libfreetype6=2.14.1=hdbac1cb_0 - - libgcc=15.2.0=h8ee18e1_16 - - libgomp=15.2.0=h8ee18e1_16 + - libexpat=2.7.4=hac47afa_0 + - libffi=3.5.2=h3d046cb_0 + - libfreetype=2.14.2=h57928b3_0 + - libfreetype6=2.14.2=hdbac1cb_0 + - libgcc=15.2.0=h8ee18e1_18 + - libgomp=15.2.0=h8ee18e1_18 - libhwloc=2.12.2=default_h4379cf1_1000 - libhwy=1.3.0=ha71e874_1 - libiconv=1.18=hc1393d2_2 - libjpeg-turbo=3.1.2=hfd05255_0 - - libjxl=0.11.1=hac9b6f3_5 + - libjxl=0.11.2=hf3f85d1_0 - liblapack=3.11.0=5_hf9ab0e9_mkl - - liblzma=5.8.1=h2466b09_2 - - libpng=1.6.53=h7351971_0 - - libsqlite=3.51.1=hf5d6505_1 + - liblzma=5.8.2=hfd05255_0 + - libpng=1.6.55=h7351971_0 + - libsqlite=3.52.0=hf5d6505_0 - libssh2=1.11.1=h9aa295b_0 - libtiff=4.7.1=h8f73337_1 - libwebp-base=1.6.0=h4d5522a_0 - libwinpthread=12.0.0.r4.gg4f2fc60ca=h57928b3_10 - libxcb=1.17.0=h0e4246c_0 - - libxml2=2.15.1=h779ef1b_1 - - libxml2-16=2.15.1=h3cfd58e_1 + - libxml2=2.15.2=h5d26750_0 + - libxml2-16=2.15.2=h692994f_0 - libzlib=1.3.1=h2466b09_2 - libzopfli=1.0.3=h0e60522_0 - - llvm-openmp=21.1.8=h4fa8253_0 + - llvm-openmp=22.1.0=h4fa8253_0 - locket=1.0.0=pyhd8ed1ab_0 - lz4-c=1.10.0=h2466b09_1 - - markupsafe=3.0.3=py312h05f76fc_0 - - matplotlib-base=3.8.4=py312hfee7060_2 + - markupsafe=3.0.3=py312h05f76fc_1 + - matplotlib-base=3.10.8=py312h0ebf65c_0 - mccabe=0.7.0=pyhd8ed1ab_1 - mkl=2025.3.0=hac47afa_455 - munkres=1.1.4=pyhd8ed1ab_1 - - narwhals=2.15.0=pyhcf101f3_0 + - narwhals=2.18.0=pyhcf101f3_0 - nest-asyncio=1.6.0=pyhd8ed1ab_1 - networkx=3.6.1=pyhcf101f3_0 - - numpy=1.26.4=py312h8753938_0 - - openjpeg=2.5.4=h24db6dd_0 - - openjph=0.26.0=hf13a347_0 - - openssl=3.6.0=h725018a_0 - - packaging=25.0=pyh29332c3_1 + - numpy=2.4.3=py312ha3f287d_0 + - openjpeg=2.5.4=h0e57b4f_0 + - openjph=0.26.3=hf13a347_0 + - openssl=3.6.1=hf411b9b_1 + - packaging=26.0=pyhcf101f3_0 - partd=1.4.2=pyhd8ed1ab_0 - - pillow=10.3.0=py312h381445a_1 - - pip=25.3=pyh8b19718_0 - - platformdirs=4.5.1=pyhcf101f3_0 - - plotly=6.5.1=pyhd8ed1ab_0 + - pillow=12.1.1=py312h31f0997_0 + - pip=26.0.1=pyh8b19718_0 + - platformdirs=4.9.4=pyhcf101f3_0 + - plotly=6.6.0=pyhd8ed1ab_0 - pluggy=1.6.0=pyhf9edf01_1 - pthread-stubs=0.4=h0e40799_1002 - pydantic=2.12.5=pyhcf101f3_1 - pydantic-core=2.41.5=py312hdabe01f_1 - pygments=2.19.2=pyhd8ed1ab_0 - - pylint=4.0.4=pyhcf101f3_0 - - pyparsing=3.3.1=pyhcf101f3_0 + - pylint=4.0.5=pyhcf101f3_0 + - pyparsing=3.3.2=pyhcf101f3_0 - pysocks=1.7.1=pyh09c184e_7 - pytest=9.0.2=pyhcf101f3_0 - pytest-cov=7.0.0=pyhcf101f3_1 - - python=3.12.12=h0159041_1_cpython + - python=3.12.13=h0159041_0_cpython - python-dateutil=2.9.0.post0=pyhe01879c_2 - python_abi=3.12=8_cp312 - - pytz=2025.2=pyhd8ed1ab_0 - - pywavelets=1.9.0=py312h196c9fc_2 - - pyyaml=6.0.3=py312h05f76fc_0 - - rav1e=0.7.1=ha073cba_3 + - pyyaml=6.0.3=py312h05f76fc_1 + - qhull=2020.2=hc790b64_5 + - rav1e=0.8.1=h007690e_0 - requests=2.32.5=pyhcf101f3_1 - retrying=1.4.2=pyhe01879c_0 - roman-numerals=4.1.0=pyhd8ed1ab_0 - roman-numerals-py=4.1.0=pyhd8ed1ab_0 - - scikit-image=0.25.2=py312hc128f0a_2 - - scipy=1.14.1=py312h337df96_2 - - setuptools=80.9.0=pyhff2d567_0 + - scikit-image=0.26.0=np2py312h9ea65bc_0 + - scipy=1.17.1=py312h9b3c559_0 + - setuptools=82.0.1=pyh332efcf_0 - six=1.17.0=pyhe01879c_1 - snappy=1.2.2=h7fa0ca8_1 - snowballstemmer=3.0.1=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 + - sphinx-rtd-theme=3.1.0=hd8ed1ab_0 + - sphinx_rtd_theme=3.1.0=pyha770c72_0 - sphinxcontrib-applehelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-devhelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-htmlhelp=2.1.0=pyhd8ed1ab_1 @@ -163,39 +161,39 @@ dependencies: - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_1 - sphinxcontrib-qthelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_1 - - svt-av1=3.1.2=hac47afa_0 + - svt-av1=4.0.1=hac47afa_0 - tbb=2022.3.0=h3155e25_2 - - tifffile=2025.12.20=pyhd8ed1ab_0 - - tk=8.6.13=h2c6b04d_3 - - tomli=2.3.0=pyhcf101f3_0 - - tomlkit=0.13.3=pyha770c72_0 + - tifffile=2026.3.3=pyhd8ed1ab_0 + - tk=8.6.13=h6ed50ae_3 + - tomli=2.4.0=pyhcf101f3_0 + - tomlkit=0.14.0=pyha770c72_0 - toolz=1.1.0=pyhd8ed1ab_1 - - tqdm=4.67.1=pyhd8ed1ab_1 + - tqdm=4.67.3=pyha7b4d00_0 - typing-extensions=4.15.0=h396c80c_0 - typing-inspection=0.4.2=pyhd8ed1ab_1 - typing_extensions=4.15.0=pyhcf101f3_0 - tzdata=2025c=hc9c84f9_1 - ucrt=10.0.26100.0=h57928b3_0 - - unicodedata2=17.0.0=py312he06e257_1 + - unicodedata2=17.0.1=py312he06e257_0 - urllib3=2.6.3=pyhd8ed1ab_0 - vc=14.3=h41ae7f8_34 - vc14_runtime=14.44.35208=h818238b_34 - vcomp14=14.44.35208=h818238b_34 - vs2015_runtime=14.44.35208=h38c0c73_34 - waitress=3.0.2=pyhcf101f3_2 - - werkzeug=3.1.5=pyhcf101f3_0 - - wheel=0.45.1=pyhd8ed1ab_1 + - werkzeug=3.1.6=pyhcf101f3_0 + - wheel=0.46.3=pyhd8ed1ab_0 - win_inet_pton=1.1.0=pyh7428d3b_8 - xorg-libxau=1.0.12=hba3369d_1 - xorg-libxdmcp=1.1.5=hba3369d_1 - yaml=0.2.5=h6a83c73_3 - zfp=1.0.1=h2f0f97f_5 - zipp=3.23.0=pyhcf101f3_1 - - zlib-ng=2.3.2=h0261ad2_1 + - zlib-ng=2.3.3=h0261ad2_1 - zstd=1.5.7=h534d264_6 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@fb86adf72fb82ea23c8904a39585982ca8793c52 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@771ae87ccae825e2eae4058b5f51fd6d5f4791cf 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 21a67a2..aa09f84 100644 --- a/environments/py-3.12-win-64-dev.conda.lock.yml +++ b/environments/py-3.12-win-64-dev.conda.lock.yml @@ -1,18 +1,18 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: 2d3fd3e13fa9a4d1f0fa8035856f6e4c524142e213cca0addef8247d76a9aa09 +# input_hash: a7814601cb378aedff7765c2b80a595c65b6f4ce34b7651f5ce21b4ac18562a3 channels: - conda-forge - nodefaults dependencies: - - _libavif_api=1.3.0=h57928b3_2 - - _openmp_mutex=4.5=2_gnu + - _libavif_api=1.4.0=h57928b3_0 + - _openmp_mutex=4.5=20_gnu - alabaster=1.0.0=pyhd8ed1ab_1 - annotated-types=0.7.0=pyhd8ed1ab_1 - aom=3.9.1=he0c23c2_0 - - astroid=4.0.3=py312h2e8e312_0 - - babel=2.17.0=pyhd8ed1ab_0 + - astroid=4.0.4=py312h2e8e312_0 + - babel=2.18.0=pyhcf101f3_1 - backports.zstd=1.3.0=py312h06d0912_0 - blinker=1.9.0=pyhff2d567_0 - blosc=1.21.6=hfd34d9b_1 @@ -20,114 +20,113 @@ dependencies: - brotli=1.2.0=h2d644bc_1 - brotli-bin=1.2.0=hfd05255_1 - brotli-python=1.2.0=py312hc6d9e41_1 - - bzip2=1.0.8=h0ad9c76_8 - - c-blosc2=2.22.0=h2af8807_1 - - ca-certificates=2026.1.4=h4c7d964_0 + - bzip2=1.0.8=h0ad9c76_9 + - c-blosc2=2.23.1=h2af8807_0 + - ca-certificates=2026.2.25=h4c7d964_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2026.1.4=pyhd8ed1ab_0 + - certifi=2026.2.25=pyhd8ed1ab_0 - cffi=2.0.0=py312he06e257_1 - - charls=2.4.2=h1537add_0 - - charset-normalizer=3.4.4=pyhd8ed1ab_0 + - charls=2.4.3=h7cafa3a_0 + - charset-normalizer=3.4.6=pyhd8ed1ab_0 - click=8.3.1=pyha7b4d00_1 - cloudpickle=3.1.2=pyhcf101f3_1 - clr_loader=0.2.10=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - - contourpy=1.3.3=py312hf90b1b7_3 - - coverage=7.13.1=py312h05f76fc_0 + - contourpy=1.3.3=py312h78d62e6_4 + - coverage=7.13.5=py312h05f76fc_0 - cycler=0.12.1=pyhcf101f3_2 - - dash=3.3.0=pyhd8ed1ab_0 + - dash=3.4.0=pyhd8ed1ab_0 - dash-ag-grid=32.3.4=pyhd8ed1ab_0 - dash-bootstrap-components=2.0.4=pyhcf101f3_0 - dash-core-components=2.0.0=pyhd8ed1ab_1 - dash-daq=0.6.0=pyhd8ed1ab_0 - dash-html-components=2.0.0=pyhd8ed1ab_2 - dash-table=5.0.0=pyhd8ed1ab_1 - - dask-core=2025.3.0=pyhd8ed1ab_0 + - dask-core=2025.3.1=pyhd8ed1ab_0 - dav1d=1.2.1=hcfcfb64_0 - - dill=0.4.0=pyhcf101f3_1 + - dill=0.4.1=pyhcf101f3_0 - docutils=0.21.2=pyhd8ed1ab_1 - exceptiongroup=1.3.1=pyhd8ed1ab_0 - - flask=3.1.2=pyhd8ed1ab_0 - - fonttools=4.61.1=py312h05f76fc_0 - - freetype=2.14.1=h57928b3_0 - - fsspec=2025.12.0=pyhd8ed1ab_0 + - flask=3.1.3=pyhcf101f3_1 + - fonttools=4.62.0=py312h05f76fc_0 + - freetype=2.14.2=h57928b3_0 + - fsspec=2026.2.0=pyhd8ed1ab_0 - giflib=5.2.2=h64bf75a_0 - h2=4.3.0=pyhcf101f3_0 - h5py=3.15.1=nompi_py312h03cd2ba_101 - - hdf5=1.14.6=nompi_h89f0904_104 + - hdf5=1.14.6=nompi_hae35d4c_106 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - - icu=78.2=h637d24d_0 - idna=3.11=pyhd8ed1ab_0 - - imagecodecs=2026.1.1=py312he7cbf3d_0 + - imagecodecs=2026.3.6=py312hb0afafc_1 - imageio=2.37.0=pyhfb79c49_0 - - imagesize=1.4.1=pyhd8ed1ab_0 + - imagesize=2.0.0=pyhd8ed1ab_0 - importlib-metadata=8.7.0=pyhe01879c_1 - iniconfig=2.3.0=pyhd8ed1ab_0 - - isort=7.0.0=pyhd8ed1ab_0 + - isort=8.0.1=pyhd8ed1ab_0 - itsdangerous=2.2.0=pyhd8ed1ab_1 - jinja2=3.1.6=pyhcf101f3_1 - jxrlib=1.1=hcfcfb64_3 - - kiwisolver=1.4.9=py312h78d62e6_2 - - krb5=1.21.3=hdf4eb48_0 - - lazy-loader=0.4=pyhd8ed1ab_2 - - lcms2=2.17=hbcf6048_0 - - lerc=4.0.0=h6470a55_1 - - libaec=1.1.4=h20038f6_0 - - libavif16=1.3.0=he916da2_2 + - kiwisolver=1.5.0=py312h78d62e6_0 + - krb5=1.22.2=h0ea6238_0 + - lazy-loader=0.5=pyhd8ed1ab_0 + - lcms2=2.18=hf2c6c5f_0 + - lerc=4.1.0=hd936e49_0 + - libaec=1.1.5=haf901d7_0 + - libavif16=1.4.0=h41d0b9c_0 - libblas=3.11.0=5_hf2e6a31_mkl - libbrotlicommon=1.2.0=hfd05255_1 - libbrotlidec=1.2.0=hfd05255_1 - libbrotlienc=1.2.0=hfd05255_1 - libcblas=3.11.0=5_h2a3cdd5_mkl - - libcurl=8.18.0=h43ecb02_0 + - libcurl=8.19.0=h8206538_0 - libdeflate=1.25=h51727cc_0 - - libexpat=2.7.3=hac47afa_0 - - libffi=3.5.2=h52bdfb6_0 - - libfreetype=2.14.1=h57928b3_0 - - libfreetype6=2.14.1=hdbac1cb_0 - - libgcc=15.2.0=h8ee18e1_16 - - libgomp=15.2.0=h8ee18e1_16 + - libexpat=2.7.4=hac47afa_0 + - libffi=3.5.2=h3d046cb_0 + - libfreetype=2.14.2=h57928b3_0 + - libfreetype6=2.14.2=hdbac1cb_0 + - libgcc=15.2.0=h8ee18e1_18 + - libgomp=15.2.0=h8ee18e1_18 - libhwloc=2.12.2=default_h4379cf1_1000 - libhwy=1.3.0=ha71e874_1 - libiconv=1.18=hc1393d2_2 - libjpeg-turbo=3.1.2=hfd05255_0 - - libjxl=0.11.1=hac9b6f3_5 + - libjxl=0.11.2=hf3f85d1_0 - liblapack=3.11.0=5_hf9ab0e9_mkl - - liblzma=5.8.1=h2466b09_2 - - libpng=1.6.53=h7351971_0 - - libsqlite=3.51.1=hf5d6505_1 + - liblzma=5.8.2=hfd05255_0 + - libpng=1.6.55=h7351971_0 + - libsqlite=3.52.0=hf5d6505_0 - libssh2=1.11.1=h9aa295b_0 - libtiff=4.7.1=h8f73337_1 - libwebp-base=1.6.0=h4d5522a_0 - libwinpthread=12.0.0.r4.gg4f2fc60ca=h57928b3_10 - libxcb=1.17.0=h0e4246c_0 - - libxml2=2.15.1=h779ef1b_1 - - libxml2-16=2.15.1=h3cfd58e_1 + - libxml2=2.15.2=h5d26750_0 + - libxml2-16=2.15.2=h692994f_0 - libzlib=1.3.1=h2466b09_2 - libzopfli=1.0.3=h0e60522_0 - - llvm-openmp=21.1.8=h4fa8253_0 + - llvm-openmp=22.1.0=h4fa8253_0 - locket=1.0.0=pyhd8ed1ab_0 - lz4-c=1.10.0=h2466b09_1 - - markupsafe=3.0.3=py312h05f76fc_0 - - matplotlib-base=3.8.4=py312hfee7060_2 + - markupsafe=3.0.3=py312h05f76fc_1 + - matplotlib-base=3.10.8=py312h0ebf65c_0 - mccabe=0.7.0=pyhd8ed1ab_1 - mkl=2025.3.0=hac47afa_455 - munkres=1.1.4=pyhd8ed1ab_1 - - narwhals=2.15.0=pyhcf101f3_0 + - narwhals=2.18.0=pyhcf101f3_0 - nest-asyncio=1.6.0=pyhd8ed1ab_1 - networkx=3.6.1=pyhcf101f3_0 - - numpy=1.26.4=py312h8753938_0 - - openjpeg=2.5.4=h24db6dd_0 - - openjph=0.26.0=hf13a347_0 - - openssl=3.6.0=h725018a_0 - - packaging=25.0=pyh29332c3_1 + - numpy=2.4.3=py312ha3f287d_0 + - openjpeg=2.5.4=h0e57b4f_0 + - openjph=0.26.3=hf13a347_0 + - openssl=3.6.1=hf411b9b_1 + - packaging=26.0=pyhcf101f3_0 - partd=1.4.2=pyhd8ed1ab_0 - - pillow=10.3.0=py312h381445a_1 - - pip=25.3=pyh8b19718_0 - - platformdirs=4.5.1=pyhcf101f3_0 - - plotly=6.5.1=pyhd8ed1ab_0 + - pillow=12.1.1=py312h31f0997_0 + - pip=26.0.1=pyh8b19718_0 + - platformdirs=4.9.4=pyhcf101f3_0 + - plotly=6.6.0=pyhd8ed1ab_0 - pluggy=1.6.0=pyhf9edf01_1 - proxy-tools=0.1.0=pyhd8ed1ab_0 - pthread-stubs=0.4=h0e40799_1002 @@ -135,33 +134,32 @@ dependencies: - pydantic=2.12.5=pyhcf101f3_1 - pydantic-core=2.41.5=py312hdabe01f_1 - pygments=2.19.2=pyhd8ed1ab_0 - - pylint=4.0.4=pyhcf101f3_0 - - pyparsing=3.3.1=pyhcf101f3_0 + - pylint=4.0.5=pyhcf101f3_0 + - pyparsing=3.3.2=pyhcf101f3_0 - pysocks=1.7.1=pyh09c184e_7 - pytest=9.0.2=pyhcf101f3_0 - pytest-cov=7.0.0=pyhcf101f3_1 - - python=3.12.12=h0159041_1_cpython + - python=3.12.13=h0159041_0_cpython - python-dateutil=2.9.0.post0=pyhe01879c_2 - python_abi=3.12=8_cp312 - pythonnet=3.0.5=pyhd8ed1ab_0 - - pytz=2025.2=pyhd8ed1ab_0 - - pywavelets=1.9.0=py312h196c9fc_2 - - pyyaml=6.0.3=py312h05f76fc_0 - - rav1e=0.7.1=ha073cba_3 + - pyyaml=6.0.3=py312h05f76fc_1 + - qhull=2020.2=hc790b64_5 + - rav1e=0.8.1=h007690e_0 - requests=2.32.5=pyhcf101f3_1 - retrying=1.4.2=pyhe01879c_0 - roman-numerals=4.1.0=pyhd8ed1ab_0 - roman-numerals-py=4.1.0=pyhd8ed1ab_0 - - scikit-image=0.25.2=py312hc128f0a_2 - - scipy=1.14.1=py312h337df96_2 - - setuptools=80.9.0=pyhff2d567_0 + - scikit-image=0.26.0=np2py312h9ea65bc_0 + - scipy=1.17.1=py312h9b3c559_0 + - setuptools=82.0.1=pyh332efcf_0 - six=1.17.0=pyhe01879c_1 - snappy=1.2.2=h7fa0ca8_1 - snowballstemmer=3.0.1=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 + - sphinx-rtd-theme=3.1.0=hd8ed1ab_0 + - sphinx_rtd_theme=3.1.0=pyha770c72_0 - sphinxcontrib-applehelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-devhelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-htmlhelp=2.1.0=pyhd8ed1ab_1 @@ -169,39 +167,39 @@ dependencies: - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_1 - sphinxcontrib-qthelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_1 - - svt-av1=3.1.2=hac47afa_0 + - svt-av1=4.0.1=hac47afa_0 - tbb=2022.3.0=h3155e25_2 - - tifffile=2025.12.20=pyhd8ed1ab_0 - - tk=8.6.13=h2c6b04d_3 - - tomli=2.3.0=pyhcf101f3_0 - - tomlkit=0.13.3=pyha770c72_0 + - tifffile=2026.3.3=pyhd8ed1ab_0 + - tk=8.6.13=h6ed50ae_3 + - tomli=2.4.0=pyhcf101f3_0 + - tomlkit=0.14.0=pyha770c72_0 - toolz=1.1.0=pyhd8ed1ab_1 - - tqdm=4.67.1=pyhd8ed1ab_1 + - tqdm=4.67.3=pyha7b4d00_0 - typing-extensions=4.15.0=h396c80c_0 - typing-inspection=0.4.2=pyhd8ed1ab_1 - typing_extensions=4.15.0=pyhcf101f3_0 - tzdata=2025c=hc9c84f9_1 - ucrt=10.0.26100.0=h57928b3_0 - - unicodedata2=17.0.0=py312he06e257_1 + - unicodedata2=17.0.1=py312he06e257_0 - urllib3=2.6.3=pyhd8ed1ab_0 - vc=14.3=h41ae7f8_34 - vc14_runtime=14.44.35208=h818238b_34 - vcomp14=14.44.35208=h818238b_34 - vs2015_runtime=14.44.35208=h38c0c73_34 - waitress=3.0.2=pyhcf101f3_2 - - werkzeug=3.1.5=pyhcf101f3_0 - - wheel=0.45.1=pyhd8ed1ab_1 + - werkzeug=3.1.6=pyhcf101f3_0 + - wheel=0.46.3=pyhd8ed1ab_0 - win_inet_pton=1.1.0=pyh7428d3b_8 - xorg-libxau=1.0.12=hba3369d_1 - xorg-libxdmcp=1.1.5=hba3369d_1 - yaml=0.2.5=h6a83c73_3 - zfp=1.0.1=h2f0f97f_5 - zipp=3.23.0=pyhcf101f3_1 - - zlib-ng=2.3.2=h0261ad2_1 + - zlib-ng=2.3.3=h0261ad2_1 - zstd=1.5.7=h534d264_6 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@fb86adf72fb82ea23c8904a39585982ca8793c52 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@771ae87ccae825e2eae4058b5f51fd6d5f4791cf - pywebview == 6.1 variables: diff --git a/environments/py-3.12-win-64-raw.conda.lock.yml b/environments/py-3.12-win-64-raw.conda.lock.yml index 7aaef94..a524f6a 100644 --- a/environments/py-3.12-win-64-raw.conda.lock.yml +++ b/environments/py-3.12-win-64-raw.conda.lock.yml @@ -1,13 +1,13 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: 2d3fd3e13fa9a4d1f0fa8035856f6e4c524142e213cca0addef8247d76a9aa09 +# input_hash: a7814601cb378aedff7765c2b80a595c65b6f4ce34b7651f5ce21b4ac18562a3 channels: - conda-forge - nodefaults dependencies: - - _libavif_api=1.3.0=h57928b3_2 - - _openmp_mutex=4.5=2_gnu + - _libavif_api=1.4.0=h57928b3_0 + - _openmp_mutex=4.5=20_gnu - annotated-types=0.7.0=pyhd8ed1ab_1 - aom=3.9.1=he0c23c2_0 - backports.zstd=1.3.0=py312h06d0912_0 @@ -16,152 +16,151 @@ dependencies: - brotli=1.2.0=h2d644bc_1 - brotli-bin=1.2.0=hfd05255_1 - brotli-python=1.2.0=py312hc6d9e41_1 - - bzip2=1.0.8=h0ad9c76_8 - - c-blosc2=2.22.0=h2af8807_1 - - ca-certificates=2026.1.4=h4c7d964_0 + - bzip2=1.0.8=h0ad9c76_9 + - c-blosc2=2.23.1=h2af8807_0 + - ca-certificates=2026.2.25=h4c7d964_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2026.1.4=pyhd8ed1ab_0 - - charls=2.4.2=h1537add_0 - - charset-normalizer=3.4.4=pyhd8ed1ab_0 + - certifi=2026.2.25=pyhd8ed1ab_0 + - charls=2.4.3=h7cafa3a_0 + - charset-normalizer=3.4.6=pyhd8ed1ab_0 - click=8.3.1=pyha7b4d00_1 - cloudpickle=3.1.2=pyhcf101f3_1 - colorama=0.4.6=pyhd8ed1ab_1 - - contourpy=1.3.3=py312hf90b1b7_3 + - contourpy=1.3.3=py312h78d62e6_4 - cycler=0.12.1=pyhcf101f3_2 - - dash=3.3.0=pyhd8ed1ab_0 + - dash=3.4.0=pyhd8ed1ab_0 - dash-ag-grid=32.3.4=pyhd8ed1ab_0 - dash-bootstrap-components=2.0.4=pyhcf101f3_0 - dash-core-components=2.0.0=pyhd8ed1ab_1 - dash-daq=0.6.0=pyhd8ed1ab_0 - dash-html-components=2.0.0=pyhd8ed1ab_2 - dash-table=5.0.0=pyhd8ed1ab_1 - - dask-core=2025.3.0=pyhd8ed1ab_0 + - dask-core=2025.3.1=pyhd8ed1ab_0 - dav1d=1.2.1=hcfcfb64_0 - - flask=3.1.2=pyhd8ed1ab_0 - - fonttools=4.61.1=py312h05f76fc_0 - - freetype=2.14.1=h57928b3_0 - - fsspec=2025.12.0=pyhd8ed1ab_0 + - flask=3.1.3=pyhcf101f3_1 + - fonttools=4.62.0=py312h05f76fc_0 + - freetype=2.14.2=h57928b3_0 + - fsspec=2026.2.0=pyhd8ed1ab_0 - giflib=5.2.2=h64bf75a_0 - h2=4.3.0=pyhcf101f3_0 - h5py=3.15.1=nompi_py312h03cd2ba_101 - - hdf5=1.14.6=nompi_h89f0904_104 + - hdf5=1.14.6=nompi_hae35d4c_106 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - - icu=78.2=h637d24d_0 - idna=3.11=pyhd8ed1ab_0 - - imagecodecs=2026.1.1=py312he7cbf3d_0 + - imagecodecs=2026.3.6=py312hb0afafc_1 - imageio=2.37.0=pyhfb79c49_0 - importlib-metadata=8.7.0=pyhe01879c_1 - itsdangerous=2.2.0=pyhd8ed1ab_1 - jinja2=3.1.6=pyhcf101f3_1 - jxrlib=1.1=hcfcfb64_3 - - kiwisolver=1.4.9=py312h78d62e6_2 - - krb5=1.21.3=hdf4eb48_0 - - lazy-loader=0.4=pyhd8ed1ab_2 - - lcms2=2.17=hbcf6048_0 - - lerc=4.0.0=h6470a55_1 - - libaec=1.1.4=h20038f6_0 - - libavif16=1.3.0=he916da2_2 + - kiwisolver=1.5.0=py312h78d62e6_0 + - krb5=1.22.2=h0ea6238_0 + - lazy-loader=0.5=pyhd8ed1ab_0 + - lcms2=2.18=hf2c6c5f_0 + - lerc=4.1.0=hd936e49_0 + - libaec=1.1.5=haf901d7_0 + - libavif16=1.4.0=h41d0b9c_0 - libblas=3.11.0=5_hf2e6a31_mkl - libbrotlicommon=1.2.0=hfd05255_1 - libbrotlidec=1.2.0=hfd05255_1 - libbrotlienc=1.2.0=hfd05255_1 - libcblas=3.11.0=5_h2a3cdd5_mkl - - libcurl=8.18.0=h43ecb02_0 + - libcurl=8.19.0=h8206538_0 - libdeflate=1.25=h51727cc_0 - - libexpat=2.7.3=hac47afa_0 - - libffi=3.5.2=h52bdfb6_0 - - libfreetype=2.14.1=h57928b3_0 - - libfreetype6=2.14.1=hdbac1cb_0 - - libgcc=15.2.0=h8ee18e1_16 - - libgomp=15.2.0=h8ee18e1_16 + - libexpat=2.7.4=hac47afa_0 + - libffi=3.5.2=h3d046cb_0 + - libfreetype=2.14.2=h57928b3_0 + - libfreetype6=2.14.2=hdbac1cb_0 + - libgcc=15.2.0=h8ee18e1_18 + - libgomp=15.2.0=h8ee18e1_18 - libhwloc=2.12.2=default_h4379cf1_1000 - libhwy=1.3.0=ha71e874_1 - libiconv=1.18=hc1393d2_2 - libjpeg-turbo=3.1.2=hfd05255_0 - - libjxl=0.11.1=hac9b6f3_5 + - libjxl=0.11.2=hf3f85d1_0 - liblapack=3.11.0=5_hf9ab0e9_mkl - - liblzma=5.8.1=h2466b09_2 - - libpng=1.6.53=h7351971_0 - - libsqlite=3.51.1=hf5d6505_1 + - liblzma=5.8.2=hfd05255_0 + - libpng=1.6.55=h7351971_0 + - libsqlite=3.52.0=hf5d6505_0 - libssh2=1.11.1=h9aa295b_0 - libtiff=4.7.1=h8f73337_1 - libwebp-base=1.6.0=h4d5522a_0 - libwinpthread=12.0.0.r4.gg4f2fc60ca=h57928b3_10 - libxcb=1.17.0=h0e4246c_0 - - libxml2=2.15.1=h779ef1b_1 - - libxml2-16=2.15.1=h3cfd58e_1 + - libxml2=2.15.2=h5d26750_0 + - libxml2-16=2.15.2=h692994f_0 - libzlib=1.3.1=h2466b09_2 - libzopfli=1.0.3=h0e60522_0 - - llvm-openmp=21.1.8=h4fa8253_0 + - llvm-openmp=22.1.0=h4fa8253_0 - locket=1.0.0=pyhd8ed1ab_0 - lz4-c=1.10.0=h2466b09_1 - - markupsafe=3.0.3=py312h05f76fc_0 - - matplotlib-base=3.8.4=py312hfee7060_2 + - markupsafe=3.0.3=py312h05f76fc_1 + - matplotlib-base=3.10.8=py312h0ebf65c_0 - mkl=2025.3.0=hac47afa_455 - munkres=1.1.4=pyhd8ed1ab_1 - - narwhals=2.15.0=pyhcf101f3_0 + - narwhals=2.18.0=pyhcf101f3_0 - nest-asyncio=1.6.0=pyhd8ed1ab_1 - networkx=3.6.1=pyhcf101f3_0 - - numpy=1.26.4=py312h8753938_0 - - openjpeg=2.5.4=h24db6dd_0 - - openjph=0.26.0=hf13a347_0 - - openssl=3.6.0=h725018a_0 - - packaging=25.0=pyh29332c3_1 + - numpy=2.4.3=py312ha3f287d_0 + - openjpeg=2.5.4=h0e57b4f_0 + - openjph=0.26.3=hf13a347_0 + - openssl=3.6.1=hf411b9b_1 + - packaging=26.0=pyhcf101f3_0 - partd=1.4.2=pyhd8ed1ab_0 - - pillow=10.3.0=py312h381445a_1 - - pip=25.3=pyh8b19718_0 - - plotly=6.5.1=pyhd8ed1ab_0 + - pillow=12.1.1=py312h31f0997_0 + - pip=26.0.1=pyh8b19718_0 + - plotly=6.6.0=pyhd8ed1ab_0 - pthread-stubs=0.4=h0e40799_1002 - pydantic=2.12.5=pyhcf101f3_1 - pydantic-core=2.41.5=py312hdabe01f_1 - - pyparsing=3.3.1=pyhcf101f3_0 + - pyparsing=3.3.2=pyhcf101f3_0 - pysocks=1.7.1=pyh09c184e_7 - - python=3.12.12=h0159041_1_cpython + - python=3.12.13=h0159041_0_cpython - python-dateutil=2.9.0.post0=pyhe01879c_2 - python_abi=3.12=8_cp312 - - pywavelets=1.9.0=py312h196c9fc_2 - - pyyaml=6.0.3=py312h05f76fc_0 - - rav1e=0.7.1=ha073cba_3 + - pyyaml=6.0.3=py312h05f76fc_1 + - qhull=2020.2=hc790b64_5 + - rav1e=0.8.1=h007690e_0 - requests=2.32.5=pyhcf101f3_1 - retrying=1.4.2=pyhe01879c_0 - - scikit-image=0.25.2=py312hc128f0a_2 - - scipy=1.14.1=py312h337df96_2 - - setuptools=80.9.0=pyhff2d567_0 + - scikit-image=0.26.0=np2py312h9ea65bc_0 + - scipy=1.17.1=py312h9b3c559_0 + - setuptools=82.0.1=pyh332efcf_0 - six=1.17.0=pyhe01879c_1 - snappy=1.2.2=h7fa0ca8_1 - - svt-av1=3.1.2=hac47afa_0 + - svt-av1=4.0.1=hac47afa_0 - tbb=2022.3.0=h3155e25_2 - - tifffile=2025.12.20=pyhd8ed1ab_0 - - tk=8.6.13=h2c6b04d_3 + - tifffile=2026.3.3=pyhd8ed1ab_0 + - tk=8.6.13=h6ed50ae_3 - toolz=1.1.0=pyhd8ed1ab_1 - - tqdm=4.67.1=pyhd8ed1ab_1 + - tqdm=4.67.3=pyha7b4d00_0 - typing-extensions=4.15.0=h396c80c_0 - typing-inspection=0.4.2=pyhd8ed1ab_1 - typing_extensions=4.15.0=pyhcf101f3_0 - tzdata=2025c=hc9c84f9_1 - ucrt=10.0.26100.0=h57928b3_0 - - unicodedata2=17.0.0=py312he06e257_1 + - unicodedata2=17.0.1=py312he06e257_0 - urllib3=2.6.3=pyhd8ed1ab_0 - vc=14.3=h41ae7f8_34 - vc14_runtime=14.44.35208=h818238b_34 - vcomp14=14.44.35208=h818238b_34 - vs2015_runtime=14.44.35208=h38c0c73_34 - waitress=3.0.2=pyhcf101f3_2 - - werkzeug=3.1.5=pyhcf101f3_0 - - wheel=0.45.1=pyhd8ed1ab_1 + - werkzeug=3.1.6=pyhcf101f3_0 + - wheel=0.46.3=pyhd8ed1ab_0 - win_inet_pton=1.1.0=pyh7428d3b_8 - xorg-libxau=1.0.12=hba3369d_1 - xorg-libxdmcp=1.1.5=hba3369d_1 - yaml=0.2.5=h6a83c73_3 - zfp=1.0.1=h2f0f97f_5 - zipp=3.23.0=pyhcf101f3_1 - - zlib-ng=2.3.2=h0261ad2_1 + - zlib-ng=2.3.3=h0261ad2_1 - zstd=1.5.7=h534d264_6 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@fb86adf72fb82ea23c8904a39585982ca8793c52 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@771ae87ccae825e2eae4058b5f51fd6d5f4791cf 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 1db8e8c..9765c8f 100644 --- a/environments/py-3.12-win-64.conda.lock.yml +++ b/environments/py-3.12-win-64.conda.lock.yml @@ -1,13 +1,13 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: 2d3fd3e13fa9a4d1f0fa8035856f6e4c524142e213cca0addef8247d76a9aa09 +# input_hash: a7814601cb378aedff7765c2b80a595c65b6f4ce34b7651f5ce21b4ac18562a3 channels: - conda-forge - nodefaults dependencies: - - _libavif_api=1.3.0=h57928b3_2 - - _openmp_mutex=4.5=2_gnu + - _libavif_api=1.4.0=h57928b3_0 + - _openmp_mutex=4.5=20_gnu - annotated-types=0.7.0=pyhd8ed1ab_1 - aom=3.9.1=he0c23c2_0 - backports.zstd=1.3.0=py312h06d0912_0 @@ -17,157 +17,156 @@ dependencies: - brotli=1.2.0=h2d644bc_1 - brotli-bin=1.2.0=hfd05255_1 - brotli-python=1.2.0=py312hc6d9e41_1 - - bzip2=1.0.8=h0ad9c76_8 - - c-blosc2=2.22.0=h2af8807_1 - - ca-certificates=2026.1.4=h4c7d964_0 + - bzip2=1.0.8=h0ad9c76_9 + - c-blosc2=2.23.1=h2af8807_0 + - ca-certificates=2026.2.25=h4c7d964_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2026.1.4=pyhd8ed1ab_0 + - certifi=2026.2.25=pyhd8ed1ab_0 - cffi=2.0.0=py312he06e257_1 - - charls=2.4.2=h1537add_0 - - charset-normalizer=3.4.4=pyhd8ed1ab_0 + - charls=2.4.3=h7cafa3a_0 + - charset-normalizer=3.4.6=pyhd8ed1ab_0 - click=8.3.1=pyha7b4d00_1 - cloudpickle=3.1.2=pyhcf101f3_1 - clr_loader=0.2.10=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - - contourpy=1.3.3=py312hf90b1b7_3 + - contourpy=1.3.3=py312h78d62e6_4 - cycler=0.12.1=pyhcf101f3_2 - - dash=3.3.0=pyhd8ed1ab_0 + - dash=3.4.0=pyhd8ed1ab_0 - dash-ag-grid=32.3.4=pyhd8ed1ab_0 - dash-bootstrap-components=2.0.4=pyhcf101f3_0 - dash-core-components=2.0.0=pyhd8ed1ab_1 - dash-daq=0.6.0=pyhd8ed1ab_0 - dash-html-components=2.0.0=pyhd8ed1ab_2 - dash-table=5.0.0=pyhd8ed1ab_1 - - dask-core=2025.3.0=pyhd8ed1ab_0 + - dask-core=2025.3.1=pyhd8ed1ab_0 - dav1d=1.2.1=hcfcfb64_0 - - flask=3.1.2=pyhd8ed1ab_0 - - fonttools=4.61.1=py312h05f76fc_0 - - freetype=2.14.1=h57928b3_0 - - fsspec=2025.12.0=pyhd8ed1ab_0 + - flask=3.1.3=pyhcf101f3_1 + - fonttools=4.62.0=py312h05f76fc_0 + - freetype=2.14.2=h57928b3_0 + - fsspec=2026.2.0=pyhd8ed1ab_0 - giflib=5.2.2=h64bf75a_0 - h2=4.3.0=pyhcf101f3_0 - h5py=3.15.1=nompi_py312h03cd2ba_101 - - hdf5=1.14.6=nompi_h89f0904_104 + - hdf5=1.14.6=nompi_hae35d4c_106 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - - icu=78.2=h637d24d_0 - idna=3.11=pyhd8ed1ab_0 - - imagecodecs=2026.1.1=py312he7cbf3d_0 + - imagecodecs=2026.3.6=py312hb0afafc_1 - imageio=2.37.0=pyhfb79c49_0 - importlib-metadata=8.7.0=pyhe01879c_1 - itsdangerous=2.2.0=pyhd8ed1ab_1 - jinja2=3.1.6=pyhcf101f3_1 - jxrlib=1.1=hcfcfb64_3 - - kiwisolver=1.4.9=py312h78d62e6_2 - - krb5=1.21.3=hdf4eb48_0 - - lazy-loader=0.4=pyhd8ed1ab_2 - - lcms2=2.17=hbcf6048_0 - - lerc=4.0.0=h6470a55_1 - - libaec=1.1.4=h20038f6_0 - - libavif16=1.3.0=he916da2_2 + - kiwisolver=1.5.0=py312h78d62e6_0 + - krb5=1.22.2=h0ea6238_0 + - lazy-loader=0.5=pyhd8ed1ab_0 + - lcms2=2.18=hf2c6c5f_0 + - lerc=4.1.0=hd936e49_0 + - libaec=1.1.5=haf901d7_0 + - libavif16=1.4.0=h41d0b9c_0 - libblas=3.11.0=5_hf2e6a31_mkl - libbrotlicommon=1.2.0=hfd05255_1 - libbrotlidec=1.2.0=hfd05255_1 - libbrotlienc=1.2.0=hfd05255_1 - libcblas=3.11.0=5_h2a3cdd5_mkl - - libcurl=8.18.0=h43ecb02_0 + - libcurl=8.19.0=h8206538_0 - libdeflate=1.25=h51727cc_0 - - libexpat=2.7.3=hac47afa_0 - - libffi=3.5.2=h52bdfb6_0 - - libfreetype=2.14.1=h57928b3_0 - - libfreetype6=2.14.1=hdbac1cb_0 - - libgcc=15.2.0=h8ee18e1_16 - - libgomp=15.2.0=h8ee18e1_16 + - libexpat=2.7.4=hac47afa_0 + - libffi=3.5.2=h3d046cb_0 + - libfreetype=2.14.2=h57928b3_0 + - libfreetype6=2.14.2=hdbac1cb_0 + - libgcc=15.2.0=h8ee18e1_18 + - libgomp=15.2.0=h8ee18e1_18 - libhwloc=2.12.2=default_h4379cf1_1000 - libhwy=1.3.0=ha71e874_1 - libiconv=1.18=hc1393d2_2 - libjpeg-turbo=3.1.2=hfd05255_0 - - libjxl=0.11.1=hac9b6f3_5 + - libjxl=0.11.2=hf3f85d1_0 - liblapack=3.11.0=5_hf9ab0e9_mkl - - liblzma=5.8.1=h2466b09_2 - - libpng=1.6.53=h7351971_0 - - libsqlite=3.51.1=hf5d6505_1 + - liblzma=5.8.2=hfd05255_0 + - libpng=1.6.55=h7351971_0 + - libsqlite=3.52.0=hf5d6505_0 - libssh2=1.11.1=h9aa295b_0 - libtiff=4.7.1=h8f73337_1 - libwebp-base=1.6.0=h4d5522a_0 - libwinpthread=12.0.0.r4.gg4f2fc60ca=h57928b3_10 - libxcb=1.17.0=h0e4246c_0 - - libxml2=2.15.1=h779ef1b_1 - - libxml2-16=2.15.1=h3cfd58e_1 + - libxml2=2.15.2=h5d26750_0 + - libxml2-16=2.15.2=h692994f_0 - libzlib=1.3.1=h2466b09_2 - libzopfli=1.0.3=h0e60522_0 - - llvm-openmp=21.1.8=h4fa8253_0 + - llvm-openmp=22.1.0=h4fa8253_0 - locket=1.0.0=pyhd8ed1ab_0 - lz4-c=1.10.0=h2466b09_1 - - markupsafe=3.0.3=py312h05f76fc_0 - - matplotlib-base=3.8.4=py312hfee7060_2 + - markupsafe=3.0.3=py312h05f76fc_1 + - matplotlib-base=3.10.8=py312h0ebf65c_0 - mkl=2025.3.0=hac47afa_455 - munkres=1.1.4=pyhd8ed1ab_1 - - narwhals=2.15.0=pyhcf101f3_0 + - narwhals=2.18.0=pyhcf101f3_0 - nest-asyncio=1.6.0=pyhd8ed1ab_1 - networkx=3.6.1=pyhcf101f3_0 - - numpy=1.26.4=py312h8753938_0 - - openjpeg=2.5.4=h24db6dd_0 - - openjph=0.26.0=hf13a347_0 - - openssl=3.6.0=h725018a_0 - - packaging=25.0=pyh29332c3_1 + - numpy=2.4.3=py312ha3f287d_0 + - openjpeg=2.5.4=h0e57b4f_0 + - openjph=0.26.3=hf13a347_0 + - openssl=3.6.1=hf411b9b_1 + - packaging=26.0=pyhcf101f3_0 - partd=1.4.2=pyhd8ed1ab_0 - - pillow=10.3.0=py312h381445a_1 - - pip=25.3=pyh8b19718_0 - - plotly=6.5.1=pyhd8ed1ab_0 + - pillow=12.1.1=py312h31f0997_0 + - pip=26.0.1=pyh8b19718_0 + - plotly=6.6.0=pyhd8ed1ab_0 - proxy-tools=0.1.0=pyhd8ed1ab_0 - pthread-stubs=0.4=h0e40799_1002 - pycparser=2.22=pyh29332c3_1 - pydantic=2.12.5=pyhcf101f3_1 - pydantic-core=2.41.5=py312hdabe01f_1 - - pyparsing=3.3.1=pyhcf101f3_0 + - pyparsing=3.3.2=pyhcf101f3_0 - pysocks=1.7.1=pyh09c184e_7 - - python=3.12.12=h0159041_1_cpython + - python=3.12.13=h0159041_0_cpython - python-dateutil=2.9.0.post0=pyhe01879c_2 - python_abi=3.12=8_cp312 - pythonnet=3.0.5=pyhd8ed1ab_0 - - pywavelets=1.9.0=py312h196c9fc_2 - - pyyaml=6.0.3=py312h05f76fc_0 - - rav1e=0.7.1=ha073cba_3 + - pyyaml=6.0.3=py312h05f76fc_1 + - qhull=2020.2=hc790b64_5 + - rav1e=0.8.1=h007690e_0 - requests=2.32.5=pyhcf101f3_1 - retrying=1.4.2=pyhe01879c_0 - - scikit-image=0.25.2=py312hc128f0a_2 - - scipy=1.14.1=py312h337df96_2 - - setuptools=80.9.0=pyhff2d567_0 + - scikit-image=0.26.0=np2py312h9ea65bc_0 + - scipy=1.17.1=py312h9b3c559_0 + - setuptools=82.0.1=pyh332efcf_0 - six=1.17.0=pyhe01879c_1 - snappy=1.2.2=h7fa0ca8_1 - - svt-av1=3.1.2=hac47afa_0 + - svt-av1=4.0.1=hac47afa_0 - tbb=2022.3.0=h3155e25_2 - - tifffile=2025.12.20=pyhd8ed1ab_0 - - tk=8.6.13=h2c6b04d_3 + - tifffile=2026.3.3=pyhd8ed1ab_0 + - tk=8.6.13=h6ed50ae_3 - toolz=1.1.0=pyhd8ed1ab_1 - - tqdm=4.67.1=pyhd8ed1ab_1 + - tqdm=4.67.3=pyha7b4d00_0 - typing-extensions=4.15.0=h396c80c_0 - typing-inspection=0.4.2=pyhd8ed1ab_1 - typing_extensions=4.15.0=pyhcf101f3_0 - tzdata=2025c=hc9c84f9_1 - ucrt=10.0.26100.0=h57928b3_0 - - unicodedata2=17.0.0=py312he06e257_1 + - unicodedata2=17.0.1=py312he06e257_0 - urllib3=2.6.3=pyhd8ed1ab_0 - vc=14.3=h41ae7f8_34 - vc14_runtime=14.44.35208=h818238b_34 - vcomp14=14.44.35208=h818238b_34 - vs2015_runtime=14.44.35208=h38c0c73_34 - waitress=3.0.2=pyhcf101f3_2 - - werkzeug=3.1.5=pyhcf101f3_0 - - wheel=0.45.1=pyhd8ed1ab_1 + - werkzeug=3.1.6=pyhcf101f3_0 + - wheel=0.46.3=pyhd8ed1ab_0 - win_inet_pton=1.1.0=pyh7428d3b_8 - xorg-libxau=1.0.12=hba3369d_1 - xorg-libxdmcp=1.1.5=hba3369d_1 - yaml=0.2.5=h6a83c73_3 - zfp=1.0.1=h2f0f97f_5 - zipp=3.23.0=pyhcf101f3_1 - - zlib-ng=2.3.2=h0261ad2_1 + - zlib-ng=2.3.3=h0261ad2_1 - zstd=1.5.7=h534d264_6 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@fb86adf72fb82ea23c8904a39585982ca8793c52 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@771ae87ccae825e2eae4058b5f51fd6d5f4791cf - pywebview == 6.1 variables: diff --git a/environments/py-3.11-linux-64-dev-raw.conda.lock.yml b/environments/py-3.13-linux-64-dev-raw.conda.lock.yml similarity index 54% rename from environments/py-3.11-linux-64-dev-raw.conda.lock.yml rename to environments/py-3.13-linux-64-dev-raw.conda.lock.yml index ba2da8d..4be4542 100644 --- a/environments/py-3.11-linux-64-dev-raw.conda.lock.yml +++ b/environments/py-3.13-linux-64-dev-raw.conda.lock.yml @@ -1,172 +1,169 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: c4f41abbbcfdb01da0d4f75442c1c18e0a725e4fb65959013c2b899a71876401 +# input_hash: 4a45ebdf7879fcb0222e413e6503d6c2cb39ce7a3aa12dc133ff9fb68a10acc0 channels: - conda-forge - nodefaults dependencies: - - _libgcc_mutex=0.1=conda_forge - - _openmp_mutex=4.5=2_gnu + - _openmp_mutex=4.5=20_gnu - alabaster=1.0.0=pyhd8ed1ab_1 - annotated-types=0.7.0=pyhd8ed1ab_1 - aom=3.9.1=hac33072_0 - - astroid=4.0.3=py311h38be061_0 - - babel=2.17.0=pyhd8ed1ab_0 - - backports.zstd=1.3.0=py311h6b1f9c4_0 + - astroid=4.0.4=py313h78bf25f_0 + - babel=2.18.0=pyhcf101f3_1 + - backports.zstd=1.3.0=py313h18e8e13_0 - blinker=1.9.0=pyhff2d567_0 - blosc=1.21.6=he440d0b_1 - brotli=1.2.0=hed03a55_1 - brotli-bin=1.2.0=hb03c661_1 - - brotli-python=1.2.0=py311h66f275b_1 + - brotli-python=1.2.0=py313hf159716_1 - brunsli=0.1=hd1e3526_2 - - bzip2=1.0.8=hda65f42_8 + - bzip2=1.0.8=hda65f42_9 - c-ares=1.34.6=hb03c661_0 - - c-blosc2=2.22.0=hc31b594_1 - - ca-certificates=2026.1.4=hbd8a1cb_0 + - c-blosc2=2.23.1=hc31b594_0 + - ca-certificates=2026.2.25=hbd8a1cb_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2026.1.4=pyhd8ed1ab_0 - - charls=2.4.2=h59595ed_0 - - charset-normalizer=3.4.4=pyhd8ed1ab_0 + - certifi=2026.2.25=pyhd8ed1ab_0 + - charls=2.4.3=hecca717_0 + - charset-normalizer=3.4.6=pyhd8ed1ab_0 - click=8.3.1=pyh8f84b5b_1 - cloudpickle=3.1.2=pyhcf101f3_1 - colorama=0.4.6=pyhd8ed1ab_1 - - contourpy=1.3.3=py311hdf67eae_3 - - coverage=7.13.1=py311h3778330_0 + - contourpy=1.3.3=py313hc8edb43_4 + - coverage=7.13.5=py313h3dea7bd_0 - cycler=0.12.1=pyhcf101f3_2 - - dash=3.3.0=pyhd8ed1ab_0 + - dash=3.4.0=pyhd8ed1ab_0 - dash-ag-grid=32.3.4=pyhd8ed1ab_0 - dash-bootstrap-components=2.0.4=pyhcf101f3_0 - dash-core-components=2.0.0=pyhd8ed1ab_1 - dash-daq=0.6.0=pyhd8ed1ab_0 - dash-html-components=2.0.0=pyhd8ed1ab_2 - dash-table=5.0.0=pyhd8ed1ab_1 - - dask-core=2025.3.0=pyhd8ed1ab_0 + - dask-core=2025.3.1=pyhd8ed1ab_0 - dav1d=1.2.1=hd590300_0 - - dill=0.4.0=pyhcf101f3_1 + - dill=0.4.1=pyhcf101f3_0 - docutils=0.21.2=pyhd8ed1ab_1 - exceptiongroup=1.3.1=pyhd8ed1ab_0 - - flask=3.1.2=pyhd8ed1ab_0 - - fonttools=4.61.1=py311h3778330_0 - - freetype=2.14.1=ha770c72_0 - - fsspec=2025.12.0=pyhd8ed1ab_0 + - flask=3.1.3=pyhcf101f3_1 + - fonttools=4.62.0=py313h3dea7bd_0 + - freetype=2.14.2=ha770c72_0 + - fsspec=2026.2.0=pyhd8ed1ab_0 - giflib=5.2.2=hd590300_0 - h2=4.3.0=pyhcf101f3_0 - - h5py=3.15.1=nompi_py311h0b2f468_101 - - hdf5=1.14.6=nompi_h1b119a7_104 + - h5py=3.15.1=nompi_py313h253c126_101 + - hdf5=1.14.6=nompi_h19486de_106 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - - icu=78.2=h33c6efd_0 + - icu=78.3=h33c6efd_0 - idna=3.11=pyhd8ed1ab_0 - - imagecodecs=2026.1.1=py311h273f733_0 + - imagecodecs=2026.3.6=py313h67fa517_1 - imageio=2.37.0=pyhfb79c49_0 - - imagesize=1.4.1=pyhd8ed1ab_0 + - imagesize=2.0.0=pyhd8ed1ab_0 - importlib-metadata=8.7.0=pyhe01879c_1 - iniconfig=2.3.0=pyhd8ed1ab_0 - - isort=7.0.0=pyhd8ed1ab_0 + - isort=8.0.1=pyhd8ed1ab_0 - itsdangerous=2.2.0=pyhd8ed1ab_1 - jinja2=3.1.6=pyhcf101f3_1 - jxrlib=1.1=hd590300_3 - keyutils=1.6.3=hb9d3cd8_0 - - kiwisolver=1.4.9=py311h724c32c_2 - - krb5=1.21.3=h659f571_0 - - lazy-loader=0.4=pyhd8ed1ab_2 - - lcms2=2.17=h717163a_0 - - ld_impl_linux-64=2.45=default_hbd61a6d_105 - - lerc=4.0.0=h0aef613_1 - - libaec=1.1.4=h3f801dc_0 - - libavif16=1.3.0=h6395336_2 + - kiwisolver=1.5.0=py313hc8edb43_0 + - krb5=1.22.2=ha1258a1_0 + - lazy-loader=0.5=pyhd8ed1ab_0 + - lcms2=2.18=h0c24ade_0 + - ld_impl_linux-64=2.45.1=default_hbd61a6d_101 + - lerc=4.1.0=hdb68285_0 + - libaec=1.1.5=h088129d_0 + - libavif16=1.4.0=hcfa2d63_0 - libblas=3.11.0=5_h4a7cf45_openblas - libbrotlicommon=1.2.0=hb03c661_1 - libbrotlidec=1.2.0=hb03c661_1 - libbrotlienc=1.2.0=hb03c661_1 - libcblas=3.11.0=5_h0358290_openblas - - libcurl=8.18.0=h4e3cde8_0 + - libcurl=8.19.0=hcf29cc6_0 - libdeflate=1.25=h17f619e_0 - libedit=3.1.20250104=pl5321h7949ede_0 - libev=4.33=hd590300_2 - - libexpat=2.7.3=hecca717_0 - - libffi=3.5.2=h9ec8514_0 - - libfreetype=2.14.1=ha770c72_0 - - libfreetype6=2.14.1=h73754d4_0 - - libgcc=15.2.0=he0feb66_16 - - libgcc-ng=15.2.0=h69a702a_16 - - libgfortran=15.2.0=h69a702a_16 - - libgfortran5=15.2.0=h68bc16d_16 - - libgomp=15.2.0=he0feb66_16 + - libexpat=2.7.4=hecca717_0 + - libffi=3.5.2=h3435931_0 + - libfreetype=2.14.2=ha770c72_0 + - libfreetype6=2.14.2=h73754d4_0 + - libgcc=15.2.0=he0feb66_18 + - libgcc-ng=15.2.0=h69a702a_18 + - libgfortran=15.2.0=h69a702a_18 + - libgfortran5=15.2.0=h68bc16d_18 + - libgomp=15.2.0=he0feb66_18 - libhwy=1.3.0=h4c17acf_1 - libjpeg-turbo=3.1.2=hb03c661_0 - - libjxl=0.11.1=hf08fa70_5 + - libjxl=0.11.2=ha09017c_0 - liblapack=3.11.0=5_h47877c9_openblas - - liblzma=5.8.1=hb9d3cd8_2 - - libnghttp2=1.67.0=had1ee68_0 - - libnsl=2.0.1=hb9d3cd8_1 + - liblzma=5.8.2=hb03c661_0 + - libmpdec=4.0.0=hb03c661_1 + - libnghttp2=1.68.1=h877daf1_0 - libopenblas=0.3.30=pthreads_h94d23a6_4 - - libpng=1.6.53=h421ea60_0 - - libsqlite=3.51.1=hf4e2dac_1 + - libpng=1.6.55=h421ea60_0 + - libsqlite=3.52.0=hf4e2dac_0 - libssh2=1.11.1=hcf80075_0 - - libstdcxx=15.2.0=h934c35e_16 - - libstdcxx-ng=15.2.0=hdf11a46_16 + - libstdcxx=15.2.0=h934c35e_18 + - libstdcxx-ng=15.2.0=hdf11a46_18 - libtiff=4.7.1=h9d88235_1 - libuuid=2.41.3=h5347b49_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 - locket=1.0.0=pyhd8ed1ab_0 - lz4-c=1.10.0=h5888daf_1 - - markupsafe=3.0.3=py311h3778330_0 - - matplotlib-base=3.8.4=py311ha4ca890_2 + - markupsafe=3.0.3=py313h3dea7bd_1 + - matplotlib-base=3.10.8=py313h683a580_0 - mccabe=0.7.0=pyhd8ed1ab_1 - munkres=1.1.4=pyhd8ed1ab_1 - - narwhals=2.15.0=pyhcf101f3_0 + - narwhals=2.18.0=pyhcf101f3_0 - ncurses=6.5=h2d0b736_3 - nest-asyncio=1.6.0=pyhd8ed1ab_1 - networkx=3.6.1=pyhcf101f3_0 - - numpy=1.26.4=py311h64a7726_0 + - numpy=2.4.3=py313hf6604e3_0 - openjpeg=2.5.4=h55fea9a_0 - - openjph=0.26.0=h8d634f6_0 - - openssl=3.6.0=h26f9b46_0 - - packaging=25.0=pyh29332c3_1 + - openjph=0.26.3=h8d634f6_0 + - openssl=3.6.1=h35e630c_1 + - packaging=26.0=pyhcf101f3_0 - partd=1.4.2=pyhd8ed1ab_0 - - pillow=10.3.0=py311h82a398c_1 - - pip=25.3=pyh8b19718_0 - - platformdirs=4.5.1=pyhcf101f3_0 - - plotly=6.5.1=pyhd8ed1ab_0 + - pillow=12.1.1=py313h80991f8_0 + - pip=26.0.1=pyh145f28c_0 + - platformdirs=4.9.4=pyhcf101f3_0 + - plotly=6.6.0=pyhd8ed1ab_0 - pluggy=1.6.0=pyhf9edf01_1 - pthread-stubs=0.4=hb9d3cd8_1002 - pydantic=2.12.5=pyhcf101f3_1 - - pydantic-core=2.41.5=py311h902ca64_1 + - pydantic-core=2.41.5=py313h843e2db_1 - pygments=2.19.2=pyhd8ed1ab_0 - - pylint=4.0.4=pyhcf101f3_0 - - pyparsing=3.3.1=pyhcf101f3_0 + - pylint=4.0.5=pyhcf101f3_0 + - pyparsing=3.3.2=pyhcf101f3_0 - pysocks=1.7.1=pyha55dd90_7 - pytest=9.0.2=pyhcf101f3_0 - pytest-cov=7.0.0=pyhcf101f3_1 - - python=3.11.14=hd63d673_2_cpython + - python=3.13.12=hc97d973_100_cp313 - python-dateutil=2.9.0.post0=pyhe01879c_2 - - python_abi=3.11=8_cp311 - - pytz=2025.2=pyhd8ed1ab_0 - - pywavelets=1.9.0=py311h0372a8f_2 - - pyyaml=6.0.3=py311h3778330_0 - - rav1e=0.7.1=h8fae777_3 + - python_abi=3.13=8_cp313 + - pyyaml=6.0.3=py313h3dea7bd_1 + - qhull=2020.2=h434a139_5 + - rav1e=0.8.1=h1fbca29_0 - readline=8.3=h853b02a_0 - requests=2.32.5=pyhcf101f3_1 - retrying=1.4.2=pyhe01879c_0 - roman-numerals=4.1.0=pyhd8ed1ab_0 - roman-numerals-py=4.1.0=pyhd8ed1ab_0 - - scikit-image=0.25.2=py311hed34c8f_2 - - scipy=1.14.1=py311he9a78e4_2 - - setuptools=80.9.0=pyhff2d567_0 + - scikit-image=0.26.0=np2py313hb172dc5_0 + - scipy=1.17.1=py313h4b8bb8b_0 + - setuptools=82.0.1=pyh332efcf_0 - six=1.17.0=pyhe01879c_1 - snappy=1.2.2=h03e3b7b_1 - snowballstemmer=3.0.1=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 + - sphinx-rtd-theme=3.1.0=hd8ed1ab_0 + - sphinx_rtd_theme=3.1.0=pyha770c72_0 - sphinxcontrib-applehelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-devhelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-htmlhelp=2.1.0=pyhd8ed1ab_1 @@ -174,32 +171,30 @@ dependencies: - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_1 - sphinxcontrib-qthelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_1 - - svt-av1=3.1.2=hecca717_0 - - tifffile=2025.12.20=pyhd8ed1ab_0 - - tk=8.6.13=noxft_ha0e22de_103 - - tomli=2.3.0=pyhcf101f3_0 - - tomlkit=0.13.3=pyha770c72_0 + - svt-av1=4.0.1=hecca717_0 + - tifffile=2026.3.3=pyhd8ed1ab_0 + - tk=8.6.13=noxft_h366c992_103 + - tomli=2.4.0=pyhcf101f3_0 + - tomlkit=0.14.0=pyha770c72_0 - toolz=1.1.0=pyhd8ed1ab_1 - - tqdm=4.67.1=pyhd8ed1ab_1 + - tqdm=4.67.3=pyh8f84b5b_0 - typing-extensions=4.15.0=h396c80c_0 - typing-inspection=0.4.2=pyhd8ed1ab_1 - typing_extensions=4.15.0=pyhcf101f3_0 - tzdata=2025c=hc9c84f9_1 - - unicodedata2=17.0.0=py311h49ec1c0_1 - urllib3=2.6.3=pyhd8ed1ab_0 - waitress=3.0.2=pyhcf101f3_2 - - werkzeug=3.1.5=pyhcf101f3_0 - - wheel=0.45.1=pyhd8ed1ab_1 + - werkzeug=3.1.6=pyhcf101f3_0 - xorg-libxau=1.0.12=hb03c661_1 - xorg-libxdmcp=1.1.5=hb03c661_1 - yaml=0.2.5=h280c20c_3 - zfp=1.0.1=h909a3a2_5 - zipp=3.23.0=pyhcf101f3_1 - - zlib-ng=2.3.2=hceb46e0_1 + - zlib-ng=2.3.3=hceb46e0_1 - zstd=1.5.7=hb78ec9c_6 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@fb86adf72fb82ea23c8904a39585982ca8793c52 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@771ae87ccae825e2eae4058b5f51fd6d5f4791cf variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.11-linux-64-dev.conda.lock.yml b/environments/py-3.13-linux-64-dev.conda.lock.yml similarity index 55% rename from environments/py-3.11-linux-64-dev.conda.lock.yml rename to environments/py-3.13-linux-64-dev.conda.lock.yml index 82ea8c1..6a2f63f 100644 --- a/environments/py-3.11-linux-64-dev.conda.lock.yml +++ b/environments/py-3.13-linux-64-dev.conda.lock.yml @@ -1,178 +1,175 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: c4f41abbbcfdb01da0d4f75442c1c18e0a725e4fb65959013c2b899a71876401 +# input_hash: 4a45ebdf7879fcb0222e413e6503d6c2cb39ce7a3aa12dc133ff9fb68a10acc0 channels: - conda-forge - nodefaults dependencies: - - _libgcc_mutex=0.1=conda_forge - - _openmp_mutex=4.5=2_gnu + - _openmp_mutex=4.5=20_gnu - alabaster=1.0.0=pyhd8ed1ab_1 - annotated-types=0.7.0=pyhd8ed1ab_1 - aom=3.9.1=hac33072_0 - - astroid=4.0.3=py311h38be061_0 - - babel=2.17.0=pyhd8ed1ab_0 - - backports.zstd=1.3.0=py311h6b1f9c4_0 + - astroid=4.0.4=py313h78bf25f_0 + - babel=2.18.0=pyhcf101f3_1 + - backports.zstd=1.3.0=py313h18e8e13_0 - blinker=1.9.0=pyhff2d567_0 - blosc=1.21.6=he440d0b_1 - bottle=0.13.4=pyhe01879c_0 - brotli=1.2.0=hed03a55_1 - brotli-bin=1.2.0=hb03c661_1 - - brotli-python=1.2.0=py311h66f275b_1 + - brotli-python=1.2.0=py313hf159716_1 - brunsli=0.1=hd1e3526_2 - - bzip2=1.0.8=hda65f42_8 + - bzip2=1.0.8=hda65f42_9 - c-ares=1.34.6=hb03c661_0 - - c-blosc2=2.22.0=hc31b594_1 - - ca-certificates=2026.1.4=hbd8a1cb_0 + - c-blosc2=2.23.1=hc31b594_0 + - ca-certificates=2026.2.25=hbd8a1cb_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2026.1.4=pyhd8ed1ab_0 - - cffi=2.0.0=py311h03d9500_1 - - charls=2.4.2=h59595ed_0 - - charset-normalizer=3.4.4=pyhd8ed1ab_0 + - certifi=2026.2.25=pyhd8ed1ab_0 + - cffi=2.0.0=py313hf46b229_1 + - charls=2.4.3=hecca717_0 + - charset-normalizer=3.4.6=pyhd8ed1ab_0 - click=8.3.1=pyh8f84b5b_1 - cloudpickle=3.1.2=pyhcf101f3_1 - clr_loader=0.2.10=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - - contourpy=1.3.3=py311hdf67eae_3 - - coverage=7.13.1=py311h3778330_0 + - contourpy=1.3.3=py313hc8edb43_4 + - coverage=7.13.5=py313h3dea7bd_0 - cycler=0.12.1=pyhcf101f3_2 - - dash=3.3.0=pyhd8ed1ab_0 + - dash=3.4.0=pyhd8ed1ab_0 - dash-ag-grid=32.3.4=pyhd8ed1ab_0 - dash-bootstrap-components=2.0.4=pyhcf101f3_0 - dash-core-components=2.0.0=pyhd8ed1ab_1 - dash-daq=0.6.0=pyhd8ed1ab_0 - dash-html-components=2.0.0=pyhd8ed1ab_2 - dash-table=5.0.0=pyhd8ed1ab_1 - - dask-core=2025.3.0=pyhd8ed1ab_0 + - dask-core=2025.3.1=pyhd8ed1ab_0 - dav1d=1.2.1=hd590300_0 - - dill=0.4.0=pyhcf101f3_1 + - dill=0.4.1=pyhcf101f3_0 - docutils=0.21.2=pyhd8ed1ab_1 - exceptiongroup=1.3.1=pyhd8ed1ab_0 - - flask=3.1.2=pyhd8ed1ab_0 - - fonttools=4.61.1=py311h3778330_0 - - freetype=2.14.1=ha770c72_0 - - fsspec=2025.12.0=pyhd8ed1ab_0 + - flask=3.1.3=pyhcf101f3_1 + - fonttools=4.62.0=py313h3dea7bd_0 + - freetype=2.14.2=ha770c72_0 + - fsspec=2026.2.0=pyhd8ed1ab_0 - giflib=5.2.2=hd590300_0 - h2=4.3.0=pyhcf101f3_0 - - h5py=3.15.1=nompi_py311h0b2f468_101 - - hdf5=1.14.6=nompi_h1b119a7_104 + - h5py=3.15.1=nompi_py313h253c126_101 + - hdf5=1.14.6=nompi_h19486de_106 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - - icu=78.2=h33c6efd_0 + - icu=78.3=h33c6efd_0 - idna=3.11=pyhd8ed1ab_0 - - imagecodecs=2026.1.1=py311h273f733_0 + - imagecodecs=2026.3.6=py313h67fa517_1 - imageio=2.37.0=pyhfb79c49_0 - - imagesize=1.4.1=pyhd8ed1ab_0 + - imagesize=2.0.0=pyhd8ed1ab_0 - importlib-metadata=8.7.0=pyhe01879c_1 - iniconfig=2.3.0=pyhd8ed1ab_0 - - isort=7.0.0=pyhd8ed1ab_0 + - isort=8.0.1=pyhd8ed1ab_0 - itsdangerous=2.2.0=pyhd8ed1ab_1 - jinja2=3.1.6=pyhcf101f3_1 - jxrlib=1.1=hd590300_3 - keyutils=1.6.3=hb9d3cd8_0 - - kiwisolver=1.4.9=py311h724c32c_2 - - krb5=1.21.3=h659f571_0 - - lazy-loader=0.4=pyhd8ed1ab_2 - - lcms2=2.17=h717163a_0 - - ld_impl_linux-64=2.45=default_hbd61a6d_105 - - lerc=4.0.0=h0aef613_1 - - libaec=1.1.4=h3f801dc_0 - - libavif16=1.3.0=h6395336_2 + - kiwisolver=1.5.0=py313hc8edb43_0 + - krb5=1.22.2=ha1258a1_0 + - lazy-loader=0.5=pyhd8ed1ab_0 + - lcms2=2.18=h0c24ade_0 + - ld_impl_linux-64=2.45.1=default_hbd61a6d_101 + - lerc=4.1.0=hdb68285_0 + - libaec=1.1.5=h088129d_0 + - libavif16=1.4.0=hcfa2d63_0 - libblas=3.11.0=5_h4a7cf45_openblas - libbrotlicommon=1.2.0=hb03c661_1 - libbrotlidec=1.2.0=hb03c661_1 - libbrotlienc=1.2.0=hb03c661_1 - libcblas=3.11.0=5_h0358290_openblas - - libcurl=8.18.0=h4e3cde8_0 + - libcurl=8.19.0=hcf29cc6_0 - libdeflate=1.25=h17f619e_0 - libedit=3.1.20250104=pl5321h7949ede_0 - libev=4.33=hd590300_2 - - libexpat=2.7.3=hecca717_0 - - libffi=3.5.2=h9ec8514_0 - - libfreetype=2.14.1=ha770c72_0 - - libfreetype6=2.14.1=h73754d4_0 - - libgcc=15.2.0=he0feb66_16 - - libgcc-ng=15.2.0=h69a702a_16 - - libgfortran=15.2.0=h69a702a_16 - - libgfortran5=15.2.0=h68bc16d_16 - - libgomp=15.2.0=he0feb66_16 + - libexpat=2.7.4=hecca717_0 + - libffi=3.5.2=h3435931_0 + - libfreetype=2.14.2=ha770c72_0 + - libfreetype6=2.14.2=h73754d4_0 + - libgcc=15.2.0=he0feb66_18 + - libgcc-ng=15.2.0=h69a702a_18 + - libgfortran=15.2.0=h69a702a_18 + - libgfortran5=15.2.0=h68bc16d_18 + - libgomp=15.2.0=he0feb66_18 - libhwy=1.3.0=h4c17acf_1 - libjpeg-turbo=3.1.2=hb03c661_0 - - libjxl=0.11.1=hf08fa70_5 + - libjxl=0.11.2=ha09017c_0 - liblapack=3.11.0=5_h47877c9_openblas - - liblzma=5.8.1=hb9d3cd8_2 - - libnghttp2=1.67.0=had1ee68_0 - - libnsl=2.0.1=hb9d3cd8_1 + - liblzma=5.8.2=hb03c661_0 + - libmpdec=4.0.0=hb03c661_1 + - libnghttp2=1.68.1=h877daf1_0 - libopenblas=0.3.30=pthreads_h94d23a6_4 - - libpng=1.6.53=h421ea60_0 - - libsqlite=3.51.1=hf4e2dac_1 + - libpng=1.6.55=h421ea60_0 + - libsqlite=3.52.0=hf4e2dac_0 - libssh2=1.11.1=hcf80075_0 - - libstdcxx=15.2.0=h934c35e_16 - - libstdcxx-ng=15.2.0=hdf11a46_16 + - libstdcxx=15.2.0=h934c35e_18 + - libstdcxx-ng=15.2.0=hdf11a46_18 - libtiff=4.7.1=h9d88235_1 - libuuid=2.41.3=h5347b49_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 - locket=1.0.0=pyhd8ed1ab_0 - lz4-c=1.10.0=h5888daf_1 - - markupsafe=3.0.3=py311h3778330_0 - - matplotlib-base=3.8.4=py311ha4ca890_2 + - markupsafe=3.0.3=py313h3dea7bd_1 + - matplotlib-base=3.10.8=py313h683a580_0 - mccabe=0.7.0=pyhd8ed1ab_1 - munkres=1.1.4=pyhd8ed1ab_1 - - narwhals=2.15.0=pyhcf101f3_0 + - narwhals=2.18.0=pyhcf101f3_0 - ncurses=6.5=h2d0b736_3 - nest-asyncio=1.6.0=pyhd8ed1ab_1 - networkx=3.6.1=pyhcf101f3_0 - - numpy=1.26.4=py311h64a7726_0 + - numpy=2.4.3=py313hf6604e3_0 - openjpeg=2.5.4=h55fea9a_0 - - openjph=0.26.0=h8d634f6_0 - - openssl=3.6.0=h26f9b46_0 - - packaging=25.0=pyh29332c3_1 + - openjph=0.26.3=h8d634f6_0 + - openssl=3.6.1=h35e630c_1 + - packaging=26.0=pyhcf101f3_0 - partd=1.4.2=pyhd8ed1ab_0 - - pillow=10.3.0=py311h82a398c_1 - - pip=25.3=pyh8b19718_0 - - platformdirs=4.5.1=pyhcf101f3_0 - - plotly=6.5.1=pyhd8ed1ab_0 + - pillow=12.1.1=py313h80991f8_0 + - pip=26.0.1=pyh145f28c_0 + - platformdirs=4.9.4=pyhcf101f3_0 + - plotly=6.6.0=pyhd8ed1ab_0 - pluggy=1.6.0=pyhf9edf01_1 - proxy-tools=0.1.0=pyhd8ed1ab_0 - pthread-stubs=0.4=hb9d3cd8_1002 - pycparser=2.22=pyh29332c3_1 - pydantic=2.12.5=pyhcf101f3_1 - - pydantic-core=2.41.5=py311h902ca64_1 + - pydantic-core=2.41.5=py313h843e2db_1 - pygments=2.19.2=pyhd8ed1ab_0 - - pylint=4.0.4=pyhcf101f3_0 - - pyparsing=3.3.1=pyhcf101f3_0 + - pylint=4.0.5=pyhcf101f3_0 + - pyparsing=3.3.2=pyhcf101f3_0 - pysocks=1.7.1=pyha55dd90_7 - pytest=9.0.2=pyhcf101f3_0 - pytest-cov=7.0.0=pyhcf101f3_1 - - python=3.11.14=hd63d673_2_cpython + - python=3.13.12=hc97d973_100_cp313 - python-dateutil=2.9.0.post0=pyhe01879c_2 - - python_abi=3.11=8_cp311 + - python_abi=3.13=8_cp313 - pythonnet=3.0.5=pyhd8ed1ab_0 - - pytz=2025.2=pyhd8ed1ab_0 - - pywavelets=1.9.0=py311h0372a8f_2 - - pyyaml=6.0.3=py311h3778330_0 - - rav1e=0.7.1=h8fae777_3 + - pyyaml=6.0.3=py313h3dea7bd_1 + - qhull=2020.2=h434a139_5 + - rav1e=0.8.1=h1fbca29_0 - readline=8.3=h853b02a_0 - requests=2.32.5=pyhcf101f3_1 - retrying=1.4.2=pyhe01879c_0 - roman-numerals=4.1.0=pyhd8ed1ab_0 - roman-numerals-py=4.1.0=pyhd8ed1ab_0 - - scikit-image=0.25.2=py311hed34c8f_2 - - scipy=1.14.1=py311he9a78e4_2 - - setuptools=80.9.0=pyhff2d567_0 + - scikit-image=0.26.0=np2py313hb172dc5_0 + - scipy=1.17.1=py313h4b8bb8b_0 + - setuptools=82.0.1=pyh332efcf_0 - six=1.17.0=pyhe01879c_1 - snappy=1.2.2=h03e3b7b_1 - snowballstemmer=3.0.1=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 + - sphinx-rtd-theme=3.1.0=hd8ed1ab_0 + - sphinx_rtd_theme=3.1.0=pyha770c72_0 - sphinxcontrib-applehelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-devhelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-htmlhelp=2.1.0=pyhd8ed1ab_1 @@ -180,32 +177,30 @@ dependencies: - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_1 - sphinxcontrib-qthelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_1 - - svt-av1=3.1.2=hecca717_0 - - tifffile=2025.12.20=pyhd8ed1ab_0 - - tk=8.6.13=noxft_ha0e22de_103 - - tomli=2.3.0=pyhcf101f3_0 - - tomlkit=0.13.3=pyha770c72_0 + - svt-av1=4.0.1=hecca717_0 + - tifffile=2026.3.3=pyhd8ed1ab_0 + - tk=8.6.13=noxft_h366c992_103 + - tomli=2.4.0=pyhcf101f3_0 + - tomlkit=0.14.0=pyha770c72_0 - toolz=1.1.0=pyhd8ed1ab_1 - - tqdm=4.67.1=pyhd8ed1ab_1 + - tqdm=4.67.3=pyh8f84b5b_0 - typing-extensions=4.15.0=h396c80c_0 - typing-inspection=0.4.2=pyhd8ed1ab_1 - typing_extensions=4.15.0=pyhcf101f3_0 - tzdata=2025c=hc9c84f9_1 - - unicodedata2=17.0.0=py311h49ec1c0_1 - urllib3=2.6.3=pyhd8ed1ab_0 - waitress=3.0.2=pyhcf101f3_2 - - werkzeug=3.1.5=pyhcf101f3_0 - - wheel=0.45.1=pyhd8ed1ab_1 + - werkzeug=3.1.6=pyhcf101f3_0 - xorg-libxau=1.0.12=hb03c661_1 - xorg-libxdmcp=1.1.5=hb03c661_1 - yaml=0.2.5=h280c20c_3 - zfp=1.0.1=h909a3a2_5 - zipp=3.23.0=pyhcf101f3_1 - - zlib-ng=2.3.2=hceb46e0_1 + - zlib-ng=2.3.3=hceb46e0_1 - zstd=1.5.7=hb78ec9c_6 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@fb86adf72fb82ea23c8904a39585982ca8793c52 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@771ae87ccae825e2eae4058b5f51fd6d5f4791cf - pywebview == 6.1 variables: diff --git a/environments/py-3.11-linux-64-raw.conda.lock.yml b/environments/py-3.13-linux-64-raw.conda.lock.yml similarity index 51% rename from environments/py-3.11-linux-64-raw.conda.lock.yml rename to environments/py-3.13-linux-64-raw.conda.lock.yml index d070c9d..2b05ad8 100644 --- a/environments/py-3.11-linux-64-raw.conda.lock.yml +++ b/environments/py-3.13-linux-64-raw.conda.lock.yml @@ -1,171 +1,166 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: c4f41abbbcfdb01da0d4f75442c1c18e0a725e4fb65959013c2b899a71876401 +# input_hash: 4a45ebdf7879fcb0222e413e6503d6c2cb39ce7a3aa12dc133ff9fb68a10acc0 channels: - conda-forge - nodefaults dependencies: - - _libgcc_mutex=0.1=conda_forge - - _openmp_mutex=4.5=2_gnu + - _openmp_mutex=4.5=20_gnu - annotated-types=0.7.0=pyhd8ed1ab_1 - aom=3.9.1=hac33072_0 - - backports.zstd=1.3.0=py311h6b1f9c4_0 + - backports.zstd=1.3.0=py313h18e8e13_0 - blinker=1.9.0=pyhff2d567_0 - blosc=1.21.6=he440d0b_1 - brotli=1.2.0=hed03a55_1 - brotli-bin=1.2.0=hb03c661_1 - - brotli-python=1.2.0=py311h66f275b_1 + - brotli-python=1.2.0=py313hf159716_1 - brunsli=0.1=hd1e3526_2 - - bzip2=1.0.8=hda65f42_8 + - bzip2=1.0.8=hda65f42_9 - c-ares=1.34.6=hb03c661_0 - - c-blosc2=2.22.0=hc31b594_1 - - ca-certificates=2026.1.4=hbd8a1cb_0 + - c-blosc2=2.23.1=hc31b594_0 + - ca-certificates=2026.2.25=hbd8a1cb_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2026.1.4=pyhd8ed1ab_0 - - charls=2.4.2=h59595ed_0 - - charset-normalizer=3.4.4=pyhd8ed1ab_0 + - certifi=2026.2.25=pyhd8ed1ab_0 + - charls=2.4.3=hecca717_0 + - charset-normalizer=3.4.6=pyhd8ed1ab_0 - click=8.3.1=pyh8f84b5b_1 - cloudpickle=3.1.2=pyhcf101f3_1 - - colorama=0.4.6=pyhd8ed1ab_1 - - contourpy=1.3.3=py311hdf67eae_3 + - contourpy=1.3.3=py313hc8edb43_4 - cycler=0.12.1=pyhcf101f3_2 - - dash=3.3.0=pyhd8ed1ab_0 + - dash=3.4.0=pyhd8ed1ab_0 - dash-ag-grid=32.3.4=pyhd8ed1ab_0 - dash-bootstrap-components=2.0.4=pyhcf101f3_0 - dash-core-components=2.0.0=pyhd8ed1ab_1 - dash-daq=0.6.0=pyhd8ed1ab_0 - dash-html-components=2.0.0=pyhd8ed1ab_2 - dash-table=5.0.0=pyhd8ed1ab_1 - - dask-core=2025.3.0=pyhd8ed1ab_0 + - dask-core=2025.3.1=pyhd8ed1ab_0 - dav1d=1.2.1=hd590300_0 - - flask=3.1.2=pyhd8ed1ab_0 - - fonttools=4.61.1=py311h3778330_0 - - freetype=2.14.1=ha770c72_0 - - fsspec=2025.12.0=pyhd8ed1ab_0 + - flask=3.1.3=pyhcf101f3_1 + - fonttools=4.62.0=py313h3dea7bd_0 + - freetype=2.14.2=ha770c72_0 + - fsspec=2026.2.0=pyhd8ed1ab_0 - giflib=5.2.2=hd590300_0 - h2=4.3.0=pyhcf101f3_0 - - h5py=3.15.1=nompi_py311h0b2f468_101 - - hdf5=1.14.6=nompi_h1b119a7_104 + - h5py=3.15.1=nompi_py313h253c126_101 + - hdf5=1.14.6=nompi_h19486de_106 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - - icu=78.2=h33c6efd_0 + - icu=78.3=h33c6efd_0 - idna=3.11=pyhd8ed1ab_0 - - imagecodecs=2026.1.1=py311h273f733_0 + - imagecodecs=2026.3.6=py313h67fa517_1 - imageio=2.37.0=pyhfb79c49_0 - importlib-metadata=8.7.0=pyhe01879c_1 - itsdangerous=2.2.0=pyhd8ed1ab_1 - jinja2=3.1.6=pyhcf101f3_1 - jxrlib=1.1=hd590300_3 - keyutils=1.6.3=hb9d3cd8_0 - - kiwisolver=1.4.9=py311h724c32c_2 - - krb5=1.21.3=h659f571_0 - - lazy-loader=0.4=pyhd8ed1ab_2 - - lcms2=2.17=h717163a_0 - - ld_impl_linux-64=2.45=default_hbd61a6d_105 - - lerc=4.0.0=h0aef613_1 - - libaec=1.1.4=h3f801dc_0 - - libavif16=1.3.0=h6395336_2 + - kiwisolver=1.5.0=py313hc8edb43_0 + - krb5=1.22.2=ha1258a1_0 + - lazy-loader=0.5=pyhd8ed1ab_0 + - lcms2=2.18=h0c24ade_0 + - ld_impl_linux-64=2.45.1=default_hbd61a6d_101 + - lerc=4.1.0=hdb68285_0 + - libaec=1.1.5=h088129d_0 + - libavif16=1.4.0=hcfa2d63_0 - libblas=3.11.0=5_h4a7cf45_openblas - libbrotlicommon=1.2.0=hb03c661_1 - libbrotlidec=1.2.0=hb03c661_1 - libbrotlienc=1.2.0=hb03c661_1 - libcblas=3.11.0=5_h0358290_openblas - - libcurl=8.18.0=h4e3cde8_0 + - libcurl=8.19.0=hcf29cc6_0 - libdeflate=1.25=h17f619e_0 - libedit=3.1.20250104=pl5321h7949ede_0 - libev=4.33=hd590300_2 - - libexpat=2.7.3=hecca717_0 - - libffi=3.5.2=h9ec8514_0 - - libfreetype=2.14.1=ha770c72_0 - - libfreetype6=2.14.1=h73754d4_0 - - libgcc=15.2.0=he0feb66_16 - - libgcc-ng=15.2.0=h69a702a_16 - - libgfortran=15.2.0=h69a702a_16 - - libgfortran5=15.2.0=h68bc16d_16 - - libgomp=15.2.0=he0feb66_16 + - libexpat=2.7.4=hecca717_0 + - libffi=3.5.2=h3435931_0 + - libfreetype=2.14.2=ha770c72_0 + - libfreetype6=2.14.2=h73754d4_0 + - libgcc=15.2.0=he0feb66_18 + - libgcc-ng=15.2.0=h69a702a_18 + - libgfortran=15.2.0=h69a702a_18 + - libgfortran5=15.2.0=h68bc16d_18 + - libgomp=15.2.0=he0feb66_18 - libhwy=1.3.0=h4c17acf_1 - libjpeg-turbo=3.1.2=hb03c661_0 - - libjxl=0.11.1=hf08fa70_5 + - libjxl=0.11.2=ha09017c_0 - liblapack=3.11.0=5_h47877c9_openblas - - liblzma=5.8.1=hb9d3cd8_2 - - libnghttp2=1.67.0=had1ee68_0 - - libnsl=2.0.1=hb9d3cd8_1 + - liblzma=5.8.2=hb03c661_0 + - libmpdec=4.0.0=hb03c661_1 + - libnghttp2=1.68.1=h877daf1_0 - libopenblas=0.3.30=pthreads_h94d23a6_4 - - libpng=1.6.53=h421ea60_0 - - libsqlite=3.51.1=hf4e2dac_1 + - libpng=1.6.55=h421ea60_0 + - libsqlite=3.52.0=hf4e2dac_0 - libssh2=1.11.1=hcf80075_0 - - libstdcxx=15.2.0=h934c35e_16 - - libstdcxx-ng=15.2.0=hdf11a46_16 + - libstdcxx=15.2.0=h934c35e_18 + - libstdcxx-ng=15.2.0=hdf11a46_18 - libtiff=4.7.1=h9d88235_1 - libuuid=2.41.3=h5347b49_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 - locket=1.0.0=pyhd8ed1ab_0 - lz4-c=1.10.0=h5888daf_1 - - markupsafe=3.0.3=py311h3778330_0 - - matplotlib-base=3.8.4=py311ha4ca890_2 + - markupsafe=3.0.3=py313h3dea7bd_1 + - matplotlib-base=3.10.8=py313h683a580_0 - munkres=1.1.4=pyhd8ed1ab_1 - - narwhals=2.15.0=pyhcf101f3_0 + - narwhals=2.18.0=pyhcf101f3_0 - ncurses=6.5=h2d0b736_3 - nest-asyncio=1.6.0=pyhd8ed1ab_1 - networkx=3.6.1=pyhcf101f3_0 - - numpy=1.26.4=py311h64a7726_0 + - numpy=2.4.3=py313hf6604e3_0 - openjpeg=2.5.4=h55fea9a_0 - - openjph=0.26.0=h8d634f6_0 - - openssl=3.6.0=h26f9b46_0 - - packaging=25.0=pyh29332c3_1 + - openjph=0.26.3=h8d634f6_0 + - openssl=3.6.1=h35e630c_1 + - packaging=26.0=pyhcf101f3_0 - partd=1.4.2=pyhd8ed1ab_0 - - pillow=10.3.0=py311h82a398c_1 - - pip=25.3=pyh8b19718_0 - - plotly=6.5.1=pyhd8ed1ab_0 + - pillow=12.1.1=py313h80991f8_0 + - pip=26.0.1=pyh145f28c_0 + - plotly=6.6.0=pyhd8ed1ab_0 - pthread-stubs=0.4=hb9d3cd8_1002 - pydantic=2.12.5=pyhcf101f3_1 - - pydantic-core=2.41.5=py311h902ca64_1 - - pyparsing=3.3.1=pyhcf101f3_0 + - pydantic-core=2.41.5=py313h843e2db_1 + - pyparsing=3.3.2=pyhcf101f3_0 - pysocks=1.7.1=pyha55dd90_7 - - python=3.11.14=hd63d673_2_cpython + - python=3.13.12=hc97d973_100_cp313 - python-dateutil=2.9.0.post0=pyhe01879c_2 - - python_abi=3.11=8_cp311 - - pywavelets=1.9.0=py311h0372a8f_2 - - pyyaml=6.0.3=py311h3778330_0 - - rav1e=0.7.1=h8fae777_3 + - python_abi=3.13=8_cp313 + - pyyaml=6.0.3=py313h3dea7bd_1 + - qhull=2020.2=h434a139_5 + - rav1e=0.8.1=h1fbca29_0 - readline=8.3=h853b02a_0 - requests=2.32.5=pyhcf101f3_1 - retrying=1.4.2=pyhe01879c_0 - - scikit-image=0.25.2=py311hed34c8f_2 - - scipy=1.14.1=py311he9a78e4_2 - - setuptools=80.9.0=pyhff2d567_0 + - scikit-image=0.26.0=np2py313hb172dc5_0 + - scipy=1.17.1=py313h4b8bb8b_0 + - setuptools=82.0.1=pyh332efcf_0 - six=1.17.0=pyhe01879c_1 - snappy=1.2.2=h03e3b7b_1 - - svt-av1=3.1.2=hecca717_0 - - tifffile=2025.12.20=pyhd8ed1ab_0 - - tk=8.6.13=noxft_ha0e22de_103 + - svt-av1=4.0.1=hecca717_0 + - tifffile=2026.3.3=pyhd8ed1ab_0 + - tk=8.6.13=noxft_h366c992_103 - toolz=1.1.0=pyhd8ed1ab_1 - - tqdm=4.67.1=pyhd8ed1ab_1 + - tqdm=4.67.3=pyh8f84b5b_0 - typing-extensions=4.15.0=h396c80c_0 - typing-inspection=0.4.2=pyhd8ed1ab_1 - typing_extensions=4.15.0=pyhcf101f3_0 - tzdata=2025c=hc9c84f9_1 - - unicodedata2=17.0.0=py311h49ec1c0_1 - urllib3=2.6.3=pyhd8ed1ab_0 - waitress=3.0.2=pyhcf101f3_2 - - werkzeug=3.1.5=pyhcf101f3_0 - - wheel=0.45.1=pyhd8ed1ab_1 + - werkzeug=3.1.6=pyhcf101f3_0 - xorg-libxau=1.0.12=hb03c661_1 - xorg-libxdmcp=1.1.5=hb03c661_1 - yaml=0.2.5=h280c20c_3 - zfp=1.0.1=h909a3a2_5 - zipp=3.23.0=pyhcf101f3_1 - - zlib-ng=2.3.2=hceb46e0_1 + - zlib-ng=2.3.3=hceb46e0_1 - zstd=1.5.7=hb78ec9c_6 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@fb86adf72fb82ea23c8904a39585982ca8793c52 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@771ae87ccae825e2eae4058b5f51fd6d5f4791cf variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.11-linux-64.conda.lock.yml b/environments/py-3.13-linux-64.conda.lock.yml similarity index 52% rename from environments/py-3.11-linux-64.conda.lock.yml rename to environments/py-3.13-linux-64.conda.lock.yml index f480c55..15ae0c0 100644 --- a/environments/py-3.11-linux-64.conda.lock.yml +++ b/environments/py-3.13-linux-64.conda.lock.yml @@ -1,177 +1,172 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: c4f41abbbcfdb01da0d4f75442c1c18e0a725e4fb65959013c2b899a71876401 +# input_hash: 4a45ebdf7879fcb0222e413e6503d6c2cb39ce7a3aa12dc133ff9fb68a10acc0 channels: - conda-forge - nodefaults dependencies: - - _libgcc_mutex=0.1=conda_forge - - _openmp_mutex=4.5=2_gnu + - _openmp_mutex=4.5=20_gnu - annotated-types=0.7.0=pyhd8ed1ab_1 - aom=3.9.1=hac33072_0 - - backports.zstd=1.3.0=py311h6b1f9c4_0 + - backports.zstd=1.3.0=py313h18e8e13_0 - blinker=1.9.0=pyhff2d567_0 - blosc=1.21.6=he440d0b_1 - bottle=0.13.4=pyhe01879c_0 - brotli=1.2.0=hed03a55_1 - brotli-bin=1.2.0=hb03c661_1 - - brotli-python=1.2.0=py311h66f275b_1 + - brotli-python=1.2.0=py313hf159716_1 - brunsli=0.1=hd1e3526_2 - - bzip2=1.0.8=hda65f42_8 + - bzip2=1.0.8=hda65f42_9 - c-ares=1.34.6=hb03c661_0 - - c-blosc2=2.22.0=hc31b594_1 - - ca-certificates=2026.1.4=hbd8a1cb_0 + - c-blosc2=2.23.1=hc31b594_0 + - ca-certificates=2026.2.25=hbd8a1cb_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2026.1.4=pyhd8ed1ab_0 - - cffi=2.0.0=py311h03d9500_1 - - charls=2.4.2=h59595ed_0 - - charset-normalizer=3.4.4=pyhd8ed1ab_0 + - certifi=2026.2.25=pyhd8ed1ab_0 + - cffi=2.0.0=py313hf46b229_1 + - charls=2.4.3=hecca717_0 + - charset-normalizer=3.4.6=pyhd8ed1ab_0 - click=8.3.1=pyh8f84b5b_1 - cloudpickle=3.1.2=pyhcf101f3_1 - clr_loader=0.2.10=pyhd8ed1ab_0 - - colorama=0.4.6=pyhd8ed1ab_1 - - contourpy=1.3.3=py311hdf67eae_3 + - contourpy=1.3.3=py313hc8edb43_4 - cycler=0.12.1=pyhcf101f3_2 - - dash=3.3.0=pyhd8ed1ab_0 + - dash=3.4.0=pyhd8ed1ab_0 - dash-ag-grid=32.3.4=pyhd8ed1ab_0 - dash-bootstrap-components=2.0.4=pyhcf101f3_0 - dash-core-components=2.0.0=pyhd8ed1ab_1 - dash-daq=0.6.0=pyhd8ed1ab_0 - dash-html-components=2.0.0=pyhd8ed1ab_2 - dash-table=5.0.0=pyhd8ed1ab_1 - - dask-core=2025.3.0=pyhd8ed1ab_0 + - dask-core=2025.3.1=pyhd8ed1ab_0 - dav1d=1.2.1=hd590300_0 - - flask=3.1.2=pyhd8ed1ab_0 - - fonttools=4.61.1=py311h3778330_0 - - freetype=2.14.1=ha770c72_0 - - fsspec=2025.12.0=pyhd8ed1ab_0 + - flask=3.1.3=pyhcf101f3_1 + - fonttools=4.62.0=py313h3dea7bd_0 + - freetype=2.14.2=ha770c72_0 + - fsspec=2026.2.0=pyhd8ed1ab_0 - giflib=5.2.2=hd590300_0 - h2=4.3.0=pyhcf101f3_0 - - h5py=3.15.1=nompi_py311h0b2f468_101 - - hdf5=1.14.6=nompi_h1b119a7_104 + - h5py=3.15.1=nompi_py313h253c126_101 + - hdf5=1.14.6=nompi_h19486de_106 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - - icu=78.2=h33c6efd_0 + - icu=78.3=h33c6efd_0 - idna=3.11=pyhd8ed1ab_0 - - imagecodecs=2026.1.1=py311h273f733_0 + - imagecodecs=2026.3.6=py313h67fa517_1 - imageio=2.37.0=pyhfb79c49_0 - importlib-metadata=8.7.0=pyhe01879c_1 - itsdangerous=2.2.0=pyhd8ed1ab_1 - jinja2=3.1.6=pyhcf101f3_1 - jxrlib=1.1=hd590300_3 - keyutils=1.6.3=hb9d3cd8_0 - - kiwisolver=1.4.9=py311h724c32c_2 - - krb5=1.21.3=h659f571_0 - - lazy-loader=0.4=pyhd8ed1ab_2 - - lcms2=2.17=h717163a_0 - - ld_impl_linux-64=2.45=default_hbd61a6d_105 - - lerc=4.0.0=h0aef613_1 - - libaec=1.1.4=h3f801dc_0 - - libavif16=1.3.0=h6395336_2 + - kiwisolver=1.5.0=py313hc8edb43_0 + - krb5=1.22.2=ha1258a1_0 + - lazy-loader=0.5=pyhd8ed1ab_0 + - lcms2=2.18=h0c24ade_0 + - ld_impl_linux-64=2.45.1=default_hbd61a6d_101 + - lerc=4.1.0=hdb68285_0 + - libaec=1.1.5=h088129d_0 + - libavif16=1.4.0=hcfa2d63_0 - libblas=3.11.0=5_h4a7cf45_openblas - libbrotlicommon=1.2.0=hb03c661_1 - libbrotlidec=1.2.0=hb03c661_1 - libbrotlienc=1.2.0=hb03c661_1 - libcblas=3.11.0=5_h0358290_openblas - - libcurl=8.18.0=h4e3cde8_0 + - libcurl=8.19.0=hcf29cc6_0 - libdeflate=1.25=h17f619e_0 - libedit=3.1.20250104=pl5321h7949ede_0 - libev=4.33=hd590300_2 - - libexpat=2.7.3=hecca717_0 - - libffi=3.5.2=h9ec8514_0 - - libfreetype=2.14.1=ha770c72_0 - - libfreetype6=2.14.1=h73754d4_0 - - libgcc=15.2.0=he0feb66_16 - - libgcc-ng=15.2.0=h69a702a_16 - - libgfortran=15.2.0=h69a702a_16 - - libgfortran5=15.2.0=h68bc16d_16 - - libgomp=15.2.0=he0feb66_16 + - libexpat=2.7.4=hecca717_0 + - libffi=3.5.2=h3435931_0 + - libfreetype=2.14.2=ha770c72_0 + - libfreetype6=2.14.2=h73754d4_0 + - libgcc=15.2.0=he0feb66_18 + - libgcc-ng=15.2.0=h69a702a_18 + - libgfortran=15.2.0=h69a702a_18 + - libgfortran5=15.2.0=h68bc16d_18 + - libgomp=15.2.0=he0feb66_18 - libhwy=1.3.0=h4c17acf_1 - libjpeg-turbo=3.1.2=hb03c661_0 - - libjxl=0.11.1=hf08fa70_5 + - libjxl=0.11.2=ha09017c_0 - liblapack=3.11.0=5_h47877c9_openblas - - liblzma=5.8.1=hb9d3cd8_2 - - libnghttp2=1.67.0=had1ee68_0 - - libnsl=2.0.1=hb9d3cd8_1 + - liblzma=5.8.2=hb03c661_0 + - libmpdec=4.0.0=hb03c661_1 + - libnghttp2=1.68.1=h877daf1_0 - libopenblas=0.3.30=pthreads_h94d23a6_4 - - libpng=1.6.53=h421ea60_0 - - libsqlite=3.51.1=hf4e2dac_1 + - libpng=1.6.55=h421ea60_0 + - libsqlite=3.52.0=hf4e2dac_0 - libssh2=1.11.1=hcf80075_0 - - libstdcxx=15.2.0=h934c35e_16 - - libstdcxx-ng=15.2.0=hdf11a46_16 + - libstdcxx=15.2.0=h934c35e_18 + - libstdcxx-ng=15.2.0=hdf11a46_18 - libtiff=4.7.1=h9d88235_1 - libuuid=2.41.3=h5347b49_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 - locket=1.0.0=pyhd8ed1ab_0 - lz4-c=1.10.0=h5888daf_1 - - markupsafe=3.0.3=py311h3778330_0 - - matplotlib-base=3.8.4=py311ha4ca890_2 + - markupsafe=3.0.3=py313h3dea7bd_1 + - matplotlib-base=3.10.8=py313h683a580_0 - munkres=1.1.4=pyhd8ed1ab_1 - - narwhals=2.15.0=pyhcf101f3_0 + - narwhals=2.18.0=pyhcf101f3_0 - ncurses=6.5=h2d0b736_3 - nest-asyncio=1.6.0=pyhd8ed1ab_1 - networkx=3.6.1=pyhcf101f3_0 - - numpy=1.26.4=py311h64a7726_0 + - numpy=2.4.3=py313hf6604e3_0 - openjpeg=2.5.4=h55fea9a_0 - - openjph=0.26.0=h8d634f6_0 - - openssl=3.6.0=h26f9b46_0 - - packaging=25.0=pyh29332c3_1 + - openjph=0.26.3=h8d634f6_0 + - openssl=3.6.1=h35e630c_1 + - packaging=26.0=pyhcf101f3_0 - partd=1.4.2=pyhd8ed1ab_0 - - pillow=10.3.0=py311h82a398c_1 - - pip=25.3=pyh8b19718_0 - - plotly=6.5.1=pyhd8ed1ab_0 + - pillow=12.1.1=py313h80991f8_0 + - pip=26.0.1=pyh145f28c_0 + - plotly=6.6.0=pyhd8ed1ab_0 - proxy-tools=0.1.0=pyhd8ed1ab_0 - pthread-stubs=0.4=hb9d3cd8_1002 - pycparser=2.22=pyh29332c3_1 - pydantic=2.12.5=pyhcf101f3_1 - - pydantic-core=2.41.5=py311h902ca64_1 - - pyparsing=3.3.1=pyhcf101f3_0 + - pydantic-core=2.41.5=py313h843e2db_1 + - pyparsing=3.3.2=pyhcf101f3_0 - pysocks=1.7.1=pyha55dd90_7 - - python=3.11.14=hd63d673_2_cpython + - python=3.13.12=hc97d973_100_cp313 - python-dateutil=2.9.0.post0=pyhe01879c_2 - - python_abi=3.11=8_cp311 + - python_abi=3.13=8_cp313 - pythonnet=3.0.5=pyhd8ed1ab_0 - - pywavelets=1.9.0=py311h0372a8f_2 - - pyyaml=6.0.3=py311h3778330_0 - - rav1e=0.7.1=h8fae777_3 + - pyyaml=6.0.3=py313h3dea7bd_1 + - qhull=2020.2=h434a139_5 + - rav1e=0.8.1=h1fbca29_0 - readline=8.3=h853b02a_0 - requests=2.32.5=pyhcf101f3_1 - retrying=1.4.2=pyhe01879c_0 - - scikit-image=0.25.2=py311hed34c8f_2 - - scipy=1.14.1=py311he9a78e4_2 - - setuptools=80.9.0=pyhff2d567_0 + - scikit-image=0.26.0=np2py313hb172dc5_0 + - scipy=1.17.1=py313h4b8bb8b_0 + - setuptools=82.0.1=pyh332efcf_0 - six=1.17.0=pyhe01879c_1 - snappy=1.2.2=h03e3b7b_1 - - svt-av1=3.1.2=hecca717_0 - - tifffile=2025.12.20=pyhd8ed1ab_0 - - tk=8.6.13=noxft_ha0e22de_103 + - svt-av1=4.0.1=hecca717_0 + - tifffile=2026.3.3=pyhd8ed1ab_0 + - tk=8.6.13=noxft_h366c992_103 - toolz=1.1.0=pyhd8ed1ab_1 - - tqdm=4.67.1=pyhd8ed1ab_1 + - tqdm=4.67.3=pyh8f84b5b_0 - typing-extensions=4.15.0=h396c80c_0 - typing-inspection=0.4.2=pyhd8ed1ab_1 - typing_extensions=4.15.0=pyhcf101f3_0 - tzdata=2025c=hc9c84f9_1 - - unicodedata2=17.0.0=py311h49ec1c0_1 - urllib3=2.6.3=pyhd8ed1ab_0 - waitress=3.0.2=pyhcf101f3_2 - - werkzeug=3.1.5=pyhcf101f3_0 - - wheel=0.45.1=pyhd8ed1ab_1 + - werkzeug=3.1.6=pyhcf101f3_0 - xorg-libxau=1.0.12=hb03c661_1 - xorg-libxdmcp=1.1.5=hb03c661_1 - yaml=0.2.5=h280c20c_3 - zfp=1.0.1=h909a3a2_5 - zipp=3.23.0=pyhcf101f3_1 - - zlib-ng=2.3.2=hceb46e0_1 + - zlib-ng=2.3.3=hceb46e0_1 - zstd=1.5.7=hb78ec9c_6 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@fb86adf72fb82ea23c8904a39585982ca8793c52 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@771ae87ccae825e2eae4058b5f51fd6d5f4791cf - pywebview == 6.1 variables: diff --git a/environments/py-3.11-win-64-dev-raw.conda.lock.yml b/environments/py-3.13-win-64-dev-raw.conda.lock.yml similarity index 56% rename from environments/py-3.11-win-64-dev-raw.conda.lock.yml rename to environments/py-3.13-win-64-dev-raw.conda.lock.yml index 82b9fca..e7521d4 100644 --- a/environments/py-3.11-win-64-dev-raw.conda.lock.yml +++ b/environments/py-3.13-win-64-dev-raw.conda.lock.yml @@ -1,161 +1,160 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: ce882c7539d9f36df2c459eb4173f32fd65264a942157d7df942da94d5133bec +# input_hash: 4ad3d015d7c3f5e92954ed8c0eefb5299f73c800080ae90b08af605aa02ed192 channels: - conda-forge - nodefaults dependencies: - - _libavif_api=1.3.0=h57928b3_2 - - _openmp_mutex=4.5=2_gnu + - _libavif_api=1.4.0=h57928b3_0 + - _openmp_mutex=4.5=20_gnu - alabaster=1.0.0=pyhd8ed1ab_1 - annotated-types=0.7.0=pyhd8ed1ab_1 - aom=3.9.1=he0c23c2_0 - - astroid=4.0.3=py311h1ea47a8_0 - - babel=2.17.0=pyhd8ed1ab_0 - - backports.zstd=1.3.0=py311h71c1bcc_0 + - astroid=4.0.4=py313hfa70ccb_0 + - babel=2.18.0=pyhcf101f3_1 + - backports.zstd=1.3.0=py313h2a31948_0 - blinker=1.9.0=pyhff2d567_0 - blosc=1.21.6=hfd34d9b_1 - brotli=1.2.0=h2d644bc_1 - brotli-bin=1.2.0=hfd05255_1 - - brotli-python=1.2.0=py311hc5da9e4_1 - - bzip2=1.0.8=h0ad9c76_8 - - c-blosc2=2.22.0=h2af8807_1 - - ca-certificates=2026.1.4=h4c7d964_0 + - brotli-python=1.2.0=py313h3ebfc14_1 + - bzip2=1.0.8=h0ad9c76_9 + - c-blosc2=2.23.1=h2af8807_0 + - ca-certificates=2026.2.25=h4c7d964_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2026.1.4=pyhd8ed1ab_0 - - charls=2.4.2=h1537add_0 - - charset-normalizer=3.4.4=pyhd8ed1ab_0 + - certifi=2026.2.25=pyhd8ed1ab_0 + - charls=2.4.3=h7cafa3a_0 + - charset-normalizer=3.4.6=pyhd8ed1ab_0 - click=8.3.1=pyha7b4d00_1 - cloudpickle=3.1.2=pyhcf101f3_1 - colorama=0.4.6=pyhd8ed1ab_1 - - contourpy=1.3.3=py311h3fd045d_3 - - coverage=7.13.1=py311h3f79411_0 + - contourpy=1.3.3=py313h1a38498_4 + - coverage=7.13.5=py313hd650c13_0 - cycler=0.12.1=pyhcf101f3_2 - - dash=3.3.0=pyhd8ed1ab_0 + - dash=3.4.0=pyhd8ed1ab_0 - dash-ag-grid=32.3.4=pyhd8ed1ab_0 - dash-bootstrap-components=2.0.4=pyhcf101f3_0 - dash-core-components=2.0.0=pyhd8ed1ab_1 - dash-daq=0.6.0=pyhd8ed1ab_0 - dash-html-components=2.0.0=pyhd8ed1ab_2 - dash-table=5.0.0=pyhd8ed1ab_1 - - dask-core=2025.3.0=pyhd8ed1ab_0 + - dask-core=2025.3.1=pyhd8ed1ab_0 - dav1d=1.2.1=hcfcfb64_0 - - dill=0.4.0=pyhcf101f3_1 + - dill=0.4.1=pyhcf101f3_0 - docutils=0.21.2=pyhd8ed1ab_1 - exceptiongroup=1.3.1=pyhd8ed1ab_0 - - flask=3.1.2=pyhd8ed1ab_0 - - fonttools=4.61.1=py311h3f79411_0 - - freetype=2.14.1=h57928b3_0 - - fsspec=2025.12.0=pyhd8ed1ab_0 + - flask=3.1.3=pyhcf101f3_1 + - fonttools=4.62.0=py313hd650c13_0 + - freetype=2.14.2=h57928b3_0 + - fsspec=2026.2.0=pyhd8ed1ab_0 - giflib=5.2.2=h64bf75a_0 - h2=4.3.0=pyhcf101f3_0 - - h5py=3.15.1=nompi_py311hc40ba4b_101 - - hdf5=1.14.6=nompi_h89f0904_104 + - h5py=3.15.1=nompi_py313hf7f959b_101 + - hdf5=1.14.6=nompi_hae35d4c_106 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - - icu=78.2=h637d24d_0 - idna=3.11=pyhd8ed1ab_0 - - imagecodecs=2026.1.1=py311h1fd7c61_0 + - imagecodecs=2026.3.6=py313h43f6f17_1 - imageio=2.37.0=pyhfb79c49_0 - - imagesize=1.4.1=pyhd8ed1ab_0 + - imagesize=2.0.0=pyhd8ed1ab_0 - importlib-metadata=8.7.0=pyhe01879c_1 - iniconfig=2.3.0=pyhd8ed1ab_0 - - isort=7.0.0=pyhd8ed1ab_0 + - isort=8.0.1=pyhd8ed1ab_0 - itsdangerous=2.2.0=pyhd8ed1ab_1 - jinja2=3.1.6=pyhcf101f3_1 - jxrlib=1.1=hcfcfb64_3 - - kiwisolver=1.4.9=py311h275cad7_2 - - krb5=1.21.3=hdf4eb48_0 - - lazy-loader=0.4=pyhd8ed1ab_2 - - lcms2=2.17=hbcf6048_0 - - lerc=4.0.0=h6470a55_1 - - libaec=1.1.4=h20038f6_0 - - libavif16=1.3.0=he916da2_2 + - kiwisolver=1.5.0=py313h1a38498_0 + - krb5=1.22.2=h0ea6238_0 + - lazy-loader=0.5=pyhd8ed1ab_0 + - lcms2=2.18=hf2c6c5f_0 + - lerc=4.1.0=hd936e49_0 + - libaec=1.1.5=haf901d7_0 + - libavif16=1.4.0=h41d0b9c_0 - libblas=3.11.0=5_hf2e6a31_mkl - libbrotlicommon=1.2.0=hfd05255_1 - libbrotlidec=1.2.0=hfd05255_1 - libbrotlienc=1.2.0=hfd05255_1 - libcblas=3.11.0=5_h2a3cdd5_mkl - - libcurl=8.18.0=h43ecb02_0 + - libcurl=8.19.0=h8206538_0 - libdeflate=1.25=h51727cc_0 - - libexpat=2.7.3=hac47afa_0 - - libffi=3.5.2=h52bdfb6_0 - - libfreetype=2.14.1=h57928b3_0 - - libfreetype6=2.14.1=hdbac1cb_0 - - libgcc=15.2.0=h8ee18e1_16 - - libgomp=15.2.0=h8ee18e1_16 + - libexpat=2.7.4=hac47afa_0 + - libffi=3.5.2=h3d046cb_0 + - libfreetype=2.14.2=h57928b3_0 + - libfreetype6=2.14.2=hdbac1cb_0 + - libgcc=15.2.0=h8ee18e1_18 + - libgomp=15.2.0=h8ee18e1_18 - libhwloc=2.12.2=default_h4379cf1_1000 - libhwy=1.3.0=ha71e874_1 - libiconv=1.18=hc1393d2_2 - libjpeg-turbo=3.1.2=hfd05255_0 - - libjxl=0.11.1=hac9b6f3_5 + - libjxl=0.11.2=hf3f85d1_0 - liblapack=3.11.0=5_hf9ab0e9_mkl - - liblzma=5.8.1=h2466b09_2 - - libpng=1.6.53=h7351971_0 - - libsqlite=3.51.1=hf5d6505_1 + - liblzma=5.8.2=hfd05255_0 + - libmpdec=4.0.0=hfd05255_1 + - libpng=1.6.55=h7351971_0 + - libsqlite=3.52.0=hf5d6505_0 - libssh2=1.11.1=h9aa295b_0 - libtiff=4.7.1=h8f73337_1 - libwebp-base=1.6.0=h4d5522a_0 - libwinpthread=12.0.0.r4.gg4f2fc60ca=h57928b3_10 - libxcb=1.17.0=h0e4246c_0 - - libxml2=2.15.1=h779ef1b_1 - - libxml2-16=2.15.1=h3cfd58e_1 + - libxml2=2.15.2=h5d26750_0 + - libxml2-16=2.15.2=h692994f_0 - libzlib=1.3.1=h2466b09_2 - libzopfli=1.0.3=h0e60522_0 - - llvm-openmp=21.1.8=h4fa8253_0 + - llvm-openmp=22.1.0=h4fa8253_0 - locket=1.0.0=pyhd8ed1ab_0 - lz4-c=1.10.0=h2466b09_1 - - markupsafe=3.0.3=py311h3f79411_0 - - matplotlib-base=3.8.4=py311h9b31f6e_2 + - markupsafe=3.0.3=py313hd650c13_1 + - matplotlib-base=3.10.8=py313he1ded55_0 - mccabe=0.7.0=pyhd8ed1ab_1 - mkl=2025.3.0=hac47afa_455 - munkres=1.1.4=pyhd8ed1ab_1 - - narwhals=2.15.0=pyhcf101f3_0 + - narwhals=2.18.0=pyhcf101f3_0 - nest-asyncio=1.6.0=pyhd8ed1ab_1 - networkx=3.6.1=pyhcf101f3_0 - - numpy=1.26.4=py311h0b4df5a_0 - - openjpeg=2.5.4=h24db6dd_0 - - openjph=0.26.0=hf13a347_0 - - openssl=3.6.0=h725018a_0 - - packaging=25.0=pyh29332c3_1 + - numpy=2.4.3=py313ha8dc839_0 + - openjpeg=2.5.4=h0e57b4f_0 + - openjph=0.26.3=hf13a347_0 + - openssl=3.6.1=hf411b9b_1 + - packaging=26.0=pyhcf101f3_0 - partd=1.4.2=pyhd8ed1ab_0 - - pillow=10.3.0=py311h5592be9_1 - - pip=25.3=pyh8b19718_0 - - platformdirs=4.5.1=pyhcf101f3_0 - - plotly=6.5.1=pyhd8ed1ab_0 + - pillow=12.1.1=py313h38f99e1_0 + - pip=26.0.1=pyh145f28c_0 + - platformdirs=4.9.4=pyhcf101f3_0 + - plotly=6.6.0=pyhd8ed1ab_0 - pluggy=1.6.0=pyhf9edf01_1 - pthread-stubs=0.4=h0e40799_1002 - pydantic=2.12.5=pyhcf101f3_1 - - pydantic-core=2.41.5=py311hf51aa87_1 + - pydantic-core=2.41.5=py313hfbe8231_1 - pygments=2.19.2=pyhd8ed1ab_0 - - pylint=4.0.4=pyhcf101f3_0 - - pyparsing=3.3.1=pyhcf101f3_0 + - pylint=4.0.5=pyhcf101f3_0 + - pyparsing=3.3.2=pyhcf101f3_0 - pysocks=1.7.1=pyh09c184e_7 - pytest=9.0.2=pyhcf101f3_0 - pytest-cov=7.0.0=pyhcf101f3_1 - - python=3.11.14=h0159041_2_cpython + - python=3.13.12=h09917c8_100_cp313 - python-dateutil=2.9.0.post0=pyhe01879c_2 - - python_abi=3.11=8_cp311 - - pytz=2025.2=pyhd8ed1ab_0 - - pywavelets=1.9.0=py311h17033d2_2 - - pyyaml=6.0.3=py311h3f79411_0 - - rav1e=0.7.1=ha073cba_3 + - python_abi=3.13=8_cp313 + - pyyaml=6.0.3=py313hd650c13_1 + - qhull=2020.2=hc790b64_5 + - rav1e=0.8.1=h007690e_0 - requests=2.32.5=pyhcf101f3_1 - retrying=1.4.2=pyhe01879c_0 - roman-numerals=4.1.0=pyhd8ed1ab_0 - roman-numerals-py=4.1.0=pyhd8ed1ab_0 - - scikit-image=0.25.2=py311h11fd7f3_2 - - scipy=1.14.1=py311hf16d85f_2 - - setuptools=80.9.0=pyhff2d567_0 + - scikit-image=0.26.0=np2py313h33c6dc1_0 + - scipy=1.17.1=py313he51e9a2_0 + - setuptools=82.0.1=pyh332efcf_0 - six=1.17.0=pyhe01879c_1 - snappy=1.2.2=h7fa0ca8_1 - snowballstemmer=3.0.1=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 + - sphinx-rtd-theme=3.1.0=hd8ed1ab_0 + - sphinx_rtd_theme=3.1.0=pyha770c72_0 - sphinxcontrib-applehelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-devhelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-htmlhelp=2.1.0=pyhd8ed1ab_1 @@ -163,39 +162,37 @@ dependencies: - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_1 - sphinxcontrib-qthelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_1 - - svt-av1=3.1.2=hac47afa_0 + - svt-av1=4.0.1=hac47afa_0 - tbb=2022.3.0=h3155e25_2 - - tifffile=2025.12.20=pyhd8ed1ab_0 - - tk=8.6.13=h2c6b04d_3 - - tomli=2.3.0=pyhcf101f3_0 - - tomlkit=0.13.3=pyha770c72_0 + - tifffile=2026.3.3=pyhd8ed1ab_0 + - tk=8.6.13=h6ed50ae_3 + - tomli=2.4.0=pyhcf101f3_0 + - tomlkit=0.14.0=pyha770c72_0 - toolz=1.1.0=pyhd8ed1ab_1 - - tqdm=4.67.1=pyhd8ed1ab_1 + - tqdm=4.67.3=pyha7b4d00_0 - typing-extensions=4.15.0=h396c80c_0 - typing-inspection=0.4.2=pyhd8ed1ab_1 - typing_extensions=4.15.0=pyhcf101f3_0 - tzdata=2025c=hc9c84f9_1 - ucrt=10.0.26100.0=h57928b3_0 - - unicodedata2=17.0.0=py311h3485c13_1 - urllib3=2.6.3=pyhd8ed1ab_0 - vc=14.3=h41ae7f8_34 - vc14_runtime=14.44.35208=h818238b_34 - vcomp14=14.44.35208=h818238b_34 - vs2015_runtime=14.44.35208=h38c0c73_34 - waitress=3.0.2=pyhcf101f3_2 - - werkzeug=3.1.5=pyhcf101f3_0 - - wheel=0.45.1=pyhd8ed1ab_1 + - werkzeug=3.1.6=pyhcf101f3_0 - win_inet_pton=1.1.0=pyh7428d3b_8 - xorg-libxau=1.0.12=hba3369d_1 - xorg-libxdmcp=1.1.5=hba3369d_1 - yaml=0.2.5=h6a83c73_3 - zfp=1.0.1=h2f0f97f_5 - zipp=3.23.0=pyhcf101f3_1 - - zlib-ng=2.3.2=h0261ad2_1 + - zlib-ng=2.3.3=h0261ad2_1 - zstd=1.5.7=h534d264_6 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@fb86adf72fb82ea23c8904a39585982ca8793c52 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@771ae87ccae825e2eae4058b5f51fd6d5f4791cf variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.11-win-64-dev.conda.lock.yml b/environments/py-3.13-win-64-dev.conda.lock.yml similarity index 57% rename from environments/py-3.11-win-64-dev.conda.lock.yml rename to environments/py-3.13-win-64-dev.conda.lock.yml index dba2c54..c7e1219 100644 --- a/environments/py-3.11-win-64-dev.conda.lock.yml +++ b/environments/py-3.13-win-64-dev.conda.lock.yml @@ -1,167 +1,166 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: ce882c7539d9f36df2c459eb4173f32fd65264a942157d7df942da94d5133bec +# input_hash: 4ad3d015d7c3f5e92954ed8c0eefb5299f73c800080ae90b08af605aa02ed192 channels: - conda-forge - nodefaults dependencies: - - _libavif_api=1.3.0=h57928b3_2 - - _openmp_mutex=4.5=2_gnu + - _libavif_api=1.4.0=h57928b3_0 + - _openmp_mutex=4.5=20_gnu - alabaster=1.0.0=pyhd8ed1ab_1 - annotated-types=0.7.0=pyhd8ed1ab_1 - aom=3.9.1=he0c23c2_0 - - astroid=4.0.3=py311h1ea47a8_0 - - babel=2.17.0=pyhd8ed1ab_0 - - backports.zstd=1.3.0=py311h71c1bcc_0 + - astroid=4.0.4=py313hfa70ccb_0 + - babel=2.18.0=pyhcf101f3_1 + - backports.zstd=1.3.0=py313h2a31948_0 - blinker=1.9.0=pyhff2d567_0 - blosc=1.21.6=hfd34d9b_1 - bottle=0.13.4=pyhe01879c_0 - brotli=1.2.0=h2d644bc_1 - brotli-bin=1.2.0=hfd05255_1 - - brotli-python=1.2.0=py311hc5da9e4_1 - - bzip2=1.0.8=h0ad9c76_8 - - c-blosc2=2.22.0=h2af8807_1 - - ca-certificates=2026.1.4=h4c7d964_0 + - brotli-python=1.2.0=py313h3ebfc14_1 + - bzip2=1.0.8=h0ad9c76_9 + - c-blosc2=2.23.1=h2af8807_0 + - ca-certificates=2026.2.25=h4c7d964_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2026.1.4=pyhd8ed1ab_0 - - cffi=2.0.0=py311h3485c13_1 - - charls=2.4.2=h1537add_0 - - charset-normalizer=3.4.4=pyhd8ed1ab_0 + - certifi=2026.2.25=pyhd8ed1ab_0 + - cffi=2.0.0=py313h5ea7bf4_1 + - charls=2.4.3=h7cafa3a_0 + - charset-normalizer=3.4.6=pyhd8ed1ab_0 - click=8.3.1=pyha7b4d00_1 - cloudpickle=3.1.2=pyhcf101f3_1 - clr_loader=0.2.10=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - - contourpy=1.3.3=py311h3fd045d_3 - - coverage=7.13.1=py311h3f79411_0 + - contourpy=1.3.3=py313h1a38498_4 + - coverage=7.13.5=py313hd650c13_0 - cycler=0.12.1=pyhcf101f3_2 - - dash=3.3.0=pyhd8ed1ab_0 + - dash=3.4.0=pyhd8ed1ab_0 - dash-ag-grid=32.3.4=pyhd8ed1ab_0 - dash-bootstrap-components=2.0.4=pyhcf101f3_0 - dash-core-components=2.0.0=pyhd8ed1ab_1 - dash-daq=0.6.0=pyhd8ed1ab_0 - dash-html-components=2.0.0=pyhd8ed1ab_2 - dash-table=5.0.0=pyhd8ed1ab_1 - - dask-core=2025.3.0=pyhd8ed1ab_0 + - dask-core=2025.3.1=pyhd8ed1ab_0 - dav1d=1.2.1=hcfcfb64_0 - - dill=0.4.0=pyhcf101f3_1 + - dill=0.4.1=pyhcf101f3_0 - docutils=0.21.2=pyhd8ed1ab_1 - exceptiongroup=1.3.1=pyhd8ed1ab_0 - - flask=3.1.2=pyhd8ed1ab_0 - - fonttools=4.61.1=py311h3f79411_0 - - freetype=2.14.1=h57928b3_0 - - fsspec=2025.12.0=pyhd8ed1ab_0 + - flask=3.1.3=pyhcf101f3_1 + - fonttools=4.62.0=py313hd650c13_0 + - freetype=2.14.2=h57928b3_0 + - fsspec=2026.2.0=pyhd8ed1ab_0 - giflib=5.2.2=h64bf75a_0 - h2=4.3.0=pyhcf101f3_0 - - h5py=3.15.1=nompi_py311hc40ba4b_101 - - hdf5=1.14.6=nompi_h89f0904_104 + - h5py=3.15.1=nompi_py313hf7f959b_101 + - hdf5=1.14.6=nompi_hae35d4c_106 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - - icu=78.2=h637d24d_0 - idna=3.11=pyhd8ed1ab_0 - - imagecodecs=2026.1.1=py311h1fd7c61_0 + - imagecodecs=2026.3.6=py313h43f6f17_1 - imageio=2.37.0=pyhfb79c49_0 - - imagesize=1.4.1=pyhd8ed1ab_0 + - imagesize=2.0.0=pyhd8ed1ab_0 - importlib-metadata=8.7.0=pyhe01879c_1 - iniconfig=2.3.0=pyhd8ed1ab_0 - - isort=7.0.0=pyhd8ed1ab_0 + - isort=8.0.1=pyhd8ed1ab_0 - itsdangerous=2.2.0=pyhd8ed1ab_1 - jinja2=3.1.6=pyhcf101f3_1 - jxrlib=1.1=hcfcfb64_3 - - kiwisolver=1.4.9=py311h275cad7_2 - - krb5=1.21.3=hdf4eb48_0 - - lazy-loader=0.4=pyhd8ed1ab_2 - - lcms2=2.17=hbcf6048_0 - - lerc=4.0.0=h6470a55_1 - - libaec=1.1.4=h20038f6_0 - - libavif16=1.3.0=he916da2_2 + - kiwisolver=1.5.0=py313h1a38498_0 + - krb5=1.22.2=h0ea6238_0 + - lazy-loader=0.5=pyhd8ed1ab_0 + - lcms2=2.18=hf2c6c5f_0 + - lerc=4.1.0=hd936e49_0 + - libaec=1.1.5=haf901d7_0 + - libavif16=1.4.0=h41d0b9c_0 - libblas=3.11.0=5_hf2e6a31_mkl - libbrotlicommon=1.2.0=hfd05255_1 - libbrotlidec=1.2.0=hfd05255_1 - libbrotlienc=1.2.0=hfd05255_1 - libcblas=3.11.0=5_h2a3cdd5_mkl - - libcurl=8.18.0=h43ecb02_0 + - libcurl=8.19.0=h8206538_0 - libdeflate=1.25=h51727cc_0 - - libexpat=2.7.3=hac47afa_0 - - libffi=3.5.2=h52bdfb6_0 - - libfreetype=2.14.1=h57928b3_0 - - libfreetype6=2.14.1=hdbac1cb_0 - - libgcc=15.2.0=h8ee18e1_16 - - libgomp=15.2.0=h8ee18e1_16 + - libexpat=2.7.4=hac47afa_0 + - libffi=3.5.2=h3d046cb_0 + - libfreetype=2.14.2=h57928b3_0 + - libfreetype6=2.14.2=hdbac1cb_0 + - libgcc=15.2.0=h8ee18e1_18 + - libgomp=15.2.0=h8ee18e1_18 - libhwloc=2.12.2=default_h4379cf1_1000 - libhwy=1.3.0=ha71e874_1 - libiconv=1.18=hc1393d2_2 - libjpeg-turbo=3.1.2=hfd05255_0 - - libjxl=0.11.1=hac9b6f3_5 + - libjxl=0.11.2=hf3f85d1_0 - liblapack=3.11.0=5_hf9ab0e9_mkl - - liblzma=5.8.1=h2466b09_2 - - libpng=1.6.53=h7351971_0 - - libsqlite=3.51.1=hf5d6505_1 + - liblzma=5.8.2=hfd05255_0 + - libmpdec=4.0.0=hfd05255_1 + - libpng=1.6.55=h7351971_0 + - libsqlite=3.52.0=hf5d6505_0 - libssh2=1.11.1=h9aa295b_0 - libtiff=4.7.1=h8f73337_1 - libwebp-base=1.6.0=h4d5522a_0 - libwinpthread=12.0.0.r4.gg4f2fc60ca=h57928b3_10 - libxcb=1.17.0=h0e4246c_0 - - libxml2=2.15.1=h779ef1b_1 - - libxml2-16=2.15.1=h3cfd58e_1 + - libxml2=2.15.2=h5d26750_0 + - libxml2-16=2.15.2=h692994f_0 - libzlib=1.3.1=h2466b09_2 - libzopfli=1.0.3=h0e60522_0 - - llvm-openmp=21.1.8=h4fa8253_0 + - llvm-openmp=22.1.0=h4fa8253_0 - locket=1.0.0=pyhd8ed1ab_0 - lz4-c=1.10.0=h2466b09_1 - - markupsafe=3.0.3=py311h3f79411_0 - - matplotlib-base=3.8.4=py311h9b31f6e_2 + - markupsafe=3.0.3=py313hd650c13_1 + - matplotlib-base=3.10.8=py313he1ded55_0 - mccabe=0.7.0=pyhd8ed1ab_1 - mkl=2025.3.0=hac47afa_455 - munkres=1.1.4=pyhd8ed1ab_1 - - narwhals=2.15.0=pyhcf101f3_0 + - narwhals=2.18.0=pyhcf101f3_0 - nest-asyncio=1.6.0=pyhd8ed1ab_1 - networkx=3.6.1=pyhcf101f3_0 - - numpy=1.26.4=py311h0b4df5a_0 - - openjpeg=2.5.4=h24db6dd_0 - - openjph=0.26.0=hf13a347_0 - - openssl=3.6.0=h725018a_0 - - packaging=25.0=pyh29332c3_1 + - numpy=2.4.3=py313ha8dc839_0 + - openjpeg=2.5.4=h0e57b4f_0 + - openjph=0.26.3=hf13a347_0 + - openssl=3.6.1=hf411b9b_1 + - packaging=26.0=pyhcf101f3_0 - partd=1.4.2=pyhd8ed1ab_0 - - pillow=10.3.0=py311h5592be9_1 - - pip=25.3=pyh8b19718_0 - - platformdirs=4.5.1=pyhcf101f3_0 - - plotly=6.5.1=pyhd8ed1ab_0 + - pillow=12.1.1=py313h38f99e1_0 + - pip=26.0.1=pyh145f28c_0 + - platformdirs=4.9.4=pyhcf101f3_0 + - plotly=6.6.0=pyhd8ed1ab_0 - pluggy=1.6.0=pyhf9edf01_1 - proxy-tools=0.1.0=pyhd8ed1ab_0 - pthread-stubs=0.4=h0e40799_1002 - pycparser=2.22=pyh29332c3_1 - pydantic=2.12.5=pyhcf101f3_1 - - pydantic-core=2.41.5=py311hf51aa87_1 + - pydantic-core=2.41.5=py313hfbe8231_1 - pygments=2.19.2=pyhd8ed1ab_0 - - pylint=4.0.4=pyhcf101f3_0 - - pyparsing=3.3.1=pyhcf101f3_0 + - pylint=4.0.5=pyhcf101f3_0 + - pyparsing=3.3.2=pyhcf101f3_0 - pysocks=1.7.1=pyh09c184e_7 - pytest=9.0.2=pyhcf101f3_0 - pytest-cov=7.0.0=pyhcf101f3_1 - - python=3.11.14=h0159041_2_cpython + - python=3.13.12=h09917c8_100_cp313 - python-dateutil=2.9.0.post0=pyhe01879c_2 - - python_abi=3.11=8_cp311 + - python_abi=3.13=8_cp313 - pythonnet=3.0.5=pyhd8ed1ab_0 - - pytz=2025.2=pyhd8ed1ab_0 - - pywavelets=1.9.0=py311h17033d2_2 - - pyyaml=6.0.3=py311h3f79411_0 - - rav1e=0.7.1=ha073cba_3 + - pyyaml=6.0.3=py313hd650c13_1 + - qhull=2020.2=hc790b64_5 + - rav1e=0.8.1=h007690e_0 - requests=2.32.5=pyhcf101f3_1 - retrying=1.4.2=pyhe01879c_0 - roman-numerals=4.1.0=pyhd8ed1ab_0 - roman-numerals-py=4.1.0=pyhd8ed1ab_0 - - scikit-image=0.25.2=py311h11fd7f3_2 - - scipy=1.14.1=py311hf16d85f_2 - - setuptools=80.9.0=pyhff2d567_0 + - scikit-image=0.26.0=np2py313h33c6dc1_0 + - scipy=1.17.1=py313he51e9a2_0 + - setuptools=82.0.1=pyh332efcf_0 - six=1.17.0=pyhe01879c_1 - snappy=1.2.2=h7fa0ca8_1 - snowballstemmer=3.0.1=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 + - sphinx-rtd-theme=3.1.0=hd8ed1ab_0 + - sphinx_rtd_theme=3.1.0=pyha770c72_0 - sphinxcontrib-applehelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-devhelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-htmlhelp=2.1.0=pyhd8ed1ab_1 @@ -169,39 +168,37 @@ dependencies: - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_1 - sphinxcontrib-qthelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_1 - - svt-av1=3.1.2=hac47afa_0 + - svt-av1=4.0.1=hac47afa_0 - tbb=2022.3.0=h3155e25_2 - - tifffile=2025.12.20=pyhd8ed1ab_0 - - tk=8.6.13=h2c6b04d_3 - - tomli=2.3.0=pyhcf101f3_0 - - tomlkit=0.13.3=pyha770c72_0 + - tifffile=2026.3.3=pyhd8ed1ab_0 + - tk=8.6.13=h6ed50ae_3 + - tomli=2.4.0=pyhcf101f3_0 + - tomlkit=0.14.0=pyha770c72_0 - toolz=1.1.0=pyhd8ed1ab_1 - - tqdm=4.67.1=pyhd8ed1ab_1 + - tqdm=4.67.3=pyha7b4d00_0 - typing-extensions=4.15.0=h396c80c_0 - typing-inspection=0.4.2=pyhd8ed1ab_1 - typing_extensions=4.15.0=pyhcf101f3_0 - tzdata=2025c=hc9c84f9_1 - ucrt=10.0.26100.0=h57928b3_0 - - unicodedata2=17.0.0=py311h3485c13_1 - urllib3=2.6.3=pyhd8ed1ab_0 - vc=14.3=h41ae7f8_34 - vc14_runtime=14.44.35208=h818238b_34 - vcomp14=14.44.35208=h818238b_34 - vs2015_runtime=14.44.35208=h38c0c73_34 - waitress=3.0.2=pyhcf101f3_2 - - werkzeug=3.1.5=pyhcf101f3_0 - - wheel=0.45.1=pyhd8ed1ab_1 + - werkzeug=3.1.6=pyhcf101f3_0 - win_inet_pton=1.1.0=pyh7428d3b_8 - xorg-libxau=1.0.12=hba3369d_1 - xorg-libxdmcp=1.1.5=hba3369d_1 - yaml=0.2.5=h6a83c73_3 - zfp=1.0.1=h2f0f97f_5 - zipp=3.23.0=pyhcf101f3_1 - - zlib-ng=2.3.2=h0261ad2_1 + - zlib-ng=2.3.3=h0261ad2_1 - zstd=1.5.7=h534d264_6 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@fb86adf72fb82ea23c8904a39585982ca8793c52 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@771ae87ccae825e2eae4058b5f51fd6d5f4791cf - pywebview == 6.1 variables: diff --git a/environments/py-3.11-win-64-raw.conda.lock.yml b/environments/py-3.13-win-64-raw.conda.lock.yml similarity index 54% rename from environments/py-3.11-win-64-raw.conda.lock.yml rename to environments/py-3.13-win-64-raw.conda.lock.yml index 47fdf28..c518b6c 100644 --- a/environments/py-3.11-win-64-raw.conda.lock.yml +++ b/environments/py-3.13-win-64-raw.conda.lock.yml @@ -1,167 +1,165 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: ce882c7539d9f36df2c459eb4173f32fd65264a942157d7df942da94d5133bec +# input_hash: 4ad3d015d7c3f5e92954ed8c0eefb5299f73c800080ae90b08af605aa02ed192 channels: - conda-forge - nodefaults dependencies: - - _libavif_api=1.3.0=h57928b3_2 - - _openmp_mutex=4.5=2_gnu + - _libavif_api=1.4.0=h57928b3_0 + - _openmp_mutex=4.5=20_gnu - annotated-types=0.7.0=pyhd8ed1ab_1 - aom=3.9.1=he0c23c2_0 - - backports.zstd=1.3.0=py311h71c1bcc_0 + - backports.zstd=1.3.0=py313h2a31948_0 - blinker=1.9.0=pyhff2d567_0 - blosc=1.21.6=hfd34d9b_1 - brotli=1.2.0=h2d644bc_1 - brotli-bin=1.2.0=hfd05255_1 - - brotli-python=1.2.0=py311hc5da9e4_1 - - bzip2=1.0.8=h0ad9c76_8 - - c-blosc2=2.22.0=h2af8807_1 - - ca-certificates=2026.1.4=h4c7d964_0 + - brotli-python=1.2.0=py313h3ebfc14_1 + - bzip2=1.0.8=h0ad9c76_9 + - c-blosc2=2.23.1=h2af8807_0 + - ca-certificates=2026.2.25=h4c7d964_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2026.1.4=pyhd8ed1ab_0 - - charls=2.4.2=h1537add_0 - - charset-normalizer=3.4.4=pyhd8ed1ab_0 + - certifi=2026.2.25=pyhd8ed1ab_0 + - charls=2.4.3=h7cafa3a_0 + - charset-normalizer=3.4.6=pyhd8ed1ab_0 - click=8.3.1=pyha7b4d00_1 - cloudpickle=3.1.2=pyhcf101f3_1 - colorama=0.4.6=pyhd8ed1ab_1 - - contourpy=1.3.3=py311h3fd045d_3 + - contourpy=1.3.3=py313h1a38498_4 - cycler=0.12.1=pyhcf101f3_2 - - dash=3.3.0=pyhd8ed1ab_0 + - dash=3.4.0=pyhd8ed1ab_0 - dash-ag-grid=32.3.4=pyhd8ed1ab_0 - dash-bootstrap-components=2.0.4=pyhcf101f3_0 - dash-core-components=2.0.0=pyhd8ed1ab_1 - dash-daq=0.6.0=pyhd8ed1ab_0 - dash-html-components=2.0.0=pyhd8ed1ab_2 - dash-table=5.0.0=pyhd8ed1ab_1 - - dask-core=2025.3.0=pyhd8ed1ab_0 + - dask-core=2025.3.1=pyhd8ed1ab_0 - dav1d=1.2.1=hcfcfb64_0 - - flask=3.1.2=pyhd8ed1ab_0 - - fonttools=4.61.1=py311h3f79411_0 - - freetype=2.14.1=h57928b3_0 - - fsspec=2025.12.0=pyhd8ed1ab_0 + - flask=3.1.3=pyhcf101f3_1 + - fonttools=4.62.0=py313hd650c13_0 + - freetype=2.14.2=h57928b3_0 + - fsspec=2026.2.0=pyhd8ed1ab_0 - giflib=5.2.2=h64bf75a_0 - h2=4.3.0=pyhcf101f3_0 - - h5py=3.15.1=nompi_py311hc40ba4b_101 - - hdf5=1.14.6=nompi_h89f0904_104 + - h5py=3.15.1=nompi_py313hf7f959b_101 + - hdf5=1.14.6=nompi_hae35d4c_106 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - - icu=78.2=h637d24d_0 - idna=3.11=pyhd8ed1ab_0 - - imagecodecs=2026.1.1=py311h1fd7c61_0 + - imagecodecs=2026.3.6=py313h43f6f17_1 - imageio=2.37.0=pyhfb79c49_0 - importlib-metadata=8.7.0=pyhe01879c_1 - itsdangerous=2.2.0=pyhd8ed1ab_1 - jinja2=3.1.6=pyhcf101f3_1 - jxrlib=1.1=hcfcfb64_3 - - kiwisolver=1.4.9=py311h275cad7_2 - - krb5=1.21.3=hdf4eb48_0 - - lazy-loader=0.4=pyhd8ed1ab_2 - - lcms2=2.17=hbcf6048_0 - - lerc=4.0.0=h6470a55_1 - - libaec=1.1.4=h20038f6_0 - - libavif16=1.3.0=he916da2_2 + - kiwisolver=1.5.0=py313h1a38498_0 + - krb5=1.22.2=h0ea6238_0 + - lazy-loader=0.5=pyhd8ed1ab_0 + - lcms2=2.18=hf2c6c5f_0 + - lerc=4.1.0=hd936e49_0 + - libaec=1.1.5=haf901d7_0 + - libavif16=1.4.0=h41d0b9c_0 - libblas=3.11.0=5_hf2e6a31_mkl - libbrotlicommon=1.2.0=hfd05255_1 - libbrotlidec=1.2.0=hfd05255_1 - libbrotlienc=1.2.0=hfd05255_1 - libcblas=3.11.0=5_h2a3cdd5_mkl - - libcurl=8.18.0=h43ecb02_0 + - libcurl=8.19.0=h8206538_0 - libdeflate=1.25=h51727cc_0 - - libexpat=2.7.3=hac47afa_0 - - libffi=3.5.2=h52bdfb6_0 - - libfreetype=2.14.1=h57928b3_0 - - libfreetype6=2.14.1=hdbac1cb_0 - - libgcc=15.2.0=h8ee18e1_16 - - libgomp=15.2.0=h8ee18e1_16 + - libexpat=2.7.4=hac47afa_0 + - libffi=3.5.2=h3d046cb_0 + - libfreetype=2.14.2=h57928b3_0 + - libfreetype6=2.14.2=hdbac1cb_0 + - libgcc=15.2.0=h8ee18e1_18 + - libgomp=15.2.0=h8ee18e1_18 - libhwloc=2.12.2=default_h4379cf1_1000 - libhwy=1.3.0=ha71e874_1 - libiconv=1.18=hc1393d2_2 - libjpeg-turbo=3.1.2=hfd05255_0 - - libjxl=0.11.1=hac9b6f3_5 + - libjxl=0.11.2=hf3f85d1_0 - liblapack=3.11.0=5_hf9ab0e9_mkl - - liblzma=5.8.1=h2466b09_2 - - libpng=1.6.53=h7351971_0 - - libsqlite=3.51.1=hf5d6505_1 + - liblzma=5.8.2=hfd05255_0 + - libmpdec=4.0.0=hfd05255_1 + - libpng=1.6.55=h7351971_0 + - libsqlite=3.52.0=hf5d6505_0 - libssh2=1.11.1=h9aa295b_0 - libtiff=4.7.1=h8f73337_1 - libwebp-base=1.6.0=h4d5522a_0 - libwinpthread=12.0.0.r4.gg4f2fc60ca=h57928b3_10 - libxcb=1.17.0=h0e4246c_0 - - libxml2=2.15.1=h779ef1b_1 - - libxml2-16=2.15.1=h3cfd58e_1 + - libxml2=2.15.2=h5d26750_0 + - libxml2-16=2.15.2=h692994f_0 - libzlib=1.3.1=h2466b09_2 - libzopfli=1.0.3=h0e60522_0 - - llvm-openmp=21.1.8=h4fa8253_0 + - llvm-openmp=22.1.0=h4fa8253_0 - locket=1.0.0=pyhd8ed1ab_0 - lz4-c=1.10.0=h2466b09_1 - - markupsafe=3.0.3=py311h3f79411_0 - - matplotlib-base=3.8.4=py311h9b31f6e_2 + - markupsafe=3.0.3=py313hd650c13_1 + - matplotlib-base=3.10.8=py313he1ded55_0 - mkl=2025.3.0=hac47afa_455 - munkres=1.1.4=pyhd8ed1ab_1 - - narwhals=2.15.0=pyhcf101f3_0 + - narwhals=2.18.0=pyhcf101f3_0 - nest-asyncio=1.6.0=pyhd8ed1ab_1 - networkx=3.6.1=pyhcf101f3_0 - - numpy=1.26.4=py311h0b4df5a_0 - - openjpeg=2.5.4=h24db6dd_0 - - openjph=0.26.0=hf13a347_0 - - openssl=3.6.0=h725018a_0 - - packaging=25.0=pyh29332c3_1 + - numpy=2.4.3=py313ha8dc839_0 + - openjpeg=2.5.4=h0e57b4f_0 + - openjph=0.26.3=hf13a347_0 + - openssl=3.6.1=hf411b9b_1 + - packaging=26.0=pyhcf101f3_0 - partd=1.4.2=pyhd8ed1ab_0 - - pillow=10.3.0=py311h5592be9_1 - - pip=25.3=pyh8b19718_0 - - plotly=6.5.1=pyhd8ed1ab_0 + - pillow=12.1.1=py313h38f99e1_0 + - pip=26.0.1=pyh145f28c_0 + - plotly=6.6.0=pyhd8ed1ab_0 - pthread-stubs=0.4=h0e40799_1002 - pydantic=2.12.5=pyhcf101f3_1 - - pydantic-core=2.41.5=py311hf51aa87_1 - - pyparsing=3.3.1=pyhcf101f3_0 + - pydantic-core=2.41.5=py313hfbe8231_1 + - pyparsing=3.3.2=pyhcf101f3_0 - pysocks=1.7.1=pyh09c184e_7 - - python=3.11.14=h0159041_2_cpython + - python=3.13.12=h09917c8_100_cp313 - python-dateutil=2.9.0.post0=pyhe01879c_2 - - python_abi=3.11=8_cp311 - - pywavelets=1.9.0=py311h17033d2_2 - - pyyaml=6.0.3=py311h3f79411_0 - - rav1e=0.7.1=ha073cba_3 + - python_abi=3.13=8_cp313 + - pyyaml=6.0.3=py313hd650c13_1 + - qhull=2020.2=hc790b64_5 + - rav1e=0.8.1=h007690e_0 - requests=2.32.5=pyhcf101f3_1 - retrying=1.4.2=pyhe01879c_0 - - scikit-image=0.25.2=py311h11fd7f3_2 - - scipy=1.14.1=py311hf16d85f_2 - - setuptools=80.9.0=pyhff2d567_0 + - scikit-image=0.26.0=np2py313h33c6dc1_0 + - scipy=1.17.1=py313he51e9a2_0 + - setuptools=82.0.1=pyh332efcf_0 - six=1.17.0=pyhe01879c_1 - snappy=1.2.2=h7fa0ca8_1 - - svt-av1=3.1.2=hac47afa_0 + - svt-av1=4.0.1=hac47afa_0 - tbb=2022.3.0=h3155e25_2 - - tifffile=2025.12.20=pyhd8ed1ab_0 - - tk=8.6.13=h2c6b04d_3 + - tifffile=2026.3.3=pyhd8ed1ab_0 + - tk=8.6.13=h6ed50ae_3 - toolz=1.1.0=pyhd8ed1ab_1 - - tqdm=4.67.1=pyhd8ed1ab_1 + - tqdm=4.67.3=pyha7b4d00_0 - typing-extensions=4.15.0=h396c80c_0 - typing-inspection=0.4.2=pyhd8ed1ab_1 - typing_extensions=4.15.0=pyhcf101f3_0 - tzdata=2025c=hc9c84f9_1 - ucrt=10.0.26100.0=h57928b3_0 - - unicodedata2=17.0.0=py311h3485c13_1 - urllib3=2.6.3=pyhd8ed1ab_0 - vc=14.3=h41ae7f8_34 - vc14_runtime=14.44.35208=h818238b_34 - vcomp14=14.44.35208=h818238b_34 - vs2015_runtime=14.44.35208=h38c0c73_34 - waitress=3.0.2=pyhcf101f3_2 - - werkzeug=3.1.5=pyhcf101f3_0 - - wheel=0.45.1=pyhd8ed1ab_1 + - werkzeug=3.1.6=pyhcf101f3_0 - win_inet_pton=1.1.0=pyh7428d3b_8 - xorg-libxau=1.0.12=hba3369d_1 - xorg-libxdmcp=1.1.5=hba3369d_1 - yaml=0.2.5=h6a83c73_3 - zfp=1.0.1=h2f0f97f_5 - zipp=3.23.0=pyhcf101f3_1 - - zlib-ng=2.3.2=h0261ad2_1 + - zlib-ng=2.3.3=h0261ad2_1 - zstd=1.5.7=h534d264_6 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@fb86adf72fb82ea23c8904a39585982ca8793c52 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@771ae87ccae825e2eae4058b5f51fd6d5f4791cf variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.11-win-64.conda.lock.yml b/environments/py-3.13-win-64.conda.lock.yml similarity index 55% rename from environments/py-3.11-win-64.conda.lock.yml rename to environments/py-3.13-win-64.conda.lock.yml index cb20f83..797ca05 100644 --- a/environments/py-3.11-win-64.conda.lock.yml +++ b/environments/py-3.13-win-64.conda.lock.yml @@ -1,173 +1,171 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: ce882c7539d9f36df2c459eb4173f32fd65264a942157d7df942da94d5133bec +# input_hash: 4ad3d015d7c3f5e92954ed8c0eefb5299f73c800080ae90b08af605aa02ed192 channels: - conda-forge - nodefaults dependencies: - - _libavif_api=1.3.0=h57928b3_2 - - _openmp_mutex=4.5=2_gnu + - _libavif_api=1.4.0=h57928b3_0 + - _openmp_mutex=4.5=20_gnu - annotated-types=0.7.0=pyhd8ed1ab_1 - aom=3.9.1=he0c23c2_0 - - backports.zstd=1.3.0=py311h71c1bcc_0 + - backports.zstd=1.3.0=py313h2a31948_0 - blinker=1.9.0=pyhff2d567_0 - blosc=1.21.6=hfd34d9b_1 - bottle=0.13.4=pyhe01879c_0 - brotli=1.2.0=h2d644bc_1 - brotli-bin=1.2.0=hfd05255_1 - - brotli-python=1.2.0=py311hc5da9e4_1 - - bzip2=1.0.8=h0ad9c76_8 - - c-blosc2=2.22.0=h2af8807_1 - - ca-certificates=2026.1.4=h4c7d964_0 + - brotli-python=1.2.0=py313h3ebfc14_1 + - bzip2=1.0.8=h0ad9c76_9 + - c-blosc2=2.23.1=h2af8807_0 + - ca-certificates=2026.2.25=h4c7d964_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2026.1.4=pyhd8ed1ab_0 - - cffi=2.0.0=py311h3485c13_1 - - charls=2.4.2=h1537add_0 - - charset-normalizer=3.4.4=pyhd8ed1ab_0 + - certifi=2026.2.25=pyhd8ed1ab_0 + - cffi=2.0.0=py313h5ea7bf4_1 + - charls=2.4.3=h7cafa3a_0 + - charset-normalizer=3.4.6=pyhd8ed1ab_0 - click=8.3.1=pyha7b4d00_1 - cloudpickle=3.1.2=pyhcf101f3_1 - clr_loader=0.2.10=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - - contourpy=1.3.3=py311h3fd045d_3 + - contourpy=1.3.3=py313h1a38498_4 - cycler=0.12.1=pyhcf101f3_2 - - dash=3.3.0=pyhd8ed1ab_0 + - dash=3.4.0=pyhd8ed1ab_0 - dash-ag-grid=32.3.4=pyhd8ed1ab_0 - dash-bootstrap-components=2.0.4=pyhcf101f3_0 - dash-core-components=2.0.0=pyhd8ed1ab_1 - dash-daq=0.6.0=pyhd8ed1ab_0 - dash-html-components=2.0.0=pyhd8ed1ab_2 - dash-table=5.0.0=pyhd8ed1ab_1 - - dask-core=2025.3.0=pyhd8ed1ab_0 + - dask-core=2025.3.1=pyhd8ed1ab_0 - dav1d=1.2.1=hcfcfb64_0 - - flask=3.1.2=pyhd8ed1ab_0 - - fonttools=4.61.1=py311h3f79411_0 - - freetype=2.14.1=h57928b3_0 - - fsspec=2025.12.0=pyhd8ed1ab_0 + - flask=3.1.3=pyhcf101f3_1 + - fonttools=4.62.0=py313hd650c13_0 + - freetype=2.14.2=h57928b3_0 + - fsspec=2026.2.0=pyhd8ed1ab_0 - giflib=5.2.2=h64bf75a_0 - h2=4.3.0=pyhcf101f3_0 - - h5py=3.15.1=nompi_py311hc40ba4b_101 - - hdf5=1.14.6=nompi_h89f0904_104 + - h5py=3.15.1=nompi_py313hf7f959b_101 + - hdf5=1.14.6=nompi_hae35d4c_106 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - - icu=78.2=h637d24d_0 - idna=3.11=pyhd8ed1ab_0 - - imagecodecs=2026.1.1=py311h1fd7c61_0 + - imagecodecs=2026.3.6=py313h43f6f17_1 - imageio=2.37.0=pyhfb79c49_0 - importlib-metadata=8.7.0=pyhe01879c_1 - itsdangerous=2.2.0=pyhd8ed1ab_1 - jinja2=3.1.6=pyhcf101f3_1 - jxrlib=1.1=hcfcfb64_3 - - kiwisolver=1.4.9=py311h275cad7_2 - - krb5=1.21.3=hdf4eb48_0 - - lazy-loader=0.4=pyhd8ed1ab_2 - - lcms2=2.17=hbcf6048_0 - - lerc=4.0.0=h6470a55_1 - - libaec=1.1.4=h20038f6_0 - - libavif16=1.3.0=he916da2_2 + - kiwisolver=1.5.0=py313h1a38498_0 + - krb5=1.22.2=h0ea6238_0 + - lazy-loader=0.5=pyhd8ed1ab_0 + - lcms2=2.18=hf2c6c5f_0 + - lerc=4.1.0=hd936e49_0 + - libaec=1.1.5=haf901d7_0 + - libavif16=1.4.0=h41d0b9c_0 - libblas=3.11.0=5_hf2e6a31_mkl - libbrotlicommon=1.2.0=hfd05255_1 - libbrotlidec=1.2.0=hfd05255_1 - libbrotlienc=1.2.0=hfd05255_1 - libcblas=3.11.0=5_h2a3cdd5_mkl - - libcurl=8.18.0=h43ecb02_0 + - libcurl=8.19.0=h8206538_0 - libdeflate=1.25=h51727cc_0 - - libexpat=2.7.3=hac47afa_0 - - libffi=3.5.2=h52bdfb6_0 - - libfreetype=2.14.1=h57928b3_0 - - libfreetype6=2.14.1=hdbac1cb_0 - - libgcc=15.2.0=h8ee18e1_16 - - libgomp=15.2.0=h8ee18e1_16 + - libexpat=2.7.4=hac47afa_0 + - libffi=3.5.2=h3d046cb_0 + - libfreetype=2.14.2=h57928b3_0 + - libfreetype6=2.14.2=hdbac1cb_0 + - libgcc=15.2.0=h8ee18e1_18 + - libgomp=15.2.0=h8ee18e1_18 - libhwloc=2.12.2=default_h4379cf1_1000 - libhwy=1.3.0=ha71e874_1 - libiconv=1.18=hc1393d2_2 - libjpeg-turbo=3.1.2=hfd05255_0 - - libjxl=0.11.1=hac9b6f3_5 + - libjxl=0.11.2=hf3f85d1_0 - liblapack=3.11.0=5_hf9ab0e9_mkl - - liblzma=5.8.1=h2466b09_2 - - libpng=1.6.53=h7351971_0 - - libsqlite=3.51.1=hf5d6505_1 + - liblzma=5.8.2=hfd05255_0 + - libmpdec=4.0.0=hfd05255_1 + - libpng=1.6.55=h7351971_0 + - libsqlite=3.52.0=hf5d6505_0 - libssh2=1.11.1=h9aa295b_0 - libtiff=4.7.1=h8f73337_1 - libwebp-base=1.6.0=h4d5522a_0 - libwinpthread=12.0.0.r4.gg4f2fc60ca=h57928b3_10 - libxcb=1.17.0=h0e4246c_0 - - libxml2=2.15.1=h779ef1b_1 - - libxml2-16=2.15.1=h3cfd58e_1 + - libxml2=2.15.2=h5d26750_0 + - libxml2-16=2.15.2=h692994f_0 - libzlib=1.3.1=h2466b09_2 - libzopfli=1.0.3=h0e60522_0 - - llvm-openmp=21.1.8=h4fa8253_0 + - llvm-openmp=22.1.0=h4fa8253_0 - locket=1.0.0=pyhd8ed1ab_0 - lz4-c=1.10.0=h2466b09_1 - - markupsafe=3.0.3=py311h3f79411_0 - - matplotlib-base=3.8.4=py311h9b31f6e_2 + - markupsafe=3.0.3=py313hd650c13_1 + - matplotlib-base=3.10.8=py313he1ded55_0 - mkl=2025.3.0=hac47afa_455 - munkres=1.1.4=pyhd8ed1ab_1 - - narwhals=2.15.0=pyhcf101f3_0 + - narwhals=2.18.0=pyhcf101f3_0 - nest-asyncio=1.6.0=pyhd8ed1ab_1 - networkx=3.6.1=pyhcf101f3_0 - - numpy=1.26.4=py311h0b4df5a_0 - - openjpeg=2.5.4=h24db6dd_0 - - openjph=0.26.0=hf13a347_0 - - openssl=3.6.0=h725018a_0 - - packaging=25.0=pyh29332c3_1 + - numpy=2.4.3=py313ha8dc839_0 + - openjpeg=2.5.4=h0e57b4f_0 + - openjph=0.26.3=hf13a347_0 + - openssl=3.6.1=hf411b9b_1 + - packaging=26.0=pyhcf101f3_0 - partd=1.4.2=pyhd8ed1ab_0 - - pillow=10.3.0=py311h5592be9_1 - - pip=25.3=pyh8b19718_0 - - plotly=6.5.1=pyhd8ed1ab_0 + - pillow=12.1.1=py313h38f99e1_0 + - pip=26.0.1=pyh145f28c_0 + - plotly=6.6.0=pyhd8ed1ab_0 - proxy-tools=0.1.0=pyhd8ed1ab_0 - pthread-stubs=0.4=h0e40799_1002 - pycparser=2.22=pyh29332c3_1 - pydantic=2.12.5=pyhcf101f3_1 - - pydantic-core=2.41.5=py311hf51aa87_1 - - pyparsing=3.3.1=pyhcf101f3_0 + - pydantic-core=2.41.5=py313hfbe8231_1 + - pyparsing=3.3.2=pyhcf101f3_0 - pysocks=1.7.1=pyh09c184e_7 - - python=3.11.14=h0159041_2_cpython + - python=3.13.12=h09917c8_100_cp313 - python-dateutil=2.9.0.post0=pyhe01879c_2 - - python_abi=3.11=8_cp311 + - python_abi=3.13=8_cp313 - pythonnet=3.0.5=pyhd8ed1ab_0 - - pywavelets=1.9.0=py311h17033d2_2 - - pyyaml=6.0.3=py311h3f79411_0 - - rav1e=0.7.1=ha073cba_3 + - pyyaml=6.0.3=py313hd650c13_1 + - qhull=2020.2=hc790b64_5 + - rav1e=0.8.1=h007690e_0 - requests=2.32.5=pyhcf101f3_1 - retrying=1.4.2=pyhe01879c_0 - - scikit-image=0.25.2=py311h11fd7f3_2 - - scipy=1.14.1=py311hf16d85f_2 - - setuptools=80.9.0=pyhff2d567_0 + - scikit-image=0.26.0=np2py313h33c6dc1_0 + - scipy=1.17.1=py313he51e9a2_0 + - setuptools=82.0.1=pyh332efcf_0 - six=1.17.0=pyhe01879c_1 - snappy=1.2.2=h7fa0ca8_1 - - svt-av1=3.1.2=hac47afa_0 + - svt-av1=4.0.1=hac47afa_0 - tbb=2022.3.0=h3155e25_2 - - tifffile=2025.12.20=pyhd8ed1ab_0 - - tk=8.6.13=h2c6b04d_3 + - tifffile=2026.3.3=pyhd8ed1ab_0 + - tk=8.6.13=h6ed50ae_3 - toolz=1.1.0=pyhd8ed1ab_1 - - tqdm=4.67.1=pyhd8ed1ab_1 + - tqdm=4.67.3=pyha7b4d00_0 - typing-extensions=4.15.0=h396c80c_0 - typing-inspection=0.4.2=pyhd8ed1ab_1 - typing_extensions=4.15.0=pyhcf101f3_0 - tzdata=2025c=hc9c84f9_1 - ucrt=10.0.26100.0=h57928b3_0 - - unicodedata2=17.0.0=py311h3485c13_1 - urllib3=2.6.3=pyhd8ed1ab_0 - vc=14.3=h41ae7f8_34 - vc14_runtime=14.44.35208=h818238b_34 - vcomp14=14.44.35208=h818238b_34 - vs2015_runtime=14.44.35208=h38c0c73_34 - waitress=3.0.2=pyhcf101f3_2 - - werkzeug=3.1.5=pyhcf101f3_0 - - wheel=0.45.1=pyhd8ed1ab_1 + - werkzeug=3.1.6=pyhcf101f3_0 - win_inet_pton=1.1.0=pyh7428d3b_8 - xorg-libxau=1.0.12=hba3369d_1 - xorg-libxdmcp=1.1.5=hba3369d_1 - yaml=0.2.5=h6a83c73_3 - zfp=1.0.1=h2f0f97f_5 - zipp=3.23.0=pyhcf101f3_1 - - zlib-ng=2.3.2=h0261ad2_1 + - zlib-ng=2.3.3=h0261ad2_1 - zstd=1.5.7=h534d264_6 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@fb86adf72fb82ea23c8904a39585982ca8793c52 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@771ae87ccae825e2eae4058b5f51fd6d5f4791cf - pywebview == 6.1 variables: diff --git a/install.bat b/install.bat index 62717a3..4533354 100644 --- a/install.bat +++ b/install.bat @@ -7,7 +7,7 @@ if !errorlevel! neq 0 ( exit /B !errorlevel! ) -set PY_VER=3.10 +set PY_VER=3.12 set ENV_NAME=curve_apps set MY_CONDA=!MY_CONDA_EXE:"=! diff --git a/py-3.10.conda-lock.yml b/py-3.10.conda-lock.yml deleted file mode 100644 index d8d12cb..0000000 --- a/py-3.10.conda-lock.yml +++ /dev/null @@ -1,5638 +0,0 @@ -# This lock file was generated by conda-lock (https://github.com/conda/conda-lock). DO NOT EDIT! -# -# A "lock file" contains a concrete list of package versions (with checksums) to be installed. Unlike -# e.g. `conda env create`, the resulting environment will not change as new package versions become -# available, unless you explicitly update the lock file. -# -# Install this environment as "YOURENV" with: -# conda-lock install -n YOURENV py-3.10.conda-lock.yml -# This lock contains optional development dependencies. Include them in the installed environment with: -# conda-lock install --dev-dependencies -n YOURENV py-3.10.conda-lock.yml -# This lock contains optional dependency categories webview. Include them in the installed environment with: -# conda-lock install -e webview -n YOURENV py-3.10.conda-lock.yml -# To update a single package to the latest version compatible with the version constraints in the source: -# conda-lock lock --lockfile py-3.10.conda-lock.yml --update PACKAGE -# To re-solve the entire environment, e.g. after changing a version constraint in the source file: -# conda-lock -f pyproject.toml -f environments/env-python-3.10.yml --lockfile py-3.10.conda-lock.yml -version: 1 -metadata: - content_hash: - win-64: 87f909a7e2b3897610726c8b244816c01f5b20d292c0ff23c92e4fd9aeb5bb24 - linux-64: 37c0425e920c09dc1bdc08de3632592a31c13dee3d703d00750adb68992f73e0 - channels: - - url: conda-forge - used_env_vars: [] - - url: nodefaults - used_env_vars: [] - platforms: - - win-64 - - linux-64 - sources: - - pyproject.toml - - environments/env-python-3.10.yml -package: -- name: _libavif_api - version: 1.3.0 - manager: conda - platform: win-64 - dependencies: {} - url: https://repo.prefix.dev/conda-forge/win-64/_libavif_api-1.3.0-h57928b3_2.conda - hash: - md5: e31e1eda938360543cb29bd3ce8f0b73 - sha256: 472aa5e5a97a188c1f01e271a821b5a9dc871e93f7c58cfb7e89bdb6cd926d39 - category: main - optional: false -- name: _libgcc_mutex - version: '0.1' - manager: conda - platform: linux-64 - dependencies: {} - url: https://repo.prefix.dev/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 - hash: - md5: d7c89558ba9fa0495403155b64376d81 - sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726 - category: main - optional: false -- name: _openmp_mutex - version: '4.5' - manager: conda - platform: linux-64 - dependencies: - _libgcc_mutex: '0.1' - libgomp: '>=7.5.0' - url: https://repo.prefix.dev/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 - hash: - md5: 73aaf86a425cc6e73fcf236a5a46396d - sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22 - category: main - optional: false -- name: _openmp_mutex - version: '4.5' - manager: conda - platform: win-64 - dependencies: - libgomp: '>=7.5.0' - libwinpthread: '>=12.0.0.r2.ggc561118da' - url: https://repo.prefix.dev/conda-forge/win-64/_openmp_mutex-4.5-2_gnu.conda - hash: - md5: 37e16618af5c4851a3f3d66dd0e11141 - sha256: 1a62cd1f215fe0902e7004089693a78347a30ad687781dfda2289cab000e652d - category: main - optional: false -- name: alabaster - version: 1.0.0 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/alabaster-1.0.0-pyhd8ed1ab_1.conda - hash: - md5: 1fd9696649f65fd6611fcdb4ffec738a - sha256: 6c4456a138919dae9edd3ac1a74b6fbe5fd66c05675f54df2f8ab8c8d0cc6cea - category: dev - optional: true -- name: alabaster - version: 1.0.0 - manager: conda - platform: win-64 - dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/alabaster-1.0.0-pyhd8ed1ab_1.conda - hash: - md5: 1fd9696649f65fd6611fcdb4ffec738a - sha256: 6c4456a138919dae9edd3ac1a74b6fbe5fd66c05675f54df2f8ab8c8d0cc6cea - category: dev - optional: true -- name: annotated-types - version: 0.7.0 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.9' - typing-extensions: '>=4.0.0' - url: https://repo.prefix.dev/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda - hash: - md5: 2934f256a8acfe48f6ebb4fce6cde29c - sha256: e0ea1ba78fbb64f17062601edda82097fcf815012cf52bb704150a2668110d48 - category: main - optional: false -- name: annotated-types - version: 0.7.0 - manager: conda - platform: win-64 - dependencies: - python: '>=3.9' - typing-extensions: '>=4.0.0' - url: https://repo.prefix.dev/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda - hash: - md5: 2934f256a8acfe48f6ebb4fce6cde29c - sha256: e0ea1ba78fbb64f17062601edda82097fcf815012cf52bb704150a2668110d48 - category: main - optional: false -- name: aom - version: 3.9.1 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://repo.prefix.dev/conda-forge/linux-64/aom-3.9.1-hac33072_0.conda - hash: - md5: 346722a0be40f6edc53f12640d301338 - sha256: b08ef033817b5f9f76ce62dfcac7694e7b6b4006420372de22494503decac855 - category: main - optional: false -- name: aom - version: 3.9.1 - manager: conda - platform: win-64 - dependencies: - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/aom-3.9.1-he0c23c2_0.conda - hash: - md5: 3d7c14285d3eb3239a76ff79063f27a5 - sha256: 0524d0c0b61dacd0c22ac7a8067f977b1d52380210933b04141f5099c5b6fec7 - category: main - optional: false -- name: astroid - version: 4.0.3 - 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-4.0.3-py310hff52083_0.conda - hash: - md5: bfe2d50b7ed13c4f9c7a785c7a86177d - sha256: 5f8dba6626f5ae763be29eff2309b84fd549f5493ff007c6009973d58005088b - category: dev - optional: true -- name: astroid - version: 4.0.3 - 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-4.0.3-py310h5588dad_0.conda - hash: - md5: 48b5525fbb68e3290cbeb096e56a1ddc - sha256: 82628a925b3888d77efbce0c0835877f2c2fd826adf97a61904d8b9fc5704511 - category: dev - optional: true -- name: babel - version: 2.17.0 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.9' - pytz: '>=2015.7' - url: https://repo.prefix.dev/conda-forge/noarch/babel-2.17.0-pyhd8ed1ab_0.conda - hash: - md5: 0a01c169f0ab0f91b26e77a3301fbfe4 - sha256: 1c656a35800b7f57f7371605bc6507c8d3ad60fbaaec65876fce7f73df1fc8ac - category: dev - optional: true -- name: babel - version: 2.17.0 - manager: conda - platform: win-64 - dependencies: - python: '>=3.9' - pytz: '>=2015.7' - url: https://repo.prefix.dev/conda-forge/noarch/babel-2.17.0-pyhd8ed1ab_0.conda - hash: - md5: 0a01c169f0ab0f91b26e77a3301fbfe4 - sha256: 1c656a35800b7f57f7371605bc6507c8d3ad60fbaaec65876fce7f73df1fc8ac - category: dev - optional: true -- name: blinker - version: 1.9.0 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/blinker-1.9.0-pyhff2d567_0.conda - hash: - md5: 42834439227a4551b939beeeb8a4b085 - sha256: f7efd22b5c15b400ed84a996d777b6327e5c402e79e3c534a7e086236f1eb2dc - category: main - optional: false -- name: blinker - version: 1.9.0 - manager: conda - platform: win-64 - dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/blinker-1.9.0-pyhff2d567_0.conda - hash: - md5: 42834439227a4551b939beeeb8a4b085 - sha256: f7efd22b5c15b400ed84a996d777b6327e5c402e79e3c534a7e086236f1eb2dc - category: main - optional: false -- name: blosc - version: 1.21.6 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - libstdcxx: '>=13' - libzlib: '>=1.3.1,<2.0a0' - lz4-c: '>=1.10.0,<1.11.0a0' - snappy: '>=1.2.1,<1.3.0a0' - zstd: '>=1.5.6,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/blosc-1.21.6-he440d0b_1.conda - hash: - md5: 2c2fae981fd2afd00812c92ac47d023d - sha256: e7af5d1183b06a206192ff440e08db1c4e8b2ca1f8376ee45fb2f3a85d4ee45d - category: main - optional: false -- name: blosc - version: 1.21.6 - manager: conda - platform: win-64 - dependencies: - libzlib: '>=1.3.1,<2.0a0' - lz4-c: '>=1.10.0,<1.11.0a0' - snappy: '>=1.2.1,<1.3.0a0' - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - zstd: '>=1.5.6,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/blosc-1.21.6-hfd34d9b_1.conda - hash: - md5: 357d7be4146d5fec543bfaa96a8a40de - sha256: 9303a7a0e03cf118eab3691013f6d6cbd1cbac66efbc70d89b20f5d0145257c0 - category: main - optional: false -- name: bottle - version: 0.13.4 - manager: conda - platform: linux-64 - dependencies: - python: '' - url: https://repo.prefix.dev/conda-forge/noarch/bottle-0.13.4-pyhe01879c_0.conda - hash: - md5: ddb34ae9ba36f9479bf605302adf54e2 - sha256: 2a7c5d93059cc656de4af20d533f91fcf3aa063596f95aa93245553249b69030 - category: webview - optional: true -- name: bottle - version: 0.13.4 - manager: conda - platform: win-64 - dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/bottle-0.13.4-pyhe01879c_0.conda - hash: - md5: ddb34ae9ba36f9479bf605302adf54e2 - sha256: 2a7c5d93059cc656de4af20d533f91fcf3aa063596f95aa93245553249b69030 - category: webview - optional: true -- name: brotli - version: 1.1.0 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - brotli-bin: 1.1.0 - libbrotlidec: 1.1.0 - libbrotlienc: 1.1.0 - libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/brotli-1.1.0-hb03c661_4.conda - hash: - md5: eaf3fbd2aa97c212336de38a51fe404e - sha256: 294526a54fa13635341729f250d0b1cf8f82cad1e6b83130304cbf3b6d8b74cc - category: main - optional: false -- name: brotli - version: 1.1.0 - manager: conda - platform: win-64 - dependencies: - brotli-bin: 1.1.0 - libbrotlidec: 1.1.0 - libbrotlienc: 1.1.0 - ucrt: '>=10.0.20348.0' - vc: '>=14.3,<15' - vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/brotli-1.1.0-hfd05255_4.conda - hash: - md5: 441706c019985cf109ced06458e6f742 - sha256: df2a43cc4a99bd184cb249e62106dfa9f55b3d06df9b5fc67072b0336852ff65 - category: main - optional: false -- name: brotli-bin - version: 1.1.0 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libbrotlidec: 1.1.0 - libbrotlienc: 1.1.0 - libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/brotli-bin-1.1.0-hb03c661_4.conda - hash: - md5: ca4ed8015764937c81b830f7f5b68543 - sha256: 444903c6e5c553175721a16b7c7de590ef754a15c28c99afbc8a963b35269517 - category: main - optional: false -- name: brotli-bin - version: 1.1.0 - manager: conda - platform: win-64 - dependencies: - libbrotlidec: 1.1.0 - libbrotlienc: 1.1.0 - ucrt: '>=10.0.20348.0' - vc: '>=14.3,<15' - vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/brotli-bin-1.1.0-hfd05255_4.conda - hash: - md5: ef022c8941d7dcc420c8533b0e419733 - sha256: e92c783502d95743b49b650c9276e9c56c7264da55429a5e45655150a6d1b0cf - category: main - optional: false -- name: brotli-python - version: 1.1.0 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' - libstdcxx: '>=14' - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* - url: https://repo.prefix.dev/conda-forge/linux-64/brotli-python-1.1.0-py310hea6c23e_4.conda - hash: - md5: 6ef43db290647218e1e04c2601675bff - sha256: 29f24d4a937c3a7f4894d6be9d9f9604adbb5506891f0f37bbb7e2dc8fa6bc0a - category: main - optional: false -- name: brotli-python - version: 1.1.0 - manager: conda - platform: win-64 - dependencies: - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* - 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-py310h73ae2b4_4.conda - hash: - md5: b53cd64780fbd287d3be3004cb6d7743 - sha256: 7d316ca454968256908c9d947726bc8f51f85fc2a2912814e1a3a98600429855 - category: main - optional: false -- name: brunsli - version: '0.1' - manager: conda - 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' - libgcc: '>=14' - libstdcxx: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/brunsli-0.1-he3183e4_1.conda - hash: - md5: 799ebfe432cb3949e246b69278ef851c - sha256: fddad9bb57ee7ec619a5cf4591151578a2501c3bf8cb3b4b066ac5b54c85a4dd - category: main - optional: false -- name: bzip2 - version: 1.0.8 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/bzip2-1.0.8-hda65f42_8.conda - hash: - md5: 51a19bba1b8ebfb60df25cde030b7ebc - sha256: c30daba32ddebbb7ded490f0e371eae90f51e72db620554089103b4a6934b0d5 - category: main - optional: false -- name: bzip2 - version: 1.0.8 - 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/bzip2-1.0.8-h0ad9c76_8.conda - hash: - md5: 1077e9333c41ff0be8edd1a5ec0ddace - sha256: d882712855624641f48aa9dc3f5feea2ed6b4e6004585d3616386a18186fe692 - category: main - optional: false -- name: c-ares - version: 1.34.6 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/c-ares-1.34.6-hb03c661_0.conda - hash: - md5: 920bb03579f15389b9e512095ad995b7 - sha256: cc9accf72fa028d31c2a038460787751127317dcfa991f8d1f1babf216bb454e - category: main - optional: false -- name: c-blosc2 - version: 2.19.1 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' - libstdcxx: '>=14' - lz4-c: '>=1.10.0,<1.11.0a0' - zlib-ng: '>=2.2.4,<2.3.0a0' - zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/c-blosc2-2.19.1-h4cfbee9_0.conda - hash: - md5: 041ee44c15d1efdc84740510796425df - sha256: ebd0cc82efa5d5dd386f546b75db357d990b91718e4d7788740f4fadc5dfd5c9 - category: main - optional: false -- name: c-blosc2 - version: 2.19.1 - manager: conda - platform: win-64 - dependencies: - lz4-c: '>=1.10.0,<1.11.0a0' - ucrt: '>=10.0.20348.0' - vc: '>=14.3,<15' - vc14_runtime: '>=14.44.35208' - zlib-ng: '>=2.2.4,<2.3.0a0' - zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/c-blosc2-2.19.1-h3cf07e4_0.conda - hash: - md5: 063939de8eb60579f137461c71f71347 - sha256: 560a17c7b20b8f0aad6d1f8e42a3f3b120c6e452ca6d019c1fb2657486d56471 - category: main - optional: false -- name: ca-certificates - version: 2026.1.4 - manager: conda - platform: linux-64 - dependencies: - __unix: '' - url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2026.1.4-hbd8a1cb_0.conda - hash: - md5: bddacf101bb4dd0e51811cb69c7790e2 - sha256: b5974ec9b50e3c514a382335efa81ed02b05906849827a34061c496f4defa0b2 - category: main - optional: false -- name: ca-certificates - version: 2026.1.4 - manager: conda - platform: win-64 - dependencies: - __win: '' - url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2026.1.4-h4c7d964_0.conda - hash: - md5: 84d389c9eee640dda3d26fc5335c67d8 - sha256: 4ddcb01be03f85d3db9d881407fb13a673372f1b9fac9c836ea441893390e049 - category: main - optional: false -- name: cached-property - version: 1.5.2 - manager: conda - platform: linux-64 - dependencies: - cached_property: '>=1.5.2,<1.5.3.0a0' - url: https://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 - hash: - md5: 9b347a7ec10940d3f7941ff6c460b551 - sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17 - category: main - optional: false -- name: cached-property - version: 1.5.2 - manager: conda - platform: win-64 - dependencies: - cached_property: '>=1.5.2,<1.5.3.0a0' - url: https://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 - hash: - md5: 9b347a7ec10940d3f7941ff6c460b551 - sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17 - category: main - optional: false -- name: cached_property - version: 1.5.2 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.6' - url: https://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 - hash: - md5: 576d629e47797577ab0f1b351297ef4a - sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7 - category: main - optional: false -- name: cached_property - version: 1.5.2 - manager: conda - platform: win-64 - dependencies: - python: '>=3.6' - url: https://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 - hash: - md5: 576d629e47797577ab0f1b351297ef4a - sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7 - category: main - optional: false -- name: certifi - version: 2026.1.4 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/certifi-2026.1.4-pyhd8ed1ab_0.conda - hash: - md5: eacc711330cd46939f66cd401ff9c44b - sha256: 110338066d194a715947808611b763857c15458f8b3b97197387356844af9450 - category: main - optional: false -- name: certifi - version: 2026.1.4 - manager: conda - platform: win-64 - dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/certifi-2026.1.4-pyhd8ed1ab_0.conda - hash: - md5: eacc711330cd46939f66cd401ff9c44b - sha256: 110338066d194a715947808611b763857c15458f8b3b97197387356844af9450 - category: main - optional: false -- name: cffi - version: 2.0.0 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - 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-2.0.0-py310he7384ee_1.conda - hash: - md5: 803e2d778b8dcccdc014127ec5001681 - sha256: bf76ead6d59b70f3e901476a73880ac92011be63b151972d135eec55bbbe6091 - category: main - optional: false -- name: cffi - version: 2.0.0 - manager: conda - platform: win-64 - dependencies: - pycparser: '' - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* - ucrt: '>=10.0.20348.0' - vc: '>=14.3,<15' - vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/cffi-2.0.0-py310h29418f3_1.conda - hash: - md5: 269ba3d69bf6569296a29425a26400df - sha256: abd04b75ee9a04a2f00dc102b4dc126f393fde58536ca4eaf1a72bb7d60dadf4 - category: main - optional: false -- name: charls - version: 2.4.2 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://repo.prefix.dev/conda-forge/linux-64/charls-2.4.2-h59595ed_0.conda - hash: - md5: 4336bd67920dd504cd8c6761d6a99645 - sha256: 18f1c43f91ccf28297f92b094c2c8dbe9c6e8241c0d3cbd6cda014a990660fdd - category: main - optional: false -- name: charls - version: 2.4.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/charls-2.4.2-h1537add_0.conda - hash: - md5: 0935766a50dfe44315b62ec0046a8779 - sha256: e6a3eab3fe65389900f39a78dc3bd86bbc030e2a746addb8b69a997495ca867c - category: main - optional: false -- name: charset-normalizer - version: 3.4.4 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.4-pyhd8ed1ab_0.conda - hash: - md5: a22d1fd9bf98827e280a02875d9a007a - sha256: b32f8362e885f1b8417bac2b3da4db7323faa12d5db62b7fd6691c02d60d6f59 - category: main - optional: false -- name: charset-normalizer - version: 3.4.4 - manager: conda - platform: win-64 - dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.4-pyhd8ed1ab_0.conda - hash: - md5: a22d1fd9bf98827e280a02875d9a007a - sha256: b32f8362e885f1b8417bac2b3da4db7323faa12d5db62b7fd6691c02d60d6f59 - category: main - optional: false -- name: click - version: 8.3.1 - manager: conda - platform: linux-64 - dependencies: - __unix: '' - python: '' - url: https://repo.prefix.dev/conda-forge/noarch/click-8.3.1-pyh8f84b5b_1.conda - hash: - md5: ea8a6c3256897cc31263de9f455e25d9 - sha256: 38cfe1ee75b21a8361c8824f5544c3866f303af1762693a178266d7f198e8715 - category: main - optional: false -- name: click - version: 8.3.1 - manager: conda - platform: win-64 - dependencies: - __win: '' - colorama: '' - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/click-8.3.1-pyha7b4d00_1.conda - hash: - md5: 6cd3ccc98bacfcc92b2bd7f236f01a7e - sha256: c3bc9a49930fa1c3383a1485948b914823290efac859a2587ca57a270a652e08 - category: main - optional: false -- name: cloudpickle - version: 3.1.2 - manager: conda - platform: linux-64 - dependencies: - python: '' - url: https://repo.prefix.dev/conda-forge/noarch/cloudpickle-3.1.2-pyhcf101f3_1.conda - hash: - md5: 61b8078a0905b12529abc622406cb62c - sha256: 4c287c2721d8a34c94928be8fe0e9a85754e90189dd4384a31b1806856b50a67 - category: main - optional: false -- name: cloudpickle - version: 3.1.2 - manager: conda - platform: win-64 - dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/cloudpickle-3.1.2-pyhcf101f3_1.conda - hash: - md5: 61b8078a0905b12529abc622406cb62c - sha256: 4c287c2721d8a34c94928be8fe0e9a85754e90189dd4384a31b1806856b50a67 - category: main - optional: false -- name: clr_loader - version: 0.2.10 - manager: conda - platform: linux-64 - dependencies: - cffi: '>=1.17' - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/clr_loader-0.2.10-pyhd8ed1ab_0.conda - hash: - md5: c420ae3b1ee83555902e1cf5f448242c - sha256: e88a8f9f3554f364a5852cf03f281ea4205ccdce59610c3033a2320f07b5b092 - category: webview - optional: true -- name: clr_loader - version: 0.2.10 - manager: conda - platform: win-64 - dependencies: - cffi: '>=1.17' - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/clr_loader-0.2.10-pyhd8ed1ab_0.conda - hash: - md5: c420ae3b1ee83555902e1cf5f448242c - sha256: e88a8f9f3554f364a5852cf03f281ea4205ccdce59610c3033a2320f07b5b092 - category: webview - optional: true -- name: colorama - version: 0.4.6 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda - hash: - md5: 962b9857ee8e7018c22f2776ffa0b2d7 - sha256: ab29d57dc70786c1269633ba3dff20288b81664d3ff8d21af995742e2bb03287 - category: main - optional: false -- name: colorama - version: 0.4.6 - manager: conda - platform: win-64 - dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda - hash: - md5: 962b9857ee8e7018c22f2776ffa0b2d7 - sha256: ab29d57dc70786c1269633ba3dff20288b81664d3ff8d21af995742e2bb03287 - category: main - optional: false -- name: contourpy - version: 1.3.2 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - libstdcxx: '>=13' - numpy: '>=1.23' - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* - url: https://repo.prefix.dev/conda-forge/linux-64/contourpy-1.3.2-py310h3788b33_0.conda - hash: - md5: b6420d29123c7c823de168f49ccdfe6a - sha256: 5231c1b68e01a9bc9debabc077a6fb48c4395206d59f40a4598d1d5e353e11d8 - category: main - optional: false -- name: contourpy - version: 1.3.2 - manager: conda - platform: win-64 - dependencies: - numpy: '>=1.23' - 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/contourpy-1.3.2-py310hc19bc0b_0.conda - hash: - md5: 039416813b5290e7d100a05bb4326110 - sha256: 096a7cf6bf77faf3e093936d831118151781ddbd2ab514355ee2f0104b490b1e - category: main - optional: false -- name: coverage - version: 7.13.1 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* - tomli: '' - url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.13.1-py310h3406613_0.conda - hash: - md5: c41ab071ecc2686b335edcfcb0727f87 - sha256: 34d5256bc19c95a1476385d5e5299da34bb660f010d8d5f6174e9ebd55775441 - category: dev - optional: true -- name: coverage - version: 7.13.1 - manager: conda - platform: win-64 - dependencies: - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* - tomli: '' - 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.13.1-py310hdb0e946_0.conda - hash: - md5: c18c8bcf244eb8fccceb05721ffc6993 - sha256: c15026595e3ad8d7d9061df0ebc930e12ddb9a5aaf0781aee50c221ced9a6716 - category: dev - optional: true -- name: cycler - version: 0.12.1 - manager: conda - platform: linux-64 - dependencies: - python: '' - url: https://repo.prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhcf101f3_2.conda - hash: - md5: 4c2a8fef270f6c69591889b93f9f55c1 - sha256: bb47aec5338695ff8efbddbc669064a3b10fe34ad881fb8ad5d64fbfa6910ed1 - category: main - optional: false -- name: cycler - version: 0.12.1 - manager: conda - platform: win-64 - dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhcf101f3_2.conda - hash: - md5: 4c2a8fef270f6c69591889b93f9f55c1 - sha256: bb47aec5338695ff8efbddbc669064a3b10fe34ad881fb8ad5d64fbfa6910ed1 - category: main - optional: false -- name: dash - version: 3.3.0 - manager: conda - platform: linux-64 - dependencies: - flask: '>=1.0.4' - importlib-metadata: '' - nest-asyncio: '' - plotly: '>=5.0.0' - python: '>=3.10' - requests: '' - retrying: '' - setuptools: '' - typing_extensions: '>=4.1.1' - werkzeug: '' - url: https://repo.prefix.dev/conda-forge/noarch/dash-3.3.0-pyhd8ed1ab_0.conda - hash: - md5: 1e4dab5c51cef84cf867108cddb09835 - sha256: a8e6b531b5fb9582ce2087be74ebd57b095e9db4b1d25d03106b3259fe3259c5 - category: main - optional: false -- name: dash - version: 3.3.0 - manager: conda - platform: win-64 - dependencies: - flask: '>=1.0.4' - importlib-metadata: '' - nest-asyncio: '' - plotly: '>=5.0.0' - python: '>=3.10' - requests: '' - retrying: '' - setuptools: '' - typing_extensions: '>=4.1.1' - werkzeug: '' - url: https://repo.prefix.dev/conda-forge/noarch/dash-3.3.0-pyhd8ed1ab_0.conda - hash: - md5: 1e4dab5c51cef84cf867108cddb09835 - sha256: a8e6b531b5fb9582ce2087be74ebd57b095e9db4b1d25d03106b3259fe3259c5 - category: main - optional: false -- name: dash-ag-grid - version: 32.3.4 - manager: conda - platform: linux-64 - dependencies: - dash: '>=2' - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/dash-ag-grid-32.3.4-pyhd8ed1ab_0.conda - hash: - md5: c07a397971932864ce0afe74cfd3740d - sha256: 2b08f41cea949dcdbf07f49ee88b34dba5cdbd38e76873372303b8de46887f35 - category: main - optional: false -- name: dash-ag-grid - version: 32.3.4 - manager: conda - platform: win-64 - dependencies: - dash: '>=2' - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/dash-ag-grid-32.3.4-pyhd8ed1ab_0.conda - hash: - md5: c07a397971932864ce0afe74cfd3740d - sha256: 2b08f41cea949dcdbf07f49ee88b34dba5cdbd38e76873372303b8de46887f35 - category: main - optional: false -- name: dash-bootstrap-components - version: 2.0.4 - manager: conda - platform: linux-64 - dependencies: - dash: '>=3.0.4' - python: '' - url: https://repo.prefix.dev/conda-forge/noarch/dash-bootstrap-components-2.0.4-pyhcf101f3_0.conda - hash: - md5: 26af33c7e6ae117319e93843e238d165 - sha256: 1c4ffc5e113140b2c9396c961fa17ad2d0946457b5472a14e0b37136d39bbe0d - category: main - optional: false -- name: dash-bootstrap-components - version: 2.0.4 - manager: conda - platform: win-64 - dependencies: - dash: '>=3.0.4' - python: '>=3.10,<4.0' - url: https://repo.prefix.dev/conda-forge/noarch/dash-bootstrap-components-2.0.4-pyhcf101f3_0.conda - hash: - md5: 26af33c7e6ae117319e93843e238d165 - sha256: 1c4ffc5e113140b2c9396c961fa17ad2d0946457b5472a14e0b37136d39bbe0d - category: main - optional: false -- name: dash-core-components - version: 2.0.0 - manager: conda - platform: linux-64 - dependencies: - dash: '>=2.0.0' - python: '>=3.6' - url: https://repo.prefix.dev/conda-forge/noarch/dash-core-components-2.0.0-pyhd8ed1ab_1.tar.bz2 - hash: - md5: c8d6a25578f40106a36765e7932fda90 - sha256: 62b1ab5d1d8bd5e4f36e8120a7d2b9643c716aad27ae84de9bdd555fb008b34f - category: main - optional: false -- name: dash-core-components - version: 2.0.0 - manager: conda - platform: win-64 - dependencies: - dash: '>=2.0.0' - python: '>=3.6' - url: https://repo.prefix.dev/conda-forge/noarch/dash-core-components-2.0.0-pyhd8ed1ab_1.tar.bz2 - hash: - md5: c8d6a25578f40106a36765e7932fda90 - sha256: 62b1ab5d1d8bd5e4f36e8120a7d2b9643c716aad27ae84de9bdd555fb008b34f - category: main - optional: false -- name: dash-daq - version: 0.6.0 - manager: conda - platform: linux-64 - dependencies: - dash: '>=1.6.1' - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/dash-daq-0.6.0-pyhd8ed1ab_0.conda - hash: - md5: 34d23a72e842ded1cd30fdae61e25ff6 - sha256: 68c85c926286253a59d3c03de1492007e32cfdcf86da445943f39f7143b6a69d - category: main - optional: false -- name: dash-daq - version: 0.6.0 - manager: conda - platform: win-64 - dependencies: - dash: '>=1.6.1' - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/dash-daq-0.6.0-pyhd8ed1ab_0.conda - hash: - md5: 34d23a72e842ded1cd30fdae61e25ff6 - sha256: 68c85c926286253a59d3c03de1492007e32cfdcf86da445943f39f7143b6a69d - category: main - optional: false -- name: dash-html-components - version: 2.0.0 - manager: conda - platform: linux-64 - dependencies: - dash: '>=2.0.0' - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/dash-html-components-2.0.0-pyhd8ed1ab_2.conda - hash: - md5: 7ff2cab17bcfe46dff51259a7dd584d6 - sha256: b78b6cd2a4ed2b7eded3288a144a52a934a95fae465080d19e557f90c19dcf31 - category: main - optional: false -- name: dash-html-components - version: 2.0.0 - manager: conda - platform: win-64 - dependencies: - dash: '>=2.0.0' - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/dash-html-components-2.0.0-pyhd8ed1ab_2.conda - hash: - md5: 7ff2cab17bcfe46dff51259a7dd584d6 - sha256: b78b6cd2a4ed2b7eded3288a144a52a934a95fae465080d19e557f90c19dcf31 - category: main - optional: false -- name: dash-table - version: 5.0.0 - manager: conda - platform: linux-64 - dependencies: - dash: '>=2.0.0' - python: '>=3.6' - url: https://repo.prefix.dev/conda-forge/noarch/dash-table-5.0.0-pyhd8ed1ab_1.tar.bz2 - hash: - md5: 0f3a1ab1be91a4a3fe0d36544a5c8bdd - sha256: 98dca97cb2ff00777647ed0c706a7e784270e7569cfa0644511d0100687a9396 - category: main - optional: false -- name: dash-table - version: 5.0.0 - manager: conda - platform: win-64 - dependencies: - dash: '>=2.0.0' - python: '>=3.6' - url: https://repo.prefix.dev/conda-forge/noarch/dash-table-5.0.0-pyhd8ed1ab_1.tar.bz2 - hash: - md5: 0f3a1ab1be91a4a3fe0d36544a5c8bdd - sha256: 98dca97cb2ff00777647ed0c706a7e784270e7569cfa0644511d0100687a9396 - category: main - optional: false -- name: dask-core - version: 2025.3.0 - manager: conda - platform: linux-64 - dependencies: - click: '>=8.1' - cloudpickle: '>=3.0.0' - fsspec: '>=2021.09.0' - importlib-metadata: '>=4.13.0' - packaging: '>=20.0' - partd: '>=1.4.0' - python: '>=3.10' - pyyaml: '>=5.3.1' - toolz: '>=0.10.0' - url: https://repo.prefix.dev/conda-forge/noarch/dask-core-2025.3.0-pyhd8ed1ab_0.conda - hash: - md5: 36f6cc22457e3d6a6051c5370832f96c - sha256: 72badd945d856d2928fdbe051f136f903bcfee8136f1526c8362c6c465b793ec - category: main - optional: false -- name: dask-core - version: 2025.3.0 - manager: conda - platform: win-64 - dependencies: - click: '>=8.1' - cloudpickle: '>=3.0.0' - fsspec: '>=2021.09.0' - importlib-metadata: '>=4.13.0' - packaging: '>=20.0' - partd: '>=1.4.0' - python: '>=3.10' - pyyaml: '>=5.3.1' - toolz: '>=0.10.0' - url: https://repo.prefix.dev/conda-forge/noarch/dask-core-2025.3.0-pyhd8ed1ab_0.conda - hash: - md5: 36f6cc22457e3d6a6051c5370832f96c - sha256: 72badd945d856d2928fdbe051f136f903bcfee8136f1526c8362c6c465b793ec - category: main - optional: false -- name: dav1d - version: 1.2.1 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=12' - url: https://repo.prefix.dev/conda-forge/linux-64/dav1d-1.2.1-hd590300_0.conda - hash: - md5: 418c6ca5929a611cbd69204907a83995 - sha256: 22053a5842ca8ee1cf8e1a817138cdb5e647eb2c46979f84153f6ad7bde73020 - category: main - optional: false -- name: dav1d - version: 1.2.1 - manager: conda - platform: win-64 - dependencies: - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/dav1d-1.2.1-hcfcfb64_0.conda - hash: - md5: ed2c27bda330e3f0ab41577cf8b9b585 - sha256: 2aa2083c9c186da7d6f975ccfbef654ed54fff27f4bc321dbcd12cee932ec2c4 - category: main - optional: false -- name: dill - version: 0.4.0 - manager: conda - platform: linux-64 - dependencies: - python: '' - url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhcf101f3_1.conda - hash: - md5: eec5b361dbbaa69dba05050977a414b0 - sha256: c0c91bd91e59940091cec1760db51a82a58e9c64edf4b808bd2da94201ccfdb4 - category: dev - optional: true -- name: dill - version: 0.4.0 - manager: conda - platform: win-64 - dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhcf101f3_1.conda - hash: - md5: eec5b361dbbaa69dba05050977a414b0 - sha256: c0c91bd91e59940091cec1760db51a82a58e9c64edf4b808bd2da94201ccfdb4 - category: dev - optional: true -- name: docutils - version: 0.21.2 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_1.conda - hash: - md5: 24c1ca34138ee57de72a943237cde4cc - sha256: fa5966bb1718bbf6967a85075e30e4547901410cc7cb7b16daf68942e9a94823 - category: dev - optional: true -- name: docutils - version: 0.21.2 - manager: conda - platform: win-64 - dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_1.conda - hash: - md5: 24c1ca34138ee57de72a943237cde4cc - sha256: fa5966bb1718bbf6967a85075e30e4547901410cc7cb7b16daf68942e9a94823 - category: dev - optional: true -- name: exceptiongroup - version: 1.3.1 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.10' - typing_extensions: '>=4.6.0' - url: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.3.1-pyhd8ed1ab_0.conda - hash: - md5: 8e662bd460bda79b1ea39194e3c4c9ab - sha256: ee6cf346d017d954255bbcbdb424cddea4d14e4ed7e9813e429db1d795d01144 - category: dev - optional: true -- name: exceptiongroup - version: 1.3.1 - manager: conda - platform: win-64 - dependencies: - python: '>=3.10' - typing_extensions: '>=4.6.0' - url: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.3.1-pyhd8ed1ab_0.conda - hash: - md5: 8e662bd460bda79b1ea39194e3c4c9ab - sha256: ee6cf346d017d954255bbcbdb424cddea4d14e4ed7e9813e429db1d795d01144 - category: dev - optional: true -- name: flask - version: 3.1.2 - manager: conda - platform: linux-64 - dependencies: - blinker: '>=1.9.0' - click: '>=8.1.3' - importlib-metadata: '>=3.6.0' - itsdangerous: '>=2.2.0' - jinja2: '>=3.1.2' - markupsafe: '>=2.1.1' - python: '>=3.9' - werkzeug: '>=3.1.0' - url: https://repo.prefix.dev/conda-forge/noarch/flask-3.1.2-pyhd8ed1ab_0.conda - hash: - md5: ba67a9febeda36948fee26a3dec3d914 - sha256: 8a97eba37e0723720706d4636cc89c6b07eea1b7cc66fd8994fa8983a81ed988 - category: main - optional: false -- name: flask - version: 3.1.2 - manager: conda - platform: win-64 - dependencies: - blinker: '>=1.9.0' - click: '>=8.1.3' - importlib-metadata: '>=3.6.0' - itsdangerous: '>=2.2.0' - jinja2: '>=3.1.2' - markupsafe: '>=2.1.1' - python: '>=3.9' - werkzeug: '>=3.1.0' - url: https://repo.prefix.dev/conda-forge/noarch/flask-3.1.2-pyhd8ed1ab_0.conda - hash: - md5: ba67a9febeda36948fee26a3dec3d914 - sha256: 8a97eba37e0723720706d4636cc89c6b07eea1b7cc66fd8994fa8983a81ed988 - category: main - optional: false -- name: fonttools - version: 4.61.1 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - brotli: '' - libgcc: '>=14' - munkres: '' - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* - unicodedata2: '>=15.1.0' - url: https://repo.prefix.dev/conda-forge/linux-64/fonttools-4.61.1-py310h3406613_0.conda - hash: - md5: 24fa891e40acdb1c7f51efd0c5f97084 - sha256: 6dccba7a293b6dbab029da4d921d2d94227c9541152489fc7d7db4ec3c68dff3 - category: main - optional: false -- name: fonttools - version: 4.61.1 - manager: conda - platform: win-64 - dependencies: - brotli: '' - munkres: '' - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* - ucrt: '>=10.0.20348.0' - unicodedata2: '>=15.1.0' - vc: '>=14.3,<15' - vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/fonttools-4.61.1-py310hdb0e946_0.conda - hash: - md5: c2b488b68301c02d503e5cc9ee7bafc8 - sha256: 433be2ca71f302bb9fa6bde0b842417f2ab9b203fae8547ce95a3def9edfc9e3 - category: main - optional: false -- name: freetype - version: 2.14.1 - manager: conda - platform: linux-64 - dependencies: - libfreetype: 2.14.1 - libfreetype6: 2.14.1 - url: https://repo.prefix.dev/conda-forge/linux-64/freetype-2.14.1-ha770c72_0.conda - hash: - md5: 4afc585cd97ba8a23809406cd8a9eda8 - sha256: bf8e4dffe46f7d25dc06f31038cacb01672c47b9f45201f065b0f4d00ab0a83e - category: main - optional: false -- name: freetype - version: 2.14.1 - manager: conda - platform: win-64 - dependencies: - libfreetype: 2.14.1 - libfreetype6: 2.14.1 - url: https://repo.prefix.dev/conda-forge/win-64/freetype-2.14.1-h57928b3_0.conda - hash: - md5: d69c21967f35eb2ce7f1f85d6b6022d3 - sha256: a9b3313edea0bf14ea6147ea43a1059d0bf78771a1336d2c8282891efc57709a - category: main - optional: false -- name: fsspec - version: 2025.12.0 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2025.12.0-pyhd8ed1ab_0.conda - hash: - md5: a3b9510e2491c20c7fc0f5e730227fbb - sha256: 64a4ed910e39d96cd590d297982b229c57a08e70450d489faa34fd2bec36dbcc - category: main - optional: false -- name: fsspec - version: 2025.12.0 - manager: conda - platform: win-64 - dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2025.12.0-pyhd8ed1ab_0.conda - hash: - md5: a3b9510e2491c20c7fc0f5e730227fbb - sha256: 64a4ed910e39d96cd590d297982b229c57a08e70450d489faa34fd2bec36dbcc - category: main - optional: false -- name: giflib - version: 5.2.2 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=12' - url: https://repo.prefix.dev/conda-forge/linux-64/giflib-5.2.2-hd590300_0.conda - hash: - md5: 3bf7b9fd5a7136126e0234db4b87c8b6 - sha256: aac402a8298f0c0cc528664249170372ef6b37ac39fdc92b40601a6aed1e32ff - category: main - optional: false -- name: giflib - version: 5.2.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/giflib-5.2.2-h64bf75a_0.conda - hash: - md5: 72f424715c78a04fd5b991ee5dca820f - sha256: 85fa240e749a1a88a588b6895c53f253d990697749b3a7b1ed8bb92ebb3d64c8 - category: main - optional: false -- name: h2 - version: 4.3.0 - manager: conda - platform: linux-64 - dependencies: - hpack: '>=4.1,<5' - hyperframe: '>=6.1,<7' - python: '' - url: https://repo.prefix.dev/conda-forge/noarch/h2-4.3.0-pyhcf101f3_0.conda - hash: - md5: 164fc43f0b53b6e3a7bc7dce5e4f1dc9 - sha256: 84c64443368f84b600bfecc529a1194a3b14c3656ee2e832d15a20e0329b6da3 - category: main - optional: false -- name: h2 - version: 4.3.0 - manager: conda - platform: win-64 - dependencies: - hpack: '>=4.1,<5' - hyperframe: '>=6.1,<7' - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/h2-4.3.0-pyhcf101f3_0.conda - hash: - md5: 164fc43f0b53b6e3a7bc7dce5e4f1dc9 - sha256: 84c64443368f84b600bfecc529a1194a3b14c3656ee2e832d15a20e0329b6da3 - category: main - optional: false -- name: h5py - version: 3.15.1 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - cached-property: '' - hdf5: '>=1.14.6,<1.14.7.0a0' - libgcc: '>=14' - 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.15.1-nompi_py310h4aa865e_101.conda - hash: - md5: 4fccf52eaeb2ae9d9e251623e2b66e63 - sha256: 427fc2540a4728dc80d9f0b464541aed61d35ae9ccafcd7f6bbce499eeaf8ce9 - category: main - optional: false -- name: h5py - version: 3.15.1 - manager: conda - platform: win-64 - dependencies: - cached-property: '' - hdf5: '>=1.14.6,<1.14.7.0a0' - numpy: '>=1.21,<3' - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* - ucrt: '>=10.0.20348.0' - vc: '>=14.3,<15' - vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/h5py-3.15.1-nompi_py310hb7e4da9_101.conda - hash: - md5: 357927e58b9ead286f57328aa6eff36b - sha256: cdd286739e413eb96a6b6d304d8ad53cb3345e426a75c4c44ce55d1a1a649efb - category: main - optional: false -- name: hdf5 - version: 1.14.6 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libaec: '>=1.1.4,<2.0a0' - libcurl: '>=8.17.0,<9.0a0' - libgcc: '>=14' - libgfortran: '' - libgfortran5: '>=14.3.0' - libstdcxx: '>=14' - libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.5.4,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/hdf5-1.14.6-nompi_h1b119a7_104.conda - hash: - md5: 0857f4d157820dcd5625f61fdfefb780 - sha256: 454e9724b322cee277abd7acf4f8d688e9c4ded006b6d5bc9fcc2a1ff907d27a - category: main - optional: false -- name: hdf5 - version: 1.14.6 - manager: conda - platform: win-64 - dependencies: - libaec: '>=1.1.4,<2.0a0' - libcurl: '>=8.17.0,<9.0a0' - libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.5.4,<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/hdf5-1.14.6-nompi_h89f0904_104.conda - hash: - md5: 9cc4a5567d46c7fcde99563e86522882 - sha256: cc948149f700033ff85ce4a1854edf6adcb5881391a3df5c40cbe2a793dd9f81 - category: main - optional: false -- name: hpack - version: 4.1.0 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda - hash: - md5: 0a802cb9888dd14eeefc611f05c40b6e - sha256: 6ad78a180576c706aabeb5b4c8ceb97c0cb25f1e112d76495bff23e3779948ba - category: main - optional: false -- name: hpack - version: 4.1.0 - manager: conda - platform: win-64 - dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda - hash: - md5: 0a802cb9888dd14eeefc611f05c40b6e - sha256: 6ad78a180576c706aabeb5b4c8ceb97c0cb25f1e112d76495bff23e3779948ba - category: main - optional: false -- name: hyperframe - version: 6.1.0 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda - hash: - md5: 8e6923fc12f1fe8f8c4e5c9f343256ac - sha256: 77af6f5fe8b62ca07d09ac60127a30d9069fdc3c68d6b256754d0ffb1f7779f8 - category: main - optional: false -- name: hyperframe - version: 6.1.0 - manager: conda - platform: win-64 - dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda - hash: - md5: 8e6923fc12f1fe8f8c4e5c9f343256ac - sha256: 77af6f5fe8b62ca07d09ac60127a30d9069fdc3c68d6b256754d0ffb1f7779f8 - category: main - optional: false -- name: icu - version: '78.2' - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' - libstdcxx: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/icu-78.2-h33c6efd_0.conda - hash: - md5: 186a18e3ba246eccfc7cff00cd19a870 - sha256: 142a722072fa96cf16ff98eaaf641f54ab84744af81754c292cb81e0881c0329 - category: main - optional: false -- name: icu - version: '78.2' - 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/icu-78.2-h637d24d_0.conda - hash: - md5: 0ee3bb487600d5e71ab7d28951b2016a - sha256: 5a41fb28971342e293769fc968b3414253a2f8d9e30ed7c31517a15b4887246a - category: main - optional: false -- name: idna - version: '3.11' - manager: conda - platform: linux-64 - dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/idna-3.11-pyhd8ed1ab_0.conda - hash: - md5: 53abe63df7e10a6ba605dc5f9f961d36 - sha256: ae89d0299ada2a3162c2614a9d26557a92aa6a77120ce142f8e0109bbf0342b0 - category: main - optional: false -- name: idna - version: '3.11' - manager: conda - platform: win-64 - dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/idna-3.11-pyhd8ed1ab_0.conda - hash: - md5: 53abe63df7e10a6ba605dc5f9f961d36 - sha256: ae89d0299ada2a3162c2614a9d26557a92aa6a77120ce142f8e0109bbf0342b0 - category: main - optional: false -- name: imagecodecs - version: 2025.3.30 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - blosc: '>=1.21.6,<2.0a0' - brunsli: '>=0.1,<1.0a0' - bzip2: '>=1.0.8,<2.0a0' - c-blosc2: '>=2.19.0,<2.20.0a0' - charls: '>=2.4.2,<2.5.0a0' - giflib: '>=5.2.2,<5.3.0a0' - jxrlib: '>=1.1,<1.2.0a0' - lcms2: '>=2.17,<3.0a0' - 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' - libgcc: '>=13' - libjpeg-turbo: '>=3.1.0,<4.0a0' - libjxl: '>=0.11,<0.12.0a0' - liblzma: '>=5.8.1,<6.0a0' - libpng: '>=1.6.49,<1.7.0a0' - libstdcxx: '>=13' - libtiff: '>=4.7.0,<4.8.0a0' - libwebp-base: '>=1.5.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.21,<3' - openjpeg: '>=2.5.3,<3.0a0' - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* - snappy: '>=1.2.1,<1.3.0a0' - zfp: '>=1.0.1,<2.0a0' - zlib-ng: '>=2.2.4,<2.3.0a0' - zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/imagecodecs-2025.3.30-py310h4eb8eaf_2.conda - hash: - md5: a9c921699d37e862f9bf8dcf9d343838 - sha256: a45935f8482e07c1ff8829659d587710b4264c46164db5315a32b7f90c0380da - category: main - optional: false -- name: imagecodecs - version: 2025.3.30 - manager: conda - platform: win-64 - dependencies: - blosc: '>=1.21.6,<2.0a0' - bzip2: '>=1.0.8,<2.0a0' - c-blosc2: '>=2.19.0,<2.20.0a0' - charls: '>=2.4.2,<2.5.0a0' - giflib: '>=5.2.2,<5.3.0a0' - jxrlib: '>=1.1,<1.2.0a0' - lcms2: '>=2.17,<3.0a0' - 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' - libjpeg-turbo: '>=3.1.0,<4.0a0' - libjxl: '>=0.11,<0.12.0a0' - liblzma: '>=5.8.1,<6.0a0' - libpng: '>=1.6.49,<1.7.0a0' - libtiff: '>=4.7.0,<4.8.0a0' - libwebp-base: '>=1.5.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.21,<3' - openjpeg: '>=2.5.3,<3.0a0' - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* - snappy: '>=1.2.1,<1.3.0a0' - ucrt: '>=10.0.20348.0' - vc: '>=14.3,<15' - vc14_runtime: '>=14.44.35208' - zfp: '>=1.0.1,<2.0a0' - zlib-ng: '>=2.2.4,<2.3.0a0' - zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/imagecodecs-2025.3.30-py310h9ee7ba4_2.conda - hash: - md5: d3218b9b61d462eac3e2e71036d2f3c0 - sha256: 6851ce7d42b3034bdf90182f79e0c1c6f18b85f518a73d011e8fa6b86ec2fde1 - category: main - optional: false -- name: imageio - version: 2.37.0 - manager: conda - platform: linux-64 - dependencies: - numpy: '' - pillow: '>=8.3.2' - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/imageio-2.37.0-pyhfb79c49_0.conda - hash: - md5: b5577bc2212219566578fd5af9993af6 - sha256: 8ef69fa00c68fad34a3b7b260ea774fda9bd9274fd706d3baffb9519fd0063fe - category: main - optional: false -- name: imageio - version: 2.37.0 - manager: conda - platform: win-64 - dependencies: - numpy: '' - pillow: '>=8.3.2' - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/imageio-2.37.0-pyhfb79c49_0.conda - hash: - md5: b5577bc2212219566578fd5af9993af6 - sha256: 8ef69fa00c68fad34a3b7b260ea774fda9bd9274fd706d3baffb9519fd0063fe - category: main - optional: false -- name: imagesize - version: 1.4.1 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.4' - url: https://repo.prefix.dev/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2 - hash: - md5: 7de5386c8fea29e76b303f37dde4c352 - sha256: c2bfd7043e0c4c12d8b5593de666c1e81d67b83c474a0a79282cc5c4ef845460 - category: dev - optional: true -- name: imagesize - version: 1.4.1 - manager: conda - platform: win-64 - dependencies: - python: '>=3.4' - url: https://repo.prefix.dev/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2 - hash: - md5: 7de5386c8fea29e76b303f37dde4c352 - sha256: c2bfd7043e0c4c12d8b5593de666c1e81d67b83c474a0a79282cc5c4ef845460 - category: dev - optional: true -- name: importlib-metadata - version: 8.7.0 - manager: conda - platform: linux-64 - dependencies: - python: '' - zipp: '>=3.20' - url: https://repo.prefix.dev/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda - hash: - md5: 63ccfdc3a3ce25b027b8767eb722fca8 - sha256: c18ab120a0613ada4391b15981d86ff777b5690ca461ea7e9e49531e8f374745 - category: main - optional: false -- name: importlib-metadata - version: 8.7.0 - manager: conda - platform: win-64 - dependencies: - python: '>=3.9' - zipp: '>=3.20' - url: https://repo.prefix.dev/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda - hash: - md5: 63ccfdc3a3ce25b027b8767eb722fca8 - sha256: c18ab120a0613ada4391b15981d86ff777b5690ca461ea7e9e49531e8f374745 - category: main - optional: false -- name: iniconfig - version: 2.3.0 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/iniconfig-2.3.0-pyhd8ed1ab_0.conda - hash: - md5: 9614359868482abba1bd15ce465e3c42 - sha256: e1a9e3b1c8fe62dc3932a616c284b5d8cbe3124bbfbedcf4ce5c828cb166ee19 - category: dev - optional: true -- name: iniconfig - version: 2.3.0 - manager: conda - platform: win-64 - dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/iniconfig-2.3.0-pyhd8ed1ab_0.conda - hash: - md5: 9614359868482abba1bd15ce465e3c42 - sha256: e1a9e3b1c8fe62dc3932a616c284b5d8cbe3124bbfbedcf4ce5c828cb166ee19 - category: dev - optional: true -- name: isort - version: 7.0.0 - manager: conda - platform: linux-64 - dependencies: - 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: 55a61979242077b2cc377c74326ea9f0 - sha256: 13b0005877f553eb2e5c50447c9d0047e7257124ec2d1569d7dad35697790237 - category: dev - optional: true -- name: isort - version: 7.0.0 - manager: conda - platform: win-64 - dependencies: - 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: 55a61979242077b2cc377c74326ea9f0 - sha256: 13b0005877f553eb2e5c50447c9d0047e7257124ec2d1569d7dad35697790237 - category: dev - optional: true -- name: itsdangerous - version: 2.2.0 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/itsdangerous-2.2.0-pyhd8ed1ab_1.conda - hash: - md5: 7ac5f795c15f288984e32add616cdc59 - sha256: 1684b7b16eec08efef5302ce298c606b163c18272b69a62b666fbaa61516f170 - category: main - optional: false -- name: itsdangerous - version: 2.2.0 - manager: conda - platform: win-64 - dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/itsdangerous-2.2.0-pyhd8ed1ab_1.conda - hash: - md5: 7ac5f795c15f288984e32add616cdc59 - sha256: 1684b7b16eec08efef5302ce298c606b163c18272b69a62b666fbaa61516f170 - category: main - optional: false -- name: jinja2 - version: 3.1.6 - manager: conda - platform: linux-64 - dependencies: - markupsafe: '>=2.0' - python: '' - url: https://repo.prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhcf101f3_1.conda - hash: - md5: 04558c96691bed63104678757beb4f8d - sha256: fc9ca7348a4f25fed2079f2153ecdcf5f9cf2a0bc36c4172420ca09e1849df7b - category: main - optional: false -- name: jinja2 - version: 3.1.6 - manager: conda - platform: win-64 - dependencies: - markupsafe: '>=2.0' - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhcf101f3_1.conda - hash: - md5: 04558c96691bed63104678757beb4f8d - sha256: fc9ca7348a4f25fed2079f2153ecdcf5f9cf2a0bc36c4172420ca09e1849df7b - category: main - optional: false -- name: jxrlib - version: '1.1' - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=12' - url: https://repo.prefix.dev/conda-forge/linux-64/jxrlib-1.1-hd590300_3.conda - hash: - md5: 5aeabe88534ea4169d4c49998f293d6c - sha256: 2057ca87b313bde5b74b93b0e696f8faab69acd4cb0edebb78469f3f388040c0 - category: main - optional: false -- name: jxrlib - version: '1.1' - manager: conda - platform: win-64 - dependencies: - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/jxrlib-1.1-hcfcfb64_3.conda - hash: - md5: a9dff8432c11dfa980346e934c29ca3f - sha256: a9ac265bcf65fce57cfb6512a1b072d5489445d14aa1b60c9bdf73370cf261b2 - category: main - optional: false -- name: keyutils - version: 1.6.3 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/keyutils-1.6.3-hb9d3cd8_0.conda - hash: - md5: b38117a3c920364aff79f870c984b4a3 - sha256: 0960d06048a7185d3542d850986d807c6e37ca2e644342dd0c72feefcf26c2a4 - category: main - optional: false -- name: kiwisolver - version: 1.4.9 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' - libstdcxx: '>=14' - python: '' - python_abi: 3.10.* - url: https://repo.prefix.dev/conda-forge/linux-64/kiwisolver-1.4.9-py310haaf941d_2.conda - hash: - md5: 7426d76535fc6347f1b74f85fb17d6eb - sha256: 5ef8337c7a89719427d25b0cdc776b34116fe988efc9bf56f5a2831d74b1584e - category: main - optional: false -- name: kiwisolver - version: 1.4.9 - manager: conda - platform: win-64 - dependencies: - python: '' - python_abi: 3.10.* - ucrt: '>=10.0.20348.0' - vc: '>=14.3,<15' - vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/kiwisolver-1.4.9-py310h1e1005b_2.conda - hash: - md5: 6b165d2b50fce619244bec7495bbbbc2 - sha256: dbca5656a0e07dbc998d4d5e51497782d2e0d9c097a1072a9d4df5e2ef797dce - category: main - optional: false -- name: krb5 - version: 1.21.3 - manager: conda - platform: linux-64 - dependencies: - keyutils: '>=1.6.1,<2.0a0' - libedit: '>=3.1.20191231,<4.0a0' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - openssl: '>=3.3.1,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda - hash: - md5: 3f43953b7d3fb3aaa1d0d0723d91e368 - sha256: 99df692f7a8a5c27cd14b5fb1374ee55e756631b9c3d659ed3ee60830249b238 - category: main - optional: false -- name: krb5 - version: 1.21.3 - manager: conda - platform: win-64 - dependencies: - openssl: '>=3.3.1,<4.0a0' - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/krb5-1.21.3-hdf4eb48_0.conda - hash: - md5: 31aec030344e962fbd7dbbbbd68e60a9 - sha256: 18e8b3430d7d232dad132f574268f56b3eb1a19431d6d5de8c53c29e6c18fa81 - category: main - optional: false -- name: lazy-loader - version: '0.4' - manager: conda - platform: linux-64 - dependencies: - importlib-metadata: '' - packaging: '' - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/lazy-loader-0.4-pyhd8ed1ab_2.conda - hash: - md5: d10d9393680734a8febc4b362a4c94f2 - sha256: d7ea986507090fff801604867ef8e79c8fda8ec21314ba27c032ab18df9c3411 - category: main - optional: false -- name: lazy-loader - version: '0.4' - manager: conda - platform: win-64 - dependencies: - importlib-metadata: '' - packaging: '' - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/lazy-loader-0.4-pyhd8ed1ab_2.conda - hash: - md5: d10d9393680734a8febc4b362a4c94f2 - sha256: d7ea986507090fff801604867ef8e79c8fda8ec21314ba27c032ab18df9c3411 - category: main - optional: false -- name: lcms2 - version: '2.17' - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - libjpeg-turbo: '>=3.0.0,<4.0a0' - libtiff: '>=4.7.0,<4.8.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/lcms2-2.17-h717163a_0.conda - hash: - md5: 000e85703f0fd9594c81710dd5066471 - sha256: d6a61830a354da022eae93fa896d0991385a875c6bba53c82263a289deda9db8 - category: main - optional: false -- name: lcms2 - version: '2.17' - manager: conda - platform: win-64 - dependencies: - libjpeg-turbo: '>=3.0.0,<4.0a0' - libtiff: '>=4.7.0,<4.8.0a0' - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/lcms2-2.17-hbcf6048_0.conda - hash: - md5: 3538827f77b82a837fa681a4579e37a1 - sha256: 7712eab5f1a35ca3ea6db48ead49e0d6ac7f96f8560da8023e61b3dbe4f3b25d - category: main - optional: false -- name: ld_impl_linux-64 - version: '2.45' - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.45-default_hbd61a6d_105.conda - hash: - md5: 3ec0aa5037d39b06554109a01e6fb0c6 - sha256: 1027bd8aa0d5144e954e426ab6218fd5c14e54a98f571985675468b339c808ca - category: main - optional: false -- name: lerc - version: 4.0.0 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - libstdcxx: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/lerc-4.0.0-h0aef613_1.conda - hash: - md5: 9344155d33912347b37f0ae6c410a835 - sha256: 412381a43d5ff9bbed82cd52a0bbca5b90623f62e41007c9c42d3870c60945ff - category: main - optional: false -- name: lerc - version: 4.0.0 - manager: conda - platform: win-64 - dependencies: - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/lerc-4.0.0-h6470a55_1.conda - hash: - md5: c1b81da6d29a14b542da14a36c9fbf3f - sha256: 868a3dff758cc676fa1286d3f36c3e0101cca56730f7be531ab84dc91ec58e9d - category: main - optional: false -- name: libaec - version: 1.1.4 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - libstdcxx: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libaec-1.1.4-h3f801dc_0.conda - hash: - md5: 01ba04e414e47f95c03d6ddd81fd37be - sha256: 410ab78fe89bc869d435de04c9ffa189598ac15bb0fe1ea8ace8fb1b860a2aa3 - category: main - optional: false -- name: libaec - version: 1.1.4 - manager: conda - platform: win-64 - dependencies: - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libaec-1.1.4-h20038f6_0.conda - hash: - md5: 85a2bed45827d77d5b308cb2b165404f - sha256: 0be89085effce9fdcbb6aea7acdb157b18793162f68266ee0a75acf615d4929b - category: main - optional: false -- name: libavif16 - version: 1.3.0 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - aom: '>=3.9.1,<3.10.0a0' - dav1d: '>=1.2.1,<1.2.2.0a0' - libgcc: '>=14' - rav1e: '>=0.7.1,<0.8.0a0' - svt-av1: '>=3.1.2,<3.1.3.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libavif16-1.3.0-h6395336_2.conda - hash: - md5: c09c4ac973f7992ba0c6bb1aafd77bd4 - sha256: e3a44c0eda23aa15c9a8dfa8c82ecf5c8b073e68a16c29edd0e409e687056d30 - category: main - optional: false -- name: libavif16 - version: 1.3.0 - manager: conda - platform: win-64 - dependencies: - _libavif_api: '>=1.3.0,<1.3.1.0a0' - aom: '>=3.9.1,<3.10.0a0' - dav1d: '>=1.2.1,<1.2.2.0a0' - rav1e: '>=0.7.1,<0.8.0a0' - svt-av1: '>=3.1.2,<3.1.3.0a0' - ucrt: '>=10.0.20348.0' - vc: '>=14.3,<15' - vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libavif16-1.3.0-he916da2_2.conda - hash: - md5: 9782ce5bf5a3b41f29533c2c08f6b360 - sha256: dbb3f21282eccba6e4bd70c9db371e081bf09c55f1de7ca90f1106cc199d4a8b - category: main - optional: false -- name: libblas - version: 3.11.0 - manager: conda - platform: linux-64 - dependencies: - libopenblas: '>=0.3.30,<1.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libblas-3.11.0-5_h4a7cf45_openblas.conda - hash: - md5: c160954f7418d7b6e87eaf05a8913fa9 - sha256: 18c72545080b86739352482ba14ba2c4815e19e26a7417ca21a95b76ec8da24c - category: main - optional: false -- name: libblas - version: 3.11.0 - manager: conda - platform: win-64 - dependencies: - mkl: '>=2025.3.0,<2026.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/libblas-3.11.0-5_hf2e6a31_mkl.conda - hash: - md5: f9decf88743af85c9c9e05556a4c47c0 - sha256: f0cb7b2697461a306341f7ff32d5b361bb84f3e94478464c1e27ee01fc8f276b - category: main - optional: false -- name: libbrotlicommon - version: 1.1.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 - hash: - md5: 1d29d2e33fe59954af82ef54a8af3fe1 - sha256: 2338a92d1de71f10c8cf70f7bb9775b0144a306d75c4812276749f54925612b6 - category: main - optional: false -- name: libbrotlicommon - version: 1.1.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 - hash: - md5: 58aec7a295039d8614175eae3a4f8778 - sha256: 65d0aaf1176761291987f37c8481be132060cc3dbe44b1550797bc27d1a0c920 - category: main - optional: false -- name: libbrotlidec - version: 1.1.0 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libbrotlicommon: 1.1.0 - libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlidec-1.1.0-hb03c661_4.conda - hash: - md5: 5cb5a1c9a94a78f5b23684bcb845338d - sha256: fcec0d26f67741b122f0d5eff32f0393d7ebd3ee6bb866ae2f17f3425a850936 - category: main - optional: false -- name: libbrotlidec - version: 1.1.0 - manager: conda - platform: win-64 - dependencies: - libbrotlicommon: 1.1.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 - hash: - md5: bf0ced5177fec8c18a7b51d568590b7c - sha256: aa03aff197ed503e38145d0d0f17c30382ac1c6d697535db24c98c272ef57194 - category: main - optional: false -- name: libbrotlienc - version: 1.1.0 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libbrotlicommon: 1.1.0 - libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlienc-1.1.0-hb03c661_4.conda - hash: - md5: 2e55011fa483edb8bfe3fd92e860cd79 - sha256: d42c7f0afce21d5279a0d54ee9e64a2279d35a07a90e0c9545caae57d6d7dc57 - category: main - optional: false -- name: libbrotlienc - version: 1.1.0 - manager: conda - platform: win-64 - dependencies: - libbrotlicommon: 1.1.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 - hash: - md5: 37f4669f8ac2f04d826440a8f3f42300 - sha256: a593cde3e728a1e0486a19537846380e3ce90ae9d6c22c1412466a49474eeeed - category: main - optional: false -- name: libcblas - version: 3.11.0 - manager: conda - platform: linux-64 - dependencies: - libblas: 3.11.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libcblas-3.11.0-5_h0358290_openblas.conda - hash: - md5: 6636a2b6f1a87572df2970d3ebc87cc0 - sha256: 0cbdcc67901e02dc17f1d19e1f9170610bd828100dc207de4d5b6b8ad1ae7ad8 - category: main - optional: false -- name: libcblas - version: 3.11.0 - manager: conda - platform: win-64 - dependencies: - libblas: 3.11.0 - url: https://repo.prefix.dev/conda-forge/win-64/libcblas-3.11.0-5_h2a3cdd5_mkl.conda - hash: - md5: b3fa8e8b55310ba8ef0060103afb02b5 - sha256: 49dc59d8e58360920314b8d276dd80da7866a1484a9abae4ee2760bc68f3e68d - category: main - optional: false -- name: libcurl - version: 8.18.0 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - krb5: '>=1.21.3,<1.22.0a0' - libgcc: '>=14' - libnghttp2: '>=1.67.0,<2.0a0' - libssh2: '>=1.11.1,<2.0a0' - libzlib: '>=1.3.1,<2.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.18.0-h4e3cde8_0.conda - hash: - md5: 0a5563efed19ca4461cf927419b6eb73 - sha256: 5454709d9fb6e9c3dd6423bc284fa7835a7823bfa8323f6e8786cdd555101fab - category: main - optional: false -- name: libcurl - version: 8.18.0 - manager: conda - platform: win-64 - dependencies: - krb5: '>=1.21.3,<1.22.0a0' - libssh2: '>=1.11.1,<2.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/libcurl-8.18.0-h43ecb02_0.conda - hash: - md5: 2688214a9bee5d5650cd4f5f6af5c8f2 - sha256: 86258e30845571ea13855e8a0605275905781476f3edf8ae5df90a06fcada93a - category: main - optional: false -- name: libdeflate - version: '1.24' - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libdeflate-1.24-h86f0d12_0.conda - hash: - md5: 64f0c503da58ec25ebd359e4d990afa8 - sha256: 8420748ea1cc5f18ecc5068b4f24c7a023cc9b20971c99c824ba10641fb95ddf - category: main - optional: false -- name: libdeflate - version: '1.24' - manager: conda - platform: win-64 - dependencies: - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libdeflate-1.24-h76ddb4d_0.conda - hash: - md5: 08d988e266c6ae77e03d164b83786dc4 - sha256: 65347475c0009078887ede77efe60db679ea06f2b56f7853b9310787fe5ad035 - category: main - optional: false -- name: libedit - version: 3.1.20250104 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - ncurses: '>=6.5,<7.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.conda - hash: - md5: c277e0a4d549b03ac1e9d6cbbe3d017b - sha256: d789471216e7aba3c184cd054ed61ce3f6dac6f87a50ec69291b9297f8c18724 - category: main - optional: false -- name: libev - version: '4.33' - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=12' - url: https://repo.prefix.dev/conda-forge/linux-64/libev-4.33-hd590300_2.conda - hash: - md5: 172bf1cd1ff8629f2b1179945ed45055 - sha256: 1cd6048169fa0395af74ed5d8f1716e22c19a81a8a36f934c110ca3ad4dd27b4 - category: main - optional: false -- name: libexpat - version: 2.7.3 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libexpat-2.7.3-hecca717_0.conda - hash: - md5: 8b09ae86839581147ef2e5c5e229d164 - sha256: 1e1b08f6211629cbc2efe7a5bca5953f8f6b3cae0eeb04ca4dacee1bd4e2db2f - category: main - optional: false -- name: libexpat - version: 2.7.3 - 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/libexpat-2.7.3-hac47afa_0.conda - hash: - md5: 8c9e4f1a0e688eef2e95711178061a0f - sha256: 844ab708594bdfbd7b35e1a67c379861bcd180d6efe57b654f482ae2f7f5c21e - category: main - optional: false -- name: libffi - version: 3.5.2 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libffi-3.5.2-h9ec8514_0.conda - hash: - md5: 35f29eec58405aaf55e01cb470d8c26a - sha256: 25cbdfa65580cfab1b8d15ee90b4c9f1e0d72128f1661449c9a999d341377d54 - category: main - optional: false -- name: libffi - version: 3.5.2 - 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/libffi-3.5.2-h52bdfb6_0.conda - hash: - md5: ba4ad812d2afc22b9a34ce8327a0930f - sha256: ddff25aaa4f0aa535413f5d831b04073789522890a4d8626366e43ecde1534a3 - category: main - optional: false -- name: libfreetype - version: 2.14.1 - manager: conda - platform: linux-64 - dependencies: - libfreetype6: '>=2.14.1' - url: https://repo.prefix.dev/conda-forge/linux-64/libfreetype-2.14.1-ha770c72_0.conda - hash: - md5: f4084e4e6577797150f9b04a4560ceb0 - sha256: 4641d37faeb97cf8a121efafd6afd040904d4bca8c46798122f417c31d5dfbec - category: main - optional: false -- name: libfreetype - version: 2.14.1 - manager: conda - platform: win-64 - dependencies: - libfreetype6: '>=2.14.1' - url: https://repo.prefix.dev/conda-forge/win-64/libfreetype-2.14.1-h57928b3_0.conda - hash: - md5: 3235024fe48d4087721797ebd6c9d28c - sha256: 2029702ec55e968ce18ec38cc8cf29f4c8c4989a0d51797164dab4f794349a64 - category: main - optional: false -- name: libfreetype6 - version: 2.14.1 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' - libpng: '>=1.6.50,<1.7.0a0' - libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libfreetype6-2.14.1-h73754d4_0.conda - hash: - md5: 8e7251989bca326a28f4a5ffbd74557a - sha256: 4a7af818a3179fafb6c91111752954e29d3a2a950259c14a2fc7ba40a8b03652 - category: main - optional: false -- name: libfreetype6 - version: 2.14.1 - manager: conda - platform: win-64 - dependencies: - libpng: '>=1.6.50,<1.7.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/libfreetype6-2.14.1-hdbac1cb_0.conda - hash: - md5: 6e7c5c5ab485057b5d07fd8188ba5c28 - sha256: 223710600b1a5567163f7d66545817f2f144e4ef8f84e99e90f6b8a4e19cb7ad - category: main - optional: false -- name: libgcc - 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.2.0-he0feb66_16.conda - hash: - md5: 6d0363467e6ed84f11435eb309f2ff06 - sha256: 6eed58051c2e12b804d53ceff5994a350c61baf117ec83f5f10c953a3f311451 - category: main - optional: false -- name: libgcc - 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.2.0-h8ee18e1_16.conda - hash: - md5: 1edb8bd8e093ebd31558008e9cb23b47 - sha256: 24984e1e768440ba73021f08a1da0c1ec957b30d7071b9a89b877a273d17cae8 - category: main - optional: false -- name: libgcc-ng - version: 15.2.0 - manager: conda - platform: linux-64 - dependencies: - libgcc: 15.2.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-ng-15.2.0-h69a702a_16.conda - hash: - md5: 5a68259fac2da8f2ee6f7bfe49c9eb8b - sha256: 5f07f9317f596a201cc6e095e5fc92621afca64829785e483738d935f8cab361 - category: main - optional: false -- name: libgfortran - version: 15.2.0 - manager: conda - platform: linux-64 - dependencies: - libgfortran5: 15.2.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran-15.2.0-h69a702a_16.conda - hash: - md5: 40d9b534410403c821ff64f00d0adc22 - sha256: 8a7b01e1ee1c462ad243524d76099e7174ebdd94ff045fe3e9b1e58db196463b - category: main - optional: false -- name: libgfortran5 - version: 15.2.0 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=15.2.0' - url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran5-15.2.0-h68bc16d_16.conda - hash: - md5: 39183d4e0c05609fd65f130633194e37 - sha256: d0e974ebc937c67ae37f07a28edace978e01dc0f44ee02f29ab8a16004b8148b - category: main - optional: false -- name: libgomp - 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.2.0-he0feb66_16.conda - hash: - md5: 26c46f90d0e727e95c6c9498a33a09f3 - sha256: 5b3e5e4e9270ecfcd48f47e3a68f037f5ab0f529ccb223e8e5d5ac75a58fc687 - category: main - optional: false -- name: libgomp - 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.2.0-h8ee18e1_16.conda - hash: - md5: ab8189163748f95d4cb18ea1952943c3 - sha256: 9c86aadc1bd9740f2aca291da8052152c32dd1c617d5d4fd0f334214960649bb - category: main - optional: false -- name: libhwloc - version: 2.12.2 - manager: conda - platform: win-64 - dependencies: - libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' - libxml2: '' - libxml2-16: '>=2.14.6' - ucrt: '>=10.0.20348.0' - vc: '>=14.3,<15' - vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libhwloc-2.12.2-default_h4379cf1_1000.conda - hash: - md5: 3b576f6860f838f950c570f4433b086e - sha256: 8cdf11333a81085468d9aa536ebb155abd74adc293576f6013fc0c85a7a90da3 - category: main - optional: false -- name: libhwy - version: 1.3.0 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' - libstdcxx: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libhwy-1.3.0-h4c17acf_1.conda - hash: - md5: c2a0c1d0120520e979685034e0b79859 - sha256: 2bdd1cdd677b119abc5e83069bec2e28fe6bfb21ebaea3cd07acee67f38ea274 - category: main - optional: false -- name: libhwy - version: 1.3.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/libhwy-1.3.0-ha71e874_1.conda - hash: - md5: f4649d4b6bf40d616eda57d6255d2333 - sha256: c722a04f065656b988a46dee87303ff0bf037179c50e2e76704b693def7f9a96 - category: main - optional: false -- name: libiconv - version: '1.18' - 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/libiconv-1.18-hc1393d2_2.conda - hash: - md5: 64571d1dd6cdcfa25d0664a5950fdaa2 - sha256: 0dcdb1a5f01863ac4e8ba006a8b0dc1a02d2221ec3319b5915a1863254d7efa7 - category: main - optional: false -- name: libjpeg-turbo - version: 3.1.2 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libjpeg-turbo-3.1.2-hb03c661_0.conda - hash: - md5: 8397539e3a0bbd1695584fb4f927485a - sha256: cc9aba923eea0af8e30e0f94f2ad7156e2984d80d1e8e7fe6be5a1f257f0eb32 - category: main - optional: false -- name: libjpeg-turbo - version: 3.1.2 - 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/libjpeg-turbo-3.1.2-hfd05255_0.conda - hash: - md5: 56a686f92ac0273c0f6af58858a3f013 - sha256: 795e2d4feb2f7fc4a2c6e921871575feb32b8082b5760726791f080d1e2c2597 - category: main - optional: false -- name: libjxl - version: 0.11.1 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libbrotlidec: '>=1.1.0,<1.2.0a0' - libbrotlienc: '>=1.1.0,<1.2.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 - hash: - md5: f2840d9c2afb19e303e126c9d3a04b36 - sha256: b9d924d69fc84cd3c660a181985748d9c2df34cd7c7bb03b92d8f70efa7753d9 - category: main - optional: false -- name: libjxl - version: 0.11.1 - manager: conda - platform: win-64 - dependencies: - libbrotlidec: '>=1.1.0,<1.2.0a0' - libbrotlienc: '>=1.1.0,<1.2.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 - hash: - md5: f0584648fbaf89d1cef77d94bc838d3a - sha256: 019de576f4eb0ca78ba2466514f4f84b83e222d9be83ea920f6c0f3ae260b71a - category: main - optional: false -- name: liblapack - version: 3.11.0 - manager: conda - platform: linux-64 - dependencies: - libblas: 3.11.0 - url: https://repo.prefix.dev/conda-forge/linux-64/liblapack-3.11.0-5_h47877c9_openblas.conda - hash: - md5: b38076eb5c8e40d0106beda6f95d7609 - sha256: c723b6599fcd4c6c75dee728359ef418307280fa3e2ee376e14e85e5bbdda053 - category: main - optional: false -- name: liblapack - version: 3.11.0 - manager: conda - platform: win-64 - dependencies: - libblas: 3.11.0 - url: https://repo.prefix.dev/conda-forge/win-64/liblapack-3.11.0-5_hf9ab0e9_mkl.conda - hash: - md5: e62c42a4196dee97d20400612afcb2b1 - sha256: a2d33f5cc2b8a9042f2af6981c6733ab1a661463823eaa56595a9c58c0ab77e1 - category: main - optional: false -- name: liblzma - version: 5.8.1 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_2.conda - hash: - md5: 1a580f7796c7bf6393fddb8bbbde58dc - sha256: f2591c0069447bbe28d4d696b7fcb0c5bd0b4ac582769b89addbcf26fb3430d8 - category: main - optional: false -- name: liblzma - version: 5.8.1 - manager: conda - platform: win-64 - dependencies: - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/liblzma-5.8.1-h2466b09_2.conda - hash: - md5: c15148b2e18da456f5108ccb5e411446 - sha256: 55764956eb9179b98de7cc0e55696f2eff8f7b83fc3ebff5e696ca358bca28cc - category: main - optional: false -- name: libnghttp2 - version: 1.67.0 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - c-ares: '>=1.34.5,<2.0a0' - libev: '>=4.33,<5.0a0' - libgcc: '>=14' - libstdcxx: '>=14' - libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.5.2,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libnghttp2-1.67.0-had1ee68_0.conda - hash: - md5: b499ce4b026493a13774bcf0f4c33849 - sha256: a4a7dab8db4dc81c736e9a9b42bdfd97b087816e029e221380511960ac46c690 - category: main - optional: false -- name: libnsl - version: 2.0.1 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libnsl-2.0.1-hb9d3cd8_1.conda - hash: - md5: d864d34357c3b65a4b731f78c0801dc4 - sha256: 927fe72b054277cde6cb82597d0fcf6baf127dcbce2e0a9d8925a68f1265eef5 - category: main - optional: false -- name: libopenblas - version: 0.3.30 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' - libgfortran: '' - libgfortran5: '>=14.3.0' - url: https://repo.prefix.dev/conda-forge/linux-64/libopenblas-0.3.30-pthreads_h94d23a6_4.conda - hash: - md5: be43915efc66345cccb3c310b6ed0374 - sha256: 199d79c237afb0d4780ccd2fbf829cea80743df60df4705202558675e07dd2c5 - category: main - optional: false -- name: libpng - version: 1.6.53 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' - libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libpng-1.6.53-h421ea60_0.conda - hash: - md5: 00d4e66b1f746cb14944cad23fffb405 - sha256: 8acdeb9a7e3d2630176ba8e947caf6bf4985a5148dec69b801e5eb797856688b - category: main - optional: false -- name: libpng - version: 1.6.53 - manager: conda - platform: win-64 - dependencies: - 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/libpng-1.6.53-h7351971_0.conda - hash: - md5: fb6f43f6f08ca100cb24cff125ab0d9e - sha256: e5d061e7bdb2b97227b6955d1aa700a58a5703b5150ab0467cc37de609f277b6 - category: main - optional: false -- name: libsqlite - version: 3.51.1 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - icu: '>=78.1,<79.0a0' - libgcc: '>=14' - libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.51.1-hf4e2dac_1.conda - hash: - md5: b1f35e70f047918b49fb4b181e40300e - sha256: d614540c55f22ad555633f75e174089018ddfc65c49f447f7bbdbc3c3013bec1 - category: main - optional: false -- name: libsqlite - version: 3.51.1 - 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.51.1-hf5d6505_1.conda - hash: - md5: be65be5f758709fc01b01626152e96b0 - sha256: d6d86715a1afe11f626b7509935e9d2e14a4946632c0ac474526e20fc6c55f99 - category: main - optional: false -- name: libssh2 - version: 1.11.1 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.5.0,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libssh2-1.11.1-hcf80075_0.conda - hash: - md5: eecce068c7e4eddeb169591baac20ac4 - sha256: fa39bfd69228a13e553bd24601332b7cfeb30ca11a3ca50bb028108fe90a7661 - category: main - optional: false -- name: libssh2 - version: 1.11.1 - manager: conda - platform: win-64 - dependencies: - libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.5.0,<4.0a0' - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libssh2-1.11.1-h9aa295b_0.conda - hash: - md5: 9dce2f112bfd3400f4f432b3d0ac07b2 - sha256: cbdf93898f2e27cefca5f3fe46519335d1fab25c4ea2a11b11502ff63e602c09 - category: main - optional: false -- name: libstdcxx - version: 15.2.0 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: 15.2.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-15.2.0-h934c35e_16.conda - hash: - md5: 68f68355000ec3f1d6f26ea13e8f525f - sha256: 813427918316a00c904723f1dfc3da1bbc1974c5cfe1ed1e704c6f4e0798cbc6 - category: main - optional: false -- name: libstdcxx-ng - version: 15.2.0 - manager: conda - platform: linux-64 - dependencies: - libstdcxx: 15.2.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-15.2.0-hdf11a46_16.conda - hash: - md5: 1b3152694d236cf233b76b8c56bf0eae - sha256: 81f2f246c7533b41c5e0c274172d607829019621c4a0823b5c0b4a8c7028ee84 - category: main - optional: false -- name: libtiff - 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' - libgcc: '>=14' - libjpeg-turbo: '>=3.1.0,<4.0a0' - liblzma: '>=5.8.1,<6.0a0' - libstdcxx: '>=14' - 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.1-h8261f1e_0.conda - hash: - md5: 72b531694ebe4e8aa6f5745d1015c1b4 - sha256: ddda0d7ee67e71e904a452010c73e32da416806f5cb9145fb62c322f97e717fb - category: main - optional: false -- name: libtiff - version: 4.7.1 - manager: conda - platform: win-64 - dependencies: - lerc: '>=4.0.0,<5.0a0' - libdeflate: '>=1.24,<1.25.0a0' - libjpeg-turbo: '>=3.1.0,<4.0a0' - liblzma: '>=5.8.1,<6.0a0' - libzlib: '>=1.3.1,<2.0a0' - ucrt: '>=10.0.20348.0' - 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.1-h550210a_0.conda - hash: - md5: e23f29747d9d2aa2a39b594c114fac67 - sha256: d6cac6596ded0d5bbbc4198d7eb4db88da8c00236ebf5e2c8ad333ccde8965e2 - category: main - optional: false -- name: libuuid - version: 2.41.3 - 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.3-h5347b49_0.conda - hash: - md5: db409b7c1720428638e7c0d509d3e1b5 - sha256: 1a7539cfa7df00714e8943e18de0b06cceef6778e420a5ee3a2a145773758aee - category: main - optional: false -- name: libwebp-base - version: 1.6.0 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libwebp-base-1.6.0-hd42ef1d_0.conda - hash: - md5: aea31d2e5b1091feca96fcfe945c3cf9 - sha256: 3aed21ab28eddffdaf7f804f49be7a7d701e8f0e46c856d801270b470820a37b - category: main - optional: false -- name: libwebp-base - version: 1.6.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/libwebp-base-1.6.0-h4d5522a_0.conda - hash: - md5: f9bbae5e2537e3b06e0f7310ba76c893 - sha256: 7b6316abfea1007e100922760e9b8c820d6fc19df3f42fb5aca684cfacb31843 - category: main - optional: false -- name: libwinpthread - version: 12.0.0.r4.gg4f2fc60ca - manager: conda - platform: win-64 - dependencies: - ucrt: '' - url: https://repo.prefix.dev/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h57928b3_10.conda - hash: - md5: 8a86073cf3b343b87d03f41790d8b4e5 - sha256: 0fccf2d17026255b6e10ace1f191d0a2a18f2d65088fd02430be17c701f8ffe0 - category: main - optional: false -- name: libxcb - version: 1.17.0 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - pthread-stubs: '' - xorg-libxau: '>=1.0.11,<2.0a0' - xorg-libxdmcp: '' - url: https://repo.prefix.dev/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda - hash: - md5: 92ed62436b625154323d40d5f2f11dd7 - sha256: 666c0c431b23c6cec6e492840b176dde533d48b7e6fb8883f5071223433776aa - category: main - optional: false -- name: libxcb - version: 1.17.0 - manager: conda - platform: win-64 - dependencies: - libgcc: '>=13' - libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' - pthread-stubs: '' - ucrt: '>=10.0.20348.0' - xorg-libxau: '>=1.0.11,<2.0a0' - xorg-libxdmcp: '' - url: https://repo.prefix.dev/conda-forge/win-64/libxcb-1.17.0-h0e4246c_0.conda - hash: - md5: a69bbf778a462da324489976c84cfc8c - sha256: 08dec73df0e161c96765468847298a420933a36bc4f09b50e062df8793290737 - category: main - optional: false -- name: libxcrypt - version: 4.4.36 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=12' - url: https://repo.prefix.dev/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda - hash: - md5: 5aa797f8787fe7a17d1b0821485b5adc - sha256: 6ae68e0b86423ef188196fff6207ed0c8195dd84273cb5623b85aa08033a410c - category: main - optional: false -- name: libxml2 - version: 2.15.1 - manager: conda - platform: win-64 - dependencies: - icu: '>=78.1,<79.0a0' - libiconv: '>=1.18,<2.0a0' - liblzma: '>=5.8.1,<6.0a0' - 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.1-h779ef1b_1.conda - hash: - md5: 68dc154b8d415176c07b6995bd3a65d9 - sha256: 8b47d5fb00a6ccc0f495d16787ab5f37a434d51965584d6000966252efecf56d - category: main - optional: false -- name: libxml2-16 - version: 2.15.1 - manager: conda - platform: win-64 - dependencies: - icu: '>=78.1,<79.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.1-h3cfd58e_1.conda - hash: - md5: 07d73826fde28e7dbaec52a3297d7d26 - sha256: a857e941156b7f462063e34e086d212c6ccbc1521ebdf75b9ed66bd90add57dc - category: main - optional: false -- name: libzlib - version: 1.3.1 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda - hash: - md5: edb0dca6bc32e4f4789199455a1dbeb8 - sha256: d4bfe88d7cb447768e31650f06257995601f89076080e76df55e3112d4e47dc4 - category: main - optional: false -- name: libzlib - version: 1.3.1 - manager: conda - platform: win-64 - dependencies: - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda - hash: - md5: 41fbfac52c601159df6c01f875de31b9 - sha256: ba945c6493449bed0e6e29883c4943817f7c79cbff52b83360f7b341277c6402 - category: main - optional: false -- name: libzopfli - version: 1.0.3 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=9.3.0' - libstdcxx-ng: '>=9.3.0' - url: https://repo.prefix.dev/conda-forge/linux-64/libzopfli-1.0.3-h9c3ff4c_0.tar.bz2 - hash: - md5: c66fe2d123249af7651ebde8984c51c2 - sha256: ff94f30b2e86cbad6296cf3e5804d442d9e881f7ba8080d92170981662528c6e - category: main - optional: false -- name: libzopfli - version: 1.0.3 - manager: conda - platform: win-64 - dependencies: - vc: '>=14.1,<15.0a0' - vs2015_runtime: '>=14.16.27012' - url: https://repo.prefix.dev/conda-forge/win-64/libzopfli-1.0.3-h0e60522_0.tar.bz2 - hash: - md5: b4b0cbc0abc9f26b730231ffdabf3881 - sha256: c6f2ee6f4758f6e286a2ba9b7503cff25b178fcddeda997921d3012961ce9a62 - category: main - optional: false -- name: llvm-openmp - version: 21.1.8 - 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-21.1.8-h4fa8253_0.conda - hash: - md5: 0d8b425ac862bcf17e4b28802c9351cb - sha256: 145c4370abe870f10987efa9fc15a8383f1dab09abbc9ad4ff15a55d45658f7b - category: main - optional: false -- name: locket - version: 1.0.0 - manager: conda - platform: linux-64 - dependencies: - python: '>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*' - url: https://repo.prefix.dev/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2 - hash: - md5: 91e27ef3d05cc772ce627e51cff111c4 - sha256: 9afe0b5cfa418e8bdb30d8917c5a6cec10372b037924916f1f85b9f4899a67a6 - category: main - optional: false -- name: locket - version: 1.0.0 - manager: conda - platform: win-64 - dependencies: - python: '>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*' - url: https://repo.prefix.dev/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2 - hash: - md5: 91e27ef3d05cc772ce627e51cff111c4 - sha256: 9afe0b5cfa418e8bdb30d8917c5a6cec10372b037924916f1f85b9f4899a67a6 - category: main - optional: false -- name: lz4-c - version: 1.10.0 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - libstdcxx: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/lz4-c-1.10.0-h5888daf_1.conda - hash: - md5: 9de5350a85c4a20c685259b889aa6393 - sha256: 47326f811392a5fd3055f0f773036c392d26fdb32e4d8e7a8197eed951489346 - category: main - optional: false -- name: lz4-c - version: 1.10.0 - manager: conda - platform: win-64 - dependencies: - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/lz4-c-1.10.0-h2466b09_1.conda - hash: - md5: 0b69331897a92fac3d8923549d48d092 - sha256: 632cf3bdaf7a7aeb846de310b6044d90917728c73c77f138f08aa9438fc4d6b5 - category: main - optional: false -- name: markupsafe - version: 3.0.3 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* - url: https://repo.prefix.dev/conda-forge/linux-64/markupsafe-3.0.3-py310h3406613_0.conda - hash: - md5: 8854df4fb4e37cc3ea0a024e48c9c180 - sha256: b3894b37cab530d1adab5b9ce39a1b9f28040403cc0042b77e04a2f227a447de - category: main - optional: false -- name: markupsafe - 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.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: 1fdd2255424eaf0d5e707c205ace2c30 - sha256: 87203ea8bbe265ebabb16673c9442d2097e1b405dc70df49d6920730e7be6e74 - category: main - optional: false -- name: matplotlib-base - version: 3.8.4 - manager: conda - platform: linux-64 - dependencies: - certifi: '>=2020.06.20' - contourpy: '>=1.0.1' - cycler: '>=0.10' - fonttools: '>=4.22.0' - freetype: '>=2.12.1,<3.0a0' - kiwisolver: '>=1.3.1' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - numpy: '>=1.21' - packaging: '>=20.0' - pillow: '>=8' - pyparsing: '>=2.3.1' - python: '>=3.10,<3.11.0a0' - python-dateutil: '>=2.7' - python_abi: 3.10.* - tk: '>=8.6.13,<8.7.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/matplotlib-base-3.8.4-py310hef631a5_2.conda - hash: - md5: b3fa3fc2a0fa8b53b913c94297b12e27 - sha256: 5733c68ff72a04a42d8363965155d4b27a1ed3364a507b8cac582c0b4881d222 - category: main - optional: false -- name: matplotlib-base - version: 3.8.4 - manager: conda - platform: win-64 - dependencies: - certifi: '>=2020.06.20' - contourpy: '>=1.0.1' - cycler: '>=0.10' - fonttools: '>=4.22.0' - freetype: '>=2.12.1,<3.0a0' - kiwisolver: '>=1.3.1' - numpy: '>=1.21' - packaging: '>=20.0' - pillow: '>=8' - pyparsing: '>=2.3.1' - python: '>=3.10,<3.11.0a0' - python-dateutil: '>=2.7' - 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/matplotlib-base-3.8.4-py310hadb10a8_2.conda - hash: - md5: 8f5e26aa64ab245691efb7f87c584060 - sha256: bc3ecb8e9f68fd1b4214e223f08e94d8f88e6fdc237dc0e86efcb9f090737e96 - category: main - optional: false -- name: mccabe - version: 0.7.0 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda - hash: - md5: 827064ddfe0de2917fb29f1da4f8f533 - sha256: 9b0037171dad0100f0296699a11ae7d355237b55f42f9094aebc0f41512d96a1 - category: dev - optional: true -- name: mccabe - version: 0.7.0 - manager: conda - platform: win-64 - dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda - hash: - md5: 827064ddfe0de2917fb29f1da4f8f533 - sha256: 9b0037171dad0100f0296699a11ae7d355237b55f42f9094aebc0f41512d96a1 - category: dev - optional: true -- name: mkl - version: 2025.3.0 - manager: conda - platform: win-64 - dependencies: - llvm-openmp: '>=21.1.8' - tbb: '>=2022.3.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_455.conda - hash: - md5: fd05d1e894497b012d05a804232254ed - sha256: b2b4c84b95210760e4d12319416c60ab66e03674ccdcbd14aeb59f82ebb1318d - category: main - optional: false -- name: munkres - version: 1.1.4 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyhd8ed1ab_1.conda - hash: - md5: 37293a85a0f4f77bbd9cf7aaefc62609 - sha256: d09c47c2cf456de5c09fa66d2c3c5035aa1fa228a1983a433c47b876aa16ce90 - category: main - optional: false -- name: munkres - version: 1.1.4 - manager: conda - platform: win-64 - dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyhd8ed1ab_1.conda - hash: - md5: 37293a85a0f4f77bbd9cf7aaefc62609 - sha256: d09c47c2cf456de5c09fa66d2c3c5035aa1fa228a1983a433c47b876aa16ce90 - category: main - optional: false -- name: narwhals - version: 2.15.0 - manager: conda - platform: linux-64 - dependencies: - python: '' - url: https://repo.prefix.dev/conda-forge/noarch/narwhals-2.15.0-pyhcf101f3_0.conda - hash: - md5: 37926bb0db8b04b8b99945076e1442d0 - sha256: 2e64699401c6170ce9a0916461ff4686f8d10b076f6abe1d887cbcb7061c0e85 - category: main - optional: false -- name: narwhals - version: 2.15.0 - manager: conda - platform: win-64 - dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/narwhals-2.15.0-pyhcf101f3_0.conda - hash: - md5: 37926bb0db8b04b8b99945076e1442d0 - sha256: 2e64699401c6170ce9a0916461ff4686f8d10b076f6abe1d887cbcb7061c0e85 - category: main - optional: false -- name: ncurses - version: '6.5' - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda - hash: - md5: 47e340acb35de30501a76c7c799c41d7 - sha256: 3fde293232fa3fca98635e1167de6b7c7fda83caf24b9d6c91ec9eefb4f4d586 - category: main - optional: false -- name: nest-asyncio - version: 1.6.0 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_1.conda - hash: - md5: 598fd7d4d0de2455fb74f56063969a97 - sha256: bb7b21d7fd0445ddc0631f64e66d91a179de4ba920b8381f29b9d006a42788c0 - category: main - optional: false -- name: nest-asyncio - version: 1.6.0 - manager: conda - platform: win-64 - dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_1.conda - hash: - md5: 598fd7d4d0de2455fb74f56063969a97 - sha256: bb7b21d7fd0445ddc0631f64e66d91a179de4ba920b8381f29b9d006a42788c0 - category: main - optional: false -- name: networkx - version: 3.4.2 - manager: conda - platform: linux-64 - dependencies: - python: '' - url: https://repo.prefix.dev/conda-forge/noarch/networkx-3.4.2-pyh267e887_2.conda - hash: - md5: fd40bf7f7f4bc4b647dc8512053d9873 - sha256: 39625cd0c9747fa5c46a9a90683b8997d8b9649881b3dc88336b13b7bdd60117 - category: main - optional: false -- name: networkx - version: 3.4.2 - manager: conda - platform: win-64 - dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/networkx-3.4.2-pyh267e887_2.conda - hash: - md5: fd40bf7f7f4bc4b647dc8512053d9873 - sha256: 39625cd0c9747fa5c46a9a90683b8997d8b9649881b3dc88336b13b7bdd60117 - category: main - optional: false -- name: numpy - version: 1.26.4 - manager: conda - platform: linux-64 - dependencies: - libblas: '>=3.9.0,<4.0a0' - libcblas: '>=3.9.0,<4.0a0' - libgcc-ng: '>=12' - liblapack: '>=3.9.0,<4.0a0' - libstdcxx-ng: '>=12' - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* - url: https://repo.prefix.dev/conda-forge/linux-64/numpy-1.26.4-py310hb13e2d6_0.conda - hash: - md5: 6593de64c935768b6bad3e19b3e978be - sha256: 028fe2ea8e915a0a032b75165f11747770326f3d767e642880540c60a3256425 - category: main - optional: false -- name: numpy - version: 1.26.4 - manager: conda - platform: win-64 - dependencies: - libblas: '>=3.9.0,<4.0a0' - libcblas: '>=3.9.0,<4.0a0' - liblapack: '>=3.9.0,<4.0a0' - 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/numpy-1.26.4-py310hf667824_0.conda - hash: - md5: 93e881c391880df90e74e43a4b67c16d - sha256: 20ca447a8f840c01961f2bdf0847fc7b7785a62968e867d7aa4ca8a66d70f9ad - category: main - optional: false -- name: openjpeg - version: 2.5.4 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' - libpng: '>=1.6.50,<1.7.0a0' - libstdcxx: '>=14' - 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.4-h55fea9a_0.conda - hash: - md5: 11b3379b191f63139e29c0d19dee24cd - sha256: 3900f9f2dbbf4129cf3ad6acf4e4b6f7101390b53843591c53b00f034343bc4d - category: main - optional: false -- name: openjpeg - version: 2.5.4 - manager: conda - platform: win-64 - dependencies: - libpng: '>=1.6.50,<1.7.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.4-h24db6dd_0.conda - hash: - md5: 5af852046226bb3cb15c7f61c2ac020a - sha256: 226c270a7e3644448954c47959c00a9bf7845f6d600c2a643db187118d028eee - category: main - optional: false -- name: openssl - version: 3.6.0 - 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.6.0-h26f9b46_0.conda - hash: - md5: 9ee58d5c534af06558933af3c845a780 - sha256: a47271202f4518a484956968335b2521409c8173e123ab381e775c358c67fe6d - category: main - optional: false -- name: openssl - version: 3.6.0 - manager: conda - platform: win-64 - dependencies: - ca-certificates: '' - 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.6.0-h725018a_0.conda - hash: - md5: 84f8fb4afd1157f59098f618cd2437e4 - sha256: 6d72d6f766293d4f2aa60c28c244c8efed6946c430814175f959ffe8cab899b3 - category: main - optional: false -- name: packaging - version: '25.0' - manager: conda - platform: linux-64 - dependencies: - python: '' - url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda - hash: - md5: 58335b26c38bf4a20f399384c33cbcf9 - sha256: 289861ed0c13a15d7bbb408796af4de72c2fe67e2bcb0de98f4c3fce259d7991 - category: main - optional: false -- name: packaging - version: '25.0' - manager: conda - platform: win-64 - dependencies: - python: '>=3.8' - url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda - hash: - md5: 58335b26c38bf4a20f399384c33cbcf9 - sha256: 289861ed0c13a15d7bbb408796af4de72c2fe67e2bcb0de98f4c3fce259d7991 - category: main - optional: false -- name: partd - version: 1.4.2 - manager: conda - platform: linux-64 - dependencies: - locket: '' - python: '>=3.9' - toolz: '' - url: https://repo.prefix.dev/conda-forge/noarch/partd-1.4.2-pyhd8ed1ab_0.conda - hash: - md5: 0badf9c54e24cecfb0ad2f99d680c163 - sha256: 472fc587c63ec4f6eba0cc0b06008a6371e0a08a5986de3cf4e8024a47b4fe6c - category: main - optional: false -- name: partd - version: 1.4.2 - manager: conda - platform: win-64 - dependencies: - locket: '' - python: '>=3.9' - toolz: '' - url: https://repo.prefix.dev/conda-forge/noarch/partd-1.4.2-pyhd8ed1ab_0.conda - hash: - md5: 0badf9c54e24cecfb0ad2f99d680c163 - sha256: 472fc587c63ec4f6eba0cc0b06008a6371e0a08a5986de3cf4e8024a47b4fe6c - category: main - optional: false -- name: pillow - version: 10.3.0 - manager: conda - platform: linux-64 - dependencies: - freetype: '>=2.12.1,<3.0a0' - lcms2: '>=2.16,<3.0a0' - libgcc-ng: '>=12' - libjpeg-turbo: '>=3.0.0,<4.0a0' - libtiff: '>=4.6.0,<4.8.0a0' - libwebp-base: '>=1.4.0,<2.0a0' - libxcb: '>=1.16,<2.0.0a0' - libzlib: '>=1.3.1,<2.0a0' - openjpeg: '>=2.5.2,<3.0a0' - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* - tk: '>=8.6.13,<8.7.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/pillow-10.3.0-py310hebfe307_1.conda - hash: - md5: 8d357fd769e0e1a957f5916bdc8b1fa2 - sha256: adb1d874246c47cc8972894b13eeb70ef1aab067f51e615f4976cfe9c3ee3208 - category: main - optional: false -- name: pillow - version: 10.3.0 - manager: conda - platform: win-64 - dependencies: - freetype: '>=2.12.1,<3.0a0' - lcms2: '>=2.16,<3.0a0' - libjpeg-turbo: '>=3.0.0,<4.0a0' - libtiff: '>=4.6.0,<4.8.0a0' - libwebp-base: '>=1.4.0,<2.0a0' - libxcb: '>=1.16,<2.0.0a0' - libzlib: '>=1.3.1,<2.0a0' - openjpeg: '>=2.5.2,<3.0a0' - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* - tk: '>=8.6.13,<8.7.0a0' - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/pillow-10.3.0-py310h3e38d90_1.conda - hash: - md5: ee35afda8b2154e7396fae5ca7fbea6b - sha256: 50a0d0f8de51c47f8ca0820f0ebfc7730aec4a7a98069347a3395b21b67f7e21 - category: main - optional: false -- name: pip - version: '25.3' - manager: conda - platform: linux-64 - dependencies: - python: '>=3.10,<3.13.0a0' - setuptools: '' - wheel: '' - url: https://repo.prefix.dev/conda-forge/noarch/pip-25.3-pyh8b19718_0.conda - hash: - md5: c55515ca43c6444d2572e0f0d93cb6b9 - sha256: b67692da1c0084516ac1c9ada4d55eaf3c5891b54980f30f3f444541c2706f1e - category: main - optional: false -- name: pip - version: '25.3' - manager: conda - platform: win-64 - dependencies: - python: '>=3.10,<3.13.0a0' - setuptools: '' - wheel: '' - url: https://repo.prefix.dev/conda-forge/noarch/pip-25.3-pyh8b19718_0.conda - hash: - md5: c55515ca43c6444d2572e0f0d93cb6b9 - sha256: b67692da1c0084516ac1c9ada4d55eaf3c5891b54980f30f3f444541c2706f1e - category: main - optional: false -- name: platformdirs - version: 4.5.1 - manager: conda - platform: linux-64 - dependencies: - python: '' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.5.1-pyhcf101f3_0.conda - hash: - md5: 1bd2e65c8c7ef24f4639ae6e850dacc2 - sha256: 04c64fb78c520e5c396b6e07bc9082735a5cc28175dbe23138201d0a9441800b - category: dev - optional: true -- name: platformdirs - version: 4.5.1 - manager: conda - platform: win-64 - dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.5.1-pyhcf101f3_0.conda - hash: - md5: 1bd2e65c8c7ef24f4639ae6e850dacc2 - sha256: 04c64fb78c520e5c396b6e07bc9082735a5cc28175dbe23138201d0a9441800b - category: dev - optional: true -- name: plotly - version: 6.5.1 - manager: conda - platform: linux-64 - dependencies: - narwhals: '>=1.15.1' - packaging: '' - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/plotly-6.5.1-pyhd8ed1ab_0.conda - hash: - md5: 0a8b38871cab04059c1cc04853b415a2 - sha256: 262a532a0107210a7fa6ba63fd3170a804417d1d62ae5b49f9ecd6afc7e63465 - category: main - optional: false -- name: plotly - version: 6.5.1 - manager: conda - platform: win-64 - dependencies: - narwhals: '>=1.15.1' - packaging: '' - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/plotly-6.5.1-pyhd8ed1ab_0.conda - hash: - md5: 0a8b38871cab04059c1cc04853b415a2 - sha256: 262a532a0107210a7fa6ba63fd3170a804417d1d62ae5b49f9ecd6afc7e63465 - category: main - optional: false -- name: pluggy - version: 1.6.0 - manager: conda - platform: linux-64 - dependencies: - python: '' - url: https://repo.prefix.dev/conda-forge/noarch/pluggy-1.6.0-pyhf9edf01_1.conda - hash: - md5: d7585b6550ad04c8c5e21097ada2888e - sha256: e14aafa63efa0528ca99ba568eaf506eb55a0371d12e6250aaaa61718d2eb62e - category: dev - optional: true -- name: pluggy - version: 1.6.0 - manager: conda - platform: win-64 - dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pluggy-1.6.0-pyhf9edf01_1.conda - hash: - md5: d7585b6550ad04c8c5e21097ada2888e - sha256: e14aafa63efa0528ca99ba568eaf506eb55a0371d12e6250aaaa61718d2eb62e - category: dev - optional: true -- name: proxy-tools - version: 0.1.0 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.6' - url: https://repo.prefix.dev/conda-forge/noarch/proxy-tools-0.1.0-pyhd8ed1ab_0.conda - hash: - md5: 8aa63cc99a004132c1e68c273e69a24c - sha256: 9e27119d2595c92d34d3b3ce554515e96a312fa305aebaa055ed521c1aa94524 - category: webview - optional: true -- name: proxy-tools - version: 0.1.0 - manager: conda - platform: win-64 - dependencies: - python: '>=3.6' - url: https://repo.prefix.dev/conda-forge/noarch/proxy-tools-0.1.0-pyhd8ed1ab_0.conda - hash: - md5: 8aa63cc99a004132c1e68c273e69a24c - sha256: 9e27119d2595c92d34d3b3ce554515e96a312fa305aebaa055ed521c1aa94524 - category: webview - optional: true -- name: pthread-stubs - version: '0.4' - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda - hash: - md5: b3c17d95b5a10c6e64a21fa17573e70e - sha256: 9c88f8c64590e9567c6c80823f0328e58d3b1efb0e1c539c0315ceca764e0973 - category: main - optional: false -- name: pthread-stubs - version: '0.4' - manager: conda - platform: win-64 - dependencies: - libgcc: '>=13' - libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' - ucrt: '>=10.0.20348.0' - url: https://repo.prefix.dev/conda-forge/win-64/pthread-stubs-0.4-h0e40799_1002.conda - hash: - md5: 3c8f2573569bb816483e5cf57efbbe29 - sha256: 7e446bafb4d692792310ed022fe284e848c6a868c861655a92435af7368bae7b - category: main - optional: false -- name: pycparser - version: '2.22' - manager: conda - platform: linux-64 - dependencies: - python: '' - url: https://repo.prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda - hash: - md5: 12c566707c80111f9799308d9e265aef - sha256: 79db7928d13fab2d892592223d7570f5061c192f27b9febd1a418427b719acc6 - category: main - optional: false -- name: pycparser - version: '2.22' - manager: conda - platform: win-64 - dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda - hash: - md5: 12c566707c80111f9799308d9e265aef - sha256: 79db7928d13fab2d892592223d7570f5061c192f27b9febd1a418427b719acc6 - category: main - optional: false -- name: pydantic - version: 2.12.5 - manager: conda - platform: linux-64 - dependencies: - annotated-types: '>=0.6.0' - pydantic-core: 2.41.5 - python: '' - typing-extensions: '>=4.6.1' - typing-inspection: '>=0.4.2' - typing_extensions: '>=4.14.1' - url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.12.5-pyhcf101f3_1.conda - hash: - md5: c3946ed24acdb28db1b5d63321dbca7d - sha256: 868569d9505b7fe246c880c11e2c44924d7613a8cdcc1f6ef85d5375e892f13d - category: main - optional: false -- name: pydantic - version: 2.12.5 - manager: conda - platform: win-64 - dependencies: - annotated-types: '>=0.6.0' - pydantic-core: 2.41.5 - python: '>=3.10' - typing-extensions: '>=4.6.1' - typing-inspection: '>=0.4.2' - typing_extensions: '>=4.14.1' - url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.12.5-pyhcf101f3_1.conda - hash: - md5: c3946ed24acdb28db1b5d63321dbca7d - sha256: 868569d9505b7fe246c880c11e2c44924d7613a8cdcc1f6ef85d5375e892f13d - category: main - optional: false -- name: pydantic-core - version: 2.41.5 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - 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.41.5-py310hd8f68c5_1.conda - hash: - md5: eaab3d18db92c656e5e2508de78f4a8c - sha256: feb22e14b42321f3791ea24d726b7007e489a61ba72c98e22c7ec964671bb08a - category: main - optional: false -- name: pydantic-core - version: 2.41.5 - manager: conda - platform: win-64 - dependencies: - python: '' - python_abi: 3.10.* - typing-extensions: '>=4.6.0,!=4.7.0' - ucrt: '>=10.0.20348.0' - vc: '>=14.3,<15' - vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/pydantic-core-2.41.5-py310h034784e_1.conda - hash: - md5: 62acf7285af0808040ee7b92c986512d - sha256: b0d36de67b42b6074de1cd3186b98334db451c05bc176addaf5a9a56105c6ea5 - category: main - optional: false -- name: pygments - version: 2.19.2 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda - hash: - md5: 6b6ece66ebcae2d5f326c77ef2c5a066 - sha256: 5577623b9f6685ece2697c6eb7511b4c9ac5fb607c9babc2646c811b428fd46a - category: dev - optional: true -- name: pygments - version: 2.19.2 - manager: conda - platform: win-64 - dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda - hash: - md5: 6b6ece66ebcae2d5f326c77ef2c5a066 - sha256: 5577623b9f6685ece2697c6eb7511b4c9ac5fb607c9babc2646c811b428fd46a - category: dev - optional: true -- name: pylint - version: 4.0.4 - manager: conda - platform: linux-64 - dependencies: - astroid: '>=4.0.2,<=4.1.0.dev0' - colorama: '>=0.4.5' - dill: '>=0.3.7' - isort: '>=5,<8,!=5.13' - mccabe: '>=0.6,<0.8' - platformdirs: '>=2.2' - python: '' - tomli: '>=1.1.0' - tomlkit: '>=0.10.1' - url: https://repo.prefix.dev/conda-forge/noarch/pylint-4.0.4-pyhcf101f3_0.conda - hash: - md5: 3a830511a81b99b67a1206a9d29b44b3 - sha256: ad0bb78785ab385d0afcca4a55e0226d8e6710ebad6450caa552f5fe61c2f6a0 - category: dev - optional: true -- name: pylint - version: 4.0.4 - manager: conda - platform: win-64 - dependencies: - astroid: '>=4.0.2,<=4.1.0.dev0' - colorama: '>=0.4.5' - dill: '>=0.3.7' - isort: '>=5,<8,!=5.13' - mccabe: '>=0.6,<0.8' - platformdirs: '>=2.2' - python: '>=3.10' - tomli: '>=1.1.0' - tomlkit: '>=0.10.1' - url: https://repo.prefix.dev/conda-forge/noarch/pylint-4.0.4-pyhcf101f3_0.conda - hash: - md5: 3a830511a81b99b67a1206a9d29b44b3 - sha256: ad0bb78785ab385d0afcca4a55e0226d8e6710ebad6450caa552f5fe61c2f6a0 - category: dev - optional: true -- name: pyparsing - version: 3.3.1 - manager: conda - platform: linux-64 - dependencies: - python: '' - url: https://repo.prefix.dev/conda-forge/noarch/pyparsing-3.3.1-pyhcf101f3_0.conda - hash: - md5: d837065e4e0de4962c3462079c23f969 - sha256: 0c70bc577f5efa87501bdc841b88f594f4d3f3a992dfb851e2130fa5c817835b - category: main - optional: false -- name: pyparsing - version: 3.3.1 - manager: conda - platform: win-64 - dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/pyparsing-3.3.1-pyhcf101f3_0.conda - hash: - md5: d837065e4e0de4962c3462079c23f969 - sha256: 0c70bc577f5efa87501bdc841b88f594f4d3f3a992dfb851e2130fa5c817835b - category: main - optional: false -- name: pysocks - version: 1.7.1 - manager: conda - platform: linux-64 - dependencies: - __unix: '' - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pysocks-1.7.1-pyha55dd90_7.conda - hash: - md5: 461219d1a5bd61342293efa2c0c90eac - sha256: ba3b032fa52709ce0d9fd388f63d330a026754587a2f461117cac9ab73d8d0d8 - category: main - optional: false -- name: pysocks - version: 1.7.1 - manager: conda - platform: win-64 - dependencies: - __win: '' - python: '>=3.9' - win_inet_pton: '' - url: https://repo.prefix.dev/conda-forge/noarch/pysocks-1.7.1-pyh09c184e_7.conda - hash: - md5: e2fd202833c4a981ce8a65974fe4abd1 - sha256: d016e04b0e12063fbee4a2d5fbb9b39a8d191b5a0042f0b8459188aedeabb0ca - category: main - optional: false -- name: pytest - version: 9.0.2 - manager: conda - platform: linux-64 - dependencies: - colorama: '>=0.4' - exceptiongroup: '>=1' - iniconfig: '>=1.0.1' - packaging: '>=22' - pluggy: '>=1.5,<2' - pygments: '>=2.7.2' - python: '' - tomli: '>=1' - url: https://repo.prefix.dev/conda-forge/noarch/pytest-9.0.2-pyhcf101f3_0.conda - hash: - md5: 2b694bad8a50dc2f712f5368de866480 - sha256: 9e749fb465a8bedf0184d8b8996992a38de351f7c64e967031944978de03a520 - category: dev - optional: true -- name: pytest - version: 9.0.2 - manager: conda - platform: win-64 - dependencies: - colorama: '>=0.4' - exceptiongroup: '>=1' - 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-9.0.2-pyhcf101f3_0.conda - hash: - md5: 2b694bad8a50dc2f712f5368de866480 - sha256: 9e749fb465a8bedf0184d8b8996992a38de351f7c64e967031944978de03a520 - category: dev - optional: true -- name: pytest-cov - version: 7.0.0 - manager: conda - platform: linux-64 - dependencies: - coverage: '>=7.10.6' - pluggy: '>=1.2' - pytest: '>=7' - python: '' - url: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-7.0.0-pyhcf101f3_1.conda - hash: - md5: 6891acad5e136cb62a8c2ed2679d6528 - sha256: d0f45586aad48ef604590188c33c83d76e4fc6370ac569ba0900906b24fd6a26 - category: dev - optional: true -- name: pytest-cov - version: 7.0.0 - manager: conda - platform: win-64 - dependencies: - coverage: '>=7.10.6' - pluggy: '>=1.2' - pytest: '>=7' - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-7.0.0-pyhcf101f3_1.conda - hash: - md5: 6891acad5e136cb62a8c2ed2679d6528 - sha256: d0f45586aad48ef604590188c33c83d76e4fc6370ac569ba0900906b24fd6a26 - category: dev - optional: true -- name: python - 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.1,<3.0a0' - libffi: '>=3.4,<4.0a0' - libgcc: '>=14' - liblzma: '>=5.8.1,<6.0a0' - libnsl: '>=2.0.1,<2.1.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.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.19-h3c07f61_2_cpython.conda - hash: - md5: 27ac896a8b4970f8977503a9e70dc745 - sha256: 6e3b6b69b3cacfc7610155d58407a003820eaacd50fbe039abff52b5e70b1e9b - category: main - optional: false -- name: python - version: 3.10.19 - manager: conda - platform: win-64 - dependencies: - bzip2: '>=1.0.8,<2.0a0' - libexpat: '>=2.7.1,<3.0a0' - libffi: '>=3.4,<4.0a0' - liblzma: '>=5.8.1,<6.0a0' - libsqlite: '>=3.50.4,<4.0a0' - libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.5.4,<4.0a0' - pip: '' - tk: '>=8.6.13,<8.7.0a0' - tzdata: '' - ucrt: '>=10.0.20348.0' - 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: cd78c55405743e88fda2464be3c902b3 - sha256: 58c3066571c9c8ba62254dfa1cee696d053f9f78cd3a92c8032af58232610c32 - category: main - optional: false -- name: python-dateutil - version: 2.9.0.post0 - manager: conda - platform: linux-64 - dependencies: - python: '' - six: '>=1.5' - url: https://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda - hash: - md5: 5b8d21249ff20967101ffa321cab24e8 - sha256: d6a17ece93bbd5139e02d2bd7dbfa80bee1a4261dced63f65f679121686bf664 - category: main - optional: false -- name: python-dateutil - version: 2.9.0.post0 - manager: conda - platform: win-64 - dependencies: - python: '>=3.9' - six: '>=1.5' - url: https://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda - hash: - md5: 5b8d21249ff20967101ffa321cab24e8 - sha256: d6a17ece93bbd5139e02d2bd7dbfa80bee1a4261dced63f65f679121686bf664 - category: main - optional: false -- name: python_abi - version: '3.10' - manager: conda - platform: linux-64 - dependencies: {} - url: https://repo.prefix.dev/conda-forge/noarch/python_abi-3.10-8_cp310.conda - hash: - md5: 05e00f3b21e88bb3d658ac700b2ce58c - sha256: 7ad76fa396e4bde336872350124c0819032a9e8a0a40590744ff9527b54351c1 - category: main - optional: false -- name: python_abi - version: '3.10' - manager: conda - platform: win-64 - dependencies: {} - url: https://repo.prefix.dev/conda-forge/noarch/python_abi-3.10-8_cp310.conda - hash: - md5: 05e00f3b21e88bb3d658ac700b2ce58c - sha256: 7ad76fa396e4bde336872350124c0819032a9e8a0a40590744ff9527b54351c1 - category: main - optional: false -- name: pythonnet - version: 3.0.5 - manager: conda - platform: linux-64 - dependencies: - clr_loader: '>=0.2.7,<0.3.0' - python: '>=3.9,<3.14' - url: https://repo.prefix.dev/conda-forge/noarch/pythonnet-3.0.5-pyhd8ed1ab_0.conda - hash: - md5: 37486e92c02e241120d5adb173e6cd81 - sha256: dd1c187259e6d03011e331071374a3f5f6889e1c35aa568ad6b5e11d7f811165 - category: webview - optional: true -- name: pythonnet - version: 3.0.5 - manager: conda - platform: win-64 - dependencies: - clr_loader: '>=0.2.7,<0.3.0' - python: '>=3.9,<3.14' - url: https://repo.prefix.dev/conda-forge/noarch/pythonnet-3.0.5-pyhd8ed1ab_0.conda - hash: - md5: 37486e92c02e241120d5adb173e6cd81 - sha256: dd1c187259e6d03011e331071374a3f5f6889e1c35aa568ad6b5e11d7f811165 - category: webview - optional: true -- name: pytz - version: '2025.2' - manager: conda - platform: linux-64 - dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda - hash: - md5: bc8e3267d44011051f2eb14d22fb0960 - sha256: 8d2a8bf110cc1fc3df6904091dead158ba3e614d8402a83e51ed3a8aa93cdeb0 - category: dev - optional: true -- name: pytz - version: '2025.2' - manager: conda - platform: win-64 - dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda - hash: - md5: bc8e3267d44011051f2eb14d22fb0960 - sha256: 8d2a8bf110cc1fc3df6904091dead158ba3e614d8402a83e51ed3a8aa93cdeb0 - category: dev - optional: true -- name: pywavelets - version: 1.8.0 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - numpy: '>=1.23,<3' - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* - url: https://repo.prefix.dev/conda-forge/linux-64/pywavelets-1.8.0-py310hf462985_0.conda - hash: - md5: 4c441eff2be2e65bd67765c5642051c5 - sha256: f23e0b5432c6d338876eca664deeb360949062ce026ddb65bcb1f31643452354 - category: main - optional: false -- name: pywavelets - version: 1.8.0 - manager: conda - platform: win-64 - dependencies: - numpy: '>=1.23,<3' - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/pywavelets-1.8.0-py310hb0944cc_0.conda - hash: - md5: 4227aeb3ae288fb6fc8876dacc016994 - sha256: dd178ca689eb8bf794abbff8f19868afac29b61f9cd0597b0bf7ed190eac817c - category: main - optional: false -- name: pyyaml - version: 6.0.3 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - 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.3-py310h3406613_0.conda - hash: - md5: bc058b3b89fcb525bb4977832aa52014 - sha256: 9b5c6ff9111ac035f18d5e625bcaa6c076e2e64a6f3c8e3f83f5fe2b03bda78d - category: main - optional: false -- name: pyyaml - 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.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.3-py310hdb0e946_0.conda - hash: - md5: c6c1bf08ce99a6f5dc7fdb155b088b26 - sha256: a2f80973dae258443b33a07266de8b8a7c9bf91cda41d5a3a907ce9553d79b0b - category: main - optional: false -- name: rav1e - version: 0.7.1 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/rav1e-0.7.1-h8fae777_3.conda - hash: - md5: 2c42649888aac645608191ffdc80d13a - sha256: 6e5e704c1c21f820d760e56082b276deaf2b53cf9b751772761c3088a365f6f4 - category: main - optional: false -- name: rav1e - version: 0.7.1 - manager: conda - platform: win-64 - dependencies: - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/rav1e-0.7.1-ha073cba_3.conda - hash: - md5: 3bd3626822633688691ed41d661c2b2e - sha256: d19a58b882a0387c7c8efbfce4e67a0df4b19d8da6cf6cec3011b6079e5bc743 - category: main - optional: false -- name: readline - version: '8.3' - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' - ncurses: '>=6.5,<7.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/readline-8.3-h853b02a_0.conda - hash: - md5: d7d95fc8287ea7bf33e0e7116d2b95ec - sha256: 12ffde5a6f958e285aa22c191ca01bbd3d6e710aa852e00618fa6ddc59149002 - category: main - optional: false -- name: requests - version: 2.32.5 - manager: conda - platform: linux-64 - dependencies: - certifi: '>=2017.4.17' - charset-normalizer: '>=2,<4' - idna: '>=2.5,<4' - python: '' - urllib3: '>=1.21.1,<3' - url: https://repo.prefix.dev/conda-forge/noarch/requests-2.32.5-pyhcf101f3_1.conda - hash: - md5: c65df89a0b2e321045a9e01d1337b182 - sha256: 7813c38b79ae549504b2c57b3f33394cea4f2ad083f0994d2045c2e24cb538c5 - category: main - optional: false -- name: requests - version: 2.32.5 - manager: conda - platform: win-64 - dependencies: - certifi: '>=2017.4.17' - charset-normalizer: '>=2,<4' - idna: '>=2.5,<4' - python: '>=3.10' - urllib3: '>=1.21.1,<3' - url: https://repo.prefix.dev/conda-forge/noarch/requests-2.32.5-pyhcf101f3_1.conda - hash: - md5: c65df89a0b2e321045a9e01d1337b182 - sha256: 7813c38b79ae549504b2c57b3f33394cea4f2ad083f0994d2045c2e24cb538c5 - category: main - optional: false -- name: retrying - version: 1.4.2 - manager: conda - platform: linux-64 - dependencies: - python: '' - url: https://repo.prefix.dev/conda-forge/noarch/retrying-1.4.2-pyhe01879c_0.conda - hash: - md5: 128b46a47ea164f9a8659cb6da2f3555 - sha256: 7a10527962d2ca2cf936872ef58d4b622b1d1d1703e1d6396d0673fd9f883c7f - category: main - optional: false -- name: retrying - version: 1.4.2 - manager: conda - platform: win-64 - dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/retrying-1.4.2-pyhe01879c_0.conda - hash: - md5: 128b46a47ea164f9a8659cb6da2f3555 - sha256: 7a10527962d2ca2cf936872ef58d4b622b1d1d1703e1d6396d0673fd9f883c7f - category: main - optional: false -- name: scikit-image - version: 0.25.2 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - imageio: '>=2.33,!=2.35.0' - lazy-loader: '>=0.4' - libgcc: '>=14' - libstdcxx: '>=14' - networkx: '>=3.0' - numpy: '>=1.24' - packaging: '>=21' - pillow: '>=10.1' - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* - pywavelets: '>=1.6' - scipy: '>=1.11.4' - tifffile: '>=2022.8.12' - url: https://repo.prefix.dev/conda-forge/linux-64/scikit-image-0.25.2-py310h0158d43_2.conda - hash: - md5: e8e3404c2d4135193013fbbe9bba60a5 - sha256: 34593b03ba5de16ce231a6485caa295fbdca251a8cb3585ec5db1ffe9df6b063 - category: main - optional: false -- name: scikit-image - version: 0.25.2 - manager: conda - platform: win-64 - dependencies: - imageio: '>=2.33,!=2.35.0' - lazy-loader: '>=0.4' - networkx: '>=3.0' - numpy: '>=1.24' - packaging: '>=21' - pillow: '>=10.1' - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* - pywavelets: '>=1.6' - scipy: '>=1.11.4' - tifffile: '>=2022.8.12' - ucrt: '>=10.0.20348.0' - vc: '>=14.3,<15' - vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/scikit-image-0.25.2-py310hed136d8_2.conda - hash: - md5: 94659751b5498c741318a5f1e4903d6f - sha256: e68c19d2b254e94823084228e8ab4b454618abe58f5000b9ad70a72e755d9154 - category: main - optional: false -- name: scipy - version: 1.14.1 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libblas: '>=3.9.0,<4.0a0' - libcblas: '>=3.9.0,<4.0a0' - libgcc: '>=13' - libgfortran: '' - libgfortran5: '>=13.3.0' - liblapack: '>=3.9.0,<4.0a0' - libstdcxx: '>=13' - numpy: '>=1.23.5' - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* - url: https://repo.prefix.dev/conda-forge/linux-64/scipy-1.14.1-py310hfcf56fc_2.conda - hash: - md5: b5d548b2a7cf8d0c74fc6c4bf42d1ca5 - sha256: a15008a51fd6b6dcaeb5563869ff0a8a015f1e0a8634a9d89d2c189eefbd7182 - category: main - optional: false -- name: scipy - version: 1.14.1 - manager: conda - platform: win-64 - dependencies: - libblas: '>=3.9.0,<4.0a0' - libcblas: '>=3.9.0,<4.0a0' - liblapack: '>=3.9.0,<4.0a0' - numpy: '>=1.23.5' - 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/scipy-1.14.1-py310hbd0dde3_2.conda - hash: - md5: 72a2a7c264a8b48d113111756c2bbbb4 - sha256: 761829fa9c91fdffff0ba5a1f56f7d4cc00bec71ca7fa06859dc7f5a98117273 - category: main - optional: false -- name: setuptools - version: 80.9.0 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda - hash: - md5: 4de79c071274a53dcaf2a8c749d1499e - sha256: 972560fcf9657058e3e1f97186cc94389144b46dbdf58c807ce62e83f977e863 - category: main - optional: false -- name: setuptools - version: 80.9.0 - manager: conda - platform: win-64 - dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda - hash: - md5: 4de79c071274a53dcaf2a8c749d1499e - sha256: 972560fcf9657058e3e1f97186cc94389144b46dbdf58c807ce62e83f977e863 - category: main - optional: false -- name: six - version: 1.17.0 - manager: conda - platform: linux-64 - dependencies: - python: '' - url: https://repo.prefix.dev/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda - hash: - md5: 3339e3b65d58accf4ca4fb8748ab16b3 - sha256: 458227f759d5e3fcec5d9b7acce54e10c9e1f4f4b7ec978f3bfd54ce4ee9853d - category: main - optional: false -- name: six - version: 1.17.0 - manager: conda - platform: win-64 - dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda - hash: - md5: 3339e3b65d58accf4ca4fb8748ab16b3 - sha256: 458227f759d5e3fcec5d9b7acce54e10c9e1f4f4b7ec978f3bfd54ce4ee9853d - category: main - optional: false -- name: snappy - version: 1.2.2 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' - libstdcxx: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/snappy-1.2.2-h03e3b7b_1.conda - hash: - md5: 98b6c9dc80eb87b2519b97bcf7e578dd - sha256: 48f3f6a76c34b2cfe80de9ce7f2283ecb55d5ed47367ba91e8bb8104e12b8f11 - category: main - optional: false -- name: snappy - version: 1.2.2 - 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/snappy-1.2.2-h7fa0ca8_1.conda - hash: - md5: 3075846de68f942150069d4289aaad63 - sha256: d2deda1350abf8c05978b73cf7fe9147dd5c7f2f9b312692d1b98e52efad53c3 - category: main - optional: false -- name: snowballstemmer - version: 3.0.1 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/snowballstemmer-3.0.1-pyhd8ed1ab_0.conda - hash: - md5: 755cf22df8693aa0d1aec1c123fa5863 - sha256: 17007a4cfbc564dc3e7310dcbe4932c6ecb21593d4fec3c68610720f19e73fb2 - category: dev - optional: true -- name: snowballstemmer - version: 3.0.1 - manager: conda - platform: win-64 - dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/snowballstemmer-3.0.1-pyhd8ed1ab_0.conda - hash: - md5: 755cf22df8693aa0d1aec1c123fa5863 - sha256: 17007a4cfbc564dc3e7310dcbe4932c6ecb21593d4fec3c68610720f19e73fb2 - category: dev - optional: true -- name: sphinx - version: 8.1.3 - manager: conda - platform: linux-64 - dependencies: - alabaster: '>=0.7.14' - babel: '>=2.13' - colorama: '>=0.4.6' - docutils: '>=0.20,<0.22' - imagesize: '>=1.3' - jinja2: '>=3.1' - packaging: '>=23.0' - pygments: '>=2.17' - python: '>=3.10' - requests: '>=2.30.0' - snowballstemmer: '>=2.2' - sphinxcontrib-applehelp: '>=1.0.7' - sphinxcontrib-devhelp: '>=1.0.6' - sphinxcontrib-htmlhelp: '>=2.0.6' - sphinxcontrib-jsmath: '>=1.0.1' - sphinxcontrib-qthelp: '>=1.0.6' - sphinxcontrib-serializinghtml: '>=1.1.9' - tomli: '>=2.0' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-8.1.3-pyhd8ed1ab_1.conda - hash: - md5: 1a3281a0dc355c02b5506d87db2d78ac - sha256: 3228eb332ce159f031d4b7d2e08117df973b0ba3ddcb8f5dbb7f429f71d27ea1 - category: dev - optional: true -- name: sphinx - version: 8.1.3 - manager: conda - platform: win-64 - dependencies: - alabaster: '>=0.7.14' - babel: '>=2.13' - colorama: '>=0.4.6' - docutils: '>=0.20,<0.22' - imagesize: '>=1.3' - jinja2: '>=3.1' - packaging: '>=23.0' - pygments: '>=2.17' - python: '>=3.10' - requests: '>=2.30.0' - snowballstemmer: '>=2.2' - sphinxcontrib-applehelp: '>=1.0.7' - sphinxcontrib-devhelp: '>=1.0.6' - sphinxcontrib-htmlhelp: '>=2.0.6' - sphinxcontrib-jsmath: '>=1.0.1' - sphinxcontrib-qthelp: '>=1.0.6' - sphinxcontrib-serializinghtml: '>=1.1.9' - tomli: '>=2.0' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-8.1.3-pyhd8ed1ab_1.conda - hash: - md5: 1a3281a0dc355c02b5506d87db2d78ac - sha256: 3228eb332ce159f031d4b7d2e08117df973b0ba3ddcb8f5dbb7f429f71d27ea1 - category: dev - optional: true -- name: sphinx-autodoc-typehints - version: 3.0.1 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.10' - sphinx: '>=8.1.3' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-autodoc-typehints-3.0.1-pyhd8ed1ab_0.conda - hash: - md5: 6ad405d62c8de3792608a27b7e085e15 - sha256: 0f93bb75a41918433abc8d8d80ef99d7fd8658d5ba34da3c5d8f707cb6bb3f46 - category: dev - optional: true -- name: sphinx-autodoc-typehints - version: 3.0.1 - manager: conda - platform: win-64 - dependencies: - python: '>=3.10' - sphinx: '>=8.1.3' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-autodoc-typehints-3.0.1-pyhd8ed1ab_0.conda - hash: - md5: 6ad405d62c8de3792608a27b7e085e15 - sha256: 0f93bb75a41918433abc8d8d80ef99d7fd8658d5ba34da3c5d8f707cb6bb3f46 - category: dev - optional: true -- name: sphinx-rtd-theme - version: 3.0.2 - manager: conda - platform: linux-64 - dependencies: - sphinx_rtd_theme: 3.0.2 - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-rtd-theme-3.0.2-hd8ed1ab_0.conda - hash: - md5: bc576bd1422b5baaed25722895581837 - sha256: d81e5f764d3738a62e03476cbbf3f69214f5cc0d06af81ec6104056f6cece50e - category: dev - optional: true -- name: sphinx-rtd-theme - version: 3.0.2 - manager: conda - platform: win-64 - dependencies: - sphinx_rtd_theme: 3.0.2 - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-rtd-theme-3.0.2-hd8ed1ab_0.conda - hash: - md5: bc576bd1422b5baaed25722895581837 - sha256: d81e5f764d3738a62e03476cbbf3f69214f5cc0d06af81ec6104056f6cece50e - category: dev - optional: true -- name: sphinx_rtd_theme - version: 3.0.2 - manager: conda - platform: linux-64 - dependencies: - docutils: '>0.18,<0.22' - python: '>=3.8' - sphinx: '>=6,<9' - sphinxcontrib-jquery: '>=4,<5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx_rtd_theme-3.0.2-pyha770c72_0.conda - hash: - md5: cec0cc87b40171bc323a9d80b619c9c5 - sha256: c5d1ef5801f56c3bba4088de6c02c10e7f5b195805997fc1af569cf3f33f92e4 - category: dev - optional: true -- name: sphinx_rtd_theme - version: 3.0.2 - manager: conda - platform: win-64 - dependencies: - docutils: '>0.18,<0.22' - python: '>=3.8' - sphinx: '>=6,<9' - sphinxcontrib-jquery: '>=4,<5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx_rtd_theme-3.0.2-pyha770c72_0.conda - hash: - md5: cec0cc87b40171bc323a9d80b619c9c5 - sha256: c5d1ef5801f56c3bba4088de6c02c10e7f5b195805997fc1af569cf3f33f92e4 - category: dev - optional: true -- name: sphinxcontrib-applehelp - version: 2.0.0 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.9' - sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_1.conda - hash: - md5: 16e3f039c0aa6446513e94ab18a8784b - sha256: d7433a344a9ad32a680b881c81b0034bc61618d12c39dd6e3309abeffa9577ba - category: dev - optional: true -- name: sphinxcontrib-applehelp - version: 2.0.0 - manager: conda - platform: win-64 - dependencies: - python: '>=3.9' - sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_1.conda - hash: - md5: 16e3f039c0aa6446513e94ab18a8784b - sha256: d7433a344a9ad32a680b881c81b0034bc61618d12c39dd6e3309abeffa9577ba - category: dev - optional: true -- name: sphinxcontrib-devhelp - version: 2.0.0 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.9' - sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_1.conda - hash: - md5: 910f28a05c178feba832f842155cbfff - sha256: 55d5076005d20b84b20bee7844e686b7e60eb9f683af04492e598a622b12d53d - category: dev - optional: true -- name: sphinxcontrib-devhelp - version: 2.0.0 - manager: conda - platform: win-64 - dependencies: - python: '>=3.9' - sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_1.conda - hash: - md5: 910f28a05c178feba832f842155cbfff - sha256: 55d5076005d20b84b20bee7844e686b7e60eb9f683af04492e598a622b12d53d - category: dev - optional: true -- name: sphinxcontrib-htmlhelp - version: 2.1.0 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.9' - sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_1.conda - hash: - md5: e9fb3fe8a5b758b4aff187d434f94f03 - sha256: c1492c0262ccf16694bdcd3bb62aa4627878ea8782d5cd3876614ffeb62b3996 - category: dev - optional: true -- name: sphinxcontrib-htmlhelp - version: 2.1.0 - manager: conda - platform: win-64 - dependencies: - python: '>=3.9' - sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_1.conda - hash: - md5: e9fb3fe8a5b758b4aff187d434f94f03 - sha256: c1492c0262ccf16694bdcd3bb62aa4627878ea8782d5cd3876614ffeb62b3996 - category: dev - optional: true -- name: sphinxcontrib-jquery - version: '4.1' - manager: conda - platform: linux-64 - dependencies: - python: '>=3.9' - sphinx: '>=1.8' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-jquery-4.1-pyhd8ed1ab_1.conda - hash: - md5: 403185829255321ea427333f7773dd1f - sha256: 69c08d18663b57ebc8e4187c64c8d29b10996bb465a515cd288d87b6f2f52a5e - category: dev - optional: true -- name: sphinxcontrib-jquery - version: '4.1' - manager: conda - platform: win-64 - dependencies: - python: '>=3.9' - sphinx: '>=1.8' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-jquery-4.1-pyhd8ed1ab_1.conda - hash: - md5: 403185829255321ea427333f7773dd1f - sha256: 69c08d18663b57ebc8e4187c64c8d29b10996bb465a515cd288d87b6f2f52a5e - category: dev - optional: true -- name: sphinxcontrib-jsmath - version: 1.0.1 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_1.conda - hash: - md5: fa839b5ff59e192f411ccc7dae6588bb - sha256: 578bef5ec630e5b2b8810d898bbbf79b9ae66d49b7938bcc3efc364e679f2a62 - category: dev - optional: true -- name: sphinxcontrib-jsmath - version: 1.0.1 - manager: conda - platform: win-64 - dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_1.conda - hash: - md5: fa839b5ff59e192f411ccc7dae6588bb - sha256: 578bef5ec630e5b2b8810d898bbbf79b9ae66d49b7938bcc3efc364e679f2a62 - category: dev - optional: true -- name: sphinxcontrib-qthelp - version: 2.0.0 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.9' - sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_1.conda - hash: - md5: 00534ebcc0375929b45c3039b5ba7636 - sha256: c664fefae4acdb5fae973bdde25836faf451f41d04342b64a358f9a7753c92ca - category: dev - optional: true -- name: sphinxcontrib-qthelp - version: 2.0.0 - manager: conda - platform: win-64 - dependencies: - python: '>=3.9' - sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_1.conda - hash: - md5: 00534ebcc0375929b45c3039b5ba7636 - sha256: c664fefae4acdb5fae973bdde25836faf451f41d04342b64a358f9a7753c92ca - category: dev - optional: true -- name: sphinxcontrib-serializinghtml - version: 1.1.10 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.9' - sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda - hash: - md5: 3bc61f7161d28137797e038263c04c54 - sha256: 64d89ecc0264347486971a94487cb8d7c65bfc0176750cf7502b8a272f4ab557 - category: dev - optional: true -- name: sphinxcontrib-serializinghtml - version: 1.1.10 - manager: conda - platform: win-64 - dependencies: - python: '>=3.9' - sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda - hash: - md5: 3bc61f7161d28137797e038263c04c54 - sha256: 64d89ecc0264347486971a94487cb8d7c65bfc0176750cf7502b8a272f4ab557 - category: dev - optional: true -- name: svt-av1 - version: 3.1.2 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' - libstdcxx: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/svt-av1-3.1.2-hecca717_0.conda - hash: - md5: 9859766c658e78fec9afa4a54891d920 - sha256: 34e2e9c505cd25dba0a9311eb332381b15147cf599d972322a7c197aedfc8ce2 - category: main - optional: false -- name: svt-av1 - version: 3.1.2 - 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/svt-av1-3.1.2-hac47afa_0.conda - hash: - md5: 91866412570c922f55178855deb0f952 - sha256: 444c94a9c1fcb2cdf78b260472451990257733bcf89ed80c73db36b5047d3134 - category: main - optional: false -- name: tbb - version: 2022.3.0 - manager: conda - platform: win-64 - dependencies: - libhwloc: '>=2.12.2,<2.12.3.0a0' - ucrt: '>=10.0.20348.0' - vc: '>=14.3,<15' - vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/tbb-2022.3.0-h3155e25_2.conda - hash: - md5: 0f9817ffbe25f9e69ceba5ea70c52606 - sha256: abd9a489f059fba85c8ffa1abdaa4d515d6de6a3325238b8e81203b913cf65a9 - category: main - optional: false -- name: tifffile - version: 2025.5.10 - manager: conda - platform: linux-64 - dependencies: - imagecodecs: '>=2024.12.30' - numpy: '>=1.19.2' - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/tifffile-2025.5.10-pyhd8ed1ab_0.conda - hash: - md5: 1fdb801f28bf4987294c49aaa314bf5e - sha256: 3ea3854eb8a41bbb128598a5d5bc9aed52446d20d2f1bd6e997c2387074202e4 - category: main - optional: false -- name: tifffile - version: 2025.5.10 - manager: conda - platform: win-64 - dependencies: - imagecodecs: '>=2024.12.30' - numpy: '>=1.19.2' - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/tifffile-2025.5.10-pyhd8ed1ab_0.conda - hash: - md5: 1fdb801f28bf4987294c49aaa314bf5e - sha256: 3ea3854eb8a41bbb128598a5d5bc9aed52446d20d2f1bd6e997c2387074202e4 - category: main - optional: false -- name: tk - version: 8.6.13 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_ha0e22de_103.conda - hash: - md5: 86bc20552bf46075e3d92b67f089172d - sha256: 1544760538a40bcd8ace2b1d8ebe3eb5807ac268641f8acdc18c69c5ebfeaf64 - category: main - optional: false -- name: tk - version: 8.6.13 - 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/tk-8.6.13-h2c6b04d_3.conda - hash: - md5: 7cb36e506a7dba4817970f8adb6396f9 - sha256: 4581f4ffb432fefa1ac4f85c5682cc27014bcd66e7beaa0ee330e927a7858790 - category: main - optional: false -- name: tomli - version: 2.3.0 - manager: conda - platform: linux-64 - dependencies: - python: '' - url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.3.0-pyhcf101f3_0.conda - hash: - md5: d2732eb636c264dc9aa4cbee404b1a53 - sha256: cb77c660b646c00a48ef942a9e1721ee46e90230c7c570cdeb5a893b5cce9bff - category: dev - optional: true -- name: tomli - version: 2.3.0 - manager: conda - platform: win-64 - dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.3.0-pyhcf101f3_0.conda - hash: - md5: d2732eb636c264dc9aa4cbee404b1a53 - sha256: cb77c660b646c00a48ef942a9e1721ee46e90230c7c570cdeb5a893b5cce9bff - category: dev - optional: true -- name: tomlkit - version: 0.13.3 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.3-pyha770c72_0.conda - hash: - md5: 146402bf0f11cbeb8f781fa4309a95d3 - sha256: f8d3b49c084831a20923f66826f30ecfc55a4cd951e544b7213c692887343222 - category: dev - optional: true -- name: tomlkit - version: 0.13.3 - manager: conda - platform: win-64 - dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.3-pyha770c72_0.conda - hash: - md5: 146402bf0f11cbeb8f781fa4309a95d3 - sha256: f8d3b49c084831a20923f66826f30ecfc55a4cd951e544b7213c692887343222 - category: dev - optional: true -- name: toolz - version: 1.1.0 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/toolz-1.1.0-pyhd8ed1ab_1.conda - hash: - md5: c07a6153f8306e45794774cf9b13bd32 - sha256: 4e379e1c18befb134247f56021fdf18e112fb35e64dd1691858b0a0f3bea9a45 - category: main - optional: false -- name: toolz - version: 1.1.0 - manager: conda - platform: win-64 - dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/toolz-1.1.0-pyhd8ed1ab_1.conda - hash: - md5: c07a6153f8306e45794774cf9b13bd32 - sha256: 4e379e1c18befb134247f56021fdf18e112fb35e64dd1691858b0a0f3bea9a45 - category: main - optional: false -- name: tqdm - version: 4.67.1 - manager: conda - platform: linux-64 - dependencies: - colorama: '' - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_1.conda - hash: - md5: 9efbfdc37242619130ea42b1cc4ed861 - sha256: 11e2c85468ae9902d24a27137b6b39b4a78099806e551d390e394a8c34b48e40 - category: main - optional: false -- name: tqdm - version: 4.67.1 - manager: conda - platform: win-64 - dependencies: - colorama: '' - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_1.conda - hash: - md5: 9efbfdc37242619130ea42b1cc4ed861 - sha256: 11e2c85468ae9902d24a27137b6b39b4a78099806e551d390e394a8c34b48e40 - category: main - optional: false -- name: typing-extensions - version: 4.15.0 - manager: conda - platform: linux-64 - dependencies: - typing_extensions: ==4.15.0 - url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda - hash: - md5: edd329d7d3a4ab45dcf905899a7a6115 - sha256: 7c2df5721c742c2a47b2c8f960e718c930031663ac1174da67c1ed5999f7938c - category: main - optional: false -- name: typing-extensions - version: 4.15.0 - manager: conda - platform: win-64 - dependencies: - typing_extensions: ==4.15.0 - url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda - hash: - md5: edd329d7d3a4ab45dcf905899a7a6115 - sha256: 7c2df5721c742c2a47b2c8f960e718c930031663ac1174da67c1ed5999f7938c - category: main - optional: false -- name: typing-inspection - version: 0.4.2 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.10' - typing_extensions: '>=4.12.0' - url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.2-pyhd8ed1ab_1.conda - hash: - md5: a0a4a3035667fc34f29bfbd5c190baa6 - sha256: 70db27de58a97aeb7ba7448366c9853f91b21137492e0b4430251a1870aa8ff4 - category: main - optional: false -- name: typing-inspection - version: 0.4.2 - manager: conda - platform: win-64 - dependencies: - python: '>=3.10' - typing_extensions: '>=4.12.0' - url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.2-pyhd8ed1ab_1.conda - hash: - md5: a0a4a3035667fc34f29bfbd5c190baa6 - sha256: 70db27de58a97aeb7ba7448366c9853f91b21137492e0b4430251a1870aa8ff4 - category: main - optional: false -- name: typing_extensions - version: 4.15.0 - manager: conda - platform: linux-64 - dependencies: - python: '' - url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda - hash: - md5: 0caa1af407ecff61170c9437a808404d - sha256: 032271135bca55aeb156cee361c81350c6f3fb203f57d024d7e5a1fc9ef18731 - category: main - optional: false -- name: typing_extensions - version: 4.15.0 - manager: conda - platform: win-64 - dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda - hash: - md5: 0caa1af407ecff61170c9437a808404d - sha256: 032271135bca55aeb156cee361c81350c6f3fb203f57d024d7e5a1fc9ef18731 - category: main - optional: false -- name: tzdata - version: 2025c - manager: conda - platform: linux-64 - dependencies: {} - url: https://repo.prefix.dev/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.conda - hash: - md5: ad659d0a2b3e47e38d829aa8cad2d610 - sha256: 1d30098909076af33a35017eed6f2953af1c769e273a0626a04722ac4acaba3c - category: main - optional: false -- name: tzdata - version: 2025c - manager: conda - platform: win-64 - dependencies: {} - url: https://repo.prefix.dev/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.conda - hash: - md5: ad659d0a2b3e47e38d829aa8cad2d610 - sha256: 1d30098909076af33a35017eed6f2953af1c769e273a0626a04722ac4acaba3c - category: main - optional: false -- name: ucrt - version: 10.0.26100.0 - manager: conda - platform: win-64 - dependencies: {} - url: https://repo.prefix.dev/conda-forge/win-64/ucrt-10.0.26100.0-h57928b3_0.conda - hash: - md5: 71b24316859acd00bdb8b38f5e2ce328 - sha256: 3005729dce6f3d3f5ec91dfc49fc75a0095f9cd23bab49efb899657297ac91a5 - category: main - optional: false -- name: unicodedata2 - version: 17.0.0 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* - url: https://repo.prefix.dev/conda-forge/linux-64/unicodedata2-17.0.0-py310h7c4b9e2_1.conda - hash: - md5: b1ccdb989be682ab0dd430c1c15d5012 - sha256: cffe509e0294586fbcee9cbb762d6144636c5d4a19defffda9f9c726a84b55e7 - category: main - optional: false -- name: unicodedata2 - version: 17.0.0 - manager: conda - platform: win-64 - dependencies: - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* - ucrt: '>=10.0.20348.0' - vc: '>=14.3,<15' - vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/unicodedata2-17.0.0-py310h29418f3_1.conda - hash: - md5: fcbbbdf7b8ebd24940f15af0fb52562e - sha256: 43c75e924ec25549c0080cfcf9906bd0a2903dfd0710d1ea9b1583e7834818e1 - category: main - optional: false -- name: urllib3 - version: 2.5.0 - manager: conda - platform: linux-64 - dependencies: - brotli-python: '>=1.0.9' - h2: '>=4,<5' - pysocks: '>=1.5.6,<2.0,!=1.5.7' - python: '>=3.9' - zstandard: '>=0.18.0' - url: https://repo.prefix.dev/conda-forge/noarch/urllib3-2.5.0-pyhd8ed1ab_0.conda - hash: - md5: 436c165519e140cb08d246a4472a9d6a - sha256: 4fb9789154bd666ca74e428d973df81087a697dbb987775bc3198d2215f240f8 - category: main - optional: false -- name: urllib3 - version: 2.5.0 - manager: conda - platform: win-64 - dependencies: - brotli-python: '>=1.0.9' - h2: '>=4,<5' - pysocks: '>=1.5.6,<2.0,!=1.5.7' - python: '>=3.9' - zstandard: '>=0.18.0' - url: https://repo.prefix.dev/conda-forge/noarch/urllib3-2.5.0-pyhd8ed1ab_0.conda - hash: - md5: 436c165519e140cb08d246a4472a9d6a - sha256: 4fb9789154bd666ca74e428d973df81087a697dbb987775bc3198d2215f240f8 - category: main - optional: false -- name: vc - version: '14.3' - manager: conda - platform: win-64 - dependencies: - vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/vc-14.3-h41ae7f8_34.conda - hash: - md5: 1e610f2416b6acdd231c5f573d754a0f - sha256: 9dc40c2610a6e6727d635c62cced5ef30b7b30123f5ef67d6139e23d21744b3a - category: main - optional: false -- name: vc14_runtime - version: 14.44.35208 - manager: conda - platform: win-64 - 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_34.conda - hash: - md5: 37eb311485d2d8b2c419449582046a42 - sha256: 02732f953292cce179de9b633e74928037fa3741eb5ef91c3f8bae4f761d32a5 - category: main - optional: false -- name: vcomp14 - version: 14.44.35208 - manager: conda - platform: win-64 - dependencies: - ucrt: '>=10.0.20348.0' - url: https://repo.prefix.dev/conda-forge/win-64/vcomp14-14.44.35208-h818238b_34.conda - hash: - md5: 242d9f25d2ae60c76b38a5e42858e51d - sha256: 878d5d10318b119bd98ed3ed874bd467acbe21996e1d81597a1dbf8030ea0ce6 - category: main - optional: false -- name: vs2015_runtime - version: 14.44.35208 - manager: conda - platform: win-64 - dependencies: - vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/vs2015_runtime-14.44.35208-h38c0c73_34.conda - hash: - md5: f276d1de4553e8fca1dfb6988551ebb4 - sha256: 63ff4ec6e5833f768d402f5e95e03497ce211ded5b6f492e660e2bfc726ad24d - category: main - optional: false -- name: waitress - version: 3.0.2 - manager: conda - platform: linux-64 - dependencies: - python: '' - url: https://repo.prefix.dev/conda-forge/noarch/waitress-3.0.2-pyhcf101f3_2.conda - hash: - md5: a68c6d8a9afc81ef27541f7f0ac78dc3 - sha256: 08515ec3aa872b14c7f5efecf7e46fc554dde986a609e37c4a9c868861f411af - category: main - optional: false -- name: waitress - version: 3.0.2 - manager: conda - platform: win-64 - dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/waitress-3.0.2-pyhcf101f3_2.conda - hash: - md5: a68c6d8a9afc81ef27541f7f0ac78dc3 - sha256: 08515ec3aa872b14c7f5efecf7e46fc554dde986a609e37c4a9c868861f411af - category: main - optional: false -- name: werkzeug - version: 3.1.5 - manager: conda - platform: linux-64 - dependencies: - markupsafe: '>=2.1.1' - python: '' - url: https://repo.prefix.dev/conda-forge/noarch/werkzeug-3.1.5-pyhcf101f3_0.conda - hash: - md5: 784e86b857b809955635175881a9a418 - sha256: 3ef418943ef14939a4bbc5157f31db2d6a7a025a3bfd7b4aa5a29034ba96e42e - category: main - optional: false -- name: werkzeug - version: 3.1.5 - manager: conda - platform: win-64 - dependencies: - markupsafe: '>=2.1.1' - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/werkzeug-3.1.5-pyhcf101f3_0.conda - hash: - md5: 784e86b857b809955635175881a9a418 - sha256: 3ef418943ef14939a4bbc5157f31db2d6a7a025a3bfd7b4aa5a29034ba96e42e - category: main - optional: false -- name: wheel - version: 0.45.1 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda - hash: - md5: 75cb7132eb58d97896e173ef12ac9986 - sha256: 1b34021e815ff89a4d902d879c3bd2040bc1bd6169b32e9427497fa05c55f1ce - category: main - optional: false -- name: wheel - version: 0.45.1 - manager: conda - platform: win-64 - dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda - hash: - md5: 75cb7132eb58d97896e173ef12ac9986 - sha256: 1b34021e815ff89a4d902d879c3bd2040bc1bd6169b32e9427497fa05c55f1ce - category: main - optional: false -- name: win_inet_pton - version: 1.1.0 - manager: conda - platform: win-64 - dependencies: - __win: '' - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/win_inet_pton-1.1.0-pyh7428d3b_8.conda - hash: - md5: 46e441ba871f524e2b067929da3051c2 - sha256: 93807369ab91f230cf9e6e2a237eaa812492fe00face5b38068735858fba954f - category: main - optional: false -- name: xorg-libxau - version: 1.0.12 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxau-1.0.12-hb03c661_1.conda - hash: - md5: b2895afaf55bf96a8c8282a2e47a5de0 - sha256: 6bc6ab7a90a5d8ac94c7e300cc10beb0500eeba4b99822768ca2f2ef356f731b - category: main - optional: false -- name: xorg-libxau - version: 1.0.12 - manager: conda - platform: win-64 - dependencies: - libgcc: '>=14' - libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' - ucrt: '>=10.0.20348.0' - url: https://repo.prefix.dev/conda-forge/win-64/xorg-libxau-1.0.12-hba3369d_1.conda - hash: - md5: 8436cab9a76015dfe7208d3c9f97c156 - sha256: 156a583fa43609507146de1c4926172286d92458c307bb90871579601f6bc568 - category: main - optional: false -- name: xorg-libxdmcp - version: 1.1.5 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb03c661_1.conda - hash: - md5: 1dafce8548e38671bea82e3f5c6ce22f - sha256: 25d255fb2eef929d21ff660a0c687d38a6d2ccfbcbf0cc6aa738b12af6e9d142 - category: main - optional: false -- name: xorg-libxdmcp - version: 1.1.5 - manager: conda - platform: win-64 - dependencies: - libgcc: '>=14' - libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' - ucrt: '>=10.0.20348.0' - url: https://repo.prefix.dev/conda-forge/win-64/xorg-libxdmcp-1.1.5-hba3369d_1.conda - hash: - md5: a7c03e38aa9c0e84d41881b9236eacfb - sha256: 366b8ae202c3b48958f0b8784bbfdc37243d3ee1b1cd4b8e76c10abe41fa258b - category: main - optional: false -- name: yaml - version: 0.2.5 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/yaml-0.2.5-h280c20c_3.conda - hash: - md5: a77f85f77be52ff59391544bfe73390a - sha256: 6d9ea2f731e284e9316d95fa61869fe7bbba33df7929f82693c121022810f4ad - category: main - optional: false -- name: yaml - version: 0.2.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/yaml-0.2.5-h6a83c73_3.conda - hash: - md5: 433699cba6602098ae8957a323da2664 - sha256: 80ee68c1e7683a35295232ea79bcc87279d31ffeda04a1665efdb43cbd50a309 - category: main - optional: false -- name: zfp - version: 1.0.1 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - _openmp_mutex: '>=4.5' - libgcc: '>=14' - libstdcxx: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/zfp-1.0.1-h909a3a2_5.conda - hash: - md5: 6a0eb48e58684cca4d7acc8b7a0fd3c7 - sha256: 5fabe6cccbafc1193038862b0b0d784df3dae84bc48f12cac268479935f9c8b7 - category: main - optional: false -- name: zfp - version: 1.0.1 - 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/zfp-1.0.1-h2f0f97f_5.conda - hash: - md5: 1332dbc707144a0a17ca64c3d379c8bd - sha256: 186d7d6ebf2408377be20ed854c928b178e4e758cf9a27f0ee1336a2329a2345 - category: main - optional: false -- name: zipp - version: 3.23.0 - manager: conda - platform: linux-64 - dependencies: - python: '' - url: https://repo.prefix.dev/conda-forge/noarch/zipp-3.23.0-pyhcf101f3_1.conda - hash: - md5: 30cd29cb87d819caead4d55184c1d115 - sha256: b4533f7d9efc976511a73ef7d4a2473406d7f4c750884be8e8620b0ce70f4dae - category: main - optional: false -- name: zipp - version: 3.23.0 - manager: conda - platform: win-64 - dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/zipp-3.23.0-pyhcf101f3_1.conda - hash: - md5: 30cd29cb87d819caead4d55184c1d115 - sha256: b4533f7d9efc976511a73ef7d4a2473406d7f4c750884be8e8620b0ce70f4dae - category: main - optional: false -- name: zlib-ng - version: 2.2.5 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' - libstdcxx: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/zlib-ng-2.2.5-hde8ca8f_1.conda - hash: - md5: c860578a89dc9b6003d600181612287c - sha256: 84ea17cb646d8a916d9335415f57c9e5dd001de158972322c714ebe1b72670b0 - category: main - optional: false -- name: zlib-ng - version: 2.2.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/zlib-ng-2.2.5-h32d8bfd_1.conda - hash: - md5: 1178f5a4c36028e14993957040d57da5 - sha256: 125f53ed47f2029bea2b53e2609696a30d105a18908b1d172ce059a490eb8491 - category: main - optional: false -- name: zstandard - version: 0.25.0 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - cffi: '>=1.11' - libgcc: '>=14' - 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_1.conda - hash: - md5: 3741aefc198dfed2e3c9adc79d706bb7 - sha256: b0103e8bb639dbc6b9de8ef9a18a06b403b687a33dec83c25bd003190942259a - category: main - optional: false -- name: zstandard - version: 0.25.0 - manager: conda - platform: win-64 - dependencies: - cffi: '>=1.11' - python: '' - python_abi: 3.10.* - ucrt: '>=10.0.20348.0' - 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_1.conda - hash: - md5: 1d261480977c268b3b209b7deaca0dd7 - sha256: db2a40dbe124b275fb0b8fdfd6e3b377963849897ab2b4d7696354040c52570b - category: main - optional: false -- name: zstd - version: 1.5.7 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb78ec9c_6.conda - hash: - md5: 4a13eeac0b5c8e5b8ab496e6c4ddd829 - sha256: 68f0206ca6e98fea941e5717cec780ed2873ffabc0e1ed34428c061e2c6268c7 - category: main - optional: false -- name: zstd - version: 1.5.7 - manager: conda - platform: win-64 - dependencies: - 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/zstd-1.5.7-h534d264_6.conda - hash: - md5: 053b84beec00b71ea8ff7a4f84b55207 - sha256: 368d8628424966fd8f9c8018326a9c779e06913dd39e646cf331226acc90e5b2 - category: main - optional: false -- name: geoapps-utils - version: 0.7.0a2.dev1+3a0ee39 - manager: pip - platform: linux-64 - dependencies: - geoh5py: 0.13.0a2.dev34+872fd38e - matplotlib: '>=3.8.4,<3.9.0' - numpy: '>=1.26.0,<1.27.0' - pydantic: '>=2.12.0,<3.0.0' - scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 - hash: - sha256: 3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 - source: - type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 - category: main - optional: false -- name: geoapps-utils - version: 0.7.0a2.dev1+3a0ee39 - manager: pip - platform: win-64 - dependencies: - geoh5py: 0.13.0a2.dev34+872fd38e - matplotlib: '>=3.8.4,<3.9.0' - numpy: '>=1.26.0,<1.27.0' - pydantic: '>=2.12.0,<3.0.0' - scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 - hash: - sha256: 3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 - source: - type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 - category: main - optional: false -- name: geoh5py - version: 0.13.0a2.dev34+872fd38e - manager: pip - platform: linux-64 - dependencies: - h5py: '>=3.2.1,<4.0.0' - numpy: '>=1.26.0,<1.27.0' - pillow: '>=10.3.0,<10.4.0' - pydantic: '>=2.12.0,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 - hash: - sha256: 872fd38e1f3a73fad567de7825e5e2bb0aadab72 - source: - type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 - category: main - optional: false -- name: geoh5py - version: 0.13.0a2.dev34+872fd38e - manager: pip - platform: win-64 - dependencies: - h5py: '>=3.2.1,<4.0.0' - numpy: '>=1.26.0,<1.27.0' - pillow: '>=10.3.0,<10.4.0' - pydantic: '>=2.12.0,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 - hash: - sha256: 872fd38e1f3a73fad567de7825e5e2bb0aadab72 - source: - type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 - category: main - optional: false -- name: pywebview - version: '6.1' - manager: pip - platform: linux-64 - dependencies: - bottle: '*' - proxy-tools: '*' - typing-extensions: '*' - url: https://files.pythonhosted.org/packages/74/12/ce9006cdcc1834378826b5c0d4b554d899cd25ac9c665569d060f220b0e1/pywebview-6.1-py3-none-any.whl - hash: - sha256: 2b552a340557e76a740b045a25937f72dae751e0985d5f5d9556f697ba622ec5 - category: webview - optional: true -- name: pywebview - version: '6.1' - manager: pip - platform: win-64 - dependencies: - bottle: '*' - proxy-tools: '*' - pythonnet: '*' - typing-extensions: '*' - url: https://files.pythonhosted.org/packages/74/12/ce9006cdcc1834378826b5c0d4b554d899cd25ac9c665569d060f220b0e1/pywebview-6.1-py3-none-any.whl - hash: - sha256: 2b552a340557e76a740b045a25937f72dae751e0985d5f5d9556f697ba622ec5 - category: webview - optional: true diff --git a/py-3.12.conda-lock.yml b/py-3.12.conda-lock.yml index 34a0d3f..2ed05f8 100644 --- a/py-3.12.conda-lock.yml +++ b/py-3.12.conda-lock.yml @@ -17,8 +17,8 @@ version: 1 metadata: content_hash: - win-64: 2d3fd3e13fa9a4d1f0fa8035856f6e4c524142e213cca0addef8247d76a9aa09 - linux-64: 90f90f73a20defb2155f372002fe80f9558c047775f6f2659bf0faf118035a88 + win-64: a7814601cb378aedff7765c2b80a595c65b6f4ce34b7651f5ce21b4ac18562a3 + linux-64: d5791aa9f3d6422de4e84227a70ddb0dd23f8231221a5e91b24f98ce6106325e channels: - url: conda-forge used_env_vars: [] @@ -32,25 +32,14 @@ metadata: - environments/env-python-3.12.yml package: - name: _libavif_api - version: 1.3.0 + version: 1.4.0 manager: conda platform: win-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/win-64/_libavif_api-1.3.0-h57928b3_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/_libavif_api-1.4.0-h57928b3_0.conda hash: - md5: e31e1eda938360543cb29bd3ce8f0b73 - sha256: 472aa5e5a97a188c1f01e271a821b5a9dc871e93f7c58cfb7e89bdb6cd926d39 - category: main - optional: false -- name: _libgcc_mutex - version: '0.1' - manager: conda - platform: linux-64 - dependencies: {} - url: https://repo.prefix.dev/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 - hash: - md5: d7c89558ba9fa0495403155b64376d81 - sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726 + md5: 8a83ad078080bfdef92730b09e422b4a + sha256: d04864399e5bee6292371242817304e97c8dcb5a352b4b3ca507d3ca13627acb category: main optional: false - name: _openmp_mutex @@ -58,12 +47,12 @@ package: manager: conda platform: linux-64 dependencies: - _libgcc_mutex: '0.1' + __glibc: '>=2.17,<3.0.a0' libgomp: '>=7.5.0' - url: https://repo.prefix.dev/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 + url: https://repo.prefix.dev/conda-forge/linux-64/_openmp_mutex-4.5-20_gnu.conda hash: - md5: 73aaf86a425cc6e73fcf236a5a46396d - sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22 + md5: a9f577daf3de00bca7c3c76c0ecbd1de + sha256: 1dd3fffd892081df9726d7eb7e0dea6198962ba775bd88842135a4ddb4deb3c9 category: main optional: false - name: _openmp_mutex @@ -72,11 +61,11 @@ package: platform: win-64 dependencies: libgomp: '>=7.5.0' - libwinpthread: '>=12.0.0.r2.ggc561118da' - url: https://repo.prefix.dev/conda-forge/win-64/_openmp_mutex-4.5-2_gnu.conda + libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' + url: https://repo.prefix.dev/conda-forge/win-64/_openmp_mutex-4.5-20_gnu.conda hash: - md5: 37e16618af5c4851a3f3d66dd0e11141 - sha256: 1a62cd1f215fe0902e7004089693a78347a30ad687781dfda2289cab000e652d + md5: 1626967b574d1784b578b52eaeb071e7 + sha256: 8a1cee28bd0ee7451ada1cd50b64720e57e17ff994fc62dd8329bef570d382e4 category: main optional: false - name: alabaster @@ -157,55 +146,53 @@ package: category: main optional: false - name: astroid - version: 4.0.3 + version: 4.0.4 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-4.0.3-py312h7900ff3_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/astroid-4.0.4-py312h7900ff3_0.conda hash: - md5: d52bf8682166142541a533c7a15d4780 - sha256: 128e85c2fe696e65dbb0eb41214b1700de1e51407537d1e5799425c48abb349c + md5: 78bdb6d3da524bdea10ef44e5ec7658d + sha256: 50d706c0700ee47617de6a850cab0bb4a3419c2ed86804c21f449735f09e1c48 category: dev optional: true - name: astroid - version: 4.0.3 + version: 4.0.4 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-4.0.3-py312h2e8e312_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/astroid-4.0.4-py312h2e8e312_0.conda hash: - md5: fcc689f69b73f0672547ffdf35358796 - sha256: 515fd10c176fd73fce5ff0ff39ff657277a83a71ae0d04de3397181bd78d8913 + md5: 0cec3709c887fd21483f9fe36d039bac + sha256: 24916ad967b6b0d25c6ed2cff1e61b17f4f72d0c73cbdc5f2afdd55dcc0a36b5 category: dev optional: true - name: babel - version: 2.17.0 + version: 2.18.0 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - pytz: '>=2015.7' - url: https://repo.prefix.dev/conda-forge/noarch/babel-2.17.0-pyhd8ed1ab_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/babel-2.18.0-pyhcf101f3_1.conda hash: - md5: 0a01c169f0ab0f91b26e77a3301fbfe4 - sha256: 1c656a35800b7f57f7371605bc6507c8d3ad60fbaaec65876fce7f73df1fc8ac + md5: f1976ce927373500cc19d3c0b2c85177 + sha256: a14a9ad02101aab25570543a59c5193043b73dc311a25650134ed9e6cb691770 category: dev optional: true - name: babel - version: 2.17.0 + version: 2.18.0 manager: conda platform: win-64 dependencies: - python: '>=3.9' - pytz: '>=2015.7' - url: https://repo.prefix.dev/conda-forge/noarch/babel-2.17.0-pyhd8ed1ab_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/babel-2.18.0-pyhcf101f3_1.conda hash: - md5: 0a01c169f0ab0f91b26e77a3301fbfe4 - sha256: 1c656a35800b7f57f7371605bc6507c8d3ad60fbaaec65876fce7f73df1fc8ac + md5: f1976ce927373500cc19d3c0b2c85177 + sha256: a14a9ad02101aab25570543a59c5193043b73dc311a25650134ed9e6cb691770 category: dev optional: true - name: backports.zstd @@ -306,7 +293,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/bottle-0.13.4-pyhe01879c_0.conda hash: md5: ddb34ae9ba36f9479bf605302adf54e2 @@ -318,7 +305,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/bottle-0.13.4-pyhe01879c_0.conda hash: md5: ddb34ae9ba36f9479bf605302adf54e2 @@ -445,10 +432,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/bzip2-1.0.8-hda65f42_8.conda + url: https://repo.prefix.dev/conda-forge/linux-64/bzip2-1.0.8-hda65f42_9.conda hash: - md5: 51a19bba1b8ebfb60df25cde030b7ebc - sha256: c30daba32ddebbb7ded490f0e371eae90f51e72db620554089103b4a6934b0d5 + md5: d2ffd7602c02f2b316fd921d39876885 + sha256: 0b75d45f0bba3e95dc693336fa51f40ea28c980131fec438afb7ce6118ed05f6 category: main optional: false - name: bzip2 @@ -459,10 +446,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/bzip2-1.0.8-h0ad9c76_8.conda + url: https://repo.prefix.dev/conda-forge/win-64/bzip2-1.0.8-h0ad9c76_9.conda hash: - md5: 1077e9333c41ff0be8edd1a5ec0ddace - sha256: d882712855624641f48aa9dc3f5feea2ed6b4e6004585d3616386a18186fe692 + md5: 4cb8e6b48f67de0b018719cdf1136306 + sha256: 76dfb71df5e8d1c4eded2dbb5ba15bb8fb2e2b0fe42d94145d5eed4c75c35902 category: main optional: false - name: c-ares @@ -479,7 +466,7 @@ package: category: main optional: false - name: c-blosc2 - version: 2.22.0 + version: 2.23.1 manager: conda platform: linux-64 dependencies: @@ -487,16 +474,16 @@ package: libgcc: '>=14' libstdcxx: '>=14' lz4-c: '>=1.10.0,<1.11.0a0' - zlib-ng: '>=2.3.1,<2.4.0a0' + zlib-ng: '>=2.3.3,<2.4.0a0' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/c-blosc2-2.22.0-hc31b594_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/c-blosc2-2.23.1-hc31b594_0.conda hash: - md5: 52019609422a72ec80c32bbc16a889d8 - sha256: efe06a982fe7f4e483a2043c4b43fc3598a538a66ed11364ee5b25d3400ef415 + md5: 68ceffc6cadae61846a207cae60de094 + sha256: b6ce82ebe3cf24e70179bd656eacfa97ce9df9a500f2cec6843043466a5e6af8 category: main optional: false - name: c-blosc2 - version: 2.22.0 + version: 2.23.1 manager: conda platform: win-64 dependencies: @@ -504,36 +491,36 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - zlib-ng: '>=2.3.1,<2.4.0a0' + zlib-ng: '>=2.3.3,<2.4.0a0' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/c-blosc2-2.22.0-h2af8807_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/c-blosc2-2.23.1-h2af8807_0.conda hash: - md5: eb7c33dcf2ff0cea48cd13f0ebba44f5 - sha256: fb27b61b4c969e1761c2d02c12854a3e809c9db2b4097bdef77e0aaa3f7ee33a + md5: bf3ca174f488c0bfec33d84438c0f008 + sha256: 9579087e7a40372006ebda6c7aa48b36dd66effa4e4d009e1ab1ad7d8718dd0c category: main optional: false - name: ca-certificates - version: 2026.1.4 + version: 2026.2.25 manager: conda platform: linux-64 dependencies: __unix: '' - url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2026.1.4-hbd8a1cb_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2026.2.25-hbd8a1cb_0.conda hash: - md5: bddacf101bb4dd0e51811cb69c7790e2 - sha256: b5974ec9b50e3c514a382335efa81ed02b05906849827a34061c496f4defa0b2 + md5: 4492fd26db29495f0ba23f146cd5638d + sha256: 67cc7101b36421c5913a1687ef1b99f85b5d6868da3abbf6ec1a4181e79782fc category: main optional: false - name: ca-certificates - version: 2026.1.4 + version: 2026.2.25 manager: conda platform: win-64 dependencies: __win: '' - url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2026.1.4-h4c7d964_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2026.2.25-h4c7d964_0.conda hash: - md5: 84d389c9eee640dda3d26fc5335c67d8 - sha256: 4ddcb01be03f85d3db9d881407fb13a673372f1b9fac9c836ea441893390e049 + md5: f001e6e220355b7f87403a4d0e5bf1ca + sha256: 37950019c59b99585cee5d30dbc2cc9696ed4e11f5742606a4db1621ed8f94d6 category: main optional: false - name: cached-property @@ -585,27 +572,27 @@ package: category: main optional: false - name: certifi - version: 2026.1.4 + version: 2026.2.25 manager: conda platform: linux-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/certifi-2026.1.4-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/certifi-2026.2.25-pyhd8ed1ab_0.conda hash: - md5: eacc711330cd46939f66cd401ff9c44b - sha256: 110338066d194a715947808611b763857c15458f8b3b97197387356844af9450 + md5: 765c4d97e877cdbbb88ff33152b86125 + sha256: a6b118fd1ed6099dc4fc03f9c492b88882a780fadaef4ed4f93dc70757713656 category: main optional: false - name: certifi - version: 2026.1.4 + version: 2026.2.25 manager: conda platform: win-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/certifi-2026.1.4-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/certifi-2026.2.25-pyhd8ed1ab_0.conda hash: - md5: eacc711330cd46939f66cd401ff9c44b - sha256: 110338066d194a715947808611b763857c15458f8b3b97197387356844af9450 + md5: 765c4d97e877cdbbb88ff33152b86125 + sha256: a6b118fd1ed6099dc4fc03f9c492b88882a780fadaef4ed4f93dc70757713656 category: main optional: false - name: cffi @@ -643,54 +630,55 @@ package: category: webview optional: true - name: charls - version: 2.4.2 + version: 2.4.3 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://repo.prefix.dev/conda-forge/linux-64/charls-2.4.2-h59595ed_0.conda + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=14' + libstdcxx: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/charls-2.4.3-hecca717_0.conda hash: - md5: 4336bd67920dd504cd8c6761d6a99645 - sha256: 18f1c43f91ccf28297f92b094c2c8dbe9c6e8241c0d3cbd6cda014a990660fdd + md5: 937ca49a245fcf2b88d51b6b52959426 + sha256: 53504e965499b4845ca3dc63d5905d5a1e686fcb9ab17e83c018efa479e787d0 category: main optional: false - name: charls - version: 2.4.2 + version: 2.4.3 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/charls-2.4.2-h1537add_0.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/charls-2.4.3-h7cafa3a_0.conda hash: - md5: 0935766a50dfe44315b62ec0046a8779 - sha256: e6a3eab3fe65389900f39a78dc3bd86bbc030e2a746addb8b69a997495ca867c + md5: e130868f53b4b95e909c0c64ab543b62 + sha256: 4edc31f4c709a38f04da2c5eeef659b1c5279617281bd74c1786487ddd76717a category: main optional: false - name: charset-normalizer - version: 3.4.4 + version: 3.4.6 manager: conda platform: linux-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.4-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.6-pyhd8ed1ab_0.conda hash: - md5: a22d1fd9bf98827e280a02875d9a007a - sha256: b32f8362e885f1b8417bac2b3da4db7323faa12d5db62b7fd6691c02d60d6f59 + md5: 49ee13eb9b8f44d63879c69b8a40a74b + sha256: d86dfd428b2e3c364fa90e07437c8405d635aa4ef54b25ab51d9c712be4112a5 category: main optional: false - name: charset-normalizer - version: 3.4.4 + version: 3.4.6 manager: conda platform: win-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.4-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.6-pyhd8ed1ab_0.conda hash: - md5: a22d1fd9bf98827e280a02875d9a007a - sha256: b32f8362e885f1b8417bac2b3da4db7323faa12d5db62b7fd6691c02d60d6f59 + md5: 49ee13eb9b8f44d63879c69b8a40a74b + sha256: d86dfd428b2e3c364fa90e07437c8405d635aa4ef54b25ab51d9c712be4112a5 category: main optional: false - name: click @@ -699,7 +687,7 @@ package: platform: linux-64 dependencies: __unix: '' - python: '>=3.10' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/click-8.3.1-pyh8f84b5b_1.conda hash: md5: ea8a6c3256897cc31263de9f455e25d9 @@ -713,7 +701,7 @@ package: dependencies: __win: '' colorama: '' - python: '>=3.10' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/click-8.3.1-pyha7b4d00_1.conda hash: md5: 6cd3ccc98bacfcc92b2bd7f236f01a7e @@ -725,7 +713,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.10' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/cloudpickle-3.1.2-pyhcf101f3_1.conda hash: md5: 61b8078a0905b12529abc622406cb62c @@ -737,7 +725,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.10' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/cloudpickle-3.1.2-pyhcf101f3_1.conda hash: md5: 61b8078a0905b12529abc622406cb62c @@ -780,8 +768,8 @@ package: hash: md5: 962b9857ee8e7018c22f2776ffa0b2d7 sha256: ab29d57dc70786c1269633ba3dff20288b81664d3ff8d21af995742e2bb03287 - category: main - optional: false + category: dev + optional: true - name: colorama version: 0.4.6 manager: conda @@ -803,12 +791,12 @@ package: libgcc: '>=14' libstdcxx: '>=14' numpy: '>=1.25' - python: '>=3.12,<3.13.0a0' + python: '' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/contourpy-1.3.3-py312hd9148b4_3.conda + url: https://repo.prefix.dev/conda-forge/linux-64/contourpy-1.3.3-py312h0a2e395_4.conda hash: - md5: 86cf7a7d861b79d38e3f0e5097e4965b - sha256: e173ea96fb135b233c7f57c35c0d07f7adc50ebacf814550f3daf1c7ba2ed51e + md5: 43c2bc96af3ae5ed9e8a10ded942aa50 + sha256: 62447faf7e8eb691e407688c0b4b7c230de40d5ecf95bf301111b4d05c5be473 category: main optional: false - name: contourpy @@ -817,19 +805,19 @@ package: platform: win-64 dependencies: numpy: '>=1.25' - python: '>=3.12,<3.13.0a0' + python: '' python_abi: 3.12.* ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/contourpy-1.3.3-py312hf90b1b7_3.conda + url: https://repo.prefix.dev/conda-forge/win-64/contourpy-1.3.3-py312h78d62e6_4.conda hash: - md5: 9dabe26ca46b845b669408109975b922 - sha256: 735847f474ffbef028e2bac81c786f46b2498d422b834b799f50e30d95730b37 + md5: 475bd41a63e613f2f2a2764cd1cd3b25 + sha256: 5f0dd3a4243e8293acc40abf3b11bcb23401268a1ef2ed3bce4d5a060383c1da category: main optional: false - name: coverage - version: 7.13.1 + version: 7.13.5 manager: conda platform: linux-64 dependencies: @@ -838,14 +826,14 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* tomli: '' - url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.13.1-py312h8a5da7c_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.13.5-py312h8a5da7c_0.conda hash: - md5: eafe0b486a7910e4a6973029c80d437f - sha256: dd832f036d8aefed827b79f9b5fab94b807f97979c5339c0deebeceab4c032b5 + md5: c4d858e15305e70b255e756a4dc96e58 + sha256: 9e88f91f85f0049686796fd25b20001bfbe9e4367714bb5d258849abcf54a705 category: dev optional: true - name: coverage - version: 7.13.1 + version: 7.13.5 manager: conda platform: win-64 dependencies: @@ -855,10 +843,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.13.1-py312h05f76fc_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.13.5-py312h05f76fc_0.conda hash: - md5: a0f9698c7e9a2ba93218b65aaff9dcb9 - sha256: 20e7019e3bfdb5ce1ddb79753c7f0edb40a9983e4d40b3efd4b8277980fda8d1 + md5: 24b75aab5a8c2df25695ebee2b5ffa49 + sha256: 1a232970b9fa840efd3d5fb55760c1afc18335feb20b8da8c8e16d0418bd6cf0 category: dev optional: true - name: cycler @@ -866,7 +854,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.10' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhcf101f3_2.conda hash: md5: 4c2a8fef270f6c69591889b93f9f55c1 @@ -878,7 +866,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.10' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhcf101f3_2.conda hash: md5: 4c2a8fef270f6c69591889b93f9f55c1 @@ -886,7 +874,7 @@ package: category: main optional: false - name: dash - version: 3.3.0 + version: 3.4.0 manager: conda platform: linux-64 dependencies: @@ -900,14 +888,14 @@ package: setuptools: '' typing_extensions: '>=4.1.1' werkzeug: '' - url: https://repo.prefix.dev/conda-forge/noarch/dash-3.3.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/dash-3.4.0-pyhd8ed1ab_0.conda hash: - md5: 1e4dab5c51cef84cf867108cddb09835 - sha256: a8e6b531b5fb9582ce2087be74ebd57b095e9db4b1d25d03106b3259fe3259c5 + md5: 98e15866afcf0dd20a8e2c69b46810e9 + sha256: a522e42d24626efefb10b28ccca5ee45dbb12862f762b79d8c2acf6bc1ff2db9 category: main optional: false - name: dash - version: 3.3.0 + version: 3.4.0 manager: conda platform: win-64 dependencies: @@ -921,10 +909,10 @@ package: setuptools: '' typing_extensions: '>=4.1.1' werkzeug: '' - url: https://repo.prefix.dev/conda-forge/noarch/dash-3.3.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/dash-3.4.0-pyhd8ed1ab_0.conda hash: - md5: 1e4dab5c51cef84cf867108cddb09835 - sha256: a8e6b531b5fb9582ce2087be74ebd57b095e9db4b1d25d03106b3259fe3259c5 + md5: 98e15866afcf0dd20a8e2c69b46810e9 + sha256: a522e42d24626efefb10b28ccca5ee45dbb12862f762b79d8c2acf6bc1ff2db9 category: main optional: false - name: dash-ag-grid @@ -959,7 +947,7 @@ package: platform: linux-64 dependencies: dash: '>=3.0.4' - python: '>=3.10,<4.0' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/dash-bootstrap-components-2.0.4-pyhcf101f3_0.conda hash: md5: 26af33c7e6ae117319e93843e238d165 @@ -972,7 +960,7 @@ package: platform: win-64 dependencies: dash: '>=3.0.4' - python: '>=3.10,<4.0' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/dash-bootstrap-components-2.0.4-pyhcf101f3_0.conda hash: md5: 26af33c7e6ae117319e93843e238d165 @@ -1084,7 +1072,7 @@ package: category: main optional: false - name: dask-core - version: 2025.3.0 + version: 2025.3.1 manager: conda platform: linux-64 dependencies: @@ -1097,14 +1085,14 @@ package: python: '>=3.10' pyyaml: '>=5.3.1' toolz: '>=0.10.0' - url: https://repo.prefix.dev/conda-forge/noarch/dask-core-2025.3.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/dask-core-2025.3.1-pyhd8ed1ab_0.conda hash: - md5: 36f6cc22457e3d6a6051c5370832f96c - sha256: 72badd945d856d2928fdbe051f136f903bcfee8136f1526c8362c6c465b793ec + md5: c7ef8a7bd2da4c8ba61688cfba29ce86 + sha256: 23db7a0ac393939cadf04441022bc1954d108f44f3469996d405cb522b9ff61c category: main optional: false - name: dask-core - version: 2025.3.0 + version: 2025.3.1 manager: conda platform: win-64 dependencies: @@ -1117,10 +1105,10 @@ package: python: '>=3.10' pyyaml: '>=5.3.1' toolz: '>=0.10.0' - url: https://repo.prefix.dev/conda-forge/noarch/dask-core-2025.3.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/dask-core-2025.3.1-pyhd8ed1ab_0.conda hash: - md5: 36f6cc22457e3d6a6051c5370832f96c - sha256: 72badd945d856d2928fdbe051f136f903bcfee8136f1526c8362c6c465b793ec + md5: c7ef8a7bd2da4c8ba61688cfba29ce86 + sha256: 23db7a0ac393939cadf04441022bc1954d108f44f3469996d405cb522b9ff61c category: main optional: false - name: dav1d @@ -1150,27 +1138,27 @@ package: category: main optional: false - name: dill - version: 0.4.0 + version: 0.4.1 manager: conda platform: linux-64 dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhcf101f3_1.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.1-pyhcf101f3_0.conda hash: - md5: eec5b361dbbaa69dba05050977a414b0 - sha256: c0c91bd91e59940091cec1760db51a82a58e9c64edf4b808bd2da94201ccfdb4 + md5: 080a808fce955026bf82107d955d32da + sha256: 1ef84c0cc4efd0c2d58c3cb365945edbd9ee42a1c54514d1ccba4b641005f757 category: dev optional: true - name: dill - version: 0.4.0 + version: 0.4.1 manager: conda platform: win-64 dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhcf101f3_1.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.1-pyhcf101f3_0.conda hash: - md5: eec5b361dbbaa69dba05050977a414b0 - sha256: c0c91bd91e59940091cec1760db51a82a58e9c64edf4b808bd2da94201ccfdb4 + md5: 080a808fce955026bf82107d955d32da + sha256: 1ef84c0cc4efd0c2d58c3cb365945edbd9ee42a1c54514d1ccba4b641005f757 category: dev optional: true - name: docutils @@ -1224,45 +1212,43 @@ package: category: dev optional: true - name: flask - version: 3.1.2 + version: 3.1.3 manager: conda platform: linux-64 dependencies: blinker: '>=1.9.0' click: '>=8.1.3' - importlib-metadata: '>=3.6.0' itsdangerous: '>=2.2.0' jinja2: '>=3.1.2' markupsafe: '>=2.1.1' - python: '>=3.9' + python: '' werkzeug: '>=3.1.0' - url: https://repo.prefix.dev/conda-forge/noarch/flask-3.1.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/flask-3.1.3-pyhcf101f3_1.conda hash: - md5: ba67a9febeda36948fee26a3dec3d914 - sha256: 8a97eba37e0723720706d4636cc89c6b07eea1b7cc66fd8994fa8983a81ed988 + md5: 156398929bf849da6df8f89a2c390185 + sha256: 3980dfba1e3900106cc3e6210294e73f50d02a67fdfe7b3bb36b2721ba9379cb category: main optional: false - name: flask - version: 3.1.2 + version: 3.1.3 manager: conda platform: win-64 dependencies: blinker: '>=1.9.0' click: '>=8.1.3' - importlib-metadata: '>=3.6.0' itsdangerous: '>=2.2.0' jinja2: '>=3.1.2' markupsafe: '>=2.1.1' - python: '>=3.9' + python: '' werkzeug: '>=3.1.0' - url: https://repo.prefix.dev/conda-forge/noarch/flask-3.1.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/flask-3.1.3-pyhcf101f3_1.conda hash: - md5: ba67a9febeda36948fee26a3dec3d914 - sha256: 8a97eba37e0723720706d4636cc89c6b07eea1b7cc66fd8994fa8983a81ed988 + md5: 156398929bf849da6df8f89a2c390185 + sha256: 3980dfba1e3900106cc3e6210294e73f50d02a67fdfe7b3bb36b2721ba9379cb category: main optional: false - name: fonttools - version: 4.61.1 + version: 4.62.0 manager: conda platform: linux-64 dependencies: @@ -1273,14 +1259,14 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* unicodedata2: '>=15.1.0' - url: https://repo.prefix.dev/conda-forge/linux-64/fonttools-4.61.1-py312h8a5da7c_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/fonttools-4.62.0-py312h8a5da7c_0.conda hash: - md5: 3bf8fb959dc598c67dac0430b4aff57a - sha256: c73cd238e0f6b2183c5168b64aa35a7eb66bb145192a9b26bb9041a4152844a3 + md5: 526f7ffd63820e55d7992cc1cf931a36 + sha256: 777c80a1aa0889e6b637631c31f95d0b048848c5ba710f89ed7cedd3ad318227 category: main optional: false - name: fonttools - version: 4.61.1 + version: 4.62.0 manager: conda platform: win-64 dependencies: @@ -1292,60 +1278,60 @@ package: unicodedata2: '>=15.1.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/fonttools-4.61.1-py312h05f76fc_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/fonttools-4.62.0-py312h05f76fc_0.conda hash: - md5: 449a1487319070f736382d2b53bb5aec - sha256: 49df76416b253429ea7ff907e03215f2bb1450c03908b7e413a8bdd85154eded + md5: 96c115ac5095960276978618087116ec + sha256: 41bfb37800a8247339abdac2ae2e1cb4cfe62bf5cd853efc768f726916c36df6 category: main optional: false - name: freetype - version: 2.14.1 + version: 2.14.2 manager: conda platform: linux-64 dependencies: - libfreetype: 2.14.1 - libfreetype6: 2.14.1 - url: https://repo.prefix.dev/conda-forge/linux-64/freetype-2.14.1-ha770c72_0.conda + libfreetype: 2.14.2 + libfreetype6: 2.14.2 + url: https://repo.prefix.dev/conda-forge/linux-64/freetype-2.14.2-ha770c72_0.conda hash: - md5: 4afc585cd97ba8a23809406cd8a9eda8 - sha256: bf8e4dffe46f7d25dc06f31038cacb01672c47b9f45201f065b0f4d00ab0a83e + md5: eeec961fec28e747e1e1dc0446277452 + sha256: 36857701b46828b6760c3c1652414ee504e7fc12740261ac6fcff3959b72bd7a category: main optional: false - name: freetype - version: 2.14.1 + version: 2.14.2 manager: conda platform: win-64 dependencies: - libfreetype: 2.14.1 - libfreetype6: 2.14.1 - url: https://repo.prefix.dev/conda-forge/win-64/freetype-2.14.1-h57928b3_0.conda + libfreetype: 2.14.2 + libfreetype6: 2.14.2 + url: https://repo.prefix.dev/conda-forge/win-64/freetype-2.14.2-h57928b3_0.conda hash: - md5: d69c21967f35eb2ce7f1f85d6b6022d3 - sha256: a9b3313edea0bf14ea6147ea43a1059d0bf78771a1336d2c8282891efc57709a + md5: c360b467564b875a9f5dc481b8726cee + sha256: 6dd4bb3862ea3d07015331059504cf3b6af1a11a6909e7a9b6e04a20e253da28 category: main optional: false - name: fsspec - version: 2025.12.0 + version: 2026.2.0 manager: conda platform: linux-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2025.12.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2026.2.0-pyhd8ed1ab_0.conda hash: - md5: a3b9510e2491c20c7fc0f5e730227fbb - sha256: 64a4ed910e39d96cd590d297982b229c57a08e70450d489faa34fd2bec36dbcc + md5: 496c6c9411a6284addf55c898d6ed8d7 + sha256: 239b67edf1c5e5caed52cf36e9bed47cb21b37721779828c130e6b3fd9793c1b category: main optional: false - name: fsspec - version: 2025.12.0 + version: 2026.2.0 manager: conda platform: win-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2025.12.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2026.2.0-pyhd8ed1ab_0.conda hash: - md5: a3b9510e2491c20c7fc0f5e730227fbb - sha256: 64a4ed910e39d96cd590d297982b229c57a08e70450d489faa34fd2bec36dbcc + md5: 496c6c9411a6284addf55c898d6ed8d7 + sha256: 239b67edf1c5e5caed52cf36e9bed47cb21b37721779828c130e6b3fd9793c1b category: main optional: false - name: giflib @@ -1381,7 +1367,7 @@ package: dependencies: hpack: '>=4.1,<5' hyperframe: '>=6.1,<7' - python: '>=3.10' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/h2-4.3.0-pyhcf101f3_0.conda hash: md5: 164fc43f0b53b6e3a7bc7dce5e4f1dc9 @@ -1395,7 +1381,7 @@ package: dependencies: hpack: '>=4.1,<5' hyperframe: '>=6.1,<7' - python: '>=3.10' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/h2-4.3.0-pyhcf101f3_0.conda hash: md5: 164fc43f0b53b6e3a7bc7dce5e4f1dc9 @@ -1445,18 +1431,18 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libaec: '>=1.1.4,<2.0a0' - libcurl: '>=8.17.0,<9.0a0' + libaec: '>=1.1.5,<2.0a0' + libcurl: '>=8.18.0,<9.0a0' libgcc: '>=14' libgfortran: '' libgfortran5: '>=14.3.0' libstdcxx: '>=14' libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.5.4,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/hdf5-1.14.6-nompi_h1b119a7_104.conda + openssl: '>=3.5.5,<4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/hdf5-1.14.6-nompi_h19486de_106.conda hash: - md5: 0857f4d157820dcd5625f61fdfefb780 - sha256: 454e9724b322cee277abd7acf4f8d688e9c4ded006b6d5bc9fcc2a1ff907d27a + md5: c223ee1429ba538f3e48cfb4a0b97357 + sha256: 1fc50ce3b86710fba3ec9c5714f1612b5ffa4230d70bfe43e2a1436eacba1621 category: main optional: false - name: hdf5 @@ -1464,17 +1450,17 @@ package: manager: conda platform: win-64 dependencies: - libaec: '>=1.1.4,<2.0a0' - libcurl: '>=8.17.0,<9.0a0' + libaec: '>=1.1.5,<2.0a0' + libcurl: '>=8.18.0,<9.0a0' libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.5.4,<4.0a0' + openssl: '>=3.5.5,<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/hdf5-1.14.6-nompi_h89f0904_104.conda + url: https://repo.prefix.dev/conda-forge/win-64/hdf5-1.14.6-nompi_hae35d4c_106.conda hash: - md5: 9cc4a5567d46c7fcde99563e86522882 - sha256: cc948149f700033ff85ce4a1854edf6adcb5881391a3df5c40cbe2a793dd9f81 + md5: e2fb54650b51dcd92dfcbf42d2222ff8 + sha256: d9f8f202ee91ae93515b18c498970f178dfd061743f25a65a205f848e197437f category: main optional: false - name: hpack @@ -1526,31 +1512,17 @@ package: category: main optional: false - name: icu - version: '78.2' + version: '78.3' manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' libstdcxx: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/icu-78.2-h33c6efd_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/icu-78.3-h33c6efd_0.conda hash: - md5: 186a18e3ba246eccfc7cff00cd19a870 - sha256: 142a722072fa96cf16ff98eaaf641f54ab84744af81754c292cb81e0881c0329 - category: main - optional: false -- name: icu - version: '78.2' - 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/icu-78.2-h637d24d_0.conda - hash: - md5: 0ee3bb487600d5e71ab7d28951b2016a - sha256: 5a41fb28971342e293769fc968b3414253a2f8d9e30ed7c31517a15b4887246a + md5: c80d8a3b84358cb967fa81e7075fbc8a + sha256: fbf86c4a59c2ed05bbffb2ba25c7ed94f6185ec30ecb691615d42342baa1a16a category: main optional: false - name: idna @@ -1578,7 +1550,7 @@ package: category: main optional: false - name: imagecodecs - version: 2026.1.1 + version: 2026.3.6 manager: conda platform: linux-64 dependencies: @@ -1586,23 +1558,23 @@ package: blosc: '>=1.21.6,<2.0a0' brunsli: '>=0.1,<1.0a0' bzip2: '>=1.0.8,<2.0a0' - c-blosc2: '>=2.22.0,<2.23.0a0' - charls: '>=2.4.2,<2.5.0a0' + c-blosc2: '>=2.23.1,<2.24.0a0' + charls: '>=2.4.3,<2.5.0a0' giflib: '>=5.2.2,<5.3.0a0' jxrlib: '>=1.1,<1.2.0a0' - lcms2: '>=2.17,<3.0a0' + lcms2: '>=2.18,<3.0a0' lerc: '>=4.0.0,<5.0a0' - libaec: '>=1.1.4,<2.0a0' - libavif16: '>=1.3.0,<2.0a0' + libaec: '>=1.1.5,<2.0a0' + libavif16: '>=1.4.0,<2.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.2,<4.0a0' - libjxl: '>=0.11,<0.12.0a0' - liblzma: '>=5.8.1,<6.0a0' - libpng: '>=1.6.53,<1.7.0a0' + libjxl: '>=0.11,<1.0a0' + liblzma: '>=5.8.2,<6.0a0' + libpng: '>=1.6.55,<1.7.0a0' libstdcxx: '>=14' libtiff: '>=4.7.1,<4.8.0a0' libwebp-base: '>=1.6.0,<2.0a0' @@ -1611,42 +1583,42 @@ package: lz4-c: '>=1.10.0,<1.11.0a0' numpy: '>=1.23,<3' openjpeg: '>=2.5.4,<3.0a0' - openjph: '>=0.26.0,<0.27.0a0' + openjph: '>=0.26.3,<0.27.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.3.2,<2.4.0a0' + zlib-ng: '>=2.3.3,<2.4.0a0' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/imagecodecs-2026.1.1-py312ha4965bc_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/imagecodecs-2026.3.6-py312h40df4bb_1.conda hash: - md5: 8c11cad6ae6abb1c12148310b297a725 - sha256: 21b4eded55133a847218d1fbfc2eeafeabe6debd40db50d852b3654953359e40 + md5: 6350061e5007b0c030810705a491cf2e + sha256: 412f3a5e6da358505a3014d8f2bc7be648b7fcced4ccc92b3d061e960a2e4215 category: main optional: false - name: imagecodecs - version: 2026.1.1 + version: 2026.3.6 manager: conda platform: win-64 dependencies: blosc: '>=1.21.6,<2.0a0' bzip2: '>=1.0.8,<2.0a0' - c-blosc2: '>=2.22.0,<2.23.0a0' - charls: '>=2.4.2,<2.5.0a0' + c-blosc2: '>=2.23.1,<2.24.0a0' + charls: '>=2.4.3,<2.5.0a0' giflib: '>=5.2.2,<5.3.0a0' jxrlib: '>=1.1,<1.2.0a0' - lcms2: '>=2.17,<3.0a0' + lcms2: '>=2.18,<3.0a0' lerc: '>=4.0.0,<5.0a0' - libaec: '>=1.1.4,<2.0a0' - libavif16: '>=1.3.0,<2.0a0' + libaec: '>=1.1.5,<2.0a0' + libavif16: '>=1.4.0,<2.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.2,<4.0a0' - libjxl: '>=0.11,<0.12.0a0' - liblzma: '>=5.8.1,<6.0a0' - libpng: '>=1.6.53,<1.7.0a0' + libjxl: '>=0.11,<1.0a0' + liblzma: '>=5.8.2,<6.0a0' + libpng: '>=1.6.55,<1.7.0a0' libtiff: '>=4.7.1,<4.8.0a0' libwebp-base: '>=1.6.0,<2.0a0' libzlib: '>=1.3.1,<2.0a0' @@ -1654,7 +1626,7 @@ package: lz4-c: '>=1.10.0,<1.11.0a0' numpy: '>=1.23,<3' openjpeg: '>=2.5.4,<3.0a0' - openjph: '>=0.26.0,<0.27.0a0' + openjph: '>=0.26.3,<0.27.0a0' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* snappy: '>=1.2.2,<1.3.0a0' @@ -1662,12 +1634,12 @@ package: vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' zfp: '>=1.0.1,<2.0a0' - zlib-ng: '>=2.3.2,<2.4.0a0' + zlib-ng: '>=2.3.3,<2.4.0a0' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/imagecodecs-2026.1.1-py312he7cbf3d_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/imagecodecs-2026.3.6-py312hb0afafc_1.conda hash: - md5: 5b9c744c41767d35381481a4b87ecdd1 - sha256: 362c85e127008213d021afcdba26c61d261dbcab7649bb24c6d822b8dcc1d33d + md5: 8672f2033c68832efa88bcc601c55171 + sha256: 7dba12e6267a36a6e443bc4324fb428622c38797507574a547888c70afea7ae7 category: main optional: false - name: imageio @@ -1699,27 +1671,27 @@ package: category: main optional: false - name: imagesize - version: 1.4.1 + version: 2.0.0 manager: conda platform: linux-64 dependencies: - python: '>=3.4' - url: https://repo.prefix.dev/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2 + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/imagesize-2.0.0-pyhd8ed1ab_0.conda hash: - md5: 7de5386c8fea29e76b303f37dde4c352 - sha256: c2bfd7043e0c4c12d8b5593de666c1e81d67b83c474a0a79282cc5c4ef845460 + md5: 92617c2ba2847cca7a6ed813b6f4ab79 + sha256: 5a047f9eac290e679b4e6f6f4cbfcc5acdfbf031a4f06824d4ddb590cdbb850b category: dev optional: true - name: imagesize - version: 1.4.1 + version: 2.0.0 manager: conda platform: win-64 dependencies: - python: '>=3.4' - url: https://repo.prefix.dev/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2 + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/imagesize-2.0.0-pyhd8ed1ab_0.conda hash: - md5: 7de5386c8fea29e76b303f37dde4c352 - sha256: c2bfd7043e0c4c12d8b5593de666c1e81d67b83c474a0a79282cc5c4ef845460 + md5: 92617c2ba2847cca7a6ed813b6f4ab79 + sha256: 5a047f9eac290e679b4e6f6f4cbfcc5acdfbf031a4f06824d4ddb590cdbb850b category: dev optional: true - name: importlib-metadata @@ -1727,7 +1699,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' zipp: '>=3.20' url: https://repo.prefix.dev/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda hash: @@ -1740,7 +1712,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' zipp: '>=3.20' url: https://repo.prefix.dev/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda hash: @@ -1773,29 +1745,29 @@ package: category: dev optional: true - name: isort - version: 7.0.0 + version: 8.0.1 manager: conda platform: linux-64 dependencies: 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 + url: https://repo.prefix.dev/conda-forge/noarch/isort-8.0.1-pyhd8ed1ab_0.conda hash: - md5: 55a61979242077b2cc377c74326ea9f0 - sha256: 13b0005877f553eb2e5c50447c9d0047e7257124ec2d1569d7dad35697790237 + md5: 98cdd8615792e90da1023bc546f806d9 + sha256: cc5c2b513143ea9675ba5b3570182f7568fd1029b299ee3bc58424dcce8c5539 category: dev optional: true - name: isort - version: 7.0.0 + version: 8.0.1 manager: conda platform: win-64 dependencies: 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 + url: https://repo.prefix.dev/conda-forge/noarch/isort-8.0.1-pyhd8ed1ab_0.conda hash: - md5: 55a61979242077b2cc377c74326ea9f0 - sha256: 13b0005877f553eb2e5c50447c9d0047e7257124ec2d1569d7dad35697790237 + md5: 98cdd8615792e90da1023bc546f806d9 + sha256: cc5c2b513143ea9675ba5b3570182f7568fd1029b299ee3bc58424dcce8c5539 category: dev optional: true - name: itsdangerous @@ -1828,7 +1800,7 @@ package: platform: linux-64 dependencies: markupsafe: '>=2.0' - python: '>=3.10' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhcf101f3_1.conda hash: md5: 04558c96691bed63104678757beb4f8d @@ -1841,7 +1813,7 @@ package: platform: win-64 dependencies: markupsafe: '>=2.0' - python: '>=3.10' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhcf101f3_1.conda hash: md5: 04558c96691bed63104678757beb4f8d @@ -1888,7 +1860,7 @@ package: category: main optional: false - name: kiwisolver - version: 1.4.9 + version: 1.5.0 manager: conda platform: linux-64 dependencies: @@ -1897,14 +1869,14 @@ package: libstdcxx: '>=14' python: '' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/kiwisolver-1.4.9-py312h0a2e395_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/kiwisolver-1.5.0-py312h0a2e395_0.conda hash: - md5: 3a3004fddd39e3bb1a631b08d7045156 - sha256: 170d76b7ac7197012bb048e1021482a7b2455f3592a5e8d97c96f285ebad064b + md5: cd74a9525dc74bbbf93cf8aa2fa9eb5b + sha256: eec7654c2d68f06590862c6e845cc70987b6d6559222b6f0e619dea4268f5dd5 category: main optional: false - name: kiwisolver - version: 1.4.9 + version: 1.5.0 manager: conda platform: win-64 dependencies: @@ -1913,173 +1885,172 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/kiwisolver-1.4.9-py312h78d62e6_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/kiwisolver-1.5.0-py312h78d62e6_0.conda hash: - md5: 5dabe50380555cf2e89bd58173e88739 - sha256: 98d4946312b570bea37260b51cdc4dbc4847735703877580fc3566166623c8a5 + md5: 4ff6f76c2c16c85806ee7533768f5e64 + sha256: 5942bd7ae7b1d68906a00681e733b41ac8577ca7ac8da7523eb514d698b6e1f2 category: main optional: false - name: krb5 - version: 1.21.3 + version: 1.22.2 manager: conda platform: linux-64 dependencies: - keyutils: '>=1.6.1,<2.0a0' - libedit: '>=3.1.20191231,<4.0a0' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - openssl: '>=3.3.1,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda + __glibc: '>=2.17,<3.0.a0' + keyutils: '>=1.6.3,<2.0a0' + libedit: '>=3.1.20250104,<4.0a0' + libgcc: '>=14' + libstdcxx: '>=14' + openssl: '>=3.5.5,<4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/krb5-1.22.2-ha1258a1_0.conda hash: - md5: 3f43953b7d3fb3aaa1d0d0723d91e368 - sha256: 99df692f7a8a5c27cd14b5fb1374ee55e756631b9c3d659ed3ee60830249b238 + md5: fb53fb07ce46a575c5d004bbc96032c2 + sha256: 3e307628ca3527448dd1cb14ad7bb9d04d1d28c7d4c5f97ba196ae984571dd25 category: main optional: false - name: krb5 - version: 1.21.3 + version: 1.22.2 manager: conda platform: win-64 dependencies: - openssl: '>=3.3.1,<4.0a0' + openssl: '>=3.5.5,<4.0a0' ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/krb5-1.21.3-hdf4eb48_0.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/krb5-1.22.2-h0ea6238_0.conda hash: - md5: 31aec030344e962fbd7dbbbbd68e60a9 - sha256: 18e8b3430d7d232dad132f574268f56b3eb1a19431d6d5de8c53c29e6c18fa81 + md5: 4432f52dc0c8eb6a7a6abc00a037d93c + sha256: eb60f1ad8b597bcf95dee11bc11fe71a8325bc1204cf51d2bb1f2120ffd77761 category: main optional: false - name: lazy-loader - version: '0.4' + version: '0.5' manager: conda platform: linux-64 dependencies: - importlib-metadata: '' packaging: '' - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/lazy-loader-0.4-pyhd8ed1ab_2.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/lazy-loader-0.5-pyhd8ed1ab_0.conda hash: - md5: d10d9393680734a8febc4b362a4c94f2 - sha256: d7ea986507090fff801604867ef8e79c8fda8ec21314ba27c032ab18df9c3411 + md5: 75932da6f03a6bef32b70a51e991f6eb + sha256: 1a88069ac61d2756ccaf26a6c206ab4d56610fb054bd2fffb5df4cd0744ab78e category: main optional: false - name: lazy-loader - version: '0.4' + version: '0.5' manager: conda platform: win-64 dependencies: - importlib-metadata: '' packaging: '' - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/lazy-loader-0.4-pyhd8ed1ab_2.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/lazy-loader-0.5-pyhd8ed1ab_0.conda hash: - md5: d10d9393680734a8febc4b362a4c94f2 - sha256: d7ea986507090fff801604867ef8e79c8fda8ec21314ba27c032ab18df9c3411 + md5: 75932da6f03a6bef32b70a51e991f6eb + sha256: 1a88069ac61d2756ccaf26a6c206ab4d56610fb054bd2fffb5df4cd0744ab78e category: main optional: false - name: lcms2 - version: '2.17' + version: '2.18' manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - libjpeg-turbo: '>=3.0.0,<4.0a0' - libtiff: '>=4.7.0,<4.8.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/lcms2-2.17-h717163a_0.conda + libgcc: '>=14' + libjpeg-turbo: '>=3.1.2,<4.0a0' + libtiff: '>=4.7.1,<4.8.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/lcms2-2.18-h0c24ade_0.conda hash: - md5: 000e85703f0fd9594c81710dd5066471 - sha256: d6a61830a354da022eae93fa896d0991385a875c6bba53c82263a289deda9db8 + md5: 6f2e2c8f58160147c4d1c6f4c14cbac4 + sha256: 836ec4b895352110335b9fdcfa83a8dcdbe6c5fb7c06c4929130600caea91c0a category: main optional: false - name: lcms2 - version: '2.17' + version: '2.18' manager: conda platform: win-64 dependencies: - libjpeg-turbo: '>=3.0.0,<4.0a0' - libtiff: '>=4.7.0,<4.8.0a0' + libjpeg-turbo: '>=3.1.2,<4.0a0' + libtiff: '>=4.7.1,<4.8.0a0' ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/lcms2-2.17-hbcf6048_0.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/lcms2-2.18-hf2c6c5f_0.conda hash: - md5: 3538827f77b82a837fa681a4579e37a1 - sha256: 7712eab5f1a35ca3ea6db48ead49e0d6ac7f96f8560da8023e61b3dbe4f3b25d + md5: b6c68d6b829b044cd17a41e0a8a23ca1 + sha256: 7eeb18c5c86db146b62da66d9e8b0e753a52987f9134a494309588bbeceddf28 category: main optional: false - name: ld_impl_linux-64 - version: '2.45' + version: 2.45.1 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.45-default_hbd61a6d_105.conda + url: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.45.1-default_hbd61a6d_101.conda hash: - md5: 3ec0aa5037d39b06554109a01e6fb0c6 - sha256: 1027bd8aa0d5144e954e426ab6218fd5c14e54a98f571985675468b339c808ca + md5: 12bd9a3f089ee6c9266a37dab82afabd + sha256: 565941ac1f8b0d2f2e8f02827cbca648f4d18cd461afc31f15604cd291b5c5f3 category: main optional: false - name: lerc - version: 4.0.0 + version: 4.1.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - libstdcxx: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/lerc-4.0.0-h0aef613_1.conda + libgcc: '>=14' + libstdcxx: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/lerc-4.1.0-hdb68285_0.conda hash: - md5: 9344155d33912347b37f0ae6c410a835 - sha256: 412381a43d5ff9bbed82cd52a0bbca5b90623f62e41007c9c42d3870c60945ff + md5: a752488c68f2e7c456bcbd8f16eec275 + sha256: f84cb54782f7e9cea95e810ea8fef186e0652d0fa73d3009914fa2c1262594e1 category: main optional: false - name: lerc - version: 4.0.0 + version: 4.1.0 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/lerc-4.0.0-h6470a55_1.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/lerc-4.1.0-hd936e49_0.conda hash: - md5: c1b81da6d29a14b542da14a36c9fbf3f - sha256: 868a3dff758cc676fa1286d3f36c3e0101cca56730f7be531ab84dc91ec58e9d + md5: 54b231d595bc1ff9bff668dd443ee012 + sha256: 45df58fca800b552b17c3914cc9ab0d55a82c5172d72b5c44a59c710c06c5473 category: main optional: false - name: libaec - version: 1.1.4 + version: 1.1.5 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - libstdcxx: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libaec-1.1.4-h3f801dc_0.conda + libgcc: '>=14' + libstdcxx: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/libaec-1.1.5-h088129d_0.conda hash: - md5: 01ba04e414e47f95c03d6ddd81fd37be - sha256: 410ab78fe89bc869d435de04c9ffa189598ac15bb0fe1ea8ace8fb1b860a2aa3 + md5: 86f7414544ae606282352fa1e116b41f + sha256: 822e4ae421a7e9c04e841323526321185f6659222325e1a9aedec811c686e688 category: main optional: false - name: libaec - version: 1.1.4 + version: 1.1.5 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libaec-1.1.4-h20038f6_0.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/libaec-1.1.5-haf901d7_0.conda hash: - md5: 85a2bed45827d77d5b308cb2b165404f - sha256: 0be89085effce9fdcbb6aea7acdb157b18793162f68266ee0a75acf615d4929b + md5: 43b6385cfad52a7083f2c41984eb4e91 + sha256: e54c08964262c73671d9e80e400333e59c617e0b454476ad68933c0c458156c8 category: main optional: false - name: libavif16 - version: 1.3.0 + version: 1.4.0 manager: conda platform: linux-64 dependencies: @@ -2087,31 +2058,31 @@ package: aom: '>=3.9.1,<3.10.0a0' dav1d: '>=1.2.1,<1.2.2.0a0' libgcc: '>=14' - rav1e: '>=0.7.1,<0.8.0a0' - svt-av1: '>=3.1.2,<3.1.3.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libavif16-1.3.0-h6395336_2.conda + rav1e: '>=0.8.1,<0.9.0a0' + svt-av1: '>=4.0.1,<4.0.2.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/libavif16-1.4.0-hcfa2d63_0.conda hash: - md5: c09c4ac973f7992ba0c6bb1aafd77bd4 - sha256: e3a44c0eda23aa15c9a8dfa8c82ecf5c8b073e68a16c29edd0e409e687056d30 + md5: e226d3dbe1e2482fd8e15cb924fd1e7c + sha256: 918fd09af66968361c8fa40a76f864b7febb8286dd5dcb1419517b9db950c84c category: main optional: false - name: libavif16 - version: 1.3.0 + version: 1.4.0 manager: conda platform: win-64 dependencies: - _libavif_api: '>=1.3.0,<1.3.1.0a0' + _libavif_api: '>=1.4.0,<1.4.1.0a0' aom: '>=3.9.1,<3.10.0a0' dav1d: '>=1.2.1,<1.2.2.0a0' - rav1e: '>=0.7.1,<0.8.0a0' - svt-av1: '>=3.1.2,<3.1.3.0a0' + rav1e: '>=0.8.1,<0.9.0a0' + svt-av1: '>=4.0.1,<4.0.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/libavif16-1.3.0-he916da2_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/libavif16-1.4.0-h41d0b9c_0.conda hash: - md5: 9782ce5bf5a3b41f29533c2c08f6b360 - sha256: dbb3f21282eccba6e4bd70c9db371e081bf09c55f1de7ca90f1106cc199d4a8b + md5: 6e93fb228d0dbf14658c10f1c7bb54ce + sha256: ee33f0e1da48b5cf3267752d976bb47a00b78fc1b2528698e59afbc2a2645348 category: main optional: false - name: libblas @@ -2119,7 +2090,7 @@ package: manager: conda platform: linux-64 dependencies: - libopenblas: '>=0.3.30,<0.3.31.0a0' + libopenblas: '>=0.3.30,<1.0a0' url: https://repo.prefix.dev/conda-forge/linux-64/libblas-3.11.0-5_h4a7cf45_openblas.conda hash: md5: c160954f7418d7b6e87eaf05a8913fa9 @@ -2248,39 +2219,39 @@ package: category: main optional: false - name: libcurl - version: 8.18.0 + version: 8.19.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - krb5: '>=1.21.3,<1.22.0a0' + krb5: '>=1.22.2,<1.23.0a0' libgcc: '>=14' libnghttp2: '>=1.67.0,<2.0a0' libssh2: '>=1.11.1,<2.0a0' libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.5.4,<4.0a0' + openssl: '>=3.5.5,<4.0a0' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libcurl-8.18.0-h4e3cde8_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libcurl-8.19.0-hcf29cc6_0.conda hash: - md5: 0a5563efed19ca4461cf927419b6eb73 - sha256: 5454709d9fb6e9c3dd6423bc284fa7835a7823bfa8323f6e8786cdd555101fab + md5: d50608c443a30c341c24277d28290f76 + sha256: a0390fd0536ebcd2244e243f5f00ab8e76ab62ed9aa214cd54470fe7496620f4 category: main optional: false - name: libcurl - version: 8.18.0 + version: 8.19.0 manager: conda platform: win-64 dependencies: - krb5: '>=1.21.3,<1.22.0a0' + krb5: '>=1.22.2,<1.23.0a0' libssh2: '>=1.11.1,<2.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/libcurl-8.18.0-h43ecb02_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libcurl-8.19.0-h8206538_0.conda hash: - md5: 2688214a9bee5d5650cd4f5f6af5c8f2 - sha256: 86258e30845571ea13855e8a0605275905781476f3edf8ae5df90a06fcada93a + md5: ed181e29a7ebf0f60b84b98d6140a340 + sha256: 6b2143ba5454b399dab4471e9e1d07352a2f33b569975e6b8aedc2d9bf51cbb0 category: main optional: false - name: libdeflate @@ -2337,30 +2308,30 @@ package: category: main optional: false - name: libexpat - version: 2.7.3 + version: 2.7.4 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libexpat-2.7.3-hecca717_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libexpat-2.7.4-hecca717_0.conda hash: - md5: 8b09ae86839581147ef2e5c5e229d164 - sha256: 1e1b08f6211629cbc2efe7a5bca5953f8f6b3cae0eeb04ca4dacee1bd4e2db2f + md5: e7f7ce06ec24cfcfb9e36d28cf82ba57 + sha256: d78f1d3bea8c031d2f032b760f36676d87929b18146351c4464c66b0869df3f5 category: main optional: false - name: libexpat - version: 2.7.3 + version: 2.7.4 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/libexpat-2.7.3-hac47afa_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libexpat-2.7.4-hac47afa_0.conda hash: - md5: 8c9e4f1a0e688eef2e95711178061a0f - sha256: 844ab708594bdfbd7b35e1a67c379861bcd180d6efe57b654f482ae2f7f5c21e + md5: 1c1ced969021592407f16ada4573586d + sha256: b31f6fb629c4e17885aaf2082fb30384156d16b48b264e454de4a06a313b533d category: main optional: false - name: libffi @@ -2370,10 +2341,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libffi-3.5.2-h9ec8514_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libffi-3.5.2-h3435931_0.conda hash: - md5: 35f29eec58405aaf55e01cb470d8c26a - sha256: 25cbdfa65580cfab1b8d15ee90b4c9f1e0d72128f1661449c9a999d341377d54 + md5: a360c33a5abe61c07959e449fa1453eb + sha256: 31f19b6a88ce40ebc0d5a992c131f57d919f73c0b92cd1617a5bec83f6e961e6 category: main optional: false - name: libffi @@ -2384,65 +2355,65 @@ package: ucrt: '>=10.0.20348.0' 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 + url: https://repo.prefix.dev/conda-forge/win-64/libffi-3.5.2-h3d046cb_0.conda hash: - md5: ba4ad812d2afc22b9a34ce8327a0930f - sha256: ddff25aaa4f0aa535413f5d831b04073789522890a4d8626366e43ecde1534a3 + md5: 720b39f5ec0610457b725eb3f396219a + sha256: 59d01f2dfa8b77491b5888a5ab88ff4e1574c9359f7e229da254cdfe27ddc190 category: main optional: false - name: libfreetype - version: 2.14.1 + version: 2.14.2 manager: conda platform: linux-64 dependencies: - libfreetype6: '>=2.14.1' - url: https://repo.prefix.dev/conda-forge/linux-64/libfreetype-2.14.1-ha770c72_0.conda + libfreetype6: '>=2.14.2' + url: https://repo.prefix.dev/conda-forge/linux-64/libfreetype-2.14.2-ha770c72_0.conda hash: - md5: f4084e4e6577797150f9b04a4560ceb0 - sha256: 4641d37faeb97cf8a121efafd6afd040904d4bca8c46798122f417c31d5dfbec + md5: 26c746d14402a3b6c684d045b23b9437 + sha256: 2e1bfe1e856eb707d258f669ef6851af583ceaffab5e64821b503b0f7cd09e9e category: main optional: false - name: libfreetype - version: 2.14.1 + version: 2.14.2 manager: conda platform: win-64 dependencies: - libfreetype6: '>=2.14.1' - url: https://repo.prefix.dev/conda-forge/win-64/libfreetype-2.14.1-h57928b3_0.conda + libfreetype6: '>=2.14.2' + url: https://repo.prefix.dev/conda-forge/win-64/libfreetype-2.14.2-h57928b3_0.conda hash: - md5: 3235024fe48d4087721797ebd6c9d28c - sha256: 2029702ec55e968ce18ec38cc8cf29f4c8c4989a0d51797164dab4f794349a64 + md5: 153d52fd0e4ba2a5bd5bb4f4afa41417 + sha256: 427c3072b311e65bd3eae3fcb78f6847b15b2dbb173a8546424de56550b2abfb category: main optional: false - name: libfreetype6 - version: 2.14.1 + version: 2.14.2 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - libpng: '>=1.6.50,<1.7.0a0' + libpng: '>=1.6.55,<1.7.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libfreetype6-2.14.1-h73754d4_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libfreetype6-2.14.2-h73754d4_0.conda hash: - md5: 8e7251989bca326a28f4a5ffbd74557a - sha256: 4a7af818a3179fafb6c91111752954e29d3a2a950259c14a2fc7ba40a8b03652 + md5: 8eaba3d1a4d7525c6814e861614457fd + sha256: aba65b94bdbed52de17ec3d0c6f2ebac2ef77071ad22d6900d1614d0dd702a0c category: main optional: false - name: libfreetype6 - version: 2.14.1 + version: 2.14.2 manager: conda platform: win-64 dependencies: - libpng: '>=1.6.50,<1.7.0a0' + libpng: '>=1.6.55,<1.7.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/libfreetype6-2.14.1-hdbac1cb_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libfreetype6-2.14.2-hdbac1cb_0.conda hash: - md5: 6e7c5c5ab485057b5d07fd8188ba5c28 - sha256: 223710600b1a5567163f7d66545817f2f144e4ef8f84e99e90f6b8a4e19cb7ad + md5: c21a474a38982cdb56b3454cf4f78389 + sha256: 1e80e01e5662bd3a0c0e094fbeaec449dbb2288949ca55ca80345e7812904e67 category: main optional: false - name: libgcc @@ -2452,10 +2423,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' _openmp_mutex: '>=4.5' - url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-15.2.0-he0feb66_16.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-15.2.0-he0feb66_18.conda hash: - md5: 6d0363467e6ed84f11435eb309f2ff06 - sha256: 6eed58051c2e12b804d53ceff5994a350c61baf117ec83f5f10c953a3f311451 + md5: 0aa00f03f9e39fb9876085dee11a85d4 + sha256: faf7d2017b4d718951e3a59d081eb09759152f93038479b768e3d612688f83f5 category: main optional: false - name: libgcc @@ -2465,10 +2436,10 @@ package: dependencies: _openmp_mutex: '>=4.5' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' - url: https://repo.prefix.dev/conda-forge/win-64/libgcc-15.2.0-h8ee18e1_16.conda + url: https://repo.prefix.dev/conda-forge/win-64/libgcc-15.2.0-h8ee18e1_18.conda hash: - md5: 1edb8bd8e093ebd31558008e9cb23b47 - sha256: 24984e1e768440ba73021f08a1da0c1ec957b30d7071b9a89b877a273d17cae8 + md5: b085746891cca3bd2704a450a7b4b5ce + sha256: da2c96563c76b8c601746f03e03ac75d2b4640fa2ee017cb23d6c9fc31f1b2c6 category: main optional: false - name: libgcc-ng @@ -2477,10 +2448,10 @@ package: platform: linux-64 dependencies: libgcc: 15.2.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-ng-15.2.0-h69a702a_16.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-ng-15.2.0-h69a702a_18.conda hash: - md5: 5a68259fac2da8f2ee6f7bfe49c9eb8b - sha256: 5f07f9317f596a201cc6e095e5fc92621afca64829785e483738d935f8cab361 + md5: d5e96b1ed75ca01906b3d2469b4ce493 + sha256: e318a711400f536c81123e753d4c797a821021fb38970cebfb3f454126016893 category: main optional: false - name: libgfortran @@ -2489,10 +2460,10 @@ package: platform: linux-64 dependencies: libgfortran5: 15.2.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran-15.2.0-h69a702a_16.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran-15.2.0-h69a702a_18.conda hash: - md5: 40d9b534410403c821ff64f00d0adc22 - sha256: 8a7b01e1ee1c462ad243524d76099e7174ebdd94ff045fe3e9b1e58db196463b + md5: 9063115da5bc35fdc3e1002e69b9ef6e + sha256: d2c9fad338fd85e4487424865da8e74006ab2e2475bd788f624d7a39b2a72aee category: main optional: false - name: libgfortran5 @@ -2502,10 +2473,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=15.2.0' - url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran5-15.2.0-h68bc16d_16.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran5-15.2.0-h68bc16d_18.conda hash: - md5: 39183d4e0c05609fd65f130633194e37 - sha256: d0e974ebc937c67ae37f07a28edace978e01dc0f44ee02f29ab8a16004b8148b + md5: 646855f357199a12f02a87382d429b75 + sha256: 539b57cf50ec85509a94ba9949b7e30717839e4d694bc94f30d41c9d34de2d12 category: main optional: false - name: libgomp @@ -2514,10 +2485,10 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libgomp-15.2.0-he0feb66_16.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgomp-15.2.0-he0feb66_18.conda hash: - md5: 26c46f90d0e727e95c6c9498a33a09f3 - sha256: 5b3e5e4e9270ecfcd48f47e3a68f037f5ab0f529ccb223e8e5d5ac75a58fc687 + md5: 239c5e9546c38a1e884d69effcf4c882 + sha256: 21337ab58e5e0649d869ab168d4e609b033509de22521de1bfed0c031bfc5110 category: main optional: false - name: libgomp @@ -2526,10 +2497,10 @@ package: platform: win-64 dependencies: libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' - url: https://repo.prefix.dev/conda-forge/win-64/libgomp-15.2.0-h8ee18e1_16.conda + url: https://repo.prefix.dev/conda-forge/win-64/libgomp-15.2.0-h8ee18e1_18.conda hash: - md5: ab8189163748f95d4cb18ea1952943c3 - sha256: 9c86aadc1bd9740f2aca291da8052152c32dd1c617d5d4fd0f334214960649bb + md5: 939fb173e2a4d4e980ef689e99b35223 + sha256: 94981bc2e42374c737750895c6fdcfc43b7126c4fc788cad0ecc7281745931da category: main optional: false - name: libhwloc @@ -2619,7 +2590,7 @@ package: category: main optional: false - name: libjxl - version: 0.11.1 + version: 0.11.2 manager: conda platform: linux-64 dependencies: @@ -2629,14 +2600,14 @@ package: libgcc: '>=14' libhwy: '>=1.3.0,<1.4.0a0' libstdcxx: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libjxl-0.11.1-hf08fa70_5.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libjxl-0.11.2-ha09017c_0.conda hash: - md5: 82954a6f42e3fba59628741dca105c98 - sha256: 6b9524a6a7ea6ef1ac791b697f660c2898171ae505d12e6d27509b59cf059ee6 + md5: 1df8c1b1d6665642107883685db6cf37 + sha256: 0c2399cef02953b719afe6591223fb11d287d5a108ef8bb9a02dd509a0f738d7 category: main optional: false - name: libjxl - version: 0.11.1 + version: 0.11.2 manager: conda platform: win-64 dependencies: @@ -2646,10 +2617,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/libjxl-0.11.1-hac9b6f3_5.conda + url: https://repo.prefix.dev/conda-forge/win-64/libjxl-0.11.2-hf3f85d1_0.conda hash: - md5: 8e3cc52433c99ad9632f430d3ac2a077 - sha256: 54e35ad6152fb705f26491c6651d4b77757315c446a494ffc477f36fb2203c79 + md5: 869e71fcf2135212c51a96f7f7dbd00d + sha256: 525c5382eb32a43e7baf45b452079bf23daf8f8bf19fee7c8dafa8c731ada8bd category: main optional: false - name: liblapack @@ -2677,48 +2648,48 @@ package: category: main optional: false - name: liblzma - version: 5.8.1 + version: 5.8.2 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_2.conda + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/liblzma-5.8.2-hb03c661_0.conda hash: - md5: 1a580f7796c7bf6393fddb8bbbde58dc - sha256: f2591c0069447bbe28d4d696b7fcb0c5bd0b4ac582769b89addbcf26fb3430d8 + md5: c7c83eecbb72d88b940c249af56c8b17 + sha256: 755c55ebab181d678c12e49cced893598f2bab22d582fbbf4d8b83c18be207eb category: main optional: false - name: liblzma - version: 5.8.1 + version: 5.8.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/liblzma-5.8.1-h2466b09_2.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/liblzma-5.8.2-hfd05255_0.conda hash: - md5: c15148b2e18da456f5108ccb5e411446 - sha256: 55764956eb9179b98de7cc0e55696f2eff8f7b83fc3ebff5e696ca358bca28cc + md5: ba0bfd4c3cf73f299ffe46ff0eaeb8e3 + sha256: f25bf293f550c8ed2e0c7145eb404324611cfccff37660869d97abf526eb957c category: main optional: false - name: libnghttp2 - version: 1.67.0 + version: 1.68.1 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - c-ares: '>=1.34.5,<2.0a0' + c-ares: '>=1.34.6,<2.0a0' libev: '>=4.33,<5.0a0' libgcc: '>=14' libstdcxx: '>=14' libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.5.2,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libnghttp2-1.67.0-had1ee68_0.conda + openssl: '>=3.5.5,<4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/libnghttp2-1.68.1-h877daf1_0.conda hash: - md5: b499ce4b026493a13774bcf0f4c33849 - sha256: a4a7dab8db4dc81c736e9a9b42bdfd97b087816e029e221380511960ac46c690 + md5: 2a45e7f8af083626f009645a6481f12d + sha256: 663444d77a42f2265f54fb8b48c5450bfff4388d9c0f8253dd7855f0d993153f category: main optional: false - name: libnsl @@ -2750,21 +2721,21 @@ package: category: main optional: false - name: libpng - version: 1.6.53 + version: 1.6.55 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libpng-1.6.53-h421ea60_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libpng-1.6.55-h421ea60_0.conda hash: - md5: 00d4e66b1f746cb14944cad23fffb405 - sha256: 8acdeb9a7e3d2630176ba8e947caf6bf4985a5148dec69b801e5eb797856688b + md5: 5f13ffc7d30ffec87864e678df9957b4 + sha256: 36ade759122cdf0f16e2a2562a19746d96cf9c863ffaa812f2f5071ebbe9c03c category: main optional: false - name: libpng - version: 1.6.53 + version: 1.6.55 manager: conda platform: win-64 dependencies: @@ -2772,39 +2743,39 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libpng-1.6.53-h7351971_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libpng-1.6.55-h7351971_0.conda hash: - md5: fb6f43f6f08ca100cb24cff125ab0d9e - sha256: e5d061e7bdb2b97227b6955d1aa700a58a5703b5150ab0467cc37de609f277b6 + md5: 43f47a9151b9b8fc100aeefcf350d1a0 + sha256: db23f281fa80597a0dc0445b18318346862602d7081ed76244df8cc4418d6d68 category: main optional: false - name: libsqlite - version: 3.51.1 + version: 3.52.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - icu: '>=78.1,<79.0a0' + icu: '>=78.2,<79.0a0' libgcc: '>=14' libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.51.1-hf4e2dac_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.52.0-hf4e2dac_0.conda hash: - md5: b1f35e70f047918b49fb4b181e40300e - sha256: d614540c55f22ad555633f75e174089018ddfc65c49f447f7bbdbc3c3013bec1 + md5: fd893f6a3002a635b5e50ceb9dd2c0f4 + sha256: d716847b7deca293d2e49ed1c8ab9e4b9e04b9d780aea49a97c26925b28a7993 category: main optional: false - name: libsqlite - version: 3.51.1 + version: 3.52.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.51.1-hf5d6505_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.52.0-hf5d6505_0.conda hash: - md5: be65be5f758709fc01b01626152e96b0 - sha256: d6d86715a1afe11f626b7509935e9d2e14a4946632c0ac474526e20fc6c55f99 + md5: 8830689d537fda55f990620680934bb1 + sha256: 5fccf1e4e4062f8b9a554abf4f9735a98e70f82e2865d0bfdb47b9de94887583 category: main optional: false - name: libssh2 @@ -2845,10 +2816,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: 15.2.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-15.2.0-h934c35e_16.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-15.2.0-h934c35e_18.conda hash: - md5: 68f68355000ec3f1d6f26ea13e8f525f - sha256: 813427918316a00c904723f1dfc3da1bbc1974c5cfe1ed1e704c6f4e0798cbc6 + md5: 1b08cd684f34175e4514474793d44bcb + sha256: 78668020064fdaa27e9ab65cd2997e2c837b564ab26ce3bf0e58a2ce1a525c6e category: main optional: false - name: libstdcxx-ng @@ -2857,10 +2828,10 @@ package: platform: linux-64 dependencies: libstdcxx: 15.2.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-15.2.0-hdf11a46_16.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-15.2.0-hdf11a46_18.conda hash: - md5: 1b3152694d236cf233b76b8c56bf0eae - sha256: 81f2f246c7533b41c5e0c274172d607829019621c4a0823b5c0b4a8c7028ee84 + md5: 6235adb93d064ecdf3d44faee6f468de + sha256: 3c902ffd673cb3c6ddde624cdb80f870b6c835f8bf28384b0016e7d444dd0145 category: main optional: false - name: libtiff @@ -3002,40 +2973,38 @@ package: category: main optional: false - name: libxml2 - version: 2.15.1 + version: 2.15.2 manager: conda platform: win-64 dependencies: - icu: '>=78.1,<79.0a0' libiconv: '>=1.18,<2.0a0' - liblzma: '>=5.8.1,<6.0a0' - libxml2-16: 2.15.1 + liblzma: '>=5.8.2,<6.0a0' + libxml2-16: 2.15.2 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.1-h779ef1b_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/libxml2-2.15.2-h5d26750_0.conda hash: - md5: 68dc154b8d415176c07b6995bd3a65d9 - sha256: 8b47d5fb00a6ccc0f495d16787ab5f37a434d51965584d6000966252efecf56d + md5: 1007e1bfe181a2aee214779ee7f13d30 + sha256: f905eb7046987c336122121759e7f09144729f6898f48cd06df2a945b86998d8 category: main optional: false - name: libxml2-16 - version: 2.15.1 + version: 2.15.2 manager: conda platform: win-64 dependencies: - icu: '>=78.1,<79.0a0' libiconv: '>=1.18,<2.0a0' - liblzma: '>=5.8.1,<6.0a0' + liblzma: '>=5.8.2,<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.1-h3cfd58e_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/libxml2-16-2.15.2-h692994f_0.conda hash: - md5: 07d73826fde28e7dbaec52a3297d7d26 - sha256: a857e941156b7f462063e34e086d212c6ccbc1521ebdf75b9ed66bd90add57dc + md5: e365238134188e42ed36ee996159d482 + sha256: b8c71b3b609c7cfe17f3f2a47c75394d7b30acfb8b34ad7a049ea8757b4d33df category: main optional: false - name: libzlib @@ -3092,17 +3061,17 @@ package: category: main optional: false - name: llvm-openmp - version: 21.1.8 + version: 22.1.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/llvm-openmp-21.1.8-h4fa8253_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-22.1.0-h4fa8253_0.conda hash: - md5: 0d8b425ac862bcf17e4b28802c9351cb - sha256: 145c4370abe870f10987efa9fc15a8383f1dab09abbc9ad4ff15a55d45658f7b + md5: e5505e0b7d6ef5c19d5c0c1884a2f494 + sha256: bb55a3736380759d338f87aac68df4fd7d845ae090b94400525f5d21a55eea31 category: main optional: false - name: locket @@ -3166,10 +3135,10 @@ package: libgcc: '>=14' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/markupsafe-3.0.3-py312h8a5da7c_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/markupsafe-3.0.3-py312h8a5da7c_1.conda hash: - md5: f775a43412f7f3d7ed218113ad233869 - sha256: f77f9f1a4da45cbc8792d16b41b6f169f649651a68afdc10b2da9da12b9aa42b + md5: 93a4752d42b12943a355b682ee43285b + sha256: 5f3aad1f3a685ed0b591faad335957dbdb1b73abfd6fc731a0d42718e0653b33 category: main optional: false - name: markupsafe @@ -3182,64 +3151,69 @@ package: ucrt: '>=10.0.20348.0' 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 + url: https://repo.prefix.dev/conda-forge/win-64/markupsafe-3.0.3-py312h05f76fc_1.conda hash: - md5: 9a50d5e7b4f2bf5db9790bbe9421cdf8 - sha256: db1d772015ef052fedb3b4e7155b13446b49431a0f8c54c56ca6f82e1d4e258f + md5: a73298d225c7852f97403ca105d10a13 + sha256: b744287a780211ac4595126ef96a44309c791f155d4724021ef99092bae4aace category: main optional: false - name: matplotlib-base - version: 3.8.4 + version: 3.10.8 manager: conda platform: linux-64 dependencies: - certifi: '>=2020.06.20' + __glibc: '>=2.17,<3.0.a0' contourpy: '>=1.0.1' cycler: '>=0.10' fonttools: '>=4.22.0' - freetype: '>=2.12.1,<3.0a0' + freetype: '' kiwisolver: '>=1.3.1' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - numpy: '>=1.21' + libfreetype: '>=2.14.1' + libfreetype6: '>=2.14.1' + libgcc: '>=14' + libstdcxx: '>=14' + numpy: '>=1.23,<3' packaging: '>=20.0' pillow: '>=8' pyparsing: '>=2.3.1' python: '>=3.12,<3.13.0a0' python-dateutil: '>=2.7' python_abi: 3.12.* + qhull: '>=2020.2,<2020.3.0a0' tk: '>=8.6.13,<8.7.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/matplotlib-base-3.8.4-py312h20ab3a6_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/matplotlib-base-3.10.8-py312he3d6523_0.conda hash: - md5: fbfe798f83f0d66410903ad8f40d5283 - sha256: a927afa9e4b5cf7889b5a82ef2286b089873f402a0d0e10e6adb4cbf820a4db9 + md5: b8dc157bbbb69c1407478feede8b7b42 + sha256: 70cf0e7bfd50ef50eb712a6ca1eef0ef0d63b7884292acc81353327b434b548c category: main optional: false - name: matplotlib-base - version: 3.8.4 + version: 3.10.8 manager: conda platform: win-64 dependencies: - certifi: '>=2020.06.20' contourpy: '>=1.0.1' cycler: '>=0.10' fonttools: '>=4.22.0' - freetype: '>=2.12.1,<3.0a0' + freetype: '' kiwisolver: '>=1.3.1' - numpy: '>=1.21' + libfreetype: '>=2.14.1' + libfreetype6: '>=2.14.1' + numpy: '>=1.23,<3' packaging: '>=20.0' pillow: '>=8' pyparsing: '>=2.3.1' python: '>=3.12,<3.13.0a0' python-dateutil: '>=2.7' python_abi: 3.12.* + qhull: '>=2020.2,<2020.3.0a0' ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/matplotlib-base-3.8.4-py312hfee7060_2.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/matplotlib-base-3.10.8-py312h0ebf65c_0.conda hash: - md5: 6b623fa66ac3cd1601da60160c46514b - sha256: 023644d13bf1fab7c58f4df0d461cd237874802b0e7370ad049463d39d2fb2f4 + md5: 46f73e68304eb61df083379b044e9eb9 + sha256: a0b6f97f562ec803483b8c222788a4364aafd47c4023e8529ebbb4f017477a86 category: main optional: false - name: mccabe @@ -3307,27 +3281,27 @@ package: category: main optional: false - name: narwhals - version: 2.15.0 + version: 2.18.0 manager: conda platform: linux-64 dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/narwhals-2.15.0-pyhcf101f3_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/narwhals-2.18.0-pyhcf101f3_0.conda hash: - md5: 37926bb0db8b04b8b99945076e1442d0 - sha256: 2e64699401c6170ce9a0916461ff4686f8d10b076f6abe1d887cbcb7061c0e85 + md5: bc317f07dd82e410012684d2e3a9c06d + sha256: 456c86370e7568c3462010f49be25e052ffb9ebf94860708dfc4b6eac1e45147 category: main optional: false - name: narwhals - version: 2.15.0 + version: 2.18.0 manager: conda platform: win-64 dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/narwhals-2.15.0-pyhcf101f3_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/narwhals-2.18.0-pyhcf101f3_0.conda hash: - md5: 37926bb0db8b04b8b99945076e1442d0 - sha256: 2e64699401c6170ce9a0916461ff4686f8d10b076f6abe1d887cbcb7061c0e85 + md5: bc317f07dd82e410012684d2e3a9c06d + sha256: 456c86370e7568c3462010f49be25e052ffb9ebf94860708dfc4b6eac1e45147 category: main optional: false - name: ncurses @@ -3372,7 +3346,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.11' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/networkx-3.6.1-pyhcf101f3_0.conda hash: md5: a2c1eeadae7a309daed9d62c96012a2b @@ -3384,7 +3358,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.11' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/networkx-3.6.1-pyhcf101f3_0.conda hash: md5: a2c1eeadae7a309daed9d62c96012a2b @@ -3392,40 +3366,41 @@ package: category: main optional: false - name: numpy - version: 1.26.4 + version: 2.4.3 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libblas: '>=3.9.0,<4.0a0' libcblas: '>=3.9.0,<4.0a0' - libgcc-ng: '>=12' + libgcc: '>=14' liblapack: '>=3.9.0,<4.0a0' - libstdcxx-ng: '>=12' - python: '>=3.12,<3.13.0a0' + libstdcxx: '>=14' + python: '' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/numpy-1.26.4-py312heda63a1_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/numpy-2.4.3-py312h33ff503_0.conda hash: - md5: d8285bea2a350f63fab23bf460221f3f - sha256: fe3459c75cf84dcef6ef14efcc4adb0ade66038ddd27cadb894f34f4797687d8 + md5: 5930ee8a175a242b4f001b1e9e72024f + sha256: 1aab7ba963affa572956b1bd8d239df52a9c7bc799c560f98bc658ab70224e10 category: main optional: false - name: numpy - version: 1.26.4 + version: 2.4.3 manager: conda platform: win-64 dependencies: libblas: '>=3.9.0,<4.0a0' libcblas: '>=3.9.0,<4.0a0' liblapack: '>=3.9.0,<4.0a0' - python: '>=3.12,<3.13.0a0' + python: '' 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/numpy-1.26.4-py312h8753938_0.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/numpy-2.4.3-py312ha3f287d_0.conda hash: - md5: f9ac74c3b07c396014434aca1e58d362 - sha256: 73570817a5109d396b4ebbe5124a89525959269fd33fa33fd413700289fbe0ef + md5: 6169671e14dc7c36eebfd9870446f11c + sha256: f0b92b9f58406ce21c7d0f037e58cb62380daffb9232c7cb31ab5edc217527e6 category: main optional: false - name: openjpeg @@ -3450,20 +3425,20 @@ package: manager: conda platform: win-64 dependencies: - libpng: '>=1.6.50,<1.7.0a0' + libpng: '>=1.6.55,<1.7.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.4-h24db6dd_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/openjpeg-2.5.4-h0e57b4f_0.conda hash: - md5: 5af852046226bb3cb15c7f61c2ac020a - sha256: 226c270a7e3644448954c47959c00a9bf7845f6d600c2a643db187118d028eee + md5: e723ab7cc2794c954e1b22fde51c16e4 + sha256: 24342dee891a49a9ba92e2018ec0bde56cc07fdaec95275f7a55b96f03ea4252 category: main optional: false - name: openjph - version: 0.26.0 + version: 0.26.3 manager: conda platform: linux-64 dependencies: @@ -3471,14 +3446,14 @@ package: libgcc: '>=14' libstdcxx: '>=14' libtiff: '>=4.7.1,<4.8.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/openjph-0.26.0-h8d634f6_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/openjph-0.26.3-h8d634f6_0.conda hash: - md5: 65900b71509b2fd6c0a34a5dc1bd893a - sha256: 5f8e3ad6e707c3ffee81c3c2cbc1ac8f66eb10bbe0fe2edbe1cdad0972e006c8 + md5: 792d5b6e99677177f5527a758a02bc07 + sha256: 4587e7762f27cad93619de77fa0573e2e17a899892d4bed3010196093e343533 category: main optional: false - name: openjph - version: 0.26.0 + version: 0.26.3 manager: conda platform: win-64 dependencies: @@ -3486,28 +3461,28 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/openjph-0.26.0-hf13a347_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/openjph-0.26.3-hf13a347_0.conda hash: - md5: b743af8babe1d084354ff00dc80ec2c4 - sha256: a494955ab56bbaaa004e887eec96af37ed2a1236e60cbbdcadd7467d2360c279 + md5: dcd62c4a44f29a9e6fb519cbc8fe9968 + sha256: 1458382dd4222f5f1a03e3dcebc516272390772bb402139898b86c045bd8ec8f category: main optional: false - name: openssl - version: 3.6.0 + version: 3.6.1 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.6.0-h26f9b46_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/openssl-3.6.1-h35e630c_1.conda hash: - md5: 9ee58d5c534af06558933af3c845a780 - sha256: a47271202f4518a484956968335b2521409c8173e123ab381e775c358c67fe6d + md5: f61eb8cd60ff9057122a3d338b99c00f + sha256: 44c877f8af015332a5d12f5ff0fb20ca32f896526a7d0cdb30c769df1144fb5c category: main optional: false - name: openssl - version: 3.6.0 + version: 3.6.1 manager: conda platform: win-64 dependencies: @@ -3515,34 +3490,34 @@ 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.6.0-h725018a_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/openssl-3.6.1-hf411b9b_1.conda hash: - md5: 84f8fb4afd1157f59098f618cd2437e4 - sha256: 6d72d6f766293d4f2aa60c28c244c8efed6946c430814175f959ffe8cab899b3 + md5: eb585509b815415bc964b2c7e11c7eb3 + sha256: 53a5ad2e5553b8157a91bb8aa375f78c5958f77cb80e9d2ce59471ea8e5c0bd6 category: main optional: false - name: packaging - version: '25.0' + version: '26.0' manager: conda platform: linux-64 dependencies: - python: '>=3.8' - url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/packaging-26.0-pyhcf101f3_0.conda hash: - md5: 58335b26c38bf4a20f399384c33cbcf9 - sha256: 289861ed0c13a15d7bbb408796af4de72c2fe67e2bcb0de98f4c3fce259d7991 + md5: b76541e68fea4d511b1ac46a28dcd2c6 + sha256: c1fc0f953048f743385d31c468b4a678b3ad20caffdeaa94bed85ba63049fd58 category: main optional: false - name: packaging - version: '25.0' + version: '26.0' manager: conda platform: win-64 dependencies: - python: '>=3.8' - url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/packaging-26.0-pyhcf101f3_0.conda hash: - md5: 58335b26c38bf4a20f399384c33cbcf9 - sha256: 289861ed0c13a15d7bbb408796af4de72c2fe67e2bcb0de98f4c3fce259d7991 + md5: b76541e68fea4d511b1ac46a28dcd2c6 + sha256: c1fc0f953048f743385d31c468b4a678b3ad20caffdeaa94bed85ba63049fd58 category: main optional: false - name: partd @@ -3574,131 +3549,134 @@ package: category: main optional: false - name: pillow - version: 10.3.0 + version: 12.1.1 manager: conda platform: linux-64 dependencies: - freetype: '>=2.12.1,<3.0a0' - lcms2: '>=2.16,<3.0a0' - libgcc-ng: '>=12' - libjpeg-turbo: '>=3.0.0,<4.0a0' - libtiff: '>=4.6.0,<4.8.0a0' - libwebp-base: '>=1.4.0,<2.0a0' - libxcb: '>=1.16,<2.0.0a0' - libzlib: '>=1.3.1,<2.0a0' - openjpeg: '>=2.5.2,<3.0a0' - python: '>=3.12,<3.13.0a0' + __glibc: '>=2.17,<3.0.a0' + lcms2: '>=2.18,<3.0a0' + libfreetype: '>=2.14.1' + libfreetype6: '>=2.14.1' + libgcc: '>=14' + libjpeg-turbo: '>=3.1.2,<4.0a0' + libtiff: '>=4.7.1,<4.8.0a0' + libwebp-base: '>=1.6.0,<2.0a0' + libxcb: '>=1.17.0,<2.0a0' + openjpeg: '>=2.5.4,<3.0a0' + python: '' python_abi: 3.12.* tk: '>=8.6.13,<8.7.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/pillow-10.3.0-py312h287a98d_1.conda + zlib-ng: '>=2.3.3,<2.4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/pillow-12.1.1-py312h50c33e8_0.conda hash: - md5: b1325cda3f250f9f842180607054e6ed - sha256: e1a2426f23535fc15e577d799685229a93117b645734e5cca60597bb23cef09e + md5: c5eff3ada1a829f0bdb780dc4b62bbae + sha256: 782b6b578a0e61f6ef5cca5be993d902db775a2eb3d0328a3c4ff515858e7f2c category: main optional: false - name: pillow - version: 10.3.0 + version: 12.1.1 manager: conda platform: win-64 dependencies: - freetype: '>=2.12.1,<3.0a0' - lcms2: '>=2.16,<3.0a0' - libjpeg-turbo: '>=3.0.0,<4.0a0' - libtiff: '>=4.6.0,<4.8.0a0' - libwebp-base: '>=1.4.0,<2.0a0' - libxcb: '>=1.16,<2.0.0a0' - libzlib: '>=1.3.1,<2.0a0' - openjpeg: '>=2.5.2,<3.0a0' - python: '>=3.12,<3.13.0a0' + lcms2: '>=2.18,<3.0a0' + libfreetype: '>=2.14.1' + libfreetype6: '>=2.14.1' + libjpeg-turbo: '>=3.1.2,<4.0a0' + libtiff: '>=4.7.1,<4.8.0a0' + libwebp-base: '>=1.6.0,<2.0a0' + libxcb: '>=1.17.0,<2.0a0' + openjpeg: '>=2.5.4,<3.0a0' + python: '' python_abi: 3.12.* tk: '>=8.6.13,<8.7.0a0' ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/pillow-10.3.0-py312h381445a_1.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + zlib-ng: '>=2.3.3,<2.4.0a0' + url: https://repo.prefix.dev/conda-forge/win-64/pillow-12.1.1-py312h31f0997_0.conda hash: - md5: 04c1de8505791c12db1a0374f12e6e01 - sha256: 2bd6e58a0630fdb9a52f532ce582907babc725930e1ba784c7cd74063f28d073 + md5: 89bf6b6bc60f253ab85a0784417a2547 + sha256: 8d6c865052fec14dcb90b6534393a52bac60e21479ae386db7aa4eced632022d category: main optional: false - name: pip - version: '25.3' + version: 26.0.1 manager: conda platform: linux-64 dependencies: python: '>=3.10,<3.13.0a0' setuptools: '' wheel: '' - url: https://repo.prefix.dev/conda-forge/noarch/pip-25.3-pyh8b19718_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pip-26.0.1-pyh8b19718_0.conda hash: - md5: c55515ca43c6444d2572e0f0d93cb6b9 - sha256: b67692da1c0084516ac1c9ada4d55eaf3c5891b54980f30f3f444541c2706f1e + md5: 67bdec43082fd8a9cffb9484420b39a2 + sha256: 8e1497814a9997654ed7990a79c054ea5a42545679407acbc6f7e809c73c9120 category: main optional: false - name: pip - version: '25.3' + version: 26.0.1 manager: conda platform: win-64 dependencies: python: '>=3.10,<3.13.0a0' setuptools: '' wheel: '' - url: https://repo.prefix.dev/conda-forge/noarch/pip-25.3-pyh8b19718_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pip-26.0.1-pyh8b19718_0.conda hash: - md5: c55515ca43c6444d2572e0f0d93cb6b9 - sha256: b67692da1c0084516ac1c9ada4d55eaf3c5891b54980f30f3f444541c2706f1e + md5: 67bdec43082fd8a9cffb9484420b39a2 + sha256: 8e1497814a9997654ed7990a79c054ea5a42545679407acbc6f7e809c73c9120 category: main optional: false - name: platformdirs - version: 4.5.1 + version: 4.9.4 manager: conda platform: linux-64 dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.5.1-pyhcf101f3_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.9.4-pyhcf101f3_0.conda hash: - md5: 1bd2e65c8c7ef24f4639ae6e850dacc2 - sha256: 04c64fb78c520e5c396b6e07bc9082735a5cc28175dbe23138201d0a9441800b + md5: 82c1787f2a65c0155ef9652466ee98d6 + sha256: 0289f0a38337ee201d984f8f31f11f6ef076cfbbfd0ab9181d12d9d1d099bf46 category: dev optional: true - name: platformdirs - version: 4.5.1 + version: 4.9.4 manager: conda platform: win-64 dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.5.1-pyhcf101f3_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.9.4-pyhcf101f3_0.conda hash: - md5: 1bd2e65c8c7ef24f4639ae6e850dacc2 - sha256: 04c64fb78c520e5c396b6e07bc9082735a5cc28175dbe23138201d0a9441800b + md5: 82c1787f2a65c0155ef9652466ee98d6 + sha256: 0289f0a38337ee201d984f8f31f11f6ef076cfbbfd0ab9181d12d9d1d099bf46 category: dev optional: true - name: plotly - version: 6.5.1 + version: 6.6.0 manager: conda platform: linux-64 dependencies: narwhals: '>=1.15.1' packaging: '' python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/plotly-6.5.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/plotly-6.6.0-pyhd8ed1ab_0.conda hash: - md5: 0a8b38871cab04059c1cc04853b415a2 - sha256: 262a532a0107210a7fa6ba63fd3170a804417d1d62ae5b49f9ecd6afc7e63465 + md5: 3e9427ee186846052e81fadde8ebe96a + sha256: c418d325359fc7a0074cea7f081ef1bce26e114d2da8a0154c5d27ecc87a08e7 category: main optional: false - name: plotly - version: 6.5.1 + version: 6.6.0 manager: conda platform: win-64 dependencies: narwhals: '>=1.15.1' packaging: '' python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/plotly-6.5.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/plotly-6.6.0-pyhd8ed1ab_0.conda hash: - md5: 0a8b38871cab04059c1cc04853b415a2 - sha256: 262a532a0107210a7fa6ba63fd3170a804417d1d62ae5b49f9ecd6afc7e63465 + md5: 3e9427ee186846052e81fadde8ebe96a + sha256: c418d325359fc7a0074cea7f081ef1bce26e114d2da8a0154c5d27ecc87a08e7 category: main optional: false - name: pluggy @@ -3706,7 +3684,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/pluggy-1.6.0-pyhf9edf01_1.conda hash: md5: d7585b6550ad04c8c5e21097ada2888e @@ -3718,7 +3696,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/pluggy-1.6.0-pyhf9edf01_1.conda hash: md5: d7585b6550ad04c8c5e21097ada2888e @@ -3781,7 +3759,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda hash: md5: 12c566707c80111f9799308d9e265aef @@ -3793,7 +3771,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda hash: md5: 12c566707c80111f9799308d9e265aef @@ -3807,7 +3785,7 @@ package: dependencies: annotated-types: '>=0.6.0' pydantic-core: 2.41.5 - python: '>=3.10' + python: '' typing-extensions: '>=4.6.1' typing-inspection: '>=0.4.2' typing_extensions: '>=4.14.1' @@ -3824,7 +3802,7 @@ package: dependencies: annotated-types: '>=0.6.0' pydantic-core: 2.41.5 - python: '>=3.10' + python: '' typing-extensions: '>=4.6.1' typing-inspection: '>=0.4.2' typing_extensions: '>=4.14.1' @@ -3892,67 +3870,67 @@ package: category: dev optional: true - name: pylint - version: 4.0.4 + version: 4.0.5 manager: conda platform: linux-64 dependencies: - astroid: '>=4.0.2,<=4.1.0.dev0' + astroid: '>=4.0.2,<=4.1.dev0' colorama: '>=0.4.5' dill: '>=0.3.7' - isort: '>=5,<8,!=5.13' + isort: '>=5,!=5.13,<9' mccabe: '>=0.6,<0.8' platformdirs: '>=2.2' - python: '>=3.10' - tomli: '>=1.1.0' + python: '' + tomli: '>=1.1' tomlkit: '>=0.10.1' - url: https://repo.prefix.dev/conda-forge/noarch/pylint-4.0.4-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pylint-4.0.5-pyhcf101f3_0.conda hash: - md5: 3a830511a81b99b67a1206a9d29b44b3 - sha256: ad0bb78785ab385d0afcca4a55e0226d8e6710ebad6450caa552f5fe61c2f6a0 + md5: 7d9916ed19ecda71f0b00963365252a7 + sha256: a8e7736982409a56d2aa329d3052259fd45910f98fb7d3f2816f1a6d59624d60 category: dev optional: true - name: pylint - version: 4.0.4 + version: 4.0.5 manager: conda platform: win-64 dependencies: - astroid: '>=4.0.2,<=4.1.0.dev0' + astroid: '>=4.0.2,<=4.1.dev0' colorama: '>=0.4.5' dill: '>=0.3.7' - isort: '>=5,<8,!=5.13' + isort: '>=5,!=5.13,<9' mccabe: '>=0.6,<0.8' platformdirs: '>=2.2' - python: '>=3.10' - tomli: '>=1.1.0' + python: '' + tomli: '>=1.1' tomlkit: '>=0.10.1' - url: https://repo.prefix.dev/conda-forge/noarch/pylint-4.0.4-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pylint-4.0.5-pyhcf101f3_0.conda hash: - md5: 3a830511a81b99b67a1206a9d29b44b3 - sha256: ad0bb78785ab385d0afcca4a55e0226d8e6710ebad6450caa552f5fe61c2f6a0 + md5: 7d9916ed19ecda71f0b00963365252a7 + sha256: a8e7736982409a56d2aa329d3052259fd45910f98fb7d3f2816f1a6d59624d60 category: dev optional: true - name: pyparsing - version: 3.3.1 + version: 3.3.2 manager: conda platform: linux-64 dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/pyparsing-3.3.1-pyhcf101f3_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/pyparsing-3.3.2-pyhcf101f3_0.conda hash: - md5: d837065e4e0de4962c3462079c23f969 - sha256: 0c70bc577f5efa87501bdc841b88f594f4d3f3a992dfb851e2130fa5c817835b + md5: 3687cc0b82a8b4c17e1f0eb7e47163d5 + sha256: 417fba4783e528ee732afa82999300859b065dc59927344b4859c64aae7182de category: main optional: false - name: pyparsing - version: 3.3.1 + version: 3.3.2 manager: conda platform: win-64 dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/pyparsing-3.3.1-pyhcf101f3_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/pyparsing-3.3.2-pyhcf101f3_0.conda hash: - md5: d837065e4e0de4962c3462079c23f969 - sha256: 0c70bc577f5efa87501bdc841b88f594f4d3f3a992dfb851e2130fa5c817835b + md5: 3687cc0b82a8b4c17e1f0eb7e47163d5 + sha256: 417fba4783e528ee732afa82999300859b065dc59927344b4859c64aae7182de category: main optional: false - name: pysocks @@ -3993,7 +3971,7 @@ package: 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-9.0.2-pyhcf101f3_0.conda hash: @@ -4012,7 +3990,7 @@ package: 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-9.0.2-pyhcf101f3_0.conda hash: @@ -4028,7 +4006,7 @@ package: coverage: '>=7.10.6' pluggy: '>=1.2' pytest: '>=7' - python: '>=3.10' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-7.0.0-pyhcf101f3_1.conda hash: md5: 6891acad5e136cb62a8c2ed2679d6528 @@ -4043,7 +4021,7 @@ package: coverage: '>=7.10.6' pluggy: '>=1.2' pytest: '>=7' - python: '>=3.10' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-7.0.0-pyhcf101f3_1.conda hash: md5: 6891acad5e136cb62a8c2ed2679d6528 @@ -4051,56 +4029,56 @@ package: category: dev optional: true - name: python - version: 3.12.12 + version: 3.12.13 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.1,<3.0a0' + libexpat: '>=2.7.4,<3.0a0' libffi: '>=3.5.2,<3.6.0a0' libgcc: '>=14' - liblzma: '>=5.8.1,<6.0a0' + liblzma: '>=5.8.2,<6.0a0' libnsl: '>=2.0.1,<2.1.0a0' - libsqlite: '>=3.50.4,<4.0a0' - libuuid: '>=2.41.2,<3.0a0' + libsqlite: '>=3.51.2,<4.0a0' + libuuid: '>=2.41.3,<3.0a0' libxcrypt: '>=4.4.36' libzlib: '>=1.3.1,<2.0a0' ncurses: '>=6.5,<7.0a0' - openssl: '>=3.5.4,<4.0a0' + openssl: '>=3.5.5,<4.0a0' pip: '' - readline: '>=8.2,<9.0a0' + readline: '>=8.3,<9.0a0' tk: '>=8.6.13,<8.7.0a0' tzdata: '' - url: https://repo.prefix.dev/conda-forge/linux-64/python-3.12.12-hd63d673_1_cpython.conda + url: https://repo.prefix.dev/conda-forge/linux-64/python-3.12.13-hd63d673_0_cpython.conda hash: - md5: 5c00c8cea14ee8d02941cab9121dce41 - sha256: 39898d24769a848c057ab861052e50bdc266310a7509efa3514b840e85a2ae98 + md5: 7eccb41177e15cc672e1babe9056018e + sha256: a44655c1c3e1d43ed8704890a91e12afd68130414ea2c0872e154e5633a13d7e category: main optional: false - name: python - version: 3.12.12 + version: 3.12.13 manager: conda platform: win-64 dependencies: bzip2: '>=1.0.8,<2.0a0' - libexpat: '>=2.7.1,<3.0a0' + libexpat: '>=2.7.4,<3.0a0' libffi: '>=3.5.2,<3.6.0a0' - liblzma: '>=5.8.1,<6.0a0' - libsqlite: '>=3.50.4,<4.0a0' + liblzma: '>=5.8.2,<6.0a0' + libsqlite: '>=3.51.2,<4.0a0' libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.5.4,<4.0a0' + openssl: '>=3.5.5,<4.0a0' pip: '' tk: '>=8.6.13,<8.7.0a0' tzdata: '' ucrt: '>=10.0.20348.0' 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 + url: https://repo.prefix.dev/conda-forge/win-64/python-3.12.13-h0159041_0_cpython.conda hash: - md5: 42ae551e4c15837a582bea63412dc0b4 - sha256: 9b163b0426c92eee1881d5c838e230a750a3fa372092db494772886ab91c2548 + md5: 2956dff38eb9f8332ad4caeba941cfe7 + sha256: a02b446d8b7b167b61733a3de3be5de1342250403e72a63b18dac89e99e6180e category: main optional: false - name: python-dateutil @@ -4108,7 +4086,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' six: '>=1.5' url: https://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda hash: @@ -4121,7 +4099,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' six: '>=1.5' url: https://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda hash: @@ -4177,121 +4155,92 @@ package: sha256: dd1c187259e6d03011e331071374a3f5f6889e1c35aa568ad6b5e11d7f811165 category: webview optional: true -- name: pytz - version: '2025.2' - manager: conda - platform: linux-64 - dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda - hash: - md5: bc8e3267d44011051f2eb14d22fb0960 - sha256: 8d2a8bf110cc1fc3df6904091dead158ba3e614d8402a83e51ed3a8aa93cdeb0 - category: dev - optional: true -- name: pytz - version: '2025.2' - manager: conda - platform: win-64 - dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda - hash: - md5: bc8e3267d44011051f2eb14d22fb0960 - sha256: 8d2a8bf110cc1fc3df6904091dead158ba3e614d8402a83e51ed3a8aa93cdeb0 - category: dev - optional: true -- name: pywavelets - version: 1.9.0 +- name: pyyaml + version: 6.0.3 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - 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_2.conda + yaml: '>=0.2.5,<0.3.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/pyyaml-6.0.3-py312h8a5da7c_1.conda hash: - md5: ab856c36638ab1acf90e70349c525cf9 - sha256: 5616729dbb1bfc21e8acc2c8f4d5e32b5e017e45e1e8f763dee8cac4c38f890b + md5: 15878599a87992e44c059731771591cb + sha256: cb142bfd92f6e55749365ddc244294fa7b64db6d08c45b018ff1c658907bfcbf category: main optional: false -- name: pywavelets - version: 1.9.0 +- name: pyyaml + version: 6.0.3 manager: conda platform: win-64 dependencies: - numpy: '>=1.25,<3' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* 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_2.conda + yaml: '>=0.2.5,<0.3.0a0' + url: https://repo.prefix.dev/conda-forge/win-64/pyyaml-6.0.3-py312h05f76fc_1.conda hash: - md5: f1c2ea3586ae62747eee7aac5d2ae1fb - sha256: 566a660ded66097903ef634bb15359c189d4fc9ae377617246892dd95a47fd19 + md5: 9f6ebef672522cb9d9a6257215ca5743 + sha256: 1cab6cbd6042b2a1d8ee4d6b4ec7f36637a41f57d2f5c5cf0c12b7c4ce6a62f6 category: main optional: false -- name: pyyaml - version: 6.0.3 +- name: qhull + version: '2020.2' manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - 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.3-py312h8a5da7c_0.conda + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + url: https://repo.prefix.dev/conda-forge/linux-64/qhull-2020.2-h434a139_5.conda hash: - md5: fba10c2007c8b06f77c5a23ce3a635ad - sha256: 1b3dc4c25c83093fff08b86a3574bc6b94ba355c8eba1f35d805c5e256455fc7 + md5: 353823361b1d27eb3960efb076dfcaf6 + sha256: 776363493bad83308ba30bcb88c2552632581b143e8ee25b1982c8c743e73abc category: main optional: false -- name: pyyaml - version: 6.0.3 +- name: qhull + version: '2020.2' manager: conda platform: win-64 dependencies: - python: '>=3.12,<3.13.0a0' - python_abi: 3.12.* ucrt: '>=10.0.20348.0' - 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.3-py312h05f76fc_0.conda + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://repo.prefix.dev/conda-forge/win-64/qhull-2020.2-hc790b64_5.conda hash: - md5: 4a68f80fbf85499f093101cc17ffbab7 - sha256: 54d04e61d17edffeba1e5cad45f10f272a016b6feec1fa8fa6af364d84a7b4fc + md5: 854fbdff64b572b5c0b470f334d34c11 + sha256: 887d53486a37bd870da62b8fa2ebe3993f912ad04bd755e7ed7c47ced97cbaa8 category: main optional: false - name: rav1e - version: 0.7.1 + version: 0.8.1 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/rav1e-0.7.1-h8fae777_3.conda + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/rav1e-0.8.1-h1fbca29_0.conda hash: - md5: 2c42649888aac645608191ffdc80d13a - sha256: 6e5e704c1c21f820d760e56082b276deaf2b53cf9b751772761c3088a365f6f4 + md5: d83958768626b3c8471ce032e28afcd3 + sha256: cf550bbc8e5ebedb6dba9ccaead3e07bd1cb86b183644a4c853e06e4b3ad5ac7 category: main optional: false - name: rav1e - version: 0.7.1 + version: 0.8.1 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/rav1e-0.7.1-ha073cba_3.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/rav1e-0.8.1-h007690e_0.conda hash: - md5: 3bd3626822633688691ed41d661c2b2e - sha256: d19a58b882a0387c7c8efbfce4e67a0df4b19d8da6cf6cec3011b6079e5bc743 + md5: b0ab2fc43381024f5a694e6f5f54c973 + sha256: 4ee3caf1260c946e756f2be4cadf720592391b24fce652a67255e4386880249b category: main optional: false - name: readline @@ -4316,7 +4265,7 @@ package: certifi: '>=2017.4.17' charset-normalizer: '>=2,<4' idna: '>=2.5,<4' - python: '>=3.10' + python: '' urllib3: '>=1.21.1,<3' url: https://repo.prefix.dev/conda-forge/noarch/requests-2.32.5-pyhcf101f3_1.conda hash: @@ -4332,7 +4281,7 @@ package: certifi: '>=2017.4.17' charset-normalizer: '>=2,<4' idna: '>=2.5,<4' - python: '>=3.10' + python: '' urllib3: '>=1.21.1,<3' url: https://repo.prefix.dev/conda-forge/noarch/requests-2.32.5-pyhcf101f3_1.conda hash: @@ -4345,7 +4294,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/retrying-1.4.2-pyhe01879c_0.conda hash: md5: 128b46a47ea164f9a8659cb6da2f3555 @@ -4357,7 +4306,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/retrying-1.4.2-pyhe01879c_0.conda hash: md5: 128b46a47ea164f9a8659cb6da2f3555 @@ -4415,7 +4364,7 @@ package: category: dev optional: true - name: scikit-image - version: 0.25.2 + version: 0.26.0 manager: conda platform: linux-64 dependencies: @@ -4425,109 +4374,107 @@ package: libgcc: '>=14' libstdcxx: '>=14' networkx: '>=3.0' - numpy: '>=1.24' - packaging: '>=21' + numpy: '>=1.23,<3' + packaging: '>=21.0' pillow: '>=10.1' - python: '>=3.12,<3.13.0a0' + python: '' python_abi: 3.12.* - pywavelets: '>=1.6' scipy: '>=1.11.4' tifffile: '>=2022.8.12' - url: https://repo.prefix.dev/conda-forge/linux-64/scikit-image-0.25.2-py312hf79963d_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/scikit-image-0.26.0-np2py312h4ae17e4_0.conda hash: - md5: 98f1f48003d8f598a20692bf255fcbd6 - sha256: 0a77e81ec71f1255948685ac45d3e7ce806f5460a7d089f95bf60d91dbfff7ad + md5: 36772b1aa2dbd7b75664294d50fecb79 + sha256: 581a2228e6963b0707562f519ff68d6c97fad44711af56d3dbeb4a7377939cce category: main optional: false - name: scikit-image - version: 0.25.2 + version: 0.26.0 manager: conda platform: win-64 dependencies: imageio: '>=2.33,!=2.35.0' lazy-loader: '>=0.4' networkx: '>=3.0' - numpy: '>=1.24' - packaging: '>=21' + numpy: '>=1.23,<3' + packaging: '>=21.0' pillow: '>=10.1' - python: '>=3.12,<3.13.0a0' + python: '' python_abi: 3.12.* - pywavelets: '>=1.6' scipy: '>=1.11.4' tifffile: '>=2022.8.12' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/scikit-image-0.25.2-py312hc128f0a_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/scikit-image-0.26.0-np2py312h9ea65bc_0.conda hash: - md5: 7ebdd0b55819dea0fd3a6b405951c285 - sha256: 3cb223c91c26b367e16f8c6131d2c13bac71169da9f46c5374ab694c1690f866 + md5: 38268b3d95540a29a0d5c9ac9d094ca2 + sha256: 0a7a7012750fe69686c1f41848c0ca7afa6b0d0330b9294a790393aad9e7efff category: main optional: false - name: scipy - version: 1.14.1 + version: 1.17.1 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libblas: '>=3.9.0,<4.0a0' libcblas: '>=3.9.0,<4.0a0' - libgcc: '>=13' + libgcc: '>=14' libgfortran: '' - libgfortran5: '>=13.3.0' + libgfortran5: '>=14.3.0' liblapack: '>=3.9.0,<4.0a0' - libstdcxx: '>=13' - numpy: <2.3 + libstdcxx: '>=14' + numpy: '>=1.25.2' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/scipy-1.14.1-py312h62794b6_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/scipy-1.17.1-py312h54fa4ab_0.conda hash: - md5: 94688dd449f6c092e5f951780235aca1 - sha256: 6e4916d610dc15f9b504517bd6c1f3dbbae019a3c7abf0aeb55f310c452a4474 + md5: 3e38daeb1fb05a95656ff5af089d2e4c + sha256: e3ad577361d67f6c078a6a7a3898bf0617b937d44dc4ccd57aa3336f2b5778dd category: main optional: false - name: scipy - version: 1.14.1 + version: 1.17.1 manager: conda platform: win-64 dependencies: libblas: '>=3.9.0,<4.0a0' libcblas: '>=3.9.0,<4.0a0' liblapack: '>=3.9.0,<4.0a0' - numpy: <2.3 + numpy: '>=1.25.2' 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/scipy-1.14.1-py312h337df96_2.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/scipy-1.17.1-py312h9b3c559_0.conda hash: - md5: 3ef0017e79039d4767ba3b4891113a07 - sha256: eb67adcca33026895b6539d02e1bc01f495e1d593a26053d734fe7a180e708f4 + md5: bf4d70d225c530053128bae8d2531516 + sha256: bdb2437aa5db3a00c5e69808f9d1a695bbe74b4758ffdf2e79777c8e11680443 category: main optional: false - name: setuptools - version: 80.9.0 + version: 82.0.1 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/setuptools-82.0.1-pyh332efcf_0.conda hash: - md5: 4de79c071274a53dcaf2a8c749d1499e - sha256: 972560fcf9657058e3e1f97186cc94389144b46dbdf58c807ce62e83f977e863 + md5: 8e194e7b992f99a5015edbd4ebd38efd + sha256: 82088a6e4daa33329a30bc26dc19a98c7c1d3f05c0f73ce9845d4eab4924e9e1 category: main optional: false - name: setuptools - version: 80.9.0 + version: 82.0.1 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/setuptools-82.0.1-pyh332efcf_0.conda hash: - md5: 4de79c071274a53dcaf2a8c749d1499e - sha256: 972560fcf9657058e3e1f97186cc94389144b46dbdf58c807ce62e83f977e863 + md5: 8e194e7b992f99a5015edbd4ebd38efd + sha256: 82088a6e4daa33329a30bc26dc19a98c7c1d3f05c0f73ce9845d4eab4924e9e1 category: main optional: false - name: six @@ -4535,7 +4482,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda hash: md5: 3339e3b65d58accf4ca4fb8748ab16b3 @@ -4547,7 +4494,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda hash: md5: 3339e3b65d58accf4ca4fb8748ab16b3 @@ -4691,31 +4638,31 @@ package: category: dev optional: true - name: sphinx-rtd-theme - version: 3.0.2 + version: 3.1.0 manager: conda platform: linux-64 dependencies: - sphinx_rtd_theme: 3.0.2 - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-rtd-theme-3.0.2-hd8ed1ab_0.conda + sphinx_rtd_theme: 3.1.0 + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-rtd-theme-3.1.0-hd8ed1ab_0.conda hash: - md5: bc576bd1422b5baaed25722895581837 - sha256: d81e5f764d3738a62e03476cbbf3f69214f5cc0d06af81ec6104056f6cece50e + md5: 3b1a32d3d5c2064822203f2a6f3f1173 + sha256: ae5e8e514f21e6f62b63c13f684939ba007168bfd7742e8cb573fce69fbf62da category: dev optional: true - name: sphinx-rtd-theme - version: 3.0.2 + version: 3.1.0 manager: conda platform: win-64 dependencies: - sphinx_rtd_theme: 3.0.2 - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-rtd-theme-3.0.2-hd8ed1ab_0.conda + sphinx_rtd_theme: 3.1.0 + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-rtd-theme-3.1.0-hd8ed1ab_0.conda hash: - md5: bc576bd1422b5baaed25722895581837 - sha256: d81e5f764d3738a62e03476cbbf3f69214f5cc0d06af81ec6104056f6cece50e + md5: 3b1a32d3d5c2064822203f2a6f3f1173 + sha256: ae5e8e514f21e6f62b63c13f684939ba007168bfd7742e8cb573fce69fbf62da category: dev optional: true - name: sphinx_rtd_theme - version: 3.0.2 + version: 3.1.0 manager: conda platform: linux-64 dependencies: @@ -4723,14 +4670,14 @@ package: python: '>=3.8' sphinx: '>=6,<9' sphinxcontrib-jquery: '>=4,<5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx_rtd_theme-3.0.2-pyha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx_rtd_theme-3.1.0-pyha770c72_0.conda hash: - md5: cec0cc87b40171bc323a9d80b619c9c5 - sha256: c5d1ef5801f56c3bba4088de6c02c10e7f5b195805997fc1af569cf3f33f92e4 + md5: cede6bc99a0253fa676f03cfdc666d57 + sha256: 1d57a0cd74ecc0e5dc006f6591145d1abb6658464919d4aeb163d3db714f80e6 category: dev optional: true - name: sphinx_rtd_theme - version: 3.0.2 + version: 3.1.0 manager: conda platform: win-64 dependencies: @@ -4738,10 +4685,10 @@ package: python: '>=3.8' sphinx: '>=6,<9' sphinxcontrib-jquery: '>=4,<5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx_rtd_theme-3.0.2-pyha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx_rtd_theme-3.1.0-pyha770c72_0.conda hash: - md5: cec0cc87b40171bc323a9d80b619c9c5 - sha256: c5d1ef5801f56c3bba4088de6c02c10e7f5b195805997fc1af569cf3f33f92e4 + md5: cede6bc99a0253fa676f03cfdc666d57 + sha256: 1d57a0cd74ecc0e5dc006f6591145d1abb6658464919d4aeb163d3db714f80e6 category: dev optional: true - name: sphinxcontrib-applehelp @@ -4925,31 +4872,31 @@ package: category: dev optional: true - name: svt-av1 - version: 3.1.2 + version: 4.0.1 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' libstdcxx: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/svt-av1-3.1.2-hecca717_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/svt-av1-4.0.1-hecca717_0.conda hash: - md5: 9859766c658e78fec9afa4a54891d920 - sha256: 34e2e9c505cd25dba0a9311eb332381b15147cf599d972322a7c197aedfc8ce2 + md5: 2a2170a3e5c9a354d09e4be718c43235 + sha256: 4a1d2005153b9454fc21c9bad1b539df189905be49e851ec62a6212c2e045381 category: main optional: false - name: svt-av1 - version: 3.1.2 + version: 4.0.1 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/svt-av1-3.1.2-hac47afa_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/svt-av1-4.0.1-hac47afa_0.conda hash: - md5: 91866412570c922f55178855deb0f952 - sha256: 444c94a9c1fcb2cdf78b260472451990257733bcf89ed80c73db36b5047d3134 + md5: d9714a97bc69f98fd5032f675ae1b0b5 + sha256: 4d77eec06ee4c5de38d330fb7dfd6dac2f867ec007123acb901be9942e12c08a category: main optional: false - name: tbb @@ -4968,31 +4915,31 @@ package: category: main optional: false - name: tifffile - version: 2025.12.20 + version: 2026.3.3 manager: conda platform: linux-64 dependencies: imagecodecs: '>=2025.11.11' numpy: '>=1.19.2' python: '>=3.11' - url: https://repo.prefix.dev/conda-forge/noarch/tifffile-2025.12.20-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/tifffile-2026.3.3-pyhd8ed1ab_0.conda hash: - md5: f8a199849a262291f127f4835c990935 - sha256: e3b2cc47bf57571937e6c0843af2c66e3ee077599a43c2eb49f1f9f703d23edb + md5: cecacab21bc8f4ed17fac11bc8b08cf0 + sha256: da24795c3000566167fbb51c0933acd7a46fe2661375ad4d8a1748aab2bc9537 category: main optional: false - name: tifffile - version: 2025.12.20 + version: 2026.3.3 manager: conda platform: win-64 dependencies: imagecodecs: '>=2025.11.11' numpy: '>=1.19.2' python: '>=3.11' - url: https://repo.prefix.dev/conda-forge/noarch/tifffile-2025.12.20-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/tifffile-2026.3.3-pyhd8ed1ab_0.conda hash: - md5: f8a199849a262291f127f4835c990935 - sha256: e3b2cc47bf57571937e6c0843af2c66e3ee077599a43c2eb49f1f9f703d23edb + md5: cecacab21bc8f4ed17fac11bc8b08cf0 + sha256: da24795c3000566167fbb51c0933acd7a46fe2661375ad4d8a1748aab2bc9537 category: main optional: false - name: tk @@ -5001,12 +4948,12 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' + libgcc: '>=14' libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_ha0e22de_103.conda + url: https://repo.prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_h366c992_103.conda hash: - md5: 86bc20552bf46075e3d92b67f089172d - sha256: 1544760538a40bcd8ace2b1d8ebe3eb5807ac268641f8acdc18c69c5ebfeaf64 + md5: cffd3bdd58090148f4cfcd831f4b26ab + sha256: cafeec44494f842ffeca27e9c8b0c27ed714f93ac77ddadc6aaf726b5554ebac category: main optional: false - name: tk @@ -5015,60 +4962,60 @@ 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/tk-8.6.13-h2c6b04d_3.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/tk-8.6.13-h6ed50ae_3.conda hash: - md5: 7cb36e506a7dba4817970f8adb6396f9 - sha256: 4581f4ffb432fefa1ac4f85c5682cc27014bcd66e7beaa0ee330e927a7858790 + md5: 0481bfd9814bf525bd4b3ee4b51494c4 + sha256: 0e79810fae28f3b69fe7391b0d43f5474d6bd91d451d5f2bde02f55ae481d5e3 category: main optional: false - name: tomli - version: 2.3.0 + version: 2.4.0 manager: conda platform: linux-64 dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.3.0-pyhcf101f3_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.4.0-pyhcf101f3_0.conda hash: - md5: d2732eb636c264dc9aa4cbee404b1a53 - sha256: cb77c660b646c00a48ef942a9e1721ee46e90230c7c570cdeb5a893b5cce9bff + md5: 72e780e9aa2d0a3295f59b1874e3768b + sha256: 62940c563de45790ba0f076b9f2085a842a65662268b02dd136a8e9b1eaf47a8 category: dev optional: true - name: tomli - version: 2.3.0 + version: 2.4.0 manager: conda platform: win-64 dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.3.0-pyhcf101f3_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.4.0-pyhcf101f3_0.conda hash: - md5: d2732eb636c264dc9aa4cbee404b1a53 - sha256: cb77c660b646c00a48ef942a9e1721ee46e90230c7c570cdeb5a893b5cce9bff + md5: 72e780e9aa2d0a3295f59b1874e3768b + sha256: 62940c563de45790ba0f076b9f2085a842a65662268b02dd136a8e9b1eaf47a8 category: dev optional: true - name: tomlkit - version: 0.13.3 + version: 0.14.0 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.3-pyha770c72_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.14.0-pyha770c72_0.conda hash: - md5: 146402bf0f11cbeb8f781fa4309a95d3 - sha256: f8d3b49c084831a20923f66826f30ecfc55a4cd951e544b7213c692887343222 + md5: 385dca77a8b0ec6fa9b92cb62d09b43b + sha256: b35082091c8efd084e51bc3a4a2d3b07897eff232aaf58cbc0f959b6291a6a93 category: dev optional: true - name: tomlkit - version: 0.13.3 + version: 0.14.0 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.3-pyha770c72_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.14.0-pyha770c72_0.conda hash: - md5: 146402bf0f11cbeb8f781fa4309a95d3 - sha256: f8d3b49c084831a20923f66826f30ecfc55a4cd951e544b7213c692887343222 + md5: 385dca77a8b0ec6fa9b92cb62d09b43b + sha256: b35082091c8efd084e51bc3a4a2d3b07897eff232aaf58cbc0f959b6291a6a93 category: dev optional: true - name: toolz @@ -5096,29 +5043,30 @@ package: category: main optional: false - name: tqdm - version: 4.67.1 + version: 4.67.3 manager: conda platform: linux-64 dependencies: - colorama: '' - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_1.conda + __unix: '' + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/tqdm-4.67.3-pyh8f84b5b_0.conda hash: - md5: 9efbfdc37242619130ea42b1cc4ed861 - sha256: 11e2c85468ae9902d24a27137b6b39b4a78099806e551d390e394a8c34b48e40 + md5: e5ce43272193b38c2e9037446c1d9206 + sha256: 9ef8e47cf00e4d6dcc114eb32a1504cc18206300572ef14d76634ba29dfe1eb6 category: main optional: false - name: tqdm - version: 4.67.1 + version: 4.67.3 manager: conda platform: win-64 dependencies: + __win: '' colorama: '' - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_1.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/tqdm-4.67.3-pyha7b4d00_0.conda hash: - md5: 9efbfdc37242619130ea42b1cc4ed861 - sha256: 11e2c85468ae9902d24a27137b6b39b4a78099806e551d390e394a8c34b48e40 + md5: af77160f8428924c17db94e04aa69409 + sha256: 63cc2def6e168622728c7800ed6b3c1761ceecb18b354c81cee1a0a94c09900a category: main optional: false - name: typing-extensions @@ -5176,7 +5124,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.10' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda hash: md5: 0caa1af407ecff61170c9437a808404d @@ -5188,7 +5136,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.10' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda hash: md5: 0caa1af407ecff61170c9437a808404d @@ -5229,7 +5177,7 @@ package: category: main optional: false - name: unicodedata2 - version: 17.0.0 + version: 17.0.1 manager: conda platform: linux-64 dependencies: @@ -5237,14 +5185,14 @@ package: libgcc: '>=14' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/unicodedata2-17.0.0-py312h4c3975b_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/unicodedata2-17.0.1-py312h4c3975b_0.conda hash: - md5: a0b8efbe73c90f810a171a6c746be087 - sha256: 3c812c634e78cec74e224cc6adf33aed533d9fe1ee1eff7f692e1f338efb8c5b + md5: 0b6c506ec1f272b685240e70a29261b8 + sha256: 895bbfe9ee25c98c922799de901387d842d7c01cae45c346879865c6a907f229 category: main optional: false - name: unicodedata2 - version: 17.0.0 + version: 17.0.1 manager: conda platform: win-64 dependencies: @@ -5253,10 +5201,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/unicodedata2-17.0.0-py312he06e257_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/unicodedata2-17.0.1-py312he06e257_0.conda hash: - md5: 2e4fbe70f86b42b01228cdbcc4b52351 - sha256: f05083b85ee3fb1315e0d6df0bdd597074ef909838391d7e31daaec7381dc28a + md5: 9c46f390eb4b5c6e502df20378e442dd + sha256: 577fcd97b5b855d341ee511307a0c05f632d184544e31ff9621690770843c995 category: main optional: false - name: urllib3 @@ -5345,7 +5293,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.10' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/waitress-3.0.2-pyhcf101f3_2.conda hash: md5: a68c6d8a9afc81ef27541f7f0ac78dc3 @@ -5357,7 +5305,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.10' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/waitress-3.0.2-pyhcf101f3_2.conda hash: md5: a68c6d8a9afc81ef27541f7f0ac78dc3 @@ -5365,53 +5313,55 @@ package: category: main optional: false - name: werkzeug - version: 3.1.5 + version: 3.1.6 manager: conda platform: linux-64 dependencies: markupsafe: '>=2.1.1' - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/werkzeug-3.1.5-pyhcf101f3_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/werkzeug-3.1.6-pyhcf101f3_0.conda hash: - md5: 784e86b857b809955635175881a9a418 - sha256: 3ef418943ef14939a4bbc5157f31db2d6a7a025a3bfd7b4aa5a29034ba96e42e + md5: 2d9bfc6055e55ff58b2c359323a753d2 + sha256: 06e3d5bec9d2730a23ecf023b7cba329c0772c51f2704714c17b3080b0385113 category: main optional: false - name: werkzeug - version: 3.1.5 + version: 3.1.6 manager: conda platform: win-64 dependencies: markupsafe: '>=2.1.1' - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/werkzeug-3.1.5-pyhcf101f3_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/werkzeug-3.1.6-pyhcf101f3_0.conda hash: - md5: 784e86b857b809955635175881a9a418 - sha256: 3ef418943ef14939a4bbc5157f31db2d6a7a025a3bfd7b4aa5a29034ba96e42e + md5: 2d9bfc6055e55ff58b2c359323a753d2 + sha256: 06e3d5bec9d2730a23ecf023b7cba329c0772c51f2704714c17b3080b0385113 category: main optional: false - name: wheel - version: 0.45.1 + version: 0.46.3 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda + packaging: '>=24.0' + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/wheel-0.46.3-pyhd8ed1ab_0.conda hash: - md5: 75cb7132eb58d97896e173ef12ac9986 - sha256: 1b34021e815ff89a4d902d879c3bd2040bc1bd6169b32e9427497fa05c55f1ce + md5: bdbd7385b4a67025ac2dba4ef8cb6a8f + sha256: d6cf2f0ebd5e09120c28ecba450556ce553752652d91795442f0e70f837126ae category: main optional: false - name: wheel - version: 0.45.1 + version: 0.46.3 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda + packaging: '>=24.0' + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/wheel-0.46.3-pyhd8ed1ab_0.conda hash: - md5: 75cb7132eb58d97896e173ef12ac9986 - sha256: 1b34021e815ff89a4d902d879c3bd2040bc1bd6169b32e9427497fa05c55f1ce + md5: bdbd7385b4a67025ac2dba4ef8cb6a8f + sha256: d6cf2f0ebd5e09120c28ecba450556ce553752652d91795442f0e70f837126ae category: main optional: false - name: win_inet_pton @@ -5542,7 +5492,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.10' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/zipp-3.23.0-pyhcf101f3_1.conda hash: md5: 30cd29cb87d819caead4d55184c1d115 @@ -5554,7 +5504,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.10' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/zipp-3.23.0-pyhcf101f3_1.conda hash: md5: 30cd29cb87d819caead4d55184c1d115 @@ -5562,31 +5512,31 @@ package: category: main optional: false - name: zlib-ng - version: 2.3.2 + version: 2.3.3 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' libstdcxx: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/zlib-ng-2.3.2-hceb46e0_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/zlib-ng-2.3.3-hceb46e0_1.conda hash: - md5: 40feea2979654ed579f1cda7c63ccb94 - sha256: f2b6a175677701a0b6ce556b3bd362dc94a4e36ffcd10e3860e52ca036b4ad96 + md5: 2aadb0d17215603a82a2a6b0afd9a4cb + sha256: ea4e50c465d70236408cb0bfe0115609fd14db1adcd8bd30d8918e0291f8a75f category: main optional: false - name: zlib-ng - version: 2.3.2 + version: 2.3.3 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/zlib-ng-2.3.2-h0261ad2_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/zlib-ng-2.3.3-h0261ad2_1.conda hash: - md5: bc2fba648e1e784c549e20bbe1a8af40 - sha256: e058e925bed8d9e5227cecc098e02992813046fd89206194435e975a9f6eff56 + md5: 46a21c0a4e65f1a135251fc7c8663f83 + sha256: 71332532332d13b5dbe57074ddcf82ae711bdc132affa5a2982a29ffa06dc234 category: main optional: false - name: zstd @@ -5618,73 +5568,73 @@ package: category: main optional: false - name: geoapps-utils - version: 0.7.0a2.dev1+3a0ee39 + version: 0.7.0a2 manager: pip platform: linux-64 dependencies: - geoh5py: 0.13.0a2.dev34+872fd38e - matplotlib: '>=3.8.4,<3.9.0' - numpy: '>=1.26.0,<1.27.0' - pydantic: '>=2.12.0,<3.0.0' - scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 + geoh5py: 0.12.1rc2.dev239+771ae87c + matplotlib: '>=3.10.0,<3.11.0' + numpy: '>=2.4.2,<2.5.0' + pydantic: '>=2.12.0,<2.13.0' + scipy: '>=1.17.0,<1.18.0' + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@fb86adf72fb82ea23c8904a39585982ca8793c52 hash: - sha256: 3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 + sha256: fb86adf72fb82ea23c8904a39585982ca8793c52 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@fb86adf72fb82ea23c8904a39585982ca8793c52 category: main optional: false - name: geoapps-utils - version: 0.7.0a2.dev1+3a0ee39 + version: 0.7.0a2 manager: pip platform: win-64 dependencies: - geoh5py: 0.13.0a2.dev34+872fd38e - matplotlib: '>=3.8.4,<3.9.0' - numpy: '>=1.26.0,<1.27.0' - pydantic: '>=2.12.0,<3.0.0' - scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 + geoh5py: 0.12.1rc2.dev239+771ae87c + matplotlib: '>=3.10.0,<3.11.0' + numpy: '>=2.4.2,<2.5.0' + pydantic: '>=2.12.0,<2.13.0' + scipy: '>=1.17.0,<1.18.0' + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@fb86adf72fb82ea23c8904a39585982ca8793c52 hash: - sha256: 3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 + sha256: fb86adf72fb82ea23c8904a39585982ca8793c52 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@fb86adf72fb82ea23c8904a39585982ca8793c52 category: main optional: false - name: geoh5py - version: 0.13.0a2.dev34+872fd38e + version: 0.12.1rc2.dev239+771ae87c manager: pip platform: linux-64 dependencies: - h5py: '>=3.2.1,<4.0.0' - numpy: '>=1.26.0,<1.27.0' - pillow: '>=10.3.0,<10.4.0' - pydantic: '>=2.12.0,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 + h5py: '>=3.15.0,<4.0.0' + numpy: '>=2.4.0,<2.5.0' + pillow: '>=12.1.0,<12.2.0' + pydantic: '>=2.12.0,<2.13.0' + url: git+https://github.com/MiraGeoscience/geoh5py.git@771ae87ccae825e2eae4058b5f51fd6d5f4791cf hash: - sha256: 872fd38e1f3a73fad567de7825e5e2bb0aadab72 + sha256: 771ae87ccae825e2eae4058b5f51fd6d5f4791cf source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 + url: git+https://github.com/MiraGeoscience/geoh5py.git@771ae87ccae825e2eae4058b5f51fd6d5f4791cf category: main optional: false - name: geoh5py - version: 0.13.0a2.dev34+872fd38e + version: 0.12.1rc2.dev239+771ae87c manager: pip platform: win-64 dependencies: - h5py: '>=3.2.1,<4.0.0' - numpy: '>=1.26.0,<1.27.0' - pillow: '>=10.3.0,<10.4.0' - pydantic: '>=2.12.0,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 + h5py: '>=3.15.0,<4.0.0' + numpy: '>=2.4.0,<2.5.0' + pillow: '>=12.1.0,<12.2.0' + pydantic: '>=2.12.0,<2.13.0' + url: git+https://github.com/MiraGeoscience/geoh5py.git@771ae87ccae825e2eae4058b5f51fd6d5f4791cf hash: - sha256: 872fd38e1f3a73fad567de7825e5e2bb0aadab72 + sha256: 771ae87ccae825e2eae4058b5f51fd6d5f4791cf source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 + url: git+https://github.com/MiraGeoscience/geoh5py.git@771ae87ccae825e2eae4058b5f51fd6d5f4791cf category: main optional: false - name: pywebview diff --git a/py-3.11.conda-lock.yml b/py-3.13.conda-lock.yml similarity index 74% rename from py-3.11.conda-lock.yml rename to py-3.13.conda-lock.yml index 92b7c68..8134378 100644 --- a/py-3.11.conda-lock.yml +++ b/py-3.13.conda-lock.yml @@ -5,20 +5,20 @@ # available, unless you explicitly update the lock file. # # Install this environment as "YOURENV" with: -# conda-lock install -n YOURENV py-3.11.conda-lock.yml +# conda-lock install -n YOURENV py-3.13.conda-lock.yml # This lock contains optional development dependencies. Include them in the installed environment with: -# conda-lock install --dev-dependencies -n YOURENV py-3.11.conda-lock.yml +# conda-lock install --dev-dependencies -n YOURENV py-3.13.conda-lock.yml # This lock contains optional dependency categories webview. Include them in the installed environment with: -# conda-lock install -e webview -n YOURENV py-3.11.conda-lock.yml +# conda-lock install -e webview -n YOURENV py-3.13.conda-lock.yml # To update a single package to the latest version compatible with the version constraints in the source: -# conda-lock lock --lockfile py-3.11.conda-lock.yml --update PACKAGE +# conda-lock lock --lockfile py-3.13.conda-lock.yml --update PACKAGE # To re-solve the entire environment, e.g. after changing a version constraint in the source file: -# conda-lock -f pyproject.toml -f environments/env-python-3.11.yml --lockfile py-3.11.conda-lock.yml +# conda-lock -f pyproject.toml -f environments/env-python-3.13.yml --lockfile py-3.13.conda-lock.yml version: 1 metadata: content_hash: - win-64: ce882c7539d9f36df2c459eb4173f32fd65264a942157d7df942da94d5133bec - linux-64: c4f41abbbcfdb01da0d4f75442c1c18e0a725e4fb65959013c2b899a71876401 + win-64: 4ad3d015d7c3f5e92954ed8c0eefb5299f73c800080ae90b08af605aa02ed192 + linux-64: 4a45ebdf7879fcb0222e413e6503d6c2cb39ce7a3aa12dc133ff9fb68a10acc0 channels: - url: conda-forge used_env_vars: [] @@ -29,28 +29,17 @@ metadata: - linux-64 sources: - pyproject.toml - - environments/env-python-3.11.yml + - environments/env-python-3.13.yml package: - name: _libavif_api - version: 1.3.0 + version: 1.4.0 manager: conda platform: win-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/win-64/_libavif_api-1.3.0-h57928b3_2.conda - hash: - md5: e31e1eda938360543cb29bd3ce8f0b73 - sha256: 472aa5e5a97a188c1f01e271a821b5a9dc871e93f7c58cfb7e89bdb6cd926d39 - category: main - optional: false -- name: _libgcc_mutex - version: '0.1' - manager: conda - platform: linux-64 - dependencies: {} - url: https://repo.prefix.dev/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 + url: https://repo.prefix.dev/conda-forge/win-64/_libavif_api-1.4.0-h57928b3_0.conda hash: - md5: d7c89558ba9fa0495403155b64376d81 - sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726 + md5: 8a83ad078080bfdef92730b09e422b4a + sha256: d04864399e5bee6292371242817304e97c8dcb5a352b4b3ca507d3ca13627acb category: main optional: false - name: _openmp_mutex @@ -58,12 +47,12 @@ package: manager: conda platform: linux-64 dependencies: - _libgcc_mutex: '0.1' + __glibc: '>=2.17,<3.0.a0' libgomp: '>=7.5.0' - url: https://repo.prefix.dev/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 + url: https://repo.prefix.dev/conda-forge/linux-64/_openmp_mutex-4.5-20_gnu.conda hash: - md5: 73aaf86a425cc6e73fcf236a5a46396d - sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22 + md5: a9f577daf3de00bca7c3c76c0ecbd1de + sha256: 1dd3fffd892081df9726d7eb7e0dea6198962ba775bd88842135a4ddb4deb3c9 category: main optional: false - name: _openmp_mutex @@ -72,11 +61,11 @@ package: platform: win-64 dependencies: libgomp: '>=7.5.0' - libwinpthread: '>=12.0.0.r2.ggc561118da' - url: https://repo.prefix.dev/conda-forge/win-64/_openmp_mutex-4.5-2_gnu.conda + libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' + url: https://repo.prefix.dev/conda-forge/win-64/_openmp_mutex-4.5-20_gnu.conda hash: - md5: 37e16618af5c4851a3f3d66dd0e11141 - sha256: 1a62cd1f215fe0902e7004089693a78347a30ad687781dfda2289cab000e652d + md5: 1626967b574d1784b578b52eaeb071e7 + sha256: 8a1cee28bd0ee7451ada1cd50b64720e57e17ff994fc62dd8329bef570d382e4 category: main optional: false - name: alabaster @@ -157,55 +146,53 @@ package: category: main optional: false - name: astroid - version: 4.0.3 + version: 4.0.4 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-4.0.3-py311h38be061_0.conda + python: '>=3.13,<3.14.0a0' + python_abi: 3.13.* + url: https://repo.prefix.dev/conda-forge/linux-64/astroid-4.0.4-py313h78bf25f_0.conda hash: - md5: aa8d7de4cc777523913507021c590f88 - sha256: 5161c57572d48c17e3d000bf3dd8b0ae267dd62ca1494f5c292225ba6329459f + md5: b9a5074b980b555420188db0ccf3cc20 + sha256: 38ab850ede7fbbea4ae452c4d1b8264669bbc1bed7d2e23d974c0ee28fade63e category: dev optional: true - name: astroid - version: 4.0.3 + version: 4.0.4 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-4.0.3-py311h1ea47a8_0.conda + python: '>=3.13,<3.14.0a0' + python_abi: 3.13.* + url: https://repo.prefix.dev/conda-forge/win-64/astroid-4.0.4-py313hfa70ccb_0.conda hash: - md5: a909eaf6f96fc8862f5762de8649a4b1 - sha256: a76f82c566112692e554aa68343799bef7acd70a266ccfeca5a0397b88f6da7e + md5: 0bde1b76c96e6af8ae0f71a466dda5b4 + sha256: 599ce66ba762cffdb067ff1688db73e06a5fee97d15def002705912893348ff3 category: dev optional: true - name: babel - version: 2.17.0 + version: 2.18.0 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - pytz: '>=2015.7' - url: https://repo.prefix.dev/conda-forge/noarch/babel-2.17.0-pyhd8ed1ab_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/babel-2.18.0-pyhcf101f3_1.conda hash: - md5: 0a01c169f0ab0f91b26e77a3301fbfe4 - sha256: 1c656a35800b7f57f7371605bc6507c8d3ad60fbaaec65876fce7f73df1fc8ac + md5: f1976ce927373500cc19d3c0b2c85177 + sha256: a14a9ad02101aab25570543a59c5193043b73dc311a25650134ed9e6cb691770 category: dev optional: true - name: babel - version: 2.17.0 + version: 2.18.0 manager: conda platform: win-64 dependencies: - python: '>=3.9' - pytz: '>=2015.7' - url: https://repo.prefix.dev/conda-forge/noarch/babel-2.17.0-pyhd8ed1ab_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/babel-2.18.0-pyhcf101f3_1.conda hash: - md5: 0a01c169f0ab0f91b26e77a3301fbfe4 - sha256: 1c656a35800b7f57f7371605bc6507c8d3ad60fbaaec65876fce7f73df1fc8ac + md5: f1976ce927373500cc19d3c0b2c85177 + sha256: a14a9ad02101aab25570543a59c5193043b73dc311a25650134ed9e6cb691770 category: dev optional: true - name: backports.zstd @@ -216,12 +203,12 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' python: '' - python_abi: 3.11.* + python_abi: 3.13.* zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/backports.zstd-1.3.0-py311h6b1f9c4_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/backports.zstd-1.3.0-py313h18e8e13_0.conda hash: - md5: adda5ef2a74c9bdb338ff8a51192898a - sha256: 246e50ec7fc222875c6ecfa3feab77f5661dc43e26397bc01d9e0310e3cd48a0 + md5: d9e90792551a527200637e23a915dd79 + sha256: 9552afbec37c4d8d0e83a5c4c6b3c7f4b8785f935094ce3881e0a249045909ce category: main optional: false - name: backports.zstd @@ -230,15 +217,15 @@ package: platform: win-64 dependencies: python: '' - python_abi: 3.11.* + python_abi: 3.13.* ucrt: '>=10.0.20348.0' 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/backports.zstd-1.3.0-py311h71c1bcc_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/backports.zstd-1.3.0-py313h2a31948_0.conda hash: - md5: 49eb28c4f92e8a7440e3da6d8e8b5e58 - sha256: 5a30429e009b93c6dffe539cf0e3d220ef8d36ea42d36ca5c26b603cb3319c71 + md5: cdcdfe68c5bc9af9e908e35ebffc9fe1 + sha256: 1e76ed9bcf07ef1df9c964d73e9cda08a0380845d09c8da1678a1687dc087c34 category: main optional: false - name: blinker @@ -306,7 +293,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/bottle-0.13.4-pyhe01879c_0.conda hash: md5: ddb34ae9ba36f9479bf605302adf54e2 @@ -318,7 +305,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/bottle-0.13.4-pyhe01879c_0.conda hash: md5: ddb34ae9ba36f9479bf605302adf54e2 @@ -397,12 +384,12 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' libstdcxx: '>=14' - python: '>=3.11,<3.12.0a0' - python_abi: 3.11.* - url: https://repo.prefix.dev/conda-forge/linux-64/brotli-python-1.2.0-py311h66f275b_1.conda + python: '>=3.13,<3.14.0a0' + python_abi: 3.13.* + url: https://repo.prefix.dev/conda-forge/linux-64/brotli-python-1.2.0-py313hf159716_1.conda hash: - md5: 86daecb8e4ed1042d5dc6efbe0152590 - sha256: c36eb061d9ead85f97644cfb740d485dba9b8823357f35c17851078e95e975c1 + md5: 6c4d3597cf43f3439a51b2b13e29a4ba + sha256: dadec2879492adede0a9af0191203f9b023f788c18efd45ecac676d424c458ae category: main optional: false - name: brotli-python @@ -410,15 +397,15 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.11,<3.12.0a0' - python_abi: 3.11.* + python: '>=3.13,<3.14.0a0' + python_abi: 3.13.* 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.2.0-py311hc5da9e4_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/brotli-python-1.2.0-py313h3ebfc14_1.conda hash: - md5: b0c459f98ac5ea504a9d9df6242f7ee1 - sha256: 1803c838946d79ef6485ae8c7dafc93e28722c5999b059a34118ef758387a4c9 + md5: 916a39a0261621b8c33e9db2366dd427 + sha256: 3558006cd6e836de8dff53cbe5f0b9959f96ea6a6776b4e14f1c524916dd956c category: main optional: false - name: brunsli @@ -445,10 +432,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/bzip2-1.0.8-hda65f42_8.conda + url: https://repo.prefix.dev/conda-forge/linux-64/bzip2-1.0.8-hda65f42_9.conda hash: - md5: 51a19bba1b8ebfb60df25cde030b7ebc - sha256: c30daba32ddebbb7ded490f0e371eae90f51e72db620554089103b4a6934b0d5 + md5: d2ffd7602c02f2b316fd921d39876885 + sha256: 0b75d45f0bba3e95dc693336fa51f40ea28c980131fec438afb7ce6118ed05f6 category: main optional: false - name: bzip2 @@ -459,10 +446,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/bzip2-1.0.8-h0ad9c76_8.conda + url: https://repo.prefix.dev/conda-forge/win-64/bzip2-1.0.8-h0ad9c76_9.conda hash: - md5: 1077e9333c41ff0be8edd1a5ec0ddace - sha256: d882712855624641f48aa9dc3f5feea2ed6b4e6004585d3616386a18186fe692 + md5: 4cb8e6b48f67de0b018719cdf1136306 + sha256: 76dfb71df5e8d1c4eded2dbb5ba15bb8fb2e2b0fe42d94145d5eed4c75c35902 category: main optional: false - name: c-ares @@ -479,7 +466,7 @@ package: category: main optional: false - name: c-blosc2 - version: 2.22.0 + version: 2.23.1 manager: conda platform: linux-64 dependencies: @@ -487,16 +474,16 @@ package: libgcc: '>=14' libstdcxx: '>=14' lz4-c: '>=1.10.0,<1.11.0a0' - zlib-ng: '>=2.3.1,<2.4.0a0' + zlib-ng: '>=2.3.3,<2.4.0a0' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/c-blosc2-2.22.0-hc31b594_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/c-blosc2-2.23.1-hc31b594_0.conda hash: - md5: 52019609422a72ec80c32bbc16a889d8 - sha256: efe06a982fe7f4e483a2043c4b43fc3598a538a66ed11364ee5b25d3400ef415 + md5: 68ceffc6cadae61846a207cae60de094 + sha256: b6ce82ebe3cf24e70179bd656eacfa97ce9df9a500f2cec6843043466a5e6af8 category: main optional: false - name: c-blosc2 - version: 2.22.0 + version: 2.23.1 manager: conda platform: win-64 dependencies: @@ -504,36 +491,36 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - zlib-ng: '>=2.3.1,<2.4.0a0' + zlib-ng: '>=2.3.3,<2.4.0a0' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/c-blosc2-2.22.0-h2af8807_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/c-blosc2-2.23.1-h2af8807_0.conda hash: - md5: eb7c33dcf2ff0cea48cd13f0ebba44f5 - sha256: fb27b61b4c969e1761c2d02c12854a3e809c9db2b4097bdef77e0aaa3f7ee33a + md5: bf3ca174f488c0bfec33d84438c0f008 + sha256: 9579087e7a40372006ebda6c7aa48b36dd66effa4e4d009e1ab1ad7d8718dd0c category: main optional: false - name: ca-certificates - version: 2026.1.4 + version: 2026.2.25 manager: conda platform: linux-64 dependencies: __unix: '' - url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2026.1.4-hbd8a1cb_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2026.2.25-hbd8a1cb_0.conda hash: - md5: bddacf101bb4dd0e51811cb69c7790e2 - sha256: b5974ec9b50e3c514a382335efa81ed02b05906849827a34061c496f4defa0b2 + md5: 4492fd26db29495f0ba23f146cd5638d + sha256: 67cc7101b36421c5913a1687ef1b99f85b5d6868da3abbf6ec1a4181e79782fc category: main optional: false - name: ca-certificates - version: 2026.1.4 + version: 2026.2.25 manager: conda platform: win-64 dependencies: __win: '' - url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2026.1.4-h4c7d964_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2026.2.25-h4c7d964_0.conda hash: - md5: 84d389c9eee640dda3d26fc5335c67d8 - sha256: 4ddcb01be03f85d3db9d881407fb13a673372f1b9fac9c836ea441893390e049 + md5: f001e6e220355b7f87403a4d0e5bf1ca + sha256: 37950019c59b99585cee5d30dbc2cc9696ed4e11f5742606a4db1621ed8f94d6 category: main optional: false - name: cached-property @@ -585,27 +572,27 @@ package: category: main optional: false - name: certifi - version: 2026.1.4 + version: 2026.2.25 manager: conda platform: linux-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/certifi-2026.1.4-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/certifi-2026.2.25-pyhd8ed1ab_0.conda hash: - md5: eacc711330cd46939f66cd401ff9c44b - sha256: 110338066d194a715947808611b763857c15458f8b3b97197387356844af9450 + md5: 765c4d97e877cdbbb88ff33152b86125 + sha256: a6b118fd1ed6099dc4fc03f9c492b88882a780fadaef4ed4f93dc70757713656 category: main optional: false - name: certifi - version: 2026.1.4 + version: 2026.2.25 manager: conda platform: win-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/certifi-2026.1.4-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/certifi-2026.2.25-pyhd8ed1ab_0.conda hash: - md5: eacc711330cd46939f66cd401ff9c44b - sha256: 110338066d194a715947808611b763857c15458f8b3b97197387356844af9450 + md5: 765c4d97e877cdbbb88ff33152b86125 + sha256: a6b118fd1ed6099dc4fc03f9c492b88882a780fadaef4ed4f93dc70757713656 category: main optional: false - name: cffi @@ -617,12 +604,12 @@ package: 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-2.0.0-py311h03d9500_1.conda + python: '>=3.13,<3.14.0a0' + python_abi: 3.13.* + url: https://repo.prefix.dev/conda-forge/linux-64/cffi-2.0.0-py313hf46b229_1.conda hash: - md5: 3912e4373de46adafd8f1e97e4bd166b - sha256: 3ad13377356c86d3a945ae30e9b8c8734300925ef81a3cb0a9db0d755afbe7bb + md5: d0616e7935acab407d1543b28c446f6f + sha256: 2162a91819945c826c6ef5efe379e88b1df0fe9a387eeba23ddcf7ebeacd5bd6 category: webview optional: true - name: cffi @@ -631,66 +618,67 @@ package: platform: win-64 dependencies: pycparser: '' - python: '>=3.11,<3.12.0a0' - python_abi: 3.11.* + python: '>=3.13,<3.14.0a0' + python_abi: 3.13.* ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/cffi-2.0.0-py311h3485c13_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/cffi-2.0.0-py313h5ea7bf4_1.conda hash: - md5: f02335db0282d5077df5bc84684f7ff9 - sha256: c9caca6098e3d92b1a269159b759d757518f2c477fbbb5949cb9fee28807c1f1 + md5: 55b44664f66a2caf584d72196aa98af9 + sha256: f867a11f42bb64a09b232e3decf10f8a8fe5194d7e3a216c6bac9f40483bd1c6 category: webview optional: true - name: charls - version: 2.4.2 + version: 2.4.3 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://repo.prefix.dev/conda-forge/linux-64/charls-2.4.2-h59595ed_0.conda + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=14' + libstdcxx: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/charls-2.4.3-hecca717_0.conda hash: - md5: 4336bd67920dd504cd8c6761d6a99645 - sha256: 18f1c43f91ccf28297f92b094c2c8dbe9c6e8241c0d3cbd6cda014a990660fdd + md5: 937ca49a245fcf2b88d51b6b52959426 + sha256: 53504e965499b4845ca3dc63d5905d5a1e686fcb9ab17e83c018efa479e787d0 category: main optional: false - name: charls - version: 2.4.2 + version: 2.4.3 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/charls-2.4.2-h1537add_0.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/charls-2.4.3-h7cafa3a_0.conda hash: - md5: 0935766a50dfe44315b62ec0046a8779 - sha256: e6a3eab3fe65389900f39a78dc3bd86bbc030e2a746addb8b69a997495ca867c + md5: e130868f53b4b95e909c0c64ab543b62 + sha256: 4edc31f4c709a38f04da2c5eeef659b1c5279617281bd74c1786487ddd76717a category: main optional: false - name: charset-normalizer - version: 3.4.4 + version: 3.4.6 manager: conda platform: linux-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.4-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.6-pyhd8ed1ab_0.conda hash: - md5: a22d1fd9bf98827e280a02875d9a007a - sha256: b32f8362e885f1b8417bac2b3da4db7323faa12d5db62b7fd6691c02d60d6f59 + md5: 49ee13eb9b8f44d63879c69b8a40a74b + sha256: d86dfd428b2e3c364fa90e07437c8405d635aa4ef54b25ab51d9c712be4112a5 category: main optional: false - name: charset-normalizer - version: 3.4.4 + version: 3.4.6 manager: conda platform: win-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.4-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.6-pyhd8ed1ab_0.conda hash: - md5: a22d1fd9bf98827e280a02875d9a007a - sha256: b32f8362e885f1b8417bac2b3da4db7323faa12d5db62b7fd6691c02d60d6f59 + md5: 49ee13eb9b8f44d63879c69b8a40a74b + sha256: d86dfd428b2e3c364fa90e07437c8405d635aa4ef54b25ab51d9c712be4112a5 category: main optional: false - name: click @@ -699,7 +687,7 @@ package: platform: linux-64 dependencies: __unix: '' - python: '>=3.10' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/click-8.3.1-pyh8f84b5b_1.conda hash: md5: ea8a6c3256897cc31263de9f455e25d9 @@ -713,7 +701,7 @@ package: dependencies: __win: '' colorama: '' - python: '>=3.10' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/click-8.3.1-pyha7b4d00_1.conda hash: md5: 6cd3ccc98bacfcc92b2bd7f236f01a7e @@ -725,7 +713,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.10' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/cloudpickle-3.1.2-pyhcf101f3_1.conda hash: md5: 61b8078a0905b12529abc622406cb62c @@ -737,7 +725,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.10' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/cloudpickle-3.1.2-pyhcf101f3_1.conda hash: md5: 61b8078a0905b12529abc622406cb62c @@ -780,8 +768,8 @@ package: hash: md5: 962b9857ee8e7018c22f2776ffa0b2d7 sha256: ab29d57dc70786c1269633ba3dff20288b81664d3ff8d21af995742e2bb03287 - category: main - optional: false + category: dev + optional: true - name: colorama version: 0.4.6 manager: conda @@ -803,12 +791,12 @@ package: libgcc: '>=14' libstdcxx: '>=14' numpy: '>=1.25' - python: '>=3.11,<3.12.0a0' - python_abi: 3.11.* - url: https://repo.prefix.dev/conda-forge/linux-64/contourpy-1.3.3-py311hdf67eae_3.conda + python: '' + python_abi: 3.13.* + url: https://repo.prefix.dev/conda-forge/linux-64/contourpy-1.3.3-py313hc8edb43_4.conda hash: - md5: c4e2f4d5193e55a70bb67a2aa07006ae - sha256: fde69b5ab61225daca6c2f05a93f94c06af93003e4f871d61470df5c4cf9587b + md5: 33639459bc29437315d4bff9ed5bc7a7 + sha256: 7f86eb205d2d7fcf2c82654a08c6a240623ac34cb406206b4b1f1afa5cda8e49 category: main optional: false - name: contourpy @@ -817,48 +805,48 @@ package: platform: win-64 dependencies: numpy: '>=1.25' - python: '>=3.11,<3.12.0a0' - python_abi: 3.11.* + python: '' + python_abi: 3.13.* ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/contourpy-1.3.3-py311h3fd045d_3.conda + url: https://repo.prefix.dev/conda-forge/win-64/contourpy-1.3.3-py313h1a38498_4.conda hash: - md5: 5e7e380c470e9f4683b3129fedafbcdf - sha256: ca1bde6f4afec87945c1186a307727ba7e151aabb46fc67683562319987b1088 + md5: 726aa233b5e4613e546ca84cd63cbd45 + sha256: fb254e7e29535ea0a63b8fba6299f7e4ccd0efcc40750c8cd64e42a0a3b79da7 category: main optional: false - name: coverage - version: 7.13.1 + version: 7.13.5 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - python: '>=3.11,<3.12.0a0' - python_abi: 3.11.* + python: '>=3.13,<3.14.0a0' + python_abi: 3.13.* tomli: '' - url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.13.1-py311h3778330_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.13.5-py313h3dea7bd_0.conda hash: - md5: 9d38ee59f3535da3ee59652dcef8fd96 - sha256: 86a8776cf59368a34133ab6328075a9b3c1b7fb51ca514d2441ef760098555cf + md5: acbda45380f5097ade59014704eb0ba0 + sha256: 4b38c6648d0ccd6dca1d1e0d826609aaf2fabfd662257c1fff00bdd0e69e02da category: dev optional: true - name: coverage - version: 7.13.1 + version: 7.13.5 manager: conda platform: win-64 dependencies: - python: '>=3.11,<3.12.0a0' - python_abi: 3.11.* + python: '>=3.13,<3.14.0a0' + python_abi: 3.13.* tomli: '' 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.13.1-py311h3f79411_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.13.5-py313hd650c13_0.conda hash: - md5: 2bc1a645fd4c574855277c6ab0061f49 - sha256: b61300f016be6bc7e2e06c603b5d23245958207ce829a466de32135f441f6670 + md5: 94e2634e6ba6eb34dd0917d47b05ba0a + sha256: a96787dec7bebe3acd7723fbcc061364672abec5d78e279005b467bd1c93053c category: dev optional: true - name: cycler @@ -866,7 +854,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.10' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhcf101f3_2.conda hash: md5: 4c2a8fef270f6c69591889b93f9f55c1 @@ -878,7 +866,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.10' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhcf101f3_2.conda hash: md5: 4c2a8fef270f6c69591889b93f9f55c1 @@ -886,7 +874,7 @@ package: category: main optional: false - name: dash - version: 3.3.0 + version: 3.4.0 manager: conda platform: linux-64 dependencies: @@ -900,14 +888,14 @@ package: setuptools: '' typing_extensions: '>=4.1.1' werkzeug: '' - url: https://repo.prefix.dev/conda-forge/noarch/dash-3.3.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/dash-3.4.0-pyhd8ed1ab_0.conda hash: - md5: 1e4dab5c51cef84cf867108cddb09835 - sha256: a8e6b531b5fb9582ce2087be74ebd57b095e9db4b1d25d03106b3259fe3259c5 + md5: 98e15866afcf0dd20a8e2c69b46810e9 + sha256: a522e42d24626efefb10b28ccca5ee45dbb12862f762b79d8c2acf6bc1ff2db9 category: main optional: false - name: dash - version: 3.3.0 + version: 3.4.0 manager: conda platform: win-64 dependencies: @@ -921,10 +909,10 @@ package: setuptools: '' typing_extensions: '>=4.1.1' werkzeug: '' - url: https://repo.prefix.dev/conda-forge/noarch/dash-3.3.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/dash-3.4.0-pyhd8ed1ab_0.conda hash: - md5: 1e4dab5c51cef84cf867108cddb09835 - sha256: a8e6b531b5fb9582ce2087be74ebd57b095e9db4b1d25d03106b3259fe3259c5 + md5: 98e15866afcf0dd20a8e2c69b46810e9 + sha256: a522e42d24626efefb10b28ccca5ee45dbb12862f762b79d8c2acf6bc1ff2db9 category: main optional: false - name: dash-ag-grid @@ -959,7 +947,7 @@ package: platform: linux-64 dependencies: dash: '>=3.0.4' - python: '>=3.10,<4.0' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/dash-bootstrap-components-2.0.4-pyhcf101f3_0.conda hash: md5: 26af33c7e6ae117319e93843e238d165 @@ -972,7 +960,7 @@ package: platform: win-64 dependencies: dash: '>=3.0.4' - python: '>=3.10,<4.0' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/dash-bootstrap-components-2.0.4-pyhcf101f3_0.conda hash: md5: 26af33c7e6ae117319e93843e238d165 @@ -1084,7 +1072,7 @@ package: category: main optional: false - name: dask-core - version: 2025.3.0 + version: 2025.3.1 manager: conda platform: linux-64 dependencies: @@ -1097,14 +1085,14 @@ package: python: '>=3.10' pyyaml: '>=5.3.1' toolz: '>=0.10.0' - url: https://repo.prefix.dev/conda-forge/noarch/dask-core-2025.3.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/dask-core-2025.3.1-pyhd8ed1ab_0.conda hash: - md5: 36f6cc22457e3d6a6051c5370832f96c - sha256: 72badd945d856d2928fdbe051f136f903bcfee8136f1526c8362c6c465b793ec + md5: c7ef8a7bd2da4c8ba61688cfba29ce86 + sha256: 23db7a0ac393939cadf04441022bc1954d108f44f3469996d405cb522b9ff61c category: main optional: false - name: dask-core - version: 2025.3.0 + version: 2025.3.1 manager: conda platform: win-64 dependencies: @@ -1117,10 +1105,10 @@ package: python: '>=3.10' pyyaml: '>=5.3.1' toolz: '>=0.10.0' - url: https://repo.prefix.dev/conda-forge/noarch/dask-core-2025.3.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/dask-core-2025.3.1-pyhd8ed1ab_0.conda hash: - md5: 36f6cc22457e3d6a6051c5370832f96c - sha256: 72badd945d856d2928fdbe051f136f903bcfee8136f1526c8362c6c465b793ec + md5: c7ef8a7bd2da4c8ba61688cfba29ce86 + sha256: 23db7a0ac393939cadf04441022bc1954d108f44f3469996d405cb522b9ff61c category: main optional: false - name: dav1d @@ -1150,27 +1138,27 @@ package: category: main optional: false - name: dill - version: 0.4.0 + version: 0.4.1 manager: conda platform: linux-64 dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhcf101f3_1.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.1-pyhcf101f3_0.conda hash: - md5: eec5b361dbbaa69dba05050977a414b0 - sha256: c0c91bd91e59940091cec1760db51a82a58e9c64edf4b808bd2da94201ccfdb4 + md5: 080a808fce955026bf82107d955d32da + sha256: 1ef84c0cc4efd0c2d58c3cb365945edbd9ee42a1c54514d1ccba4b641005f757 category: dev optional: true - name: dill - version: 0.4.0 + version: 0.4.1 manager: conda platform: win-64 dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhcf101f3_1.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.1-pyhcf101f3_0.conda hash: - md5: eec5b361dbbaa69dba05050977a414b0 - sha256: c0c91bd91e59940091cec1760db51a82a58e9c64edf4b808bd2da94201ccfdb4 + md5: 080a808fce955026bf82107d955d32da + sha256: 1ef84c0cc4efd0c2d58c3cb365945edbd9ee42a1c54514d1ccba4b641005f757 category: dev optional: true - name: docutils @@ -1224,45 +1212,43 @@ package: category: dev optional: true - name: flask - version: 3.1.2 + version: 3.1.3 manager: conda platform: linux-64 dependencies: blinker: '>=1.9.0' click: '>=8.1.3' - importlib-metadata: '>=3.6.0' itsdangerous: '>=2.2.0' jinja2: '>=3.1.2' markupsafe: '>=2.1.1' - python: '>=3.9' + python: '' werkzeug: '>=3.1.0' - url: https://repo.prefix.dev/conda-forge/noarch/flask-3.1.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/flask-3.1.3-pyhcf101f3_1.conda hash: - md5: ba67a9febeda36948fee26a3dec3d914 - sha256: 8a97eba37e0723720706d4636cc89c6b07eea1b7cc66fd8994fa8983a81ed988 + md5: 156398929bf849da6df8f89a2c390185 + sha256: 3980dfba1e3900106cc3e6210294e73f50d02a67fdfe7b3bb36b2721ba9379cb category: main optional: false - name: flask - version: 3.1.2 + version: 3.1.3 manager: conda platform: win-64 dependencies: blinker: '>=1.9.0' click: '>=8.1.3' - importlib-metadata: '>=3.6.0' itsdangerous: '>=2.2.0' jinja2: '>=3.1.2' markupsafe: '>=2.1.1' - python: '>=3.9' + python: '' werkzeug: '>=3.1.0' - url: https://repo.prefix.dev/conda-forge/noarch/flask-3.1.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/flask-3.1.3-pyhcf101f3_1.conda hash: - md5: ba67a9febeda36948fee26a3dec3d914 - sha256: 8a97eba37e0723720706d4636cc89c6b07eea1b7cc66fd8994fa8983a81ed988 + md5: 156398929bf849da6df8f89a2c390185 + sha256: 3980dfba1e3900106cc3e6210294e73f50d02a67fdfe7b3bb36b2721ba9379cb category: main optional: false - name: fonttools - version: 4.61.1 + version: 4.62.0 manager: conda platform: linux-64 dependencies: @@ -1270,82 +1256,80 @@ package: brotli: '' libgcc: '>=14' munkres: '' - python: '>=3.11,<3.12.0a0' - python_abi: 3.11.* - unicodedata2: '>=15.1.0' - url: https://repo.prefix.dev/conda-forge/linux-64/fonttools-4.61.1-py311h3778330_0.conda + python: '>=3.13,<3.14.0a0' + python_abi: 3.13.* + url: https://repo.prefix.dev/conda-forge/linux-64/fonttools-4.62.0-py313h3dea7bd_0.conda hash: - md5: 2e8ccb31890a95d5cd90d74a11c7d5e2 - sha256: 8f7eb3a66854785ae1867386f6c8d19791fac7a4d41b335d3117a6e896a154f1 + md5: e479cfdec38fb69dc81ce8806b5c75f6 + sha256: 259c633b5f5f3202f851a00953ae98f00a9e3c68747fc011aa0f59169128220f category: main optional: false - name: fonttools - version: 4.61.1 + version: 4.62.0 manager: conda platform: win-64 dependencies: brotli: '' munkres: '' - python: '>=3.11,<3.12.0a0' - python_abi: 3.11.* + python: '>=3.13,<3.14.0a0' + python_abi: 3.13.* ucrt: '>=10.0.20348.0' - unicodedata2: '>=15.1.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/fonttools-4.61.1-py311h3f79411_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/fonttools-4.62.0-py313hd650c13_0.conda hash: - md5: e5445b571c6e2919198c40c6db3d25c5 - sha256: a7016eacda74ba1eafde803f6e3d7807f79fa83f50394cafc498d362b0f43aac + md5: 8bea8a8b3e5b1e405ef873bccd252a7e + sha256: 8371705abef41009efa7bf4910e58363e6022c7796b50c819f81dc0e0560c243 category: main optional: false - name: freetype - version: 2.14.1 + version: 2.14.2 manager: conda platform: linux-64 dependencies: - libfreetype: 2.14.1 - libfreetype6: 2.14.1 - url: https://repo.prefix.dev/conda-forge/linux-64/freetype-2.14.1-ha770c72_0.conda + libfreetype: 2.14.2 + libfreetype6: 2.14.2 + url: https://repo.prefix.dev/conda-forge/linux-64/freetype-2.14.2-ha770c72_0.conda hash: - md5: 4afc585cd97ba8a23809406cd8a9eda8 - sha256: bf8e4dffe46f7d25dc06f31038cacb01672c47b9f45201f065b0f4d00ab0a83e + md5: eeec961fec28e747e1e1dc0446277452 + sha256: 36857701b46828b6760c3c1652414ee504e7fc12740261ac6fcff3959b72bd7a category: main optional: false - name: freetype - version: 2.14.1 + version: 2.14.2 manager: conda platform: win-64 dependencies: - libfreetype: 2.14.1 - libfreetype6: 2.14.1 - url: https://repo.prefix.dev/conda-forge/win-64/freetype-2.14.1-h57928b3_0.conda + libfreetype: 2.14.2 + libfreetype6: 2.14.2 + url: https://repo.prefix.dev/conda-forge/win-64/freetype-2.14.2-h57928b3_0.conda hash: - md5: d69c21967f35eb2ce7f1f85d6b6022d3 - sha256: a9b3313edea0bf14ea6147ea43a1059d0bf78771a1336d2c8282891efc57709a + md5: c360b467564b875a9f5dc481b8726cee + sha256: 6dd4bb3862ea3d07015331059504cf3b6af1a11a6909e7a9b6e04a20e253da28 category: main optional: false - name: fsspec - version: 2025.12.0 + version: 2026.2.0 manager: conda platform: linux-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2025.12.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2026.2.0-pyhd8ed1ab_0.conda hash: - md5: a3b9510e2491c20c7fc0f5e730227fbb - sha256: 64a4ed910e39d96cd590d297982b229c57a08e70450d489faa34fd2bec36dbcc + md5: 496c6c9411a6284addf55c898d6ed8d7 + sha256: 239b67edf1c5e5caed52cf36e9bed47cb21b37721779828c130e6b3fd9793c1b category: main optional: false - name: fsspec - version: 2025.12.0 + version: 2026.2.0 manager: conda platform: win-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2025.12.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2026.2.0-pyhd8ed1ab_0.conda hash: - md5: a3b9510e2491c20c7fc0f5e730227fbb - sha256: 64a4ed910e39d96cd590d297982b229c57a08e70450d489faa34fd2bec36dbcc + md5: 496c6c9411a6284addf55c898d6ed8d7 + sha256: 239b67edf1c5e5caed52cf36e9bed47cb21b37721779828c130e6b3fd9793c1b category: main optional: false - name: giflib @@ -1381,7 +1365,7 @@ package: dependencies: hpack: '>=4.1,<5' hyperframe: '>=6.1,<7' - python: '>=3.10' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/h2-4.3.0-pyhcf101f3_0.conda hash: md5: 164fc43f0b53b6e3a7bc7dce5e4f1dc9 @@ -1395,7 +1379,7 @@ package: dependencies: hpack: '>=4.1,<5' hyperframe: '>=6.1,<7' - python: '>=3.10' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/h2-4.3.0-pyhcf101f3_0.conda hash: md5: 164fc43f0b53b6e3a7bc7dce5e4f1dc9 @@ -1412,12 +1396,12 @@ package: hdf5: '>=1.14.6,<1.14.7.0a0' libgcc: '>=14' 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.15.1-nompi_py311h0b2f468_101.conda + python: '>=3.13,<3.14.0a0' + python_abi: 3.13.* + url: https://repo.prefix.dev/conda-forge/linux-64/h5py-3.15.1-nompi_py313h253c126_101.conda hash: - md5: 1ce254e09ec4982ed0334e5e6f113e1c - sha256: 6bf4f9a6ab5ccbfd8a2a6f130d5c14cb12f77ada367d3fa7724cd2f6515bddab + md5: 5d90c98527ecc832287115d57c121062 + sha256: 2de2c63ad6e7483456f6ff359380df63edf32770c140ec08c904ff89b6ed3903 category: main optional: false - name: h5py @@ -1428,15 +1412,15 @@ package: cached-property: '' hdf5: '>=1.14.6,<1.14.7.0a0' numpy: '>=1.23,<3' - python: '>=3.11,<3.12.0a0' - python_abi: 3.11.* + python: '>=3.13,<3.14.0a0' + python_abi: 3.13.* 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.15.1-nompi_py311hc40ba4b_101.conda + url: https://repo.prefix.dev/conda-forge/win-64/h5py-3.15.1-nompi_py313hf7f959b_101.conda hash: - md5: cf3bc5405710829ee8bec294c2a4b9bc - sha256: 98488241676ffb248b9614054d5458d298398377c76f214de737200e77d5e754 + md5: 29bcfb479b3030e2c190f53058b9a345 + sha256: 29a78560dca6e278cff35f31867ba19c5b632010fb4ed800ffe67e0679be22d1 category: main optional: false - name: hdf5 @@ -1445,18 +1429,18 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libaec: '>=1.1.4,<2.0a0' - libcurl: '>=8.17.0,<9.0a0' + libaec: '>=1.1.5,<2.0a0' + libcurl: '>=8.18.0,<9.0a0' libgcc: '>=14' libgfortran: '' libgfortran5: '>=14.3.0' libstdcxx: '>=14' libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.5.4,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/hdf5-1.14.6-nompi_h1b119a7_104.conda + openssl: '>=3.5.5,<4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/hdf5-1.14.6-nompi_h19486de_106.conda hash: - md5: 0857f4d157820dcd5625f61fdfefb780 - sha256: 454e9724b322cee277abd7acf4f8d688e9c4ded006b6d5bc9fcc2a1ff907d27a + md5: c223ee1429ba538f3e48cfb4a0b97357 + sha256: 1fc50ce3b86710fba3ec9c5714f1612b5ffa4230d70bfe43e2a1436eacba1621 category: main optional: false - name: hdf5 @@ -1464,17 +1448,17 @@ package: manager: conda platform: win-64 dependencies: - libaec: '>=1.1.4,<2.0a0' - libcurl: '>=8.17.0,<9.0a0' + libaec: '>=1.1.5,<2.0a0' + libcurl: '>=8.18.0,<9.0a0' libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.5.4,<4.0a0' + openssl: '>=3.5.5,<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/hdf5-1.14.6-nompi_h89f0904_104.conda + url: https://repo.prefix.dev/conda-forge/win-64/hdf5-1.14.6-nompi_hae35d4c_106.conda hash: - md5: 9cc4a5567d46c7fcde99563e86522882 - sha256: cc948149f700033ff85ce4a1854edf6adcb5881391a3df5c40cbe2a793dd9f81 + md5: e2fb54650b51dcd92dfcbf42d2222ff8 + sha256: d9f8f202ee91ae93515b18c498970f178dfd061743f25a65a205f848e197437f category: main optional: false - name: hpack @@ -1526,31 +1510,17 @@ package: category: main optional: false - name: icu - version: '78.2' + version: '78.3' manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' libstdcxx: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/icu-78.2-h33c6efd_0.conda - hash: - md5: 186a18e3ba246eccfc7cff00cd19a870 - sha256: 142a722072fa96cf16ff98eaaf641f54ab84744af81754c292cb81e0881c0329 - category: main - optional: false -- name: icu - version: '78.2' - 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/icu-78.2-h637d24d_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/icu-78.3-h33c6efd_0.conda hash: - md5: 0ee3bb487600d5e71ab7d28951b2016a - sha256: 5a41fb28971342e293769fc968b3414253a2f8d9e30ed7c31517a15b4887246a + md5: c80d8a3b84358cb967fa81e7075fbc8a + sha256: fbf86c4a59c2ed05bbffb2ba25c7ed94f6185ec30ecb691615d42342baa1a16a category: main optional: false - name: idna @@ -1578,7 +1548,7 @@ package: category: main optional: false - name: imagecodecs - version: 2026.1.1 + version: 2026.3.6 manager: conda platform: linux-64 dependencies: @@ -1586,23 +1556,23 @@ package: blosc: '>=1.21.6,<2.0a0' brunsli: '>=0.1,<1.0a0' bzip2: '>=1.0.8,<2.0a0' - c-blosc2: '>=2.22.0,<2.23.0a0' - charls: '>=2.4.2,<2.5.0a0' + c-blosc2: '>=2.23.1,<2.24.0a0' + charls: '>=2.4.3,<2.5.0a0' giflib: '>=5.2.2,<5.3.0a0' jxrlib: '>=1.1,<1.2.0a0' - lcms2: '>=2.17,<3.0a0' + lcms2: '>=2.18,<3.0a0' lerc: '>=4.0.0,<5.0a0' - libaec: '>=1.1.4,<2.0a0' - libavif16: '>=1.3.0,<2.0a0' + libaec: '>=1.1.5,<2.0a0' + libavif16: '>=1.4.0,<2.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.2,<4.0a0' - libjxl: '>=0.11,<0.12.0a0' - liblzma: '>=5.8.1,<6.0a0' - libpng: '>=1.6.53,<1.7.0a0' + libjxl: '>=0.11,<1.0a0' + liblzma: '>=5.8.2,<6.0a0' + libpng: '>=1.6.55,<1.7.0a0' libstdcxx: '>=14' libtiff: '>=4.7.1,<4.8.0a0' libwebp-base: '>=1.6.0,<2.0a0' @@ -1611,42 +1581,42 @@ package: lz4-c: '>=1.10.0,<1.11.0a0' numpy: '>=1.23,<3' openjpeg: '>=2.5.4,<3.0a0' - openjph: '>=0.26.0,<0.27.0a0' - python: '>=3.11,<3.12.0a0' - python_abi: 3.11.* + openjph: '>=0.26.3,<0.27.0a0' + python: '>=3.13,<3.14.0a0' + python_abi: 3.13.* snappy: '>=1.2.2,<1.3.0a0' zfp: '>=1.0.1,<2.0a0' - zlib-ng: '>=2.3.2,<2.4.0a0' + zlib-ng: '>=2.3.3,<2.4.0a0' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/imagecodecs-2026.1.1-py311h273f733_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/imagecodecs-2026.3.6-py313h67fa517_1.conda hash: - md5: 1e2ccd20e277220a515d2afe5a810917 - sha256: 39e8bb0d12b78c17e654c5462e3dfa21d66ea727d3cebcca3b7e742533cdb0f9 + md5: d6b7103e094d82bc1ae137787fd5cedf + sha256: d58d2b24d2182d0095c3a38cf5ef234ca53b0124915df0488fbbe474976ece50 category: main optional: false - name: imagecodecs - version: 2026.1.1 + version: 2026.3.6 manager: conda platform: win-64 dependencies: blosc: '>=1.21.6,<2.0a0' bzip2: '>=1.0.8,<2.0a0' - c-blosc2: '>=2.22.0,<2.23.0a0' - charls: '>=2.4.2,<2.5.0a0' + c-blosc2: '>=2.23.1,<2.24.0a0' + charls: '>=2.4.3,<2.5.0a0' giflib: '>=5.2.2,<5.3.0a0' jxrlib: '>=1.1,<1.2.0a0' - lcms2: '>=2.17,<3.0a0' + lcms2: '>=2.18,<3.0a0' lerc: '>=4.0.0,<5.0a0' - libaec: '>=1.1.4,<2.0a0' - libavif16: '>=1.3.0,<2.0a0' + libaec: '>=1.1.5,<2.0a0' + libavif16: '>=1.4.0,<2.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.2,<4.0a0' - libjxl: '>=0.11,<0.12.0a0' - liblzma: '>=5.8.1,<6.0a0' - libpng: '>=1.6.53,<1.7.0a0' + libjxl: '>=0.11,<1.0a0' + liblzma: '>=5.8.2,<6.0a0' + libpng: '>=1.6.55,<1.7.0a0' libtiff: '>=4.7.1,<4.8.0a0' libwebp-base: '>=1.6.0,<2.0a0' libzlib: '>=1.3.1,<2.0a0' @@ -1654,20 +1624,20 @@ package: lz4-c: '>=1.10.0,<1.11.0a0' numpy: '>=1.23,<3' openjpeg: '>=2.5.4,<3.0a0' - openjph: '>=0.26.0,<0.27.0a0' - python: '>=3.11,<3.12.0a0' - python_abi: 3.11.* + openjph: '>=0.26.3,<0.27.0a0' + python: '>=3.13,<3.14.0a0' + python_abi: 3.13.* snappy: '>=1.2.2,<1.3.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' zfp: '>=1.0.1,<2.0a0' - zlib-ng: '>=2.3.2,<2.4.0a0' + zlib-ng: '>=2.3.3,<2.4.0a0' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/imagecodecs-2026.1.1-py311h1fd7c61_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/imagecodecs-2026.3.6-py313h43f6f17_1.conda hash: - md5: 2f313d813d5020dd64521b6e79e99e79 - sha256: a6a929a882997d229158b5b3710ac8f52e3f366e891c01fffb6c978e61c2d8c7 + md5: c2087eca9711ef7c4e5211043bdec4b4 + sha256: f81909c65dd6754e103bf8677867c305c13f00906e7358cef55caa57bdde7998 category: main optional: false - name: imageio @@ -1699,27 +1669,27 @@ package: category: main optional: false - name: imagesize - version: 1.4.1 + version: 2.0.0 manager: conda platform: linux-64 dependencies: - python: '>=3.4' - url: https://repo.prefix.dev/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2 + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/imagesize-2.0.0-pyhd8ed1ab_0.conda hash: - md5: 7de5386c8fea29e76b303f37dde4c352 - sha256: c2bfd7043e0c4c12d8b5593de666c1e81d67b83c474a0a79282cc5c4ef845460 + md5: 92617c2ba2847cca7a6ed813b6f4ab79 + sha256: 5a047f9eac290e679b4e6f6f4cbfcc5acdfbf031a4f06824d4ddb590cdbb850b category: dev optional: true - name: imagesize - version: 1.4.1 + version: 2.0.0 manager: conda platform: win-64 dependencies: - python: '>=3.4' - url: https://repo.prefix.dev/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2 + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/imagesize-2.0.0-pyhd8ed1ab_0.conda hash: - md5: 7de5386c8fea29e76b303f37dde4c352 - sha256: c2bfd7043e0c4c12d8b5593de666c1e81d67b83c474a0a79282cc5c4ef845460 + md5: 92617c2ba2847cca7a6ed813b6f4ab79 + sha256: 5a047f9eac290e679b4e6f6f4cbfcc5acdfbf031a4f06824d4ddb590cdbb850b category: dev optional: true - name: importlib-metadata @@ -1727,7 +1697,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' zipp: '>=3.20' url: https://repo.prefix.dev/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda hash: @@ -1740,7 +1710,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' zipp: '>=3.20' url: https://repo.prefix.dev/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda hash: @@ -1773,29 +1743,29 @@ package: category: dev optional: true - name: isort - version: 7.0.0 + version: 8.0.1 manager: conda platform: linux-64 dependencies: 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 + url: https://repo.prefix.dev/conda-forge/noarch/isort-8.0.1-pyhd8ed1ab_0.conda hash: - md5: 55a61979242077b2cc377c74326ea9f0 - sha256: 13b0005877f553eb2e5c50447c9d0047e7257124ec2d1569d7dad35697790237 + md5: 98cdd8615792e90da1023bc546f806d9 + sha256: cc5c2b513143ea9675ba5b3570182f7568fd1029b299ee3bc58424dcce8c5539 category: dev optional: true - name: isort - version: 7.0.0 + version: 8.0.1 manager: conda platform: win-64 dependencies: 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 + url: https://repo.prefix.dev/conda-forge/noarch/isort-8.0.1-pyhd8ed1ab_0.conda hash: - md5: 55a61979242077b2cc377c74326ea9f0 - sha256: 13b0005877f553eb2e5c50447c9d0047e7257124ec2d1569d7dad35697790237 + md5: 98cdd8615792e90da1023bc546f806d9 + sha256: cc5c2b513143ea9675ba5b3570182f7568fd1029b299ee3bc58424dcce8c5539 category: dev optional: true - name: itsdangerous @@ -1828,7 +1798,7 @@ package: platform: linux-64 dependencies: markupsafe: '>=2.0' - python: '>=3.10' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhcf101f3_1.conda hash: md5: 04558c96691bed63104678757beb4f8d @@ -1841,7 +1811,7 @@ package: platform: win-64 dependencies: markupsafe: '>=2.0' - python: '>=3.10' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhcf101f3_1.conda hash: md5: 04558c96691bed63104678757beb4f8d @@ -1888,7 +1858,7 @@ package: category: main optional: false - name: kiwisolver - version: 1.4.9 + version: 1.5.0 manager: conda platform: linux-64 dependencies: @@ -1896,190 +1866,189 @@ package: libgcc: '>=14' libstdcxx: '>=14' python: '' - python_abi: 3.11.* - url: https://repo.prefix.dev/conda-forge/linux-64/kiwisolver-1.4.9-py311h724c32c_2.conda + python_abi: 3.13.* + url: https://repo.prefix.dev/conda-forge/linux-64/kiwisolver-1.5.0-py313hc8edb43_0.conda hash: - md5: 4089f739463c798e10d8644bc34e24de - sha256: 81181e88c0d49cc86bc687e2583da0cb0b651525bf17d4f4f3aecb1596441769 + md5: b81883b9dbf5069821c2fb09a8ba1407 + sha256: 0447d2901639f295989c5ccba7b1c367ed78b216e0d2705327a8c8a87a31177e category: main optional: false - name: kiwisolver - version: 1.4.9 + version: 1.5.0 manager: conda platform: win-64 dependencies: python: '' - python_abi: 3.11.* + python_abi: 3.13.* ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/kiwisolver-1.4.9-py311h275cad7_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/kiwisolver-1.5.0-py313h1a38498_0.conda hash: - md5: e9eb24a8d111be48179bf82a9e0e13ca - sha256: 29a932673249b8c821c3074223296aa1fd3934474fadad2b2daa5ebb4830f420 + md5: 7e40c4c1af80d907eb2973ab73418095 + sha256: 58c7b7d85ea3c0fac593fde238b994ee2d4fa8467decfe369dabfb5516b7ded4 category: main optional: false - name: krb5 - version: 1.21.3 + version: 1.22.2 manager: conda platform: linux-64 dependencies: - keyutils: '>=1.6.1,<2.0a0' - libedit: '>=3.1.20191231,<4.0a0' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - openssl: '>=3.3.1,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda + __glibc: '>=2.17,<3.0.a0' + keyutils: '>=1.6.3,<2.0a0' + libedit: '>=3.1.20250104,<4.0a0' + libgcc: '>=14' + libstdcxx: '>=14' + openssl: '>=3.5.5,<4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/krb5-1.22.2-ha1258a1_0.conda hash: - md5: 3f43953b7d3fb3aaa1d0d0723d91e368 - sha256: 99df692f7a8a5c27cd14b5fb1374ee55e756631b9c3d659ed3ee60830249b238 + md5: fb53fb07ce46a575c5d004bbc96032c2 + sha256: 3e307628ca3527448dd1cb14ad7bb9d04d1d28c7d4c5f97ba196ae984571dd25 category: main optional: false - name: krb5 - version: 1.21.3 + version: 1.22.2 manager: conda platform: win-64 dependencies: - openssl: '>=3.3.1,<4.0a0' + openssl: '>=3.5.5,<4.0a0' ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/krb5-1.21.3-hdf4eb48_0.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/krb5-1.22.2-h0ea6238_0.conda hash: - md5: 31aec030344e962fbd7dbbbbd68e60a9 - sha256: 18e8b3430d7d232dad132f574268f56b3eb1a19431d6d5de8c53c29e6c18fa81 + md5: 4432f52dc0c8eb6a7a6abc00a037d93c + sha256: eb60f1ad8b597bcf95dee11bc11fe71a8325bc1204cf51d2bb1f2120ffd77761 category: main optional: false - name: lazy-loader - version: '0.4' + version: '0.5' manager: conda platform: linux-64 dependencies: - importlib-metadata: '' packaging: '' - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/lazy-loader-0.4-pyhd8ed1ab_2.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/lazy-loader-0.5-pyhd8ed1ab_0.conda hash: - md5: d10d9393680734a8febc4b362a4c94f2 - sha256: d7ea986507090fff801604867ef8e79c8fda8ec21314ba27c032ab18df9c3411 + md5: 75932da6f03a6bef32b70a51e991f6eb + sha256: 1a88069ac61d2756ccaf26a6c206ab4d56610fb054bd2fffb5df4cd0744ab78e category: main optional: false - name: lazy-loader - version: '0.4' + version: '0.5' manager: conda platform: win-64 dependencies: - importlib-metadata: '' packaging: '' - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/lazy-loader-0.4-pyhd8ed1ab_2.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/lazy-loader-0.5-pyhd8ed1ab_0.conda hash: - md5: d10d9393680734a8febc4b362a4c94f2 - sha256: d7ea986507090fff801604867ef8e79c8fda8ec21314ba27c032ab18df9c3411 + md5: 75932da6f03a6bef32b70a51e991f6eb + sha256: 1a88069ac61d2756ccaf26a6c206ab4d56610fb054bd2fffb5df4cd0744ab78e category: main optional: false - name: lcms2 - version: '2.17' + version: '2.18' manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - libjpeg-turbo: '>=3.0.0,<4.0a0' - libtiff: '>=4.7.0,<4.8.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/lcms2-2.17-h717163a_0.conda + libgcc: '>=14' + libjpeg-turbo: '>=3.1.2,<4.0a0' + libtiff: '>=4.7.1,<4.8.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/lcms2-2.18-h0c24ade_0.conda hash: - md5: 000e85703f0fd9594c81710dd5066471 - sha256: d6a61830a354da022eae93fa896d0991385a875c6bba53c82263a289deda9db8 + md5: 6f2e2c8f58160147c4d1c6f4c14cbac4 + sha256: 836ec4b895352110335b9fdcfa83a8dcdbe6c5fb7c06c4929130600caea91c0a category: main optional: false - name: lcms2 - version: '2.17' + version: '2.18' manager: conda platform: win-64 dependencies: - libjpeg-turbo: '>=3.0.0,<4.0a0' - libtiff: '>=4.7.0,<4.8.0a0' + libjpeg-turbo: '>=3.1.2,<4.0a0' + libtiff: '>=4.7.1,<4.8.0a0' ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/lcms2-2.17-hbcf6048_0.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/lcms2-2.18-hf2c6c5f_0.conda hash: - md5: 3538827f77b82a837fa681a4579e37a1 - sha256: 7712eab5f1a35ca3ea6db48ead49e0d6ac7f96f8560da8023e61b3dbe4f3b25d + md5: b6c68d6b829b044cd17a41e0a8a23ca1 + sha256: 7eeb18c5c86db146b62da66d9e8b0e753a52987f9134a494309588bbeceddf28 category: main optional: false - name: ld_impl_linux-64 - version: '2.45' + version: 2.45.1 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.45-default_hbd61a6d_105.conda + url: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.45.1-default_hbd61a6d_101.conda hash: - md5: 3ec0aa5037d39b06554109a01e6fb0c6 - sha256: 1027bd8aa0d5144e954e426ab6218fd5c14e54a98f571985675468b339c808ca + md5: 12bd9a3f089ee6c9266a37dab82afabd + sha256: 565941ac1f8b0d2f2e8f02827cbca648f4d18cd461afc31f15604cd291b5c5f3 category: main optional: false - name: lerc - version: 4.0.0 + version: 4.1.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - libstdcxx: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/lerc-4.0.0-h0aef613_1.conda + libgcc: '>=14' + libstdcxx: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/lerc-4.1.0-hdb68285_0.conda hash: - md5: 9344155d33912347b37f0ae6c410a835 - sha256: 412381a43d5ff9bbed82cd52a0bbca5b90623f62e41007c9c42d3870c60945ff + md5: a752488c68f2e7c456bcbd8f16eec275 + sha256: f84cb54782f7e9cea95e810ea8fef186e0652d0fa73d3009914fa2c1262594e1 category: main optional: false - name: lerc - version: 4.0.0 + version: 4.1.0 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/lerc-4.0.0-h6470a55_1.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/lerc-4.1.0-hd936e49_0.conda hash: - md5: c1b81da6d29a14b542da14a36c9fbf3f - sha256: 868a3dff758cc676fa1286d3f36c3e0101cca56730f7be531ab84dc91ec58e9d + md5: 54b231d595bc1ff9bff668dd443ee012 + sha256: 45df58fca800b552b17c3914cc9ab0d55a82c5172d72b5c44a59c710c06c5473 category: main optional: false - name: libaec - version: 1.1.4 + version: 1.1.5 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - libstdcxx: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libaec-1.1.4-h3f801dc_0.conda + libgcc: '>=14' + libstdcxx: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/libaec-1.1.5-h088129d_0.conda hash: - md5: 01ba04e414e47f95c03d6ddd81fd37be - sha256: 410ab78fe89bc869d435de04c9ffa189598ac15bb0fe1ea8ace8fb1b860a2aa3 + md5: 86f7414544ae606282352fa1e116b41f + sha256: 822e4ae421a7e9c04e841323526321185f6659222325e1a9aedec811c686e688 category: main optional: false - name: libaec - version: 1.1.4 + version: 1.1.5 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libaec-1.1.4-h20038f6_0.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/libaec-1.1.5-haf901d7_0.conda hash: - md5: 85a2bed45827d77d5b308cb2b165404f - sha256: 0be89085effce9fdcbb6aea7acdb157b18793162f68266ee0a75acf615d4929b + md5: 43b6385cfad52a7083f2c41984eb4e91 + sha256: e54c08964262c73671d9e80e400333e59c617e0b454476ad68933c0c458156c8 category: main optional: false - name: libavif16 - version: 1.3.0 + version: 1.4.0 manager: conda platform: linux-64 dependencies: @@ -2087,31 +2056,31 @@ package: aom: '>=3.9.1,<3.10.0a0' dav1d: '>=1.2.1,<1.2.2.0a0' libgcc: '>=14' - rav1e: '>=0.7.1,<0.8.0a0' - svt-av1: '>=3.1.2,<3.1.3.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libavif16-1.3.0-h6395336_2.conda + rav1e: '>=0.8.1,<0.9.0a0' + svt-av1: '>=4.0.1,<4.0.2.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/libavif16-1.4.0-hcfa2d63_0.conda hash: - md5: c09c4ac973f7992ba0c6bb1aafd77bd4 - sha256: e3a44c0eda23aa15c9a8dfa8c82ecf5c8b073e68a16c29edd0e409e687056d30 + md5: e226d3dbe1e2482fd8e15cb924fd1e7c + sha256: 918fd09af66968361c8fa40a76f864b7febb8286dd5dcb1419517b9db950c84c category: main optional: false - name: libavif16 - version: 1.3.0 + version: 1.4.0 manager: conda platform: win-64 dependencies: - _libavif_api: '>=1.3.0,<1.3.1.0a0' + _libavif_api: '>=1.4.0,<1.4.1.0a0' aom: '>=3.9.1,<3.10.0a0' dav1d: '>=1.2.1,<1.2.2.0a0' - rav1e: '>=0.7.1,<0.8.0a0' - svt-av1: '>=3.1.2,<3.1.3.0a0' + rav1e: '>=0.8.1,<0.9.0a0' + svt-av1: '>=4.0.1,<4.0.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/libavif16-1.3.0-he916da2_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/libavif16-1.4.0-h41d0b9c_0.conda hash: - md5: 9782ce5bf5a3b41f29533c2c08f6b360 - sha256: dbb3f21282eccba6e4bd70c9db371e081bf09c55f1de7ca90f1106cc199d4a8b + md5: 6e93fb228d0dbf14658c10f1c7bb54ce + sha256: ee33f0e1da48b5cf3267752d976bb47a00b78fc1b2528698e59afbc2a2645348 category: main optional: false - name: libblas @@ -2119,7 +2088,7 @@ package: manager: conda platform: linux-64 dependencies: - libopenblas: '>=0.3.30,<0.3.31.0a0' + libopenblas: '>=0.3.30,<1.0a0' url: https://repo.prefix.dev/conda-forge/linux-64/libblas-3.11.0-5_h4a7cf45_openblas.conda hash: md5: c160954f7418d7b6e87eaf05a8913fa9 @@ -2248,39 +2217,39 @@ package: category: main optional: false - name: libcurl - version: 8.18.0 + version: 8.19.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - krb5: '>=1.21.3,<1.22.0a0' + krb5: '>=1.22.2,<1.23.0a0' libgcc: '>=14' libnghttp2: '>=1.67.0,<2.0a0' libssh2: '>=1.11.1,<2.0a0' libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.5.4,<4.0a0' + openssl: '>=3.5.5,<4.0a0' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libcurl-8.18.0-h4e3cde8_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libcurl-8.19.0-hcf29cc6_0.conda hash: - md5: 0a5563efed19ca4461cf927419b6eb73 - sha256: 5454709d9fb6e9c3dd6423bc284fa7835a7823bfa8323f6e8786cdd555101fab + md5: d50608c443a30c341c24277d28290f76 + sha256: a0390fd0536ebcd2244e243f5f00ab8e76ab62ed9aa214cd54470fe7496620f4 category: main optional: false - name: libcurl - version: 8.18.0 + version: 8.19.0 manager: conda platform: win-64 dependencies: - krb5: '>=1.21.3,<1.22.0a0' + krb5: '>=1.22.2,<1.23.0a0' libssh2: '>=1.11.1,<2.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/libcurl-8.18.0-h43ecb02_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libcurl-8.19.0-h8206538_0.conda hash: - md5: 2688214a9bee5d5650cd4f5f6af5c8f2 - sha256: 86258e30845571ea13855e8a0605275905781476f3edf8ae5df90a06fcada93a + md5: ed181e29a7ebf0f60b84b98d6140a340 + sha256: 6b2143ba5454b399dab4471e9e1d07352a2f33b569975e6b8aedc2d9bf51cbb0 category: main optional: false - name: libdeflate @@ -2337,30 +2306,30 @@ package: category: main optional: false - name: libexpat - version: 2.7.3 + version: 2.7.4 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libexpat-2.7.3-hecca717_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libexpat-2.7.4-hecca717_0.conda hash: - md5: 8b09ae86839581147ef2e5c5e229d164 - sha256: 1e1b08f6211629cbc2efe7a5bca5953f8f6b3cae0eeb04ca4dacee1bd4e2db2f + md5: e7f7ce06ec24cfcfb9e36d28cf82ba57 + sha256: d78f1d3bea8c031d2f032b760f36676d87929b18146351c4464c66b0869df3f5 category: main optional: false - name: libexpat - version: 2.7.3 + version: 2.7.4 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/libexpat-2.7.3-hac47afa_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libexpat-2.7.4-hac47afa_0.conda hash: - md5: 8c9e4f1a0e688eef2e95711178061a0f - sha256: 844ab708594bdfbd7b35e1a67c379861bcd180d6efe57b654f482ae2f7f5c21e + md5: 1c1ced969021592407f16ada4573586d + sha256: b31f6fb629c4e17885aaf2082fb30384156d16b48b264e454de4a06a313b533d category: main optional: false - name: libffi @@ -2370,10 +2339,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libffi-3.5.2-h9ec8514_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libffi-3.5.2-h3435931_0.conda hash: - md5: 35f29eec58405aaf55e01cb470d8c26a - sha256: 25cbdfa65580cfab1b8d15ee90b4c9f1e0d72128f1661449c9a999d341377d54 + md5: a360c33a5abe61c07959e449fa1453eb + sha256: 31f19b6a88ce40ebc0d5a992c131f57d919f73c0b92cd1617a5bec83f6e961e6 category: main optional: false - name: libffi @@ -2384,65 +2353,65 @@ package: ucrt: '>=10.0.20348.0' 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 + url: https://repo.prefix.dev/conda-forge/win-64/libffi-3.5.2-h3d046cb_0.conda hash: - md5: ba4ad812d2afc22b9a34ce8327a0930f - sha256: ddff25aaa4f0aa535413f5d831b04073789522890a4d8626366e43ecde1534a3 + md5: 720b39f5ec0610457b725eb3f396219a + sha256: 59d01f2dfa8b77491b5888a5ab88ff4e1574c9359f7e229da254cdfe27ddc190 category: main optional: false - name: libfreetype - version: 2.14.1 + version: 2.14.2 manager: conda platform: linux-64 dependencies: - libfreetype6: '>=2.14.1' - url: https://repo.prefix.dev/conda-forge/linux-64/libfreetype-2.14.1-ha770c72_0.conda + libfreetype6: '>=2.14.2' + url: https://repo.prefix.dev/conda-forge/linux-64/libfreetype-2.14.2-ha770c72_0.conda hash: - md5: f4084e4e6577797150f9b04a4560ceb0 - sha256: 4641d37faeb97cf8a121efafd6afd040904d4bca8c46798122f417c31d5dfbec + md5: 26c746d14402a3b6c684d045b23b9437 + sha256: 2e1bfe1e856eb707d258f669ef6851af583ceaffab5e64821b503b0f7cd09e9e category: main optional: false - name: libfreetype - version: 2.14.1 + version: 2.14.2 manager: conda platform: win-64 dependencies: - libfreetype6: '>=2.14.1' - url: https://repo.prefix.dev/conda-forge/win-64/libfreetype-2.14.1-h57928b3_0.conda + libfreetype6: '>=2.14.2' + url: https://repo.prefix.dev/conda-forge/win-64/libfreetype-2.14.2-h57928b3_0.conda hash: - md5: 3235024fe48d4087721797ebd6c9d28c - sha256: 2029702ec55e968ce18ec38cc8cf29f4c8c4989a0d51797164dab4f794349a64 + md5: 153d52fd0e4ba2a5bd5bb4f4afa41417 + sha256: 427c3072b311e65bd3eae3fcb78f6847b15b2dbb173a8546424de56550b2abfb category: main optional: false - name: libfreetype6 - version: 2.14.1 + version: 2.14.2 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - libpng: '>=1.6.50,<1.7.0a0' + libpng: '>=1.6.55,<1.7.0a0' libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libfreetype6-2.14.1-h73754d4_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libfreetype6-2.14.2-h73754d4_0.conda hash: - md5: 8e7251989bca326a28f4a5ffbd74557a - sha256: 4a7af818a3179fafb6c91111752954e29d3a2a950259c14a2fc7ba40a8b03652 + md5: 8eaba3d1a4d7525c6814e861614457fd + sha256: aba65b94bdbed52de17ec3d0c6f2ebac2ef77071ad22d6900d1614d0dd702a0c category: main optional: false - name: libfreetype6 - version: 2.14.1 + version: 2.14.2 manager: conda platform: win-64 dependencies: - libpng: '>=1.6.50,<1.7.0a0' + libpng: '>=1.6.55,<1.7.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/libfreetype6-2.14.1-hdbac1cb_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libfreetype6-2.14.2-hdbac1cb_0.conda hash: - md5: 6e7c5c5ab485057b5d07fd8188ba5c28 - sha256: 223710600b1a5567163f7d66545817f2f144e4ef8f84e99e90f6b8a4e19cb7ad + md5: c21a474a38982cdb56b3454cf4f78389 + sha256: 1e80e01e5662bd3a0c0e094fbeaec449dbb2288949ca55ca80345e7812904e67 category: main optional: false - name: libgcc @@ -2452,10 +2421,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' _openmp_mutex: '>=4.5' - url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-15.2.0-he0feb66_16.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-15.2.0-he0feb66_18.conda hash: - md5: 6d0363467e6ed84f11435eb309f2ff06 - sha256: 6eed58051c2e12b804d53ceff5994a350c61baf117ec83f5f10c953a3f311451 + md5: 0aa00f03f9e39fb9876085dee11a85d4 + sha256: faf7d2017b4d718951e3a59d081eb09759152f93038479b768e3d612688f83f5 category: main optional: false - name: libgcc @@ -2465,10 +2434,10 @@ package: dependencies: _openmp_mutex: '>=4.5' libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' - url: https://repo.prefix.dev/conda-forge/win-64/libgcc-15.2.0-h8ee18e1_16.conda + url: https://repo.prefix.dev/conda-forge/win-64/libgcc-15.2.0-h8ee18e1_18.conda hash: - md5: 1edb8bd8e093ebd31558008e9cb23b47 - sha256: 24984e1e768440ba73021f08a1da0c1ec957b30d7071b9a89b877a273d17cae8 + md5: b085746891cca3bd2704a450a7b4b5ce + sha256: da2c96563c76b8c601746f03e03ac75d2b4640fa2ee017cb23d6c9fc31f1b2c6 category: main optional: false - name: libgcc-ng @@ -2477,10 +2446,10 @@ package: platform: linux-64 dependencies: libgcc: 15.2.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-ng-15.2.0-h69a702a_16.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-ng-15.2.0-h69a702a_18.conda hash: - md5: 5a68259fac2da8f2ee6f7bfe49c9eb8b - sha256: 5f07f9317f596a201cc6e095e5fc92621afca64829785e483738d935f8cab361 + md5: d5e96b1ed75ca01906b3d2469b4ce493 + sha256: e318a711400f536c81123e753d4c797a821021fb38970cebfb3f454126016893 category: main optional: false - name: libgfortran @@ -2489,10 +2458,10 @@ package: platform: linux-64 dependencies: libgfortran5: 15.2.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran-15.2.0-h69a702a_16.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran-15.2.0-h69a702a_18.conda hash: - md5: 40d9b534410403c821ff64f00d0adc22 - sha256: 8a7b01e1ee1c462ad243524d76099e7174ebdd94ff045fe3e9b1e58db196463b + md5: 9063115da5bc35fdc3e1002e69b9ef6e + sha256: d2c9fad338fd85e4487424865da8e74006ab2e2475bd788f624d7a39b2a72aee category: main optional: false - name: libgfortran5 @@ -2502,10 +2471,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=15.2.0' - url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran5-15.2.0-h68bc16d_16.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran5-15.2.0-h68bc16d_18.conda hash: - md5: 39183d4e0c05609fd65f130633194e37 - sha256: d0e974ebc937c67ae37f07a28edace978e01dc0f44ee02f29ab8a16004b8148b + md5: 646855f357199a12f02a87382d429b75 + sha256: 539b57cf50ec85509a94ba9949b7e30717839e4d694bc94f30d41c9d34de2d12 category: main optional: false - name: libgomp @@ -2514,10 +2483,10 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libgomp-15.2.0-he0feb66_16.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgomp-15.2.0-he0feb66_18.conda hash: - md5: 26c46f90d0e727e95c6c9498a33a09f3 - sha256: 5b3e5e4e9270ecfcd48f47e3a68f037f5ab0f529ccb223e8e5d5ac75a58fc687 + md5: 239c5e9546c38a1e884d69effcf4c882 + sha256: 21337ab58e5e0649d869ab168d4e609b033509de22521de1bfed0c031bfc5110 category: main optional: false - name: libgomp @@ -2526,10 +2495,10 @@ package: platform: win-64 dependencies: libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' - url: https://repo.prefix.dev/conda-forge/win-64/libgomp-15.2.0-h8ee18e1_16.conda + url: https://repo.prefix.dev/conda-forge/win-64/libgomp-15.2.0-h8ee18e1_18.conda hash: - md5: ab8189163748f95d4cb18ea1952943c3 - sha256: 9c86aadc1bd9740f2aca291da8052152c32dd1c617d5d4fd0f334214960649bb + md5: 939fb173e2a4d4e980ef689e99b35223 + sha256: 94981bc2e42374c737750895c6fdcfc43b7126c4fc788cad0ecc7281745931da category: main optional: false - name: libhwloc @@ -2619,7 +2588,7 @@ package: category: main optional: false - name: libjxl - version: 0.11.1 + version: 0.11.2 manager: conda platform: linux-64 dependencies: @@ -2629,14 +2598,14 @@ package: libgcc: '>=14' libhwy: '>=1.3.0,<1.4.0a0' libstdcxx: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libjxl-0.11.1-hf08fa70_5.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libjxl-0.11.2-ha09017c_0.conda hash: - md5: 82954a6f42e3fba59628741dca105c98 - sha256: 6b9524a6a7ea6ef1ac791b697f660c2898171ae505d12e6d27509b59cf059ee6 + md5: 1df8c1b1d6665642107883685db6cf37 + sha256: 0c2399cef02953b719afe6591223fb11d287d5a108ef8bb9a02dd509a0f738d7 category: main optional: false - name: libjxl - version: 0.11.1 + version: 0.11.2 manager: conda platform: win-64 dependencies: @@ -2646,10 +2615,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/libjxl-0.11.1-hac9b6f3_5.conda + url: https://repo.prefix.dev/conda-forge/win-64/libjxl-0.11.2-hf3f85d1_0.conda hash: - md5: 8e3cc52433c99ad9632f430d3ac2a077 - sha256: 54e35ad6152fb705f26491c6651d4b77757315c446a494ffc477f36fb2203c79 + md5: 869e71fcf2135212c51a96f7f7dbd00d + sha256: 525c5382eb32a43e7baf45b452079bf23daf8f8bf19fee7c8dafa8c731ada8bd category: main optional: false - name: liblapack @@ -2677,61 +2646,75 @@ package: category: main optional: false - name: liblzma - version: 5.8.1 + version: 5.8.2 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_2.conda + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/liblzma-5.8.2-hb03c661_0.conda hash: - md5: 1a580f7796c7bf6393fddb8bbbde58dc - sha256: f2591c0069447bbe28d4d696b7fcb0c5bd0b4ac582769b89addbcf26fb3430d8 + md5: c7c83eecbb72d88b940c249af56c8b17 + sha256: 755c55ebab181d678c12e49cced893598f2bab22d582fbbf4d8b83c18be207eb category: main optional: false - name: liblzma - version: 5.8.1 + version: 5.8.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/liblzma-5.8.1-h2466b09_2.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/liblzma-5.8.2-hfd05255_0.conda hash: - md5: c15148b2e18da456f5108ccb5e411446 - sha256: 55764956eb9179b98de7cc0e55696f2eff8f7b83fc3ebff5e696ca358bca28cc + md5: ba0bfd4c3cf73f299ffe46ff0eaeb8e3 + sha256: f25bf293f550c8ed2e0c7145eb404324611cfccff37660869d97abf526eb957c category: main optional: false -- name: libnghttp2 - version: 1.67.0 +- name: libmpdec + version: 4.0.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - c-ares: '>=1.34.5,<2.0a0' - libev: '>=4.33,<5.0a0' libgcc: '>=14' - libstdcxx: '>=14' - libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.5.2,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libnghttp2-1.67.0-had1ee68_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libmpdec-4.0.0-hb03c661_1.conda + hash: + md5: 2c21e66f50753a083cbe6b80f38268fa + sha256: fe171ed5cf5959993d43ff72de7596e8ac2853e9021dec0344e583734f1e0843 + category: main + optional: false +- name: libmpdec + version: 4.0.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/libmpdec-4.0.0-hfd05255_1.conda hash: - md5: b499ce4b026493a13774bcf0f4c33849 - sha256: a4a7dab8db4dc81c736e9a9b42bdfd97b087816e029e221380511960ac46c690 + md5: e4a9fc2bba3b022dad998c78856afe47 + sha256: 40dcd0b9522a6e0af72a9db0ced619176e7cfdb114855c7a64f278e73f8a7514 category: main optional: false -- name: libnsl - version: 2.0.1 +- name: libnghttp2 + version: 1.68.1 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libnsl-2.0.1-hb9d3cd8_1.conda + c-ares: '>=1.34.6,<2.0a0' + libev: '>=4.33,<5.0a0' + libgcc: '>=14' + libstdcxx: '>=14' + libzlib: '>=1.3.1,<2.0a0' + openssl: '>=3.5.5,<4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/libnghttp2-1.68.1-h877daf1_0.conda hash: - md5: d864d34357c3b65a4b731f78c0801dc4 - sha256: 927fe72b054277cde6cb82597d0fcf6baf127dcbce2e0a9d8925a68f1265eef5 + md5: 2a45e7f8af083626f009645a6481f12d + sha256: 663444d77a42f2265f54fb8b48c5450bfff4388d9c0f8253dd7855f0d993153f category: main optional: false - name: libopenblas @@ -2750,21 +2733,21 @@ package: category: main optional: false - name: libpng - version: 1.6.53 + version: 1.6.55 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libpng-1.6.53-h421ea60_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libpng-1.6.55-h421ea60_0.conda hash: - md5: 00d4e66b1f746cb14944cad23fffb405 - sha256: 8acdeb9a7e3d2630176ba8e947caf6bf4985a5148dec69b801e5eb797856688b + md5: 5f13ffc7d30ffec87864e678df9957b4 + sha256: 36ade759122cdf0f16e2a2562a19746d96cf9c863ffaa812f2f5071ebbe9c03c category: main optional: false - name: libpng - version: 1.6.53 + version: 1.6.55 manager: conda platform: win-64 dependencies: @@ -2772,39 +2755,39 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libpng-1.6.53-h7351971_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libpng-1.6.55-h7351971_0.conda hash: - md5: fb6f43f6f08ca100cb24cff125ab0d9e - sha256: e5d061e7bdb2b97227b6955d1aa700a58a5703b5150ab0467cc37de609f277b6 + md5: 43f47a9151b9b8fc100aeefcf350d1a0 + sha256: db23f281fa80597a0dc0445b18318346862602d7081ed76244df8cc4418d6d68 category: main optional: false - name: libsqlite - version: 3.51.1 + version: 3.52.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - icu: '>=78.1,<79.0a0' + icu: '>=78.2,<79.0a0' libgcc: '>=14' libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.51.1-hf4e2dac_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.52.0-hf4e2dac_0.conda hash: - md5: b1f35e70f047918b49fb4b181e40300e - sha256: d614540c55f22ad555633f75e174089018ddfc65c49f447f7bbdbc3c3013bec1 + md5: fd893f6a3002a635b5e50ceb9dd2c0f4 + sha256: d716847b7deca293d2e49ed1c8ab9e4b9e04b9d780aea49a97c26925b28a7993 category: main optional: false - name: libsqlite - version: 3.51.1 + version: 3.52.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.51.1-hf5d6505_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.52.0-hf5d6505_0.conda hash: - md5: be65be5f758709fc01b01626152e96b0 - sha256: d6d86715a1afe11f626b7509935e9d2e14a4946632c0ac474526e20fc6c55f99 + md5: 8830689d537fda55f990620680934bb1 + sha256: 5fccf1e4e4062f8b9a554abf4f9735a98e70f82e2865d0bfdb47b9de94887583 category: main optional: false - name: libssh2 @@ -2845,10 +2828,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: 15.2.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-15.2.0-h934c35e_16.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-15.2.0-h934c35e_18.conda hash: - md5: 68f68355000ec3f1d6f26ea13e8f525f - sha256: 813427918316a00c904723f1dfc3da1bbc1974c5cfe1ed1e704c6f4e0798cbc6 + md5: 1b08cd684f34175e4514474793d44bcb + sha256: 78668020064fdaa27e9ab65cd2997e2c837b564ab26ce3bf0e58a2ce1a525c6e category: main optional: false - name: libstdcxx-ng @@ -2857,10 +2840,10 @@ package: platform: linux-64 dependencies: libstdcxx: 15.2.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-15.2.0-hdf11a46_16.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-15.2.0-hdf11a46_18.conda hash: - md5: 1b3152694d236cf233b76b8c56bf0eae - sha256: 81f2f246c7533b41c5e0c274172d607829019621c4a0823b5c0b4a8c7028ee84 + md5: 6235adb93d064ecdf3d44faee6f468de + sha256: 3c902ffd673cb3c6ddde624cdb80f870b6c835f8bf28384b0016e7d444dd0145 category: main optional: false - name: libtiff @@ -2989,53 +2972,39 @@ package: sha256: 08dec73df0e161c96765468847298a420933a36bc4f09b50e062df8793290737 category: main optional: false -- name: libxcrypt - version: 4.4.36 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=12' - url: https://repo.prefix.dev/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda - hash: - md5: 5aa797f8787fe7a17d1b0821485b5adc - sha256: 6ae68e0b86423ef188196fff6207ed0c8195dd84273cb5623b85aa08033a410c - category: main - optional: false - name: libxml2 - version: 2.15.1 + version: 2.15.2 manager: conda platform: win-64 dependencies: - icu: '>=78.1,<79.0a0' libiconv: '>=1.18,<2.0a0' - liblzma: '>=5.8.1,<6.0a0' - libxml2-16: 2.15.1 + liblzma: '>=5.8.2,<6.0a0' + libxml2-16: 2.15.2 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.1-h779ef1b_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/libxml2-2.15.2-h5d26750_0.conda hash: - md5: 68dc154b8d415176c07b6995bd3a65d9 - sha256: 8b47d5fb00a6ccc0f495d16787ab5f37a434d51965584d6000966252efecf56d + md5: 1007e1bfe181a2aee214779ee7f13d30 + sha256: f905eb7046987c336122121759e7f09144729f6898f48cd06df2a945b86998d8 category: main optional: false - name: libxml2-16 - version: 2.15.1 + version: 2.15.2 manager: conda platform: win-64 dependencies: - icu: '>=78.1,<79.0a0' libiconv: '>=1.18,<2.0a0' - liblzma: '>=5.8.1,<6.0a0' + liblzma: '>=5.8.2,<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.1-h3cfd58e_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/libxml2-16-2.15.2-h692994f_0.conda hash: - md5: 07d73826fde28e7dbaec52a3297d7d26 - sha256: a857e941156b7f462063e34e086d212c6ccbc1521ebdf75b9ed66bd90add57dc + md5: e365238134188e42ed36ee996159d482 + sha256: b8c71b3b609c7cfe17f3f2a47c75394d7b30acfb8b34ad7a049ea8757b4d33df category: main optional: false - name: libzlib @@ -3092,17 +3061,17 @@ package: category: main optional: false - name: llvm-openmp - version: 21.1.8 + version: 22.1.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/llvm-openmp-21.1.8-h4fa8253_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-22.1.0-h4fa8253_0.conda hash: - md5: 0d8b425ac862bcf17e4b28802c9351cb - sha256: 145c4370abe870f10987efa9fc15a8383f1dab09abbc9ad4ff15a55d45658f7b + md5: e5505e0b7d6ef5c19d5c0c1884a2f494 + sha256: bb55a3736380759d338f87aac68df4fd7d845ae090b94400525f5d21a55eea31 category: main optional: false - name: locket @@ -3164,12 +3133,12 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - python: '>=3.11,<3.12.0a0' - python_abi: 3.11.* - url: https://repo.prefix.dev/conda-forge/linux-64/markupsafe-3.0.3-py311h3778330_0.conda + python: '>=3.13,<3.14.0a0' + python_abi: 3.13.* + url: https://repo.prefix.dev/conda-forge/linux-64/markupsafe-3.0.3-py313h3dea7bd_1.conda hash: - md5: 0954f1a6a26df4a510b54f73b2a0345c - sha256: 66c072c37aefa046f3fd4ca69978429421ef9e8a8572e19de534272a6482e997 + md5: aeb9b9da79fd0258b3db091d1fefcd71 + sha256: 72ed7c0216541d65a17b171bf2eec4a3b81e9158d8ed48e59e1ecd3ae302d263 category: main optional: false - name: markupsafe @@ -3177,69 +3146,74 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.11,<3.12.0a0' - python_abi: 3.11.* + python: '>=3.13,<3.14.0a0' + python_abi: 3.13.* ucrt: '>=10.0.20348.0' 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 + url: https://repo.prefix.dev/conda-forge/win-64/markupsafe-3.0.3-py313hd650c13_1.conda hash: - md5: f04c6970b6cce548de53b43f6be06586 - sha256: 975a1dcbdc0ced5af5bab681ec50406cf46f04e99c2aecc2f6b684497287cd7e + md5: 5cc690ddf943700e0ef50a265df31f03 + sha256: 9dc626b6c00bc2dbd2494df689876ff675b93d92636ba5df8e37b99040a1f6bc category: main optional: false - name: matplotlib-base - version: 3.8.4 + version: 3.10.8 manager: conda platform: linux-64 dependencies: - certifi: '>=2020.06.20' + __glibc: '>=2.17,<3.0.a0' contourpy: '>=1.0.1' cycler: '>=0.10' fonttools: '>=4.22.0' - freetype: '>=2.12.1,<3.0a0' + freetype: '' kiwisolver: '>=1.3.1' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - numpy: '>=1.21' + libfreetype: '>=2.14.1' + libfreetype6: '>=2.14.1' + libgcc: '>=14' + libstdcxx: '>=14' + numpy: '>=1.23,<3' packaging: '>=20.0' pillow: '>=8' pyparsing: '>=2.3.1' - python: '>=3.11,<3.12.0a0' + python: '>=3.13,<3.14.0a0' python-dateutil: '>=2.7' - python_abi: 3.11.* + python_abi: 3.13.* + qhull: '>=2020.2,<2020.3.0a0' tk: '>=8.6.13,<8.7.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/matplotlib-base-3.8.4-py311ha4ca890_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/matplotlib-base-3.10.8-py313h683a580_0.conda hash: - md5: 0848e2084cbb57014f232f48568561af - sha256: 19a65ac35a9f48b3f0277b723b832052728d276e70c0ad1057f5b5bbe1f1ba28 + md5: ffe67570e1a9192d2f4c189b27f75f89 + sha256: b1117aa2c1d11ca70d1704054cdc8801cbcf2dfb846c565531edd417ddd82559 category: main optional: false - name: matplotlib-base - version: 3.8.4 + version: 3.10.8 manager: conda platform: win-64 dependencies: - certifi: '>=2020.06.20' contourpy: '>=1.0.1' cycler: '>=0.10' fonttools: '>=4.22.0' - freetype: '>=2.12.1,<3.0a0' + freetype: '' kiwisolver: '>=1.3.1' - numpy: '>=1.21' + libfreetype: '>=2.14.1' + libfreetype6: '>=2.14.1' + numpy: '>=1.23,<3' packaging: '>=20.0' pillow: '>=8' pyparsing: '>=2.3.1' - python: '>=3.11,<3.12.0a0' + python: '>=3.13,<3.14.0a0' python-dateutil: '>=2.7' - python_abi: 3.11.* + python_abi: 3.13.* + qhull: '>=2020.2,<2020.3.0a0' ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/matplotlib-base-3.8.4-py311h9b31f6e_2.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/matplotlib-base-3.10.8-py313he1ded55_0.conda hash: - md5: dbf84485273ba5fea107ef140a173e30 - sha256: 857ed04795a1e3ea1939d8990fe0f6122b086445f72f92afe50de74ae19977d0 + md5: 05f96c429201a64ea752decf4b910a7c + sha256: f63c4a5ded62cfb216c9d107a3c4527940036eef19cf481418080a0bd9bc11d8 category: main optional: false - name: mccabe @@ -3307,27 +3281,27 @@ package: category: main optional: false - name: narwhals - version: 2.15.0 + version: 2.18.0 manager: conda platform: linux-64 dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/narwhals-2.15.0-pyhcf101f3_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/narwhals-2.18.0-pyhcf101f3_0.conda hash: - md5: 37926bb0db8b04b8b99945076e1442d0 - sha256: 2e64699401c6170ce9a0916461ff4686f8d10b076f6abe1d887cbcb7061c0e85 + md5: bc317f07dd82e410012684d2e3a9c06d + sha256: 456c86370e7568c3462010f49be25e052ffb9ebf94860708dfc4b6eac1e45147 category: main optional: false - name: narwhals - version: 2.15.0 + version: 2.18.0 manager: conda platform: win-64 dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/narwhals-2.15.0-pyhcf101f3_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/narwhals-2.18.0-pyhcf101f3_0.conda hash: - md5: 37926bb0db8b04b8b99945076e1442d0 - sha256: 2e64699401c6170ce9a0916461ff4686f8d10b076f6abe1d887cbcb7061c0e85 + md5: bc317f07dd82e410012684d2e3a9c06d + sha256: 456c86370e7568c3462010f49be25e052ffb9ebf94860708dfc4b6eac1e45147 category: main optional: false - name: ncurses @@ -3372,7 +3346,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.11' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/networkx-3.6.1-pyhcf101f3_0.conda hash: md5: a2c1eeadae7a309daed9d62c96012a2b @@ -3384,7 +3358,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.11' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/networkx-3.6.1-pyhcf101f3_0.conda hash: md5: a2c1eeadae7a309daed9d62c96012a2b @@ -3392,40 +3366,41 @@ package: category: main optional: false - name: numpy - version: 1.26.4 + version: 2.4.3 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libblas: '>=3.9.0,<4.0a0' libcblas: '>=3.9.0,<4.0a0' - libgcc-ng: '>=12' + libgcc: '>=14' liblapack: '>=3.9.0,<4.0a0' - libstdcxx-ng: '>=12' - python: '>=3.11,<3.12.0a0' - python_abi: 3.11.* - url: https://repo.prefix.dev/conda-forge/linux-64/numpy-1.26.4-py311h64a7726_0.conda + libstdcxx: '>=14' + python: '' + python_abi: 3.13.* + url: https://repo.prefix.dev/conda-forge/linux-64/numpy-2.4.3-py313hf6604e3_0.conda hash: - md5: a502d7aad449a1206efb366d6a12c52d - sha256: 3f4365e11b28e244c95ba8579942b0802761ba7bb31c026f50d1a9ea9c728149 + md5: c4a9d2e77eb9fee983a70cf5f047c202 + sha256: bcf75998ea3ae133df3580fb427d1054b006b093799430f499fd7ce8207d34c7 category: main optional: false - name: numpy - version: 1.26.4 + version: 2.4.3 manager: conda platform: win-64 dependencies: libblas: '>=3.9.0,<4.0a0' libcblas: '>=3.9.0,<4.0a0' liblapack: '>=3.9.0,<4.0a0' - python: '>=3.11,<3.12.0a0' - python_abi: 3.11.* + python: '' + python_abi: 3.13.* ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/numpy-1.26.4-py311h0b4df5a_0.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/numpy-2.4.3-py313ha8dc839_0.conda hash: - md5: 7b240edd44fd7a0991aa409b07cee776 - sha256: 14116e72107de3089cc58119a5ce5905c22abf9a715c9fe41f8ac14db0992326 + md5: 764b3adfdb549bbbf58a9419f237ac25 + sha256: b01143d91ac22a37595c96023616dab0509ca22ee7791747dd52cc5c651f9b11 category: main optional: false - name: openjpeg @@ -3450,20 +3425,20 @@ package: manager: conda platform: win-64 dependencies: - libpng: '>=1.6.50,<1.7.0a0' + libpng: '>=1.6.55,<1.7.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.4-h24db6dd_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/openjpeg-2.5.4-h0e57b4f_0.conda hash: - md5: 5af852046226bb3cb15c7f61c2ac020a - sha256: 226c270a7e3644448954c47959c00a9bf7845f6d600c2a643db187118d028eee + md5: e723ab7cc2794c954e1b22fde51c16e4 + sha256: 24342dee891a49a9ba92e2018ec0bde56cc07fdaec95275f7a55b96f03ea4252 category: main optional: false - name: openjph - version: 0.26.0 + version: 0.26.3 manager: conda platform: linux-64 dependencies: @@ -3471,14 +3446,14 @@ package: libgcc: '>=14' libstdcxx: '>=14' libtiff: '>=4.7.1,<4.8.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/openjph-0.26.0-h8d634f6_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/openjph-0.26.3-h8d634f6_0.conda hash: - md5: 65900b71509b2fd6c0a34a5dc1bd893a - sha256: 5f8e3ad6e707c3ffee81c3c2cbc1ac8f66eb10bbe0fe2edbe1cdad0972e006c8 + md5: 792d5b6e99677177f5527a758a02bc07 + sha256: 4587e7762f27cad93619de77fa0573e2e17a899892d4bed3010196093e343533 category: main optional: false - name: openjph - version: 0.26.0 + version: 0.26.3 manager: conda platform: win-64 dependencies: @@ -3486,28 +3461,28 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/openjph-0.26.0-hf13a347_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/openjph-0.26.3-hf13a347_0.conda hash: - md5: b743af8babe1d084354ff00dc80ec2c4 - sha256: a494955ab56bbaaa004e887eec96af37ed2a1236e60cbbdcadd7467d2360c279 + md5: dcd62c4a44f29a9e6fb519cbc8fe9968 + sha256: 1458382dd4222f5f1a03e3dcebc516272390772bb402139898b86c045bd8ec8f category: main optional: false - name: openssl - version: 3.6.0 + version: 3.6.1 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.6.0-h26f9b46_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/openssl-3.6.1-h35e630c_1.conda hash: - md5: 9ee58d5c534af06558933af3c845a780 - sha256: a47271202f4518a484956968335b2521409c8173e123ab381e775c358c67fe6d + md5: f61eb8cd60ff9057122a3d338b99c00f + sha256: 44c877f8af015332a5d12f5ff0fb20ca32f896526a7d0cdb30c769df1144fb5c category: main optional: false - name: openssl - version: 3.6.0 + version: 3.6.1 manager: conda platform: win-64 dependencies: @@ -3515,34 +3490,34 @@ 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.6.0-h725018a_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/openssl-3.6.1-hf411b9b_1.conda hash: - md5: 84f8fb4afd1157f59098f618cd2437e4 - sha256: 6d72d6f766293d4f2aa60c28c244c8efed6946c430814175f959ffe8cab899b3 + md5: eb585509b815415bc964b2c7e11c7eb3 + sha256: 53a5ad2e5553b8157a91bb8aa375f78c5958f77cb80e9d2ce59471ea8e5c0bd6 category: main optional: false - name: packaging - version: '25.0' + version: '26.0' manager: conda platform: linux-64 dependencies: - python: '>=3.8' - url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/packaging-26.0-pyhcf101f3_0.conda hash: - md5: 58335b26c38bf4a20f399384c33cbcf9 - sha256: 289861ed0c13a15d7bbb408796af4de72c2fe67e2bcb0de98f4c3fce259d7991 + md5: b76541e68fea4d511b1ac46a28dcd2c6 + sha256: c1fc0f953048f743385d31c468b4a678b3ad20caffdeaa94bed85ba63049fd58 category: main optional: false - name: packaging - version: '25.0' + version: '26.0' manager: conda platform: win-64 dependencies: - python: '>=3.8' - url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/packaging-26.0-pyhcf101f3_0.conda hash: - md5: 58335b26c38bf4a20f399384c33cbcf9 - sha256: 289861ed0c13a15d7bbb408796af4de72c2fe67e2bcb0de98f4c3fce259d7991 + md5: b76541e68fea4d511b1ac46a28dcd2c6 + sha256: c1fc0f953048f743385d31c468b4a678b3ad20caffdeaa94bed85ba63049fd58 category: main optional: false - name: partd @@ -3574,131 +3549,130 @@ package: category: main optional: false - name: pillow - version: 10.3.0 + version: 12.1.1 manager: conda platform: linux-64 dependencies: - freetype: '>=2.12.1,<3.0a0' - lcms2: '>=2.16,<3.0a0' - libgcc-ng: '>=12' - libjpeg-turbo: '>=3.0.0,<4.0a0' - libtiff: '>=4.6.0,<4.8.0a0' - libwebp-base: '>=1.4.0,<2.0a0' - libxcb: '>=1.16,<2.0.0a0' - libzlib: '>=1.3.1,<2.0a0' - openjpeg: '>=2.5.2,<3.0a0' - python: '>=3.11,<3.12.0a0' - python_abi: 3.11.* + __glibc: '>=2.17,<3.0.a0' + lcms2: '>=2.18,<3.0a0' + libfreetype: '>=2.14.1' + libfreetype6: '>=2.14.1' + libgcc: '>=14' + libjpeg-turbo: '>=3.1.2,<4.0a0' + libtiff: '>=4.7.1,<4.8.0a0' + libwebp-base: '>=1.6.0,<2.0a0' + libxcb: '>=1.17.0,<2.0a0' + openjpeg: '>=2.5.4,<3.0a0' + python: '' + python_abi: 3.13.* tk: '>=8.6.13,<8.7.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/pillow-10.3.0-py311h82a398c_1.conda + zlib-ng: '>=2.3.3,<2.4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/pillow-12.1.1-py313h80991f8_0.conda hash: - md5: 4dc0b6fcf0bc041a1bfb763fa6e5302f - sha256: ce420bfba7ed8641aa376b4446e16299fcb37113c27e9655503fd5d517cb7fcd + md5: 2d5ee4938cdde91a8967f3eea686c546 + sha256: 50738b145a45db78ec12ffebf649127d53e1777166c5c3b006476890250ac265 category: main optional: false - name: pillow - version: 10.3.0 + version: 12.1.1 manager: conda platform: win-64 dependencies: - freetype: '>=2.12.1,<3.0a0' - lcms2: '>=2.16,<3.0a0' - libjpeg-turbo: '>=3.0.0,<4.0a0' - libtiff: '>=4.6.0,<4.8.0a0' - libwebp-base: '>=1.4.0,<2.0a0' - libxcb: '>=1.16,<2.0.0a0' - libzlib: '>=1.3.1,<2.0a0' - openjpeg: '>=2.5.2,<3.0a0' - python: '>=3.11,<3.12.0a0' - python_abi: 3.11.* + lcms2: '>=2.18,<3.0a0' + libfreetype: '>=2.14.1' + libfreetype6: '>=2.14.1' + libjpeg-turbo: '>=3.1.2,<4.0a0' + libtiff: '>=4.7.1,<4.8.0a0' + libwebp-base: '>=1.6.0,<2.0a0' + libxcb: '>=1.17.0,<2.0a0' + openjpeg: '>=2.5.4,<3.0a0' + python: '' + python_abi: 3.13.* tk: '>=8.6.13,<8.7.0a0' ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/pillow-10.3.0-py311h5592be9_1.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + zlib-ng: '>=2.3.3,<2.4.0a0' + url: https://repo.prefix.dev/conda-forge/win-64/pillow-12.1.1-py313h38f99e1_0.conda hash: - md5: 034f612fd103c2c1058538533598ce4f - sha256: 5404b51b1c93180940e0f8340e905d435bf187224512bab2993c5b7f30aa0615 + md5: 41b079447f12baa3852549e1f3a072d2 + sha256: ee2384117c93c0386874ba526a12f60b8f2c700b7cb912e899c62f41927c1666 category: main optional: false - name: pip - version: '25.3' + version: 26.0.1 manager: conda platform: linux-64 dependencies: - python: '>=3.10,<3.13.0a0' - setuptools: '' - wheel: '' - url: https://repo.prefix.dev/conda-forge/noarch/pip-25.3-pyh8b19718_0.conda + python: '>=3.13.0a0' + url: https://repo.prefix.dev/conda-forge/noarch/pip-26.0.1-pyh145f28c_0.conda hash: - md5: c55515ca43c6444d2572e0f0d93cb6b9 - sha256: b67692da1c0084516ac1c9ada4d55eaf3c5891b54980f30f3f444541c2706f1e + md5: 09a970fbf75e8ed1aa633827ded6aa4f + sha256: 5f66ea31d62188c266c5a8752119b0cc90a5bf05963f665cf48a33e0ec58d39c category: main optional: false - name: pip - version: '25.3' + version: 26.0.1 manager: conda platform: win-64 dependencies: - python: '>=3.10,<3.13.0a0' - setuptools: '' - wheel: '' - url: https://repo.prefix.dev/conda-forge/noarch/pip-25.3-pyh8b19718_0.conda + python: '>=3.13.0a0' + url: https://repo.prefix.dev/conda-forge/noarch/pip-26.0.1-pyh145f28c_0.conda hash: - md5: c55515ca43c6444d2572e0f0d93cb6b9 - sha256: b67692da1c0084516ac1c9ada4d55eaf3c5891b54980f30f3f444541c2706f1e + md5: 09a970fbf75e8ed1aa633827ded6aa4f + sha256: 5f66ea31d62188c266c5a8752119b0cc90a5bf05963f665cf48a33e0ec58d39c category: main optional: false - name: platformdirs - version: 4.5.1 + version: 4.9.4 manager: conda platform: linux-64 dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.5.1-pyhcf101f3_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.9.4-pyhcf101f3_0.conda hash: - md5: 1bd2e65c8c7ef24f4639ae6e850dacc2 - sha256: 04c64fb78c520e5c396b6e07bc9082735a5cc28175dbe23138201d0a9441800b + md5: 82c1787f2a65c0155ef9652466ee98d6 + sha256: 0289f0a38337ee201d984f8f31f11f6ef076cfbbfd0ab9181d12d9d1d099bf46 category: dev optional: true - name: platformdirs - version: 4.5.1 + version: 4.9.4 manager: conda platform: win-64 dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.5.1-pyhcf101f3_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.9.4-pyhcf101f3_0.conda hash: - md5: 1bd2e65c8c7ef24f4639ae6e850dacc2 - sha256: 04c64fb78c520e5c396b6e07bc9082735a5cc28175dbe23138201d0a9441800b + md5: 82c1787f2a65c0155ef9652466ee98d6 + sha256: 0289f0a38337ee201d984f8f31f11f6ef076cfbbfd0ab9181d12d9d1d099bf46 category: dev optional: true - name: plotly - version: 6.5.1 + version: 6.6.0 manager: conda platform: linux-64 dependencies: narwhals: '>=1.15.1' packaging: '' python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/plotly-6.5.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/plotly-6.6.0-pyhd8ed1ab_0.conda hash: - md5: 0a8b38871cab04059c1cc04853b415a2 - sha256: 262a532a0107210a7fa6ba63fd3170a804417d1d62ae5b49f9ecd6afc7e63465 + md5: 3e9427ee186846052e81fadde8ebe96a + sha256: c418d325359fc7a0074cea7f081ef1bce26e114d2da8a0154c5d27ecc87a08e7 category: main optional: false - name: plotly - version: 6.5.1 + version: 6.6.0 manager: conda platform: win-64 dependencies: narwhals: '>=1.15.1' packaging: '' python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/plotly-6.5.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/plotly-6.6.0-pyhd8ed1ab_0.conda hash: - md5: 0a8b38871cab04059c1cc04853b415a2 - sha256: 262a532a0107210a7fa6ba63fd3170a804417d1d62ae5b49f9ecd6afc7e63465 + md5: 3e9427ee186846052e81fadde8ebe96a + sha256: c418d325359fc7a0074cea7f081ef1bce26e114d2da8a0154c5d27ecc87a08e7 category: main optional: false - name: pluggy @@ -3706,7 +3680,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/pluggy-1.6.0-pyhf9edf01_1.conda hash: md5: d7585b6550ad04c8c5e21097ada2888e @@ -3718,7 +3692,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/pluggy-1.6.0-pyhf9edf01_1.conda hash: md5: d7585b6550ad04c8c5e21097ada2888e @@ -3781,7 +3755,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda hash: md5: 12c566707c80111f9799308d9e265aef @@ -3793,7 +3767,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda hash: md5: 12c566707c80111f9799308d9e265aef @@ -3807,7 +3781,7 @@ package: dependencies: annotated-types: '>=0.6.0' pydantic-core: 2.41.5 - python: '>=3.10' + python: '' typing-extensions: '>=4.6.1' typing-inspection: '>=0.4.2' typing_extensions: '>=4.14.1' @@ -3824,7 +3798,7 @@ package: dependencies: annotated-types: '>=0.6.0' pydantic-core: 2.41.5 - python: '>=3.10' + python: '' typing-extensions: '>=4.6.1' typing-inspection: '>=0.4.2' typing_extensions: '>=4.14.1' @@ -3842,12 +3816,12 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' python: '' - python_abi: 3.11.* + python_abi: 3.13.* typing-extensions: '>=4.6.0,!=4.7.0' - url: https://repo.prefix.dev/conda-forge/linux-64/pydantic-core-2.41.5-py311h902ca64_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pydantic-core-2.41.5-py313h843e2db_1.conda hash: - md5: 08d407f0331ff8e871db23bec7eef83c - sha256: da6e2060a91de065031214f9ca56e24906785ea412cd274d1f32128992dc0d43 + md5: f27c39a1906771bbe56cd26a76bf0b8b + sha256: b15568ddc03bd33ea41610e5df951be4e245cd61957cbf8c2cfd12557f3d53b5 category: main optional: false - name: pydantic-core @@ -3856,15 +3830,15 @@ package: platform: win-64 dependencies: python: '' - python_abi: 3.11.* + python_abi: 3.13.* typing-extensions: '>=4.6.0,!=4.7.0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/pydantic-core-2.41.5-py311hf51aa87_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/pydantic-core-2.41.5-py313hfbe8231_1.conda hash: - md5: 6e9d7d8626b17cd232099a8dcd645b3c - sha256: bb8195087084a37d7cfca208aca6b519dc4917592dc867b8bbc6975a01b2d6e0 + md5: 0437f87004ad7c64c98a013d1611db97 + sha256: fb9391dc09dd01574c85e2342b9aa3b8664cd713401ef8fd6267865cc28988d8 category: main optional: false - name: pygments @@ -3892,67 +3866,67 @@ package: category: dev optional: true - name: pylint - version: 4.0.4 + version: 4.0.5 manager: conda platform: linux-64 dependencies: - astroid: '>=4.0.2,<=4.1.0.dev0' + astroid: '>=4.0.2,<=4.1.dev0' colorama: '>=0.4.5' dill: '>=0.3.7' - isort: '>=5,<8,!=5.13' + isort: '>=5,!=5.13,<9' mccabe: '>=0.6,<0.8' platformdirs: '>=2.2' - python: '>=3.10' - tomli: '>=1.1.0' + python: '' + tomli: '>=1.1' tomlkit: '>=0.10.1' - url: https://repo.prefix.dev/conda-forge/noarch/pylint-4.0.4-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pylint-4.0.5-pyhcf101f3_0.conda hash: - md5: 3a830511a81b99b67a1206a9d29b44b3 - sha256: ad0bb78785ab385d0afcca4a55e0226d8e6710ebad6450caa552f5fe61c2f6a0 + md5: 7d9916ed19ecda71f0b00963365252a7 + sha256: a8e7736982409a56d2aa329d3052259fd45910f98fb7d3f2816f1a6d59624d60 category: dev optional: true - name: pylint - version: 4.0.4 + version: 4.0.5 manager: conda platform: win-64 dependencies: - astroid: '>=4.0.2,<=4.1.0.dev0' + astroid: '>=4.0.2,<=4.1.dev0' colorama: '>=0.4.5' dill: '>=0.3.7' - isort: '>=5,<8,!=5.13' + isort: '>=5,!=5.13,<9' mccabe: '>=0.6,<0.8' platformdirs: '>=2.2' - python: '>=3.10' - tomli: '>=1.1.0' + python: '' + tomli: '>=1.1' tomlkit: '>=0.10.1' - url: https://repo.prefix.dev/conda-forge/noarch/pylint-4.0.4-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pylint-4.0.5-pyhcf101f3_0.conda hash: - md5: 3a830511a81b99b67a1206a9d29b44b3 - sha256: ad0bb78785ab385d0afcca4a55e0226d8e6710ebad6450caa552f5fe61c2f6a0 + md5: 7d9916ed19ecda71f0b00963365252a7 + sha256: a8e7736982409a56d2aa329d3052259fd45910f98fb7d3f2816f1a6d59624d60 category: dev optional: true - name: pyparsing - version: 3.3.1 + version: 3.3.2 manager: conda platform: linux-64 dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/pyparsing-3.3.1-pyhcf101f3_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/pyparsing-3.3.2-pyhcf101f3_0.conda hash: - md5: d837065e4e0de4962c3462079c23f969 - sha256: 0c70bc577f5efa87501bdc841b88f594f4d3f3a992dfb851e2130fa5c817835b + md5: 3687cc0b82a8b4c17e1f0eb7e47163d5 + sha256: 417fba4783e528ee732afa82999300859b065dc59927344b4859c64aae7182de category: main optional: false - name: pyparsing - version: 3.3.1 + version: 3.3.2 manager: conda platform: win-64 dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/pyparsing-3.3.1-pyhcf101f3_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/pyparsing-3.3.2-pyhcf101f3_0.conda hash: - md5: d837065e4e0de4962c3462079c23f969 - sha256: 0c70bc577f5efa87501bdc841b88f594f4d3f3a992dfb851e2130fa5c817835b + md5: 3687cc0b82a8b4c17e1f0eb7e47163d5 + sha256: 417fba4783e528ee732afa82999300859b065dc59927344b4859c64aae7182de category: main optional: false - name: pysocks @@ -3993,7 +3967,7 @@ package: 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-9.0.2-pyhcf101f3_0.conda hash: @@ -4012,7 +3986,7 @@ package: 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-9.0.2-pyhcf101f3_0.conda hash: @@ -4028,7 +4002,7 @@ package: coverage: '>=7.10.6' pluggy: '>=1.2' pytest: '>=7' - python: '>=3.10' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-7.0.0-pyhcf101f3_1.conda hash: md5: 6891acad5e136cb62a8c2ed2679d6528 @@ -4043,7 +4017,7 @@ package: coverage: '>=7.10.6' pluggy: '>=1.2' pytest: '>=7' - python: '>=3.10' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-7.0.0-pyhcf101f3_1.conda hash: md5: 6891acad5e136cb62a8c2ed2679d6528 @@ -4051,56 +4025,58 @@ package: category: dev optional: true - name: python - version: 3.11.14 + version: 3.13.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.1,<3.0a0' + libexpat: '>=2.7.3,<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.4,<4.0a0' - libuuid: '>=2.41.2,<3.0a0' - libxcrypt: '>=4.4.36' + liblzma: '>=5.8.2,<6.0a0' + libmpdec: '>=4.0.0,<5.0a0' + libsqlite: '>=3.51.2,<4.0a0' + libuuid: '>=2.41.3,<3.0a0' libzlib: '>=1.3.1,<2.0a0' ncurses: '>=6.5,<7.0a0' - openssl: '>=3.5.4,<4.0a0' + openssl: '>=3.5.5,<4.0a0' pip: '' - readline: '>=8.2,<9.0a0' + python_abi: 3.13.* + readline: '>=8.3,<9.0a0' tk: '>=8.6.13,<8.7.0a0' tzdata: '' - url: https://repo.prefix.dev/conda-forge/linux-64/python-3.11.14-hd63d673_2_cpython.conda + url: https://repo.prefix.dev/conda-forge/linux-64/python-3.13.12-hc97d973_100_cp313.conda hash: - md5: c4202a55b4486314fbb8c11bc43a29a0 - sha256: 5b872f7747891e50e990a96d2b235236a5c66cc9f8c9dcb7149aee674ea8145a + md5: 4c875ed0e78c2d407ec55eadffb8cf3d + sha256: 8a08fe5b7cb5a28aa44e2994d18dbf77f443956990753a4ca8173153ffb6eb56 category: main optional: false - name: python - version: 3.11.14 + version: 3.13.12 manager: conda platform: win-64 dependencies: bzip2: '>=1.0.8,<2.0a0' - libexpat: '>=2.7.1,<3.0a0' + libexpat: '>=2.7.3,<3.0a0' libffi: '>=3.5.2,<3.6.0a0' - liblzma: '>=5.8.1,<6.0a0' - libsqlite: '>=3.50.4,<4.0a0' + liblzma: '>=5.8.2,<6.0a0' + libmpdec: '>=4.0.0,<5.0a0' + libsqlite: '>=3.51.2,<4.0a0' libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.5.4,<4.0a0' + openssl: '>=3.5.5,<4.0a0' pip: '' + python_abi: 3.13.* tk: '>=8.6.13,<8.7.0a0' tzdata: '' ucrt: '>=10.0.20348.0' 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 + url: https://repo.prefix.dev/conda-forge/win-64/python-3.13.12-h09917c8_100_cp313.conda hash: - md5: 02a9ba5950d8b78e6c9862d6ba7a5045 - sha256: d5f455472597aefcdde1bc39bca313fcb40bf084f3ad987da0441f2a2ec242e4 + md5: 4440c24966d0aa0c8f1e1d5006dac2d6 + sha256: da70aec20ff5a5ae18bbba9fdd1e18190b419605cafaafb3bdad8becf11ce94d category: main optional: false - name: python-dateutil @@ -4108,7 +4084,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' six: '>=1.5' url: https://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda hash: @@ -4121,7 +4097,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' six: '>=1.5' url: https://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda hash: @@ -4130,25 +4106,25 @@ package: category: main optional: false - name: python_abi - version: '3.11' + version: '3.13' manager: conda platform: linux-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/noarch/python_abi-3.11-8_cp311.conda + url: https://repo.prefix.dev/conda-forge/noarch/python_abi-3.13-8_cp313.conda hash: - md5: 8fcb6b0e2161850556231336dae58358 - sha256: fddf123692aa4b1fc48f0471e346400d9852d96eeed77dbfdd746fa50a8ff894 + md5: 94305520c52a4aa3f6c2b1ff6008d9f8 + sha256: 210bffe7b121e651419cb196a2a63687b087497595c9be9d20ebe97dd06060a7 category: main optional: false - name: python_abi - version: '3.11' + version: '3.13' manager: conda platform: win-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/noarch/python_abi-3.11-8_cp311.conda + url: https://repo.prefix.dev/conda-forge/noarch/python_abi-3.13-8_cp313.conda hash: - md5: 8fcb6b0e2161850556231336dae58358 - sha256: fddf123692aa4b1fc48f0471e346400d9852d96eeed77dbfdd746fa50a8ff894 + md5: 94305520c52a4aa3f6c2b1ff6008d9f8 + sha256: 210bffe7b121e651419cb196a2a63687b087497595c9be9d20ebe97dd06060a7 category: main optional: false - name: pythonnet @@ -4177,121 +4153,92 @@ package: sha256: dd1c187259e6d03011e331071374a3f5f6889e1c35aa568ad6b5e11d7f811165 category: webview optional: true -- name: pytz - version: '2025.2' - manager: conda - platform: linux-64 - dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda - hash: - md5: bc8e3267d44011051f2eb14d22fb0960 - sha256: 8d2a8bf110cc1fc3df6904091dead158ba3e614d8402a83e51ed3a8aa93cdeb0 - category: dev - optional: true -- name: pytz - version: '2025.2' - manager: conda - platform: win-64 - dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda - hash: - md5: bc8e3267d44011051f2eb14d22fb0960 - sha256: 8d2a8bf110cc1fc3df6904091dead158ba3e614d8402a83e51ed3a8aa93cdeb0 - category: dev - optional: true -- name: pywavelets - version: 1.9.0 +- name: pyyaml + version: 6.0.3 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - 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_2.conda + python: '>=3.13,<3.14.0a0' + python_abi: 3.13.* + yaml: '>=0.2.5,<0.3.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/pyyaml-6.0.3-py313h3dea7bd_1.conda hash: - md5: 4e078a6bafb23473ea476450f45c9650 - sha256: 4393066e380c976a4066a7865c42f9e1f96b1b8a80f0eef03db93a4160dde77b + md5: f256753e840c3cd3766488c9437a8f8b + sha256: ef7df29b38ef04ec67a8888a4aa039973eaa377e8c4b59a7be0a1c50cd7e4ac6 category: main optional: false -- name: pywavelets - version: 1.9.0 +- name: pyyaml + version: 6.0.3 manager: conda platform: win-64 dependencies: - numpy: '>=1.25,<3' - python: '>=3.11,<3.12.0a0' - python_abi: 3.11.* + python: '>=3.13,<3.14.0a0' + python_abi: 3.13.* 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_2.conda + yaml: '>=0.2.5,<0.3.0a0' + url: https://repo.prefix.dev/conda-forge/win-64/pyyaml-6.0.3-py313hd650c13_1.conda hash: - md5: 4cdb0e2d2fbd83f802ab9d9c5fa5dfb4 - sha256: 26c84bd1aae5f0675f71f69ec7abf90a96c30959d95528f6afe1d1d1a2381def + md5: c1bdb8dd255c79fb9c428ad25cc6ee54 + sha256: dfaed50de8ee72a51096163b87631921688851001e38c78a841eba1ae8b35889 category: main optional: false -- name: pyyaml - version: 6.0.3 +- name: qhull + version: '2020.2' manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - 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.3-py311h3778330_0.conda + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + url: https://repo.prefix.dev/conda-forge/linux-64/qhull-2020.2-h434a139_5.conda hash: - md5: 707c3d23f2476d3bfde8345b4e7d7853 - sha256: 7dc5c27c0c23474a879ef5898ed80095d26de7f89f4720855603c324cca19355 + md5: 353823361b1d27eb3960efb076dfcaf6 + sha256: 776363493bad83308ba30bcb88c2552632581b143e8ee25b1982c8c743e73abc category: main optional: false -- name: pyyaml - version: 6.0.3 +- name: qhull + version: '2020.2' manager: conda platform: win-64 dependencies: - python: '>=3.11,<3.12.0a0' - python_abi: 3.11.* ucrt: '>=10.0.20348.0' - 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.3-py311h3f79411_0.conda + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://repo.prefix.dev/conda-forge/win-64/qhull-2020.2-hc790b64_5.conda hash: - md5: 4e9b677d70d641f233b29d5eab706e20 - sha256: 22dcc6c6779e5bd970a7f5208b871c02bf4985cf4d827d479c4a492ced8ce577 + md5: 854fbdff64b572b5c0b470f334d34c11 + sha256: 887d53486a37bd870da62b8fa2ebe3993f912ad04bd755e7ed7c47ced97cbaa8 category: main optional: false - name: rav1e - version: 0.7.1 + version: 0.8.1 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/rav1e-0.7.1-h8fae777_3.conda + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/rav1e-0.8.1-h1fbca29_0.conda hash: - md5: 2c42649888aac645608191ffdc80d13a - sha256: 6e5e704c1c21f820d760e56082b276deaf2b53cf9b751772761c3088a365f6f4 + md5: d83958768626b3c8471ce032e28afcd3 + sha256: cf550bbc8e5ebedb6dba9ccaead3e07bd1cb86b183644a4c853e06e4b3ad5ac7 category: main optional: false - name: rav1e - version: 0.7.1 + version: 0.8.1 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/rav1e-0.7.1-ha073cba_3.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/rav1e-0.8.1-h007690e_0.conda hash: - md5: 3bd3626822633688691ed41d661c2b2e - sha256: d19a58b882a0387c7c8efbfce4e67a0df4b19d8da6cf6cec3011b6079e5bc743 + md5: b0ab2fc43381024f5a694e6f5f54c973 + sha256: 4ee3caf1260c946e756f2be4cadf720592391b24fce652a67255e4386880249b category: main optional: false - name: readline @@ -4316,7 +4263,7 @@ package: certifi: '>=2017.4.17' charset-normalizer: '>=2,<4' idna: '>=2.5,<4' - python: '>=3.10' + python: '' urllib3: '>=1.21.1,<3' url: https://repo.prefix.dev/conda-forge/noarch/requests-2.32.5-pyhcf101f3_1.conda hash: @@ -4332,7 +4279,7 @@ package: certifi: '>=2017.4.17' charset-normalizer: '>=2,<4' idna: '>=2.5,<4' - python: '>=3.10' + python: '' urllib3: '>=1.21.1,<3' url: https://repo.prefix.dev/conda-forge/noarch/requests-2.32.5-pyhcf101f3_1.conda hash: @@ -4345,7 +4292,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/retrying-1.4.2-pyhe01879c_0.conda hash: md5: 128b46a47ea164f9a8659cb6da2f3555 @@ -4357,7 +4304,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/retrying-1.4.2-pyhe01879c_0.conda hash: md5: 128b46a47ea164f9a8659cb6da2f3555 @@ -4415,7 +4362,7 @@ package: category: dev optional: true - name: scikit-image - version: 0.25.2 + version: 0.26.0 manager: conda platform: linux-64 dependencies: @@ -4425,109 +4372,107 @@ package: libgcc: '>=14' libstdcxx: '>=14' networkx: '>=3.0' - numpy: '>=1.24' - packaging: '>=21' + numpy: '>=1.23,<3' + packaging: '>=21.0' pillow: '>=10.1' - python: '>=3.11,<3.12.0a0' - python_abi: 3.11.* - pywavelets: '>=1.6' + python: '' + python_abi: 3.13.* scipy: '>=1.11.4' tifffile: '>=2022.8.12' - url: https://repo.prefix.dev/conda-forge/linux-64/scikit-image-0.25.2-py311hed34c8f_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/scikit-image-0.26.0-np2py313hb172dc5_0.conda hash: - md5: 515ec832e4a98828374fded73405e3f3 - sha256: 423fd5c1b5a7469c8e08e45f3e006d84518788104fefade7e78ea3e651bc7322 + md5: 6b11ece96457f4f1bf078dbdba069ce6 + sha256: ec926e3c9ceb6ab8c1494d0ba199db5311c446b4a38e3ccfd18b41e251696087 category: main optional: false - name: scikit-image - version: 0.25.2 + version: 0.26.0 manager: conda platform: win-64 dependencies: imageio: '>=2.33,!=2.35.0' lazy-loader: '>=0.4' networkx: '>=3.0' - numpy: '>=1.24' - packaging: '>=21' + numpy: '>=1.23,<3' + packaging: '>=21.0' pillow: '>=10.1' - python: '>=3.11,<3.12.0a0' - python_abi: 3.11.* - pywavelets: '>=1.6' + python: '' + python_abi: 3.13.* scipy: '>=1.11.4' tifffile: '>=2022.8.12' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/scikit-image-0.25.2-py311h11fd7f3_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/scikit-image-0.26.0-np2py313h33c6dc1_0.conda hash: - md5: 31a32c00acac7fd6fabc2d1f05a4f087 - sha256: 2a77d93848c0fbedc9994025fabf015740cd2fafcbb4a74e47135fbac21d1d14 + md5: 2b40a1aa2d1785c07cc5c90d3cdbbe94 + sha256: 69600c5836c8b43f2e95040436e9dff773bbf8925ab5ded78c993d90fec3f94f category: main optional: false - name: scipy - version: 1.14.1 + version: 1.17.1 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libblas: '>=3.9.0,<4.0a0' libcblas: '>=3.9.0,<4.0a0' - libgcc: '>=13' + libgcc: '>=14' libgfortran: '' - libgfortran5: '>=13.3.0' + libgfortran5: '>=14.3.0' liblapack: '>=3.9.0,<4.0a0' - libstdcxx: '>=13' - numpy: <2.3 - python: '>=3.11,<3.12.0a0' - python_abi: 3.11.* - url: https://repo.prefix.dev/conda-forge/linux-64/scipy-1.14.1-py311he9a78e4_2.conda + libstdcxx: '>=14' + numpy: '>=1.25.2' + python: '>=3.13,<3.14.0a0' + python_abi: 3.13.* + url: https://repo.prefix.dev/conda-forge/linux-64/scipy-1.17.1-py313h4b8bb8b_0.conda hash: - md5: c4aee8cadc4c9fc9a91aca0803473690 - sha256: b28d91a55205b886308da82428cd522e9dce0ef912445a2e9d89318379c15759 + md5: ec81bc03787968decae6765c7f61b7cf + sha256: fdd92a119a2a5f89d6e549a326adcb008f5046ea5034a9af409e97b7e20e6f06 category: main optional: false - name: scipy - version: 1.14.1 + version: 1.17.1 manager: conda platform: win-64 dependencies: libblas: '>=3.9.0,<4.0a0' libcblas: '>=3.9.0,<4.0a0' liblapack: '>=3.9.0,<4.0a0' - numpy: <2.3 - python: '>=3.11,<3.12.0a0' - python_abi: 3.11.* + numpy: '>=1.25.2' + python: '>=3.13,<3.14.0a0' + python_abi: 3.13.* ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/scipy-1.14.1-py311hf16d85f_2.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/scipy-1.17.1-py313he51e9a2_0.conda hash: - md5: 8d3393f64df60e48be00d06ccb63bb18 - sha256: ef98270586c1dfb551f9ff868312554f248f155406f924b91df07cd46c14d302 + md5: f64c65352c68208b19838b537b39b02b + sha256: 41da17a6edd558f2a6abb1111b57780b1562ae57d50bb81698cff176b40250e4 category: main optional: false - name: setuptools - version: 80.9.0 + version: 82.0.1 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/setuptools-82.0.1-pyh332efcf_0.conda hash: - md5: 4de79c071274a53dcaf2a8c749d1499e - sha256: 972560fcf9657058e3e1f97186cc94389144b46dbdf58c807ce62e83f977e863 + md5: 8e194e7b992f99a5015edbd4ebd38efd + sha256: 82088a6e4daa33329a30bc26dc19a98c7c1d3f05c0f73ce9845d4eab4924e9e1 category: main optional: false - name: setuptools - version: 80.9.0 + version: 82.0.1 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/setuptools-82.0.1-pyh332efcf_0.conda hash: - md5: 4de79c071274a53dcaf2a8c749d1499e - sha256: 972560fcf9657058e3e1f97186cc94389144b46dbdf58c807ce62e83f977e863 + md5: 8e194e7b992f99a5015edbd4ebd38efd + sha256: 82088a6e4daa33329a30bc26dc19a98c7c1d3f05c0f73ce9845d4eab4924e9e1 category: main optional: false - name: six @@ -4535,7 +4480,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda hash: md5: 3339e3b65d58accf4ca4fb8748ab16b3 @@ -4547,7 +4492,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda hash: md5: 3339e3b65d58accf4ca4fb8748ab16b3 @@ -4691,31 +4636,31 @@ package: category: dev optional: true - name: sphinx-rtd-theme - version: 3.0.2 + version: 3.1.0 manager: conda platform: linux-64 dependencies: - sphinx_rtd_theme: 3.0.2 - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-rtd-theme-3.0.2-hd8ed1ab_0.conda + sphinx_rtd_theme: 3.1.0 + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-rtd-theme-3.1.0-hd8ed1ab_0.conda hash: - md5: bc576bd1422b5baaed25722895581837 - sha256: d81e5f764d3738a62e03476cbbf3f69214f5cc0d06af81ec6104056f6cece50e + md5: 3b1a32d3d5c2064822203f2a6f3f1173 + sha256: ae5e8e514f21e6f62b63c13f684939ba007168bfd7742e8cb573fce69fbf62da category: dev optional: true - name: sphinx-rtd-theme - version: 3.0.2 + version: 3.1.0 manager: conda platform: win-64 dependencies: - sphinx_rtd_theme: 3.0.2 - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-rtd-theme-3.0.2-hd8ed1ab_0.conda + sphinx_rtd_theme: 3.1.0 + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-rtd-theme-3.1.0-hd8ed1ab_0.conda hash: - md5: bc576bd1422b5baaed25722895581837 - sha256: d81e5f764d3738a62e03476cbbf3f69214f5cc0d06af81ec6104056f6cece50e + md5: 3b1a32d3d5c2064822203f2a6f3f1173 + sha256: ae5e8e514f21e6f62b63c13f684939ba007168bfd7742e8cb573fce69fbf62da category: dev optional: true - name: sphinx_rtd_theme - version: 3.0.2 + version: 3.1.0 manager: conda platform: linux-64 dependencies: @@ -4723,14 +4668,14 @@ package: python: '>=3.8' sphinx: '>=6,<9' sphinxcontrib-jquery: '>=4,<5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx_rtd_theme-3.0.2-pyha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx_rtd_theme-3.1.0-pyha770c72_0.conda hash: - md5: cec0cc87b40171bc323a9d80b619c9c5 - sha256: c5d1ef5801f56c3bba4088de6c02c10e7f5b195805997fc1af569cf3f33f92e4 + md5: cede6bc99a0253fa676f03cfdc666d57 + sha256: 1d57a0cd74ecc0e5dc006f6591145d1abb6658464919d4aeb163d3db714f80e6 category: dev optional: true - name: sphinx_rtd_theme - version: 3.0.2 + version: 3.1.0 manager: conda platform: win-64 dependencies: @@ -4738,10 +4683,10 @@ package: python: '>=3.8' sphinx: '>=6,<9' sphinxcontrib-jquery: '>=4,<5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx_rtd_theme-3.0.2-pyha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx_rtd_theme-3.1.0-pyha770c72_0.conda hash: - md5: cec0cc87b40171bc323a9d80b619c9c5 - sha256: c5d1ef5801f56c3bba4088de6c02c10e7f5b195805997fc1af569cf3f33f92e4 + md5: cede6bc99a0253fa676f03cfdc666d57 + sha256: 1d57a0cd74ecc0e5dc006f6591145d1abb6658464919d4aeb163d3db714f80e6 category: dev optional: true - name: sphinxcontrib-applehelp @@ -4925,31 +4870,31 @@ package: category: dev optional: true - name: svt-av1 - version: 3.1.2 + version: 4.0.1 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' libstdcxx: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/svt-av1-3.1.2-hecca717_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/svt-av1-4.0.1-hecca717_0.conda hash: - md5: 9859766c658e78fec9afa4a54891d920 - sha256: 34e2e9c505cd25dba0a9311eb332381b15147cf599d972322a7c197aedfc8ce2 + md5: 2a2170a3e5c9a354d09e4be718c43235 + sha256: 4a1d2005153b9454fc21c9bad1b539df189905be49e851ec62a6212c2e045381 category: main optional: false - name: svt-av1 - version: 3.1.2 + version: 4.0.1 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/svt-av1-3.1.2-hac47afa_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/svt-av1-4.0.1-hac47afa_0.conda hash: - md5: 91866412570c922f55178855deb0f952 - sha256: 444c94a9c1fcb2cdf78b260472451990257733bcf89ed80c73db36b5047d3134 + md5: d9714a97bc69f98fd5032f675ae1b0b5 + sha256: 4d77eec06ee4c5de38d330fb7dfd6dac2f867ec007123acb901be9942e12c08a category: main optional: false - name: tbb @@ -4968,31 +4913,31 @@ package: category: main optional: false - name: tifffile - version: 2025.12.20 + version: 2026.3.3 manager: conda platform: linux-64 dependencies: imagecodecs: '>=2025.11.11' numpy: '>=1.19.2' python: '>=3.11' - url: https://repo.prefix.dev/conda-forge/noarch/tifffile-2025.12.20-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/tifffile-2026.3.3-pyhd8ed1ab_0.conda hash: - md5: f8a199849a262291f127f4835c990935 - sha256: e3b2cc47bf57571937e6c0843af2c66e3ee077599a43c2eb49f1f9f703d23edb + md5: cecacab21bc8f4ed17fac11bc8b08cf0 + sha256: da24795c3000566167fbb51c0933acd7a46fe2661375ad4d8a1748aab2bc9537 category: main optional: false - name: tifffile - version: 2025.12.20 + version: 2026.3.3 manager: conda platform: win-64 dependencies: imagecodecs: '>=2025.11.11' numpy: '>=1.19.2' python: '>=3.11' - url: https://repo.prefix.dev/conda-forge/noarch/tifffile-2025.12.20-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/tifffile-2026.3.3-pyhd8ed1ab_0.conda hash: - md5: f8a199849a262291f127f4835c990935 - sha256: e3b2cc47bf57571937e6c0843af2c66e3ee077599a43c2eb49f1f9f703d23edb + md5: cecacab21bc8f4ed17fac11bc8b08cf0 + sha256: da24795c3000566167fbb51c0933acd7a46fe2661375ad4d8a1748aab2bc9537 category: main optional: false - name: tk @@ -5001,12 +4946,12 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' + libgcc: '>=14' libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_ha0e22de_103.conda + url: https://repo.prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_h366c992_103.conda hash: - md5: 86bc20552bf46075e3d92b67f089172d - sha256: 1544760538a40bcd8ace2b1d8ebe3eb5807ac268641f8acdc18c69c5ebfeaf64 + md5: cffd3bdd58090148f4cfcd831f4b26ab + sha256: cafeec44494f842ffeca27e9c8b0c27ed714f93ac77ddadc6aaf726b5554ebac category: main optional: false - name: tk @@ -5015,60 +4960,60 @@ 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/tk-8.6.13-h2c6b04d_3.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/tk-8.6.13-h6ed50ae_3.conda hash: - md5: 7cb36e506a7dba4817970f8adb6396f9 - sha256: 4581f4ffb432fefa1ac4f85c5682cc27014bcd66e7beaa0ee330e927a7858790 + md5: 0481bfd9814bf525bd4b3ee4b51494c4 + sha256: 0e79810fae28f3b69fe7391b0d43f5474d6bd91d451d5f2bde02f55ae481d5e3 category: main optional: false - name: tomli - version: 2.3.0 + version: 2.4.0 manager: conda platform: linux-64 dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.3.0-pyhcf101f3_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.4.0-pyhcf101f3_0.conda hash: - md5: d2732eb636c264dc9aa4cbee404b1a53 - sha256: cb77c660b646c00a48ef942a9e1721ee46e90230c7c570cdeb5a893b5cce9bff + md5: 72e780e9aa2d0a3295f59b1874e3768b + sha256: 62940c563de45790ba0f076b9f2085a842a65662268b02dd136a8e9b1eaf47a8 category: dev optional: true - name: tomli - version: 2.3.0 + version: 2.4.0 manager: conda platform: win-64 dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.3.0-pyhcf101f3_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.4.0-pyhcf101f3_0.conda hash: - md5: d2732eb636c264dc9aa4cbee404b1a53 - sha256: cb77c660b646c00a48ef942a9e1721ee46e90230c7c570cdeb5a893b5cce9bff + md5: 72e780e9aa2d0a3295f59b1874e3768b + sha256: 62940c563de45790ba0f076b9f2085a842a65662268b02dd136a8e9b1eaf47a8 category: dev optional: true - name: tomlkit - version: 0.13.3 + version: 0.14.0 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.3-pyha770c72_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.14.0-pyha770c72_0.conda hash: - md5: 146402bf0f11cbeb8f781fa4309a95d3 - sha256: f8d3b49c084831a20923f66826f30ecfc55a4cd951e544b7213c692887343222 + md5: 385dca77a8b0ec6fa9b92cb62d09b43b + sha256: b35082091c8efd084e51bc3a4a2d3b07897eff232aaf58cbc0f959b6291a6a93 category: dev optional: true - name: tomlkit - version: 0.13.3 + version: 0.14.0 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.3-pyha770c72_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.14.0-pyha770c72_0.conda hash: - md5: 146402bf0f11cbeb8f781fa4309a95d3 - sha256: f8d3b49c084831a20923f66826f30ecfc55a4cd951e544b7213c692887343222 + md5: 385dca77a8b0ec6fa9b92cb62d09b43b + sha256: b35082091c8efd084e51bc3a4a2d3b07897eff232aaf58cbc0f959b6291a6a93 category: dev optional: true - name: toolz @@ -5096,29 +5041,30 @@ package: category: main optional: false - name: tqdm - version: 4.67.1 + version: 4.67.3 manager: conda platform: linux-64 dependencies: - colorama: '' - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_1.conda + __unix: '' + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/tqdm-4.67.3-pyh8f84b5b_0.conda hash: - md5: 9efbfdc37242619130ea42b1cc4ed861 - sha256: 11e2c85468ae9902d24a27137b6b39b4a78099806e551d390e394a8c34b48e40 + md5: e5ce43272193b38c2e9037446c1d9206 + sha256: 9ef8e47cf00e4d6dcc114eb32a1504cc18206300572ef14d76634ba29dfe1eb6 category: main optional: false - name: tqdm - version: 4.67.1 + version: 4.67.3 manager: conda platform: win-64 dependencies: + __win: '' colorama: '' - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_1.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/tqdm-4.67.3-pyha7b4d00_0.conda hash: - md5: 9efbfdc37242619130ea42b1cc4ed861 - sha256: 11e2c85468ae9902d24a27137b6b39b4a78099806e551d390e394a8c34b48e40 + md5: af77160f8428924c17db94e04aa69409 + sha256: 63cc2def6e168622728c7800ed6b3c1761ceecb18b354c81cee1a0a94c09900a category: main optional: false - name: typing-extensions @@ -5176,7 +5122,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.10' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda hash: md5: 0caa1af407ecff61170c9437a808404d @@ -5188,7 +5134,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.10' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda hash: md5: 0caa1af407ecff61170c9437a808404d @@ -5228,37 +5174,6 @@ package: sha256: 3005729dce6f3d3f5ec91dfc49fc75a0095f9cd23bab49efb899657297ac91a5 category: main optional: false -- name: unicodedata2 - version: 17.0.0 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' - python: '>=3.11,<3.12.0a0' - python_abi: 3.11.* - url: https://repo.prefix.dev/conda-forge/linux-64/unicodedata2-17.0.0-py311h49ec1c0_1.conda - hash: - md5: 5e6d4026784e83c0a51c86ec428e8cc8 - sha256: d3c0e3ca6eb49095159d8c78970a279a30b98863eff5c3eeb037296d2e1d1670 - category: main - optional: false -- name: unicodedata2 - version: 17.0.0 - manager: conda - platform: win-64 - dependencies: - python: '>=3.11,<3.12.0a0' - python_abi: 3.11.* - ucrt: '>=10.0.20348.0' - vc: '>=14.3,<15' - vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/unicodedata2-17.0.0-py311h3485c13_1.conda - hash: - md5: a30a6a70ab7754dbf0b06fe1a96af9cb - sha256: 1b1bda3e9eca513cda58e9a3f1d112839bd56c9a1f6e0bf35035acbf028b0f4f - category: main - optional: false - name: urllib3 version: 2.6.3 manager: conda @@ -5345,7 +5260,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.10' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/waitress-3.0.2-pyhcf101f3_2.conda hash: md5: a68c6d8a9afc81ef27541f7f0ac78dc3 @@ -5357,7 +5272,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.10' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/waitress-3.0.2-pyhcf101f3_2.conda hash: md5: a68c6d8a9afc81ef27541f7f0ac78dc3 @@ -5365,53 +5280,29 @@ package: category: main optional: false - name: werkzeug - version: 3.1.5 + version: 3.1.6 manager: conda platform: linux-64 dependencies: markupsafe: '>=2.1.1' - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/werkzeug-3.1.5-pyhcf101f3_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/werkzeug-3.1.6-pyhcf101f3_0.conda hash: - md5: 784e86b857b809955635175881a9a418 - sha256: 3ef418943ef14939a4bbc5157f31db2d6a7a025a3bfd7b4aa5a29034ba96e42e + md5: 2d9bfc6055e55ff58b2c359323a753d2 + sha256: 06e3d5bec9d2730a23ecf023b7cba329c0772c51f2704714c17b3080b0385113 category: main optional: false - name: werkzeug - version: 3.1.5 + version: 3.1.6 manager: conda platform: win-64 dependencies: markupsafe: '>=2.1.1' - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/werkzeug-3.1.5-pyhcf101f3_0.conda - hash: - md5: 784e86b857b809955635175881a9a418 - sha256: 3ef418943ef14939a4bbc5157f31db2d6a7a025a3bfd7b4aa5a29034ba96e42e - category: main - optional: false -- name: wheel - version: 0.45.1 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda - hash: - md5: 75cb7132eb58d97896e173ef12ac9986 - sha256: 1b34021e815ff89a4d902d879c3bd2040bc1bd6169b32e9427497fa05c55f1ce - category: main - optional: false -- name: wheel - version: 0.45.1 - manager: conda - platform: win-64 - dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/werkzeug-3.1.6-pyhcf101f3_0.conda hash: - md5: 75cb7132eb58d97896e173ef12ac9986 - sha256: 1b34021e815ff89a4d902d879c3bd2040bc1bd6169b32e9427497fa05c55f1ce + md5: 2d9bfc6055e55ff58b2c359323a753d2 + sha256: 06e3d5bec9d2730a23ecf023b7cba329c0772c51f2704714c17b3080b0385113 category: main optional: false - name: win_inet_pton @@ -5542,7 +5433,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.10' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/zipp-3.23.0-pyhcf101f3_1.conda hash: md5: 30cd29cb87d819caead4d55184c1d115 @@ -5554,7 +5445,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.10' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/zipp-3.23.0-pyhcf101f3_1.conda hash: md5: 30cd29cb87d819caead4d55184c1d115 @@ -5562,31 +5453,31 @@ package: category: main optional: false - name: zlib-ng - version: 2.3.2 + version: 2.3.3 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' libstdcxx: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/zlib-ng-2.3.2-hceb46e0_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/zlib-ng-2.3.3-hceb46e0_1.conda hash: - md5: 40feea2979654ed579f1cda7c63ccb94 - sha256: f2b6a175677701a0b6ce556b3bd362dc94a4e36ffcd10e3860e52ca036b4ad96 + md5: 2aadb0d17215603a82a2a6b0afd9a4cb + sha256: ea4e50c465d70236408cb0bfe0115609fd14db1adcd8bd30d8918e0291f8a75f category: main optional: false - name: zlib-ng - version: 2.3.2 + version: 2.3.3 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/zlib-ng-2.3.2-h0261ad2_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/zlib-ng-2.3.3-h0261ad2_1.conda hash: - md5: bc2fba648e1e784c549e20bbe1a8af40 - sha256: e058e925bed8d9e5227cecc098e02992813046fd89206194435e975a9f6eff56 + md5: 46a21c0a4e65f1a135251fc7c8663f83 + sha256: 71332532332d13b5dbe57074ddcf82ae711bdc132affa5a2982a29ffa06dc234 category: main optional: false - name: zstd @@ -5618,73 +5509,73 @@ package: category: main optional: false - name: geoapps-utils - version: 0.7.0a2.dev1+3a0ee39 + version: 0.7.0a2 manager: pip platform: linux-64 dependencies: - geoh5py: 0.13.0a2.dev34+872fd38e - matplotlib: '>=3.8.4,<3.9.0' - numpy: '>=1.26.0,<1.27.0' - pydantic: '>=2.12.0,<3.0.0' - scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 + geoh5py: 0.12.1rc2.dev239+771ae87c + matplotlib: '>=3.10.0,<3.11.0' + numpy: '>=2.4.2,<2.5.0' + pydantic: '>=2.12.0,<2.13.0' + scipy: '>=1.17.0,<1.18.0' + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@fb86adf72fb82ea23c8904a39585982ca8793c52 hash: - sha256: 3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 + sha256: fb86adf72fb82ea23c8904a39585982ca8793c52 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@fb86adf72fb82ea23c8904a39585982ca8793c52 category: main optional: false - name: geoapps-utils - version: 0.7.0a2.dev1+3a0ee39 + version: 0.7.0a2 manager: pip platform: win-64 dependencies: - geoh5py: 0.13.0a2.dev34+872fd38e - matplotlib: '>=3.8.4,<3.9.0' - numpy: '>=1.26.0,<1.27.0' - pydantic: '>=2.12.0,<3.0.0' - scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 + geoh5py: 0.12.1rc2.dev239+771ae87c + matplotlib: '>=3.10.0,<3.11.0' + numpy: '>=2.4.2,<2.5.0' + pydantic: '>=2.12.0,<2.13.0' + scipy: '>=1.17.0,<1.18.0' + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@fb86adf72fb82ea23c8904a39585982ca8793c52 hash: - sha256: 3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 + sha256: fb86adf72fb82ea23c8904a39585982ca8793c52 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@fb86adf72fb82ea23c8904a39585982ca8793c52 category: main optional: false - name: geoh5py - version: 0.13.0a2.dev34+872fd38e + version: 0.12.1rc2.dev239+771ae87c manager: pip platform: linux-64 dependencies: - h5py: '>=3.2.1,<4.0.0' - numpy: '>=1.26.0,<1.27.0' - pillow: '>=10.3.0,<10.4.0' - pydantic: '>=2.12.0,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 + h5py: '>=3.15.0,<4.0.0' + numpy: '>=2.4.0,<2.5.0' + pillow: '>=12.1.0,<12.2.0' + pydantic: '>=2.12.0,<2.13.0' + url: git+https://github.com/MiraGeoscience/geoh5py.git@771ae87ccae825e2eae4058b5f51fd6d5f4791cf hash: - sha256: 872fd38e1f3a73fad567de7825e5e2bb0aadab72 + sha256: 771ae87ccae825e2eae4058b5f51fd6d5f4791cf source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 + url: git+https://github.com/MiraGeoscience/geoh5py.git@771ae87ccae825e2eae4058b5f51fd6d5f4791cf category: main optional: false - name: geoh5py - version: 0.13.0a2.dev34+872fd38e + version: 0.12.1rc2.dev239+771ae87c manager: pip platform: win-64 dependencies: - h5py: '>=3.2.1,<4.0.0' - numpy: '>=1.26.0,<1.27.0' - pillow: '>=10.3.0,<10.4.0' - pydantic: '>=2.12.0,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 + h5py: '>=3.15.0,<4.0.0' + numpy: '>=2.4.0,<2.5.0' + pillow: '>=12.1.0,<12.2.0' + pydantic: '>=2.12.0,<2.13.0' + url: git+https://github.com/MiraGeoscience/geoh5py.git@771ae87ccae825e2eae4058b5f51fd6d5f4791cf hash: - sha256: 872fd38e1f3a73fad567de7825e5e2bb0aadab72 + sha256: 771ae87ccae825e2eae4058b5f51fd6d5f4791cf source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 + url: git+https://github.com/MiraGeoscience/geoh5py.git@771ae87ccae825e2eae4058b5f51fd6d5f4791cf category: main optional: false - name: pywebview diff --git a/pyproject.toml b/pyproject.toml index 3914123..138c216 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ build-backend = "poetry_dynamic_versioning.backend" [project] name = "curve-apps" -requires-python = ">=3.10,<4.0" +requires-python = ">=3.12, <3.15" description = "Auto-detection of trends and edges in geoscientific data." license = "MIT" license-files = [ @@ -60,15 +60,15 @@ include = [ version = "0.0.0.dev0" [tool.poetry.dependencies] -numpy = "~1.26.0" # also in geoh5py -pydantic = "^2.12.0" # also in geoh5py -scikit-image = "^0.25.2" -scipy = "~1.14.0" +numpy = "~2.4.2" +pydantic = "~2.12.0" +scikit-image = "~0.26.0" +scipy = "~1.17.0" tqdm = "^4.66.1" ## Dash and related packages #--------------------------- -dash = "^3.0.4" +dash = "^3.4.0" dash-ag-grid = "^32.3.1" dash-bootstrap-components = "^2.0.3" dash-daq = "0.6.*" @@ -77,7 +77,7 @@ waitress = "^3.0.2" ## For concurrent execution and parallel processing #-------------------------------------------------- # note: py-deps-clock defines custom mapping from dask to dask-core -dask = ">=2025.3, <2025.4.dev" # also in simpeg[dask] +dask = "~2025.3.0" ## For a native GUI window #------------------------- @@ -135,9 +135,9 @@ channels = ['conda-forge'] ## indirect dependencies, forcing them here for installation through Conda not pip #--------------------------------------------------------------------------------- -h5py = ">=3.2.1, <4.0.dev" # from geoh5py -matplotlib-base = ">=3.8.4, <3.9.dev" # from geoapps-utils -pillow = ">=10.3.0, <10.4.dev" # from geoh5py +h5py = ">=3.15.1, 3.*" +matplotlib-base = ">=3.10, <3.11" +pillow = ">=12.1.0, 12.*" ### Conda package is missing the Dash dependencies: list them explicitly #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ @@ -174,7 +174,7 @@ initial-content = """ persistent-substitution = true [tool.ruff] -target-version = "py310" +target-version = "py312" [tool.ruff.lint] ignore = [ @@ -216,7 +216,6 @@ show_column_numbers = true check_untyped_defs = true plugins = [ - "numpy.typing.mypy_plugin", "pydantic.mypy" ] diff --git a/recipe.yaml b/recipe.yaml index 2ab876a..d9c1e43 100644 --- a/recipe.yaml +++ b/recipe.yaml @@ -3,7 +3,7 @@ schema_version: 1 context: name: "curve-apps" version: "0.0.0.dev0" # This will be replaced by the actual version in the build process - python_min: "3.10" + python_min: "3.12" module_name: ${{ name|lower|replace("-", "_") }} package: @@ -31,17 +31,17 @@ requirements: run: - python >=${{ python_min }} # Mira packages - - geoh5py >=0.12.0b5, 0.12.* - - geoapps-utils >=0.6.0b2, 0.6.* + - geoh5py >=0.13.0a2, 0.13.* + - geoapps-utils >=0.7.0a2, 0.7.* # other direct dependencies - - numpy 1.26.* - - pydantic >=2.12.0, 2.* - - scikit-image >=0.25.2, 0.25.* - - scipy 1.14.* + - numpy >=2.4.2, 2.4.* + - pydantic >=2.12.0, <2.13 + - scikit-image >=0.26.0, 0.26.* + - scipy 1.17.* - tqdm >=4.66.1, 4.* - dask-core 2025.3.* # Dash and related dependencies - - dash >=3.0.4, 3.* + - dash >=3.4.0 - dash-ag-grid >=32.3.1, 32.* - dash-bootstrap-components >=2.0.3, 2.* - dash-core-components 2.* diff --git a/tests/edge_detection_run_test.py b/tests/edge_detection_run_test.py index f0972ab..935f010 100644 --- a/tests/edge_detection_run_test.py +++ b/tests/edge_detection_run_test.py @@ -77,7 +77,7 @@ def test_window_size(tmp_path: Path): "geoh5": workspace, "objects": grid, "data": data, - "line_length": 4, + "line_length": 6, "line_gap": 1, "sigma": 1, "window_size": 32, @@ -91,7 +91,7 @@ def test_window_size(tmp_path: Path): with workspace.open(): edges = workspace.get_entity("square_32")[0] - assert len(edges.cells) == 22 # type: ignore + assert len(edges.cells) == 17 # type: ignore def test_merge_length(tmp_path: Path): @@ -118,7 +118,7 @@ def test_merge_length(tmp_path: Path): with workspace.open(): edges = workspace.get_entity("square")[0] - assert len(np.unique(edges.parts)) == 2 # type: ignore + assert len(np.unique(edges.parts)) == 4 # type: ignore def test_input_file(tmp_path: Path): diff --git a/tests/peak_finder/peak_finder_test.py b/tests/peak_finder/peak_finder_test.py index 66e1381..0ff9cea 100644 --- a/tests/peak_finder/peak_finder_test.py +++ b/tests/peak_finder/peak_finder_test.py @@ -532,9 +532,12 @@ def test_trend_line(tmp_path: Path): # pylint: disable=too-many-locals line_id.append(np.ones_like(x) * (ind + 1)) data.append(get_template_anomalies()) - x_locs = np.concatenate(x_locs) - y_locs = np.concatenate(y_locs) - curve = Curve.create(temp_ws, vertices=np.c_[x_locs, y_locs, np.zeros_like(x_locs)]) + curve = Curve.create( + temp_ws, + vertices=np.c_[ + np.hstack(x_locs), np.hstack(y_locs), np.zeros_like(np.hstack(x_locs)) + ], + ) data = curve.add_data({"data": {"values": np.concatenate(data)}}) prop_group = curve.add_data_to_group(data, property_group="obs") diff --git a/tests/utils_test.py b/tests/utils_test.py index cd04f6e..deb8acd 100644 --- a/tests/utils_test.py +++ b/tests/utils_test.py @@ -38,16 +38,13 @@ def curves_data_fixture() -> list: y_array = np.linspace(0, 50, 10) line_ids_array = np.arange(0, len(y_array)) - curve1 = 5 * np.sin(y_array) + 10 # curve - curve2 = 0.7 * y_array + 20 # crossing lines - curve3 = -0.4 * y_array + 50 - curve4 = np.ones_like(y_array) * 80 # zig-zag - curve4[3] = 85 - curve5 = [None] * (len(y_array) - 1) # short line - curve5[0:1] = [60, 62] # type: ignore - curve5[-2:-1] = [2, 4] # type: ignore - - curves = [curve1, curve2, curve3, curve4, curve5] + curves: list[np.ndarray] = [ + 5 * np.sin(y_array) + 10, # sinusoidal line + 0.7 * y_array + 20, # crossing lines + -0.4 * y_array + 50, + np.ones_like(y_array) * 80, # zig-zag + ] + curves[3][3] = 85 data = [] for channel_group, curve in enumerate(curves):