From 97b685085cd3b7a57b8c8a744a80dc18ad461297 Mon Sep 17 00:00:00 2001 From: domfournier Date: Mon, 15 Jun 2026 09:24:04 -0700 Subject: [PATCH 1/6] Change all versions. Re-lock --- .github/workflows/python_analysis.yml | 6 +- .github/workflows/python_deploy_dev.yml | 4 +- .readthedocs.yaml | 2 +- README-dev.rst | 2 +- README.rst | 2 +- deps-lock-config.yaml | 3 +- docs/source/conf.py | 6 +- environments/env-python-3.13.yml | 3 + .../py-3.10-linux-64-dev.conda.lock.yml | 169 - environments/py-3.10-linux-64.conda.lock.yml | 120 - .../py-3.10-win-64-dev.conda.lock.yml | 164 - environments/py-3.10-win-64.conda.lock.yml | 114 - .../py-3.11-linux-64-dev.conda.lock.yml | 170 - environments/py-3.11-linux-64.conda.lock.yml | 120 - .../py-3.11-win-64-dev.conda.lock.yml | 165 - environments/py-3.11-win-64.conda.lock.yml | 114 - .../py-3.12-linux-64-dev.conda.lock.yml | 246 +- environments/py-3.12-linux-64.conda.lock.yml | 179 +- .../py-3.12-win-64-dev.conda.lock.yml | 244 +- environments/py-3.12-win-64.conda.lock.yml | 176 +- .../py-3.13-linux-64-dev.conda.lock.yml | 181 + environments/py-3.13-linux-64.conda.lock.yml | 130 + .../py-3.13-win-64-dev.conda.lock.yml | 180 + environments/py-3.13-win-64.conda.lock.yml | 129 + install.bat | 2 +- package.rst | 2 +- py-3.10.conda-lock.yml | 4493 ----------------- py-3.12.conda-lock.yml | 3057 ++++++----- ...1.conda-lock.yml => py-3.13.conda-lock.yml | 3225 ++++++------ pyproject.toml | 36 +- recipe.yaml | 52 +- 31 files changed, 4677 insertions(+), 8819 deletions(-) create mode 100644 environments/env-python-3.13.yml delete mode 100644 environments/py-3.10-linux-64-dev.conda.lock.yml delete mode 100644 environments/py-3.10-linux-64.conda.lock.yml delete mode 100644 environments/py-3.10-win-64-dev.conda.lock.yml delete mode 100644 environments/py-3.10-win-64.conda.lock.yml delete mode 100644 environments/py-3.11-linux-64-dev.conda.lock.yml delete mode 100644 environments/py-3.11-linux-64.conda.lock.yml delete mode 100644 environments/py-3.11-win-64-dev.conda.lock.yml delete mode 100644 environments/py-3.11-win-64.conda.lock.yml create mode 100644 environments/py-3.13-linux-64-dev.conda.lock.yml create mode 100644 environments/py-3.13-linux-64.conda.lock.yml create mode 100644 environments/py-3.13-win-64-dev.conda.lock.yml create mode 100644 environments/py-3.13-win-64.conda.lock.yml delete mode 100644 py-3.10.conda-lock.yml rename py-3.11.conda-lock.yml => py-3.13.conda-lock.yml (54%) diff --git a/.github/workflows/python_analysis.yml b/.github/workflows/python_analysis.yml index 911cb24..5a1dc32 100644 --- a/.github/workflows/python_analysis.yml +++ b/.github/workflows/python_analysis.yml @@ -28,16 +28,16 @@ jobs: with: package-manager: 'conda' app-name: 'surface_apps' - python-version: '3.10' + python-version: '3.12' call-workflow-pytest: name: Pytest uses: MiraGeoscience/CI-tools/.github/workflows/reusable-python-pytest.yml@main 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 7f4f264..033320c 100644 --- a/.github/workflows/python_deploy_dev.yml +++ b/.github/workflows/python_deploy_dev.yml @@ -15,7 +15,7 @@ jobs: uses: MiraGeoscience/CI-tools/.github/workflows/reusable-python-publish_rattler_package.yml@main with: package-name: 'surface-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"]' @@ -30,7 +30,7 @@ jobs: package-manager: 'poetry' package-name: 'surface-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/.readthedocs.yaml b/.readthedocs.yaml index 9d08581..23166bf 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -9,7 +9,7 @@ version: 2 build: os: ubuntu-22.04 tools: - python: "3.10" + python: "3.12" # You can also specify other tool versions: # nodejs: "19" # rust: "1.64" diff --git a/README-dev.rst b/README-dev.rst index 4dad6ed..0b75583 100644 --- a/README-dev.rst +++ b/README-dev.rst @@ -46,7 +46,7 @@ The python versions are specified at the beginning of the ``devtools/run_conda_l .. code-block:: python - _python_versions = ["3.10", "3.11"] + _python_versions = ["3.12", "3.13"] The ``Install_or_Update.bat`` and the ``setup-dev.bat`` will use them to install the environment. diff --git a/README.rst b/README.rst index d030ea1..dd9202a 100644 --- a/README.rst +++ b/README.rst @@ -50,7 +50,7 @@ Documentation Installation ^^^^^^^^^^^^ -**surface-apps** is currently written for Python 3.10 or higher. +**surface-apps** is currently written for Python 3.12 or higher. Install Conda ------------- diff --git a/deps-lock-config.yaml b/deps-lock-config.yaml index 0ee84c5..5903b48 100644 --- a/deps-lock-config.yaml +++ b/deps-lock-config.yaml @@ -1,5 +1,4 @@ include_dev: True py_versions: - - "3.10" - - "3.11" - "3.12" + - "3.13" diff --git a/docs/source/conf.py b/docs/source/conf.py index 24118d0..0cc13f0 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -25,8 +25,12 @@ # The full version, including alpha/beta/rc tags. release = version("surface-apps") # The shorter X.Y.Z version. -version = Version(release).base_version +pep_version = Version(release) +if pep_version.is_postrelease: + release = pep_version.base_version +# The short X.Y.Z version. +version = Version(release).base_version # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/environments/env-python-3.13.yml b/environments/env-python-3.13.yml new file mode 100644 index 0000000..f3de72d --- /dev/null +++ b/environments/env-python-3.13.yml @@ -0,0 +1,3 @@ +dependencies: + - python=3.13.* + - pip 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 5ee420a..0000000 --- a/environments/py-3.10-linux-64-dev.conda.lock.yml +++ /dev/null @@ -1,169 +0,0 @@ -# Generated by conda-lock. -# platform: linux-64 -# input_hash: 0b5bf197c6326e99c2eebfe35104c30ee42a7348ab3f970520c12021222f0d78 - -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.2=py310hff52083_0 - - babel=2.17.0=pyhd8ed1ab_0 - - blosc=1.21.6=he440d0b_1 - - brotli-python=1.1.0=py310hea6c23e_4 - - brunsli=0.1=he3183e4_1 - - bzip2=1.0.8=hda65f42_8 - - c-ares=1.34.5=hb9d3cd8_0 - - c-blosc2=2.19.1=h4cfbee9_0 - - ca-certificates=2025.10.5=hbd8a1cb_0 - - cached-property=1.5.2=hd8ed1ab_1 - - cached_property=1.5.2=pyha770c72_1 - - certifi=2025.10.5=pyhd8ed1ab_0 - - cffi=2.0.0=py310he7384ee_1 - - charls=2.4.2=h59595ed_0 - - charset-normalizer=3.4.4=pyhd8ed1ab_0 - - colorama=0.4.6=pyhd8ed1ab_1 - - coverage=7.11.3=py310h3406613_0 - - dav1d=1.2.1=hd590300_0 - - dill=0.4.0=pyhd8ed1ab_0 - - docutils=0.21.2=pyhd8ed1ab_1 - - exceptiongroup=1.3.0=pyhd8ed1ab_0 - - freetype=2.14.1=ha770c72_0 - - giflib=5.2.2=hd590300_0 - - h2=4.3.0=pyhcf101f3_0 - - h5py=3.15.1=nompi_py310h4aa865e_100 - - hdf5=1.14.6=nompi_h6e4c0c1_103 - - hpack=4.1.0=pyhd8ed1ab_0 - - hyperframe=6.1.0=pyhd8ed1ab_0 - - icu=75.1=he02047a_0 - - idna=3.11=pyhd8ed1ab_0 - - imagecodecs=2025.3.30=py310h4eb8eaf_2 - - imageio=2.37.0=pyhfb79c49_0 - - imagesize=1.4.1=pyhd8ed1ab_0 - - importlib-metadata=8.7.0=pyhe01879c_1 - - iniconfig=2.3.0=pyhd8ed1ab_0 - - isort=7.0.0=pyhd8ed1ab_0 - - jinja2=3.1.6=pyhd8ed1ab_0 - - jxrlib=1.1=hd590300_3 - - keyutils=1.6.3=hb9d3cd8_0 - - krb5=1.21.3=h659f571_0 - - lazy-loader=0.4=pyhd8ed1ab_2 - - lcms2=2.17=h717163a_0 - - ld_impl_linux-64=2.44=h1aa0949_5 - - lerc=4.0.0=h0aef613_1 - - libaec=1.1.4=h3f801dc_0 - - libavif16=1.3.0=h6395336_2 - - libblas=3.9.0=38_h4a7cf45_openblas - - libbrotlicommon=1.1.0=hb03c661_4 - - libbrotlidec=1.1.0=hb03c661_4 - - libbrotlienc=1.1.0=hb03c661_4 - - libcblas=3.9.0=38_h0358290_openblas - - libcurl=8.17.0=h4e3cde8_0 - - libdeflate=1.24=h86f0d12_0 - - libedit=3.1.20250104=pl5321h7949ede_0 - - libev=4.33=hd590300_2 - - libexpat=2.7.1=hecca717_0 - - libffi=3.5.2=h9ec8514_0 - - libfreetype=2.14.1=ha770c72_0 - - libfreetype6=2.14.1=h73754d4_0 - - libgcc=15.2.0=h767d61c_7 - - libgcc-ng=15.2.0=h69a702a_7 - - libgfortran=15.2.0=h69a702a_7 - - libgfortran5=15.2.0=hcd61629_7 - - libgomp=15.2.0=h767d61c_7 - - libhwy=1.3.0=h4c17acf_1 - - libjpeg-turbo=3.1.2=hb03c661_0 - - libjxl=0.11.1=h6cb5226_4 - - liblapack=3.9.0=38_h47877c9_openblas - - liblzma=5.8.1=hb9d3cd8_2 - - libnghttp2=1.67.0=had1ee68_0 - - libnsl=2.0.1=hb9d3cd8_1 - - libopenblas=0.3.30=pthreads_h94d23a6_3 - - libpng=1.6.50=h421ea60_1 - - libsqlite=3.51.0=hee844dc_0 - - libssh2=1.11.1=hcf80075_0 - - libstdcxx=15.2.0=h8f9b012_7 - - libstdcxx-ng=15.2.0=h4852527_7 - - libtiff=4.7.1=h8261f1e_0 - - libuuid=2.41.2=he9a06e4_0 - - libwebp-base=1.6.0=hd42ef1d_0 - - libxcb=1.17.0=h8a09558_0 - - libxcrypt=4.4.36=hd590300_1 - - libzlib=1.3.1=hb9d3cd8_2 - - libzopfli=1.0.3=h9c3ff4c_0 - - lz4-c=1.10.0=h5888daf_1 - - markupsafe=3.0.3=py310h3406613_0 - - mccabe=0.7.0=pyhd8ed1ab_1 - - ncurses=6.5=h2d0b736_3 - - networkx=3.4.2=pyh267e887_2 - - numpy=1.26.4=py310hb13e2d6_0 - - openjpeg=2.5.4=h55fea9a_0 - - openssl=3.5.4=h26f9b46_0 - - packaging=25.0=pyh29332c3_1 - - pillow=10.3.0=py310hebfe307_1 - - pip=25.3=pyh8b19718_0 - - platformdirs=4.5.0=pyhcf101f3_0 - - pluggy=1.6.0=pyhd8ed1ab_0 - - pthread-stubs=0.4=hb9d3cd8_1002 - - pycparser=2.22=pyh29332c3_1 - - pydantic=2.12.4=pyh3cfb1c2_0 - - pydantic-core=2.41.5=py310hd8f68c5_0 - - pygments=2.19.2=pyhd8ed1ab_0 - - pylint=4.0.2=pyhcf101f3_0 - - pysocks=1.7.1=pyha55dd90_7 - - pytest=9.0.0=pyhcf101f3_0 - - pytest-cov=7.0.0=pyhcf101f3_1 - - python=3.10.19=h3c07f61_2_cpython - - python_abi=3.10=8_cp310 - - pytz=2025.2=pyhd8ed1ab_0 - - pywavelets=1.8.0=py310hf462985_0 - - pyyaml=6.0.3=py310h3406613_0 - - rav1e=0.7.1=h8fae777_3 - - readline=8.2=h8c095d6_2 - - requests=2.32.5=pyhd8ed1ab_0 - - scikit-image=0.25.2=py310h0158d43_2 - - scipy=1.14.1=py310hfcf56fc_2 - - setuptools=80.9.0=pyhff2d567_0 - - snappy=1.2.2=h03e3b7b_0 - - 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_hd72426e_102 - - tomli=2.3.0=pyhcf101f3_0 - - tomlkit=0.13.3=pyha770c72_0 - - tqdm=4.67.1=pyhd8ed1ab_1 - - typing-extensions=4.15.0=h396c80c_0 - - typing-inspection=0.4.2=pyhd8ed1ab_0 - - typing_extensions=4.15.0=pyhcf101f3_0 - - tzdata=2025b=h78e105d_0 - - urllib3=2.5.0=pyhd8ed1ab_0 - - wheel=0.45.1=pyhd8ed1ab_1 - - xorg-libxau=1.0.12=hb9d3cd8_0 - - xorg-libxdmcp=1.1.5=hb9d3cd8_0 - - yaml=0.2.5=h280c20c_3 - - zfp=1.0.1=h909a3a2_3 - - zipp=3.23.0=pyhd8ed1ab_0 - - zlib-ng=2.2.5=hde8ca8f_0 - - zstandard=0.25.0=py310h139afa4_1 - - zstd=1.5.7=hb8e6e7a_2 - - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@80c46588d47b70a1dd26aef06ccfa24bc1585502 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@8f630a84b2b9f2b7632f895e1521d8d61c04e80e - -variables: - KMP_WARNINGS: 0 diff --git a/environments/py-3.10-linux-64.conda.lock.yml b/environments/py-3.10-linux-64.conda.lock.yml deleted file mode 100644 index 24fe201..0000000 --- a/environments/py-3.10-linux-64.conda.lock.yml +++ /dev/null @@ -1,120 +0,0 @@ -# Generated by conda-lock. -# platform: linux-64 -# input_hash: 0b5bf197c6326e99c2eebfe35104c30ee42a7348ab3f970520c12021222f0d78 - -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 - - blosc=1.21.6=he440d0b_1 - - brunsli=0.1=he3183e4_1 - - bzip2=1.0.8=hda65f42_8 - - c-ares=1.34.5=hb9d3cd8_0 - - c-blosc2=2.19.1=h4cfbee9_0 - - ca-certificates=2025.10.5=hbd8a1cb_0 - - cached-property=1.5.2=hd8ed1ab_1 - - cached_property=1.5.2=pyha770c72_1 - - charls=2.4.2=h59595ed_0 - - colorama=0.4.6=pyhd8ed1ab_1 - - dav1d=1.2.1=hd590300_0 - - freetype=2.14.1=ha770c72_0 - - giflib=5.2.2=hd590300_0 - - h5py=3.15.1=nompi_py310h4aa865e_100 - - hdf5=1.14.6=nompi_h6e4c0c1_103 - - icu=75.1=he02047a_0 - - imagecodecs=2025.3.30=py310h4eb8eaf_2 - - imageio=2.37.0=pyhfb79c49_0 - - importlib-metadata=8.7.0=pyhe01879c_1 - - jxrlib=1.1=hd590300_3 - - keyutils=1.6.3=hb9d3cd8_0 - - krb5=1.21.3=h659f571_0 - - lazy-loader=0.4=pyhd8ed1ab_2 - - lcms2=2.17=h717163a_0 - - ld_impl_linux-64=2.44=h1aa0949_5 - - lerc=4.0.0=h0aef613_1 - - libaec=1.1.4=h3f801dc_0 - - libavif16=1.3.0=h6395336_2 - - libblas=3.9.0=38_h4a7cf45_openblas - - libbrotlicommon=1.1.0=hb03c661_4 - - libbrotlidec=1.1.0=hb03c661_4 - - libbrotlienc=1.1.0=hb03c661_4 - - libcblas=3.9.0=38_h0358290_openblas - - libcurl=8.17.0=h4e3cde8_0 - - libdeflate=1.24=h86f0d12_0 - - libedit=3.1.20250104=pl5321h7949ede_0 - - libev=4.33=hd590300_2 - - libexpat=2.7.1=hecca717_0 - - libffi=3.5.2=h9ec8514_0 - - libfreetype=2.14.1=ha770c72_0 - - libfreetype6=2.14.1=h73754d4_0 - - libgcc=15.2.0=h767d61c_7 - - libgcc-ng=15.2.0=h69a702a_7 - - libgfortran=15.2.0=h69a702a_7 - - libgfortran5=15.2.0=hcd61629_7 - - libgomp=15.2.0=h767d61c_7 - - libhwy=1.3.0=h4c17acf_1 - - libjpeg-turbo=3.1.2=hb03c661_0 - - libjxl=0.11.1=h6cb5226_4 - - liblapack=3.9.0=38_h47877c9_openblas - - liblzma=5.8.1=hb9d3cd8_2 - - libnghttp2=1.67.0=had1ee68_0 - - libnsl=2.0.1=hb9d3cd8_1 - - libopenblas=0.3.30=pthreads_h94d23a6_3 - - libpng=1.6.50=h421ea60_1 - - libsqlite=3.51.0=hee844dc_0 - - libssh2=1.11.1=hcf80075_0 - - libstdcxx=15.2.0=h8f9b012_7 - - libstdcxx-ng=15.2.0=h4852527_7 - - libtiff=4.7.1=h8261f1e_0 - - libuuid=2.41.2=he9a06e4_0 - - libwebp-base=1.6.0=hd42ef1d_0 - - libxcb=1.17.0=h8a09558_0 - - libxcrypt=4.4.36=hd590300_1 - - libzlib=1.3.1=hb9d3cd8_2 - - libzopfli=1.0.3=h9c3ff4c_0 - - lz4-c=1.10.0=h5888daf_1 - - ncurses=6.5=h2d0b736_3 - - networkx=3.4.2=pyh267e887_2 - - numpy=1.26.4=py310hb13e2d6_0 - - openjpeg=2.5.4=h55fea9a_0 - - openssl=3.5.4=h26f9b46_0 - - packaging=25.0=pyh29332c3_1 - - pillow=10.3.0=py310hebfe307_1 - - pip=25.3=pyh8b19718_0 - - pthread-stubs=0.4=hb9d3cd8_1002 - - pydantic=2.12.4=pyh3cfb1c2_0 - - pydantic-core=2.41.5=py310hd8f68c5_0 - - python=3.10.19=h3c07f61_2_cpython - - python_abi=3.10=8_cp310 - - pywavelets=1.8.0=py310hf462985_0 - - rav1e=0.7.1=h8fae777_3 - - readline=8.2=h8c095d6_2 - - scikit-image=0.25.2=py310h0158d43_2 - - scipy=1.14.1=py310hfcf56fc_2 - - setuptools=80.9.0=pyhff2d567_0 - - snappy=1.2.2=h03e3b7b_0 - - svt-av1=3.1.2=hecca717_0 - - tifffile=2025.5.10=pyhd8ed1ab_0 - - tk=8.6.13=noxft_hd72426e_102 - - tqdm=4.67.1=pyhd8ed1ab_1 - - typing-extensions=4.15.0=h396c80c_0 - - typing-inspection=0.4.2=pyhd8ed1ab_0 - - typing_extensions=4.15.0=pyhcf101f3_0 - - tzdata=2025b=h78e105d_0 - - wheel=0.45.1=pyhd8ed1ab_1 - - xorg-libxau=1.0.12=hb9d3cd8_0 - - xorg-libxdmcp=1.1.5=hb9d3cd8_0 - - zfp=1.0.1=h909a3a2_3 - - zipp=3.23.0=pyhd8ed1ab_0 - - zlib-ng=2.2.5=hde8ca8f_0 - - zstd=1.5.7=hb8e6e7a_2 - - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@80c46588d47b70a1dd26aef06ccfa24bc1585502 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@8f630a84b2b9f2b7632f895e1521d8d61c04e80e - -variables: - KMP_WARNINGS: 0 diff --git a/environments/py-3.10-win-64-dev.conda.lock.yml b/environments/py-3.10-win-64-dev.conda.lock.yml deleted file mode 100644 index e61e6be..0000000 --- a/environments/py-3.10-win-64-dev.conda.lock.yml +++ /dev/null @@ -1,164 +0,0 @@ -# Generated by conda-lock. -# platform: win-64 -# input_hash: b499b1d55238c786e2257f1765ab46e05f82fd133075d87d794ceb57b45d8132 - -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.2=py310h5588dad_0 - - babel=2.17.0=pyhd8ed1ab_0 - - blosc=1.21.6=hfd34d9b_1 - - brotli-python=1.1.0=py310h73ae2b4_4 - - bzip2=1.0.8=h0ad9c76_8 - - c-blosc2=2.19.1=h3cf07e4_0 - - ca-certificates=2025.10.5=h4c7d964_0 - - cached-property=1.5.2=hd8ed1ab_1 - - cached_property=1.5.2=pyha770c72_1 - - certifi=2025.10.5=pyhd8ed1ab_0 - - cffi=2.0.0=py310h29418f3_1 - - charls=2.4.2=h1537add_0 - - charset-normalizer=3.4.4=pyhd8ed1ab_0 - - colorama=0.4.6=pyhd8ed1ab_1 - - coverage=7.11.3=py310hdb0e946_0 - - dav1d=1.2.1=hcfcfb64_0 - - dill=0.4.0=pyhd8ed1ab_0 - - docutils=0.21.2=pyhd8ed1ab_1 - - exceptiongroup=1.3.0=pyhd8ed1ab_0 - - freetype=2.14.1=h57928b3_0 - - giflib=5.2.2=h64bf75a_0 - - h2=4.3.0=pyhcf101f3_0 - - h5py=3.15.1=nompi_py310hb7e4da9_100 - - hdf5=1.14.6=nompi_he30205f_103 - - hpack=4.1.0=pyhd8ed1ab_0 - - hyperframe=6.1.0=pyhd8ed1ab_0 - - 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 - - jinja2=3.1.6=pyhd8ed1ab_0 - - jxrlib=1.1=hcfcfb64_3 - - 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.9.0=38_hf2e6a31_mkl - - libbrotlicommon=1.1.0=hfd05255_4 - - libbrotlidec=1.1.0=hfd05255_4 - - libbrotlienc=1.1.0=hfd05255_4 - - libcblas=3.9.0=38_h2a3cdd5_mkl - - libcurl=8.17.0=h43ecb02_0 - - libdeflate=1.24=h76ddb4d_0 - - libexpat=2.7.1=hac47afa_0 - - libffi=3.5.2=h52bdfb6_0 - - libfreetype=2.14.1=h57928b3_0 - - libfreetype6=2.14.1=hdbac1cb_0 - - libgcc=15.2.0=h1383e82_7 - - libgomp=15.2.0=h1383e82_7 - - libhwloc=2.12.1=default_h64bd3f2_1002 - - 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.9.0=38_hf9ab0e9_mkl - - liblzma=5.8.1=h2466b09_2 - - libpng=1.6.50=h7351971_1 - - libsqlite=3.51.0=hf5d6505_0 - - 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=h5d26750_0 - - libxml2-16=2.15.1=h692994f_0 - - libzlib=1.3.1=h2466b09_2 - - libzopfli=1.0.3=h0e60522_0 - - llvm-openmp=21.1.5=hfa2b4ca_0 - - lz4-c=1.10.0=h2466b09_1 - - markupsafe=3.0.3=py310hdb0e946_0 - - mccabe=0.7.0=pyhd8ed1ab_1 - - mkl=2025.3.0=hac47afa_454 - - networkx=3.4.2=pyh267e887_2 - - numpy=1.26.4=py310hf667824_0 - - openjpeg=2.5.4=h24db6dd_0 - - openssl=3.5.4=h725018a_0 - - packaging=25.0=pyh29332c3_1 - - pillow=10.3.0=py310h3e38d90_1 - - pip=25.3=pyh8b19718_0 - - platformdirs=4.5.0=pyhcf101f3_0 - - pluggy=1.6.0=pyhd8ed1ab_0 - - pthread-stubs=0.4=h0e40799_1002 - - pycparser=2.22=pyh29332c3_1 - - pydantic=2.12.4=pyh3cfb1c2_0 - - pydantic-core=2.41.5=py310h034784e_0 - - pygments=2.19.2=pyhd8ed1ab_0 - - pylint=4.0.2=pyhcf101f3_0 - - pysocks=1.7.1=pyh09c184e_7 - - pytest=9.0.0=pyhcf101f3_0 - - pytest-cov=7.0.0=pyhcf101f3_1 - - python=3.10.19=hc20f281_2_cpython - - python_abi=3.10=8_cp310 - - pytz=2025.2=pyhd8ed1ab_0 - - pywavelets=1.8.0=py310hb0944cc_0 - - pyyaml=6.0.3=py310hdb0e946_0 - - rav1e=0.7.1=ha073cba_3 - - requests=2.32.5=pyhd8ed1ab_0 - - scikit-image=0.25.2=py310hed136d8_2 - - scipy=1.14.1=py310hbd0dde3_2 - - setuptools=80.9.0=pyhff2d567_0 - - snappy=1.2.2=h7fa0ca8_0 - - 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=hd094cb3_1 - - tifffile=2025.5.10=pyhd8ed1ab_0 - - tk=8.6.13=h2c6b04d_2 - - tomli=2.3.0=pyhcf101f3_0 - - tomlkit=0.13.3=pyha770c72_0 - - tqdm=4.67.1=pyhd8ed1ab_1 - - typing-extensions=4.15.0=h396c80c_0 - - typing-inspection=0.4.2=pyhd8ed1ab_0 - - typing_extensions=4.15.0=pyhcf101f3_0 - - tzdata=2025b=h78e105d_0 - - ucrt=10.0.26100.0=h57928b3_0 - - urllib3=2.5.0=pyhd8ed1ab_0 - - vc=14.3=h2b53caa_32 - - vc14_runtime=14.44.35208=h818238b_32 - - vcomp14=14.44.35208=h818238b_32 - - vs2015_runtime=14.44.35208=h38c0c73_32 - - wheel=0.45.1=pyhd8ed1ab_1 - - win_inet_pton=1.1.0=pyh7428d3b_8 - - xorg-libxau=1.0.12=h0e40799_0 - - xorg-libxdmcp=1.1.5=h0e40799_0 - - yaml=0.2.5=h6a83c73_3 - - zfp=1.0.1=h2f0f97f_3 - - zipp=3.23.0=pyhd8ed1ab_0 - - zlib-ng=2.2.5=h32d8bfd_0 - - zstandard=0.25.0=py310h1637853_1 - - zstd=1.5.7=hbeecb71_2 - - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@80c46588d47b70a1dd26aef06ccfa24bc1585502 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@8f630a84b2b9f2b7632f895e1521d8d61c04e80e - -variables: - KMP_WARNINGS: 0 diff --git a/environments/py-3.10-win-64.conda.lock.yml b/environments/py-3.10-win-64.conda.lock.yml deleted file mode 100644 index 2eb70d3..0000000 --- a/environments/py-3.10-win-64.conda.lock.yml +++ /dev/null @@ -1,114 +0,0 @@ -# Generated by conda-lock. -# platform: win-64 -# input_hash: b499b1d55238c786e2257f1765ab46e05f82fd133075d87d794ceb57b45d8132 - -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 - - blosc=1.21.6=hfd34d9b_1 - - bzip2=1.0.8=h0ad9c76_8 - - c-blosc2=2.19.1=h3cf07e4_0 - - ca-certificates=2025.10.5=h4c7d964_0 - - cached-property=1.5.2=hd8ed1ab_1 - - cached_property=1.5.2=pyha770c72_1 - - charls=2.4.2=h1537add_0 - - colorama=0.4.6=pyhd8ed1ab_1 - - dav1d=1.2.1=hcfcfb64_0 - - freetype=2.14.1=h57928b3_0 - - giflib=5.2.2=h64bf75a_0 - - h5py=3.15.1=nompi_py310hb7e4da9_100 - - hdf5=1.14.6=nompi_he30205f_103 - - imagecodecs=2025.3.30=py310h9ee7ba4_2 - - imageio=2.37.0=pyhfb79c49_0 - - importlib-metadata=8.7.0=pyhe01879c_1 - - jxrlib=1.1=hcfcfb64_3 - - 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.9.0=38_hf2e6a31_mkl - - libbrotlicommon=1.1.0=hfd05255_4 - - libbrotlidec=1.1.0=hfd05255_4 - - libbrotlienc=1.1.0=hfd05255_4 - - libcblas=3.9.0=38_h2a3cdd5_mkl - - libcurl=8.17.0=h43ecb02_0 - - libdeflate=1.24=h76ddb4d_0 - - libexpat=2.7.1=hac47afa_0 - - libffi=3.5.2=h52bdfb6_0 - - libfreetype=2.14.1=h57928b3_0 - - libfreetype6=2.14.1=hdbac1cb_0 - - libgcc=15.2.0=h1383e82_7 - - libgomp=15.2.0=h1383e82_7 - - libhwloc=2.12.1=default_h64bd3f2_1002 - - 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.9.0=38_hf9ab0e9_mkl - - liblzma=5.8.1=h2466b09_2 - - libpng=1.6.50=h7351971_1 - - libsqlite=3.51.0=hf5d6505_0 - - 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=h5d26750_0 - - libxml2-16=2.15.1=h692994f_0 - - libzlib=1.3.1=h2466b09_2 - - libzopfli=1.0.3=h0e60522_0 - - llvm-openmp=21.1.5=hfa2b4ca_0 - - lz4-c=1.10.0=h2466b09_1 - - mkl=2025.3.0=hac47afa_454 - - networkx=3.4.2=pyh267e887_2 - - numpy=1.26.4=py310hf667824_0 - - openjpeg=2.5.4=h24db6dd_0 - - openssl=3.5.4=h725018a_0 - - packaging=25.0=pyh29332c3_1 - - pillow=10.3.0=py310h3e38d90_1 - - pip=25.3=pyh8b19718_0 - - pthread-stubs=0.4=h0e40799_1002 - - pydantic=2.12.4=pyh3cfb1c2_0 - - pydantic-core=2.41.5=py310h034784e_0 - - python=3.10.19=hc20f281_2_cpython - - python_abi=3.10=8_cp310 - - pywavelets=1.8.0=py310hb0944cc_0 - - rav1e=0.7.1=ha073cba_3 - - scikit-image=0.25.2=py310hed136d8_2 - - scipy=1.14.1=py310hbd0dde3_2 - - setuptools=80.9.0=pyhff2d567_0 - - snappy=1.2.2=h7fa0ca8_0 - - svt-av1=3.1.2=hac47afa_0 - - tbb=2022.3.0=hd094cb3_1 - - tifffile=2025.5.10=pyhd8ed1ab_0 - - tk=8.6.13=h2c6b04d_2 - - tqdm=4.67.1=pyhd8ed1ab_1 - - typing-extensions=4.15.0=h396c80c_0 - - typing-inspection=0.4.2=pyhd8ed1ab_0 - - typing_extensions=4.15.0=pyhcf101f3_0 - - tzdata=2025b=h78e105d_0 - - ucrt=10.0.26100.0=h57928b3_0 - - vc=14.3=h2b53caa_32 - - vc14_runtime=14.44.35208=h818238b_32 - - vcomp14=14.44.35208=h818238b_32 - - vs2015_runtime=14.44.35208=h38c0c73_32 - - wheel=0.45.1=pyhd8ed1ab_1 - - xorg-libxau=1.0.12=h0e40799_0 - - xorg-libxdmcp=1.1.5=h0e40799_0 - - zfp=1.0.1=h2f0f97f_3 - - zipp=3.23.0=pyhd8ed1ab_0 - - zlib-ng=2.2.5=h32d8bfd_0 - - zstd=1.5.7=hbeecb71_2 - - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@80c46588d47b70a1dd26aef06ccfa24bc1585502 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@8f630a84b2b9f2b7632f895e1521d8d61c04e80e - -variables: - KMP_WARNINGS: 0 diff --git a/environments/py-3.11-linux-64-dev.conda.lock.yml b/environments/py-3.11-linux-64-dev.conda.lock.yml deleted file mode 100644 index c2d6227..0000000 --- a/environments/py-3.11-linux-64-dev.conda.lock.yml +++ /dev/null @@ -1,170 +0,0 @@ -# Generated by conda-lock. -# platform: linux-64 -# input_hash: 94cd3840cb726b8e1470e61ac26aa044434f21a6982071fd7d1b43870f73f707 - -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.2=py311h38be061_0 - - babel=2.17.0=pyhd8ed1ab_0 - - blosc=1.21.6=he440d0b_1 - - brotli-python=1.2.0=py311h7c6b74e_0 - - brunsli=0.1=hd1e3526_2 - - bzip2=1.0.8=hda65f42_8 - - c-ares=1.34.5=hb9d3cd8_0 - - c-blosc2=2.22.0=h4cfbee9_0 - - ca-certificates=2025.10.5=hbd8a1cb_0 - - cached-property=1.5.2=hd8ed1ab_1 - - cached_property=1.5.2=pyha770c72_1 - - certifi=2025.10.5=pyhd8ed1ab_0 - - cffi=2.0.0=py311h03d9500_1 - - charls=2.4.2=h59595ed_0 - - charset-normalizer=3.4.4=pyhd8ed1ab_0 - - colorama=0.4.6=pyhd8ed1ab_1 - - coverage=7.11.3=py311h3778330_0 - - dav1d=1.2.1=hd590300_0 - - dill=0.4.0=pyhd8ed1ab_0 - - docutils=0.21.2=pyhd8ed1ab_1 - - exceptiongroup=1.3.0=pyhd8ed1ab_0 - - freetype=2.14.1=ha770c72_0 - - giflib=5.2.2=hd590300_0 - - h2=4.3.0=pyhcf101f3_0 - - h5py=3.15.1=nompi_py311h0b2f468_100 - - hdf5=1.14.6=nompi_h6e4c0c1_103 - - hpack=4.1.0=pyhd8ed1ab_0 - - hyperframe=6.1.0=pyhd8ed1ab_0 - - icu=75.1=he02047a_0 - - idna=3.11=pyhd8ed1ab_0 - - imagecodecs=2025.8.2=py311h99464e2_7 - - imageio=2.37.0=pyhfb79c49_0 - - imagesize=1.4.1=pyhd8ed1ab_0 - - importlib-metadata=8.7.0=pyhe01879c_1 - - iniconfig=2.3.0=pyhd8ed1ab_0 - - isort=7.0.0=pyhd8ed1ab_0 - - jinja2=3.1.6=pyhd8ed1ab_0 - - jxrlib=1.1=hd590300_3 - - keyutils=1.6.3=hb9d3cd8_0 - - krb5=1.21.3=h659f571_0 - - lazy-loader=0.4=pyhd8ed1ab_2 - - lcms2=2.17=h717163a_0 - - ld_impl_linux-64=2.44=h1aa0949_5 - - lerc=4.0.0=h0aef613_1 - - libaec=1.1.4=h3f801dc_0 - - libavif16=1.3.0=h6395336_2 - - libblas=3.9.0=38_h4a7cf45_openblas - - libbrotlicommon=1.2.0=h09219d5_0 - - libbrotlidec=1.2.0=hd53d788_0 - - libbrotlienc=1.2.0=h02bd7ab_0 - - libcblas=3.9.0=38_h0358290_openblas - - libcurl=8.17.0=h4e3cde8_0 - - libdeflate=1.25=h17f619e_0 - - libedit=3.1.20250104=pl5321h7949ede_0 - - libev=4.33=hd590300_2 - - libexpat=2.7.1=hecca717_0 - - libffi=3.5.2=h9ec8514_0 - - libfreetype=2.14.1=ha770c72_0 - - libfreetype6=2.14.1=h73754d4_0 - - libgcc=15.2.0=h767d61c_7 - - libgcc-ng=15.2.0=h69a702a_7 - - libgfortran=15.2.0=h69a702a_7 - - libgfortran5=15.2.0=hcd61629_7 - - libgomp=15.2.0=h767d61c_7 - - libhwy=1.3.0=h4c17acf_1 - - libjpeg-turbo=3.1.2=hb03c661_0 - - libjxl=0.11.1=hf08fa70_5 - - liblapack=3.9.0=38_h47877c9_openblas - - liblzma=5.8.1=hb9d3cd8_2 - - libnghttp2=1.67.0=had1ee68_0 - - libnsl=2.0.1=hb9d3cd8_1 - - libopenblas=0.3.30=pthreads_h94d23a6_3 - - libpng=1.6.50=h421ea60_1 - - libsqlite=3.51.0=hee844dc_0 - - libssh2=1.11.1=hcf80075_0 - - libstdcxx=15.2.0=h8f9b012_7 - - libstdcxx-ng=15.2.0=h4852527_7 - - libtiff=4.7.1=h9d88235_1 - - libuuid=2.41.2=he9a06e4_0 - - libwebp-base=1.6.0=hd42ef1d_0 - - libxcb=1.17.0=h8a09558_0 - - libxcrypt=4.4.36=hd590300_1 - - libzlib=1.3.1=hb9d3cd8_2 - - libzopfli=1.0.3=h9c3ff4c_0 - - lz4-c=1.10.0=h5888daf_1 - - markupsafe=3.0.3=py311h3778330_0 - - mccabe=0.7.0=pyhd8ed1ab_1 - - ncurses=6.5=h2d0b736_3 - - networkx=3.5=pyhe01879c_0 - - numpy=1.26.4=py311h64a7726_0 - - openjpeg=2.5.4=h55fea9a_0 - - openssl=3.5.4=h26f9b46_0 - - packaging=25.0=pyh29332c3_1 - - pillow=10.3.0=py311h82a398c_1 - - pip=25.3=pyh8b19718_0 - - platformdirs=4.5.0=pyhcf101f3_0 - - pluggy=1.6.0=pyhd8ed1ab_0 - - pthread-stubs=0.4=hb9d3cd8_1002 - - pycparser=2.22=pyh29332c3_1 - - pydantic=2.12.4=pyh3cfb1c2_0 - - pydantic-core=2.41.5=py311h902ca64_0 - - pygments=2.19.2=pyhd8ed1ab_0 - - pylint=4.0.2=pyhcf101f3_0 - - pysocks=1.7.1=pyha55dd90_7 - - pytest=9.0.0=pyhcf101f3_0 - - pytest-cov=7.0.0=pyhcf101f3_1 - - python=3.11.14=hd63d673_2_cpython - - 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 - - readline=8.2=h8c095d6_2 - - requests=2.32.5=pyhd8ed1ab_0 - - roman-numerals-py=3.1.0=pyhd8ed1ab_0 - - scikit-image=0.25.2=py311hed34c8f_2 - - scipy=1.14.1=py311he9a78e4_2 - - setuptools=80.9.0=pyhff2d567_0 - - snappy=1.2.2=h03e3b7b_0 - - 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 - - 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.10.16=pyhd8ed1ab_0 - - tk=8.6.13=noxft_hd72426e_102 - - tomli=2.3.0=pyhcf101f3_0 - - tomlkit=0.13.3=pyha770c72_0 - - tqdm=4.67.1=pyhd8ed1ab_1 - - typing-extensions=4.15.0=h396c80c_0 - - typing-inspection=0.4.2=pyhd8ed1ab_0 - - typing_extensions=4.15.0=pyhcf101f3_0 - - tzdata=2025b=h78e105d_0 - - urllib3=2.5.0=pyhd8ed1ab_0 - - wheel=0.45.1=pyhd8ed1ab_1 - - xorg-libxau=1.0.12=hb9d3cd8_0 - - xorg-libxdmcp=1.1.5=hb9d3cd8_0 - - yaml=0.2.5=h280c20c_3 - - zfp=1.0.1=h909a3a2_3 - - zipp=3.23.0=pyhd8ed1ab_0 - - zlib-ng=2.2.5=hde8ca8f_0 - - zstandard=0.25.0=py311haee01d2_1 - - zstd=1.5.7=hb8e6e7a_2 - - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@80c46588d47b70a1dd26aef06ccfa24bc1585502 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@8f630a84b2b9f2b7632f895e1521d8d61c04e80e - -variables: - KMP_WARNINGS: 0 diff --git a/environments/py-3.11-linux-64.conda.lock.yml b/environments/py-3.11-linux-64.conda.lock.yml deleted file mode 100644 index aa2bfdf..0000000 --- a/environments/py-3.11-linux-64.conda.lock.yml +++ /dev/null @@ -1,120 +0,0 @@ -# Generated by conda-lock. -# platform: linux-64 -# input_hash: 94cd3840cb726b8e1470e61ac26aa044434f21a6982071fd7d1b43870f73f707 - -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 - - blosc=1.21.6=he440d0b_1 - - brunsli=0.1=hd1e3526_2 - - bzip2=1.0.8=hda65f42_8 - - c-ares=1.34.5=hb9d3cd8_0 - - c-blosc2=2.22.0=h4cfbee9_0 - - ca-certificates=2025.10.5=hbd8a1cb_0 - - cached-property=1.5.2=hd8ed1ab_1 - - cached_property=1.5.2=pyha770c72_1 - - charls=2.4.2=h59595ed_0 - - colorama=0.4.6=pyhd8ed1ab_1 - - dav1d=1.2.1=hd590300_0 - - freetype=2.14.1=ha770c72_0 - - giflib=5.2.2=hd590300_0 - - h5py=3.15.1=nompi_py311h0b2f468_100 - - hdf5=1.14.6=nompi_h6e4c0c1_103 - - icu=75.1=he02047a_0 - - imagecodecs=2025.8.2=py311h99464e2_7 - - imageio=2.37.0=pyhfb79c49_0 - - importlib-metadata=8.7.0=pyhe01879c_1 - - jxrlib=1.1=hd590300_3 - - keyutils=1.6.3=hb9d3cd8_0 - - krb5=1.21.3=h659f571_0 - - lazy-loader=0.4=pyhd8ed1ab_2 - - lcms2=2.17=h717163a_0 - - ld_impl_linux-64=2.44=h1aa0949_5 - - lerc=4.0.0=h0aef613_1 - - libaec=1.1.4=h3f801dc_0 - - libavif16=1.3.0=h6395336_2 - - libblas=3.9.0=38_h4a7cf45_openblas - - libbrotlicommon=1.2.0=h09219d5_0 - - libbrotlidec=1.2.0=hd53d788_0 - - libbrotlienc=1.2.0=h02bd7ab_0 - - libcblas=3.9.0=38_h0358290_openblas - - libcurl=8.17.0=h4e3cde8_0 - - libdeflate=1.25=h17f619e_0 - - libedit=3.1.20250104=pl5321h7949ede_0 - - libev=4.33=hd590300_2 - - libexpat=2.7.1=hecca717_0 - - libffi=3.5.2=h9ec8514_0 - - libfreetype=2.14.1=ha770c72_0 - - libfreetype6=2.14.1=h73754d4_0 - - libgcc=15.2.0=h767d61c_7 - - libgcc-ng=15.2.0=h69a702a_7 - - libgfortran=15.2.0=h69a702a_7 - - libgfortran5=15.2.0=hcd61629_7 - - libgomp=15.2.0=h767d61c_7 - - libhwy=1.3.0=h4c17acf_1 - - libjpeg-turbo=3.1.2=hb03c661_0 - - libjxl=0.11.1=hf08fa70_5 - - liblapack=3.9.0=38_h47877c9_openblas - - liblzma=5.8.1=hb9d3cd8_2 - - libnghttp2=1.67.0=had1ee68_0 - - libnsl=2.0.1=hb9d3cd8_1 - - libopenblas=0.3.30=pthreads_h94d23a6_3 - - libpng=1.6.50=h421ea60_1 - - libsqlite=3.51.0=hee844dc_0 - - libssh2=1.11.1=hcf80075_0 - - libstdcxx=15.2.0=h8f9b012_7 - - libstdcxx-ng=15.2.0=h4852527_7 - - libtiff=4.7.1=h9d88235_1 - - libuuid=2.41.2=he9a06e4_0 - - libwebp-base=1.6.0=hd42ef1d_0 - - libxcb=1.17.0=h8a09558_0 - - libxcrypt=4.4.36=hd590300_1 - - libzlib=1.3.1=hb9d3cd8_2 - - libzopfli=1.0.3=h9c3ff4c_0 - - lz4-c=1.10.0=h5888daf_1 - - ncurses=6.5=h2d0b736_3 - - networkx=3.5=pyhe01879c_0 - - numpy=1.26.4=py311h64a7726_0 - - openjpeg=2.5.4=h55fea9a_0 - - openssl=3.5.4=h26f9b46_0 - - packaging=25.0=pyh29332c3_1 - - pillow=10.3.0=py311h82a398c_1 - - pip=25.3=pyh8b19718_0 - - pthread-stubs=0.4=hb9d3cd8_1002 - - pydantic=2.12.4=pyh3cfb1c2_0 - - pydantic-core=2.41.5=py311h902ca64_0 - - python=3.11.14=hd63d673_2_cpython - - python_abi=3.11=8_cp311 - - pywavelets=1.9.0=py311h0372a8f_2 - - rav1e=0.7.1=h8fae777_3 - - readline=8.2=h8c095d6_2 - - scikit-image=0.25.2=py311hed34c8f_2 - - scipy=1.14.1=py311he9a78e4_2 - - setuptools=80.9.0=pyhff2d567_0 - - snappy=1.2.2=h03e3b7b_0 - - svt-av1=3.1.2=hecca717_0 - - tifffile=2025.10.16=pyhd8ed1ab_0 - - tk=8.6.13=noxft_hd72426e_102 - - tqdm=4.67.1=pyhd8ed1ab_1 - - typing-extensions=4.15.0=h396c80c_0 - - typing-inspection=0.4.2=pyhd8ed1ab_0 - - typing_extensions=4.15.0=pyhcf101f3_0 - - tzdata=2025b=h78e105d_0 - - wheel=0.45.1=pyhd8ed1ab_1 - - xorg-libxau=1.0.12=hb9d3cd8_0 - - xorg-libxdmcp=1.1.5=hb9d3cd8_0 - - zfp=1.0.1=h909a3a2_3 - - zipp=3.23.0=pyhd8ed1ab_0 - - zlib-ng=2.2.5=hde8ca8f_0 - - zstd=1.5.7=hb8e6e7a_2 - - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@80c46588d47b70a1dd26aef06ccfa24bc1585502 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@8f630a84b2b9f2b7632f895e1521d8d61c04e80e - -variables: - KMP_WARNINGS: 0 diff --git a/environments/py-3.11-win-64-dev.conda.lock.yml b/environments/py-3.11-win-64-dev.conda.lock.yml deleted file mode 100644 index 7c743e6..0000000 --- a/environments/py-3.11-win-64-dev.conda.lock.yml +++ /dev/null @@ -1,165 +0,0 @@ -# Generated by conda-lock. -# platform: win-64 -# input_hash: 08acf3c6eb8e814618ddcc9939eb958324152e2e00a179b495e48418273ad3e1 - -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.2=py311h1ea47a8_0 - - babel=2.17.0=pyhd8ed1ab_0 - - blosc=1.21.6=hfd34d9b_1 - - brotli-python=1.2.0=py311h69b5583_0 - - bzip2=1.0.8=h0ad9c76_8 - - c-blosc2=2.22.0=h3cf07e4_0 - - ca-certificates=2025.10.5=h4c7d964_0 - - cached-property=1.5.2=hd8ed1ab_1 - - cached_property=1.5.2=pyha770c72_1 - - certifi=2025.10.5=pyhd8ed1ab_0 - - cffi=2.0.0=py311h3485c13_1 - - charls=2.4.2=h1537add_0 - - charset-normalizer=3.4.4=pyhd8ed1ab_0 - - colorama=0.4.6=pyhd8ed1ab_1 - - coverage=7.11.3=py311h3f79411_0 - - dav1d=1.2.1=hcfcfb64_0 - - dill=0.4.0=pyhd8ed1ab_0 - - docutils=0.21.2=pyhd8ed1ab_1 - - exceptiongroup=1.3.0=pyhd8ed1ab_0 - - freetype=2.14.1=h57928b3_0 - - giflib=5.2.2=h64bf75a_0 - - h2=4.3.0=pyhcf101f3_0 - - h5py=3.15.1=nompi_py311hc40ba4b_100 - - hdf5=1.14.6=nompi_he30205f_103 - - hpack=4.1.0=pyhd8ed1ab_0 - - hyperframe=6.1.0=pyhd8ed1ab_0 - - idna=3.11=pyhd8ed1ab_0 - - imagecodecs=2025.8.2=py311haf4ede9_7 - - imageio=2.37.0=pyhfb79c49_0 - - imagesize=1.4.1=pyhd8ed1ab_0 - - importlib-metadata=8.7.0=pyhe01879c_1 - - iniconfig=2.3.0=pyhd8ed1ab_0 - - isort=7.0.0=pyhd8ed1ab_0 - - jinja2=3.1.6=pyhd8ed1ab_0 - - jxrlib=1.1=hcfcfb64_3 - - krb5=1.21.3=hdf4eb48_0 - - 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.9.0=38_hf2e6a31_mkl - - libbrotlicommon=1.2.0=hc82b238_0 - - libbrotlidec=1.2.0=h431afc6_0 - - libbrotlienc=1.2.0=ha521d6b_0 - - libcblas=3.9.0=38_h2a3cdd5_mkl - - libcurl=8.17.0=h43ecb02_0 - - libdeflate=1.25=h51727cc_0 - - libexpat=2.7.1=hac47afa_0 - - libffi=3.5.2=h52bdfb6_0 - - libfreetype=2.14.1=h57928b3_0 - - libfreetype6=2.14.1=hdbac1cb_0 - - libgcc=15.2.0=h1383e82_7 - - libgomp=15.2.0=h1383e82_7 - - libhwloc=2.12.1=default_h64bd3f2_1002 - - libhwy=1.3.0=ha71e874_1 - - libiconv=1.18=hc1393d2_2 - - libjpeg-turbo=3.1.2=hfd05255_0 - - libjxl=0.11.1=hac9b6f3_5 - - liblapack=3.9.0=38_hf9ab0e9_mkl - - liblzma=5.8.1=h2466b09_2 - - libpng=1.6.50=h7351971_1 - - libsqlite=3.51.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=h5d26750_0 - - libxml2-16=2.15.1=h692994f_0 - - libzlib=1.3.1=h2466b09_2 - - libzopfli=1.0.3=h0e60522_0 - - llvm-openmp=21.1.5=hfa2b4ca_0 - - lz4-c=1.10.0=h2466b09_1 - - markupsafe=3.0.3=py311h3f79411_0 - - mccabe=0.7.0=pyhd8ed1ab_1 - - mkl=2025.3.0=hac47afa_454 - - networkx=3.5=pyhe01879c_0 - - numpy=1.26.4=py311h0b4df5a_0 - - openjpeg=2.5.4=h24db6dd_0 - - openssl=3.5.4=h725018a_0 - - packaging=25.0=pyh29332c3_1 - - pillow=10.3.0=py311h5592be9_1 - - pip=25.3=pyh8b19718_0 - - platformdirs=4.5.0=pyhcf101f3_0 - - pluggy=1.6.0=pyhd8ed1ab_0 - - pthread-stubs=0.4=h0e40799_1002 - - pycparser=2.22=pyh29332c3_1 - - pydantic=2.12.4=pyh3cfb1c2_0 - - pydantic-core=2.41.5=py311hf51aa87_0 - - pygments=2.19.2=pyhd8ed1ab_0 - - pylint=4.0.2=pyhcf101f3_0 - - pysocks=1.7.1=pyh09c184e_7 - - pytest=9.0.0=pyhcf101f3_0 - - pytest-cov=7.0.0=pyhcf101f3_1 - - python=3.11.14=h0159041_2_cpython - - 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 - - requests=2.32.5=pyhd8ed1ab_0 - - roman-numerals-py=3.1.0=pyhd8ed1ab_0 - - scikit-image=0.25.2=py311h11fd7f3_2 - - scipy=1.14.1=py311hf16d85f_2 - - setuptools=80.9.0=pyhff2d567_0 - - snappy=1.2.2=h7fa0ca8_0 - - 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 - - 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=hd094cb3_1 - - tifffile=2025.10.16=pyhd8ed1ab_0 - - tk=8.6.13=h2c6b04d_2 - - tomli=2.3.0=pyhcf101f3_0 - - tomlkit=0.13.3=pyha770c72_0 - - tqdm=4.67.1=pyhd8ed1ab_1 - - typing-extensions=4.15.0=h396c80c_0 - - typing-inspection=0.4.2=pyhd8ed1ab_0 - - typing_extensions=4.15.0=pyhcf101f3_0 - - tzdata=2025b=h78e105d_0 - - ucrt=10.0.26100.0=h57928b3_0 - - urllib3=2.5.0=pyhd8ed1ab_0 - - vc=14.3=h2b53caa_32 - - vc14_runtime=14.44.35208=h818238b_32 - - vcomp14=14.44.35208=h818238b_32 - - vs2015_runtime=14.44.35208=h38c0c73_32 - - wheel=0.45.1=pyhd8ed1ab_1 - - win_inet_pton=1.1.0=pyh7428d3b_8 - - xorg-libxau=1.0.12=h0e40799_0 - - xorg-libxdmcp=1.1.5=h0e40799_0 - - yaml=0.2.5=h6a83c73_3 - - zfp=1.0.1=h2f0f97f_3 - - zipp=3.23.0=pyhd8ed1ab_0 - - zlib-ng=2.2.5=h32d8bfd_0 - - zstandard=0.25.0=py311hf893f09_1 - - zstd=1.5.7=hbeecb71_2 - - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@80c46588d47b70a1dd26aef06ccfa24bc1585502 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@8f630a84b2b9f2b7632f895e1521d8d61c04e80e - -variables: - KMP_WARNINGS: 0 diff --git a/environments/py-3.11-win-64.conda.lock.yml b/environments/py-3.11-win-64.conda.lock.yml deleted file mode 100644 index 047bf20..0000000 --- a/environments/py-3.11-win-64.conda.lock.yml +++ /dev/null @@ -1,114 +0,0 @@ -# Generated by conda-lock. -# platform: win-64 -# input_hash: 08acf3c6eb8e814618ddcc9939eb958324152e2e00a179b495e48418273ad3e1 - -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 - - blosc=1.21.6=hfd34d9b_1 - - bzip2=1.0.8=h0ad9c76_8 - - c-blosc2=2.22.0=h3cf07e4_0 - - ca-certificates=2025.10.5=h4c7d964_0 - - cached-property=1.5.2=hd8ed1ab_1 - - cached_property=1.5.2=pyha770c72_1 - - charls=2.4.2=h1537add_0 - - colorama=0.4.6=pyhd8ed1ab_1 - - dav1d=1.2.1=hcfcfb64_0 - - freetype=2.14.1=h57928b3_0 - - giflib=5.2.2=h64bf75a_0 - - h5py=3.15.1=nompi_py311hc40ba4b_100 - - hdf5=1.14.6=nompi_he30205f_103 - - imagecodecs=2025.8.2=py311haf4ede9_7 - - imageio=2.37.0=pyhfb79c49_0 - - importlib-metadata=8.7.0=pyhe01879c_1 - - jxrlib=1.1=hcfcfb64_3 - - 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.9.0=38_hf2e6a31_mkl - - libbrotlicommon=1.2.0=hc82b238_0 - - libbrotlidec=1.2.0=h431afc6_0 - - libbrotlienc=1.2.0=ha521d6b_0 - - libcblas=3.9.0=38_h2a3cdd5_mkl - - libcurl=8.17.0=h43ecb02_0 - - libdeflate=1.25=h51727cc_0 - - libexpat=2.7.1=hac47afa_0 - - libffi=3.5.2=h52bdfb6_0 - - libfreetype=2.14.1=h57928b3_0 - - libfreetype6=2.14.1=hdbac1cb_0 - - libgcc=15.2.0=h1383e82_7 - - libgomp=15.2.0=h1383e82_7 - - libhwloc=2.12.1=default_h64bd3f2_1002 - - libhwy=1.3.0=ha71e874_1 - - libiconv=1.18=hc1393d2_2 - - libjpeg-turbo=3.1.2=hfd05255_0 - - libjxl=0.11.1=hac9b6f3_5 - - liblapack=3.9.0=38_hf9ab0e9_mkl - - liblzma=5.8.1=h2466b09_2 - - libpng=1.6.50=h7351971_1 - - libsqlite=3.51.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=h5d26750_0 - - libxml2-16=2.15.1=h692994f_0 - - libzlib=1.3.1=h2466b09_2 - - libzopfli=1.0.3=h0e60522_0 - - llvm-openmp=21.1.5=hfa2b4ca_0 - - lz4-c=1.10.0=h2466b09_1 - - mkl=2025.3.0=hac47afa_454 - - networkx=3.5=pyhe01879c_0 - - numpy=1.26.4=py311h0b4df5a_0 - - openjpeg=2.5.4=h24db6dd_0 - - openssl=3.5.4=h725018a_0 - - packaging=25.0=pyh29332c3_1 - - pillow=10.3.0=py311h5592be9_1 - - pip=25.3=pyh8b19718_0 - - pthread-stubs=0.4=h0e40799_1002 - - pydantic=2.12.4=pyh3cfb1c2_0 - - pydantic-core=2.41.5=py311hf51aa87_0 - - python=3.11.14=h0159041_2_cpython - - python_abi=3.11=8_cp311 - - pywavelets=1.9.0=py311h17033d2_2 - - rav1e=0.7.1=ha073cba_3 - - scikit-image=0.25.2=py311h11fd7f3_2 - - scipy=1.14.1=py311hf16d85f_2 - - setuptools=80.9.0=pyhff2d567_0 - - snappy=1.2.2=h7fa0ca8_0 - - svt-av1=3.1.2=hac47afa_0 - - tbb=2022.3.0=hd094cb3_1 - - tifffile=2025.10.16=pyhd8ed1ab_0 - - tk=8.6.13=h2c6b04d_2 - - tqdm=4.67.1=pyhd8ed1ab_1 - - typing-extensions=4.15.0=h396c80c_0 - - typing-inspection=0.4.2=pyhd8ed1ab_0 - - typing_extensions=4.15.0=pyhcf101f3_0 - - tzdata=2025b=h78e105d_0 - - ucrt=10.0.26100.0=h57928b3_0 - - vc=14.3=h2b53caa_32 - - vc14_runtime=14.44.35208=h818238b_32 - - vcomp14=14.44.35208=h818238b_32 - - vs2015_runtime=14.44.35208=h38c0c73_32 - - wheel=0.45.1=pyhd8ed1ab_1 - - xorg-libxau=1.0.12=h0e40799_0 - - xorg-libxdmcp=1.1.5=h0e40799_0 - - zfp=1.0.1=h2f0f97f_3 - - zipp=3.23.0=pyhd8ed1ab_0 - - zlib-ng=2.2.5=h32d8bfd_0 - - zstd=1.5.7=hbeecb71_2 - - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@80c46588d47b70a1dd26aef06ccfa24bc1585502 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@8f630a84b2b9f2b7632f895e1521d8d61c04e80e - -variables: - KMP_WARNINGS: 0 diff --git a/environments/py-3.12-linux-64-dev.conda.lock.yml b/environments/py-3.12-linux-64-dev.conda.lock.yml index 153a66c..d79b4fa 100644 --- a/environments/py-3.12-linux-64-dev.conda.lock.yml +++ b/environments/py-3.12-linux-64-dev.conda.lock.yml @@ -1,170 +1,184 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 741710c573b2bfce67566e62f6f04a95dfa33ff7691daf4da1d43bbcedcc9b24 +# input_hash: bd0c8f0370f448082c7a79302e605dc89bb86cd6635f23d28a3648cdc7c29662 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.2=py312h7900ff3_0 - - babel=2.17.0=pyhd8ed1ab_0 + - aom=3.14.1=pl5321h039972f_1 + - astroid=4.0.4=py312h7900ff3_0 + - aws-c-auth=0.10.3=hea842a7_2 + - aws-c-cal=0.9.14=h78948cc_2 + - aws-c-common=0.14.0=hb03c661_0 + - aws-c-compression=0.3.2=haa0cbde_2 + - aws-c-http=0.11.0=h6488f85_2 + - aws-c-io=0.26.3=h5b668fc_4 + - aws-c-s3=0.12.5=hb916526_1 + - aws-c-sdkutils=0.2.4=haa0cbde_6 + - aws-checksums=0.2.10=haa0cbde_2 + - babel=2.18.0=pyhcf101f3_1 + - backports.zstd=1.6.0=py312h90b7ffd_0 - blosc=1.21.6=he440d0b_1 - - brotli-python=1.2.0=py312h67db365_0 + - brotli-python=1.2.0=py312hdb49522_1 - brunsli=0.1=hd1e3526_2 - - bzip2=1.0.8=hda65f42_8 - - c-ares=1.34.5=hb9d3cd8_0 - - c-blosc2=2.22.0=h4cfbee9_0 - - ca-certificates=2025.10.5=hbd8a1cb_0 + - bzip2=1.0.8=hda65f42_9 + - c-ares=1.34.6=hb03c661_0 + - c-blosc2=3.1.3=hc31b594_0 + - ca-certificates=2026.5.20=hbd8a1cb_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2025.10.5=pyhd8ed1ab_0 - - cffi=2.0.0=py312h460c074_1 - - charls=2.4.2=h59595ed_0 - - charset-normalizer=3.4.4=pyhd8ed1ab_0 + - certifi=2026.5.20=pyhd8ed1ab_0 + - charls=2.4.4=hecca717_0 + - charset-normalizer=3.4.7=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - - coverage=7.11.3=py312h8a5da7c_0 + - coverage=7.14.1=py312h8a5da7c_0 - dav1d=1.2.1=hd590300_0 - - dill=0.4.0=pyhd8ed1ab_0 + - dill=0.4.1=pyhcf101f3_0 - docutils=0.21.2=pyhd8ed1ab_1 - - exceptiongroup=1.3.0=pyhd8ed1ab_0 - - freetype=2.14.1=ha770c72_0 + - exceptiongroup=1.3.1=pyhd8ed1ab_0 - giflib=5.2.2=hd590300_0 - h2=4.3.0=pyhcf101f3_0 - - h5py=3.15.1=nompi_py312ha4f8f14_100 - - hdf5=1.14.6=nompi_h6e4c0c1_103 + - h5py=3.16.0=nompi_py312ha829cd9_102 + - hdf5=2.1.0=nompi_h735b18d_107 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - - icu=75.1=he02047a_0 - - idna=3.11=pyhd8ed1ab_0 - - imagecodecs=2025.8.2=py312ha08ed9d_7 + - idna=3.17=pyhcf101f3_0 + - imagecodecs=2026.6.6=py312h71e39d9_1 - imageio=2.37.0=pyhfb79c49_0 - - imagesize=1.4.1=pyhd8ed1ab_0 - - importlib-metadata=8.7.0=pyhe01879c_1 + - imagesize=2.0.0=pyhd8ed1ab_0 + - importlib-metadata=9.0.0=pyhcf101f3_0 - iniconfig=2.3.0=pyhd8ed1ab_0 - - isort=7.0.0=pyhd8ed1ab_0 - - jinja2=3.1.6=pyhd8ed1ab_0 + - isort=8.0.1=pyhd8ed1ab_0 + - jinja2=3.1.6=pyhcf101f3_1 - jxrlib=1.1=hd590300_3 - keyutils=1.6.3=hb9d3cd8_0 - - krb5=1.21.3=h659f571_0 - - lazy-loader=0.4=pyhd8ed1ab_2 - - lcms2=2.17=h717163a_0 - - ld_impl_linux-64=2.44=h1aa0949_5 - - lerc=4.0.0=h0aef613_1 - - libaec=1.1.4=h3f801dc_0 - - libavif16=1.3.0=h6395336_2 - - libblas=3.9.0=38_h4a7cf45_openblas - - libbrotlicommon=1.2.0=h09219d5_0 - - libbrotlidec=1.2.0=hd53d788_0 - - libbrotlienc=1.2.0=h02bd7ab_0 - - libcblas=3.9.0=38_h0358290_openblas - - libcurl=8.17.0=h4e3cde8_0 + - krb5=1.22.2=ha1258a1_0 + - lazy-loader=0.5=pyhd8ed1ab_0 + - lcms2=2.19.1=h0c24ade_1 + - ld_impl_linux-64=2.45.1=default_hbd61a6d_102 + - lerc=4.1.0=hdb68285_0 + - libaec=1.1.5=h088129d_0 + - libavif16=1.4.2=hf998032_1 + - libblas=3.11.0=8_h4a7cf45_openblas + - libbrotlicommon=1.2.0=hb03c661_1 + - libbrotlidec=1.2.0=hb03c661_1 + - libbrotlienc=1.2.0=hb03c661_1 + - libcblas=3.11.0=8_h0358290_openblas + - libcurl=8.20.0=hcf29cc6_0 - libdeflate=1.25=h17f619e_0 - libedit=3.1.20250104=pl5321h7949ede_0 - libev=4.33=hd590300_2 - - libexpat=2.7.1=hecca717_0 - - libffi=3.5.2=h9ec8514_0 - - libfreetype=2.14.1=ha770c72_0 - - libfreetype6=2.14.1=h73754d4_0 - - libgcc=15.2.0=h767d61c_7 - - libgcc-ng=15.2.0=h69a702a_7 - - libgfortran=15.2.0=h69a702a_7 - - libgfortran5=15.2.0=hcd61629_7 - - libgomp=15.2.0=h767d61c_7 - - libhwy=1.3.0=h4c17acf_1 - - libjpeg-turbo=3.1.2=hb03c661_0 - - libjxl=0.11.1=hf08fa70_5 - - liblapack=3.9.0=38_h47877c9_openblas - - liblzma=5.8.1=hb9d3cd8_2 - - libnghttp2=1.67.0=had1ee68_0 + - libexpat=2.8.1=hecca717_1 + - libffi=3.5.2=h3435931_0 + - libfreetype=2.14.3=ha770c72_0 + - libfreetype6=2.14.3=h73754d4_0 + - libgcc=15.2.0=he0feb66_19 + - libgcc-ng=15.2.0=h69a702a_19 + - libgfortran=15.2.0=h69a702a_19 + - libgfortran5=15.2.0=h68bc16d_19 + - libgomp=15.2.0=he0feb66_19 + - libhwy=1.4.0=h10be129_0 + - libjpeg-turbo=3.1.4.1=hb03c661_0 + - libjxl=0.11.2=h174a0a3_1 + - liblapack=3.11.0=8_h47877c9_openblas + - liblzma=5.8.3=hb03c661_0 + - libnghttp2=1.68.1=h877daf1_0 - libnsl=2.0.1=hb9d3cd8_1 - - libopenblas=0.3.30=pthreads_h94d23a6_3 - - libpng=1.6.50=h421ea60_1 - - libsqlite=3.51.0=hee844dc_0 + - libopenblas=0.3.33=pthreads_h94d23a6_0 + - libpng=1.6.58=h421ea60_0 + - libsqlite=3.53.2=h0c1763c_0 - libssh2=1.11.1=hcf80075_0 - - libstdcxx=15.2.0=h8f9b012_7 - - libstdcxx-ng=15.2.0=h4852527_7 + - libstdcxx=15.2.0=h934c35e_19 + - libstdcxx-ng=15.2.0=hdf11a46_19 - libtiff=4.7.1=h9d88235_1 - - libuuid=2.41.2=he9a06e4_0 + - libuuid=2.42.1=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 + - libzlib=1.3.2=h25fd6f3_2 - libzopfli=1.0.3=h9c3ff4c_0 - lz4-c=1.10.0=h5888daf_1 - - markupsafe=3.0.3=py312h8a5da7c_0 + - markupsafe=3.0.3=py312h8a5da7c_1 - mccabe=0.7.0=pyhd8ed1ab_1 - - ncurses=6.5=h2d0b736_3 - - networkx=3.5=pyhe01879c_0 - - numpy=1.26.4=py312heda63a1_0 + - ncurses=6.6=hdb14827_0 + - networkx=3.6.1=pyhcf101f3_0 + - numpy=2.4.6=py312h33ff503_0 - openjpeg=2.5.4=h55fea9a_0 - - openssl=3.5.4=h26f9b46_0 - - packaging=25.0=pyh29332c3_1 - - pillow=10.3.0=py312h287a98d_1 - - pip=25.3=pyh8b19718_0 - - platformdirs=4.5.0=pyhcf101f3_0 - - pluggy=1.6.0=pyhd8ed1ab_0 + - openjph=0.28.1=h8d634f6_0 + - openssl=3.6.3=h35e630c_0 + - packaging=26.2=pyhc364b38_0 + - pillow=12.2.0=py312h50c33e8_0 + - pip=26.1.2=pyh8b19718_0 + - platformdirs=4.10.0=pyhcf101f3_0 + - pluggy=1.6.0=pyhf9edf01_1 - pthread-stubs=0.4=hb9d3cd8_1002 - - pycparser=2.22=pyh29332c3_1 - - pydantic=2.12.4=pyh3cfb1c2_0 - - pydantic-core=2.41.5=py312h868fb18_0 - - pygments=2.19.2=pyhd8ed1ab_0 - - pylint=4.0.2=pyhcf101f3_0 + - pydantic=2.12.5=pyhcf101f3_1 + - pydantic-core=2.41.5=py312h868fb18_1 + - pygments=2.20.0=pyhd8ed1ab_0 + - pylint=4.0.6=pyhcf101f3_0 - pysocks=1.7.1=pyha55dd90_7 - - pytest=9.0.0=pyhcf101f3_0 - - pytest-cov=7.0.0=pyhcf101f3_1 - - python=3.12.12=hd63d673_1_cpython + - pytest=9.0.3=pyhc364b38_1 + - pytest-cov=7.1.0=pyhcf101f3_0 + - python=3.12.13=hd63d673_0_cpython - 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 - - readline=8.2=h8c095d6_2 - - requests=2.32.5=pyhd8ed1ab_0 - - roman-numerals-py=3.1.0=pyhd8ed1ab_0 - - scikit-image=0.25.2=py312hf79963d_2 - - scipy=1.14.1=py312h62794b6_2 - - setuptools=80.9.0=pyhff2d567_0 - - snappy=1.2.2=h03e3b7b_0 - - snowballstemmer=3.0.1=pyhd8ed1ab_0 - - sphinx=8.2.3=pyhd8ed1ab_0 + - pyyaml=6.0.3=py312h8a5da7c_1 + - rav1e=0.8.1=h1fbca29_0 + - readline=8.3=h853b02a_0 + - requests=2.34.2=pyhcf101f3_0 + - roman-numerals=4.1.0=pyhd8ed1ab_0 + - roman-numerals-py=4.1.0=pyhd8ed1ab_0 + - s2n=1.7.3=hc5a330e_0 + - scikit-image=0.26.0=np2py312h4ae17e4_0 + - scipy=1.17.1=py312h54fa4ab_1 + - setuptools=82.0.1=pyh332efcf_0 + - snappy=1.2.2=h03e3b7b_1 + - snowballstemmer=3.1.1=pyhd8ed1ab_0 + - sphinx=8.3.0=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 - 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.10.16=pyhd8ed1ab_0 - - tk=8.6.13=noxft_hd72426e_102 - - tomli=2.3.0=pyhcf101f3_0 - - tomlkit=0.13.3=pyha770c72_0 - - tqdm=4.67.1=pyhd8ed1ab_1 + - sphinxcontrib-serializinghtml=2.0.0=pyhd8ed1ab_0 + - svt-av1=4.0.1=hecca717_0 + - tifffile=2026.6.1=pyhd8ed1ab_0 + - tk=8.6.13=noxft_h366c992_103 + - tomli=2.4.1=pyhcf101f3_0 + - tomlkit=0.15.0=pyha770c72_0 + - tqdm=4.68.2=pyh8f84b5b_1 - typing-extensions=4.15.0=h396c80c_0 - - typing-inspection=0.4.2=pyhd8ed1ab_0 + - typing-inspection=0.4.2=pyhcf101f3_2 - typing_extensions=4.15.0=pyhcf101f3_0 - - tzdata=2025b=h78e105d_0 - - urllib3=2.5.0=pyhd8ed1ab_0 - - wheel=0.45.1=pyhd8ed1ab_1 - - xorg-libxau=1.0.12=hb9d3cd8_0 - - xorg-libxdmcp=1.1.5=hb9d3cd8_0 + - tzdata=2025c=hc9c84f9_1 + - urllib3=2.7.0=pyhd8ed1ab_0 + - wheel=0.47.0=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_3 - - zipp=3.23.0=pyhd8ed1ab_0 - - zlib-ng=2.2.5=hde8ca8f_0 - - zstandard=0.25.0=py312h5253ce2_1 - - zstd=1.5.7=hb8e6e7a_2 + - zfp=1.0.1=h909a3a2_5 + - zipp=4.1.0=pyhcf101f3_0 + - zlib-ng=2.3.3=hceb46e0_1 + - zstd=1.5.7=hb78ec9c_6 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@80c46588d47b70a1dd26aef06ccfa24bc1585502 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@8f630a84b2b9f2b7632f895e1521d8d61c04e80e + - contourpy == 1.3.3 + - cycler == 0.12.1 + - fonttools == 4.63.0 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@31e1f71c37347154e97e6b07e068f7979a67832c + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@37016b8cbe1db7d880c9c2ae724d48ab09962c28 + - kiwisolver == 1.5.0 + - matplotlib == 3.10.9 + - psutil == 7.2.2 + - pyparsing == 3.3.2 + - python-dateutil == 2.9.0.post0 + - six == 1.17.0 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 eef47d0..40ec867 100644 --- a/environments/py-3.12-linux-64.conda.lock.yml +++ b/environments/py-3.12-linux-64.conda.lock.yml @@ -1,120 +1,133 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 741710c573b2bfce67566e62f6f04a95dfa33ff7691daf4da1d43bbcedcc9b24 +# input_hash: bd0c8f0370f448082c7a79302e605dc89bb86cd6635f23d28a3648cdc7c29662 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 + - aom=3.14.1=pl5321h039972f_1 + - aws-c-auth=0.10.3=hea842a7_2 + - aws-c-cal=0.9.14=h78948cc_2 + - aws-c-common=0.14.0=hb03c661_0 + - aws-c-compression=0.3.2=haa0cbde_2 + - aws-c-http=0.11.0=h6488f85_2 + - aws-c-io=0.26.3=h5b668fc_4 + - aws-c-s3=0.12.5=hb916526_1 + - aws-c-sdkutils=0.2.4=haa0cbde_6 + - aws-checksums=0.2.10=haa0cbde_2 - blosc=1.21.6=he440d0b_1 - brunsli=0.1=hd1e3526_2 - - bzip2=1.0.8=hda65f42_8 - - c-ares=1.34.5=hb9d3cd8_0 - - c-blosc2=2.22.0=h4cfbee9_0 - - ca-certificates=2025.10.5=hbd8a1cb_0 + - bzip2=1.0.8=hda65f42_9 + - c-ares=1.34.6=hb03c661_0 + - c-blosc2=3.1.3=hc31b594_0 + - ca-certificates=2026.5.20=hbd8a1cb_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - charls=2.4.2=h59595ed_0 - - colorama=0.4.6=pyhd8ed1ab_1 + - charls=2.4.4=hecca717_0 - dav1d=1.2.1=hd590300_0 - - freetype=2.14.1=ha770c72_0 - giflib=5.2.2=hd590300_0 - - h5py=3.15.1=nompi_py312ha4f8f14_100 - - hdf5=1.14.6=nompi_h6e4c0c1_103 - - icu=75.1=he02047a_0 - - imagecodecs=2025.8.2=py312ha08ed9d_7 + - h5py=3.16.0=nompi_py312ha829cd9_102 + - hdf5=2.1.0=nompi_h735b18d_107 + - imagecodecs=2026.6.6=py312h71e39d9_1 - imageio=2.37.0=pyhfb79c49_0 - - importlib-metadata=8.7.0=pyhe01879c_1 - jxrlib=1.1=hd590300_3 - keyutils=1.6.3=hb9d3cd8_0 - - krb5=1.21.3=h659f571_0 - - lazy-loader=0.4=pyhd8ed1ab_2 - - lcms2=2.17=h717163a_0 - - ld_impl_linux-64=2.44=h1aa0949_5 - - lerc=4.0.0=h0aef613_1 - - libaec=1.1.4=h3f801dc_0 - - libavif16=1.3.0=h6395336_2 - - libblas=3.9.0=38_h4a7cf45_openblas - - libbrotlicommon=1.2.0=h09219d5_0 - - libbrotlidec=1.2.0=hd53d788_0 - - libbrotlienc=1.2.0=h02bd7ab_0 - - libcblas=3.9.0=38_h0358290_openblas - - libcurl=8.17.0=h4e3cde8_0 + - krb5=1.22.2=ha1258a1_0 + - lazy-loader=0.5=pyhd8ed1ab_0 + - lcms2=2.19.1=h0c24ade_1 + - ld_impl_linux-64=2.45.1=default_hbd61a6d_102 + - lerc=4.1.0=hdb68285_0 + - libaec=1.1.5=h088129d_0 + - libavif16=1.4.2=hf998032_1 + - libblas=3.11.0=8_h4a7cf45_openblas + - libbrotlicommon=1.2.0=hb03c661_1 + - libbrotlidec=1.2.0=hb03c661_1 + - libbrotlienc=1.2.0=hb03c661_1 + - libcblas=3.11.0=8_h0358290_openblas + - libcurl=8.20.0=hcf29cc6_0 - libdeflate=1.25=h17f619e_0 - libedit=3.1.20250104=pl5321h7949ede_0 - libev=4.33=hd590300_2 - - libexpat=2.7.1=hecca717_0 - - libffi=3.5.2=h9ec8514_0 - - libfreetype=2.14.1=ha770c72_0 - - libfreetype6=2.14.1=h73754d4_0 - - libgcc=15.2.0=h767d61c_7 - - libgcc-ng=15.2.0=h69a702a_7 - - libgfortran=15.2.0=h69a702a_7 - - libgfortran5=15.2.0=hcd61629_7 - - libgomp=15.2.0=h767d61c_7 - - libhwy=1.3.0=h4c17acf_1 - - libjpeg-turbo=3.1.2=hb03c661_0 - - libjxl=0.11.1=hf08fa70_5 - - liblapack=3.9.0=38_h47877c9_openblas - - liblzma=5.8.1=hb9d3cd8_2 - - libnghttp2=1.67.0=had1ee68_0 + - libexpat=2.8.1=hecca717_1 + - libffi=3.5.2=h3435931_0 + - libfreetype=2.14.3=ha770c72_0 + - libfreetype6=2.14.3=h73754d4_0 + - libgcc=15.2.0=he0feb66_19 + - libgcc-ng=15.2.0=h69a702a_19 + - libgfortran=15.2.0=h69a702a_19 + - libgfortran5=15.2.0=h68bc16d_19 + - libgomp=15.2.0=he0feb66_19 + - libhwy=1.4.0=h10be129_0 + - libjpeg-turbo=3.1.4.1=hb03c661_0 + - libjxl=0.11.2=h174a0a3_1 + - liblapack=3.11.0=8_h47877c9_openblas + - liblzma=5.8.3=hb03c661_0 + - libnghttp2=1.68.1=h877daf1_0 - libnsl=2.0.1=hb9d3cd8_1 - - libopenblas=0.3.30=pthreads_h94d23a6_3 - - libpng=1.6.50=h421ea60_1 - - libsqlite=3.51.0=hee844dc_0 + - libopenblas=0.3.33=pthreads_h94d23a6_0 + - libpng=1.6.58=h421ea60_0 + - libsqlite=3.53.2=h0c1763c_0 - libssh2=1.11.1=hcf80075_0 - - libstdcxx=15.2.0=h8f9b012_7 - - libstdcxx-ng=15.2.0=h4852527_7 + - libstdcxx=15.2.0=h934c35e_19 + - libstdcxx-ng=15.2.0=hdf11a46_19 - libtiff=4.7.1=h9d88235_1 - - libuuid=2.41.2=he9a06e4_0 + - libuuid=2.42.1=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 + - libzlib=1.3.2=h25fd6f3_2 - libzopfli=1.0.3=h9c3ff4c_0 - lz4-c=1.10.0=h5888daf_1 - - ncurses=6.5=h2d0b736_3 - - networkx=3.5=pyhe01879c_0 - - numpy=1.26.4=py312heda63a1_0 + - ncurses=6.6=hdb14827_0 + - networkx=3.6.1=pyhcf101f3_0 + - numpy=2.4.6=py312h33ff503_0 - openjpeg=2.5.4=h55fea9a_0 - - openssl=3.5.4=h26f9b46_0 - - packaging=25.0=pyh29332c3_1 - - pillow=10.3.0=py312h287a98d_1 - - pip=25.3=pyh8b19718_0 + - openjph=0.28.1=h8d634f6_0 + - openssl=3.6.3=h35e630c_0 + - packaging=26.2=pyhc364b38_0 + - pillow=12.2.0=py312h50c33e8_0 + - pip=26.1.2=pyh8b19718_0 - pthread-stubs=0.4=hb9d3cd8_1002 - - pydantic=2.12.4=pyh3cfb1c2_0 - - pydantic-core=2.41.5=py312h868fb18_0 - - python=3.12.12=hd63d673_1_cpython + - pydantic=2.12.5=pyhcf101f3_1 + - pydantic-core=2.41.5=py312h868fb18_1 + - python=3.12.13=hd63d673_0_cpython - python_abi=3.12=8_cp312 - - pywavelets=1.9.0=py312h4f23490_2 - - rav1e=0.7.1=h8fae777_3 - - readline=8.2=h8c095d6_2 - - scikit-image=0.25.2=py312hf79963d_2 - - scipy=1.14.1=py312h62794b6_2 - - setuptools=80.9.0=pyhff2d567_0 - - snappy=1.2.2=h03e3b7b_0 - - svt-av1=3.1.2=hecca717_0 - - tifffile=2025.10.16=pyhd8ed1ab_0 - - tk=8.6.13=noxft_hd72426e_102 - - tqdm=4.67.1=pyhd8ed1ab_1 + - rav1e=0.8.1=h1fbca29_0 + - readline=8.3=h853b02a_0 + - s2n=1.7.3=hc5a330e_0 + - scikit-image=0.26.0=np2py312h4ae17e4_0 + - scipy=1.17.1=py312h54fa4ab_1 + - setuptools=82.0.1=pyh332efcf_0 + - snappy=1.2.2=h03e3b7b_1 + - svt-av1=4.0.1=hecca717_0 + - tifffile=2026.6.1=pyhd8ed1ab_0 + - tk=8.6.13=noxft_h366c992_103 + - tqdm=4.68.2=pyh8f84b5b_1 - typing-extensions=4.15.0=h396c80c_0 - - typing-inspection=0.4.2=pyhd8ed1ab_0 + - typing-inspection=0.4.2=pyhcf101f3_2 - typing_extensions=4.15.0=pyhcf101f3_0 - - tzdata=2025b=h78e105d_0 - - wheel=0.45.1=pyhd8ed1ab_1 - - xorg-libxau=1.0.12=hb9d3cd8_0 - - xorg-libxdmcp=1.1.5=hb9d3cd8_0 - - zfp=1.0.1=h909a3a2_3 - - zipp=3.23.0=pyhd8ed1ab_0 - - zlib-ng=2.2.5=hde8ca8f_0 - - zstd=1.5.7=hb8e6e7a_2 + - tzdata=2025c=hc9c84f9_1 + - wheel=0.47.0=pyhd8ed1ab_0 + - xorg-libxau=1.0.12=hb03c661_1 + - xorg-libxdmcp=1.1.5=hb03c661_1 + - zfp=1.0.1=h909a3a2_5 + - zlib-ng=2.3.3=hceb46e0_1 + - zstd=1.5.7=hb78ec9c_6 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@80c46588d47b70a1dd26aef06ccfa24bc1585502 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@8f630a84b2b9f2b7632f895e1521d8d61c04e80e + - contourpy == 1.3.3 + - cycler == 0.12.1 + - fonttools == 4.63.0 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@31e1f71c37347154e97e6b07e068f7979a67832c + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@37016b8cbe1db7d880c9c2ae724d48ab09962c28 + - kiwisolver == 1.5.0 + - matplotlib == 3.10.9 + - psutil == 7.2.2 + - pyparsing == 3.3.2 + - python-dateutil == 2.9.0.post0 + - six == 1.17.0 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 c01ad06..7c721c3 100644 --- a/environments/py-3.12-win-64-dev.conda.lock.yml +++ b/environments/py-3.12-win-64-dev.conda.lock.yml @@ -1,165 +1,181 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: 5cda186c5fef46890a9cc5fc61c2819619ca268c4490d55a93647e5735976bf3 +# input_hash: 3438a9367ed8f2bfcf4f8f529cfaba3ffc11a0f894d1fc98c2b16807b6ad3fee channels: - conda-forge - nodefaults dependencies: - - _libavif_api=1.3.0=h57928b3_2 - - _openmp_mutex=4.5=2_gnu + - _libavif_api=1.4.2=h57928b3_1 + - _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.2=py312h2e8e312_0 - - babel=2.17.0=pyhd8ed1ab_0 + - aom=3.14.1=pl5321h06fc181_1 + - astroid=4.0.4=py312h2e8e312_0 + - aws-c-auth=0.10.3=h75b6777_2 + - aws-c-cal=0.9.14=h270aff2_2 + - aws-c-common=0.14.0=hfd05255_0 + - aws-c-compression=0.3.2=h1f21522_2 + - aws-c-http=0.11.0=h4721ae0_2 + - aws-c-io=0.26.3=h1a62f66_4 + - aws-c-s3=0.12.5=h425879c_1 + - aws-c-sdkutils=0.2.4=h1f21522_6 + - aws-checksums=0.2.10=h1f21522_2 + - babel=2.18.0=pyhcf101f3_1 + - backports.zstd=1.6.0=py312h06d0912_0 - blosc=1.21.6=hfd34d9b_1 - - brotli-python=1.2.0=py312h9d5906e_0 - - bzip2=1.0.8=h0ad9c76_8 - - c-blosc2=2.22.0=h3cf07e4_0 - - ca-certificates=2025.10.5=h4c7d964_0 + - brotli-python=1.2.0=py312hc6d9e41_1 + - bzip2=1.0.8=h0ad9c76_9 + - c-blosc2=3.1.3=h2af8807_0 + - ca-certificates=2026.5.20=h4c7d964_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - certifi=2025.10.5=pyhd8ed1ab_0 - - cffi=2.0.0=py312he06e257_1 - - charls=2.4.2=h1537add_0 - - charset-normalizer=3.4.4=pyhd8ed1ab_0 + - certifi=2026.5.20=pyhd8ed1ab_0 + - charls=2.4.4=h7cafa3a_0 + - charset-normalizer=3.4.7=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 - - coverage=7.11.3=py312h05f76fc_0 + - coverage=7.14.1=py312h05f76fc_0 - dav1d=1.2.1=hcfcfb64_0 - - dill=0.4.0=pyhd8ed1ab_0 + - dill=0.4.1=pyhcf101f3_0 - docutils=0.21.2=pyhd8ed1ab_1 - - exceptiongroup=1.3.0=pyhd8ed1ab_0 - - freetype=2.14.1=h57928b3_0 + - exceptiongroup=1.3.1=pyhd8ed1ab_0 - giflib=5.2.2=h64bf75a_0 - h2=4.3.0=pyhcf101f3_0 - - h5py=3.15.1=nompi_py312h03cd2ba_100 - - hdf5=1.14.6=nompi_he30205f_103 + - h5py=3.16.0=nompi_py312h5ddec8c_102 + - hdf5=2.1.0=nompi_h693361b_107 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - - idna=3.11=pyhd8ed1ab_0 - - imagecodecs=2025.8.2=py312hf2cf878_7 + - idna=3.17=pyhcf101f3_0 + - imagecodecs=2026.6.6=py312h68cad51_1 - imageio=2.37.0=pyhfb79c49_0 - - imagesize=1.4.1=pyhd8ed1ab_0 - - importlib-metadata=8.7.0=pyhe01879c_1 + - imagesize=2.0.0=pyhd8ed1ab_0 + - importlib-metadata=9.0.0=pyhcf101f3_0 - iniconfig=2.3.0=pyhd8ed1ab_0 - - isort=7.0.0=pyhd8ed1ab_0 - - jinja2=3.1.6=pyhd8ed1ab_0 + - isort=8.0.1=pyhd8ed1ab_0 + - jinja2=3.1.6=pyhcf101f3_1 - jxrlib=1.1=hcfcfb64_3 - - 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.9.0=38_hf2e6a31_mkl - - libbrotlicommon=1.2.0=hc82b238_0 - - libbrotlidec=1.2.0=h431afc6_0 - - libbrotlienc=1.2.0=ha521d6b_0 - - libcblas=3.9.0=38_h2a3cdd5_mkl - - libcurl=8.17.0=h43ecb02_0 + - krb5=1.22.2=h0ea6238_0 + - lazy-loader=0.5=pyhd8ed1ab_0 + - lcms2=2.19.1=hf2c6c5f_1 + - lerc=4.1.0=hd936e49_0 + - libaec=1.1.5=haf901d7_0 + - libavif16=1.4.2=h7e7b026_1 + - libblas=3.11.0=8_h8455456_mkl + - libbrotlicommon=1.2.0=hfd05255_1 + - libbrotlidec=1.2.0=hfd05255_1 + - libbrotlienc=1.2.0=hfd05255_1 + - libcblas=3.11.0=8_h2a3cdd5_mkl + - libcurl=8.20.0=h8206538_0 - libdeflate=1.25=h51727cc_0 - - libexpat=2.7.1=hac47afa_0 - - libffi=3.5.2=h52bdfb6_0 - - libfreetype=2.14.1=h57928b3_0 - - libfreetype6=2.14.1=hdbac1cb_0 - - libgcc=15.2.0=h1383e82_7 - - libgomp=15.2.0=h1383e82_7 - - libhwloc=2.12.1=default_h64bd3f2_1002 - - libhwy=1.3.0=ha71e874_1 + - libexpat=2.8.1=hac47afa_1 + - libffi=3.5.2=h3d046cb_0 + - libfreetype=2.14.3=h57928b3_1 + - libfreetype6=2.14.3=hdbac1cb_1 + - libgcc=15.2.0=h8ee18e1_19 + - libgomp=15.2.0=h8ee18e1_19 + - libhwloc=2.13.0=default_h049141e_1000 + - libhwy=1.4.0=h172a326_0 - libiconv=1.18=hc1393d2_2 - - libjpeg-turbo=3.1.2=hfd05255_0 - - libjxl=0.11.1=hac9b6f3_5 - - liblapack=3.9.0=38_hf9ab0e9_mkl - - liblzma=5.8.1=h2466b09_2 - - libpng=1.6.50=h7351971_1 - - libsqlite=3.51.0=hf5d6505_0 + - libjpeg-turbo=3.1.4.1=hfd05255_0 + - libjxl=0.11.2=h932607e_1 + - liblapack=3.11.0=8_hf9ab0e9_mkl + - liblzma=5.8.3=hfd05255_0 + - libpng=1.6.58=h7351971_0 + - libsqlite=3.53.2=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=h5d26750_0 - - libxml2-16=2.15.1=h692994f_0 - - libzlib=1.3.1=h2466b09_2 + - libxml2=2.15.3=hbc0d294_0 + - libxml2-16=2.15.3=h692994f_0 + - libzlib=1.3.2=hfd05255_2 - libzopfli=1.0.3=h0e60522_0 - - llvm-openmp=21.1.5=hfa2b4ca_0 + - llvm-openmp=22.1.7=h4fa8253_0 - lz4-c=1.10.0=h2466b09_1 - - markupsafe=3.0.3=py312h05f76fc_0 + - markupsafe=3.0.3=py312h05f76fc_1 - mccabe=0.7.0=pyhd8ed1ab_1 - - mkl=2025.3.0=hac47afa_454 - - networkx=3.5=pyhe01879c_0 - - numpy=1.26.4=py312h8753938_0 - - openjpeg=2.5.4=h24db6dd_0 - - openssl=3.5.4=h725018a_0 - - packaging=25.0=pyh29332c3_1 - - pillow=10.3.0=py312h381445a_1 - - pip=25.3=pyh8b19718_0 - - platformdirs=4.5.0=pyhcf101f3_0 - - pluggy=1.6.0=pyhd8ed1ab_0 + - mkl=2026.0.0=hac47afa_908 + - networkx=3.6.1=pyhcf101f3_0 + - numpy=2.4.6=py312ha3f287d_0 + - onemkl-license=2026.0.0=h57928b3_908 + - openjpeg=2.5.4=h0e57b4f_0 + - openjph=0.28.1=hf13a347_0 + - openssl=3.6.3=hf411b9b_0 + - packaging=26.2=pyhc364b38_0 + - pillow=12.2.0=py312h31f0997_0 + - pip=26.1.2=pyh8b19718_0 + - platformdirs=4.10.0=pyhcf101f3_0 + - pluggy=1.6.0=pyhf9edf01_1 - pthread-stubs=0.4=h0e40799_1002 - - pycparser=2.22=pyh29332c3_1 - - pydantic=2.12.4=pyh3cfb1c2_0 - - pydantic-core=2.41.5=py312hdabe01f_0 - - pygments=2.19.2=pyhd8ed1ab_0 - - pylint=4.0.2=pyhcf101f3_0 + - pydantic=2.12.5=pyhcf101f3_1 + - pydantic-core=2.41.5=py312hdabe01f_1 + - pygments=2.20.0=pyhd8ed1ab_0 + - pylint=4.0.6=pyhcf101f3_0 - pysocks=1.7.1=pyh09c184e_7 - - pytest=9.0.0=pyhcf101f3_0 - - pytest-cov=7.0.0=pyhcf101f3_1 - - python=3.12.12=h0159041_1_cpython + - pytest=9.0.3=pyhc364b38_1 + - pytest-cov=7.1.0=pyhcf101f3_0 + - python=3.12.13=h0159041_0_cpython - 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 - - requests=2.32.5=pyhd8ed1ab_0 - - roman-numerals-py=3.1.0=pyhd8ed1ab_0 - - scikit-image=0.25.2=py312hc128f0a_2 - - scipy=1.14.1=py312h337df96_2 - - setuptools=80.9.0=pyhff2d567_0 - - snappy=1.2.2=h7fa0ca8_0 - - snowballstemmer=3.0.1=pyhd8ed1ab_0 - - sphinx=8.2.3=pyhd8ed1ab_0 + - pyyaml=6.0.3=py312h05f76fc_1 + - rav1e=0.8.1=h007690e_0 + - requests=2.34.2=pyhcf101f3_0 + - roman-numerals=4.1.0=pyhd8ed1ab_0 + - roman-numerals-py=4.1.0=pyhd8ed1ab_0 + - scikit-image=0.26.0=np2py312h9ea65bc_0 + - scipy=1.17.1=py312h9b3c559_1 + - setuptools=82.0.1=pyh332efcf_0 + - snappy=1.2.2=h7fa0ca8_1 + - snowballstemmer=3.1.1=pyhd8ed1ab_0 + - sphinx=8.3.0=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 - 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=hd094cb3_1 - - tifffile=2025.10.16=pyhd8ed1ab_0 - - tk=8.6.13=h2c6b04d_2 - - tomli=2.3.0=pyhcf101f3_0 - - tomlkit=0.13.3=pyha770c72_0 - - tqdm=4.67.1=pyhd8ed1ab_1 + - sphinxcontrib-serializinghtml=2.0.0=pyhd8ed1ab_0 + - svt-av1=4.0.1=hac47afa_0 + - tbb=2023.0.0=hd3d4ead_2 + - tifffile=2026.6.1=pyhd8ed1ab_0 + - tk=8.6.13=h6ed50ae_3 + - tomli=2.4.1=pyhcf101f3_0 + - tomlkit=0.15.0=pyha770c72_0 + - tqdm=4.68.2=pyha7b4d00_1 - typing-extensions=4.15.0=h396c80c_0 - - typing-inspection=0.4.2=pyhd8ed1ab_0 + - typing-inspection=0.4.2=pyhcf101f3_2 - typing_extensions=4.15.0=pyhcf101f3_0 - - tzdata=2025b=h78e105d_0 + - tzdata=2025c=hc9c84f9_1 - ucrt=10.0.26100.0=h57928b3_0 - - urllib3=2.5.0=pyhd8ed1ab_0 - - vc=14.3=h2b53caa_32 - - vc14_runtime=14.44.35208=h818238b_32 - - vcomp14=14.44.35208=h818238b_32 - - vs2015_runtime=14.44.35208=h38c0c73_32 - - wheel=0.45.1=pyhd8ed1ab_1 + - urllib3=2.7.0=pyhd8ed1ab_0 + - vc=14.5=h1b7c187_39 + - vc14_runtime=14.51.36231=h1b9f54f_39 + - vcomp14=14.51.36231=h1b9f54f_39 + - vs2015_runtime=14.51.36231=h84cd919_39 + - wheel=0.47.0=pyhd8ed1ab_0 - win_inet_pton=1.1.0=pyh7428d3b_8 - - xorg-libxau=1.0.12=h0e40799_0 - - xorg-libxdmcp=1.1.5=h0e40799_0 + - 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_3 - - zipp=3.23.0=pyhd8ed1ab_0 - - zlib-ng=2.2.5=h32d8bfd_0 - - zstandard=0.25.0=py312he5662c2_1 - - zstd=1.5.7=hbeecb71_2 + - zfp=1.0.1=h2f0f97f_5 + - zipp=4.1.0=pyhcf101f3_0 + - zlib-ng=2.3.3=h0261ad2_1 + - zstd=1.5.7=h534d264_6 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@80c46588d47b70a1dd26aef06ccfa24bc1585502 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@8f630a84b2b9f2b7632f895e1521d8d61c04e80e + - contourpy == 1.3.3 + - cycler == 0.12.1 + - fonttools == 4.63.0 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@31e1f71c37347154e97e6b07e068f7979a67832c + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@37016b8cbe1db7d880c9c2ae724d48ab09962c28 + - kiwisolver == 1.5.0 + - matplotlib == 3.10.9 + - psutil == 7.2.2 + - pyparsing == 3.3.2 + - python-dateutil == 2.9.0.post0 + - six == 1.17.0 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 f64237b..acf2add 100644 --- a/environments/py-3.12-win-64.conda.lock.yml +++ b/environments/py-3.12-win-64.conda.lock.yml @@ -1,114 +1,130 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: 5cda186c5fef46890a9cc5fc61c2819619ca268c4490d55a93647e5735976bf3 +# input_hash: 3438a9367ed8f2bfcf4f8f529cfaba3ffc11a0f894d1fc98c2b16807b6ad3fee channels: - conda-forge - nodefaults dependencies: - - _libavif_api=1.3.0=h57928b3_2 - - _openmp_mutex=4.5=2_gnu + - _libavif_api=1.4.2=h57928b3_1 + - _openmp_mutex=4.5=20_gnu - annotated-types=0.7.0=pyhd8ed1ab_1 - - aom=3.9.1=he0c23c2_0 + - aom=3.14.1=pl5321h06fc181_1 + - aws-c-auth=0.10.3=h75b6777_2 + - aws-c-cal=0.9.14=h270aff2_2 + - aws-c-common=0.14.0=hfd05255_0 + - aws-c-compression=0.3.2=h1f21522_2 + - aws-c-http=0.11.0=h4721ae0_2 + - aws-c-io=0.26.3=h1a62f66_4 + - aws-c-s3=0.12.5=h425879c_1 + - aws-c-sdkutils=0.2.4=h1f21522_6 + - aws-checksums=0.2.10=h1f21522_2 - blosc=1.21.6=hfd34d9b_1 - - bzip2=1.0.8=h0ad9c76_8 - - c-blosc2=2.22.0=h3cf07e4_0 - - ca-certificates=2025.10.5=h4c7d964_0 + - bzip2=1.0.8=h0ad9c76_9 + - c-blosc2=3.1.3=h2af8807_0 + - ca-certificates=2026.5.20=h4c7d964_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - charls=2.4.2=h1537add_0 + - charls=2.4.4=h7cafa3a_0 - colorama=0.4.6=pyhd8ed1ab_1 - dav1d=1.2.1=hcfcfb64_0 - - freetype=2.14.1=h57928b3_0 - giflib=5.2.2=h64bf75a_0 - - h5py=3.15.1=nompi_py312h03cd2ba_100 - - hdf5=1.14.6=nompi_he30205f_103 - - imagecodecs=2025.8.2=py312hf2cf878_7 + - h5py=3.16.0=nompi_py312h5ddec8c_102 + - hdf5=2.1.0=nompi_h693361b_107 + - imagecodecs=2026.6.6=py312h68cad51_1 - imageio=2.37.0=pyhfb79c49_0 - - importlib-metadata=8.7.0=pyhe01879c_1 - jxrlib=1.1=hcfcfb64_3 - - 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.9.0=38_hf2e6a31_mkl - - libbrotlicommon=1.2.0=hc82b238_0 - - libbrotlidec=1.2.0=h431afc6_0 - - libbrotlienc=1.2.0=ha521d6b_0 - - libcblas=3.9.0=38_h2a3cdd5_mkl - - libcurl=8.17.0=h43ecb02_0 + - krb5=1.22.2=h0ea6238_0 + - lazy-loader=0.5=pyhd8ed1ab_0 + - lcms2=2.19.1=hf2c6c5f_1 + - lerc=4.1.0=hd936e49_0 + - libaec=1.1.5=haf901d7_0 + - libavif16=1.4.2=h7e7b026_1 + - libblas=3.11.0=8_h8455456_mkl + - libbrotlicommon=1.2.0=hfd05255_1 + - libbrotlidec=1.2.0=hfd05255_1 + - libbrotlienc=1.2.0=hfd05255_1 + - libcblas=3.11.0=8_h2a3cdd5_mkl + - libcurl=8.20.0=h8206538_0 - libdeflate=1.25=h51727cc_0 - - libexpat=2.7.1=hac47afa_0 - - libffi=3.5.2=h52bdfb6_0 - - libfreetype=2.14.1=h57928b3_0 - - libfreetype6=2.14.1=hdbac1cb_0 - - libgcc=15.2.0=h1383e82_7 - - libgomp=15.2.0=h1383e82_7 - - libhwloc=2.12.1=default_h64bd3f2_1002 - - libhwy=1.3.0=ha71e874_1 + - libexpat=2.8.1=hac47afa_1 + - libffi=3.5.2=h3d046cb_0 + - libfreetype=2.14.3=h57928b3_1 + - libfreetype6=2.14.3=hdbac1cb_1 + - libgcc=15.2.0=h8ee18e1_19 + - libgomp=15.2.0=h8ee18e1_19 + - libhwloc=2.13.0=default_h049141e_1000 + - libhwy=1.4.0=h172a326_0 - libiconv=1.18=hc1393d2_2 - - libjpeg-turbo=3.1.2=hfd05255_0 - - libjxl=0.11.1=hac9b6f3_5 - - liblapack=3.9.0=38_hf9ab0e9_mkl - - liblzma=5.8.1=h2466b09_2 - - libpng=1.6.50=h7351971_1 - - libsqlite=3.51.0=hf5d6505_0 + - libjpeg-turbo=3.1.4.1=hfd05255_0 + - libjxl=0.11.2=h932607e_1 + - liblapack=3.11.0=8_hf9ab0e9_mkl + - liblzma=5.8.3=hfd05255_0 + - libpng=1.6.58=h7351971_0 + - libsqlite=3.53.2=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=h5d26750_0 - - libxml2-16=2.15.1=h692994f_0 - - libzlib=1.3.1=h2466b09_2 + - libxml2=2.15.3=hbc0d294_0 + - libxml2-16=2.15.3=h692994f_0 + - libzlib=1.3.2=hfd05255_2 - libzopfli=1.0.3=h0e60522_0 - - llvm-openmp=21.1.5=hfa2b4ca_0 + - llvm-openmp=22.1.7=h4fa8253_0 - lz4-c=1.10.0=h2466b09_1 - - mkl=2025.3.0=hac47afa_454 - - networkx=3.5=pyhe01879c_0 - - numpy=1.26.4=py312h8753938_0 - - openjpeg=2.5.4=h24db6dd_0 - - openssl=3.5.4=h725018a_0 - - packaging=25.0=pyh29332c3_1 - - pillow=10.3.0=py312h381445a_1 - - pip=25.3=pyh8b19718_0 + - mkl=2026.0.0=hac47afa_908 + - networkx=3.6.1=pyhcf101f3_0 + - numpy=2.4.6=py312ha3f287d_0 + - onemkl-license=2026.0.0=h57928b3_908 + - openjpeg=2.5.4=h0e57b4f_0 + - openjph=0.28.1=hf13a347_0 + - openssl=3.6.3=hf411b9b_0 + - packaging=26.2=pyhc364b38_0 + - pillow=12.2.0=py312h31f0997_0 + - pip=26.1.2=pyh8b19718_0 - pthread-stubs=0.4=h0e40799_1002 - - pydantic=2.12.4=pyh3cfb1c2_0 - - pydantic-core=2.41.5=py312hdabe01f_0 - - python=3.12.12=h0159041_1_cpython + - pydantic=2.12.5=pyhcf101f3_1 + - pydantic-core=2.41.5=py312hdabe01f_1 + - python=3.12.13=h0159041_0_cpython - python_abi=3.12=8_cp312 - - pywavelets=1.9.0=py312h196c9fc_2 - - rav1e=0.7.1=ha073cba_3 - - scikit-image=0.25.2=py312hc128f0a_2 - - scipy=1.14.1=py312h337df96_2 - - setuptools=80.9.0=pyhff2d567_0 - - snappy=1.2.2=h7fa0ca8_0 - - svt-av1=3.1.2=hac47afa_0 - - tbb=2022.3.0=hd094cb3_1 - - tifffile=2025.10.16=pyhd8ed1ab_0 - - tk=8.6.13=h2c6b04d_2 - - tqdm=4.67.1=pyhd8ed1ab_1 + - rav1e=0.8.1=h007690e_0 + - scikit-image=0.26.0=np2py312h9ea65bc_0 + - scipy=1.17.1=py312h9b3c559_1 + - setuptools=82.0.1=pyh332efcf_0 + - snappy=1.2.2=h7fa0ca8_1 + - svt-av1=4.0.1=hac47afa_0 + - tbb=2023.0.0=hd3d4ead_2 + - tifffile=2026.6.1=pyhd8ed1ab_0 + - tk=8.6.13=h6ed50ae_3 + - tqdm=4.68.2=pyha7b4d00_1 - typing-extensions=4.15.0=h396c80c_0 - - typing-inspection=0.4.2=pyhd8ed1ab_0 + - typing-inspection=0.4.2=pyhcf101f3_2 - typing_extensions=4.15.0=pyhcf101f3_0 - - tzdata=2025b=h78e105d_0 + - tzdata=2025c=hc9c84f9_1 - ucrt=10.0.26100.0=h57928b3_0 - - vc=14.3=h2b53caa_32 - - vc14_runtime=14.44.35208=h818238b_32 - - vcomp14=14.44.35208=h818238b_32 - - vs2015_runtime=14.44.35208=h38c0c73_32 - - wheel=0.45.1=pyhd8ed1ab_1 - - xorg-libxau=1.0.12=h0e40799_0 - - xorg-libxdmcp=1.1.5=h0e40799_0 - - zfp=1.0.1=h2f0f97f_3 - - zipp=3.23.0=pyhd8ed1ab_0 - - zlib-ng=2.2.5=h32d8bfd_0 - - zstd=1.5.7=hbeecb71_2 + - vc=14.5=h1b7c187_39 + - vc14_runtime=14.51.36231=h1b9f54f_39 + - vcomp14=14.51.36231=h1b9f54f_39 + - vs2015_runtime=14.51.36231=h84cd919_39 + - wheel=0.47.0=pyhd8ed1ab_0 + - xorg-libxau=1.0.12=hba3369d_1 + - xorg-libxdmcp=1.1.5=hba3369d_1 + - zfp=1.0.1=h2f0f97f_5 + - zlib-ng=2.3.3=h0261ad2_1 + - zstd=1.5.7=h534d264_6 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@80c46588d47b70a1dd26aef06ccfa24bc1585502 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@8f630a84b2b9f2b7632f895e1521d8d61c04e80e + - contourpy == 1.3.3 + - cycler == 0.12.1 + - fonttools == 4.63.0 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@31e1f71c37347154e97e6b07e068f7979a67832c + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@37016b8cbe1db7d880c9c2ae724d48ab09962c28 + - kiwisolver == 1.5.0 + - matplotlib == 3.10.9 + - psutil == 7.2.2 + - pyparsing == 3.3.2 + - python-dateutil == 2.9.0.post0 + - six == 1.17.0 variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.13-linux-64-dev.conda.lock.yml b/environments/py-3.13-linux-64-dev.conda.lock.yml new file mode 100644 index 0000000..58d9aa3 --- /dev/null +++ b/environments/py-3.13-linux-64-dev.conda.lock.yml @@ -0,0 +1,181 @@ +# Generated by conda-lock. +# platform: linux-64 +# input_hash: 7ae67d9e4c855c99d4d6233062f675b414eadc3bdd9df3261ddcc4e6fb9c1b5b + +channels: + - conda-forge + - nodefaults +dependencies: + - _openmp_mutex=4.5=20_gnu + - alabaster=1.0.0=pyhd8ed1ab_1 + - annotated-types=0.7.0=pyhd8ed1ab_1 + - aom=3.14.1=pl5321h039972f_1 + - astroid=4.0.4=py313h78bf25f_0 + - aws-c-auth=0.10.3=hea842a7_2 + - aws-c-cal=0.9.14=h78948cc_2 + - aws-c-common=0.14.0=hb03c661_0 + - aws-c-compression=0.3.2=haa0cbde_2 + - aws-c-http=0.11.0=h6488f85_2 + - aws-c-io=0.26.3=h5b668fc_4 + - aws-c-s3=0.12.5=hb916526_1 + - aws-c-sdkutils=0.2.4=haa0cbde_6 + - aws-checksums=0.2.10=haa0cbde_2 + - babel=2.18.0=pyhcf101f3_1 + - backports.zstd=1.6.0=py313h18e8e13_0 + - blosc=1.21.6=he440d0b_1 + - brotli-python=1.2.0=py313hf159716_1 + - brunsli=0.1=hd1e3526_2 + - bzip2=1.0.8=hda65f42_9 + - c-ares=1.34.6=hb03c661_0 + - c-blosc2=3.1.3=hc31b594_0 + - ca-certificates=2026.5.20=hbd8a1cb_0 + - cached-property=1.5.2=hd8ed1ab_1 + - cached_property=1.5.2=pyha770c72_1 + - certifi=2026.5.20=pyhd8ed1ab_0 + - charls=2.4.4=hecca717_0 + - charset-normalizer=3.4.7=pyhd8ed1ab_0 + - colorama=0.4.6=pyhd8ed1ab_1 + - coverage=7.14.1=py313h3dea7bd_0 + - dav1d=1.2.1=hd590300_0 + - dill=0.4.1=pyhcf101f3_0 + - docutils=0.21.2=pyhd8ed1ab_1 + - exceptiongroup=1.3.1=pyhd8ed1ab_0 + - giflib=5.2.2=hd590300_0 + - h2=4.3.0=pyhcf101f3_0 + - h5py=3.16.0=nompi_py313h22c32d4_102 + - hdf5=2.1.0=nompi_h735b18d_107 + - hpack=4.1.0=pyhd8ed1ab_0 + - hyperframe=6.1.0=pyhd8ed1ab_0 + - idna=3.17=pyhcf101f3_0 + - imagecodecs=2026.6.6=py313h0702ed5_1 + - imageio=2.37.0=pyhfb79c49_0 + - imagesize=2.0.0=pyhd8ed1ab_0 + - importlib-metadata=9.0.0=pyhcf101f3_0 + - iniconfig=2.3.0=pyhd8ed1ab_0 + - isort=8.0.1=pyhd8ed1ab_0 + - jinja2=3.1.6=pyhcf101f3_1 + - jxrlib=1.1=hd590300_3 + - keyutils=1.6.3=hb9d3cd8_0 + - krb5=1.22.2=ha1258a1_0 + - lazy-loader=0.5=pyhd8ed1ab_0 + - lcms2=2.19.1=h0c24ade_1 + - ld_impl_linux-64=2.45.1=default_hbd61a6d_102 + - lerc=4.1.0=hdb68285_0 + - libaec=1.1.5=h088129d_0 + - libavif16=1.4.2=hf998032_1 + - libblas=3.11.0=8_h4a7cf45_openblas + - libbrotlicommon=1.2.0=hb03c661_1 + - libbrotlidec=1.2.0=hb03c661_1 + - libbrotlienc=1.2.0=hb03c661_1 + - libcblas=3.11.0=8_h0358290_openblas + - libcurl=8.20.0=hcf29cc6_0 + - libdeflate=1.25=h17f619e_0 + - libedit=3.1.20250104=pl5321h7949ede_0 + - libev=4.33=hd590300_2 + - libexpat=2.8.1=hecca717_1 + - libffi=3.5.2=h3435931_0 + - libfreetype=2.14.3=ha770c72_0 + - libfreetype6=2.14.3=h73754d4_0 + - libgcc=15.2.0=he0feb66_19 + - libgcc-ng=15.2.0=h69a702a_19 + - libgfortran=15.2.0=h69a702a_19 + - libgfortran5=15.2.0=h68bc16d_19 + - libgomp=15.2.0=he0feb66_19 + - libhwy=1.4.0=h10be129_0 + - libjpeg-turbo=3.1.4.1=hb03c661_0 + - libjxl=0.11.2=h174a0a3_1 + - liblapack=3.11.0=8_h47877c9_openblas + - liblzma=5.8.3=hb03c661_0 + - libmpdec=4.0.0=hb03c661_1 + - libnghttp2=1.68.1=h877daf1_0 + - libopenblas=0.3.33=pthreads_h94d23a6_0 + - libpng=1.6.58=h421ea60_0 + - libsqlite=3.53.2=h0c1763c_0 + - libssh2=1.11.1=hcf80075_0 + - libstdcxx=15.2.0=h934c35e_19 + - libstdcxx-ng=15.2.0=hdf11a46_19 + - libtiff=4.7.1=h9d88235_1 + - libuuid=2.42.1=h5347b49_0 + - libwebp-base=1.6.0=hd42ef1d_0 + - libxcb=1.17.0=h8a09558_0 + - libzlib=1.3.2=h25fd6f3_2 + - libzopfli=1.0.3=h9c3ff4c_0 + - lz4-c=1.10.0=h5888daf_1 + - markupsafe=3.0.3=py313h3dea7bd_1 + - mccabe=0.7.0=pyhd8ed1ab_1 + - ncurses=6.6=hdb14827_0 + - networkx=3.6.1=pyhcf101f3_0 + - numpy=2.4.6=py313hf6604e3_0 + - openjpeg=2.5.4=h55fea9a_0 + - openjph=0.28.1=h8d634f6_0 + - openssl=3.6.3=h35e630c_0 + - packaging=26.2=pyhc364b38_0 + - pillow=12.2.0=py313h80991f8_0 + - pip=26.1.2=pyh145f28c_0 + - platformdirs=4.10.0=pyhcf101f3_0 + - pluggy=1.6.0=pyhf9edf01_1 + - pthread-stubs=0.4=hb9d3cd8_1002 + - pydantic=2.12.5=pyhcf101f3_1 + - pydantic-core=2.41.5=py313h843e2db_1 + - pygments=2.20.0=pyhd8ed1ab_0 + - pylint=4.0.6=pyhcf101f3_0 + - pysocks=1.7.1=pyha55dd90_7 + - pytest=9.0.3=pyhc364b38_1 + - pytest-cov=7.1.0=pyhcf101f3_0 + - python=3.13.14=h6add32d_100_cp313 + - python_abi=3.13=8_cp313 + - pyyaml=6.0.3=py313h3dea7bd_1 + - rav1e=0.8.1=h1fbca29_0 + - readline=8.3=h853b02a_0 + - requests=2.34.2=pyhcf101f3_0 + - roman-numerals=4.1.0=pyhd8ed1ab_0 + - roman-numerals-py=4.1.0=pyhd8ed1ab_0 + - s2n=1.7.3=hc5a330e_0 + - scikit-image=0.26.0=np2py313hb172dc5_0 + - scipy=1.17.1=py313h4b8bb8b_1 + - snappy=1.2.2=h03e3b7b_1 + - snowballstemmer=3.1.1=pyhd8ed1ab_0 + - sphinx=8.3.0=pyhd8ed1ab_0 + - sphinx-autodoc-typehints=3.5.2=pyhd8ed1ab_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 + - sphinxcontrib-jquery=4.1=pyhd8ed1ab_1 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_1 + - sphinxcontrib-qthelp=2.0.0=pyhd8ed1ab_1 + - sphinxcontrib-serializinghtml=2.0.0=pyhd8ed1ab_0 + - svt-av1=4.0.1=hecca717_0 + - tifffile=2026.6.1=pyhd8ed1ab_0 + - tk=8.6.13=noxft_h366c992_103 + - tomli=2.4.1=pyhcf101f3_0 + - tomlkit=0.15.0=pyha770c72_0 + - tqdm=4.68.2=pyh8f84b5b_1 + - typing-extensions=4.15.0=h396c80c_0 + - typing-inspection=0.4.2=pyhcf101f3_2 + - typing_extensions=4.15.0=pyhcf101f3_0 + - tzdata=2025c=hc9c84f9_1 + - urllib3=2.7.0=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=4.1.0=pyhcf101f3_0 + - zlib-ng=2.3.3=hceb46e0_1 + - zstd=1.5.7=hb78ec9c_6 + - pip: + - contourpy == 1.3.3 + - cycler == 0.12.1 + - fonttools == 4.63.0 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@31e1f71c37347154e97e6b07e068f7979a67832c + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@37016b8cbe1db7d880c9c2ae724d48ab09962c28 + - kiwisolver == 1.5.0 + - matplotlib == 3.10.9 + - psutil == 7.2.2 + - pyparsing == 3.3.2 + - python-dateutil == 2.9.0.post0 + - six == 1.17.0 + +variables: + KMP_WARNINGS: 0 diff --git a/environments/py-3.13-linux-64.conda.lock.yml b/environments/py-3.13-linux-64.conda.lock.yml new file mode 100644 index 0000000..3542316 --- /dev/null +++ b/environments/py-3.13-linux-64.conda.lock.yml @@ -0,0 +1,130 @@ +# Generated by conda-lock. +# platform: linux-64 +# input_hash: 7ae67d9e4c855c99d4d6233062f675b414eadc3bdd9df3261ddcc4e6fb9c1b5b + +channels: + - conda-forge + - nodefaults +dependencies: + - _openmp_mutex=4.5=20_gnu + - annotated-types=0.7.0=pyhd8ed1ab_1 + - aom=3.14.1=pl5321h039972f_1 + - aws-c-auth=0.10.3=hea842a7_2 + - aws-c-cal=0.9.14=h78948cc_2 + - aws-c-common=0.14.0=hb03c661_0 + - aws-c-compression=0.3.2=haa0cbde_2 + - aws-c-http=0.11.0=h6488f85_2 + - aws-c-io=0.26.3=h5b668fc_4 + - aws-c-s3=0.12.5=hb916526_1 + - aws-c-sdkutils=0.2.4=haa0cbde_6 + - aws-checksums=0.2.10=haa0cbde_2 + - blosc=1.21.6=he440d0b_1 + - brunsli=0.1=hd1e3526_2 + - bzip2=1.0.8=hda65f42_9 + - c-ares=1.34.6=hb03c661_0 + - c-blosc2=3.1.3=hc31b594_0 + - ca-certificates=2026.5.20=hbd8a1cb_0 + - cached-property=1.5.2=hd8ed1ab_1 + - cached_property=1.5.2=pyha770c72_1 + - charls=2.4.4=hecca717_0 + - dav1d=1.2.1=hd590300_0 + - giflib=5.2.2=hd590300_0 + - h5py=3.16.0=nompi_py313h22c32d4_102 + - hdf5=2.1.0=nompi_h735b18d_107 + - imagecodecs=2026.6.6=py313h0702ed5_1 + - imageio=2.37.0=pyhfb79c49_0 + - jxrlib=1.1=hd590300_3 + - keyutils=1.6.3=hb9d3cd8_0 + - krb5=1.22.2=ha1258a1_0 + - lazy-loader=0.5=pyhd8ed1ab_0 + - lcms2=2.19.1=h0c24ade_1 + - ld_impl_linux-64=2.45.1=default_hbd61a6d_102 + - lerc=4.1.0=hdb68285_0 + - libaec=1.1.5=h088129d_0 + - libavif16=1.4.2=hf998032_1 + - libblas=3.11.0=8_h4a7cf45_openblas + - libbrotlicommon=1.2.0=hb03c661_1 + - libbrotlidec=1.2.0=hb03c661_1 + - libbrotlienc=1.2.0=hb03c661_1 + - libcblas=3.11.0=8_h0358290_openblas + - libcurl=8.20.0=hcf29cc6_0 + - libdeflate=1.25=h17f619e_0 + - libedit=3.1.20250104=pl5321h7949ede_0 + - libev=4.33=hd590300_2 + - libexpat=2.8.1=hecca717_1 + - libffi=3.5.2=h3435931_0 + - libfreetype=2.14.3=ha770c72_0 + - libfreetype6=2.14.3=h73754d4_0 + - libgcc=15.2.0=he0feb66_19 + - libgcc-ng=15.2.0=h69a702a_19 + - libgfortran=15.2.0=h69a702a_19 + - libgfortran5=15.2.0=h68bc16d_19 + - libgomp=15.2.0=he0feb66_19 + - libhwy=1.4.0=h10be129_0 + - libjpeg-turbo=3.1.4.1=hb03c661_0 + - libjxl=0.11.2=h174a0a3_1 + - liblapack=3.11.0=8_h47877c9_openblas + - liblzma=5.8.3=hb03c661_0 + - libmpdec=4.0.0=hb03c661_1 + - libnghttp2=1.68.1=h877daf1_0 + - libopenblas=0.3.33=pthreads_h94d23a6_0 + - libpng=1.6.58=h421ea60_0 + - libsqlite=3.53.2=h0c1763c_0 + - libssh2=1.11.1=hcf80075_0 + - libstdcxx=15.2.0=h934c35e_19 + - libstdcxx-ng=15.2.0=hdf11a46_19 + - libtiff=4.7.1=h9d88235_1 + - libuuid=2.42.1=h5347b49_0 + - libwebp-base=1.6.0=hd42ef1d_0 + - libxcb=1.17.0=h8a09558_0 + - libzlib=1.3.2=h25fd6f3_2 + - libzopfli=1.0.3=h9c3ff4c_0 + - lz4-c=1.10.0=h5888daf_1 + - ncurses=6.6=hdb14827_0 + - networkx=3.6.1=pyhcf101f3_0 + - numpy=2.4.6=py313hf6604e3_0 + - openjpeg=2.5.4=h55fea9a_0 + - openjph=0.28.1=h8d634f6_0 + - openssl=3.6.3=h35e630c_0 + - packaging=26.2=pyhc364b38_0 + - pillow=12.2.0=py313h80991f8_0 + - pip=26.1.2=pyh145f28c_0 + - pthread-stubs=0.4=hb9d3cd8_1002 + - pydantic=2.12.5=pyhcf101f3_1 + - pydantic-core=2.41.5=py313h843e2db_1 + - python=3.13.14=h6add32d_100_cp313 + - python_abi=3.13=8_cp313 + - rav1e=0.8.1=h1fbca29_0 + - readline=8.3=h853b02a_0 + - s2n=1.7.3=hc5a330e_0 + - scikit-image=0.26.0=np2py313hb172dc5_0 + - scipy=1.17.1=py313h4b8bb8b_1 + - snappy=1.2.2=h03e3b7b_1 + - svt-av1=4.0.1=hecca717_0 + - tifffile=2026.6.1=pyhd8ed1ab_0 + - tk=8.6.13=noxft_h366c992_103 + - tqdm=4.68.2=pyh8f84b5b_1 + - typing-extensions=4.15.0=h396c80c_0 + - typing-inspection=0.4.2=pyhcf101f3_2 + - typing_extensions=4.15.0=pyhcf101f3_0 + - tzdata=2025c=hc9c84f9_1 + - xorg-libxau=1.0.12=hb03c661_1 + - xorg-libxdmcp=1.1.5=hb03c661_1 + - zfp=1.0.1=h909a3a2_5 + - zlib-ng=2.3.3=hceb46e0_1 + - zstd=1.5.7=hb78ec9c_6 + - pip: + - contourpy == 1.3.3 + - cycler == 0.12.1 + - fonttools == 4.63.0 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@31e1f71c37347154e97e6b07e068f7979a67832c + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@37016b8cbe1db7d880c9c2ae724d48ab09962c28 + - kiwisolver == 1.5.0 + - matplotlib == 3.10.9 + - psutil == 7.2.2 + - pyparsing == 3.3.2 + - python-dateutil == 2.9.0.post0 + - six == 1.17.0 + +variables: + KMP_WARNINGS: 0 diff --git a/environments/py-3.13-win-64-dev.conda.lock.yml b/environments/py-3.13-win-64-dev.conda.lock.yml new file mode 100644 index 0000000..9d62b3b --- /dev/null +++ b/environments/py-3.13-win-64-dev.conda.lock.yml @@ -0,0 +1,180 @@ +# Generated by conda-lock. +# platform: win-64 +# input_hash: 68d4c5cd077931dc72e0120818f18da0e293191418207ef8c38d0ea5ce60e92e + +channels: + - conda-forge + - nodefaults +dependencies: + - _libavif_api=1.4.2=h57928b3_1 + - _openmp_mutex=4.5=20_gnu + - alabaster=1.0.0=pyhd8ed1ab_1 + - annotated-types=0.7.0=pyhd8ed1ab_1 + - aom=3.14.1=pl5321h06fc181_1 + - astroid=4.0.4=py313hfa70ccb_0 + - aws-c-auth=0.10.3=h75b6777_2 + - aws-c-cal=0.9.14=h270aff2_2 + - aws-c-common=0.14.0=hfd05255_0 + - aws-c-compression=0.3.2=h1f21522_2 + - aws-c-http=0.11.0=h4721ae0_2 + - aws-c-io=0.26.3=h1a62f66_4 + - aws-c-s3=0.12.5=h425879c_1 + - aws-c-sdkutils=0.2.4=h1f21522_6 + - aws-checksums=0.2.10=h1f21522_2 + - babel=2.18.0=pyhcf101f3_1 + - backports.zstd=1.6.0=py313h2a31948_0 + - blosc=1.21.6=hfd34d9b_1 + - brotli-python=1.2.0=py313h3ebfc14_1 + - bzip2=1.0.8=h0ad9c76_9 + - c-blosc2=3.1.3=h2af8807_0 + - ca-certificates=2026.5.20=h4c7d964_0 + - cached-property=1.5.2=hd8ed1ab_1 + - cached_property=1.5.2=pyha770c72_1 + - certifi=2026.5.20=pyhd8ed1ab_0 + - charls=2.4.4=h7cafa3a_0 + - charset-normalizer=3.4.7=pyhd8ed1ab_0 + - colorama=0.4.6=pyhd8ed1ab_1 + - coverage=7.14.1=py313hd650c13_0 + - dav1d=1.2.1=hcfcfb64_0 + - dill=0.4.1=pyhcf101f3_0 + - docutils=0.21.2=pyhd8ed1ab_1 + - exceptiongroup=1.3.1=pyhd8ed1ab_0 + - giflib=5.2.2=h64bf75a_0 + - h2=4.3.0=pyhcf101f3_0 + - h5py=3.16.0=nompi_py313hd050a09_102 + - hdf5=2.1.0=nompi_h693361b_107 + - hpack=4.1.0=pyhd8ed1ab_0 + - hyperframe=6.1.0=pyhd8ed1ab_0 + - idna=3.17=pyhcf101f3_0 + - imagecodecs=2026.6.6=py313h61cc59b_1 + - imageio=2.37.0=pyhfb79c49_0 + - imagesize=2.0.0=pyhd8ed1ab_0 + - importlib-metadata=9.0.0=pyhcf101f3_0 + - iniconfig=2.3.0=pyhd8ed1ab_0 + - isort=8.0.1=pyhd8ed1ab_0 + - jinja2=3.1.6=pyhcf101f3_1 + - jxrlib=1.1=hcfcfb64_3 + - krb5=1.22.2=h0ea6238_0 + - lazy-loader=0.5=pyhd8ed1ab_0 + - lcms2=2.19.1=hf2c6c5f_1 + - lerc=4.1.0=hd936e49_0 + - libaec=1.1.5=haf901d7_0 + - libavif16=1.4.2=h7e7b026_1 + - libblas=3.11.0=8_h8455456_mkl + - libbrotlicommon=1.2.0=hfd05255_1 + - libbrotlidec=1.2.0=hfd05255_1 + - libbrotlienc=1.2.0=hfd05255_1 + - libcblas=3.11.0=8_h2a3cdd5_mkl + - libcurl=8.20.0=h8206538_0 + - libdeflate=1.25=h51727cc_0 + - libexpat=2.8.1=hac47afa_1 + - libffi=3.5.2=h3d046cb_0 + - libfreetype=2.14.3=h57928b3_1 + - libfreetype6=2.14.3=hdbac1cb_1 + - libgcc=15.2.0=h8ee18e1_19 + - libgomp=15.2.0=h8ee18e1_19 + - libhwloc=2.13.0=default_h049141e_1000 + - libhwy=1.4.0=h172a326_0 + - libiconv=1.18=hc1393d2_2 + - libjpeg-turbo=3.1.4.1=hfd05255_0 + - libjxl=0.11.2=h932607e_1 + - liblapack=3.11.0=8_hf9ab0e9_mkl + - liblzma=5.8.3=hfd05255_0 + - libmpdec=4.0.0=hfd05255_1 + - libpng=1.6.58=h7351971_0 + - libsqlite=3.53.2=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.3=hbc0d294_0 + - libxml2-16=2.15.3=h692994f_0 + - libzlib=1.3.2=hfd05255_2 + - libzopfli=1.0.3=h0e60522_0 + - llvm-openmp=22.1.7=h4fa8253_0 + - lz4-c=1.10.0=h2466b09_1 + - markupsafe=3.0.3=py313hd650c13_1 + - mccabe=0.7.0=pyhd8ed1ab_1 + - mkl=2026.0.0=hac47afa_908 + - networkx=3.6.1=pyhcf101f3_0 + - numpy=2.4.6=py313ha8dc839_0 + - onemkl-license=2026.0.0=h57928b3_908 + - openjpeg=2.5.4=h0e57b4f_0 + - openjph=0.28.1=hf13a347_0 + - openssl=3.6.3=hf411b9b_0 + - packaging=26.2=pyhc364b38_0 + - pillow=12.2.0=py313h38f99e1_0 + - pip=26.1.2=pyh145f28c_0 + - platformdirs=4.10.0=pyhcf101f3_0 + - pluggy=1.6.0=pyhf9edf01_1 + - pthread-stubs=0.4=h0e40799_1002 + - pydantic=2.12.5=pyhcf101f3_1 + - pydantic-core=2.41.5=py313hfbe8231_1 + - pygments=2.20.0=pyhd8ed1ab_0 + - pylint=4.0.6=pyhcf101f3_0 + - pysocks=1.7.1=pyh09c184e_7 + - pytest=9.0.3=pyhc364b38_1 + - pytest-cov=7.1.0=pyhcf101f3_0 + - python=3.13.14=h09917c8_100_cp313 + - python_abi=3.13=8_cp313 + - pyyaml=6.0.3=py313hd650c13_1 + - rav1e=0.8.1=h007690e_0 + - requests=2.34.2=pyhcf101f3_0 + - roman-numerals=4.1.0=pyhd8ed1ab_0 + - roman-numerals-py=4.1.0=pyhd8ed1ab_0 + - scikit-image=0.26.0=np2py313h33c6dc1_0 + - scipy=1.17.1=py313he51e9a2_1 + - snappy=1.2.2=h7fa0ca8_1 + - snowballstemmer=3.1.1=pyhd8ed1ab_0 + - sphinx=8.3.0=pyhd8ed1ab_0 + - sphinx-autodoc-typehints=3.5.2=pyhd8ed1ab_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 + - sphinxcontrib-jquery=4.1=pyhd8ed1ab_1 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_1 + - sphinxcontrib-qthelp=2.0.0=pyhd8ed1ab_1 + - sphinxcontrib-serializinghtml=2.0.0=pyhd8ed1ab_0 + - svt-av1=4.0.1=hac47afa_0 + - tbb=2023.0.0=hd3d4ead_2 + - tifffile=2026.6.1=pyhd8ed1ab_0 + - tk=8.6.13=h6ed50ae_3 + - tomli=2.4.1=pyhcf101f3_0 + - tomlkit=0.15.0=pyha770c72_0 + - tqdm=4.68.2=pyha7b4d00_1 + - typing-extensions=4.15.0=h396c80c_0 + - typing-inspection=0.4.2=pyhcf101f3_2 + - typing_extensions=4.15.0=pyhcf101f3_0 + - tzdata=2025c=hc9c84f9_1 + - ucrt=10.0.26100.0=h57928b3_0 + - urllib3=2.7.0=pyhd8ed1ab_0 + - vc=14.5=h1b7c187_39 + - vc14_runtime=14.51.36231=h1b9f54f_39 + - vcomp14=14.51.36231=h1b9f54f_39 + - vs2015_runtime=14.51.36231=h84cd919_39 + - 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=4.1.0=pyhcf101f3_0 + - zlib-ng=2.3.3=h0261ad2_1 + - zstd=1.5.7=h534d264_6 + - pip: + - contourpy == 1.3.3 + - cycler == 0.12.1 + - fonttools == 4.63.0 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@31e1f71c37347154e97e6b07e068f7979a67832c + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@37016b8cbe1db7d880c9c2ae724d48ab09962c28 + - kiwisolver == 1.5.0 + - matplotlib == 3.10.9 + - psutil == 7.2.2 + - pyparsing == 3.3.2 + - python-dateutil == 2.9.0.post0 + - six == 1.17.0 + +variables: + KMP_WARNINGS: 0 diff --git a/environments/py-3.13-win-64.conda.lock.yml b/environments/py-3.13-win-64.conda.lock.yml new file mode 100644 index 0000000..b928ffa --- /dev/null +++ b/environments/py-3.13-win-64.conda.lock.yml @@ -0,0 +1,129 @@ +# Generated by conda-lock. +# platform: win-64 +# input_hash: 68d4c5cd077931dc72e0120818f18da0e293191418207ef8c38d0ea5ce60e92e + +channels: + - conda-forge + - nodefaults +dependencies: + - _libavif_api=1.4.2=h57928b3_1 + - _openmp_mutex=4.5=20_gnu + - annotated-types=0.7.0=pyhd8ed1ab_1 + - aom=3.14.1=pl5321h06fc181_1 + - aws-c-auth=0.10.3=h75b6777_2 + - aws-c-cal=0.9.14=h270aff2_2 + - aws-c-common=0.14.0=hfd05255_0 + - aws-c-compression=0.3.2=h1f21522_2 + - aws-c-http=0.11.0=h4721ae0_2 + - aws-c-io=0.26.3=h1a62f66_4 + - aws-c-s3=0.12.5=h425879c_1 + - aws-c-sdkutils=0.2.4=h1f21522_6 + - aws-checksums=0.2.10=h1f21522_2 + - blosc=1.21.6=hfd34d9b_1 + - bzip2=1.0.8=h0ad9c76_9 + - c-blosc2=3.1.3=h2af8807_0 + - ca-certificates=2026.5.20=h4c7d964_0 + - cached-property=1.5.2=hd8ed1ab_1 + - cached_property=1.5.2=pyha770c72_1 + - charls=2.4.4=h7cafa3a_0 + - colorama=0.4.6=pyhd8ed1ab_1 + - dav1d=1.2.1=hcfcfb64_0 + - giflib=5.2.2=h64bf75a_0 + - h5py=3.16.0=nompi_py313hd050a09_102 + - hdf5=2.1.0=nompi_h693361b_107 + - imagecodecs=2026.6.6=py313h61cc59b_1 + - imageio=2.37.0=pyhfb79c49_0 + - jxrlib=1.1=hcfcfb64_3 + - krb5=1.22.2=h0ea6238_0 + - lazy-loader=0.5=pyhd8ed1ab_0 + - lcms2=2.19.1=hf2c6c5f_1 + - lerc=4.1.0=hd936e49_0 + - libaec=1.1.5=haf901d7_0 + - libavif16=1.4.2=h7e7b026_1 + - libblas=3.11.0=8_h8455456_mkl + - libbrotlicommon=1.2.0=hfd05255_1 + - libbrotlidec=1.2.0=hfd05255_1 + - libbrotlienc=1.2.0=hfd05255_1 + - libcblas=3.11.0=8_h2a3cdd5_mkl + - libcurl=8.20.0=h8206538_0 + - libdeflate=1.25=h51727cc_0 + - libexpat=2.8.1=hac47afa_1 + - libffi=3.5.2=h3d046cb_0 + - libfreetype=2.14.3=h57928b3_1 + - libfreetype6=2.14.3=hdbac1cb_1 + - libgcc=15.2.0=h8ee18e1_19 + - libgomp=15.2.0=h8ee18e1_19 + - libhwloc=2.13.0=default_h049141e_1000 + - libhwy=1.4.0=h172a326_0 + - libiconv=1.18=hc1393d2_2 + - libjpeg-turbo=3.1.4.1=hfd05255_0 + - libjxl=0.11.2=h932607e_1 + - liblapack=3.11.0=8_hf9ab0e9_mkl + - liblzma=5.8.3=hfd05255_0 + - libmpdec=4.0.0=hfd05255_1 + - libpng=1.6.58=h7351971_0 + - libsqlite=3.53.2=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.3=hbc0d294_0 + - libxml2-16=2.15.3=h692994f_0 + - libzlib=1.3.2=hfd05255_2 + - libzopfli=1.0.3=h0e60522_0 + - llvm-openmp=22.1.7=h4fa8253_0 + - lz4-c=1.10.0=h2466b09_1 + - mkl=2026.0.0=hac47afa_908 + - networkx=3.6.1=pyhcf101f3_0 + - numpy=2.4.6=py313ha8dc839_0 + - onemkl-license=2026.0.0=h57928b3_908 + - openjpeg=2.5.4=h0e57b4f_0 + - openjph=0.28.1=hf13a347_0 + - openssl=3.6.3=hf411b9b_0 + - packaging=26.2=pyhc364b38_0 + - pillow=12.2.0=py313h38f99e1_0 + - pip=26.1.2=pyh145f28c_0 + - pthread-stubs=0.4=h0e40799_1002 + - pydantic=2.12.5=pyhcf101f3_1 + - pydantic-core=2.41.5=py313hfbe8231_1 + - python=3.13.14=h09917c8_100_cp313 + - python_abi=3.13=8_cp313 + - rav1e=0.8.1=h007690e_0 + - scikit-image=0.26.0=np2py313h33c6dc1_0 + - scipy=1.17.1=py313he51e9a2_1 + - snappy=1.2.2=h7fa0ca8_1 + - svt-av1=4.0.1=hac47afa_0 + - tbb=2023.0.0=hd3d4ead_2 + - tifffile=2026.6.1=pyhd8ed1ab_0 + - tk=8.6.13=h6ed50ae_3 + - tqdm=4.68.2=pyha7b4d00_1 + - typing-extensions=4.15.0=h396c80c_0 + - typing-inspection=0.4.2=pyhcf101f3_2 + - typing_extensions=4.15.0=pyhcf101f3_0 + - tzdata=2025c=hc9c84f9_1 + - ucrt=10.0.26100.0=h57928b3_0 + - vc=14.5=h1b7c187_39 + - vc14_runtime=14.51.36231=h1b9f54f_39 + - vcomp14=14.51.36231=h1b9f54f_39 + - vs2015_runtime=14.51.36231=h84cd919_39 + - xorg-libxau=1.0.12=hba3369d_1 + - xorg-libxdmcp=1.1.5=hba3369d_1 + - zfp=1.0.1=h2f0f97f_5 + - zlib-ng=2.3.3=h0261ad2_1 + - zstd=1.5.7=h534d264_6 + - pip: + - contourpy == 1.3.3 + - cycler == 0.12.1 + - fonttools == 4.63.0 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@31e1f71c37347154e97e6b07e068f7979a67832c + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@37016b8cbe1db7d880c9c2ae724d48ab09962c28 + - kiwisolver == 1.5.0 + - matplotlib == 3.10.9 + - psutil == 7.2.2 + - pyparsing == 3.3.2 + - python-dateutil == 2.9.0.post0 + - six == 1.17.0 + +variables: + KMP_WARNINGS: 0 diff --git a/install.bat b/install.bat index 0660278..ce1444b 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=surface_apps set MY_CONDA=!MY_CONDA_EXE:"=! diff --git a/package.rst b/package.rst index 6577a1a..a24498e 100644 --- a/package.rst +++ b/package.rst @@ -5,7 +5,7 @@ The **surface-apps** library offers tools for the creation and manipulation of s Installation ^^^^^^^^^^^^ -**Surface-apps** is currently written for Python 3.10 or higher. +**Surface-apps** is currently written for Python 3.12 or higher. Install **surface-apps** from PyPI:: diff --git a/py-3.10.conda-lock.yml b/py-3.10.conda-lock.yml deleted file mode 100644 index 97e689c..0000000 --- a/py-3.10.conda-lock.yml +++ /dev/null @@ -1,4493 +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 -# 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: b499b1d55238c786e2257f1765ab46e05f82fd133075d87d794ceb57b45d8132 - linux-64: 0b5bf197c6326e99c2eebfe35104c30ee42a7348ab3f970520c12021222f0d78 - 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.2 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* - typing_extensions: '>=4' - url: https://repo.prefix.dev/conda-forge/linux-64/astroid-4.0.2-py310hff52083_0.conda - hash: - md5: b3cbed49a8ad9812baa3918bbdf6578a - sha256: 929e1993227897b735a28227ce47b88054fb1bb2fc235143f135eab865f5eb53 - category: dev - optional: true -- name: astroid - version: 4.0.2 - manager: conda - platform: win-64 - dependencies: - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* - typing_extensions: '>=4' - url: https://repo.prefix.dev/conda-forge/win-64/astroid-4.0.2-py310h5588dad_0.conda - hash: - md5: dacd5a88a67e4b8c082ef7a7950ca85a - sha256: 64f9277151ee5dc5ada9c06ac6ad6bdd2b94bc21eeb47490e009ff097e2f7b93 - 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: 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: 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: dev - optional: true -- 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: dev - optional: true -- 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.5 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/c-ares-1.34.5-hb9d3cd8_0.conda - hash: - md5: f7f0d6cc2dc986d42ac2689ec88192be - sha256: f8003bef369f57396593ccd03d08a8e21966157269426f71e943f96e4b579aeb - 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: 2025.10.5 - manager: conda - platform: linux-64 - dependencies: - __unix: '' - url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.10.5-hbd8a1cb_0.conda - hash: - md5: f9e5fbc24009179e8b0409624691758a - sha256: 3b5ad78b8bb61b6cdc0978a6a99f8dfb2cc789a451378d054698441005ecbdb6 - category: main - optional: false -- name: ca-certificates - version: 2025.10.5 - manager: conda - platform: win-64 - dependencies: - __win: '' - url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.10.5-h4c7d964_0.conda - hash: - md5: e54200a1cd1fe33d61c9df8d3b00b743 - sha256: bfb7f9f242f441fdcd80f1199edd2ecf09acea0f2bcef6f07d7cbb1a8131a345 - 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: 2025.10.5 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.10.5-pyhd8ed1ab_0.conda - hash: - md5: 257ae203f1d204107ba389607d375ded - sha256: 955bac31be82592093f6bc006e09822cd13daf52b28643c9a6abd38cd5f4a306 - category: dev - optional: true -- name: certifi - version: 2025.10.5 - manager: conda - platform: win-64 - dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.10.5-pyhd8ed1ab_0.conda - hash: - md5: 257ae203f1d204107ba389607d375ded - sha256: 955bac31be82592093f6bc006e09822cd13daf52b28643c9a6abd38cd5f4a306 - category: dev - optional: true -- 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: dev - optional: true -- 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: dev - optional: true -- 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: dev - optional: true -- 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: dev - 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: coverage - version: 7.11.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.* - tomli: '' - url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.11.3-py310h3406613_0.conda - hash: - md5: b3911836f2e88adc8d49600b8f8958c8 - sha256: c3e72cc7c8776641aacd8aea6da4f83ba0362cb67e52d56b9b0cf1800df81ea5 - category: dev - optional: true -- name: coverage - version: 7.11.3 - 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.11.3-py310hdb0e946_0.conda - hash: - md5: 74d598b7eec132177038bec0e9cf2b7e - sha256: 3649a2b433b93631bd4cac0e55f89d0cbfaa0fbcfa2160818096047b2171c1ea - category: dev - optional: true -- 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: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda - hash: - md5: 885745570573eb6a08e021841928297a - sha256: 43dca52c96fde0c4845aaff02bcc92f25e1c2e5266ddefc2eac1a3de0960a3b1 - category: dev - optional: true -- name: dill - version: 0.4.0 - manager: conda - platform: win-64 - dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda - hash: - md5: 885745570573eb6a08e021841928297a - sha256: 43dca52c96fde0c4845aaff02bcc92f25e1c2e5266ddefc2eac1a3de0960a3b1 - 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.0 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.9' - typing_extensions: '>=4.6.0' - url: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda - hash: - md5: 72e42d28960d875c7654614f8b50939a - sha256: ce61f4f99401a4bd455b89909153b40b9c823276aefcbb06f2044618696009ca - category: dev - optional: true -- name: exceptiongroup - version: 1.3.0 - manager: conda - platform: win-64 - dependencies: - python: '>=3.9' - typing_extensions: '>=4.6.0' - url: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda - hash: - md5: 72e42d28960d875c7654614f8b50939a - sha256: ce61f4f99401a4bd455b89909153b40b9c823276aefcbb06f2044618696009ca - category: dev - optional: true -- 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: 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: dev - optional: true -- 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: dev - optional: true -- 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_100.conda - hash: - md5: fbde5f561c770cb485f414e3039df812 - sha256: 592d1454332e68516a084c1e0b0c772a54da461894637427839c8cc7f93c7eb6 - 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_100.conda - hash: - md5: e80c7e8303f4aa7ebbc9b0ada5a0a853 - sha256: a13926c440aa242f962949dbb3badbf89f2cd970e7a458042aa4093a6e8ec7ca - 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.14.1,<9.0a0' - libgcc: '>=14' - libgfortran: '' - libgfortran5: '>=14.3.0' - libstdcxx: '>=14' - libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.5.1,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/hdf5-1.14.6-nompi_h6e4c0c1_103.conda - hash: - md5: c74d83614aec66227ae5199d98852aaf - sha256: 4f173af9e2299de7eee1af3d79e851bca28ee71e7426b377e841648b51d48614 - category: main - optional: false -- name: hdf5 - version: 1.14.6 - manager: conda - platform: win-64 - dependencies: - libaec: '>=1.1.4,<2.0a0' - libcurl: '>=8.14.1,<9.0a0' - libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.5.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/hdf5-1.14.6-nompi_he30205f_103.conda - hash: - md5: f1f7aaf642cefd2190582550eaca4658 - sha256: 0a90263b97e9860cec6c2540160ff1a1fff2a609b3d96452f8716ae63489dac5 - 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: dev - optional: true -- 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: dev - optional: true -- 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: dev - optional: true -- 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: dev - optional: true -- name: icu - version: '75.1' - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://repo.prefix.dev/conda-forge/linux-64/icu-75.1-he02047a_0.conda - hash: - md5: 8b189310083baabfb622af68fd9d3ae3 - sha256: 71e750d509f5fa3421087ba88ef9a7b9be11c53174af3aa4d06aff4c18b38e8e - 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: dev - optional: true -- 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: dev - optional: true -- 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: jinja2 - version: 3.1.6 - manager: conda - platform: linux-64 - dependencies: - markupsafe: '>=2.0' - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda - hash: - md5: 446bd6c8cb26050d528881df495ce646 - sha256: f1ac18b11637ddadc05642e8185a851c7fab5998c6f5470d716812fae943b2af - category: dev - optional: true -- name: jinja2 - version: 3.1.6 - manager: conda - platform: win-64 - dependencies: - markupsafe: '>=2.0' - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda - hash: - md5: 446bd6c8cb26050d528881df495ce646 - sha256: f1ac18b11637ddadc05642e8185a851c7fab5998c6f5470d716812fae943b2af - category: dev - optional: true -- 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: 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.44' - 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.44-h1aa0949_5.conda - hash: - md5: 511ed8935448c1875776b60ad3daf3a1 - sha256: dab1fbf65abb05d3f2ee49dff90d60eeb2e02039fcb561343c7cea5dea523585 - 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.9.0 - manager: conda - platform: linux-64 - dependencies: - libopenblas: '>=0.3.30,<1.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libblas-3.9.0-38_h4a7cf45_openblas.conda - hash: - md5: 3509b5e2aaa5f119013c8969fdd9a905 - sha256: b26a32302194e05fa395d5135699fd04a905c6ad71f24333f97c64874e053623 - category: main - optional: false -- name: libblas - version: 3.9.0 - manager: conda - platform: win-64 - dependencies: - mkl: '>=2025.3.0,<2026.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/libblas-3.9.0-38_hf2e6a31_mkl.conda - hash: - md5: dcee15907da751895e20b4d1ac94568d - sha256: 363920dbd6a4c09f419a4e032568d5468dc9196e8c9e401af4e8026ecf88f2b7 - 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.9.0 - manager: conda - platform: linux-64 - dependencies: - libblas: 3.9.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libcblas-3.9.0-38_h0358290_openblas.conda - hash: - md5: bcd928a9376a215cd9164a4312dd5e98 - sha256: 7fe653f45c01eb16d7b48ad934b068dad2885d6f4a7c41512b6a5f1f522bffe9 - category: main - optional: false -- name: libcblas - version: 3.9.0 - manager: conda - platform: win-64 - dependencies: - libblas: 3.9.0 - url: https://repo.prefix.dev/conda-forge/win-64/libcblas-3.9.0-38_h2a3cdd5_mkl.conda - hash: - md5: 0c1602b1d15eb3d4da15bad122740df8 - sha256: f2bec12b960877387e5e8f84af5a50e19e97f52ddb1bed6b93ea38c4fb18ab62 - category: main - optional: false -- name: libcurl - version: 8.17.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.17.0-h4e3cde8_0.conda - hash: - md5: 01e149d4a53185622dc2e788281961f2 - sha256: 100e29ca864c32af15a5cc354f502d07b2600218740fdf2439fa7d66b50b3529 - category: main - optional: false -- name: libcurl - version: 8.17.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.17.0-h43ecb02_0.conda - hash: - md5: cfade9be135edb796837e7d4c288c0fb - sha256: 651daa5d2bad505b5c72b1d5d4d8c7fc0776ab420e67af997ca9391b6854b1b3 - 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.1 - 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.1-hecca717_0.conda - hash: - md5: 4211416ecba1866fab0c6470986c22d6 - sha256: da2080da8f0288b95dd86765c801c6e166c4619b910b11f9a8446fb852438dc2 - category: main - optional: false -- name: libexpat - version: 2.7.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/libexpat-2.7.1-hac47afa_0.conda - hash: - md5: 3608ffde260281fa641e70d6e34b1b96 - sha256: 8432ca842bdf8073ccecf016ccc9140c41c7114dc4ec77ca754551c01f780845 - 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-h767d61c_7.conda - hash: - md5: c0374badb3a5d4b1372db28d19462c53 - sha256: 08f9b87578ab981c7713e4e6a7d935e40766e10691732bba376d4964562bcb45 - 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-h1383e82_7.conda - hash: - md5: 926a82fc4fa5b284b1ca1fb74f20dee2 - sha256: 174c4c75b03923ac755f227c96d956f7b4560a4b7dd83c0332709c50ff78450f - 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_7.conda - hash: - md5: 280ea6eee9e2ddefde25ff799c4f0363 - sha256: 2045066dd8e6e58aaf5ae2b722fb6dfdbb57c862b5f34ac7bfb58c40ef39b6ad - 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_7.conda - hash: - md5: 8621a450add4e231f676646880703f49 - sha256: 9ca24328e31c8ef44a77f53104773b9fe50ea8533f4c74baa8489a12de916f02 - 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-hcd61629_7.conda - hash: - md5: f116940d825ffc9104400f0d7f1a4551 - sha256: e93ceda56498d98c9f94fedec3e2d00f717cbedfc97c49be0e5a5828802f2d34 - 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-h767d61c_7.conda - hash: - md5: f7b4d76975aac7e5d9e6ad13845f92fe - sha256: e9fb1c258c8e66ee278397b5822692527c5f5786d372fe7a869b900853f3f5ca - 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-h1383e82_7.conda - hash: - md5: 7f970a7f9801622add7746aa3cbc24d5 - sha256: b8b569a9d3ec8f13531c220d3ad8e1ff35c75902c89144872e7542a77cb8c10d - category: main - optional: false -- name: libhwloc - version: 2.12.1 - 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.1-default_h64bd3f2_1002.conda - hash: - md5: b0cac6e5b06ca5eeb14b4f7cf908619f - sha256: 266dfe151066c34695dbdc824ba1246b99f016115ef79339cbcf005ac50527c1 - 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.9.0 - manager: conda - platform: linux-64 - dependencies: - libblas: 3.9.0 - url: https://repo.prefix.dev/conda-forge/linux-64/liblapack-3.9.0-38_h47877c9_openblas.conda - hash: - md5: 88f10bff57b423a3fd2d990c6055771e - sha256: 63d6073dd4f82ab46943ad99a22fc4edda83b0f8fe6170bdaba7a43352bed007 - category: main - optional: false -- name: liblapack - version: 3.9.0 - manager: conda - platform: win-64 - dependencies: - libblas: 3.9.0 - url: https://repo.prefix.dev/conda-forge/win-64/liblapack-3.9.0-38_hf9ab0e9_mkl.conda - hash: - md5: eb3167046ffba0ceb4a8824fb1b79a69 - sha256: 3b8d2d800f48fb9045a976c5a10cefe742142df88decf5a5108fe6b7c8fb5b50 - 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_3.conda - hash: - md5: ac2e4832427d6b159576e8a68305c722 - sha256: 200899e5acc01fa29550d2782258d9cf33e55ce4cbce8faed9c6fe0b774852aa - category: main - optional: false -- name: libpng - version: 1.6.50 - 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.50-h421ea60_1.conda - hash: - md5: 7af8e91b0deb5f8e25d1a595dea79614 - sha256: e75a2723000ce3a4b9fd9b9b9ce77553556c93e475a4657db6ed01abc02ea347 - category: main - optional: false -- name: libpng - version: 1.6.50 - 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.50-h7351971_1.conda - hash: - md5: 3ae6e9f5c47c495ebeed95651518be61 - sha256: e84b041f91c94841cb9b97952ab7f058d001d4a15ed4ce226ec5fdb267cc0fa5 - category: main - optional: false -- name: libsqlite - version: 3.51.0 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - icu: '>=75.1,<76.0a0' - libgcc: '>=14' - libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.51.0-hee844dc_0.conda - hash: - md5: 729a572a3ebb8c43933b30edcc628ceb - sha256: 4c992dcd0e34b68f843e75406f7f303b1b97c248d18f3c7c330bdc0bc26ae0b3 - category: main - optional: false -- name: libsqlite - version: 3.51.0 - manager: conda - platform: win-64 - dependencies: - ucrt: '>=10.0.20348.0' - vc: '>=14.3,<15' - vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.51.0-hf5d6505_0.conda - hash: - md5: d2c9300ebd2848862929b18c264d1b1e - sha256: 2373bd7450693bd0f624966e1bee2f49b0bf0ffbc114275ed0a43cf35aec5b21 - 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-h8f9b012_7.conda - hash: - md5: 5b767048b1b3ee9a954b06f4084f93dc - sha256: 1b981647d9775e1cdeb2fab0a4dd9cd75a6b0de2963f6c3953dbd712f78334b3 - 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-h4852527_7.conda - hash: - md5: f627678cf829bd70bccf141a19c3ad3e - sha256: 024fd46ac3ea8032a5ec3ea7b91c4c235701a8bf0e6520fe5e6539992a6bd05f - 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.2 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libuuid-2.41.2-he9a06e4_0.conda - hash: - md5: 80c07c68d2f6870250959dcc95b209d1 - sha256: e5ec6d2ad7eef538ddcb9ea62ad4346fde70a4736342c4ad87bd713641eb9808 - 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: - 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-h5d26750_0.conda - hash: - md5: 9176ee05643a1bfe7f2e7b4c921d2c3d - sha256: f507960adf64ee9c9c7b7833d8b11980765ebd2bf5345f73d5a3b21b259eaed5 - category: main - optional: false -- name: libxml2-16 - version: 2.15.1 - manager: conda - platform: win-64 - dependencies: - 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-h692994f_0.conda - hash: - md5: 70ca4626111579c3cd63a7108fe737f9 - sha256: 04129dc2df47a01c55e5ccf8a18caefab94caddec41b3b10fbc409e980239eb9 - 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.5 - manager: conda - platform: win-64 - dependencies: - ucrt: '>=10.0.20348.0' - vc: '>=14.3,<15' - vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-21.1.5-hfa2b4ca_0.conda - hash: - md5: 3bd3154b24a1b9489d4ab04d62ffcc86 - sha256: 8c5106720e5414f48344fd28eae4db4f1a382336d8a0f30f71d41d8ae730fbb6 - 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: dev - optional: true -- 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: dev - optional: true -- 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.4' - tbb: '>=2022.2.0' - ucrt: '>=10.0.20348.0' - vc: '>=14.3,<15' - vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/mkl-2025.3.0-hac47afa_454.conda - hash: - md5: c83ec81713512467dfe1b496a8292544 - sha256: 3c432e77720726c6bd83e9ee37ac8d0e3dd7c4cf9b4c5805e1d384025f9e9ab6 - 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: 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.5.4 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - ca-certificates: '' - libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/openssl-3.5.4-h26f9b46_0.conda - hash: - md5: 14edad12b59ccbfa3910d42c72adc2a0 - sha256: e807f3bad09bdf4075dbb4168619e14b0c0360bacb2e12ef18641a834c8c5549 - category: main - optional: false -- name: openssl - version: 3.5.4 - 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.5.4-h725018a_0.conda - hash: - md5: f28ffa510fe055ab518cbd9d6ddfea23 - sha256: 5ddc1e39e2a8b72db2431620ad1124016f3df135f87ebde450d235c212a61994 - 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: 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.0 - manager: conda - platform: linux-64 - dependencies: - python: '' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.5.0-pyhcf101f3_0.conda - hash: - md5: 5c7a868f8241e64e1cf5fdf4962f23e2 - sha256: 7efd51b48d908de2d75cbb3c4a2e80dd9454e1c5bb8191b261af3136f7fa5888 - category: dev - optional: true -- name: platformdirs - version: 4.5.0 - manager: conda - platform: win-64 - dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.5.0-pyhcf101f3_0.conda - hash: - md5: 5c7a868f8241e64e1cf5fdf4962f23e2 - sha256: 7efd51b48d908de2d75cbb3c4a2e80dd9454e1c5bb8191b261af3136f7fa5888 - category: dev - optional: true -- name: pluggy - version: 1.6.0 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda - hash: - md5: 7da7ccd349dbf6487a7778579d2bb971 - sha256: a8eb555eef5063bbb7ba06a379fa7ea714f57d9741fe0efdb9442dbbc2cccbcc - 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-pyhd8ed1ab_0.conda - hash: - md5: 7da7ccd349dbf6487a7778579d2bb971 - sha256: a8eb555eef5063bbb7ba06a379fa7ea714f57d9741fe0efdb9442dbbc2cccbcc - category: dev - 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: dev - optional: true -- 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: dev - optional: true -- name: pydantic - version: 2.12.4 - manager: conda - platform: linux-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.4-pyh3cfb1c2_0.conda - hash: - md5: bf6ce72315b6759453d8c90a894e9e4c - sha256: c51297f0f6ef13776cc5b61c37d00c0d45faaed34f81d196e64bebc989f3e497 - category: main - optional: false -- name: pydantic - version: 2.12.4 - 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.4-pyh3cfb1c2_0.conda - hash: - md5: bf6ce72315b6759453d8c90a894e9e4c - sha256: c51297f0f6ef13776cc5b61c37d00c0d45faaed34f81d196e64bebc989f3e497 - 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_0.conda - hash: - md5: 9b2338c7021dca0c0f3149e6b1e11bdb - sha256: 37663ebef306620b84e9c3f26bcb122f7f70904374c1fa305221cc4d87aae403 - 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_0.conda - hash: - md5: 082a265124fef1094d6d7941441cdc15 - sha256: f6eb0c918e7104b7f27c6f9589c7e2b0c1b73544f8f59c1cbba9ab73ec95df6e - 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.2 - manager: conda - platform: linux-64 - dependencies: - astroid: '>=4.0.1,<=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.2-pyhcf101f3_0.conda - hash: - md5: 0259facf4dbf67ad35ec517b6ffd6982 - sha256: 594bdf44a55c3bcf79ec6eb55d86571cbe3bee9f5216ede0721708c184da4ed8 - category: dev - optional: true -- name: pylint - version: 4.0.2 - manager: conda - platform: win-64 - dependencies: - astroid: '>=4.0.1,<=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.2-pyhcf101f3_0.conda - hash: - md5: 0259facf4dbf67ad35ec517b6ffd6982 - sha256: 594bdf44a55c3bcf79ec6eb55d86571cbe3bee9f5216ede0721708c184da4ed8 - category: dev - optional: true -- 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: dev - optional: true -- 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: dev - optional: true -- name: pytest - version: 9.0.0 - 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.0-pyhcf101f3_0.conda - hash: - md5: 499e8e2df95ad3d263bee8d41cc3d475 - sha256: afd413cd919bd3cca1d45062b9822be8935e1f61ce6d6b2642364e8c19e2873d - category: dev - optional: true -- name: pytest - version: 9.0.0 - 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.0-pyhcf101f3_0.conda - hash: - md5: 499e8e2df95ad3d263bee8d41cc3d475 - sha256: afd413cd919bd3cca1d45062b9822be8935e1f61ce6d6b2642364e8c19e2873d - 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_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: 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: dev - optional: true -- 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: dev - optional: true -- 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.2' - manager: conda - platform: linux-64 - dependencies: - libgcc: '>=13' - ncurses: '>=6.5,<7.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda - hash: - md5: 283b96675859b20a825f8fa30f311446 - sha256: 2d6d0c026902561ed77cd646b5021aef2d4db22e57a5b0178dfc669231e06d2c - 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: '>=3.9' - urllib3: '>=1.21.1,<3' - url: https://repo.prefix.dev/conda-forge/noarch/requests-2.32.5-pyhd8ed1ab_0.conda - hash: - md5: db0c6b99149880c8ba515cf4abe93ee4 - sha256: 8dc54e94721e9ab545d7234aa5192b74102263d3e704e6d0c8aa7008f2da2a7b - category: dev - optional: true -- 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.9' - urllib3: '>=1.21.1,<3' - url: https://repo.prefix.dev/conda-forge/noarch/requests-2.32.5-pyhd8ed1ab_0.conda - hash: - md5: db0c6b99149880c8ba515cf4abe93ee4 - sha256: 8dc54e94721e9ab545d7234aa5192b74102263d3e704e6d0c8aa7008f2da2a7b - category: dev - optional: true -- 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: 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_0.conda - hash: - md5: 3d8da0248bdae970b4ade636a104b7f5 - sha256: 8b8acbde6814d1643da509e11afeb6bb30eb1e3004cf04a7c9ae43e9b097f063 - 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_0.conda - hash: - md5: 194a0c548899fa2a10684c34e56a3564 - sha256: b38ed597bf71f73275a192b8cb22888997760bac826321f5838951d5d31acb23 - 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.1,<2.12.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/tbb-2022.3.0-hd094cb3_1.conda - hash: - md5: 17c38aaf14c640b85c4617ccb59c1146 - sha256: c31cac57913a699745d124cdc016a63e31c5749f16f60b3202414d071fc50573 - 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_hd72426e_102.conda - hash: - md5: a0116df4f4ed05c303811a837d5b39d8 - sha256: a84ff687119e6d8752346d1d408d5cf360dee0badd487a472aa8ddedfdc219e1 - 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_2.conda - hash: - md5: ebd0e761de9aa879a51d22cc721bd095 - sha256: e3614b0eb4abcc70d98eae159db59d9b4059ed743ef402081151a948dce95896 - 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: 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_0.conda - hash: - md5: 399701494e731ce73fdd86c185a3d1b4 - sha256: 8aaf69b828c2b94d0784f18f70f11aa032950d304e57e88467120b45c18c24fd - 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_0.conda - hash: - md5: 399701494e731ce73fdd86c185a3d1b4 - sha256: 8aaf69b828c2b94d0784f18f70f11aa032950d304e57e88467120b45c18c24fd - 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: 2025b - manager: conda - platform: linux-64 - dependencies: {} - url: https://repo.prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda - hash: - md5: 4222072737ccff51314b5ece9c7d6f5a - sha256: 5aaa366385d716557e365f0a4e9c3fca43ba196872abbbe3d56bb610d131e192 - category: main - optional: false -- name: tzdata - version: 2025b - manager: conda - platform: win-64 - dependencies: {} - url: https://repo.prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda - hash: - md5: 4222072737ccff51314b5ece9c7d6f5a - sha256: 5aaa366385d716557e365f0a4e9c3fca43ba196872abbbe3d56bb610d131e192 - 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: 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: dev - optional: true -- 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: dev - optional: true -- name: vc - version: '14.3' - manager: conda - platform: win-64 - dependencies: - vc14_runtime: '>=14.42.34433' - url: https://repo.prefix.dev/conda-forge/win-64/vc-14.3-h2b53caa_32.conda - hash: - md5: ef02bbe151253a72b8eda264a935db66 - sha256: 82250af59af9ff3c6a635dd4c4764c631d854feb334d6747d356d949af44d7cf - 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_32.conda - hash: - md5: 378d5dcec45eaea8d303da6f00447ac0 - sha256: e3a3656b70d1202e0d042811ceb743bd0d9f7e00e2acdf824d231b044ef6c0fd - 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_32.conda - hash: - md5: 58f67b437acbf2764317ba273d731f1d - sha256: f3790c88fbbdc55874f41de81a4237b1b91eab75e05d0e58661518ff04d2a8a1 - 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_32.conda - hash: - md5: dfc1e5bbf1ecb0024a78e4e8bd45239d - sha256: 65cea43f4de99bc81d589e746c538908b2e95aead9042fecfbc56a4d14684a87 - 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: dev - optional: true -- name: xorg-libxau - version: 1.0.12 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxau-1.0.12-hb9d3cd8_0.conda - hash: - md5: f6ebe2cb3f82ba6c057dde5d9debe4f7 - sha256: ed10c9283974d311855ae08a16dfd7e56241fac632aec3b92e3cfe73cff31038 - category: main - optional: false -- name: xorg-libxau - version: 1.0.12 - 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/xorg-libxau-1.0.12-h0e40799_0.conda - hash: - md5: 2ffbfae4548098297c033228256eb96e - sha256: 047836241b2712aab1e29474a6f728647bff3ab57de2806b0bb0a6cf9a2d2634 - category: main - optional: false -- name: xorg-libxdmcp - version: 1.1.5 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb9d3cd8_0.conda - hash: - md5: 8035c64cb77ed555e3f150b7b3972480 - sha256: 6b250f3e59db07c2514057944a3ea2044d6a8cdde8a47b6497c254520fade1ee - category: main - optional: false -- name: xorg-libxdmcp - version: 1.1.5 - 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/xorg-libxdmcp-1.1.5-h0e40799_0.conda - hash: - md5: 8393c0f7e7870b4eb45553326f81f0ff - sha256: 9075f98dcaa8e9957e4a3d9d30db05c7578a536950a31c200854c5c34e1edb2c - 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: dev - optional: true -- 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: dev - optional: true -- 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_3.conda - hash: - md5: 03b04e4effefa41aee638f8ba30a6e78 - sha256: d9051184638fe0c24985b31b29b434ad52c77923e4802c7580da3a60ad9f167b - 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_3.conda - hash: - md5: 5271240cefc21317492a2ea772fa8f69 - sha256: 9acca4ee1d923a575e6c3a3933a4df1b164b5b57f5eb092fe4d57d3149c8e261 - category: main - optional: false -- name: zipp - version: 3.23.0 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/zipp-3.23.0-pyhd8ed1ab_0.conda - hash: - md5: df5e78d904988eb55042c0c97446079f - sha256: 7560d21e1b021fd40b65bfb72f67945a3fcb83d78ad7ccf37b8b3165ec3b68ad - category: main - optional: false -- name: zipp - version: 3.23.0 - manager: conda - platform: win-64 - dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/zipp-3.23.0-pyhd8ed1ab_0.conda - hash: - md5: df5e78d904988eb55042c0c97446079f - sha256: 7560d21e1b021fd40b65bfb72f67945a3fcb83d78ad7ccf37b8b3165ec3b68ad - 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_0.conda - hash: - md5: 1920c3502e7f6688d650ab81cd3775fd - sha256: 3a8e7798deafd0722b6b5da50c36b7f361a80b30165d600f7760d569a162ff95 - 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_0.conda - hash: - md5: dec092b1a069abafc38655ded65a7b29 - sha256: 67a3113acf3506f1cf1c72e0748742217a20edc6c1c1c19631f901c5e028d2bc - 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: dev - optional: true -- 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: dev - optional: true -- name: zstd - version: 1.5.7 - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - libstdcxx: '>=13' - libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb8e6e7a_2.conda - hash: - md5: 6432cb5d4ac0046c3ac0a8a0f95842f9 - sha256: a4166e3d8ff4e35932510aaff7aa90772f84b4d07e9f6f83c614cba7ceefe0eb - 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.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/zstd-1.5.7-hbeecb71_2.conda - hash: - md5: 21f56217d6125fb30c3c3f10c786d751 - sha256: bc64864377d809b904e877a98d0584f43836c9f2ef27d3d2a1421fa6eae7ca04 - category: main - optional: false -- name: geoapps-utils - version: 0.7.0a1.dev3+80c4658 - manager: pip - platform: linux-64 - dependencies: - geoh5py: 0.12.0b4.dev18+8f630a84 - numpy: '>=1.26.0,<1.27.0' - pydantic: '>=2.5.2,<3.0.0' - scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@80c46588d47b70a1dd26aef06ccfa24bc1585502 - hash: - sha256: 80c46588d47b70a1dd26aef06ccfa24bc1585502 - source: - type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@80c46588d47b70a1dd26aef06ccfa24bc1585502 - category: main - optional: false -- name: geoapps-utils - version: 0.7.0a1.dev3+80c4658 - manager: pip - platform: win-64 - dependencies: - geoh5py: 0.12.0b4.dev18+8f630a84 - numpy: '>=1.26.0,<1.27.0' - pydantic: '>=2.5.2,<3.0.0' - scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@80c46588d47b70a1dd26aef06ccfa24bc1585502 - hash: - sha256: 80c46588d47b70a1dd26aef06ccfa24bc1585502 - source: - type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@80c46588d47b70a1dd26aef06ccfa24bc1585502 - category: main - optional: false -- name: geoh5py - version: 0.12.0b4.dev18+8f630a84 - 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.5.2,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@8f630a84b2b9f2b7632f895e1521d8d61c04e80e - hash: - sha256: 8f630a84b2b9f2b7632f895e1521d8d61c04e80e - source: - type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@8f630a84b2b9f2b7632f895e1521d8d61c04e80e - category: main - optional: false -- name: geoh5py - version: 0.12.0b4.dev18+8f630a84 - 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.5.2,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@8f630a84b2b9f2b7632f895e1521d8d61c04e80e - hash: - sha256: 8f630a84b2b9f2b7632f895e1521d8d61c04e80e - source: - type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@8f630a84b2b9f2b7632f895e1521d8d61c04e80e - category: main - optional: false diff --git a/py-3.12.conda-lock.yml b/py-3.12.conda-lock.yml index f3be0b2..7c066d4 100644 --- a/py-3.12.conda-lock.yml +++ b/py-3.12.conda-lock.yml @@ -15,8 +15,8 @@ version: 1 metadata: content_hash: - win-64: 5cda186c5fef46890a9cc5fc61c2819619ca268c4490d55a93647e5735976bf3 - linux-64: 741710c573b2bfce67566e62f6f04a95dfa33ff7691daf4da1d43bbcedcc9b24 + win-64: 3438a9367ed8f2bfcf4f8f529cfaba3ffc11a0f894d1fc98c2b16807b6ad3fee + linux-64: bd0c8f0370f448082c7a79302e605dc89bb86cd6635f23d28a3648cdc7c29662 channels: - url: conda-forge used_env_vars: [] @@ -30,25 +30,14 @@ metadata: - environments/env-python-3.12.yml package: - name: _libavif_api - version: 1.3.0 + version: 1.4.2 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.2-h57928b3_1.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: 3f37b7054196dc41e6393683087ddfee + sha256: bdf75c8a8c6bbc803c708d5a4e503acebfc24c2e6cefd1ced536b7d26b9281af category: main optional: false - name: _openmp_mutex @@ -56,12 +45,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 @@ -70,11 +59,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 @@ -128,82 +117,402 @@ package: category: main optional: false - name: aom - version: 3.9.1 + version: 3.14.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 + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=14' + libstdcxx: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/aom-3.14.1-pl5321h039972f_1.conda hash: - md5: 346722a0be40f6edc53f12640d301338 - sha256: b08ef033817b5f9f76ce62dfcac7694e7b6b4006420372de22494503decac855 + md5: 5a78a69eb3b50f24b379e9d2a93163ae + sha256: b1d972a9b949a88babee681437535550b3ca5dbca6a23a40dffeb7900fec19fd category: main optional: false - name: aom - version: 3.9.1 + version: 3.14.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 + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/aom-3.14.1-pl5321h06fc181_1.conda hash: - md5: 3d7c14285d3eb3239a76ff79063f27a5 - sha256: 0524d0c0b61dacd0c22ac7a8067f977b1d52380210933b04141f5099c5b6fec7 + md5: 7a8ace8100a48355a34d87386012c57b + sha256: 3033fa8953f7f0c1bb5b89b5af77253badc14a89ba94d743dde3c9159e10fd5e category: main optional: false - name: astroid - version: 4.0.2 + 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.2-py312h7900ff3_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/astroid-4.0.4-py312h7900ff3_0.conda hash: - md5: 01ddf9d3e4a39c3f032ba14ad91bdc82 - sha256: 314383c405003585d27883e7e9f3cc3973a1b29d625ba7feb6cf1b60ed94e704 + md5: 78bdb6d3da524bdea10ef44e5ec7658d + sha256: 50d706c0700ee47617de6a850cab0bb4a3419c2ed86804c21f449735f09e1c48 category: dev optional: true - name: astroid - version: 4.0.2 + 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.2-py312h2e8e312_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/astroid-4.0.4-py312h2e8e312_0.conda hash: - md5: c5301ff9ec4c62757f2655e23eb60329 - sha256: 8722448dc0caeb86407a9d10ef0d9c735a278ffd80b1425a2734df9c974651e9 + md5: 0cec3709c887fd21483f9fe36d039bac + sha256: 24916ad967b6b0d25c6ed2cff1e61b17f4f72d0c73cbdc5f2afdd55dcc0a36b5 category: dev optional: true +- name: aws-c-auth + version: 0.10.3 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + aws-c-cal: '>=0.9.14,<0.9.15.0a0' + aws-c-common: '>=0.14.0,<0.14.1.0a0' + aws-c-http: '>=0.11.0,<0.11.1.0a0' + aws-c-io: '>=0.26.3,<0.26.4.0a0' + aws-c-sdkutils: '>=0.2.4,<0.2.5.0a0' + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-auth-0.10.3-hea842a7_2.conda + hash: + md5: c463d2dbfb12a208c943165d2a568db4 + sha256: 5b9c20a38fe084b4ffd1f2c64b3797ec6ef9a99e83cc0c1f84e016c9801e3a5c + category: main + optional: false +- name: aws-c-auth + version: 0.10.3 + manager: conda + platform: win-64 + dependencies: + aws-c-cal: '>=0.9.14,<0.9.15.0a0' + aws-c-common: '>=0.14.0,<0.14.1.0a0' + aws-c-http: '>=0.11.0,<0.11.1.0a0' + aws-c-io: '>=0.26.3,<0.26.4.0a0' + aws-c-sdkutils: '>=0.2.4,<0.2.5.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-auth-0.10.3-h75b6777_2.conda + hash: + md5: f19119948955d3f12c96e1922f92159b + sha256: 24a2fed6fd65e5af176025bbe1af91baf43d0beb037ee8513ae47f3221a8f89e + category: main + optional: false +- name: aws-c-cal + version: 0.9.14 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + aws-c-common: '>=0.14.0,<0.14.1.0a0' + libgcc: '>=14' + openssl: '>=3.5.6,<4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-cal-0.9.14-h78948cc_2.conda + hash: + md5: fe81235aae00f32df8584267b4f2daf8 + sha256: 06a0e2af439b21c94adff8fac5dd66dbda5f182fc80ac635c4903959ea306cbb + category: main + optional: false +- name: aws-c-cal + version: 0.9.14 + manager: conda + platform: win-64 + dependencies: + aws-c-common: '>=0.14.0,<0.14.1.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-cal-0.9.14-h270aff2_2.conda + hash: + md5: 190c386d7a6c6c53ea819d3e5078c502 + sha256: 5a5135cc6058ee3ef137eca20ee034e632f5bbc324ceedd931ddffe20c1dac71 + category: main + optional: false +- name: aws-c-common + version: 0.14.0 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-common-0.14.0-hb03c661_0.conda + hash: + md5: f1c005b2e3b618706112ddd7f3af4521 + sha256: 6d2b33965bf6daeffd3ad336f41410053ff06ed6f2b2ce62c1ec27c0a39b4e7e + category: main + optional: false +- name: aws-c-common + version: 0.14.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/aws-c-common-0.14.0-hfd05255_0.conda + hash: + md5: 535d224f288e8b2366b71f390f5d52fd + sha256: 72d414cfaf47911467d5c5b4bb196f0ab1c3106053dda04d03ffbdef94ce7714 + category: main + optional: false +- name: aws-c-compression + version: 0.3.2 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + aws-c-common: '>=0.14.0,<0.14.1.0a0' + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-compression-0.3.2-haa0cbde_2.conda + hash: + md5: 595911421e25551e36fde7027bf33f38 + sha256: 0e4952f9be8de7f281ca7d734a3a8f05ad0db856c6ef1e0897798c4afbcd9a54 + category: main + optional: false +- name: aws-c-compression + version: 0.3.2 + manager: conda + platform: win-64 + dependencies: + aws-c-common: '>=0.14.0,<0.14.1.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-compression-0.3.2-h1f21522_2.conda + hash: + md5: bf8202d63ba3ccf63f8f0d560b484611 + sha256: d46d9152e81d566666520fe751d7d063bc14a6d57c267f5aca0c882d2425f106 + category: main + optional: false +- name: aws-c-http + version: 0.11.0 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + aws-c-cal: '>=0.9.14,<0.9.15.0a0' + aws-c-common: '>=0.14.0,<0.14.1.0a0' + aws-c-compression: '>=0.3.2,<0.3.3.0a0' + aws-c-io: '>=0.26.3,<0.26.4.0a0' + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-http-0.11.0-h6488f85_2.conda + hash: + md5: da0be1e8cb4a43c876f26d9d812dea06 + sha256: d2b844db1a4dfbc20b5129b7df4a656c1459c5fb16745101bbd802813ba8d411 + category: main + optional: false +- name: aws-c-http + version: 0.11.0 + manager: conda + platform: win-64 + dependencies: + aws-c-cal: '>=0.9.14,<0.9.15.0a0' + aws-c-common: '>=0.14.0,<0.14.1.0a0' + aws-c-compression: '>=0.3.2,<0.3.3.0a0' + aws-c-io: '>=0.26.3,<0.26.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/aws-c-http-0.11.0-h4721ae0_2.conda + hash: + md5: 8292db4a8957ea01e74ad9c2bf75b45f + sha256: 121556c3169b5b9a3e458ce8d7f438f7dfaf583820727ec53c2d0c216bbad73a + category: main + optional: false +- name: aws-c-io + version: 0.26.3 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + aws-c-cal: '>=0.9.14,<0.9.15.0a0' + aws-c-common: '>=0.14.0,<0.14.1.0a0' + libgcc: '>=14' + s2n: '>=1.7.3,<1.7.4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-io-0.26.3-h5b668fc_4.conda + hash: + md5: 555400dce62f2d989ff77761c010d166 + sha256: c27b972325342f062da00b7aa2d5abf6f3ce55668a05703a175be958745cc226 + category: main + optional: false +- name: aws-c-io + version: 0.26.3 + manager: conda + platform: win-64 + dependencies: + aws-c-cal: '>=0.9.14,<0.9.15.0a0' + aws-c-common: '>=0.14.0,<0.14.1.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-io-0.26.3-h1a62f66_4.conda + hash: + md5: 58910370661966dcf2f7d4367ef494ec + sha256: be9dbd4f1f5decd56c48613531b130fa7f8a0c43dca7dcbbd14253b897f66517 + category: main + optional: false +- name: aws-c-s3 + version: 0.12.5 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + aws-c-auth: '>=0.10.3,<0.10.4.0a0' + aws-c-cal: '>=0.9.14,<0.9.15.0a0' + aws-c-common: '>=0.14.0,<0.14.1.0a0' + aws-c-http: '>=0.11.0,<0.11.1.0a0' + aws-c-io: '>=0.26.3,<0.26.4.0a0' + aws-checksums: '>=0.2.10,<0.2.11.0a0' + libgcc: '>=14' + openssl: '>=3.5.6,<4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-s3-0.12.5-hb916526_1.conda + hash: + md5: 70bc8e5e8cefd19407423733e7ebf540 + sha256: 8f193173f1dccb25ff86a95543db27f0c762cccfe93157b02cf20bd5b4c11a92 + category: main + optional: false +- name: aws-c-s3 + version: 0.12.5 + manager: conda + platform: win-64 + dependencies: + aws-c-auth: '>=0.10.3,<0.10.4.0a0' + aws-c-cal: '>=0.9.14,<0.9.15.0a0' + aws-c-common: '>=0.14.0,<0.14.1.0a0' + aws-c-http: '>=0.11.0,<0.11.1.0a0' + aws-c-io: '>=0.26.3,<0.26.4.0a0' + aws-checksums: '>=0.2.10,<0.2.11.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-s3-0.12.5-h425879c_1.conda + hash: + md5: 0329818a49b00c486916f6d7d5b65a71 + sha256: bde30210fe7d355227bf303a582ff11e340ac685156139cd7a9ef08dfe6c037f + category: main + optional: false +- name: aws-c-sdkutils + version: 0.2.4 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + aws-c-common: '>=0.14.0,<0.14.1.0a0' + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-sdkutils-0.2.4-haa0cbde_6.conda + hash: + md5: 4b66ac29a7e917a629b790c3d239d110 + sha256: 123c4325b16f1f6db95846d51e5e4201399ee29c0325f8b5a8db2e7d732b9151 + category: main + optional: false +- name: aws-c-sdkutils + version: 0.2.4 + manager: conda + platform: win-64 + dependencies: + aws-c-common: '>=0.14.0,<0.14.1.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-sdkutils-0.2.4-h1f21522_6.conda + hash: + md5: c1380960068cc10d06ddcab8cb97f439 + sha256: bd47b93b91ecb7d7ff82be44bb70e109f7cbb7c512c4579772652c46cbdf6597 + category: main + optional: false +- name: aws-checksums + version: 0.2.10 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + aws-c-common: '>=0.14.0,<0.14.1.0a0' + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/aws-checksums-0.2.10-haa0cbde_2.conda + hash: + md5: 5c05a63452bf73c50aa272a6f961c4fc + sha256: ad49333d96a5f9bcce02752a6515cbb077d7513e358a8fb1a832f4e772d54bac + category: main + optional: false +- name: aws-checksums + version: 0.2.10 + manager: conda + platform: win-64 + dependencies: + aws-c-common: '>=0.14.0,<0.14.1.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/aws-checksums-0.2.10-h1f21522_2.conda + hash: + md5: f4f71178b5be79f887b2d575400c4133 + sha256: 11fa04b860b263503478dc9ef5d9516fc12078b60ec845e58f2e8fb7076fe264 + category: main + optional: false - 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 + version: 1.6.0 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=14' + python: '' + python_abi: 3.12.* + zstd: '>=1.5.7,<1.6.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/backports.zstd-1.6.0-py312h90b7ffd_0.conda + hash: + md5: 55811da425538da800b89c0c588652fa + sha256: 95b3d6d44c17c4061db703289f39915646e455f75f0c8c9d949bf081d2e61579 + category: dev + optional: true +- name: backports.zstd + version: 1.6.0 + manager: conda + platform: win-64 + dependencies: + python: '' + python_abi: 3.12.* + 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.6.0-py312h06d0912_0.conda + hash: + md5: 0d8bcdc0af72309fb998811f5f4db2c5 + sha256: 9926f274d8b642f5421e4536952cb158912517f40acf1df3a8fbd891c5f600ed category: dev optional: true - name: blosc @@ -252,10 +561,10 @@ package: libstdcxx: '>=14' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/brotli-python-1.2.0-py312h67db365_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/brotli-python-1.2.0-py312hdb49522_1.conda hash: - md5: 7c9245551ebbe6b6068aeda04060afaa - sha256: 1acccd5464d81184ead80c017b4a7320c59c2774eb914f14d60ca8b4c55754e9 + md5: 64088dffd7413a2dd557ce837b4cbbdb + sha256: 49df13a1bb5e388ca0e4e87022260f9501ed4192656d23dc9d9a1b4bf3787918 category: dev optional: true - name: brotli-python @@ -268,10 +577,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/brotli-python-1.2.0-py312h9d5906e_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/brotli-python-1.2.0-py312hc6d9e41_1.conda hash: - md5: 33b94eb79455950e69771bdd22db2988 - sha256: 48ffd069cab4b3b294daeb90e2536dafed5fe0a8476bc9fdcaa9924b691568f8 + md5: e8e7a6346a9e50d19b4daf41f367366f + sha256: 2bb6f384a51929ef2d5d6039fcf6c294874f20aaab2f63ca768cbe462ed4b379 category: dev optional: true - name: brunsli @@ -298,10 +607,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 @@ -312,27 +621,27 @@ 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 - version: 1.34.5 + version: 1.34.6 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/c-ares-1.34.5-hb9d3cd8_0.conda + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/c-ares-1.34.6-hb03c661_0.conda hash: - md5: f7f0d6cc2dc986d42ac2689ec88192be - sha256: f8003bef369f57396593ccd03d08a8e21966157269426f71e943f96e4b579aeb + md5: 920bb03579f15389b9e512095ad995b7 + sha256: cc9accf72fa028d31c2a038460787751127317dcfa991f8d1f1babf216bb454e category: main optional: false - name: c-blosc2 - version: 2.22.0 + version: 3.1.3 manager: conda platform: linux-64 dependencies: @@ -340,16 +649,16 @@ package: libgcc: '>=14' libstdcxx: '>=14' lz4-c: '>=1.10.0,<1.11.0a0' - zlib-ng: '>=2.2.5,<2.3.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-h4cfbee9_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/c-blosc2-3.1.3-hc31b594_0.conda hash: - md5: bede98a38485d588b3ec7e4ba2e46532 - sha256: c558bce3c6d1707528a9b54b1af321e3d6968e4db3e5addc9dcb906422026490 + md5: 2f0eb57a686a4e27719ce0b0076784a1 + sha256: 4029fb93e133c0de986464c2f1b02630f141f976cb25b5b929994b34a2a51bf5 category: main optional: false - name: c-blosc2 - version: 2.22.0 + version: 3.1.3 manager: conda platform: win-64 dependencies: @@ -357,36 +666,36 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - zlib-ng: '>=2.2.5,<2.3.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-h3cf07e4_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/c-blosc2-3.1.3-h2af8807_0.conda hash: - md5: ab0d849766a52945ee1d872abf61fb0c - sha256: 522b3bbfcd30d4559aec29228448aa49ca02d1e9c79f4b6da446462042707680 + md5: ed77093408fa5590036ae62cf1c97cd5 + sha256: b90794f6bb4f135d7fbf867b0a883dbaf16e79853b81511d0e5fbcf4e36b1532 category: main optional: false - name: ca-certificates - version: 2025.10.5 + version: 2026.5.20 manager: conda platform: linux-64 dependencies: __unix: '' - url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.10.5-hbd8a1cb_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2026.5.20-hbd8a1cb_0.conda hash: - md5: f9e5fbc24009179e8b0409624691758a - sha256: 3b5ad78b8bb61b6cdc0978a6a99f8dfb2cc789a451378d054698441005ecbdb6 + md5: 489b8e97e666c93f68fdb35c3c9b957f + sha256: 9812a303a1395e1dafbd92e5bc8a1ff6013bcbba0a09c7f03a8d23e43560aa9b category: main optional: false - name: ca-certificates - version: 2025.10.5 + version: 2026.5.20 manager: conda platform: win-64 dependencies: __win: '' - url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.10.5-h4c7d964_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2026.5.20-h4c7d964_0.conda hash: - md5: e54200a1cd1fe33d61c9df8d3b00b743 - sha256: bfb7f9f242f441fdcd80f1199edd2ecf09acea0f2bcef6f07d7cbb1a8131a345 + md5: c9b86eece2f944541b86441c94117ab3 + sha256: 86981d764e4ea1883409d30447ff9da46127426d31a63df08315aaded768e652 category: main optional: false - name: cached-property @@ -438,112 +747,79 @@ package: category: main optional: false - name: certifi - version: 2025.10.5 + version: 2026.5.20 manager: conda platform: linux-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.10.5-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/certifi-2026.5.20-pyhd8ed1ab_0.conda hash: - md5: 257ae203f1d204107ba389607d375ded - sha256: 955bac31be82592093f6bc006e09822cd13daf52b28643c9a6abd38cd5f4a306 + md5: 9fefff2f745ea1cc2ef15211a20c054a + sha256: 645655a3510e38e625da136595f3f16f2130c3263630cc3bc8f60f619ddbe490 category: dev optional: true - name: certifi - version: 2025.10.5 + version: 2026.5.20 manager: conda platform: win-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.10.5-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/certifi-2026.5.20-pyhd8ed1ab_0.conda hash: - md5: 257ae203f1d204107ba389607d375ded - sha256: 955bac31be82592093f6bc006e09822cd13daf52b28643c9a6abd38cd5f4a306 + md5: 9fefff2f745ea1cc2ef15211a20c054a + sha256: 645655a3510e38e625da136595f3f16f2130c3263630cc3bc8f60f619ddbe490 category: dev optional: true -- name: cffi - version: 2.0.0 +- name: charls + version: 2.4.4 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libffi: '>=3.5.2,<3.6.0a0' libgcc: '>=14' - pycparser: '' - python: '>=3.12,<3.13.0a0' - python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/cffi-2.0.0-py312h460c074_1.conda - hash: - md5: 648ee28dcd4e07a1940a17da62eccd40 - sha256: 7dafe8173d5f94e46cf9cd597cc8ff476a8357fbbd4433a8b5697b2864845d9c - category: dev - optional: true -- name: cffi - version: 2.0.0 - manager: conda - platform: win-64 - dependencies: - pycparser: '' - 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/cffi-2.0.0-py312he06e257_1.conda - hash: - md5: 46f7dccfee37a52a97c0ed6f33fcf0a3 - sha256: 3e3bdcb85a2e79fe47d9c8ce64903c76f663b39cb63b8e761f6f884e76127f82 - category: dev - optional: true -- 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 + libstdcxx: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/charls-2.4.4-hecca717_0.conda hash: - md5: 4336bd67920dd504cd8c6761d6a99645 - sha256: 18f1c43f91ccf28297f92b094c2c8dbe9c6e8241c0d3cbd6cda014a990660fdd + md5: dc7072d888ba25c06d706d9dd4bd48ec + sha256: 285bb88f6229a1eb4772ab805fbc61ef786e27b5e9ca0b6434b13d2a728790bb category: main optional: false - name: charls - version: 2.4.2 + version: 2.4.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/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.4-h7cafa3a_0.conda hash: - md5: 0935766a50dfe44315b62ec0046a8779 - sha256: e6a3eab3fe65389900f39a78dc3bd86bbc030e2a746addb8b69a997495ca867c + md5: 45c00fb3c1b591383953c0385f1afafd + sha256: d82c9d26232fa87829baa82e33cad8a1cb3d2d8835edc9917956b70d18f5e07d category: main optional: false - name: charset-normalizer - version: 3.4.4 + version: 3.4.7 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.7-pyhd8ed1ab_0.conda hash: - md5: a22d1fd9bf98827e280a02875d9a007a - sha256: b32f8362e885f1b8417bac2b3da4db7323faa12d5db62b7fd6691c02d60d6f59 + md5: a9167b9571f3baa9d448faa2139d1089 + sha256: 3f9483d62ce24ecd063f8a5a714448445dc8d9e201147c46699fc0033e824457 category: dev optional: true - name: charset-normalizer - version: 3.4.4 + version: 3.4.7 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.7-pyhd8ed1ab_0.conda hash: - md5: a22d1fd9bf98827e280a02875d9a007a - sha256: b32f8362e885f1b8417bac2b3da4db7323faa12d5db62b7fd6691c02d60d6f59 + md5: a9167b9571f3baa9d448faa2139d1089 + sha256: 3f9483d62ce24ecd063f8a5a714448445dc8d9e201147c46699fc0033e824457 category: dev optional: true - name: colorama @@ -556,8 +832,8 @@ package: hash: md5: 962b9857ee8e7018c22f2776ffa0b2d7 sha256: ab29d57dc70786c1269633ba3dff20288b81664d3ff8d21af995742e2bb03287 - category: main - optional: false + category: dev + optional: true - name: colorama version: 0.4.6 manager: conda @@ -571,7 +847,7 @@ package: category: main optional: false - name: coverage - version: 7.11.3 + version: 7.14.1 manager: conda platform: linux-64 dependencies: @@ -580,14 +856,14 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* tomli: '' - url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.11.3-py312h8a5da7c_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.14.1-py312h8a5da7c_0.conda hash: - md5: eb18b3b7b8d07a1cc10d99117b5aadc8 - sha256: 529589980631c1c6144233fdd57370ebafcb3c0cf017b1ea6474911908f9ca90 + md5: 6668e2af2de730400bdce9cf2ea132f9 + sha256: 80b990c6870c721bcde5e14e71d3560bac3dad93b54d027f723dca2bb7ccda03 category: dev optional: true - name: coverage - version: 7.11.3 + version: 7.14.1 manager: conda platform: win-64 dependencies: @@ -597,10 +873,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.11.3-py312h05f76fc_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.14.1-py312h05f76fc_0.conda hash: - md5: c05a53e641516622b2059be0157d94c7 - sha256: 7d910b7f79f7c6e2dd43078a0d0ea0db8d6a173da0e1ba59e1945f7850261e2a + md5: 4b355df4eedcf321296c32d8ca3fcfb7 + sha256: a37669c35673713cd5b1006958754d2f5ba8f0c10a85796579eea2dc9260f94c category: dev optional: true - name: dav1d @@ -630,27 +906,27 @@ package: category: main optional: false - name: dill - version: 0.4.0 + version: 0.4.1 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.1-pyhcf101f3_0.conda hash: - md5: 885745570573eb6a08e021841928297a - sha256: 43dca52c96fde0c4845aaff02bcc92f25e1c2e5266ddefc2eac1a3de0960a3b1 + 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.9' - url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.1-pyhcf101f3_0.conda hash: - md5: 885745570573eb6a08e021841928297a - sha256: 43dca52c96fde0c4845aaff02bcc92f25e1c2e5266ddefc2eac1a3de0960a3b1 + md5: 080a808fce955026bf82107d955d32da + sha256: 1ef84c0cc4efd0c2d58c3cb365945edbd9ee42a1c54514d1ccba4b641005f757 category: dev optional: true - name: docutils @@ -678,57 +954,31 @@ package: category: dev optional: true - name: exceptiongroup - version: 1.3.0 + version: 1.3.1 manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '>=3.10' typing_extensions: '>=4.6.0' - url: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.3.1-pyhd8ed1ab_0.conda hash: - md5: 72e42d28960d875c7654614f8b50939a - sha256: ce61f4f99401a4bd455b89909153b40b9c823276aefcbb06f2044618696009ca + md5: 8e662bd460bda79b1ea39194e3c4c9ab + sha256: ee6cf346d017d954255bbcbdb424cddea4d14e4ed7e9813e429db1d795d01144 category: dev optional: true - name: exceptiongroup - version: 1.3.0 + version: 1.3.1 manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '>=3.10' typing_extensions: '>=4.6.0' - url: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.3.1-pyhd8ed1ab_0.conda hash: - md5: 72e42d28960d875c7654614f8b50939a - sha256: ce61f4f99401a4bd455b89909153b40b9c823276aefcbb06f2044618696009ca + md5: 8e662bd460bda79b1ea39194e3c4c9ab + sha256: ee6cf346d017d954255bbcbdb424cddea4d14e4ed7e9813e429db1d795d01144 category: dev optional: true -- 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: giflib version: 5.2.2 manager: conda @@ -762,7 +1012,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 @@ -776,7 +1026,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 @@ -784,78 +1034,90 @@ package: category: dev optional: true - name: h5py - version: 3.15.1 + version: 3.16.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' cached-property: '' - hdf5: '>=1.14.6,<1.14.7.0a0' + hdf5: '>=2.1.0,<3.0a0' libgcc: '>=14' numpy: '>=1.23,<3' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/h5py-3.15.1-nompi_py312ha4f8f14_100.conda + url: https://repo.prefix.dev/conda-forge/linux-64/h5py-3.16.0-nompi_py312ha829cd9_102.conda hash: - md5: 44a8a9fe9150a6aba3c7e3845604b4ff - sha256: 5116f0aff9ae47c1ce594e4eb0d1b0b8f3b5347f91e883dff12bdbf8b782fa50 + md5: c6e5cf708b01707fe4cd5e4dc56cf4cc + sha256: 578ab0db104435ac003061e103789299720fc49b8b3e8401dabd5130a1ef8663 category: main optional: false - name: h5py - version: 3.15.1 + version: 3.16.0 manager: conda platform: win-64 dependencies: cached-property: '' - hdf5: '>=1.14.6,<1.14.7.0a0' + hdf5: '>=2.1.0,<3.0a0' numpy: '>=1.23,<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/h5py-3.15.1-nompi_py312h03cd2ba_100.conda + url: https://repo.prefix.dev/conda-forge/win-64/h5py-3.16.0-nompi_py312h5ddec8c_102.conda hash: - md5: fd77224d0a5bb4f87438b80362f56a7a - sha256: 101ccbf8aa4640f0f08829899886d8586237fab402e77bc9debfeb0de9208ae7 + md5: c1973eb20afef124242b807fd28dea43 + sha256: 721837b0a457a399d43a431fb55203f5b0adc640c7ffa453d0aa921f9b61f1c9 category: main optional: false - name: hdf5 - version: 1.14.6 + version: 2.1.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libaec: '>=1.1.4,<2.0a0' - libcurl: '>=8.14.1,<9.0a0' + aws-c-auth: '>=0.10.3,<0.10.4.0a0' + aws-c-common: '>=0.14.0,<0.14.1.0a0' + aws-c-http: '>=0.11.0,<0.11.1.0a0' + aws-c-io: '>=0.26.3,<0.26.4.0a0' + aws-c-s3: '>=0.12.5,<0.12.6.0a0' + aws-c-sdkutils: '>=0.2.4,<0.2.5.0a0' + libaec: '>=1.1.5,<2.0a0' + libcurl: '>=8.20.0,<9.0a0' libgcc: '>=14' libgfortran: '' libgfortran5: '>=14.3.0' libstdcxx: '>=14' - libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.5.1,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/hdf5-1.14.6-nompi_h6e4c0c1_103.conda + libzlib: '>=1.3.2,<2.0a0' + openssl: '>=3.5.6,<4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/hdf5-2.1.0-nompi_h735b18d_107.conda hash: - md5: c74d83614aec66227ae5199d98852aaf - sha256: 4f173af9e2299de7eee1af3d79e851bca28ee71e7426b377e841648b51d48614 + md5: b1b444bca8da3ff6cc4afad1fa7f7d61 + sha256: ff8336394dcfaccf49e56d1dd66091cf767df0d3d33f3fa440c980e0445b34cc category: main optional: false - name: hdf5 - version: 1.14.6 + version: 2.1.0 manager: conda platform: win-64 dependencies: - libaec: '>=1.1.4,<2.0a0' - libcurl: '>=8.14.1,<9.0a0' - libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.5.1,<4.0a0' + aws-c-auth: '>=0.10.3,<0.10.4.0a0' + aws-c-common: '>=0.14.0,<0.14.1.0a0' + aws-c-http: '>=0.11.0,<0.11.1.0a0' + aws-c-io: '>=0.26.3,<0.26.4.0a0' + aws-c-s3: '>=0.12.5,<0.12.6.0a0' + aws-c-sdkutils: '>=0.2.4,<0.2.5.0a0' + libaec: '>=1.1.5,<2.0a0' + libcurl: '>=8.20.0,<9.0a0' + libzlib: '>=1.3.2,<2.0a0' + openssl: '>=3.5.6,<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_he30205f_103.conda + url: https://repo.prefix.dev/conda-forge/win-64/hdf5-2.1.0-nompi_h693361b_107.conda hash: - md5: f1f7aaf642cefd2190582550eaca4658 - sha256: 0a90263b97e9860cec6c2540160ff1a1fff2a609b3d96452f8716ae63489dac5 + md5: 077380e6979650049695d5b2765385ed + sha256: 855d0e8eed8284c438d032a030b9a19abebe0b7fa5acc888adff6c782bffb33a category: main optional: false - name: hpack @@ -906,46 +1168,32 @@ package: sha256: 77af6f5fe8b62ca07d09ac60127a30d9069fdc3c68d6b256754d0ffb1f7779f8 category: dev optional: true -- name: icu - version: '75.1' - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://repo.prefix.dev/conda-forge/linux-64/icu-75.1-he02047a_0.conda - hash: - md5: 8b189310083baabfb622af68fd9d3ae3 - sha256: 71e750d509f5fa3421087ba88ef9a7b9be11c53174af3aa4d06aff4c18b38e8e - category: main - optional: false - name: idna - version: '3.11' + version: '3.17' manager: conda platform: linux-64 dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/idna-3.11-pyhd8ed1ab_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/idna-3.17-pyhcf101f3_0.conda hash: - md5: 53abe63df7e10a6ba605dc5f9f961d36 - sha256: ae89d0299ada2a3162c2614a9d26557a92aa6a77120ce142f8e0109bbf0342b0 + md5: c75e517ebd7a5c5272fe111e8b162228 + sha256: f9fe1f9e539c544405ccb7ba632d4ba79edf243c05554d76ace073158a80b691 category: dev optional: true - name: idna - version: '3.11' + version: '3.17' manager: conda platform: win-64 dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/idna-3.11-pyhd8ed1ab_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/idna-3.17-pyhcf101f3_0.conda hash: - md5: 53abe63df7e10a6ba605dc5f9f961d36 - sha256: ae89d0299ada2a3162c2614a9d26557a92aa6a77120ce142f8e0109bbf0342b0 + md5: c75e517ebd7a5c5272fe111e8b162228 + sha256: f9fe1f9e539c544405ccb7ba632d4ba79edf243c05554d76ace073158a80b691 category: dev optional: true - name: imagecodecs - version: 2025.8.2 + version: 2026.6.6 manager: conda platform: linux-64 dependencies: @@ -953,73 +1201,75 @@ 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: '>=3.1.3,<3.2.0a0' + charls: '>=2.4.4,<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' + lcms2: '>=2.19.1,<3.0a0' + lerc: '>=4.1.0,<5.0a0' + libaec: '>=1.1.5,<2.0a0' + libavif16: '>=1.4.2,<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.0,<4.0a0' - libjxl: '>=0.11,<0.12.0a0' - liblzma: '>=5.8.1,<6.0a0' - libpng: '>=1.6.50,<1.7.0a0' + libjpeg-turbo: '>=3.1.4.1,<4.0a0' + libjxl: '>=0.11,<1.0a0' + liblzma: '>=5.8.3,<6.0a0' + libpng: '>=1.6.58,<1.7.0a0' libstdcxx: '>=14' libtiff: '>=4.7.1,<4.8.0a0' libwebp-base: '>=1.6.0,<2.0a0' - libzlib: '>=1.3.1,<2.0a0' + libzlib: '>=1.3.2,<2.0a0' libzopfli: '>=1.0.3,<1.1.0a0' lz4-c: '>=1.10.0,<1.11.0a0' numpy: '>=1.23,<3' openjpeg: '>=2.5.4,<3.0a0' + openjph: '>=0.28.0,<0.29.0a0' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* snappy: '>=1.2.2,<1.3.0a0' zfp: '>=1.0.1,<2.0a0' - zlib-ng: '>=2.2.5,<2.3.0a0' + 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-2025.8.2-py312ha08ed9d_7.conda + url: https://repo.prefix.dev/conda-forge/linux-64/imagecodecs-2026.6.6-py312h71e39d9_1.conda hash: - md5: 215f296493ca54392cfe85f531494896 - sha256: b89d4aebd2c33f23461b4bdc02b6c221311e48ecf134c57d2319a08fecae467b + md5: 625a3d9d1c083cadc802734b4ee769eb + sha256: b9d17eaf4d88510e64c265a886da76a1f29542c6d7ce530b61206cf21f606871 category: main optional: false - name: imagecodecs - version: 2025.8.2 + version: 2026.6.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: '>=3.1.3,<3.2.0a0' + charls: '>=2.4.4,<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' + lcms2: '>=2.19.1,<3.0a0' + lerc: '>=4.1.0,<5.0a0' + libaec: '>=1.1.5,<2.0a0' + libavif16: '>=1.4.2,<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.0,<4.0a0' - libjxl: '>=0.11,<0.12.0a0' - liblzma: '>=5.8.1,<6.0a0' - libpng: '>=1.6.50,<1.7.0a0' + libjpeg-turbo: '>=3.1.4.1,<4.0a0' + libjxl: '>=0.11,<1.0a0' + liblzma: '>=5.8.3,<6.0a0' + libpng: '>=1.6.58,<1.7.0a0' libtiff: '>=4.7.1,<4.8.0a0' libwebp-base: '>=1.6.0,<2.0a0' - libzlib: '>=1.3.1,<2.0a0' + libzlib: '>=1.3.2,<2.0a0' libzopfli: '>=1.0.3,<1.1.0a0' lz4-c: '>=1.10.0,<1.11.0a0' numpy: '>=1.23,<3' openjpeg: '>=2.5.4,<3.0a0' + openjph: '>=0.28.0,<0.29.0a0' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* snappy: '>=1.2.2,<1.3.0a0' @@ -1027,12 +1277,12 @@ package: vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' zfp: '>=1.0.1,<2.0a0' - zlib-ng: '>=2.2.5,<2.3.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-2025.8.2-py312hf2cf878_7.conda + url: https://repo.prefix.dev/conda-forge/win-64/imagecodecs-2026.6.6-py312h68cad51_1.conda hash: - md5: b71ea9d32b03179e37205fac2a52fed7 - sha256: 05172b4209c3ed0c160890f6f7599e96d9081b84acc619226df84b49e468a6f0 + md5: f8be0967b0164c5e01bcc62ef3be1178 + sha256: 6a5a3ab0e20c64aead515b219b1787801a4e13248accedcf5b9a10dfdbc849d6 category: main optional: false - name: imageio @@ -1064,55 +1314,55 @@ 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 - version: 8.7.0 + version: 9.0.0 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 + url: https://repo.prefix.dev/conda-forge/noarch/importlib-metadata-9.0.0-pyhcf101f3_0.conda hash: - md5: 63ccfdc3a3ce25b027b8767eb722fca8 - sha256: c18ab120a0613ada4391b15981d86ff777b5690ca461ea7e9e49531e8f374745 - category: main - optional: false + md5: ffc17e785d64e12fc311af9184221839 + sha256: 43e2a5497cad1598ff88a3e69f69bc88b7b8f141fa63c60eab5db296317318b8 + category: dev + optional: true - name: importlib-metadata - version: 8.7.0 + version: 9.0.0 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 + url: https://repo.prefix.dev/conda-forge/noarch/importlib-metadata-9.0.0-pyhcf101f3_0.conda hash: - md5: 63ccfdc3a3ce25b027b8767eb722fca8 - sha256: c18ab120a0613ada4391b15981d86ff777b5690ca461ea7e9e49531e8f374745 - category: main - optional: false + md5: ffc17e785d64e12fc311af9184221839 + sha256: 43e2a5497cad1598ff88a3e69f69bc88b7b8f141fa63c60eab5db296317318b8 + category: dev + optional: true - name: iniconfig version: 2.3.0 manager: conda @@ -1138,29 +1388,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: jinja2 @@ -1169,11 +1419,11 @@ package: platform: linux-64 dependencies: markupsafe: '>=2.0' - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhcf101f3_1.conda hash: - md5: 446bd6c8cb26050d528881df495ce646 - sha256: f1ac18b11637ddadc05642e8185a851c7fab5998c6f5470d716812fae943b2af + md5: 04558c96691bed63104678757beb4f8d + sha256: fc9ca7348a4f25fed2079f2153ecdcf5f9cf2a0bc36c4172420ca09e1849df7b category: dev optional: true - name: jinja2 @@ -1182,11 +1432,11 @@ package: platform: win-64 dependencies: markupsafe: '>=2.0' - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhcf101f3_1.conda hash: - md5: 446bd6c8cb26050d528881df495ce646 - sha256: f1ac18b11637ddadc05642e8185a851c7fab5998c6f5470d716812fae943b2af + md5: 04558c96691bed63104678757beb4f8d + sha256: fc9ca7348a4f25fed2079f2153ecdcf5f9cf2a0bc36c4172420ca09e1849df7b category: dev optional: true - name: jxrlib @@ -1229,222 +1479,221 @@ package: 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.19.1 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.4.1,<4.0a0' + libtiff: '>=4.7.1,<4.8.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/lcms2-2.19.1-h0c24ade_1.conda hash: - md5: 000e85703f0fd9594c81710dd5066471 - sha256: d6a61830a354da022eae93fa896d0991385a875c6bba53c82263a289deda9db8 + md5: 8b3ce45e929cd8e8e5f4d18586b56d8b + sha256: 112b5b9462572d970f4abd2912f76a25ee7db158b1e7260163d91dd8a630db84 category: main optional: false - name: lcms2 - version: '2.17' + version: 2.19.1 manager: conda platform: win-64 dependencies: - libjpeg-turbo: '>=3.0.0,<4.0a0' - libtiff: '>=4.7.0,<4.8.0a0' + libjpeg-turbo: '>=3.1.4.1,<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.19.1-hf2c6c5f_1.conda hash: - md5: 3538827f77b82a837fa681a4579e37a1 - sha256: 7712eab5f1a35ca3ea6db48ead49e0d6ac7f96f8560da8023e61b3dbe4f3b25d + md5: 1df4012c8a2478699d07bc26af66d41e + sha256: 5ed63a32639a130564a870becb679fd52dfb816666a61ed3c023917389010480 category: main optional: false - name: ld_impl_linux-64 - version: '2.44' + 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.44-h1aa0949_5.conda + url: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.45.1-default_hbd61a6d_102.conda hash: - md5: 511ed8935448c1875776b60ad3daf3a1 - sha256: dab1fbf65abb05d3f2ee49dff90d60eeb2e02039fcb561343c7cea5dea523585 + md5: 18335a698559cdbcd86150a48bf54ba6 + sha256: 3d584956604909ff5df353767f3a2a2f60e07d070b328d109f30ac40cd62df6c 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.2 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - aom: '>=3.9.1,<3.10.0a0' + aom: '>=3.14.1,<3.15.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.2-hf998032_1.conda hash: - md5: c09c4ac973f7992ba0c6bb1aafd77bd4 - sha256: e3a44c0eda23aa15c9a8dfa8c82ecf5c8b073e68a16c29edd0e409e687056d30 + md5: 57845550bac29aeb754615c41b518f74 + sha256: b831161d7c86f7dfeb58d7189176c3314d7c2ccb38b4e1c8b376557ae4238f0b category: main optional: false - name: libavif16 - version: 1.3.0 + version: 1.4.2 manager: conda platform: win-64 dependencies: - _libavif_api: '>=1.3.0,<1.3.1.0a0' - aom: '>=3.9.1,<3.10.0a0' + _libavif_api: '>=1.4.2,<1.4.3.0a0' + aom: '>=3.14.1,<3.15.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.2-h7e7b026_1.conda hash: - md5: 9782ce5bf5a3b41f29533c2c08f6b360 - sha256: dbb3f21282eccba6e4bd70c9db371e081bf09c55f1de7ca90f1106cc199d4a8b + md5: 0cfadc4acdc50ea30484a372cf3207b5 + sha256: a1c7aa4a6a5031704d362edf937f9a1849761efa074d5c3a0a10a3b1dda5a42a category: main optional: false - name: libblas - version: 3.9.0 + version: 3.11.0 manager: conda platform: linux-64 dependencies: - libopenblas: '>=0.3.30,<0.3.31.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libblas-3.9.0-38_h4a7cf45_openblas.conda + libopenblas: '>=0.3.33,<1.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/libblas-3.11.0-8_h4a7cf45_openblas.conda hash: - md5: 3509b5e2aaa5f119013c8969fdd9a905 - sha256: b26a32302194e05fa395d5135699fd04a905c6ad71f24333f97c64874e053623 + md5: 00fc660ab1b2f5ca07e92b4900d10c79 + sha256: b2da6bfd72a1c9cb143ccf64bf5b28790cb4eb58bd1cb978f6537b2322f7d48b category: main optional: false - name: libblas - version: 3.9.0 + 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.9.0-38_hf2e6a31_mkl.conda + mkl: '>=2026.0.0,<2027.0a0' + url: https://repo.prefix.dev/conda-forge/win-64/libblas-3.11.0-8_h8455456_mkl.conda hash: - md5: dcee15907da751895e20b4d1ac94568d - sha256: 363920dbd6a4c09f419a4e032568d5468dc9196e8c9e401af4e8026ecf88f2b7 + md5: 4a0ce24b1a946ff77ae9eaa7ef015a33 + sha256: 43a87b59e6d4c68d80b2e4de487b1b54d66fe1f9a06636909b5a5ab9eae27269 category: main optional: false - name: libbrotlicommon @@ -1454,10 +1703,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlicommon-1.2.0-h09219d5_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlicommon-1.2.0-hb03c661_1.conda hash: - md5: 9b3117ec960b823815b02190b41c0484 - sha256: fbbcd11742bb8c96daa5f4f550f1804a902708aad2092b39bec3faaa2c8ae88a + md5: 72c8fd1af66bd67bf580645b426513ed + sha256: 318f36bd49ca8ad85e6478bd8506c88d82454cc008c1ac1c6bf00a3c42fa610e category: main optional: false - name: libbrotlicommon @@ -1468,10 +1717,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/libbrotlicommon-1.2.0-hc82b238_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libbrotlicommon-1.2.0-hfd05255_1.conda hash: - md5: a5607006c2135402ca3bb96ff9b87896 - sha256: 938078532c3a09e9687747fa562c08ece4a35545467ec26e5be9265a5dbff928 + md5: 444b0a45bbd1cb24f82eedb56721b9c4 + sha256: 5097303c2fc8ebf9f9ea9731520aa5ce4847d0be41764edd7f6dee2100b82986 category: main optional: false - name: libbrotlidec @@ -1482,10 +1731,10 @@ package: __glibc: '>=2.17,<3.0.a0' libbrotlicommon: 1.2.0 libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlidec-1.2.0-hd53d788_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlidec-1.2.0-hb03c661_1.conda hash: - md5: c183787d2b228775dece45842abbbe53 - sha256: f7f357c33bd10afd58072ad4402853a8522d52d00d7ae9adb161ecf719f63574 + md5: 366b40a69f0ad6072561c1d09301c886 + sha256: 12fff21d38f98bc446d82baa890e01fd82e3b750378fedc720ff93522ffb752b category: main optional: false - name: libbrotlidec @@ -1497,10 +1746,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/libbrotlidec-1.2.0-h431afc6_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libbrotlidec-1.2.0-hfd05255_1.conda hash: - md5: edc47a5d0ec6d95efefab3e99d0f4df0 - sha256: 229edc6f56b51dde812d1932b4c6f477654c2f5d477fff9cff184ebd4ce158bd + md5: 450e3ae947fc46b60f1d8f8f318b40d4 + sha256: 3239ce545cf1c32af6fffb7fc7c75cb1ef5b6ea8221c66c85416bb2d46f5cccb category: main optional: false - name: libbrotlienc @@ -1511,10 +1760,10 @@ package: __glibc: '>=2.17,<3.0.a0' libbrotlicommon: 1.2.0 libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlienc-1.2.0-h02bd7ab_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlienc-1.2.0-hb03c661_1.conda hash: - md5: b7a924e3e9ebc7938ffc7d94fe603ed3 - sha256: 1370c8b1a215751c4592bf95d4b5d11bac91c577770efcb237e3a0f35c326559 + md5: 4ffbb341c8b616aa2494b6afb26a0c5f + sha256: a0c15c79997820bbd3fbc8ecf146f4fe0eca36cc60b62b63ac6cf78857f1dd0d category: main optional: false - name: libbrotlienc @@ -1526,70 +1775,70 @@ package: 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.2.0-ha521d6b_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libbrotlienc-1.2.0-hfd05255_1.conda hash: - md5: f780291507a3f91d93a7147daea082f8 - sha256: eb54110ee720e4a73b034d0c2bb0f26eadf79a1bd6b0656ebdf914da8f14989d + md5: ccd93cfa8e54fd9df4e83dbe55ff6e8c + sha256: 3226df6b7df98734440739f75527d585d42ca2bfe912fbe8d1954c512f75341a category: main optional: false - name: libcblas - version: 3.9.0 + version: 3.11.0 manager: conda platform: linux-64 dependencies: - libblas: 3.9.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libcblas-3.9.0-38_h0358290_openblas.conda + libblas: 3.11.0 + url: https://repo.prefix.dev/conda-forge/linux-64/libcblas-3.11.0-8_h0358290_openblas.conda hash: - md5: bcd928a9376a215cd9164a4312dd5e98 - sha256: 7fe653f45c01eb16d7b48ad934b068dad2885d6f4a7c41512b6a5f1f522bffe9 + md5: 33a413f1095f8325e5c30fde3b0d2445 + sha256: 1a2bc77bb26520255904a3d9b1f40e6bf0bf9d8d3405c7709dd162282820915a category: main optional: false - name: libcblas - version: 3.9.0 + version: 3.11.0 manager: conda platform: win-64 dependencies: - libblas: 3.9.0 - url: https://repo.prefix.dev/conda-forge/win-64/libcblas-3.9.0-38_h2a3cdd5_mkl.conda + libblas: 3.11.0 + url: https://repo.prefix.dev/conda-forge/win-64/libcblas-3.11.0-8_h2a3cdd5_mkl.conda hash: - md5: 0c1602b1d15eb3d4da15bad122740df8 - sha256: f2bec12b960877387e5e8f84af5a50e19e97f52ddb1bed6b93ea38c4fb18ab62 + md5: 09f1d8e4d2675d34ad2acb115211d10c + sha256: 2a5b6555b481df4603e44cba49a6ef727584fd2f3c5235dd4bcb3028fffbdfb5 category: main optional: false - name: libcurl - version: 8.17.0 + version: 8.20.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' + libnghttp2: '>=1.68.1,<2.0a0' libssh2: '>=1.11.1,<2.0a0' - libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.5.4,<4.0a0' + libzlib: '>=1.3.2,<2.0a0' + openssl: '>=3.5.6,<4.0a0' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libcurl-8.17.0-h4e3cde8_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libcurl-8.20.0-hcf29cc6_0.conda hash: - md5: 01e149d4a53185622dc2e788281961f2 - sha256: 100e29ca864c32af15a5cc354f502d07b2600218740fdf2439fa7d66b50b3529 + md5: c3cc2864f82a944bc90a7beb4d3b0e88 + sha256: 75963a5dd913311f59a35dbd307592f4fa754c4808aff9c33edb430c415e38eb category: main optional: false - name: libcurl - version: 8.17.0 + version: 8.20.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' + libzlib: '>=1.3.2,<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.17.0-h43ecb02_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libcurl-8.20.0-h8206538_0.conda hash: - md5: cfade9be135edb796837e7d4c288c0fb - sha256: 651daa5d2bad505b5c72b1d5d4d8c7fc0776ab420e67af997ca9391b6854b1b3 + md5: 7bee27a8f0a295117ccb864f30d2d87e + sha256: f4ce5aa835a698532feaa368e804365a7e45a9edebe006a8e1c80505d893c24e category: main optional: false - name: libdeflate @@ -1646,30 +1895,30 @@ package: category: main optional: false - name: libexpat - version: 2.7.1 + version: 2.8.1 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.1-hecca717_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libexpat-2.8.1-hecca717_1.conda hash: - md5: 4211416ecba1866fab0c6470986c22d6 - sha256: da2080da8f0288b95dd86765c801c6e166c4619b910b11f9a8446fb852438dc2 + md5: b24d3c612f71e7aa74158d92106318b2 + sha256: 16feffd9ddbbe5b718515d38ee376c685ba95491cd901244e24671d20b952a77 category: main optional: false - name: libexpat - version: 2.7.1 + version: 2.8.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/libexpat-2.7.1-hac47afa_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libexpat-2.8.1-hac47afa_1.conda hash: - md5: 3608ffde260281fa641e70d6e34b1b96 - sha256: 8432ca842bdf8073ccecf016ccc9140c41c7114dc4ec77ca754551c01f780845 + md5: ccc490c81ffe14181861beac0e8f3169 + sha256: 1a54d874addda73b6f7164d5f3905821277a1831bcc05edd74b3085391688571 category: main optional: false - name: libffi @@ -1679,10 +1928,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 @@ -1693,65 +1942,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.3 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.3' + url: https://repo.prefix.dev/conda-forge/linux-64/libfreetype-2.14.3-ha770c72_0.conda hash: - md5: f4084e4e6577797150f9b04a4560ceb0 - sha256: 4641d37faeb97cf8a121efafd6afd040904d4bca8c46798122f417c31d5dfbec + md5: e289f3d17880e44b633ba911d57a321b + sha256: 38f014a7129e644636e46064ecd6b1945e729c2140e21d75bb476af39e692db2 category: main optional: false - name: libfreetype - version: 2.14.1 + version: 2.14.3 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.3' + url: https://repo.prefix.dev/conda-forge/win-64/libfreetype-2.14.3-h57928b3_1.conda hash: - md5: 3235024fe48d4087721797ebd6c9d28c - sha256: 2029702ec55e968ce18ec38cc8cf29f4c8c4989a0d51797164dab4f794349a64 + md5: e45b52fb9a81c9e2708465a706e05952 + sha256: 035d0c67bf9f7a16f4a1764f420c120f1a995d071bb265fcc66ef688ef709d7b category: main optional: false - name: libfreetype6 - version: 2.14.1 + version: 2.14.3 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 + libpng: '>=1.6.55,<1.7.0a0' + libzlib: '>=1.3.2,<2.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/libfreetype6-2.14.3-h73754d4_0.conda hash: - md5: 8e7251989bca326a28f4a5ffbd74557a - sha256: 4a7af818a3179fafb6c91111752954e29d3a2a950259c14a2fc7ba40a8b03652 + md5: fb16b4b69e3f1dcfe79d80db8fd0c55d + sha256: 16f020f96da79db1863fcdd8f2b8f4f7d52f177dd4c58601e38e9182e91adf1d category: main optional: false - name: libfreetype6 - version: 2.14.1 + version: 2.14.3 manager: conda platform: win-64 dependencies: - libpng: '>=1.6.50,<1.7.0a0' - libzlib: '>=1.3.1,<2.0a0' + libpng: '>=1.6.58,<1.7.0a0' + libzlib: '>=1.3.2,<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.3-hdbac1cb_1.conda hash: - md5: 6e7c5c5ab485057b5d07fd8188ba5c28 - sha256: 223710600b1a5567163f7d66545817f2f144e4ef8f84e99e90f6b8a4e19cb7ad + md5: 4e4d54f9f98383d977ba56ef39ebf46d + sha256: 0bbd19c9f7c4d0232b31892e6a4d1f82b8d19d1b84d89725f1f491b336447758 category: main optional: false - name: libgcc @@ -1761,10 +2010,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-h767d61c_7.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-15.2.0-he0feb66_19.conda hash: - md5: c0374badb3a5d4b1372db28d19462c53 - sha256: 08f9b87578ab981c7713e4e6a7d935e40766e10691732bba376d4964562bcb45 + md5: 57736f29cc2b0ec0b6c2952d3f101b6a + sha256: 8e0a3b5e41272e5678499b5dfc4cddb673f9e935de01eb0767ce857001229f46 category: main optional: false - name: libgcc @@ -1774,10 +2023,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-h1383e82_7.conda + url: https://repo.prefix.dev/conda-forge/win-64/libgcc-15.2.0-h8ee18e1_19.conda hash: - md5: 926a82fc4fa5b284b1ca1fb74f20dee2 - sha256: 174c4c75b03923ac755f227c96d956f7b4560a4b7dd83c0332709c50ff78450f + md5: cc5d690fc1c629038f13c68e88e65f44 + sha256: 80e80ef5e31b00b12539db3c5aaecde60dab91381abfc1060e323d5c3b016dce category: main optional: false - name: libgcc-ng @@ -1786,10 +2035,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_7.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-ng-15.2.0-h69a702a_19.conda hash: - md5: 280ea6eee9e2ddefde25ff799c4f0363 - sha256: 2045066dd8e6e58aaf5ae2b722fb6dfdbb57c862b5f34ac7bfb58c40ef39b6ad + md5: 331ee9b72b9dff570d56b1302c5ab37d + sha256: 9dcf54adfaa5e861123c2da4f2f0451a685464ea7e5a41ad91cf67b31d658d98 category: main optional: false - name: libgfortran @@ -1798,10 +2047,10 @@ package: platform: linux-64 dependencies: libgfortran5: 15.2.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran-15.2.0-h69a702a_7.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran-15.2.0-h69a702a_19.conda hash: - md5: 8621a450add4e231f676646880703f49 - sha256: 9ca24328e31c8ef44a77f53104773b9fe50ea8533f4c74baa8489a12de916f02 + md5: 42bf7eca1a951735fa06c0e3c0d5c8e6 + sha256: 561a42758ef25b9ce308c4e2cf56daee4f06138385a17e29a492cd928e00be6f category: main optional: false - name: libgfortran5 @@ -1811,10 +2060,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-hcd61629_7.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran5-15.2.0-h68bc16d_19.conda hash: - md5: f116940d825ffc9104400f0d7f1a4551 - sha256: e93ceda56498d98c9f94fedec3e2d00f717cbedfc97c49be0e5a5828802f2d34 + md5: 85072b0ad177c966294f129b7c04a2d5 + sha256: 057978bb69fea29ed715a9b98adf71015c31baecc4aeb2bfc20d4fd5d83579d4 category: main optional: false - name: libgomp @@ -1823,10 +2072,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-h767d61c_7.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgomp-15.2.0-he0feb66_19.conda hash: - md5: f7b4d76975aac7e5d9e6ad13845f92fe - sha256: e9fb1c258c8e66ee278397b5822692527c5f5786d372fe7a869b900853f3f5ca + md5: faac990cb7aedc7f3a2224f2c9b0c26c + sha256: 5abe4ab9d93f6c9757d654f1969ae2267d4505315c1f2f8fe705fd60af084f1b category: main optional: false - name: libgomp @@ -1835,14 +2084,14 @@ package: platform: win-64 dependencies: libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' - url: https://repo.prefix.dev/conda-forge/win-64/libgomp-15.2.0-h1383e82_7.conda + url: https://repo.prefix.dev/conda-forge/win-64/libgomp-15.2.0-h8ee18e1_19.conda hash: - md5: 7f970a7f9801622add7746aa3cbc24d5 - sha256: b8b569a9d3ec8f13531c220d3ad8e1ff35c75902c89144872e7542a77cb8c10d + md5: f1147651e3fdd585e2f442c0c2fc8f2d + sha256: 4dc958ced2fc7f42bc675b07e2c9abe3e150875ffdf62ca551d94fc6facf1fd7 category: main optional: false - name: libhwloc - version: 2.12.1 + version: 2.13.0 manager: conda platform: win-64 dependencies: @@ -1852,38 +2101,38 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libhwloc-2.12.1-default_h64bd3f2_1002.conda + url: https://repo.prefix.dev/conda-forge/win-64/libhwloc-2.13.0-default_h049141e_1000.conda hash: - md5: b0cac6e5b06ca5eeb14b4f7cf908619f - sha256: 266dfe151066c34695dbdc824ba1246b99f016115ef79339cbcf005ac50527c1 + md5: 6a01c986e30292c715038d2788aa1385 + sha256: 2ee12e37223dfcd0acd050c80a91150c482b6e2899198521e1800dce66662467 category: main optional: false - name: libhwy - version: 1.3.0 + version: 1.4.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 + url: https://repo.prefix.dev/conda-forge/linux-64/libhwy-1.4.0-h10be129_0.conda hash: - md5: c2a0c1d0120520e979685034e0b79859 - sha256: 2bdd1cdd677b119abc5e83069bec2e28fe6bfb21ebaea3cd07acee67f38ea274 + md5: 3a9428b74c403c71048104d38437b48c + sha256: 8b70955d5e9a49d08945d4f8e2eab855b2efa5fce9cb9bc5e75d86764e6f2f38 category: main optional: false - name: libhwy - version: 1.3.0 + version: 1.4.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 + url: https://repo.prefix.dev/conda-forge/win-64/libhwy-1.4.0-h172a326_0.conda hash: - md5: f4649d4b6bf40d616eda57d6255d2333 - sha256: c722a04f065656b988a46dee87303ff0bf037179c50e2e76704b693def7f9a96 + md5: aeca1cb6665f19e560c1fbd20b5bcf34 + sha256: 4b45bf59ee46d3c746272c27651da9ce709fda4eee8536c7424acea60d0e2ad0 category: main optional: false - name: libiconv @@ -1901,34 +2150,34 @@ package: category: main optional: false - name: libjpeg-turbo - version: 3.1.2 + version: 3.1.4.1 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 + url: https://repo.prefix.dev/conda-forge/linux-64/libjpeg-turbo-3.1.4.1-hb03c661_0.conda hash: - md5: 8397539e3a0bbd1695584fb4f927485a - sha256: cc9aba923eea0af8e30e0f94f2ad7156e2984d80d1e8e7fe6be5a1f257f0eb32 + md5: 6178c6f2fb254558238ef4e6c56fb782 + sha256: 10056646c28115b174de81a44e23e3a0a3b95b5347d2e6c45cc6d49d35294256 category: main optional: false - name: libjpeg-turbo - version: 3.1.2 + version: 3.1.4.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/libjpeg-turbo-3.1.2-hfd05255_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libjpeg-turbo-3.1.4.1-hfd05255_0.conda hash: - md5: 56a686f92ac0273c0f6af58858a3f013 - sha256: 795e2d4feb2f7fc4a2c6e921871575feb32b8082b5760726791f080d1e2c2597 + md5: 25a127bad5470852b30b239f030ec95b + sha256: 698d57b5b90120270eaa401298319fcb25ea186ae95b340c2f4813ed9171083d category: main optional: false - name: libjxl - version: 0.11.1 + version: 0.11.2 manager: conda platform: linux-64 dependencies: @@ -1936,98 +2185,98 @@ package: libbrotlidec: '>=1.2.0,<1.3.0a0' libbrotlienc: '>=1.2.0,<1.3.0a0' libgcc: '>=14' - libhwy: '>=1.3.0,<1.4.0a0' + libhwy: '>=1.4.0,<1.5.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-h174a0a3_1.conda hash: - md5: 82954a6f42e3fba59628741dca105c98 - sha256: 6b9524a6a7ea6ef1ac791b697f660c2898171ae505d12e6d27509b59cf059ee6 + md5: 850f48943d6b4589800a303f0de6a816 + sha256: 0c8a78c6a42a6e4c6de3a5e82d692f60400d43f4cc80591745f28b37daad9c70 category: main optional: false - name: libjxl - version: 0.11.1 + version: 0.11.2 manager: conda platform: win-64 dependencies: libbrotlidec: '>=1.2.0,<1.3.0a0' libbrotlienc: '>=1.2.0,<1.3.0a0' - libhwy: '>=1.3.0,<1.4.0a0' + libhwy: '>=1.4.0,<1.5.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-hac9b6f3_5.conda + url: https://repo.prefix.dev/conda-forge/win-64/libjxl-0.11.2-h932607e_1.conda hash: - md5: 8e3cc52433c99ad9632f430d3ac2a077 - sha256: 54e35ad6152fb705f26491c6651d4b77757315c446a494ffc477f36fb2203c79 + md5: 327bce3eb1ef1875c7145e915d25bcd3 + sha256: 4715e22c602526c85da09f73865676add67e0995a944b821fbff84547a9db533 category: main optional: false - name: liblapack - version: 3.9.0 + version: 3.11.0 manager: conda platform: linux-64 dependencies: - libblas: 3.9.0 - url: https://repo.prefix.dev/conda-forge/linux-64/liblapack-3.9.0-38_h47877c9_openblas.conda + libblas: 3.11.0 + url: https://repo.prefix.dev/conda-forge/linux-64/liblapack-3.11.0-8_h47877c9_openblas.conda hash: - md5: 88f10bff57b423a3fd2d990c6055771e - sha256: 63d6073dd4f82ab46943ad99a22fc4edda83b0f8fe6170bdaba7a43352bed007 + md5: 809be8ba8712c77bc7d44c2d99390dc4 + sha256: 168e327d737059553e15cc6ec36d76b9bbb3931c2a7721555fd68b4c9348b247 category: main optional: false - name: liblapack - version: 3.9.0 + version: 3.11.0 manager: conda platform: win-64 dependencies: - libblas: 3.9.0 - url: https://repo.prefix.dev/conda-forge/win-64/liblapack-3.9.0-38_hf9ab0e9_mkl.conda + libblas: 3.11.0 + url: https://repo.prefix.dev/conda-forge/win-64/liblapack-3.11.0-8_hf9ab0e9_mkl.conda hash: - md5: eb3167046ffba0ceb4a8824fb1b79a69 - sha256: 3b8d2d800f48fb9045a976c5a10cefe742142df88decf5a5108fe6b7c8fb5b50 + md5: d584799b920ecae9b75a2b70743a3de7 + sha256: 44999ed04bc0a56de44ee0ac8bd5b3702efd411a8b29491c0e3d3deb8619c94e category: main optional: false - name: liblzma - version: 5.8.1 + version: 5.8.3 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.3-hb03c661_0.conda hash: - md5: 1a580f7796c7bf6393fddb8bbbde58dc - sha256: f2591c0069447bbe28d4d696b7fcb0c5bd0b4ac582769b89addbcf26fb3430d8 + md5: b88d90cad08e6bc8ad540cb310a761fb + sha256: ec30e52a3c1bf7d0425380a189d209a52baa03f22fb66dd3eb587acaa765bd6d category: main optional: false - name: liblzma - version: 5.8.1 + version: 5.8.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/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.3-hfd05255_0.conda hash: - md5: c15148b2e18da456f5108ccb5e411446 - sha256: 55764956eb9179b98de7cc0e55696f2eff8f7b83fc3ebff5e696ca358bca28cc + md5: 8f83619ab1588b98dd99c90b0bfc5c6d + sha256: d636d1a25234063642f9c531a7bb58d84c1c496411280a36ea000bd122f078f1 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 @@ -2044,7 +2293,7 @@ package: category: main optional: false - name: libopenblas - version: 0.3.30 + version: 0.3.33 manager: conda platform: linux-64 dependencies: @@ -2052,68 +2301,67 @@ package: libgcc: '>=14' libgfortran: '' libgfortran5: '>=14.3.0' - url: https://repo.prefix.dev/conda-forge/linux-64/libopenblas-0.3.30-pthreads_h94d23a6_3.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libopenblas-0.3.33-pthreads_h94d23a6_0.conda hash: - md5: ac2e4832427d6b159576e8a68305c722 - sha256: 200899e5acc01fa29550d2782258d9cf33e55ce4cbce8faed9c6fe0b774852aa + md5: 2d3278b721e40468295ca755c3b84070 + sha256: 3d9aa85648e5e18a6d66db98b8c4317cc426721ad7a220aa86330d1ccedc8903 category: main optional: false - name: libpng - version: 1.6.50 + version: 1.6.58 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.50-h421ea60_1.conda + libzlib: '>=1.3.2,<2.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/libpng-1.6.58-h421ea60_0.conda hash: - md5: 7af8e91b0deb5f8e25d1a595dea79614 - sha256: e75a2723000ce3a4b9fd9b9b9ce77553556c93e475a4657db6ed01abc02ea347 + md5: eba48a68a1a2b9d3c0d9511548db85db + sha256: 377cfe037f3eeb3b1bf3ad333f724a64d32f315ee1958581fc671891d63d3f89 category: main optional: false - name: libpng - version: 1.6.50 + version: 1.6.58 manager: conda platform: win-64 dependencies: - libzlib: '>=1.3.1,<2.0a0' + libzlib: '>=1.3.2,<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.50-h7351971_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/libpng-1.6.58-h7351971_0.conda hash: - md5: 3ae6e9f5c47c495ebeed95651518be61 - sha256: e84b041f91c94841cb9b97952ab7f058d001d4a15ed4ce226ec5fdb267cc0fa5 + md5: 52f1280563f3b48b5f75414cd2d15dd1 + sha256: 218913aeee391460bd0e341b834dbd9c6fa6ae0a4276c0c300266cc99a816a28 category: main optional: false - name: libsqlite - version: 3.51.0 + version: 3.53.2 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - icu: '>=75.1,<76.0a0' libgcc: '>=14' - libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.51.0-hee844dc_0.conda + libzlib: '>=1.3.2,<2.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.53.2-h0c1763c_0.conda hash: - md5: 729a572a3ebb8c43933b30edcc628ceb - sha256: 4c992dcd0e34b68f843e75406f7f303b1b97c248d18f3c7c330bdc0bc26ae0b3 + md5: 062b0ac602fb0adf250e3dfa86f221c4 + sha256: 1ab603b6ec93933e76027e1f23b21b22b858ba1b56f1e1695ef6fe5e80cb7358 category: main optional: false - name: libsqlite - version: 3.51.0 + version: 3.53.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/libsqlite-3.51.0-hf5d6505_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.53.2-hf5d6505_0.conda hash: - md5: d2c9300ebd2848862929b18c264d1b1e - sha256: 2373bd7450693bd0f624966e1bee2f49b0bf0ffbc114275ed0a43cf35aec5b21 + md5: df294e7f9f24a6063f0e226f4d028fda + sha256: 4cd81319dcc58fb758da20a6d5595950c021adc2c18d7cffeadcfb590529629f category: main optional: false - name: libssh2 @@ -2154,10 +2402,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-h8f9b012_7.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-15.2.0-h934c35e_19.conda hash: - md5: 5b767048b1b3ee9a954b06f4084f93dc - sha256: 1b981647d9775e1cdeb2fab0a4dd9cd75a6b0de2963f6c3953dbd712f78334b3 + md5: 5794b3bdc38177caf969dabd3af08549 + sha256: dff1058c76ec6b8759e41cefa2508162d00e4a5e6721aa68ec3fd10094e702dc category: main optional: false - name: libstdcxx-ng @@ -2166,10 +2414,10 @@ package: platform: linux-64 dependencies: libstdcxx: 15.2.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-15.2.0-h4852527_7.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-15.2.0-hdf11a46_19.conda hash: - md5: f627678cf829bd70bccf141a19c3ad3e - sha256: 024fd46ac3ea8032a5ec3ea7b91c4c235701a8bf0e6520fe5e6539992a6bd05f + md5: e5ce228e579726c07255dbf90dc62101 + sha256: 0672b6b6e1791c92e8eccad58081a99d614fcf82bca5841f9dfa3c3e658f83b9 category: main optional: false - name: libtiff @@ -2214,16 +2462,16 @@ package: category: main optional: false - name: libuuid - version: 2.41.2 + version: 2.42.1 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.2-he9a06e4_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libuuid-2.42.1-h5347b49_0.conda hash: - md5: 80c07c68d2f6870250959dcc95b209d1 - sha256: e5ec6d2ad7eef538ddcb9ea62ad4346fde70a4736342c4ad87bd713641eb9808 + md5: 7d0a66598195ef00b6efc55aefc7453b + sha256: 3f0edf1280e2f6684a986f821eaa3e123d2694a00b31b96ca0d4a4c12c129231 category: main optional: false - name: libwebp-base @@ -2311,65 +2559,64 @@ package: category: main optional: false - name: libxml2 - version: 2.15.1 + version: 2.15.3 manager: conda platform: win-64 dependencies: libiconv: '>=1.18,<2.0a0' - liblzma: '>=5.8.1,<6.0a0' - libxml2-16: 2.15.1 - libzlib: '>=1.3.1,<2.0a0' + liblzma: '>=5.8.3,<6.0a0' + libxml2-16: 2.15.3 + libzlib: '>=1.3.2,<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-h5d26750_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libxml2-2.15.3-hbc0d294_0.conda hash: - md5: 9176ee05643a1bfe7f2e7b4c921d2c3d - sha256: f507960adf64ee9c9c7b7833d8b11980765ebd2bf5345f73d5a3b21b259eaed5 + md5: e3b5acbb857a12f5d59e8d174bc536c0 + sha256: da68af9d9d28d65a6916db1bef68f8a25c64c4fdcf759f32a2d2f2f143220adf category: main optional: false - name: libxml2-16 - version: 2.15.1 + version: 2.15.3 manager: conda platform: win-64 dependencies: libiconv: '>=1.18,<2.0a0' - liblzma: '>=5.8.1,<6.0a0' - libzlib: '>=1.3.1,<2.0a0' + liblzma: '>=5.8.3,<6.0a0' + libzlib: '>=1.3.2,<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-h692994f_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libxml2-16-2.15.3-h692994f_0.conda hash: - md5: 70ca4626111579c3cd63a7108fe737f9 - sha256: 04129dc2df47a01c55e5ccf8a18caefab94caddec41b3b10fbc409e980239eb9 + md5: f7d6fcda29570e20851b78d92ea2154e + sha256: 8038084c60eda2006d0122d05e3364fe8db0a18935ca6ed0168b5ba5aa33f904 category: main optional: false - name: libzlib - version: 1.3.1 + version: 1.3.2 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 + url: https://repo.prefix.dev/conda-forge/linux-64/libzlib-1.3.2-h25fd6f3_2.conda hash: - md5: edb0dca6bc32e4f4789199455a1dbeb8 - sha256: d4bfe88d7cb447768e31650f06257995601f89076080e76df55e3112d4e47dc4 + md5: d87ff7921124eccd67248aa483c23fec + sha256: 55044c403570f0dc26e6364de4dc5368e5f3fc7ff103e867c487e2b5ab2bcda9 category: main optional: false - name: libzlib - version: 1.3.1 + version: 1.3.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/libzlib-1.3.1-h2466b09_2.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/libzlib-1.3.2-hfd05255_2.conda hash: - md5: 41fbfac52c601159df6c01f875de31b9 - sha256: ba945c6493449bed0e6e29883c4943817f7c79cbff52b83360f7b341277c6402 + md5: dbabbd6234dea34040e631f87676292f + sha256: 88609816e0cc7452bac637aaf65783e5edf4fee8a9f8e22bdc3a75882c536061 category: main optional: false - name: libzopfli @@ -2399,17 +2646,17 @@ package: category: main optional: false - name: llvm-openmp - version: 21.1.5 + version: 22.1.7 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.5-hfa2b4ca_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-22.1.7-h4fa8253_0.conda hash: - md5: 3bd3154b24a1b9489d4ab04d62ffcc86 - sha256: 8c5106720e5414f48344fd28eae4db4f1a382336d8a0f30f71d41d8ae730fbb6 + md5: 0ca3373049a5be11689bc2f9b2f3a9d2 + sha256: 70140a1fa5d7cb801c6be3273b0704b5f0e418e2fff6b12b8ce9db13067a1ed5 category: main optional: false - name: lz4-c @@ -2449,10 +2696,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: dev optional: true - name: markupsafe @@ -2465,10 +2712,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/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: dev optional: true - name: mccabe @@ -2496,93 +2743,106 @@ package: category: dev optional: true - name: mkl - version: 2025.3.0 + version: 2026.0.0 manager: conda platform: win-64 dependencies: - llvm-openmp: '>=21.1.4' - tbb: '>=2022.2.0' + llvm-openmp: '>=22.1.5' + onemkl-license: 2026.0.0 + tbb: '>=2023.0.0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/mkl-2025.3.0-hac47afa_454.conda + url: https://repo.prefix.dev/conda-forge/win-64/mkl-2026.0.0-hac47afa_908.conda hash: - md5: c83ec81713512467dfe1b496a8292544 - sha256: 3c432e77720726c6bd83e9ee37ac8d0e3dd7c4cf9b4c5805e1d384025f9e9ab6 + md5: 36ea6e1292e9d5e89374201da79646ef + sha256: f997bfc9bc4d4e14261cdcd1ad195d64a72ee44dca3145d24c1349f8d1311aa5 category: main optional: false - name: ncurses - version: '6.5' + version: '6.6' 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 + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/ncurses-6.6-hdb14827_0.conda hash: - md5: 47e340acb35de30501a76c7c799c41d7 - sha256: 3fde293232fa3fca98635e1167de6b7c7fda83caf24b9d6c91ec9eefb4f4d586 + md5: fc21868a1a5aacc937e7a18747acb8a5 + sha256: fc89f74bbe362fb29fa3c037697a89bec140b346a2469a90f7936d1d7ea4d8a3 category: main optional: false - name: networkx - version: '3.5' + version: 3.6.1 manager: conda platform: linux-64 dependencies: - python: '>=3.11' - url: https://repo.prefix.dev/conda-forge/noarch/networkx-3.5-pyhe01879c_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/networkx-3.6.1-pyhcf101f3_0.conda hash: - md5: 16bff3d37a4f99e3aa089c36c2b8d650 - sha256: 02019191a2597865940394ff42418b37bc585a03a1c643d7cea9981774de2128 + md5: a2c1eeadae7a309daed9d62c96012a2b + sha256: f6a82172afc50e54741f6f84527ef10424326611503c64e359e25a19a8e4c1c6 category: main optional: false - name: networkx - version: '3.5' + version: 3.6.1 manager: conda platform: win-64 dependencies: - python: '>=3.11' - url: https://repo.prefix.dev/conda-forge/noarch/networkx-3.5-pyhe01879c_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/networkx-3.6.1-pyhcf101f3_0.conda hash: - md5: 16bff3d37a4f99e3aa089c36c2b8d650 - sha256: 02019191a2597865940394ff42418b37bc585a03a1c643d7cea9981774de2128 + md5: a2c1eeadae7a309daed9d62c96012a2b + sha256: f6a82172afc50e54741f6f84527ef10424326611503c64e359e25a19a8e4c1c6 category: main optional: false - name: numpy - version: 1.26.4 + version: 2.4.6 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.6-py312h33ff503_0.conda hash: - md5: d8285bea2a350f63fab23bf460221f3f - sha256: fe3459c75cf84dcef6ef14efcc4adb0ade66038ddd27cadb894f34f4797687d8 + md5: 6e31d55ee1110fda83b4f4045f4d73ff + sha256: dfcbeadb3e7ad0da7a55a0525884ca34c19584154e13cc4159396b305d1bd445 category: main optional: false - name: numpy - version: 1.26.4 + version: 2.4.6 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.6-py312ha3f287d_0.conda hash: - md5: f9ac74c3b07c396014434aca1e58d362 - sha256: 73570817a5109d396b4ebbe5124a89525959269fd33fa33fd413700289fbe0ef + md5: 1dd6f497cc8369359f024463426e323c + sha256: 9abf760418f2497f87715fa35d1c9cea5416be9edd1b166a218dfabe3b16e5be + category: main + optional: false +- name: onemkl-license + version: 2026.0.0 + manager: conda + platform: win-64 + dependencies: {} + url: https://repo.prefix.dev/conda-forge/win-64/onemkl-license-2026.0.0-h57928b3_908.conda + hash: + md5: 9c9303e08b50e09f5c23e1dac99d0936 + sha256: 42ad15cbb3bf31830efa04d4b86dd2d5c0dd590c86f98adcd3c8c1f75acf5dd5 category: main optional: false - name: openjpeg @@ -2607,34 +2867,64 @@ 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: e723ab7cc2794c954e1b22fde51c16e4 + sha256: 24342dee891a49a9ba92e2018ec0bde56cc07fdaec95275f7a55b96f03ea4252 + category: main + optional: false +- name: openjph + version: 0.28.1 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=14' + libstdcxx: '>=14' + libtiff: '>=4.7.1,<4.8.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/openjph-0.28.1-h8d634f6_0.conda + hash: + md5: 124bc40f781a446d9d4ffe5c37ef9ea2 + sha256: 8d5ece40cd6870bcb0f6a26ed8784480d787357b24d42d52a3f64d5f11a5d707 + category: main + optional: false +- name: openjph + version: 0.28.1 + manager: conda + platform: win-64 + dependencies: + libtiff: '>=4.7.1,<4.8.0a0' + 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.28.1-hf13a347_0.conda hash: - md5: 5af852046226bb3cb15c7f61c2ac020a - sha256: 226c270a7e3644448954c47959c00a9bf7845f6d600c2a643db187118d028eee + md5: 1fc89daa2c0226cf1dfed94df582c4b0 + sha256: 75c3240bba6781531aeb8fb2e52f555d657a0e2c399136e4ddaefc3cc010261e category: main optional: false - name: openssl - version: 3.5.4 + version: 3.6.3 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' ca-certificates: '' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/openssl-3.5.4-h26f9b46_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/openssl-3.6.3-h35e630c_0.conda hash: - md5: 14edad12b59ccbfa3910d42c72adc2a0 - sha256: e807f3bad09bdf4075dbb4168619e14b0c0360bacb2e12ef18641a834c8c5549 + md5: 79dd2074b5cd5c5c6b2930514a11e22d + sha256: d48f5c22b9897c01e4dff3680f1f57ceb02711ab9c62f74339b080419dfad34b category: main optional: false - name: openssl - version: 3.5.4 + version: 3.6.3 manager: conda platform: win-64 dependencies: @@ -2642,134 +2932,137 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/openssl-3.5.4-h725018a_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/openssl-3.6.3-hf411b9b_0.conda hash: - md5: f28ffa510fe055ab518cbd9d6ddfea23 - sha256: 5ddc1e39e2a8b72db2431620ad1124016f3df135f87ebde450d235c212a61994 + md5: e99f95734a326c0fd4d02bbd995150d4 + sha256: cb6e7ba0d010ee0d3249ce9886de3d7613d26d9965d4c95666fa66b9c4c31001 category: main optional: false - name: packaging - version: '25.0' + version: '26.2' 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.2-pyhc364b38_0.conda hash: - md5: 58335b26c38bf4a20f399384c33cbcf9 - sha256: 289861ed0c13a15d7bbb408796af4de72c2fe67e2bcb0de98f4c3fce259d7991 + md5: 4c06a92e74452cfa53623a81592e8934 + sha256: 3906abfb6511a3bb309e39b9b1b7bc38f50a723971de2395489fd1f379255890 category: main optional: false - name: packaging - version: '25.0' + version: '26.2' 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.2-pyhc364b38_0.conda hash: - md5: 58335b26c38bf4a20f399384c33cbcf9 - sha256: 289861ed0c13a15d7bbb408796af4de72c2fe67e2bcb0de98f4c3fce259d7991 + md5: 4c06a92e74452cfa53623a81592e8934 + sha256: 3906abfb6511a3bb309e39b9b1b7bc38f50a723971de2395489fd1f379255890 category: main optional: false - name: pillow - version: 10.3.0 + version: 12.2.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.12,<3.13.0a0' + __glibc: '>=2.17,<3.0.a0' + lcms2: '>=2.18,<3.0a0' + libfreetype: '>=2.14.3' + libfreetype6: '>=2.14.3' + 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.2.0-py312h50c33e8_0.conda hash: - md5: b1325cda3f250f9f842180607054e6ed - sha256: e1a2426f23535fc15e577d799685229a93117b645734e5cca60597bb23cef09e + md5: 9e5609720e31213d4f39afe377f6217e + sha256: fa291f8915114733dc1df9f1627b8c63c517217c1eee1a6ede2ceb5e368cf27a category: main optional: false - name: pillow - version: 10.3.0 + version: 12.2.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.12,<3.13.0a0' + lcms2: '>=2.18,<3.0a0' + libfreetype: '>=2.14.3' + libfreetype6: '>=2.14.3' + 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.2.0-py312h31f0997_0.conda hash: - md5: 04c1de8505791c12db1a0374f12e6e01 - sha256: 2bd6e58a0630fdb9a52f532ce582907babc725930e1ba784c7cd74063f28d073 + md5: ba3bcb72a269e7751cadbdd784f84dec + sha256: ab7c254e49d0999bbfc3d3b2c76e7d5f9f831692c864c641cf10c557b727ad7e category: main optional: false - name: pip - version: '25.3' + version: 26.1.2 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.1.2-pyh8b19718_0.conda hash: - md5: c55515ca43c6444d2572e0f0d93cb6b9 - sha256: b67692da1c0084516ac1c9ada4d55eaf3c5891b54980f30f3f444541c2706f1e + md5: 511fbc2c63d2c73650ad1755e4d357ba + sha256: 29b7d75bf81ad11645a8e320b369abdc90a92b93f2a9178e853d9dddf82e5106 category: main optional: false - name: pip - version: '25.3' + version: 26.1.2 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.1.2-pyh8b19718_0.conda hash: - md5: c55515ca43c6444d2572e0f0d93cb6b9 - sha256: b67692da1c0084516ac1c9ada4d55eaf3c5891b54980f30f3f444541c2706f1e + md5: 511fbc2c63d2c73650ad1755e4d357ba + sha256: 29b7d75bf81ad11645a8e320b369abdc90a92b93f2a9178e853d9dddf82e5106 category: main optional: false - name: platformdirs - version: 4.5.0 + version: 4.10.0 manager: conda platform: linux-64 dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.5.0-pyhcf101f3_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.10.0-pyhcf101f3_0.conda hash: - md5: 5c7a868f8241e64e1cf5fdf4962f23e2 - sha256: 7efd51b48d908de2d75cbb3c4a2e80dd9454e1c5bb8191b261af3136f7fa5888 + md5: 2c5ef45db85d34799771629bd5860fd7 + sha256: 9e5e1fd3506ccfc4d444fc4d2d39b0ed097d5d0e3bd3d4bdf6bcc81aaf66860d category: dev optional: true - name: platformdirs - version: 4.5.0 + version: 4.10.0 manager: conda platform: win-64 dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.5.0-pyhcf101f3_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.10.0-pyhcf101f3_0.conda hash: - md5: 5c7a868f8241e64e1cf5fdf4962f23e2 - sha256: 7efd51b48d908de2d75cbb3c4a2e80dd9454e1c5bb8191b261af3136f7fa5888 + md5: 2c5ef45db85d34799771629bd5860fd7 + sha256: 9e5e1fd3506ccfc4d444fc4d2d39b0ed097d5d0e3bd3d4bdf6bcc81aaf66860d category: dev optional: true - name: pluggy @@ -2777,11 +3070,11 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/pluggy-1.6.0-pyhf9edf01_1.conda hash: - md5: 7da7ccd349dbf6487a7778579d2bb971 - sha256: a8eb555eef5063bbb7ba06a379fa7ea714f57d9741fe0efdb9442dbbc2cccbcc + md5: d7585b6550ad04c8c5e21097ada2888e + sha256: e14aafa63efa0528ca99ba568eaf506eb55a0371d12e6250aaaa61718d2eb62e category: dev optional: true - name: pluggy @@ -2789,11 +3082,11 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/pluggy-1.6.0-pyhf9edf01_1.conda hash: - md5: 7da7ccd349dbf6487a7778579d2bb971 - sha256: a8eb555eef5063bbb7ba06a379fa7ea714f57d9741fe0efdb9442dbbc2cccbcc + md5: d7585b6550ad04c8c5e21097ada2888e + sha256: e14aafa63efa0528ca99ba568eaf506eb55a0371d12e6250aaaa61718d2eb62e category: dev optional: true - name: pthread-stubs @@ -2823,62 +3116,38 @@ package: sha256: 7e446bafb4d692792310ed022fe284e848c6a868c861655a92435af7368bae7b category: main optional: false -- name: pycparser - version: '2.22' - manager: conda - platform: linux-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: dev - optional: true -- 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: dev - optional: true - name: pydantic - version: 2.12.4 + version: 2.12.5 manager: conda platform: linux-64 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' - url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.12.4-pyh3cfb1c2_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.12.5-pyhcf101f3_1.conda hash: - md5: bf6ce72315b6759453d8c90a894e9e4c - sha256: c51297f0f6ef13776cc5b61c37d00c0d45faaed34f81d196e64bebc989f3e497 + md5: c3946ed24acdb28db1b5d63321dbca7d + sha256: 868569d9505b7fe246c880c11e2c44924d7613a8cdcc1f6ef85d5375e892f13d category: main optional: false - name: pydantic - version: 2.12.4 + version: 2.12.5 manager: conda platform: win-64 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' - url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.12.4-pyh3cfb1c2_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.12.5-pyhcf101f3_1.conda hash: - md5: bf6ce72315b6759453d8c90a894e9e4c - sha256: c51297f0f6ef13776cc5b61c37d00c0d45faaed34f81d196e64bebc989f3e497 + md5: c3946ed24acdb28db1b5d63321dbca7d + sha256: 868569d9505b7fe246c880c11e2c44924d7613a8cdcc1f6ef85d5375e892f13d category: main optional: false - name: pydantic-core @@ -2891,10 +3160,10 @@ package: python: '' python_abi: 3.12.* typing-extensions: '>=4.6.0,!=4.7.0' - url: https://repo.prefix.dev/conda-forge/linux-64/pydantic-core-2.41.5-py312h868fb18_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pydantic-core-2.41.5-py312h868fb18_1.conda hash: - md5: c7017a8aaec0ee5a5212d004e73bfdef - sha256: d1b924c342f3b526bb0a0d74e7ef8a8294f9df71355f0bbc619f9d3486931fe6 + md5: 56a776330a7d21db63a7c9d6c3711a04 + sha256: 07f899d035e06598682d3904d55f1529fac71b15e12b61d44d6a5fbf8521b0fe category: main optional: false - name: pydantic-core @@ -2908,74 +3177,74 @@ package: 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-py312hdabe01f_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/pydantic-core-2.41.5-py312hdabe01f_1.conda hash: - md5: 79baaa876cfe843b62b0bcc3d0a1db2e - sha256: 931c28d0a67d4c0a388f172ffc1ee956a32a386fa5490b643406a1e02e8135d9 + md5: 2e338a10e31828590cf031076bb143b6 + sha256: 06f5d122ac1c29679a6d588aa066c8684a087de12f84f3e81d90c205664eb62c category: main optional: false - name: pygments - version: 2.19.2 + version: 2.20.0 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.20.0-pyhd8ed1ab_0.conda hash: - md5: 6b6ece66ebcae2d5f326c77ef2c5a066 - sha256: 5577623b9f6685ece2697c6eb7511b4c9ac5fb607c9babc2646c811b428fd46a + md5: 16c18772b340887160c79a6acc022db0 + sha256: cf70b2f5ad9ae472b71235e5c8a736c9316df3705746de419b59d442e8348e86 category: dev optional: true - name: pygments - version: 2.19.2 + version: 2.20.0 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.20.0-pyhd8ed1ab_0.conda hash: - md5: 6b6ece66ebcae2d5f326c77ef2c5a066 - sha256: 5577623b9f6685ece2697c6eb7511b4c9ac5fb607c9babc2646c811b428fd46a + md5: 16c18772b340887160c79a6acc022db0 + sha256: cf70b2f5ad9ae472b71235e5c8a736c9316df3705746de419b59d442e8348e86 category: dev optional: true - name: pylint - version: 4.0.2 + version: 4.0.6 manager: conda platform: linux-64 dependencies: - astroid: '>=4.0.1,<=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.2-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pylint-4.0.6-pyhcf101f3_0.conda hash: - md5: 0259facf4dbf67ad35ec517b6ffd6982 - sha256: 594bdf44a55c3bcf79ec6eb55d86571cbe3bee9f5216ede0721708c184da4ed8 + md5: ba6813f7d81828b7dcd03248a42d031d + sha256: 5393b20b76361efe49971a0081cad0f4256f875a14fe71b1ed93ba9e0193369c category: dev optional: true - name: pylint - version: 4.0.2 + version: 4.0.6 manager: conda platform: win-64 dependencies: - astroid: '>=4.0.1,<=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.2-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pylint-4.0.6-pyhcf101f3_0.conda hash: - md5: 0259facf4dbf67ad35ec517b6ffd6982 - sha256: 594bdf44a55c3bcf79ec6eb55d86571cbe3bee9f5216ede0721708c184da4ed8 + md5: ba6813f7d81828b7dcd03248a42d031d + sha256: 5393b20b76361efe49971a0081cad0f4256f875a14fe71b1ed93ba9e0193369c category: dev optional: true - name: pysocks @@ -3006,7 +3275,7 @@ package: category: dev optional: true - name: pytest - version: 9.0.0 + version: 9.0.3 manager: conda platform: linux-64 dependencies: @@ -3016,16 +3285,16 @@ 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.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytest-9.0.3-pyhc364b38_1.conda hash: - md5: 499e8e2df95ad3d263bee8d41cc3d475 - sha256: afd413cd919bd3cca1d45062b9822be8935e1f61ce6d6b2642364e8c19e2873d + md5: 6a991452eadf2771952f39d43615bb3e + sha256: 960f59442173eee0731906a9077bd5ccf60f4b4226f05a22d1728ab9a21a879c category: dev optional: true - name: pytest - version: 9.0.0 + version: 9.0.3 manager: conda platform: win-64 dependencies: @@ -3035,95 +3304,95 @@ 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.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytest-9.0.3-pyhc364b38_1.conda hash: - md5: 499e8e2df95ad3d263bee8d41cc3d475 - sha256: afd413cd919bd3cca1d45062b9822be8935e1f61ce6d6b2642364e8c19e2873d + md5: 6a991452eadf2771952f39d43615bb3e + sha256: 960f59442173eee0731906a9077bd5ccf60f4b4226f05a22d1728ab9a21a879c category: dev optional: true - name: pytest-cov - version: 7.0.0 + version: 7.1.0 manager: conda platform: linux-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 + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-7.1.0-pyhcf101f3_0.conda hash: - md5: 6891acad5e136cb62a8c2ed2679d6528 - sha256: d0f45586aad48ef604590188c33c83d76e4fc6370ac569ba0900906b24fd6a26 + md5: 67d1790eefa81ed305b89d8e314c7923 + sha256: 44e42919397bd00bfaa47358a6ca93d4c21493a8c18600176212ec21a8d25ca5 category: dev optional: true - name: pytest-cov - version: 7.0.0 + version: 7.1.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 + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-7.1.0-pyhcf101f3_0.conda hash: - md5: 6891acad5e136cb62a8c2ed2679d6528 - sha256: d0f45586aad48ef604590188c33c83d76e4fc6370ac569ba0900906b24fd6a26 + md5: 67d1790eefa81ed305b89d8e314c7923 + sha256: 44e42919397bd00bfaa47358a6ca93d4c21493a8c18600176212ec21a8d25ca5 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_abi @@ -3148,63 +3417,6 @@ package: sha256: 80677180dd3c22deb7426ca89d6203f1c7f1f256f2d5a94dc210f6e758229809 category: main optional: false -- 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 - 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 - hash: - md5: ab856c36638ab1acf90e70349c525cf9 - sha256: 5616729dbb1bfc21e8acc2c8f4d5e32b5e017e45e1e8f763dee8cac4c38f890b - category: main - optional: false -- name: pywavelets - version: 1.9.0 - 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 - hash: - md5: f1c2ea3586ae62747eee7aac5d2ae1fb - sha256: 566a660ded66097903ef634bb15359c189d4fc9ae377617246892dd95a47fd19 - category: main - optional: false - name: pyyaml version: 6.0.3 manager: conda @@ -3215,10 +3427,10 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* yaml: '>=0.2.5,<0.3.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/pyyaml-6.0.3-py312h8a5da7c_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pyyaml-6.0.3-py312h8a5da7c_1.conda hash: - md5: fba10c2007c8b06f77c5a23ce3a635ad - sha256: 1b3dc4c25c83093fff08b86a3574bc6b94ba355c8eba1f35d805c5e256455fc7 + md5: 15878599a87992e44c059731771591cb + sha256: cb142bfd92f6e55749365ddc244294fa7b64db6d08c45b018ff1c658907bfcbf category: dev optional: true - name: pyyaml @@ -3232,110 +3444,151 @@ package: 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 + url: https://repo.prefix.dev/conda-forge/win-64/pyyaml-6.0.3-py312h05f76fc_1.conda hash: - md5: 4a68f80fbf85499f093101cc17ffbab7 - sha256: 54d04e61d17edffeba1e5cad45f10f272a016b6feec1fa8fa6af364d84a7b4fc + md5: 9f6ebef672522cb9d9a6257215ca5743 + sha256: 1cab6cbd6042b2a1d8ee4d6b4ec7f36637a41f57d2f5c5cf0c12b7c4ce6a62f6 category: dev optional: true - 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 - version: '8.2' + version: '8.3' manager: conda platform: linux-64 dependencies: - libgcc: '>=13' + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=14' ncurses: '>=6.5,<7.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/readline-8.3-h853b02a_0.conda hash: - md5: 283b96675859b20a825f8fa30f311446 - sha256: 2d6d0c026902561ed77cd646b5021aef2d4db22e57a5b0178dfc669231e06d2c + md5: d7d95fc8287ea7bf33e0e7116d2b95ec + sha256: 12ffde5a6f958e285aa22c191ca01bbd3d6e710aa852e00618fa6ddc59149002 category: main optional: false - name: requests - version: 2.32.5 + version: 2.34.2 + manager: conda + platform: linux-64 + dependencies: + certifi: '>=2023.5.7' + charset-normalizer: '>=2,<4' + idna: '>=2.5,<4' + python: '' + urllib3: '>=1.26,<3' + url: https://repo.prefix.dev/conda-forge/noarch/requests-2.34.2-pyhcf101f3_0.conda + hash: + md5: 4a85203c1d80c1059086ae860836ffb9 + sha256: 1715246b19c9f85ee022933b4845f2fc14ac9184981b7b7d9b728bec8e9588da + category: dev + optional: true +- name: requests + version: 2.34.2 + manager: conda + platform: win-64 + dependencies: + certifi: '>=2023.5.7' + charset-normalizer: '>=2,<4' + idna: '>=2.5,<4' + python: '' + urllib3: '>=1.26,<3' + url: https://repo.prefix.dev/conda-forge/noarch/requests-2.34.2-pyhcf101f3_0.conda + hash: + md5: 4a85203c1d80c1059086ae860836ffb9 + sha256: 1715246b19c9f85ee022933b4845f2fc14ac9184981b7b7d9b728bec8e9588da + category: dev + optional: true +- name: roman-numerals + version: 4.1.0 manager: conda platform: linux-64 dependencies: - certifi: '>=2017.4.17' - charset-normalizer: '>=2,<4' - idna: '>=2.5,<4' - python: '>=3.9' - urllib3: '>=1.21.1,<3' - url: https://repo.prefix.dev/conda-forge/noarch/requests-2.32.5-pyhd8ed1ab_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/roman-numerals-4.1.0-pyhd8ed1ab_0.conda hash: - md5: db0c6b99149880c8ba515cf4abe93ee4 - sha256: 8dc54e94721e9ab545d7234aa5192b74102263d3e704e6d0c8aa7008f2da2a7b + md5: 0dc48b4b570931adc8641e55c6c17fe4 + sha256: 30f3c04fcfb64c44d821d392a4a0b8915650dbd900c8befc20ade8fde8ec6aa2 category: dev optional: true -- name: requests - version: 2.32.5 +- name: roman-numerals + version: 4.1.0 manager: conda platform: win-64 dependencies: - certifi: '>=2017.4.17' - charset-normalizer: '>=2,<4' - idna: '>=2.5,<4' - python: '>=3.9' - urllib3: '>=1.21.1,<3' - url: https://repo.prefix.dev/conda-forge/noarch/requests-2.32.5-pyhd8ed1ab_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/roman-numerals-4.1.0-pyhd8ed1ab_0.conda hash: - md5: db0c6b99149880c8ba515cf4abe93ee4 - sha256: 8dc54e94721e9ab545d7234aa5192b74102263d3e704e6d0c8aa7008f2da2a7b + md5: 0dc48b4b570931adc8641e55c6c17fe4 + sha256: 30f3c04fcfb64c44d821d392a4a0b8915650dbd900c8befc20ade8fde8ec6aa2 category: dev optional: true - name: roman-numerals-py - version: 3.1.0 + version: 4.1.0 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/roman-numerals-py-3.1.0-pyhd8ed1ab_0.conda + python: '>=3.10' + roman-numerals: 4.1.0 + url: https://repo.prefix.dev/conda-forge/noarch/roman-numerals-py-4.1.0-pyhd8ed1ab_0.conda hash: - md5: 5f0f24f8032c2c1bb33f59b75974f5fc - sha256: 0116a9ca9bf3487e18979b58b2f280116dba55cb53475af7a6d835f7aa133db8 + md5: 28687768633154993d521aecfa4a56ac + sha256: ce21b50a412b87b388db9e8dfbf8eb16fc436c23750b29bf612ee1a74dd0beb2 category: dev optional: true - name: roman-numerals-py - version: 3.1.0 + version: 4.1.0 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/roman-numerals-py-3.1.0-pyhd8ed1ab_0.conda + python: '>=3.10' + roman-numerals: 4.1.0 + url: https://repo.prefix.dev/conda-forge/noarch/roman-numerals-py-4.1.0-pyhd8ed1ab_0.conda hash: - md5: 5f0f24f8032c2c1bb33f59b75974f5fc - sha256: 0116a9ca9bf3487e18979b58b2f280116dba55cb53475af7a6d835f7aa133db8 + md5: 28687768633154993d521aecfa4a56ac + sha256: ce21b50a412b87b388db9e8dfbf8eb16fc436c23750b29bf612ee1a74dd0beb2 category: dev optional: true +- name: s2n + version: 1.7.3 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=14' + openssl: '>=3.5.6,<4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/s2n-1.7.3-hc5a330e_0.conda + hash: + md5: f2bd09e21c5844a12e2f5eefcd075555 + sha256: 150a0a5254e8b15ad737549721c7d13406cd96432f3f446e07073dbd98bb2491 + category: main + optional: false - name: scikit-image - version: 0.25.2 + version: 0.26.0 manager: conda platform: linux-64 dependencies: @@ -3345,109 +3598,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_1.conda hash: - md5: 94688dd449f6c092e5f951780235aca1 - sha256: 6e4916d610dc15f9b504517bd6c1f3dbbae019a3c7abf0aeb55f310c452a4474 + md5: 15995ecb2ef890778ba9a3750190f09d + sha256: d5ac05ad45c0d48731eb189c2cbb2bb99f0e3cb7e1acaad373cb2f1f2597fc75 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_1.conda hash: - md5: 3ef0017e79039d4767ba3b4891113a07 - sha256: eb67adcca33026895b6539d02e1bc01f495e1d593a26053d734fe7a180e708f4 + md5: 0b8c96ed1c04732ff8eb5d481b44c43c + sha256: b8a13caeb04f2b943e7c617a4b76805450618716b38688ee8d3f79b60d529e84 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: snappy @@ -3458,10 +3709,10 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' libstdcxx: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/snappy-1.2.2-h03e3b7b_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/snappy-1.2.2-h03e3b7b_1.conda hash: - md5: 3d8da0248bdae970b4ade636a104b7f5 - sha256: 8b8acbde6814d1643da509e11afeb6bb30eb1e3004cf04a7c9ae43e9b097f063 + md5: 98b6c9dc80eb87b2519b97bcf7e578dd + sha256: 48f3f6a76c34b2cfe80de9ce7f2283ecb55d5ed47367ba91e8bb8104e12b8f11 category: main optional: false - name: snappy @@ -3472,38 +3723,38 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/snappy-1.2.2-h7fa0ca8_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/snappy-1.2.2-h7fa0ca8_1.conda hash: - md5: 194a0c548899fa2a10684c34e56a3564 - sha256: b38ed597bf71f73275a192b8cb22888997760bac826321f5838951d5d31acb23 + md5: 3075846de68f942150069d4289aaad63 + sha256: d2deda1350abf8c05978b73cf7fe9147dd5c7f2f9b312692d1b98e52efad53c3 category: main optional: false - name: snowballstemmer - version: 3.0.1 + version: 3.1.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 + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/snowballstemmer-3.1.1-pyhd8ed1ab_0.conda hash: - md5: 755cf22df8693aa0d1aec1c123fa5863 - sha256: 17007a4cfbc564dc3e7310dcbe4932c6ecb21593d4fec3c68610720f19e73fb2 + md5: 46b6abe31482f6bca064b965696ae807 + sha256: ad89284ea94821c20ff87e64b948e4afc690cf5202d14c009355b0594cf23aea category: dev optional: true - name: snowballstemmer - version: 3.0.1 + version: 3.1.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 + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/snowballstemmer-3.1.1-pyhd8ed1ab_0.conda hash: - md5: 755cf22df8693aa0d1aec1c123fa5863 - sha256: 17007a4cfbc564dc3e7310dcbe4932c6ecb21593d4fec3c68610720f19e73fb2 + md5: 46b6abe31482f6bca064b965696ae807 + sha256: ad89284ea94821c20ff87e64b948e4afc690cf5202d14c009355b0594cf23aea category: dev optional: true - name: sphinx - version: 8.2.3 + version: 8.3.0 manager: conda platform: linux-64 dependencies: @@ -3525,14 +3776,14 @@ package: sphinxcontrib-jsmath: '>=1.0.1' sphinxcontrib-qthelp: '>=1.0.6' sphinxcontrib-serializinghtml: '>=1.1.9' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-8.2.3-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-8.3.0-pyhd8ed1ab_0.conda hash: - md5: f7af826063ed569bb13f7207d6f949b0 - sha256: 995f58c662db0197d681fa345522fd9e7ac5f05330d3dff095ab2f102e260ab0 + md5: 6ce9ddee4c0f68bda548303196f4cf4c + sha256: 03c4d8b4cf3c5418e15f30f45be52bcde7c7e05baeec7dec5aaf6e238a411481 category: dev optional: true - name: sphinx - version: 8.2.3 + version: 8.3.0 manager: conda platform: win-64 dependencies: @@ -3554,10 +3805,10 @@ package: sphinxcontrib-jsmath: '>=1.0.1' sphinxcontrib-qthelp: '>=1.0.6' sphinxcontrib-serializinghtml: '>=1.1.9' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-8.2.3-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-8.3.0-pyhd8ed1ab_0.conda hash: - md5: f7af826063ed569bb13f7207d6f949b0 - sha256: 995f58c662db0197d681fa345522fd9e7ac5f05330d3dff095ab2f102e260ab0 + md5: 6ce9ddee4c0f68bda548303196f4cf4c + sha256: 03c4d8b4cf3c5418e15f30f45be52bcde7c7e05baeec7dec5aaf6e238a411481 category: dev optional: true - name: sphinx-autodoc-typehints @@ -3587,31 +3838,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: @@ -3619,14 +3870,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: @@ -3634,10 +3885,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 @@ -3795,100 +4046,100 @@ package: category: dev optional: true - name: sphinxcontrib-serializinghtml - version: 1.1.10 + version: 2.0.0 manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '>=3.10' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-serializinghtml-2.0.0-pyhd8ed1ab_0.conda hash: - md5: 3bc61f7161d28137797e038263c04c54 - sha256: 64d89ecc0264347486971a94487cb8d7c65bfc0176750cf7502b8a272f4ab557 + md5: f77df1fcf9af03b7287342638befca77 + sha256: 20b49741065fd7d3fabf98caf6d19b6436badb06b6d41f66b58f1fc2b52f37a1 category: dev optional: true - name: sphinxcontrib-serializinghtml - version: 1.1.10 + version: 2.0.0 manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '>=3.10' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-serializinghtml-2.0.0-pyhd8ed1ab_0.conda hash: - md5: 3bc61f7161d28137797e038263c04c54 - sha256: 64d89ecc0264347486971a94487cb8d7c65bfc0176750cf7502b8a272f4ab557 + md5: f77df1fcf9af03b7287342638befca77 + sha256: 20b49741065fd7d3fabf98caf6d19b6436badb06b6d41f66b58f1fc2b52f37a1 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 - version: 2022.3.0 + version: 2023.0.0 manager: conda platform: win-64 dependencies: - libhwloc: '>=2.12.1,<2.12.2.0a0' + libhwloc: '>=2.13.0,<2.13.1.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-hd094cb3_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/tbb-2023.0.0-hd3d4ead_2.conda hash: - md5: 17c38aaf14c640b85c4617ccb59c1146 - sha256: c31cac57913a699745d124cdc016a63e31c5749f16f60b3202414d071fc50573 + md5: 8ee01a693aecff5432069eaaf1183c45 + sha256: 8a4053839b8e997a5965e2dff7d6cf3c77be62d82c0e48c8a04a5ed2d2e73035 category: main optional: false - name: tifffile - version: 2025.10.16 + version: 2026.6.1 manager: conda platform: linux-64 dependencies: - imagecodecs: '>=2024.12.30' - numpy: '>=1.19.2' - python: '>=3.11' - url: https://repo.prefix.dev/conda-forge/noarch/tifffile-2025.10.16-pyhd8ed1ab_0.conda + imagecodecs: '>=2026.5.10' + numpy: '>=2.1' + python: '>=3.12' + url: https://repo.prefix.dev/conda-forge/noarch/tifffile-2026.6.1-pyhd8ed1ab_0.conda hash: - md5: f5b9f02d19761f79c564900a2a399984 - sha256: 84d4c49b648971147f93a6c873ce24703fd4047bc57f91f20ff1060ca7feda8f + md5: b65b41dced5a938a5d8daa8c2403b973 + sha256: 7d534bbfd0b93001296076c6634f2bdb5511a0f418ecbe310c2eed71a6e66f21 category: main optional: false - name: tifffile - version: 2025.10.16 + version: 2026.6.1 manager: conda platform: win-64 dependencies: - imagecodecs: '>=2024.12.30' - numpy: '>=1.19.2' - python: '>=3.11' - url: https://repo.prefix.dev/conda-forge/noarch/tifffile-2025.10.16-pyhd8ed1ab_0.conda + imagecodecs: '>=2026.5.10' + numpy: '>=2.1' + python: '>=3.12' + url: https://repo.prefix.dev/conda-forge/noarch/tifffile-2026.6.1-pyhd8ed1ab_0.conda hash: - md5: f5b9f02d19761f79c564900a2a399984 - sha256: 84d4c49b648971147f93a6c873ce24703fd4047bc57f91f20ff1060ca7feda8f + md5: b65b41dced5a938a5d8daa8c2403b973 + sha256: 7d534bbfd0b93001296076c6634f2bdb5511a0f418ecbe310c2eed71a6e66f21 category: main optional: false - name: tk @@ -3897,12 +4148,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_hd72426e_102.conda + url: https://repo.prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_h366c992_103.conda hash: - md5: a0116df4f4ed05c303811a837d5b39d8 - sha256: a84ff687119e6d8752346d1d408d5cf360dee0badd487a472aa8ddedfdc219e1 + md5: cffd3bdd58090148f4cfcd831f4b26ab + sha256: cafeec44494f842ffeca27e9c8b0c27ed714f93ac77ddadc6aaf726b5554ebac category: main optional: false - name: tk @@ -3911,86 +4162,87 @@ 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_2.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: ebd0e761de9aa879a51d22cc721bd095 - sha256: e3614b0eb4abcc70d98eae159db59d9b4059ed743ef402081151a948dce95896 + md5: 0481bfd9814bf525bd4b3ee4b51494c4 + sha256: 0e79810fae28f3b69fe7391b0d43f5474d6bd91d451d5f2bde02f55ae481d5e3 category: main optional: false - name: tomli - version: 2.3.0 + version: 2.4.1 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.1-pyhcf101f3_0.conda hash: - md5: d2732eb636c264dc9aa4cbee404b1a53 - sha256: cb77c660b646c00a48ef942a9e1721ee46e90230c7c570cdeb5a893b5cce9bff + md5: b5325cf06a000c5b14970462ff5e4d58 + sha256: 91cafdb64268e43e0e10d30bd1bef5af392e69f00edd34dfaf909f69ab2da6bd category: dev optional: true - name: tomli - version: 2.3.0 + version: 2.4.1 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.1-pyhcf101f3_0.conda hash: - md5: d2732eb636c264dc9aa4cbee404b1a53 - sha256: cb77c660b646c00a48ef942a9e1721ee46e90230c7c570cdeb5a893b5cce9bff + md5: b5325cf06a000c5b14970462ff5e4d58 + sha256: 91cafdb64268e43e0e10d30bd1bef5af392e69f00edd34dfaf909f69ab2da6bd category: dev optional: true - name: tomlkit - version: 0.13.3 + version: 0.15.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.15.0-pyha770c72_0.conda hash: - md5: 146402bf0f11cbeb8f781fa4309a95d3 - sha256: f8d3b49c084831a20923f66826f30ecfc55a4cd951e544b7213c692887343222 + md5: 42ef10a8f7f5d55a2e267c0d5daa6387 + sha256: 1cd52f9ccb4854c4d731438afe0e833b6b71edaf5ede661152aa98efb3a7cc70 category: dev optional: true - name: tomlkit - version: 0.13.3 + version: 0.15.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.15.0-pyha770c72_0.conda hash: - md5: 146402bf0f11cbeb8f781fa4309a95d3 - sha256: f8d3b49c084831a20923f66826f30ecfc55a4cd951e544b7213c692887343222 + md5: 42ef10a8f7f5d55a2e267c0d5daa6387 + sha256: 1cd52f9ccb4854c4d731438afe0e833b6b71edaf5ede661152aa98efb3a7cc70 category: dev optional: true - name: tqdm - version: 4.67.1 + version: 4.68.2 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.68.2-pyh8f84b5b_1.conda hash: - md5: 9efbfdc37242619130ea42b1cc4ed861 - sha256: 11e2c85468ae9902d24a27137b6b39b4a78099806e551d390e394a8c34b48e40 + md5: 99ee58c51aae7ee9ab947a0c6ce5a4c7 + sha256: f3ac3dcc43f011835efe2718f5d78981935e8aa1e1d9741b63499dfdd8fa802c category: main optional: false - name: tqdm - version: 4.67.1 + version: 4.68.2 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.68.2-pyha7b4d00_1.conda hash: - md5: 9efbfdc37242619130ea42b1cc4ed861 - sha256: 11e2c85468ae9902d24a27137b6b39b4a78099806e551d390e394a8c34b48e40 + md5: f73d419741d981f9a22939d0cb68bd4a + sha256: f25ec3f44a3a0243c35baba3dceb1dc0e4a127e5f168ca9fa34708cee821f6b7 category: main optional: false - name: typing-extensions @@ -4022,12 +4274,12 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.10' + python: '' typing_extensions: '>=4.12.0' - url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.2-pyhcf101f3_2.conda hash: - md5: 399701494e731ce73fdd86c185a3d1b4 - sha256: 8aaf69b828c2b94d0784f18f70f11aa032950d304e57e88467120b45c18c24fd + md5: 53f5409c5cfd6c5a66417d68e3f0a864 + sha256: 8b90d2f19f9458b8c58a55e1fcdc1d90c1603a847a47654d8a454549413ba60a category: main optional: false - name: typing-inspection @@ -4035,12 +4287,12 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.10' + python: '' typing_extensions: '>=4.12.0' - url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.2-pyhcf101f3_2.conda hash: - md5: 399701494e731ce73fdd86c185a3d1b4 - sha256: 8aaf69b828c2b94d0784f18f70f11aa032950d304e57e88467120b45c18c24fd + md5: 53f5409c5cfd6c5a66417d68e3f0a864 + sha256: 8b90d2f19f9458b8c58a55e1fcdc1d90c1603a847a47654d8a454549413ba60a category: main optional: false - name: typing_extensions @@ -4048,7 +4300,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 @@ -4060,7 +4312,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 @@ -4068,25 +4320,25 @@ package: category: main optional: false - name: tzdata - version: 2025b + version: 2025c manager: conda platform: linux-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.conda hash: - md5: 4222072737ccff51314b5ece9c7d6f5a - sha256: 5aaa366385d716557e365f0a4e9c3fca43ba196872abbbe3d56bb610d131e192 + md5: ad659d0a2b3e47e38d829aa8cad2d610 + sha256: 1d30098909076af33a35017eed6f2953af1c769e273a0626a04722ac4acaba3c category: main optional: false - name: tzdata - version: 2025b + version: 2025c manager: conda platform: win-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.conda hash: - md5: 4222072737ccff51314b5ece9c7d6f5a - sha256: 5aaa366385d716557e365f0a4e9c3fca43ba196872abbbe3d56bb610d131e192 + md5: ad659d0a2b3e47e38d829aa8cad2d610 + sha256: 1d30098909076af33a35017eed6f2953af1c769e273a0626a04722ac4acaba3c category: main optional: false - name: ucrt @@ -4101,108 +4353,110 @@ package: category: main optional: false - name: urllib3 - version: 2.5.0 + version: 2.7.0 manager: conda platform: linux-64 dependencies: - brotli-python: '>=1.0.9' + backports.zstd: '>=1.0.0' + brotli-python: '>=1.2.0' 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 + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/urllib3-2.7.0-pyhd8ed1ab_0.conda hash: - md5: 436c165519e140cb08d246a4472a9d6a - sha256: 4fb9789154bd666ca74e428d973df81087a697dbb987775bc3198d2215f240f8 + md5: cbb88288f74dbe6ada1c6c7d0a97223e + sha256: feff959a816f7988a0893201aa9727bbb7ee1e9cec2c4f0428269b489eb93fb4 category: dev optional: true - name: urllib3 - version: 2.5.0 + version: 2.7.0 manager: conda platform: win-64 dependencies: - brotli-python: '>=1.0.9' + backports.zstd: '>=1.0.0' + brotli-python: '>=1.2.0' 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 + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/urllib3-2.7.0-pyhd8ed1ab_0.conda hash: - md5: 436c165519e140cb08d246a4472a9d6a - sha256: 4fb9789154bd666ca74e428d973df81087a697dbb987775bc3198d2215f240f8 + md5: cbb88288f74dbe6ada1c6c7d0a97223e + sha256: feff959a816f7988a0893201aa9727bbb7ee1e9cec2c4f0428269b489eb93fb4 category: dev optional: true - name: vc - version: '14.3' + version: '14.5' manager: conda platform: win-64 dependencies: - vc14_runtime: '>=14.42.34433' - url: https://repo.prefix.dev/conda-forge/win-64/vc-14.3-h2b53caa_32.conda + vc14_runtime: '>=14.51.36231' + url: https://repo.prefix.dev/conda-forge/win-64/vc-14.5-h1b7c187_39.conda hash: - md5: ef02bbe151253a72b8eda264a935db66 - sha256: 82250af59af9ff3c6a635dd4c4764c631d854feb334d6747d356d949af44d7cf + md5: 2eacea63f545b97342da520df6854276 + sha256: 17693b60cb54f80c60275f003f3bfc1b128af56dbfd65c4fae37c64eeb755ce1 category: main optional: false - name: vc14_runtime - version: 14.44.35208 + version: 14.51.36231 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_32.conda + vcomp14: 14.51.36231 + url: https://repo.prefix.dev/conda-forge/win-64/vc14_runtime-14.51.36231-h1b9f54f_39.conda hash: - md5: 378d5dcec45eaea8d303da6f00447ac0 - sha256: e3a3656b70d1202e0d042811ceb743bd0d9f7e00e2acdf824d231b044ef6c0fd + md5: 06a5bf5a1ca16cce0df6eaa91fc42bc2 + sha256: 8153ed849c92e891eacac0f2f8d7ecb79f9b5fd7f7917fbb896f252a60a40390 category: main optional: false - name: vcomp14 - version: 14.44.35208 + version: 14.51.36231 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_32.conda + url: https://repo.prefix.dev/conda-forge/win-64/vcomp14-14.51.36231-h1b9f54f_39.conda hash: - md5: 58f67b437acbf2764317ba273d731f1d - sha256: f3790c88fbbdc55874f41de81a4237b1b91eab75e05d0e58661518ff04d2a8a1 + md5: 8b53a83fda40ec679e4d63fa32fae989 + sha256: 07fb14713c4bc62e2533a2e23a363abfb0e65650681fba0ae4c840e2219350f3 category: main optional: false - name: vs2015_runtime - version: 14.44.35208 + version: 14.51.36231 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_32.conda + vc14_runtime: '>=14.51.36231' + url: https://repo.prefix.dev/conda-forge/win-64/vs2015_runtime-14.51.36231-h84cd919_39.conda hash: - md5: dfc1e5bbf1ecb0024a78e4e8bd45239d - sha256: 65cea43f4de99bc81d589e746c538908b2e95aead9042fecfbc56a4d14684a87 + md5: 2ccc63d7b7d066a814ed9f99072832d7 + sha256: 6de6c2cf008fc2dce61060b583f2d8494c83883106952b201381b6b0505f03d7 category: main optional: false - name: wheel - version: 0.45.1 + version: 0.47.0 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.47.0-pyhd8ed1ab_0.conda hash: - md5: 75cb7132eb58d97896e173ef12ac9986 - sha256: 1b34021e815ff89a4d902d879c3bd2040bc1bd6169b32e9427497fa05c55f1ce + md5: d0e3b2f0030cf4fca58bde71d246e94c + sha256: 9e156ffaefb8463437144326ada4b85d1de17961b9997ac5f1cbbaf747bd8bed category: main optional: false - name: wheel - version: 0.45.1 + version: 0.47.0 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.47.0-pyhd8ed1ab_0.conda hash: - md5: 75cb7132eb58d97896e173ef12ac9986 - sha256: 1b34021e815ff89a4d902d879c3bd2040bc1bd6169b32e9427497fa05c55f1ce + md5: d0e3b2f0030cf4fca58bde71d246e94c + sha256: 9e156ffaefb8463437144326ada4b85d1de17961b9997ac5f1cbbaf747bd8bed category: main optional: false - name: win_inet_pton @@ -4224,11 +4478,11 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxau-1.0.12-hb9d3cd8_0.conda + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxau-1.0.12-hb03c661_1.conda hash: - md5: f6ebe2cb3f82ba6c057dde5d9debe4f7 - sha256: ed10c9283974d311855ae08a16dfd7e56241fac632aec3b92e3cfe73cff31038 + md5: b2895afaf55bf96a8c8282a2e47a5de0 + sha256: 6bc6ab7a90a5d8ac94c7e300cc10beb0500eeba4b99822768ca2f2ef356f731b category: main optional: false - name: xorg-libxau @@ -4236,13 +4490,13 @@ package: manager: conda platform: win-64 dependencies: - libgcc: '>=13' + 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-h0e40799_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/xorg-libxau-1.0.12-hba3369d_1.conda hash: - md5: 2ffbfae4548098297c033228256eb96e - sha256: 047836241b2712aab1e29474a6f728647bff3ab57de2806b0bb0a6cf9a2d2634 + md5: 8436cab9a76015dfe7208d3c9f97c156 + sha256: 156a583fa43609507146de1c4926172286d92458c307bb90871579601f6bc568 category: main optional: false - name: xorg-libxdmcp @@ -4251,11 +4505,11 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb9d3cd8_0.conda + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb03c661_1.conda hash: - md5: 8035c64cb77ed555e3f150b7b3972480 - sha256: 6b250f3e59db07c2514057944a3ea2044d6a8cdde8a47b6497c254520fade1ee + md5: 1dafce8548e38671bea82e3f5c6ce22f + sha256: 25d255fb2eef929d21ff660a0c687d38a6d2ccfbcbf0cc6aa738b12af6e9d142 category: main optional: false - name: xorg-libxdmcp @@ -4263,13 +4517,13 @@ package: manager: conda platform: win-64 dependencies: - libgcc: '>=13' + 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-h0e40799_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/xorg-libxdmcp-1.1.5-hba3369d_1.conda hash: - md5: 8393c0f7e7870b4eb45553326f81f0ff - sha256: 9075f98dcaa8e9957e4a3d9d30db05c7578a536950a31c200854c5c34e1edb2c + md5: a7c03e38aa9c0e84d41881b9236eacfb + sha256: 366b8ae202c3b48958f0b8784bbfdc37243d3ee1b1cd4b8e76c10abe41fa258b category: main optional: false - name: yaml @@ -4308,10 +4562,10 @@ package: _openmp_mutex: '>=4.5' libgcc: '>=14' libstdcxx: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/zfp-1.0.1-h909a3a2_3.conda + url: https://repo.prefix.dev/conda-forge/linux-64/zfp-1.0.1-h909a3a2_5.conda hash: - md5: 03b04e4effefa41aee638f8ba30a6e78 - sha256: d9051184638fe0c24985b31b29b434ad52c77923e4802c7580da3a60ad9f167b + md5: 6a0eb48e58684cca4d7acc8b7a0fd3c7 + sha256: 5fabe6cccbafc1193038862b0b0d784df3dae84bc48f12cac268479935f9c8b7 category: main optional: false - name: zfp @@ -4322,194 +4576,363 @@ package: 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_3.conda + url: https://repo.prefix.dev/conda-forge/win-64/zfp-1.0.1-h2f0f97f_5.conda hash: - md5: 5271240cefc21317492a2ea772fa8f69 - sha256: 9acca4ee1d923a575e6c3a3933a4df1b164b5b57f5eb092fe4d57d3149c8e261 + md5: 1332dbc707144a0a17ca64c3d379c8bd + sha256: 186d7d6ebf2408377be20ed854c928b178e4e758cf9a27f0ee1336a2329a2345 category: main optional: false - name: zipp - version: 3.23.0 + version: 4.1.0 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/zipp-3.23.0-pyhd8ed1ab_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/zipp-4.1.0-pyhcf101f3_0.conda hash: - md5: df5e78d904988eb55042c0c97446079f - sha256: 7560d21e1b021fd40b65bfb72f67945a3fcb83d78ad7ccf37b8b3165ec3b68ad - category: main - optional: false + md5: ba3dcdc8584155c97c648ae9c044b7a3 + sha256: 210bd31c22bb88f5e2a167df24c95bb5f152b2ada7502f9b8c49d1f5366db423 + category: dev + optional: true - name: zipp - version: 3.23.0 + version: 4.1.0 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/zipp-3.23.0-pyhd8ed1ab_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/zipp-4.1.0-pyhcf101f3_0.conda hash: - md5: df5e78d904988eb55042c0c97446079f - sha256: 7560d21e1b021fd40b65bfb72f67945a3fcb83d78ad7ccf37b8b3165ec3b68ad - category: main - optional: false + md5: ba3dcdc8584155c97c648ae9c044b7a3 + sha256: 210bd31c22bb88f5e2a167df24c95bb5f152b2ada7502f9b8c49d1f5366db423 + category: dev + optional: true - name: zlib-ng - version: 2.2.5 + 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.2.5-hde8ca8f_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/zlib-ng-2.3.3-hceb46e0_1.conda hash: - md5: 1920c3502e7f6688d650ab81cd3775fd - sha256: 3a8e7798deafd0722b6b5da50c36b7f361a80b30165d600f7760d569a162ff95 + md5: 2aadb0d17215603a82a2a6b0afd9a4cb + sha256: ea4e50c465d70236408cb0bfe0115609fd14db1adcd8bd30d8918e0291f8a75f category: main optional: false - name: zlib-ng - version: 2.2.5 + 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.2.5-h32d8bfd_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/zlib-ng-2.3.3-h0261ad2_1.conda hash: - md5: dec092b1a069abafc38655ded65a7b29 - sha256: 67a3113acf3506f1cf1c72e0748742217a20edc6c1c1c19631f901c5e028d2bc + md5: 46a21c0a4e65f1a135251fc7c8663f83 + sha256: 71332532332d13b5dbe57074ddcf82ae711bdc132affa5a2982a29ffa06dc234 category: main optional: false -- name: zstandard - version: 0.25.0 +- name: zstd + version: 1.5.7 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - cffi: '>=1.11' - libgcc: '>=14' - python: '' - python_abi: 3.12.* - zstd: '>=1.5.7,<1.5.8.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/zstandard-0.25.0-py312h5253ce2_1.conda + libzlib: '>=1.3.1,<2.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb78ec9c_6.conda hash: - md5: 02738ff9855946075cbd1b5274399a41 - sha256: c2bcb8aa930d6ea3c9c7a64fc4fab58ad7bcac483a9a45de294f67d2f447f413 - category: dev - optional: true -- name: zstandard - version: 0.25.0 + md5: 4a13eeac0b5c8e5b8ab496e6c4ddd829 + sha256: 68f0206ca6e98fea941e5717cec780ed2873ffabc0e1ed34428c061e2c6268c7 + category: main + optional: false +- name: zstd + version: 1.5.7 manager: conda platform: win-64 dependencies: - cffi: '>=1.11' - python: '' - python_abi: 3.12.* + 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.5.8.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/zstandard-0.25.0-py312he5662c2_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/zstd-1.5.7-h534d264_6.conda hash: - md5: e9e25949b682e95535068bae33153ba6 - sha256: 49241574c373331ae63d9cb4978836db3b2571176a7db81fe48436c84ce38ff4 - category: dev - optional: true -- name: zstd - version: 1.5.7 - manager: conda + md5: 053b84beec00b71ea8ff7a4f84b55207 + sha256: 368d8628424966fd8f9c8018326a9c779e06913dd39e646cf331226acc90e5b2 + category: main + optional: false +- name: contourpy + version: 1.3.3 + manager: pip platform: linux-64 dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - libstdcxx: '>=13' - libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb8e6e7a_2.conda + numpy: '>=1.25' + url: https://files.pythonhosted.org/packages/cc/8f/ec6289987824b29529d0dfda0d74a07cec60e54b9c92f3c9da4c0ac732de/contourpy-1.3.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl hash: - md5: 6432cb5d4ac0046c3ac0a8a0f95842f9 - sha256: a4166e3d8ff4e35932510aaff7aa90772f84b4d07e9f6f83c614cba7ceefe0eb + sha256: 4d00e655fcef08aba35ec9610536bfe90267d7ab5ba944f7032549c55a146da1 category: main optional: false -- name: zstd - version: 1.5.7 - manager: conda +- name: contourpy + version: 1.3.3 + manager: pip platform: win-64 dependencies: - libzlib: '>=1.3.1,<2.0a0' - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/zstd-1.5.7-hbeecb71_2.conda + numpy: '>=1.25' + url: https://files.pythonhosted.org/packages/19/e8/6026ed58a64563186a9ee3f29f41261fd1828f527dd93d33b60feca63352/contourpy-1.3.3-cp312-cp312-win_amd64.whl + hash: + sha256: 8153b8bfc11e1e4d75bcb0bff1db232f9e10b274e0929de9d608027e0d34ff8b + category: main + optional: false +- name: cycler + version: 0.12.1 + manager: pip + platform: linux-64 + dependencies: {} + url: https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl + hash: + sha256: 85cef7cff222d8644161529808465972e51340599459b8ac3ccbac5a854e0d30 + category: main + optional: false +- name: cycler + version: 0.12.1 + manager: pip + platform: win-64 + dependencies: {} + url: https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl + hash: + sha256: 85cef7cff222d8644161529808465972e51340599459b8ac3ccbac5a854e0d30 + category: main + optional: false +- name: fonttools + version: 4.63.0 + manager: pip + platform: linux-64 + dependencies: {} + url: https://files.pythonhosted.org/packages/77/c7/2342da9830e3e9d4870305ca5d2091d2a83284f2953079b7bdd3b5e029d8/fonttools-4.63.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl hash: - md5: 21f56217d6125fb30c3c3f10c786d751 - sha256: bc64864377d809b904e877a98d0584f43836c9f2ef27d3d2a1421fa6eae7ca04 + sha256: 58dc6bb86a78d782f00f9190ca02c119cf5bbe2807536e361e18d42019f877d8 + category: main + optional: false +- name: fonttools + version: 4.63.0 + manager: pip + platform: win-64 + dependencies: {} + url: https://files.pythonhosted.org/packages/87/36/cccb9bc2a6ab63d1b2980374f0dca72ce95ae267c9b4cfe77455bb70d0d4/fonttools-4.63.0-cp312-cp312-win_amd64.whl + hash: + sha256: 59ac449f8cca9b4ffa08d2e7bbadad87ce710d69d1eda5c3c1ce579baa987272 category: main optional: false - name: geoapps-utils - version: 0.7.0a1.dev3+80c4658 + version: 0.7.0b2.dev1+31e1f71 manager: pip platform: linux-64 dependencies: - geoh5py: 0.12.0b4.dev18+8f630a84 - numpy: '>=1.26.0,<1.27.0' - pydantic: '>=2.5.2,<3.0.0' - scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@80c46588d47b70a1dd26aef06ccfa24bc1585502 + geoh5py: '>=0.13.0b1,<0.14.dev0' + 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@31e1f71c37347154e97e6b07e068f7979a67832c hash: - sha256: 80c46588d47b70a1dd26aef06ccfa24bc1585502 + sha256: 31e1f71c37347154e97e6b07e068f7979a67832c source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@80c46588d47b70a1dd26aef06ccfa24bc1585502 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@31e1f71c37347154e97e6b07e068f7979a67832c category: main optional: false - name: geoapps-utils - version: 0.7.0a1.dev3+80c4658 + version: 0.7.0b2.dev1+31e1f71 manager: pip platform: win-64 dependencies: - geoh5py: 0.12.0b4.dev18+8f630a84 - numpy: '>=1.26.0,<1.27.0' - pydantic: '>=2.5.2,<3.0.0' - scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@80c46588d47b70a1dd26aef06ccfa24bc1585502 + geoh5py: '>=0.13.0b1,<0.14.dev0' + 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@31e1f71c37347154e97e6b07e068f7979a67832c hash: - sha256: 80c46588d47b70a1dd26aef06ccfa24bc1585502 + sha256: 31e1f71c37347154e97e6b07e068f7979a67832c source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@80c46588d47b70a1dd26aef06ccfa24bc1585502 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@31e1f71c37347154e97e6b07e068f7979a67832c category: main optional: false - name: geoh5py - version: 0.12.0b4.dev18+8f630a84 + version: 0.13.0b2 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.5.2,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@8f630a84b2b9f2b7632f895e1521d8d61c04e80e + h5py: '>=3.15.0,<3.16.0' + numpy: '>=2.4.0,<2.5.0' + pillow: '>=12.2.0,<12.3.0' + psutil: '>=7.2.2,<7.3.0' + pydantic: '>=2.12.0,<2.13.0' + url: git+https://github.com/MiraGeoscience/geoh5py.git@37016b8cbe1db7d880c9c2ae724d48ab09962c28 hash: - sha256: 8f630a84b2b9f2b7632f895e1521d8d61c04e80e + sha256: 37016b8cbe1db7d880c9c2ae724d48ab09962c28 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@8f630a84b2b9f2b7632f895e1521d8d61c04e80e + url: git+https://github.com/MiraGeoscience/geoh5py.git@37016b8cbe1db7d880c9c2ae724d48ab09962c28 category: main optional: false - name: geoh5py - version: 0.12.0b4.dev18+8f630a84 + version: 0.13.0b2 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.5.2,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@8f630a84b2b9f2b7632f895e1521d8d61c04e80e + h5py: '>=3.15.0,<3.16.0' + numpy: '>=2.4.0,<2.5.0' + pillow: '>=12.2.0,<12.3.0' + psutil: '>=7.2.2,<7.3.0' + pydantic: '>=2.12.0,<2.13.0' + url: git+https://github.com/MiraGeoscience/geoh5py.git@37016b8cbe1db7d880c9c2ae724d48ab09962c28 hash: - sha256: 8f630a84b2b9f2b7632f895e1521d8d61c04e80e + sha256: 37016b8cbe1db7d880c9c2ae724d48ab09962c28 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@8f630a84b2b9f2b7632f895e1521d8d61c04e80e + url: git+https://github.com/MiraGeoscience/geoh5py.git@37016b8cbe1db7d880c9c2ae724d48ab09962c28 + category: main + optional: false +- name: kiwisolver + version: 1.5.0 + manager: pip + platform: linux-64 + dependencies: {} + url: https://files.pythonhosted.org/packages/c4/13/680c54afe3e65767bed7ec1a15571e1a2f1257128733851ade24abcefbcc/kiwisolver-1.5.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl + hash: + sha256: bb5136fb5352d3f422df33f0c879a1b0c204004324150cc3b5e3c4f310c9049f + category: main + optional: false +- name: kiwisolver + version: 1.5.0 + manager: pip + platform: win-64 + dependencies: {} + url: https://files.pythonhosted.org/packages/ad/cf/0348374369ca588f8fe9c338fae49fa4e16eeb10ffb3d012f23a54578a9e/kiwisolver-1.5.0-cp312-cp312-win_amd64.whl + hash: + sha256: f18c2d9782259a6dc132fdc7a63c168cbc74b35284b6d75c673958982a378384 + category: main + optional: false +- name: matplotlib + version: 3.10.9 + manager: pip + platform: linux-64 + dependencies: + contourpy: '>=1.0.1' + cycler: '>=0.10' + fonttools: '>=4.22.0' + kiwisolver: '>=1.3.1' + numpy: '>=1.23' + packaging: '>=20.0' + pillow: '>=8' + pyparsing: '>=3' + python-dateutil: '>=2.7' + url: https://files.pythonhosted.org/packages/32/91/d024616abdba99e83120e07a20658976f6a343646710760c4a51df126029/matplotlib-3.10.9-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl + hash: + sha256: ae20801130378b82d647ff5047c07316295b68dc054ca6b3c13519d0ea624285 + category: main + optional: false +- name: matplotlib + version: 3.10.9 + manager: pip + platform: win-64 + dependencies: + contourpy: '>=1.0.1' + cycler: '>=0.10' + fonttools: '>=4.22.0' + kiwisolver: '>=1.3.1' + numpy: '>=1.23' + packaging: '>=20.0' + pillow: '>=8' + pyparsing: '>=3' + python-dateutil: '>=2.7' + url: https://files.pythonhosted.org/packages/04/a1/4571fc46e7702de8d0c2dc54ad1b2f8e29328dea3ee90831181f7353d93c/matplotlib-3.10.9-cp312-cp312-win_amd64.whl + hash: + sha256: d091f9d758b34aaaaa6331d13574bf01891d903b3dec59bfff458ef7551de5d6 + category: main + optional: false +- name: psutil + version: 7.2.2 + manager: pip + platform: linux-64 + dependencies: {} + url: https://files.pythonhosted.org/packages/b5/70/5d8df3b09e25bce090399cf48e452d25c935ab72dad19406c77f4e828045/psutil-7.2.2-cp36-abi3-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl + hash: + sha256: 076a2d2f923fd4821644f5ba89f059523da90dc9014e85f8e45a5774ca5bc6f9 + category: main + optional: false +- name: psutil + version: 7.2.2 + manager: pip + platform: win-64 + dependencies: {} + url: https://files.pythonhosted.org/packages/b4/90/e2159492b5426be0c1fef7acba807a03511f97c5f86b3caeda6ad92351a7/psutil-7.2.2-cp37-abi3-win_amd64.whl + hash: + sha256: eb7e81434c8d223ec4a219b5fc1c47d0417b12be7ea866e24fb5ad6e84b3d988 + category: main + optional: false +- name: pyparsing + version: 3.3.2 + manager: pip + platform: linux-64 + dependencies: {} + url: https://files.pythonhosted.org/packages/10/bd/c038d7cc38edc1aa5bf91ab8068b63d4308c66c4c8bb3cbba7dfbc049f9c/pyparsing-3.3.2-py3-none-any.whl + hash: + sha256: 850ba148bd908d7e2411587e247a1e4f0327839c40e2e5e6d05a007ecc69911d + category: main + optional: false +- name: pyparsing + version: 3.3.2 + manager: pip + platform: win-64 + dependencies: {} + url: https://files.pythonhosted.org/packages/10/bd/c038d7cc38edc1aa5bf91ab8068b63d4308c66c4c8bb3cbba7dfbc049f9c/pyparsing-3.3.2-py3-none-any.whl + hash: + sha256: 850ba148bd908d7e2411587e247a1e4f0327839c40e2e5e6d05a007ecc69911d + category: main + optional: false +- name: python-dateutil + version: 2.9.0.post0 + manager: pip + platform: linux-64 + dependencies: + six: '>=1.5' + url: https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl + hash: + sha256: a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427 + category: main + optional: false +- name: python-dateutil + version: 2.9.0.post0 + manager: pip + platform: win-64 + dependencies: + six: '>=1.5' + url: https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl + hash: + sha256: a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427 + category: main + optional: false +- name: six + version: 1.17.0 + manager: pip + platform: linux-64 + dependencies: {} + url: https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl + hash: + sha256: 4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274 + category: main + optional: false +- name: six + version: 1.17.0 + manager: pip + platform: win-64 + dependencies: {} + url: https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl + hash: + sha256: 4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274 category: main optional: false diff --git a/py-3.11.conda-lock.yml b/py-3.13.conda-lock.yml similarity index 54% rename from py-3.11.conda-lock.yml rename to py-3.13.conda-lock.yml index c777d22..5804592 100644 --- a/py-3.11.conda-lock.yml +++ b/py-3.13.conda-lock.yml @@ -5,18 +5,18 @@ # 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 # 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: 08acf3c6eb8e814618ddcc9939eb958324152e2e00a179b495e48418273ad3e1 - linux-64: 94cd3840cb726b8e1470e61ac26aa044434f21a6982071fd7d1b43870f73f707 + win-64: 68d4c5cd077931dc72e0120818f18da0e293191418207ef8c38d0ea5ce60e92e + linux-64: 7ae67d9e4c855c99d4d6233062f675b414eadc3bdd9df3261ddcc4e6fb9c1b5b channels: - url: conda-forge used_env_vars: [] @@ -27,28 +27,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.2 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.2-h57928b3_1.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: 3f37b7054196dc41e6393683087ddfee + sha256: bdf75c8a8c6bbc803c708d5a4e503acebfc24c2e6cefd1ced536b7d26b9281af category: main optional: false - name: _openmp_mutex @@ -56,12 +45,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 @@ -70,11 +59,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 @@ -128,82 +117,402 @@ package: category: main optional: false - name: aom - version: 3.9.1 + version: 3.14.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 + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=14' + libstdcxx: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/aom-3.14.1-pl5321h039972f_1.conda hash: - md5: 346722a0be40f6edc53f12640d301338 - sha256: b08ef033817b5f9f76ce62dfcac7694e7b6b4006420372de22494503decac855 + md5: 5a78a69eb3b50f24b379e9d2a93163ae + sha256: b1d972a9b949a88babee681437535550b3ca5dbca6a23a40dffeb7900fec19fd category: main optional: false - name: aom - version: 3.9.1 + version: 3.14.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 + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/aom-3.14.1-pl5321h06fc181_1.conda hash: - md5: 3d7c14285d3eb3239a76ff79063f27a5 - sha256: 0524d0c0b61dacd0c22ac7a8067f977b1d52380210933b04141f5099c5b6fec7 + md5: 7a8ace8100a48355a34d87386012c57b + sha256: 3033fa8953f7f0c1bb5b89b5af77253badc14a89ba94d743dde3c9159e10fd5e category: main optional: false - name: astroid - version: 4.0.2 + 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.2-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: 3bb887a56ea1eccc5c981111d8bab0be - sha256: 69132d79570383ca62d5c038b0a1e9aa30369f6aad44371100ee06584c63dabb + md5: b9a5074b980b555420188db0ccf3cc20 + sha256: 38ab850ede7fbbea4ae452c4d1b8264669bbc1bed7d2e23d974c0ee28fade63e category: dev optional: true - name: astroid - version: 4.0.2 + 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.2-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: 06910d158185318e16063ca1ebba688a - sha256: c9212886ff75e0ce4f809a0319da3aea63a1f43ca0c4d9af1e34eb7e89430c91 + md5: 0bde1b76c96e6af8ae0f71a466dda5b4 + sha256: 599ce66ba762cffdb067ff1688db73e06a5fee97d15def002705912893348ff3 category: dev optional: true +- name: aws-c-auth + version: 0.10.3 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + aws-c-cal: '>=0.9.14,<0.9.15.0a0' + aws-c-common: '>=0.14.0,<0.14.1.0a0' + aws-c-http: '>=0.11.0,<0.11.1.0a0' + aws-c-io: '>=0.26.3,<0.26.4.0a0' + aws-c-sdkutils: '>=0.2.4,<0.2.5.0a0' + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-auth-0.10.3-hea842a7_2.conda + hash: + md5: c463d2dbfb12a208c943165d2a568db4 + sha256: 5b9c20a38fe084b4ffd1f2c64b3797ec6ef9a99e83cc0c1f84e016c9801e3a5c + category: main + optional: false +- name: aws-c-auth + version: 0.10.3 + manager: conda + platform: win-64 + dependencies: + aws-c-cal: '>=0.9.14,<0.9.15.0a0' + aws-c-common: '>=0.14.0,<0.14.1.0a0' + aws-c-http: '>=0.11.0,<0.11.1.0a0' + aws-c-io: '>=0.26.3,<0.26.4.0a0' + aws-c-sdkutils: '>=0.2.4,<0.2.5.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-auth-0.10.3-h75b6777_2.conda + hash: + md5: f19119948955d3f12c96e1922f92159b + sha256: 24a2fed6fd65e5af176025bbe1af91baf43d0beb037ee8513ae47f3221a8f89e + category: main + optional: false +- name: aws-c-cal + version: 0.9.14 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + aws-c-common: '>=0.14.0,<0.14.1.0a0' + libgcc: '>=14' + openssl: '>=3.5.6,<4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-cal-0.9.14-h78948cc_2.conda + hash: + md5: fe81235aae00f32df8584267b4f2daf8 + sha256: 06a0e2af439b21c94adff8fac5dd66dbda5f182fc80ac635c4903959ea306cbb + category: main + optional: false +- name: aws-c-cal + version: 0.9.14 + manager: conda + platform: win-64 + dependencies: + aws-c-common: '>=0.14.0,<0.14.1.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-cal-0.9.14-h270aff2_2.conda + hash: + md5: 190c386d7a6c6c53ea819d3e5078c502 + sha256: 5a5135cc6058ee3ef137eca20ee034e632f5bbc324ceedd931ddffe20c1dac71 + category: main + optional: false +- name: aws-c-common + version: 0.14.0 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-common-0.14.0-hb03c661_0.conda + hash: + md5: f1c005b2e3b618706112ddd7f3af4521 + sha256: 6d2b33965bf6daeffd3ad336f41410053ff06ed6f2b2ce62c1ec27c0a39b4e7e + category: main + optional: false +- name: aws-c-common + version: 0.14.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/aws-c-common-0.14.0-hfd05255_0.conda + hash: + md5: 535d224f288e8b2366b71f390f5d52fd + sha256: 72d414cfaf47911467d5c5b4bb196f0ab1c3106053dda04d03ffbdef94ce7714 + category: main + optional: false +- name: aws-c-compression + version: 0.3.2 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + aws-c-common: '>=0.14.0,<0.14.1.0a0' + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-compression-0.3.2-haa0cbde_2.conda + hash: + md5: 595911421e25551e36fde7027bf33f38 + sha256: 0e4952f9be8de7f281ca7d734a3a8f05ad0db856c6ef1e0897798c4afbcd9a54 + category: main + optional: false +- name: aws-c-compression + version: 0.3.2 + manager: conda + platform: win-64 + dependencies: + aws-c-common: '>=0.14.0,<0.14.1.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-compression-0.3.2-h1f21522_2.conda + hash: + md5: bf8202d63ba3ccf63f8f0d560b484611 + sha256: d46d9152e81d566666520fe751d7d063bc14a6d57c267f5aca0c882d2425f106 + category: main + optional: false +- name: aws-c-http + version: 0.11.0 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + aws-c-cal: '>=0.9.14,<0.9.15.0a0' + aws-c-common: '>=0.14.0,<0.14.1.0a0' + aws-c-compression: '>=0.3.2,<0.3.3.0a0' + aws-c-io: '>=0.26.3,<0.26.4.0a0' + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-http-0.11.0-h6488f85_2.conda + hash: + md5: da0be1e8cb4a43c876f26d9d812dea06 + sha256: d2b844db1a4dfbc20b5129b7df4a656c1459c5fb16745101bbd802813ba8d411 + category: main + optional: false +- name: aws-c-http + version: 0.11.0 + manager: conda + platform: win-64 + dependencies: + aws-c-cal: '>=0.9.14,<0.9.15.0a0' + aws-c-common: '>=0.14.0,<0.14.1.0a0' + aws-c-compression: '>=0.3.2,<0.3.3.0a0' + aws-c-io: '>=0.26.3,<0.26.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/aws-c-http-0.11.0-h4721ae0_2.conda + hash: + md5: 8292db4a8957ea01e74ad9c2bf75b45f + sha256: 121556c3169b5b9a3e458ce8d7f438f7dfaf583820727ec53c2d0c216bbad73a + category: main + optional: false +- name: aws-c-io + version: 0.26.3 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + aws-c-cal: '>=0.9.14,<0.9.15.0a0' + aws-c-common: '>=0.14.0,<0.14.1.0a0' + libgcc: '>=14' + s2n: '>=1.7.3,<1.7.4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-io-0.26.3-h5b668fc_4.conda + hash: + md5: 555400dce62f2d989ff77761c010d166 + sha256: c27b972325342f062da00b7aa2d5abf6f3ce55668a05703a175be958745cc226 + category: main + optional: false +- name: aws-c-io + version: 0.26.3 + manager: conda + platform: win-64 + dependencies: + aws-c-cal: '>=0.9.14,<0.9.15.0a0' + aws-c-common: '>=0.14.0,<0.14.1.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-io-0.26.3-h1a62f66_4.conda + hash: + md5: 58910370661966dcf2f7d4367ef494ec + sha256: be9dbd4f1f5decd56c48613531b130fa7f8a0c43dca7dcbbd14253b897f66517 + category: main + optional: false +- name: aws-c-s3 + version: 0.12.5 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + aws-c-auth: '>=0.10.3,<0.10.4.0a0' + aws-c-cal: '>=0.9.14,<0.9.15.0a0' + aws-c-common: '>=0.14.0,<0.14.1.0a0' + aws-c-http: '>=0.11.0,<0.11.1.0a0' + aws-c-io: '>=0.26.3,<0.26.4.0a0' + aws-checksums: '>=0.2.10,<0.2.11.0a0' + libgcc: '>=14' + openssl: '>=3.5.6,<4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-s3-0.12.5-hb916526_1.conda + hash: + md5: 70bc8e5e8cefd19407423733e7ebf540 + sha256: 8f193173f1dccb25ff86a95543db27f0c762cccfe93157b02cf20bd5b4c11a92 + category: main + optional: false +- name: aws-c-s3 + version: 0.12.5 + manager: conda + platform: win-64 + dependencies: + aws-c-auth: '>=0.10.3,<0.10.4.0a0' + aws-c-cal: '>=0.9.14,<0.9.15.0a0' + aws-c-common: '>=0.14.0,<0.14.1.0a0' + aws-c-http: '>=0.11.0,<0.11.1.0a0' + aws-c-io: '>=0.26.3,<0.26.4.0a0' + aws-checksums: '>=0.2.10,<0.2.11.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-s3-0.12.5-h425879c_1.conda + hash: + md5: 0329818a49b00c486916f6d7d5b65a71 + sha256: bde30210fe7d355227bf303a582ff11e340ac685156139cd7a9ef08dfe6c037f + category: main + optional: false +- name: aws-c-sdkutils + version: 0.2.4 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + aws-c-common: '>=0.14.0,<0.14.1.0a0' + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-sdkutils-0.2.4-haa0cbde_6.conda + hash: + md5: 4b66ac29a7e917a629b790c3d239d110 + sha256: 123c4325b16f1f6db95846d51e5e4201399ee29c0325f8b5a8db2e7d732b9151 + category: main + optional: false +- name: aws-c-sdkutils + version: 0.2.4 + manager: conda + platform: win-64 + dependencies: + aws-c-common: '>=0.14.0,<0.14.1.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/aws-c-sdkutils-0.2.4-h1f21522_6.conda + hash: + md5: c1380960068cc10d06ddcab8cb97f439 + sha256: bd47b93b91ecb7d7ff82be44bb70e109f7cbb7c512c4579772652c46cbdf6597 + category: main + optional: false +- name: aws-checksums + version: 0.2.10 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + aws-c-common: '>=0.14.0,<0.14.1.0a0' + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/aws-checksums-0.2.10-haa0cbde_2.conda + hash: + md5: 5c05a63452bf73c50aa272a6f961c4fc + sha256: ad49333d96a5f9bcce02752a6515cbb077d7513e358a8fb1a832f4e772d54bac + category: main + optional: false +- name: aws-checksums + version: 0.2.10 + manager: conda + platform: win-64 + dependencies: + aws-c-common: '>=0.14.0,<0.14.1.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/aws-checksums-0.2.10-h1f21522_2.conda + hash: + md5: f4f71178b5be79f887b2d575400c4133 + sha256: 11fa04b860b263503478dc9ef5d9516fc12078b60ec845e58f2e8fb7076fe264 + category: main + optional: false - 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 + version: 1.6.0 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=14' + python: '' + python_abi: 3.13.* + zstd: '>=1.5.7,<1.6.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/backports.zstd-1.6.0-py313h18e8e13_0.conda + hash: + md5: fbc7d3707f09cae6648e6eb1b6203a5c + sha256: d7aca2b34335035ef80eaaebff4e5a0ae524b6f3792a82a144d38c4a81f42916 + category: dev + optional: true +- name: backports.zstd + version: 1.6.0 + manager: conda + platform: win-64 + dependencies: + python: '' + 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.6.0-py313h2a31948_0.conda + hash: + md5: 144ae232f6f920307f4aadc088137589 + sha256: 65eb354dbaba5925f536613c8d645a6254226eb6c6f16cc6e57033eb97cc0159 category: dev optional: true - name: blosc @@ -250,12 +559,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-py311h7c6b74e_0.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: 645bc783bc723d67a294a51bc860762d - sha256: 5e6858dae1935793a7fa7f46d8975b0596b546c28586cb463dd2fdeba3bcc193 + md5: 6c4d3597cf43f3439a51b2b13e29a4ba + sha256: dadec2879492adede0a9af0191203f9b023f788c18efd45ecac676d424c458ae category: dev optional: true - name: brotli-python @@ -263,15 +572,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-py311h69b5583_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/brotli-python-1.2.0-py313h3ebfc14_1.conda hash: - md5: 2df0b338e8fb85c8bdcb38813165b48b - sha256: ba85fe5b277ad03bfac3c4376dd5c50a2216dea58519edf75a92b7763fb4ea98 + md5: 916a39a0261621b8c33e9db2366dd427 + sha256: 3558006cd6e836de8dff53cbe5f0b9959f96ea6a6776b4e14f1c524916dd956c category: dev optional: true - name: brunsli @@ -298,10 +607,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 @@ -312,27 +621,27 @@ 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 - version: 1.34.5 + version: 1.34.6 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/c-ares-1.34.5-hb9d3cd8_0.conda + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/c-ares-1.34.6-hb03c661_0.conda hash: - md5: f7f0d6cc2dc986d42ac2689ec88192be - sha256: f8003bef369f57396593ccd03d08a8e21966157269426f71e943f96e4b579aeb + md5: 920bb03579f15389b9e512095ad995b7 + sha256: cc9accf72fa028d31c2a038460787751127317dcfa991f8d1f1babf216bb454e category: main optional: false - name: c-blosc2 - version: 2.22.0 + version: 3.1.3 manager: conda platform: linux-64 dependencies: @@ -340,16 +649,16 @@ package: libgcc: '>=14' libstdcxx: '>=14' lz4-c: '>=1.10.0,<1.11.0a0' - zlib-ng: '>=2.2.5,<2.3.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-h4cfbee9_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/c-blosc2-3.1.3-hc31b594_0.conda hash: - md5: bede98a38485d588b3ec7e4ba2e46532 - sha256: c558bce3c6d1707528a9b54b1af321e3d6968e4db3e5addc9dcb906422026490 + md5: 2f0eb57a686a4e27719ce0b0076784a1 + sha256: 4029fb93e133c0de986464c2f1b02630f141f976cb25b5b929994b34a2a51bf5 category: main optional: false - name: c-blosc2 - version: 2.22.0 + version: 3.1.3 manager: conda platform: win-64 dependencies: @@ -357,36 +666,36 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - zlib-ng: '>=2.2.5,<2.3.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-h3cf07e4_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/c-blosc2-3.1.3-h2af8807_0.conda hash: - md5: ab0d849766a52945ee1d872abf61fb0c - sha256: 522b3bbfcd30d4559aec29228448aa49ca02d1e9c79f4b6da446462042707680 + md5: ed77093408fa5590036ae62cf1c97cd5 + sha256: b90794f6bb4f135d7fbf867b0a883dbaf16e79853b81511d0e5fbcf4e36b1532 category: main optional: false - name: ca-certificates - version: 2025.10.5 + version: 2026.5.20 manager: conda platform: linux-64 dependencies: __unix: '' - url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.10.5-hbd8a1cb_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2026.5.20-hbd8a1cb_0.conda hash: - md5: f9e5fbc24009179e8b0409624691758a - sha256: 3b5ad78b8bb61b6cdc0978a6a99f8dfb2cc789a451378d054698441005ecbdb6 + md5: 489b8e97e666c93f68fdb35c3c9b957f + sha256: 9812a303a1395e1dafbd92e5bc8a1ff6013bcbba0a09c7f03a8d23e43560aa9b category: main optional: false - name: ca-certificates - version: 2025.10.5 + version: 2026.5.20 manager: conda platform: win-64 dependencies: __win: '' - url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.10.5-h4c7d964_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2026.5.20-h4c7d964_0.conda hash: - md5: e54200a1cd1fe33d61c9df8d3b00b743 - sha256: bfb7f9f242f441fdcd80f1199edd2ecf09acea0f2bcef6f07d7cbb1a8131a345 + md5: c9b86eece2f944541b86441c94117ab3 + sha256: 86981d764e4ea1883409d30447ff9da46127426d31a63df08315aaded768e652 category: main optional: false - name: cached-property @@ -438,112 +747,79 @@ package: category: main optional: false - name: certifi - version: 2025.10.5 + version: 2026.5.20 manager: conda platform: linux-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.10.5-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/certifi-2026.5.20-pyhd8ed1ab_0.conda hash: - md5: 257ae203f1d204107ba389607d375ded - sha256: 955bac31be82592093f6bc006e09822cd13daf52b28643c9a6abd38cd5f4a306 + md5: 9fefff2f745ea1cc2ef15211a20c054a + sha256: 645655a3510e38e625da136595f3f16f2130c3263630cc3bc8f60f619ddbe490 category: dev optional: true - name: certifi - version: 2025.10.5 + version: 2026.5.20 manager: conda platform: win-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.10.5-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/certifi-2026.5.20-pyhd8ed1ab_0.conda hash: - md5: 257ae203f1d204107ba389607d375ded - sha256: 955bac31be82592093f6bc006e09822cd13daf52b28643c9a6abd38cd5f4a306 + md5: 9fefff2f745ea1cc2ef15211a20c054a + sha256: 645655a3510e38e625da136595f3f16f2130c3263630cc3bc8f60f619ddbe490 category: dev optional: true -- name: cffi - version: 2.0.0 +- name: charls + version: 2.4.4 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - 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 - hash: - md5: 3912e4373de46adafd8f1e97e4bd166b - sha256: 3ad13377356c86d3a945ae30e9b8c8734300925ef81a3cb0a9db0d755afbe7bb - category: dev - optional: true -- name: cffi - version: 2.0.0 - manager: conda - platform: win-64 - dependencies: - pycparser: '' - 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/cffi-2.0.0-py311h3485c13_1.conda - hash: - md5: f02335db0282d5077df5bc84684f7ff9 - sha256: c9caca6098e3d92b1a269159b759d757518f2c477fbbb5949cb9fee28807c1f1 - category: dev - optional: true -- 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 + libstdcxx: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/charls-2.4.4-hecca717_0.conda hash: - md5: 4336bd67920dd504cd8c6761d6a99645 - sha256: 18f1c43f91ccf28297f92b094c2c8dbe9c6e8241c0d3cbd6cda014a990660fdd + md5: dc7072d888ba25c06d706d9dd4bd48ec + sha256: 285bb88f6229a1eb4772ab805fbc61ef786e27b5e9ca0b6434b13d2a728790bb category: main optional: false - name: charls - version: 2.4.2 + version: 2.4.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/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.4-h7cafa3a_0.conda hash: - md5: 0935766a50dfe44315b62ec0046a8779 - sha256: e6a3eab3fe65389900f39a78dc3bd86bbc030e2a746addb8b69a997495ca867c + md5: 45c00fb3c1b591383953c0385f1afafd + sha256: d82c9d26232fa87829baa82e33cad8a1cb3d2d8835edc9917956b70d18f5e07d category: main optional: false - name: charset-normalizer - version: 3.4.4 + version: 3.4.7 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.7-pyhd8ed1ab_0.conda hash: - md5: a22d1fd9bf98827e280a02875d9a007a - sha256: b32f8362e885f1b8417bac2b3da4db7323faa12d5db62b7fd6691c02d60d6f59 + md5: a9167b9571f3baa9d448faa2139d1089 + sha256: 3f9483d62ce24ecd063f8a5a714448445dc8d9e201147c46699fc0033e824457 category: dev optional: true - name: charset-normalizer - version: 3.4.4 + version: 3.4.7 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.7-pyhd8ed1ab_0.conda hash: - md5: a22d1fd9bf98827e280a02875d9a007a - sha256: b32f8362e885f1b8417bac2b3da4db7323faa12d5db62b7fd6691c02d60d6f59 + md5: a9167b9571f3baa9d448faa2139d1089 + sha256: 3f9483d62ce24ecd063f8a5a714448445dc8d9e201147c46699fc0033e824457 category: dev optional: true - name: colorama @@ -556,8 +832,8 @@ package: hash: md5: 962b9857ee8e7018c22f2776ffa0b2d7 sha256: ab29d57dc70786c1269633ba3dff20288b81664d3ff8d21af995742e2bb03287 - category: main - optional: false + category: dev + optional: true - name: colorama version: 0.4.6 manager: conda @@ -571,36 +847,36 @@ package: category: main optional: false - name: coverage - version: 7.11.3 + version: 7.14.1 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.11.3-py311h3778330_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.14.1-py313h3dea7bd_0.conda hash: - md5: a004ef1df6211f5ca8ca169735cc5bc4 - sha256: 2d85146ba9f96307722a277649f675801d297f4881c13c8135fc3c6b99a15293 + md5: 86bbb569988f077e5cb30acac5799599 + sha256: b4ff99ffe4e60119c2f99fa29234b4267f7e0f43dbf5396dad0f8adaf95284e2 category: dev optional: true - name: coverage - version: 7.11.3 + version: 7.14.1 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.11.3-py311h3f79411_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.14.1-py313hd650c13_0.conda hash: - md5: ac74a5bc837e249598d1276ef318b07f - sha256: d632cb96b66436e0540993cfd6c11b383250b588c6e0f900bbd3064d2631adac + md5: b814bf3906ccacfef0904c17b8e46d69 + sha256: cda15c313312f6fe90489df9b37dd0277fa7dbd4d52f3ea0aad2c48806bc1e55 category: dev optional: true - name: dav1d @@ -630,27 +906,27 @@ package: category: main optional: false - name: dill - version: 0.4.0 + version: 0.4.1 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.1-pyhcf101f3_0.conda hash: - md5: 885745570573eb6a08e021841928297a - sha256: 43dca52c96fde0c4845aaff02bcc92f25e1c2e5266ddefc2eac1a3de0960a3b1 + 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.9' - url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.1-pyhcf101f3_0.conda hash: - md5: 885745570573eb6a08e021841928297a - sha256: 43dca52c96fde0c4845aaff02bcc92f25e1c2e5266ddefc2eac1a3de0960a3b1 + md5: 080a808fce955026bf82107d955d32da + sha256: 1ef84c0cc4efd0c2d58c3cb365945edbd9ee42a1c54514d1ccba4b641005f757 category: dev optional: true - name: docutils @@ -678,57 +954,31 @@ package: category: dev optional: true - name: exceptiongroup - version: 1.3.0 + version: 1.3.1 manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '>=3.10' typing_extensions: '>=4.6.0' - url: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.3.1-pyhd8ed1ab_0.conda hash: - md5: 72e42d28960d875c7654614f8b50939a - sha256: ce61f4f99401a4bd455b89909153b40b9c823276aefcbb06f2044618696009ca + md5: 8e662bd460bda79b1ea39194e3c4c9ab + sha256: ee6cf346d017d954255bbcbdb424cddea4d14e4ed7e9813e429db1d795d01144 category: dev optional: true - name: exceptiongroup - version: 1.3.0 + version: 1.3.1 manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '>=3.10' typing_extensions: '>=4.6.0' - url: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.3.1-pyhd8ed1ab_0.conda hash: - md5: 72e42d28960d875c7654614f8b50939a - sha256: ce61f4f99401a4bd455b89909153b40b9c823276aefcbb06f2044618696009ca + md5: 8e662bd460bda79b1ea39194e3c4c9ab + sha256: ee6cf346d017d954255bbcbdb424cddea4d14e4ed7e9813e429db1d795d01144 category: dev optional: true -- 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: giflib version: 5.2.2 manager: conda @@ -762,7 +1012,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 @@ -776,7 +1026,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 @@ -784,78 +1034,90 @@ package: category: dev optional: true - name: h5py - version: 3.15.1 + version: 3.16.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' cached-property: '' - hdf5: '>=1.14.6,<1.14.7.0a0' + hdf5: '>=2.1.0,<3.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_100.conda + python: '>=3.13,<3.14.0a0' + python_abi: 3.13.* + url: https://repo.prefix.dev/conda-forge/linux-64/h5py-3.16.0-nompi_py313h22c32d4_102.conda hash: - md5: 98374cf8d17901bcd934daa7cc8a28e6 - sha256: ff91ec7c4d9250cee9b41a533a8352ed1501d15136aa7cb0443b663c8317ed6e + md5: 37727e0bcda5059c33c83fdf5b13a9a1 + sha256: 3def6d562885610497befa9dd81c685c53bb027309407797ad9918d4179dda21 category: main optional: false - name: h5py - version: 3.15.1 + version: 3.16.0 manager: conda platform: win-64 dependencies: cached-property: '' - hdf5: '>=1.14.6,<1.14.7.0a0' + hdf5: '>=2.1.0,<3.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_100.conda + url: https://repo.prefix.dev/conda-forge/win-64/h5py-3.16.0-nompi_py313hd050a09_102.conda hash: - md5: cf0bb6634fafb0eec7c5e893332d91e0 - sha256: 5a7a857caff0afad0a8ba1eff3491c16a1bb0228231c01e715dc5d2012de340c + md5: 9e9b344f00e7fa96311ae54de9370a6e + sha256: 5ee4b5608dd1c65b21268627cd590989e4de972ffe2b8e4fe5a93c8c8ed7f54e category: main optional: false - name: hdf5 - version: 1.14.6 + version: 2.1.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libaec: '>=1.1.4,<2.0a0' - libcurl: '>=8.14.1,<9.0a0' + aws-c-auth: '>=0.10.3,<0.10.4.0a0' + aws-c-common: '>=0.14.0,<0.14.1.0a0' + aws-c-http: '>=0.11.0,<0.11.1.0a0' + aws-c-io: '>=0.26.3,<0.26.4.0a0' + aws-c-s3: '>=0.12.5,<0.12.6.0a0' + aws-c-sdkutils: '>=0.2.4,<0.2.5.0a0' + libaec: '>=1.1.5,<2.0a0' + libcurl: '>=8.20.0,<9.0a0' libgcc: '>=14' libgfortran: '' libgfortran5: '>=14.3.0' libstdcxx: '>=14' - libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.5.1,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/hdf5-1.14.6-nompi_h6e4c0c1_103.conda + libzlib: '>=1.3.2,<2.0a0' + openssl: '>=3.5.6,<4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/hdf5-2.1.0-nompi_h735b18d_107.conda hash: - md5: c74d83614aec66227ae5199d98852aaf - sha256: 4f173af9e2299de7eee1af3d79e851bca28ee71e7426b377e841648b51d48614 + md5: b1b444bca8da3ff6cc4afad1fa7f7d61 + sha256: ff8336394dcfaccf49e56d1dd66091cf767df0d3d33f3fa440c980e0445b34cc category: main optional: false - name: hdf5 - version: 1.14.6 + version: 2.1.0 manager: conda platform: win-64 dependencies: - libaec: '>=1.1.4,<2.0a0' - libcurl: '>=8.14.1,<9.0a0' - libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.5.1,<4.0a0' + aws-c-auth: '>=0.10.3,<0.10.4.0a0' + aws-c-common: '>=0.14.0,<0.14.1.0a0' + aws-c-http: '>=0.11.0,<0.11.1.0a0' + aws-c-io: '>=0.26.3,<0.26.4.0a0' + aws-c-s3: '>=0.12.5,<0.12.6.0a0' + aws-c-sdkutils: '>=0.2.4,<0.2.5.0a0' + libaec: '>=1.1.5,<2.0a0' + libcurl: '>=8.20.0,<9.0a0' + libzlib: '>=1.3.2,<2.0a0' + openssl: '>=3.5.6,<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_he30205f_103.conda + url: https://repo.prefix.dev/conda-forge/win-64/hdf5-2.1.0-nompi_h693361b_107.conda hash: - md5: f1f7aaf642cefd2190582550eaca4658 - sha256: 0a90263b97e9860cec6c2540160ff1a1fff2a609b3d96452f8716ae63489dac5 + md5: 077380e6979650049695d5b2765385ed + sha256: 855d0e8eed8284c438d032a030b9a19abebe0b7fa5acc888adff6c782bffb33a category: main optional: false - name: hpack @@ -906,46 +1168,32 @@ package: sha256: 77af6f5fe8b62ca07d09ac60127a30d9069fdc3c68d6b256754d0ffb1f7779f8 category: dev optional: true -- name: icu - version: '75.1' - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://repo.prefix.dev/conda-forge/linux-64/icu-75.1-he02047a_0.conda - hash: - md5: 8b189310083baabfb622af68fd9d3ae3 - sha256: 71e750d509f5fa3421087ba88ef9a7b9be11c53174af3aa4d06aff4c18b38e8e - category: main - optional: false - name: idna - version: '3.11' + version: '3.17' manager: conda platform: linux-64 dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/idna-3.11-pyhd8ed1ab_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/idna-3.17-pyhcf101f3_0.conda hash: - md5: 53abe63df7e10a6ba605dc5f9f961d36 - sha256: ae89d0299ada2a3162c2614a9d26557a92aa6a77120ce142f8e0109bbf0342b0 + md5: c75e517ebd7a5c5272fe111e8b162228 + sha256: f9fe1f9e539c544405ccb7ba632d4ba79edf243c05554d76ace073158a80b691 category: dev optional: true - name: idna - version: '3.11' + version: '3.17' manager: conda platform: win-64 dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/idna-3.11-pyhd8ed1ab_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/idna-3.17-pyhcf101f3_0.conda hash: - md5: 53abe63df7e10a6ba605dc5f9f961d36 - sha256: ae89d0299ada2a3162c2614a9d26557a92aa6a77120ce142f8e0109bbf0342b0 + md5: c75e517ebd7a5c5272fe111e8b162228 + sha256: f9fe1f9e539c544405ccb7ba632d4ba79edf243c05554d76ace073158a80b691 category: dev optional: true - name: imagecodecs - version: 2025.8.2 + version: 2026.6.6 manager: conda platform: linux-64 dependencies: @@ -953,86 +1201,88 @@ 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: '>=3.1.3,<3.2.0a0' + charls: '>=2.4.4,<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' + lcms2: '>=2.19.1,<3.0a0' + lerc: '>=4.1.0,<5.0a0' + libaec: '>=1.1.5,<2.0a0' + libavif16: '>=1.4.2,<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.0,<4.0a0' - libjxl: '>=0.11,<0.12.0a0' - liblzma: '>=5.8.1,<6.0a0' - libpng: '>=1.6.50,<1.7.0a0' + libjpeg-turbo: '>=3.1.4.1,<4.0a0' + libjxl: '>=0.11,<1.0a0' + liblzma: '>=5.8.3,<6.0a0' + libpng: '>=1.6.58,<1.7.0a0' libstdcxx: '>=14' libtiff: '>=4.7.1,<4.8.0a0' libwebp-base: '>=1.6.0,<2.0a0' - libzlib: '>=1.3.1,<2.0a0' + libzlib: '>=1.3.2,<2.0a0' libzopfli: '>=1.0.3,<1.1.0a0' lz4-c: '>=1.10.0,<1.11.0a0' numpy: '>=1.23,<3' openjpeg: '>=2.5.4,<3.0a0' - python: '>=3.11,<3.12.0a0' - python_abi: 3.11.* + openjph: '>=0.28.0,<0.29.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.2.5,<2.3.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-2025.8.2-py311h99464e2_7.conda + url: https://repo.prefix.dev/conda-forge/linux-64/imagecodecs-2026.6.6-py313h0702ed5_1.conda hash: - md5: d5e5430c5b42fc2adb113ff2b3466839 - sha256: f8b9c87dbea2e6f22ca57da36a7235c9952fa7be7b122d20cdc1d5faa7967b10 + md5: 7d0d7d04ab80890c10b3647e0c7a42ea + sha256: afa1675ec133f896c42012f3852c98f3496342a00deb656ac4f3c47eeea3ee0d category: main optional: false - name: imagecodecs - version: 2025.8.2 + version: 2026.6.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: '>=3.1.3,<3.2.0a0' + charls: '>=2.4.4,<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' + lcms2: '>=2.19.1,<3.0a0' + lerc: '>=4.1.0,<5.0a0' + libaec: '>=1.1.5,<2.0a0' + libavif16: '>=1.4.2,<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.0,<4.0a0' - libjxl: '>=0.11,<0.12.0a0' - liblzma: '>=5.8.1,<6.0a0' - libpng: '>=1.6.50,<1.7.0a0' + libjpeg-turbo: '>=3.1.4.1,<4.0a0' + libjxl: '>=0.11,<1.0a0' + liblzma: '>=5.8.3,<6.0a0' + libpng: '>=1.6.58,<1.7.0a0' libtiff: '>=4.7.1,<4.8.0a0' libwebp-base: '>=1.6.0,<2.0a0' - libzlib: '>=1.3.1,<2.0a0' + libzlib: '>=1.3.2,<2.0a0' libzopfli: '>=1.0.3,<1.1.0a0' lz4-c: '>=1.10.0,<1.11.0a0' numpy: '>=1.23,<3' openjpeg: '>=2.5.4,<3.0a0' - python: '>=3.11,<3.12.0a0' - python_abi: 3.11.* + openjph: '>=0.28.0,<0.29.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.2.5,<2.3.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-2025.8.2-py311haf4ede9_7.conda + url: https://repo.prefix.dev/conda-forge/win-64/imagecodecs-2026.6.6-py313h61cc59b_1.conda hash: - md5: 463d2ee214fa02d847d6d356cd8690ab - sha256: 7dadb5fe32a12cc0655545aba6f0204e388148441fb2785621d85d5e2c474b52 + md5: 8db6c817b4a0a5f9eb916f59d732ffbd + sha256: d687bdc6753b334f1802105c4dc7cecf992d5f7913f853d540a8c76ed55d23f2 category: main optional: false - name: imageio @@ -1064,55 +1314,55 @@ 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 - version: 8.7.0 + version: 9.0.0 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 + url: https://repo.prefix.dev/conda-forge/noarch/importlib-metadata-9.0.0-pyhcf101f3_0.conda hash: - md5: 63ccfdc3a3ce25b027b8767eb722fca8 - sha256: c18ab120a0613ada4391b15981d86ff777b5690ca461ea7e9e49531e8f374745 - category: main - optional: false + md5: ffc17e785d64e12fc311af9184221839 + sha256: 43e2a5497cad1598ff88a3e69f69bc88b7b8f141fa63c60eab5db296317318b8 + category: dev + optional: true - name: importlib-metadata - version: 8.7.0 + version: 9.0.0 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 + url: https://repo.prefix.dev/conda-forge/noarch/importlib-metadata-9.0.0-pyhcf101f3_0.conda hash: - md5: 63ccfdc3a3ce25b027b8767eb722fca8 - sha256: c18ab120a0613ada4391b15981d86ff777b5690ca461ea7e9e49531e8f374745 - category: main - optional: false + md5: ffc17e785d64e12fc311af9184221839 + sha256: 43e2a5497cad1598ff88a3e69f69bc88b7b8f141fa63c60eab5db296317318b8 + category: dev + optional: true - name: iniconfig version: 2.3.0 manager: conda @@ -1138,29 +1388,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: jinja2 @@ -1169,11 +1419,11 @@ package: platform: linux-64 dependencies: markupsafe: '>=2.0' - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhcf101f3_1.conda hash: - md5: 446bd6c8cb26050d528881df495ce646 - sha256: f1ac18b11637ddadc05642e8185a851c7fab5998c6f5470d716812fae943b2af + md5: 04558c96691bed63104678757beb4f8d + sha256: fc9ca7348a4f25fed2079f2153ecdcf5f9cf2a0bc36c4172420ca09e1849df7b category: dev optional: true - name: jinja2 @@ -1182,11 +1432,11 @@ package: platform: win-64 dependencies: markupsafe: '>=2.0' - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhcf101f3_1.conda hash: - md5: 446bd6c8cb26050d528881df495ce646 - sha256: f1ac18b11637ddadc05642e8185a851c7fab5998c6f5470d716812fae943b2af + md5: 04558c96691bed63104678757beb4f8d + sha256: fc9ca7348a4f25fed2079f2153ecdcf5f9cf2a0bc36c4172420ca09e1849df7b category: dev optional: true - name: jxrlib @@ -1229,222 +1479,221 @@ package: 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.19.1 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.4.1,<4.0a0' + libtiff: '>=4.7.1,<4.8.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/lcms2-2.19.1-h0c24ade_1.conda hash: - md5: 000e85703f0fd9594c81710dd5066471 - sha256: d6a61830a354da022eae93fa896d0991385a875c6bba53c82263a289deda9db8 + md5: 8b3ce45e929cd8e8e5f4d18586b56d8b + sha256: 112b5b9462572d970f4abd2912f76a25ee7db158b1e7260163d91dd8a630db84 category: main optional: false - name: lcms2 - version: '2.17' + version: 2.19.1 manager: conda platform: win-64 dependencies: - libjpeg-turbo: '>=3.0.0,<4.0a0' - libtiff: '>=4.7.0,<4.8.0a0' + libjpeg-turbo: '>=3.1.4.1,<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.19.1-hf2c6c5f_1.conda hash: - md5: 3538827f77b82a837fa681a4579e37a1 - sha256: 7712eab5f1a35ca3ea6db48ead49e0d6ac7f96f8560da8023e61b3dbe4f3b25d + md5: 1df4012c8a2478699d07bc26af66d41e + sha256: 5ed63a32639a130564a870becb679fd52dfb816666a61ed3c023917389010480 category: main optional: false - name: ld_impl_linux-64 - version: '2.44' + 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.44-h1aa0949_5.conda + url: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.45.1-default_hbd61a6d_102.conda hash: - md5: 511ed8935448c1875776b60ad3daf3a1 - sha256: dab1fbf65abb05d3f2ee49dff90d60eeb2e02039fcb561343c7cea5dea523585 + md5: 18335a698559cdbcd86150a48bf54ba6 + sha256: 3d584956604909ff5df353767f3a2a2f60e07d070b328d109f30ac40cd62df6c 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.2 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - aom: '>=3.9.1,<3.10.0a0' + aom: '>=3.14.1,<3.15.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.2-hf998032_1.conda hash: - md5: c09c4ac973f7992ba0c6bb1aafd77bd4 - sha256: e3a44c0eda23aa15c9a8dfa8c82ecf5c8b073e68a16c29edd0e409e687056d30 + md5: 57845550bac29aeb754615c41b518f74 + sha256: b831161d7c86f7dfeb58d7189176c3314d7c2ccb38b4e1c8b376557ae4238f0b category: main optional: false - name: libavif16 - version: 1.3.0 + version: 1.4.2 manager: conda platform: win-64 dependencies: - _libavif_api: '>=1.3.0,<1.3.1.0a0' - aom: '>=3.9.1,<3.10.0a0' + _libavif_api: '>=1.4.2,<1.4.3.0a0' + aom: '>=3.14.1,<3.15.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.2-h7e7b026_1.conda hash: - md5: 9782ce5bf5a3b41f29533c2c08f6b360 - sha256: dbb3f21282eccba6e4bd70c9db371e081bf09c55f1de7ca90f1106cc199d4a8b + md5: 0cfadc4acdc50ea30484a372cf3207b5 + sha256: a1c7aa4a6a5031704d362edf937f9a1849761efa074d5c3a0a10a3b1dda5a42a category: main optional: false - name: libblas - version: 3.9.0 + version: 3.11.0 manager: conda platform: linux-64 dependencies: - libopenblas: '>=0.3.30,<0.3.31.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libblas-3.9.0-38_h4a7cf45_openblas.conda + libopenblas: '>=0.3.33,<1.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/libblas-3.11.0-8_h4a7cf45_openblas.conda hash: - md5: 3509b5e2aaa5f119013c8969fdd9a905 - sha256: b26a32302194e05fa395d5135699fd04a905c6ad71f24333f97c64874e053623 + md5: 00fc660ab1b2f5ca07e92b4900d10c79 + sha256: b2da6bfd72a1c9cb143ccf64bf5b28790cb4eb58bd1cb978f6537b2322f7d48b category: main optional: false - name: libblas - version: 3.9.0 + 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.9.0-38_hf2e6a31_mkl.conda + mkl: '>=2026.0.0,<2027.0a0' + url: https://repo.prefix.dev/conda-forge/win-64/libblas-3.11.0-8_h8455456_mkl.conda hash: - md5: dcee15907da751895e20b4d1ac94568d - sha256: 363920dbd6a4c09f419a4e032568d5468dc9196e8c9e401af4e8026ecf88f2b7 + md5: 4a0ce24b1a946ff77ae9eaa7ef015a33 + sha256: 43a87b59e6d4c68d80b2e4de487b1b54d66fe1f9a06636909b5a5ab9eae27269 category: main optional: false - name: libbrotlicommon @@ -1454,10 +1703,10 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlicommon-1.2.0-h09219d5_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlicommon-1.2.0-hb03c661_1.conda hash: - md5: 9b3117ec960b823815b02190b41c0484 - sha256: fbbcd11742bb8c96daa5f4f550f1804a902708aad2092b39bec3faaa2c8ae88a + md5: 72c8fd1af66bd67bf580645b426513ed + sha256: 318f36bd49ca8ad85e6478bd8506c88d82454cc008c1ac1c6bf00a3c42fa610e category: main optional: false - name: libbrotlicommon @@ -1468,10 +1717,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/libbrotlicommon-1.2.0-hc82b238_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libbrotlicommon-1.2.0-hfd05255_1.conda hash: - md5: a5607006c2135402ca3bb96ff9b87896 - sha256: 938078532c3a09e9687747fa562c08ece4a35545467ec26e5be9265a5dbff928 + md5: 444b0a45bbd1cb24f82eedb56721b9c4 + sha256: 5097303c2fc8ebf9f9ea9731520aa5ce4847d0be41764edd7f6dee2100b82986 category: main optional: false - name: libbrotlidec @@ -1482,10 +1731,10 @@ package: __glibc: '>=2.17,<3.0.a0' libbrotlicommon: 1.2.0 libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlidec-1.2.0-hd53d788_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlidec-1.2.0-hb03c661_1.conda hash: - md5: c183787d2b228775dece45842abbbe53 - sha256: f7f357c33bd10afd58072ad4402853a8522d52d00d7ae9adb161ecf719f63574 + md5: 366b40a69f0ad6072561c1d09301c886 + sha256: 12fff21d38f98bc446d82baa890e01fd82e3b750378fedc720ff93522ffb752b category: main optional: false - name: libbrotlidec @@ -1497,10 +1746,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/libbrotlidec-1.2.0-h431afc6_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libbrotlidec-1.2.0-hfd05255_1.conda hash: - md5: edc47a5d0ec6d95efefab3e99d0f4df0 - sha256: 229edc6f56b51dde812d1932b4c6f477654c2f5d477fff9cff184ebd4ce158bd + md5: 450e3ae947fc46b60f1d8f8f318b40d4 + sha256: 3239ce545cf1c32af6fffb7fc7c75cb1ef5b6ea8221c66c85416bb2d46f5cccb category: main optional: false - name: libbrotlienc @@ -1511,10 +1760,10 @@ package: __glibc: '>=2.17,<3.0.a0' libbrotlicommon: 1.2.0 libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlienc-1.2.0-h02bd7ab_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlienc-1.2.0-hb03c661_1.conda hash: - md5: b7a924e3e9ebc7938ffc7d94fe603ed3 - sha256: 1370c8b1a215751c4592bf95d4b5d11bac91c577770efcb237e3a0f35c326559 + md5: 4ffbb341c8b616aa2494b6afb26a0c5f + sha256: a0c15c79997820bbd3fbc8ecf146f4fe0eca36cc60b62b63ac6cf78857f1dd0d category: main optional: false - name: libbrotlienc @@ -1526,70 +1775,70 @@ package: 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.2.0-ha521d6b_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libbrotlienc-1.2.0-hfd05255_1.conda hash: - md5: f780291507a3f91d93a7147daea082f8 - sha256: eb54110ee720e4a73b034d0c2bb0f26eadf79a1bd6b0656ebdf914da8f14989d + md5: ccd93cfa8e54fd9df4e83dbe55ff6e8c + sha256: 3226df6b7df98734440739f75527d585d42ca2bfe912fbe8d1954c512f75341a category: main optional: false - name: libcblas - version: 3.9.0 + version: 3.11.0 manager: conda platform: linux-64 dependencies: - libblas: 3.9.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libcblas-3.9.0-38_h0358290_openblas.conda + libblas: 3.11.0 + url: https://repo.prefix.dev/conda-forge/linux-64/libcblas-3.11.0-8_h0358290_openblas.conda hash: - md5: bcd928a9376a215cd9164a4312dd5e98 - sha256: 7fe653f45c01eb16d7b48ad934b068dad2885d6f4a7c41512b6a5f1f522bffe9 + md5: 33a413f1095f8325e5c30fde3b0d2445 + sha256: 1a2bc77bb26520255904a3d9b1f40e6bf0bf9d8d3405c7709dd162282820915a category: main optional: false - name: libcblas - version: 3.9.0 + version: 3.11.0 manager: conda platform: win-64 dependencies: - libblas: 3.9.0 - url: https://repo.prefix.dev/conda-forge/win-64/libcblas-3.9.0-38_h2a3cdd5_mkl.conda + libblas: 3.11.0 + url: https://repo.prefix.dev/conda-forge/win-64/libcblas-3.11.0-8_h2a3cdd5_mkl.conda hash: - md5: 0c1602b1d15eb3d4da15bad122740df8 - sha256: f2bec12b960877387e5e8f84af5a50e19e97f52ddb1bed6b93ea38c4fb18ab62 + md5: 09f1d8e4d2675d34ad2acb115211d10c + sha256: 2a5b6555b481df4603e44cba49a6ef727584fd2f3c5235dd4bcb3028fffbdfb5 category: main optional: false - name: libcurl - version: 8.17.0 + version: 8.20.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' + libnghttp2: '>=1.68.1,<2.0a0' libssh2: '>=1.11.1,<2.0a0' - libzlib: '>=1.3.1,<2.0a0' - openssl: '>=3.5.4,<4.0a0' + libzlib: '>=1.3.2,<2.0a0' + openssl: '>=3.5.6,<4.0a0' zstd: '>=1.5.7,<1.6.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libcurl-8.17.0-h4e3cde8_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libcurl-8.20.0-hcf29cc6_0.conda hash: - md5: 01e149d4a53185622dc2e788281961f2 - sha256: 100e29ca864c32af15a5cc354f502d07b2600218740fdf2439fa7d66b50b3529 + md5: c3cc2864f82a944bc90a7beb4d3b0e88 + sha256: 75963a5dd913311f59a35dbd307592f4fa754c4808aff9c33edb430c415e38eb category: main optional: false - name: libcurl - version: 8.17.0 + version: 8.20.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' + libzlib: '>=1.3.2,<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.17.0-h43ecb02_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libcurl-8.20.0-h8206538_0.conda hash: - md5: cfade9be135edb796837e7d4c288c0fb - sha256: 651daa5d2bad505b5c72b1d5d4d8c7fc0776ab420e67af997ca9391b6854b1b3 + md5: 7bee27a8f0a295117ccb864f30d2d87e + sha256: f4ce5aa835a698532feaa368e804365a7e45a9edebe006a8e1c80505d893c24e category: main optional: false - name: libdeflate @@ -1646,30 +1895,30 @@ package: category: main optional: false - name: libexpat - version: 2.7.1 + version: 2.8.1 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.1-hecca717_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libexpat-2.8.1-hecca717_1.conda hash: - md5: 4211416ecba1866fab0c6470986c22d6 - sha256: da2080da8f0288b95dd86765c801c6e166c4619b910b11f9a8446fb852438dc2 + md5: b24d3c612f71e7aa74158d92106318b2 + sha256: 16feffd9ddbbe5b718515d38ee376c685ba95491cd901244e24671d20b952a77 category: main optional: false - name: libexpat - version: 2.7.1 + version: 2.8.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/libexpat-2.7.1-hac47afa_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libexpat-2.8.1-hac47afa_1.conda hash: - md5: 3608ffde260281fa641e70d6e34b1b96 - sha256: 8432ca842bdf8073ccecf016ccc9140c41c7114dc4ec77ca754551c01f780845 + md5: ccc490c81ffe14181861beac0e8f3169 + sha256: 1a54d874addda73b6f7164d5f3905821277a1831bcc05edd74b3085391688571 category: main optional: false - name: libffi @@ -1679,10 +1928,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 @@ -1693,65 +1942,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.3 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.3' + url: https://repo.prefix.dev/conda-forge/linux-64/libfreetype-2.14.3-ha770c72_0.conda hash: - md5: f4084e4e6577797150f9b04a4560ceb0 - sha256: 4641d37faeb97cf8a121efafd6afd040904d4bca8c46798122f417c31d5dfbec + md5: e289f3d17880e44b633ba911d57a321b + sha256: 38f014a7129e644636e46064ecd6b1945e729c2140e21d75bb476af39e692db2 category: main optional: false - name: libfreetype - version: 2.14.1 + version: 2.14.3 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.3' + url: https://repo.prefix.dev/conda-forge/win-64/libfreetype-2.14.3-h57928b3_1.conda hash: - md5: 3235024fe48d4087721797ebd6c9d28c - sha256: 2029702ec55e968ce18ec38cc8cf29f4c8c4989a0d51797164dab4f794349a64 + md5: e45b52fb9a81c9e2708465a706e05952 + sha256: 035d0c67bf9f7a16f4a1764f420c120f1a995d071bb265fcc66ef688ef709d7b category: main optional: false - name: libfreetype6 - version: 2.14.1 + version: 2.14.3 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 + libpng: '>=1.6.55,<1.7.0a0' + libzlib: '>=1.3.2,<2.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/libfreetype6-2.14.3-h73754d4_0.conda hash: - md5: 8e7251989bca326a28f4a5ffbd74557a - sha256: 4a7af818a3179fafb6c91111752954e29d3a2a950259c14a2fc7ba40a8b03652 + md5: fb16b4b69e3f1dcfe79d80db8fd0c55d + sha256: 16f020f96da79db1863fcdd8f2b8f4f7d52f177dd4c58601e38e9182e91adf1d category: main optional: false - name: libfreetype6 - version: 2.14.1 + version: 2.14.3 manager: conda platform: win-64 dependencies: - libpng: '>=1.6.50,<1.7.0a0' - libzlib: '>=1.3.1,<2.0a0' + libpng: '>=1.6.58,<1.7.0a0' + libzlib: '>=1.3.2,<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.3-hdbac1cb_1.conda hash: - md5: 6e7c5c5ab485057b5d07fd8188ba5c28 - sha256: 223710600b1a5567163f7d66545817f2f144e4ef8f84e99e90f6b8a4e19cb7ad + md5: 4e4d54f9f98383d977ba56ef39ebf46d + sha256: 0bbd19c9f7c4d0232b31892e6a4d1f82b8d19d1b84d89725f1f491b336447758 category: main optional: false - name: libgcc @@ -1761,10 +2010,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-h767d61c_7.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-15.2.0-he0feb66_19.conda hash: - md5: c0374badb3a5d4b1372db28d19462c53 - sha256: 08f9b87578ab981c7713e4e6a7d935e40766e10691732bba376d4964562bcb45 + md5: 57736f29cc2b0ec0b6c2952d3f101b6a + sha256: 8e0a3b5e41272e5678499b5dfc4cddb673f9e935de01eb0767ce857001229f46 category: main optional: false - name: libgcc @@ -1774,10 +2023,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-h1383e82_7.conda + url: https://repo.prefix.dev/conda-forge/win-64/libgcc-15.2.0-h8ee18e1_19.conda hash: - md5: 926a82fc4fa5b284b1ca1fb74f20dee2 - sha256: 174c4c75b03923ac755f227c96d956f7b4560a4b7dd83c0332709c50ff78450f + md5: cc5d690fc1c629038f13c68e88e65f44 + sha256: 80e80ef5e31b00b12539db3c5aaecde60dab91381abfc1060e323d5c3b016dce category: main optional: false - name: libgcc-ng @@ -1786,10 +2035,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_7.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-ng-15.2.0-h69a702a_19.conda hash: - md5: 280ea6eee9e2ddefde25ff799c4f0363 - sha256: 2045066dd8e6e58aaf5ae2b722fb6dfdbb57c862b5f34ac7bfb58c40ef39b6ad + md5: 331ee9b72b9dff570d56b1302c5ab37d + sha256: 9dcf54adfaa5e861123c2da4f2f0451a685464ea7e5a41ad91cf67b31d658d98 category: main optional: false - name: libgfortran @@ -1798,10 +2047,10 @@ package: platform: linux-64 dependencies: libgfortran5: 15.2.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran-15.2.0-h69a702a_7.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran-15.2.0-h69a702a_19.conda hash: - md5: 8621a450add4e231f676646880703f49 - sha256: 9ca24328e31c8ef44a77f53104773b9fe50ea8533f4c74baa8489a12de916f02 + md5: 42bf7eca1a951735fa06c0e3c0d5c8e6 + sha256: 561a42758ef25b9ce308c4e2cf56daee4f06138385a17e29a492cd928e00be6f category: main optional: false - name: libgfortran5 @@ -1811,10 +2060,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-hcd61629_7.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran5-15.2.0-h68bc16d_19.conda hash: - md5: f116940d825ffc9104400f0d7f1a4551 - sha256: e93ceda56498d98c9f94fedec3e2d00f717cbedfc97c49be0e5a5828802f2d34 + md5: 85072b0ad177c966294f129b7c04a2d5 + sha256: 057978bb69fea29ed715a9b98adf71015c31baecc4aeb2bfc20d4fd5d83579d4 category: main optional: false - name: libgomp @@ -1823,10 +2072,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-h767d61c_7.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libgomp-15.2.0-he0feb66_19.conda hash: - md5: f7b4d76975aac7e5d9e6ad13845f92fe - sha256: e9fb1c258c8e66ee278397b5822692527c5f5786d372fe7a869b900853f3f5ca + md5: faac990cb7aedc7f3a2224f2c9b0c26c + sha256: 5abe4ab9d93f6c9757d654f1969ae2267d4505315c1f2f8fe705fd60af084f1b category: main optional: false - name: libgomp @@ -1835,14 +2084,14 @@ package: platform: win-64 dependencies: libwinpthread: '>=12.0.0.r4.gg4f2fc60ca' - url: https://repo.prefix.dev/conda-forge/win-64/libgomp-15.2.0-h1383e82_7.conda + url: https://repo.prefix.dev/conda-forge/win-64/libgomp-15.2.0-h8ee18e1_19.conda hash: - md5: 7f970a7f9801622add7746aa3cbc24d5 - sha256: b8b569a9d3ec8f13531c220d3ad8e1ff35c75902c89144872e7542a77cb8c10d + md5: f1147651e3fdd585e2f442c0c2fc8f2d + sha256: 4dc958ced2fc7f42bc675b07e2c9abe3e150875ffdf62ca551d94fc6facf1fd7 category: main optional: false - name: libhwloc - version: 2.12.1 + version: 2.13.0 manager: conda platform: win-64 dependencies: @@ -1852,38 +2101,38 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libhwloc-2.12.1-default_h64bd3f2_1002.conda + url: https://repo.prefix.dev/conda-forge/win-64/libhwloc-2.13.0-default_h049141e_1000.conda hash: - md5: b0cac6e5b06ca5eeb14b4f7cf908619f - sha256: 266dfe151066c34695dbdc824ba1246b99f016115ef79339cbcf005ac50527c1 + md5: 6a01c986e30292c715038d2788aa1385 + sha256: 2ee12e37223dfcd0acd050c80a91150c482b6e2899198521e1800dce66662467 category: main optional: false - name: libhwy - version: 1.3.0 + version: 1.4.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 + url: https://repo.prefix.dev/conda-forge/linux-64/libhwy-1.4.0-h10be129_0.conda hash: - md5: c2a0c1d0120520e979685034e0b79859 - sha256: 2bdd1cdd677b119abc5e83069bec2e28fe6bfb21ebaea3cd07acee67f38ea274 + md5: 3a9428b74c403c71048104d38437b48c + sha256: 8b70955d5e9a49d08945d4f8e2eab855b2efa5fce9cb9bc5e75d86764e6f2f38 category: main optional: false - name: libhwy - version: 1.3.0 + version: 1.4.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 + url: https://repo.prefix.dev/conda-forge/win-64/libhwy-1.4.0-h172a326_0.conda hash: - md5: f4649d4b6bf40d616eda57d6255d2333 - sha256: c722a04f065656b988a46dee87303ff0bf037179c50e2e76704b693def7f9a96 + md5: aeca1cb6665f19e560c1fbd20b5bcf34 + sha256: 4b45bf59ee46d3c746272c27651da9ce709fda4eee8536c7424acea60d0e2ad0 category: main optional: false - name: libiconv @@ -1901,34 +2150,34 @@ package: category: main optional: false - name: libjpeg-turbo - version: 3.1.2 + version: 3.1.4.1 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 + url: https://repo.prefix.dev/conda-forge/linux-64/libjpeg-turbo-3.1.4.1-hb03c661_0.conda hash: - md5: 8397539e3a0bbd1695584fb4f927485a - sha256: cc9aba923eea0af8e30e0f94f2ad7156e2984d80d1e8e7fe6be5a1f257f0eb32 + md5: 6178c6f2fb254558238ef4e6c56fb782 + sha256: 10056646c28115b174de81a44e23e3a0a3b95b5347d2e6c45cc6d49d35294256 category: main optional: false - name: libjpeg-turbo - version: 3.1.2 + version: 3.1.4.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/libjpeg-turbo-3.1.2-hfd05255_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libjpeg-turbo-3.1.4.1-hfd05255_0.conda hash: - md5: 56a686f92ac0273c0f6af58858a3f013 - sha256: 795e2d4feb2f7fc4a2c6e921871575feb32b8082b5760726791f080d1e2c2597 + md5: 25a127bad5470852b30b239f030ec95b + sha256: 698d57b5b90120270eaa401298319fcb25ea186ae95b340c2f4813ed9171083d category: main optional: false - name: libjxl - version: 0.11.1 + version: 0.11.2 manager: conda platform: linux-64 dependencies: @@ -1936,115 +2185,129 @@ package: libbrotlidec: '>=1.2.0,<1.3.0a0' libbrotlienc: '>=1.2.0,<1.3.0a0' libgcc: '>=14' - libhwy: '>=1.3.0,<1.4.0a0' + libhwy: '>=1.4.0,<1.5.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-h174a0a3_1.conda hash: - md5: 82954a6f42e3fba59628741dca105c98 - sha256: 6b9524a6a7ea6ef1ac791b697f660c2898171ae505d12e6d27509b59cf059ee6 + md5: 850f48943d6b4589800a303f0de6a816 + sha256: 0c8a78c6a42a6e4c6de3a5e82d692f60400d43f4cc80591745f28b37daad9c70 category: main optional: false - name: libjxl - version: 0.11.1 + version: 0.11.2 manager: conda platform: win-64 dependencies: libbrotlidec: '>=1.2.0,<1.3.0a0' libbrotlienc: '>=1.2.0,<1.3.0a0' - libhwy: '>=1.3.0,<1.4.0a0' + libhwy: '>=1.4.0,<1.5.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-hac9b6f3_5.conda + url: https://repo.prefix.dev/conda-forge/win-64/libjxl-0.11.2-h932607e_1.conda hash: - md5: 8e3cc52433c99ad9632f430d3ac2a077 - sha256: 54e35ad6152fb705f26491c6651d4b77757315c446a494ffc477f36fb2203c79 + md5: 327bce3eb1ef1875c7145e915d25bcd3 + sha256: 4715e22c602526c85da09f73865676add67e0995a944b821fbff84547a9db533 category: main optional: false - name: liblapack - version: 3.9.0 + version: 3.11.0 manager: conda platform: linux-64 dependencies: - libblas: 3.9.0 - url: https://repo.prefix.dev/conda-forge/linux-64/liblapack-3.9.0-38_h47877c9_openblas.conda + libblas: 3.11.0 + url: https://repo.prefix.dev/conda-forge/linux-64/liblapack-3.11.0-8_h47877c9_openblas.conda hash: - md5: 88f10bff57b423a3fd2d990c6055771e - sha256: 63d6073dd4f82ab46943ad99a22fc4edda83b0f8fe6170bdaba7a43352bed007 + md5: 809be8ba8712c77bc7d44c2d99390dc4 + sha256: 168e327d737059553e15cc6ec36d76b9bbb3931c2a7721555fd68b4c9348b247 category: main optional: false - name: liblapack - version: 3.9.0 + version: 3.11.0 manager: conda platform: win-64 dependencies: - libblas: 3.9.0 - url: https://repo.prefix.dev/conda-forge/win-64/liblapack-3.9.0-38_hf9ab0e9_mkl.conda + libblas: 3.11.0 + url: https://repo.prefix.dev/conda-forge/win-64/liblapack-3.11.0-8_hf9ab0e9_mkl.conda hash: - md5: eb3167046ffba0ceb4a8824fb1b79a69 - sha256: 3b8d2d800f48fb9045a976c5a10cefe742142df88decf5a5108fe6b7c8fb5b50 + md5: d584799b920ecae9b75a2b70743a3de7 + sha256: 44999ed04bc0a56de44ee0ac8bd5b3702efd411a8b29491c0e3d3deb8619c94e category: main optional: false - name: liblzma - version: 5.8.1 + version: 5.8.3 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.3-hb03c661_0.conda hash: - md5: 1a580f7796c7bf6393fddb8bbbde58dc - sha256: f2591c0069447bbe28d4d696b7fcb0c5bd0b4ac582769b89addbcf26fb3430d8 + md5: b88d90cad08e6bc8ad540cb310a761fb + sha256: ec30e52a3c1bf7d0425380a189d209a52baa03f22fb66dd3eb587acaa765bd6d category: main optional: false - name: liblzma - version: 5.8.1 + version: 5.8.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/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.3-hfd05255_0.conda hash: - md5: c15148b2e18da456f5108ccb5e411446 - sha256: 55764956eb9179b98de7cc0e55696f2eff8f7b83fc3ebff5e696ca358bca28cc + md5: 8f83619ab1588b98dd99c90b0bfc5c6d + sha256: d636d1a25234063642f9c531a7bb58d84c1c496411280a36ea000bd122f078f1 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 - version: 0.3.30 + version: 0.3.33 manager: conda platform: linux-64 dependencies: @@ -2052,68 +2315,67 @@ package: libgcc: '>=14' libgfortran: '' libgfortran5: '>=14.3.0' - url: https://repo.prefix.dev/conda-forge/linux-64/libopenblas-0.3.30-pthreads_h94d23a6_3.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libopenblas-0.3.33-pthreads_h94d23a6_0.conda hash: - md5: ac2e4832427d6b159576e8a68305c722 - sha256: 200899e5acc01fa29550d2782258d9cf33e55ce4cbce8faed9c6fe0b774852aa + md5: 2d3278b721e40468295ca755c3b84070 + sha256: 3d9aa85648e5e18a6d66db98b8c4317cc426721ad7a220aa86330d1ccedc8903 category: main optional: false - name: libpng - version: 1.6.50 + version: 1.6.58 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.50-h421ea60_1.conda + libzlib: '>=1.3.2,<2.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/libpng-1.6.58-h421ea60_0.conda hash: - md5: 7af8e91b0deb5f8e25d1a595dea79614 - sha256: e75a2723000ce3a4b9fd9b9b9ce77553556c93e475a4657db6ed01abc02ea347 + md5: eba48a68a1a2b9d3c0d9511548db85db + sha256: 377cfe037f3eeb3b1bf3ad333f724a64d32f315ee1958581fc671891d63d3f89 category: main optional: false - name: libpng - version: 1.6.50 + version: 1.6.58 manager: conda platform: win-64 dependencies: - libzlib: '>=1.3.1,<2.0a0' + libzlib: '>=1.3.2,<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.50-h7351971_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/libpng-1.6.58-h7351971_0.conda hash: - md5: 3ae6e9f5c47c495ebeed95651518be61 - sha256: e84b041f91c94841cb9b97952ab7f058d001d4a15ed4ce226ec5fdb267cc0fa5 + md5: 52f1280563f3b48b5f75414cd2d15dd1 + sha256: 218913aeee391460bd0e341b834dbd9c6fa6ae0a4276c0c300266cc99a816a28 category: main optional: false - name: libsqlite - version: 3.51.0 + version: 3.53.2 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - icu: '>=75.1,<76.0a0' libgcc: '>=14' - libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.51.0-hee844dc_0.conda + libzlib: '>=1.3.2,<2.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.53.2-h0c1763c_0.conda hash: - md5: 729a572a3ebb8c43933b30edcc628ceb - sha256: 4c992dcd0e34b68f843e75406f7f303b1b97c248d18f3c7c330bdc0bc26ae0b3 + md5: 062b0ac602fb0adf250e3dfa86f221c4 + sha256: 1ab603b6ec93933e76027e1f23b21b22b858ba1b56f1e1695ef6fe5e80cb7358 category: main optional: false - name: libsqlite - version: 3.51.0 + version: 3.53.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/libsqlite-3.51.0-hf5d6505_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.53.2-hf5d6505_0.conda hash: - md5: d2c9300ebd2848862929b18c264d1b1e - sha256: 2373bd7450693bd0f624966e1bee2f49b0bf0ffbc114275ed0a43cf35aec5b21 + md5: df294e7f9f24a6063f0e226f4d028fda + sha256: 4cd81319dcc58fb758da20a6d5595950c021adc2c18d7cffeadcfb590529629f category: main optional: false - name: libssh2 @@ -2154,10 +2416,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-h8f9b012_7.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-15.2.0-h934c35e_19.conda hash: - md5: 5b767048b1b3ee9a954b06f4084f93dc - sha256: 1b981647d9775e1cdeb2fab0a4dd9cd75a6b0de2963f6c3953dbd712f78334b3 + md5: 5794b3bdc38177caf969dabd3af08549 + sha256: dff1058c76ec6b8759e41cefa2508162d00e4a5e6721aa68ec3fd10094e702dc category: main optional: false - name: libstdcxx-ng @@ -2166,10 +2428,10 @@ package: platform: linux-64 dependencies: libstdcxx: 15.2.0 - url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-15.2.0-h4852527_7.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-15.2.0-hdf11a46_19.conda hash: - md5: f627678cf829bd70bccf141a19c3ad3e - sha256: 024fd46ac3ea8032a5ec3ea7b91c4c235701a8bf0e6520fe5e6539992a6bd05f + md5: e5ce228e579726c07255dbf90dc62101 + sha256: 0672b6b6e1791c92e8eccad58081a99d614fcf82bca5841f9dfa3c3e658f83b9 category: main optional: false - name: libtiff @@ -2214,16 +2476,16 @@ package: category: main optional: false - name: libuuid - version: 2.41.2 + version: 2.42.1 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.2-he9a06e4_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libuuid-2.42.1-h5347b49_0.conda hash: - md5: 80c07c68d2f6870250959dcc95b209d1 - sha256: e5ec6d2ad7eef538ddcb9ea62ad4346fde70a4736342c4ad87bd713641eb9808 + md5: 7d0a66598195ef00b6efc55aefc7453b + sha256: 3f0edf1280e2f6684a986f821eaa3e123d2694a00b31b96ca0d4a4c12c129231 category: main optional: false - name: libwebp-base @@ -2298,78 +2560,65 @@ 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.3 manager: conda platform: win-64 dependencies: libiconv: '>=1.18,<2.0a0' - liblzma: '>=5.8.1,<6.0a0' - libxml2-16: 2.15.1 - libzlib: '>=1.3.1,<2.0a0' + liblzma: '>=5.8.3,<6.0a0' + libxml2-16: 2.15.3 + libzlib: '>=1.3.2,<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-h5d26750_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libxml2-2.15.3-hbc0d294_0.conda hash: - md5: 9176ee05643a1bfe7f2e7b4c921d2c3d - sha256: f507960adf64ee9c9c7b7833d8b11980765ebd2bf5345f73d5a3b21b259eaed5 + md5: e3b5acbb857a12f5d59e8d174bc536c0 + sha256: da68af9d9d28d65a6916db1bef68f8a25c64c4fdcf759f32a2d2f2f143220adf category: main optional: false - name: libxml2-16 - version: 2.15.1 + version: 2.15.3 manager: conda platform: win-64 dependencies: libiconv: '>=1.18,<2.0a0' - liblzma: '>=5.8.1,<6.0a0' - libzlib: '>=1.3.1,<2.0a0' + liblzma: '>=5.8.3,<6.0a0' + libzlib: '>=1.3.2,<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-h692994f_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libxml2-16-2.15.3-h692994f_0.conda hash: - md5: 70ca4626111579c3cd63a7108fe737f9 - sha256: 04129dc2df47a01c55e5ccf8a18caefab94caddec41b3b10fbc409e980239eb9 + md5: f7d6fcda29570e20851b78d92ea2154e + sha256: 8038084c60eda2006d0122d05e3364fe8db0a18935ca6ed0168b5ba5aa33f904 category: main optional: false - name: libzlib - version: 1.3.1 + version: 1.3.2 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 + url: https://repo.prefix.dev/conda-forge/linux-64/libzlib-1.3.2-h25fd6f3_2.conda hash: - md5: edb0dca6bc32e4f4789199455a1dbeb8 - sha256: d4bfe88d7cb447768e31650f06257995601f89076080e76df55e3112d4e47dc4 + md5: d87ff7921124eccd67248aa483c23fec + sha256: 55044c403570f0dc26e6364de4dc5368e5f3fc7ff103e867c487e2b5ab2bcda9 category: main optional: false - name: libzlib - version: 1.3.1 + version: 1.3.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/libzlib-1.3.1-h2466b09_2.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/libzlib-1.3.2-hfd05255_2.conda hash: - md5: 41fbfac52c601159df6c01f875de31b9 - sha256: ba945c6493449bed0e6e29883c4943817f7c79cbff52b83360f7b341277c6402 + md5: dbabbd6234dea34040e631f87676292f + sha256: 88609816e0cc7452bac637aaf65783e5edf4fee8a9f8e22bdc3a75882c536061 category: main optional: false - name: libzopfli @@ -2399,17 +2648,17 @@ package: category: main optional: false - name: llvm-openmp - version: 21.1.5 + version: 22.1.7 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.5-hfa2b4ca_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-22.1.7-h4fa8253_0.conda hash: - md5: 3bd3154b24a1b9489d4ab04d62ffcc86 - sha256: 8c5106720e5414f48344fd28eae4db4f1a382336d8a0f30f71d41d8ae730fbb6 + md5: 0ca3373049a5be11689bc2f9b2f3a9d2 + sha256: 70140a1fa5d7cb801c6be3273b0704b5f0e418e2fff6b12b8ce9db13067a1ed5 category: main optional: false - name: lz4-c @@ -2447,12 +2696,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: dev optional: true - name: markupsafe @@ -2460,15 +2709,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/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: dev optional: true - name: mccabe @@ -2496,93 +2745,106 @@ package: category: dev optional: true - name: mkl - version: 2025.3.0 + version: 2026.0.0 manager: conda platform: win-64 dependencies: - llvm-openmp: '>=21.1.4' - tbb: '>=2022.2.0' + llvm-openmp: '>=22.1.5' + onemkl-license: 2026.0.0 + tbb: '>=2023.0.0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/mkl-2025.3.0-hac47afa_454.conda + url: https://repo.prefix.dev/conda-forge/win-64/mkl-2026.0.0-hac47afa_908.conda hash: - md5: c83ec81713512467dfe1b496a8292544 - sha256: 3c432e77720726c6bd83e9ee37ac8d0e3dd7c4cf9b4c5805e1d384025f9e9ab6 + md5: 36ea6e1292e9d5e89374201da79646ef + sha256: f997bfc9bc4d4e14261cdcd1ad195d64a72ee44dca3145d24c1349f8d1311aa5 category: main optional: false - name: ncurses - version: '6.5' + version: '6.6' 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 + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/ncurses-6.6-hdb14827_0.conda hash: - md5: 47e340acb35de30501a76c7c799c41d7 - sha256: 3fde293232fa3fca98635e1167de6b7c7fda83caf24b9d6c91ec9eefb4f4d586 + md5: fc21868a1a5aacc937e7a18747acb8a5 + sha256: fc89f74bbe362fb29fa3c037697a89bec140b346a2469a90f7936d1d7ea4d8a3 category: main optional: false - name: networkx - version: '3.5' + version: 3.6.1 manager: conda platform: linux-64 dependencies: - python: '>=3.11' - url: https://repo.prefix.dev/conda-forge/noarch/networkx-3.5-pyhe01879c_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/networkx-3.6.1-pyhcf101f3_0.conda hash: - md5: 16bff3d37a4f99e3aa089c36c2b8d650 - sha256: 02019191a2597865940394ff42418b37bc585a03a1c643d7cea9981774de2128 + md5: a2c1eeadae7a309daed9d62c96012a2b + sha256: f6a82172afc50e54741f6f84527ef10424326611503c64e359e25a19a8e4c1c6 category: main optional: false - name: networkx - version: '3.5' + version: 3.6.1 manager: conda platform: win-64 dependencies: - python: '>=3.11' - url: https://repo.prefix.dev/conda-forge/noarch/networkx-3.5-pyhe01879c_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/networkx-3.6.1-pyhcf101f3_0.conda hash: - md5: 16bff3d37a4f99e3aa089c36c2b8d650 - sha256: 02019191a2597865940394ff42418b37bc585a03a1c643d7cea9981774de2128 + md5: a2c1eeadae7a309daed9d62c96012a2b + sha256: f6a82172afc50e54741f6f84527ef10424326611503c64e359e25a19a8e4c1c6 category: main optional: false - name: numpy - version: 1.26.4 + version: 2.4.6 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.6-py313hf6604e3_0.conda hash: - md5: a502d7aad449a1206efb366d6a12c52d - sha256: 3f4365e11b28e244c95ba8579942b0802761ba7bb31c026f50d1a9ea9c728149 + md5: a5fdb80595ec7912e6b1634b2abd4b50 + sha256: 3740c9bc562db9c6f252f8697c5c7948bb48784346856f6d6308aba72ea4f00b category: main optional: false - name: numpy - version: 1.26.4 + version: 2.4.6 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.6-py313ha8dc839_0.conda + hash: + md5: 1546190d6b2a2605ad960693018b874b + sha256: 012fabf6b70d8a58ce608ae5ece3a59f8cc6d582847f9a8ff42d9a10b4215a51 + category: main + optional: false +- name: onemkl-license + version: 2026.0.0 + manager: conda + platform: win-64 + dependencies: {} + url: https://repo.prefix.dev/conda-forge/win-64/onemkl-license-2026.0.0-h57928b3_908.conda hash: - md5: 7b240edd44fd7a0991aa409b07cee776 - sha256: 14116e72107de3089cc58119a5ce5905c22abf9a715c9fe41f8ac14db0992326 + md5: 9c9303e08b50e09f5c23e1dac99d0936 + sha256: 42ad15cbb3bf31830efa04d4b86dd2d5c0dd590c86f98adcd3c8c1f75acf5dd5 category: main optional: false - name: openjpeg @@ -2607,34 +2869,64 @@ 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: e723ab7cc2794c954e1b22fde51c16e4 + sha256: 24342dee891a49a9ba92e2018ec0bde56cc07fdaec95275f7a55b96f03ea4252 + category: main + optional: false +- name: openjph + version: 0.28.1 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=14' + libstdcxx: '>=14' + libtiff: '>=4.7.1,<4.8.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/openjph-0.28.1-h8d634f6_0.conda + hash: + md5: 124bc40f781a446d9d4ffe5c37ef9ea2 + sha256: 8d5ece40cd6870bcb0f6a26ed8784480d787357b24d42d52a3f64d5f11a5d707 + category: main + optional: false +- name: openjph + version: 0.28.1 + manager: conda + platform: win-64 + dependencies: + libtiff: '>=4.7.1,<4.8.0a0' + 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.28.1-hf13a347_0.conda hash: - md5: 5af852046226bb3cb15c7f61c2ac020a - sha256: 226c270a7e3644448954c47959c00a9bf7845f6d600c2a643db187118d028eee + md5: 1fc89daa2c0226cf1dfed94df582c4b0 + sha256: 75c3240bba6781531aeb8fb2e52f555d657a0e2c399136e4ddaefc3cc010261e category: main optional: false - name: openssl - version: 3.5.4 + version: 3.6.3 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' ca-certificates: '' libgcc: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/openssl-3.5.4-h26f9b46_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/openssl-3.6.3-h35e630c_0.conda hash: - md5: 14edad12b59ccbfa3910d42c72adc2a0 - sha256: e807f3bad09bdf4075dbb4168619e14b0c0360bacb2e12ef18641a834c8c5549 + md5: 79dd2074b5cd5c5c6b2930514a11e22d + sha256: d48f5c22b9897c01e4dff3680f1f57ceb02711ab9c62f74339b080419dfad34b category: main optional: false - name: openssl - version: 3.5.4 + version: 3.6.3 manager: conda platform: win-64 dependencies: @@ -2642,134 +2934,133 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/openssl-3.5.4-h725018a_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/openssl-3.6.3-hf411b9b_0.conda hash: - md5: f28ffa510fe055ab518cbd9d6ddfea23 - sha256: 5ddc1e39e2a8b72db2431620ad1124016f3df135f87ebde450d235c212a61994 + md5: e99f95734a326c0fd4d02bbd995150d4 + sha256: cb6e7ba0d010ee0d3249ce9886de3d7613d26d9965d4c95666fa66b9c4c31001 category: main optional: false - name: packaging - version: '25.0' + version: '26.2' 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.2-pyhc364b38_0.conda hash: - md5: 58335b26c38bf4a20f399384c33cbcf9 - sha256: 289861ed0c13a15d7bbb408796af4de72c2fe67e2bcb0de98f4c3fce259d7991 + md5: 4c06a92e74452cfa53623a81592e8934 + sha256: 3906abfb6511a3bb309e39b9b1b7bc38f50a723971de2395489fd1f379255890 category: main optional: false - name: packaging - version: '25.0' + version: '26.2' 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.2-pyhc364b38_0.conda hash: - md5: 58335b26c38bf4a20f399384c33cbcf9 - sha256: 289861ed0c13a15d7bbb408796af4de72c2fe67e2bcb0de98f4c3fce259d7991 + md5: 4c06a92e74452cfa53623a81592e8934 + sha256: 3906abfb6511a3bb309e39b9b1b7bc38f50a723971de2395489fd1f379255890 category: main optional: false - name: pillow - version: 10.3.0 + version: 12.2.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.11,<3.12.0a0' - python_abi: 3.11.* + __glibc: '>=2.17,<3.0.a0' + lcms2: '>=2.18,<3.0a0' + libfreetype: '>=2.14.3' + libfreetype6: '>=2.14.3' + 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.2.0-py313h80991f8_0.conda hash: - md5: 4dc0b6fcf0bc041a1bfb763fa6e5302f - sha256: ce420bfba7ed8641aa376b4446e16299fcb37113c27e9655503fd5d517cb7fcd + md5: 7245f1bbf52ed5e3818d742f51b44a7d + sha256: 55a76548bb003ff6deac9bf209b279d428030f230632fb70f15ae153aed05158 category: main optional: false - name: pillow - version: 10.3.0 + version: 12.2.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.11,<3.12.0a0' - python_abi: 3.11.* + lcms2: '>=2.18,<3.0a0' + libfreetype: '>=2.14.3' + libfreetype6: '>=2.14.3' + 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.2.0-py313h38f99e1_0.conda hash: - md5: 034f612fd103c2c1058538533598ce4f - sha256: 5404b51b1c93180940e0f8340e905d435bf187224512bab2993c5b7f30aa0615 + md5: 72666a34e563494859af5c5fc10364a0 + sha256: 54df76a56eff31deab5e72350ca906c79dfb71f0ac9d84bf2f7420ab2ee00151 category: main optional: false - name: pip - version: '25.3' + version: 26.1.2 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.1.2-pyh145f28c_0.conda hash: - md5: c55515ca43c6444d2572e0f0d93cb6b9 - sha256: b67692da1c0084516ac1c9ada4d55eaf3c5891b54980f30f3f444541c2706f1e + md5: 733cc07ed34162ac50b936464b163366 + sha256: 9e673d3c6003f416df11670a14b026a04e3a45ebec55357987e15b860f138f2a category: main optional: false - name: pip - version: '25.3' + version: 26.1.2 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.1.2-pyh145f28c_0.conda hash: - md5: c55515ca43c6444d2572e0f0d93cb6b9 - sha256: b67692da1c0084516ac1c9ada4d55eaf3c5891b54980f30f3f444541c2706f1e + md5: 733cc07ed34162ac50b936464b163366 + sha256: 9e673d3c6003f416df11670a14b026a04e3a45ebec55357987e15b860f138f2a category: main optional: false - name: platformdirs - version: 4.5.0 + version: 4.10.0 manager: conda platform: linux-64 dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.5.0-pyhcf101f3_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.10.0-pyhcf101f3_0.conda hash: - md5: 5c7a868f8241e64e1cf5fdf4962f23e2 - sha256: 7efd51b48d908de2d75cbb3c4a2e80dd9454e1c5bb8191b261af3136f7fa5888 + md5: 2c5ef45db85d34799771629bd5860fd7 + sha256: 9e5e1fd3506ccfc4d444fc4d2d39b0ed097d5d0e3bd3d4bdf6bcc81aaf66860d category: dev optional: true - name: platformdirs - version: 4.5.0 + version: 4.10.0 manager: conda platform: win-64 dependencies: - python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.5.0-pyhcf101f3_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.10.0-pyhcf101f3_0.conda hash: - md5: 5c7a868f8241e64e1cf5fdf4962f23e2 - sha256: 7efd51b48d908de2d75cbb3c4a2e80dd9454e1c5bb8191b261af3136f7fa5888 + md5: 2c5ef45db85d34799771629bd5860fd7 + sha256: 9e5e1fd3506ccfc4d444fc4d2d39b0ed097d5d0e3bd3d4bdf6bcc81aaf66860d category: dev optional: true - name: pluggy @@ -2777,11 +3068,11 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/pluggy-1.6.0-pyhf9edf01_1.conda hash: - md5: 7da7ccd349dbf6487a7778579d2bb971 - sha256: a8eb555eef5063bbb7ba06a379fa7ea714f57d9741fe0efdb9442dbbc2cccbcc + md5: d7585b6550ad04c8c5e21097ada2888e + sha256: e14aafa63efa0528ca99ba568eaf506eb55a0371d12e6250aaaa61718d2eb62e category: dev optional: true - name: pluggy @@ -2789,11 +3080,11 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/pluggy-1.6.0-pyhf9edf01_1.conda hash: - md5: 7da7ccd349dbf6487a7778579d2bb971 - sha256: a8eb555eef5063bbb7ba06a379fa7ea714f57d9741fe0efdb9442dbbc2cccbcc + md5: d7585b6550ad04c8c5e21097ada2888e + sha256: e14aafa63efa0528ca99ba568eaf506eb55a0371d12e6250aaaa61718d2eb62e category: dev optional: true - name: pthread-stubs @@ -2823,62 +3114,38 @@ package: sha256: 7e446bafb4d692792310ed022fe284e848c6a868c861655a92435af7368bae7b category: main optional: false -- name: pycparser - version: '2.22' - manager: conda - platform: linux-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: dev - optional: true -- 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: dev - optional: true - name: pydantic - version: 2.12.4 + version: 2.12.5 manager: conda platform: linux-64 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' - url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.12.4-pyh3cfb1c2_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.12.5-pyhcf101f3_1.conda hash: - md5: bf6ce72315b6759453d8c90a894e9e4c - sha256: c51297f0f6ef13776cc5b61c37d00c0d45faaed34f81d196e64bebc989f3e497 + md5: c3946ed24acdb28db1b5d63321dbca7d + sha256: 868569d9505b7fe246c880c11e2c44924d7613a8cdcc1f6ef85d5375e892f13d category: main optional: false - name: pydantic - version: 2.12.4 + version: 2.12.5 manager: conda platform: win-64 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' - url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.12.4-pyh3cfb1c2_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.12.5-pyhcf101f3_1.conda hash: - md5: bf6ce72315b6759453d8c90a894e9e4c - sha256: c51297f0f6ef13776cc5b61c37d00c0d45faaed34f81d196e64bebc989f3e497 + md5: c3946ed24acdb28db1b5d63321dbca7d + sha256: 868569d9505b7fe246c880c11e2c44924d7613a8cdcc1f6ef85d5375e892f13d category: main optional: false - name: pydantic-core @@ -2889,12 +3156,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_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pydantic-core-2.41.5-py313h843e2db_1.conda hash: - md5: ffddb15810f766cdde04fe1af24d7168 - sha256: 2632d271a937fe1aa932f40b282e8786c7d59158268042f158a31ef6bcc7edfe + md5: f27c39a1906771bbe56cd26a76bf0b8b + sha256: b15568ddc03bd33ea41610e5df951be4e245cd61957cbf8c2cfd12557f3d53b5 category: main optional: false - name: pydantic-core @@ -2903,79 +3170,79 @@ 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_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/pydantic-core-2.41.5-py313hfbe8231_1.conda hash: - md5: 7e97287ec2a853ff9588481dc19bc3ec - sha256: b99307c2f938550abd8e1ed2f1f5f57a81dac99f0c7daf86ccc2d8ad8a7e0e5c + md5: 0437f87004ad7c64c98a013d1611db97 + sha256: fb9391dc09dd01574c85e2342b9aa3b8664cd713401ef8fd6267865cc28988d8 category: main optional: false - name: pygments - version: 2.19.2 + version: 2.20.0 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.20.0-pyhd8ed1ab_0.conda hash: - md5: 6b6ece66ebcae2d5f326c77ef2c5a066 - sha256: 5577623b9f6685ece2697c6eb7511b4c9ac5fb607c9babc2646c811b428fd46a + md5: 16c18772b340887160c79a6acc022db0 + sha256: cf70b2f5ad9ae472b71235e5c8a736c9316df3705746de419b59d442e8348e86 category: dev optional: true - name: pygments - version: 2.19.2 + version: 2.20.0 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.20.0-pyhd8ed1ab_0.conda hash: - md5: 6b6ece66ebcae2d5f326c77ef2c5a066 - sha256: 5577623b9f6685ece2697c6eb7511b4c9ac5fb607c9babc2646c811b428fd46a + md5: 16c18772b340887160c79a6acc022db0 + sha256: cf70b2f5ad9ae472b71235e5c8a736c9316df3705746de419b59d442e8348e86 category: dev optional: true - name: pylint - version: 4.0.2 + version: 4.0.6 manager: conda platform: linux-64 dependencies: - astroid: '>=4.0.1,<=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.2-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pylint-4.0.6-pyhcf101f3_0.conda hash: - md5: 0259facf4dbf67ad35ec517b6ffd6982 - sha256: 594bdf44a55c3bcf79ec6eb55d86571cbe3bee9f5216ede0721708c184da4ed8 + md5: ba6813f7d81828b7dcd03248a42d031d + sha256: 5393b20b76361efe49971a0081cad0f4256f875a14fe71b1ed93ba9e0193369c category: dev optional: true - name: pylint - version: 4.0.2 + version: 4.0.6 manager: conda platform: win-64 dependencies: - astroid: '>=4.0.1,<=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.2-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pylint-4.0.6-pyhcf101f3_0.conda hash: - md5: 0259facf4dbf67ad35ec517b6ffd6982 - sha256: 594bdf44a55c3bcf79ec6eb55d86571cbe3bee9f5216ede0721708c184da4ed8 + md5: ba6813f7d81828b7dcd03248a42d031d + sha256: 5393b20b76361efe49971a0081cad0f4256f875a14fe71b1ed93ba9e0193369c category: dev optional: true - name: pysocks @@ -3006,7 +3273,7 @@ package: category: dev optional: true - name: pytest - version: 9.0.0 + version: 9.0.3 manager: conda platform: linux-64 dependencies: @@ -3016,16 +3283,16 @@ 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.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytest-9.0.3-pyhc364b38_1.conda hash: - md5: 499e8e2df95ad3d263bee8d41cc3d475 - sha256: afd413cd919bd3cca1d45062b9822be8935e1f61ce6d6b2642364e8c19e2873d + md5: 6a991452eadf2771952f39d43615bb3e + sha256: 960f59442173eee0731906a9077bd5ccf60f4b4226f05a22d1728ab9a21a879c category: dev optional: true - name: pytest - version: 9.0.0 + version: 9.0.3 manager: conda platform: win-64 dependencies: @@ -3035,174 +3302,119 @@ 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.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pytest-9.0.3-pyhc364b38_1.conda hash: - md5: 499e8e2df95ad3d263bee8d41cc3d475 - sha256: afd413cd919bd3cca1d45062b9822be8935e1f61ce6d6b2642364e8c19e2873d + md5: 6a991452eadf2771952f39d43615bb3e + sha256: 960f59442173eee0731906a9077bd5ccf60f4b4226f05a22d1728ab9a21a879c category: dev optional: true - name: pytest-cov - version: 7.0.0 + version: 7.1.0 manager: conda platform: linux-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 + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-7.1.0-pyhcf101f3_0.conda hash: - md5: 6891acad5e136cb62a8c2ed2679d6528 - sha256: d0f45586aad48ef604590188c33c83d76e4fc6370ac569ba0900906b24fd6a26 + md5: 67d1790eefa81ed305b89d8e314c7923 + sha256: 44e42919397bd00bfaa47358a6ca93d4c21493a8c18600176212ec21a8d25ca5 category: dev optional: true - name: pytest-cov - version: 7.0.0 + version: 7.1.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 + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-7.1.0-pyhcf101f3_0.conda hash: - md5: 6891acad5e136cb62a8c2ed2679d6528 - sha256: d0f45586aad48ef604590188c33c83d76e4fc6370ac569ba0900906b24fd6a26 + md5: 67d1790eefa81ed305b89d8e314c7923 + sha256: 44e42919397bd00bfaa47358a6ca93d4c21493a8c18600176212ec21a8d25ca5 category: dev optional: true - name: python - version: 3.11.14 + version: 3.13.14 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' bzip2: '>=1.0.8,<2.0a0' ld_impl_linux-64: '>=2.36.1' - libexpat: '>=2.7.1,<3.0a0' + libexpat: '>=2.8.1,<3.0a0' libffi: '>=3.5.2,<3.6.0a0' libgcc: '>=14' - liblzma: '>=5.8.1,<6.0a0' - libnsl: '>=2.0.1,<2.1.0a0' - libsqlite: '>=3.50.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' + liblzma: '>=5.8.3,<6.0a0' + libmpdec: '>=4.0.0,<5.0a0' + libsqlite: '>=3.53.2,<4.0a0' + libuuid: '>=2.42.1,<3.0a0' + libzlib: '>=1.3.2,<2.0a0' + ncurses: '>=6.6,<7.0a0' + openssl: '>=3.5.7,<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.14-h6add32d_100_cp313.conda hash: - md5: c4202a55b4486314fbb8c11bc43a29a0 - sha256: 5b872f7747891e50e990a96d2b235236a5c66cc9f8c9dcb7149aee674ea8145a + md5: 93762cd272814a142cf21d794f8fb0c1 + sha256: f2146aff59ce4b571a8f1d1acf94f9bed6cc18ab5632d7dcc940fb48ecdeef99 category: main optional: false - name: python - version: 3.11.14 + version: 3.13.14 manager: conda platform: win-64 dependencies: bzip2: '>=1.0.8,<2.0a0' - libexpat: '>=2.7.1,<3.0a0' + libexpat: '>=2.8.1,<3.0a0' libffi: '>=3.5.2,<3.6.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' + liblzma: '>=5.8.3,<6.0a0' + libmpdec: '>=4.0.0,<5.0a0' + libsqlite: '>=3.53.2,<4.0a0' + libzlib: '>=1.3.2,<2.0a0' + openssl: '>=3.5.7,<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.14-h09917c8_100_cp313.conda hash: - md5: 02a9ba5950d8b78e6c9862d6ba7a5045 - sha256: d5f455472597aefcdde1bc39bca313fcb40bf084f3ad987da0441f2a2ec242e4 + md5: 12e0de38e6bb7f7745ec0d19a20b8270 + sha256: 26442b2878df89f27cc9efd54c1322d111653683abf256b657dbefe089857b40 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 - hash: - md5: 8fcb6b0e2161850556231336dae58358 - sha256: fddf123692aa4b1fc48f0471e346400d9852d96eeed77dbfdd746fa50a8ff894 - category: main - optional: false -- 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 - 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 - hash: - md5: 4e078a6bafb23473ea476450f45c9650 - sha256: 4393066e380c976a4066a7865c42f9e1f96b1b8a80f0eef03db93a4160dde77b - category: main - optional: false -- name: pywavelets - version: 1.9.0 - manager: conda - platform: win-64 - dependencies: - numpy: '>=1.25,<3' - 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/pywavelets-1.9.0-py311h17033d2_2.conda + url: https://repo.prefix.dev/conda-forge/noarch/python_abi-3.13-8_cp313.conda hash: - md5: 4cdb0e2d2fbd83f802ab9d9c5fa5dfb4 - sha256: 26c84bd1aae5f0675f71f69ec7abf90a96c30959d95528f6afe1d1d1a2381def + md5: 94305520c52a4aa3f6c2b1ff6008d9f8 + sha256: 210bffe7b121e651419cb196a2a63687b087497595c9be9d20ebe97dd06060a7 category: main optional: false - name: pyyaml @@ -3212,13 +3424,13 @@ package: 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.* yaml: '>=0.2.5,<0.3.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/pyyaml-6.0.3-py311h3778330_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pyyaml-6.0.3-py313h3dea7bd_1.conda hash: - md5: 707c3d23f2476d3bfde8345b4e7d7853 - sha256: 7dc5c27c0c23474a879ef5898ed80095d26de7f89f4720855603c324cca19355 + md5: f256753e840c3cd3766488c9437a8f8b + sha256: ef7df29b38ef04ec67a8888a4aa039973eaa377e8c4b59a7be0a1c50cd7e4ac6 category: dev optional: true - name: pyyaml @@ -3226,116 +3438,157 @@ 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' yaml: '>=0.2.5,<0.3.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/pyyaml-6.0.3-py311h3f79411_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/pyyaml-6.0.3-py313hd650c13_1.conda hash: - md5: 4e9b677d70d641f233b29d5eab706e20 - sha256: 22dcc6c6779e5bd970a7f5208b871c02bf4985cf4d827d479c4a492ced8ce577 + md5: c1bdb8dd255c79fb9c428ad25cc6ee54 + sha256: dfaed50de8ee72a51096163b87631921688851001e38c78a841eba1ae8b35889 category: dev optional: true - 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 - version: '8.2' + version: '8.3' manager: conda platform: linux-64 dependencies: - libgcc: '>=13' + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=14' ncurses: '>=6.5,<7.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/readline-8.3-h853b02a_0.conda hash: - md5: 283b96675859b20a825f8fa30f311446 - sha256: 2d6d0c026902561ed77cd646b5021aef2d4db22e57a5b0178dfc669231e06d2c + md5: d7d95fc8287ea7bf33e0e7116d2b95ec + sha256: 12ffde5a6f958e285aa22c191ca01bbd3d6e710aa852e00618fa6ddc59149002 category: main optional: false - name: requests - version: 2.32.5 + version: 2.34.2 manager: conda platform: linux-64 dependencies: - certifi: '>=2017.4.17' + certifi: '>=2023.5.7' charset-normalizer: '>=2,<4' idna: '>=2.5,<4' - python: '>=3.9' - urllib3: '>=1.21.1,<3' - url: https://repo.prefix.dev/conda-forge/noarch/requests-2.32.5-pyhd8ed1ab_0.conda + python: '' + urllib3: '>=1.26,<3' + url: https://repo.prefix.dev/conda-forge/noarch/requests-2.34.2-pyhcf101f3_0.conda hash: - md5: db0c6b99149880c8ba515cf4abe93ee4 - sha256: 8dc54e94721e9ab545d7234aa5192b74102263d3e704e6d0c8aa7008f2da2a7b + md5: 4a85203c1d80c1059086ae860836ffb9 + sha256: 1715246b19c9f85ee022933b4845f2fc14ac9184981b7b7d9b728bec8e9588da category: dev optional: true - name: requests - version: 2.32.5 + version: 2.34.2 manager: conda platform: win-64 dependencies: - certifi: '>=2017.4.17' + certifi: '>=2023.5.7' charset-normalizer: '>=2,<4' idna: '>=2.5,<4' - python: '>=3.9' - urllib3: '>=1.21.1,<3' - url: https://repo.prefix.dev/conda-forge/noarch/requests-2.32.5-pyhd8ed1ab_0.conda + python: '' + urllib3: '>=1.26,<3' + url: https://repo.prefix.dev/conda-forge/noarch/requests-2.34.2-pyhcf101f3_0.conda + hash: + md5: 4a85203c1d80c1059086ae860836ffb9 + sha256: 1715246b19c9f85ee022933b4845f2fc14ac9184981b7b7d9b728bec8e9588da + category: dev + optional: true +- name: roman-numerals + version: 4.1.0 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/roman-numerals-4.1.0-pyhd8ed1ab_0.conda + hash: + md5: 0dc48b4b570931adc8641e55c6c17fe4 + sha256: 30f3c04fcfb64c44d821d392a4a0b8915650dbd900c8befc20ade8fde8ec6aa2 + category: dev + optional: true +- name: roman-numerals + version: 4.1.0 + manager: conda + platform: win-64 + dependencies: + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/roman-numerals-4.1.0-pyhd8ed1ab_0.conda hash: - md5: db0c6b99149880c8ba515cf4abe93ee4 - sha256: 8dc54e94721e9ab545d7234aa5192b74102263d3e704e6d0c8aa7008f2da2a7b + md5: 0dc48b4b570931adc8641e55c6c17fe4 + sha256: 30f3c04fcfb64c44d821d392a4a0b8915650dbd900c8befc20ade8fde8ec6aa2 category: dev optional: true - name: roman-numerals-py - version: 3.1.0 + version: 4.1.0 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/roman-numerals-py-3.1.0-pyhd8ed1ab_0.conda + python: '>=3.10' + roman-numerals: 4.1.0 + url: https://repo.prefix.dev/conda-forge/noarch/roman-numerals-py-4.1.0-pyhd8ed1ab_0.conda hash: - md5: 5f0f24f8032c2c1bb33f59b75974f5fc - sha256: 0116a9ca9bf3487e18979b58b2f280116dba55cb53475af7a6d835f7aa133db8 + md5: 28687768633154993d521aecfa4a56ac + sha256: ce21b50a412b87b388db9e8dfbf8eb16fc436c23750b29bf612ee1a74dd0beb2 category: dev optional: true - name: roman-numerals-py - version: 3.1.0 + version: 4.1.0 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/roman-numerals-py-3.1.0-pyhd8ed1ab_0.conda + python: '>=3.10' + roman-numerals: 4.1.0 + url: https://repo.prefix.dev/conda-forge/noarch/roman-numerals-py-4.1.0-pyhd8ed1ab_0.conda hash: - md5: 5f0f24f8032c2c1bb33f59b75974f5fc - sha256: 0116a9ca9bf3487e18979b58b2f280116dba55cb53475af7a6d835f7aa133db8 + md5: 28687768633154993d521aecfa4a56ac + sha256: ce21b50a412b87b388db9e8dfbf8eb16fc436c23750b29bf612ee1a74dd0beb2 category: dev optional: true +- name: s2n + version: 1.7.3 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=14' + openssl: '>=3.5.6,<4.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/s2n-1.7.3-hc5a330e_0.conda + hash: + md5: f2bd09e21c5844a12e2f5eefcd075555 + sha256: 150a0a5254e8b15ad737549721c7d13406cd96432f3f446e07073dbd98bb2491 + category: main + optional: false - name: scikit-image - version: 0.25.2 + version: 0.26.0 manager: conda platform: linux-64 dependencies: @@ -3345,109 +3598,83 @@ 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_1.conda hash: - md5: c4aee8cadc4c9fc9a91aca0803473690 - sha256: b28d91a55205b886308da82428cd522e9dce0ef912445a2e9d89318379c15759 + md5: 4b098461b0b5edff1a9359c25e675cfd + sha256: 2ecb1a3d6aacd20e279a72196954bc8de2e83302823f9dd9f8b9b3310d1bf515 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 - hash: - md5: 8d3393f64df60e48be00d06ccb63bb18 - sha256: ef98270586c1dfb551f9ff868312554f248f155406f924b91df07cd46c14d302 - 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 + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/scipy-1.17.1-py313he51e9a2_1.conda hash: - md5: 4de79c071274a53dcaf2a8c749d1499e - sha256: 972560fcf9657058e3e1f97186cc94389144b46dbdf58c807ce62e83f977e863 + md5: 0f727c3f9910796063e5ba4c2c7d9c89 + sha256: a12318ed880dacdc573b73a34532f0c08daa883cd2dc7294ac68b8bab9b94196 category: main optional: false - name: snappy @@ -3458,10 +3685,10 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' libstdcxx: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/snappy-1.2.2-h03e3b7b_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/snappy-1.2.2-h03e3b7b_1.conda hash: - md5: 3d8da0248bdae970b4ade636a104b7f5 - sha256: 8b8acbde6814d1643da509e11afeb6bb30eb1e3004cf04a7c9ae43e9b097f063 + md5: 98b6c9dc80eb87b2519b97bcf7e578dd + sha256: 48f3f6a76c34b2cfe80de9ce7f2283ecb55d5ed47367ba91e8bb8104e12b8f11 category: main optional: false - name: snappy @@ -3472,38 +3699,38 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/snappy-1.2.2-h7fa0ca8_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/snappy-1.2.2-h7fa0ca8_1.conda hash: - md5: 194a0c548899fa2a10684c34e56a3564 - sha256: b38ed597bf71f73275a192b8cb22888997760bac826321f5838951d5d31acb23 + md5: 3075846de68f942150069d4289aaad63 + sha256: d2deda1350abf8c05978b73cf7fe9147dd5c7f2f9b312692d1b98e52efad53c3 category: main optional: false - name: snowballstemmer - version: 3.0.1 + version: 3.1.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 + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/snowballstemmer-3.1.1-pyhd8ed1ab_0.conda hash: - md5: 755cf22df8693aa0d1aec1c123fa5863 - sha256: 17007a4cfbc564dc3e7310dcbe4932c6ecb21593d4fec3c68610720f19e73fb2 + md5: 46b6abe31482f6bca064b965696ae807 + sha256: ad89284ea94821c20ff87e64b948e4afc690cf5202d14c009355b0594cf23aea category: dev optional: true - name: snowballstemmer - version: 3.0.1 + version: 3.1.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 + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/snowballstemmer-3.1.1-pyhd8ed1ab_0.conda hash: - md5: 755cf22df8693aa0d1aec1c123fa5863 - sha256: 17007a4cfbc564dc3e7310dcbe4932c6ecb21593d4fec3c68610720f19e73fb2 + md5: 46b6abe31482f6bca064b965696ae807 + sha256: ad89284ea94821c20ff87e64b948e4afc690cf5202d14c009355b0594cf23aea category: dev optional: true - name: sphinx - version: 8.2.3 + version: 8.3.0 manager: conda platform: linux-64 dependencies: @@ -3525,14 +3752,14 @@ package: sphinxcontrib-jsmath: '>=1.0.1' sphinxcontrib-qthelp: '>=1.0.6' sphinxcontrib-serializinghtml: '>=1.1.9' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-8.2.3-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-8.3.0-pyhd8ed1ab_0.conda hash: - md5: f7af826063ed569bb13f7207d6f949b0 - sha256: 995f58c662db0197d681fa345522fd9e7ac5f05330d3dff095ab2f102e260ab0 + md5: 6ce9ddee4c0f68bda548303196f4cf4c + sha256: 03c4d8b4cf3c5418e15f30f45be52bcde7c7e05baeec7dec5aaf6e238a411481 category: dev optional: true - name: sphinx - version: 8.2.3 + version: 8.3.0 manager: conda platform: win-64 dependencies: @@ -3554,10 +3781,10 @@ package: sphinxcontrib-jsmath: '>=1.0.1' sphinxcontrib-qthelp: '>=1.0.6' sphinxcontrib-serializinghtml: '>=1.1.9' - url: https://repo.prefix.dev/conda-forge/noarch/sphinx-8.2.3-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinx-8.3.0-pyhd8ed1ab_0.conda hash: - md5: f7af826063ed569bb13f7207d6f949b0 - sha256: 995f58c662db0197d681fa345522fd9e7ac5f05330d3dff095ab2f102e260ab0 + md5: 6ce9ddee4c0f68bda548303196f4cf4c + sha256: 03c4d8b4cf3c5418e15f30f45be52bcde7c7e05baeec7dec5aaf6e238a411481 category: dev optional: true - name: sphinx-autodoc-typehints @@ -3587,31 +3814,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: @@ -3619,14 +3846,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: @@ -3634,10 +3861,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 @@ -3795,100 +4022,100 @@ package: category: dev optional: true - name: sphinxcontrib-serializinghtml - version: 1.1.10 + version: 2.0.0 manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '>=3.10' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-serializinghtml-2.0.0-pyhd8ed1ab_0.conda hash: - md5: 3bc61f7161d28137797e038263c04c54 - sha256: 64d89ecc0264347486971a94487cb8d7c65bfc0176750cf7502b8a272f4ab557 + md5: f77df1fcf9af03b7287342638befca77 + sha256: 20b49741065fd7d3fabf98caf6d19b6436badb06b6d41f66b58f1fc2b52f37a1 category: dev optional: true - name: sphinxcontrib-serializinghtml - version: 1.1.10 + version: 2.0.0 manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '>=3.10' sphinx: '>=5' - url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-serializinghtml-2.0.0-pyhd8ed1ab_0.conda hash: - md5: 3bc61f7161d28137797e038263c04c54 - sha256: 64d89ecc0264347486971a94487cb8d7c65bfc0176750cf7502b8a272f4ab557 + md5: f77df1fcf9af03b7287342638befca77 + sha256: 20b49741065fd7d3fabf98caf6d19b6436badb06b6d41f66b58f1fc2b52f37a1 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 - version: 2022.3.0 + version: 2023.0.0 manager: conda platform: win-64 dependencies: - libhwloc: '>=2.12.1,<2.12.2.0a0' + libhwloc: '>=2.13.0,<2.13.1.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-hd094cb3_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/tbb-2023.0.0-hd3d4ead_2.conda hash: - md5: 17c38aaf14c640b85c4617ccb59c1146 - sha256: c31cac57913a699745d124cdc016a63e31c5749f16f60b3202414d071fc50573 + md5: 8ee01a693aecff5432069eaaf1183c45 + sha256: 8a4053839b8e997a5965e2dff7d6cf3c77be62d82c0e48c8a04a5ed2d2e73035 category: main optional: false - name: tifffile - version: 2025.10.16 + version: 2026.6.1 manager: conda platform: linux-64 dependencies: - imagecodecs: '>=2024.12.30' - numpy: '>=1.19.2' - python: '>=3.11' - url: https://repo.prefix.dev/conda-forge/noarch/tifffile-2025.10.16-pyhd8ed1ab_0.conda + imagecodecs: '>=2026.5.10' + numpy: '>=2.1' + python: '>=3.12' + url: https://repo.prefix.dev/conda-forge/noarch/tifffile-2026.6.1-pyhd8ed1ab_0.conda hash: - md5: f5b9f02d19761f79c564900a2a399984 - sha256: 84d4c49b648971147f93a6c873ce24703fd4047bc57f91f20ff1060ca7feda8f + md5: b65b41dced5a938a5d8daa8c2403b973 + sha256: 7d534bbfd0b93001296076c6634f2bdb5511a0f418ecbe310c2eed71a6e66f21 category: main optional: false - name: tifffile - version: 2025.10.16 + version: 2026.6.1 manager: conda platform: win-64 dependencies: - imagecodecs: '>=2024.12.30' - numpy: '>=1.19.2' - python: '>=3.11' - url: https://repo.prefix.dev/conda-forge/noarch/tifffile-2025.10.16-pyhd8ed1ab_0.conda + imagecodecs: '>=2026.5.10' + numpy: '>=2.1' + python: '>=3.12' + url: https://repo.prefix.dev/conda-forge/noarch/tifffile-2026.6.1-pyhd8ed1ab_0.conda hash: - md5: f5b9f02d19761f79c564900a2a399984 - sha256: 84d4c49b648971147f93a6c873ce24703fd4047bc57f91f20ff1060ca7feda8f + md5: b65b41dced5a938a5d8daa8c2403b973 + sha256: 7d534bbfd0b93001296076c6634f2bdb5511a0f418ecbe310c2eed71a6e66f21 category: main optional: false - name: tk @@ -3897,12 +4124,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_hd72426e_102.conda + url: https://repo.prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_h366c992_103.conda hash: - md5: a0116df4f4ed05c303811a837d5b39d8 - sha256: a84ff687119e6d8752346d1d408d5cf360dee0badd487a472aa8ddedfdc219e1 + md5: cffd3bdd58090148f4cfcd831f4b26ab + sha256: cafeec44494f842ffeca27e9c8b0c27ed714f93ac77ddadc6aaf726b5554ebac category: main optional: false - name: tk @@ -3911,86 +4138,87 @@ 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_2.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: ebd0e761de9aa879a51d22cc721bd095 - sha256: e3614b0eb4abcc70d98eae159db59d9b4059ed743ef402081151a948dce95896 + md5: 0481bfd9814bf525bd4b3ee4b51494c4 + sha256: 0e79810fae28f3b69fe7391b0d43f5474d6bd91d451d5f2bde02f55ae481d5e3 category: main optional: false - name: tomli - version: 2.3.0 + version: 2.4.1 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.1-pyhcf101f3_0.conda hash: - md5: d2732eb636c264dc9aa4cbee404b1a53 - sha256: cb77c660b646c00a48ef942a9e1721ee46e90230c7c570cdeb5a893b5cce9bff + md5: b5325cf06a000c5b14970462ff5e4d58 + sha256: 91cafdb64268e43e0e10d30bd1bef5af392e69f00edd34dfaf909f69ab2da6bd category: dev optional: true - name: tomli - version: 2.3.0 + version: 2.4.1 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.1-pyhcf101f3_0.conda hash: - md5: d2732eb636c264dc9aa4cbee404b1a53 - sha256: cb77c660b646c00a48ef942a9e1721ee46e90230c7c570cdeb5a893b5cce9bff + md5: b5325cf06a000c5b14970462ff5e4d58 + sha256: 91cafdb64268e43e0e10d30bd1bef5af392e69f00edd34dfaf909f69ab2da6bd category: dev optional: true - name: tomlkit - version: 0.13.3 + version: 0.15.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.15.0-pyha770c72_0.conda hash: - md5: 146402bf0f11cbeb8f781fa4309a95d3 - sha256: f8d3b49c084831a20923f66826f30ecfc55a4cd951e544b7213c692887343222 + md5: 42ef10a8f7f5d55a2e267c0d5daa6387 + sha256: 1cd52f9ccb4854c4d731438afe0e833b6b71edaf5ede661152aa98efb3a7cc70 category: dev optional: true - name: tomlkit - version: 0.13.3 + version: 0.15.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.15.0-pyha770c72_0.conda hash: - md5: 146402bf0f11cbeb8f781fa4309a95d3 - sha256: f8d3b49c084831a20923f66826f30ecfc55a4cd951e544b7213c692887343222 + md5: 42ef10a8f7f5d55a2e267c0d5daa6387 + sha256: 1cd52f9ccb4854c4d731438afe0e833b6b71edaf5ede661152aa98efb3a7cc70 category: dev optional: true - name: tqdm - version: 4.67.1 + version: 4.68.2 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.68.2-pyh8f84b5b_1.conda hash: - md5: 9efbfdc37242619130ea42b1cc4ed861 - sha256: 11e2c85468ae9902d24a27137b6b39b4a78099806e551d390e394a8c34b48e40 + md5: 99ee58c51aae7ee9ab947a0c6ce5a4c7 + sha256: f3ac3dcc43f011835efe2718f5d78981935e8aa1e1d9741b63499dfdd8fa802c category: main optional: false - name: tqdm - version: 4.67.1 + version: 4.68.2 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.68.2-pyha7b4d00_1.conda hash: - md5: 9efbfdc37242619130ea42b1cc4ed861 - sha256: 11e2c85468ae9902d24a27137b6b39b4a78099806e551d390e394a8c34b48e40 + md5: f73d419741d981f9a22939d0cb68bd4a + sha256: f25ec3f44a3a0243c35baba3dceb1dc0e4a127e5f168ca9fa34708cee821f6b7 category: main optional: false - name: typing-extensions @@ -4022,12 +4250,12 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.10' + python: '' typing_extensions: '>=4.12.0' - url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.2-pyhcf101f3_2.conda hash: - md5: 399701494e731ce73fdd86c185a3d1b4 - sha256: 8aaf69b828c2b94d0784f18f70f11aa032950d304e57e88467120b45c18c24fd + md5: 53f5409c5cfd6c5a66417d68e3f0a864 + sha256: 8b90d2f19f9458b8c58a55e1fcdc1d90c1603a847a47654d8a454549413ba60a category: main optional: false - name: typing-inspection @@ -4035,12 +4263,12 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.10' + python: '' typing_extensions: '>=4.12.0' - url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.2-pyhcf101f3_2.conda hash: - md5: 399701494e731ce73fdd86c185a3d1b4 - sha256: 8aaf69b828c2b94d0784f18f70f11aa032950d304e57e88467120b45c18c24fd + md5: 53f5409c5cfd6c5a66417d68e3f0a864 + sha256: 8b90d2f19f9458b8c58a55e1fcdc1d90c1603a847a47654d8a454549413ba60a category: main optional: false - name: typing_extensions @@ -4048,7 +4276,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 @@ -4060,7 +4288,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 @@ -4068,25 +4296,25 @@ package: category: main optional: false - name: tzdata - version: 2025b + version: 2025c manager: conda platform: linux-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.conda hash: - md5: 4222072737ccff51314b5ece9c7d6f5a - sha256: 5aaa366385d716557e365f0a4e9c3fca43ba196872abbbe3d56bb610d131e192 + md5: ad659d0a2b3e47e38d829aa8cad2d610 + sha256: 1d30098909076af33a35017eed6f2953af1c769e273a0626a04722ac4acaba3c category: main optional: false - name: tzdata - version: 2025b + version: 2025c manager: conda platform: win-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.conda hash: - md5: 4222072737ccff51314b5ece9c7d6f5a - sha256: 5aaa366385d716557e365f0a4e9c3fca43ba196872abbbe3d56bb610d131e192 + md5: ad659d0a2b3e47e38d829aa8cad2d610 + sha256: 1d30098909076af33a35017eed6f2953af1c769e273a0626a04722ac4acaba3c category: main optional: false - name: ucrt @@ -4101,108 +4329,84 @@ package: category: main optional: false - name: urllib3 - version: 2.5.0 + version: 2.7.0 manager: conda platform: linux-64 dependencies: - brotli-python: '>=1.0.9' + backports.zstd: '>=1.0.0' + brotli-python: '>=1.2.0' 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 + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/urllib3-2.7.0-pyhd8ed1ab_0.conda hash: - md5: 436c165519e140cb08d246a4472a9d6a - sha256: 4fb9789154bd666ca74e428d973df81087a697dbb987775bc3198d2215f240f8 + md5: cbb88288f74dbe6ada1c6c7d0a97223e + sha256: feff959a816f7988a0893201aa9727bbb7ee1e9cec2c4f0428269b489eb93fb4 category: dev optional: true - name: urllib3 - version: 2.5.0 + version: 2.7.0 manager: conda platform: win-64 dependencies: - brotli-python: '>=1.0.9' + backports.zstd: '>=1.0.0' + brotli-python: '>=1.2.0' 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 + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/urllib3-2.7.0-pyhd8ed1ab_0.conda hash: - md5: 436c165519e140cb08d246a4472a9d6a - sha256: 4fb9789154bd666ca74e428d973df81087a697dbb987775bc3198d2215f240f8 + md5: cbb88288f74dbe6ada1c6c7d0a97223e + sha256: feff959a816f7988a0893201aa9727bbb7ee1e9cec2c4f0428269b489eb93fb4 category: dev optional: true - name: vc - version: '14.3' + version: '14.5' manager: conda platform: win-64 dependencies: - vc14_runtime: '>=14.42.34433' - url: https://repo.prefix.dev/conda-forge/win-64/vc-14.3-h2b53caa_32.conda + vc14_runtime: '>=14.51.36231' + url: https://repo.prefix.dev/conda-forge/win-64/vc-14.5-h1b7c187_39.conda hash: - md5: ef02bbe151253a72b8eda264a935db66 - sha256: 82250af59af9ff3c6a635dd4c4764c631d854feb334d6747d356d949af44d7cf + md5: 2eacea63f545b97342da520df6854276 + sha256: 17693b60cb54f80c60275f003f3bfc1b128af56dbfd65c4fae37c64eeb755ce1 category: main optional: false - name: vc14_runtime - version: 14.44.35208 + version: 14.51.36231 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_32.conda + vcomp14: 14.51.36231 + url: https://repo.prefix.dev/conda-forge/win-64/vc14_runtime-14.51.36231-h1b9f54f_39.conda hash: - md5: 378d5dcec45eaea8d303da6f00447ac0 - sha256: e3a3656b70d1202e0d042811ceb743bd0d9f7e00e2acdf824d231b044ef6c0fd + md5: 06a5bf5a1ca16cce0df6eaa91fc42bc2 + sha256: 8153ed849c92e891eacac0f2f8d7ecb79f9b5fd7f7917fbb896f252a60a40390 category: main optional: false - name: vcomp14 - version: 14.44.35208 + version: 14.51.36231 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_32.conda + url: https://repo.prefix.dev/conda-forge/win-64/vcomp14-14.51.36231-h1b9f54f_39.conda hash: - md5: 58f67b437acbf2764317ba273d731f1d - sha256: f3790c88fbbdc55874f41de81a4237b1b91eab75e05d0e58661518ff04d2a8a1 + md5: 8b53a83fda40ec679e4d63fa32fae989 + sha256: 07fb14713c4bc62e2533a2e23a363abfb0e65650681fba0ae4c840e2219350f3 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_32.conda - hash: - md5: dfc1e5bbf1ecb0024a78e4e8bd45239d - sha256: 65cea43f4de99bc81d589e746c538908b2e95aead9042fecfbc56a4d14684a87 - 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 + version: 14.51.36231 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda + vc14_runtime: '>=14.51.36231' + url: https://repo.prefix.dev/conda-forge/win-64/vs2015_runtime-14.51.36231-h84cd919_39.conda hash: - md5: 75cb7132eb58d97896e173ef12ac9986 - sha256: 1b34021e815ff89a4d902d879c3bd2040bc1bd6169b32e9427497fa05c55f1ce + md5: 2ccc63d7b7d066a814ed9f99072832d7 + sha256: 6de6c2cf008fc2dce61060b583f2d8494c83883106952b201381b6b0505f03d7 category: main optional: false - name: win_inet_pton @@ -4224,11 +4428,11 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxau-1.0.12-hb9d3cd8_0.conda + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxau-1.0.12-hb03c661_1.conda hash: - md5: f6ebe2cb3f82ba6c057dde5d9debe4f7 - sha256: ed10c9283974d311855ae08a16dfd7e56241fac632aec3b92e3cfe73cff31038 + md5: b2895afaf55bf96a8c8282a2e47a5de0 + sha256: 6bc6ab7a90a5d8ac94c7e300cc10beb0500eeba4b99822768ca2f2ef356f731b category: main optional: false - name: xorg-libxau @@ -4236,13 +4440,13 @@ package: manager: conda platform: win-64 dependencies: - libgcc: '>=13' + 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-h0e40799_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/xorg-libxau-1.0.12-hba3369d_1.conda hash: - md5: 2ffbfae4548098297c033228256eb96e - sha256: 047836241b2712aab1e29474a6f728647bff3ab57de2806b0bb0a6cf9a2d2634 + md5: 8436cab9a76015dfe7208d3c9f97c156 + sha256: 156a583fa43609507146de1c4926172286d92458c307bb90871579601f6bc568 category: main optional: false - name: xorg-libxdmcp @@ -4251,11 +4455,11 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb9d3cd8_0.conda + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb03c661_1.conda hash: - md5: 8035c64cb77ed555e3f150b7b3972480 - sha256: 6b250f3e59db07c2514057944a3ea2044d6a8cdde8a47b6497c254520fade1ee + md5: 1dafce8548e38671bea82e3f5c6ce22f + sha256: 25d255fb2eef929d21ff660a0c687d38a6d2ccfbcbf0cc6aa738b12af6e9d142 category: main optional: false - name: xorg-libxdmcp @@ -4263,13 +4467,13 @@ package: manager: conda platform: win-64 dependencies: - libgcc: '>=13' + 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-h0e40799_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/xorg-libxdmcp-1.1.5-hba3369d_1.conda hash: - md5: 8393c0f7e7870b4eb45553326f81f0ff - sha256: 9075f98dcaa8e9957e4a3d9d30db05c7578a536950a31c200854c5c34e1edb2c + md5: a7c03e38aa9c0e84d41881b9236eacfb + sha256: 366b8ae202c3b48958f0b8784bbfdc37243d3ee1b1cd4b8e76c10abe41fa258b category: main optional: false - name: yaml @@ -4308,10 +4512,10 @@ package: _openmp_mutex: '>=4.5' libgcc: '>=14' libstdcxx: '>=14' - url: https://repo.prefix.dev/conda-forge/linux-64/zfp-1.0.1-h909a3a2_3.conda + url: https://repo.prefix.dev/conda-forge/linux-64/zfp-1.0.1-h909a3a2_5.conda hash: - md5: 03b04e4effefa41aee638f8ba30a6e78 - sha256: d9051184638fe0c24985b31b29b434ad52c77923e4802c7580da3a60ad9f167b + md5: 6a0eb48e58684cca4d7acc8b7a0fd3c7 + sha256: 5fabe6cccbafc1193038862b0b0d784df3dae84bc48f12cac268479935f9c8b7 category: main optional: false - name: zfp @@ -4322,194 +4526,363 @@ package: 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_3.conda + url: https://repo.prefix.dev/conda-forge/win-64/zfp-1.0.1-h2f0f97f_5.conda hash: - md5: 5271240cefc21317492a2ea772fa8f69 - sha256: 9acca4ee1d923a575e6c3a3933a4df1b164b5b57f5eb092fe4d57d3149c8e261 + md5: 1332dbc707144a0a17ca64c3d379c8bd + sha256: 186d7d6ebf2408377be20ed854c928b178e4e758cf9a27f0ee1336a2329a2345 category: main optional: false - name: zipp - version: 3.23.0 + version: 4.1.0 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/zipp-3.23.0-pyhd8ed1ab_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/zipp-4.1.0-pyhcf101f3_0.conda hash: - md5: df5e78d904988eb55042c0c97446079f - sha256: 7560d21e1b021fd40b65bfb72f67945a3fcb83d78ad7ccf37b8b3165ec3b68ad - category: main - optional: false + md5: ba3dcdc8584155c97c648ae9c044b7a3 + sha256: 210bd31c22bb88f5e2a167df24c95bb5f152b2ada7502f9b8c49d1f5366db423 + category: dev + optional: true - name: zipp - version: 3.23.0 + version: 4.1.0 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/zipp-3.23.0-pyhd8ed1ab_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/zipp-4.1.0-pyhcf101f3_0.conda hash: - md5: df5e78d904988eb55042c0c97446079f - sha256: 7560d21e1b021fd40b65bfb72f67945a3fcb83d78ad7ccf37b8b3165ec3b68ad - category: main - optional: false + md5: ba3dcdc8584155c97c648ae9c044b7a3 + sha256: 210bd31c22bb88f5e2a167df24c95bb5f152b2ada7502f9b8c49d1f5366db423 + category: dev + optional: true - name: zlib-ng - version: 2.2.5 + 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.2.5-hde8ca8f_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/zlib-ng-2.3.3-hceb46e0_1.conda hash: - md5: 1920c3502e7f6688d650ab81cd3775fd - sha256: 3a8e7798deafd0722b6b5da50c36b7f361a80b30165d600f7760d569a162ff95 + md5: 2aadb0d17215603a82a2a6b0afd9a4cb + sha256: ea4e50c465d70236408cb0bfe0115609fd14db1adcd8bd30d8918e0291f8a75f category: main optional: false - name: zlib-ng - version: 2.2.5 + 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.2.5-h32d8bfd_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/zlib-ng-2.3.3-h0261ad2_1.conda hash: - md5: dec092b1a069abafc38655ded65a7b29 - sha256: 67a3113acf3506f1cf1c72e0748742217a20edc6c1c1c19631f901c5e028d2bc + md5: 46a21c0a4e65f1a135251fc7c8663f83 + sha256: 71332532332d13b5dbe57074ddcf82ae711bdc132affa5a2982a29ffa06dc234 category: main optional: false -- name: zstandard - version: 0.25.0 +- name: zstd + version: 1.5.7 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - cffi: '>=1.11' - libgcc: '>=14' - python: '' - python_abi: 3.11.* - zstd: '>=1.5.7,<1.5.8.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/zstandard-0.25.0-py311haee01d2_1.conda + libzlib: '>=1.3.1,<2.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb78ec9c_6.conda hash: - md5: ca45bfd4871af957aaa5035593d5efd2 - sha256: d534a6518c2d8eccfa6579d75f665261484f0f2f7377b50402446a9433d46234 - category: dev - optional: true -- name: zstandard - version: 0.25.0 + md5: 4a13eeac0b5c8e5b8ab496e6c4ddd829 + sha256: 68f0206ca6e98fea941e5717cec780ed2873ffabc0e1ed34428c061e2c6268c7 + category: main + optional: false +- name: zstd + version: 1.5.7 manager: conda platform: win-64 dependencies: - cffi: '>=1.11' - python: '' - python_abi: 3.11.* + 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.5.8.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/zstandard-0.25.0-py311hf893f09_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/zstd-1.5.7-h534d264_6.conda hash: - md5: b2d90bca78b57c17205ce3ca1c427813 - sha256: 10f089bedef1a28c663ef575fb9cec66b2058e342c4cf4a753083ab07591008f - category: dev - optional: true -- name: zstd - version: 1.5.7 - manager: conda + md5: 053b84beec00b71ea8ff7a4f84b55207 + sha256: 368d8628424966fd8f9c8018326a9c779e06913dd39e646cf331226acc90e5b2 + category: main + optional: false +- name: contourpy + version: 1.3.3 + manager: pip platform: linux-64 dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - libstdcxx: '>=13' - libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb8e6e7a_2.conda + numpy: '>=1.25' + url: https://files.pythonhosted.org/packages/4b/32/e0f13a1c5b0f8572d0ec6ae2f6c677b7991fafd95da523159c19eff0696a/contourpy-1.3.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl hash: - md5: 6432cb5d4ac0046c3ac0a8a0f95842f9 - sha256: a4166e3d8ff4e35932510aaff7aa90772f84b4d07e9f6f83c614cba7ceefe0eb + sha256: 4debd64f124ca62069f313a9cb86656ff087786016d76927ae2cf37846b006c9 category: main optional: false -- name: zstd - version: 1.5.7 - manager: conda +- name: contourpy + version: 1.3.3 + manager: pip platform: win-64 dependencies: - libzlib: '>=1.3.1,<2.0a0' - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/zstd-1.5.7-hbeecb71_2.conda + numpy: '>=1.25' + url: https://files.pythonhosted.org/packages/18/0b/0098c214843213759692cc638fce7de5c289200a830e5035d1791d7a2338/contourpy-1.3.3-cp313-cp313-win_amd64.whl + hash: + sha256: 1cadd8b8969f060ba45ed7c1b714fe69185812ab43bd6b86a9123fe8f99c3263 + category: main + optional: false +- name: cycler + version: 0.12.1 + manager: pip + platform: linux-64 + dependencies: {} + url: https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl + hash: + sha256: 85cef7cff222d8644161529808465972e51340599459b8ac3ccbac5a854e0d30 + category: main + optional: false +- name: cycler + version: 0.12.1 + manager: pip + platform: win-64 + dependencies: {} + url: https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl + hash: + sha256: 85cef7cff222d8644161529808465972e51340599459b8ac3ccbac5a854e0d30 + category: main + optional: false +- name: fonttools + version: 4.63.0 + manager: pip + platform: linux-64 + dependencies: {} + url: https://files.pythonhosted.org/packages/ce/36/0b805d8c485f872f65a509cbe3b58a5d0d17bee855333b54a150c79d3061/fonttools-4.63.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl hash: - md5: 21f56217d6125fb30c3c3f10c786d751 - sha256: bc64864377d809b904e877a98d0584f43836c9f2ef27d3d2a1421fa6eae7ca04 + sha256: 22135da48a348785c5e2d5d2d9d6bec5ed44adacbaeb9db12d9493bf6c6bfa68 + category: main + optional: false +- name: fonttools + version: 4.63.0 + manager: pip + platform: win-64 + dependencies: {} + url: https://files.pythonhosted.org/packages/92/46/5177b01f3b4abfdd4409f31cca4ab279c9343a26efbe9ec78c97fc612e02/fonttools-4.63.0-cp313-cp313-win_amd64.whl + hash: + sha256: ba04cb5891d4c0c21b6da95eda8d7b090021508a294fff33464fc7d241e0856b category: main optional: false - name: geoapps-utils - version: 0.7.0a1.dev3+80c4658 + version: 0.7.0b2.dev1+31e1f71 manager: pip platform: linux-64 dependencies: - geoh5py: 0.12.0b4.dev18+8f630a84 - numpy: '>=1.26.0,<1.27.0' - pydantic: '>=2.5.2,<3.0.0' - scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@80c46588d47b70a1dd26aef06ccfa24bc1585502 + geoh5py: '>=0.13.0b1,<0.14.dev0' + 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@31e1f71c37347154e97e6b07e068f7979a67832c hash: - sha256: 80c46588d47b70a1dd26aef06ccfa24bc1585502 + sha256: 31e1f71c37347154e97e6b07e068f7979a67832c source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@80c46588d47b70a1dd26aef06ccfa24bc1585502 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@31e1f71c37347154e97e6b07e068f7979a67832c category: main optional: false - name: geoapps-utils - version: 0.7.0a1.dev3+80c4658 + version: 0.7.0b2.dev1+31e1f71 manager: pip platform: win-64 dependencies: - geoh5py: 0.12.0b4.dev18+8f630a84 - numpy: '>=1.26.0,<1.27.0' - pydantic: '>=2.5.2,<3.0.0' - scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@80c46588d47b70a1dd26aef06ccfa24bc1585502 + geoh5py: '>=0.13.0b1,<0.14.dev0' + 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@31e1f71c37347154e97e6b07e068f7979a67832c hash: - sha256: 80c46588d47b70a1dd26aef06ccfa24bc1585502 + sha256: 31e1f71c37347154e97e6b07e068f7979a67832c source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@80c46588d47b70a1dd26aef06ccfa24bc1585502 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@31e1f71c37347154e97e6b07e068f7979a67832c category: main optional: false - name: geoh5py - version: 0.12.0b4.dev18+8f630a84 + version: 0.13.0b2 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.5.2,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@8f630a84b2b9f2b7632f895e1521d8d61c04e80e + h5py: '>=3.15.0,<3.16.0' + numpy: '>=2.4.0,<2.5.0' + pillow: '>=12.2.0,<12.3.0' + psutil: '>=7.2.2,<7.3.0' + pydantic: '>=2.12.0,<2.13.0' + url: git+https://github.com/MiraGeoscience/geoh5py.git@37016b8cbe1db7d880c9c2ae724d48ab09962c28 hash: - sha256: 8f630a84b2b9f2b7632f895e1521d8d61c04e80e + sha256: 37016b8cbe1db7d880c9c2ae724d48ab09962c28 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@8f630a84b2b9f2b7632f895e1521d8d61c04e80e + url: git+https://github.com/MiraGeoscience/geoh5py.git@37016b8cbe1db7d880c9c2ae724d48ab09962c28 category: main optional: false - name: geoh5py - version: 0.12.0b4.dev18+8f630a84 + version: 0.13.0b2 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.5.2,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@8f630a84b2b9f2b7632f895e1521d8d61c04e80e + h5py: '>=3.15.0,<3.16.0' + numpy: '>=2.4.0,<2.5.0' + pillow: '>=12.2.0,<12.3.0' + psutil: '>=7.2.2,<7.3.0' + pydantic: '>=2.12.0,<2.13.0' + url: git+https://github.com/MiraGeoscience/geoh5py.git@37016b8cbe1db7d880c9c2ae724d48ab09962c28 hash: - sha256: 8f630a84b2b9f2b7632f895e1521d8d61c04e80e + sha256: 37016b8cbe1db7d880c9c2ae724d48ab09962c28 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@8f630a84b2b9f2b7632f895e1521d8d61c04e80e + url: git+https://github.com/MiraGeoscience/geoh5py.git@37016b8cbe1db7d880c9c2ae724d48ab09962c28 + category: main + optional: false +- name: kiwisolver + version: 1.5.0 + manager: pip + platform: linux-64 + dependencies: {} + url: https://files.pythonhosted.org/packages/2b/0a/7b98e1e119878a27ba8618ca1e18b14f992ff1eda40f47bccccf4de44121/kiwisolver-1.5.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl + hash: + sha256: 332b4f0145c30b5f5ad9374881133e5aa64320428a57c2c2b61e9d891a51c2f3 + category: main + optional: false +- name: kiwisolver + version: 1.5.0 + manager: pip + platform: win-64 + dependencies: {} + url: https://files.pythonhosted.org/packages/be/8a/be60e3bbcf513cc5a50f4a3e88e1dcecebb79c1ad607a7222877becaa101/kiwisolver-1.5.0-cp313-cp313-win_amd64.whl + hash: + sha256: 0bf3acf1419fa93064a4c2189ac0b58e3be7872bf6ee6177b0d4c63dc4cea276 + category: main + optional: false +- name: matplotlib + version: 3.10.9 + manager: pip + platform: linux-64 + dependencies: + contourpy: '>=1.0.1' + cycler: '>=0.10' + fonttools: '>=4.22.0' + kiwisolver: '>=1.3.1' + numpy: '>=1.23' + packaging: '>=20.0' + pillow: '>=8' + pyparsing: '>=3' + python-dateutil: '>=2.7' + url: https://files.pythonhosted.org/packages/8a/17/4402d0d14ccf1dfc70932600b68097fbbf9c898a4871d2cbbe79c7801a32/matplotlib-3.10.9-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl + hash: + sha256: 8f3bcac1ca5ed000a6f4337d47ba67dfddf37ed6a46c15fd7f014997f7bf865f + category: main + optional: false +- name: matplotlib + version: 3.10.9 + manager: pip + platform: win-64 + dependencies: + contourpy: '>=1.0.1' + cycler: '>=0.10' + fonttools: '>=4.22.0' + kiwisolver: '>=1.3.1' + numpy: '>=1.23' + packaging: '>=20.0' + pillow: '>=8' + pyparsing: '>=3' + python-dateutil: '>=2.7' + url: https://files.pythonhosted.org/packages/c5/e0/0840fd2f93da988ec660b8ad1984abe9f25d2aed22a5e394ff1c68c88307/matplotlib-3.10.9-cp313-cp313-win_amd64.whl + hash: + sha256: f4399f64b3e94cd500195490972ae1ee81170df1636fa15364d157d5bdd7b921 + category: main + optional: false +- name: psutil + version: 7.2.2 + manager: pip + platform: linux-64 + dependencies: {} + url: https://files.pythonhosted.org/packages/b5/70/5d8df3b09e25bce090399cf48e452d25c935ab72dad19406c77f4e828045/psutil-7.2.2-cp36-abi3-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl + hash: + sha256: 076a2d2f923fd4821644f5ba89f059523da90dc9014e85f8e45a5774ca5bc6f9 + category: main + optional: false +- name: psutil + version: 7.2.2 + manager: pip + platform: win-64 + dependencies: {} + url: https://files.pythonhosted.org/packages/b4/90/e2159492b5426be0c1fef7acba807a03511f97c5f86b3caeda6ad92351a7/psutil-7.2.2-cp37-abi3-win_amd64.whl + hash: + sha256: eb7e81434c8d223ec4a219b5fc1c47d0417b12be7ea866e24fb5ad6e84b3d988 + category: main + optional: false +- name: pyparsing + version: 3.3.2 + manager: pip + platform: linux-64 + dependencies: {} + url: https://files.pythonhosted.org/packages/10/bd/c038d7cc38edc1aa5bf91ab8068b63d4308c66c4c8bb3cbba7dfbc049f9c/pyparsing-3.3.2-py3-none-any.whl + hash: + sha256: 850ba148bd908d7e2411587e247a1e4f0327839c40e2e5e6d05a007ecc69911d + category: main + optional: false +- name: pyparsing + version: 3.3.2 + manager: pip + platform: win-64 + dependencies: {} + url: https://files.pythonhosted.org/packages/10/bd/c038d7cc38edc1aa5bf91ab8068b63d4308c66c4c8bb3cbba7dfbc049f9c/pyparsing-3.3.2-py3-none-any.whl + hash: + sha256: 850ba148bd908d7e2411587e247a1e4f0327839c40e2e5e6d05a007ecc69911d + category: main + optional: false +- name: python-dateutil + version: 2.9.0.post0 + manager: pip + platform: linux-64 + dependencies: + six: '>=1.5' + url: https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl + hash: + sha256: a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427 + category: main + optional: false +- name: python-dateutil + version: 2.9.0.post0 + manager: pip + platform: win-64 + dependencies: + six: '>=1.5' + url: https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl + hash: + sha256: a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427 + category: main + optional: false +- name: six + version: 1.17.0 + manager: pip + platform: linux-64 + dependencies: {} + url: https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl + hash: + sha256: 4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274 + category: main + optional: false +- name: six + version: 1.17.0 + manager: pip + platform: win-64 + dependencies: {} + url: https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl + hash: + sha256: 4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274 category: main optional: false diff --git a/pyproject.toml b/pyproject.toml index 66e65e9..450d481 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,9 +13,9 @@ build-backend = "poetry_dynamic_versioning.backend" [project] name = "surface-apps" -requires-python = '>=3.10,<4.0' +requires-python = '>=3.12,<4.0' -description = "Find Iso-surfaces in 3D data." +description = "Applications to create and manipulate surface meshes for geoscientific data." license = "MIT" keywords = ["geology", "geophysics", "earth sciences"] readme = "package.rst" @@ -31,7 +31,7 @@ repository = "https://github.com/MiraGeoscience/surface-apps" homepage = "https://www.mirageoscience.com/mining-industry-software/python-integration/" [tool.poetry] -requires-poetry = '>=2.0,<3.0' +requires-poetry = "2.*" classifiers = [ "Development Status :: 2 - Pre-Alpha", @@ -52,31 +52,25 @@ packages = [ { include = "surface_apps-assets" }, ] include = [ - { path = "COPYING" }, - { path = "COPYING.LESSER" }, - { path = "LICENSE" }, - { path = "README.rst" }, - { path = "docs/**/THIRD_PARTY_SOFTWARE.rst" }, + { path = "surface_apps/_version.py", format = ["sdist", "wheel"] }, ] - version = "0.0.0.dev0" -[tool.poetry.dependencies] -python = "^3.10" -numpy = "~1.26.0" # also in geoh5py -pydantic = "^2.5.2" # also in geoh5py -scikit-image = "^0.25.2" -scipy = "~1.14.0" # also in geoapps-utils +[tool.poetry.dependencies] +numpy = "~2.4.2" +pydantic = "~2.12.0" # also in geoh5py +scikit-image = "~0.26.0" +scipy = "~1.17.0" # also in geoapps-utils tqdm = "^4.66.1" ## Pip dependencies from Git repositories #---------------------------------------- #geoh5py = {version = ">=0.12.0a, <0.13.dev", source = "pypi", allow-prereleases = true} -geoh5py = {git = "https://github.com/MiraGeoscience/geoh5py.git", rev = "develop"} +geoh5py = {git = "https://github.com/MiraGeoscience/geoh5py.git", rev = "release/GA_4.8"} #geoapps-utils = {version = ">=0.6.0a, <0.7.dev", source = "pypi", allow-prereleases = true} -geoapps-utils = {git = "https://github.com/MiraGeoscience/geoapps-utils.git", rev = "develop"} +geoapps-utils = {git = "https://github.com/MiraGeoscience/geoapps-utils.git", rev = "release/GA_4.8"} ## about pip dependencies # to be specified to work with conda-lock @@ -90,8 +84,8 @@ geoapps-utils = {git = "https://github.com/MiraGeoscience/geoapps-utils.git", re [tool.conda-lock.dependencies] ## indirect dependencies, forcing them here for installation through Conda not pip #--------------------------------------------------------------------------------- -Pillow = ">=10.3.0, <10.4.dev" # from geoh5py -h5py = ">=3.2.1, <4.0.dev" # from geoh5py +pillow = ">=12.1.0, 12.*" # from geoh5py +h5py = ">=3.15.1, 3.*" # from geoh5py [tool.poetry.group.dev.dependencies] Pygments = "*" @@ -107,7 +101,7 @@ sphinx-rtd-theme = "*" tomli = "*" [tool.poetry.requires-plugins] -poetry-dynamic-versioning = { version = ">=1.9.1,<2.0.0", extras = ["plugin"] } +poetry-dynamic-versioning = { version = ">=1.9.1, 1.*", extras = ["plugin"] } [tool.poetry-dynamic-versioning] bump = true @@ -141,7 +135,7 @@ platforms = ['win-64', 'linux-64'] channels = ['conda-forge'] [tool.ruff] -target-version = "py310" +target-version = "py312" [tool.ruff.lint] ignore = [ diff --git a/recipe.yaml b/recipe.yaml index e2fd9cb..06314f8 100644 --- a/recipe.yaml +++ b/recipe.yaml @@ -2,13 +2,14 @@ schema_version: 1 context: name: "surface-apps" + python_min: "3.12" # Extract version from auto-generated _version.json - version: ${{ load_from_file("_version.json").version | trim }} - python_min: '3.10' + version: "${{ load_from_file('_version.json').version | trim }}" + module_name: ${{ name|lower|replace("-", "_") }} package: name: ${{ name|lower }} - version: ${{ version }} + version: "${{ version }}" source: path: ../${{ name }} @@ -16,32 +17,38 @@ source: build: number: 0 noarch: python - script: ${{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation + script: + env: + POETRY_DYNAMIC_VERSIONING_BYPASS: "${{ version }}" + content: + ${{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation requirements: host: - - python 3.10.* - - poetry-core >=1.8.0 - - poetry-dynamic-versioning >=1.9, <2.0.dev - - setuptools + - python ${{ python_min }}.* - pip + - poetry-core >=1.8.0 + - poetry-dynamic-versioning >=1.9, 1.* run: - python >=${{ python_min }} # Mira packages - - geoapps-utils >=0.6.0a, <0.7.dev - - geoh5py >=0.12.0a, <0.13.dev + - geoapps-utils >=0.7.0b1, 0.7.* + - geoh5py >=0.13.0b1, 0.13.* # other direct dependencies - - numpy >=1.26.0, <1.27.dev - - pydantic >=2.5.2, <3.0.dev - - scikit-image >=0.25.2, <0.26.dev - - scipy >=1.14.0, <1.15.dev - - tqdm >=4.66.1, <5.0.dev + - numpy >=2.4.2, 2.4.* + - pydantic 2.12.* + - scikit-image 0.26.* + - scipy 1.17.* + - tqdm >=4.66.1, 4.* tests: - python: + python_version: ${{ python_min }}.* imports: - - surface_apps - - surface_apps._version + - ${{ module_name }} + - ${{ module_name }}._version + pip_check: true + - script: - pytest --ignore=tests/version_test.py requirements: @@ -50,11 +57,16 @@ tests: files: source: - tests/ - + - + - package_contents: + files: + - site-packages/${{ module_name }}/_version.py about: - summary: Surface detection within geoscientific data. + summary: Surface creation and manipulation within geoscientific data. license: MIT - license_file: LICENSE + license_file: + - LICENSE + - docs/source/THIRD_PARTY_SOFTWARE.rst homepage: https://www.mirageoscience.com/mining-industry-software/python-integration/ repository: https://github.com/MiraGeoscience/surface-apps From 80e0080add8426bf4b234f94e1e98602a3924f31 Mon Sep 17 00:00:00 2001 From: domfournier Date: Mon, 15 Jun 2026 09:26:06 -0700 Subject: [PATCH 2/6] Update pre-commit --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index fb82e50..d6d1a63 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -36,7 +36,7 @@ repos: hooks: - id: mypy additional_dependencies: [ - numpy==1.26.*, + numpy==2.4.*, types-toml, types-PyYAML, tomli # to read config from pyproject.toml From 8692ccd47202c23641e30c6868eab6f4523e74d7 Mon Sep 17 00:00:00 2001 From: domfournier Date: Mon, 15 Jun 2026 09:42:32 -0700 Subject: [PATCH 3/6] Fix for mypy --- .pre-commit-config.yaml | 3 ++- pyproject.toml | 2 +- surface_apps/iso_surfaces/params.py | 19 +++++++------------ 3 files changed, 10 insertions(+), 14 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index d6d1a63..272f552 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -16,7 +16,7 @@ repos: hooks: - id: poetry-check - repo: https://github.com/hadialqattan/pycln - rev: v2.5.0 + rev: v2.6.0 hooks: - id: pycln args: [--config=pyproject.toml] @@ -39,6 +39,7 @@ repos: numpy==2.4.*, types-toml, types-PyYAML, + pydantic==2.12.*, tomli # to read config from pyproject.toml ] exclude: ^(docs|surface_apps-assets)/ diff --git a/pyproject.toml b/pyproject.toml index 450d481..b3cb983 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -179,7 +179,7 @@ show_column_numbers = true check_untyped_defs = true plugins = [ - "numpy.typing.mypy_plugin", + "pydantic.mypy" ] [tool.pytest.ini_options] diff --git a/surface_apps/iso_surfaces/params.py b/surface_apps/iso_surfaces/params.py index 7862f10..b3098b4 100644 --- a/surface_apps/iso_surfaces/params.py +++ b/surface_apps/iso_surfaces/params.py @@ -20,7 +20,7 @@ from geoh5py.objects.cell_object import CellObject from geoh5py.objects.grid_object import GridObject from geoh5py.ui_json.utils import str2list -from pydantic import BaseModel, ConfigDict, field_validator +from pydantic import BaseModel, ConfigDict, Field, field_validator from surface_apps import assets_path @@ -70,7 +70,7 @@ class IsoSurfaceDetectionParameters(BaseModel): interval_min: float | None = None interval_max: float | None = None - interval_spacing: float | None = None + interval_spacing: float | None = Field(gt=0) fixed_contours: list[float] | None = None max_distance: float = 500.0 resolution: float = 50.0 @@ -103,20 +103,15 @@ def fixed_contour_input_to_list_of_floats(cls, val): return fixed_contours - @property - def has_intervals(self) -> bool: - """True if interval min, max and spacing are defined.""" - - has_min_max = None not in [self.interval_min, self.interval_max] - has_spacing = self.interval_spacing not in [0, None] - - return has_min_max and has_spacing - @property 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 + ): intervals = np.arange( self.interval_min, self.interval_max + self.interval_spacing / 2, # type: ignore From 3d3fe0a868a76759767d64a892aaa176f9f08c7c Mon Sep 17 00:00:00 2001 From: domfournier Date: Mon, 15 Jun 2026 10:02:30 -0700 Subject: [PATCH 4/6] Copilot comments --- README-dev.rst | 42 +++++++++++------------------------------- recipe.yaml | 3 +-- 2 files changed, 12 insertions(+), 33 deletions(-) diff --git a/README-dev.rst b/README-dev.rst index 0b75583..0ae868b 100644 --- a/README-dev.rst +++ b/README-dev.rst @@ -17,46 +17,26 @@ After you have cloned the Git repository, you will need to: Create the Conda environment lock files -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +--------------------------------------- +First, create the Conda environment lock files (``*.conda.lock.yml``) for the dependencies defined +in `pyproject.toml`_. From the root of the project, run the command:: -First, you need to create the Conda environment lock files (``*.conda.lock.yml``) for the dependencies defined -in `pyproject.toml`_. + $ deps-lock -.. note:: - As a prerequisite, you need to install some packages in your base Conda environment. To do so, - simply execute ``devtools\setup-conda-base.bat``. - -Then, to create the Conda environment lock files, execute ``devtools\run_conda_lock.bat``, -or run from command line:: - - $ (base) python devtools/run_conda_lock.py - -It will create or update ``.conda.lock.yml`` files in the ``environments`` folder: +It will create or replace the ``*.conda.lock.yml`` files in the ``environments`` folder: one for runtime dependencies, and one for development dependencies (with the ``-dev`` suffix), -for each combinations of Python versions and platforms. - -The platforms are specified in ``conda-lock`` section of the ``pyproject.toml`` file: - -.. code-block:: toml - - [tool.conda-lock] - platforms = ['win-64', 'linux-64'] - -The python versions are specified at the beginning of the ``devtools/run_conda_lock.py`` file: - -.. code-block:: python - - _python_versions = ["3.12", "3.13"] +for each combinations of Python versions and platforms +(platforms are specified in ``conda-lock`` section of the ``pyproject.toml``). -The ``Install_or_Update.bat`` and the ``setup-dev.bat`` will use them to install the environment. +These files will be used by installation script and to create the development environment. Install the Conda environment -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +----------------------------- -For development, you need a **Conda** environments. you can install it running the ``setup-dev.bat`` or:: +For development, you need a **Conda** environment. From the root of the project, run the command:: - $ [path\to\surface-apps]\devtools\setup-dev.bat + $ create-dev-env This command install a local environment at the base of your repository: ``.conda-env``. This environment should automatically be recognized by the Conda installation. diff --git a/recipe.yaml b/recipe.yaml index 06314f8..b974f9b 100644 --- a/recipe.yaml +++ b/recipe.yaml @@ -28,7 +28,7 @@ requirements: - python ${{ python_min }}.* - pip - poetry-core >=1.8.0 - - poetry-dynamic-versioning >=1.9, 1.* + - poetry-dynamic-versioning >=1.9.1, 1.* run: - python >=${{ python_min }} # Mira packages @@ -57,7 +57,6 @@ tests: files: source: - tests/ - - - package_contents: files: - site-packages/${{ module_name }}/_version.py From fd3bc02d253a20955de29e09ad47fb067bc11d5a Mon Sep 17 00:00:00 2001 From: domfournier Date: Mon, 15 Jun 2026 14:04:45 -0700 Subject: [PATCH 5/6] Seb's comments --- .pre-commit-config.yaml | 2 +- pyproject.toml | 15 +++++---------- 2 files changed, 6 insertions(+), 11 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 272f552..ff6b211 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,6 +1,6 @@ default_language_version: - python: python3 + python: python3.12 exclude: ^docs/(conf.py|_ext/) default_stages: [pre-commit,pre-push] fail_fast: false diff --git a/pyproject.toml b/pyproject.toml index b3cb983..63401c0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -52,6 +52,8 @@ packages = [ { include = "surface_apps-assets" }, ] include = [ + { path = "LICENSE" }, + { path = "docs/source/THIRD_PARTY_SOFTWARE.rst" }, { path = "surface_apps/_version.py", format = ["sdist", "wheel"] }, ] version = "0.0.0.dev0" @@ -72,20 +74,13 @@ geoh5py = {git = "https://github.com/MiraGeoscience/geoh5py.git", rev = "release #geoapps-utils = {version = ">=0.6.0a, <0.7.dev", source = "pypi", allow-prereleases = true} geoapps-utils = {git = "https://github.com/MiraGeoscience/geoapps-utils.git", rev = "release/GA_4.8"} -## about pip dependencies -# to be specified to work with conda-lock -# - from PyPI: my_package = { version = "1.2.3", source = "pypi" } -# - from URL: !!! no actual lock, as tag or branch can move and installation will fetch current !!! -# - for a tag: my_package = { url = "https://github.com/ORGANISATION/REPO/archive/refs/tags/TAG.tar.gz" } -# - for a branch: my_package = { url = "https://github.com/ORGANISATION/REPO/archive/refs/heads/BRANCH.tar.gz" } -# - to actually lock on a revision: my_package = { git = "https://github.com/ORGANISATION/REPO.git", rev = "GIT_REV" } -# (where rev value is a tag, a branch name or a commit hash). Can also use ``branch`` or ``tag`` instead of ``rev`` - [tool.conda-lock.dependencies] ## indirect dependencies, forcing them here for installation through Conda not pip #--------------------------------------------------------------------------------- -pillow = ">=12.1.0, 12.*" # from geoh5py h5py = ">=3.15.1, 3.*" # from geoh5py +matplotlib-base = "3.10.*" # from geoapps-utils +pillow = ">=12.1.0, 12.*" # from geoh5py +psutil = ">=7.2.2, 7.2.*" # from geoh5py [tool.poetry.group.dev.dependencies] Pygments = "*" From 47174aed2702afab968ce42e48c3e42c09972cc1 Mon Sep 17 00:00:00 2001 From: domfournier Date: Mon, 15 Jun 2026 14:06:23 -0700 Subject: [PATCH 6/6] Re-lock --- .../py-3.12-linux-64-dev.conda.lock.yml | 26 +- environments/py-3.12-linux-64.conda.lock.yml | 26 +- .../py-3.12-win-64-dev.conda.lock.yml | 27 +- environments/py-3.12-win-64.conda.lock.yml | 27 +- .../py-3.13-linux-64-dev.conda.lock.yml | 25 +- environments/py-3.13-linux-64.conda.lock.yml | 25 +- .../py-3.13-win-64-dev.conda.lock.yml | 26 +- environments/py-3.13-win-64.conda.lock.yml | 26 +- py-3.12.conda-lock.yml | 686 ++++++++++++------ py-3.13.conda-lock.yml | 653 +++++++++++------ 10 files changed, 1059 insertions(+), 488 deletions(-) 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 d79b4fa..f872ed9 100644 --- a/environments/py-3.12-linux-64-dev.conda.lock.yml +++ b/environments/py-3.12-linux-64-dev.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: bd0c8f0370f448082c7a79302e605dc89bb86cd6635f23d28a3648cdc7c29662 +# input_hash: 042bb6f2771b0982a365cf34829041d6282dbb90cae2d960ed023844fc384968 channels: - conda-forge @@ -23,6 +23,8 @@ dependencies: - babel=2.18.0=pyhcf101f3_1 - backports.zstd=1.6.0=py312h90b7ffd_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=py312hdb49522_1 - brunsli=0.1=hd1e3526_2 - bzip2=1.0.8=hda65f42_9 @@ -35,11 +37,15 @@ dependencies: - charls=2.4.4=hecca717_0 - charset-normalizer=3.4.7=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 + - contourpy=1.3.3=py312h0a2e395_4 - coverage=7.14.1=py312h8a5da7c_0 + - cycler=0.12.1=pyhcf101f3_2 - dav1d=1.2.1=hd590300_0 - dill=0.4.1=pyhcf101f3_0 - docutils=0.21.2=pyhd8ed1ab_1 - exceptiongroup=1.3.1=pyhd8ed1ab_0 + - fonttools=4.63.0=py312h8a5da7c_0 + - freetype=2.14.3=ha770c72_0 - giflib=5.2.2=hd590300_0 - h2=4.3.0=pyhcf101f3_0 - h5py=3.16.0=nompi_py312ha829cd9_102 @@ -56,6 +62,7 @@ dependencies: - jinja2=3.1.6=pyhcf101f3_1 - jxrlib=1.1=hd590300_3 - keyutils=1.6.3=hb9d3cd8_0 + - kiwisolver=1.5.0=py312h0a2e395_0 - krb5=1.22.2=ha1258a1_0 - lazy-loader=0.5=pyhd8ed1ab_0 - lcms2=2.19.1=h0c24ade_1 @@ -103,7 +110,9 @@ dependencies: - libzopfli=1.0.3=h9c3ff4c_0 - lz4-c=1.10.0=h5888daf_1 - markupsafe=3.0.3=py312h8a5da7c_1 + - matplotlib-base=3.10.9=py312he3d6523_0 - mccabe=0.7.0=pyhd8ed1ab_1 + - munkres=1.1.4=pyhd8ed1ab_1 - ncurses=6.6=hdb14827_0 - networkx=3.6.1=pyhcf101f3_0 - numpy=2.4.6=py312h33ff503_0 @@ -115,17 +124,21 @@ dependencies: - pip=26.1.2=pyh8b19718_0 - platformdirs=4.10.0=pyhcf101f3_0 - pluggy=1.6.0=pyhf9edf01_1 + - psutil=7.2.2=py312h5253ce2_0 - pthread-stubs=0.4=hb9d3cd8_1002 - pydantic=2.12.5=pyhcf101f3_1 - pydantic-core=2.41.5=py312h868fb18_1 - pygments=2.20.0=pyhd8ed1ab_0 - pylint=4.0.6=pyhcf101f3_0 + - pyparsing=3.3.2=pyhcf101f3_0 - pysocks=1.7.1=pyha55dd90_7 - pytest=9.0.3=pyhc364b38_1 - pytest-cov=7.1.0=pyhcf101f3_0 - python=3.12.13=hd63d673_0_cpython + - python-dateutil=2.9.0.post0=pyhe01879c_2 - python_abi=3.12=8_cp312 - pyyaml=6.0.3=py312h8a5da7c_1 + - qhull=2020.2=h434a139_5 - rav1e=0.8.1=h1fbca29_0 - readline=8.3=h853b02a_0 - requests=2.34.2=pyhcf101f3_0 @@ -135,6 +148,7 @@ dependencies: - scikit-image=0.26.0=np2py312h4ae17e4_0 - scipy=1.17.1=py312h54fa4ab_1 - setuptools=82.0.1=pyh332efcf_0 + - six=1.17.0=pyhe01879c_1 - snappy=1.2.2=h03e3b7b_1 - snowballstemmer=3.1.1=pyhd8ed1ab_0 - sphinx=8.3.0=pyhd8ed1ab_0 @@ -158,6 +172,7 @@ dependencies: - typing-inspection=0.4.2=pyhcf101f3_2 - typing_extensions=4.15.0=pyhcf101f3_0 - tzdata=2025c=hc9c84f9_1 + - unicodedata2=17.0.1=py312h4c3975b_0 - urllib3=2.7.0=pyhd8ed1ab_0 - wheel=0.47.0=pyhd8ed1ab_0 - xorg-libxau=1.0.12=hb03c661_1 @@ -168,17 +183,8 @@ dependencies: - zlib-ng=2.3.3=hceb46e0_1 - zstd=1.5.7=hb78ec9c_6 - pip: - - contourpy == 1.3.3 - - cycler == 0.12.1 - - fonttools == 4.63.0 - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@31e1f71c37347154e97e6b07e068f7979a67832c - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@37016b8cbe1db7d880c9c2ae724d48ab09962c28 - - kiwisolver == 1.5.0 - - matplotlib == 3.10.9 - - psutil == 7.2.2 - - pyparsing == 3.3.2 - - python-dateutil == 2.9.0.post0 - - six == 1.17.0 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 40ec867..3b43a23 100644 --- a/environments/py-3.12-linux-64.conda.lock.yml +++ b/environments/py-3.12-linux-64.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: bd0c8f0370f448082c7a79302e605dc89bb86cd6635f23d28a3648cdc7c29662 +# input_hash: 042bb6f2771b0982a365cf34829041d6282dbb90cae2d960ed023844fc384968 channels: - conda-forge @@ -19,6 +19,8 @@ dependencies: - aws-c-sdkutils=0.2.4=haa0cbde_6 - aws-checksums=0.2.10=haa0cbde_2 - blosc=1.21.6=he440d0b_1 + - brotli=1.2.0=hed03a55_1 + - brotli-bin=1.2.0=hb03c661_1 - brunsli=0.1=hd1e3526_2 - bzip2=1.0.8=hda65f42_9 - c-ares=1.34.6=hb03c661_0 @@ -27,7 +29,11 @@ dependencies: - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - charls=2.4.4=hecca717_0 + - contourpy=1.3.3=py312h0a2e395_4 + - cycler=0.12.1=pyhcf101f3_2 - dav1d=1.2.1=hd590300_0 + - fonttools=4.63.0=py312h8a5da7c_0 + - freetype=2.14.3=ha770c72_0 - giflib=5.2.2=hd590300_0 - h5py=3.16.0=nompi_py312ha829cd9_102 - hdf5=2.1.0=nompi_h735b18d_107 @@ -35,6 +41,7 @@ dependencies: - imageio=2.37.0=pyhfb79c49_0 - jxrlib=1.1=hd590300_3 - keyutils=1.6.3=hb9d3cd8_0 + - kiwisolver=1.5.0=py312h0a2e395_0 - krb5=1.22.2=ha1258a1_0 - lazy-loader=0.5=pyhd8ed1ab_0 - lcms2=2.19.1=h0c24ade_1 @@ -81,6 +88,8 @@ dependencies: - libzlib=1.3.2=h25fd6f3_2 - libzopfli=1.0.3=h9c3ff4c_0 - lz4-c=1.10.0=h5888daf_1 + - matplotlib-base=3.10.9=py312he3d6523_0 + - munkres=1.1.4=pyhd8ed1ab_1 - ncurses=6.6=hdb14827_0 - networkx=3.6.1=pyhcf101f3_0 - numpy=2.4.6=py312h33ff503_0 @@ -90,17 +99,22 @@ dependencies: - packaging=26.2=pyhc364b38_0 - pillow=12.2.0=py312h50c33e8_0 - pip=26.1.2=pyh8b19718_0 + - psutil=7.2.2=py312h5253ce2_0 - pthread-stubs=0.4=hb9d3cd8_1002 - pydantic=2.12.5=pyhcf101f3_1 - pydantic-core=2.41.5=py312h868fb18_1 + - pyparsing=3.3.2=pyhcf101f3_0 - python=3.12.13=hd63d673_0_cpython + - python-dateutil=2.9.0.post0=pyhe01879c_2 - python_abi=3.12=8_cp312 + - qhull=2020.2=h434a139_5 - rav1e=0.8.1=h1fbca29_0 - readline=8.3=h853b02a_0 - s2n=1.7.3=hc5a330e_0 - scikit-image=0.26.0=np2py312h4ae17e4_0 - scipy=1.17.1=py312h54fa4ab_1 - setuptools=82.0.1=pyh332efcf_0 + - six=1.17.0=pyhe01879c_1 - snappy=1.2.2=h03e3b7b_1 - svt-av1=4.0.1=hecca717_0 - tifffile=2026.6.1=pyhd8ed1ab_0 @@ -110,6 +124,7 @@ dependencies: - typing-inspection=0.4.2=pyhcf101f3_2 - typing_extensions=4.15.0=pyhcf101f3_0 - tzdata=2025c=hc9c84f9_1 + - unicodedata2=17.0.1=py312h4c3975b_0 - wheel=0.47.0=pyhd8ed1ab_0 - xorg-libxau=1.0.12=hb03c661_1 - xorg-libxdmcp=1.1.5=hb03c661_1 @@ -117,17 +132,8 @@ dependencies: - zlib-ng=2.3.3=hceb46e0_1 - zstd=1.5.7=hb78ec9c_6 - pip: - - contourpy == 1.3.3 - - cycler == 0.12.1 - - fonttools == 4.63.0 - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@31e1f71c37347154e97e6b07e068f7979a67832c - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@37016b8cbe1db7d880c9c2ae724d48ab09962c28 - - kiwisolver == 1.5.0 - - matplotlib == 3.10.9 - - psutil == 7.2.2 - - pyparsing == 3.3.2 - - python-dateutil == 2.9.0.post0 - - six == 1.17.0 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 7c721c3..847ace4 100644 --- a/environments/py-3.12-win-64-dev.conda.lock.yml +++ b/environments/py-3.12-win-64-dev.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: 3438a9367ed8f2bfcf4f8f529cfaba3ffc11a0f894d1fc98c2b16807b6ad3fee +# input_hash: 26227c48e7cb5da4f963037e44fdaf3ec430b2b2812e3dadf0bc1ee4f28fa637 channels: - conda-forge @@ -24,6 +24,8 @@ dependencies: - babel=2.18.0=pyhcf101f3_1 - backports.zstd=1.6.0=py312h06d0912_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_9 - c-blosc2=3.1.3=h2af8807_0 @@ -34,11 +36,15 @@ dependencies: - charls=2.4.4=h7cafa3a_0 - charset-normalizer=3.4.7=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 + - contourpy=1.3.3=py312h78d62e6_4 - coverage=7.14.1=py312h05f76fc_0 + - cycler=0.12.1=pyhcf101f3_2 - dav1d=1.2.1=hcfcfb64_0 - dill=0.4.1=pyhcf101f3_0 - docutils=0.21.2=pyhd8ed1ab_1 - exceptiongroup=1.3.1=pyhd8ed1ab_0 + - fonttools=4.63.0=py312h05f76fc_0 + - freetype=2.14.3=h57928b3_1 - giflib=5.2.2=h64bf75a_0 - h2=4.3.0=pyhcf101f3_0 - h5py=3.16.0=nompi_py312h5ddec8c_102 @@ -54,6 +60,7 @@ dependencies: - isort=8.0.1=pyhd8ed1ab_0 - jinja2=3.1.6=pyhcf101f3_1 - jxrlib=1.1=hcfcfb64_3 + - kiwisolver=1.5.0=py312h78d62e6_0 - krb5=1.22.2=h0ea6238_0 - lazy-loader=0.5=pyhd8ed1ab_0 - lcms2=2.19.1=hf2c6c5f_1 @@ -94,8 +101,10 @@ dependencies: - llvm-openmp=22.1.7=h4fa8253_0 - lz4-c=1.10.0=h2466b09_1 - markupsafe=3.0.3=py312h05f76fc_1 + - matplotlib-base=3.10.9=py312h0ebf65c_0 - mccabe=0.7.0=pyhd8ed1ab_1 - mkl=2026.0.0=hac47afa_908 + - munkres=1.1.4=pyhd8ed1ab_1 - networkx=3.6.1=pyhcf101f3_0 - numpy=2.4.6=py312ha3f287d_0 - onemkl-license=2026.0.0=h57928b3_908 @@ -107,17 +116,21 @@ dependencies: - pip=26.1.2=pyh8b19718_0 - platformdirs=4.10.0=pyhcf101f3_0 - pluggy=1.6.0=pyhf9edf01_1 + - psutil=7.2.2=py312he5662c2_0 - pthread-stubs=0.4=h0e40799_1002 - pydantic=2.12.5=pyhcf101f3_1 - pydantic-core=2.41.5=py312hdabe01f_1 - pygments=2.20.0=pyhd8ed1ab_0 - pylint=4.0.6=pyhcf101f3_0 + - pyparsing=3.3.2=pyhcf101f3_0 - pysocks=1.7.1=pyh09c184e_7 - pytest=9.0.3=pyhc364b38_1 - pytest-cov=7.1.0=pyhcf101f3_0 - python=3.12.13=h0159041_0_cpython + - python-dateutil=2.9.0.post0=pyhe01879c_2 - python_abi=3.12=8_cp312 - pyyaml=6.0.3=py312h05f76fc_1 + - qhull=2020.2=hc790b64_5 - rav1e=0.8.1=h007690e_0 - requests=2.34.2=pyhcf101f3_0 - roman-numerals=4.1.0=pyhd8ed1ab_0 @@ -125,6 +138,7 @@ dependencies: - scikit-image=0.26.0=np2py312h9ea65bc_0 - scipy=1.17.1=py312h9b3c559_1 - setuptools=82.0.1=pyh332efcf_0 + - six=1.17.0=pyhe01879c_1 - snappy=1.2.2=h7fa0ca8_1 - snowballstemmer=3.1.1=pyhd8ed1ab_0 - sphinx=8.3.0=pyhd8ed1ab_0 @@ -150,6 +164,7 @@ dependencies: - typing_extensions=4.15.0=pyhcf101f3_0 - tzdata=2025c=hc9c84f9_1 - ucrt=10.0.26100.0=h57928b3_0 + - unicodedata2=17.0.1=py312he06e257_0 - urllib3=2.7.0=pyhd8ed1ab_0 - vc=14.5=h1b7c187_39 - vc14_runtime=14.51.36231=h1b9f54f_39 @@ -162,20 +177,12 @@ dependencies: - yaml=0.2.5=h6a83c73_3 - zfp=1.0.1=h2f0f97f_5 - zipp=4.1.0=pyhcf101f3_0 + - zlib=1.3.2=hfd05255_2 - zlib-ng=2.3.3=h0261ad2_1 - zstd=1.5.7=h534d264_6 - pip: - - contourpy == 1.3.3 - - cycler == 0.12.1 - - fonttools == 4.63.0 - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@31e1f71c37347154e97e6b07e068f7979a67832c - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@37016b8cbe1db7d880c9c2ae724d48ab09962c28 - - kiwisolver == 1.5.0 - - matplotlib == 3.10.9 - - psutil == 7.2.2 - - pyparsing == 3.3.2 - - python-dateutil == 2.9.0.post0 - - six == 1.17.0 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 acf2add..9081492 100644 --- a/environments/py-3.12-win-64.conda.lock.yml +++ b/environments/py-3.12-win-64.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: 3438a9367ed8f2bfcf4f8f529cfaba3ffc11a0f894d1fc98c2b16807b6ad3fee +# input_hash: 26227c48e7cb5da4f963037e44fdaf3ec430b2b2812e3dadf0bc1ee4f28fa637 channels: - conda-forge @@ -20,6 +20,8 @@ dependencies: - aws-c-sdkutils=0.2.4=h1f21522_6 - aws-checksums=0.2.10=h1f21522_2 - blosc=1.21.6=hfd34d9b_1 + - brotli=1.2.0=h2d644bc_1 + - brotli-bin=1.2.0=hfd05255_1 - bzip2=1.0.8=h0ad9c76_9 - c-blosc2=3.1.3=h2af8807_0 - ca-certificates=2026.5.20=h4c7d964_0 @@ -27,13 +29,18 @@ dependencies: - cached_property=1.5.2=pyha770c72_1 - charls=2.4.4=h7cafa3a_0 - colorama=0.4.6=pyhd8ed1ab_1 + - contourpy=1.3.3=py312h78d62e6_4 + - cycler=0.12.1=pyhcf101f3_2 - dav1d=1.2.1=hcfcfb64_0 + - fonttools=4.63.0=py312h05f76fc_0 + - freetype=2.14.3=h57928b3_1 - giflib=5.2.2=h64bf75a_0 - h5py=3.16.0=nompi_py312h5ddec8c_102 - hdf5=2.1.0=nompi_h693361b_107 - imagecodecs=2026.6.6=py312h68cad51_1 - imageio=2.37.0=pyhfb79c49_0 - jxrlib=1.1=hcfcfb64_3 + - kiwisolver=1.5.0=py312h78d62e6_0 - krb5=1.22.2=h0ea6238_0 - lazy-loader=0.5=pyhd8ed1ab_0 - lcms2=2.19.1=hf2c6c5f_1 @@ -73,7 +80,9 @@ dependencies: - libzopfli=1.0.3=h0e60522_0 - llvm-openmp=22.1.7=h4fa8253_0 - lz4-c=1.10.0=h2466b09_1 + - matplotlib-base=3.10.9=py312h0ebf65c_0 - mkl=2026.0.0=hac47afa_908 + - munkres=1.1.4=pyhd8ed1ab_1 - networkx=3.6.1=pyhcf101f3_0 - numpy=2.4.6=py312ha3f287d_0 - onemkl-license=2026.0.0=h57928b3_908 @@ -83,15 +92,20 @@ dependencies: - packaging=26.2=pyhc364b38_0 - pillow=12.2.0=py312h31f0997_0 - pip=26.1.2=pyh8b19718_0 + - psutil=7.2.2=py312he5662c2_0 - pthread-stubs=0.4=h0e40799_1002 - pydantic=2.12.5=pyhcf101f3_1 - pydantic-core=2.41.5=py312hdabe01f_1 + - pyparsing=3.3.2=pyhcf101f3_0 - python=3.12.13=h0159041_0_cpython + - python-dateutil=2.9.0.post0=pyhe01879c_2 - python_abi=3.12=8_cp312 + - qhull=2020.2=hc790b64_5 - rav1e=0.8.1=h007690e_0 - scikit-image=0.26.0=np2py312h9ea65bc_0 - scipy=1.17.1=py312h9b3c559_1 - setuptools=82.0.1=pyh332efcf_0 + - six=1.17.0=pyhe01879c_1 - snappy=1.2.2=h7fa0ca8_1 - svt-av1=4.0.1=hac47afa_0 - tbb=2023.0.0=hd3d4ead_2 @@ -103,6 +117,7 @@ dependencies: - typing_extensions=4.15.0=pyhcf101f3_0 - tzdata=2025c=hc9c84f9_1 - ucrt=10.0.26100.0=h57928b3_0 + - unicodedata2=17.0.1=py312he06e257_0 - vc=14.5=h1b7c187_39 - vc14_runtime=14.51.36231=h1b9f54f_39 - vcomp14=14.51.36231=h1b9f54f_39 @@ -111,20 +126,12 @@ dependencies: - xorg-libxau=1.0.12=hba3369d_1 - xorg-libxdmcp=1.1.5=hba3369d_1 - zfp=1.0.1=h2f0f97f_5 + - zlib=1.3.2=hfd05255_2 - zlib-ng=2.3.3=h0261ad2_1 - zstd=1.5.7=h534d264_6 - pip: - - contourpy == 1.3.3 - - cycler == 0.12.1 - - fonttools == 4.63.0 - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@31e1f71c37347154e97e6b07e068f7979a67832c - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@37016b8cbe1db7d880c9c2ae724d48ab09962c28 - - kiwisolver == 1.5.0 - - matplotlib == 3.10.9 - - psutil == 7.2.2 - - pyparsing == 3.3.2 - - python-dateutil == 2.9.0.post0 - - six == 1.17.0 variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.13-linux-64-dev.conda.lock.yml b/environments/py-3.13-linux-64-dev.conda.lock.yml index 58d9aa3..8d0ecc8 100644 --- a/environments/py-3.13-linux-64-dev.conda.lock.yml +++ b/environments/py-3.13-linux-64-dev.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 7ae67d9e4c855c99d4d6233062f675b414eadc3bdd9df3261ddcc4e6fb9c1b5b +# input_hash: b5b0cd49461cbd87ae7cbe46f8f16db222e464c6dd73455254ed70894a1d9e16 channels: - conda-forge @@ -23,6 +23,8 @@ dependencies: - babel=2.18.0=pyhcf101f3_1 - backports.zstd=1.6.0=py313h18e8e13_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=py313hf159716_1 - brunsli=0.1=hd1e3526_2 - bzip2=1.0.8=hda65f42_9 @@ -35,11 +37,15 @@ dependencies: - charls=2.4.4=hecca717_0 - charset-normalizer=3.4.7=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 + - contourpy=1.3.3=py313hc8edb43_4 - coverage=7.14.1=py313h3dea7bd_0 + - cycler=0.12.1=pyhcf101f3_2 - dav1d=1.2.1=hd590300_0 - dill=0.4.1=pyhcf101f3_0 - docutils=0.21.2=pyhd8ed1ab_1 - exceptiongroup=1.3.1=pyhd8ed1ab_0 + - fonttools=4.63.0=py313h3dea7bd_0 + - freetype=2.14.3=ha770c72_0 - giflib=5.2.2=hd590300_0 - h2=4.3.0=pyhcf101f3_0 - h5py=3.16.0=nompi_py313h22c32d4_102 @@ -56,6 +62,7 @@ dependencies: - jinja2=3.1.6=pyhcf101f3_1 - jxrlib=1.1=hd590300_3 - keyutils=1.6.3=hb9d3cd8_0 + - kiwisolver=1.5.0=py313hc8edb43_0 - krb5=1.22.2=ha1258a1_0 - lazy-loader=0.5=pyhd8ed1ab_0 - lcms2=2.19.1=h0c24ade_1 @@ -102,7 +109,9 @@ dependencies: - libzopfli=1.0.3=h9c3ff4c_0 - lz4-c=1.10.0=h5888daf_1 - markupsafe=3.0.3=py313h3dea7bd_1 + - matplotlib-base=3.10.9=py313h683a580_0 - mccabe=0.7.0=pyhd8ed1ab_1 + - munkres=1.1.4=pyhd8ed1ab_1 - ncurses=6.6=hdb14827_0 - networkx=3.6.1=pyhcf101f3_0 - numpy=2.4.6=py313hf6604e3_0 @@ -114,17 +123,21 @@ dependencies: - pip=26.1.2=pyh145f28c_0 - platformdirs=4.10.0=pyhcf101f3_0 - pluggy=1.6.0=pyhf9edf01_1 + - psutil=7.2.2=py313h54dd161_0 - pthread-stubs=0.4=hb9d3cd8_1002 - pydantic=2.12.5=pyhcf101f3_1 - pydantic-core=2.41.5=py313h843e2db_1 - pygments=2.20.0=pyhd8ed1ab_0 - pylint=4.0.6=pyhcf101f3_0 + - pyparsing=3.3.2=pyhcf101f3_0 - pysocks=1.7.1=pyha55dd90_7 - pytest=9.0.3=pyhc364b38_1 - pytest-cov=7.1.0=pyhcf101f3_0 - python=3.13.14=h6add32d_100_cp313 + - python-dateutil=2.9.0.post0=pyhe01879c_2 - 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.34.2=pyhcf101f3_0 @@ -133,6 +146,7 @@ dependencies: - s2n=1.7.3=hc5a330e_0 - scikit-image=0.26.0=np2py313hb172dc5_0 - scipy=1.17.1=py313h4b8bb8b_1 + - six=1.17.0=pyhe01879c_1 - snappy=1.2.2=h03e3b7b_1 - snowballstemmer=3.1.1=pyhd8ed1ab_0 - sphinx=8.3.0=pyhd8ed1ab_0 @@ -165,17 +179,8 @@ dependencies: - zlib-ng=2.3.3=hceb46e0_1 - zstd=1.5.7=hb78ec9c_6 - pip: - - contourpy == 1.3.3 - - cycler == 0.12.1 - - fonttools == 4.63.0 - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@31e1f71c37347154e97e6b07e068f7979a67832c - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@37016b8cbe1db7d880c9c2ae724d48ab09962c28 - - kiwisolver == 1.5.0 - - matplotlib == 3.10.9 - - psutil == 7.2.2 - - pyparsing == 3.3.2 - - python-dateutil == 2.9.0.post0 - - six == 1.17.0 variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.13-linux-64.conda.lock.yml b/environments/py-3.13-linux-64.conda.lock.yml index 3542316..aa9aac3 100644 --- a/environments/py-3.13-linux-64.conda.lock.yml +++ b/environments/py-3.13-linux-64.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 7ae67d9e4c855c99d4d6233062f675b414eadc3bdd9df3261ddcc4e6fb9c1b5b +# input_hash: b5b0cd49461cbd87ae7cbe46f8f16db222e464c6dd73455254ed70894a1d9e16 channels: - conda-forge @@ -19,6 +19,8 @@ dependencies: - aws-c-sdkutils=0.2.4=haa0cbde_6 - aws-checksums=0.2.10=haa0cbde_2 - blosc=1.21.6=he440d0b_1 + - brotli=1.2.0=hed03a55_1 + - brotli-bin=1.2.0=hb03c661_1 - brunsli=0.1=hd1e3526_2 - bzip2=1.0.8=hda65f42_9 - c-ares=1.34.6=hb03c661_0 @@ -27,7 +29,11 @@ dependencies: - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - charls=2.4.4=hecca717_0 + - contourpy=1.3.3=py313hc8edb43_4 + - cycler=0.12.1=pyhcf101f3_2 - dav1d=1.2.1=hd590300_0 + - fonttools=4.63.0=py313h3dea7bd_0 + - freetype=2.14.3=ha770c72_0 - giflib=5.2.2=hd590300_0 - h5py=3.16.0=nompi_py313h22c32d4_102 - hdf5=2.1.0=nompi_h735b18d_107 @@ -35,6 +41,7 @@ dependencies: - imageio=2.37.0=pyhfb79c49_0 - jxrlib=1.1=hd590300_3 - keyutils=1.6.3=hb9d3cd8_0 + - kiwisolver=1.5.0=py313hc8edb43_0 - krb5=1.22.2=ha1258a1_0 - lazy-loader=0.5=pyhd8ed1ab_0 - lcms2=2.19.1=h0c24ade_1 @@ -80,6 +87,8 @@ dependencies: - libzlib=1.3.2=h25fd6f3_2 - libzopfli=1.0.3=h9c3ff4c_0 - lz4-c=1.10.0=h5888daf_1 + - matplotlib-base=3.10.9=py313h683a580_0 + - munkres=1.1.4=pyhd8ed1ab_1 - ncurses=6.6=hdb14827_0 - networkx=3.6.1=pyhcf101f3_0 - numpy=2.4.6=py313hf6604e3_0 @@ -89,16 +98,21 @@ dependencies: - packaging=26.2=pyhc364b38_0 - pillow=12.2.0=py313h80991f8_0 - pip=26.1.2=pyh145f28c_0 + - psutil=7.2.2=py313h54dd161_0 - pthread-stubs=0.4=hb9d3cd8_1002 - pydantic=2.12.5=pyhcf101f3_1 - pydantic-core=2.41.5=py313h843e2db_1 + - pyparsing=3.3.2=pyhcf101f3_0 - python=3.13.14=h6add32d_100_cp313 + - python-dateutil=2.9.0.post0=pyhe01879c_2 - python_abi=3.13=8_cp313 + - qhull=2020.2=h434a139_5 - rav1e=0.8.1=h1fbca29_0 - readline=8.3=h853b02a_0 - s2n=1.7.3=hc5a330e_0 - scikit-image=0.26.0=np2py313hb172dc5_0 - scipy=1.17.1=py313h4b8bb8b_1 + - six=1.17.0=pyhe01879c_1 - snappy=1.2.2=h03e3b7b_1 - svt-av1=4.0.1=hecca717_0 - tifffile=2026.6.1=pyhd8ed1ab_0 @@ -114,17 +128,8 @@ dependencies: - zlib-ng=2.3.3=hceb46e0_1 - zstd=1.5.7=hb78ec9c_6 - pip: - - contourpy == 1.3.3 - - cycler == 0.12.1 - - fonttools == 4.63.0 - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@31e1f71c37347154e97e6b07e068f7979a67832c - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@37016b8cbe1db7d880c9c2ae724d48ab09962c28 - - kiwisolver == 1.5.0 - - matplotlib == 3.10.9 - - psutil == 7.2.2 - - pyparsing == 3.3.2 - - python-dateutil == 2.9.0.post0 - - six == 1.17.0 variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.13-win-64-dev.conda.lock.yml b/environments/py-3.13-win-64-dev.conda.lock.yml index 9d62b3b..e082d87 100644 --- a/environments/py-3.13-win-64-dev.conda.lock.yml +++ b/environments/py-3.13-win-64-dev.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: 68d4c5cd077931dc72e0120818f18da0e293191418207ef8c38d0ea5ce60e92e +# input_hash: 7f705106f37a4f4063d5bee031b16eda70a82a9a2c4fe4454b27532bfb186c41 channels: - conda-forge @@ -24,6 +24,8 @@ dependencies: - babel=2.18.0=pyhcf101f3_1 - backports.zstd=1.6.0=py313h2a31948_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=py313h3ebfc14_1 - bzip2=1.0.8=h0ad9c76_9 - c-blosc2=3.1.3=h2af8807_0 @@ -34,11 +36,15 @@ dependencies: - charls=2.4.4=h7cafa3a_0 - charset-normalizer=3.4.7=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_1 + - contourpy=1.3.3=py313h1a38498_4 - coverage=7.14.1=py313hd650c13_0 + - cycler=0.12.1=pyhcf101f3_2 - dav1d=1.2.1=hcfcfb64_0 - dill=0.4.1=pyhcf101f3_0 - docutils=0.21.2=pyhd8ed1ab_1 - exceptiongroup=1.3.1=pyhd8ed1ab_0 + - fonttools=4.63.0=py313hd650c13_0 + - freetype=2.14.3=h57928b3_1 - giflib=5.2.2=h64bf75a_0 - h2=4.3.0=pyhcf101f3_0 - h5py=3.16.0=nompi_py313hd050a09_102 @@ -54,6 +60,7 @@ dependencies: - isort=8.0.1=pyhd8ed1ab_0 - jinja2=3.1.6=pyhcf101f3_1 - jxrlib=1.1=hcfcfb64_3 + - kiwisolver=1.5.0=py313h1a38498_0 - krb5=1.22.2=h0ea6238_0 - lazy-loader=0.5=pyhd8ed1ab_0 - lcms2=2.19.1=hf2c6c5f_1 @@ -95,8 +102,10 @@ dependencies: - llvm-openmp=22.1.7=h4fa8253_0 - lz4-c=1.10.0=h2466b09_1 - markupsafe=3.0.3=py313hd650c13_1 + - matplotlib-base=3.10.9=py313he1ded55_0 - mccabe=0.7.0=pyhd8ed1ab_1 - mkl=2026.0.0=hac47afa_908 + - munkres=1.1.4=pyhd8ed1ab_1 - networkx=3.6.1=pyhcf101f3_0 - numpy=2.4.6=py313ha8dc839_0 - onemkl-license=2026.0.0=h57928b3_908 @@ -108,23 +117,28 @@ dependencies: - pip=26.1.2=pyh145f28c_0 - platformdirs=4.10.0=pyhcf101f3_0 - pluggy=1.6.0=pyhf9edf01_1 + - psutil=7.2.2=py313h5fd188c_0 - pthread-stubs=0.4=h0e40799_1002 - pydantic=2.12.5=pyhcf101f3_1 - pydantic-core=2.41.5=py313hfbe8231_1 - pygments=2.20.0=pyhd8ed1ab_0 - pylint=4.0.6=pyhcf101f3_0 + - pyparsing=3.3.2=pyhcf101f3_0 - pysocks=1.7.1=pyh09c184e_7 - pytest=9.0.3=pyhc364b38_1 - pytest-cov=7.1.0=pyhcf101f3_0 - python=3.13.14=h09917c8_100_cp313 + - python-dateutil=2.9.0.post0=pyhe01879c_2 - 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.34.2=pyhcf101f3_0 - roman-numerals=4.1.0=pyhd8ed1ab_0 - roman-numerals-py=4.1.0=pyhd8ed1ab_0 - scikit-image=0.26.0=np2py313h33c6dc1_0 - scipy=1.17.1=py313he51e9a2_1 + - six=1.17.0=pyhe01879c_1 - snappy=1.2.2=h7fa0ca8_1 - snowballstemmer=3.1.1=pyhd8ed1ab_0 - sphinx=8.3.0=pyhd8ed1ab_0 @@ -161,20 +175,12 @@ dependencies: - yaml=0.2.5=h6a83c73_3 - zfp=1.0.1=h2f0f97f_5 - zipp=4.1.0=pyhcf101f3_0 + - zlib=1.3.2=hfd05255_2 - zlib-ng=2.3.3=h0261ad2_1 - zstd=1.5.7=h534d264_6 - pip: - - contourpy == 1.3.3 - - cycler == 0.12.1 - - fonttools == 4.63.0 - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@31e1f71c37347154e97e6b07e068f7979a67832c - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@37016b8cbe1db7d880c9c2ae724d48ab09962c28 - - kiwisolver == 1.5.0 - - matplotlib == 3.10.9 - - psutil == 7.2.2 - - pyparsing == 3.3.2 - - python-dateutil == 2.9.0.post0 - - six == 1.17.0 variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.13-win-64.conda.lock.yml b/environments/py-3.13-win-64.conda.lock.yml index b928ffa..853d22a 100644 --- a/environments/py-3.13-win-64.conda.lock.yml +++ b/environments/py-3.13-win-64.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: 68d4c5cd077931dc72e0120818f18da0e293191418207ef8c38d0ea5ce60e92e +# input_hash: 7f705106f37a4f4063d5bee031b16eda70a82a9a2c4fe4454b27532bfb186c41 channels: - conda-forge @@ -20,6 +20,8 @@ dependencies: - aws-c-sdkutils=0.2.4=h1f21522_6 - aws-checksums=0.2.10=h1f21522_2 - blosc=1.21.6=hfd34d9b_1 + - brotli=1.2.0=h2d644bc_1 + - brotli-bin=1.2.0=hfd05255_1 - bzip2=1.0.8=h0ad9c76_9 - c-blosc2=3.1.3=h2af8807_0 - ca-certificates=2026.5.20=h4c7d964_0 @@ -27,13 +29,18 @@ dependencies: - cached_property=1.5.2=pyha770c72_1 - charls=2.4.4=h7cafa3a_0 - colorama=0.4.6=pyhd8ed1ab_1 + - contourpy=1.3.3=py313h1a38498_4 + - cycler=0.12.1=pyhcf101f3_2 - dav1d=1.2.1=hcfcfb64_0 + - fonttools=4.63.0=py313hd650c13_0 + - freetype=2.14.3=h57928b3_1 - giflib=5.2.2=h64bf75a_0 - h5py=3.16.0=nompi_py313hd050a09_102 - hdf5=2.1.0=nompi_h693361b_107 - imagecodecs=2026.6.6=py313h61cc59b_1 - imageio=2.37.0=pyhfb79c49_0 - jxrlib=1.1=hcfcfb64_3 + - kiwisolver=1.5.0=py313h1a38498_0 - krb5=1.22.2=h0ea6238_0 - lazy-loader=0.5=pyhd8ed1ab_0 - lcms2=2.19.1=hf2c6c5f_1 @@ -74,7 +81,9 @@ dependencies: - libzopfli=1.0.3=h0e60522_0 - llvm-openmp=22.1.7=h4fa8253_0 - lz4-c=1.10.0=h2466b09_1 + - matplotlib-base=3.10.9=py313he1ded55_0 - mkl=2026.0.0=hac47afa_908 + - munkres=1.1.4=pyhd8ed1ab_1 - networkx=3.6.1=pyhcf101f3_0 - numpy=2.4.6=py313ha8dc839_0 - onemkl-license=2026.0.0=h57928b3_908 @@ -84,14 +93,19 @@ dependencies: - packaging=26.2=pyhc364b38_0 - pillow=12.2.0=py313h38f99e1_0 - pip=26.1.2=pyh145f28c_0 + - psutil=7.2.2=py313h5fd188c_0 - pthread-stubs=0.4=h0e40799_1002 - pydantic=2.12.5=pyhcf101f3_1 - pydantic-core=2.41.5=py313hfbe8231_1 + - pyparsing=3.3.2=pyhcf101f3_0 - python=3.13.14=h09917c8_100_cp313 + - python-dateutil=2.9.0.post0=pyhe01879c_2 - python_abi=3.13=8_cp313 + - qhull=2020.2=hc790b64_5 - rav1e=0.8.1=h007690e_0 - scikit-image=0.26.0=np2py313h33c6dc1_0 - scipy=1.17.1=py313he51e9a2_1 + - six=1.17.0=pyhe01879c_1 - snappy=1.2.2=h7fa0ca8_1 - svt-av1=4.0.1=hac47afa_0 - tbb=2023.0.0=hd3d4ead_2 @@ -110,20 +124,12 @@ dependencies: - xorg-libxau=1.0.12=hba3369d_1 - xorg-libxdmcp=1.1.5=hba3369d_1 - zfp=1.0.1=h2f0f97f_5 + - zlib=1.3.2=hfd05255_2 - zlib-ng=2.3.3=h0261ad2_1 - zstd=1.5.7=h534d264_6 - pip: - - contourpy == 1.3.3 - - cycler == 0.12.1 - - fonttools == 4.63.0 - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@31e1f71c37347154e97e6b07e068f7979a67832c - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@37016b8cbe1db7d880c9c2ae724d48ab09962c28 - - kiwisolver == 1.5.0 - - matplotlib == 3.10.9 - - psutil == 7.2.2 - - pyparsing == 3.3.2 - - python-dateutil == 2.9.0.post0 - - six == 1.17.0 variables: KMP_WARNINGS: 0 diff --git a/py-3.12.conda-lock.yml b/py-3.12.conda-lock.yml index 7c066d4..d67d448 100644 --- a/py-3.12.conda-lock.yml +++ b/py-3.12.conda-lock.yml @@ -15,8 +15,8 @@ version: 1 metadata: content_hash: - win-64: 3438a9367ed8f2bfcf4f8f529cfaba3ffc11a0f894d1fc98c2b16807b6ad3fee - linux-64: bd0c8f0370f448082c7a79302e605dc89bb86cd6635f23d28a3648cdc7c29662 + win-64: 26227c48e7cb5da4f963037e44fdaf3ec430b2b2812e3dadf0bc1ee4f28fa637 + linux-64: 042bb6f2771b0982a365cf34829041d6282dbb90cae2d960ed023844fc384968 channels: - url: conda-forge used_env_vars: [] @@ -551,6 +551,70 @@ package: sha256: 9303a7a0e03cf118eab3691013f6d6cbd1cbac66efbc70d89b20f5d0145257c0 category: main optional: false +- name: brotli + version: 1.2.0 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + brotli-bin: 1.2.0 + libbrotlidec: 1.2.0 + libbrotlienc: 1.2.0 + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/brotli-1.2.0-hed03a55_1.conda + hash: + md5: 8ccf913aaba749a5496c17629d859ed1 + sha256: e511644d691f05eb12ebe1e971fd6dc3ae55a4df5c253b4e1788b789bdf2dfa6 + category: main + optional: false +- name: brotli + version: 1.2.0 + manager: conda + platform: win-64 + dependencies: + brotli-bin: 1.2.0 + libbrotlidec: 1.2.0 + libbrotlienc: 1.2.0 + ucrt: '>=10.0.20348.0' + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/brotli-1.2.0-h2d644bc_1.conda + hash: + md5: bc58fdbced45bb096364de0fba1637af + sha256: a4fffdf1c9b9d3d0d787e20c724cff3a284dfa3773f9ce609c93b1cfd0ce8933 + category: main + optional: false +- name: brotli-bin + version: 1.2.0 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + libbrotlidec: 1.2.0 + libbrotlienc: 1.2.0 + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/brotli-bin-1.2.0-hb03c661_1.conda + hash: + md5: af39b9a8711d4a8d437b52c1d78eb6a1 + sha256: 64b137f30b83b1dd61db6c946ae7511657eead59fdf74e84ef0ded219605aa94 + category: main + optional: false +- name: brotli-bin + version: 1.2.0 + manager: conda + platform: win-64 + dependencies: + libbrotlidec: 1.2.0 + libbrotlienc: 1.2.0 + ucrt: '>=10.0.20348.0' + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/brotli-bin-1.2.0-hfd05255_1.conda + hash: + md5: 6abd7089eb3f0c790235fe469558d190 + sha256: e76966232ef9612de33c2087e3c92c2dc42ea5f300050735a3c646f33bce0429 + category: main + optional: false - name: brotli-python version: 1.2.0 manager: conda @@ -846,6 +910,40 @@ package: sha256: ab29d57dc70786c1269633ba3dff20288b81664d3ff8d21af995742e2bb03287 category: main optional: false +- name: contourpy + version: 1.3.3 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=14' + libstdcxx: '>=14' + numpy: '>=1.25' + python: '' + python_abi: 3.12.* + url: https://repo.prefix.dev/conda-forge/linux-64/contourpy-1.3.3-py312h0a2e395_4.conda + hash: + md5: 43c2bc96af3ae5ed9e8a10ded942aa50 + sha256: 62447faf7e8eb691e407688c0b4b7c230de40d5ecf95bf301111b4d05c5be473 + category: main + optional: false +- name: contourpy + version: 1.3.3 + manager: conda + platform: win-64 + dependencies: + numpy: '>=1.25' + 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-py312h78d62e6_4.conda + hash: + md5: 475bd41a63e613f2f2a2764cd1cd3b25 + sha256: 5f0dd3a4243e8293acc40abf3b11bcb23401268a1ef2ed3bce4d5a060383c1da + category: main + optional: false - name: coverage version: 7.14.1 manager: conda @@ -879,6 +977,30 @@ package: sha256: a37669c35673713cd5b1006958754d2f5ba8f0c10a85796579eea2dc9260f94c 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: '' + 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: dav1d version: 1.2.1 manager: conda @@ -979,6 +1101,70 @@ package: sha256: ee6cf346d017d954255bbcbdb424cddea4d14e4ed7e9813e429db1d795d01144 category: dev optional: true +- name: fonttools + version: 4.63.0 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + brotli: '' + libgcc: '>=14' + munkres: '' + 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.63.0-py312h8a5da7c_0.conda + hash: + md5: 294fb524171e2a2748cb7fe708aba826 + sha256: d235ae7075642044ceb3d922ef2a710a82665755ac9bbb7e8dad7daa72bc6d87 + category: main + optional: false +- name: fonttools + version: 4.63.0 + manager: conda + platform: win-64 + dependencies: + brotli: '' + munkres: '' + python: '>=3.12,<3.13.0a0' + python_abi: 3.12.* + 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.63.0-py312h05f76fc_0.conda + hash: + md5: 2944f5f8ea7e2db9cea01ed951e09194 + sha256: 4e31266b0ddacb2e2f48f00d999aa7d5005c62a5cc51a32f9ce0be5b11e9897e + category: main + optional: false +- name: freetype + version: 2.14.3 + manager: conda + platform: linux-64 + dependencies: + libfreetype: 2.14.3 + libfreetype6: 2.14.3 + url: https://repo.prefix.dev/conda-forge/linux-64/freetype-2.14.3-ha770c72_0.conda + hash: + md5: 8462b5322567212beeb025f3519fb3e2 + sha256: c934c385889c7836f034039b43b05ccfa98f53c900db03d8411189892ced090b + category: main + optional: false +- name: freetype + version: 2.14.3 + manager: conda + platform: win-64 + dependencies: + libfreetype: 2.14.3 + libfreetype6: 2.14.3 + zlib: '' + url: https://repo.prefix.dev/conda-forge/win-64/freetype-2.14.3-h57928b3_1.conda + hash: + md5: e77293b32225b136a8be300f93d0e89f + sha256: a0e419e96146159f12344c870dca608d11bca36841f228092b986ffc2e1e0f02 + category: main + optional: false - name: giflib version: 5.2.2 manager: conda @@ -1478,6 +1664,38 @@ package: sha256: 0960d06048a7185d3542d850986d807c6e37ca2e644342dd0c72feefcf26c2a4 category: main optional: false +- name: kiwisolver + version: 1.5.0 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=14' + libstdcxx: '>=14' + python: '' + python_abi: 3.12.* + url: https://repo.prefix.dev/conda-forge/linux-64/kiwisolver-1.5.0-py312h0a2e395_0.conda + hash: + md5: cd74a9525dc74bbbf93cf8aa2fa9eb5b + sha256: eec7654c2d68f06590862c6e845cc70987b6d6559222b6f0e619dea4268f5dd5 + category: main + optional: false +- name: kiwisolver + version: 1.5.0 + manager: conda + platform: win-64 + dependencies: + 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/kiwisolver-1.5.0-py312h78d62e6_0.conda + hash: + md5: 4ff6f76c2c16c85806ee7533768f5e64 + sha256: 5942bd7ae7b1d68906a00681e733b41ac8577ca7ac8da7523eb514d698b6e1f2 + category: main + optional: false - name: krb5 version: 1.22.2 manager: conda @@ -2718,6 +2936,65 @@ package: sha256: b744287a780211ac4595126ef96a44309c791f155d4724021ef99092bae4aace category: dev optional: true +- name: matplotlib-base + version: 3.10.9 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + contourpy: '>=1.0.1' + cycler: '>=0.10' + fonttools: '>=4.22.0' + freetype: '' + kiwisolver: '>=1.3.1' + libfreetype: '>=2.14.3' + libfreetype6: '>=2.14.3' + 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.10.9-py312he3d6523_0.conda + hash: + md5: 7d499b5b6d150f133800dc3a582771c7 + sha256: c7e133837376e53e6a52719c205a3067c42f05769bc3e8307417f8d817dfc63e + category: main + optional: false +- name: matplotlib-base + version: 3.10.9 + manager: conda + platform: win-64 + dependencies: + contourpy: '>=1.0.1' + cycler: '>=0.10' + fonttools: '>=4.22.0' + freetype: '' + kiwisolver: '>=1.3.1' + libfreetype: '>=2.14.3' + libfreetype6: '>=2.14.3' + 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.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/matplotlib-base-3.10.9-py312h0ebf65c_0.conda + hash: + md5: 3752482b0df88d7a08a0791f906e87ae + sha256: 539ca0eac473a1b7f9da1071ddcd6fe9a3bdd9e51eab0f1c498e6345c1898e8b + category: main + optional: false - name: mccabe version: 0.7.0 manager: conda @@ -2759,6 +3036,30 @@ package: sha256: f997bfc9bc4d4e14261cdcd1ad195d64a72ee44dca3145d24c1349f8d1311aa5 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: ncurses version: '6.6' manager: conda @@ -3089,6 +3390,37 @@ package: sha256: e14aafa63efa0528ca99ba568eaf506eb55a0371d12e6250aaaa61718d2eb62e category: dev optional: true +- name: psutil + version: 7.2.2 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=14' + python: '' + python_abi: 3.12.* + url: https://repo.prefix.dev/conda-forge/linux-64/psutil-7.2.2-py312h5253ce2_0.conda + hash: + md5: dd94c506b119130aef5a9382aed648e7 + sha256: d834fd656133c9e4eaf63ffe9a117c7d0917d86d89f7d64073f4e3a0020bd8a7 + category: main + optional: false +- name: psutil + version: 7.2.2 + manager: conda + platform: win-64 + dependencies: + 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/psutil-7.2.2-py312he5662c2_0.conda + hash: + md5: a2724c93b745fc7861948eb8b9f6679a + sha256: edffc84c001a05b996b5f8607c8164432754e86ec9224e831cd00ebabdec04e7 + category: main + optional: false - name: pthread-stubs version: '0.4' manager: conda @@ -3247,6 +3579,30 @@ package: sha256: 5393b20b76361efe49971a0081cad0f4256f875a14fe71b1ed93ba9e0193369c category: dev optional: true +- name: pyparsing + version: 3.3.2 + manager: conda + platform: linux-64 + dependencies: + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/pyparsing-3.3.2-pyhcf101f3_0.conda + hash: + md5: 3687cc0b82a8b4c17e1f0eb7e47163d5 + sha256: 417fba4783e528ee732afa82999300859b065dc59927344b4859c64aae7182de + category: main + optional: false +- name: pyparsing + version: 3.3.2 + manager: conda + platform: win-64 + dependencies: + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/pyparsing-3.3.2-pyhcf101f3_0.conda + hash: + md5: 3687cc0b82a8b4c17e1f0eb7e47163d5 + sha256: 417fba4783e528ee732afa82999300859b065dc59927344b4859c64aae7182de + category: main + optional: false - name: pysocks version: 1.7.1 manager: conda @@ -3395,6 +3751,32 @@ package: sha256: a02b446d8b7b167b61733a3de3be5de1342250403e72a63b18dac89e99e6180e 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: '' + 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.12' manager: conda @@ -3450,6 +3832,34 @@ package: sha256: 1cab6cbd6042b2a1d8ee4d6b4ec7f36637a41f57d2f5c5cf0c12b7c4ce6a62f6 category: dev optional: true +- name: qhull + version: '2020.2' + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + url: https://repo.prefix.dev/conda-forge/linux-64/qhull-2020.2-h434a139_5.conda + hash: + md5: 353823361b1d27eb3960efb076dfcaf6 + sha256: 776363493bad83308ba30bcb88c2552632581b143e8ee25b1982c8c743e73abc + category: main + optional: false +- name: qhull + version: '2020.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/qhull-2020.2-hc790b64_5.conda + hash: + md5: 854fbdff64b572b5c0b470f334d34c11 + sha256: 887d53486a37bd870da62b8fa2ebe3993f912ad04bd755e7ed7c47ced97cbaa8 + category: main + optional: false - name: rav1e version: 0.8.1 manager: conda @@ -3701,6 +4111,30 @@ package: sha256: 82088a6e4daa33329a30bc26dc19a98c7c1d3f05c0f73ce9845d4eab4924e9e1 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: '' + 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 @@ -4352,6 +4786,37 @@ package: sha256: 3005729dce6f3d3f5ec91dfc49fc75a0095f9cd23bab49efb899657297ac91a5 category: main optional: false +- name: unicodedata2 + version: 17.0.1 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=14' + python: '>=3.12,<3.13.0a0' + python_abi: 3.12.* + url: https://repo.prefix.dev/conda-forge/linux-64/unicodedata2-17.0.1-py312h4c3975b_0.conda + hash: + md5: 0b6c506ec1f272b685240e70a29261b8 + sha256: 895bbfe9ee25c98c922799de901387d842d7c01cae45c346879865c6a907f229 + category: main + optional: false +- name: unicodedata2 + version: 17.0.1 + 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' + url: https://repo.prefix.dev/conda-forge/win-64/unicodedata2-17.0.1-py312he06e257_0.conda + hash: + md5: 9c46f390eb4b5c6e502df20378e442dd + sha256: 577fcd97b5b855d341ee511307a0c05f632d184544e31ff9621690770843c995 + category: main + optional: false - name: urllib3 version: 2.7.0 manager: conda @@ -4606,6 +5071,21 @@ package: sha256: 210bd31c22bb88f5e2a167df24c95bb5f152b2ada7502f9b8c49d1f5366db423 category: dev optional: true +- name: zlib + version: 1.3.2 + manager: conda + platform: win-64 + dependencies: + libzlib: 1.3.2 + ucrt: '>=10.0.20348.0' + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/zlib-1.3.2-hfd05255_2.conda + hash: + md5: 5187ecf958be3c39110fe691cbd6873e + sha256: ef408f85f664a4b9c9dac3cb2e36154d9baa15a88984ea800e11060e0f2394a1 + category: main + optional: false - name: zlib-ng version: 2.3.3 manager: conda @@ -4662,68 +5142,6 @@ package: sha256: 368d8628424966fd8f9c8018326a9c779e06913dd39e646cf331226acc90e5b2 category: main optional: false -- name: contourpy - version: 1.3.3 - manager: pip - platform: linux-64 - dependencies: - numpy: '>=1.25' - url: https://files.pythonhosted.org/packages/cc/8f/ec6289987824b29529d0dfda0d74a07cec60e54b9c92f3c9da4c0ac732de/contourpy-1.3.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl - hash: - sha256: 4d00e655fcef08aba35ec9610536bfe90267d7ab5ba944f7032549c55a146da1 - category: main - optional: false -- name: contourpy - version: 1.3.3 - manager: pip - platform: win-64 - dependencies: - numpy: '>=1.25' - url: https://files.pythonhosted.org/packages/19/e8/6026ed58a64563186a9ee3f29f41261fd1828f527dd93d33b60feca63352/contourpy-1.3.3-cp312-cp312-win_amd64.whl - hash: - sha256: 8153b8bfc11e1e4d75bcb0bff1db232f9e10b274e0929de9d608027e0d34ff8b - category: main - optional: false -- name: cycler - version: 0.12.1 - manager: pip - platform: linux-64 - dependencies: {} - url: https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl - hash: - sha256: 85cef7cff222d8644161529808465972e51340599459b8ac3ccbac5a854e0d30 - category: main - optional: false -- name: cycler - version: 0.12.1 - manager: pip - platform: win-64 - dependencies: {} - url: https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl - hash: - sha256: 85cef7cff222d8644161529808465972e51340599459b8ac3ccbac5a854e0d30 - category: main - optional: false -- name: fonttools - version: 4.63.0 - manager: pip - platform: linux-64 - dependencies: {} - url: https://files.pythonhosted.org/packages/77/c7/2342da9830e3e9d4870305ca5d2091d2a83284f2953079b7bdd3b5e029d8/fonttools-4.63.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl - hash: - sha256: 58dc6bb86a78d782f00f9190ca02c119cf5bbe2807536e361e18d42019f877d8 - category: main - optional: false -- name: fonttools - version: 4.63.0 - manager: pip - platform: win-64 - dependencies: {} - url: https://files.pythonhosted.org/packages/87/36/cccb9bc2a6ab63d1b2980374f0dca72ce95ae267c9b4cfe77455bb70d0d4/fonttools-4.63.0-cp312-cp312-win_amd64.whl - hash: - sha256: 59ac449f8cca9b4ffa08d2e7bbadad87ce710d69d1eda5c3c1ce579baa987272 - category: main - optional: false - name: geoapps-utils version: 0.7.0b2.dev1+31e1f71 manager: pip @@ -4796,143 +5214,3 @@ package: url: git+https://github.com/MiraGeoscience/geoh5py.git@37016b8cbe1db7d880c9c2ae724d48ab09962c28 category: main optional: false -- name: kiwisolver - version: 1.5.0 - manager: pip - platform: linux-64 - dependencies: {} - url: https://files.pythonhosted.org/packages/c4/13/680c54afe3e65767bed7ec1a15571e1a2f1257128733851ade24abcefbcc/kiwisolver-1.5.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl - hash: - sha256: bb5136fb5352d3f422df33f0c879a1b0c204004324150cc3b5e3c4f310c9049f - category: main - optional: false -- name: kiwisolver - version: 1.5.0 - manager: pip - platform: win-64 - dependencies: {} - url: https://files.pythonhosted.org/packages/ad/cf/0348374369ca588f8fe9c338fae49fa4e16eeb10ffb3d012f23a54578a9e/kiwisolver-1.5.0-cp312-cp312-win_amd64.whl - hash: - sha256: f18c2d9782259a6dc132fdc7a63c168cbc74b35284b6d75c673958982a378384 - category: main - optional: false -- name: matplotlib - version: 3.10.9 - manager: pip - platform: linux-64 - dependencies: - contourpy: '>=1.0.1' - cycler: '>=0.10' - fonttools: '>=4.22.0' - kiwisolver: '>=1.3.1' - numpy: '>=1.23' - packaging: '>=20.0' - pillow: '>=8' - pyparsing: '>=3' - python-dateutil: '>=2.7' - url: https://files.pythonhosted.org/packages/32/91/d024616abdba99e83120e07a20658976f6a343646710760c4a51df126029/matplotlib-3.10.9-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl - hash: - sha256: ae20801130378b82d647ff5047c07316295b68dc054ca6b3c13519d0ea624285 - category: main - optional: false -- name: matplotlib - version: 3.10.9 - manager: pip - platform: win-64 - dependencies: - contourpy: '>=1.0.1' - cycler: '>=0.10' - fonttools: '>=4.22.0' - kiwisolver: '>=1.3.1' - numpy: '>=1.23' - packaging: '>=20.0' - pillow: '>=8' - pyparsing: '>=3' - python-dateutil: '>=2.7' - url: https://files.pythonhosted.org/packages/04/a1/4571fc46e7702de8d0c2dc54ad1b2f8e29328dea3ee90831181f7353d93c/matplotlib-3.10.9-cp312-cp312-win_amd64.whl - hash: - sha256: d091f9d758b34aaaaa6331d13574bf01891d903b3dec59bfff458ef7551de5d6 - category: main - optional: false -- name: psutil - version: 7.2.2 - manager: pip - platform: linux-64 - dependencies: {} - url: https://files.pythonhosted.org/packages/b5/70/5d8df3b09e25bce090399cf48e452d25c935ab72dad19406c77f4e828045/psutil-7.2.2-cp36-abi3-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl - hash: - sha256: 076a2d2f923fd4821644f5ba89f059523da90dc9014e85f8e45a5774ca5bc6f9 - category: main - optional: false -- name: psutil - version: 7.2.2 - manager: pip - platform: win-64 - dependencies: {} - url: https://files.pythonhosted.org/packages/b4/90/e2159492b5426be0c1fef7acba807a03511f97c5f86b3caeda6ad92351a7/psutil-7.2.2-cp37-abi3-win_amd64.whl - hash: - sha256: eb7e81434c8d223ec4a219b5fc1c47d0417b12be7ea866e24fb5ad6e84b3d988 - category: main - optional: false -- name: pyparsing - version: 3.3.2 - manager: pip - platform: linux-64 - dependencies: {} - url: https://files.pythonhosted.org/packages/10/bd/c038d7cc38edc1aa5bf91ab8068b63d4308c66c4c8bb3cbba7dfbc049f9c/pyparsing-3.3.2-py3-none-any.whl - hash: - sha256: 850ba148bd908d7e2411587e247a1e4f0327839c40e2e5e6d05a007ecc69911d - category: main - optional: false -- name: pyparsing - version: 3.3.2 - manager: pip - platform: win-64 - dependencies: {} - url: https://files.pythonhosted.org/packages/10/bd/c038d7cc38edc1aa5bf91ab8068b63d4308c66c4c8bb3cbba7dfbc049f9c/pyparsing-3.3.2-py3-none-any.whl - hash: - sha256: 850ba148bd908d7e2411587e247a1e4f0327839c40e2e5e6d05a007ecc69911d - category: main - optional: false -- name: python-dateutil - version: 2.9.0.post0 - manager: pip - platform: linux-64 - dependencies: - six: '>=1.5' - url: https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl - hash: - sha256: a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427 - category: main - optional: false -- name: python-dateutil - version: 2.9.0.post0 - manager: pip - platform: win-64 - dependencies: - six: '>=1.5' - url: https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl - hash: - sha256: a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427 - category: main - optional: false -- name: six - version: 1.17.0 - manager: pip - platform: linux-64 - dependencies: {} - url: https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl - hash: - sha256: 4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274 - category: main - optional: false -- name: six - version: 1.17.0 - manager: pip - platform: win-64 - dependencies: {} - url: https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl - hash: - sha256: 4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274 - category: main - optional: false diff --git a/py-3.13.conda-lock.yml b/py-3.13.conda-lock.yml index 5804592..35d18a8 100644 --- a/py-3.13.conda-lock.yml +++ b/py-3.13.conda-lock.yml @@ -15,8 +15,8 @@ version: 1 metadata: content_hash: - win-64: 68d4c5cd077931dc72e0120818f18da0e293191418207ef8c38d0ea5ce60e92e - linux-64: 7ae67d9e4c855c99d4d6233062f675b414eadc3bdd9df3261ddcc4e6fb9c1b5b + win-64: 7f705106f37a4f4063d5bee031b16eda70a82a9a2c4fe4454b27532bfb186c41 + linux-64: b5b0cd49461cbd87ae7cbe46f8f16db222e464c6dd73455254ed70894a1d9e16 channels: - url: conda-forge used_env_vars: [] @@ -551,6 +551,70 @@ package: sha256: 9303a7a0e03cf118eab3691013f6d6cbd1cbac66efbc70d89b20f5d0145257c0 category: main optional: false +- name: brotli + version: 1.2.0 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + brotli-bin: 1.2.0 + libbrotlidec: 1.2.0 + libbrotlienc: 1.2.0 + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/brotli-1.2.0-hed03a55_1.conda + hash: + md5: 8ccf913aaba749a5496c17629d859ed1 + sha256: e511644d691f05eb12ebe1e971fd6dc3ae55a4df5c253b4e1788b789bdf2dfa6 + category: main + optional: false +- name: brotli + version: 1.2.0 + manager: conda + platform: win-64 + dependencies: + brotli-bin: 1.2.0 + libbrotlidec: 1.2.0 + libbrotlienc: 1.2.0 + ucrt: '>=10.0.20348.0' + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/brotli-1.2.0-h2d644bc_1.conda + hash: + md5: bc58fdbced45bb096364de0fba1637af + sha256: a4fffdf1c9b9d3d0d787e20c724cff3a284dfa3773f9ce609c93b1cfd0ce8933 + category: main + optional: false +- name: brotli-bin + version: 1.2.0 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + libbrotlidec: 1.2.0 + libbrotlienc: 1.2.0 + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/brotli-bin-1.2.0-hb03c661_1.conda + hash: + md5: af39b9a8711d4a8d437b52c1d78eb6a1 + sha256: 64b137f30b83b1dd61db6c946ae7511657eead59fdf74e84ef0ded219605aa94 + category: main + optional: false +- name: brotli-bin + version: 1.2.0 + manager: conda + platform: win-64 + dependencies: + libbrotlidec: 1.2.0 + libbrotlienc: 1.2.0 + ucrt: '>=10.0.20348.0' + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/brotli-bin-1.2.0-hfd05255_1.conda + hash: + md5: 6abd7089eb3f0c790235fe469558d190 + sha256: e76966232ef9612de33c2087e3c92c2dc42ea5f300050735a3c646f33bce0429 + category: main + optional: false - name: brotli-python version: 1.2.0 manager: conda @@ -846,6 +910,40 @@ package: sha256: ab29d57dc70786c1269633ba3dff20288b81664d3ff8d21af995742e2bb03287 category: main optional: false +- name: contourpy + version: 1.3.3 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=14' + libstdcxx: '>=14' + numpy: '>=1.25' + python: '' + python_abi: 3.13.* + url: https://repo.prefix.dev/conda-forge/linux-64/contourpy-1.3.3-py313hc8edb43_4.conda + hash: + md5: 33639459bc29437315d4bff9ed5bc7a7 + sha256: 7f86eb205d2d7fcf2c82654a08c6a240623ac34cb406206b4b1f1afa5cda8e49 + category: main + optional: false +- name: contourpy + version: 1.3.3 + manager: conda + platform: win-64 + dependencies: + numpy: '>=1.25' + 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-py313h1a38498_4.conda + hash: + md5: 726aa233b5e4613e546ca84cd63cbd45 + sha256: fb254e7e29535ea0a63b8fba6299f7e4ccd0efcc40750c8cd64e42a0a3b79da7 + category: main + optional: false - name: coverage version: 7.14.1 manager: conda @@ -879,6 +977,30 @@ package: sha256: cda15c313312f6fe90489df9b37dd0277fa7dbd4d52f3ea0aad2c48806bc1e55 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: '' + 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: dav1d version: 1.2.1 manager: conda @@ -979,6 +1101,68 @@ package: sha256: ee6cf346d017d954255bbcbdb424cddea4d14e4ed7e9813e429db1d795d01144 category: dev optional: true +- name: fonttools + version: 4.63.0 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + brotli: '' + libgcc: '>=14' + munkres: '' + python: '>=3.13,<3.14.0a0' + python_abi: 3.13.* + url: https://repo.prefix.dev/conda-forge/linux-64/fonttools-4.63.0-py313h3dea7bd_0.conda + hash: + md5: ae83c999b4cfc4c171ce88b99c8b43cc + sha256: e0029a390d7aef29bd6e7c12a3759f5e0b989930b5781e544ca9bac0abcd8442 + category: main + optional: false +- name: fonttools + version: 4.63.0 + manager: conda + platform: win-64 + dependencies: + brotli: '' + munkres: '' + 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/fonttools-4.63.0-py313hd650c13_0.conda + hash: + md5: 2b7be2be35fc3b035f1365a015af9706 + sha256: 10cd3c3606219bc8e1a387757b069175b8202c54f02244b1557c283bd6c252d1 + category: main + optional: false +- name: freetype + version: 2.14.3 + manager: conda + platform: linux-64 + dependencies: + libfreetype: 2.14.3 + libfreetype6: 2.14.3 + url: https://repo.prefix.dev/conda-forge/linux-64/freetype-2.14.3-ha770c72_0.conda + hash: + md5: 8462b5322567212beeb025f3519fb3e2 + sha256: c934c385889c7836f034039b43b05ccfa98f53c900db03d8411189892ced090b + category: main + optional: false +- name: freetype + version: 2.14.3 + manager: conda + platform: win-64 + dependencies: + libfreetype: 2.14.3 + libfreetype6: 2.14.3 + zlib: '' + url: https://repo.prefix.dev/conda-forge/win-64/freetype-2.14.3-h57928b3_1.conda + hash: + md5: e77293b32225b136a8be300f93d0e89f + sha256: a0e419e96146159f12344c870dca608d11bca36841f228092b986ffc2e1e0f02 + category: main + optional: false - name: giflib version: 5.2.2 manager: conda @@ -1478,6 +1662,38 @@ package: sha256: 0960d06048a7185d3542d850986d807c6e37ca2e644342dd0c72feefcf26c2a4 category: main optional: false +- name: kiwisolver + version: 1.5.0 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=14' + libstdcxx: '>=14' + python: '' + python_abi: 3.13.* + url: https://repo.prefix.dev/conda-forge/linux-64/kiwisolver-1.5.0-py313hc8edb43_0.conda + hash: + md5: b81883b9dbf5069821c2fb09a8ba1407 + sha256: 0447d2901639f295989c5ccba7b1c367ed78b216e0d2705327a8c8a87a31177e + category: main + optional: false +- name: kiwisolver + version: 1.5.0 + manager: conda + platform: win-64 + dependencies: + 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/kiwisolver-1.5.0-py313h1a38498_0.conda + hash: + md5: 7e40c4c1af80d907eb2973ab73418095 + sha256: 58c7b7d85ea3c0fac593fde238b994ee2d4fa8467decfe369dabfb5516b7ded4 + category: main + optional: false - name: krb5 version: 1.22.2 manager: conda @@ -2720,6 +2936,65 @@ package: sha256: 9dc626b6c00bc2dbd2494df689876ff675b93d92636ba5df8e37b99040a1f6bc category: dev optional: true +- name: matplotlib-base + version: 3.10.9 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + contourpy: '>=1.0.1' + cycler: '>=0.10' + fonttools: '>=4.22.0' + freetype: '' + kiwisolver: '>=1.3.1' + libfreetype: '>=2.14.3' + libfreetype6: '>=2.14.3' + libgcc: '>=14' + libstdcxx: '>=14' + numpy: '>=1.23,<3' + packaging: '>=20.0' + pillow: '>=8' + pyparsing: '>=2.3.1' + python: '>=3.13,<3.14.0a0' + python-dateutil: '>=2.7' + 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.10.9-py313h683a580_0.conda + hash: + md5: 4265d85b1d706caba7ac1d73b5f43dee + sha256: ae0233aa03da84e0964a4c214faaa9d0735575714529a7f2ebe96bc712c276bf + category: main + optional: false +- name: matplotlib-base + version: 3.10.9 + manager: conda + platform: win-64 + dependencies: + contourpy: '>=1.0.1' + cycler: '>=0.10' + fonttools: '>=4.22.0' + freetype: '' + kiwisolver: '>=1.3.1' + libfreetype: '>=2.14.3' + libfreetype6: '>=2.14.3' + numpy: '>=1.23,<3' + packaging: '>=20.0' + pillow: '>=8' + pyparsing: '>=2.3.1' + python: '>=3.13,<3.14.0a0' + python-dateutil: '>=2.7' + python_abi: 3.13.* + qhull: '>=2020.2,<2020.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/matplotlib-base-3.10.9-py313he1ded55_0.conda + hash: + md5: b0d7ed8c9999b16acde682672e712ded + sha256: a77e418fd30aa83e9abb75ad9fbfe08ef3847ef234f17747b8b779fc44a06d54 + category: main + optional: false - name: mccabe version: 0.7.0 manager: conda @@ -2761,6 +3036,30 @@ package: sha256: f997bfc9bc4d4e14261cdcd1ad195d64a72ee44dca3145d24c1349f8d1311aa5 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: ncurses version: '6.6' manager: conda @@ -3087,6 +3386,37 @@ package: sha256: e14aafa63efa0528ca99ba568eaf506eb55a0371d12e6250aaaa61718d2eb62e category: dev optional: true +- name: psutil + version: 7.2.2 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=14' + python: '' + python_abi: 3.13.* + url: https://repo.prefix.dev/conda-forge/linux-64/psutil-7.2.2-py313h54dd161_0.conda + hash: + md5: 25fe6e02c2083497b3239e21b49d8093 + sha256: f19fd682d874689dfde20bf46d7ec1a28084af34583e0405685981363af47c91 + category: main + optional: false +- name: psutil + version: 7.2.2 + manager: conda + platform: win-64 + dependencies: + 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/psutil-7.2.2-py313h5fd188c_0.conda + hash: + md5: 761b299a6289c77459defea3563f8fc0 + sha256: 3ec3373748f83069bef93b540de416e637ee30231b222d5df8f712e93f2f9195 + category: main + optional: false - name: pthread-stubs version: '0.4' manager: conda @@ -3245,6 +3575,30 @@ package: sha256: 5393b20b76361efe49971a0081cad0f4256f875a14fe71b1ed93ba9e0193369c category: dev optional: true +- name: pyparsing + version: 3.3.2 + manager: conda + platform: linux-64 + dependencies: + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/pyparsing-3.3.2-pyhcf101f3_0.conda + hash: + md5: 3687cc0b82a8b4c17e1f0eb7e47163d5 + sha256: 417fba4783e528ee732afa82999300859b065dc59927344b4859c64aae7182de + category: main + optional: false +- name: pyparsing + version: 3.3.2 + manager: conda + platform: win-64 + dependencies: + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/pyparsing-3.3.2-pyhcf101f3_0.conda + hash: + md5: 3687cc0b82a8b4c17e1f0eb7e47163d5 + sha256: 417fba4783e528ee732afa82999300859b065dc59927344b4859c64aae7182de + category: main + optional: false - name: pysocks version: 1.7.1 manager: conda @@ -3395,6 +3749,32 @@ package: sha256: 26442b2878df89f27cc9efd54c1322d111653683abf256b657dbefe089857b40 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: '' + 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.13' manager: conda @@ -3450,6 +3830,34 @@ package: sha256: dfaed50de8ee72a51096163b87631921688851001e38c78a841eba1ae8b35889 category: dev optional: true +- name: qhull + version: '2020.2' + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + url: https://repo.prefix.dev/conda-forge/linux-64/qhull-2020.2-h434a139_5.conda + hash: + md5: 353823361b1d27eb3960efb076dfcaf6 + sha256: 776363493bad83308ba30bcb88c2552632581b143e8ee25b1982c8c743e73abc + category: main + optional: false +- name: qhull + version: '2020.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/qhull-2020.2-hc790b64_5.conda + hash: + md5: 854fbdff64b572b5c0b470f334d34c11 + sha256: 887d53486a37bd870da62b8fa2ebe3993f912ad04bd755e7ed7c47ced97cbaa8 + category: main + optional: false - name: rav1e version: 0.8.1 manager: conda @@ -3677,6 +4085,30 @@ package: sha256: a12318ed880dacdc573b73a34532f0c08daa883cd2dc7294ac68b8bab9b94196 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: '' + 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 @@ -4556,6 +4988,21 @@ package: sha256: 210bd31c22bb88f5e2a167df24c95bb5f152b2ada7502f9b8c49d1f5366db423 category: dev optional: true +- name: zlib + version: 1.3.2 + manager: conda + platform: win-64 + dependencies: + libzlib: 1.3.2 + ucrt: '>=10.0.20348.0' + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/zlib-1.3.2-hfd05255_2.conda + hash: + md5: 5187ecf958be3c39110fe691cbd6873e + sha256: ef408f85f664a4b9c9dac3cb2e36154d9baa15a88984ea800e11060e0f2394a1 + category: main + optional: false - name: zlib-ng version: 2.3.3 manager: conda @@ -4612,68 +5059,6 @@ package: sha256: 368d8628424966fd8f9c8018326a9c779e06913dd39e646cf331226acc90e5b2 category: main optional: false -- name: contourpy - version: 1.3.3 - manager: pip - platform: linux-64 - dependencies: - numpy: '>=1.25' - url: https://files.pythonhosted.org/packages/4b/32/e0f13a1c5b0f8572d0ec6ae2f6c677b7991fafd95da523159c19eff0696a/contourpy-1.3.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl - hash: - sha256: 4debd64f124ca62069f313a9cb86656ff087786016d76927ae2cf37846b006c9 - category: main - optional: false -- name: contourpy - version: 1.3.3 - manager: pip - platform: win-64 - dependencies: - numpy: '>=1.25' - url: https://files.pythonhosted.org/packages/18/0b/0098c214843213759692cc638fce7de5c289200a830e5035d1791d7a2338/contourpy-1.3.3-cp313-cp313-win_amd64.whl - hash: - sha256: 1cadd8b8969f060ba45ed7c1b714fe69185812ab43bd6b86a9123fe8f99c3263 - category: main - optional: false -- name: cycler - version: 0.12.1 - manager: pip - platform: linux-64 - dependencies: {} - url: https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl - hash: - sha256: 85cef7cff222d8644161529808465972e51340599459b8ac3ccbac5a854e0d30 - category: main - optional: false -- name: cycler - version: 0.12.1 - manager: pip - platform: win-64 - dependencies: {} - url: https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl - hash: - sha256: 85cef7cff222d8644161529808465972e51340599459b8ac3ccbac5a854e0d30 - category: main - optional: false -- name: fonttools - version: 4.63.0 - manager: pip - platform: linux-64 - dependencies: {} - url: https://files.pythonhosted.org/packages/ce/36/0b805d8c485f872f65a509cbe3b58a5d0d17bee855333b54a150c79d3061/fonttools-4.63.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl - hash: - sha256: 22135da48a348785c5e2d5d2d9d6bec5ed44adacbaeb9db12d9493bf6c6bfa68 - category: main - optional: false -- name: fonttools - version: 4.63.0 - manager: pip - platform: win-64 - dependencies: {} - url: https://files.pythonhosted.org/packages/92/46/5177b01f3b4abfdd4409f31cca4ab279c9343a26efbe9ec78c97fc612e02/fonttools-4.63.0-cp313-cp313-win_amd64.whl - hash: - sha256: ba04cb5891d4c0c21b6da95eda8d7b090021508a294fff33464fc7d241e0856b - category: main - optional: false - name: geoapps-utils version: 0.7.0b2.dev1+31e1f71 manager: pip @@ -4746,143 +5131,3 @@ package: url: git+https://github.com/MiraGeoscience/geoh5py.git@37016b8cbe1db7d880c9c2ae724d48ab09962c28 category: main optional: false -- name: kiwisolver - version: 1.5.0 - manager: pip - platform: linux-64 - dependencies: {} - url: https://files.pythonhosted.org/packages/2b/0a/7b98e1e119878a27ba8618ca1e18b14f992ff1eda40f47bccccf4de44121/kiwisolver-1.5.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl - hash: - sha256: 332b4f0145c30b5f5ad9374881133e5aa64320428a57c2c2b61e9d891a51c2f3 - category: main - optional: false -- name: kiwisolver - version: 1.5.0 - manager: pip - platform: win-64 - dependencies: {} - url: https://files.pythonhosted.org/packages/be/8a/be60e3bbcf513cc5a50f4a3e88e1dcecebb79c1ad607a7222877becaa101/kiwisolver-1.5.0-cp313-cp313-win_amd64.whl - hash: - sha256: 0bf3acf1419fa93064a4c2189ac0b58e3be7872bf6ee6177b0d4c63dc4cea276 - category: main - optional: false -- name: matplotlib - version: 3.10.9 - manager: pip - platform: linux-64 - dependencies: - contourpy: '>=1.0.1' - cycler: '>=0.10' - fonttools: '>=4.22.0' - kiwisolver: '>=1.3.1' - numpy: '>=1.23' - packaging: '>=20.0' - pillow: '>=8' - pyparsing: '>=3' - python-dateutil: '>=2.7' - url: https://files.pythonhosted.org/packages/8a/17/4402d0d14ccf1dfc70932600b68097fbbf9c898a4871d2cbbe79c7801a32/matplotlib-3.10.9-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl - hash: - sha256: 8f3bcac1ca5ed000a6f4337d47ba67dfddf37ed6a46c15fd7f014997f7bf865f - category: main - optional: false -- name: matplotlib - version: 3.10.9 - manager: pip - platform: win-64 - dependencies: - contourpy: '>=1.0.1' - cycler: '>=0.10' - fonttools: '>=4.22.0' - kiwisolver: '>=1.3.1' - numpy: '>=1.23' - packaging: '>=20.0' - pillow: '>=8' - pyparsing: '>=3' - python-dateutil: '>=2.7' - url: https://files.pythonhosted.org/packages/c5/e0/0840fd2f93da988ec660b8ad1984abe9f25d2aed22a5e394ff1c68c88307/matplotlib-3.10.9-cp313-cp313-win_amd64.whl - hash: - sha256: f4399f64b3e94cd500195490972ae1ee81170df1636fa15364d157d5bdd7b921 - category: main - optional: false -- name: psutil - version: 7.2.2 - manager: pip - platform: linux-64 - dependencies: {} - url: https://files.pythonhosted.org/packages/b5/70/5d8df3b09e25bce090399cf48e452d25c935ab72dad19406c77f4e828045/psutil-7.2.2-cp36-abi3-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl - hash: - sha256: 076a2d2f923fd4821644f5ba89f059523da90dc9014e85f8e45a5774ca5bc6f9 - category: main - optional: false -- name: psutil - version: 7.2.2 - manager: pip - platform: win-64 - dependencies: {} - url: https://files.pythonhosted.org/packages/b4/90/e2159492b5426be0c1fef7acba807a03511f97c5f86b3caeda6ad92351a7/psutil-7.2.2-cp37-abi3-win_amd64.whl - hash: - sha256: eb7e81434c8d223ec4a219b5fc1c47d0417b12be7ea866e24fb5ad6e84b3d988 - category: main - optional: false -- name: pyparsing - version: 3.3.2 - manager: pip - platform: linux-64 - dependencies: {} - url: https://files.pythonhosted.org/packages/10/bd/c038d7cc38edc1aa5bf91ab8068b63d4308c66c4c8bb3cbba7dfbc049f9c/pyparsing-3.3.2-py3-none-any.whl - hash: - sha256: 850ba148bd908d7e2411587e247a1e4f0327839c40e2e5e6d05a007ecc69911d - category: main - optional: false -- name: pyparsing - version: 3.3.2 - manager: pip - platform: win-64 - dependencies: {} - url: https://files.pythonhosted.org/packages/10/bd/c038d7cc38edc1aa5bf91ab8068b63d4308c66c4c8bb3cbba7dfbc049f9c/pyparsing-3.3.2-py3-none-any.whl - hash: - sha256: 850ba148bd908d7e2411587e247a1e4f0327839c40e2e5e6d05a007ecc69911d - category: main - optional: false -- name: python-dateutil - version: 2.9.0.post0 - manager: pip - platform: linux-64 - dependencies: - six: '>=1.5' - url: https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl - hash: - sha256: a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427 - category: main - optional: false -- name: python-dateutil - version: 2.9.0.post0 - manager: pip - platform: win-64 - dependencies: - six: '>=1.5' - url: https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl - hash: - sha256: a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427 - category: main - optional: false -- name: six - version: 1.17.0 - manager: pip - platform: linux-64 - dependencies: {} - url: https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl - hash: - sha256: 4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274 - category: main - optional: false -- name: six - version: 1.17.0 - manager: pip - platform: win-64 - dependencies: {} - url: https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl - hash: - sha256: 4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274 - category: main - optional: false