diff --git a/.github/workflows/python_analysis.yml b/.github/workflows/python_analysis.yml
index 55f765b..0c35612 100644
--- a/.github/workflows/python_analysis.yml
+++ b/.github/workflows/python_analysis.yml
@@ -31,7 +31,7 @@ jobs:
contents: read
pull-requests: read
with:
- package-manager: 'conda'
+ package-manager: 'pixi'
app-name: 'grid_apps'
python-version: '3.12'
call-workflow-pytest:
@@ -41,7 +41,7 @@ jobs:
contents: read
pull-requests: read
with:
- package-manager: 'conda'
+ package-manager: 'pixi'
python-versions: '["3.12", "3.13", "3.14"]'
os: '["ubuntu-latest", "windows-latest"]'
cache-number: 1
diff --git a/.gitignore b/.gitignore
index 2e07c0b..7f5696f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -146,6 +146,16 @@ dmypy.json
# tempory generated files
pyproject-sha.toml
-#version ignore
+# auto-generated version file
grid_apps/_version.py
/_version.json
+
+# not using poetry to lock, but pixi
+poetry.lock
+
+# pixi environments
+.pixi/*
+!.pixi/config.toml
+
+# generated conda env files by pixi
+*.pixi.conda.yml
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index 3aece88..3154b48 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -64,7 +64,7 @@ repos:
hooks:
- id: pylint
name: pylint
- entry: .\\devtools\\conda_env_pylint.bat
+ entry: pixi run --locked pylint
language: system
require_serial: true # pylint does its own parallelism
types: [python]
@@ -73,7 +73,7 @@ repos:
rev: v2.4.2
hooks:
- id: codespell
- exclude: (-lock\.ya?ml|\benvironments/.*\.ya?ml|\.ipynb|^THIRD_PARTY_SOFTWARE\.rst)$
+ exclude: (^pixi.lock|-lock\.ya?ml|\benvironments/.*\.ya?ml|\.ipynb|^THIRD_PARTY_SOFTWARE\.rst)$
entry: codespell -I .codespellignore
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v6.0.0
diff --git a/.readthedocs.yml b/.readthedocs.yml
index f7d314b..6c974a6 100644
--- a/.readthedocs.yml
+++ b/.readthedocs.yml
@@ -1,19 +1,37 @@
version: 2
-# Set the version of Python and other tools you might need
build:
- os: "ubuntu-22.04"
+ os: ubuntu-24.04
tools:
- python: "mambaforge-22.9"
+ python: "3.10" # pre-install for the py310 environment of pixi
+ jobs:
+ post_checkout:
+ # Download and uncompress binary for the desired version of Git LFS
+ - |
+ set -e
+ LFS_VERSION="3.4.0"
+ wget "https://github.com/git-lfs/git-lfs/releases/download/v${LFS_VERSION}/git-lfs-linux-amd64-v${LFS_VERSION}.tar.gz"
+ tar xzf "git-lfs-linux-amd64-v${LFS_VERSION}.tar.gz" --strip-components=1 "git-lfs-${LFS_VERSION}/git-lfs"
+ rm "git-lfs-linux-amd64-v${LFS_VERSION}.tar.gz"
+ # Modify LFS config paths to point where git-lfs binary was downloaded
+ - git config filter.lfs.process "$(pwd)/git-lfs filter-process"
+ - git config filter.lfs.smudge "$(pwd)/git-lfs smudge -- %f"
+ - git config filter.lfs.clean "$(pwd)/git-lfs clean -- %f"
+ # Make LFS available in current repository
+ - ./git-lfs install
+ # Download content from remote
+ - ./git-lfs fetch
+ # Make local files to have the real content on them
+ - ./git-lfs checkout
-# Build documentation in the docs/ directory with Sphinx
-sphinx:
- configuration: docs/source/conf.py
+ create_environment:
+ - asdf plugin add pixi
+ - asdf install pixi latest
+ - asdf global pixi latest
+ - asdf plugin add uv
+ - asdf install uv latest
+ - asdf global uv latest
-conda:
- environment: docs/environment.yml
-
-python:
- install:
- - method: pip
- path: .
+ build:
+ html:
+ - pixi run --frozen build-docs html $READTHEDOCS_OUTPUT
diff --git a/deps-lock-config.yaml b/deps-lock-config.yaml
deleted file mode 100644
index ee7b857..0000000
--- a/deps-lock-config.yaml
+++ /dev/null
@@ -1,5 +0,0 @@
-include_dev: True
-py_versions:
- - "3.12"
- - "3.13"
- - "3.14"
diff --git a/devtools/conda_env_pylint.bat b/devtools/conda_env_pylint.bat
deleted file mode 100644
index 705f0d9..0000000
--- a/devtools/conda_env_pylint.bat
+++ /dev/null
@@ -1,11 +0,0 @@
-@echo off
-setlocal EnableDelayedExpansion
-
-set project_dir=%~dp0..
-call %project_dir%\get_conda_exec.bat
-if !errorlevel! neq 0 (
- exit /B !errorlevel!
-)
-
-set env_path=%project_dir%\.conda-env
-call !MY_CONDA_EXE! run -p %env_path% pylint %*
diff --git a/docs/environment.yml b/docs/environment.yml
deleted file mode 100644
index a51e6ea..0000000
--- a/docs/environment.yml
+++ /dev/null
@@ -1,21 +0,0 @@
-name: geoh5py_docs
-
-channels:
- - conda-forge
- - defaults
-dependencies:
- - python=3.12
- - matplotlib
- - scipy
- - h5py
- - pip
- - ipykernel
- - pip:
- - sphinx
- - sphinx_issues
- - sphinx_rtd_theme
- - sphinxcontrib-bibtex
- - nbsphinx
- - nbstripout
- - numpydoc
- - jupyter_client
diff --git a/docs/source/block_model.rst b/docs/source/block_model.rst
index 0b464e8..ce9f616 100644
--- a/docs/source/block_model.rst
+++ b/docs/source/block_model.rst
@@ -3,13 +3,24 @@
Block Model Creation
====================
-.. note::
+The ``Block Model Creation`` module has been developed as a user interface for the creation of regular (Tensor)
+BlockModel objects using the `discretize `_ package. A Block
+Model grid is a discretization of a 3D volume into a set of rectangular cells.
- Under construction.
+.. figure:: /images/block_model_creation_result.png
+ :width: 800
-The ``Block Model`` module has been developed as a user-interface for the creation of regular (Tensor) BlockModel objects using the `discretize `_ package.
+In order to determine the core extents of the block model, the user will select an input ``Object`` and
+``Core depth``. The padding is controlled by ``Horizontal padding``, ``Bottom padding``, and
+``Expansion factor``. The resolution is set per axis by the ``Minimum cell size`` parameters.
-# .. figure:: /images/octree_grid.png
-# :width: 800
+.. figure:: /images/block_model_creation_uijson.png
+ :width: 500
-An Block Model grid is a discretization of a 3D volume into a set of rectangular cells.
+The resulting block model will have its core region set by the object and limited by the ``Core depth``
+parameter. The core region will contain cells at the requested ``Minimum cell size`` in all three
+Cartesian directions. ``Horizontal`` and ``Vertical padding`` will be applied outward from the
+core region to the specified distances. Within the padding region, the cells expand outward at the
+provided ``Expansion factor`` rate.
+
+.. figure:: /images/block_model_creation_result.png
diff --git a/docs/source/block_model_to_octree.rst b/docs/source/block_model_to_octree.rst
index 7069667..1a7bfd3 100644
--- a/docs/source/block_model_to_octree.rst
+++ b/docs/source/block_model_to_octree.rst
@@ -3,14 +3,32 @@
Block Model to Octree
=====================
-.. note::
- Under construction.
+The ``Block Model to Octree`` module has been developed as a user interface for the conversion between
+regular 3D grid (`BlockModel`) objects to Octree, using the `discretize `_
+package.
-The ``Block model to Octree`` module has been developed as a user-interface for the conversion between regular (Tensor) BlockModel objects to Octree, using the `discretize `_ package.
+.. figure:: /images/block_model_to_octree_advanced.png
+ :width: 800
-# .. figure:: /images/octree_grid.png
-# :width: 800
+In its most simple form, the application creates an octree from the input block model.
-An octree mesh is a discretization of a 3D volume into a set of rectangular cells. The cells are defined by a tree
-structure, where each node has 8 children.
+.. figure:: /images/block_model_to_octree_uijson_basic.png
+ :width: 500
+
+In this case the application will create an octree with the core region matching the cells of
+the block model with a small padding region where the cells are allowed to expand to the closest
+octree level.
+
+.. figure:: /images/block_model_to_octree_basic_usage.png
+ :width: 800
+
+Optionally, users can select a model stored on the tensor mesh.
+
+.. figure:: /images/block_model_to_octree_uijson_advanced.png
+ :width: 500
+
+The octree will then be refined in areas that contain large gradients in the selected model.
+
+.. figure:: /images/block_model_to_octree_advanced.png
+ :width: 800
diff --git a/docs/source/conf.py b/docs/source/conf.py
index 3c320f0..0eb4336 100644
--- a/docs/source/conf.py
+++ b/docs/source/conf.py
@@ -8,8 +8,9 @@
# '
# ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
+import os
from datetime import datetime
-from importlib.metadata import version
+from importlib.metadata import version as get_version
from packaging.version import Version
@@ -26,38 +27,63 @@
author = "Mira Geoscience Ltd."
project_copyright = "%Y, Mira Geoscience Ltd"
+package_name = "grid-apps"
+
+full_version = Version(get_version(package_name))
+# The full public version, including alpha/beta/rc tags
+release = full_version.public
+# remove the post release segment, if any
+if full_version.is_postrelease:
+ release = release.rsplit(".post", 1)[0]
+# The short X.Y.Z version.
+version = full_version.base_version
# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
-# The full version, including alpha/beta/rc tags.
-release = version("grid-apps")
-# The shorter X.Y.Z version.
-version = Version(release).base_version
-
-autodoc_mock_imports = [
- "numpy",
- "geoh5py",
- "geoapps_utils",
- "pydantic",
- "discretize",
-]
+nitpicky = True
extensions = [
"sphinx.ext.autodoc",
"sphinx.ext.autosummary",
+ "sphinx.ext.intersphinx",
"sphinx.ext.todo",
+ "sphinx.ext.viewcode",
+ "sphinx_issues",
+ "sphinxcontrib.googleanalytics",
]
+intersphinx_mapping = {
+ # use None to auto-fetch objects.inv
+ "numpy": ("https://numpy.org/doc/1.26/", None),
+ "python": ("http://docs.python.org/3", None),
+}
+
templates_path = ["_templates"]
exclude_patterns = []
todo_include_todos = True
+googleanalytics_id = os.environ.get("GOOGLE_ANALYTICS_ID", "")
+if not googleanalytics_id:
+ googleanalytics_enabled = False
+
+issues_github_path = f"mirageoscience/{package_name}"
+
# -- Options for auto-doc ----------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/extensions/autodoc.html#module-sphinx.ext.autodoc
autodoc_typehints = "signature"
+autodoc_mock_imports = [
+ "discretize",
+ "geoapps_utils",
+ "geoh5py",
+ "numpy",
+ "pydantic",
+ "scipy",
+ "tqdm",
+]
+
# -- Options for HTML output -------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
diff --git a/docs/source/images/block_model_creation_result.png b/docs/source/images/block_model_creation_result.png
new file mode 100644
index 0000000..9c961e8
Binary files /dev/null and b/docs/source/images/block_model_creation_result.png differ
diff --git a/docs/source/images/block_model_creation_uijson.png b/docs/source/images/block_model_creation_uijson.png
new file mode 100644
index 0000000..6c9c384
Binary files /dev/null and b/docs/source/images/block_model_creation_uijson.png differ
diff --git a/docs/source/images/block_model_to_octree_advanced.png b/docs/source/images/block_model_to_octree_advanced.png
new file mode 100644
index 0000000..34d8021
Binary files /dev/null and b/docs/source/images/block_model_to_octree_advanced.png differ
diff --git a/docs/source/images/block_model_to_octree_basic_usage.png b/docs/source/images/block_model_to_octree_basic_usage.png
new file mode 100644
index 0000000..48f27cf
Binary files /dev/null and b/docs/source/images/block_model_to_octree_basic_usage.png differ
diff --git a/docs/source/images/block_model_to_octree_uijson_advanced.png b/docs/source/images/block_model_to_octree_uijson_advanced.png
new file mode 100644
index 0000000..be5ab19
Binary files /dev/null and b/docs/source/images/block_model_to_octree_uijson_advanced.png differ
diff --git a/docs/source/images/block_model_to_octree_uijson_basic.png b/docs/source/images/block_model_to_octree_uijson_basic.png
new file mode 100644
index 0000000..1f488c7
Binary files /dev/null and b/docs/source/images/block_model_to_octree_uijson_basic.png differ
diff --git a/docs/source/images/ui_json_general.png b/docs/source/images/ui_json_general.png
index 375cb2d..9f53d9c 100644
Binary files a/docs/source/images/ui_json_general.png and b/docs/source/images/ui_json_general.png differ
diff --git a/docs/source/images/ui_json_refinements.png b/docs/source/images/ui_json_refinements.png
index 4f44246..8551872 100644
Binary files a/docs/source/images/ui_json_refinements.png and b/docs/source/images/ui_json_refinements.png differ
diff --git a/environments/env-python-3.12.yml b/environments/env-python-3.12.yml
deleted file mode 100644
index edaff3d..0000000
--- a/environments/env-python-3.12.yml
+++ /dev/null
@@ -1,3 +0,0 @@
-dependencies:
- - python=3.12.*
- - pip
diff --git a/environments/env-python-3.13.yml b/environments/env-python-3.13.yml
deleted file mode 100644
index f3de72d..0000000
--- a/environments/env-python-3.13.yml
+++ /dev/null
@@ -1,3 +0,0 @@
-dependencies:
- - python=3.13.*
- - pip
diff --git a/environments/env-python-3.14.yml b/environments/env-python-3.14.yml
deleted file mode 100644
index 3c95ae1..0000000
--- a/environments/env-python-3.14.yml
+++ /dev/null
@@ -1,3 +0,0 @@
-dependencies:
- - python=3.14.*
- - pip
diff --git a/environments/py-3.12-linux-64-dev.conda.lock.yml b/environments/py-3.12-linux-64-dev.conda.lock.yml
deleted file mode 100644
index 45da44a..0000000
--- a/environments/py-3.12-linux-64-dev.conda.lock.yml
+++ /dev/null
@@ -1,162 +0,0 @@
-# Generated by conda-lock.
-# platform: linux-64
-# input_hash: ddc1ef05f5eda34fc0a7036911d4010fbc7c6f519f33466b4c10eee2559f219d
-
-channels:
- - conda-forge
- - nodefaults
-dependencies:
- - _openmp_mutex=4.5=7_kmp_llvm
- - alabaster=1.0.0=pyhd8ed1ab_1
- - annotated-types=0.7.0=pyhd8ed1ab_1
- - astroid=4.0.4=py312h7900ff3_0
- - babel=2.18.0=pyhcf101f3_0
- - backports.zstd=1.3.0=py312h90b7ffd_0
- - brotli=1.2.0=hed03a55_1
- - brotli-bin=1.2.0=hb03c661_1
- - brotli-python=1.2.0=py312hdb49522_1
- - bzip2=1.0.8=hda65f42_9
- - c-ares=1.34.6=hb03c661_0
- - ca-certificates=2026.1.4=hbd8a1cb_0
- - cached-property=1.5.2=hd8ed1ab_1
- - cached_property=1.5.2=pyha770c72_1
- - certifi=2026.1.4=pyhd8ed1ab_0
- - charset-normalizer=3.4.4=pyhd8ed1ab_0
- - colorama=0.4.6=pyhd8ed1ab_1
- - contourpy=1.3.3=py312h0a2e395_4
- - coverage=7.13.4=py312h8a5da7c_0
- - cycler=0.12.1=pyhcf101f3_2
- - dill=0.4.1=pyhcf101f3_0
- - discretize=0.12.0=np2py312h2a48985_1
- - docutils=0.21.2=pyhd8ed1ab_1
- - exceptiongroup=1.3.1=pyhd8ed1ab_0
- - fonttools=4.61.1=py312h8a5da7c_0
- - freetype=2.14.1=ha770c72_0
- - h2=4.3.0=pyhcf101f3_0
- - h5py=3.15.1=nompi_py312ha4f8f14_101
- - hdf5=1.14.6=nompi_h19486de_106
- - hpack=4.1.0=pyhd8ed1ab_0
- - hyperframe=6.1.0=pyhd8ed1ab_0
- - icu=78.2=h33c6efd_0
- - idna=3.11=pyhd8ed1ab_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=pyhcf101f3_1
- - keyutils=1.6.3=hb9d3cd8_0
- - kiwisolver=1.4.9=py312h0a2e395_2
- - krb5=1.22.2=ha1258a1_0
- - lcms2=2.18=h0c24ade_0
- - ld_impl_linux-64=2.45.1=default_hbd61a6d_101
- - lerc=4.0.0=h0aef613_1
- - libaec=1.1.5=h088129d_0
- - libblas=3.11.0=5_h5875eb1_mkl
- - libbrotlicommon=1.2.0=hb03c661_1
- - libbrotlidec=1.2.0=hb03c661_1
- - libbrotlienc=1.2.0=hb03c661_1
- - libcblas=3.11.0=5_hfef963f_mkl
- - libcurl=8.18.0=hcf29cc6_1
- - libdeflate=1.25=h17f619e_0
- - libedit=3.1.20250104=pl5321h7949ede_0
- - libev=4.33=hd590300_2
- - libexpat=2.7.4=hecca717_0
- - libffi=3.5.2=h3435931_0
- - libfreetype=2.14.1=ha770c72_0
- - libfreetype6=2.14.1=h73754d4_0
- - libgcc=15.2.0=he0feb66_18
- - libgcc-ng=15.2.0=h69a702a_18
- - libgfortran=15.2.0=h69a702a_18
- - libgfortran5=15.2.0=h68bc16d_18
- - libhwloc=2.12.2=default_hafda6a7_1000
- - libiconv=1.18=h3b78370_2
- - libjpeg-turbo=3.1.2=hb03c661_0
- - liblapack=3.11.0=5_h5e43f62_mkl
- - liblzma=5.8.2=hb03c661_0
- - libnghttp2=1.67.0=had1ee68_0
- - libnsl=2.0.1=hb9d3cd8_1
- - libpng=1.6.55=h421ea60_0
- - libsqlite=3.51.2=hf4e2dac_0
- - libssh2=1.11.1=hcf80075_0
- - libstdcxx=15.2.0=h934c35e_18
- - libstdcxx-ng=15.2.0=hdf11a46_18
- - libtiff=4.7.1=h9d88235_1
- - libuuid=2.41.3=h5347b49_0
- - libwebp-base=1.6.0=hd42ef1d_0
- - libxcb=1.17.0=h8a09558_0
- - libxcrypt=4.4.36=hd590300_1
- - libxml2=2.15.1=he237659_1
- - libxml2-16=2.15.1=hca6bf5a_1
- - libzlib=1.3.1=hb9d3cd8_2
- - llvm-openmp=21.1.8=h4922eb0_0
- - markupsafe=3.0.3=py312h8a5da7c_0
- - matplotlib-base=3.10.8=py312he3d6523_0
- - mccabe=0.7.0=pyhd8ed1ab_1
- - mkl=2025.3.0=h0e700b2_463
- - munkres=1.1.4=pyhd8ed1ab_1
- - ncurses=6.5=h2d0b736_3
- - numpy=2.4.2=py312h33ff503_1
- - openjpeg=2.5.4=h55fea9a_0
- - openssl=3.6.1=h35e630c_1
- - packaging=26.0=pyhcf101f3_0
- - pillow=12.1.1=py312h50c33e8_0
- - pip=26.0.1=pyh8b19718_0
- - platformdirs=4.9.2=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=py312h868fb18_1
- - pygments=2.19.2=pyhd8ed1ab_0
- - pylint=4.0.4=pyhcf101f3_0
- - pyparsing=3.3.2=pyhcf101f3_0
- - pysocks=1.7.1=pyha55dd90_7
- - pytest=9.0.2=pyhcf101f3_0
- - pytest-cov=7.0.0=pyhcf101f3_1
- - python=3.12.12=hd63d673_2_cpython
- - python-dateutil=2.9.0.post0=pyhe01879c_2
- - python_abi=3.12=8_cp312
- - pytz=2025.2=pyhd8ed1ab_0
- - pyyaml=6.0.3=py312h8a5da7c_1
- - qhull=2020.2=h434a139_5
- - readline=8.3=h853b02a_0
- - requests=2.32.5=pyhcf101f3_1
- - roman-numerals=4.1.0=pyhd8ed1ab_0
- - roman-numerals-py=4.1.0=pyhd8ed1ab_0
- - scipy=1.17.0=py312h54fa4ab_1
- - setuptools=82.0.0=pyh332efcf_0
- - six=1.17.0=pyhe01879c_1
- - snowballstemmer=3.0.1=pyhd8ed1ab_0
- - sphinx=8.2.3=pyhd8ed1ab_0
- - sphinx-autodoc-typehints=3.5.2=pyhd8ed1ab_0
- - sphinx-rtd-theme=3.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
- - tbb=2022.3.0=hb700be7_2
- - tk=8.6.13=noxft_h366c992_103
- - tomli=2.4.0=pyhcf101f3_0
- - tomlkit=0.14.0=pyha770c72_0
- - typing-extensions=4.15.0=h396c80c_0
- - typing-inspection=0.4.2=pyhd8ed1ab_1
- - typing_extensions=4.15.0=pyhcf101f3_0
- - tzdata=2025c=hc9c84f9_1
- - unicodedata2=17.0.1=py312h4c3975b_0
- - urllib3=2.6.3=pyhd8ed1ab_0
- - wheel=0.46.3=pyhd8ed1ab_0
- - xorg-libxau=1.0.12=hb03c661_1
- - xorg-libxdmcp=1.1.5=hb03c661_1
- - yaml=0.2.5=h280c20c_3
- - zipp=3.23.0=pyhcf101f3_1
- - zlib-ng=2.3.3=hceb46e0_1
- - zstd=1.5.7=hb78ec9c_6
- - pip:
- - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@668a9e0da5214e4a3bce466321cd910f1bb00b02
- - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@9e0a86e5afadfe9c55e9811317827a4f6c2c70c4
-
-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
deleted file mode 100644
index a8e5d86..0000000
--- a/environments/py-3.12-linux-64.conda.lock.yml
+++ /dev/null
@@ -1,110 +0,0 @@
-# Generated by conda-lock.
-# platform: linux-64
-# input_hash: ddc1ef05f5eda34fc0a7036911d4010fbc7c6f519f33466b4c10eee2559f219d
-
-channels:
- - conda-forge
- - nodefaults
-dependencies:
- - _openmp_mutex=4.5=7_kmp_llvm
- - annotated-types=0.7.0=pyhd8ed1ab_1
- - brotli=1.2.0=hed03a55_1
- - brotli-bin=1.2.0=hb03c661_1
- - bzip2=1.0.8=hda65f42_9
- - c-ares=1.34.6=hb03c661_0
- - ca-certificates=2026.1.4=hbd8a1cb_0
- - cached-property=1.5.2=hd8ed1ab_1
- - cached_property=1.5.2=pyha770c72_1
- - contourpy=1.3.3=py312h0a2e395_4
- - cycler=0.12.1=pyhcf101f3_2
- - discretize=0.12.0=np2py312h2a48985_1
- - fonttools=4.61.1=py312h8a5da7c_0
- - freetype=2.14.1=ha770c72_0
- - h5py=3.15.1=nompi_py312ha4f8f14_101
- - hdf5=1.14.6=nompi_h19486de_106
- - icu=78.2=h33c6efd_0
- - keyutils=1.6.3=hb9d3cd8_0
- - kiwisolver=1.4.9=py312h0a2e395_2
- - krb5=1.22.2=ha1258a1_0
- - lcms2=2.18=h0c24ade_0
- - ld_impl_linux-64=2.45.1=default_hbd61a6d_101
- - lerc=4.0.0=h0aef613_1
- - libaec=1.1.5=h088129d_0
- - libblas=3.11.0=5_h5875eb1_mkl
- - libbrotlicommon=1.2.0=hb03c661_1
- - libbrotlidec=1.2.0=hb03c661_1
- - libbrotlienc=1.2.0=hb03c661_1
- - libcblas=3.11.0=5_hfef963f_mkl
- - libcurl=8.18.0=hcf29cc6_1
- - libdeflate=1.25=h17f619e_0
- - libedit=3.1.20250104=pl5321h7949ede_0
- - libev=4.33=hd590300_2
- - libexpat=2.7.4=hecca717_0
- - libffi=3.5.2=h3435931_0
- - libfreetype=2.14.1=ha770c72_0
- - libfreetype6=2.14.1=h73754d4_0
- - libgcc=15.2.0=he0feb66_18
- - libgcc-ng=15.2.0=h69a702a_18
- - libgfortran=15.2.0=h69a702a_18
- - libgfortran5=15.2.0=h68bc16d_18
- - libhwloc=2.12.2=default_hafda6a7_1000
- - libiconv=1.18=h3b78370_2
- - libjpeg-turbo=3.1.2=hb03c661_0
- - liblapack=3.11.0=5_h5e43f62_mkl
- - liblzma=5.8.2=hb03c661_0
- - libnghttp2=1.67.0=had1ee68_0
- - libnsl=2.0.1=hb9d3cd8_1
- - libpng=1.6.55=h421ea60_0
- - libsqlite=3.51.2=hf4e2dac_0
- - libssh2=1.11.1=hcf80075_0
- - libstdcxx=15.2.0=h934c35e_18
- - libstdcxx-ng=15.2.0=hdf11a46_18
- - libtiff=4.7.1=h9d88235_1
- - libuuid=2.41.3=h5347b49_0
- - libwebp-base=1.6.0=hd42ef1d_0
- - libxcb=1.17.0=h8a09558_0
- - libxcrypt=4.4.36=hd590300_1
- - libxml2=2.15.1=he237659_1
- - libxml2-16=2.15.1=hca6bf5a_1
- - libzlib=1.3.1=hb9d3cd8_2
- - llvm-openmp=21.1.8=h4922eb0_0
- - matplotlib-base=3.10.8=py312he3d6523_0
- - mkl=2025.3.0=h0e700b2_463
- - munkres=1.1.4=pyhd8ed1ab_1
- - ncurses=6.5=h2d0b736_3
- - numpy=2.4.2=py312h33ff503_1
- - openjpeg=2.5.4=h55fea9a_0
- - openssl=3.6.1=h35e630c_1
- - packaging=26.0=pyhcf101f3_0
- - pillow=12.1.1=py312h50c33e8_0
- - pip=26.0.1=pyh8b19718_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.12=hd63d673_2_cpython
- - python-dateutil=2.9.0.post0=pyhe01879c_2
- - python_abi=3.12=8_cp312
- - qhull=2020.2=h434a139_5
- - readline=8.3=h853b02a_0
- - scipy=1.17.0=py312h54fa4ab_1
- - setuptools=82.0.0=pyh332efcf_0
- - six=1.17.0=pyhe01879c_1
- - tbb=2022.3.0=hb700be7_2
- - tk=8.6.13=noxft_h366c992_103
- - typing-extensions=4.15.0=h396c80c_0
- - typing-inspection=0.4.2=pyhd8ed1ab_1
- - typing_extensions=4.15.0=pyhcf101f3_0
- - tzdata=2025c=hc9c84f9_1
- - unicodedata2=17.0.1=py312h4c3975b_0
- - wheel=0.46.3=pyhd8ed1ab_0
- - xorg-libxau=1.0.12=hb03c661_1
- - xorg-libxdmcp=1.1.5=hb03c661_1
- - zlib-ng=2.3.3=hceb46e0_1
- - zstd=1.5.7=hb78ec9c_6
- - pip:
- - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@668a9e0da5214e4a3bce466321cd910f1bb00b02
- - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@9e0a86e5afadfe9c55e9811317827a4f6c2c70c4
-
-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
deleted file mode 100644
index e263bb1..0000000
--- a/environments/py-3.12-win-64-dev.conda.lock.yml
+++ /dev/null
@@ -1,153 +0,0 @@
-# Generated by conda-lock.
-# platform: win-64
-# input_hash: 1b4ed5aa963ceaa3fa7bc2b3f48474b03559ad1b34508abea400853d5d141a31
-
-channels:
- - conda-forge
- - nodefaults
-dependencies:
- - _openmp_mutex=4.5=20_gnu
- - alabaster=1.0.0=pyhd8ed1ab_1
- - annotated-types=0.7.0=pyhd8ed1ab_1
- - astroid=4.0.4=py312h2e8e312_0
- - babel=2.18.0=pyhcf101f3_0
- - backports.zstd=1.3.0=py312h06d0912_0
- - 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
- - ca-certificates=2026.1.4=h4c7d964_0
- - cached-property=1.5.2=hd8ed1ab_1
- - cached_property=1.5.2=pyha770c72_1
- - certifi=2026.1.4=pyhd8ed1ab_0
- - charset-normalizer=3.4.4=pyhd8ed1ab_0
- - colorama=0.4.6=pyhd8ed1ab_1
- - contourpy=1.3.3=py312h78d62e6_4
- - coverage=7.13.4=py312h05f76fc_0
- - cycler=0.12.1=pyhcf101f3_2
- - dill=0.4.1=pyhcf101f3_0
- - discretize=0.12.0=np2py312h7c90ba1_1
- - docutils=0.21.2=pyhd8ed1ab_1
- - exceptiongroup=1.3.1=pyhd8ed1ab_0
- - fonttools=4.61.1=py312h05f76fc_0
- - freetype=2.14.1=h57928b3_0
- - h2=4.3.0=pyhcf101f3_0
- - h5py=3.15.1=nompi_py312h03cd2ba_101
- - hdf5=1.14.6=nompi_hae35d4c_106
- - hpack=4.1.0=pyhd8ed1ab_0
- - hyperframe=6.1.0=pyhd8ed1ab_0
- - icu=78.2=h637d24d_0
- - idna=3.11=pyhd8ed1ab_0
- - 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=pyhcf101f3_1
- - kiwisolver=1.4.9=py312h78d62e6_2
- - krb5=1.22.2=h0ea6238_0
- - lcms2=2.18=hf2c6c5f_0
- - lerc=4.0.0=h6470a55_1
- - libaec=1.1.5=haf901d7_0
- - libblas=3.11.0=5_hf2e6a31_mkl
- - libbrotlicommon=1.2.0=hfd05255_1
- - libbrotlidec=1.2.0=hfd05255_1
- - libbrotlienc=1.2.0=hfd05255_1
- - libcblas=3.11.0=5_h2a3cdd5_mkl
- - libcurl=8.18.0=h8206538_1
- - libdeflate=1.25=h51727cc_0
- - libexpat=2.7.4=hac47afa_0
- - libffi=3.5.2=h3d046cb_0
- - libfreetype=2.14.1=h57928b3_0
- - libfreetype6=2.14.1=hdbac1cb_0
- - libgcc=15.2.0=h8ee18e1_18
- - libgomp=15.2.0=h8ee18e1_18
- - libhwloc=2.12.2=default_h4379cf1_1000
- - libiconv=1.18=hc1393d2_2
- - libjpeg-turbo=3.1.2=hfd05255_0
- - liblapack=3.11.0=5_hf9ab0e9_mkl
- - liblzma=5.8.2=hfd05255_0
- - libpng=1.6.55=h7351971_0
- - libsqlite=3.51.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=h779ef1b_1
- - libxml2-16=2.15.1=h3cfd58e_1
- - libzlib=1.3.1=h2466b09_2
- - llvm-openmp=21.1.8=h4fa8253_0
- - markupsafe=3.0.3=py312h05f76fc_0
- - matplotlib-base=3.10.8=py312h0ebf65c_0
- - mccabe=0.7.0=pyhd8ed1ab_1
- - mkl=2025.3.0=hac47afa_455
- - munkres=1.1.4=pyhd8ed1ab_1
- - numpy=2.4.2=py312ha72d056_1
- - openjpeg=2.5.4=h24db6dd_0
- - openssl=3.6.1=hf411b9b_1
- - packaging=26.0=pyhcf101f3_0
- - pillow=12.1.1=py312h31f0997_0
- - pip=26.0.1=pyh8b19718_0
- - platformdirs=4.9.2=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=py312hdabe01f_1
- - pygments=2.19.2=pyhd8ed1ab_0
- - pylint=4.0.4=pyhcf101f3_0
- - pyparsing=3.3.2=pyhcf101f3_0
- - pysocks=1.7.1=pyh09c184e_7
- - pytest=9.0.2=pyhcf101f3_0
- - pytest-cov=7.0.0=pyhcf101f3_1
- - python=3.12.12=h0159041_2_cpython
- - python-dateutil=2.9.0.post0=pyhe01879c_2
- - python_abi=3.12=8_cp312
- - pytz=2025.2=pyhd8ed1ab_0
- - pyyaml=6.0.3=py312h05f76fc_1
- - qhull=2020.2=hc790b64_5
- - requests=2.32.5=pyhcf101f3_1
- - roman-numerals=4.1.0=pyhd8ed1ab_0
- - roman-numerals-py=4.1.0=pyhd8ed1ab_0
- - scipy=1.17.0=py312h9b3c559_1
- - setuptools=82.0.0=pyh332efcf_0
- - six=1.17.0=pyhe01879c_1
- - snowballstemmer=3.0.1=pyhd8ed1ab_0
- - sphinx=8.2.3=pyhd8ed1ab_0
- - sphinx-autodoc-typehints=3.5.2=pyhd8ed1ab_0
- - sphinx-rtd-theme=3.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
- - tbb=2022.3.0=h3155e25_2
- - tk=8.6.13=h6ed50ae_3
- - tomli=2.4.0=pyhcf101f3_0
- - tomlkit=0.14.0=pyha770c72_0
- - typing-extensions=4.15.0=h396c80c_0
- - typing-inspection=0.4.2=pyhd8ed1ab_1
- - typing_extensions=4.15.0=pyhcf101f3_0
- - tzdata=2025c=hc9c84f9_1
- - ucrt=10.0.26100.0=h57928b3_0
- - unicodedata2=17.0.1=py312he06e257_0
- - urllib3=2.6.3=pyhd8ed1ab_0
- - vc=14.3=h41ae7f8_34
- - vc14_runtime=14.44.35208=h818238b_34
- - vcomp14=14.44.35208=h818238b_34
- - wheel=0.46.3=pyhd8ed1ab_0
- - win_inet_pton=1.1.0=pyh7428d3b_8
- - xorg-libxau=1.0.12=hba3369d_1
- - xorg-libxdmcp=1.1.5=hba3369d_1
- - yaml=0.2.5=h6a83c73_3
- - zipp=3.23.0=pyhcf101f3_1
- - zlib-ng=2.3.3=h0261ad2_1
- - zstd=1.5.7=h534d264_6
- - pip:
- - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@668a9e0da5214e4a3bce466321cd910f1bb00b02
- - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@9e0a86e5afadfe9c55e9811317827a4f6c2c70c4
-
-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
deleted file mode 100644
index d22ee68..0000000
--- a/environments/py-3.12-win-64.conda.lock.yml
+++ /dev/null
@@ -1,100 +0,0 @@
-# Generated by conda-lock.
-# platform: win-64
-# input_hash: 1b4ed5aa963ceaa3fa7bc2b3f48474b03559ad1b34508abea400853d5d141a31
-
-channels:
- - conda-forge
- - nodefaults
-dependencies:
- - _openmp_mutex=4.5=20_gnu
- - annotated-types=0.7.0=pyhd8ed1ab_1
- - brotli=1.2.0=h2d644bc_1
- - brotli-bin=1.2.0=hfd05255_1
- - bzip2=1.0.8=h0ad9c76_9
- - ca-certificates=2026.1.4=h4c7d964_0
- - cached-property=1.5.2=hd8ed1ab_1
- - cached_property=1.5.2=pyha770c72_1
- - contourpy=1.3.3=py312h78d62e6_4
- - cycler=0.12.1=pyhcf101f3_2
- - discretize=0.12.0=np2py312h7c90ba1_1
- - fonttools=4.61.1=py312h05f76fc_0
- - freetype=2.14.1=h57928b3_0
- - h5py=3.15.1=nompi_py312h03cd2ba_101
- - hdf5=1.14.6=nompi_hae35d4c_106
- - icu=78.2=h637d24d_0
- - kiwisolver=1.4.9=py312h78d62e6_2
- - krb5=1.22.2=h0ea6238_0
- - lcms2=2.18=hf2c6c5f_0
- - lerc=4.0.0=h6470a55_1
- - libaec=1.1.5=haf901d7_0
- - libblas=3.11.0=5_hf2e6a31_mkl
- - libbrotlicommon=1.2.0=hfd05255_1
- - libbrotlidec=1.2.0=hfd05255_1
- - libbrotlienc=1.2.0=hfd05255_1
- - libcblas=3.11.0=5_h2a3cdd5_mkl
- - libcurl=8.18.0=h8206538_1
- - libdeflate=1.25=h51727cc_0
- - libexpat=2.7.4=hac47afa_0
- - libffi=3.5.2=h3d046cb_0
- - libfreetype=2.14.1=h57928b3_0
- - libfreetype6=2.14.1=hdbac1cb_0
- - libgcc=15.2.0=h8ee18e1_18
- - libgomp=15.2.0=h8ee18e1_18
- - libhwloc=2.12.2=default_h4379cf1_1000
- - libiconv=1.18=hc1393d2_2
- - libjpeg-turbo=3.1.2=hfd05255_0
- - liblapack=3.11.0=5_hf9ab0e9_mkl
- - liblzma=5.8.2=hfd05255_0
- - libpng=1.6.55=h7351971_0
- - libsqlite=3.51.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=h779ef1b_1
- - libxml2-16=2.15.1=h3cfd58e_1
- - libzlib=1.3.1=h2466b09_2
- - llvm-openmp=21.1.8=h4fa8253_0
- - matplotlib-base=3.10.8=py312h0ebf65c_0
- - mkl=2025.3.0=hac47afa_455
- - munkres=1.1.4=pyhd8ed1ab_1
- - numpy=2.4.2=py312ha72d056_1
- - openjpeg=2.5.4=h24db6dd_0
- - openssl=3.6.1=hf411b9b_1
- - packaging=26.0=pyhcf101f3_0
- - pillow=12.1.1=py312h31f0997_0
- - pip=26.0.1=pyh8b19718_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.12=h0159041_2_cpython
- - python-dateutil=2.9.0.post0=pyhe01879c_2
- - python_abi=3.12=8_cp312
- - qhull=2020.2=hc790b64_5
- - scipy=1.17.0=py312h9b3c559_1
- - setuptools=82.0.0=pyh332efcf_0
- - six=1.17.0=pyhe01879c_1
- - tbb=2022.3.0=h3155e25_2
- - tk=8.6.13=h6ed50ae_3
- - typing-extensions=4.15.0=h396c80c_0
- - typing-inspection=0.4.2=pyhd8ed1ab_1
- - typing_extensions=4.15.0=pyhcf101f3_0
- - tzdata=2025c=hc9c84f9_1
- - ucrt=10.0.26100.0=h57928b3_0
- - unicodedata2=17.0.1=py312he06e257_0
- - vc=14.3=h41ae7f8_34
- - vc14_runtime=14.44.35208=h818238b_34
- - vcomp14=14.44.35208=h818238b_34
- - wheel=0.46.3=pyhd8ed1ab_0
- - xorg-libxau=1.0.12=hba3369d_1
- - xorg-libxdmcp=1.1.5=hba3369d_1
- - zlib-ng=2.3.3=h0261ad2_1
- - zstd=1.5.7=h534d264_6
- - pip:
- - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@668a9e0da5214e4a3bce466321cd910f1bb00b02
- - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@9e0a86e5afadfe9c55e9811317827a4f6c2c70c4
-
-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
deleted file mode 100644
index d059a36..0000000
--- a/environments/py-3.13-linux-64-dev.conda.lock.yml
+++ /dev/null
@@ -1,158 +0,0 @@
-# Generated by conda-lock.
-# platform: linux-64
-# input_hash: b18f500e8e85b4eb023bb9ed063cbde272610e416ada2de4902e592caa9ef7e1
-
-channels:
- - conda-forge
- - nodefaults
-dependencies:
- - _openmp_mutex=4.5=7_kmp_llvm
- - alabaster=1.0.0=pyhd8ed1ab_1
- - annotated-types=0.7.0=pyhd8ed1ab_1
- - astroid=4.0.4=py313h78bf25f_0
- - babel=2.18.0=pyhcf101f3_0
- - backports.zstd=1.3.0=py313h18e8e13_0
- - brotli=1.2.0=hed03a55_1
- - brotli-bin=1.2.0=hb03c661_1
- - brotli-python=1.2.0=py313hf159716_1
- - bzip2=1.0.8=hda65f42_9
- - c-ares=1.34.6=hb03c661_0
- - ca-certificates=2026.1.4=hbd8a1cb_0
- - cached-property=1.5.2=hd8ed1ab_1
- - cached_property=1.5.2=pyha770c72_1
- - certifi=2026.1.4=pyhd8ed1ab_0
- - charset-normalizer=3.4.4=pyhd8ed1ab_0
- - colorama=0.4.6=pyhd8ed1ab_1
- - contourpy=1.3.3=py313hc8edb43_4
- - coverage=7.13.4=py313h3dea7bd_0
- - cycler=0.12.1=pyhcf101f3_2
- - dill=0.4.1=pyhcf101f3_0
- - discretize=0.12.0=np2py313h0f78c12_1
- - docutils=0.21.2=pyhd8ed1ab_1
- - exceptiongroup=1.3.1=pyhd8ed1ab_0
- - fonttools=4.61.1=py313h3dea7bd_0
- - freetype=2.14.1=ha770c72_0
- - h2=4.3.0=pyhcf101f3_0
- - h5py=3.15.1=nompi_py313h253c126_101
- - hdf5=1.14.6=nompi_h19486de_106
- - hpack=4.1.0=pyhd8ed1ab_0
- - hyperframe=6.1.0=pyhd8ed1ab_0
- - icu=78.2=h33c6efd_0
- - idna=3.11=pyhd8ed1ab_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=pyhcf101f3_1
- - keyutils=1.6.3=hb9d3cd8_0
- - kiwisolver=1.4.9=py313hc8edb43_2
- - krb5=1.22.2=ha1258a1_0
- - lcms2=2.18=h0c24ade_0
- - ld_impl_linux-64=2.45.1=default_hbd61a6d_101
- - lerc=4.0.0=h0aef613_1
- - libaec=1.1.5=h088129d_0
- - libblas=3.11.0=5_h5875eb1_mkl
- - libbrotlicommon=1.2.0=hb03c661_1
- - libbrotlidec=1.2.0=hb03c661_1
- - libbrotlienc=1.2.0=hb03c661_1
- - libcblas=3.11.0=5_hfef963f_mkl
- - libcurl=8.18.0=hcf29cc6_1
- - libdeflate=1.25=h17f619e_0
- - libedit=3.1.20250104=pl5321h7949ede_0
- - libev=4.33=hd590300_2
- - libexpat=2.7.4=hecca717_0
- - libffi=3.5.2=h3435931_0
- - libfreetype=2.14.1=ha770c72_0
- - libfreetype6=2.14.1=h73754d4_0
- - libgcc=15.2.0=he0feb66_18
- - libgcc-ng=15.2.0=h69a702a_18
- - libgfortran=15.2.0=h69a702a_18
- - libgfortran5=15.2.0=h68bc16d_18
- - libhwloc=2.12.2=default_hafda6a7_1000
- - libiconv=1.18=h3b78370_2
- - libjpeg-turbo=3.1.2=hb03c661_0
- - liblapack=3.11.0=5_h5e43f62_mkl
- - liblzma=5.8.2=hb03c661_0
- - libmpdec=4.0.0=hb03c661_1
- - libnghttp2=1.67.0=had1ee68_0
- - libpng=1.6.55=h421ea60_0
- - libsqlite=3.51.2=hf4e2dac_0
- - libssh2=1.11.1=hcf80075_0
- - libstdcxx=15.2.0=h934c35e_18
- - libstdcxx-ng=15.2.0=hdf11a46_18
- - libtiff=4.7.1=h9d88235_1
- - libuuid=2.41.3=h5347b49_0
- - libwebp-base=1.6.0=hd42ef1d_0
- - libxcb=1.17.0=h8a09558_0
- - libxml2=2.15.1=he237659_1
- - libxml2-16=2.15.1=hca6bf5a_1
- - libzlib=1.3.1=hb9d3cd8_2
- - llvm-openmp=21.1.8=h4922eb0_0
- - markupsafe=3.0.3=py313h3dea7bd_0
- - matplotlib-base=3.10.8=py313h683a580_0
- - mccabe=0.7.0=pyhd8ed1ab_1
- - mkl=2025.3.0=h0e700b2_463
- - munkres=1.1.4=pyhd8ed1ab_1
- - ncurses=6.5=h2d0b736_3
- - numpy=2.4.2=py313hf6604e3_1
- - openjpeg=2.5.4=h55fea9a_0
- - openssl=3.6.1=h35e630c_1
- - packaging=26.0=pyhcf101f3_0
- - pillow=12.1.1=py313h80991f8_0
- - pip=26.0.1=pyh145f28c_0
- - platformdirs=4.9.2=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.19.2=pyhd8ed1ab_0
- - pylint=4.0.4=pyhcf101f3_0
- - pyparsing=3.3.2=pyhcf101f3_0
- - pysocks=1.7.1=pyha55dd90_7
- - pytest=9.0.2=pyhcf101f3_0
- - pytest-cov=7.0.0=pyhcf101f3_1
- - python=3.13.12=hc97d973_100_cp313
- - python-dateutil=2.9.0.post0=pyhe01879c_2
- - python_abi=3.13=8_cp313
- - pytz=2025.2=pyhd8ed1ab_0
- - pyyaml=6.0.3=py313h3dea7bd_1
- - qhull=2020.2=h434a139_5
- - readline=8.3=h853b02a_0
- - requests=2.32.5=pyhcf101f3_1
- - roman-numerals=4.1.0=pyhd8ed1ab_0
- - roman-numerals-py=4.1.0=pyhd8ed1ab_0
- - scipy=1.17.0=py313h4b8bb8b_1
- - six=1.17.0=pyhe01879c_1
- - snowballstemmer=3.0.1=pyhd8ed1ab_0
- - sphinx=8.2.3=pyhd8ed1ab_0
- - sphinx-autodoc-typehints=3.5.2=pyhd8ed1ab_0
- - sphinx-rtd-theme=3.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
- - tbb=2022.3.0=hb700be7_2
- - tk=8.6.13=noxft_h366c992_103
- - tomli=2.4.0=pyhcf101f3_0
- - tomlkit=0.14.0=pyha770c72_0
- - typing-extensions=4.15.0=h396c80c_0
- - typing-inspection=0.4.2=pyhd8ed1ab_1
- - typing_extensions=4.15.0=pyhcf101f3_0
- - tzdata=2025c=hc9c84f9_1
- - urllib3=2.6.3=pyhd8ed1ab_0
- - xorg-libxau=1.0.12=hb03c661_1
- - xorg-libxdmcp=1.1.5=hb03c661_1
- - yaml=0.2.5=h280c20c_3
- - zipp=3.23.0=pyhcf101f3_1
- - zlib-ng=2.3.3=hceb46e0_1
- - zstd=1.5.7=hb78ec9c_6
- - pip:
- - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@668a9e0da5214e4a3bce466321cd910f1bb00b02
- - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@9e0a86e5afadfe9c55e9811317827a4f6c2c70c4
-
-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
deleted file mode 100644
index 28f2c08..0000000
--- a/environments/py-3.13-linux-64.conda.lock.yml
+++ /dev/null
@@ -1,106 +0,0 @@
-# Generated by conda-lock.
-# platform: linux-64
-# input_hash: b18f500e8e85b4eb023bb9ed063cbde272610e416ada2de4902e592caa9ef7e1
-
-channels:
- - conda-forge
- - nodefaults
-dependencies:
- - _openmp_mutex=4.5=7_kmp_llvm
- - annotated-types=0.7.0=pyhd8ed1ab_1
- - brotli=1.2.0=hed03a55_1
- - brotli-bin=1.2.0=hb03c661_1
- - bzip2=1.0.8=hda65f42_9
- - c-ares=1.34.6=hb03c661_0
- - ca-certificates=2026.1.4=hbd8a1cb_0
- - cached-property=1.5.2=hd8ed1ab_1
- - cached_property=1.5.2=pyha770c72_1
- - contourpy=1.3.3=py313hc8edb43_4
- - cycler=0.12.1=pyhcf101f3_2
- - discretize=0.12.0=np2py313h0f78c12_1
- - fonttools=4.61.1=py313h3dea7bd_0
- - freetype=2.14.1=ha770c72_0
- - h5py=3.15.1=nompi_py313h253c126_101
- - hdf5=1.14.6=nompi_h19486de_106
- - icu=78.2=h33c6efd_0
- - keyutils=1.6.3=hb9d3cd8_0
- - kiwisolver=1.4.9=py313hc8edb43_2
- - krb5=1.22.2=ha1258a1_0
- - lcms2=2.18=h0c24ade_0
- - ld_impl_linux-64=2.45.1=default_hbd61a6d_101
- - lerc=4.0.0=h0aef613_1
- - libaec=1.1.5=h088129d_0
- - libblas=3.11.0=5_h5875eb1_mkl
- - libbrotlicommon=1.2.0=hb03c661_1
- - libbrotlidec=1.2.0=hb03c661_1
- - libbrotlienc=1.2.0=hb03c661_1
- - libcblas=3.11.0=5_hfef963f_mkl
- - libcurl=8.18.0=hcf29cc6_1
- - libdeflate=1.25=h17f619e_0
- - libedit=3.1.20250104=pl5321h7949ede_0
- - libev=4.33=hd590300_2
- - libexpat=2.7.4=hecca717_0
- - libffi=3.5.2=h3435931_0
- - libfreetype=2.14.1=ha770c72_0
- - libfreetype6=2.14.1=h73754d4_0
- - libgcc=15.2.0=he0feb66_18
- - libgcc-ng=15.2.0=h69a702a_18
- - libgfortran=15.2.0=h69a702a_18
- - libgfortran5=15.2.0=h68bc16d_18
- - libhwloc=2.12.2=default_hafda6a7_1000
- - libiconv=1.18=h3b78370_2
- - libjpeg-turbo=3.1.2=hb03c661_0
- - liblapack=3.11.0=5_h5e43f62_mkl
- - liblzma=5.8.2=hb03c661_0
- - libmpdec=4.0.0=hb03c661_1
- - libnghttp2=1.67.0=had1ee68_0
- - libpng=1.6.55=h421ea60_0
- - libsqlite=3.51.2=hf4e2dac_0
- - libssh2=1.11.1=hcf80075_0
- - libstdcxx=15.2.0=h934c35e_18
- - libstdcxx-ng=15.2.0=hdf11a46_18
- - libtiff=4.7.1=h9d88235_1
- - libuuid=2.41.3=h5347b49_0
- - libwebp-base=1.6.0=hd42ef1d_0
- - libxcb=1.17.0=h8a09558_0
- - libxml2=2.15.1=he237659_1
- - libxml2-16=2.15.1=hca6bf5a_1
- - libzlib=1.3.1=hb9d3cd8_2
- - llvm-openmp=21.1.8=h4922eb0_0
- - matplotlib-base=3.10.8=py313h683a580_0
- - mkl=2025.3.0=h0e700b2_463
- - munkres=1.1.4=pyhd8ed1ab_1
- - ncurses=6.5=h2d0b736_3
- - numpy=2.4.2=py313hf6604e3_1
- - openjpeg=2.5.4=h55fea9a_0
- - openssl=3.6.1=h35e630c_1
- - packaging=26.0=pyhcf101f3_0
- - pillow=12.1.1=py313h80991f8_0
- - pip=26.0.1=pyh145f28c_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.12=hc97d973_100_cp313
- - python-dateutil=2.9.0.post0=pyhe01879c_2
- - python_abi=3.13=8_cp313
- - qhull=2020.2=h434a139_5
- - readline=8.3=h853b02a_0
- - scipy=1.17.0=py313h4b8bb8b_1
- - six=1.17.0=pyhe01879c_1
- - tbb=2022.3.0=hb700be7_2
- - tk=8.6.13=noxft_h366c992_103
- - typing-extensions=4.15.0=h396c80c_0
- - typing-inspection=0.4.2=pyhd8ed1ab_1
- - typing_extensions=4.15.0=pyhcf101f3_0
- - tzdata=2025c=hc9c84f9_1
- - xorg-libxau=1.0.12=hb03c661_1
- - xorg-libxdmcp=1.1.5=hb03c661_1
- - zlib-ng=2.3.3=hceb46e0_1
- - zstd=1.5.7=hb78ec9c_6
- - pip:
- - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@668a9e0da5214e4a3bce466321cd910f1bb00b02
- - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@9e0a86e5afadfe9c55e9811317827a4f6c2c70c4
-
-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
deleted file mode 100644
index 841e960..0000000
--- a/environments/py-3.13-win-64-dev.conda.lock.yml
+++ /dev/null
@@ -1,151 +0,0 @@
-# Generated by conda-lock.
-# platform: win-64
-# input_hash: 83076c0d60dae94ca39e2c9cfd7903b4a93f72ab7b4d8a0b7c561f1d9057fd9e
-
-channels:
- - conda-forge
- - nodefaults
-dependencies:
- - _openmp_mutex=4.5=20_gnu
- - alabaster=1.0.0=pyhd8ed1ab_1
- - annotated-types=0.7.0=pyhd8ed1ab_1
- - astroid=4.0.4=py313hfa70ccb_0
- - babel=2.18.0=pyhcf101f3_0
- - backports.zstd=1.3.0=py313h2a31948_0
- - 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
- - ca-certificates=2026.1.4=h4c7d964_0
- - cached-property=1.5.2=hd8ed1ab_1
- - cached_property=1.5.2=pyha770c72_1
- - certifi=2026.1.4=pyhd8ed1ab_0
- - charset-normalizer=3.4.4=pyhd8ed1ab_0
- - colorama=0.4.6=pyhd8ed1ab_1
- - contourpy=1.3.3=py313h1a38498_4
- - coverage=7.13.4=py313hd650c13_0
- - cycler=0.12.1=pyhcf101f3_2
- - dill=0.4.1=pyhcf101f3_0
- - discretize=0.12.0=np2py313hedd11bf_1
- - docutils=0.21.2=pyhd8ed1ab_1
- - exceptiongroup=1.3.1=pyhd8ed1ab_0
- - fonttools=4.61.1=py313hd650c13_0
- - freetype=2.14.1=h57928b3_0
- - h2=4.3.0=pyhcf101f3_0
- - h5py=3.15.1=nompi_py313hf7f959b_101
- - hdf5=1.14.6=nompi_hae35d4c_106
- - hpack=4.1.0=pyhd8ed1ab_0
- - hyperframe=6.1.0=pyhd8ed1ab_0
- - icu=78.2=h637d24d_0
- - idna=3.11=pyhd8ed1ab_0
- - 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=pyhcf101f3_1
- - kiwisolver=1.4.9=py313h1a38498_2
- - krb5=1.22.2=h0ea6238_0
- - lcms2=2.18=hf2c6c5f_0
- - lerc=4.0.0=h6470a55_1
- - libaec=1.1.5=haf901d7_0
- - libblas=3.11.0=5_hf2e6a31_mkl
- - libbrotlicommon=1.2.0=hfd05255_1
- - libbrotlidec=1.2.0=hfd05255_1
- - libbrotlienc=1.2.0=hfd05255_1
- - libcblas=3.11.0=5_h2a3cdd5_mkl
- - libcurl=8.18.0=h8206538_1
- - libdeflate=1.25=h51727cc_0
- - libexpat=2.7.4=hac47afa_0
- - libffi=3.5.2=h3d046cb_0
- - libfreetype=2.14.1=h57928b3_0
- - libfreetype6=2.14.1=hdbac1cb_0
- - libgcc=15.2.0=h8ee18e1_18
- - libgomp=15.2.0=h8ee18e1_18
- - libhwloc=2.12.2=default_h4379cf1_1000
- - libiconv=1.18=hc1393d2_2
- - libjpeg-turbo=3.1.2=hfd05255_0
- - liblapack=3.11.0=5_hf9ab0e9_mkl
- - liblzma=5.8.2=hfd05255_0
- - libmpdec=4.0.0=hfd05255_1
- - libpng=1.6.55=h7351971_0
- - libsqlite=3.51.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=h779ef1b_1
- - libxml2-16=2.15.1=h3cfd58e_1
- - libzlib=1.3.1=h2466b09_2
- - llvm-openmp=21.1.8=h4fa8253_0
- - markupsafe=3.0.3=py313hd650c13_0
- - matplotlib-base=3.10.8=py313he1ded55_0
- - mccabe=0.7.0=pyhd8ed1ab_1
- - mkl=2025.3.0=hac47afa_455
- - munkres=1.1.4=pyhd8ed1ab_1
- - numpy=2.4.2=py313hce7ae62_1
- - openjpeg=2.5.4=h24db6dd_0
- - openssl=3.6.1=hf411b9b_1
- - packaging=26.0=pyhcf101f3_0
- - pillow=12.1.1=py313h38f99e1_0
- - pip=26.0.1=pyh145f28c_0
- - platformdirs=4.9.2=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.19.2=pyhd8ed1ab_0
- - pylint=4.0.4=pyhcf101f3_0
- - pyparsing=3.3.2=pyhcf101f3_0
- - pysocks=1.7.1=pyh09c184e_7
- - pytest=9.0.2=pyhcf101f3_0
- - pytest-cov=7.0.0=pyhcf101f3_1
- - python=3.13.12=h09917c8_100_cp313
- - python-dateutil=2.9.0.post0=pyhe01879c_2
- - python_abi=3.13=8_cp313
- - pytz=2025.2=pyhd8ed1ab_0
- - pyyaml=6.0.3=py313hd650c13_1
- - qhull=2020.2=hc790b64_5
- - requests=2.32.5=pyhcf101f3_1
- - roman-numerals=4.1.0=pyhd8ed1ab_0
- - roman-numerals-py=4.1.0=pyhd8ed1ab_0
- - scipy=1.17.0=py313he51e9a2_1
- - six=1.17.0=pyhe01879c_1
- - snowballstemmer=3.0.1=pyhd8ed1ab_0
- - sphinx=8.2.3=pyhd8ed1ab_0
- - sphinx-autodoc-typehints=3.5.2=pyhd8ed1ab_0
- - sphinx-rtd-theme=3.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
- - tbb=2022.3.0=h3155e25_2
- - tk=8.6.13=h6ed50ae_3
- - tomli=2.4.0=pyhcf101f3_0
- - tomlkit=0.14.0=pyha770c72_0
- - typing-extensions=4.15.0=h396c80c_0
- - typing-inspection=0.4.2=pyhd8ed1ab_1
- - typing_extensions=4.15.0=pyhcf101f3_0
- - tzdata=2025c=hc9c84f9_1
- - ucrt=10.0.26100.0=h57928b3_0
- - urllib3=2.6.3=pyhd8ed1ab_0
- - vc=14.3=h41ae7f8_34
- - vc14_runtime=14.44.35208=h818238b_34
- - vcomp14=14.44.35208=h818238b_34
- - 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
- - zipp=3.23.0=pyhcf101f3_1
- - zlib-ng=2.3.3=h0261ad2_1
- - zstd=1.5.7=h534d264_6
- - pip:
- - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@668a9e0da5214e4a3bce466321cd910f1bb00b02
- - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@9e0a86e5afadfe9c55e9811317827a4f6c2c70c4
-
-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
deleted file mode 100644
index 199873e..0000000
--- a/environments/py-3.13-win-64.conda.lock.yml
+++ /dev/null
@@ -1,98 +0,0 @@
-# Generated by conda-lock.
-# platform: win-64
-# input_hash: 83076c0d60dae94ca39e2c9cfd7903b4a93f72ab7b4d8a0b7c561f1d9057fd9e
-
-channels:
- - conda-forge
- - nodefaults
-dependencies:
- - _openmp_mutex=4.5=20_gnu
- - annotated-types=0.7.0=pyhd8ed1ab_1
- - brotli=1.2.0=h2d644bc_1
- - brotli-bin=1.2.0=hfd05255_1
- - bzip2=1.0.8=h0ad9c76_9
- - ca-certificates=2026.1.4=h4c7d964_0
- - cached-property=1.5.2=hd8ed1ab_1
- - cached_property=1.5.2=pyha770c72_1
- - contourpy=1.3.3=py313h1a38498_4
- - cycler=0.12.1=pyhcf101f3_2
- - discretize=0.12.0=np2py313hedd11bf_1
- - fonttools=4.61.1=py313hd650c13_0
- - freetype=2.14.1=h57928b3_0
- - h5py=3.15.1=nompi_py313hf7f959b_101
- - hdf5=1.14.6=nompi_hae35d4c_106
- - icu=78.2=h637d24d_0
- - kiwisolver=1.4.9=py313h1a38498_2
- - krb5=1.22.2=h0ea6238_0
- - lcms2=2.18=hf2c6c5f_0
- - lerc=4.0.0=h6470a55_1
- - libaec=1.1.5=haf901d7_0
- - libblas=3.11.0=5_hf2e6a31_mkl
- - libbrotlicommon=1.2.0=hfd05255_1
- - libbrotlidec=1.2.0=hfd05255_1
- - libbrotlienc=1.2.0=hfd05255_1
- - libcblas=3.11.0=5_h2a3cdd5_mkl
- - libcurl=8.18.0=h8206538_1
- - libdeflate=1.25=h51727cc_0
- - libexpat=2.7.4=hac47afa_0
- - libffi=3.5.2=h3d046cb_0
- - libfreetype=2.14.1=h57928b3_0
- - libfreetype6=2.14.1=hdbac1cb_0
- - libgcc=15.2.0=h8ee18e1_18
- - libgomp=15.2.0=h8ee18e1_18
- - libhwloc=2.12.2=default_h4379cf1_1000
- - libiconv=1.18=hc1393d2_2
- - libjpeg-turbo=3.1.2=hfd05255_0
- - liblapack=3.11.0=5_hf9ab0e9_mkl
- - liblzma=5.8.2=hfd05255_0
- - libmpdec=4.0.0=hfd05255_1
- - libpng=1.6.55=h7351971_0
- - libsqlite=3.51.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=h779ef1b_1
- - libxml2-16=2.15.1=h3cfd58e_1
- - libzlib=1.3.1=h2466b09_2
- - llvm-openmp=21.1.8=h4fa8253_0
- - matplotlib-base=3.10.8=py313he1ded55_0
- - mkl=2025.3.0=hac47afa_455
- - munkres=1.1.4=pyhd8ed1ab_1
- - numpy=2.4.2=py313hce7ae62_1
- - openjpeg=2.5.4=h24db6dd_0
- - openssl=3.6.1=hf411b9b_1
- - packaging=26.0=pyhcf101f3_0
- - pillow=12.1.1=py313h38f99e1_0
- - pip=26.0.1=pyh145f28c_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.12=h09917c8_100_cp313
- - python-dateutil=2.9.0.post0=pyhe01879c_2
- - python_abi=3.13=8_cp313
- - qhull=2020.2=hc790b64_5
- - scipy=1.17.0=py313he51e9a2_1
- - six=1.17.0=pyhe01879c_1
- - tbb=2022.3.0=h3155e25_2
- - tk=8.6.13=h6ed50ae_3
- - typing-extensions=4.15.0=h396c80c_0
- - typing-inspection=0.4.2=pyhd8ed1ab_1
- - typing_extensions=4.15.0=pyhcf101f3_0
- - tzdata=2025c=hc9c84f9_1
- - ucrt=10.0.26100.0=h57928b3_0
- - vc=14.3=h41ae7f8_34
- - vc14_runtime=14.44.35208=h818238b_34
- - vcomp14=14.44.35208=h818238b_34
- - xorg-libxau=1.0.12=hba3369d_1
- - xorg-libxdmcp=1.1.5=hba3369d_1
- - zlib-ng=2.3.3=h0261ad2_1
- - zstd=1.5.7=h534d264_6
- - pip:
- - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@668a9e0da5214e4a3bce466321cd910f1bb00b02
- - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@9e0a86e5afadfe9c55e9811317827a4f6c2c70c4
-
-variables:
- KMP_WARNINGS: 0
diff --git a/environments/py-3.14-linux-64-dev.conda.lock.yml b/environments/py-3.14-linux-64-dev.conda.lock.yml
deleted file mode 100644
index 71dae28..0000000
--- a/environments/py-3.14-linux-64-dev.conda.lock.yml
+++ /dev/null
@@ -1,159 +0,0 @@
-# Generated by conda-lock.
-# platform: linux-64
-# input_hash: 1fcd58273952d9af10e24e1080fa4a27f4767f8644fa877f82ba937d8014e56a
-
-channels:
- - conda-forge
- - nodefaults
-dependencies:
- - _openmp_mutex=4.5=7_kmp_llvm
- - alabaster=1.0.0=pyhd8ed1ab_1
- - annotated-types=0.7.0=pyhd8ed1ab_1
- - astroid=4.0.4=py314hdafbbf9_0
- - babel=2.18.0=pyhcf101f3_0
- - backports.zstd=1.3.0=py314h680f03e_0
- - brotli=1.2.0=hed03a55_1
- - brotli-bin=1.2.0=hb03c661_1
- - brotli-python=1.2.0=py314h3de4e8d_1
- - bzip2=1.0.8=hda65f42_9
- - c-ares=1.34.6=hb03c661_0
- - ca-certificates=2026.1.4=hbd8a1cb_0
- - cached-property=1.5.2=hd8ed1ab_1
- - cached_property=1.5.2=pyha770c72_1
- - certifi=2026.1.4=pyhd8ed1ab_0
- - charset-normalizer=3.4.4=pyhd8ed1ab_0
- - colorama=0.4.6=pyhd8ed1ab_1
- - contourpy=1.3.3=py314h97ea11e_4
- - coverage=7.13.4=py314h67df5f8_0
- - cycler=0.12.1=pyhcf101f3_2
- - dill=0.4.1=pyhcf101f3_0
- - discretize=0.12.0=np2py314hb287c12_1
- - docutils=0.21.2=pyhd8ed1ab_1
- - exceptiongroup=1.3.1=pyhd8ed1ab_0
- - fonttools=4.61.1=pyh7db6752_0
- - freetype=2.14.1=ha770c72_0
- - h2=4.3.0=pyhcf101f3_0
- - h5py=3.15.1=nompi_py314hc32fe06_101
- - hdf5=1.14.6=nompi_h19486de_106
- - hpack=4.1.0=pyhd8ed1ab_0
- - hyperframe=6.1.0=pyhd8ed1ab_0
- - icu=78.2=h33c6efd_0
- - idna=3.11=pyhd8ed1ab_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=pyhcf101f3_1
- - keyutils=1.6.3=hb9d3cd8_0
- - kiwisolver=1.4.9=py314h97ea11e_2
- - krb5=1.22.2=ha1258a1_0
- - lcms2=2.18=h0c24ade_0
- - ld_impl_linux-64=2.45.1=default_hbd61a6d_101
- - lerc=4.0.0=h0aef613_1
- - libaec=1.1.5=h088129d_0
- - libblas=3.11.0=5_h5875eb1_mkl
- - libbrotlicommon=1.2.0=hb03c661_1
- - libbrotlidec=1.2.0=hb03c661_1
- - libbrotlienc=1.2.0=hb03c661_1
- - libcblas=3.11.0=5_hfef963f_mkl
- - libcurl=8.18.0=hcf29cc6_1
- - libdeflate=1.25=h17f619e_0
- - libedit=3.1.20250104=pl5321h7949ede_0
- - libev=4.33=hd590300_2
- - libexpat=2.7.4=hecca717_0
- - libffi=3.5.2=h3435931_0
- - libfreetype=2.14.1=ha770c72_0
- - libfreetype6=2.14.1=h73754d4_0
- - libgcc=15.2.0=he0feb66_18
- - libgcc-ng=15.2.0=h69a702a_18
- - libgfortran=15.2.0=h69a702a_18
- - libgfortran5=15.2.0=h68bc16d_18
- - libhwloc=2.12.2=default_hafda6a7_1000
- - libiconv=1.18=h3b78370_2
- - libjpeg-turbo=3.1.2=hb03c661_0
- - liblapack=3.11.0=5_h5e43f62_mkl
- - liblzma=5.8.2=hb03c661_0
- - libmpdec=4.0.0=hb03c661_1
- - libnghttp2=1.67.0=had1ee68_0
- - libpng=1.6.55=h421ea60_0
- - libsqlite=3.51.2=hf4e2dac_0
- - libssh2=1.11.1=hcf80075_0
- - libstdcxx=15.2.0=h934c35e_18
- - libstdcxx-ng=15.2.0=hdf11a46_18
- - libtiff=4.7.1=h9d88235_1
- - libuuid=2.41.3=h5347b49_0
- - libwebp-base=1.6.0=hd42ef1d_0
- - libxcb=1.17.0=h8a09558_0
- - libxml2=2.15.1=he237659_1
- - libxml2-16=2.15.1=hca6bf5a_1
- - libzlib=1.3.1=hb9d3cd8_2
- - llvm-openmp=21.1.8=h4922eb0_0
- - markupsafe=3.0.3=pyh7db6752_0
- - matplotlib-base=3.10.8=py314h1194b4b_0
- - mccabe=0.7.0=pyhd8ed1ab_1
- - mkl=2025.3.0=h0e700b2_463
- - munkres=1.1.4=pyhd8ed1ab_1
- - ncurses=6.5=h2d0b736_3
- - numpy=2.4.2=py314h2b28147_1
- - openjpeg=2.5.4=h55fea9a_0
- - openssl=3.6.1=h35e630c_1
- - packaging=26.0=pyhcf101f3_0
- - pillow=12.1.1=py314h8ec4b1a_0
- - pip=26.0.1=pyh145f28c_0
- - platformdirs=4.9.2=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=py314h2e6c369_1
- - pygments=2.19.2=pyhd8ed1ab_0
- - pylint=4.0.4=pyhcf101f3_0
- - pyparsing=3.3.2=pyhcf101f3_0
- - pysocks=1.7.1=pyha55dd90_7
- - pytest=9.0.2=pyhcf101f3_0
- - pytest-cov=7.0.0=pyhcf101f3_1
- - python=3.14.3=h32b2ec7_101_cp314
- - python-dateutil=2.9.0.post0=pyhe01879c_2
- - python_abi=3.14=8_cp314
- - pytz=2025.2=pyhd8ed1ab_0
- - pyyaml=6.0.3=py314h67df5f8_1
- - qhull=2020.2=h434a139_5
- - readline=8.3=h853b02a_0
- - requests=2.32.5=pyhcf101f3_1
- - roman-numerals=4.1.0=pyhd8ed1ab_0
- - roman-numerals-py=4.1.0=pyhd8ed1ab_0
- - scipy=1.17.0=py314hf07bd8e_1
- - six=1.17.0=pyhe01879c_1
- - snowballstemmer=3.0.1=pyhd8ed1ab_0
- - sphinx=8.2.3=pyhd8ed1ab_0
- - sphinx-autodoc-typehints=3.5.2=pyhd8ed1ab_0
- - sphinx-rtd-theme=3.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
- - tbb=2022.3.0=hb700be7_2
- - tk=8.6.13=noxft_h366c992_103
- - tomli=2.4.0=pyhcf101f3_0
- - tomlkit=0.14.0=pyha770c72_0
- - typing-extensions=4.15.0=h396c80c_0
- - typing-inspection=0.4.2=pyhd8ed1ab_1
- - typing_extensions=4.15.0=pyhcf101f3_0
- - tzdata=2025c=hc9c84f9_1
- - unicodedata2=17.0.1=py314h5bd0f2a_0
- - urllib3=2.6.3=pyhd8ed1ab_0
- - xorg-libxau=1.0.12=hb03c661_1
- - xorg-libxdmcp=1.1.5=hb03c661_1
- - yaml=0.2.5=h280c20c_3
- - zipp=3.23.0=pyhcf101f3_1
- - zlib-ng=2.3.3=hceb46e0_1
- - zstd=1.5.7=hb78ec9c_6
- - pip:
- - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@668a9e0da5214e4a3bce466321cd910f1bb00b02
- - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@9e0a86e5afadfe9c55e9811317827a4f6c2c70c4
-
-variables:
- KMP_WARNINGS: 0
diff --git a/environments/py-3.14-linux-64.conda.lock.yml b/environments/py-3.14-linux-64.conda.lock.yml
deleted file mode 100644
index 1bf7dbf..0000000
--- a/environments/py-3.14-linux-64.conda.lock.yml
+++ /dev/null
@@ -1,107 +0,0 @@
-# Generated by conda-lock.
-# platform: linux-64
-# input_hash: 1fcd58273952d9af10e24e1080fa4a27f4767f8644fa877f82ba937d8014e56a
-
-channels:
- - conda-forge
- - nodefaults
-dependencies:
- - _openmp_mutex=4.5=7_kmp_llvm
- - annotated-types=0.7.0=pyhd8ed1ab_1
- - brotli=1.2.0=hed03a55_1
- - brotli-bin=1.2.0=hb03c661_1
- - bzip2=1.0.8=hda65f42_9
- - c-ares=1.34.6=hb03c661_0
- - ca-certificates=2026.1.4=hbd8a1cb_0
- - cached-property=1.5.2=hd8ed1ab_1
- - cached_property=1.5.2=pyha770c72_1
- - contourpy=1.3.3=py314h97ea11e_4
- - cycler=0.12.1=pyhcf101f3_2
- - discretize=0.12.0=np2py314hb287c12_1
- - fonttools=4.61.1=pyh7db6752_0
- - freetype=2.14.1=ha770c72_0
- - h5py=3.15.1=nompi_py314hc32fe06_101
- - hdf5=1.14.6=nompi_h19486de_106
- - icu=78.2=h33c6efd_0
- - keyutils=1.6.3=hb9d3cd8_0
- - kiwisolver=1.4.9=py314h97ea11e_2
- - krb5=1.22.2=ha1258a1_0
- - lcms2=2.18=h0c24ade_0
- - ld_impl_linux-64=2.45.1=default_hbd61a6d_101
- - lerc=4.0.0=h0aef613_1
- - libaec=1.1.5=h088129d_0
- - libblas=3.11.0=5_h5875eb1_mkl
- - libbrotlicommon=1.2.0=hb03c661_1
- - libbrotlidec=1.2.0=hb03c661_1
- - libbrotlienc=1.2.0=hb03c661_1
- - libcblas=3.11.0=5_hfef963f_mkl
- - libcurl=8.18.0=hcf29cc6_1
- - libdeflate=1.25=h17f619e_0
- - libedit=3.1.20250104=pl5321h7949ede_0
- - libev=4.33=hd590300_2
- - libexpat=2.7.4=hecca717_0
- - libffi=3.5.2=h3435931_0
- - libfreetype=2.14.1=ha770c72_0
- - libfreetype6=2.14.1=h73754d4_0
- - libgcc=15.2.0=he0feb66_18
- - libgcc-ng=15.2.0=h69a702a_18
- - libgfortran=15.2.0=h69a702a_18
- - libgfortran5=15.2.0=h68bc16d_18
- - libhwloc=2.12.2=default_hafda6a7_1000
- - libiconv=1.18=h3b78370_2
- - libjpeg-turbo=3.1.2=hb03c661_0
- - liblapack=3.11.0=5_h5e43f62_mkl
- - liblzma=5.8.2=hb03c661_0
- - libmpdec=4.0.0=hb03c661_1
- - libnghttp2=1.67.0=had1ee68_0
- - libpng=1.6.55=h421ea60_0
- - libsqlite=3.51.2=hf4e2dac_0
- - libssh2=1.11.1=hcf80075_0
- - libstdcxx=15.2.0=h934c35e_18
- - libstdcxx-ng=15.2.0=hdf11a46_18
- - libtiff=4.7.1=h9d88235_1
- - libuuid=2.41.3=h5347b49_0
- - libwebp-base=1.6.0=hd42ef1d_0
- - libxcb=1.17.0=h8a09558_0
- - libxml2=2.15.1=he237659_1
- - libxml2-16=2.15.1=hca6bf5a_1
- - libzlib=1.3.1=hb9d3cd8_2
- - llvm-openmp=21.1.8=h4922eb0_0
- - matplotlib-base=3.10.8=py314h1194b4b_0
- - mkl=2025.3.0=h0e700b2_463
- - munkres=1.1.4=pyhd8ed1ab_1
- - ncurses=6.5=h2d0b736_3
- - numpy=2.4.2=py314h2b28147_1
- - openjpeg=2.5.4=h55fea9a_0
- - openssl=3.6.1=h35e630c_1
- - packaging=26.0=pyhcf101f3_0
- - pillow=12.1.1=py314h8ec4b1a_0
- - pip=26.0.1=pyh145f28c_0
- - pthread-stubs=0.4=hb9d3cd8_1002
- - pydantic=2.12.5=pyhcf101f3_1
- - pydantic-core=2.41.5=py314h2e6c369_1
- - pyparsing=3.3.2=pyhcf101f3_0
- - python=3.14.3=h32b2ec7_101_cp314
- - python-dateutil=2.9.0.post0=pyhe01879c_2
- - python_abi=3.14=8_cp314
- - qhull=2020.2=h434a139_5
- - readline=8.3=h853b02a_0
- - scipy=1.17.0=py314hf07bd8e_1
- - six=1.17.0=pyhe01879c_1
- - tbb=2022.3.0=hb700be7_2
- - tk=8.6.13=noxft_h366c992_103
- - typing-extensions=4.15.0=h396c80c_0
- - typing-inspection=0.4.2=pyhd8ed1ab_1
- - typing_extensions=4.15.0=pyhcf101f3_0
- - tzdata=2025c=hc9c84f9_1
- - unicodedata2=17.0.1=py314h5bd0f2a_0
- - xorg-libxau=1.0.12=hb03c661_1
- - xorg-libxdmcp=1.1.5=hb03c661_1
- - zlib-ng=2.3.3=hceb46e0_1
- - zstd=1.5.7=hb78ec9c_6
- - pip:
- - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@668a9e0da5214e4a3bce466321cd910f1bb00b02
- - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@9e0a86e5afadfe9c55e9811317827a4f6c2c70c4
-
-variables:
- KMP_WARNINGS: 0
diff --git a/environments/py-3.14-win-64-dev.conda.lock.yml b/environments/py-3.14-win-64-dev.conda.lock.yml
deleted file mode 100644
index e64db96..0000000
--- a/environments/py-3.14-win-64-dev.conda.lock.yml
+++ /dev/null
@@ -1,152 +0,0 @@
-# Generated by conda-lock.
-# platform: win-64
-# input_hash: 5af27ac8b89d0508ea53657ac9fc3decbb10a7ba4a8ea5c75d9507da45f9880a
-
-channels:
- - conda-forge
- - nodefaults
-dependencies:
- - _openmp_mutex=4.5=20_gnu
- - alabaster=1.0.0=pyhd8ed1ab_1
- - annotated-types=0.7.0=pyhd8ed1ab_1
- - astroid=4.0.4=py314h86ab7b2_0
- - babel=2.18.0=pyhcf101f3_0
- - backports.zstd=1.3.0=py314h680f03e_0
- - brotli=1.2.0=h2d644bc_1
- - brotli-bin=1.2.0=hfd05255_1
- - brotli-python=1.2.0=py314he701e3d_1
- - bzip2=1.0.8=h0ad9c76_9
- - ca-certificates=2026.1.4=h4c7d964_0
- - cached-property=1.5.2=hd8ed1ab_1
- - cached_property=1.5.2=pyha770c72_1
- - certifi=2026.1.4=pyhd8ed1ab_0
- - charset-normalizer=3.4.4=pyhd8ed1ab_0
- - colorama=0.4.6=pyhd8ed1ab_1
- - contourpy=1.3.3=py314hf309875_4
- - coverage=7.13.4=py314h2359020_0
- - cycler=0.12.1=pyhcf101f3_2
- - dill=0.4.1=pyhcf101f3_0
- - discretize=0.12.0=np2py314h1495373_1
- - docutils=0.21.2=pyhd8ed1ab_1
- - exceptiongroup=1.3.1=pyhd8ed1ab_0
- - fonttools=4.61.1=pyh7db6752_0
- - freetype=2.14.1=h57928b3_0
- - h2=4.3.0=pyhcf101f3_0
- - h5py=3.15.1=nompi_py314hc249e69_101
- - hdf5=1.14.6=nompi_hae35d4c_106
- - hpack=4.1.0=pyhd8ed1ab_0
- - hyperframe=6.1.0=pyhd8ed1ab_0
- - icu=78.2=h637d24d_0
- - idna=3.11=pyhd8ed1ab_0
- - 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=pyhcf101f3_1
- - kiwisolver=1.4.9=py314hf309875_2
- - krb5=1.22.2=h0ea6238_0
- - lcms2=2.18=hf2c6c5f_0
- - lerc=4.0.0=h6470a55_1
- - libaec=1.1.5=haf901d7_0
- - libblas=3.11.0=5_hf2e6a31_mkl
- - libbrotlicommon=1.2.0=hfd05255_1
- - libbrotlidec=1.2.0=hfd05255_1
- - libbrotlienc=1.2.0=hfd05255_1
- - libcblas=3.11.0=5_h2a3cdd5_mkl
- - libcurl=8.18.0=h8206538_1
- - libdeflate=1.25=h51727cc_0
- - libexpat=2.7.4=hac47afa_0
- - libffi=3.5.2=h3d046cb_0
- - libfreetype=2.14.1=h57928b3_0
- - libfreetype6=2.14.1=hdbac1cb_0
- - libgcc=15.2.0=h8ee18e1_18
- - libgomp=15.2.0=h8ee18e1_18
- - libhwloc=2.12.2=default_h4379cf1_1000
- - libiconv=1.18=hc1393d2_2
- - libjpeg-turbo=3.1.2=hfd05255_0
- - liblapack=3.11.0=5_hf9ab0e9_mkl
- - liblzma=5.8.2=hfd05255_0
- - libmpdec=4.0.0=hfd05255_1
- - libpng=1.6.55=h7351971_0
- - libsqlite=3.51.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=h779ef1b_1
- - libxml2-16=2.15.1=h3cfd58e_1
- - libzlib=1.3.1=h2466b09_2
- - llvm-openmp=21.1.8=h4fa8253_0
- - markupsafe=3.0.3=pyh7db6752_0
- - matplotlib-base=3.10.8=py314hfa45d96_0
- - mccabe=0.7.0=pyhd8ed1ab_1
- - mkl=2025.3.0=hac47afa_455
- - munkres=1.1.4=pyhd8ed1ab_1
- - numpy=2.4.2=py314h06c3c77_1
- - openjpeg=2.5.4=h24db6dd_0
- - openssl=3.6.1=hf411b9b_1
- - packaging=26.0=pyhcf101f3_0
- - pillow=12.1.1=py314h61b30b5_0
- - pip=26.0.1=pyh145f28c_0
- - platformdirs=4.9.2=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=py314h9f07db2_1
- - pygments=2.19.2=pyhd8ed1ab_0
- - pylint=4.0.4=pyhcf101f3_0
- - pyparsing=3.3.2=pyhcf101f3_0
- - pysocks=1.7.1=pyh09c184e_7
- - pytest=9.0.2=pyhcf101f3_0
- - pytest-cov=7.0.0=pyhcf101f3_1
- - python=3.14.3=h4b44e0e_101_cp314
- - python-dateutil=2.9.0.post0=pyhe01879c_2
- - python_abi=3.14=8_cp314
- - pytz=2025.2=pyhd8ed1ab_0
- - pyyaml=6.0.3=py314h2359020_1
- - qhull=2020.2=hc790b64_5
- - requests=2.32.5=pyhcf101f3_1
- - roman-numerals=4.1.0=pyhd8ed1ab_0
- - roman-numerals-py=4.1.0=pyhd8ed1ab_0
- - scipy=1.17.0=py314h221f224_1
- - six=1.17.0=pyhe01879c_1
- - snowballstemmer=3.0.1=pyhd8ed1ab_0
- - sphinx=8.2.3=pyhd8ed1ab_0
- - sphinx-autodoc-typehints=3.5.2=pyhd8ed1ab_0
- - sphinx-rtd-theme=3.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
- - tbb=2022.3.0=h3155e25_2
- - tk=8.6.13=h6ed50ae_3
- - tomli=2.4.0=pyhcf101f3_0
- - tomlkit=0.14.0=pyha770c72_0
- - typing-extensions=4.15.0=h396c80c_0
- - typing-inspection=0.4.2=pyhd8ed1ab_1
- - typing_extensions=4.15.0=pyhcf101f3_0
- - tzdata=2025c=hc9c84f9_1
- - ucrt=10.0.26100.0=h57928b3_0
- - unicodedata2=17.0.1=py314h5a2d7ad_0
- - urllib3=2.6.3=pyhd8ed1ab_0
- - vc=14.3=h41ae7f8_34
- - vc14_runtime=14.44.35208=h818238b_34
- - vcomp14=14.44.35208=h818238b_34
- - 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
- - zipp=3.23.0=pyhcf101f3_1
- - zlib-ng=2.3.3=h0261ad2_1
- - zstd=1.5.7=h534d264_6
- - pip:
- - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@668a9e0da5214e4a3bce466321cd910f1bb00b02
- - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@9e0a86e5afadfe9c55e9811317827a4f6c2c70c4
-
-variables:
- KMP_WARNINGS: 0
diff --git a/environments/py-3.14-win-64.conda.lock.yml b/environments/py-3.14-win-64.conda.lock.yml
deleted file mode 100644
index 657f4ae..0000000
--- a/environments/py-3.14-win-64.conda.lock.yml
+++ /dev/null
@@ -1,99 +0,0 @@
-# Generated by conda-lock.
-# platform: win-64
-# input_hash: 5af27ac8b89d0508ea53657ac9fc3decbb10a7ba4a8ea5c75d9507da45f9880a
-
-channels:
- - conda-forge
- - nodefaults
-dependencies:
- - _openmp_mutex=4.5=20_gnu
- - annotated-types=0.7.0=pyhd8ed1ab_1
- - brotli=1.2.0=h2d644bc_1
- - brotli-bin=1.2.0=hfd05255_1
- - bzip2=1.0.8=h0ad9c76_9
- - ca-certificates=2026.1.4=h4c7d964_0
- - cached-property=1.5.2=hd8ed1ab_1
- - cached_property=1.5.2=pyha770c72_1
- - contourpy=1.3.3=py314hf309875_4
- - cycler=0.12.1=pyhcf101f3_2
- - discretize=0.12.0=np2py314h1495373_1
- - fonttools=4.61.1=pyh7db6752_0
- - freetype=2.14.1=h57928b3_0
- - h5py=3.15.1=nompi_py314hc249e69_101
- - hdf5=1.14.6=nompi_hae35d4c_106
- - icu=78.2=h637d24d_0
- - kiwisolver=1.4.9=py314hf309875_2
- - krb5=1.22.2=h0ea6238_0
- - lcms2=2.18=hf2c6c5f_0
- - lerc=4.0.0=h6470a55_1
- - libaec=1.1.5=haf901d7_0
- - libblas=3.11.0=5_hf2e6a31_mkl
- - libbrotlicommon=1.2.0=hfd05255_1
- - libbrotlidec=1.2.0=hfd05255_1
- - libbrotlienc=1.2.0=hfd05255_1
- - libcblas=3.11.0=5_h2a3cdd5_mkl
- - libcurl=8.18.0=h8206538_1
- - libdeflate=1.25=h51727cc_0
- - libexpat=2.7.4=hac47afa_0
- - libffi=3.5.2=h3d046cb_0
- - libfreetype=2.14.1=h57928b3_0
- - libfreetype6=2.14.1=hdbac1cb_0
- - libgcc=15.2.0=h8ee18e1_18
- - libgomp=15.2.0=h8ee18e1_18
- - libhwloc=2.12.2=default_h4379cf1_1000
- - libiconv=1.18=hc1393d2_2
- - libjpeg-turbo=3.1.2=hfd05255_0
- - liblapack=3.11.0=5_hf9ab0e9_mkl
- - liblzma=5.8.2=hfd05255_0
- - libmpdec=4.0.0=hfd05255_1
- - libpng=1.6.55=h7351971_0
- - libsqlite=3.51.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=h779ef1b_1
- - libxml2-16=2.15.1=h3cfd58e_1
- - libzlib=1.3.1=h2466b09_2
- - llvm-openmp=21.1.8=h4fa8253_0
- - matplotlib-base=3.10.8=py314hfa45d96_0
- - mkl=2025.3.0=hac47afa_455
- - munkres=1.1.4=pyhd8ed1ab_1
- - numpy=2.4.2=py314h06c3c77_1
- - openjpeg=2.5.4=h24db6dd_0
- - openssl=3.6.1=hf411b9b_1
- - packaging=26.0=pyhcf101f3_0
- - pillow=12.1.1=py314h61b30b5_0
- - pip=26.0.1=pyh145f28c_0
- - pthread-stubs=0.4=h0e40799_1002
- - pydantic=2.12.5=pyhcf101f3_1
- - pydantic-core=2.41.5=py314h9f07db2_1
- - pyparsing=3.3.2=pyhcf101f3_0
- - python=3.14.3=h4b44e0e_101_cp314
- - python-dateutil=2.9.0.post0=pyhe01879c_2
- - python_abi=3.14=8_cp314
- - qhull=2020.2=hc790b64_5
- - scipy=1.17.0=py314h221f224_1
- - six=1.17.0=pyhe01879c_1
- - tbb=2022.3.0=h3155e25_2
- - tk=8.6.13=h6ed50ae_3
- - typing-extensions=4.15.0=h396c80c_0
- - typing-inspection=0.4.2=pyhd8ed1ab_1
- - typing_extensions=4.15.0=pyhcf101f3_0
- - tzdata=2025c=hc9c84f9_1
- - ucrt=10.0.26100.0=h57928b3_0
- - unicodedata2=17.0.1=py314h5a2d7ad_0
- - vc=14.3=h41ae7f8_34
- - vc14_runtime=14.44.35208=h818238b_34
- - vcomp14=14.44.35208=h818238b_34
- - xorg-libxau=1.0.12=hba3369d_1
- - xorg-libxdmcp=1.1.5=hba3369d_1
- - zlib-ng=2.3.3=h0261ad2_1
- - zstd=1.5.7=h534d264_6
- - pip:
- - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@668a9e0da5214e4a3bce466321cd910f1bb00b02
- - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@9e0a86e5afadfe9c55e9811317827a4f6c2c70c4
-
-variables:
- KMP_WARNINGS: 0
diff --git a/get_conda_exec.bat b/get_conda_exec.bat
deleted file mode 100644
index 496bc57..0000000
--- a/get_conda_exec.bat
+++ /dev/null
@@ -1,60 +0,0 @@
-@echo off
-setlocal EnableDelayedExpansion
-
-set custom_script="%~dp0get_custom_conda.bat"
-if exist !custom_script! (
- call !custom_script!
- if !ERRORLEVEL! neq 0 (
- echo ERROR: calling !custom_script! 1>&2
- exit /B !ERRORLEVEL!
- )
- if [!MY_CONDA_EXE!] == [] (
- echo ERROR: MY_CONDA_EXE not set by !custom_script! 1>&2
- exit /B 1
- )
- call "!MY_CONDA_EXE:"=!" --version 2> NUL
- if !ERRORLEVEL! neq 0 (
- echo ERROR: Failed executing Conda: !MY_CONDA_EXE! 1>&2
- echo Check definition of MY_CONDA_EXE in !custom_script!
- exit /B !ERRORLEVEL!
- )
- goto success
-)
-
-:: reset error level
-call (exit /B 0)
-
-set usual_conda_install_locations=^
- "%LOCALAPPDATA%";^
- "%USERPROFILE%";^
- "%ProgramData%";
-
-set conda_distributions=^
- "miniforge3";^
- "mambaforge";^
- "miniconda3";^
- "anaconda3";^
- "Continuum\miniconda3";^
- "Continuum\anaconda3";^
-
-
-set conda_bat_subpath=Library\bin\conda.bat
-
-for %%p in (%usual_conda_install_locations%) do (
- for %%d in (%conda_distributions%) do (
- set base_path=%%p\%%d
- set conda_path="!base_path:"=!\%conda_bat_subpath%"
- if exist !conda_path! (
- set MY_CONDA_EXE=!conda_path!
- goto success
- )
- )
-)
-echo Error: Failed to find conda.bat 1>&2
-echo You can define a custom Conda location with in !custom_script!
-exit /B 1
-
-:success
- echo Using Conda: !MY_CONDA_EXE!
- endlocal & set MY_CONDA_EXE=%MY_CONDA_EXE%
- exit /B 0
diff --git a/get_custom_conda.bat.example b/get_custom_conda.bat.example
deleted file mode 100644
index a235ea7..0000000
--- a/get_custom_conda.bat.example
+++ /dev/null
@@ -1 +0,0 @@
-set MY_CONDA_EXE=C:\custom\path\to\conda.bat
diff --git a/grid_apps-assets/uijson/block_model_to_octree.ui.json b/grid_apps-assets/uijson/block_model_to_octree.ui.json
index f8f0a9c..0c13777 100644
--- a/grid_apps-assets/uijson/block_model_to_octree.ui.json
+++ b/grid_apps-assets/uijson/block_model_to_octree.ui.json
@@ -31,7 +31,7 @@
},
"export_as": {
"main": true,
- "label": "Save as",
+ "label": "Output name",
"value": "block_model"
},
"out_group": {
diff --git a/grid_apps-assets/uijson/block_models.ui.json b/grid_apps-assets/uijson/block_models.ui.json
index ca20ef6..8c03ed1 100644
--- a/grid_apps-assets/uijson/block_models.ui.json
+++ b/grid_apps-assets/uijson/block_models.ui.json
@@ -70,7 +70,7 @@
"export_as": {
"group": "Output",
"main": true,
- "label": "Save as",
+ "label": "Name",
"value": "block_model"
},
"out_group": {
diff --git a/grid_apps-assets/uijson/octree_mesh.ui.json b/grid_apps-assets/uijson/octree_mesh.ui.json
index dfa833f..749477a 100644
--- a/grid_apps-assets/uijson/octree_mesh.ui.json
+++ b/grid_apps-assets/uijson/octree_mesh.ui.json
@@ -76,7 +76,7 @@
"ga_group_name": {
"group": "Basic",
"main": true,
- "label": "Name",
+ "label": "Output name",
"value": "Octree mesh"
},
"diagonal_balance": {
diff --git a/install.bat b/install.bat
deleted file mode 100644
index f29666d..0000000
--- a/install.bat
+++ /dev/null
@@ -1,56 +0,0 @@
-:: Creates a dedicated Conda environment with this package installed and ready to run in that environment.
-::
-:: Usage: install.bat [-e]
-::
-:: Use the optional -e argument to install in editable mode. In that case, any
-:: change in the source code will be immediately reflected at execution, and the source folder
-:: must not be moved or deleted after installation.
-
-
-@echo off
-setlocal EnableDelayedExpansion
-
-call "%~dp0get_conda_exec.bat"
-if !errorlevel! neq 0 (
- pause
- exit /B !errorlevel!
-)
-
-set EXTRA_PIP_INSTALL_OPTIONS =
-
-:: if provided and first arg equals "-e", install with pip editable mode
-if "%1" == "-e" (
- set EXTRA_PIP_INSTALL_OPTIONS=-e
- shift
-)
-
-set PY_VER=3.10
-
-set ENV_NAME=grid_apps
-set MY_CONDA=!MY_CONDA_EXE:"=!
-cd %~dp0
-set PYTHONUTF8=1
-set CONDA_CHANNEL_PRIORITY=strict
-
-:: all dependencies are installed from conda
-set PIP_NO_DEPS=1
-
-set MY_CONDA_ENV_FILE=environments\py-%PY_VER%-win-64.conda.lock.yml
-if not exist %MY_CONDA_ENV_FILE% (
- echo "** ERROR: Could not find the conda environment specification file '%MY_CONDA_ENV_FILE%' **"
- pause
- exit /B 1
-)
-
-call "!MY_CONDA!" activate base ^
- && call "!MY_CONDA!" env create -y --solver libmamba -n %ENV_NAME% --file %MY_CONDA_ENV_FILE% ^
- && call "!MY_CONDA!" run -n %ENV_NAME% pip install !EXTRA_PIP_INSTALL_OPTIONS! .
-
-if !errorlevel! neq 0 (
- echo "** ERROR: Installation failed **"
- pause
- exit /B !errorlevel!
-)
-
-pause
-cmd /k "!MY_CONDA!" activate %ENV_NAME%
diff --git a/install_in_analyst.bat b/install_in_analyst.bat
deleted file mode 100644
index d1ac3ae..0000000
--- a/install_in_analyst.bat
+++ /dev/null
@@ -1,31 +0,0 @@
-:: Creates a dedicated environment for using this package under the Python environment location
-:: used by Geoscience Analyst.
-:: Assumes Analyst is installed under "%ProgramFiles%\Mira Geoscience\Geoscience ANALYST".
-::
-:: Usage: install_in_analyst.bat [-e] [--conda default] [--name ]
-:: - To install for regular conda, call with argument: --conda default
-:: - To specify a different environment name, call with argument: --name
-::
-:: Use the optional -e argument (in first position) to install in editable mode. In that case, any
-:: change in the source code will be immediately reflected at execution, and the source folder
-:: must not be moved or deleted after installation.
-
-
-@echo off
-setlocal EnableDelayedExpansion
-
-set "MIRA_CMD_RUNNER_DIR=%ProgramFiles%\Mira Geoscience\Geoscience ANALYST\CmdRunner"
-set curdir=%~dp0
-
-set EXTRA_PIP_INSTALL_OPTIONS =
-
-:: if provided and first arg equals "-e", install with pip editable mode
-if "%1" == "-e" (
- set EXTRA_PIP_INSTALL_OPTIONS=-e
- shift
-)
-
-"%MIRA_CMD_RUNNER_DIR%\MambaEnvRunner.exe" --name grid-apps --install "%curdir%environments\py-3.10-win-64.conda.lock.yml" ^
- --run "pip install !EXTRA_PIP_INSTALL_OPTIONS! ." %1 %2 %3 %4 %5 %6 %7 %8 %9
-
-pause
diff --git a/pixi.lock b/pixi.lock
new file mode 100644
index 0000000..74e4589
--- /dev/null
+++ b/pixi.lock
@@ -0,0 +1,5225 @@
+version: 6
+environments:
+ default:
+ channels:
+ - url: https://repo.prefix.dev/conda-forge/
+ indexes:
+ - https://pypi.org/simple
+ packages:
+ linux-64:
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2
+ - conda: https://repo.prefix.dev/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/astroid-3.3.11-py310hff52083_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/asttokens-3.0.0-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/bzip2-1.0.8-hda65f42_8.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/c-ares-1.34.5-hb9d3cd8_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.8.3-hbd8a1cb_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2
+ - conda: https://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2
+ - conda: https://repo.prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.10.6-py310h3406613_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/decorator-5.2.1-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/discretize-0.11.3-py310ha2bacc8_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/executing-2.2.1-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/freetype-2.14.1-ha770c72_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/h5py-3.14.0-nompi_py310h4aa865e_101.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/hdf5-1.14.6-nompi_h6e4c0c1_103.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/ipython-8.37.0-pyh8f84b5b_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/keyutils-1.6.3-hb9d3cd8_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/lcms2-2.17-h717163a_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.44-h1423503_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/lerc-4.0.0-h0aef613_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libaec-1.1.4-h3f801dc_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libblas-3.9.0-35_h4a7cf45_openblas.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libcblas-3.9.0-35_h0358290_openblas.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libcurl-8.14.1-h332b0f4_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libdeflate-1.24-h86f0d12_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libev-4.33-hd590300_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libexpat-2.7.1-hecca717_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libffi-3.4.6-h2dba641_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libfreetype-2.14.1-ha770c72_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libfreetype6-2.14.1-h73754d4_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libgcc-15.1.0-h767d61c_5.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libgcc-ng-15.1.0-h69a702a_5.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libgfortran-15.1.0-h69a702a_5.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libgfortran5-15.1.0-hcea5267_5.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libgomp-15.1.0-h767d61c_5.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libjpeg-turbo-3.1.0-hb9d3cd8_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/liblapack-3.9.0-35_h47877c9_openblas.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libnghttp2-1.67.0-had1ee68_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libnsl-2.0.1-hb9d3cd8_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libopenblas-0.3.30-pthreads_h94d23a6_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libpng-1.6.50-h421ea60_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.50.4-h0c1763c_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libssh2-1.11.1-hcf80075_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-15.1.0-h8f9b012_5.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-15.1.0-h4852527_5.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libtiff-4.7.0-h8261f1e_6.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libuuid-2.41.1-he9a06e4_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libwebp-base-1.6.0-hd42ef1d_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/numpy-1.26.4-py310hb13e2d6_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/openjpeg-2.5.3-h55fea9a_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/openssl-3.5.2-h26f9b46_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/parso-0.8.5-pyhcf101f3_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pickleshare-0.7.5-pyhd8ed1ab_1004.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/pillow-10.3.0-py310hebfe307_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.4.0-pyhcf101f3_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/prompt-toolkit-3.0.52-pyha770c72_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/ptyprocess-0.7.0-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.9-pyh3cfb1c2_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/pydantic-core-2.33.2-py310hbcd0ec0_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pylint-3.3.8-pyhe01879c_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pytest-8.4.2-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-7.0.0-pyhcf101f3_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/python-3.10.18-hd6af730_0_cpython.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/python_abi-3.10-8_cp310.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/pyyaml-6.0.2-py310h89163eb_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/scipy-1.14.1-py310hfcf56fc_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_hd72426e_102.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/tomli-2.2.1-pyhe01879c_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.3-pyha770c72_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.1-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/wcwidth-0.2.13-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxau-1.0.12-hb9d3cd8_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb9d3cd8_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/yaml-0.2.5-h280c20c_3.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb8e6e7a_2.conda
+ - pypi: git+https://github.com/MiraGeoscience/geoapps-utils.git?rev=develop#a6627f0a6e663e9c3f0e9874f401a34ab8990488
+ - pypi: git+https://github.com/MiraGeoscience/geoh5py.git?rev=develop#8f4cb4c0ebfb6ce25b3be6c83746d184f47a5f67
+ - pypi: ./
+ win-64:
+ - conda: https://repo.prefix.dev/conda-forge/win-64/_openmp_mutex-4.5-2_gnu.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/astroid-3.3.11-py310h5588dad_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/asttokens-3.0.0-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/bzip2-1.0.8-h0ad9c76_8.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.8.3-h4c7d964_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2
+ - conda: https://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2
+ - conda: https://repo.prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/coverage-7.10.6-py310hdb0e946_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/decorator-5.2.1-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/discretize-0.11.3-py310h3e8ed56_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/executing-2.2.1-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/freetype-2.14.1-h57928b3_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/h5py-3.14.0-nompi_py310hb7e4da9_101.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/hdf5-1.14.6-nompi_he30205f_103.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/icu-75.1-he0c23c2_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/ipython-8.37.0-pyha7b4d00_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/krb5-1.21.3-hdf4eb48_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/lcms2-2.17-hbcf6048_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/lerc-4.0.0-h6470a55_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libaec-1.1.4-h20038f6_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libblas-3.9.0-35_h5709861_mkl.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libcblas-3.9.0-35_h2a3cdd5_mkl.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libcurl-8.14.1-h88aaa65_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libdeflate-1.24-h76ddb4d_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libexpat-2.7.1-hac47afa_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libffi-3.4.6-h537db12_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libfreetype-2.14.1-h57928b3_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libfreetype6-2.14.1-hdbac1cb_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libgcc-15.1.0-h1383e82_5.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libgomp-15.1.0-h1383e82_5.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libhwloc-2.12.1-default_h64bd3f2_1002.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libiconv-1.18-hc1393d2_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libjpeg-turbo-3.1.0-h2466b09_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/liblapack-3.9.0-35_hf9ab0e9_mkl.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/liblzma-5.8.1-h2466b09_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libpng-1.6.50-h7351971_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.50.4-hf5d6505_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libssh2-1.11.1-h9aa295b_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libtiff-4.7.0-h550210a_6.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libwebp-base-1.6.0-h4d5522a_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h57928b3_9.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libxcb-1.17.0-h0e4246c_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libxml2-16-2.15.0-h06f855e_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libxml2-2.15.0-ha29bfb0_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-20.1.8-hfa2b4ca_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/mkl-2024.2.2-h57928b3_16.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/numpy-1.26.4-py310hf667824_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/openjpeg-2.5.3-h24db6dd_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/openssl-3.5.2-h725018a_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/parso-0.8.5-pyhcf101f3_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pickleshare-0.7.5-pyhd8ed1ab_1004.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/pillow-10.3.0-py310h3e38d90_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.4.0-pyhcf101f3_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/prompt-toolkit-3.0.52-pyha770c72_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/pthread-stubs-0.4-h0e40799_1002.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.9-pyh3cfb1c2_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/pydantic-core-2.33.2-py310hed05c55_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pylint-3.3.8-pyhe01879c_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pytest-8.4.2-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-7.0.0-pyhcf101f3_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/python-3.10.18-h8c5b53a_0_cpython.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/python_abi-3.10-8_cp310.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/pyyaml-6.0.2-py310h38315fa_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/scipy-1.14.1-py310hbd0dde3_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/tbb-2021.13.0-h18a62a1_3.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/tk-8.6.13-h2c6b04d_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/tomli-2.2.1-pyhe01879c_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.3-pyha770c72_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.1-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/ucrt-10.0.26100.0-h57928b3_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/vc-14.3-h41ae7f8_31.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/vc14_runtime-14.44.35208-h818238b_31.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/vcomp14-14.44.35208-h818238b_31.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/wcwidth-0.2.13-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/xorg-libxau-1.0.12-h0e40799_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/xorg-libxdmcp-1.1.5-h0e40799_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/yaml-0.2.5-h6a83c73_3.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/zstd-1.5.7-hbeecb71_2.conda
+ - pypi: git+https://github.com/MiraGeoscience/geoapps-utils.git?rev=develop#a6627f0a6e663e9c3f0e9874f401a34ab8990488
+ - pypi: git+https://github.com/MiraGeoscience/geoh5py.git?rev=develop#8f4cb4c0ebfb6ce25b3be6c83746d184f47a5f67
+ - pypi: ./
+ docs:
+ channels:
+ - url: https://repo.prefix.dev/conda-forge/
+ packages:
+ linux-64:
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2
+ - conda: https://repo.prefix.dev/conda-forge/noarch/alabaster-1.0.0-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/attrs-25.3.0-pyh71513ae_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/babel-2.17.0-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/beautifulsoup4-4.13.5-pyha770c72_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/bleach-6.2.0-pyh29332c3_4.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/bleach-with-css-6.2.0-h82add2a_4.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/brotli-python-1.1.0-py310hea6c23e_4.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/bzip2-1.0.8-hda65f42_8.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.8.3-hbd8a1cb_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.8.3-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/cffi-1.17.1-py310h34a4b09_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.3-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2
+ - conda: https://repo.prefix.dev/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/h2-4.3.0-pyhcf101f3_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2
+ - conda: https://repo.prefix.dev/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/jsonschema-4.25.1-pyhe01879c_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/jsonschema-specifications-2025.9.1-pyhcf101f3_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/jupyter_core-5.8.1-pyh31011fe_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/jupyterlab_pygments-0.3.0-pyhd8ed1ab_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/keyutils-1.6.3-hb9d3cd8_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/latexcodec-2.0.1-pyh9f0ad1d_0.tar.bz2
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.44-h1423503_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libexpat-2.7.1-hecca717_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libffi-3.4.6-h2dba641_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libgcc-15.1.0-h767d61c_5.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libgcc-ng-15.1.0-h69a702a_5.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libgomp-15.1.0-h767d61c_5.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libnsl-2.0.1-hb9d3cd8_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libsodium-1.0.20-h4ab18f5_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.50.4-h0c1763c_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-15.1.0-h8f9b012_5.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-15.1.0-h4852527_5.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libuuid-2.41.1-he9a06e4_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/markupsafe-3.0.2-py310h89163eb_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/mistune-3.1.4-pyhcf101f3_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/nbclient-0.10.2-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/nbconvert-7.16.6-hb482800_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/nbconvert-core-7.16.6-pyh29332c3_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/nbconvert-pandoc-7.16.6-hed9df3c_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/nbsphinx-0.9.7-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/nbstripout-0.8.1-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/numpydoc-1.9.0-pyhe01879c_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/openssl-3.5.2-h26f9b46_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/pandoc-3.8-ha770c72_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2
+ - conda: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.4.0-pyhcf101f3_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pybtex-0.25.1-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/pybtex-docutils-1.0.3-py310hff52083_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pysocks-1.7.1-pyha55dd90_7.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/python-3.10.18-hd6af730_0_cpython.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/python-fastjsonschema-2.21.2-pyhe01879c_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/python_abi-3.10-8_cp310.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/pyyaml-6.0.2-py310h89163eb_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/pyzmq-27.1.0-py310h4f33d48_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/referencing-0.36.2-pyh29332c3_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/requests-2.32.5-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/rpds-py-0.27.1-py310hd8f68c5_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/snowballstemmer-3.0.1-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.8-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/sphinx-8.1.3-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/sphinx-autodoc-typehints-3.0.1-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/sphinx-issues-5.0.1-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/sphinx-rtd-theme-3.0.2-hd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/sphinx_rtd_theme-3.0.2-pyha770c72_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-bibtex-2.6.5-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-googleanalytics-0.5-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-jquery-4.1-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/tinycss2-1.4.0-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_hd72426e_102.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/tomli-2.2.1-pyhe01879c_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/tornado-6.5.2-py310h7c4b9e2_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/urllib3-2.5.0-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_3.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/yaml-0.2.5-h280c20c_3.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/zeromq-4.3.5-h387f397_9.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/zipp-3.23.0-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/zstandard-0.25.0-py310h139afa4_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb8e6e7a_2.conda
+ win-64:
+ - conda: https://repo.prefix.dev/conda-forge/noarch/alabaster-1.0.0-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/attrs-25.3.0-pyh71513ae_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/babel-2.17.0-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/beautifulsoup4-4.13.5-pyha770c72_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/bleach-6.2.0-pyh29332c3_4.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/bleach-with-css-6.2.0-h82add2a_4.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/brotli-python-1.1.0-py310h73ae2b4_4.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/bzip2-1.0.8-h0ad9c76_8.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.8.3-h4c7d964_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.8.3-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/cffi-1.17.1-py310h29418f3_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.3-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/cpython-3.10.18-py310hd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2
+ - conda: https://repo.prefix.dev/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/h2-4.3.0-pyhcf101f3_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2
+ - conda: https://repo.prefix.dev/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/jsonschema-4.25.1-pyhe01879c_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/jsonschema-specifications-2025.9.1-pyhcf101f3_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/jupyter_core-5.8.1-pyh5737063_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/jupyterlab_pygments-0.3.0-pyhd8ed1ab_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/krb5-1.21.3-hdf4eb48_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/latexcodec-2.0.1-pyh9f0ad1d_0.tar.bz2
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libexpat-2.7.1-hac47afa_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libffi-3.4.6-h537db12_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/liblzma-5.8.1-h2466b09_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libsodium-1.0.20-hc70643c_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.50.4-hf5d6505_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/markupsafe-3.0.2-py310h38315fa_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/mistune-3.1.4-pyhcf101f3_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/nbclient-0.10.2-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/nbconvert-7.16.6-hb482800_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/nbconvert-core-7.16.6-pyh29332c3_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/nbconvert-pandoc-7.16.6-hed9df3c_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/nbsphinx-0.9.7-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/nbstripout-0.8.1-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/numpydoc-1.9.0-pyhe01879c_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/openssl-3.5.2-h725018a_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/pandoc-3.8-h57928b3_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2
+ - conda: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.4.0-pyhcf101f3_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pybtex-0.25.1-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/pybtex-docutils-1.0.3-py310h5588dad_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pysocks-1.7.1-pyh09c184e_7.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/python-3.10.18-h8c5b53a_0_cpython.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/python-fastjsonschema-2.21.2-pyhe01879c_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/python_abi-3.10-8_cp310.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/pywin32-311-py310h282bd7d_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/pyyaml-6.0.2-py310h38315fa_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/pyzmq-27.1.0-py310h535538e_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/referencing-0.36.2-pyh29332c3_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/requests-2.32.5-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/rpds-py-0.27.1-py310h034784e_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/snowballstemmer-3.0.1-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.8-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/sphinx-8.1.3-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/sphinx-autodoc-typehints-3.0.1-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/sphinx-issues-5.0.1-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/sphinx-rtd-theme-3.0.2-hd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/sphinx_rtd_theme-3.0.2-pyha770c72_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-bibtex-2.6.5-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-googleanalytics-0.5-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-jquery-4.1-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/tinycss2-1.4.0-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/tk-8.6.13-h2c6b04d_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/tomli-2.2.1-pyhe01879c_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/tornado-6.5.2-py310h29418f3_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/ucrt-10.0.26100.0-h57928b3_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/urllib3-2.5.0-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/vc-14.3-h41ae7f8_31.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/vc14_runtime-14.44.35208-h818238b_31.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/vcomp14-14.44.35208-h818238b_31.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_3.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/win_inet_pton-1.1.0-pyh7428d3b_8.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/yaml-0.2.5-h6a83c73_3.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/zeromq-4.3.5-h5bddc39_9.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/zipp-3.23.0-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/zstandard-0.25.0-py310h1637853_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/zstd-1.5.7-hbeecb71_2.conda
+ mirageo-local:
+ channels:
+ - url: https://repo.prefix.dev/conda-forge/
+ indexes:
+ - https://pypi.org/simple
+ packages:
+ linux-64:
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2
+ - conda: https://repo.prefix.dev/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/astroid-3.3.11-py310hff52083_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/bzip2-1.0.8-hda65f42_8.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/c-ares-1.34.5-hb9d3cd8_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.8.3-hbd8a1cb_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2
+ - conda: https://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2
+ - conda: https://repo.prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/discretize-0.11.3-py310ha2bacc8_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/freetype-2.14.1-ha770c72_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/h5py-3.14.0-nompi_py310h4aa865e_101.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/hdf5-1.14.6-nompi_h6e4c0c1_103.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/keyutils-1.6.3-hb9d3cd8_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/lcms2-2.17-h717163a_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.44-h1423503_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/lerc-4.0.0-h0aef613_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libaec-1.1.4-h3f801dc_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libblas-3.9.0-35_h4a7cf45_openblas.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libcblas-3.9.0-35_h0358290_openblas.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libcurl-8.14.1-h332b0f4_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libdeflate-1.24-h86f0d12_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libev-4.33-hd590300_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libexpat-2.7.1-hecca717_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libffi-3.4.6-h2dba641_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libfreetype-2.14.1-ha770c72_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libfreetype6-2.14.1-h73754d4_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libgcc-15.1.0-h767d61c_5.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libgcc-ng-15.1.0-h69a702a_5.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libgfortran-15.1.0-h69a702a_5.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libgfortran5-15.1.0-hcea5267_5.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libgomp-15.1.0-h767d61c_5.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libjpeg-turbo-3.1.0-hb9d3cd8_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/liblapack-3.9.0-35_h47877c9_openblas.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libnghttp2-1.67.0-had1ee68_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libnsl-2.0.1-hb9d3cd8_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libopenblas-0.3.30-pthreads_h94d23a6_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libpng-1.6.50-h421ea60_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.50.4-h0c1763c_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libssh2-1.11.1-hcf80075_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-15.1.0-h8f9b012_5.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-15.1.0-h4852527_5.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libtiff-4.7.0-h8261f1e_6.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libuuid-2.41.1-he9a06e4_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libwebp-base-1.6.0-hd42ef1d_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/numpy-1.26.4-py310hb13e2d6_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/openjpeg-2.5.3-h55fea9a_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/openssl-3.5.2-h26f9b46_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/pillow-10.3.0-py310hebfe307_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.4.0-pyhcf101f3_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.9-pyh3cfb1c2_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/pydantic-core-2.33.2-py310hbcd0ec0_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pylint-3.3.8-pyhe01879c_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/python-3.10.18-hd6af730_0_cpython.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/python_abi-3.10-8_cp310.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/scipy-1.14.1-py310hfcf56fc_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_hd72426e_102.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/tomli-2.2.1-pyhe01879c_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.3-pyha770c72_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.1-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxau-1.0.12-hb9d3cd8_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb9d3cd8_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb8e6e7a_2.conda
+ - pypi: git+https://github.com/MiraGeoscience/geoapps-utils.git?rev=develop#a6627f0a6e663e9c3f0e9874f401a34ab8990488
+ - pypi: git+https://github.com/MiraGeoscience/geoh5py.git?rev=develop#8f4cb4c0ebfb6ce25b3be6c83746d184f47a5f67
+ - pypi: ./
+ win-64:
+ - conda: https://repo.prefix.dev/conda-forge/win-64/_openmp_mutex-4.5-2_gnu.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/astroid-3.3.11-py310h5588dad_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/bzip2-1.0.8-h0ad9c76_8.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.8.3-h4c7d964_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2
+ - conda: https://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2
+ - conda: https://repo.prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/discretize-0.11.3-py310h3e8ed56_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/freetype-2.14.1-h57928b3_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/h5py-3.14.0-nompi_py310hb7e4da9_101.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/hdf5-1.14.6-nompi_he30205f_103.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/icu-75.1-he0c23c2_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/krb5-1.21.3-hdf4eb48_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/lcms2-2.17-hbcf6048_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/lerc-4.0.0-h6470a55_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libaec-1.1.4-h20038f6_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libblas-3.9.0-35_h5709861_mkl.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libcblas-3.9.0-35_h2a3cdd5_mkl.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libcurl-8.14.1-h88aaa65_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libdeflate-1.24-h76ddb4d_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libexpat-2.7.1-hac47afa_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libffi-3.4.6-h537db12_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libfreetype-2.14.1-h57928b3_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libfreetype6-2.14.1-hdbac1cb_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libgcc-15.1.0-h1383e82_5.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libgomp-15.1.0-h1383e82_5.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libhwloc-2.12.1-default_h64bd3f2_1002.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libiconv-1.18-hc1393d2_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libjpeg-turbo-3.1.0-h2466b09_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/liblapack-3.9.0-35_hf9ab0e9_mkl.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/liblzma-5.8.1-h2466b09_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libpng-1.6.50-h7351971_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.50.4-hf5d6505_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libssh2-1.11.1-h9aa295b_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libtiff-4.7.0-h550210a_6.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libwebp-base-1.6.0-h4d5522a_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h57928b3_9.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libxcb-1.17.0-h0e4246c_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libxml2-16-2.15.0-h06f855e_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libxml2-2.15.0-ha29bfb0_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-20.1.8-hfa2b4ca_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/mkl-2024.2.2-h57928b3_16.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/numpy-1.26.4-py310hf667824_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/openjpeg-2.5.3-h24db6dd_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/openssl-3.5.2-h725018a_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/pillow-10.3.0-py310h3e38d90_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.4.0-pyhcf101f3_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/pthread-stubs-0.4-h0e40799_1002.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.9-pyh3cfb1c2_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/pydantic-core-2.33.2-py310hed05c55_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pylint-3.3.8-pyhe01879c_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/python-3.10.18-h8c5b53a_0_cpython.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/python_abi-3.10-8_cp310.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/scipy-1.14.1-py310hbd0dde3_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/tbb-2021.13.0-h18a62a1_3.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/tk-8.6.13-h2c6b04d_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/tomli-2.2.1-pyhe01879c_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.3-pyha770c72_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.1-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/ucrt-10.0.26100.0-h57928b3_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/vc-14.3-h41ae7f8_31.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/vc14_runtime-14.44.35208-h818238b_31.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/vcomp14-14.44.35208-h818238b_31.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/xorg-libxau-1.0.12-h0e40799_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/xorg-libxdmcp-1.1.5-h0e40799_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/zstd-1.5.7-hbeecb71_2.conda
+ - pypi: git+https://github.com/MiraGeoscience/geoapps-utils.git?rev=develop#a6627f0a6e663e9c3f0e9874f401a34ab8990488
+ - pypi: git+https://github.com/MiraGeoscience/geoh5py.git?rev=develop#8f4cb4c0ebfb6ce25b3be6c83746d184f47a5f67
+ - pypi: ./
+ py310:
+ channels:
+ - url: https://repo.prefix.dev/conda-forge/
+ indexes:
+ - https://pypi.org/simple
+ packages:
+ linux-64:
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2
+ - conda: https://repo.prefix.dev/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/astroid-3.3.11-py310hff52083_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/bzip2-1.0.8-hda65f42_8.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/c-ares-1.34.5-hb9d3cd8_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.8.3-hbd8a1cb_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2
+ - conda: https://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2
+ - conda: https://repo.prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.10.6-py310h3406613_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/discretize-0.11.3-py310ha2bacc8_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/freetype-2.14.1-ha770c72_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/h5py-3.14.0-nompi_py310h4aa865e_101.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/hdf5-1.14.6-nompi_h6e4c0c1_103.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/keyutils-1.6.3-hb9d3cd8_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/lcms2-2.17-h717163a_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.44-h1423503_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/lerc-4.0.0-h0aef613_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libaec-1.1.4-h3f801dc_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libblas-3.9.0-35_h4a7cf45_openblas.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libcblas-3.9.0-35_h0358290_openblas.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libcurl-8.14.1-h332b0f4_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libdeflate-1.24-h86f0d12_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libev-4.33-hd590300_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libexpat-2.7.1-hecca717_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libffi-3.4.6-h2dba641_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libfreetype-2.14.1-ha770c72_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libfreetype6-2.14.1-h73754d4_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libgcc-15.1.0-h767d61c_5.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libgcc-ng-15.1.0-h69a702a_5.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libgfortran-15.1.0-h69a702a_5.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libgfortran5-15.1.0-hcea5267_5.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libgomp-15.1.0-h767d61c_5.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libjpeg-turbo-3.1.0-hb9d3cd8_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/liblapack-3.9.0-35_h47877c9_openblas.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libnghttp2-1.67.0-had1ee68_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libnsl-2.0.1-hb9d3cd8_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libopenblas-0.3.30-pthreads_h94d23a6_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libpng-1.6.50-h421ea60_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.50.4-h0c1763c_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libssh2-1.11.1-hcf80075_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-15.1.0-h8f9b012_5.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-15.1.0-h4852527_5.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libtiff-4.7.0-h8261f1e_6.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libuuid-2.41.1-he9a06e4_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libwebp-base-1.6.0-hd42ef1d_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/numpy-1.26.4-py310hb13e2d6_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/openjpeg-2.5.3-h55fea9a_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/openssl-3.5.2-h26f9b46_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/pillow-10.3.0-py310hebfe307_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.4.0-pyhcf101f3_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.9-pyh3cfb1c2_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/pydantic-core-2.33.2-py310hbcd0ec0_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pylint-3.3.8-pyhe01879c_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pytest-8.4.2-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-7.0.0-pyhcf101f3_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/python-3.10.18-hd6af730_0_cpython.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/python_abi-3.10-8_cp310.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/pyyaml-6.0.2-py310h89163eb_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/scipy-1.14.1-py310hfcf56fc_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_hd72426e_102.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/tomli-2.2.1-pyhe01879c_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.3-pyha770c72_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.1-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxau-1.0.12-hb9d3cd8_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb9d3cd8_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/yaml-0.2.5-h280c20c_3.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb8e6e7a_2.conda
+ - pypi: git+https://github.com/MiraGeoscience/geoapps-utils.git?rev=develop#a6627f0a6e663e9c3f0e9874f401a34ab8990488
+ - pypi: git+https://github.com/MiraGeoscience/geoh5py.git?rev=develop#8f4cb4c0ebfb6ce25b3be6c83746d184f47a5f67
+ - pypi: ./
+ win-64:
+ - conda: https://repo.prefix.dev/conda-forge/win-64/_openmp_mutex-4.5-2_gnu.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/astroid-3.3.11-py310h5588dad_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/bzip2-1.0.8-h0ad9c76_8.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.8.3-h4c7d964_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2
+ - conda: https://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2
+ - conda: https://repo.prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/coverage-7.10.6-py310hdb0e946_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/discretize-0.11.3-py310h3e8ed56_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/freetype-2.14.1-h57928b3_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/h5py-3.14.0-nompi_py310hb7e4da9_101.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/hdf5-1.14.6-nompi_he30205f_103.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/icu-75.1-he0c23c2_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/krb5-1.21.3-hdf4eb48_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/lcms2-2.17-hbcf6048_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/lerc-4.0.0-h6470a55_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libaec-1.1.4-h20038f6_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libblas-3.9.0-35_h5709861_mkl.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libcblas-3.9.0-35_h2a3cdd5_mkl.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libcurl-8.14.1-h88aaa65_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libdeflate-1.24-h76ddb4d_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libexpat-2.7.1-hac47afa_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libffi-3.4.6-h537db12_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libfreetype-2.14.1-h57928b3_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libfreetype6-2.14.1-hdbac1cb_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libgcc-15.1.0-h1383e82_5.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libgomp-15.1.0-h1383e82_5.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libhwloc-2.12.1-default_h64bd3f2_1002.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libiconv-1.18-hc1393d2_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libjpeg-turbo-3.1.0-h2466b09_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/liblapack-3.9.0-35_hf9ab0e9_mkl.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/liblzma-5.8.1-h2466b09_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libpng-1.6.50-h7351971_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.50.4-hf5d6505_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libssh2-1.11.1-h9aa295b_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libtiff-4.7.0-h550210a_6.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libwebp-base-1.6.0-h4d5522a_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h57928b3_9.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libxcb-1.17.0-h0e4246c_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libxml2-16-2.15.0-h06f855e_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libxml2-2.15.0-ha29bfb0_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-20.1.8-hfa2b4ca_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/mkl-2024.2.2-h57928b3_16.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/numpy-1.26.4-py310hf667824_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/openjpeg-2.5.3-h24db6dd_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/openssl-3.5.2-h725018a_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/pillow-10.3.0-py310h3e38d90_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.4.0-pyhcf101f3_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/pthread-stubs-0.4-h0e40799_1002.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.9-pyh3cfb1c2_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/pydantic-core-2.33.2-py310hed05c55_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pylint-3.3.8-pyhe01879c_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pytest-8.4.2-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-7.0.0-pyhcf101f3_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/python-3.10.18-h8c5b53a_0_cpython.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/python_abi-3.10-8_cp310.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/pyyaml-6.0.2-py310h38315fa_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/scipy-1.14.1-py310hbd0dde3_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/tbb-2021.13.0-h18a62a1_3.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/tk-8.6.13-h2c6b04d_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/tomli-2.2.1-pyhe01879c_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.3-pyha770c72_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.1-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/ucrt-10.0.26100.0-h57928b3_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/vc-14.3-h41ae7f8_31.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/vc14_runtime-14.44.35208-h818238b_31.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/vcomp14-14.44.35208-h818238b_31.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/xorg-libxau-1.0.12-h0e40799_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/xorg-libxdmcp-1.1.5-h0e40799_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/yaml-0.2.5-h6a83c73_3.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/zstd-1.5.7-hbeecb71_2.conda
+ - pypi: git+https://github.com/MiraGeoscience/geoapps-utils.git?rev=develop#a6627f0a6e663e9c3f0e9874f401a34ab8990488
+ - pypi: git+https://github.com/MiraGeoscience/geoh5py.git?rev=develop#8f4cb4c0ebfb6ce25b3be6c83746d184f47a5f67
+ - pypi: ./
+ py311:
+ channels:
+ - url: https://repo.prefix.dev/conda-forge/
+ indexes:
+ - https://pypi.org/simple
+ packages:
+ linux-64:
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2
+ - conda: https://repo.prefix.dev/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/astroid-3.3.11-py311h38be061_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/bzip2-1.0.8-hda65f42_8.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/c-ares-1.34.5-hb9d3cd8_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.8.3-hbd8a1cb_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2
+ - conda: https://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2
+ - conda: https://repo.prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.10.6-py311h3778330_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/discretize-0.11.3-py311h5b7b71f_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/freetype-2.14.1-ha770c72_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/h5py-3.14.0-nompi_py311h0b2f468_101.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/hdf5-1.14.6-nompi_h6e4c0c1_103.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/keyutils-1.6.3-hb9d3cd8_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/lcms2-2.17-h717163a_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.44-h1423503_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/lerc-4.0.0-h0aef613_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libaec-1.1.4-h3f801dc_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libblas-3.9.0-35_h4a7cf45_openblas.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libcblas-3.9.0-35_h0358290_openblas.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libcurl-8.14.1-h332b0f4_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libdeflate-1.24-h86f0d12_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libev-4.33-hd590300_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libexpat-2.7.1-hecca717_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libffi-3.4.6-h2dba641_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libfreetype-2.14.1-ha770c72_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libfreetype6-2.14.1-h73754d4_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libgcc-15.1.0-h767d61c_5.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libgcc-ng-15.1.0-h69a702a_5.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libgfortran-15.1.0-h69a702a_5.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libgfortran5-15.1.0-hcea5267_5.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libgomp-15.1.0-h767d61c_5.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libjpeg-turbo-3.1.0-hb9d3cd8_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/liblapack-3.9.0-35_h47877c9_openblas.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libnghttp2-1.67.0-had1ee68_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libnsl-2.0.1-hb9d3cd8_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libopenblas-0.3.30-pthreads_h94d23a6_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libpng-1.6.50-h421ea60_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.50.4-h0c1763c_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libssh2-1.11.1-hcf80075_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-15.1.0-h8f9b012_5.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-15.1.0-h4852527_5.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libtiff-4.7.0-h8261f1e_6.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libuuid-2.41.1-he9a06e4_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libwebp-base-1.6.0-hd42ef1d_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/numpy-1.26.4-py311h64a7726_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/openjpeg-2.5.3-h55fea9a_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/openssl-3.5.2-h26f9b46_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/pillow-10.3.0-py311h82a398c_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.4.0-pyhcf101f3_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.9-pyh3cfb1c2_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/pydantic-core-2.33.2-py311hdae7d1d_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pylint-3.3.8-pyhe01879c_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pytest-8.4.2-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-7.0.0-pyhcf101f3_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/python-3.11.13-h9e4cc4f_0_cpython.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/python_abi-3.11-8_cp311.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/pyyaml-6.0.2-py311h2dc5d0c_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/scipy-1.14.1-py311he9a78e4_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_hd72426e_102.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/tomli-2.2.1-pyhe01879c_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.3-pyha770c72_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.1-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxau-1.0.12-hb9d3cd8_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb9d3cd8_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/yaml-0.2.5-h280c20c_3.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb8e6e7a_2.conda
+ - pypi: git+https://github.com/MiraGeoscience/geoapps-utils.git?rev=develop#a6627f0a6e663e9c3f0e9874f401a34ab8990488
+ - pypi: git+https://github.com/MiraGeoscience/geoh5py.git?rev=develop#8f4cb4c0ebfb6ce25b3be6c83746d184f47a5f67
+ - pypi: ./
+ win-64:
+ - conda: https://repo.prefix.dev/conda-forge/win-64/_openmp_mutex-4.5-2_gnu.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/astroid-3.3.11-py311h1ea47a8_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/bzip2-1.0.8-h0ad9c76_8.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.8.3-h4c7d964_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2
+ - conda: https://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2
+ - conda: https://repo.prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/coverage-7.10.6-py311h3f79411_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/discretize-0.11.3-py311h9b10771_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/freetype-2.14.1-h57928b3_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/h5py-3.14.0-nompi_py311hc40ba4b_101.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/hdf5-1.14.6-nompi_he30205f_103.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/icu-75.1-he0c23c2_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/krb5-1.21.3-hdf4eb48_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/lcms2-2.17-hbcf6048_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/lerc-4.0.0-h6470a55_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libaec-1.1.4-h20038f6_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libblas-3.9.0-35_h5709861_mkl.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libcblas-3.9.0-35_h2a3cdd5_mkl.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libcurl-8.14.1-h88aaa65_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libdeflate-1.24-h76ddb4d_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libexpat-2.7.1-hac47afa_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libffi-3.4.6-h537db12_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libfreetype-2.14.1-h57928b3_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libfreetype6-2.14.1-hdbac1cb_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libgcc-15.1.0-h1383e82_5.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libgomp-15.1.0-h1383e82_5.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libhwloc-2.12.1-default_h64bd3f2_1002.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libiconv-1.18-hc1393d2_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libjpeg-turbo-3.1.0-h2466b09_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/liblapack-3.9.0-35_hf9ab0e9_mkl.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/liblzma-5.8.1-h2466b09_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libpng-1.6.50-h7351971_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.50.4-hf5d6505_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libssh2-1.11.1-h9aa295b_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libtiff-4.7.0-h550210a_6.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libwebp-base-1.6.0-h4d5522a_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h57928b3_9.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libxcb-1.17.0-h0e4246c_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libxml2-16-2.15.0-h06f855e_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libxml2-2.15.0-ha29bfb0_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-20.1.8-hfa2b4ca_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/mkl-2024.2.2-h57928b3_16.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/numpy-1.26.4-py311h0b4df5a_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/openjpeg-2.5.3-h24db6dd_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/openssl-3.5.2-h725018a_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/pillow-10.3.0-py311h5592be9_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.4.0-pyhcf101f3_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/pthread-stubs-0.4-h0e40799_1002.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.9-pyh3cfb1c2_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/pydantic-core-2.33.2-py311hc4022dc_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pylint-3.3.8-pyhe01879c_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pytest-8.4.2-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-7.0.0-pyhcf101f3_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/python-3.11.13-h3f84c4b_0_cpython.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/python_abi-3.11-8_cp311.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/pyyaml-6.0.2-py311h5082efb_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/scipy-1.14.1-py311hf16d85f_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/tbb-2021.13.0-h18a62a1_3.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/tk-8.6.13-h2c6b04d_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/tomli-2.2.1-pyhe01879c_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.3-pyha770c72_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.1-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/ucrt-10.0.26100.0-h57928b3_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/vc-14.3-h41ae7f8_31.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/vc14_runtime-14.44.35208-h818238b_31.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/vcomp14-14.44.35208-h818238b_31.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/xorg-libxau-1.0.12-h0e40799_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/xorg-libxdmcp-1.1.5-h0e40799_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/yaml-0.2.5-h6a83c73_3.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/zstd-1.5.7-hbeecb71_2.conda
+ - pypi: git+https://github.com/MiraGeoscience/geoapps-utils.git?rev=develop#a6627f0a6e663e9c3f0e9874f401a34ab8990488
+ - pypi: git+https://github.com/MiraGeoscience/geoh5py.git?rev=develop#8f4cb4c0ebfb6ce25b3be6c83746d184f47a5f67
+ - pypi: ./
+ py312:
+ channels:
+ - url: https://repo.prefix.dev/conda-forge/
+ indexes:
+ - https://pypi.org/simple
+ packages:
+ linux-64:
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2
+ - conda: https://repo.prefix.dev/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/astroid-3.3.11-py312h7900ff3_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/bzip2-1.0.8-hda65f42_8.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/c-ares-1.34.5-hb9d3cd8_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.8.3-hbd8a1cb_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2
+ - conda: https://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2
+ - conda: https://repo.prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.10.6-py312h8a5da7c_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/discretize-0.11.3-py312hc39e661_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/freetype-2.14.1-ha770c72_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/h5py-3.14.0-nompi_py312ha4f8f14_101.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/hdf5-1.14.6-nompi_h6e4c0c1_103.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/keyutils-1.6.3-hb9d3cd8_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/lcms2-2.17-h717163a_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.44-h1423503_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/lerc-4.0.0-h0aef613_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libaec-1.1.4-h3f801dc_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libblas-3.9.0-35_h4a7cf45_openblas.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libcblas-3.9.0-35_h0358290_openblas.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libcurl-8.14.1-h332b0f4_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libdeflate-1.24-h86f0d12_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libev-4.33-hd590300_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libexpat-2.7.1-hecca717_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libffi-3.4.6-h2dba641_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libfreetype-2.14.1-ha770c72_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libfreetype6-2.14.1-h73754d4_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libgcc-15.1.0-h767d61c_5.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libgcc-ng-15.1.0-h69a702a_5.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libgfortran-15.1.0-h69a702a_5.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libgfortran5-15.1.0-hcea5267_5.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libgomp-15.1.0-h767d61c_5.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libjpeg-turbo-3.1.0-hb9d3cd8_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/liblapack-3.9.0-35_h47877c9_openblas.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libnghttp2-1.67.0-had1ee68_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libnsl-2.0.1-hb9d3cd8_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libopenblas-0.3.30-pthreads_h94d23a6_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libpng-1.6.50-h421ea60_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.50.4-h0c1763c_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libssh2-1.11.1-hcf80075_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-15.1.0-h8f9b012_5.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-15.1.0-h4852527_5.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libtiff-4.7.0-h8261f1e_6.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libuuid-2.41.1-he9a06e4_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libwebp-base-1.6.0-hd42ef1d_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/numpy-1.26.4-py312heda63a1_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/openjpeg-2.5.3-h55fea9a_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/openssl-3.5.2-h26f9b46_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/pillow-10.3.0-py312h287a98d_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.4.0-pyhcf101f3_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.9-pyh3cfb1c2_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/pydantic-core-2.33.2-py312h680f630_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pylint-3.3.8-pyhe01879c_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pytest-8.4.2-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-7.0.0-pyhcf101f3_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/python-3.12.11-h9e4cc4f_0_cpython.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/python_abi-3.12-8_cp312.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/pyyaml-6.0.2-py312h178313f_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/scipy-1.14.1-py312h62794b6_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_hd72426e_102.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/tomli-2.2.1-pyhe01879c_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.3-pyha770c72_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.1-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxau-1.0.12-hb9d3cd8_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb9d3cd8_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/yaml-0.2.5-h280c20c_3.conda
+ - conda: https://repo.prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb8e6e7a_2.conda
+ - pypi: git+https://github.com/MiraGeoscience/geoapps-utils.git?rev=develop#a6627f0a6e663e9c3f0e9874f401a34ab8990488
+ - pypi: git+https://github.com/MiraGeoscience/geoh5py.git?rev=develop#8f4cb4c0ebfb6ce25b3be6c83746d184f47a5f67
+ - pypi: ./
+ win-64:
+ - conda: https://repo.prefix.dev/conda-forge/win-64/_openmp_mutex-4.5-2_gnu.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/astroid-3.3.11-py312h2e8e312_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/bzip2-1.0.8-h0ad9c76_8.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.8.3-h4c7d964_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2
+ - conda: https://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2
+ - conda: https://repo.prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/coverage-7.10.6-py312h05f76fc_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/discretize-0.11.3-py312hbaa7e33_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/freetype-2.14.1-h57928b3_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/h5py-3.14.0-nompi_py312h03cd2ba_101.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/hdf5-1.14.6-nompi_he30205f_103.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/icu-75.1-he0c23c2_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/krb5-1.21.3-hdf4eb48_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/lcms2-2.17-hbcf6048_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/lerc-4.0.0-h6470a55_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libaec-1.1.4-h20038f6_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libblas-3.9.0-35_h5709861_mkl.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libcblas-3.9.0-35_h2a3cdd5_mkl.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libcurl-8.14.1-h88aaa65_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libdeflate-1.24-h76ddb4d_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libexpat-2.7.1-hac47afa_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libffi-3.4.6-h537db12_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libfreetype-2.14.1-h57928b3_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libfreetype6-2.14.1-hdbac1cb_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libgcc-15.1.0-h1383e82_5.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libgomp-15.1.0-h1383e82_5.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libhwloc-2.12.1-default_h64bd3f2_1002.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libiconv-1.18-hc1393d2_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libjpeg-turbo-3.1.0-h2466b09_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/liblapack-3.9.0-35_hf9ab0e9_mkl.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/liblzma-5.8.1-h2466b09_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libpng-1.6.50-h7351971_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.50.4-hf5d6505_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libssh2-1.11.1-h9aa295b_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libtiff-4.7.0-h550210a_6.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libwebp-base-1.6.0-h4d5522a_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h57928b3_9.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libxcb-1.17.0-h0e4246c_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libxml2-16-2.15.0-h06f855e_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libxml2-2.15.0-ha29bfb0_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-20.1.8-hfa2b4ca_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/mkl-2024.2.2-h57928b3_16.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/numpy-1.26.4-py312h8753938_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/openjpeg-2.5.3-h24db6dd_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/openssl-3.5.2-h725018a_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/pillow-10.3.0-py312h381445a_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.4.0-pyhcf101f3_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/pthread-stubs-0.4-h0e40799_1002.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.9-pyh3cfb1c2_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/pydantic-core-2.33.2-py312h8422cdd_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pylint-3.3.8-pyhe01879c_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pytest-8.4.2-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-7.0.0-pyhcf101f3_1.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/python-3.12.11-h3f84c4b_0_cpython.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/python_abi-3.12-8_cp312.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/pyyaml-6.0.2-py312h31fea79_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/scipy-1.14.1-py312h337df96_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/tbb-2021.13.0-h18a62a1_3.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/tk-8.6.13-h2c6b04d_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/tomli-2.2.1-pyhe01879c_2.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.3-pyha770c72_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.1-pyhd8ed1ab_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/ucrt-10.0.26100.0-h57928b3_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/vc-14.3-h41ae7f8_31.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/vc14_runtime-14.44.35208-h818238b_31.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/vcomp14-14.44.35208-h818238b_31.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/xorg-libxau-1.0.12-h0e40799_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/xorg-libxdmcp-1.1.5-h0e40799_0.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/yaml-0.2.5-h6a83c73_3.conda
+ - conda: https://repo.prefix.dev/conda-forge/win-64/zstd-1.5.7-hbeecb71_2.conda
+ - pypi: git+https://github.com/MiraGeoscience/geoapps-utils.git?rev=develop#a6627f0a6e663e9c3f0e9874f401a34ab8990488
+ - pypi: git+https://github.com/MiraGeoscience/geoh5py.git?rev=develop#8f4cb4c0ebfb6ce25b3be6c83746d184f47a5f67
+ - pypi: ./
+packages:
+- conda: https://repo.prefix.dev/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
+ sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726
+ md5: d7c89558ba9fa0495403155b64376d81
+ license: None
+ purls: []
+ size: 2562
+ timestamp: 1578324546067
+- conda: https://repo.prefix.dev/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2
+ build_number: 16
+ sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22
+ md5: 73aaf86a425cc6e73fcf236a5a46396d
+ depends:
+ - _libgcc_mutex 0.1 conda_forge
+ - libgomp >=7.5.0
+ constrains:
+ - openmp_impl 9999
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 23621
+ timestamp: 1650670423406
+- conda: https://repo.prefix.dev/conda-forge/win-64/_openmp_mutex-4.5-2_gnu.conda
+ build_number: 8
+ sha256: 1a62cd1f215fe0902e7004089693a78347a30ad687781dfda2289cab000e652d
+ md5: 37e16618af5c4851a3f3d66dd0e11141
+ depends:
+ - libgomp >=7.5.0
+ - libwinpthread >=12.0.0.r2.ggc561118da
+ constrains:
+ - openmp_impl 9999
+ - msys2-conda-epoch <0.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 49468
+ timestamp: 1718213032772
+- conda: https://repo.prefix.dev/conda-forge/noarch/alabaster-1.0.0-pyhd8ed1ab_1.conda
+ sha256: 6c4456a138919dae9edd3ac1a74b6fbe5fd66c05675f54df2f8ab8c8d0cc6cea
+ md5: 1fd9696649f65fd6611fcdb4ffec738a
+ depends:
+ - python >=3.10
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 18684
+ timestamp: 1733750512696
+- conda: https://repo.prefix.dev/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda
+ sha256: e0ea1ba78fbb64f17062601edda82097fcf815012cf52bb704150a2668110d48
+ md5: 2934f256a8acfe48f6ebb4fce6cde29c
+ depends:
+ - python >=3.9
+ - typing-extensions >=4.0.0
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/annotated-types?source=hash-mapping
+ size: 18074
+ timestamp: 1733247158254
+- conda: https://repo.prefix.dev/conda-forge/linux-64/astroid-3.3.11-py310hff52083_1.conda
+ sha256: 223f1330a5ddb1b3b28be57f966c04603902e0bb7b22dbb4a29f1d1240ec1ed7
+ md5: cf84a0665b3e7ec2056ae606b4ce1378
+ depends:
+ - python >=3.10,<3.11.0a0
+ - python_abi 3.10.* *_cp310
+ - typing_extensions >=4
+ license: LGPL-2.1-or-later
+ license_family: LGPL
+ purls:
+ - pkg:pypi/astroid?source=hash-mapping
+ size: 399136
+ timestamp: 1756814260459
+- conda: https://repo.prefix.dev/conda-forge/linux-64/astroid-3.3.11-py311h38be061_1.conda
+ sha256: 7473a0c0f53ed38f60cf0bb39b744b4cd88d3bce88dc7487d69f45cffcdaf9f6
+ md5: 773635d5d5594beb7fc47054cea6a741
+ depends:
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ license: LGPL-2.1-or-later
+ license_family: LGPL
+ purls:
+ - pkg:pypi/astroid?source=hash-mapping
+ size: 514006
+ timestamp: 1756814248810
+- conda: https://repo.prefix.dev/conda-forge/linux-64/astroid-3.3.11-py312h7900ff3_1.conda
+ sha256: e8ddf4c3e00cbf6350ab2f9a046b04c6b5df71fa111e5f172bce3723b0ab6ac1
+ md5: f68064e559452bab9180c8f90392d724
+ depends:
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: LGPL-2.1-or-later
+ license_family: LGPL
+ purls:
+ - pkg:pypi/astroid?source=hash-mapping
+ size: 507982
+ timestamp: 1756814180904
+- conda: https://repo.prefix.dev/conda-forge/win-64/astroid-3.3.11-py310h5588dad_1.conda
+ sha256: 1daca67f30e02b3d1116aa512ac263e7c8ace9bba77341fb3eff7d3a930197a6
+ md5: 6cd63bf117fad2a1359e93bdaab4884f
+ depends:
+ - python >=3.10,<3.11.0a0
+ - python_abi 3.10.* *_cp310
+ - typing_extensions >=4
+ license: LGPL-2.1-or-later
+ license_family: LGPL
+ purls:
+ - pkg:pypi/astroid?source=hash-mapping
+ size: 399570
+ timestamp: 1756814269645
+- conda: https://repo.prefix.dev/conda-forge/win-64/astroid-3.3.11-py311h1ea47a8_1.conda
+ sha256: a5e8694589a10137416ef44609de13022042a840996387faf10b32abf2b0f9fb
+ md5: 4cccc0a3742da6ea198a61ec6b12b6b5
+ depends:
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ license: LGPL-2.1-or-later
+ license_family: LGPL
+ purls:
+ - pkg:pypi/astroid?source=hash-mapping
+ size: 513350
+ timestamp: 1756814218019
+- conda: https://repo.prefix.dev/conda-forge/win-64/astroid-3.3.11-py312h2e8e312_1.conda
+ sha256: 67bc3573865fa08809779fc94def9f8de220553507cc700e546a7ee952472e94
+ md5: 1f2355e2dae4d1cdfb625fbd4af95576
+ depends:
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: LGPL-2.1-or-later
+ license_family: LGPL
+ purls:
+ - pkg:pypi/astroid?source=hash-mapping
+ size: 508091
+ timestamp: 1756814326800
+- conda: https://repo.prefix.dev/conda-forge/noarch/asttokens-3.0.0-pyhd8ed1ab_1.conda
+ sha256: 93b14414b3b3ed91e286e1cbe4e7a60c4e1b1c730b0814d1e452a8ac4b9af593
+ md5: 8f587de4bcf981e26228f268df374a9b
+ depends:
+ - python >=3.9
+ constrains:
+ - astroid >=2,<4
+ license: Apache-2.0
+ license_family: Apache
+ purls:
+ - pkg:pypi/asttokens?source=hash-mapping
+ size: 28206
+ timestamp: 1733250564754
+- conda: https://repo.prefix.dev/conda-forge/noarch/attrs-25.3.0-pyh71513ae_0.conda
+ sha256: 99c53ffbcb5dc58084faf18587b215f9ac8ced36bbfb55fa807c00967e419019
+ md5: a10d11958cadc13fdb43df75f8b1903f
+ depends:
+ - python >=3.9
+ license: MIT
+ license_family: MIT
+ size: 57181
+ timestamp: 1741918625732
+- conda: https://repo.prefix.dev/conda-forge/noarch/babel-2.17.0-pyhd8ed1ab_0.conda
+ sha256: 1c656a35800b7f57f7371605bc6507c8d3ad60fbaaec65876fce7f73df1fc8ac
+ md5: 0a01c169f0ab0f91b26e77a3301fbfe4
+ depends:
+ - python >=3.9
+ - pytz >=2015.7
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 6938256
+ timestamp: 1738490268466
+- conda: https://repo.prefix.dev/conda-forge/noarch/beautifulsoup4-4.13.5-pyha770c72_0.conda
+ sha256: d2124c0ea13527c7f54582269b3ae19541141a3740d6d779e7aa95aa82eaf561
+ md5: de0fd9702fd4c1186e930b8c35af6b6b
+ depends:
+ - python >=3.10
+ - soupsieve >=1.2
+ - typing-extensions
+ license: MIT
+ license_family: MIT
+ size: 88278
+ timestamp: 1756094375546
+- conda: https://repo.prefix.dev/conda-forge/noarch/bleach-6.2.0-pyh29332c3_4.conda
+ sha256: a05971bb80cca50ce9977aad3f7fc053e54ea7d5321523efc7b9a6e12901d3cd
+ md5: f0b4c8e370446ef89797608d60a564b3
+ depends:
+ - python >=3.9
+ - webencodings
+ - python
+ constrains:
+ - tinycss >=1.1.0,<1.5
+ license: Apache-2.0 AND MIT
+ size: 141405
+ timestamp: 1737382993425
+- conda: https://repo.prefix.dev/conda-forge/noarch/bleach-with-css-6.2.0-h82add2a_4.conda
+ sha256: 0aba699344275b3972bd751f9403316edea2ceb942db12f9f493b63c74774a46
+ md5: a30e9406c873940383555af4c873220d
+ depends:
+ - bleach ==6.2.0 pyh29332c3_4
+ - tinycss2
+ license: Apache-2.0 AND MIT
+ size: 4213
+ timestamp: 1737382993425
+- conda: https://repo.prefix.dev/conda-forge/linux-64/brotli-python-1.1.0-py310hea6c23e_4.conda
+ sha256: 29f24d4a937c3a7f4894d6be9d9f9604adbb5506891f0f37bbb7e2dc8fa6bc0a
+ md5: 6ef43db290647218e1e04c2601675bff
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - python >=3.10,<3.11.0a0
+ - python_abi 3.10.* *_cp310
+ constrains:
+ - libbrotlicommon 1.1.0 hb03c661_4
+ license: MIT
+ license_family: MIT
+ size: 353838
+ timestamp: 1756599456833
+- conda: https://repo.prefix.dev/conda-forge/win-64/brotli-python-1.1.0-py310h73ae2b4_4.conda
+ sha256: 7d316ca454968256908c9d947726bc8f51f85fc2a2912814e1a3a98600429855
+ md5: b53cd64780fbd287d3be3004cb6d7743
+ depends:
+ - python >=3.10,<3.11.0a0
+ - python_abi 3.10.* *_cp310
+ - ucrt >=10.0.20348.0
+ - vc >=14.3,<15
+ - vc14_runtime >=14.44.35208
+ constrains:
+ - libbrotlicommon 1.1.0 hfd05255_4
+ license: MIT
+ license_family: MIT
+ size: 322865
+ timestamp: 1756599996126
+- conda: https://repo.prefix.dev/conda-forge/linux-64/bzip2-1.0.8-hda65f42_8.conda
+ sha256: c30daba32ddebbb7ded490f0e371eae90f51e72db620554089103b4a6934b0d5
+ md5: 51a19bba1b8ebfb60df25cde030b7ebc
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ license: bzip2-1.0.6
+ license_family: BSD
+ purls: []
+ size: 260341
+ timestamp: 1757437258798
+- conda: https://repo.prefix.dev/conda-forge/win-64/bzip2-1.0.8-h0ad9c76_8.conda
+ sha256: d882712855624641f48aa9dc3f5feea2ed6b4e6004585d3616386a18186fe692
+ md5: 1077e9333c41ff0be8edd1a5ec0ddace
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.3,<15
+ - vc14_runtime >=14.44.35208
+ license: bzip2-1.0.6
+ license_family: BSD
+ purls: []
+ size: 55977
+ timestamp: 1757437738856
+- conda: https://repo.prefix.dev/conda-forge/linux-64/c-ares-1.34.5-hb9d3cd8_0.conda
+ sha256: f8003bef369f57396593ccd03d08a8e21966157269426f71e943f96e4b579aeb
+ md5: f7f0d6cc2dc986d42ac2689ec88192be
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 206884
+ timestamp: 1744127994291
+- conda: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.8.3-h4c7d964_0.conda
+ sha256: 3b82f62baad3fd33827b01b0426e8203a2786c8f452f633740868296bcbe8485
+ md5: c9e0c0f82f6e63323827db462b40ede8
+ depends:
+ - __win
+ license: ISC
+ purls: []
+ size: 154489
+ timestamp: 1754210967212
+- conda: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.8.3-hbd8a1cb_0.conda
+ sha256: 837b795a2bb39b75694ba910c13c15fa4998d4bb2a622c214a6a5174b2ae53d1
+ md5: 74784ee3d225fc3dca89edb635b4e5cc
+ depends:
+ - __unix
+ license: ISC
+ purls: []
+ size: 154402
+ timestamp: 1754210968730
+- conda: https://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2
+ noarch: python
+ sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17
+ md5: 9b347a7ec10940d3f7941ff6c460b551
+ depends:
+ - cached_property >=1.5.2,<1.5.3.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 4134
+ timestamp: 1615209571450
+- conda: https://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2
+ sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7
+ md5: 576d629e47797577ab0f1b351297ef4a
+ depends:
+ - python >=3.6
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/cached-property?source=hash-mapping
+ size: 11065
+ timestamp: 1615209567874
+- conda: https://repo.prefix.dev/conda-forge/noarch/certifi-2025.8.3-pyhd8ed1ab_0.conda
+ sha256: a1ad5b0a2a242f439608f22a538d2175cac4444b7b3f4e2b8c090ac337aaea40
+ md5: 11f59985f49df4620890f3e746ed7102
+ depends:
+ - python >=3.9
+ license: ISC
+ size: 158692
+ timestamp: 1754231530168
+- conda: https://repo.prefix.dev/conda-forge/linux-64/cffi-1.17.1-py310h34a4b09_1.conda
+ sha256: a1de720b3b79f2eb51317dd14f14409022f807a59e9107f30d621f0a74293551
+ md5: 6d582e073a58a7a011716b135819b94a
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libffi >=3.4.6,<3.5.0a0
+ - libgcc >=14
+ - pycparser
+ - python >=3.10,<3.11.0a0
+ - python_abi 3.10.* *_cp310
+ license: MIT
+ license_family: MIT
+ size: 244457
+ timestamp: 1756808380306
+- conda: https://repo.prefix.dev/conda-forge/win-64/cffi-1.17.1-py310h29418f3_1.conda
+ sha256: 9fa2705202603342fb8c5ac29a30af7c77b8582041ff2f29d6db6503ba070a0c
+ md5: 771663d8d11b07dcb22ece2806affac0
+ depends:
+ - pycparser
+ - python >=3.10,<3.11.0a0
+ - python_abi 3.10.* *_cp310
+ - ucrt >=10.0.20348.0
+ - vc >=14.3,<15
+ - vc14_runtime >=14.44.35208
+ license: MIT
+ license_family: MIT
+ size: 239679
+ timestamp: 1756808614479
+- conda: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.3-pyhd8ed1ab_0.conda
+ sha256: 838d5a011f0e7422be6427becba3de743c78f3874ad2743c341accbba9bb2624
+ md5: 7e7d5ef1b9ed630e4a1c358d6bc62284
+ depends:
+ - python >=3.9
+ license: MIT
+ license_family: MIT
+ size: 51033
+ timestamp: 1754767444665
+- conda: https://repo.prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda
+ sha256: ab29d57dc70786c1269633ba3dff20288b81664d3ff8d21af995742e2bb03287
+ md5: 962b9857ee8e7018c22f2776ffa0b2d7
+ depends:
+ - python >=3.9
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/colorama?source=hash-mapping
+ size: 27011
+ timestamp: 1733218222191
+- conda: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.10.6-py310h3406613_1.conda
+ sha256: 917519990bf711336345ff11642853382a8a83be8dcfb4fbd5084084b4e771ca
+ md5: a42ce2be914eabff4bb1674c57304967
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - python >=3.10,<3.11.0a0
+ - python_abi 3.10.* *_cp310
+ - tomli
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/coverage?source=hash-mapping
+ size: 307994
+ timestamp: 1756930911557
+- conda: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.10.6-py311h3778330_1.conda
+ sha256: 5728c93177af112d6d53ea8e1e4a11c47395c8f7d50f00b7e3aabc3b0529922f
+ md5: d4d341946049625afebfb720f011753a
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ - tomli
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/coverage?source=hash-mapping
+ size: 392749
+ timestamp: 1756930683653
+- conda: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.10.6-py312h8a5da7c_1.conda
+ sha256: f4774396137aaeec172e812bbcfc68e21dfa1fae2a04a437a6e2aa52fbddec89
+ md5: 0bffddcd9276d65304761c70ba5c2882
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - tomli
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/coverage?source=hash-mapping
+ size: 382029
+ timestamp: 1756930800371
+- conda: https://repo.prefix.dev/conda-forge/win-64/coverage-7.10.6-py310hdb0e946_1.conda
+ sha256: 636033b29ab4a1e16840ffa0a7063864776a47c6bedf5edf97c481cc8d996a90
+ md5: de8d07aa9fabb48922856f9f67233726
+ depends:
+ - python >=3.10,<3.11.0a0
+ - python_abi 3.10.* *_cp310
+ - tomli
+ - ucrt >=10.0.20348.0
+ - vc >=14.3,<15
+ - vc14_runtime >=14.44.35208
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/coverage?source=hash-mapping
+ size: 332940
+ timestamp: 1756930987464
+- conda: https://repo.prefix.dev/conda-forge/win-64/coverage-7.10.6-py311h3f79411_1.conda
+ sha256: 2262f950b8b32e1a3869b872bbff4c0b7324b8cd81e1c590c953e9c970899572
+ md5: cb00671279e93d3007cc55ff53023da7
+ depends:
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ - tomli
+ - ucrt >=10.0.20348.0
+ - vc >=14.3,<15
+ - vc14_runtime >=14.44.35208
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/coverage?source=hash-mapping
+ size: 417327
+ timestamp: 1756930890538
+- conda: https://repo.prefix.dev/conda-forge/win-64/coverage-7.10.6-py312h05f76fc_1.conda
+ sha256: 8914bba5e99644b2976003269c87221efd6ee5ba7ad3b0a1ecf0876954116263
+ md5: 040ebae03f3f666cae7cd40b95c6ef8c
+ depends:
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - tomli
+ - ucrt >=10.0.20348.0
+ - vc >=14.3,<15
+ - vc14_runtime >=14.44.35208
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/coverage?source=hash-mapping
+ size: 405801
+ timestamp: 1756930825049
+- conda: https://repo.prefix.dev/conda-forge/noarch/cpython-3.10.18-py310hd8ed1ab_0.conda
+ noarch: generic
+ sha256: 44329b37f854a90b4b9bcf500c25c13dce91180eca26a9272f6a254725d2db8c
+ md5: 7004cb3fa62ad44d1cb70f3b080dfc8f
+ depends:
+ - python >=3.10,<3.11.0a0
+ - python_abi * *_cp310
+ license: Python-2.0
+ size: 50504
+ timestamp: 1749048166134
+- conda: https://repo.prefix.dev/conda-forge/noarch/decorator-5.2.1-pyhd8ed1ab_0.conda
+ sha256: c17c6b9937c08ad63cb20a26f403a3234088e57d4455600974a0ce865cb14017
+ md5: 9ce473d1d1be1cc3810856a48b3fab32
+ depends:
+ - python >=3.9
+ license: BSD-2-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/decorator?source=hash-mapping
+ size: 14129
+ timestamp: 1740385067843
+- conda: https://repo.prefix.dev/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2
+ sha256: 9717a059677553562a8f38ff07f3b9f61727bd614f505658b0a5ecbcf8df89be
+ md5: 961b3a227b437d82ad7054484cfa71b2
+ depends:
+ - python >=3.6
+ license: PSF-2.0
+ license_family: PSF
+ size: 24062
+ timestamp: 1615232388757
+- conda: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda
+ sha256: 43dca52c96fde0c4845aaff02bcc92f25e1c2e5266ddefc2eac1a3de0960a3b1
+ md5: 885745570573eb6a08e021841928297a
+ depends:
+ - python >=3.9
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/dill?source=hash-mapping
+ size: 90864
+ timestamp: 1744798629464
+- conda: https://repo.prefix.dev/conda-forge/linux-64/discretize-0.11.3-py310ha2bacc8_0.conda
+ sha256: 8724a644a7170b16e11a4206062e1778ea3a4068691945017060f5d24432d5d0
+ md5: dec42d7ab3eb8ee69946eeb5de6eaeb8
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - numpy >=1.19,<3
+ - numpy >=1.22.4
+ - python >=3.10,<3.11.0a0
+ - python_abi 3.10.* *_cp310
+ - scipy >=1.8
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/discretize?source=hash-mapping
+ size: 1044589
+ timestamp: 1749114714449
+- conda: https://repo.prefix.dev/conda-forge/linux-64/discretize-0.11.3-py311h5b7b71f_0.conda
+ sha256: 68c39916cff90c5ddf30144096189f3b54d41507dd85023543f03d7cfd5851b4
+ md5: a7407d831a3b494a143c5e69f83fb0a8
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - numpy >=1.19,<3
+ - numpy >=1.22.4
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ - scipy >=1.8
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/discretize?source=hash-mapping
+ size: 1150777
+ timestamp: 1749114720491
+- conda: https://repo.prefix.dev/conda-forge/linux-64/discretize-0.11.3-py312hc39e661_0.conda
+ sha256: ff530b6e50d2b9bc8f60f7261987abccc97afe868b35b70479a47f0edd3fe2bb
+ md5: f4156fbef76257cc385c0ad71444079c
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - numpy >=1.19,<3
+ - numpy >=1.22.4
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - scipy >=1.8
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/discretize?source=hash-mapping
+ size: 1137710
+ timestamp: 1749114709418
+- conda: https://repo.prefix.dev/conda-forge/win-64/discretize-0.11.3-py310h3e8ed56_0.conda
+ sha256: 6275debf3044a84b85c5298540d0b208a02f0dad5357744eaa6802779ebed175
+ md5: a8ba6acb343f5c9c018a89d1d64acc51
+ depends:
+ - numpy >=1.19,<3
+ - numpy >=1.22.4
+ - python >=3.10,<3.11.0a0
+ - python_abi 3.10.* *_cp310
+ - scipy >=1.8
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/discretize?source=hash-mapping
+ size: 820585
+ timestamp: 1749114864309
+- conda: https://repo.prefix.dev/conda-forge/win-64/discretize-0.11.3-py311h9b10771_0.conda
+ sha256: 0499b57534162b58677de77dbb0c3dc11dd17ee27043ae5871db2d89e27b8e0d
+ md5: 7de8d3ea58f928e4507713d7b35ce1d9
+ depends:
+ - numpy >=1.19,<3
+ - numpy >=1.22.4
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ - scipy >=1.8
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/discretize?source=hash-mapping
+ size: 907321
+ timestamp: 1749115246496
+- conda: https://repo.prefix.dev/conda-forge/win-64/discretize-0.11.3-py312hbaa7e33_0.conda
+ sha256: 61a69ffd1484d45d4adf21d1bb4b13e3cf65a74570b7694563ff45376ee9d222
+ md5: 95022b30369053ba80ed47dc00ebc0e3
+ depends:
+ - numpy >=1.19,<3
+ - numpy >=1.22.4
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - scipy >=1.8
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/discretize?source=hash-mapping
+ size: 856644
+ timestamp: 1749115063103
+- conda: https://repo.prefix.dev/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_1.conda
+ sha256: fa5966bb1718bbf6967a85075e30e4547901410cc7cb7b16daf68942e9a94823
+ md5: 24c1ca34138ee57de72a943237cde4cc
+ depends:
+ - python >=3.9
+ license: CC-PDDC AND BSD-3-Clause AND BSD-2-Clause AND ZPL-2.1
+ size: 402700
+ timestamp: 1733217860944
+- conda: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda
+ sha256: ce61f4f99401a4bd455b89909153b40b9c823276aefcbb06f2044618696009ca
+ md5: 72e42d28960d875c7654614f8b50939a
+ depends:
+ - python >=3.9
+ - typing_extensions >=4.6.0
+ license: MIT and PSF-2.0
+ purls:
+ - pkg:pypi/exceptiongroup?source=hash-mapping
+ size: 21284
+ timestamp: 1746947398083
+- conda: https://repo.prefix.dev/conda-forge/noarch/executing-2.2.1-pyhd8ed1ab_0.conda
+ sha256: 210c8165a58fdbf16e626aac93cc4c14dbd551a01d1516be5ecad795d2422cad
+ md5: ff9efb7f7469aed3c4a8106ffa29593c
+ depends:
+ - python >=3.10
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/executing?source=compressed-mapping
+ size: 30753
+ timestamp: 1756729456476
+- conda: https://repo.prefix.dev/conda-forge/linux-64/freetype-2.14.1-ha770c72_0.conda
+ sha256: bf8e4dffe46f7d25dc06f31038cacb01672c47b9f45201f065b0f4d00ab0a83e
+ md5: 4afc585cd97ba8a23809406cd8a9eda8
+ depends:
+ - libfreetype 2.14.1 ha770c72_0
+ - libfreetype6 2.14.1 h73754d4_0
+ license: GPL-2.0-only OR FTL
+ purls: []
+ size: 173114
+ timestamp: 1757945422243
+- conda: https://repo.prefix.dev/conda-forge/win-64/freetype-2.14.1-h57928b3_0.conda
+ sha256: a9b3313edea0bf14ea6147ea43a1059d0bf78771a1336d2c8282891efc57709a
+ md5: d69c21967f35eb2ce7f1f85d6b6022d3
+ depends:
+ - libfreetype 2.14.1 h57928b3_0
+ - libfreetype6 2.14.1 hdbac1cb_0
+ license: GPL-2.0-only OR FTL
+ purls: []
+ size: 184553
+ timestamp: 1757946164012
+- pypi: git+https://github.com/MiraGeoscience/geoapps-utils.git?rev=develop#a6627f0a6e663e9c3f0e9874f401a34ab8990488
+ name: geoapps-utils
+ version: 0.6.0a1.dev69+a6627f0
+ requires_dist:
+ - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@develop
+ - numpy>=1.26.0,<1.27.0
+ - pydantic>=2.5.2,<3.0.0
+ - scipy>=1.14.0,<1.15.0
+ requires_python: '>=3.10,<4.0'
+- pypi: git+https://github.com/MiraGeoscience/geoh5py.git?rev=develop#8f4cb4c0ebfb6ce25b3be6c83746d184f47a5f67
+ name: geoh5py
+ version: 0.12.0a2.dev76+8f4cb4c0
+ requires_dist:
+ - pillow>=10.3.0,<10.4.0
+ - h5py>=3.2.1,<4.0.0
+ - numpy>=1.26.0,<1.27.0
+ - pydantic>=2.5.2,<3.0.0
+ - pylint>=3.3.8,<4.0.0
+ requires_python: '>=3.10,<4.0'
+- pypi: ./
+ name: grid-apps
+ version: 0.1.0a1.dev60+4168153
+ sha256: 7a334c673e89ddfc8a3e2cf81c46051e5a517dfc710dedad017da33dd5d52e8d
+ requires_dist:
+ - discretize==0.11.*
+ - geoapps-utils>=0.6.0a0,<0.7.dev0
+ - geoh5py>=0.12.0a1,<0.13.dev0
+ - numpy==1.26.*
+ - pydantic>=2.5.2,<3.dev0
+ - scipy==1.14.*
+ requires_python: '>=3.10,<4.0'
+ editable: true
+- conda: https://repo.prefix.dev/conda-forge/noarch/h2-4.3.0-pyhcf101f3_0.conda
+ sha256: 84c64443368f84b600bfecc529a1194a3b14c3656ee2e832d15a20e0329b6da3
+ md5: 164fc43f0b53b6e3a7bc7dce5e4f1dc9
+ depends:
+ - python >=3.10
+ - hyperframe >=6.1,<7
+ - hpack >=4.1,<5
+ - python
+ license: MIT
+ license_family: MIT
+ size: 95967
+ timestamp: 1756364871835
+- conda: https://repo.prefix.dev/conda-forge/linux-64/h5py-3.14.0-nompi_py310h4aa865e_101.conda
+ sha256: 68641d6f5c5c2a916437b67008fab342b599b6dfd711a0f43c00db5c72412d26
+ md5: 67774c5937389b35e4efd43d7baa923e
+ depends:
+ - __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.* *_cp310
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/h5py?source=hash-mapping
+ size: 1243358
+ timestamp: 1756767251056
+- conda: https://repo.prefix.dev/conda-forge/linux-64/h5py-3.14.0-nompi_py311h0b2f468_101.conda
+ sha256: f5d1955b90eb7060ee6f81bc39de0f4f8e28247b8fe810d70382b4fde9e0e1f9
+ md5: b3dd5deacc3147498b31366315fdc6cc
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - cached-property
+ - hdf5 >=1.14.6,<1.14.7.0a0
+ - libgcc >=14
+ - numpy >=1.23,<3
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/h5py?source=hash-mapping
+ size: 1358447
+ timestamp: 1756767156419
+- conda: https://repo.prefix.dev/conda-forge/linux-64/h5py-3.14.0-nompi_py312ha4f8f14_101.conda
+ sha256: 6736b00b257aecef97e5e607ff275780cacdec48ff85963fe53abeb9ee4fb53f
+ md5: fff67e7204b34a6e82ccf076786d1a7a
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - cached-property
+ - hdf5 >=1.14.6,<1.14.7.0a0
+ - libgcc >=14
+ - numpy >=1.23,<3
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/h5py?source=hash-mapping
+ size: 1328987
+ timestamp: 1756767099673
+- conda: https://repo.prefix.dev/conda-forge/win-64/h5py-3.14.0-nompi_py310hb7e4da9_101.conda
+ sha256: 66d2c79028f031326139dfb31e4e8af9acde01da3ac89551e7d50cbf29b6cb8f
+ md5: 2e924eca630566b4b0f51a98a232122e
+ depends:
+ - cached-property
+ - hdf5 >=1.14.6,<1.14.7.0a0
+ - numpy >=1.21,<3
+ - python >=3.10,<3.11.0a0
+ - python_abi 3.10.* *_cp310
+ - ucrt >=10.0.20348.0
+ - vc >=14.3,<15
+ - vc14_runtime >=14.44.35208
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/h5py?source=hash-mapping
+ size: 972318
+ timestamp: 1756767269274
+- conda: https://repo.prefix.dev/conda-forge/win-64/h5py-3.14.0-nompi_py311hc40ba4b_101.conda
+ sha256: 34aae9b53e14cf62373a5bd1f475151430e4257cad6626a5d38469367b049da3
+ md5: 2ffcf6af42f0eadff1fa73417b848096
+ depends:
+ - cached-property
+ - hdf5 >=1.14.6,<1.14.7.0a0
+ - numpy >=1.23,<3
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ - ucrt >=10.0.20348.0
+ - vc >=14.3,<15
+ - vc14_runtime >=14.44.35208
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/h5py?source=hash-mapping
+ size: 1076133
+ timestamp: 1756767224174
+- conda: https://repo.prefix.dev/conda-forge/win-64/h5py-3.14.0-nompi_py312h03cd2ba_101.conda
+ sha256: 932f5a81723869cd4b201bbbac58f63c8e042ab6bb0afccc24a77e81f3eb40eb
+ md5: dc73d015d4d8afbe3a5caf38e7be048a
+ depends:
+ - cached-property
+ - hdf5 >=1.14.6,<1.14.7.0a0
+ - numpy >=1.23,<3
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - ucrt >=10.0.20348.0
+ - vc >=14.3,<15
+ - vc14_runtime >=14.44.35208
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/h5py?source=hash-mapping
+ size: 1048407
+ timestamp: 1756767236934
+- conda: https://repo.prefix.dev/conda-forge/linux-64/hdf5-1.14.6-nompi_h6e4c0c1_103.conda
+ sha256: 4f173af9e2299de7eee1af3d79e851bca28ee71e7426b377e841648b51d48614
+ md5: c74d83614aec66227ae5199d98852aaf
+ depends:
+ - __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
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 3710057
+ timestamp: 1753357500665
+- conda: https://repo.prefix.dev/conda-forge/win-64/hdf5-1.14.6-nompi_he30205f_103.conda
+ sha256: 0a90263b97e9860cec6c2540160ff1a1fff2a609b3d96452f8716ae63489dac5
+ md5: f1f7aaf642cefd2190582550eaca4658
+ depends:
+ - 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
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 2031491
+ timestamp: 1753357255237
+- conda: https://repo.prefix.dev/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda
+ sha256: 6ad78a180576c706aabeb5b4c8ceb97c0cb25f1e112d76495bff23e3779948ba
+ md5: 0a802cb9888dd14eeefc611f05c40b6e
+ depends:
+ - python >=3.9
+ license: MIT
+ license_family: MIT
+ size: 30731
+ timestamp: 1737618390337
+- conda: https://repo.prefix.dev/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda
+ sha256: 77af6f5fe8b62ca07d09ac60127a30d9069fdc3c68d6b256754d0ffb1f7779f8
+ md5: 8e6923fc12f1fe8f8c4e5c9f343256ac
+ depends:
+ - python >=3.9
+ license: MIT
+ license_family: MIT
+ size: 17397
+ timestamp: 1737618427549
+- conda: https://repo.prefix.dev/conda-forge/win-64/icu-75.1-he0c23c2_0.conda
+ sha256: 1d04369a1860a1e9e371b9fc82dd0092b616adcf057d6c88371856669280e920
+ md5: 8579b6bb8d18be7c0b27fb08adeeeb40
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 14544252
+ timestamp: 1720853966338
+- conda: https://repo.prefix.dev/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda
+ sha256: d7a472c9fd479e2e8dcb83fb8d433fce971ea369d704ece380e876f9c3494e87
+ md5: 39a4f67be3286c86d696df570b1201b7
+ depends:
+ - python >=3.9
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 49765
+ timestamp: 1733211921194
+- conda: https://repo.prefix.dev/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2
+ sha256: c2bfd7043e0c4c12d8b5593de666c1e81d67b83c474a0a79282cc5c4ef845460
+ md5: 7de5386c8fea29e76b303f37dde4c352
+ depends:
+ - python >=3.4
+ license: MIT
+ license_family: MIT
+ size: 10164
+ timestamp: 1656939625410
+- conda: https://repo.prefix.dev/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda
+ sha256: c18ab120a0613ada4391b15981d86ff777b5690ca461ea7e9e49531e8f374745
+ md5: 63ccfdc3a3ce25b027b8767eb722fca8
+ depends:
+ - python >=3.9
+ - zipp >=3.20
+ - python
+ license: Apache-2.0
+ license_family: APACHE
+ size: 34641
+ timestamp: 1747934053147
+- conda: https://repo.prefix.dev/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda
+ sha256: 0ec8f4d02053cd03b0f3e63168316530949484f80e16f5e2fb199a1d117a89ca
+ md5: 6837f3eff7dcea42ecd714ce1ac2b108
+ depends:
+ - python >=3.9
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/iniconfig?source=hash-mapping
+ size: 11474
+ timestamp: 1733223232820
+- conda: https://repo.prefix.dev/conda-forge/noarch/ipython-8.37.0-pyh8f84b5b_0.conda
+ sha256: e43fa762183b49c3c3b811d41259e94bb14b7bff4a239b747ef4e1c6bbe2702d
+ md5: 177cfa19fe3d74c87a8889286dc64090
+ depends:
+ - __unix
+ - pexpect >4.3
+ - decorator
+ - exceptiongroup
+ - jedi >=0.16
+ - matplotlib-inline
+ - pickleshare
+ - prompt-toolkit >=3.0.41,<3.1.0
+ - pygments >=2.4.0
+ - python >=3.10
+ - stack_data
+ - traitlets >=5.13.0
+ - typing_extensions >=4.6
+ - python
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/ipython?source=hash-mapping
+ size: 639160
+ timestamp: 1748711175284
+- conda: https://repo.prefix.dev/conda-forge/noarch/ipython-8.37.0-pyha7b4d00_0.conda
+ sha256: 4812e69a1c9d6d43746fa7e8efaf9127d257508249e7192e68cd163511a751ee
+ md5: 2ffea44095ca39b38b67599e8091bca3
+ depends:
+ - __win
+ - colorama
+ - decorator
+ - exceptiongroup
+ - jedi >=0.16
+ - matplotlib-inline
+ - pickleshare
+ - prompt-toolkit >=3.0.41,<3.1.0
+ - pygments >=2.4.0
+ - python >=3.10
+ - stack_data
+ - traitlets >=5.13.0
+ - typing_extensions >=4.6
+ - python
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/ipython?source=hash-mapping
+ size: 638940
+ timestamp: 1748711254071
+- conda: https://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_1.conda
+ sha256: e1d0e81e3c3da5d7854f9f57ffb89d8f4505bb64a2f05bb01d78eff24344a105
+ md5: c25d1a27b791dab1797832aafd6a3e9a
+ depends:
+ - python >=3.9,<4.0
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/isort?source=hash-mapping
+ size: 75118
+ timestamp: 1746190379093
+- conda: https://repo.prefix.dev/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda
+ sha256: 92c4d217e2dc68983f724aa983cca5464dcb929c566627b26a2511159667dba8
+ md5: a4f4c5dc9b80bc50e0d3dc4e6e8f1bd9
+ depends:
+ - parso >=0.8.3,<0.9.0
+ - python >=3.9
+ license: Apache-2.0 AND MIT
+ purls:
+ - pkg:pypi/jedi?source=hash-mapping
+ size: 843646
+ timestamp: 1733300981994
+- conda: https://repo.prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda
+ sha256: f1ac18b11637ddadc05642e8185a851c7fab5998c6f5470d716812fae943b2af
+ md5: 446bd6c8cb26050d528881df495ce646
+ depends:
+ - markupsafe >=2.0
+ - python >=3.9
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 112714
+ timestamp: 1741263433881
+- conda: https://repo.prefix.dev/conda-forge/noarch/jsonschema-4.25.1-pyhe01879c_0.conda
+ sha256: ac377ef7762e49cb9c4f985f1281eeff471e9adc3402526eea78e6ac6589cf1d
+ md5: 341fd940c242cf33e832c0402face56f
+ depends:
+ - attrs >=22.2.0
+ - jsonschema-specifications >=2023.3.6
+ - python >=3.9
+ - referencing >=0.28.4
+ - rpds-py >=0.7.1
+ - python
+ license: MIT
+ license_family: MIT
+ size: 81688
+ timestamp: 1755595646123
+- conda: https://repo.prefix.dev/conda-forge/noarch/jsonschema-specifications-2025.9.1-pyhcf101f3_0.conda
+ sha256: 0a4f3b132f0faca10c89fdf3b60e15abb62ded6fa80aebfc007d05965192aa04
+ md5: 439cd0f567d697b20a8f45cb70a1005a
+ depends:
+ - python >=3.10
+ - referencing >=0.31.0
+ - python
+ license: MIT
+ license_family: MIT
+ size: 19236
+ timestamp: 1757335715225
+- conda: https://repo.prefix.dev/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda
+ sha256: 19d8bd5bb2fde910ec59e081eeb59529491995ce0d653a5209366611023a0b3a
+ md5: 4ebae00eae9705b0c3d6d1018a81d047
+ depends:
+ - importlib-metadata >=4.8.3
+ - jupyter_core >=4.12,!=5.0.*
+ - python >=3.9
+ - python-dateutil >=2.8.2
+ - pyzmq >=23.0
+ - tornado >=6.2
+ - traitlets >=5.3
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 106342
+ timestamp: 1733441040958
+- conda: https://repo.prefix.dev/conda-forge/noarch/jupyter_core-5.8.1-pyh31011fe_0.conda
+ sha256: 56a7a7e907f15cca8c4f9b0c99488276d4cb10821d2d15df9245662184872e81
+ md5: b7d89d860ebcda28a5303526cdee68ab
+ depends:
+ - __unix
+ - platformdirs >=2.5
+ - python >=3.8
+ - traitlets >=5.3
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 59562
+ timestamp: 1748333186063
+- conda: https://repo.prefix.dev/conda-forge/noarch/jupyter_core-5.8.1-pyh5737063_0.conda
+ sha256: 928c2514c2974fda78447903217f01ca89a77eefedd46bf6a2fe97072df57e8d
+ md5: 324e60a0d3f39f268e899709575ea3cd
+ depends:
+ - __win
+ - cpython
+ - platformdirs >=2.5
+ - python >=3.8
+ - pywin32 >=300
+ - traitlets >=5.3
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 59972
+ timestamp: 1748333368923
+- conda: https://repo.prefix.dev/conda-forge/noarch/jupyterlab_pygments-0.3.0-pyhd8ed1ab_2.conda
+ sha256: dc24b900742fdaf1e077d9a3458fd865711de80bca95fe3c6d46610c532c6ef0
+ md5: fd312693df06da3578383232528c468d
+ depends:
+ - pygments >=2.4.1,<3
+ - python >=3.9
+ constrains:
+ - jupyterlab >=4.0.8,<5.0.0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 18711
+ timestamp: 1733328194037
+- conda: https://repo.prefix.dev/conda-forge/linux-64/keyutils-1.6.3-hb9d3cd8_0.conda
+ sha256: 0960d06048a7185d3542d850986d807c6e37ca2e644342dd0c72feefcf26c2a4
+ md5: b38117a3c920364aff79f870c984b4a3
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ license: LGPL-2.1-or-later
+ purls: []
+ size: 134088
+ timestamp: 1754905959823
+- conda: https://repo.prefix.dev/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda
+ sha256: 99df692f7a8a5c27cd14b5fb1374ee55e756631b9c3d659ed3ee60830249b238
+ md5: 3f43953b7d3fb3aaa1d0d0723d91e368
+ depends:
+ - keyutils >=1.6.1,<2.0a0
+ - libedit >=3.1.20191231,<3.2.0a0
+ - libedit >=3.1.20191231,<4.0a0
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ - openssl >=3.3.1,<4.0a0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 1370023
+ timestamp: 1719463201255
+- conda: https://repo.prefix.dev/conda-forge/win-64/krb5-1.21.3-hdf4eb48_0.conda
+ sha256: 18e8b3430d7d232dad132f574268f56b3eb1a19431d6d5de8c53c29e6c18fa81
+ md5: 31aec030344e962fbd7dbbbbd68e60a9
+ depends:
+ - openssl >=3.3.1,<4.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 712034
+ timestamp: 1719463874284
+- conda: https://repo.prefix.dev/conda-forge/noarch/latexcodec-2.0.1-pyh9f0ad1d_0.tar.bz2
+ sha256: 5210d31c8f2402dd1ad1b3edcf7a53292b9da5de20cd14d9c243dbf9278b1c4f
+ md5: 8d67904973263afd2985ba56aa2d6bb4
+ depends:
+ - python
+ - six
+ license: MIT
+ license_family: MIT
+ size: 18212
+ timestamp: 1592937373647
+- conda: https://repo.prefix.dev/conda-forge/linux-64/lcms2-2.17-h717163a_0.conda
+ sha256: d6a61830a354da022eae93fa896d0991385a875c6bba53c82263a289deda9db8
+ md5: 000e85703f0fd9594c81710dd5066471
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libtiff >=4.7.0,<4.8.0a0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 248046
+ timestamp: 1739160907615
+- conda: https://repo.prefix.dev/conda-forge/win-64/lcms2-2.17-hbcf6048_0.conda
+ sha256: 7712eab5f1a35ca3ea6db48ead49e0d6ac7f96f8560da8023e61b3dbe4f3b25d
+ md5: 3538827f77b82a837fa681a4579e37a1
+ depends:
+ - 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
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 510641
+ timestamp: 1739161381270
+- conda: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.44-h1423503_1.conda
+ sha256: 1a620f27d79217c1295049ba214c2f80372062fd251b569e9873d4a953d27554
+ md5: 0be7c6e070c19105f966d3758448d018
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ constrains:
+ - binutils_impl_linux-64 2.44
+ license: GPL-3.0-only
+ license_family: GPL
+ purls: []
+ size: 676044
+ timestamp: 1752032747103
+- conda: https://repo.prefix.dev/conda-forge/linux-64/lerc-4.0.0-h0aef613_1.conda
+ sha256: 412381a43d5ff9bbed82cd52a0bbca5b90623f62e41007c9c42d3870c60945ff
+ md5: 9344155d33912347b37f0ae6c410a835
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ license: Apache-2.0
+ license_family: Apache
+ purls: []
+ size: 264243
+ timestamp: 1745264221534
+- conda: https://repo.prefix.dev/conda-forge/win-64/lerc-4.0.0-h6470a55_1.conda
+ sha256: 868a3dff758cc676fa1286d3f36c3e0101cca56730f7be531ab84dc91ec58e9d
+ md5: c1b81da6d29a14b542da14a36c9fbf3f
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: Apache-2.0
+ license_family: Apache
+ purls: []
+ size: 164701
+ timestamp: 1745264384716
+- conda: https://repo.prefix.dev/conda-forge/linux-64/libaec-1.1.4-h3f801dc_0.conda
+ sha256: 410ab78fe89bc869d435de04c9ffa189598ac15bb0fe1ea8ace8fb1b860a2aa3
+ md5: 01ba04e414e47f95c03d6ddd81fd37be
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ license: BSD-2-Clause
+ license_family: BSD
+ purls: []
+ size: 36825
+ timestamp: 1749993532943
+- conda: https://repo.prefix.dev/conda-forge/win-64/libaec-1.1.4-h20038f6_0.conda
+ sha256: 0be89085effce9fdcbb6aea7acdb157b18793162f68266ee0a75acf615d4929b
+ md5: 85a2bed45827d77d5b308cb2b165404f
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: BSD-2-Clause
+ license_family: BSD
+ purls: []
+ size: 33847
+ timestamp: 1749993666162
+- conda: https://repo.prefix.dev/conda-forge/linux-64/libblas-3.9.0-35_h4a7cf45_openblas.conda
+ build_number: 35
+ sha256: 6cae2184069dd6527a405bc4a3de1290729f6f1c7a475fa4c937a6c02e05f058
+ md5: 6da7e852c812a84096b68158574398d0
+ depends:
+ - libopenblas >=0.3.30,<0.3.31.0a0
+ - libopenblas >=0.3.30,<1.0a0
+ constrains:
+ - blas 2.135 openblas
+ - liblapacke 3.9.0 35*_openblas
+ - mkl <2025
+ - liblapack 3.9.0 35*_openblas
+ - libcblas 3.9.0 35*_openblas
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 17153
+ timestamp: 1757446766752
+- conda: https://repo.prefix.dev/conda-forge/win-64/libblas-3.9.0-35_h5709861_mkl.conda
+ build_number: 35
+ sha256: 4180e7ab27ed03ddf01d7e599002fcba1b32dcb68214ee25da823bac371ed362
+ md5: 45d98af023f8b4a7640b1f713ce6b602
+ depends:
+ - mkl >=2024.2.2,<2025.0a0
+ constrains:
+ - blas 2.135 mkl
+ - liblapack 3.9.0 35*_mkl
+ - libcblas 3.9.0 35*_mkl
+ - liblapacke 3.9.0 35*_mkl
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 66044
+ timestamp: 1757003486248
+- conda: https://repo.prefix.dev/conda-forge/linux-64/libcblas-3.9.0-35_h0358290_openblas.conda
+ build_number: 35
+ sha256: fb77db75b0bd50856a1d53edcfd70c3314cde7e7c7d87479ee9d6b7fdbe824f1
+ md5: 8aa3389d36791ecd31602a247b1f3641
+ depends:
+ - libblas 3.9.0 35_h4a7cf45_openblas
+ constrains:
+ - liblapacke 3.9.0 35*_openblas
+ - blas 2.135 openblas
+ - liblapack 3.9.0 35*_openblas
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 17149
+ timestamp: 1757446780072
+- conda: https://repo.prefix.dev/conda-forge/win-64/libcblas-3.9.0-35_h2a3cdd5_mkl.conda
+ build_number: 35
+ sha256: 88939f6c1b5da75bd26ce663aa437e1224b26ee0dab5e60cecc77600975f397e
+ md5: 9639091d266e92438582d0cc4cfc8350
+ depends:
+ - libblas 3.9.0 35_h5709861_mkl
+ constrains:
+ - blas 2.135 mkl
+ - liblapack 3.9.0 35*_mkl
+ - liblapacke 3.9.0 35*_mkl
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 66398
+ timestamp: 1757003514529
+- conda: https://repo.prefix.dev/conda-forge/linux-64/libcurl-8.14.1-h332b0f4_0.conda
+ sha256: b6c5cf340a4f80d70d64b3a29a7d9885a5918d16a5cb952022820e6d3e79dc8b
+ md5: 45f6713cb00f124af300342512219182
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - krb5 >=1.21.3,<1.22.0a0
+ - libgcc >=13
+ - libnghttp2 >=1.64.0,<2.0a0
+ - libssh2 >=1.11.1,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.5.0,<4.0a0
+ - zstd >=1.5.7,<1.6.0a0
+ license: curl
+ license_family: MIT
+ purls: []
+ size: 449910
+ timestamp: 1749033146806
+- conda: https://repo.prefix.dev/conda-forge/win-64/libcurl-8.14.1-h88aaa65_0.conda
+ sha256: b2cface2cf35d8522289df7fffc14370596db6f6dc481cc1b6ca313faeac19d8
+ md5: 836b9c08f34d2017dbcaec907c6a1138
+ depends:
+ - 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.2,<15
+ - vc14_runtime >=14.29.30139
+ license: curl
+ license_family: MIT
+ purls: []
+ size: 368346
+ timestamp: 1749033492826
+- conda: https://repo.prefix.dev/conda-forge/linux-64/libdeflate-1.24-h86f0d12_0.conda
+ sha256: 8420748ea1cc5f18ecc5068b4f24c7a023cc9b20971c99c824ba10641fb95ddf
+ md5: 64f0c503da58ec25ebd359e4d990afa8
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 72573
+ timestamp: 1747040452262
+- conda: https://repo.prefix.dev/conda-forge/win-64/libdeflate-1.24-h76ddb4d_0.conda
+ sha256: 65347475c0009078887ede77efe60db679ea06f2b56f7853b9310787fe5ad035
+ md5: 08d988e266c6ae77e03d164b83786dc4
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 156292
+ timestamp: 1747040812624
+- conda: https://repo.prefix.dev/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.conda
+ sha256: d789471216e7aba3c184cd054ed61ce3f6dac6f87a50ec69291b9297f8c18724
+ md5: c277e0a4d549b03ac1e9d6cbbe3d017b
+ depends:
+ - ncurses
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - ncurses >=6.5,<7.0a0
+ license: BSD-2-Clause
+ license_family: BSD
+ purls: []
+ size: 134676
+ timestamp: 1738479519902
+- conda: https://repo.prefix.dev/conda-forge/linux-64/libev-4.33-hd590300_2.conda
+ sha256: 1cd6048169fa0395af74ed5d8f1716e22c19a81a8a36f934c110ca3ad4dd27b4
+ md5: 172bf1cd1ff8629f2b1179945ed45055
+ depends:
+ - libgcc-ng >=12
+ license: BSD-2-Clause
+ license_family: BSD
+ purls: []
+ size: 112766
+ timestamp: 1702146165126
+- conda: https://repo.prefix.dev/conda-forge/linux-64/libexpat-2.7.1-hecca717_0.conda
+ sha256: da2080da8f0288b95dd86765c801c6e166c4619b910b11f9a8446fb852438dc2
+ md5: 4211416ecba1866fab0c6470986c22d6
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ constrains:
+ - expat 2.7.1.*
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 74811
+ timestamp: 1752719572741
+- conda: https://repo.prefix.dev/conda-forge/win-64/libexpat-2.7.1-hac47afa_0.conda
+ sha256: 8432ca842bdf8073ccecf016ccc9140c41c7114dc4ec77ca754551c01f780845
+ md5: 3608ffde260281fa641e70d6e34b1b96
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.3,<15
+ - vc14_runtime >=14.44.35208
+ constrains:
+ - expat 2.7.1.*
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 141322
+ timestamp: 1752719767870
+- conda: https://repo.prefix.dev/conda-forge/linux-64/libffi-3.4.6-h2dba641_1.conda
+ sha256: 764432d32db45466e87f10621db5b74363a9f847d2b8b1f9743746cd160f06ab
+ md5: ede4673863426c0883c0063d853bbd85
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 57433
+ timestamp: 1743434498161
+- conda: https://repo.prefix.dev/conda-forge/win-64/libffi-3.4.6-h537db12_1.conda
+ sha256: d3b0b8812eab553d3464bbd68204f007f1ebadf96ce30eb0cbc5159f72e353f5
+ md5: 85d8fa5e55ed8f93f874b3b23ed54ec6
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 44978
+ timestamp: 1743435053850
+- conda: https://repo.prefix.dev/conda-forge/linux-64/libfreetype-2.14.1-ha770c72_0.conda
+ sha256: 4641d37faeb97cf8a121efafd6afd040904d4bca8c46798122f417c31d5dfbec
+ md5: f4084e4e6577797150f9b04a4560ceb0
+ depends:
+ - libfreetype6 >=2.14.1
+ license: GPL-2.0-only OR FTL
+ purls: []
+ size: 7664
+ timestamp: 1757945417134
+- conda: https://repo.prefix.dev/conda-forge/win-64/libfreetype-2.14.1-h57928b3_0.conda
+ sha256: 2029702ec55e968ce18ec38cc8cf29f4c8c4989a0d51797164dab4f794349a64
+ md5: 3235024fe48d4087721797ebd6c9d28c
+ depends:
+ - libfreetype6 >=2.14.1
+ license: GPL-2.0-only OR FTL
+ purls: []
+ size: 8109
+ timestamp: 1757946135015
+- conda: https://repo.prefix.dev/conda-forge/linux-64/libfreetype6-2.14.1-h73754d4_0.conda
+ sha256: 4a7af818a3179fafb6c91111752954e29d3a2a950259c14a2fc7ba40a8b03652
+ md5: 8e7251989bca326a28f4a5ffbd74557a
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libpng >=1.6.50,<1.7.0a0
+ - libzlib >=1.3.1,<2.0a0
+ constrains:
+ - freetype >=2.14.1
+ license: GPL-2.0-only OR FTL
+ purls: []
+ size: 386739
+ timestamp: 1757945416744
+- conda: https://repo.prefix.dev/conda-forge/win-64/libfreetype6-2.14.1-hdbac1cb_0.conda
+ sha256: 223710600b1a5567163f7d66545817f2f144e4ef8f84e99e90f6b8a4e19cb7ad
+ md5: 6e7c5c5ab485057b5d07fd8188ba5c28
+ depends:
+ - 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
+ constrains:
+ - freetype >=2.14.1
+ license: GPL-2.0-only OR FTL
+ purls: []
+ size: 340264
+ timestamp: 1757946133889
+- conda: https://repo.prefix.dev/conda-forge/linux-64/libgcc-15.1.0-h767d61c_5.conda
+ sha256: 0caed73aac3966bfbf5710e06c728a24c6c138605121a3dacb2e03440e8baa6a
+ md5: 264fbfba7fb20acf3b29cde153e345ce
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - _openmp_mutex >=4.5
+ constrains:
+ - libgomp 15.1.0 h767d61c_5
+ - libgcc-ng ==15.1.0=*_5
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ purls: []
+ size: 824191
+ timestamp: 1757042543820
+- conda: https://repo.prefix.dev/conda-forge/win-64/libgcc-15.1.0-h1383e82_5.conda
+ sha256: 9b997baa85ba495c04e1b30f097b80420c02dcaca6441c4bf2c6bb4b2c5d2114
+ md5: c84381a01ede0e28d632fdbeea2debb2
+ depends:
+ - _openmp_mutex >=4.5
+ - libwinpthread >=12.0.0.r4.gg4f2fc60ca
+ constrains:
+ - libgomp 15.1.0 h1383e82_5
+ - msys2-conda-epoch <0.0a0
+ - libgcc-ng ==15.1.0=*_5
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ purls: []
+ size: 668284
+ timestamp: 1757042801517
+- conda: https://repo.prefix.dev/conda-forge/linux-64/libgcc-ng-15.1.0-h69a702a_5.conda
+ sha256: f54bb9c3be12b24be327f4c1afccc2969712e0b091cdfbd1d763fb3e61cda03f
+ md5: 069afdf8ea72504e48d23ae1171d951c
+ depends:
+ - libgcc 15.1.0 h767d61c_5
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ purls: []
+ size: 29187
+ timestamp: 1757042549554
+- conda: https://repo.prefix.dev/conda-forge/linux-64/libgfortran-15.1.0-h69a702a_5.conda
+ sha256: 4c1a526198d0d62441549fdfd668cc8e18e77609da1e545bdcc771dd8dc6a990
+ md5: 0c91408b3dec0b97e8a3c694845bd63b
+ depends:
+ - libgfortran5 15.1.0 hcea5267_5
+ constrains:
+ - libgfortran-ng ==15.1.0=*_5
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ purls: []
+ size: 29169
+ timestamp: 1757042575979
+- conda: https://repo.prefix.dev/conda-forge/linux-64/libgfortran5-15.1.0-hcea5267_5.conda
+ sha256: 9d06adc6d8e8187ddc1cad87525c690bc8202d8cb06c13b76ab2fc80a35ed565
+ md5: fbd4008644add05032b6764807ee2cba
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=15.1.0
+ constrains:
+ - libgfortran 15.1.0
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ purls: []
+ size: 1564589
+ timestamp: 1757042559498
+- conda: https://repo.prefix.dev/conda-forge/linux-64/libgomp-15.1.0-h767d61c_5.conda
+ sha256: 125051d51a8c04694d0830f6343af78b556dd88cc249dfec5a97703ebfb1832d
+ md5: dcd5ff1940cd38f6df777cac86819d60
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ purls: []
+ size: 447215
+ timestamp: 1757042483384
+- conda: https://repo.prefix.dev/conda-forge/win-64/libgomp-15.1.0-h1383e82_5.conda
+ sha256: 65fd558d8f3296e364b8ae694932a64642fdd26d8eb4cf7adf08941e449be926
+ md5: eae9a32a85152da8e6928a703a514d35
+ depends:
+ - libwinpthread >=12.0.0.r4.gg4f2fc60ca
+ constrains:
+ - msys2-conda-epoch <0.0a0
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ purls: []
+ size: 535560
+ timestamp: 1757042749206
+- conda: https://repo.prefix.dev/conda-forge/win-64/libhwloc-2.12.1-default_h64bd3f2_1002.conda
+ sha256: 266dfe151066c34695dbdc824ba1246b99f016115ef79339cbcf005ac50527c1
+ md5: b0cac6e5b06ca5eeb14b4f7cf908619f
+ depends:
+ - 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
+ license: BSD-3-Clause
+ purls: []
+ size: 2414731
+ timestamp: 1757624335056
+- conda: https://repo.prefix.dev/conda-forge/win-64/libiconv-1.18-hc1393d2_2.conda
+ sha256: 0dcdb1a5f01863ac4e8ba006a8b0dc1a02d2221ec3319b5915a1863254d7efa7
+ md5: 64571d1dd6cdcfa25d0664a5950fdaa2
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.3,<15
+ - vc14_runtime >=14.44.35208
+ license: LGPL-2.1-only
+ purls: []
+ size: 696926
+ timestamp: 1754909290005
+- conda: https://repo.prefix.dev/conda-forge/linux-64/libjpeg-turbo-3.1.0-hb9d3cd8_0.conda
+ sha256: 98b399287e27768bf79d48faba8a99a2289748c65cd342ca21033fab1860d4a4
+ md5: 9fa334557db9f63da6c9285fd2a48638
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ constrains:
+ - jpeg <0.0.0a
+ license: IJG AND BSD-3-Clause AND Zlib
+ purls: []
+ size: 628947
+ timestamp: 1745268527144
+- conda: https://repo.prefix.dev/conda-forge/win-64/libjpeg-turbo-3.1.0-h2466b09_0.conda
+ sha256: e61b0adef3028b51251124e43eb6edf724c67c0f6736f1628b02511480ac354e
+ md5: 7c51d27540389de84852daa1cdb9c63c
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ constrains:
+ - jpeg <0.0.0a
+ license: IJG AND BSD-3-Clause AND Zlib
+ purls: []
+ size: 838154
+ timestamp: 1745268437136
+- conda: https://repo.prefix.dev/conda-forge/linux-64/liblapack-3.9.0-35_h47877c9_openblas.conda
+ build_number: 35
+ sha256: 5aceb67704af9185084ccdc8d841845df498a9af52783b858ceacd3e5b9e7dd8
+ md5: aa0b36b71d44f74686f13b9bfabec891
+ depends:
+ - libblas 3.9.0 35_h4a7cf45_openblas
+ constrains:
+ - liblapacke 3.9.0 35*_openblas
+ - blas 2.135 openblas
+ - libcblas 3.9.0 35*_openblas
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 17180
+ timestamp: 1757446792311
+- conda: https://repo.prefix.dev/conda-forge/win-64/liblapack-3.9.0-35_hf9ab0e9_mkl.conda
+ build_number: 35
+ sha256: 56e0992fb58eed8f0d5fa165b8621fa150b84aa9af1467ea0a7a9bb7e2fced4f
+ md5: 0c6ed9d722cecda18f50f17fb3c30002
+ depends:
+ - libblas 3.9.0 35_h5709861_mkl
+ constrains:
+ - blas 2.135 mkl
+ - libcblas 3.9.0 35*_mkl
+ - liblapacke 3.9.0 35*_mkl
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 78485
+ timestamp: 1757003541803
+- conda: https://repo.prefix.dev/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_2.conda
+ sha256: f2591c0069447bbe28d4d696b7fcb0c5bd0b4ac582769b89addbcf26fb3430d8
+ md5: 1a580f7796c7bf6393fddb8bbbde58dc
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ constrains:
+ - xz 5.8.1.*
+ license: 0BSD
+ purls: []
+ size: 112894
+ timestamp: 1749230047870
+- conda: https://repo.prefix.dev/conda-forge/win-64/liblzma-5.8.1-h2466b09_2.conda
+ sha256: 55764956eb9179b98de7cc0e55696f2eff8f7b83fc3ebff5e696ca358bca28cc
+ md5: c15148b2e18da456f5108ccb5e411446
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ constrains:
+ - xz 5.8.1.*
+ license: 0BSD
+ purls: []
+ size: 104935
+ timestamp: 1749230611612
+- conda: https://repo.prefix.dev/conda-forge/linux-64/libnghttp2-1.67.0-had1ee68_0.conda
+ sha256: a4a7dab8db4dc81c736e9a9b42bdfd97b087816e029e221380511960ac46c690
+ md5: b499ce4b026493a13774bcf0f4c33849
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - c-ares >=1.34.5,<2.0a0
+ - libev >=4.33,<4.34.0a0
+ - libev >=4.33,<5.0a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.5.2,<4.0a0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 666600
+ timestamp: 1756834976695
+- conda: https://repo.prefix.dev/conda-forge/linux-64/libnsl-2.0.1-hb9d3cd8_1.conda
+ sha256: 927fe72b054277cde6cb82597d0fcf6baf127dcbce2e0a9d8925a68f1265eef5
+ md5: d864d34357c3b65a4b731f78c0801dc4
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ license: LGPL-2.1-only
+ license_family: GPL
+ purls: []
+ size: 33731
+ timestamp: 1750274110928
+- conda: https://repo.prefix.dev/conda-forge/linux-64/libopenblas-0.3.30-pthreads_h94d23a6_2.conda
+ sha256: 1b51d1f96e751dc945cc06f79caa91833b0c3326efe24e9b506bd64ef49fc9b0
+ md5: dfc5aae7b043d9f56ba99514d5e60625
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libgfortran
+ - libgfortran5 >=14.3.0
+ constrains:
+ - openblas >=0.3.30,<0.3.31.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 5938936
+ timestamp: 1755474342204
+- conda: https://repo.prefix.dev/conda-forge/linux-64/libpng-1.6.50-h421ea60_1.conda
+ sha256: e75a2723000ce3a4b9fd9b9b9ce77553556c93e475a4657db6ed01abc02ea347
+ md5: 7af8e91b0deb5f8e25d1a595dea79614
+ depends:
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libzlib >=1.3.1,<2.0a0
+ license: zlib-acknowledgement
+ purls: []
+ size: 317390
+ timestamp: 1753879899951
+- conda: https://repo.prefix.dev/conda-forge/win-64/libpng-1.6.50-h7351971_1.conda
+ sha256: e84b041f91c94841cb9b97952ab7f058d001d4a15ed4ce226ec5fdb267cc0fa5
+ md5: 3ae6e9f5c47c495ebeed95651518be61
+ depends:
+ - vc >=14.3,<15
+ - vc14_runtime >=14.44.35208
+ - ucrt >=10.0.20348.0
+ - vc >=14.3,<15
+ - vc14_runtime >=14.44.35208
+ - ucrt >=10.0.20348.0
+ - libzlib >=1.3.1,<2.0a0
+ license: zlib-acknowledgement
+ purls: []
+ size: 382709
+ timestamp: 1753879944850
+- conda: https://repo.prefix.dev/conda-forge/linux-64/libsodium-1.0.20-h4ab18f5_0.conda
+ sha256: 0105bd108f19ea8e6a78d2d994a6d4a8db16d19a41212070d2d1d48a63c34161
+ md5: a587892d3c13b6621a6091be690dbca2
+ depends:
+ - libgcc-ng >=12
+ license: ISC
+ size: 205978
+ timestamp: 1716828628198
+- conda: https://repo.prefix.dev/conda-forge/win-64/libsodium-1.0.20-hc70643c_0.conda
+ sha256: 7bcb3edccea30f711b6be9601e083ecf4f435b9407d70fc48fbcf9e5d69a0fc6
+ md5: 198bb594f202b205c7d18b936fa4524f
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: ISC
+ size: 202344
+ timestamp: 1716828757533
+- conda: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.50.4-h0c1763c_0.conda
+ sha256: 6d9c32fc369af5a84875725f7ddfbfc2ace795c28f246dc70055a79f9b2003da
+ md5: 0b367fad34931cb79e0d6b7e5c06bb1c
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libzlib >=1.3.1,<2.0a0
+ license: blessing
+ purls: []
+ size: 932581
+ timestamp: 1753948484112
+- conda: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.50.4-hf5d6505_0.conda
+ sha256: 5dc4f07b2d6270ac0c874caec53c6984caaaa84bc0d3eb593b0edf3dc8492efa
+ md5: ccb20d946040f86f0c05b644d5eadeca
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.3,<15
+ - vc14_runtime >=14.44.35208
+ license: blessing
+ purls: []
+ size: 1288499
+ timestamp: 1753948889360
+- conda: https://repo.prefix.dev/conda-forge/linux-64/libssh2-1.11.1-hcf80075_0.conda
+ sha256: fa39bfd69228a13e553bd24601332b7cfeb30ca11a3ca50bb028108fe90a7661
+ md5: eecce068c7e4eddeb169591baac20ac4
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.5.0,<4.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 304790
+ timestamp: 1745608545575
+- conda: https://repo.prefix.dev/conda-forge/win-64/libssh2-1.11.1-h9aa295b_0.conda
+ sha256: cbdf93898f2e27cefca5f3fe46519335d1fab25c4ea2a11b11502ff63e602c09
+ md5: 9dce2f112bfd3400f4f432b3d0ac07b2
+ depends:
+ - 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
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 292785
+ timestamp: 1745608759342
+- conda: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-15.1.0-h8f9b012_5.conda
+ sha256: 0f5f61cab229b6043541c13538d75ce11bd96fb2db76f94ecf81997b1fde6408
+ md5: 4e02a49aaa9d5190cb630fa43528fbe6
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc 15.1.0 h767d61c_5
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ purls: []
+ size: 3896432
+ timestamp: 1757042571458
+- conda: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-15.1.0-h4852527_5.conda
+ sha256: 7b8cabbf0ab4fe3581ca28fe8ca319f964078578a51dd2ca3f703c1d21ba23ff
+ md5: 8bba50c7f4679f08c861b597ad2bda6b
+ depends:
+ - libstdcxx 15.1.0 h8f9b012_5
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ purls: []
+ size: 29233
+ timestamp: 1757042603319
+- conda: https://repo.prefix.dev/conda-forge/linux-64/libtiff-4.7.0-h8261f1e_6.conda
+ sha256: c62694cd117548d810d2803da6d9063f78b1ffbf7367432c5388ce89474e9ebe
+ md5: b6093922931b535a7ba566b6f384fbe6
+ depends:
+ - __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
+ license: HPND
+ purls: []
+ size: 433078
+ timestamp: 1755011934951
+- conda: https://repo.prefix.dev/conda-forge/win-64/libtiff-4.7.0-h550210a_6.conda
+ sha256: fd27821c8cfc425826f13760c3263d7b3b997c5372234cefa1586ff384dcc989
+ md5: 72d45aa52ebca91aedb0cfd9eac62655
+ depends:
+ - 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
+ license: HPND
+ purls: []
+ size: 983988
+ timestamp: 1755012056987
+- conda: https://repo.prefix.dev/conda-forge/linux-64/libuuid-2.41.1-he9a06e4_0.conda
+ sha256: 776e28735cee84b97e4d05dd5d67b95221a3e2c09b8b13e3d6dbe6494337d527
+ md5: af930c65e9a79a3423d6d36e265cef65
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 37087
+ timestamp: 1757334557450
+- conda: https://repo.prefix.dev/conda-forge/linux-64/libwebp-base-1.6.0-hd42ef1d_0.conda
+ sha256: 3aed21ab28eddffdaf7f804f49be7a7d701e8f0e46c856d801270b470820a37b
+ md5: aea31d2e5b1091feca96fcfe945c3cf9
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ constrains:
+ - libwebp 1.6.0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 429011
+ timestamp: 1752159441324
+- conda: https://repo.prefix.dev/conda-forge/win-64/libwebp-base-1.6.0-h4d5522a_0.conda
+ sha256: 7b6316abfea1007e100922760e9b8c820d6fc19df3f42fb5aca684cfacb31843
+ md5: f9bbae5e2537e3b06e0f7310ba76c893
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.3,<15
+ - vc14_runtime >=14.44.35208
+ constrains:
+ - libwebp 1.6.0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 279176
+ timestamp: 1752159543911
+- conda: https://repo.prefix.dev/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h57928b3_9.conda
+ sha256: 373f2973b8a358528b22be5e8d84322c165b4c5577d24d94fd67ad1bb0a0f261
+ md5: 08bfa5da6e242025304b206d152479ef
+ depends:
+ - ucrt
+ constrains:
+ - pthreads-win32 <0.0a0
+ - msys2-conda-epoch <0.0a0
+ license: MIT AND BSD-3-Clause-Clear
+ purls: []
+ size: 35794
+ timestamp: 1737099561703
+- conda: https://repo.prefix.dev/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda
+ sha256: 666c0c431b23c6cec6e492840b176dde533d48b7e6fb8883f5071223433776aa
+ md5: 92ed62436b625154323d40d5f2f11dd7
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - pthread-stubs
+ - xorg-libxau >=1.0.11,<2.0a0
+ - xorg-libxdmcp
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 395888
+ timestamp: 1727278577118
+- conda: https://repo.prefix.dev/conda-forge/win-64/libxcb-1.17.0-h0e4246c_0.conda
+ sha256: 08dec73df0e161c96765468847298a420933a36bc4f09b50e062df8793290737
+ md5: a69bbf778a462da324489976c84cfc8c
+ depends:
+ - libgcc >=13
+ - libwinpthread >=12.0.0.r4.gg4f2fc60ca
+ - pthread-stubs
+ - ucrt >=10.0.20348.0
+ - xorg-libxau >=1.0.11,<2.0a0
+ - xorg-libxdmcp
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 1208687
+ timestamp: 1727279378819
+- conda: https://repo.prefix.dev/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda
+ sha256: 6ae68e0b86423ef188196fff6207ed0c8195dd84273cb5623b85aa08033a410c
+ md5: 5aa797f8787fe7a17d1b0821485b5adc
+ depends:
+ - libgcc-ng >=12
+ license: LGPL-2.1-or-later
+ purls: []
+ size: 100393
+ timestamp: 1702724383534
+- conda: https://repo.prefix.dev/conda-forge/win-64/libxml2-2.15.0-ha29bfb0_0.conda
+ sha256: c3c2c74bd917d83b26c102b18bde97759c23f24e0260beb962acf7385627fc38
+ md5: 5262552eb2f0d0b443adcfa265d97f0a
+ depends:
+ - icu >=75.1,<76.0a0
+ - libiconv >=1.18,<2.0a0
+ - liblzma >=5.8.1,<6.0a0
+ - libxml2-16 2.15.0 h06f855e_0
+ - libzlib >=1.3.1,<2.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.3,<15
+ - vc14_runtime >=14.44.35208
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 42985
+ timestamp: 1757953736703
+- conda: https://repo.prefix.dev/conda-forge/win-64/libxml2-16-2.15.0-h06f855e_0.conda
+ sha256: 15337581264464842ff28f616422b786161bee0169610ff292e0ea75fa78dba8
+ md5: a1071825a90769083fce8dbcefcccd65
+ depends:
+ - icu >=75.1,<76.0a0
+ - libiconv >=1.18,<2.0a0
+ - liblzma >=5.8.1,<6.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.3,<15
+ - vc14_runtime >=14.44.35208
+ constrains:
+ - libxml2 2.15.0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 512772
+ timestamp: 1757953703099
+- conda: https://repo.prefix.dev/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda
+ sha256: d4bfe88d7cb447768e31650f06257995601f89076080e76df55e3112d4e47dc4
+ md5: edb0dca6bc32e4f4789199455a1dbeb8
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ constrains:
+ - zlib 1.3.1 *_2
+ license: Zlib
+ license_family: Other
+ purls: []
+ size: 60963
+ timestamp: 1727963148474
+- conda: https://repo.prefix.dev/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda
+ sha256: ba945c6493449bed0e6e29883c4943817f7c79cbff52b83360f7b341277c6402
+ md5: 41fbfac52c601159df6c01f875de31b9
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ constrains:
+ - zlib 1.3.1 *_2
+ license: Zlib
+ license_family: Other
+ purls: []
+ size: 55476
+ timestamp: 1727963768015
+- conda: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-20.1.8-hfa2b4ca_2.conda
+ sha256: 8970b7f9057a1c2c18bfd743c6f5ce73b86197d7724423de4fa3d03911d5874b
+ md5: 2dc2edf349464c8b83a576175fc2ad42
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.3,<15
+ - vc14_runtime >=14.44.35208
+ constrains:
+ - intel-openmp <0.0a0
+ - openmp 20.1.8|20.1.8.*
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: APACHE
+ purls: []
+ size: 344490
+ timestamp: 1756145011384
+- conda: https://repo.prefix.dev/conda-forge/linux-64/markupsafe-3.0.2-py310h89163eb_1.conda
+ sha256: 0bed20ec27dcbcaf04f02b2345358e1161fb338f8423a4ada1cf0f4d46918741
+ md5: 8ce3f0332fd6de0d737e2911d329523f
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python >=3.10,<3.11.0a0
+ - python_abi 3.10.* *_cp310
+ constrains:
+ - jinja2 >=3.0.0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 23091
+ timestamp: 1733219814479
+- conda: https://repo.prefix.dev/conda-forge/win-64/markupsafe-3.0.2-py310h38315fa_1.conda
+ sha256: deb8505b7ef76d363174d133e2ff814ae75b91ac4c3ae5550a7686897392f4d0
+ md5: 79dfc050ae5a7dd4e63e392c984e2576
+ depends:
+ - python >=3.10,<3.11.0a0
+ - python_abi 3.10.* *_cp310
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ constrains:
+ - jinja2 >=3.0.0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 25941
+ timestamp: 1733220087179
+- conda: https://repo.prefix.dev/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_1.conda
+ sha256: 69b7dc7131703d3d60da9b0faa6dd8acbf6f6c396224cf6aef3e855b8c0c41c6
+ md5: af6ab708897df59bd6e7283ceab1b56b
+ depends:
+ - python >=3.9
+ - traitlets
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/matplotlib-inline?source=hash-mapping
+ size: 14467
+ timestamp: 1733417051523
+- conda: https://repo.prefix.dev/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda
+ sha256: 9b0037171dad0100f0296699a11ae7d355237b55f42f9094aebc0f41512d96a1
+ md5: 827064ddfe0de2917fb29f1da4f8f533
+ depends:
+ - python >=3.9
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/mccabe?source=hash-mapping
+ size: 12934
+ timestamp: 1733216573915
+- conda: https://repo.prefix.dev/conda-forge/noarch/mistune-3.1.4-pyhcf101f3_0.conda
+ sha256: 609ea628ace5c6cdbdce772704e6cb159ead26969bb2f386ca1757632b0f74c6
+ md5: f5a4d548d1d3bdd517260409fc21e205
+ depends:
+ - python >=3.10
+ - typing_extensions
+ - python
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 72996
+ timestamp: 1756495311698
+- conda: https://repo.prefix.dev/conda-forge/win-64/mkl-2024.2.2-h57928b3_16.conda
+ sha256: ce841e7c3898764154a9293c0f92283c1eb28cdacf7a164c94b632a6af675d91
+ md5: 5cddc979c74b90cf5e5cda4f97d5d8bb
+ depends:
+ - llvm-openmp >=20.1.8
+ - tbb 2021.*
+ license: LicenseRef-IntelSimplifiedSoftwareOct2022
+ license_family: Proprietary
+ purls: []
+ size: 103088799
+ timestamp: 1753975600547
+- conda: https://repo.prefix.dev/conda-forge/noarch/nbclient-0.10.2-pyhd8ed1ab_0.conda
+ sha256: a20cff739d66c2f89f413e4ba4c6f6b59c50d5c30b5f0d840c13e8c9c2df9135
+ md5: 6bb0d77277061742744176ab555b723c
+ depends:
+ - jupyter_client >=6.1.12
+ - jupyter_core >=4.12,!=5.0.*
+ - nbformat >=5.1
+ - python >=3.8
+ - traitlets >=5.4
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 28045
+ timestamp: 1734628936013
+- conda: https://repo.prefix.dev/conda-forge/noarch/nbconvert-7.16.6-hb482800_0.conda
+ sha256: 5480b7e05bf3079fcb7357a5a15a96c3a1649cc1371d0c468c806898a7e53088
+ md5: aa90ea40c80d4bd3da35cb17ed668f22
+ depends:
+ - nbconvert-core ==7.16.6 pyh29332c3_0
+ - nbconvert-pandoc ==7.16.6 hed9df3c_0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 5241
+ timestamp: 1738067871725
+- conda: https://repo.prefix.dev/conda-forge/noarch/nbconvert-core-7.16.6-pyh29332c3_0.conda
+ sha256: dcccb07c5a1acb7dc8be94330e62d54754c0e9c9cb2bb6865c8e3cfe44cf5a58
+ md5: d24beda1d30748afcc87c429454ece1b
+ depends:
+ - beautifulsoup4
+ - bleach-with-css !=5.0.0
+ - defusedxml
+ - importlib-metadata >=3.6
+ - jinja2 >=3.0
+ - jupyter_core >=4.7
+ - jupyterlab_pygments
+ - markupsafe >=2.0
+ - mistune >=2.0.3,<4
+ - nbclient >=0.5.0
+ - nbformat >=5.7
+ - packaging
+ - pandocfilters >=1.4.1
+ - pygments >=2.4.1
+ - python >=3.9
+ - traitlets >=5.1
+ - python
+ constrains:
+ - pandoc >=2.9.2,<4.0.0
+ - nbconvert ==7.16.6 *_0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 200601
+ timestamp: 1738067871724
+- conda: https://repo.prefix.dev/conda-forge/noarch/nbconvert-pandoc-7.16.6-hed9df3c_0.conda
+ sha256: 1e8923f1557c2ddb7bba915033cfaf8b8c1b7462c745172458102c11caee1002
+ md5: 5b0afb6c52e74a7eca2cf809a874acf4
+ depends:
+ - nbconvert-core ==7.16.6 pyh29332c3_0
+ - pandoc
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 5722
+ timestamp: 1738067871725
+- conda: https://repo.prefix.dev/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_1.conda
+ sha256: 7a5bd30a2e7ddd7b85031a5e2e14f290898098dc85bea5b3a5bf147c25122838
+ md5: bbe1963f1e47f594070ffe87cdf612ea
+ depends:
+ - jsonschema >=2.6
+ - jupyter_core >=4.12,!=5.0.*
+ - python >=3.9
+ - python-fastjsonschema >=2.15
+ - traitlets >=5.1
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 100945
+ timestamp: 1733402844974
+- conda: https://repo.prefix.dev/conda-forge/noarch/nbsphinx-0.9.7-pyhd8ed1ab_0.conda
+ sha256: eb99d3f00e6d1fd2b07bb20a721a64deab97bccf38d9abc1d4a93e389daa9fb3
+ md5: 9a3844478c73b5fe288426d001453261
+ depends:
+ - docutils
+ - jinja2
+ - nbconvert
+ - nbformat
+ - python >=3.6
+ - sphinx
+ - traitlets
+ license: MIT
+ license_family: MIT
+ size: 34324
+ timestamp: 1741075538022
+- conda: https://repo.prefix.dev/conda-forge/noarch/nbstripout-0.8.1-pyhd8ed1ab_0.conda
+ sha256: 45e7972348924fe5fe6bddf3b72ec79b679e4dfee1c1731d4fd9692fba13ceb4
+ md5: 35e9b8d735ce9ee57686ec48556b1e51
+ depends:
+ - nbformat
+ - python >=3.8
+ license: MIT
+ license_family: MIT
+ size: 20982
+ timestamp: 1731877844796
+- conda: https://repo.prefix.dev/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda
+ sha256: 3fde293232fa3fca98635e1167de6b7c7fda83caf24b9d6c91ec9eefb4f4d586
+ md5: 47e340acb35de30501a76c7c799c41d7
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ license: X11 AND BSD-3-Clause
+ purls: []
+ size: 891641
+ timestamp: 1738195959188
+- conda: https://repo.prefix.dev/conda-forge/linux-64/numpy-1.26.4-py310hb13e2d6_0.conda
+ sha256: 028fe2ea8e915a0a032b75165f11747770326f3d767e642880540c60a3256425
+ md5: 6593de64c935768b6bad3e19b3e978be
+ depends:
+ - 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.* *_cp310
+ constrains:
+ - numpy-base <0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/numpy?source=hash-mapping
+ size: 7009070
+ timestamp: 1707225917496
+- conda: https://repo.prefix.dev/conda-forge/linux-64/numpy-1.26.4-py311h64a7726_0.conda
+ sha256: 3f4365e11b28e244c95ba8579942b0802761ba7bb31c026f50d1a9ea9c728149
+ md5: a502d7aad449a1206efb366d6a12c52d
+ depends:
+ - 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.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ constrains:
+ - numpy-base <0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/numpy?source=hash-mapping
+ size: 8065890
+ timestamp: 1707225944355
+- conda: https://repo.prefix.dev/conda-forge/linux-64/numpy-1.26.4-py312heda63a1_0.conda
+ sha256: fe3459c75cf84dcef6ef14efcc4adb0ade66038ddd27cadb894f34f4797687d8
+ md5: d8285bea2a350f63fab23bf460221f3f
+ depends:
+ - 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.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ constrains:
+ - numpy-base <0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/numpy?source=hash-mapping
+ size: 7484186
+ timestamp: 1707225809722
+- conda: https://repo.prefix.dev/conda-forge/win-64/numpy-1.26.4-py310hf667824_0.conda
+ sha256: 20ca447a8f840c01961f2bdf0847fc7b7785a62968e867d7aa4ca8a66d70f9ad
+ md5: 93e881c391880df90e74e43a4b67c16d
+ depends:
+ - 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.* *_cp310
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ constrains:
+ - numpy-base <0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/numpy?source=hash-mapping
+ size: 5977469
+ timestamp: 1707226445438
+- conda: https://repo.prefix.dev/conda-forge/win-64/numpy-1.26.4-py311h0b4df5a_0.conda
+ sha256: 14116e72107de3089cc58119a5ce5905c22abf9a715c9fe41f8ac14db0992326
+ md5: 7b240edd44fd7a0991aa409b07cee776
+ depends:
+ - 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.* *_cp311
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ constrains:
+ - numpy-base <0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/numpy?source=hash-mapping
+ size: 7104093
+ timestamp: 1707226459646
+- conda: https://repo.prefix.dev/conda-forge/win-64/numpy-1.26.4-py312h8753938_0.conda
+ sha256: 73570817a5109d396b4ebbe5124a89525959269fd33fa33fd413700289fbe0ef
+ md5: f9ac74c3b07c396014434aca1e58d362
+ depends:
+ - 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_abi 3.12.* *_cp312
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ constrains:
+ - numpy-base <0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/numpy?source=hash-mapping
+ size: 6495445
+ timestamp: 1707226412944
+- conda: https://repo.prefix.dev/conda-forge/noarch/numpydoc-1.9.0-pyhe01879c_1.conda
+ sha256: 9e1f3dda737ac9aeec3c245c5d856d0268c4f64a5293c094298d74bb55e2b165
+ md5: 66f9ba52d846feffa1c5d62522324b4f
+ depends:
+ - python >=3.9
+ - sphinx >=6
+ - tomli >=1.1.0
+ - python
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 60220
+ timestamp: 1750861325361
+- conda: https://repo.prefix.dev/conda-forge/linux-64/openjpeg-2.5.3-h55fea9a_1.conda
+ sha256: 0b7396dacf988f0b859798711b26b6bc9c6161dca21bacfd778473da58730afa
+ md5: 01243c4aaf71bde0297966125aea4706
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libpng >=1.6.50,<1.7.0a0
+ - libstdcxx >=14
+ - libtiff >=4.7.0,<4.8.0a0
+ - libzlib >=1.3.1,<2.0a0
+ license: BSD-2-Clause
+ license_family: BSD
+ purls: []
+ size: 357828
+ timestamp: 1754297886899
+- conda: https://repo.prefix.dev/conda-forge/win-64/openjpeg-2.5.3-h24db6dd_1.conda
+ sha256: c29cb1641bc5cfc2197e9b7b436f34142be4766dd2430a937b48b7474935aa55
+ md5: 25f45acb1a234ad1c9b9a20e1e6c559e
+ depends:
+ - libpng >=1.6.50,<1.7.0a0
+ - libtiff >=4.7.0,<4.8.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.3,<15
+ - vc14_runtime >=14.44.35208
+ license: BSD-2-Clause
+ license_family: BSD
+ purls: []
+ size: 245076
+ timestamp: 1754298075628
+- conda: https://repo.prefix.dev/conda-forge/linux-64/openssl-3.5.2-h26f9b46_0.conda
+ sha256: c9f54d4e8212f313be7b02eb962d0cb13a8dae015683a403d3accd4add3e520e
+ md5: ffffb341206dd0dab0c36053c048d621
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - ca-certificates
+ - libgcc >=14
+ license: Apache-2.0
+ license_family: Apache
+ purls: []
+ size: 3128847
+ timestamp: 1754465526100
+- conda: https://repo.prefix.dev/conda-forge/win-64/openssl-3.5.2-h725018a_0.conda
+ sha256: 2413f3b4606018aea23acfa2af3c4c46af786739ab4020422e9f0c2aec75321b
+ md5: 150d3920b420a27c0848acca158f94dc
+ depends:
+ - ca-certificates
+ - ucrt >=10.0.20348.0
+ - vc >=14.3,<15
+ - vc14_runtime >=14.44.35208
+ license: Apache-2.0
+ license_family: Apache
+ purls: []
+ size: 9275175
+ timestamp: 1754467904482
+- conda: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda
+ sha256: 289861ed0c13a15d7bbb408796af4de72c2fe67e2bcb0de98f4c3fce259d7991
+ md5: 58335b26c38bf4a20f399384c33cbcf9
+ depends:
+ - python >=3.8
+ - python
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/packaging?source=hash-mapping
+ size: 62477
+ timestamp: 1745345660407
+- conda: https://repo.prefix.dev/conda-forge/linux-64/pandoc-3.8-ha770c72_0.conda
+ sha256: 350ae6d3a222d8d1b2ccd9d55076f9b11756973ae17710ab0e8eea65bb092e50
+ md5: 54043da44c7f3ede07619d68618ac28e
+ license: GPL-2.0-or-later
+ license_family: GPL
+ size: 21913483
+ timestamp: 1757248713314
+- conda: https://repo.prefix.dev/conda-forge/win-64/pandoc-3.8-h57928b3_0.conda
+ sha256: d720c2358167a5c14f17c222af8b2f59a004c260b67434cb6ec3cf814d652ce0
+ md5: 26bdee80bf450ab853cda636486f5cfe
+ license: GPL-2.0-or-later
+ license_family: GPL
+ size: 26054460
+ timestamp: 1757248819019
+- conda: https://repo.prefix.dev/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2
+ sha256: 2bb9ba9857f4774b85900c2562f7e711d08dd48e2add9bee4e1612fbee27e16f
+ md5: 457c2c8c08e54905d6954e79cb5b5db9
+ depends:
+ - python !=3.0,!=3.1,!=3.2,!=3.3
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 11627
+ timestamp: 1631603397334
+- conda: https://repo.prefix.dev/conda-forge/noarch/parso-0.8.5-pyhcf101f3_0.conda
+ sha256: 30de7b4d15fbe53ffe052feccde31223a236dae0495bab54ab2479de30b2990f
+ md5: a110716cdb11cf51482ff4000dc253d7
+ depends:
+ - python >=3.10
+ - python
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/parso?source=hash-mapping
+ size: 81562
+ timestamp: 1755974222274
+- conda: https://repo.prefix.dev/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_1.conda
+ sha256: 202af1de83b585d36445dc1fda94266697341994d1a3328fabde4989e1b3d07a
+ md5: d0d408b1f18883a944376da5cf8101ea
+ depends:
+ - ptyprocess >=0.5
+ - python >=3.9
+ license: ISC
+ purls:
+ - pkg:pypi/pexpect?source=hash-mapping
+ size: 53561
+ timestamp: 1733302019362
+- conda: https://repo.prefix.dev/conda-forge/noarch/pickleshare-0.7.5-pyhd8ed1ab_1004.conda
+ sha256: e2ac3d66c367dada209fc6da43e645672364b9fd5f9d28b9f016e24b81af475b
+ md5: 11a9d1d09a3615fc07c3faf79bc0b943
+ depends:
+ - python >=3.9
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/pickleshare?source=hash-mapping
+ size: 11748
+ timestamp: 1733327448200
+- conda: https://repo.prefix.dev/conda-forge/linux-64/pillow-10.3.0-py310hebfe307_1.conda
+ sha256: adb1d874246c47cc8972894b13eeb70ef1aab067f51e615f4976cfe9c3ee3208
+ md5: 8d357fd769e0e1a957f5916bdc8b1fa2
+ depends:
+ - 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.* *_cp310
+ - tk >=8.6.13,<8.7.0a0
+ license: HPND
+ purls:
+ - pkg:pypi/pillow?source=hash-mapping
+ size: 40988858
+ timestamp: 1718833852602
+- conda: https://repo.prefix.dev/conda-forge/linux-64/pillow-10.3.0-py311h82a398c_1.conda
+ sha256: ce420bfba7ed8641aa376b4446e16299fcb37113c27e9655503fd5d517cb7fcd
+ md5: 4dc0b6fcf0bc041a1bfb763fa6e5302f
+ depends:
+ - 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.* *_cp311
+ - tk >=8.6.13,<8.7.0a0
+ license: HPND
+ purls:
+ - pkg:pypi/pillow?source=hash-mapping
+ size: 42096997
+ timestamp: 1718833935194
+- conda: https://repo.prefix.dev/conda-forge/linux-64/pillow-10.3.0-py312h287a98d_1.conda
+ sha256: e1a2426f23535fc15e577d799685229a93117b645734e5cca60597bb23cef09e
+ md5: b1325cda3f250f9f842180607054e6ed
+ depends:
+ - 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
+ - python_abi 3.12.* *_cp312
+ - tk >=8.6.13,<8.7.0a0
+ license: HPND
+ purls:
+ - pkg:pypi/pillow?source=hash-mapping
+ size: 41702764
+ timestamp: 1718833930009
+- conda: https://repo.prefix.dev/conda-forge/win-64/pillow-10.3.0-py310h3e38d90_1.conda
+ sha256: 50a0d0f8de51c47f8ca0820f0ebfc7730aec4a7a98069347a3395b21b67f7e21
+ md5: ee35afda8b2154e7396fae5ca7fbea6b
+ depends:
+ - 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.* *_cp310
+ - tk >=8.6.13,<8.7.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: HPND
+ purls:
+ - pkg:pypi/pillow?source=hash-mapping
+ size: 41586648
+ timestamp: 1718834463282
+- conda: https://repo.prefix.dev/conda-forge/win-64/pillow-10.3.0-py311h5592be9_1.conda
+ sha256: 5404b51b1c93180940e0f8340e905d435bf187224512bab2993c5b7f30aa0615
+ md5: 034f612fd103c2c1058538533598ce4f
+ depends:
+ - 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.* *_cp311
+ - tk >=8.6.13,<8.7.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: HPND
+ purls:
+ - pkg:pypi/pillow?source=hash-mapping
+ size: 41963513
+ timestamp: 1718834441443
+- conda: https://repo.prefix.dev/conda-forge/win-64/pillow-10.3.0-py312h381445a_1.conda
+ sha256: 2bd6e58a0630fdb9a52f532ce582907babc725930e1ba784c7cd74063f28d073
+ md5: 04c1de8505791c12db1a0374f12e6e01
+ depends:
+ - 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
+ - python_abi 3.12.* *_cp312
+ - tk >=8.6.13,<8.7.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: HPND
+ purls:
+ - pkg:pypi/pillow?source=hash-mapping
+ size: 42144644
+ timestamp: 1718834401017
+- conda: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.4.0-pyhcf101f3_0.conda
+ sha256: dfe0fa6e351d2b0cef95ac1a1533d4f960d3992f9e0f82aeb5ec3623a699896b
+ md5: cc9d9a3929503785403dbfad9f707145
+ depends:
+ - python >=3.10
+ - python
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/platformdirs?source=compressed-mapping
+ size: 23653
+ timestamp: 1756227402815
+- conda: https://repo.prefix.dev/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda
+ sha256: a8eb555eef5063bbb7ba06a379fa7ea714f57d9741fe0efdb9442dbbc2cccbcc
+ md5: 7da7ccd349dbf6487a7778579d2bb971
+ depends:
+ - python >=3.9
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/pluggy?source=hash-mapping
+ size: 24246
+ timestamp: 1747339794916
+- conda: https://repo.prefix.dev/conda-forge/noarch/prompt-toolkit-3.0.52-pyha770c72_0.conda
+ sha256: 4817651a276016f3838957bfdf963386438c70761e9faec7749d411635979bae
+ md5: edb16f14d920fb3faf17f5ce582942d6
+ depends:
+ - python >=3.10
+ - wcwidth
+ constrains:
+ - prompt_toolkit 3.0.52
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/prompt-toolkit?source=hash-mapping
+ size: 273927
+ timestamp: 1756321848365
+- conda: https://repo.prefix.dev/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda
+ sha256: 9c88f8c64590e9567c6c80823f0328e58d3b1efb0e1c539c0315ceca764e0973
+ md5: b3c17d95b5a10c6e64a21fa17573e70e
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 8252
+ timestamp: 1726802366959
+- conda: https://repo.prefix.dev/conda-forge/win-64/pthread-stubs-0.4-h0e40799_1002.conda
+ sha256: 7e446bafb4d692792310ed022fe284e848c6a868c861655a92435af7368bae7b
+ md5: 3c8f2573569bb816483e5cf57efbbe29
+ depends:
+ - libgcc >=13
+ - libwinpthread >=12.0.0.r4.gg4f2fc60ca
+ - ucrt >=10.0.20348.0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 9389
+ timestamp: 1726802555076
+- conda: https://repo.prefix.dev/conda-forge/noarch/ptyprocess-0.7.0-pyhd8ed1ab_1.conda
+ sha256: a7713dfe30faf17508ec359e0bc7e0983f5d94682492469bd462cdaae9c64d83
+ md5: 7d9daffbb8d8e0af0f769dbbcd173a54
+ depends:
+ - python >=3.9
+ license: ISC
+ purls:
+ - pkg:pypi/ptyprocess?source=hash-mapping
+ size: 19457
+ timestamp: 1733302371990
+- conda: https://repo.prefix.dev/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda
+ sha256: 71bd24600d14bb171a6321d523486f6a06f855e75e547fa0cb2a0953b02047f0
+ md5: 3bfdfb8dbcdc4af1ae3f9a8eb3948f04
+ depends:
+ - python >=3.9
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/pure-eval?source=hash-mapping
+ size: 16668
+ timestamp: 1733569518868
+- conda: https://repo.prefix.dev/conda-forge/noarch/pybtex-0.25.1-pyhd8ed1ab_0.conda
+ sha256: 3053895e08ce56923e48eea7d1c07a6d8bf09948d1e69a21ae7ab9e459b0a227
+ md5: 9c25a850410220d31085173fbfdfa191
+ depends:
+ - importlib-metadata
+ - latexcodec >=1.0.4
+ - python >=3.9
+ - pyyaml >=3.01
+ - setuptools
+ license: MIT
+ license_family: MIT
+ size: 73965
+ timestamp: 1751015096707
+- conda: https://repo.prefix.dev/conda-forge/linux-64/pybtex-docutils-1.0.3-py310hff52083_2.conda
+ sha256: c19926680a369df0a45f61bb1762e3e722afc9e28b7f50a4dc053435a322dbdc
+ md5: e9a2e0883b856ff34cea07ff02f702d3
+ depends:
+ - docutils >=0.14
+ - pybtex >=0.16
+ - python >=3.10,<3.11.0a0
+ - python_abi 3.10.* *_cp310
+ - setuptools
+ license: MIT
+ license_family: MIT
+ size: 15051
+ timestamp: 1725691800447
+- conda: https://repo.prefix.dev/conda-forge/win-64/pybtex-docutils-1.0.3-py310h5588dad_2.conda
+ sha256: 1a6a996ff1bfb607f88d71dbbee0df3cfe71ca135f7d42583f0e548b5e55d9d2
+ md5: 0caf4a3d5cf845e8d693e7f9bc8a7182
+ depends:
+ - docutils >=0.14
+ - pybtex >=0.16
+ - python >=3.10,<3.11.0a0
+ - python_abi 3.10.* *_cp310
+ - setuptools
+ license: MIT
+ license_family: MIT
+ size: 15416
+ timestamp: 1725692017324
+- conda: https://repo.prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda
+ sha256: 79db7928d13fab2d892592223d7570f5061c192f27b9febd1a418427b719acc6
+ md5: 12c566707c80111f9799308d9e265aef
+ depends:
+ - python >=3.9
+ - python
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 110100
+ timestamp: 1733195786147
+- conda: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.11.9-pyh3cfb1c2_0.conda
+ sha256: c3ec0c2202d109cdd5cac008bf7a42b67d4aa3c4cc14b4ee3e00a00541eabd88
+ md5: a6db60d33fe1ad50314a46749267fdfc
+ depends:
+ - annotated-types >=0.6.0
+ - pydantic-core 2.33.2
+ - python >=3.10
+ - typing-extensions >=4.6.1
+ - typing-inspection >=0.4.0
+ - typing_extensions >=4.12.2
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/pydantic?source=compressed-mapping
+ size: 307176
+ timestamp: 1757881787287
+- conda: https://repo.prefix.dev/conda-forge/linux-64/pydantic-core-2.33.2-py310hbcd0ec0_0.conda
+ sha256: 8da9aed7f21d775a7c91db6c9f95a0e00cae2d132709d5dc608c2e6828f9344b
+ md5: 6b210a72e9e1b1cb6d30b266b84ca993
+ depends:
+ - python
+ - typing-extensions >=4.6.0,!=4.7.0
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python_abi 3.10.* *_cp310
+ constrains:
+ - __glibc >=2.17
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/pydantic-core?source=hash-mapping
+ size: 1892885
+ timestamp: 1746625312783
+- conda: https://repo.prefix.dev/conda-forge/linux-64/pydantic-core-2.33.2-py311hdae7d1d_0.conda
+ sha256: b48e5abb6debae4f559b08cdbaf0736c7806adc00c106ced2c98a622b7081d8f
+ md5: 484d0d62d4b069d5372680309fc5f00c
+ depends:
+ - python
+ - typing-extensions >=4.6.0,!=4.7.0
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python_abi 3.11.* *_cp311
+ constrains:
+ - __glibc >=2.17
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/pydantic-core?source=hash-mapping
+ size: 1898139
+ timestamp: 1746625319478
+- conda: https://repo.prefix.dev/conda-forge/linux-64/pydantic-core-2.33.2-py312h680f630_0.conda
+ sha256: 4d14d7634c8f351ff1e63d733f6bb15cba9a0ec77e468b0de9102014a4ddc103
+ md5: cfbd96e5a0182dfb4110fc42dda63e57
+ depends:
+ - python
+ - typing-extensions >=4.6.0,!=4.7.0
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ constrains:
+ - __glibc >=2.17
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/pydantic-core?source=hash-mapping
+ size: 1890081
+ timestamp: 1746625309715
+- conda: https://repo.prefix.dev/conda-forge/win-64/pydantic-core-2.33.2-py310hed05c55_0.conda
+ sha256: 657b2097148533aa9665678b85c94bb3cf4df015605f233f374243d4697ccd03
+ md5: 59065d98ab806083a5432d92073f1c75
+ depends:
+ - python
+ - typing-extensions >=4.6.0,!=4.7.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ - ucrt >=10.0.20348.0
+ - python_abi 3.10.* *_cp310
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/pydantic-core?source=hash-mapping
+ size: 1897885
+ timestamp: 1746625416620
+- conda: https://repo.prefix.dev/conda-forge/win-64/pydantic-core-2.33.2-py311hc4022dc_0.conda
+ sha256: 0748e6b6cdb86dfdc4446bddb6035a75bef7939bc6dc382d17c02de1643f4e0f
+ md5: 5a644594b3066c17b7dd4590b2438424
+ depends:
+ - python
+ - typing-extensions >=4.6.0,!=4.7.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ - ucrt >=10.0.20348.0
+ - python_abi 3.11.* *_cp311
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/pydantic-core?source=hash-mapping
+ size: 1902713
+ timestamp: 1746625452353
+- conda: https://repo.prefix.dev/conda-forge/win-64/pydantic-core-2.33.2-py312h8422cdd_0.conda
+ sha256: f377214abd06f1870011a6068b10c9e23dc62065d4c2de13b2f0a6014636e0ae
+ md5: c61e3f191da309117e0b0478b49f6e91
+ depends:
+ - python
+ - typing-extensions >=4.6.0,!=4.7.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ - ucrt >=10.0.20348.0
+ - python_abi 3.12.* *_cp312
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/pydantic-core?source=hash-mapping
+ size: 1900306
+ timestamp: 1746625389678
+- conda: https://repo.prefix.dev/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda
+ sha256: 5577623b9f6685ece2697c6eb7511b4c9ac5fb607c9babc2646c811b428fd46a
+ md5: 6b6ece66ebcae2d5f326c77ef2c5a066
+ depends:
+ - python >=3.9
+ license: BSD-2-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/pygments?source=hash-mapping
+ size: 889287
+ timestamp: 1750615908735
+- conda: https://repo.prefix.dev/conda-forge/noarch/pylint-3.3.8-pyhe01879c_0.conda
+ sha256: 5b19f8113694ff4e4f0d0870cf38357d9e84330ff6c2516127a65764289b6743
+ md5: f5ba3b2c52e855b67fc0abedcebc9675
+ depends:
+ - astroid >=3.3.8,<3.4.0-dev0
+ - colorama >=0.4.5
+ - isort >=4.2.5,<7,!=5.13.0
+ - mccabe >=0.6,<0.8
+ - platformdirs >=2.2.0
+ - python >=3.9
+ - tomli >=1.1.0
+ - tomlkit >=0.10.1
+ - typing_extensions >=3.10.0
+ - dill >=0.3.7
+ - python
+ license: GPL-2.0-or-later
+ license_family: GPL
+ purls:
+ - pkg:pypi/pylint?source=hash-mapping
+ size: 381472
+ timestamp: 1754751762506
+- conda: https://repo.prefix.dev/conda-forge/noarch/pysocks-1.7.1-pyh09c184e_7.conda
+ sha256: d016e04b0e12063fbee4a2d5fbb9b39a8d191b5a0042f0b8459188aedeabb0ca
+ md5: e2fd202833c4a981ce8a65974fe4abd1
+ depends:
+ - __win
+ - python >=3.9
+ - win_inet_pton
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 21784
+ timestamp: 1733217448189
+- conda: https://repo.prefix.dev/conda-forge/noarch/pysocks-1.7.1-pyha55dd90_7.conda
+ sha256: ba3b032fa52709ce0d9fd388f63d330a026754587a2f461117cac9ab73d8d0d8
+ md5: 461219d1a5bd61342293efa2c0c90eac
+ depends:
+ - __unix
+ - python >=3.9
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 21085
+ timestamp: 1733217331982
+- conda: https://repo.prefix.dev/conda-forge/noarch/pytest-8.4.2-pyhd8ed1ab_0.conda
+ sha256: 41053d9893e379a3133bb9b557b98a3d2142fca474fb6b964ba5d97515f78e2d
+ md5: 1f987505580cb972cf28dc5f74a0f81b
+ depends:
+ - colorama >=0.4
+ - exceptiongroup >=1
+ - iniconfig >=1
+ - packaging >=20
+ - pluggy >=1.5,<2
+ - pygments >=2.7.2
+ - python >=3.10
+ - tomli >=1
+ constrains:
+ - pytest-faulthandler >=2
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/pytest?source=compressed-mapping
+ size: 276734
+ timestamp: 1757011891753
+- conda: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-7.0.0-pyhcf101f3_1.conda
+ sha256: d0f45586aad48ef604590188c33c83d76e4fc6370ac569ba0900906b24fd6a26
+ md5: 6891acad5e136cb62a8c2ed2679d6528
+ depends:
+ - coverage >=7.10.6
+ - pluggy >=1.2
+ - pytest >=7
+ - python >=3.10
+ - python
+ license: MIT
+ purls:
+ - pkg:pypi/pytest-cov?source=compressed-mapping
+ size: 29016
+ timestamp: 1757612051022
+- conda: https://repo.prefix.dev/conda-forge/linux-64/python-3.10.18-hd6af730_0_cpython.conda
+ sha256: 4111e5504fa4f4fb431d3a73fa606daccaf23a5a1da0f17a30db70ffad9336a7
+ md5: 4ea0c77cdcb0b81813a0436b162d7316
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - bzip2 >=1.0.8,<2.0a0
+ - ld_impl_linux-64 >=2.36.1
+ - libexpat >=2.7.0,<3.0a0
+ - libffi >=3.4,<4.0a0
+ - libgcc >=13
+ - liblzma >=5.8.1,<6.0a0
+ - libnsl >=2.0.1,<2.1.0a0
+ - libsqlite >=3.50.0,<4.0a0
+ - libuuid >=2.38.1,<3.0a0
+ - libxcrypt >=4.4.36
+ - libzlib >=1.3.1,<2.0a0
+ - ncurses >=6.5,<7.0a0
+ - openssl >=3.5.0,<4.0a0
+ - readline >=8.2,<9.0a0
+ - tk >=8.6.13,<8.7.0a0
+ - tzdata
+ constrains:
+ - python_abi 3.10.* *_cp310
+ license: Python-2.0
+ purls: []
+ size: 25042108
+ timestamp: 1749049293621
+- conda: https://repo.prefix.dev/conda-forge/linux-64/python-3.11.13-h9e4cc4f_0_cpython.conda
+ sha256: 9979a7d4621049388892489267139f1aa629b10c26601ba5dce96afc2b1551d4
+ md5: 8c399445b6dc73eab839659e6c7b5ad1
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - bzip2 >=1.0.8,<2.0a0
+ - ld_impl_linux-64 >=2.36.1
+ - libexpat >=2.7.0,<3.0a0
+ - libffi >=3.4.6,<3.5.0a0
+ - libgcc >=13
+ - liblzma >=5.8.1,<6.0a0
+ - libnsl >=2.0.1,<2.1.0a0
+ - libsqlite >=3.50.0,<4.0a0
+ - libuuid >=2.38.1,<3.0a0
+ - libxcrypt >=4.4.36
+ - libzlib >=1.3.1,<2.0a0
+ - ncurses >=6.5,<7.0a0
+ - openssl >=3.5.0,<4.0a0
+ - readline >=8.2,<9.0a0
+ - tk >=8.6.13,<8.7.0a0
+ - tzdata
+ constrains:
+ - python_abi 3.11.* *_cp311
+ license: Python-2.0
+ purls: []
+ size: 30629559
+ timestamp: 1749050021812
+- conda: https://repo.prefix.dev/conda-forge/linux-64/python-3.12.11-h9e4cc4f_0_cpython.conda
+ sha256: 6cca004806ceceea9585d4d655059e951152fc774a471593d4f5138e6a54c81d
+ md5: 94206474a5608243a10c92cefbe0908f
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - bzip2 >=1.0.8,<2.0a0
+ - ld_impl_linux-64 >=2.36.1
+ - libexpat >=2.7.0,<3.0a0
+ - libffi >=3.4.6,<3.5.0a0
+ - libgcc >=13
+ - liblzma >=5.8.1,<6.0a0
+ - libnsl >=2.0.1,<2.1.0a0
+ - libsqlite >=3.50.0,<4.0a0
+ - libuuid >=2.38.1,<3.0a0
+ - libxcrypt >=4.4.36
+ - libzlib >=1.3.1,<2.0a0
+ - ncurses >=6.5,<7.0a0
+ - openssl >=3.5.0,<4.0a0
+ - readline >=8.2,<9.0a0
+ - tk >=8.6.13,<8.7.0a0
+ - tzdata
+ constrains:
+ - python_abi 3.12.* *_cp312
+ license: Python-2.0
+ purls: []
+ size: 31445023
+ timestamp: 1749050216615
+- conda: https://repo.prefix.dev/conda-forge/win-64/python-3.10.18-h8c5b53a_0_cpython.conda
+ sha256: 548f9e542e72925d595c66191ffd17056f7c0029b7181e2d99dbef47e4f3f646
+ md5: f1775dab55c8a073ebd024bfb2f689c1
+ depends:
+ - bzip2 >=1.0.8,<2.0a0
+ - libexpat >=2.7.0,<3.0a0
+ - libffi >=3.4,<4.0a0
+ - liblzma >=5.8.1,<6.0a0
+ - libsqlite >=3.50.0,<4.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.5.0,<4.0a0
+ - tk >=8.6.13,<8.7.0a0
+ - tzdata
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ constrains:
+ - python_abi 3.10.* *_cp310
+ license: Python-2.0
+ purls: []
+ size: 15832933
+ timestamp: 1749048670944
+- conda: https://repo.prefix.dev/conda-forge/win-64/python-3.11.13-h3f84c4b_0_cpython.conda
+ sha256: 723dbca1384f30bd2070f77dd83eefd0e8d7e4dda96ac3332fbf8fe5573a8abb
+ md5: bedbb6f7bb654839719cd528f9b298ad
+ depends:
+ - bzip2 >=1.0.8,<2.0a0
+ - libexpat >=2.7.0,<3.0a0
+ - libffi >=3.4.6,<3.5.0a0
+ - liblzma >=5.8.1,<6.0a0
+ - libsqlite >=3.50.0,<4.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.5.0,<4.0a0
+ - tk >=8.6.13,<8.7.0a0
+ - tzdata
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ constrains:
+ - python_abi 3.11.* *_cp311
+ license: Python-2.0
+ purls: []
+ size: 18242669
+ timestamp: 1749048351218
+- conda: https://repo.prefix.dev/conda-forge/win-64/python-3.12.11-h3f84c4b_0_cpython.conda
+ sha256: b69412e64971b5da3ced0fc36f05d0eacc9393f2084c6f92b8f28ee068d83e2e
+ md5: 6aa5e62df29efa6319542ae5025f4376
+ depends:
+ - bzip2 >=1.0.8,<2.0a0
+ - libexpat >=2.7.0,<3.0a0
+ - libffi >=3.4.6,<3.5.0a0
+ - liblzma >=5.8.1,<6.0a0
+ - libsqlite >=3.50.0,<4.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.5.0,<4.0a0
+ - tk >=8.6.13,<8.7.0a0
+ - tzdata
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ constrains:
+ - python_abi 3.12.* *_cp312
+ license: Python-2.0
+ purls: []
+ size: 15829289
+ timestamp: 1749047682640
+- conda: https://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda
+ sha256: d6a17ece93bbd5139e02d2bd7dbfa80bee1a4261dced63f65f679121686bf664
+ md5: 5b8d21249ff20967101ffa321cab24e8
+ depends:
+ - python >=3.9
+ - six >=1.5
+ - python
+ license: Apache-2.0
+ license_family: APACHE
+ size: 233310
+ timestamp: 1751104122689
+- conda: https://repo.prefix.dev/conda-forge/noarch/python-fastjsonschema-2.21.2-pyhe01879c_0.conda
+ sha256: df9aa74e9e28e8d1309274648aac08ec447a92512c33f61a8de0afa9ce32ebe8
+ md5: 23029aae904a2ba587daba708208012f
+ depends:
+ - python >=3.9
+ - python
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 244628
+ timestamp: 1755304154927
+- conda: https://repo.prefix.dev/conda-forge/noarch/python_abi-3.10-8_cp310.conda
+ build_number: 8
+ sha256: 7ad76fa396e4bde336872350124c0819032a9e8a0a40590744ff9527b54351c1
+ md5: 05e00f3b21e88bb3d658ac700b2ce58c
+ constrains:
+ - python 3.10.* *_cpython
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 6999
+ timestamp: 1752805924192
+- conda: https://repo.prefix.dev/conda-forge/noarch/python_abi-3.11-8_cp311.conda
+ build_number: 8
+ sha256: fddf123692aa4b1fc48f0471e346400d9852d96eeed77dbfdd746fa50a8ff894
+ md5: 8fcb6b0e2161850556231336dae58358
+ constrains:
+ - python 3.11.* *_cpython
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 7003
+ timestamp: 1752805919375
+- conda: https://repo.prefix.dev/conda-forge/noarch/python_abi-3.12-8_cp312.conda
+ build_number: 8
+ sha256: 80677180dd3c22deb7426ca89d6203f1c7f1f256f2d5a94dc210f6e758229809
+ md5: c3efd25ac4d74b1584d2f7a57195ddf1
+ constrains:
+ - python 3.12.* *_cpython
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 6958
+ timestamp: 1752805918820
+- conda: https://repo.prefix.dev/conda-forge/noarch/pytz-2025.2-pyhd8ed1ab_0.conda
+ sha256: 8d2a8bf110cc1fc3df6904091dead158ba3e614d8402a83e51ed3a8aa93cdeb0
+ md5: bc8e3267d44011051f2eb14d22fb0960
+ depends:
+ - python >=3.9
+ license: MIT
+ license_family: MIT
+ size: 189015
+ timestamp: 1742920947249
+- conda: https://repo.prefix.dev/conda-forge/win-64/pywin32-311-py310h282bd7d_1.conda
+ sha256: 2ce920e200699cc2a114106665451c05efcaf5cf0ca46685d9a7a5914616f7b5
+ md5: 0289b272f8a22ad8fc29d6747383b503
+ depends:
+ - python
+ - vc >=14.3,<15
+ - vc14_runtime >=14.44.35208
+ - ucrt >=10.0.20348.0
+ - vc >=14.3,<15
+ - vc14_runtime >=14.44.35208
+ - ucrt >=10.0.20348.0
+ - python_abi 3.10.* *_cp310
+ license: PSF-2.0
+ license_family: PSF
+ size: 6293229
+ timestamp: 1756487147910
+- conda: https://repo.prefix.dev/conda-forge/linux-64/pyyaml-6.0.2-py310h89163eb_2.conda
+ sha256: 5fba7f5babcac872c72f6509c25331bcfac4f8f5031f0102530a41b41336fce6
+ md5: fd343408e64cf1e273ab7c710da374db
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python >=3.10,<3.11.0a0
+ - python_abi 3.10.* *_cp310
+ - yaml >=0.2.5,<0.3.0a0
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/pyyaml?source=hash-mapping
+ size: 182769
+ timestamp: 1737454971552
+- conda: https://repo.prefix.dev/conda-forge/linux-64/pyyaml-6.0.2-py311h2dc5d0c_2.conda
+ sha256: d107ad62ed5c62764fba9400f2c423d89adf917d687c7f2e56c3bfed605fb5b3
+ md5: 014417753f948da1f70d132b2de573be
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ - yaml >=0.2.5,<0.3.0a0
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/pyyaml?source=hash-mapping
+ size: 213136
+ timestamp: 1737454846598
+- conda: https://repo.prefix.dev/conda-forge/linux-64/pyyaml-6.0.2-py312h178313f_2.conda
+ sha256: 159cba13a93b3fe084a1eb9bda0a07afc9148147647f0d437c3c3da60980503b
+ md5: cf2485f39740de96e2a7f2bb18ed2fee
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - yaml >=0.2.5,<0.3.0a0
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/pyyaml?source=hash-mapping
+ size: 206903
+ timestamp: 1737454910324
+- conda: https://repo.prefix.dev/conda-forge/win-64/pyyaml-6.0.2-py310h38315fa_2.conda
+ sha256: 49dd492bdf2c479118ca9d61a59ce259594853d367a1a0548926f41a6e734724
+ md5: 9986c3731bb820db0830dd0825c26cf9
+ depends:
+ - python >=3.10,<3.11.0a0
+ - python_abi 3.10.* *_cp310
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ - yaml >=0.2.5,<0.3.0a0
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/pyyaml?source=hash-mapping
+ size: 157941
+ timestamp: 1737455030235
+- conda: https://repo.prefix.dev/conda-forge/win-64/pyyaml-6.0.2-py311h5082efb_2.conda
+ sha256: 6095e1d58c666f6a06c55338df09485eac34c76e43d92121d5786794e195aa4d
+ md5: e474ba674d780f0fa3b979ae9e81ba91
+ depends:
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ - yaml >=0.2.5,<0.3.0a0
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/pyyaml?source=hash-mapping
+ size: 187430
+ timestamp: 1737454904007
+- conda: https://repo.prefix.dev/conda-forge/win-64/pyyaml-6.0.2-py312h31fea79_2.conda
+ sha256: 76fec03ef7e67e37724873e1f805131fb88efb57f19e9a77b4da616068ef5c28
+ md5: ba00a2e5059c1fde96459858537cc8f5
+ depends:
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ - yaml >=0.2.5,<0.3.0a0
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/pyyaml?source=hash-mapping
+ size: 181734
+ timestamp: 1737455207230
+- conda: https://repo.prefix.dev/conda-forge/linux-64/pyzmq-27.1.0-py310h4f33d48_0.conda
+ sha256: 0c059e38246a3e148a019e18148098a4016b04e63a716942279e92301d3d16ae
+ md5: d175993378311ef7c74f17971a380655
+ depends:
+ - python
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.10.* *_cp310
+ - zeromq >=4.3.5,<4.4.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 326821
+ timestamp: 1757387023202
+- conda: https://repo.prefix.dev/conda-forge/win-64/pyzmq-27.1.0-py310h535538e_0.conda
+ sha256: f906e317a3a88ff02fccc6d23507c50b7d34fdb6c65a87d680a7dbb9f2cb3aba
+ md5: e892d2b08f97504517be3e9393cacf3b
+ depends:
+ - python
+ - vc >=14.3,<15
+ - vc14_runtime >=14.44.35208
+ - ucrt >=10.0.20348.0
+ - vc >=14.3,<15
+ - vc14_runtime >=14.44.35208
+ - ucrt >=10.0.20348.0
+ - zeromq >=4.3.5,<4.3.6.0a0
+ - python_abi 3.10.* *_cp310
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 306889
+ timestamp: 1757387021143
+- conda: https://repo.prefix.dev/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda
+ sha256: 2d6d0c026902561ed77cd646b5021aef2d4db22e57a5b0178dfc669231e06d2c
+ md5: 283b96675859b20a825f8fa30f311446
+ depends:
+ - libgcc >=13
+ - ncurses >=6.5,<7.0a0
+ license: GPL-3.0-only
+ license_family: GPL
+ purls: []
+ size: 282480
+ timestamp: 1740379431762
+- conda: https://repo.prefix.dev/conda-forge/noarch/referencing-0.36.2-pyh29332c3_0.conda
+ sha256: e20909f474a6cece176dfc0dc1addac265deb5fa92ea90e975fbca48085b20c3
+ md5: 9140f1c09dd5489549c6a33931b943c7
+ depends:
+ - attrs >=22.2.0
+ - python >=3.9
+ - rpds-py >=0.7.0
+ - typing_extensions >=4.4.0
+ - python
+ license: MIT
+ license_family: MIT
+ size: 51668
+ timestamp: 1737836872415
+- conda: https://repo.prefix.dev/conda-forge/noarch/requests-2.32.5-pyhd8ed1ab_0.conda
+ sha256: 8dc54e94721e9ab545d7234aa5192b74102263d3e704e6d0c8aa7008f2da2a7b
+ md5: db0c6b99149880c8ba515cf4abe93ee4
+ depends:
+ - certifi >=2017.4.17
+ - charset-normalizer >=2,<4
+ - idna >=2.5,<4
+ - python >=3.9
+ - urllib3 >=1.21.1,<3
+ constrains:
+ - chardet >=3.0.2,<6
+ license: Apache-2.0
+ license_family: APACHE
+ size: 59263
+ timestamp: 1755614348400
+- conda: https://repo.prefix.dev/conda-forge/linux-64/rpds-py-0.27.1-py310hd8f68c5_1.conda
+ sha256: 22fbf6b99165d143048ae2c7f23cfe4b039dff329f2ae176f9cf60cbc012d147
+ md5: 7afa2dfd1c7d29316b36697e25ccb5d9
+ depends:
+ - python
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - python_abi 3.10.* *_cp310
+ constrains:
+ - __glibc >=2.17
+ license: MIT
+ license_family: MIT
+ size: 386785
+ timestamp: 1756737687983
+- conda: https://repo.prefix.dev/conda-forge/win-64/rpds-py-0.27.1-py310h034784e_1.conda
+ sha256: 710f5e87dddb9afd36a30fbe49147dd05f66a3bb85cacb665e2f21a1f4b068f1
+ md5: bcc1638ee07c0eb0bbdf4de1bf3ca780
+ depends:
+ - python
+ - vc >=14.3,<15
+ - vc14_runtime >=14.44.35208
+ - ucrt >=10.0.20348.0
+ - vc >=14.3,<15
+ - vc14_runtime >=14.44.35208
+ - ucrt >=10.0.20348.0
+ - python_abi 3.10.* *_cp310
+ license: MIT
+ license_family: MIT
+ size: 247380
+ timestamp: 1756737435292
+- conda: https://repo.prefix.dev/conda-forge/linux-64/scipy-1.14.1-py310hfcf56fc_2.conda
+ sha256: a15008a51fd6b6dcaeb5563869ff0a8a015f1e0a8634a9d89d2c189eefbd7182
+ md5: b5d548b2a7cf8d0c74fc6c4bf42d1ca5
+ depends:
+ - __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 <2.3
+ - numpy >=1.19,<3
+ - numpy >=1.23.5
+ - python >=3.10,<3.11.0a0
+ - python_abi 3.10.* *_cp310
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/scipy?source=hash-mapping
+ size: 16791594
+ timestamp: 1733621553250
+- conda: https://repo.prefix.dev/conda-forge/linux-64/scipy-1.14.1-py311he9a78e4_2.conda
+ sha256: b28d91a55205b886308da82428cd522e9dce0ef912445a2e9d89318379c15759
+ md5: c4aee8cadc4c9fc9a91aca0803473690
+ depends:
+ - __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 <2.3
+ - numpy >=1.19,<3
+ - numpy >=1.23.5
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/scipy?source=hash-mapping
+ size: 17730368
+ timestamp: 1733621600818
+- conda: https://repo.prefix.dev/conda-forge/linux-64/scipy-1.14.1-py312h62794b6_2.conda
+ sha256: 6e4916d610dc15f9b504517bd6c1f3dbbae019a3c7abf0aeb55f310c452a4474
+ md5: 94688dd449f6c092e5f951780235aca1
+ depends:
+ - __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 <2.3
+ - numpy >=1.19,<3
+ - numpy >=1.23.5
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/scipy?source=hash-mapping
+ size: 17444442
+ timestamp: 1733621582568
+- conda: https://repo.prefix.dev/conda-forge/win-64/scipy-1.14.1-py310hbd0dde3_2.conda
+ sha256: 761829fa9c91fdffff0ba5a1f56f7d4cc00bec71ca7fa06859dc7f5a98117273
+ md5: 72a2a7c264a8b48d113111756c2bbbb4
+ depends:
+ - libblas >=3.9.0,<4.0a0
+ - libcblas >=3.9.0,<4.0a0
+ - liblapack >=3.9.0,<4.0a0
+ - numpy <2.3
+ - numpy >=1.19,<3
+ - numpy >=1.23.5
+ - python >=3.10,<3.11.0a0
+ - python_abi 3.10.* *_cp310
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/scipy?source=hash-mapping
+ size: 15278855
+ timestamp: 1733622652965
+- conda: https://repo.prefix.dev/conda-forge/win-64/scipy-1.14.1-py311hf16d85f_2.conda
+ sha256: ef98270586c1dfb551f9ff868312554f248f155406f924b91df07cd46c14d302
+ md5: 8d3393f64df60e48be00d06ccb63bb18
+ depends:
+ - libblas >=3.9.0,<4.0a0
+ - libcblas >=3.9.0,<4.0a0
+ - liblapack >=3.9.0,<4.0a0
+ - numpy <2.3
+ - numpy >=1.19,<3
+ - numpy >=1.23.5
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/scipy?source=hash-mapping
+ size: 15906509
+ timestamp: 1733622641578
+- conda: https://repo.prefix.dev/conda-forge/win-64/scipy-1.14.1-py312h337df96_2.conda
+ sha256: eb67adcca33026895b6539d02e1bc01f495e1d593a26053d734fe7a180e708f4
+ md5: 3ef0017e79039d4767ba3b4891113a07
+ depends:
+ - libblas >=3.9.0,<4.0a0
+ - libcblas >=3.9.0,<4.0a0
+ - liblapack >=3.9.0,<4.0a0
+ - numpy <2.3
+ - numpy >=1.19,<3
+ - numpy >=1.23.5
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/scipy?source=hash-mapping
+ size: 16004453
+ timestamp: 1733700867529
+- conda: https://repo.prefix.dev/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda
+ sha256: 972560fcf9657058e3e1f97186cc94389144b46dbdf58c807ce62e83f977e863
+ md5: 4de79c071274a53dcaf2a8c749d1499e
+ depends:
+ - python >=3.9
+ license: MIT
+ license_family: MIT
+ size: 748788
+ timestamp: 1748804951958
+- conda: https://repo.prefix.dev/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda
+ sha256: 458227f759d5e3fcec5d9b7acce54e10c9e1f4f4b7ec978f3bfd54ce4ee9853d
+ md5: 3339e3b65d58accf4ca4fb8748ab16b3
+ depends:
+ - python >=3.9
+ - python
+ license: MIT
+ license_family: MIT
+ size: 18455
+ timestamp: 1753199211006
+- conda: https://repo.prefix.dev/conda-forge/noarch/snowballstemmer-3.0.1-pyhd8ed1ab_0.conda
+ sha256: 17007a4cfbc564dc3e7310dcbe4932c6ecb21593d4fec3c68610720f19e73fb2
+ md5: 755cf22df8693aa0d1aec1c123fa5863
+ depends:
+ - python >=3.9
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 73009
+ timestamp: 1747749529809
+- conda: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.8-pyhd8ed1ab_0.conda
+ sha256: c978576cf9366ba576349b93be1cfd9311c00537622a2f9e14ba2b90c97cae9c
+ md5: 18c019ccf43769d211f2cf78e9ad46c2
+ depends:
+ - python >=3.10
+ license: MIT
+ license_family: MIT
+ size: 37803
+ timestamp: 1756330614547
+- conda: https://repo.prefix.dev/conda-forge/noarch/sphinx-8.1.3-pyhd8ed1ab_1.conda
+ sha256: 3228eb332ce159f031d4b7d2e08117df973b0ba3ddcb8f5dbb7f429f71d27ea1
+ md5: 1a3281a0dc355c02b5506d87db2d78ac
+ depends:
+ - 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
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 1387076
+ timestamp: 1733754175386
+- conda: https://repo.prefix.dev/conda-forge/noarch/sphinx-autodoc-typehints-3.0.1-pyhd8ed1ab_0.conda
+ sha256: 0f93bb75a41918433abc8d8d80ef99d7fd8658d5ba34da3c5d8f707cb6bb3f46
+ md5: 6ad405d62c8de3792608a27b7e085e15
+ depends:
+ - python >=3.10
+ - sphinx >=8.1.3
+ license: MIT
+ license_family: MIT
+ size: 24055
+ timestamp: 1737099757820
+- conda: https://repo.prefix.dev/conda-forge/noarch/sphinx-issues-5.0.1-pyhd8ed1ab_0.conda
+ sha256: 441226d28ad03848c1711a5cfb342a0bce0af35930caf0c5362503f9412eb9cf
+ md5: d8e2c40232960231c65ed8708ce4ad11
+ depends:
+ - python >=3.9
+ - sphinx
+ license: MIT
+ license_family: MIT
+ size: 14415
+ timestamp: 1744309769510
+- conda: https://repo.prefix.dev/conda-forge/noarch/sphinx-rtd-theme-3.0.2-hd8ed1ab_0.conda
+ noarch: python
+ sha256: d81e5f764d3738a62e03476cbbf3f69214f5cc0d06af81ec6104056f6cece50e
+ md5: bc576bd1422b5baaed25722895581837
+ depends:
+ - sphinx_rtd_theme 3.0.2 pyha770c72_0
+ license: MIT
+ size: 6369
+ timestamp: 1757836588399
+- conda: https://repo.prefix.dev/conda-forge/noarch/sphinx_rtd_theme-3.0.2-pyha770c72_0.conda
+ sha256: c5d1ef5801f56c3bba4088de6c02c10e7f5b195805997fc1af569cf3f33f92e4
+ md5: cec0cc87b40171bc323a9d80b619c9c5
+ depends:
+ - docutils >0.18,<0.22
+ - python >=3.8
+ - sphinx >=6,<9
+ - sphinxcontrib-jquery >=4,<5
+ license: MIT
+ size: 4629955
+ timestamp: 1757836585728
+- conda: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_1.conda
+ sha256: d7433a344a9ad32a680b881c81b0034bc61618d12c39dd6e3309abeffa9577ba
+ md5: 16e3f039c0aa6446513e94ab18a8784b
+ depends:
+ - python >=3.9
+ - sphinx >=5
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 29752
+ timestamp: 1733754216334
+- conda: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-bibtex-2.6.5-pyhd8ed1ab_0.conda
+ sha256: b128f051391c67c5ee77bf5aa2e6e4073adfc22631829491db112fcafe58f196
+ md5: 6267ad9b8e6c02ea6280a9d6eabe1026
+ depends:
+ - docutils >=0.8,!=0.18.*,!=0.19.*
+ - importlib-metadata >=3.6
+ - pybtex >=0.25
+ - pybtex-docutils >=1.0.0
+ - python >=3.9
+ - setuptools
+ - sphinx >=3.5
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 33137
+ timestamp: 1751029066274
+- conda: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_1.conda
+ sha256: 55d5076005d20b84b20bee7844e686b7e60eb9f683af04492e598a622b12d53d
+ md5: 910f28a05c178feba832f842155cbfff
+ depends:
+ - python >=3.9
+ - sphinx >=5
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 24536
+ timestamp: 1733754232002
+- conda: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-googleanalytics-0.5-pyhd8ed1ab_0.conda
+ sha256: 776d26846253181873d0e593b854034cfb46516e18ed8b95a047ced04476629e
+ md5: 5eaa92aa9d8e54ef56b20343ccd1c82e
+ depends:
+ - python >=3.9
+ - sphinx >=0.6
+ license: BSD-4.3TAHOE
+ size: 10717
+ timestamp: 1748286909370
+- conda: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_1.conda
+ sha256: c1492c0262ccf16694bdcd3bb62aa4627878ea8782d5cd3876614ffeb62b3996
+ md5: e9fb3fe8a5b758b4aff187d434f94f03
+ depends:
+ - python >=3.9
+ - sphinx >=5
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 32895
+ timestamp: 1733754385092
+- conda: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-jquery-4.1-pyhd8ed1ab_1.conda
+ sha256: 69c08d18663b57ebc8e4187c64c8d29b10996bb465a515cd288d87b6f2f52a5e
+ md5: 403185829255321ea427333f7773dd1f
+ depends:
+ - python >=3.9
+ - sphinx >=1.8
+ license: 0BSD AND MIT
+ size: 112964
+ timestamp: 1734344603903
+- conda: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_1.conda
+ sha256: 578bef5ec630e5b2b8810d898bbbf79b9ae66d49b7938bcc3efc364e679f2a62
+ md5: fa839b5ff59e192f411ccc7dae6588bb
+ depends:
+ - python >=3.9
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 10462
+ timestamp: 1733753857224
+- conda: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_1.conda
+ sha256: c664fefae4acdb5fae973bdde25836faf451f41d04342b64a358f9a7753c92ca
+ md5: 00534ebcc0375929b45c3039b5ba7636
+ depends:
+ - python >=3.9
+ - sphinx >=5
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 26959
+ timestamp: 1733753505008
+- conda: https://repo.prefix.dev/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda
+ sha256: 64d89ecc0264347486971a94487cb8d7c65bfc0176750cf7502b8a272f4ab557
+ md5: 3bc61f7161d28137797e038263c04c54
+ depends:
+ - python >=3.9
+ - sphinx >=5
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 28669
+ timestamp: 1733750596111
+- conda: https://repo.prefix.dev/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda
+ sha256: 570da295d421661af487f1595045760526964f41471021056e993e73089e9c41
+ md5: b1b505328da7a6b246787df4b5a49fbc
+ depends:
+ - asttokens
+ - executing
+ - pure_eval
+ - python >=3.9
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/stack-data?source=hash-mapping
+ size: 26988
+ timestamp: 1733569565672
+- conda: https://repo.prefix.dev/conda-forge/win-64/tbb-2021.13.0-h18a62a1_3.conda
+ sha256: 30e82640a1ad9d9b5bee006da7e847566086f8fdb63d15b918794a7ef2df862c
+ md5: 72226638648e494aaafde8155d50dab2
+ depends:
+ - libhwloc >=2.12.1,<2.12.2.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.3,<15
+ - vc14_runtime >=14.44.35208
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 150266
+ timestamp: 1755776172092
+- conda: https://repo.prefix.dev/conda-forge/noarch/tinycss2-1.4.0-pyhd8ed1ab_0.conda
+ sha256: cad582d6f978276522f84bd209a5ddac824742fe2d452af6acf900f8650a73a2
+ md5: f1acf5fdefa8300de697982bcb1761c9
+ depends:
+ - python >=3.5
+ - webencodings >=0.4
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 28285
+ timestamp: 1729802975370
+- conda: https://repo.prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_hd72426e_102.conda
+ sha256: a84ff687119e6d8752346d1d408d5cf360dee0badd487a472aa8ddedfdc219e1
+ md5: a0116df4f4ed05c303811a837d5b39d8
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libzlib >=1.3.1,<2.0a0
+ license: TCL
+ license_family: BSD
+ purls: []
+ size: 3285204
+ timestamp: 1748387766691
+- conda: https://repo.prefix.dev/conda-forge/win-64/tk-8.6.13-h2c6b04d_2.conda
+ sha256: e3614b0eb4abcc70d98eae159db59d9b4059ed743ef402081151a948dce95896
+ md5: ebd0e761de9aa879a51d22cc721bd095
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: TCL
+ license_family: BSD
+ purls: []
+ size: 3466348
+ timestamp: 1748388121356
+- conda: https://repo.prefix.dev/conda-forge/noarch/tomli-2.2.1-pyhe01879c_2.conda
+ sha256: 040a5a05c487647c089ad5e05ad5aff5942830db2a4e656f1e300d73436436f1
+ md5: 30a0a26c8abccf4b7991d590fe17c699
+ depends:
+ - python >=3.9
+ - python
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/tomli?source=hash-mapping
+ size: 21238
+ timestamp: 1753796677376
+- conda: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.3-pyha770c72_0.conda
+ sha256: f8d3b49c084831a20923f66826f30ecfc55a4cd951e544b7213c692887343222
+ md5: 146402bf0f11cbeb8f781fa4309a95d3
+ depends:
+ - python >=3.9
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/tomlkit?source=hash-mapping
+ size: 38777
+ timestamp: 1749127286558
+- conda: https://repo.prefix.dev/conda-forge/linux-64/tornado-6.5.2-py310h7c4b9e2_1.conda
+ sha256: 8dc52bac73848a0334c65491f8de31c5c298464888cfa35d1c41b8d3051131f0
+ md5: c5f63ba41df24b9025c9196353541ed5
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - python >=3.10,<3.11.0a0
+ - python_abi 3.10.* *_cp310
+ license: Apache-2.0
+ license_family: Apache
+ size: 661361
+ timestamp: 1756854980081
+- conda: https://repo.prefix.dev/conda-forge/win-64/tornado-6.5.2-py310h29418f3_1.conda
+ sha256: fdb4d8a01f361dad584b3f7e2c798759de545b8a01b513b084e7f22e3e0774bf
+ md5: 880cb8e0f344117c527902f48fcd6463
+ depends:
+ - python >=3.10,<3.11.0a0
+ - python_abi 3.10.* *_cp310
+ - ucrt >=10.0.20348.0
+ - vc >=14.3,<15
+ - vc14_runtime >=14.44.35208
+ license: Apache-2.0
+ license_family: Apache
+ size: 663921
+ timestamp: 1756855305219
+- conda: https://repo.prefix.dev/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda
+ sha256: f39a5620c6e8e9e98357507262a7869de2ae8cc07da8b7f84e517c9fd6c2b959
+ md5: 019a7385be9af33791c989871317e1ed
+ depends:
+ - python >=3.9
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/traitlets?source=hash-mapping
+ size: 110051
+ timestamp: 1733367480074
+- conda: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda
+ sha256: 7c2df5721c742c2a47b2c8f960e718c930031663ac1174da67c1ed5999f7938c
+ md5: edd329d7d3a4ab45dcf905899a7a6115
+ depends:
+ - typing_extensions ==4.15.0 pyhcf101f3_0
+ license: PSF-2.0
+ license_family: PSF
+ purls: []
+ size: 91383
+ timestamp: 1756220668932
+- conda: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.1-pyhd8ed1ab_0.conda
+ sha256: 4259a7502aea516c762ca8f3b8291b0d4114e094bdb3baae3171ccc0900e722f
+ md5: e0c3cd765dc15751ee2f0b03cd015712
+ depends:
+ - python >=3.9
+ - typing_extensions >=4.12.0
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/typing-inspection?source=hash-mapping
+ size: 18809
+ timestamp: 1747870776989
+- conda: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda
+ sha256: 032271135bca55aeb156cee361c81350c6f3fb203f57d024d7e5a1fc9ef18731
+ md5: 0caa1af407ecff61170c9437a808404d
+ depends:
+ - python >=3.10
+ - python
+ license: PSF-2.0
+ license_family: PSF
+ purls:
+ - pkg:pypi/typing-extensions?source=hash-mapping
+ size: 51692
+ timestamp: 1756220668932
+- conda: https://repo.prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda
+ sha256: 5aaa366385d716557e365f0a4e9c3fca43ba196872abbbe3d56bb610d131e192
+ md5: 4222072737ccff51314b5ece9c7d6f5a
+ license: LicenseRef-Public-Domain
+ purls: []
+ size: 122968
+ timestamp: 1742727099393
+- conda: https://repo.prefix.dev/conda-forge/win-64/ucrt-10.0.26100.0-h57928b3_0.conda
+ sha256: 3005729dce6f3d3f5ec91dfc49fc75a0095f9cd23bab49efb899657297ac91a5
+ md5: 71b24316859acd00bdb8b38f5e2ce328
+ constrains:
+ - vc14_runtime >=14.29.30037
+ - vs2015_runtime >=14.29.30037
+ license: LicenseRef-MicrosoftWindowsSDK10
+ purls: []
+ size: 694692
+ timestamp: 1756385147981
+- conda: https://repo.prefix.dev/conda-forge/noarch/urllib3-2.5.0-pyhd8ed1ab_0.conda
+ sha256: 4fb9789154bd666ca74e428d973df81087a697dbb987775bc3198d2215f240f8
+ md5: 436c165519e140cb08d246a4472a9d6a
+ depends:
+ - brotli-python >=1.0.9
+ - h2 >=4,<5
+ - pysocks >=1.5.6,<2.0,!=1.5.7
+ - python >=3.9
+ - zstandard >=0.18.0
+ license: MIT
+ license_family: MIT
+ size: 101735
+ timestamp: 1750271478254
+- conda: https://repo.prefix.dev/conda-forge/win-64/vc-14.3-h41ae7f8_31.conda
+ sha256: cb357591d069a1e6cb74199a8a43a7e3611f72a6caed9faa49dbb3d7a0a98e0b
+ md5: 28f4ca1e0337d0f27afb8602663c5723
+ depends:
+ - vc14_runtime >=14.44.35208
+ track_features:
+ - vc14
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 18249
+ timestamp: 1753739241465
+- conda: https://repo.prefix.dev/conda-forge/win-64/vc14_runtime-14.44.35208-h818238b_31.conda
+ sha256: af4b4b354b87a9a8d05b8064ff1ea0b47083274f7c30b4eb96bc2312c9b5f08f
+ md5: 603e41da40a765fd47995faa021da946
+ depends:
+ - ucrt >=10.0.20348.0
+ - vcomp14 14.44.35208 h818238b_31
+ constrains:
+ - vs2015_runtime 14.44.35208.* *_31
+ license: LicenseRef-MicrosoftVisualCpp2015-2022Runtime
+ license_family: Proprietary
+ purls: []
+ size: 682424
+ timestamp: 1753739239305
+- conda: https://repo.prefix.dev/conda-forge/win-64/vcomp14-14.44.35208-h818238b_31.conda
+ sha256: 67b317b64f47635415776718d25170a9a6f9a1218c0f5a6202bfd687e07b6ea4
+ md5: a6b1d5c1fc3cb89f88f7179ee6a9afe3
+ depends:
+ - ucrt >=10.0.20348.0
+ constrains:
+ - vs2015_runtime 14.44.35208.* *_31
+ license: LicenseRef-MicrosoftVisualCpp2015-2022Runtime
+ license_family: Proprietary
+ purls: []
+ size: 113963
+ timestamp: 1753739198723
+- conda: https://repo.prefix.dev/conda-forge/noarch/wcwidth-0.2.13-pyhd8ed1ab_1.conda
+ sha256: f21e63e8f7346f9074fd00ca3b079bd3d2fa4d71f1f89d5b6934bf31446dc2a5
+ md5: b68980f2495d096e71c7fd9d7ccf63e6
+ depends:
+ - python >=3.9
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/wcwidth?source=hash-mapping
+ size: 32581
+ timestamp: 1733231433877
+- conda: https://repo.prefix.dev/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_3.conda
+ sha256: 19ff205e138bb056a46f9e3839935a2e60bd1cf01c8241a5e172a422fed4f9c6
+ md5: 2841eb5bfc75ce15e9a0054b98dcd64d
+ depends:
+ - python >=3.9
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 15496
+ timestamp: 1733236131358
+- conda: https://repo.prefix.dev/conda-forge/noarch/win_inet_pton-1.1.0-pyh7428d3b_8.conda
+ sha256: 93807369ab91f230cf9e6e2a237eaa812492fe00face5b38068735858fba954f
+ md5: 46e441ba871f524e2b067929da3051c2
+ depends:
+ - __win
+ - python >=3.9
+ license: LicenseRef-Public-Domain
+ size: 9555
+ timestamp: 1733130678956
+- conda: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxau-1.0.12-hb9d3cd8_0.conda
+ sha256: ed10c9283974d311855ae08a16dfd7e56241fac632aec3b92e3cfe73cff31038
+ md5: f6ebe2cb3f82ba6c057dde5d9debe4f7
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 14780
+ timestamp: 1734229004433
+- conda: https://repo.prefix.dev/conda-forge/win-64/xorg-libxau-1.0.12-h0e40799_0.conda
+ sha256: 047836241b2712aab1e29474a6f728647bff3ab57de2806b0bb0a6cf9a2d2634
+ md5: 2ffbfae4548098297c033228256eb96e
+ depends:
+ - libgcc >=13
+ - libwinpthread >=12.0.0.r4.gg4f2fc60ca
+ - ucrt >=10.0.20348.0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 108013
+ timestamp: 1734229474049
+- conda: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb9d3cd8_0.conda
+ sha256: 6b250f3e59db07c2514057944a3ea2044d6a8cdde8a47b6497c254520fade1ee
+ md5: 8035c64cb77ed555e3f150b7b3972480
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 19901
+ timestamp: 1727794976192
+- conda: https://repo.prefix.dev/conda-forge/win-64/xorg-libxdmcp-1.1.5-h0e40799_0.conda
+ sha256: 9075f98dcaa8e9957e4a3d9d30db05c7578a536950a31c200854c5c34e1edb2c
+ md5: 8393c0f7e7870b4eb45553326f81f0ff
+ depends:
+ - libgcc >=13
+ - libwinpthread >=12.0.0.r4.gg4f2fc60ca
+ - ucrt >=10.0.20348.0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 69920
+ timestamp: 1727795651979
+- conda: https://repo.prefix.dev/conda-forge/linux-64/yaml-0.2.5-h280c20c_3.conda
+ sha256: 6d9ea2f731e284e9316d95fa61869fe7bbba33df7929f82693c121022810f4ad
+ md5: a77f85f77be52ff59391544bfe73390a
+ depends:
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 85189
+ timestamp: 1753484064210
+- conda: https://repo.prefix.dev/conda-forge/win-64/yaml-0.2.5-h6a83c73_3.conda
+ sha256: 80ee68c1e7683a35295232ea79bcc87279d31ffeda04a1665efdb43cbd50a309
+ md5: 433699cba6602098ae8957a323da2664
+ depends:
+ - vc >=14.3,<15
+ - vc14_runtime >=14.44.35208
+ - ucrt >=10.0.20348.0
+ - vc >=14.3,<15
+ - vc14_runtime >=14.44.35208
+ - ucrt >=10.0.20348.0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 63944
+ timestamp: 1753484092156
+- conda: https://repo.prefix.dev/conda-forge/linux-64/zeromq-4.3.5-h387f397_9.conda
+ sha256: 47cfe31255b91b4a6fa0e9dbaf26baa60ac97e033402dbc8b90ba5fee5ffe184
+ md5: 8035e5b54c08429354d5d64027041cad
+ depends:
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libsodium >=1.0.20,<1.0.21.0a0
+ - krb5 >=1.21.3,<1.22.0a0
+ license: MPL-2.0
+ license_family: MOZILLA
+ size: 310648
+ timestamp: 1757370847287
+- conda: https://repo.prefix.dev/conda-forge/win-64/zeromq-4.3.5-h5bddc39_9.conda
+ sha256: 690cf749692c8ea556646d1a47b5824ad41b2f6dfd949e4cdb6c44a352fcb1aa
+ md5: a6c8f8ee856f7c3c1576e14b86cd8038
+ depends:
+ - vc >=14.3,<15
+ - vc14_runtime >=14.44.35208
+ - ucrt >=10.0.20348.0
+ - vc >=14.3,<15
+ - vc14_runtime >=14.44.35208
+ - ucrt >=10.0.20348.0
+ - libsodium >=1.0.20,<1.0.21.0a0
+ - krb5 >=1.21.3,<1.22.0a0
+ license: MPL-2.0
+ license_family: MOZILLA
+ size: 265212
+ timestamp: 1757370864284
+- conda: https://repo.prefix.dev/conda-forge/noarch/zipp-3.23.0-pyhd8ed1ab_0.conda
+ sha256: 7560d21e1b021fd40b65bfb72f67945a3fcb83d78ad7ccf37b8b3165ec3b68ad
+ md5: df5e78d904988eb55042c0c97446079f
+ depends:
+ - python >=3.9
+ license: MIT
+ license_family: MIT
+ size: 22963
+ timestamp: 1749421737203
+- conda: https://repo.prefix.dev/conda-forge/linux-64/zstandard-0.25.0-py310h139afa4_0.conda
+ sha256: de55fe71fa07bdd77eb6ea8819072d8558f315e3b022b4047f2f941d0854405d
+ md5: 6b243b9f9477ad0b0a90552ebddb27e7
+ depends:
+ - python
+ - cffi >=1.11
+ - zstd >=1.5.7,<1.5.8.0a0
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - zstd >=1.5.7,<1.6.0a0
+ - python_abi 3.10.* *_cp310
+ license: BSD-3-Clause
+ size: 455402
+ timestamp: 1757930101765
+- conda: https://repo.prefix.dev/conda-forge/win-64/zstandard-0.25.0-py310h1637853_0.conda
+ sha256: 1bc80de45c577d2a80afb056a52b873f795ce3ed3d131d44a7320dd82835b8f0
+ md5: b45df16a296e7127a14dd9362103b80b
+ depends:
+ - python
+ - cffi >=1.11
+ - zstd >=1.5.7,<1.5.8.0a0
+ - vc >=14.3,<15
+ - vc14_runtime >=14.44.35208
+ - ucrt >=10.0.20348.0
+ - vc >=14.3,<15
+ - vc14_runtime >=14.44.35208
+ - ucrt >=10.0.20348.0
+ - python_abi 3.10.* *_cp310
+ - zstd >=1.5.7,<1.6.0a0
+ license: BSD-3-Clause
+ size: 364179
+ timestamp: 1757930140810
+- conda: https://repo.prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb8e6e7a_2.conda
+ sha256: a4166e3d8ff4e35932510aaff7aa90772f84b4d07e9f6f83c614cba7ceefe0eb
+ md5: 6432cb5d4ac0046c3ac0a8a0f95842f9
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 567578
+ timestamp: 1742433379869
+- conda: https://repo.prefix.dev/conda-forge/win-64/zstd-1.5.7-hbeecb71_2.conda
+ sha256: bc64864377d809b904e877a98d0584f43836c9f2ef27d3d2a1421fa6eae7ca04
+ md5: 21f56217d6125fb30c3c3f10c786d751
+ depends:
+ - libzlib >=1.3.1,<2.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 354697
+ timestamp: 1742433568506
diff --git a/pixi.toml b/pixi.toml
new file mode 100644
index 0000000..6ab24e3
--- /dev/null
+++ b/pixi.toml
@@ -0,0 +1,129 @@
+[workspace]
+requires-pixi = ">=0.54"
+channels = ["https://repo.prefix.dev/conda-forge"]
+platforms = ["win-64", "linux-64"]
+
+[dependencies]
+# dependencies resolved from conda
+## direct dependencies:
+#----------------------
+discretize = "0.11.*"
+numpy = "1.26.*"
+pydantic = ">=2.5.2, 2.*"
+scipy = "1.14.*"
+
+## indirect dependencies from remaining pip packages:
+#----------------------------------------------------
+h5py = ">=3.2.1, 3.*"
+pillow = "10.3.*"
+
+[pypi-dependencies]
+grid-apps = {path = ".", editable = true}
+
+[environments]
+#prod-py310 = {features = ["py310", "mirageo"], solve-group = "prod-py310"}
+#prod-py311 = {features = ["py311", "mirageo"], solve-group = "prod-py311"}
+#prod-py312 = {features = ["py312", "mirageo"], solve-group = "prod-py312"}
+#test-prod-py310 = {features = ["py310", "mirageo", "test"], solve-group = "prod-py310"}
+#test-prod-py311 = {features = ["py311", "mirageo", "test"], solve-group = "prod-py311"}
+#test-prod-py312 = {features = ["py312", "mirageo", "test"], solve-group = "prod-py312"}
+
+py310 = {features = ["py310", "mirageo-git", "test"], solve-group = "default"}
+py311 = {features = ["py311", "mirageo-git", "test"]}
+py312 = {features = ["py312", "mirageo-git", "test"]}
+
+default = {features = ["py310", "mirageo-git", "test", "dev"], solve-group = "default"}
+mirageo-local = {features = ["py310", "mirageo-git"], solve-group = "default"}
+docs = {features = ["py310", "doc"], no-default-feature = true}
+
+[feature.py310.dependencies]
+python = "3.10.*"
+
+[feature.py311.dependencies]
+python = "3.11.*"
+
+[feature.py312.dependencies]
+python = "3.12.*"
+
+#[tool.pixi.feature.mirageo.dependencies]
+#geoh5py = ">=0.12.0a1, 0.12.*"
+#geoapps-utils = ">=0.6.0a, 0.6.*"
+
+[feature.mirageo-git.pypi-dependencies]
+geoh5py = { git = "https://github.com/MiraGeoscience/geoh5py.git", rev = "develop" }
+geoapps-utils = {git = "https://github.com/MiraGeoscience/geoapps-utils.git", rev = "develop"}
+
+[feature.dev.dependencies]
+Pygments = "*"
+ipython = "*"
+
+[feature.dev.tasks]
+repl = "ipython"
+
+[feature.test.dependencies]
+packaging = "*"
+pylint = "*"
+pytest = "*"
+pytest-cov = "*"
+pyyaml = "*"
+
+[feature.test.tasks]
+test = "pytest --cov --cov-report=xml"
+
+[feature.test.tasks.test-local]
+args = [{ arg = "packages", default = "geoh5py geoapps-utils" }]
+depends-on = [
+ {task = "use-local-deps", args = [ "{{ packages }}" ]},
+ {task = "show-pip-source", args = [ "{{ packages }}" ]},
+ {task = "test"}
+]
+
+[feature.doc.dependencies]
+nbsphinx = "*"
+nbstripout = "*"
+numpydoc = "*"
+sphinx = "*"
+sphinx-autodoc-typehints = "*"
+sphinx-issues = "*"
+sphinx-rtd-theme = "*"
+sphinxcontrib-bibtex = "*"
+sphinxcontrib-googleanalytics = '*'
+
+[feature.doc.tasks._install-no-deps]
+cmd = "uv pip install --no-deps . git+https://github.com/MiraGeoscience/geoapps-utils.git@develop"
+
+[feature.doc.tasks.build-docs]
+args = [
+ { arg = "builder", default = "html" },
+ { arg = "outputdir", default = "docs/_build" },
+]
+depends-on = ["_install-no-deps"]
+cmd = "sphinx-build -T -nW -b {{builder}} docs/source {{outputdir}}/{{builder}}"
+
+[tasks.show-pip-source]
+args = [{ arg = "packages", "default" = "geoh5py geoapps-utils" }]
+cmd = "uv pip show {{packages}}"
+
+[tasks.use-local-deps]
+args = [{ arg = "packages", default = "geoh5py geoapps-utils" }]
+cmd = """
+uv pip install --no-deps --force-reinstall \
+{% for package in packages | split %} -e ../{{ package | trim }}{% endfor %}
+"""
+
+[tasks.test-pyvers]
+depends-on = [
+ {task = "test", environment = "py310"},
+ {task = "test", environment = "py311"},
+ {task = "test", environment = "py312"},
+]
+
+[tasks.export-to-conda]
+args = ["env", {arg = "output_name", default = "exported"}]
+cmd = "pixi workspace export conda-environment -e {{ env }} {{ output_name }}.pixi.conda.yml"
+
+[tasks.analyst-install]
+args = [{arg = "output_name", default = "grid_apps"}]
+env = { MIRA_CMD_RUNNER_DIR = "$ProgramFiles/Mira Geoscience/Geoscience ANALYST/CmdRunner" }
+cmd = '"$MIRA_CMD_RUNNER_DIR/MambaEnvRunner.exe" --install "{{ output_name }}.pixi.conda.yml"'
+depends-on = [{task = "export-to-conda", args = ["mirageo-local", "{{ output_name }}"]}]
diff --git a/py-3.12.conda-lock.yml b/py-3.12.conda-lock.yml
deleted file mode 100644
index 69f10e4..0000000
--- a/py-3.12.conda-lock.yml
+++ /dev/null
@@ -1,4203 +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.12.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.12.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.12.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.12.yml --lockfile py-3.12.conda-lock.yml
-version: 1
-metadata:
- content_hash:
- win-64: 1b4ed5aa963ceaa3fa7bc2b3f48474b03559ad1b34508abea400853d5d141a31
- linux-64: ddc1ef05f5eda34fc0a7036911d4010fbc7c6f519f33466b4c10eee2559f219d
- channels:
- - url: conda-forge
- used_env_vars: []
- - url: nodefaults
- used_env_vars: []
- platforms:
- - win-64
- - linux-64
- sources:
- - pyproject.toml
- - environments/env-python-3.12.yml
-package:
-- name: _openmp_mutex
- version: '4.5'
- manager: conda
- platform: linux-64
- dependencies:
- llvm-openmp: '>=9.0.1'
- url: https://repo.prefix.dev/conda-forge/linux-64/_openmp_mutex-4.5-7_kmp_llvm.conda
- hash:
- md5: 887b70e1d607fba7957aa02f9ee0d939
- sha256: c0cddb66070dd6355311f7667ce2acccf70d1013edaa6e97f22859502fefdb22
- category: main
- optional: false
-- name: _openmp_mutex
- version: '4.5'
- manager: conda
- platform: win-64
- dependencies:
- libgomp: '>=7.5.0'
- libwinpthread: '>=12.0.0.r4.gg4f2fc60ca'
- url: https://repo.prefix.dev/conda-forge/win-64/_openmp_mutex-4.5-20_gnu.conda
- hash:
- md5: 1626967b574d1784b578b52eaeb071e7
- sha256: 8a1cee28bd0ee7451ada1cd50b64720e57e17ff994fc62dd8329bef570d382e4
- 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: astroid
- 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.4-py312h7900ff3_0.conda
- hash:
- md5: 78bdb6d3da524bdea10ef44e5ec7658d
- sha256: 50d706c0700ee47617de6a850cab0bb4a3419c2ed86804c21f449735f09e1c48
- category: dev
- optional: true
-- name: astroid
- 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.4-py312h2e8e312_0.conda
- hash:
- md5: 0cec3709c887fd21483f9fe36d039bac
- sha256: 24916ad967b6b0d25c6ed2cff1e61b17f4f72d0c73cbdc5f2afdd55dcc0a36b5
- category: dev
- optional: true
-- name: babel
- version: 2.18.0
- manager: conda
- platform: linux-64
- dependencies:
- python: ''
- pytz: '>=2015.7'
- url: https://repo.prefix.dev/conda-forge/noarch/babel-2.18.0-pyhcf101f3_0.conda
- hash:
- md5: ea5be9abc2939c8431893b4e123a2065
- sha256: 7377bce9fcc03fecd3607843d20b50546c30a923a3517a322a2a784fa6e380eb
- category: dev
- optional: true
-- name: babel
- version: 2.18.0
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.10'
- pytz: '>=2015.7'
- url: https://repo.prefix.dev/conda-forge/noarch/babel-2.18.0-pyhcf101f3_0.conda
- hash:
- md5: ea5be9abc2939c8431893b4e123a2065
- sha256: 7377bce9fcc03fecd3607843d20b50546c30a923a3517a322a2a784fa6e380eb
- category: dev
- optional: true
-- name: backports.zstd
- version: 1.3.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.3.0-py312h90b7ffd_0.conda
- hash:
- md5: 5b8c55fed2e576dde4b0b33693a4fdb1
- sha256: d77a24be15e283d83214121428290dbe55632a6e458378205b39c550afa008cf
- category: dev
- optional: true
-- name: backports.zstd
- version: 1.3.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.3.0-py312h06d0912_0.conda
- hash:
- md5: 2db2b356f08f19ce4309a79a9ee6b9d8
- sha256: c9c97cd644faa6c4fb38017c5ecfd082f56a3126af5925d246364fa4a22b2a74
- category: dev
- optional: true
-- 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
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- 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-py312hdb49522_1.conda
- hash:
- md5: 64088dffd7413a2dd557ce837b4cbbdb
- sha256: 49df13a1bb5e388ca0e4e87022260f9501ed4192656d23dc9d9a1b4bf3787918
- category: dev
- optional: true
-- name: brotli-python
- version: 1.2.0
- 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/brotli-python-1.2.0-py312hc6d9e41_1.conda
- hash:
- md5: e8e7a6346a9e50d19b4daf41f367366f
- sha256: 2bb6f384a51929ef2d5d6039fcf6c294874f20aaab2f63ca768cbe462ed4b379
- category: dev
- optional: true
-- 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_9.conda
- hash:
- md5: d2ffd7602c02f2b316fd921d39876885
- sha256: 0b75d45f0bba3e95dc693336fa51f40ea28c980131fec438afb7ce6118ed05f6
- 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_9.conda
- hash:
- md5: 4cb8e6b48f67de0b018719cdf1136306
- sha256: 76dfb71df5e8d1c4eded2dbb5ba15bb8fb2e2b0fe42d94145d5eed4c75c35902
- category: main
- optional: false
-- name: c-ares
- version: 1.34.6
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- url: https://repo.prefix.dev/conda-forge/linux-64/c-ares-1.34.6-hb03c661_0.conda
- hash:
- md5: 920bb03579f15389b9e512095ad995b7
- sha256: cc9accf72fa028d31c2a038460787751127317dcfa991f8d1f1babf216bb454e
- category: main
- optional: false
-- name: ca-certificates
- version: 2026.1.4
- manager: conda
- platform: linux-64
- dependencies:
- __unix: ''
- url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2026.1.4-hbd8a1cb_0.conda
- hash:
- md5: bddacf101bb4dd0e51811cb69c7790e2
- sha256: b5974ec9b50e3c514a382335efa81ed02b05906849827a34061c496f4defa0b2
- category: main
- optional: false
-- name: ca-certificates
- version: 2026.1.4
- manager: conda
- platform: win-64
- dependencies:
- __win: ''
- url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2026.1.4-h4c7d964_0.conda
- hash:
- md5: 84d389c9eee640dda3d26fc5335c67d8
- sha256: 4ddcb01be03f85d3db9d881407fb13a673372f1b9fac9c836ea441893390e049
- category: main
- optional: false
-- name: cached-property
- version: 1.5.2
- manager: conda
- platform: linux-64
- dependencies:
- cached_property: '>=1.5.2,<1.5.3.0a0'
- url: https://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2
- hash:
- md5: 9b347a7ec10940d3f7941ff6c460b551
- sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17
- category: main
- optional: false
-- name: cached-property
- version: 1.5.2
- manager: conda
- platform: win-64
- dependencies:
- cached_property: '>=1.5.2,<1.5.3.0a0'
- url: https://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2
- hash:
- md5: 9b347a7ec10940d3f7941ff6c460b551
- sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17
- category: main
- optional: false
-- name: cached_property
- version: 1.5.2
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.6'
- url: https://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2
- hash:
- md5: 576d629e47797577ab0f1b351297ef4a
- sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7
- category: main
- optional: false
-- name: cached_property
- version: 1.5.2
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.6'
- url: https://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2
- hash:
- md5: 576d629e47797577ab0f1b351297ef4a
- sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7
- category: main
- optional: false
-- name: certifi
- version: 2026.1.4
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/certifi-2026.1.4-pyhd8ed1ab_0.conda
- hash:
- md5: eacc711330cd46939f66cd401ff9c44b
- sha256: 110338066d194a715947808611b763857c15458f8b3b97197387356844af9450
- category: dev
- optional: true
-- name: certifi
- version: 2026.1.4
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/certifi-2026.1.4-pyhd8ed1ab_0.conda
- hash:
- md5: eacc711330cd46939f66cd401ff9c44b
- sha256: 110338066d194a715947808611b763857c15458f8b3b97197387356844af9450
- category: dev
- optional: true
-- 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: dev
- optional: true
-- 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: dev
- optional: true
-- 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.13.4
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- python: '>=3.12,<3.13.0a0'
- python_abi: 3.12.*
- tomli: ''
- url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.13.4-py312h8a5da7c_0.conda
- hash:
- md5: a8df7f0812ac4fa6bbc7135556d3e2c4
- sha256: 2c785feaf79c31981ef4a87e41ea1161e1ce6b740ce3f1fb9cf44245cae5cf29
- category: dev
- optional: true
-- name: coverage
- version: 7.13.4
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.12,<3.13.0a0'
- python_abi: 3.12.*
- tomli: ''
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.13.4-py312h05f76fc_0.conda
- hash:
- md5: 19f19b2b7c41495cb27c04419acb8aaf
- sha256: abcb257f21e8481dfff9b388e12c5df3dd1a335228785d5e900f9fb22197627a
- category: dev
- optional: true
-- name: cycler
- version: 0.12.1
- manager: conda
- platform: linux-64
- dependencies:
- python: ''
- url: https://repo.prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhcf101f3_2.conda
- hash:
- md5: 4c2a8fef270f6c69591889b93f9f55c1
- sha256: bb47aec5338695ff8efbddbc669064a3b10fe34ad881fb8ad5d64fbfa6910ed1
- category: main
- optional: false
-- name: cycler
- version: 0.12.1
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhcf101f3_2.conda
- hash:
- md5: 4c2a8fef270f6c69591889b93f9f55c1
- sha256: bb47aec5338695ff8efbddbc669064a3b10fe34ad881fb8ad5d64fbfa6910ed1
- category: main
- optional: false
-- name: dill
- version: 0.4.1
- manager: conda
- platform: linux-64
- dependencies:
- python: ''
- url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.1-pyhcf101f3_0.conda
- hash:
- md5: 080a808fce955026bf82107d955d32da
- sha256: 1ef84c0cc4efd0c2d58c3cb365945edbd9ee42a1c54514d1ccba4b641005f757
- category: dev
- optional: true
-- name: dill
- version: 0.4.1
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.1-pyhcf101f3_0.conda
- hash:
- md5: 080a808fce955026bf82107d955d32da
- sha256: 1ef84c0cc4efd0c2d58c3cb365945edbd9ee42a1c54514d1ccba4b641005f757
- category: dev
- optional: true
-- name: discretize
- version: 0.12.0
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- libstdcxx: '>=14'
- numpy: '>=1.23,<3'
- python: ''
- python_abi: 3.12.*
- scipy: '>=1.12'
- url: https://repo.prefix.dev/conda-forge/linux-64/discretize-0.12.0-np2py312h2a48985_1.conda
- hash:
- md5: 9bad9d0469edbf16c488eeb38307d1fc
- sha256: 9983e6b5c479a22be18e076b1e6f4d9b254934daf25aa764a3b004c43e903413
- category: main
- optional: false
-- name: discretize
- version: 0.12.0
- manager: conda
- platform: win-64
- dependencies:
- numpy: '>=1.23,<3'
- python: ''
- python_abi: 3.12.*
- scipy: '>=1.12'
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/discretize-0.12.0-np2py312h7c90ba1_1.conda
- hash:
- md5: ab5803112df97c8d3583269f27dc921a
- sha256: 3b8427d5a3a799dc1047f5d724304b4395fb8f6657c3c2973ef03042c1565790
- category: main
- optional: false
-- name: docutils
- version: 0.21.2
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.9'
- url: https://repo.prefix.dev/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_1.conda
- hash:
- md5: 24c1ca34138ee57de72a943237cde4cc
- sha256: fa5966bb1718bbf6967a85075e30e4547901410cc7cb7b16daf68942e9a94823
- category: dev
- optional: true
-- name: docutils
- version: 0.21.2
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.9'
- url: https://repo.prefix.dev/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_1.conda
- hash:
- md5: 24c1ca34138ee57de72a943237cde4cc
- sha256: fa5966bb1718bbf6967a85075e30e4547901410cc7cb7b16daf68942e9a94823
- category: dev
- optional: true
-- name: exceptiongroup
- version: 1.3.1
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.10'
- typing_extensions: '>=4.6.0'
- url: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.3.1-pyhd8ed1ab_0.conda
- hash:
- md5: 8e662bd460bda79b1ea39194e3c4c9ab
- sha256: ee6cf346d017d954255bbcbdb424cddea4d14e4ed7e9813e429db1d795d01144
- category: dev
- optional: true
-- name: exceptiongroup
- version: 1.3.1
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.10'
- typing_extensions: '>=4.6.0'
- url: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.3.1-pyhd8ed1ab_0.conda
- hash:
- md5: 8e662bd460bda79b1ea39194e3c4c9ab
- sha256: ee6cf346d017d954255bbcbdb424cddea4d14e4ed7e9813e429db1d795d01144
- category: dev
- optional: true
-- name: fonttools
- version: 4.61.1
- 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.61.1-py312h8a5da7c_0.conda
- hash:
- md5: 3bf8fb959dc598c67dac0430b4aff57a
- sha256: c73cd238e0f6b2183c5168b64aa35a7eb66bb145192a9b26bb9041a4152844a3
- category: main
- optional: false
-- name: fonttools
- version: 4.61.1
- 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.61.1-py312h05f76fc_0.conda
- hash:
- md5: 449a1487319070f736382d2b53bb5aec
- sha256: 49df76416b253429ea7ff907e03215f2bb1450c03908b7e413a8bdd85154eded
- category: main
- optional: false
-- name: freetype
- version: 2.14.1
- manager: conda
- platform: linux-64
- dependencies:
- libfreetype: 2.14.1
- libfreetype6: 2.14.1
- url: https://repo.prefix.dev/conda-forge/linux-64/freetype-2.14.1-ha770c72_0.conda
- hash:
- md5: 4afc585cd97ba8a23809406cd8a9eda8
- sha256: bf8e4dffe46f7d25dc06f31038cacb01672c47b9f45201f065b0f4d00ab0a83e
- category: main
- optional: false
-- name: freetype
- version: 2.14.1
- manager: conda
- platform: win-64
- dependencies:
- libfreetype: 2.14.1
- libfreetype6: 2.14.1
- url: https://repo.prefix.dev/conda-forge/win-64/freetype-2.14.1-h57928b3_0.conda
- hash:
- md5: d69c21967f35eb2ce7f1f85d6b6022d3
- sha256: a9b3313edea0bf14ea6147ea43a1059d0bf78771a1336d2c8282891efc57709a
- category: main
- optional: false
-- name: 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.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_101.conda
- hash:
- md5: 23965cb240cb534649dfe2327ecec4fa
- sha256: bb5cefbe5b54195a54f749189fc6797568d52e8790b2f542143c681b98a92b71
- 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.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_101.conda
- hash:
- md5: 555b01f3a74e7ca56445c20555b78cff
- sha256: 15ddb5420b289cd048ffef089514c31cdc90c77d5cef7e36667563335be2769d
- 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.5,<2.0a0'
- libcurl: '>=8.18.0,<9.0a0'
- libgcc: '>=14'
- libgfortran: ''
- libgfortran5: '>=14.3.0'
- libstdcxx: '>=14'
- libzlib: '>=1.3.1,<2.0a0'
- openssl: '>=3.5.5,<4.0a0'
- url: https://repo.prefix.dev/conda-forge/linux-64/hdf5-1.14.6-nompi_h19486de_106.conda
- hash:
- md5: c223ee1429ba538f3e48cfb4a0b97357
- sha256: 1fc50ce3b86710fba3ec9c5714f1612b5ffa4230d70bfe43e2a1436eacba1621
- category: main
- optional: false
-- name: hdf5
- version: 1.14.6
- manager: conda
- platform: win-64
- dependencies:
- libaec: '>=1.1.5,<2.0a0'
- libcurl: '>=8.18.0,<9.0a0'
- libzlib: '>=1.3.1,<2.0a0'
- openssl: '>=3.5.5,<4.0a0'
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/hdf5-1.14.6-nompi_hae35d4c_106.conda
- hash:
- md5: e2fb54650b51dcd92dfcbf42d2222ff8
- sha256: d9f8f202ee91ae93515b18c498970f178dfd061743f25a65a205f848e197437f
- 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: '78.2'
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- libstdcxx: '>=14'
- url: https://repo.prefix.dev/conda-forge/linux-64/icu-78.2-h33c6efd_0.conda
- hash:
- md5: 186a18e3ba246eccfc7cff00cd19a870
- sha256: 142a722072fa96cf16ff98eaaf641f54ab84744af81754c292cb81e0881c0329
- category: main
- optional: false
-- name: icu
- version: '78.2'
- manager: conda
- platform: win-64
- dependencies:
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/icu-78.2-h637d24d_0.conda
- hash:
- md5: 0ee3bb487600d5e71ab7d28951b2016a
- sha256: 5a41fb28971342e293769fc968b3414253a2f8d9e30ed7c31517a15b4887246a
- category: main
- optional: false
-- name: idna
- version: '3.11'
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/idna-3.11-pyhd8ed1ab_0.conda
- hash:
- md5: 53abe63df7e10a6ba605dc5f9f961d36
- sha256: ae89d0299ada2a3162c2614a9d26557a92aa6a77120ce142f8e0109bbf0342b0
- category: 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: 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: dev
- optional: true
-- 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: dev
- optional: true
-- 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: ''
- url: https://repo.prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhcf101f3_1.conda
- hash:
- md5: 04558c96691bed63104678757beb4f8d
- sha256: fc9ca7348a4f25fed2079f2153ecdcf5f9cf2a0bc36c4172420ca09e1849df7b
- category: dev
- optional: true
-- name: jinja2
- version: 3.1.6
- manager: conda
- platform: win-64
- dependencies:
- markupsafe: '>=2.0'
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhcf101f3_1.conda
- hash:
- md5: 04558c96691bed63104678757beb4f8d
- sha256: fc9ca7348a4f25fed2079f2153ecdcf5f9cf2a0bc36c4172420ca09e1849df7b
- category: dev
- optional: true
-- name: keyutils
- version: 1.6.3
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=13'
- url: https://repo.prefix.dev/conda-forge/linux-64/keyutils-1.6.3-hb9d3cd8_0.conda
- hash:
- md5: b38117a3c920364aff79f870c984b4a3
- sha256: 0960d06048a7185d3542d850986d807c6e37ca2e644342dd0c72feefcf26c2a4
- category: main
- optional: false
-- name: kiwisolver
- version: 1.4.9
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- libstdcxx: '>=14'
- python: ''
- python_abi: 3.12.*
- url: https://repo.prefix.dev/conda-forge/linux-64/kiwisolver-1.4.9-py312h0a2e395_2.conda
- hash:
- md5: 3a3004fddd39e3bb1a631b08d7045156
- sha256: 170d76b7ac7197012bb048e1021482a7b2455f3592a5e8d97c96f285ebad064b
- category: main
- optional: false
-- name: kiwisolver
- version: 1.4.9
- 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.4.9-py312h78d62e6_2.conda
- hash:
- md5: 5dabe50380555cf2e89bd58173e88739
- sha256: 98d4946312b570bea37260b51cdc4dbc4847735703877580fc3566166623c8a5
- category: main
- optional: false
-- name: krb5
- version: 1.22.2
- manager: conda
- platform: linux-64
- dependencies:
- __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: fb53fb07ce46a575c5d004bbc96032c2
- sha256: 3e307628ca3527448dd1cb14ad7bb9d04d1d28c7d4c5f97ba196ae984571dd25
- category: main
- optional: false
-- name: krb5
- version: 1.22.2
- manager: conda
- platform: win-64
- dependencies:
- openssl: '>=3.5.5,<4.0a0'
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/krb5-1.22.2-h0ea6238_0.conda
- hash:
- md5: 4432f52dc0c8eb6a7a6abc00a037d93c
- sha256: eb60f1ad8b597bcf95dee11bc11fe71a8325bc1204cf51d2bb1f2120ffd77761
- category: main
- optional: false
-- name: lcms2
- version: '2.18'
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- libjpeg-turbo: '>=3.1.2,<4.0a0'
- libtiff: '>=4.7.1,<4.8.0a0'
- url: https://repo.prefix.dev/conda-forge/linux-64/lcms2-2.18-h0c24ade_0.conda
- hash:
- md5: 6f2e2c8f58160147c4d1c6f4c14cbac4
- sha256: 836ec4b895352110335b9fdcfa83a8dcdbe6c5fb7c06c4929130600caea91c0a
- category: main
- optional: false
-- name: lcms2
- version: '2.18'
- manager: conda
- platform: win-64
- dependencies:
- libjpeg-turbo: '>=3.1.2,<4.0a0'
- 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/lcms2-2.18-hf2c6c5f_0.conda
- hash:
- md5: b6c68d6b829b044cd17a41e0a8a23ca1
- sha256: 7eeb18c5c86db146b62da66d9e8b0e753a52987f9134a494309588bbeceddf28
- category: main
- optional: false
-- name: ld_impl_linux-64
- version: 2.45.1
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- zstd: '>=1.5.7,<1.6.0a0'
- url: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.45.1-default_hbd61a6d_101.conda
- hash:
- md5: 12bd9a3f089ee6c9266a37dab82afabd
- sha256: 565941ac1f8b0d2f2e8f02827cbca648f4d18cd461afc31f15604cd291b5c5f3
- 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.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/libaec-1.1.5-h088129d_0.conda
- hash:
- md5: 86f7414544ae606282352fa1e116b41f
- sha256: 822e4ae421a7e9c04e841323526321185f6659222325e1a9aedec811c686e688
- category: main
- optional: false
-- name: libaec
- version: 1.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/libaec-1.1.5-haf901d7_0.conda
- hash:
- md5: 43b6385cfad52a7083f2c41984eb4e91
- sha256: e54c08964262c73671d9e80e400333e59c617e0b454476ad68933c0c458156c8
- category: main
- optional: false
-- name: libblas
- version: 3.11.0
- manager: conda
- platform: linux-64
- dependencies:
- mkl: '>=2025.3.0,<2026.0a0'
- url: https://repo.prefix.dev/conda-forge/linux-64/libblas-3.11.0-5_h5875eb1_mkl.conda
- hash:
- md5: 9d2f2e3a943d38f972ceef9cde8ba4bf
- sha256: 328d64d4eb51047c39a8039a30eb47695855829d0a11b72d932171cb1dcdfad3
- category: main
- optional: false
-- name: libblas
- version: 3.11.0
- manager: conda
- platform: win-64
- dependencies:
- mkl: '>=2025.3.0,<2026.0a0'
- url: https://repo.prefix.dev/conda-forge/win-64/libblas-3.11.0-5_hf2e6a31_mkl.conda
- hash:
- md5: f9decf88743af85c9c9e05556a4c47c0
- sha256: f0cb7b2697461a306341f7ff32d5b361bb84f3e94478464c1e27ee01fc8f276b
- category: main
- optional: false
-- name: libbrotlicommon
- version: 1.2.0
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlicommon-1.2.0-hb03c661_1.conda
- hash:
- md5: 72c8fd1af66bd67bf580645b426513ed
- sha256: 318f36bd49ca8ad85e6478bd8506c88d82454cc008c1ac1c6bf00a3c42fa610e
- category: main
- optional: false
-- name: libbrotlicommon
- version: 1.2.0
- manager: conda
- platform: win-64
- dependencies:
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/libbrotlicommon-1.2.0-hfd05255_1.conda
- hash:
- md5: 444b0a45bbd1cb24f82eedb56721b9c4
- sha256: 5097303c2fc8ebf9f9ea9731520aa5ce4847d0be41764edd7f6dee2100b82986
- category: main
- optional: false
-- name: libbrotlidec
- version: 1.2.0
- manager: conda
- platform: linux-64
- dependencies:
- __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-hb03c661_1.conda
- hash:
- md5: 366b40a69f0ad6072561c1d09301c886
- sha256: 12fff21d38f98bc446d82baa890e01fd82e3b750378fedc720ff93522ffb752b
- category: main
- optional: false
-- name: libbrotlidec
- version: 1.2.0
- manager: conda
- platform: win-64
- dependencies:
- libbrotlicommon: 1.2.0
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/libbrotlidec-1.2.0-hfd05255_1.conda
- hash:
- md5: 450e3ae947fc46b60f1d8f8f318b40d4
- sha256: 3239ce545cf1c32af6fffb7fc7c75cb1ef5b6ea8221c66c85416bb2d46f5cccb
- category: main
- optional: false
-- name: libbrotlienc
- version: 1.2.0
- manager: conda
- platform: linux-64
- dependencies:
- __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-hb03c661_1.conda
- hash:
- md5: 4ffbb341c8b616aa2494b6afb26a0c5f
- sha256: a0c15c79997820bbd3fbc8ecf146f4fe0eca36cc60b62b63ac6cf78857f1dd0d
- category: main
- optional: false
-- name: libbrotlienc
- version: 1.2.0
- manager: conda
- platform: win-64
- dependencies:
- libbrotlicommon: 1.2.0
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/libbrotlienc-1.2.0-hfd05255_1.conda
- hash:
- md5: ccd93cfa8e54fd9df4e83dbe55ff6e8c
- sha256: 3226df6b7df98734440739f75527d585d42ca2bfe912fbe8d1954c512f75341a
- category: main
- optional: false
-- name: libcblas
- version: 3.11.0
- manager: conda
- platform: linux-64
- dependencies:
- libblas: 3.11.0
- url: https://repo.prefix.dev/conda-forge/linux-64/libcblas-3.11.0-5_hfef963f_mkl.conda
- hash:
- md5: 9b6cb3aa4b7912121c64b97a76ca43d5
- sha256: 8352f472c49c42a83a20387b5f6addab1f910c5a62f4f5b8998d7dc89131ba2e
- category: main
- optional: false
-- name: libcblas
- version: 3.11.0
- manager: conda
- platform: win-64
- dependencies:
- libblas: 3.11.0
- url: https://repo.prefix.dev/conda-forge/win-64/libcblas-3.11.0-5_h2a3cdd5_mkl.conda
- hash:
- md5: b3fa8e8b55310ba8ef0060103afb02b5
- sha256: 49dc59d8e58360920314b8d276dd80da7866a1484a9abae4ee2760bc68f3e68d
- category: main
- optional: false
-- name: libcurl
- version: 8.18.0
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- krb5: '>=1.22.2,<1.23.0a0'
- libgcc: '>=14'
- libnghttp2: '>=1.67.0,<2.0a0'
- libssh2: '>=1.11.1,<2.0a0'
- libzlib: '>=1.3.1,<2.0a0'
- openssl: '>=3.5.5,<4.0a0'
- zstd: '>=1.5.7,<1.6.0a0'
- url: https://repo.prefix.dev/conda-forge/linux-64/libcurl-8.18.0-hcf29cc6_1.conda
- hash:
- md5: 1707cdd636af2ff697b53186572c9f77
- sha256: c84e8dccb65ad5149c0121e4b54bdc47fa39303fd5f4979b8c44bb51b39a369b
- category: main
- optional: false
-- name: libcurl
- version: 8.18.0
- manager: conda
- platform: win-64
- dependencies:
- krb5: '>=1.22.2,<1.23.0a0'
- libssh2: '>=1.11.1,<2.0a0'
- libzlib: '>=1.3.1,<2.0a0'
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/libcurl-8.18.0-h8206538_1.conda
- hash:
- md5: b7243e3227df9a1852a05762d0efe08d
- sha256: f7dfa98e615a0ddc8de80b32eb6700ea4ebf7b872a6de22a7eadc30a52edd4bf
- category: main
- optional: false
-- name: libdeflate
- version: '1.25'
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- url: https://repo.prefix.dev/conda-forge/linux-64/libdeflate-1.25-h17f619e_0.conda
- hash:
- md5: 6c77a605a7a689d17d4819c0f8ac9a00
- sha256: aa8e8c4be9a2e81610ddf574e05b64ee131fab5e0e3693210c9d6d2fba32c680
- category: main
- optional: false
-- name: libdeflate
- version: '1.25'
- 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/libdeflate-1.25-h51727cc_0.conda
- hash:
- md5: e77030e67343e28b084fabd7db0ce43e
- sha256: 834e4881a18b690d5ec36f44852facd38e13afe599e369be62d29bd675f107ee
- 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.4
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- url: https://repo.prefix.dev/conda-forge/linux-64/libexpat-2.7.4-hecca717_0.conda
- hash:
- md5: e7f7ce06ec24cfcfb9e36d28cf82ba57
- sha256: d78f1d3bea8c031d2f032b760f36676d87929b18146351c4464c66b0869df3f5
- category: main
- optional: false
-- name: libexpat
- version: 2.7.4
- manager: conda
- platform: win-64
- dependencies:
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/libexpat-2.7.4-hac47afa_0.conda
- hash:
- md5: 1c1ced969021592407f16ada4573586d
- sha256: b31f6fb629c4e17885aaf2082fb30384156d16b48b264e454de4a06a313b533d
- 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-h3435931_0.conda
- hash:
- md5: a360c33a5abe61c07959e449fa1453eb
- sha256: 31f19b6a88ce40ebc0d5a992c131f57d919f73c0b92cd1617a5bec83f6e961e6
- 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-h3d046cb_0.conda
- hash:
- md5: 720b39f5ec0610457b725eb3f396219a
- sha256: 59d01f2dfa8b77491b5888a5ab88ff4e1574c9359f7e229da254cdfe27ddc190
- category: main
- optional: false
-- name: libfreetype
- version: 2.14.1
- manager: conda
- platform: linux-64
- dependencies:
- libfreetype6: '>=2.14.1'
- url: https://repo.prefix.dev/conda-forge/linux-64/libfreetype-2.14.1-ha770c72_0.conda
- hash:
- md5: f4084e4e6577797150f9b04a4560ceb0
- sha256: 4641d37faeb97cf8a121efafd6afd040904d4bca8c46798122f417c31d5dfbec
- category: main
- optional: false
-- name: libfreetype
- version: 2.14.1
- manager: conda
- platform: win-64
- dependencies:
- libfreetype6: '>=2.14.1'
- url: https://repo.prefix.dev/conda-forge/win-64/libfreetype-2.14.1-h57928b3_0.conda
- hash:
- md5: 3235024fe48d4087721797ebd6c9d28c
- sha256: 2029702ec55e968ce18ec38cc8cf29f4c8c4989a0d51797164dab4f794349a64
- category: main
- optional: false
-- name: libfreetype6
- version: 2.14.1
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- libpng: '>=1.6.50,<1.7.0a0'
- libzlib: '>=1.3.1,<2.0a0'
- url: https://repo.prefix.dev/conda-forge/linux-64/libfreetype6-2.14.1-h73754d4_0.conda
- hash:
- md5: 8e7251989bca326a28f4a5ffbd74557a
- sha256: 4a7af818a3179fafb6c91111752954e29d3a2a950259c14a2fc7ba40a8b03652
- category: main
- optional: false
-- name: libfreetype6
- version: 2.14.1
- manager: conda
- platform: win-64
- dependencies:
- libpng: '>=1.6.50,<1.7.0a0'
- libzlib: '>=1.3.1,<2.0a0'
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/libfreetype6-2.14.1-hdbac1cb_0.conda
- hash:
- md5: 6e7c5c5ab485057b5d07fd8188ba5c28
- sha256: 223710600b1a5567163f7d66545817f2f144e4ef8f84e99e90f6b8a4e19cb7ad
- category: main
- optional: false
-- name: libgcc
- version: 15.2.0
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- _openmp_mutex: '>=4.5'
- url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-15.2.0-he0feb66_18.conda
- hash:
- md5: 0aa00f03f9e39fb9876085dee11a85d4
- sha256: faf7d2017b4d718951e3a59d081eb09759152f93038479b768e3d612688f83f5
- category: main
- optional: false
-- name: libgcc
- version: 15.2.0
- manager: conda
- platform: win-64
- dependencies:
- _openmp_mutex: '>=4.5'
- libwinpthread: '>=12.0.0.r4.gg4f2fc60ca'
- url: https://repo.prefix.dev/conda-forge/win-64/libgcc-15.2.0-h8ee18e1_18.conda
- hash:
- md5: b085746891cca3bd2704a450a7b4b5ce
- sha256: da2c96563c76b8c601746f03e03ac75d2b4640fa2ee017cb23d6c9fc31f1b2c6
- 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_18.conda
- hash:
- md5: d5e96b1ed75ca01906b3d2469b4ce493
- sha256: e318a711400f536c81123e753d4c797a821021fb38970cebfb3f454126016893
- 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_18.conda
- hash:
- md5: 9063115da5bc35fdc3e1002e69b9ef6e
- sha256: d2c9fad338fd85e4487424865da8e74006ab2e2475bd788f624d7a39b2a72aee
- category: main
- optional: false
-- name: libgfortran5
- version: 15.2.0
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=15.2.0'
- url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran5-15.2.0-h68bc16d_18.conda
- hash:
- md5: 646855f357199a12f02a87382d429b75
- sha256: 539b57cf50ec85509a94ba9949b7e30717839e4d694bc94f30d41c9d34de2d12
- category: main
- optional: false
-- name: libgomp
- version: 15.2.0
- manager: conda
- platform: win-64
- dependencies:
- libwinpthread: '>=12.0.0.r4.gg4f2fc60ca'
- url: https://repo.prefix.dev/conda-forge/win-64/libgomp-15.2.0-h8ee18e1_18.conda
- hash:
- md5: 939fb173e2a4d4e980ef689e99b35223
- sha256: 94981bc2e42374c737750895c6fdcfc43b7126c4fc788cad0ecc7281745931da
- category: main
- optional: false
-- name: libhwloc
- version: 2.12.2
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- libstdcxx: '>=14'
- libxml2: ''
- libxml2-16: '>=2.14.6'
- url: https://repo.prefix.dev/conda-forge/linux-64/libhwloc-2.12.2-default_hafda6a7_1000.conda
- hash:
- md5: 0ed3aa3e3e6bc85050d38881673a692f
- sha256: 2cf160794dda62cf93539adf16d26cfd31092829f2a2757dbdd562984c1b110a
- category: main
- optional: false
-- name: libhwloc
- version: 2.12.2
- manager: conda
- platform: win-64
- dependencies:
- libwinpthread: '>=12.0.0.r4.gg4f2fc60ca'
- libxml2: ''
- libxml2-16: '>=2.14.6'
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/libhwloc-2.12.2-default_h4379cf1_1000.conda
- hash:
- md5: 3b576f6860f838f950c570f4433b086e
- sha256: 8cdf11333a81085468d9aa536ebb155abd74adc293576f6013fc0c85a7a90da3
- category: main
- optional: false
-- name: libiconv
- version: '1.18'
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- url: https://repo.prefix.dev/conda-forge/linux-64/libiconv-1.18-h3b78370_2.conda
- hash:
- md5: 915f5995e94f60e9a4826e0b0920ee88
- sha256: c467851a7312765447155e071752d7bf9bf44d610a5687e32706f480aad2833f
- 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: liblapack
- version: 3.11.0
- manager: conda
- platform: linux-64
- dependencies:
- libblas: 3.11.0
- url: https://repo.prefix.dev/conda-forge/linux-64/liblapack-3.11.0-5_h5e43f62_mkl.conda
- hash:
- md5: 88155c848e1278b0990692e716c9eab4
- sha256: b411a9dccb21cd6231f8f66b63916a6520a7b23363e6f9d1d111e8660f2798b0
- category: main
- optional: false
-- name: liblapack
- version: 3.11.0
- manager: conda
- platform: win-64
- dependencies:
- libblas: 3.11.0
- url: https://repo.prefix.dev/conda-forge/win-64/liblapack-3.11.0-5_hf9ab0e9_mkl.conda
- hash:
- md5: e62c42a4196dee97d20400612afcb2b1
- sha256: a2d33f5cc2b8a9042f2af6981c6733ab1a661463823eaa56595a9c58c0ab77e1
- category: main
- optional: false
-- name: liblzma
- version: 5.8.2
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- url: https://repo.prefix.dev/conda-forge/linux-64/liblzma-5.8.2-hb03c661_0.conda
- hash:
- md5: c7c83eecbb72d88b940c249af56c8b17
- sha256: 755c55ebab181d678c12e49cced893598f2bab22d582fbbf4d8b83c18be207eb
- category: main
- optional: false
-- name: liblzma
- version: 5.8.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/liblzma-5.8.2-hfd05255_0.conda
- hash:
- md5: ba0bfd4c3cf73f299ffe46ff0eaeb8e3
- sha256: f25bf293f550c8ed2e0c7145eb404324611cfccff37660869d97abf526eb957c
- 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: libpng
- version: 1.6.55
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- libzlib: '>=1.3.1,<2.0a0'
- url: https://repo.prefix.dev/conda-forge/linux-64/libpng-1.6.55-h421ea60_0.conda
- hash:
- md5: 5f13ffc7d30ffec87864e678df9957b4
- sha256: 36ade759122cdf0f16e2a2562a19746d96cf9c863ffaa812f2f5071ebbe9c03c
- category: main
- optional: false
-- name: libpng
- version: 1.6.55
- 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.55-h7351971_0.conda
- hash:
- md5: 43f47a9151b9b8fc100aeefcf350d1a0
- sha256: db23f281fa80597a0dc0445b18318346862602d7081ed76244df8cc4418d6d68
- category: main
- optional: false
-- name: libsqlite
- version: 3.51.2
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- icu: '>=78.2,<79.0a0'
- libgcc: '>=14'
- libzlib: '>=1.3.1,<2.0a0'
- url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.51.2-hf4e2dac_0.conda
- hash:
- md5: da5be73701eecd0e8454423fd6ffcf30
- sha256: 04596fcee262a870e4b7c9807224680ff48d4d0cc0dac076a602503d3dc6d217
- category: main
- optional: false
-- name: libsqlite
- version: 3.51.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.2-hf5d6505_0.conda
- hash:
- md5: 903979414b47d777d548e5f0165e6cd8
- sha256: 756478128e3e104bd7e7c3ce6c1b0efad7e08c7320c69fdc726e039323c63fbb
- category: main
- optional: false
-- name: libssh2
- version: 1.11.1
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=13'
- libzlib: '>=1.3.1,<2.0a0'
- openssl: '>=3.5.0,<4.0a0'
- url: https://repo.prefix.dev/conda-forge/linux-64/libssh2-1.11.1-hcf80075_0.conda
- hash:
- md5: eecce068c7e4eddeb169591baac20ac4
- sha256: fa39bfd69228a13e553bd24601332b7cfeb30ca11a3ca50bb028108fe90a7661
- category: main
- optional: false
-- name: libssh2
- version: 1.11.1
- manager: conda
- platform: win-64
- dependencies:
- libzlib: '>=1.3.1,<2.0a0'
- openssl: '>=3.5.0,<4.0a0'
- ucrt: '>=10.0.20348.0'
- vc: '>=14.2,<15'
- vc14_runtime: '>=14.29.30139'
- url: https://repo.prefix.dev/conda-forge/win-64/libssh2-1.11.1-h9aa295b_0.conda
- hash:
- md5: 9dce2f112bfd3400f4f432b3d0ac07b2
- sha256: cbdf93898f2e27cefca5f3fe46519335d1fab25c4ea2a11b11502ff63e602c09
- category: main
- optional: false
-- name: libstdcxx
- version: 15.2.0
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: 15.2.0
- url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-15.2.0-h934c35e_18.conda
- hash:
- md5: 1b08cd684f34175e4514474793d44bcb
- sha256: 78668020064fdaa27e9ab65cd2997e2c837b564ab26ce3bf0e58a2ce1a525c6e
- category: main
- optional: false
-- name: libstdcxx-ng
- version: 15.2.0
- manager: conda
- platform: linux-64
- dependencies:
- libstdcxx: 15.2.0
- url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-15.2.0-hdf11a46_18.conda
- hash:
- md5: 6235adb93d064ecdf3d44faee6f468de
- sha256: 3c902ffd673cb3c6ddde624cdb80f870b6c835f8bf28384b0016e7d444dd0145
- 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.25,<1.26.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-h9d88235_1.conda
- hash:
- md5: cd5a90476766d53e901500df9215e927
- sha256: e5f8c38625aa6d567809733ae04bb71c161a42e44a9fa8227abe61fa5c60ebe0
- category: main
- optional: false
-- name: libtiff
- version: 4.7.1
- manager: conda
- platform: win-64
- dependencies:
- lerc: '>=4.0.0,<5.0a0'
- libdeflate: '>=1.25,<1.26.0a0'
- libjpeg-turbo: '>=3.1.0,<4.0a0'
- liblzma: '>=5.8.1,<6.0a0'
- libzlib: '>=1.3.1,<2.0a0'
- 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-h8f73337_1.conda
- hash:
- md5: 549845d5133100142452812feb9ba2e8
- sha256: f1b8cccaaeea38a28b9cd496694b2e3d372bb5be0e9377c9e3d14b330d1cba8a
- category: main
- optional: false
-- name: libuuid
- version: 2.41.3
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- url: https://repo.prefix.dev/conda-forge/linux-64/libuuid-2.41.3-h5347b49_0.conda
- hash:
- md5: db409b7c1720428638e7c0d509d3e1b5
- sha256: 1a7539cfa7df00714e8943e18de0b06cceef6778e420a5ee3a2a145773758aee
- category: main
- optional: false
-- name: libwebp-base
- version: 1.6.0
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- url: https://repo.prefix.dev/conda-forge/linux-64/libwebp-base-1.6.0-hd42ef1d_0.conda
- hash:
- md5: aea31d2e5b1091feca96fcfe945c3cf9
- sha256: 3aed21ab28eddffdaf7f804f49be7a7d701e8f0e46c856d801270b470820a37b
- category: main
- optional: false
-- name: libwebp-base
- version: 1.6.0
- manager: conda
- platform: win-64
- dependencies:
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/libwebp-base-1.6.0-h4d5522a_0.conda
- hash:
- md5: f9bbae5e2537e3b06e0f7310ba76c893
- sha256: 7b6316abfea1007e100922760e9b8c820d6fc19df3f42fb5aca684cfacb31843
- category: main
- optional: false
-- name: libwinpthread
- version: 12.0.0.r4.gg4f2fc60ca
- manager: conda
- platform: win-64
- dependencies:
- ucrt: ''
- url: https://repo.prefix.dev/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h57928b3_10.conda
- hash:
- md5: 8a86073cf3b343b87d03f41790d8b4e5
- sha256: 0fccf2d17026255b6e10ace1f191d0a2a18f2d65088fd02430be17c701f8ffe0
- category: main
- optional: false
-- name: libxcb
- version: 1.17.0
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=13'
- pthread-stubs: ''
- xorg-libxau: '>=1.0.11,<2.0a0'
- xorg-libxdmcp: ''
- url: https://repo.prefix.dev/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda
- hash:
- md5: 92ed62436b625154323d40d5f2f11dd7
- sha256: 666c0c431b23c6cec6e492840b176dde533d48b7e6fb8883f5071223433776aa
- category: main
- optional: false
-- name: libxcb
- version: 1.17.0
- manager: conda
- platform: win-64
- dependencies:
- libgcc: '>=13'
- libwinpthread: '>=12.0.0.r4.gg4f2fc60ca'
- pthread-stubs: ''
- ucrt: '>=10.0.20348.0'
- xorg-libxau: '>=1.0.11,<2.0a0'
- xorg-libxdmcp: ''
- url: https://repo.prefix.dev/conda-forge/win-64/libxcb-1.17.0-h0e4246c_0.conda
- hash:
- md5: a69bbf778a462da324489976c84cfc8c
- sha256: 08dec73df0e161c96765468847298a420933a36bc4f09b50e062df8793290737
- category: main
- optional: false
-- name: libxcrypt
- version: 4.4.36
- manager: conda
- platform: linux-64
- dependencies:
- libgcc-ng: '>=12'
- url: https://repo.prefix.dev/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda
- hash:
- md5: 5aa797f8787fe7a17d1b0821485b5adc
- sha256: 6ae68e0b86423ef188196fff6207ed0c8195dd84273cb5623b85aa08033a410c
- category: main
- optional: false
-- name: libxml2
- version: 2.15.1
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- icu: '>=78.1,<79.0a0'
- libgcc: '>=14'
- libiconv: '>=1.18,<2.0a0'
- liblzma: '>=5.8.1,<6.0a0'
- libxml2-16: 2.15.1
- libzlib: '>=1.3.1,<2.0a0'
- url: https://repo.prefix.dev/conda-forge/linux-64/libxml2-2.15.1-he237659_1.conda
- hash:
- md5: 417955234eccd8f252b86a265ccdab7f
- sha256: 047be059033c394bd32ae5de66ce389824352120b3a7c0eff980195f7ed80357
- category: main
- optional: false
-- name: libxml2
- version: 2.15.1
- manager: conda
- platform: win-64
- dependencies:
- icu: '>=78.1,<79.0a0'
- libiconv: '>=1.18,<2.0a0'
- liblzma: '>=5.8.1,<6.0a0'
- libxml2-16: 2.15.1
- libzlib: '>=1.3.1,<2.0a0'
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/libxml2-2.15.1-h779ef1b_1.conda
- hash:
- md5: 68dc154b8d415176c07b6995bd3a65d9
- sha256: 8b47d5fb00a6ccc0f495d16787ab5f37a434d51965584d6000966252efecf56d
- category: main
- optional: false
-- name: libxml2-16
- version: 2.15.1
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- icu: '>=78.1,<79.0a0'
- libgcc: '>=14'
- libiconv: '>=1.18,<2.0a0'
- liblzma: '>=5.8.1,<6.0a0'
- libzlib: '>=1.3.1,<2.0a0'
- url: https://repo.prefix.dev/conda-forge/linux-64/libxml2-16-2.15.1-hca6bf5a_1.conda
- hash:
- md5: 3fdd8d99683da9fe279c2f4cecd1e048
- sha256: 8331284bf9ae641b70cdc0e5866502dd80055fc3b9350979c74bb1d192e8e09e
- category: main
- optional: false
-- name: libxml2-16
- version: 2.15.1
- manager: conda
- platform: win-64
- dependencies:
- icu: '>=78.1,<79.0a0'
- libiconv: '>=1.18,<2.0a0'
- liblzma: '>=5.8.1,<6.0a0'
- libzlib: '>=1.3.1,<2.0a0'
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/libxml2-16-2.15.1-h3cfd58e_1.conda
- hash:
- md5: 07d73826fde28e7dbaec52a3297d7d26
- sha256: a857e941156b7f462063e34e086d212c6ccbc1521ebdf75b9ed66bd90add57dc
- category: main
- optional: false
-- name: libzlib
- version: 1.3.1
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=13'
- url: https://repo.prefix.dev/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda
- hash:
- md5: edb0dca6bc32e4f4789199455a1dbeb8
- sha256: d4bfe88d7cb447768e31650f06257995601f89076080e76df55e3112d4e47dc4
- category: main
- optional: false
-- name: libzlib
- version: 1.3.1
- manager: conda
- platform: win-64
- dependencies:
- ucrt: '>=10.0.20348.0'
- vc: '>=14.2,<15'
- vc14_runtime: '>=14.29.30139'
- url: https://repo.prefix.dev/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda
- hash:
- md5: 41fbfac52c601159df6c01f875de31b9
- sha256: ba945c6493449bed0e6e29883c4943817f7c79cbff52b83360f7b341277c6402
- category: main
- optional: false
-- name: llvm-openmp
- version: 21.1.8
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-21.1.8-h4922eb0_0.conda
- hash:
- md5: f8640b709b37dc7758ddce45ea18d000
- sha256: a5a7ad16eecbe35cac63e529ea9c261bef4ccdd68cb1db247409f04529423989
- category: main
- optional: false
-- name: llvm-openmp
- version: 21.1.8
- manager: conda
- platform: win-64
- dependencies:
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-21.1.8-h4fa8253_0.conda
- hash:
- md5: 0d8b425ac862bcf17e4b28802c9351cb
- sha256: 145c4370abe870f10987efa9fc15a8383f1dab09abbc9ad4ff15a55d45658f7b
- category: main
- optional: false
-- name: markupsafe
- version: 3.0.3
- 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/markupsafe-3.0.3-py312h8a5da7c_0.conda
- hash:
- md5: f775a43412f7f3d7ed218113ad233869
- sha256: f77f9f1a4da45cbc8792d16b41b6f169f649651a68afdc10b2da9da12b9aa42b
- category: dev
- optional: true
-- name: markupsafe
- version: 3.0.3
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.12,<3.13.0a0'
- python_abi: 3.12.*
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/markupsafe-3.0.3-py312h05f76fc_0.conda
- hash:
- md5: 9a50d5e7b4f2bf5db9790bbe9421cdf8
- sha256: db1d772015ef052fedb3b4e7155b13446b49431a0f8c54c56ca6f82e1d4e258f
- category: dev
- optional: true
-- name: matplotlib-base
- version: 3.10.8
- 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.1'
- libfreetype6: '>=2.14.1'
- libgcc: '>=14'
- libstdcxx: '>=14'
- numpy: '>=1.23,<3'
- packaging: '>=20.0'
- pillow: '>=8'
- pyparsing: '>=2.3.1'
- python: '>=3.12,<3.13.0a0'
- python-dateutil: '>=2.7'
- python_abi: 3.12.*
- qhull: '>=2020.2,<2020.3.0a0'
- tk: '>=8.6.13,<8.7.0a0'
- url: https://repo.prefix.dev/conda-forge/linux-64/matplotlib-base-3.10.8-py312he3d6523_0.conda
- hash:
- md5: b8dc157bbbb69c1407478feede8b7b42
- sha256: 70cf0e7bfd50ef50eb712a6ca1eef0ef0d63b7884292acc81353327b434b548c
- category: main
- optional: false
-- name: matplotlib-base
- version: 3.10.8
- 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.1'
- libfreetype6: '>=2.14.1'
- numpy: '>=1.23,<3'
- packaging: '>=20.0'
- pillow: '>=8'
- pyparsing: '>=2.3.1'
- python: '>=3.12,<3.13.0a0'
- python-dateutil: '>=2.7'
- python_abi: 3.12.*
- qhull: '>=2020.2,<2020.3.0a0'
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/matplotlib-base-3.10.8-py312h0ebf65c_0.conda
- hash:
- md5: 46f73e68304eb61df083379b044e9eb9
- sha256: a0b6f97f562ec803483b8c222788a4364aafd47c4023e8529ebbb4f017477a86
- category: main
- optional: false
-- name: mccabe
- version: 0.7.0
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.9'
- url: https://repo.prefix.dev/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda
- hash:
- md5: 827064ddfe0de2917fb29f1da4f8f533
- sha256: 9b0037171dad0100f0296699a11ae7d355237b55f42f9094aebc0f41512d96a1
- category: dev
- optional: true
-- name: mccabe
- version: 0.7.0
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.9'
- url: https://repo.prefix.dev/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda
- hash:
- md5: 827064ddfe0de2917fb29f1da4f8f533
- sha256: 9b0037171dad0100f0296699a11ae7d355237b55f42f9094aebc0f41512d96a1
- category: dev
- optional: true
-- name: mkl
- version: 2025.3.0
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- _openmp_mutex: '>=4.5'
- libgcc: '>=14'
- libstdcxx: '>=14'
- llvm-openmp: '>=21.1.8'
- tbb: '>=2022.3.0'
- url: https://repo.prefix.dev/conda-forge/linux-64/mkl-2025.3.0-h0e700b2_463.conda
- hash:
- md5: f121ddfc96e6a93a26d85906adf06208
- sha256: 659d79976f06d2b796a0836414573a737a0856b05facfa77e5cc114081a8b3d4
- category: main
- optional: false
-- name: mkl
- version: 2025.3.0
- manager: conda
- platform: win-64
- dependencies:
- llvm-openmp: '>=21.1.8'
- tbb: '>=2022.3.0'
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/mkl-2025.3.0-hac47afa_455.conda
- hash:
- md5: fd05d1e894497b012d05a804232254ed
- sha256: b2b4c84b95210760e4d12319416c60ab66e03674ccdcbd14aeb59f82ebb1318d
- category: main
- optional: false
-- name: munkres
- version: 1.1.4
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.9'
- url: https://repo.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyhd8ed1ab_1.conda
- hash:
- md5: 37293a85a0f4f77bbd9cf7aaefc62609
- sha256: d09c47c2cf456de5c09fa66d2c3c5035aa1fa228a1983a433c47b876aa16ce90
- category: main
- optional: false
-- name: munkres
- version: 1.1.4
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.9'
- url: https://repo.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyhd8ed1ab_1.conda
- hash:
- md5: 37293a85a0f4f77bbd9cf7aaefc62609
- sha256: d09c47c2cf456de5c09fa66d2c3c5035aa1fa228a1983a433c47b876aa16ce90
- category: main
- optional: false
-- name: 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: numpy
- version: 2.4.2
- 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: '>=14'
- liblapack: '>=3.9.0,<4.0a0'
- libstdcxx: '>=14'
- python: ''
- python_abi: 3.12.*
- url: https://repo.prefix.dev/conda-forge/linux-64/numpy-2.4.2-py312h33ff503_1.conda
- hash:
- md5: 3569a8fca2dd3202e4ab08f42499f6d3
- sha256: fec4d37e1a7c677ddc07bb968255df74902733398b77acc1d05f9dc599e879df
- category: main
- optional: false
-- name: numpy
- version: 2.4.2
- 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: ''
- 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/numpy-2.4.2-py312ha72d056_1.conda
- hash:
- md5: 52254edfb993f9e61552c63813041689
- sha256: bae400995eed564cf68d3939d5b782680407b3e25dc7363687df19c6b2cf396f
- category: main
- optional: false
-- name: openjpeg
- version: 2.5.4
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- libpng: '>=1.6.50,<1.7.0a0'
- libstdcxx: '>=14'
- libtiff: '>=4.7.1,<4.8.0a0'
- libzlib: '>=1.3.1,<2.0a0'
- url: https://repo.prefix.dev/conda-forge/linux-64/openjpeg-2.5.4-h55fea9a_0.conda
- hash:
- md5: 11b3379b191f63139e29c0d19dee24cd
- sha256: 3900f9f2dbbf4129cf3ad6acf4e4b6f7101390b53843591c53b00f034343bc4d
- category: main
- optional: false
-- name: openjpeg
- version: 2.5.4
- manager: conda
- platform: win-64
- dependencies:
- libpng: '>=1.6.50,<1.7.0a0'
- libtiff: '>=4.7.1,<4.8.0a0'
- libzlib: '>=1.3.1,<2.0a0'
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/openjpeg-2.5.4-h24db6dd_0.conda
- hash:
- md5: 5af852046226bb3cb15c7f61c2ac020a
- sha256: 226c270a7e3644448954c47959c00a9bf7845f6d600c2a643db187118d028eee
- category: main
- optional: false
-- name: openssl
- version: 3.6.1
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- ca-certificates: ''
- libgcc: '>=14'
- url: https://repo.prefix.dev/conda-forge/linux-64/openssl-3.6.1-h35e630c_1.conda
- hash:
- md5: f61eb8cd60ff9057122a3d338b99c00f
- sha256: 44c877f8af015332a5d12f5ff0fb20ca32f896526a7d0cdb30c769df1144fb5c
- category: main
- optional: false
-- name: openssl
- version: 3.6.1
- manager: conda
- platform: win-64
- dependencies:
- ca-certificates: ''
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/openssl-3.6.1-hf411b9b_1.conda
- hash:
- md5: eb585509b815415bc964b2c7e11c7eb3
- sha256: 53a5ad2e5553b8157a91bb8aa375f78c5958f77cb80e9d2ce59471ea8e5c0bd6
- category: main
- optional: false
-- name: packaging
- version: '26.0'
- manager: conda
- platform: linux-64
- dependencies:
- python: ''
- url: https://repo.prefix.dev/conda-forge/noarch/packaging-26.0-pyhcf101f3_0.conda
- hash:
- md5: b76541e68fea4d511b1ac46a28dcd2c6
- sha256: c1fc0f953048f743385d31c468b4a678b3ad20caffdeaa94bed85ba63049fd58
- category: main
- optional: false
-- name: packaging
- version: '26.0'
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.8'
- url: https://repo.prefix.dev/conda-forge/noarch/packaging-26.0-pyhcf101f3_0.conda
- hash:
- md5: b76541e68fea4d511b1ac46a28dcd2c6
- sha256: c1fc0f953048f743385d31c468b4a678b3ad20caffdeaa94bed85ba63049fd58
- category: main
- optional: false
-- name: pillow
- version: 12.1.1
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- lcms2: '>=2.18,<3.0a0'
- libfreetype: '>=2.14.1'
- libfreetype6: '>=2.14.1'
- libgcc: '>=14'
- libjpeg-turbo: '>=3.1.2,<4.0a0'
- libtiff: '>=4.7.1,<4.8.0a0'
- libwebp-base: '>=1.6.0,<2.0a0'
- libxcb: '>=1.17.0,<2.0a0'
- openjpeg: '>=2.5.4,<3.0a0'
- python: ''
- python_abi: 3.12.*
- tk: '>=8.6.13,<8.7.0a0'
- zlib-ng: '>=2.3.3,<2.4.0a0'
- url: https://repo.prefix.dev/conda-forge/linux-64/pillow-12.1.1-py312h50c33e8_0.conda
- hash:
- md5: c5eff3ada1a829f0bdb780dc4b62bbae
- sha256: 782b6b578a0e61f6ef5cca5be993d902db775a2eb3d0328a3c4ff515858e7f2c
- category: main
- optional: false
-- name: pillow
- version: 12.1.1
- manager: conda
- platform: win-64
- dependencies:
- lcms2: '>=2.18,<3.0a0'
- libfreetype: '>=2.14.1'
- libfreetype6: '>=2.14.1'
- libjpeg-turbo: '>=3.1.2,<4.0a0'
- libtiff: '>=4.7.1,<4.8.0a0'
- libwebp-base: '>=1.6.0,<2.0a0'
- libxcb: '>=1.17.0,<2.0a0'
- openjpeg: '>=2.5.4,<3.0a0'
- python: ''
- python_abi: 3.12.*
- tk: '>=8.6.13,<8.7.0a0'
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- zlib-ng: '>=2.3.3,<2.4.0a0'
- url: https://repo.prefix.dev/conda-forge/win-64/pillow-12.1.1-py312h31f0997_0.conda
- hash:
- md5: 89bf6b6bc60f253ab85a0784417a2547
- sha256: 8d6c865052fec14dcb90b6534393a52bac60e21479ae386db7aa4eced632022d
- category: main
- optional: false
-- name: pip
- version: 26.0.1
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.10,<3.13.0a0'
- setuptools: ''
- wheel: ''
- url: https://repo.prefix.dev/conda-forge/noarch/pip-26.0.1-pyh8b19718_0.conda
- hash:
- md5: 67bdec43082fd8a9cffb9484420b39a2
- sha256: 8e1497814a9997654ed7990a79c054ea5a42545679407acbc6f7e809c73c9120
- category: main
- optional: false
-- name: pip
- version: 26.0.1
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.10,<3.13.0a0'
- setuptools: ''
- wheel: ''
- url: https://repo.prefix.dev/conda-forge/noarch/pip-26.0.1-pyh8b19718_0.conda
- hash:
- md5: 67bdec43082fd8a9cffb9484420b39a2
- sha256: 8e1497814a9997654ed7990a79c054ea5a42545679407acbc6f7e809c73c9120
- category: main
- optional: false
-- name: platformdirs
- version: 4.9.2
- manager: conda
- platform: linux-64
- dependencies:
- python: ''
- url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.9.2-pyhcf101f3_0.conda
- hash:
- md5: 4fefefb892ce9cc1539405bec2f1a6cd
- sha256: 7f263219cecf0ba6d74c751efa60c4676ce823157ca90aa43ebba5ac615ca0fa
- category: dev
- optional: true
-- name: platformdirs
- version: 4.9.2
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.9.2-pyhcf101f3_0.conda
- hash:
- md5: 4fefefb892ce9cc1539405bec2f1a6cd
- sha256: 7f263219cecf0ba6d74c751efa60c4676ce823157ca90aa43ebba5ac615ca0fa
- category: dev
- optional: true
-- name: pluggy
- version: 1.6.0
- manager: conda
- platform: linux-64
- dependencies:
- python: ''
- url: https://repo.prefix.dev/conda-forge/noarch/pluggy-1.6.0-pyhf9edf01_1.conda
- hash:
- md5: d7585b6550ad04c8c5e21097ada2888e
- sha256: e14aafa63efa0528ca99ba568eaf506eb55a0371d12e6250aaaa61718d2eb62e
- category: dev
- optional: true
-- name: pluggy
- version: 1.6.0
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.9'
- url: https://repo.prefix.dev/conda-forge/noarch/pluggy-1.6.0-pyhf9edf01_1.conda
- hash:
- md5: d7585b6550ad04c8c5e21097ada2888e
- sha256: e14aafa63efa0528ca99ba568eaf506eb55a0371d12e6250aaaa61718d2eb62e
- category: dev
- optional: true
-- name: 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: pydantic
- version: 2.12.5
- manager: conda
- platform: linux-64
- dependencies:
- annotated-types: '>=0.6.0'
- pydantic-core: 2.41.5
- python: ''
- typing-extensions: '>=4.6.1'
- typing-inspection: '>=0.4.2'
- typing_extensions: '>=4.14.1'
- url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.12.5-pyhcf101f3_1.conda
- hash:
- md5: c3946ed24acdb28db1b5d63321dbca7d
- sha256: 868569d9505b7fe246c880c11e2c44924d7613a8cdcc1f6ef85d5375e892f13d
- category: main
- optional: false
-- name: pydantic
- version: 2.12.5
- manager: conda
- platform: win-64
- dependencies:
- annotated-types: '>=0.6.0'
- pydantic-core: 2.41.5
- python: '>=3.10'
- typing-extensions: '>=4.6.1'
- typing-inspection: '>=0.4.2'
- typing_extensions: '>=4.14.1'
- url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.12.5-pyhcf101f3_1.conda
- hash:
- md5: c3946ed24acdb28db1b5d63321dbca7d
- sha256: 868569d9505b7fe246c880c11e2c44924d7613a8cdcc1f6ef85d5375e892f13d
- category: main
- optional: false
-- name: pydantic-core
- version: 2.41.5
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- python: ''
- python_abi: 3.12.*
- typing-extensions: '>=4.6.0,!=4.7.0'
- url: https://repo.prefix.dev/conda-forge/linux-64/pydantic-core-2.41.5-py312h868fb18_1.conda
- hash:
- md5: 56a776330a7d21db63a7c9d6c3711a04
- sha256: 07f899d035e06598682d3904d55f1529fac71b15e12b61d44d6a5fbf8521b0fe
- category: main
- optional: false
-- name: pydantic-core
- version: 2.41.5
- manager: conda
- platform: win-64
- dependencies:
- python: ''
- python_abi: 3.12.*
- 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-py312hdabe01f_1.conda
- hash:
- md5: 2e338a10e31828590cf031076bb143b6
- sha256: 06f5d122ac1c29679a6d588aa066c8684a087de12f84f3e81d90c205664eb62c
- category: main
- optional: false
-- name: pygments
- version: 2.19.2
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.9'
- url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda
- hash:
- md5: 6b6ece66ebcae2d5f326c77ef2c5a066
- sha256: 5577623b9f6685ece2697c6eb7511b4c9ac5fb607c9babc2646c811b428fd46a
- category: dev
- optional: true
-- name: pygments
- version: 2.19.2
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.9'
- url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda
- hash:
- md5: 6b6ece66ebcae2d5f326c77ef2c5a066
- sha256: 5577623b9f6685ece2697c6eb7511b4c9ac5fb607c9babc2646c811b428fd46a
- category: dev
- optional: true
-- name: pylint
- version: 4.0.4
- manager: conda
- platform: linux-64
- dependencies:
- astroid: '>=4.0.2,<=4.1.0.dev0'
- colorama: '>=0.4.5'
- dill: '>=0.3.7'
- isort: '>=5,<8,!=5.13'
- mccabe: '>=0.6,<0.8'
- platformdirs: '>=2.2'
- python: ''
- tomli: '>=1.1.0'
- tomlkit: '>=0.10.1'
- url: https://repo.prefix.dev/conda-forge/noarch/pylint-4.0.4-pyhcf101f3_0.conda
- hash:
- md5: 3a830511a81b99b67a1206a9d29b44b3
- sha256: ad0bb78785ab385d0afcca4a55e0226d8e6710ebad6450caa552f5fe61c2f6a0
- category: dev
- optional: true
-- name: pylint
- version: 4.0.4
- manager: conda
- platform: win-64
- dependencies:
- astroid: '>=4.0.2,<=4.1.0.dev0'
- colorama: '>=0.4.5'
- dill: '>=0.3.7'
- isort: '>=5,<8,!=5.13'
- mccabe: '>=0.6,<0.8'
- platformdirs: '>=2.2'
- python: '>=3.10'
- tomli: '>=1.1.0'
- tomlkit: '>=0.10.1'
- url: https://repo.prefix.dev/conda-forge/noarch/pylint-4.0.4-pyhcf101f3_0.conda
- hash:
- md5: 3a830511a81b99b67a1206a9d29b44b3
- sha256: ad0bb78785ab385d0afcca4a55e0226d8e6710ebad6450caa552f5fe61c2f6a0
- category: dev
- optional: true
-- name: pyparsing
- version: 3.3.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: '>=3.10'
- 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
- 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.2
- manager: conda
- platform: linux-64
- dependencies:
- colorama: '>=0.4'
- exceptiongroup: '>=1'
- iniconfig: '>=1.0.1'
- packaging: '>=22'
- pluggy: '>=1.5,<2'
- pygments: '>=2.7.2'
- python: ''
- tomli: '>=1'
- url: https://repo.prefix.dev/conda-forge/noarch/pytest-9.0.2-pyhcf101f3_0.conda
- hash:
- md5: 2b694bad8a50dc2f712f5368de866480
- sha256: 9e749fb465a8bedf0184d8b8996992a38de351f7c64e967031944978de03a520
- category: dev
- optional: true
-- name: pytest
- version: 9.0.2
- manager: conda
- platform: win-64
- dependencies:
- colorama: '>=0.4'
- exceptiongroup: '>=1'
- iniconfig: '>=1.0.1'
- packaging: '>=22'
- pluggy: '>=1.5,<2'
- pygments: '>=2.7.2'
- python: '>=3.10'
- tomli: '>=1'
- url: https://repo.prefix.dev/conda-forge/noarch/pytest-9.0.2-pyhcf101f3_0.conda
- hash:
- md5: 2b694bad8a50dc2f712f5368de866480
- sha256: 9e749fb465a8bedf0184d8b8996992a38de351f7c64e967031944978de03a520
- category: dev
- optional: true
-- name: pytest-cov
- version: 7.0.0
- manager: conda
- platform: linux-64
- dependencies:
- coverage: '>=7.10.6'
- pluggy: '>=1.2'
- pytest: '>=7'
- python: ''
- url: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-7.0.0-pyhcf101f3_1.conda
- hash:
- md5: 6891acad5e136cb62a8c2ed2679d6528
- sha256: d0f45586aad48ef604590188c33c83d76e4fc6370ac569ba0900906b24fd6a26
- category: dev
- optional: true
-- name: pytest-cov
- version: 7.0.0
- manager: conda
- platform: win-64
- dependencies:
- coverage: '>=7.10.6'
- pluggy: '>=1.2'
- pytest: '>=7'
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/pytest-cov-7.0.0-pyhcf101f3_1.conda
- hash:
- md5: 6891acad5e136cb62a8c2ed2679d6528
- sha256: d0f45586aad48ef604590188c33c83d76e4fc6370ac569ba0900906b24fd6a26
- category: dev
- optional: true
-- name: python
- version: 3.12.12
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- bzip2: '>=1.0.8,<2.0a0'
- ld_impl_linux-64: '>=2.36.1'
- libexpat: '>=2.7.3,<3.0a0'
- libffi: '>=3.5.2,<3.6.0a0'
- libgcc: '>=14'
- liblzma: '>=5.8.2,<6.0a0'
- libnsl: '>=2.0.1,<2.1.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'
- pip: ''
- 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_2_cpython.conda
- hash:
- md5: c4540d3de3fa228d9fa95e31f8e97f89
- sha256: 6621befd6570a216ba94bc34ec4618e4f3777de55ad0adc15fc23c28fadd4d1a
- category: main
- optional: false
-- name: python
- version: 3.12.12
- manager: conda
- platform: win-64
- dependencies:
- bzip2: '>=1.0.8,<2.0a0'
- libexpat: '>=2.7.3,<3.0a0'
- libffi: '>=3.5.2,<3.6.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'
- 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_2_cpython.conda
- hash:
- md5: 068897f82240d69580c2d93f93b56ff5
- sha256: 5937ab50dfeb979f7405132f73e836a29690f21162308b95b240b8037aa99975
- category: main
- optional: false
-- name: python-dateutil
- version: 2.9.0.post0
- manager: conda
- platform: linux-64
- dependencies:
- python: ''
- six: '>=1.5'
- url: https://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda
- hash:
- md5: 5b8d21249ff20967101ffa321cab24e8
- sha256: d6a17ece93bbd5139e02d2bd7dbfa80bee1a4261dced63f65f679121686bf664
- category: main
- optional: false
-- name: python-dateutil
- version: 2.9.0.post0
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.9'
- six: '>=1.5'
- url: https://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda
- hash:
- md5: 5b8d21249ff20967101ffa321cab24e8
- sha256: d6a17ece93bbd5139e02d2bd7dbfa80bee1a4261dced63f65f679121686bf664
- category: main
- optional: false
-- name: python_abi
- version: '3.12'
- manager: conda
- platform: linux-64
- dependencies: {}
- url: https://repo.prefix.dev/conda-forge/noarch/python_abi-3.12-8_cp312.conda
- hash:
- md5: c3efd25ac4d74b1584d2f7a57195ddf1
- sha256: 80677180dd3c22deb7426ca89d6203f1c7f1f256f2d5a94dc210f6e758229809
- category: main
- optional: false
-- name: python_abi
- version: '3.12'
- manager: conda
- platform: win-64
- dependencies: {}
- url: https://repo.prefix.dev/conda-forge/noarch/python_abi-3.12-8_cp312.conda
- hash:
- md5: c3efd25ac4d74b1584d2f7a57195ddf1
- 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: pyyaml
- version: 6.0.3
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- python: '>=3.12,<3.13.0a0'
- python_abi: 3.12.*
- yaml: '>=0.2.5,<0.3.0a0'
- url: https://repo.prefix.dev/conda-forge/linux-64/pyyaml-6.0.3-py312h8a5da7c_1.conda
- hash:
- md5: 15878599a87992e44c059731771591cb
- sha256: cb142bfd92f6e55749365ddc244294fa7b64db6d08c45b018ff1c658907bfcbf
- category: dev
- optional: true
-- name: pyyaml
- version: 6.0.3
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.12,<3.13.0a0'
- python_abi: 3.12.*
- ucrt: '>=10.0.20348.0'
- vc: '>=14.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_1.conda
- hash:
- md5: 9f6ebef672522cb9d9a6257215ca5743
- 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: readline
- version: '8.3'
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- ncurses: '>=6.5,<7.0a0'
- url: https://repo.prefix.dev/conda-forge/linux-64/readline-8.3-h853b02a_0.conda
- hash:
- md5: d7d95fc8287ea7bf33e0e7116d2b95ec
- sha256: 12ffde5a6f958e285aa22c191ca01bbd3d6e710aa852e00618fa6ddc59149002
- category: main
- optional: false
-- name: requests
- version: 2.32.5
- manager: conda
- platform: linux-64
- dependencies:
- certifi: '>=2017.4.17'
- charset-normalizer: '>=2,<4'
- idna: '>=2.5,<4'
- python: ''
- urllib3: '>=1.21.1,<3'
- url: https://repo.prefix.dev/conda-forge/noarch/requests-2.32.5-pyhcf101f3_1.conda
- hash:
- md5: c65df89a0b2e321045a9e01d1337b182
- sha256: 7813c38b79ae549504b2c57b3f33394cea4f2ad083f0994d2045c2e24cb538c5
- category: 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.10'
- urllib3: '>=1.21.1,<3'
- url: https://repo.prefix.dev/conda-forge/noarch/requests-2.32.5-pyhcf101f3_1.conda
- hash:
- md5: c65df89a0b2e321045a9e01d1337b182
- sha256: 7813c38b79ae549504b2c57b3f33394cea4f2ad083f0994d2045c2e24cb538c5
- category: 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: 0dc48b4b570931adc8641e55c6c17fe4
- sha256: 30f3c04fcfb64c44d821d392a4a0b8915650dbd900c8befc20ade8fde8ec6aa2
- category: dev
- optional: true
-- name: roman-numerals-py
- version: 4.1.0
- manager: conda
- platform: linux-64
- dependencies:
- 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: 28687768633154993d521aecfa4a56ac
- sha256: ce21b50a412b87b388db9e8dfbf8eb16fc436c23750b29bf612ee1a74dd0beb2
- category: dev
- optional: true
-- name: roman-numerals-py
- version: 4.1.0
- manager: conda
- platform: win-64
- dependencies:
- 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: 28687768633154993d521aecfa4a56ac
- sha256: ce21b50a412b87b388db9e8dfbf8eb16fc436c23750b29bf612ee1a74dd0beb2
- category: dev
- optional: true
-- name: scipy
- version: 1.17.0
- 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: '>=14'
- libgfortran: ''
- libgfortran5: '>=14.3.0'
- liblapack: '>=3.9.0,<4.0a0'
- 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.17.0-py312h54fa4ab_1.conda
- hash:
- md5: 828eb07c4c87c38ed8c6560c25893280
- sha256: 5b296faf6f5ff90d9ea3f6b16ff38fe2b8fe81c7c45b5e3a78b48887cca881d1
- category: main
- optional: false
-- name: scipy
- version: 1.17.0
- 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.25.2'
- 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/scipy-1.17.0-py312h9b3c559_1.conda
- hash:
- md5: da72702707bdb757ad57637815f165b1
- sha256: 0f90709b8b8ffa3f3f8a3e023154be77e3fe7dbeda3de3d62479c862111761f2
- category: main
- optional: false
-- name: setuptools
- version: 82.0.0
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/setuptools-82.0.0-pyh332efcf_0.conda
- hash:
- md5: 1d00d46c634177fc8ede8b99d6089239
- sha256: fd7201e38e38bf7f25818d624ca8da97b8998957ca9ae3fb7fdc9c17e6b25fcd
- category: main
- optional: false
-- name: setuptools
- version: 82.0.0
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/setuptools-82.0.0-pyh332efcf_0.conda
- hash:
- md5: 1d00d46c634177fc8ede8b99d6089239
- sha256: fd7201e38e38bf7f25818d624ca8da97b8998957ca9ae3fb7fdc9c17e6b25fcd
- category: main
- optional: false
-- name: six
- version: 1.17.0
- manager: conda
- platform: linux-64
- dependencies:
- python: ''
- url: https://repo.prefix.dev/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda
- hash:
- md5: 3339e3b65d58accf4ca4fb8748ab16b3
- sha256: 458227f759d5e3fcec5d9b7acce54e10c9e1f4f4b7ec978f3bfd54ce4ee9853d
- category: main
- optional: false
-- name: six
- version: 1.17.0
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.9'
- url: https://repo.prefix.dev/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda
- hash:
- md5: 3339e3b65d58accf4ca4fb8748ab16b3
- sha256: 458227f759d5e3fcec5d9b7acce54e10c9e1f4f4b7ec978f3bfd54ce4ee9853d
- category: main
- optional: false
-- name: 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.2.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.11'
- requests: '>=2.30.0'
- roman-numerals-py: '>=1.0.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'
- url: https://repo.prefix.dev/conda-forge/noarch/sphinx-8.2.3-pyhd8ed1ab_0.conda
- hash:
- md5: f7af826063ed569bb13f7207d6f949b0
- sha256: 995f58c662db0197d681fa345522fd9e7ac5f05330d3dff095ab2f102e260ab0
- category: dev
- optional: true
-- name: sphinx
- version: 8.2.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.11'
- requests: '>=2.30.0'
- roman-numerals-py: '>=1.0.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'
- url: https://repo.prefix.dev/conda-forge/noarch/sphinx-8.2.3-pyhd8ed1ab_0.conda
- hash:
- md5: f7af826063ed569bb13f7207d6f949b0
- sha256: 995f58c662db0197d681fa345522fd9e7ac5f05330d3dff095ab2f102e260ab0
- category: dev
- optional: true
-- name: sphinx-autodoc-typehints
- version: 3.5.2
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.11'
- sphinx: '>=8.2.3'
- url: https://repo.prefix.dev/conda-forge/noarch/sphinx-autodoc-typehints-3.5.2-pyhd8ed1ab_0.conda
- hash:
- md5: abe9fc17e8bf83725cde006800c926de
- sha256: 896309836e7b7682ac7ebf8783d7fde57869d28fa82e0a36413fff41f4049eac
- category: dev
- optional: true
-- name: sphinx-autodoc-typehints
- version: 3.5.2
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.11'
- sphinx: '>=8.2.3'
- url: https://repo.prefix.dev/conda-forge/noarch/sphinx-autodoc-typehints-3.5.2-pyhd8ed1ab_0.conda
- hash:
- md5: abe9fc17e8bf83725cde006800c926de
- sha256: 896309836e7b7682ac7ebf8783d7fde57869d28fa82e0a36413fff41f4049eac
- category: dev
- optional: true
-- name: sphinx-rtd-theme
- version: 3.1.0
- manager: conda
- platform: linux-64
- dependencies:
- 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: 3b1a32d3d5c2064822203f2a6f3f1173
- sha256: ae5e8e514f21e6f62b63c13f684939ba007168bfd7742e8cb573fce69fbf62da
- category: dev
- optional: true
-- name: sphinx-rtd-theme
- version: 3.1.0
- manager: conda
- platform: win-64
- dependencies:
- 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: 3b1a32d3d5c2064822203f2a6f3f1173
- sha256: ae5e8e514f21e6f62b63c13f684939ba007168bfd7742e8cb573fce69fbf62da
- category: dev
- optional: true
-- name: sphinx_rtd_theme
- version: 3.1.0
- 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.1.0-pyha770c72_0.conda
- hash:
- md5: cede6bc99a0253fa676f03cfdc666d57
- sha256: 1d57a0cd74ecc0e5dc006f6591145d1abb6658464919d4aeb163d3db714f80e6
- category: dev
- optional: true
-- name: sphinx_rtd_theme
- version: 3.1.0
- 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.1.0-pyha770c72_0.conda
- hash:
- md5: cede6bc99a0253fa676f03cfdc666d57
- sha256: 1d57a0cd74ecc0e5dc006f6591145d1abb6658464919d4aeb163d3db714f80e6
- 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: tbb
- version: 2022.3.0
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- libhwloc: '>=2.12.2,<2.12.3.0a0'
- libstdcxx: '>=14'
- url: https://repo.prefix.dev/conda-forge/linux-64/tbb-2022.3.0-hb700be7_2.conda
- hash:
- md5: 8f7278ca5f7456a974992a8b34284737
- sha256: 975710e4b7f1b13c3c30b7fbf21e22f50abe0463b6b47a231582fdedcc45c961
- category: main
- optional: false
-- name: tbb
- version: 2022.3.0
- manager: conda
- platform: win-64
- dependencies:
- libhwloc: '>=2.12.2,<2.12.3.0a0'
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/tbb-2022.3.0-h3155e25_2.conda
- hash:
- md5: 0f9817ffbe25f9e69ceba5ea70c52606
- sha256: abd9a489f059fba85c8ffa1abdaa4d515d6de6a3325238b8e81203b913cf65a9
- category: main
- optional: false
-- name: tk
- version: 8.6.13
- 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/tk-8.6.13-noxft_h366c992_103.conda
- hash:
- md5: cffd3bdd58090148f4cfcd831f4b26ab
- sha256: cafeec44494f842ffeca27e9c8b0c27ed714f93ac77ddadc6aaf726b5554ebac
- category: main
- optional: false
-- name: tk
- version: 8.6.13
- 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/tk-8.6.13-h6ed50ae_3.conda
- hash:
- md5: 0481bfd9814bf525bd4b3ee4b51494c4
- sha256: 0e79810fae28f3b69fe7391b0d43f5474d6bd91d451d5f2bde02f55ae481d5e3
- category: main
- optional: false
-- name: tomli
- version: 2.4.0
- manager: conda
- platform: linux-64
- dependencies:
- python: ''
- url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.4.0-pyhcf101f3_0.conda
- hash:
- md5: 72e780e9aa2d0a3295f59b1874e3768b
- sha256: 62940c563de45790ba0f076b9f2085a842a65662268b02dd136a8e9b1eaf47a8
- category: dev
- optional: true
-- name: tomli
- version: 2.4.0
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.4.0-pyhcf101f3_0.conda
- hash:
- md5: 72e780e9aa2d0a3295f59b1874e3768b
- sha256: 62940c563de45790ba0f076b9f2085a842a65662268b02dd136a8e9b1eaf47a8
- category: dev
- optional: true
-- name: tomlkit
- version: 0.14.0
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.14.0-pyha770c72_0.conda
- hash:
- md5: 385dca77a8b0ec6fa9b92cb62d09b43b
- sha256: b35082091c8efd084e51bc3a4a2d3b07897eff232aaf58cbc0f959b6291a6a93
- category: dev
- optional: true
-- name: tomlkit
- version: 0.14.0
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.14.0-pyha770c72_0.conda
- hash:
- md5: 385dca77a8b0ec6fa9b92cb62d09b43b
- sha256: b35082091c8efd084e51bc3a4a2d3b07897eff232aaf58cbc0f959b6291a6a93
- category: dev
- optional: true
-- name: typing-extensions
- version: 4.15.0
- manager: conda
- platform: linux-64
- dependencies:
- typing_extensions: ==4.15.0
- url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda
- hash:
- md5: edd329d7d3a4ab45dcf905899a7a6115
- sha256: 7c2df5721c742c2a47b2c8f960e718c930031663ac1174da67c1ed5999f7938c
- category: main
- optional: false
-- name: typing-extensions
- version: 4.15.0
- manager: conda
- platform: win-64
- dependencies:
- typing_extensions: ==4.15.0
- url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda
- hash:
- md5: edd329d7d3a4ab45dcf905899a7a6115
- sha256: 7c2df5721c742c2a47b2c8f960e718c930031663ac1174da67c1ed5999f7938c
- category: main
- optional: false
-- name: typing-inspection
- version: 0.4.2
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.10'
- typing_extensions: '>=4.12.0'
- url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.2-pyhd8ed1ab_1.conda
- hash:
- md5: a0a4a3035667fc34f29bfbd5c190baa6
- sha256: 70db27de58a97aeb7ba7448366c9853f91b21137492e0b4430251a1870aa8ff4
- category: main
- optional: false
-- name: typing-inspection
- version: 0.4.2
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.10'
- typing_extensions: '>=4.12.0'
- url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.2-pyhd8ed1ab_1.conda
- hash:
- md5: a0a4a3035667fc34f29bfbd5c190baa6
- sha256: 70db27de58a97aeb7ba7448366c9853f91b21137492e0b4430251a1870aa8ff4
- category: main
- optional: false
-- name: typing_extensions
- version: 4.15.0
- manager: conda
- platform: linux-64
- dependencies:
- python: ''
- url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda
- hash:
- md5: 0caa1af407ecff61170c9437a808404d
- sha256: 032271135bca55aeb156cee361c81350c6f3fb203f57d024d7e5a1fc9ef18731
- category: main
- optional: false
-- name: typing_extensions
- version: 4.15.0
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda
- hash:
- md5: 0caa1af407ecff61170c9437a808404d
- sha256: 032271135bca55aeb156cee361c81350c6f3fb203f57d024d7e5a1fc9ef18731
- category: main
- optional: false
-- name: tzdata
- version: 2025c
- manager: conda
- platform: linux-64
- dependencies: {}
- url: https://repo.prefix.dev/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.conda
- hash:
- md5: ad659d0a2b3e47e38d829aa8cad2d610
- sha256: 1d30098909076af33a35017eed6f2953af1c769e273a0626a04722ac4acaba3c
- category: main
- optional: false
-- name: tzdata
- version: 2025c
- manager: conda
- platform: win-64
- dependencies: {}
- url: https://repo.prefix.dev/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.conda
- hash:
- md5: ad659d0a2b3e47e38d829aa8cad2d610
- sha256: 1d30098909076af33a35017eed6f2953af1c769e273a0626a04722ac4acaba3c
- category: main
- optional: false
-- name: ucrt
- version: 10.0.26100.0
- manager: conda
- platform: win-64
- dependencies: {}
- url: https://repo.prefix.dev/conda-forge/win-64/ucrt-10.0.26100.0-h57928b3_0.conda
- hash:
- md5: 71b24316859acd00bdb8b38f5e2ce328
- sha256: 3005729dce6f3d3f5ec91dfc49fc75a0095f9cd23bab49efb899657297ac91a5
- category: main
- optional: false
-- name: unicodedata2
- version: 17.0.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.6.3
- manager: conda
- platform: linux-64
- dependencies:
- backports.zstd: '>=1.0.0'
- brotli-python: '>=1.2.0'
- h2: '>=4,<5'
- pysocks: '>=1.5.6,<2.0,!=1.5.7'
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/urllib3-2.6.3-pyhd8ed1ab_0.conda
- hash:
- md5: 9272daa869e03efe68833e3dc7a02130
- sha256: af641ca7ab0c64525a96fd9ad3081b0f5bcf5d1cbb091afb3f6ed5a9eee6111a
- category: dev
- optional: true
-- name: urllib3
- version: 2.6.3
- manager: conda
- platform: win-64
- dependencies:
- backports.zstd: '>=1.0.0'
- brotli-python: '>=1.2.0'
- h2: '>=4,<5'
- pysocks: '>=1.5.6,<2.0,!=1.5.7'
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/urllib3-2.6.3-pyhd8ed1ab_0.conda
- hash:
- md5: 9272daa869e03efe68833e3dc7a02130
- sha256: af641ca7ab0c64525a96fd9ad3081b0f5bcf5d1cbb091afb3f6ed5a9eee6111a
- category: dev
- optional: true
-- name: vc
- version: '14.3'
- manager: conda
- platform: win-64
- dependencies:
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/vc-14.3-h41ae7f8_34.conda
- hash:
- md5: 1e610f2416b6acdd231c5f573d754a0f
- sha256: 9dc40c2610a6e6727d635c62cced5ef30b7b30123f5ef67d6139e23d21744b3a
- category: main
- optional: false
-- name: vc14_runtime
- version: 14.44.35208
- manager: conda
- platform: win-64
- dependencies:
- ucrt: '>=10.0.20348.0'
- vcomp14: 14.44.35208
- url: https://repo.prefix.dev/conda-forge/win-64/vc14_runtime-14.44.35208-h818238b_34.conda
- hash:
- md5: 37eb311485d2d8b2c419449582046a42
- sha256: 02732f953292cce179de9b633e74928037fa3741eb5ef91c3f8bae4f761d32a5
- category: main
- optional: false
-- name: vcomp14
- version: 14.44.35208
- manager: conda
- platform: win-64
- dependencies:
- ucrt: '>=10.0.20348.0'
- url: https://repo.prefix.dev/conda-forge/win-64/vcomp14-14.44.35208-h818238b_34.conda
- hash:
- md5: 242d9f25d2ae60c76b38a5e42858e51d
- sha256: 878d5d10318b119bd98ed3ed874bd467acbe21996e1d81597a1dbf8030ea0ce6
- category: main
- optional: false
-- name: wheel
- version: 0.46.3
- manager: conda
- platform: linux-64
- dependencies:
- packaging: '>=24.0'
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/wheel-0.46.3-pyhd8ed1ab_0.conda
- hash:
- md5: bdbd7385b4a67025ac2dba4ef8cb6a8f
- sha256: d6cf2f0ebd5e09120c28ecba450556ce553752652d91795442f0e70f837126ae
- category: main
- optional: false
-- name: wheel
- version: 0.46.3
- manager: conda
- platform: win-64
- dependencies:
- packaging: '>=24.0'
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/wheel-0.46.3-pyhd8ed1ab_0.conda
- hash:
- md5: bdbd7385b4a67025ac2dba4ef8cb6a8f
- sha256: d6cf2f0ebd5e09120c28ecba450556ce553752652d91795442f0e70f837126ae
- 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: '>=14'
- url: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxau-1.0.12-hb03c661_1.conda
- hash:
- md5: b2895afaf55bf96a8c8282a2e47a5de0
- sha256: 6bc6ab7a90a5d8ac94c7e300cc10beb0500eeba4b99822768ca2f2ef356f731b
- category: main
- optional: false
-- name: xorg-libxau
- version: 1.0.12
- manager: conda
- platform: win-64
- dependencies:
- libgcc: '>=14'
- libwinpthread: '>=12.0.0.r4.gg4f2fc60ca'
- ucrt: '>=10.0.20348.0'
- url: https://repo.prefix.dev/conda-forge/win-64/xorg-libxau-1.0.12-hba3369d_1.conda
- hash:
- md5: 8436cab9a76015dfe7208d3c9f97c156
- sha256: 156a583fa43609507146de1c4926172286d92458c307bb90871579601f6bc568
- category: main
- optional: false
-- name: xorg-libxdmcp
- version: 1.1.5
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- url: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb03c661_1.conda
- hash:
- md5: 1dafce8548e38671bea82e3f5c6ce22f
- sha256: 25d255fb2eef929d21ff660a0c687d38a6d2ccfbcbf0cc6aa738b12af6e9d142
- category: main
- optional: false
-- name: xorg-libxdmcp
- version: 1.1.5
- manager: conda
- platform: win-64
- dependencies:
- libgcc: '>=14'
- libwinpthread: '>=12.0.0.r4.gg4f2fc60ca'
- ucrt: '>=10.0.20348.0'
- url: https://repo.prefix.dev/conda-forge/win-64/xorg-libxdmcp-1.1.5-hba3369d_1.conda
- hash:
- md5: a7c03e38aa9c0e84d41881b9236eacfb
- sha256: 366b8ae202c3b48958f0b8784bbfdc37243d3ee1b1cd4b8e76c10abe41fa258b
- category: main
- optional: false
-- name: yaml
- version: 0.2.5
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- url: https://repo.prefix.dev/conda-forge/linux-64/yaml-0.2.5-h280c20c_3.conda
- hash:
- md5: a77f85f77be52ff59391544bfe73390a
- sha256: 6d9ea2f731e284e9316d95fa61869fe7bbba33df7929f82693c121022810f4ad
- category: 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: zipp
- version: 3.23.0
- manager: conda
- platform: linux-64
- dependencies:
- python: ''
- url: https://repo.prefix.dev/conda-forge/noarch/zipp-3.23.0-pyhcf101f3_1.conda
- hash:
- md5: 30cd29cb87d819caead4d55184c1d115
- sha256: b4533f7d9efc976511a73ef7d4a2473406d7f4c750884be8e8620b0ce70f4dae
- category: dev
- optional: true
-- name: zipp
- version: 3.23.0
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/zipp-3.23.0-pyhcf101f3_1.conda
- hash:
- md5: 30cd29cb87d819caead4d55184c1d115
- sha256: b4533f7d9efc976511a73ef7d4a2473406d7f4c750884be8e8620b0ce70f4dae
- category: dev
- optional: true
-- name: zlib-ng
- version: 2.3.3
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- libstdcxx: '>=14'
- url: https://repo.prefix.dev/conda-forge/linux-64/zlib-ng-2.3.3-hceb46e0_1.conda
- hash:
- md5: 2aadb0d17215603a82a2a6b0afd9a4cb
- sha256: ea4e50c465d70236408cb0bfe0115609fd14db1adcd8bd30d8918e0291f8a75f
- category: main
- optional: false
-- name: zlib-ng
- version: 2.3.3
- manager: conda
- platform: win-64
- dependencies:
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/zlib-ng-2.3.3-h0261ad2_1.conda
- hash:
- md5: 46a21c0a4e65f1a135251fc7c8663f83
- sha256: 71332532332d13b5dbe57074ddcf82ae711bdc132affa5a2982a29ffa06dc234
- category: main
- optional: false
-- name: zstd
- version: 1.5.7
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libzlib: '>=1.3.1,<2.0a0'
- url: https://repo.prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb78ec9c_6.conda
- hash:
- md5: 4a13eeac0b5c8e5b8ab496e6c4ddd829
- sha256: 68f0206ca6e98fea941e5717cec780ed2873ffabc0e1ed34428c061e2c6268c7
- category: main
- optional: false
-- name: zstd
- version: 1.5.7
- manager: conda
- platform: win-64
- dependencies:
- libzlib: '>=1.3.1,<2.0a0'
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/zstd-1.5.7-h534d264_6.conda
- hash:
- md5: 053b84beec00b71ea8ff7a4f84b55207
- sha256: 368d8628424966fd8f9c8018326a9c779e06913dd39e646cf331226acc90e5b2
- category: main
- optional: false
-- name: geoapps-utils
- version: 0.7.0a2.dev37+668a9e0
- manager: pip
- platform: linux-64
- dependencies:
- geoh5py: 0.13.0a3.dev5+9e0a86e5
- 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@668a9e0da5214e4a3bce466321cd910f1bb00b02
- hash:
- sha256: 668a9e0da5214e4a3bce466321cd910f1bb00b02
- source:
- type: url
- url: git+https://github.com/MiraGeoscience/geoapps-utils.git@668a9e0da5214e4a3bce466321cd910f1bb00b02
- category: main
- optional: false
-- name: geoapps-utils
- version: 0.7.0a2.dev37+668a9e0
- manager: pip
- platform: win-64
- dependencies:
- geoh5py: 0.13.0a3.dev5+9e0a86e5
- 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@668a9e0da5214e4a3bce466321cd910f1bb00b02
- hash:
- sha256: 668a9e0da5214e4a3bce466321cd910f1bb00b02
- source:
- type: url
- url: git+https://github.com/MiraGeoscience/geoapps-utils.git@668a9e0da5214e4a3bce466321cd910f1bb00b02
- category: main
- optional: false
-- name: geoh5py
- version: 0.13.0a3.dev5+9e0a86e5
- manager: pip
- platform: linux-64
- dependencies:
- h5py: '>=3.15.0,<4.0.0'
- numpy: '>=2.4.0,<2.5.0'
- pillow: '>=12.1.0,<12.2.0'
- pydantic: '>=2.12.0,<2.13.0'
- url: git+https://github.com/MiraGeoscience/geoh5py.git@9e0a86e5afadfe9c55e9811317827a4f6c2c70c4
- hash:
- sha256: 9e0a86e5afadfe9c55e9811317827a4f6c2c70c4
- source:
- type: url
- url: git+https://github.com/MiraGeoscience/geoh5py.git@9e0a86e5afadfe9c55e9811317827a4f6c2c70c4
- category: main
- optional: false
-- name: geoh5py
- version: 0.13.0a3.dev5+9e0a86e5
- manager: pip
- platform: win-64
- dependencies:
- h5py: '>=3.15.0,<4.0.0'
- numpy: '>=2.4.0,<2.5.0'
- pillow: '>=12.1.0,<12.2.0'
- pydantic: '>=2.12.0,<2.13.0'
- url: git+https://github.com/MiraGeoscience/geoh5py.git@9e0a86e5afadfe9c55e9811317827a4f6c2c70c4
- hash:
- sha256: 9e0a86e5afadfe9c55e9811317827a4f6c2c70c4
- source:
- type: url
- url: git+https://github.com/MiraGeoscience/geoh5py.git@9e0a86e5afadfe9c55e9811317827a4f6c2c70c4
- category: main
- optional: false
diff --git a/py-3.13.conda-lock.yml b/py-3.13.conda-lock.yml
deleted file mode 100644
index 9f8042a..0000000
--- a/py-3.13.conda-lock.yml
+++ /dev/null
@@ -1,4120 +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.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.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.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.13.yml --lockfile py-3.13.conda-lock.yml
-version: 1
-metadata:
- content_hash:
- win-64: 83076c0d60dae94ca39e2c9cfd7903b4a93f72ab7b4d8a0b7c561f1d9057fd9e
- linux-64: b18f500e8e85b4eb023bb9ed063cbde272610e416ada2de4902e592caa9ef7e1
- channels:
- - url: conda-forge
- used_env_vars: []
- - url: nodefaults
- used_env_vars: []
- platforms:
- - win-64
- - linux-64
- sources:
- - pyproject.toml
- - environments/env-python-3.13.yml
-package:
-- name: _openmp_mutex
- version: '4.5'
- manager: conda
- platform: linux-64
- dependencies:
- llvm-openmp: '>=9.0.1'
- url: https://repo.prefix.dev/conda-forge/linux-64/_openmp_mutex-4.5-7_kmp_llvm.conda
- hash:
- md5: 887b70e1d607fba7957aa02f9ee0d939
- sha256: c0cddb66070dd6355311f7667ce2acccf70d1013edaa6e97f22859502fefdb22
- category: main
- optional: false
-- name: _openmp_mutex
- version: '4.5'
- manager: conda
- platform: win-64
- dependencies:
- libgomp: '>=7.5.0'
- libwinpthread: '>=12.0.0.r4.gg4f2fc60ca'
- url: https://repo.prefix.dev/conda-forge/win-64/_openmp_mutex-4.5-20_gnu.conda
- hash:
- md5: 1626967b574d1784b578b52eaeb071e7
- sha256: 8a1cee28bd0ee7451ada1cd50b64720e57e17ff994fc62dd8329bef570d382e4
- 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: astroid
- version: 4.0.4
- manager: conda
- platform: linux-64
- dependencies:
- 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: b9a5074b980b555420188db0ccf3cc20
- sha256: 38ab850ede7fbbea4ae452c4d1b8264669bbc1bed7d2e23d974c0ee28fade63e
- category: dev
- optional: true
-- name: astroid
- version: 4.0.4
- manager: conda
- platform: win-64
- dependencies:
- 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: 0bde1b76c96e6af8ae0f71a466dda5b4
- sha256: 599ce66ba762cffdb067ff1688db73e06a5fee97d15def002705912893348ff3
- category: dev
- optional: true
-- name: babel
- version: 2.18.0
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.10'
- pytz: '>=2015.7'
- url: https://repo.prefix.dev/conda-forge/noarch/babel-2.18.0-pyhcf101f3_0.conda
- hash:
- md5: ea5be9abc2939c8431893b4e123a2065
- sha256: 7377bce9fcc03fecd3607843d20b50546c30a923a3517a322a2a784fa6e380eb
- category: dev
- optional: true
-- name: babel
- version: 2.18.0
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.10'
- pytz: '>=2015.7'
- url: https://repo.prefix.dev/conda-forge/noarch/babel-2.18.0-pyhcf101f3_0.conda
- hash:
- md5: ea5be9abc2939c8431893b4e123a2065
- sha256: 7377bce9fcc03fecd3607843d20b50546c30a923a3517a322a2a784fa6e380eb
- category: dev
- optional: true
-- name: backports.zstd
- version: 1.3.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.3.0-py313h18e8e13_0.conda
- hash:
- md5: d9e90792551a527200637e23a915dd79
- sha256: 9552afbec37c4d8d0e83a5c4c6b3c7f4b8785f935094ce3881e0a249045909ce
- category: dev
- optional: true
-- name: backports.zstd
- version: 1.3.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.3.0-py313h2a31948_0.conda
- hash:
- md5: cdcdfe68c5bc9af9e908e35ebffc9fe1
- sha256: 1e76ed9bcf07ef1df9c964d73e9cda08a0380845d09c8da1678a1687dc087c34
- category: dev
- optional: true
-- 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
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- libstdcxx: '>=14'
- 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: 6c4d3597cf43f3439a51b2b13e29a4ba
- sha256: dadec2879492adede0a9af0191203f9b023f788c18efd45ecac676d424c458ae
- category: dev
- optional: true
-- name: brotli-python
- version: 1.2.0
- manager: conda
- platform: win-64
- dependencies:
- 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-py313h3ebfc14_1.conda
- hash:
- md5: 916a39a0261621b8c33e9db2366dd427
- sha256: 3558006cd6e836de8dff53cbe5f0b9959f96ea6a6776b4e14f1c524916dd956c
- category: dev
- optional: true
-- 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_9.conda
- hash:
- md5: d2ffd7602c02f2b316fd921d39876885
- sha256: 0b75d45f0bba3e95dc693336fa51f40ea28c980131fec438afb7ce6118ed05f6
- 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_9.conda
- hash:
- md5: 4cb8e6b48f67de0b018719cdf1136306
- sha256: 76dfb71df5e8d1c4eded2dbb5ba15bb8fb2e2b0fe42d94145d5eed4c75c35902
- category: main
- optional: false
-- name: c-ares
- version: 1.34.6
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- url: https://repo.prefix.dev/conda-forge/linux-64/c-ares-1.34.6-hb03c661_0.conda
- hash:
- md5: 920bb03579f15389b9e512095ad995b7
- sha256: cc9accf72fa028d31c2a038460787751127317dcfa991f8d1f1babf216bb454e
- category: main
- optional: false
-- name: ca-certificates
- version: 2026.1.4
- manager: conda
- platform: linux-64
- dependencies:
- __unix: ''
- url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2026.1.4-hbd8a1cb_0.conda
- hash:
- md5: bddacf101bb4dd0e51811cb69c7790e2
- sha256: b5974ec9b50e3c514a382335efa81ed02b05906849827a34061c496f4defa0b2
- category: main
- optional: false
-- name: ca-certificates
- version: 2026.1.4
- manager: conda
- platform: win-64
- dependencies:
- __win: ''
- url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2026.1.4-h4c7d964_0.conda
- hash:
- md5: 84d389c9eee640dda3d26fc5335c67d8
- sha256: 4ddcb01be03f85d3db9d881407fb13a673372f1b9fac9c836ea441893390e049
- category: main
- optional: false
-- name: cached-property
- version: 1.5.2
- manager: conda
- platform: linux-64
- dependencies:
- cached_property: '>=1.5.2,<1.5.3.0a0'
- url: https://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2
- hash:
- md5: 9b347a7ec10940d3f7941ff6c460b551
- sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17
- category: main
- optional: false
-- name: cached-property
- version: 1.5.2
- manager: conda
- platform: win-64
- dependencies:
- cached_property: '>=1.5.2,<1.5.3.0a0'
- url: https://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2
- hash:
- md5: 9b347a7ec10940d3f7941ff6c460b551
- sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17
- category: main
- optional: false
-- name: cached_property
- version: 1.5.2
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.6'
- url: https://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2
- hash:
- md5: 576d629e47797577ab0f1b351297ef4a
- sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7
- category: main
- optional: false
-- name: cached_property
- version: 1.5.2
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.6'
- url: https://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2
- hash:
- md5: 576d629e47797577ab0f1b351297ef4a
- sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7
- category: main
- optional: false
-- name: certifi
- version: 2026.1.4
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/certifi-2026.1.4-pyhd8ed1ab_0.conda
- hash:
- md5: eacc711330cd46939f66cd401ff9c44b
- sha256: 110338066d194a715947808611b763857c15458f8b3b97197387356844af9450
- category: dev
- optional: true
-- name: certifi
- version: 2026.1.4
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/certifi-2026.1.4-pyhd8ed1ab_0.conda
- hash:
- md5: eacc711330cd46939f66cd401ff9c44b
- sha256: 110338066d194a715947808611b763857c15458f8b3b97197387356844af9450
- category: dev
- optional: true
-- 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: dev
- optional: true
-- 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: dev
- optional: true
-- 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.13.4
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- python: '>=3.13,<3.14.0a0'
- python_abi: 3.13.*
- tomli: ''
- url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.13.4-py313h3dea7bd_0.conda
- hash:
- md5: 77e1fc7133e03ccd62070f2405c82ea9
- sha256: 5b88b351c6a61ac25ed02e23cd37b25cc90e071f5cdfbc375b656356fb04ca5c
- category: dev
- optional: true
-- name: coverage
- version: 7.13.4
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.13,<3.14.0a0'
- python_abi: 3.13.*
- tomli: ''
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.13.4-py313hd650c13_0.conda
- hash:
- md5: 663fdd0fc33f6dd666642c24d64df072
- sha256: 284f87de1929a46dc69a1d247bd8d7c7cb491eb6cc7cbba5dcc1c11dc20550b7
- category: dev
- optional: true
-- name: cycler
- version: 0.12.1
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhcf101f3_2.conda
- hash:
- md5: 4c2a8fef270f6c69591889b93f9f55c1
- sha256: bb47aec5338695ff8efbddbc669064a3b10fe34ad881fb8ad5d64fbfa6910ed1
- category: main
- optional: false
-- name: cycler
- version: 0.12.1
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhcf101f3_2.conda
- hash:
- md5: 4c2a8fef270f6c69591889b93f9f55c1
- sha256: bb47aec5338695ff8efbddbc669064a3b10fe34ad881fb8ad5d64fbfa6910ed1
- category: main
- optional: false
-- name: dill
- version: 0.4.1
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.1-pyhcf101f3_0.conda
- hash:
- md5: 080a808fce955026bf82107d955d32da
- sha256: 1ef84c0cc4efd0c2d58c3cb365945edbd9ee42a1c54514d1ccba4b641005f757
- category: dev
- optional: true
-- name: dill
- version: 0.4.1
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.1-pyhcf101f3_0.conda
- hash:
- md5: 080a808fce955026bf82107d955d32da
- sha256: 1ef84c0cc4efd0c2d58c3cb365945edbd9ee42a1c54514d1ccba4b641005f757
- category: dev
- optional: true
-- name: discretize
- version: 0.12.0
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- libstdcxx: '>=14'
- numpy: '>=1.22.4'
- python: ''
- python_abi: 3.13.*
- scipy: '>=1.12'
- url: https://repo.prefix.dev/conda-forge/linux-64/discretize-0.12.0-np2py313h0f78c12_1.conda
- hash:
- md5: 4e60e909d474f5f444f012b946b18be0
- sha256: ff70947695692cd4835b069ac1b68c74a3f53431c80c0ed2d5a88fcd0c73907a
- category: main
- optional: false
-- name: discretize
- version: 0.12.0
- manager: conda
- platform: win-64
- dependencies:
- numpy: '>=1.22.4'
- python: ''
- python_abi: 3.13.*
- scipy: '>=1.12'
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/discretize-0.12.0-np2py313hedd11bf_1.conda
- hash:
- md5: 3b9353d108d39870be49251ce4e40d94
- sha256: cf47982905fc4bde4520b3b74ad464ef015677cb60fced9c97dd73ca47498d87
- category: main
- optional: false
-- name: docutils
- version: 0.21.2
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.9'
- url: https://repo.prefix.dev/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_1.conda
- hash:
- md5: 24c1ca34138ee57de72a943237cde4cc
- sha256: fa5966bb1718bbf6967a85075e30e4547901410cc7cb7b16daf68942e9a94823
- category: dev
- optional: true
-- name: docutils
- version: 0.21.2
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.9'
- url: https://repo.prefix.dev/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_1.conda
- hash:
- md5: 24c1ca34138ee57de72a943237cde4cc
- sha256: fa5966bb1718bbf6967a85075e30e4547901410cc7cb7b16daf68942e9a94823
- category: dev
- optional: true
-- name: exceptiongroup
- version: 1.3.1
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.10'
- typing_extensions: '>=4.6.0'
- url: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.3.1-pyhd8ed1ab_0.conda
- hash:
- md5: 8e662bd460bda79b1ea39194e3c4c9ab
- sha256: ee6cf346d017d954255bbcbdb424cddea4d14e4ed7e9813e429db1d795d01144
- category: dev
- optional: true
-- name: exceptiongroup
- version: 1.3.1
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.10'
- typing_extensions: '>=4.6.0'
- url: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.3.1-pyhd8ed1ab_0.conda
- hash:
- md5: 8e662bd460bda79b1ea39194e3c4c9ab
- sha256: ee6cf346d017d954255bbcbdb424cddea4d14e4ed7e9813e429db1d795d01144
- category: dev
- optional: true
-- name: fonttools
- version: 4.61.1
- 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.61.1-py313h3dea7bd_0.conda
- hash:
- md5: c0f36dfbb130da4f6ce2df31f6b25ea8
- sha256: 97f225199e6e5dfb93f551087c0951fee92db2d29a9dcb6a0346d66bff06fea4
- category: main
- optional: false
-- name: fonttools
- version: 4.61.1
- 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.61.1-py313hd650c13_0.conda
- hash:
- md5: c6fbf3a96192c26a75ed5755bd904fea
- sha256: da82b8e843103bf4aaab470e4b8025286357dc8c34cd47817350dcb14ad307fb
- category: main
- optional: false
-- name: freetype
- version: 2.14.1
- manager: conda
- platform: linux-64
- dependencies:
- libfreetype: 2.14.1
- libfreetype6: 2.14.1
- url: https://repo.prefix.dev/conda-forge/linux-64/freetype-2.14.1-ha770c72_0.conda
- hash:
- md5: 4afc585cd97ba8a23809406cd8a9eda8
- sha256: bf8e4dffe46f7d25dc06f31038cacb01672c47b9f45201f065b0f4d00ab0a83e
- category: main
- optional: false
-- name: freetype
- version: 2.14.1
- manager: conda
- platform: win-64
- dependencies:
- libfreetype: 2.14.1
- libfreetype6: 2.14.1
- url: https://repo.prefix.dev/conda-forge/win-64/freetype-2.14.1-h57928b3_0.conda
- hash:
- md5: d69c21967f35eb2ce7f1f85d6b6022d3
- sha256: a9b3313edea0bf14ea6147ea43a1059d0bf78771a1336d2c8282891efc57709a
- category: main
- optional: false
-- name: h2
- version: 4.3.0
- manager: conda
- platform: linux-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: 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.23,<3'
- python: '>=3.13,<3.14.0a0'
- python_abi: 3.13.*
- url: https://repo.prefix.dev/conda-forge/linux-64/h5py-3.15.1-nompi_py313h253c126_101.conda
- hash:
- md5: 5d90c98527ecc832287115d57c121062
- sha256: 2de2c63ad6e7483456f6ff359380df63edf32770c140ec08c904ff89b6ed3903
- 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.23,<3'
- 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_py313hf7f959b_101.conda
- hash:
- md5: 29bcfb479b3030e2c190f53058b9a345
- sha256: 29a78560dca6e278cff35f31867ba19c5b632010fb4ed800ffe67e0679be22d1
- 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.5,<2.0a0'
- libcurl: '>=8.18.0,<9.0a0'
- libgcc: '>=14'
- libgfortran: ''
- libgfortran5: '>=14.3.0'
- libstdcxx: '>=14'
- libzlib: '>=1.3.1,<2.0a0'
- openssl: '>=3.5.5,<4.0a0'
- url: https://repo.prefix.dev/conda-forge/linux-64/hdf5-1.14.6-nompi_h19486de_106.conda
- hash:
- md5: c223ee1429ba538f3e48cfb4a0b97357
- sha256: 1fc50ce3b86710fba3ec9c5714f1612b5ffa4230d70bfe43e2a1436eacba1621
- category: main
- optional: false
-- name: hdf5
- version: 1.14.6
- manager: conda
- platform: win-64
- dependencies:
- libaec: '>=1.1.5,<2.0a0'
- libcurl: '>=8.18.0,<9.0a0'
- libzlib: '>=1.3.1,<2.0a0'
- openssl: '>=3.5.5,<4.0a0'
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/hdf5-1.14.6-nompi_hae35d4c_106.conda
- hash:
- md5: e2fb54650b51dcd92dfcbf42d2222ff8
- sha256: d9f8f202ee91ae93515b18c498970f178dfd061743f25a65a205f848e197437f
- 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: '78.2'
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- libstdcxx: '>=14'
- url: https://repo.prefix.dev/conda-forge/linux-64/icu-78.2-h33c6efd_0.conda
- hash:
- md5: 186a18e3ba246eccfc7cff00cd19a870
- sha256: 142a722072fa96cf16ff98eaaf641f54ab84744af81754c292cb81e0881c0329
- category: main
- optional: false
-- name: icu
- version: '78.2'
- manager: conda
- platform: win-64
- dependencies:
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/icu-78.2-h637d24d_0.conda
- hash:
- md5: 0ee3bb487600d5e71ab7d28951b2016a
- sha256: 5a41fb28971342e293769fc968b3414253a2f8d9e30ed7c31517a15b4887246a
- category: main
- optional: false
-- name: idna
- version: '3.11'
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/idna-3.11-pyhd8ed1ab_0.conda
- hash:
- md5: 53abe63df7e10a6ba605dc5f9f961d36
- sha256: ae89d0299ada2a3162c2614a9d26557a92aa6a77120ce142f8e0109bbf0342b0
- category: 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: 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: '>=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: dev
- optional: true
-- 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: dev
- optional: true
-- 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.10'
- url: https://repo.prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhcf101f3_1.conda
- hash:
- md5: 04558c96691bed63104678757beb4f8d
- sha256: fc9ca7348a4f25fed2079f2153ecdcf5f9cf2a0bc36c4172420ca09e1849df7b
- category: dev
- optional: true
-- name: jinja2
- version: 3.1.6
- manager: conda
- platform: win-64
- dependencies:
- markupsafe: '>=2.0'
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhcf101f3_1.conda
- hash:
- md5: 04558c96691bed63104678757beb4f8d
- sha256: fc9ca7348a4f25fed2079f2153ecdcf5f9cf2a0bc36c4172420ca09e1849df7b
- category: dev
- optional: true
-- name: keyutils
- version: 1.6.3
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=13'
- url: https://repo.prefix.dev/conda-forge/linux-64/keyutils-1.6.3-hb9d3cd8_0.conda
- hash:
- md5: b38117a3c920364aff79f870c984b4a3
- sha256: 0960d06048a7185d3542d850986d807c6e37ca2e644342dd0c72feefcf26c2a4
- category: main
- optional: false
-- name: kiwisolver
- version: 1.4.9
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- libstdcxx: '>=14'
- python: ''
- python_abi: 3.13.*
- url: https://repo.prefix.dev/conda-forge/linux-64/kiwisolver-1.4.9-py313hc8edb43_2.conda
- hash:
- md5: 3e0e65595330e26515e31b7fc6d933c7
- sha256: 60d7d525db89401f88f5c91bdbb79d3afbf005e7d7c1326318659fa097607e51
- category: main
- optional: false
-- name: kiwisolver
- version: 1.4.9
- 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.4.9-py313h1a38498_2.conda
- hash:
- md5: f77249adfa3f0091e016610346affd09
- sha256: 40eafae7e9cdbe97eeb56ab0882816d3f68a2af4080a822f7349f986de2adeb6
- category: main
- optional: false
-- name: krb5
- version: 1.22.2
- manager: conda
- platform: linux-64
- dependencies:
- __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: fb53fb07ce46a575c5d004bbc96032c2
- sha256: 3e307628ca3527448dd1cb14ad7bb9d04d1d28c7d4c5f97ba196ae984571dd25
- category: main
- optional: false
-- name: krb5
- version: 1.22.2
- manager: conda
- platform: win-64
- dependencies:
- openssl: '>=3.5.5,<4.0a0'
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/krb5-1.22.2-h0ea6238_0.conda
- hash:
- md5: 4432f52dc0c8eb6a7a6abc00a037d93c
- sha256: eb60f1ad8b597bcf95dee11bc11fe71a8325bc1204cf51d2bb1f2120ffd77761
- category: main
- optional: false
-- name: lcms2
- version: '2.18'
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- libjpeg-turbo: '>=3.1.2,<4.0a0'
- libtiff: '>=4.7.1,<4.8.0a0'
- url: https://repo.prefix.dev/conda-forge/linux-64/lcms2-2.18-h0c24ade_0.conda
- hash:
- md5: 6f2e2c8f58160147c4d1c6f4c14cbac4
- sha256: 836ec4b895352110335b9fdcfa83a8dcdbe6c5fb7c06c4929130600caea91c0a
- category: main
- optional: false
-- name: lcms2
- version: '2.18'
- manager: conda
- platform: win-64
- dependencies:
- libjpeg-turbo: '>=3.1.2,<4.0a0'
- 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/lcms2-2.18-hf2c6c5f_0.conda
- hash:
- md5: b6c68d6b829b044cd17a41e0a8a23ca1
- sha256: 7eeb18c5c86db146b62da66d9e8b0e753a52987f9134a494309588bbeceddf28
- category: main
- optional: false
-- name: ld_impl_linux-64
- version: 2.45.1
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- zstd: '>=1.5.7,<1.6.0a0'
- url: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.45.1-default_hbd61a6d_101.conda
- hash:
- md5: 12bd9a3f089ee6c9266a37dab82afabd
- sha256: 565941ac1f8b0d2f2e8f02827cbca648f4d18cd461afc31f15604cd291b5c5f3
- 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.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/libaec-1.1.5-h088129d_0.conda
- hash:
- md5: 86f7414544ae606282352fa1e116b41f
- sha256: 822e4ae421a7e9c04e841323526321185f6659222325e1a9aedec811c686e688
- category: main
- optional: false
-- name: libaec
- version: 1.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/libaec-1.1.5-haf901d7_0.conda
- hash:
- md5: 43b6385cfad52a7083f2c41984eb4e91
- sha256: e54c08964262c73671d9e80e400333e59c617e0b454476ad68933c0c458156c8
- category: main
- optional: false
-- name: libblas
- version: 3.11.0
- manager: conda
- platform: linux-64
- dependencies:
- mkl: '>=2025.3.0,<2026.0a0'
- url: https://repo.prefix.dev/conda-forge/linux-64/libblas-3.11.0-5_h5875eb1_mkl.conda
- hash:
- md5: 9d2f2e3a943d38f972ceef9cde8ba4bf
- sha256: 328d64d4eb51047c39a8039a30eb47695855829d0a11b72d932171cb1dcdfad3
- category: main
- optional: false
-- name: libblas
- version: 3.11.0
- manager: conda
- platform: win-64
- dependencies:
- mkl: '>=2025.3.0,<2026.0a0'
- url: https://repo.prefix.dev/conda-forge/win-64/libblas-3.11.0-5_hf2e6a31_mkl.conda
- hash:
- md5: f9decf88743af85c9c9e05556a4c47c0
- sha256: f0cb7b2697461a306341f7ff32d5b361bb84f3e94478464c1e27ee01fc8f276b
- category: main
- optional: false
-- name: libbrotlicommon
- version: 1.2.0
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlicommon-1.2.0-hb03c661_1.conda
- hash:
- md5: 72c8fd1af66bd67bf580645b426513ed
- sha256: 318f36bd49ca8ad85e6478bd8506c88d82454cc008c1ac1c6bf00a3c42fa610e
- category: main
- optional: false
-- name: libbrotlicommon
- version: 1.2.0
- manager: conda
- platform: win-64
- dependencies:
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/libbrotlicommon-1.2.0-hfd05255_1.conda
- hash:
- md5: 444b0a45bbd1cb24f82eedb56721b9c4
- sha256: 5097303c2fc8ebf9f9ea9731520aa5ce4847d0be41764edd7f6dee2100b82986
- category: main
- optional: false
-- name: libbrotlidec
- version: 1.2.0
- manager: conda
- platform: linux-64
- dependencies:
- __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-hb03c661_1.conda
- hash:
- md5: 366b40a69f0ad6072561c1d09301c886
- sha256: 12fff21d38f98bc446d82baa890e01fd82e3b750378fedc720ff93522ffb752b
- category: main
- optional: false
-- name: libbrotlidec
- version: 1.2.0
- manager: conda
- platform: win-64
- dependencies:
- libbrotlicommon: 1.2.0
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/libbrotlidec-1.2.0-hfd05255_1.conda
- hash:
- md5: 450e3ae947fc46b60f1d8f8f318b40d4
- sha256: 3239ce545cf1c32af6fffb7fc7c75cb1ef5b6ea8221c66c85416bb2d46f5cccb
- category: main
- optional: false
-- name: libbrotlienc
- version: 1.2.0
- manager: conda
- platform: linux-64
- dependencies:
- __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-hb03c661_1.conda
- hash:
- md5: 4ffbb341c8b616aa2494b6afb26a0c5f
- sha256: a0c15c79997820bbd3fbc8ecf146f4fe0eca36cc60b62b63ac6cf78857f1dd0d
- category: main
- optional: false
-- name: libbrotlienc
- version: 1.2.0
- manager: conda
- platform: win-64
- dependencies:
- libbrotlicommon: 1.2.0
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/libbrotlienc-1.2.0-hfd05255_1.conda
- hash:
- md5: ccd93cfa8e54fd9df4e83dbe55ff6e8c
- sha256: 3226df6b7df98734440739f75527d585d42ca2bfe912fbe8d1954c512f75341a
- category: main
- optional: false
-- name: libcblas
- version: 3.11.0
- manager: conda
- platform: linux-64
- dependencies:
- libblas: 3.11.0
- url: https://repo.prefix.dev/conda-forge/linux-64/libcblas-3.11.0-5_hfef963f_mkl.conda
- hash:
- md5: 9b6cb3aa4b7912121c64b97a76ca43d5
- sha256: 8352f472c49c42a83a20387b5f6addab1f910c5a62f4f5b8998d7dc89131ba2e
- category: main
- optional: false
-- name: libcblas
- version: 3.11.0
- manager: conda
- platform: win-64
- dependencies:
- libblas: 3.11.0
- url: https://repo.prefix.dev/conda-forge/win-64/libcblas-3.11.0-5_h2a3cdd5_mkl.conda
- hash:
- md5: b3fa8e8b55310ba8ef0060103afb02b5
- sha256: 49dc59d8e58360920314b8d276dd80da7866a1484a9abae4ee2760bc68f3e68d
- category: main
- optional: false
-- name: libcurl
- version: 8.18.0
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- krb5: '>=1.22.2,<1.23.0a0'
- libgcc: '>=14'
- libnghttp2: '>=1.67.0,<2.0a0'
- libssh2: '>=1.11.1,<2.0a0'
- libzlib: '>=1.3.1,<2.0a0'
- openssl: '>=3.5.5,<4.0a0'
- zstd: '>=1.5.7,<1.6.0a0'
- url: https://repo.prefix.dev/conda-forge/linux-64/libcurl-8.18.0-hcf29cc6_1.conda
- hash:
- md5: 1707cdd636af2ff697b53186572c9f77
- sha256: c84e8dccb65ad5149c0121e4b54bdc47fa39303fd5f4979b8c44bb51b39a369b
- category: main
- optional: false
-- name: libcurl
- version: 8.18.0
- manager: conda
- platform: win-64
- dependencies:
- krb5: '>=1.22.2,<1.23.0a0'
- libssh2: '>=1.11.1,<2.0a0'
- libzlib: '>=1.3.1,<2.0a0'
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/libcurl-8.18.0-h8206538_1.conda
- hash:
- md5: b7243e3227df9a1852a05762d0efe08d
- sha256: f7dfa98e615a0ddc8de80b32eb6700ea4ebf7b872a6de22a7eadc30a52edd4bf
- category: main
- optional: false
-- name: libdeflate
- version: '1.25'
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- url: https://repo.prefix.dev/conda-forge/linux-64/libdeflate-1.25-h17f619e_0.conda
- hash:
- md5: 6c77a605a7a689d17d4819c0f8ac9a00
- sha256: aa8e8c4be9a2e81610ddf574e05b64ee131fab5e0e3693210c9d6d2fba32c680
- category: main
- optional: false
-- name: libdeflate
- version: '1.25'
- 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/libdeflate-1.25-h51727cc_0.conda
- hash:
- md5: e77030e67343e28b084fabd7db0ce43e
- sha256: 834e4881a18b690d5ec36f44852facd38e13afe599e369be62d29bd675f107ee
- 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.4
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- url: https://repo.prefix.dev/conda-forge/linux-64/libexpat-2.7.4-hecca717_0.conda
- hash:
- md5: e7f7ce06ec24cfcfb9e36d28cf82ba57
- sha256: d78f1d3bea8c031d2f032b760f36676d87929b18146351c4464c66b0869df3f5
- category: main
- optional: false
-- name: libexpat
- version: 2.7.4
- manager: conda
- platform: win-64
- dependencies:
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/libexpat-2.7.4-hac47afa_0.conda
- hash:
- md5: 1c1ced969021592407f16ada4573586d
- sha256: b31f6fb629c4e17885aaf2082fb30384156d16b48b264e454de4a06a313b533d
- 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-h3435931_0.conda
- hash:
- md5: a360c33a5abe61c07959e449fa1453eb
- sha256: 31f19b6a88ce40ebc0d5a992c131f57d919f73c0b92cd1617a5bec83f6e961e6
- 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-h3d046cb_0.conda
- hash:
- md5: 720b39f5ec0610457b725eb3f396219a
- sha256: 59d01f2dfa8b77491b5888a5ab88ff4e1574c9359f7e229da254cdfe27ddc190
- category: main
- optional: false
-- name: libfreetype
- version: 2.14.1
- manager: conda
- platform: linux-64
- dependencies:
- libfreetype6: '>=2.14.1'
- url: https://repo.prefix.dev/conda-forge/linux-64/libfreetype-2.14.1-ha770c72_0.conda
- hash:
- md5: f4084e4e6577797150f9b04a4560ceb0
- sha256: 4641d37faeb97cf8a121efafd6afd040904d4bca8c46798122f417c31d5dfbec
- category: main
- optional: false
-- name: libfreetype
- version: 2.14.1
- manager: conda
- platform: win-64
- dependencies:
- libfreetype6: '>=2.14.1'
- url: https://repo.prefix.dev/conda-forge/win-64/libfreetype-2.14.1-h57928b3_0.conda
- hash:
- md5: 3235024fe48d4087721797ebd6c9d28c
- sha256: 2029702ec55e968ce18ec38cc8cf29f4c8c4989a0d51797164dab4f794349a64
- category: main
- optional: false
-- name: libfreetype6
- version: 2.14.1
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- libpng: '>=1.6.50,<1.7.0a0'
- libzlib: '>=1.3.1,<2.0a0'
- url: https://repo.prefix.dev/conda-forge/linux-64/libfreetype6-2.14.1-h73754d4_0.conda
- hash:
- md5: 8e7251989bca326a28f4a5ffbd74557a
- sha256: 4a7af818a3179fafb6c91111752954e29d3a2a950259c14a2fc7ba40a8b03652
- category: main
- optional: false
-- name: libfreetype6
- version: 2.14.1
- manager: conda
- platform: win-64
- dependencies:
- libpng: '>=1.6.50,<1.7.0a0'
- libzlib: '>=1.3.1,<2.0a0'
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/libfreetype6-2.14.1-hdbac1cb_0.conda
- hash:
- md5: 6e7c5c5ab485057b5d07fd8188ba5c28
- sha256: 223710600b1a5567163f7d66545817f2f144e4ef8f84e99e90f6b8a4e19cb7ad
- category: main
- optional: false
-- name: libgcc
- version: 15.2.0
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- _openmp_mutex: '>=4.5'
- url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-15.2.0-he0feb66_18.conda
- hash:
- md5: 0aa00f03f9e39fb9876085dee11a85d4
- sha256: faf7d2017b4d718951e3a59d081eb09759152f93038479b768e3d612688f83f5
- category: main
- optional: false
-- name: libgcc
- version: 15.2.0
- manager: conda
- platform: win-64
- dependencies:
- _openmp_mutex: '>=4.5'
- libwinpthread: '>=12.0.0.r4.gg4f2fc60ca'
- url: https://repo.prefix.dev/conda-forge/win-64/libgcc-15.2.0-h8ee18e1_18.conda
- hash:
- md5: b085746891cca3bd2704a450a7b4b5ce
- sha256: da2c96563c76b8c601746f03e03ac75d2b4640fa2ee017cb23d6c9fc31f1b2c6
- 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_18.conda
- hash:
- md5: d5e96b1ed75ca01906b3d2469b4ce493
- sha256: e318a711400f536c81123e753d4c797a821021fb38970cebfb3f454126016893
- 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_18.conda
- hash:
- md5: 9063115da5bc35fdc3e1002e69b9ef6e
- sha256: d2c9fad338fd85e4487424865da8e74006ab2e2475bd788f624d7a39b2a72aee
- category: main
- optional: false
-- name: libgfortran5
- version: 15.2.0
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=15.2.0'
- url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran5-15.2.0-h68bc16d_18.conda
- hash:
- md5: 646855f357199a12f02a87382d429b75
- sha256: 539b57cf50ec85509a94ba9949b7e30717839e4d694bc94f30d41c9d34de2d12
- category: main
- optional: false
-- name: libgomp
- version: 15.2.0
- manager: conda
- platform: win-64
- dependencies:
- libwinpthread: '>=12.0.0.r4.gg4f2fc60ca'
- url: https://repo.prefix.dev/conda-forge/win-64/libgomp-15.2.0-h8ee18e1_18.conda
- hash:
- md5: 939fb173e2a4d4e980ef689e99b35223
- sha256: 94981bc2e42374c737750895c6fdcfc43b7126c4fc788cad0ecc7281745931da
- category: main
- optional: false
-- name: libhwloc
- version: 2.12.2
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- libstdcxx: '>=14'
- libxml2: ''
- libxml2-16: '>=2.14.6'
- url: https://repo.prefix.dev/conda-forge/linux-64/libhwloc-2.12.2-default_hafda6a7_1000.conda
- hash:
- md5: 0ed3aa3e3e6bc85050d38881673a692f
- sha256: 2cf160794dda62cf93539adf16d26cfd31092829f2a2757dbdd562984c1b110a
- category: main
- optional: false
-- name: libhwloc
- version: 2.12.2
- manager: conda
- platform: win-64
- dependencies:
- libwinpthread: '>=12.0.0.r4.gg4f2fc60ca'
- libxml2: ''
- libxml2-16: '>=2.14.6'
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/libhwloc-2.12.2-default_h4379cf1_1000.conda
- hash:
- md5: 3b576f6860f838f950c570f4433b086e
- sha256: 8cdf11333a81085468d9aa536ebb155abd74adc293576f6013fc0c85a7a90da3
- category: main
- optional: false
-- name: libiconv
- version: '1.18'
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- url: https://repo.prefix.dev/conda-forge/linux-64/libiconv-1.18-h3b78370_2.conda
- hash:
- md5: 915f5995e94f60e9a4826e0b0920ee88
- sha256: c467851a7312765447155e071752d7bf9bf44d610a5687e32706f480aad2833f
- 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: liblapack
- version: 3.11.0
- manager: conda
- platform: linux-64
- dependencies:
- libblas: 3.11.0
- url: https://repo.prefix.dev/conda-forge/linux-64/liblapack-3.11.0-5_h5e43f62_mkl.conda
- hash:
- md5: 88155c848e1278b0990692e716c9eab4
- sha256: b411a9dccb21cd6231f8f66b63916a6520a7b23363e6f9d1d111e8660f2798b0
- category: main
- optional: false
-- name: liblapack
- version: 3.11.0
- manager: conda
- platform: win-64
- dependencies:
- libblas: 3.11.0
- url: https://repo.prefix.dev/conda-forge/win-64/liblapack-3.11.0-5_hf9ab0e9_mkl.conda
- hash:
- md5: e62c42a4196dee97d20400612afcb2b1
- sha256: a2d33f5cc2b8a9042f2af6981c6733ab1a661463823eaa56595a9c58c0ab77e1
- category: main
- optional: false
-- name: liblzma
- version: 5.8.2
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- url: https://repo.prefix.dev/conda-forge/linux-64/liblzma-5.8.2-hb03c661_0.conda
- hash:
- md5: c7c83eecbb72d88b940c249af56c8b17
- sha256: 755c55ebab181d678c12e49cced893598f2bab22d582fbbf4d8b83c18be207eb
- category: main
- optional: false
-- name: liblzma
- version: 5.8.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/liblzma-5.8.2-hfd05255_0.conda
- hash:
- md5: ba0bfd4c3cf73f299ffe46ff0eaeb8e3
- sha256: f25bf293f550c8ed2e0c7145eb404324611cfccff37660869d97abf526eb957c
- category: main
- optional: false
-- name: libmpdec
- version: 4.0.0
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- 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: e4a9fc2bba3b022dad998c78856afe47
- sha256: 40dcd0b9522a6e0af72a9db0ced619176e7cfdb114855c7a64f278e73f8a7514
- 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: libpng
- version: 1.6.55
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- libzlib: '>=1.3.1,<2.0a0'
- url: https://repo.prefix.dev/conda-forge/linux-64/libpng-1.6.55-h421ea60_0.conda
- hash:
- md5: 5f13ffc7d30ffec87864e678df9957b4
- sha256: 36ade759122cdf0f16e2a2562a19746d96cf9c863ffaa812f2f5071ebbe9c03c
- category: main
- optional: false
-- name: libpng
- version: 1.6.55
- 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.55-h7351971_0.conda
- hash:
- md5: 43f47a9151b9b8fc100aeefcf350d1a0
- sha256: db23f281fa80597a0dc0445b18318346862602d7081ed76244df8cc4418d6d68
- category: main
- optional: false
-- name: libsqlite
- version: 3.51.2
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- icu: '>=78.2,<79.0a0'
- libgcc: '>=14'
- libzlib: '>=1.3.1,<2.0a0'
- url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.51.2-hf4e2dac_0.conda
- hash:
- md5: da5be73701eecd0e8454423fd6ffcf30
- sha256: 04596fcee262a870e4b7c9807224680ff48d4d0cc0dac076a602503d3dc6d217
- category: main
- optional: false
-- name: libsqlite
- version: 3.51.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.2-hf5d6505_0.conda
- hash:
- md5: 903979414b47d777d548e5f0165e6cd8
- sha256: 756478128e3e104bd7e7c3ce6c1b0efad7e08c7320c69fdc726e039323c63fbb
- category: main
- optional: false
-- name: libssh2
- version: 1.11.1
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=13'
- libzlib: '>=1.3.1,<2.0a0'
- openssl: '>=3.5.0,<4.0a0'
- url: https://repo.prefix.dev/conda-forge/linux-64/libssh2-1.11.1-hcf80075_0.conda
- hash:
- md5: eecce068c7e4eddeb169591baac20ac4
- sha256: fa39bfd69228a13e553bd24601332b7cfeb30ca11a3ca50bb028108fe90a7661
- category: main
- optional: false
-- name: libssh2
- version: 1.11.1
- manager: conda
- platform: win-64
- dependencies:
- libzlib: '>=1.3.1,<2.0a0'
- openssl: '>=3.5.0,<4.0a0'
- ucrt: '>=10.0.20348.0'
- vc: '>=14.2,<15'
- vc14_runtime: '>=14.29.30139'
- url: https://repo.prefix.dev/conda-forge/win-64/libssh2-1.11.1-h9aa295b_0.conda
- hash:
- md5: 9dce2f112bfd3400f4f432b3d0ac07b2
- sha256: cbdf93898f2e27cefca5f3fe46519335d1fab25c4ea2a11b11502ff63e602c09
- category: main
- optional: false
-- name: libstdcxx
- version: 15.2.0
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: 15.2.0
- url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-15.2.0-h934c35e_18.conda
- hash:
- md5: 1b08cd684f34175e4514474793d44bcb
- sha256: 78668020064fdaa27e9ab65cd2997e2c837b564ab26ce3bf0e58a2ce1a525c6e
- category: main
- optional: false
-- name: libstdcxx-ng
- version: 15.2.0
- manager: conda
- platform: linux-64
- dependencies:
- libstdcxx: 15.2.0
- url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-15.2.0-hdf11a46_18.conda
- hash:
- md5: 6235adb93d064ecdf3d44faee6f468de
- sha256: 3c902ffd673cb3c6ddde624cdb80f870b6c835f8bf28384b0016e7d444dd0145
- 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.25,<1.26.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-h9d88235_1.conda
- hash:
- md5: cd5a90476766d53e901500df9215e927
- sha256: e5f8c38625aa6d567809733ae04bb71c161a42e44a9fa8227abe61fa5c60ebe0
- category: main
- optional: false
-- name: libtiff
- version: 4.7.1
- manager: conda
- platform: win-64
- dependencies:
- lerc: '>=4.0.0,<5.0a0'
- libdeflate: '>=1.25,<1.26.0a0'
- libjpeg-turbo: '>=3.1.0,<4.0a0'
- liblzma: '>=5.8.1,<6.0a0'
- libzlib: '>=1.3.1,<2.0a0'
- 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-h8f73337_1.conda
- hash:
- md5: 549845d5133100142452812feb9ba2e8
- sha256: f1b8cccaaeea38a28b9cd496694b2e3d372bb5be0e9377c9e3d14b330d1cba8a
- category: main
- optional: false
-- name: libuuid
- version: 2.41.3
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- url: https://repo.prefix.dev/conda-forge/linux-64/libuuid-2.41.3-h5347b49_0.conda
- hash:
- md5: db409b7c1720428638e7c0d509d3e1b5
- sha256: 1a7539cfa7df00714e8943e18de0b06cceef6778e420a5ee3a2a145773758aee
- category: main
- optional: false
-- name: libwebp-base
- version: 1.6.0
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- url: https://repo.prefix.dev/conda-forge/linux-64/libwebp-base-1.6.0-hd42ef1d_0.conda
- hash:
- md5: aea31d2e5b1091feca96fcfe945c3cf9
- sha256: 3aed21ab28eddffdaf7f804f49be7a7d701e8f0e46c856d801270b470820a37b
- category: main
- optional: false
-- name: libwebp-base
- version: 1.6.0
- manager: conda
- platform: win-64
- dependencies:
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/libwebp-base-1.6.0-h4d5522a_0.conda
- hash:
- md5: f9bbae5e2537e3b06e0f7310ba76c893
- sha256: 7b6316abfea1007e100922760e9b8c820d6fc19df3f42fb5aca684cfacb31843
- category: main
- optional: false
-- name: libwinpthread
- version: 12.0.0.r4.gg4f2fc60ca
- manager: conda
- platform: win-64
- dependencies:
- ucrt: ''
- url: https://repo.prefix.dev/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h57928b3_10.conda
- hash:
- md5: 8a86073cf3b343b87d03f41790d8b4e5
- sha256: 0fccf2d17026255b6e10ace1f191d0a2a18f2d65088fd02430be17c701f8ffe0
- category: main
- optional: false
-- name: libxcb
- version: 1.17.0
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=13'
- pthread-stubs: ''
- xorg-libxau: '>=1.0.11,<2.0a0'
- xorg-libxdmcp: ''
- url: https://repo.prefix.dev/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda
- hash:
- md5: 92ed62436b625154323d40d5f2f11dd7
- sha256: 666c0c431b23c6cec6e492840b176dde533d48b7e6fb8883f5071223433776aa
- category: main
- optional: false
-- name: libxcb
- version: 1.17.0
- manager: conda
- platform: win-64
- dependencies:
- libgcc: '>=13'
- libwinpthread: '>=12.0.0.r4.gg4f2fc60ca'
- pthread-stubs: ''
- ucrt: '>=10.0.20348.0'
- xorg-libxau: '>=1.0.11,<2.0a0'
- xorg-libxdmcp: ''
- url: https://repo.prefix.dev/conda-forge/win-64/libxcb-1.17.0-h0e4246c_0.conda
- hash:
- md5: a69bbf778a462da324489976c84cfc8c
- sha256: 08dec73df0e161c96765468847298a420933a36bc4f09b50e062df8793290737
- category: main
- optional: false
-- name: libxml2
- version: 2.15.1
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- icu: '>=78.1,<79.0a0'
- libgcc: '>=14'
- libiconv: '>=1.18,<2.0a0'
- liblzma: '>=5.8.1,<6.0a0'
- libxml2-16: 2.15.1
- libzlib: '>=1.3.1,<2.0a0'
- url: https://repo.prefix.dev/conda-forge/linux-64/libxml2-2.15.1-he237659_1.conda
- hash:
- md5: 417955234eccd8f252b86a265ccdab7f
- sha256: 047be059033c394bd32ae5de66ce389824352120b3a7c0eff980195f7ed80357
- category: main
- optional: false
-- name: libxml2
- version: 2.15.1
- manager: conda
- platform: win-64
- dependencies:
- icu: '>=78.1,<79.0a0'
- libiconv: '>=1.18,<2.0a0'
- liblzma: '>=5.8.1,<6.0a0'
- libxml2-16: 2.15.1
- libzlib: '>=1.3.1,<2.0a0'
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/libxml2-2.15.1-h779ef1b_1.conda
- hash:
- md5: 68dc154b8d415176c07b6995bd3a65d9
- sha256: 8b47d5fb00a6ccc0f495d16787ab5f37a434d51965584d6000966252efecf56d
- category: main
- optional: false
-- name: libxml2-16
- version: 2.15.1
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- icu: '>=78.1,<79.0a0'
- libgcc: '>=14'
- libiconv: '>=1.18,<2.0a0'
- liblzma: '>=5.8.1,<6.0a0'
- libzlib: '>=1.3.1,<2.0a0'
- url: https://repo.prefix.dev/conda-forge/linux-64/libxml2-16-2.15.1-hca6bf5a_1.conda
- hash:
- md5: 3fdd8d99683da9fe279c2f4cecd1e048
- sha256: 8331284bf9ae641b70cdc0e5866502dd80055fc3b9350979c74bb1d192e8e09e
- category: main
- optional: false
-- name: libxml2-16
- version: 2.15.1
- manager: conda
- platform: win-64
- dependencies:
- icu: '>=78.1,<79.0a0'
- libiconv: '>=1.18,<2.0a0'
- liblzma: '>=5.8.1,<6.0a0'
- libzlib: '>=1.3.1,<2.0a0'
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/libxml2-16-2.15.1-h3cfd58e_1.conda
- hash:
- md5: 07d73826fde28e7dbaec52a3297d7d26
- sha256: a857e941156b7f462063e34e086d212c6ccbc1521ebdf75b9ed66bd90add57dc
- category: main
- optional: false
-- name: libzlib
- version: 1.3.1
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=13'
- url: https://repo.prefix.dev/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda
- hash:
- md5: edb0dca6bc32e4f4789199455a1dbeb8
- sha256: d4bfe88d7cb447768e31650f06257995601f89076080e76df55e3112d4e47dc4
- category: main
- optional: false
-- name: libzlib
- version: 1.3.1
- manager: conda
- platform: win-64
- dependencies:
- ucrt: '>=10.0.20348.0'
- vc: '>=14.2,<15'
- vc14_runtime: '>=14.29.30139'
- url: https://repo.prefix.dev/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda
- hash:
- md5: 41fbfac52c601159df6c01f875de31b9
- sha256: ba945c6493449bed0e6e29883c4943817f7c79cbff52b83360f7b341277c6402
- category: main
- optional: false
-- name: llvm-openmp
- version: 21.1.8
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-21.1.8-h4922eb0_0.conda
- hash:
- md5: f8640b709b37dc7758ddce45ea18d000
- sha256: a5a7ad16eecbe35cac63e529ea9c261bef4ccdd68cb1db247409f04529423989
- category: main
- optional: false
-- name: llvm-openmp
- version: 21.1.8
- manager: conda
- platform: win-64
- dependencies:
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-21.1.8-h4fa8253_0.conda
- hash:
- md5: 0d8b425ac862bcf17e4b28802c9351cb
- sha256: 145c4370abe870f10987efa9fc15a8383f1dab09abbc9ad4ff15a55d45658f7b
- category: main
- optional: false
-- name: markupsafe
- version: 3.0.3
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- python: '>=3.13,<3.14.0a0'
- python_abi: 3.13.*
- url: https://repo.prefix.dev/conda-forge/linux-64/markupsafe-3.0.3-py313h3dea7bd_0.conda
- hash:
- md5: c14389156310b8ed3520d84f854be1ee
- sha256: a530a411bdaaf0b1e4de8869dfaca46cb07407bc7dc0702a9e231b0e5ce7ca85
- category: dev
- optional: true
-- name: markupsafe
- version: 3.0.3
- manager: conda
- platform: win-64
- dependencies:
- 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-py313hd650c13_0.conda
- hash:
- md5: 47eaaa4405741beb171ea6edc6eaf874
- sha256: 988d14095c1392e055fd75e24544da2db01ade73b0c2f99ddc8e2b8678ead4cc
- category: dev
- optional: true
-- name: matplotlib-base
- version: 3.10.8
- 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.1'
- libfreetype6: '>=2.14.1'
- libgcc: '>=14'
- libstdcxx: '>=14'
- numpy: '>=1.23'
- 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.8-py313h683a580_0.conda
- hash:
- md5: ffe67570e1a9192d2f4c189b27f75f89
- sha256: b1117aa2c1d11ca70d1704054cdc8801cbcf2dfb846c565531edd417ddd82559
- category: main
- optional: false
-- name: matplotlib-base
- version: 3.10.8
- 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.1'
- libfreetype6: '>=2.14.1'
- numpy: '>=1.23'
- 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.8-py313he1ded55_0.conda
- hash:
- md5: 05f96c429201a64ea752decf4b910a7c
- sha256: f63c4a5ded62cfb216c9d107a3c4527940036eef19cf481418080a0bd9bc11d8
- category: main
- optional: false
-- name: mccabe
- version: 0.7.0
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.9'
- url: https://repo.prefix.dev/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda
- hash:
- md5: 827064ddfe0de2917fb29f1da4f8f533
- sha256: 9b0037171dad0100f0296699a11ae7d355237b55f42f9094aebc0f41512d96a1
- category: dev
- optional: true
-- name: mccabe
- version: 0.7.0
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.9'
- url: https://repo.prefix.dev/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda
- hash:
- md5: 827064ddfe0de2917fb29f1da4f8f533
- sha256: 9b0037171dad0100f0296699a11ae7d355237b55f42f9094aebc0f41512d96a1
- category: dev
- optional: true
-- name: mkl
- version: 2025.3.0
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- _openmp_mutex: '*'
- libgcc: '>=14'
- libstdcxx: '>=14'
- llvm-openmp: '>=21.1.8'
- tbb: '>=2022.3.0'
- url: https://repo.prefix.dev/conda-forge/linux-64/mkl-2025.3.0-h0e700b2_463.conda
- hash:
- md5: f121ddfc96e6a93a26d85906adf06208
- sha256: 659d79976f06d2b796a0836414573a737a0856b05facfa77e5cc114081a8b3d4
- category: main
- optional: false
-- name: mkl
- version: 2025.3.0
- manager: conda
- platform: win-64
- dependencies:
- llvm-openmp: '>=21.1.8'
- tbb: '>=2022.3.0'
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/mkl-2025.3.0-hac47afa_455.conda
- hash:
- md5: fd05d1e894497b012d05a804232254ed
- sha256: b2b4c84b95210760e4d12319416c60ab66e03674ccdcbd14aeb59f82ebb1318d
- category: main
- optional: false
-- name: munkres
- version: 1.1.4
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.9'
- url: https://repo.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyhd8ed1ab_1.conda
- hash:
- md5: 37293a85a0f4f77bbd9cf7aaefc62609
- sha256: d09c47c2cf456de5c09fa66d2c3c5035aa1fa228a1983a433c47b876aa16ce90
- category: main
- optional: false
-- name: munkres
- version: 1.1.4
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.9'
- url: https://repo.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyhd8ed1ab_1.conda
- hash:
- md5: 37293a85a0f4f77bbd9cf7aaefc62609
- sha256: d09c47c2cf456de5c09fa66d2c3c5035aa1fa228a1983a433c47b876aa16ce90
- category: main
- optional: false
-- name: 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: numpy
- version: 2.4.2
- 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: '>=14'
- liblapack: '>=3.9.0,<4.0a0'
- libstdcxx: '>=14'
- python: ''
- python_abi: 3.13.*
- url: https://repo.prefix.dev/conda-forge/linux-64/numpy-2.4.2-py313hf6604e3_1.conda
- hash:
- md5: ca9c6ba4beac38cb3d0a85afde27f94c
- sha256: 2eb8be25a7504f058a153a84be70471e0ebbf6bd0411ae2b6d34904b89d86fe3
- category: main
- optional: false
-- name: numpy
- version: 2.4.2
- 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: ''
- 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/numpy-2.4.2-py313hce7ae62_1.conda
- hash:
- md5: 7db4fcf0a8a985d3f15270ddc7ac0aac
- sha256: a926b0f781c44fdd10e11ec7e7a86ac588ec40b339ac2b4a8459def6d99b613b
- category: main
- optional: false
-- name: openjpeg
- version: 2.5.4
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- libpng: '>=1.6.50,<1.7.0a0'
- libstdcxx: '>=14'
- libtiff: '>=4.7.1,<4.8.0a0'
- libzlib: '>=1.3.1,<2.0a0'
- url: https://repo.prefix.dev/conda-forge/linux-64/openjpeg-2.5.4-h55fea9a_0.conda
- hash:
- md5: 11b3379b191f63139e29c0d19dee24cd
- sha256: 3900f9f2dbbf4129cf3ad6acf4e4b6f7101390b53843591c53b00f034343bc4d
- category: main
- optional: false
-- name: openjpeg
- version: 2.5.4
- manager: conda
- platform: win-64
- dependencies:
- libpng: '>=1.6.50,<1.7.0a0'
- libtiff: '>=4.7.1,<4.8.0a0'
- libzlib: '>=1.3.1,<2.0a0'
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/openjpeg-2.5.4-h24db6dd_0.conda
- hash:
- md5: 5af852046226bb3cb15c7f61c2ac020a
- sha256: 226c270a7e3644448954c47959c00a9bf7845f6d600c2a643db187118d028eee
- category: main
- optional: false
-- name: openssl
- version: 3.6.1
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- ca-certificates: ''
- libgcc: '>=14'
- url: https://repo.prefix.dev/conda-forge/linux-64/openssl-3.6.1-h35e630c_1.conda
- hash:
- md5: f61eb8cd60ff9057122a3d338b99c00f
- sha256: 44c877f8af015332a5d12f5ff0fb20ca32f896526a7d0cdb30c769df1144fb5c
- category: main
- optional: false
-- name: openssl
- version: 3.6.1
- manager: conda
- platform: win-64
- dependencies:
- ca-certificates: ''
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/openssl-3.6.1-hf411b9b_1.conda
- hash:
- md5: eb585509b815415bc964b2c7e11c7eb3
- sha256: 53a5ad2e5553b8157a91bb8aa375f78c5958f77cb80e9d2ce59471ea8e5c0bd6
- category: main
- optional: false
-- name: packaging
- version: '26.0'
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.8'
- url: https://repo.prefix.dev/conda-forge/noarch/packaging-26.0-pyhcf101f3_0.conda
- hash:
- md5: b76541e68fea4d511b1ac46a28dcd2c6
- sha256: c1fc0f953048f743385d31c468b4a678b3ad20caffdeaa94bed85ba63049fd58
- category: main
- optional: false
-- name: packaging
- version: '26.0'
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.8'
- url: https://repo.prefix.dev/conda-forge/noarch/packaging-26.0-pyhcf101f3_0.conda
- hash:
- md5: b76541e68fea4d511b1ac46a28dcd2c6
- sha256: c1fc0f953048f743385d31c468b4a678b3ad20caffdeaa94bed85ba63049fd58
- category: main
- optional: false
-- name: pillow
- version: 12.1.1
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- lcms2: '>=2.18,<3.0a0'
- libfreetype: '>=2.14.1'
- libfreetype6: '>=2.14.1'
- libgcc: '>=14'
- libjpeg-turbo: '>=3.1.2,<4.0a0'
- libtiff: '>=4.7.1,<4.8.0a0'
- libwebp-base: '>=1.6.0,<2.0a0'
- libxcb: '>=1.17.0,<2.0a0'
- openjpeg: '>=2.5.4,<3.0a0'
- python: ''
- python_abi: 3.13.*
- tk: '>=8.6.13,<8.7.0a0'
- zlib-ng: '>=2.3.3,<2.4.0a0'
- url: https://repo.prefix.dev/conda-forge/linux-64/pillow-12.1.1-py313h80991f8_0.conda
- hash:
- md5: 2d5ee4938cdde91a8967f3eea686c546
- sha256: 50738b145a45db78ec12ffebf649127d53e1777166c5c3b006476890250ac265
- category: main
- optional: false
-- name: pillow
- version: 12.1.1
- manager: conda
- platform: win-64
- dependencies:
- lcms2: '>=2.18,<3.0a0'
- libfreetype: '>=2.14.1'
- libfreetype6: '>=2.14.1'
- libjpeg-turbo: '>=3.1.2,<4.0a0'
- libtiff: '>=4.7.1,<4.8.0a0'
- libwebp-base: '>=1.6.0,<2.0a0'
- libxcb: '>=1.17.0,<2.0a0'
- openjpeg: '>=2.5.4,<3.0a0'
- python: ''
- python_abi: 3.13.*
- tk: '>=8.6.13,<8.7.0a0'
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- zlib-ng: '>=2.3.3,<2.4.0a0'
- url: https://repo.prefix.dev/conda-forge/win-64/pillow-12.1.1-py313h38f99e1_0.conda
- hash:
- md5: 41b079447f12baa3852549e1f3a072d2
- sha256: ee2384117c93c0386874ba526a12f60b8f2c700b7cb912e899c62f41927c1666
- category: main
- optional: false
-- name: pip
- version: 26.0.1
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.13.0a0'
- url: https://repo.prefix.dev/conda-forge/noarch/pip-26.0.1-pyh145f28c_0.conda
- hash:
- md5: 09a970fbf75e8ed1aa633827ded6aa4f
- sha256: 5f66ea31d62188c266c5a8752119b0cc90a5bf05963f665cf48a33e0ec58d39c
- category: main
- optional: false
-- name: pip
- version: 26.0.1
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.13.0a0'
- url: https://repo.prefix.dev/conda-forge/noarch/pip-26.0.1-pyh145f28c_0.conda
- hash:
- md5: 09a970fbf75e8ed1aa633827ded6aa4f
- sha256: 5f66ea31d62188c266c5a8752119b0cc90a5bf05963f665cf48a33e0ec58d39c
- category: main
- optional: false
-- name: platformdirs
- version: 4.9.2
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.9.2-pyhcf101f3_0.conda
- hash:
- md5: 4fefefb892ce9cc1539405bec2f1a6cd
- sha256: 7f263219cecf0ba6d74c751efa60c4676ce823157ca90aa43ebba5ac615ca0fa
- category: dev
- optional: true
-- name: platformdirs
- version: 4.9.2
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.9.2-pyhcf101f3_0.conda
- hash:
- md5: 4fefefb892ce9cc1539405bec2f1a6cd
- sha256: 7f263219cecf0ba6d74c751efa60c4676ce823157ca90aa43ebba5ac615ca0fa
- 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-pyhf9edf01_1.conda
- hash:
- md5: d7585b6550ad04c8c5e21097ada2888e
- sha256: e14aafa63efa0528ca99ba568eaf506eb55a0371d12e6250aaaa61718d2eb62e
- category: dev
- optional: true
-- name: pluggy
- version: 1.6.0
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.9'
- url: https://repo.prefix.dev/conda-forge/noarch/pluggy-1.6.0-pyhf9edf01_1.conda
- hash:
- md5: d7585b6550ad04c8c5e21097ada2888e
- sha256: e14aafa63efa0528ca99ba568eaf506eb55a0371d12e6250aaaa61718d2eb62e
- category: dev
- optional: true
-- name: 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: pydantic
- version: 2.12.5
- 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.5-pyhcf101f3_1.conda
- hash:
- md5: c3946ed24acdb28db1b5d63321dbca7d
- sha256: 868569d9505b7fe246c880c11e2c44924d7613a8cdcc1f6ef85d5375e892f13d
- category: main
- optional: false
-- name: pydantic
- version: 2.12.5
- manager: conda
- platform: win-64
- dependencies:
- annotated-types: '>=0.6.0'
- pydantic-core: 2.41.5
- python: '>=3.10'
- typing-extensions: '>=4.6.1'
- typing-inspection: '>=0.4.2'
- typing_extensions: '>=4.14.1'
- url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.12.5-pyhcf101f3_1.conda
- hash:
- md5: c3946ed24acdb28db1b5d63321dbca7d
- sha256: 868569d9505b7fe246c880c11e2c44924d7613a8cdcc1f6ef85d5375e892f13d
- category: main
- optional: false
-- name: pydantic-core
- version: 2.41.5
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- python: ''
- python_abi: 3.13.*
- typing-extensions: '>=4.6.0,!=4.7.0'
- url: https://repo.prefix.dev/conda-forge/linux-64/pydantic-core-2.41.5-py313h843e2db_1.conda
- hash:
- md5: f27c39a1906771bbe56cd26a76bf0b8b
- sha256: b15568ddc03bd33ea41610e5df951be4e245cd61957cbf8c2cfd12557f3d53b5
- category: main
- optional: false
-- name: pydantic-core
- version: 2.41.5
- manager: conda
- platform: win-64
- dependencies:
- python: ''
- 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-py313hfbe8231_1.conda
- hash:
- md5: 0437f87004ad7c64c98a013d1611db97
- sha256: fb9391dc09dd01574c85e2342b9aa3b8664cd713401ef8fd6267865cc28988d8
- category: main
- optional: false
-- name: pygments
- version: 2.19.2
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.9'
- url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda
- hash:
- md5: 6b6ece66ebcae2d5f326c77ef2c5a066
- sha256: 5577623b9f6685ece2697c6eb7511b4c9ac5fb607c9babc2646c811b428fd46a
- category: dev
- optional: true
-- name: pygments
- version: 2.19.2
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.9'
- url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda
- hash:
- md5: 6b6ece66ebcae2d5f326c77ef2c5a066
- sha256: 5577623b9f6685ece2697c6eb7511b4c9ac5fb607c9babc2646c811b428fd46a
- category: dev
- optional: true
-- name: pylint
- version: 4.0.4
- manager: conda
- platform: linux-64
- dependencies:
- astroid: '>=4.0.2,<=4.1.0.dev0'
- colorama: '>=0.4.5'
- dill: '>=0.3.7'
- isort: '>=5,<8,!=5.13'
- mccabe: '>=0.6,<0.8'
- platformdirs: '>=2.2'
- python: '>=3.10'
- tomli: '>=1.1.0'
- tomlkit: '>=0.10.1'
- url: https://repo.prefix.dev/conda-forge/noarch/pylint-4.0.4-pyhcf101f3_0.conda
- hash:
- md5: 3a830511a81b99b67a1206a9d29b44b3
- sha256: ad0bb78785ab385d0afcca4a55e0226d8e6710ebad6450caa552f5fe61c2f6a0
- category: dev
- optional: true
-- name: pylint
- version: 4.0.4
- manager: conda
- platform: win-64
- dependencies:
- astroid: '>=4.0.2,<=4.1.0.dev0'
- colorama: '>=0.4.5'
- dill: '>=0.3.7'
- isort: '>=5,<8,!=5.13'
- mccabe: '>=0.6,<0.8'
- platformdirs: '>=2.2'
- python: '>=3.10'
- tomli: '>=1.1.0'
- tomlkit: '>=0.10.1'
- url: https://repo.prefix.dev/conda-forge/noarch/pylint-4.0.4-pyhcf101f3_0.conda
- hash:
- md5: 3a830511a81b99b67a1206a9d29b44b3
- sha256: ad0bb78785ab385d0afcca4a55e0226d8e6710ebad6450caa552f5fe61c2f6a0
- category: dev
- optional: true
-- name: pyparsing
- version: 3.3.2
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.10'
- 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: '>=3.10'
- 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
- 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.2
- manager: conda
- platform: linux-64
- dependencies:
- colorama: '>=0.4'
- exceptiongroup: '>=1'
- iniconfig: '>=1.0.1'
- packaging: '>=22'
- pluggy: '>=1.5,<2'
- pygments: '>=2.7.2'
- python: '>=3.10'
- tomli: '>=1'
- url: https://repo.prefix.dev/conda-forge/noarch/pytest-9.0.2-pyhcf101f3_0.conda
- hash:
- md5: 2b694bad8a50dc2f712f5368de866480
- sha256: 9e749fb465a8bedf0184d8b8996992a38de351f7c64e967031944978de03a520
- category: dev
- optional: true
-- name: pytest
- version: 9.0.2
- manager: conda
- platform: win-64
- dependencies:
- colorama: '>=0.4'
- exceptiongroup: '>=1'
- iniconfig: '>=1.0.1'
- packaging: '>=22'
- pluggy: '>=1.5,<2'
- pygments: '>=2.7.2'
- python: '>=3.10'
- tomli: '>=1'
- url: https://repo.prefix.dev/conda-forge/noarch/pytest-9.0.2-pyhcf101f3_0.conda
- hash:
- md5: 2b694bad8a50dc2f712f5368de866480
- sha256: 9e749fb465a8bedf0184d8b8996992a38de351f7c64e967031944978de03a520
- category: dev
- optional: true
-- name: pytest-cov
- version: 7.0.0
- manager: conda
- platform: linux-64
- dependencies:
- coverage: '>=7.10.6'
- pluggy: '>=1.2'
- pytest: '>=7'
- python: '>=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: 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.13.12
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- bzip2: '>=1.0.8,<2.0a0'
- ld_impl_linux-64: '>=2.36.1'
- libexpat: '>=2.7.3,<3.0a0'
- libffi: '>=3.5.2,<3.6.0a0'
- libgcc: '>=14'
- liblzma: '>=5.8.2,<6.0a0'
- libmpdec: '>=4.0.0,<5.0a0'
- libsqlite: '>=3.51.2,<4.0a0'
- libuuid: '>=2.41.3,<3.0a0'
- libzlib: '>=1.3.1,<2.0a0'
- ncurses: '>=6.5,<7.0a0'
- openssl: '>=3.5.5,<4.0a0'
- pip: ''
- 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.13.12-hc97d973_100_cp313.conda
- hash:
- md5: 4c875ed0e78c2d407ec55eadffb8cf3d
- sha256: 8a08fe5b7cb5a28aa44e2994d18dbf77f443956990753a4ca8173153ffb6eb56
- category: main
- optional: false
-- name: python
- version: 3.13.12
- manager: conda
- platform: win-64
- dependencies:
- bzip2: '>=1.0.8,<2.0a0'
- libexpat: '>=2.7.3,<3.0a0'
- libffi: '>=3.5.2,<3.6.0a0'
- liblzma: '>=5.8.2,<6.0a0'
- libmpdec: '>=4.0.0,<5.0a0'
- libsqlite: '>=3.51.2,<4.0a0'
- libzlib: '>=1.3.1,<2.0a0'
- openssl: '>=3.5.5,<4.0a0'
- pip: ''
- python_abi: 3.13.*
- tk: '>=8.6.13,<8.7.0a0'
- tzdata: ''
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/python-3.13.12-h09917c8_100_cp313.conda
- hash:
- md5: 4440c24966d0aa0c8f1e1d5006dac2d6
- sha256: da70aec20ff5a5ae18bbba9fdd1e18190b419605cafaafb3bdad8becf11ce94d
- category: main
- optional: false
-- name: python-dateutil
- version: 2.9.0.post0
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.9'
- six: '>=1.5'
- url: https://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda
- hash:
- md5: 5b8d21249ff20967101ffa321cab24e8
- sha256: d6a17ece93bbd5139e02d2bd7dbfa80bee1a4261dced63f65f679121686bf664
- category: main
- optional: false
-- name: python-dateutil
- version: 2.9.0.post0
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.9'
- six: '>=1.5'
- url: https://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda
- hash:
- md5: 5b8d21249ff20967101ffa321cab24e8
- sha256: d6a17ece93bbd5139e02d2bd7dbfa80bee1a4261dced63f65f679121686bf664
- category: main
- optional: false
-- name: python_abi
- version: '3.13'
- manager: conda
- platform: linux-64
- dependencies: {}
- url: https://repo.prefix.dev/conda-forge/noarch/python_abi-3.13-8_cp313.conda
- hash:
- md5: 94305520c52a4aa3f6c2b1ff6008d9f8
- sha256: 210bffe7b121e651419cb196a2a63687b087497595c9be9d20ebe97dd06060a7
- category: main
- optional: false
-- name: python_abi
- version: '3.13'
- manager: conda
- platform: win-64
- dependencies: {}
- url: https://repo.prefix.dev/conda-forge/noarch/python_abi-3.13-8_cp313.conda
- hash:
- md5: 94305520c52a4aa3f6c2b1ff6008d9f8
- sha256: 210bffe7b121e651419cb196a2a63687b087497595c9be9d20ebe97dd06060a7
- 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: pyyaml
- version: 6.0.3
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- python: '>=3.13,<3.14.0a0'
- python_abi: 3.13.*
- yaml: '>=0.2.5,<0.3.0a0'
- url: https://repo.prefix.dev/conda-forge/linux-64/pyyaml-6.0.3-py313h3dea7bd_1.conda
- hash:
- md5: f256753e840c3cd3766488c9437a8f8b
- sha256: ef7df29b38ef04ec67a8888a4aa039973eaa377e8c4b59a7be0a1c50cd7e4ac6
- category: dev
- optional: true
-- name: pyyaml
- version: 6.0.3
- manager: conda
- platform: win-64
- dependencies:
- 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-py313hd650c13_1.conda
- hash:
- md5: c1bdb8dd255c79fb9c428ad25cc6ee54
- 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: readline
- version: '8.3'
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- ncurses: '>=6.5,<7.0a0'
- url: https://repo.prefix.dev/conda-forge/linux-64/readline-8.3-h853b02a_0.conda
- hash:
- md5: d7d95fc8287ea7bf33e0e7116d2b95ec
- sha256: 12ffde5a6f958e285aa22c191ca01bbd3d6e710aa852e00618fa6ddc59149002
- category: main
- optional: false
-- name: requests
- version: 2.32.5
- manager: conda
- platform: linux-64
- dependencies:
- certifi: '>=2017.4.17'
- charset-normalizer: '>=2,<4'
- idna: '>=2.5,<4'
- python: '>=3.10'
- urllib3: '>=1.21.1,<3'
- url: https://repo.prefix.dev/conda-forge/noarch/requests-2.32.5-pyhcf101f3_1.conda
- hash:
- md5: c65df89a0b2e321045a9e01d1337b182
- sha256: 7813c38b79ae549504b2c57b3f33394cea4f2ad083f0994d2045c2e24cb538c5
- category: 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.10'
- urllib3: '>=1.21.1,<3'
- url: https://repo.prefix.dev/conda-forge/noarch/requests-2.32.5-pyhcf101f3_1.conda
- hash:
- md5: c65df89a0b2e321045a9e01d1337b182
- sha256: 7813c38b79ae549504b2c57b3f33394cea4f2ad083f0994d2045c2e24cb538c5
- category: 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: 0dc48b4b570931adc8641e55c6c17fe4
- sha256: 30f3c04fcfb64c44d821d392a4a0b8915650dbd900c8befc20ade8fde8ec6aa2
- category: dev
- optional: true
-- name: roman-numerals-py
- version: 4.1.0
- manager: conda
- platform: linux-64
- dependencies:
- 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: 28687768633154993d521aecfa4a56ac
- sha256: ce21b50a412b87b388db9e8dfbf8eb16fc436c23750b29bf612ee1a74dd0beb2
- category: dev
- optional: true
-- name: roman-numerals-py
- version: 4.1.0
- manager: conda
- platform: win-64
- dependencies:
- 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: 28687768633154993d521aecfa4a56ac
- sha256: ce21b50a412b87b388db9e8dfbf8eb16fc436c23750b29bf612ee1a74dd0beb2
- category: dev
- optional: true
-- name: scipy
- version: 1.17.0
- 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: '>=14'
- libgfortran: ''
- libgfortran5: '>=14.3.0'
- liblapack: '>=3.9.0,<4.0a0'
- libstdcxx: '>=14'
- numpy: <2.7
- python: '>=3.13,<3.14.0a0'
- python_abi: 3.13.*
- url: https://repo.prefix.dev/conda-forge/linux-64/scipy-1.17.0-py313h4b8bb8b_1.conda
- hash:
- md5: 2b18fe5b4b2d1611ddf8c2f080a46563
- sha256: e812ebe8115f8daf005f5788ed8f05a0fdabe47eeb4c30bf0a190f2d1d1da0b6
- category: main
- optional: false
-- name: scipy
- version: 1.17.0
- 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.7
- 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/scipy-1.17.0-py313he51e9a2_1.conda
- hash:
- md5: b54fb98c96446df58e04957b6c98520e
- sha256: 9da71fa94c2de66f5d1eb7d926f655efadf8c4e0a6b6e934a45adaeea0905e9b
- category: main
- optional: false
-- name: six
- version: 1.17.0
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.9'
- url: https://repo.prefix.dev/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda
- hash:
- md5: 3339e3b65d58accf4ca4fb8748ab16b3
- sha256: 458227f759d5e3fcec5d9b7acce54e10c9e1f4f4b7ec978f3bfd54ce4ee9853d
- category: main
- optional: false
-- name: six
- version: 1.17.0
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.9'
- url: https://repo.prefix.dev/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda
- hash:
- md5: 3339e3b65d58accf4ca4fb8748ab16b3
- sha256: 458227f759d5e3fcec5d9b7acce54e10c9e1f4f4b7ec978f3bfd54ce4ee9853d
- category: main
- optional: false
-- name: 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.2.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.11'
- requests: '>=2.30.0'
- roman-numerals-py: '>=1.0.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'
- url: https://repo.prefix.dev/conda-forge/noarch/sphinx-8.2.3-pyhd8ed1ab_0.conda
- hash:
- md5: f7af826063ed569bb13f7207d6f949b0
- sha256: 995f58c662db0197d681fa345522fd9e7ac5f05330d3dff095ab2f102e260ab0
- category: dev
- optional: true
-- name: sphinx
- version: 8.2.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.11'
- requests: '>=2.30.0'
- roman-numerals-py: '>=1.0.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'
- url: https://repo.prefix.dev/conda-forge/noarch/sphinx-8.2.3-pyhd8ed1ab_0.conda
- hash:
- md5: f7af826063ed569bb13f7207d6f949b0
- sha256: 995f58c662db0197d681fa345522fd9e7ac5f05330d3dff095ab2f102e260ab0
- category: dev
- optional: true
-- name: sphinx-autodoc-typehints
- version: 3.5.2
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.11'
- sphinx: '>=8.2.3'
- url: https://repo.prefix.dev/conda-forge/noarch/sphinx-autodoc-typehints-3.5.2-pyhd8ed1ab_0.conda
- hash:
- md5: abe9fc17e8bf83725cde006800c926de
- sha256: 896309836e7b7682ac7ebf8783d7fde57869d28fa82e0a36413fff41f4049eac
- category: dev
- optional: true
-- name: sphinx-autodoc-typehints
- version: 3.5.2
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.11'
- sphinx: '>=8.2.3'
- url: https://repo.prefix.dev/conda-forge/noarch/sphinx-autodoc-typehints-3.5.2-pyhd8ed1ab_0.conda
- hash:
- md5: abe9fc17e8bf83725cde006800c926de
- sha256: 896309836e7b7682ac7ebf8783d7fde57869d28fa82e0a36413fff41f4049eac
- category: dev
- optional: true
-- name: sphinx-rtd-theme
- version: 3.1.0
- manager: conda
- platform: linux-64
- dependencies:
- 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: 3b1a32d3d5c2064822203f2a6f3f1173
- sha256: ae5e8e514f21e6f62b63c13f684939ba007168bfd7742e8cb573fce69fbf62da
- category: dev
- optional: true
-- name: sphinx-rtd-theme
- version: 3.1.0
- manager: conda
- platform: win-64
- dependencies:
- 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: 3b1a32d3d5c2064822203f2a6f3f1173
- sha256: ae5e8e514f21e6f62b63c13f684939ba007168bfd7742e8cb573fce69fbf62da
- category: dev
- optional: true
-- name: sphinx_rtd_theme
- version: 3.1.0
- 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.1.0-pyha770c72_0.conda
- hash:
- md5: cede6bc99a0253fa676f03cfdc666d57
- sha256: 1d57a0cd74ecc0e5dc006f6591145d1abb6658464919d4aeb163d3db714f80e6
- category: dev
- optional: true
-- name: sphinx_rtd_theme
- version: 3.1.0
- 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.1.0-pyha770c72_0.conda
- hash:
- md5: cede6bc99a0253fa676f03cfdc666d57
- sha256: 1d57a0cd74ecc0e5dc006f6591145d1abb6658464919d4aeb163d3db714f80e6
- 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: tbb
- version: 2022.3.0
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- libhwloc: '>=2.12.2,<2.12.3.0a0'
- libstdcxx: '>=14'
- url: https://repo.prefix.dev/conda-forge/linux-64/tbb-2022.3.0-hb700be7_2.conda
- hash:
- md5: 8f7278ca5f7456a974992a8b34284737
- sha256: 975710e4b7f1b13c3c30b7fbf21e22f50abe0463b6b47a231582fdedcc45c961
- category: main
- optional: false
-- name: tbb
- version: 2022.3.0
- manager: conda
- platform: win-64
- dependencies:
- libhwloc: '>=2.12.2,<2.12.3.0a0'
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/tbb-2022.3.0-h3155e25_2.conda
- hash:
- md5: 0f9817ffbe25f9e69ceba5ea70c52606
- sha256: abd9a489f059fba85c8ffa1abdaa4d515d6de6a3325238b8e81203b913cf65a9
- category: main
- optional: false
-- name: tk
- version: 8.6.13
- 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/tk-8.6.13-noxft_h366c992_103.conda
- hash:
- md5: cffd3bdd58090148f4cfcd831f4b26ab
- sha256: cafeec44494f842ffeca27e9c8b0c27ed714f93ac77ddadc6aaf726b5554ebac
- category: main
- optional: false
-- name: tk
- version: 8.6.13
- 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/tk-8.6.13-h6ed50ae_3.conda
- hash:
- md5: 0481bfd9814bf525bd4b3ee4b51494c4
- sha256: 0e79810fae28f3b69fe7391b0d43f5474d6bd91d451d5f2bde02f55ae481d5e3
- category: main
- optional: false
-- name: tomli
- version: 2.4.0
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.4.0-pyhcf101f3_0.conda
- hash:
- md5: 72e780e9aa2d0a3295f59b1874e3768b
- sha256: 62940c563de45790ba0f076b9f2085a842a65662268b02dd136a8e9b1eaf47a8
- category: dev
- optional: true
-- name: tomli
- version: 2.4.0
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.4.0-pyhcf101f3_0.conda
- hash:
- md5: 72e780e9aa2d0a3295f59b1874e3768b
- sha256: 62940c563de45790ba0f076b9f2085a842a65662268b02dd136a8e9b1eaf47a8
- category: dev
- optional: true
-- name: tomlkit
- version: 0.14.0
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.14.0-pyha770c72_0.conda
- hash:
- md5: 385dca77a8b0ec6fa9b92cb62d09b43b
- sha256: b35082091c8efd084e51bc3a4a2d3b07897eff232aaf58cbc0f959b6291a6a93
- category: dev
- optional: true
-- name: tomlkit
- version: 0.14.0
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.14.0-pyha770c72_0.conda
- hash:
- md5: 385dca77a8b0ec6fa9b92cb62d09b43b
- sha256: b35082091c8efd084e51bc3a4a2d3b07897eff232aaf58cbc0f959b6291a6a93
- category: dev
- optional: true
-- name: typing-extensions
- version: 4.15.0
- manager: conda
- platform: linux-64
- dependencies:
- typing_extensions: ==4.15.0
- url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda
- hash:
- md5: edd329d7d3a4ab45dcf905899a7a6115
- sha256: 7c2df5721c742c2a47b2c8f960e718c930031663ac1174da67c1ed5999f7938c
- category: main
- optional: false
-- name: typing-extensions
- version: 4.15.0
- manager: conda
- platform: win-64
- dependencies:
- typing_extensions: ==4.15.0
- url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda
- hash:
- md5: edd329d7d3a4ab45dcf905899a7a6115
- sha256: 7c2df5721c742c2a47b2c8f960e718c930031663ac1174da67c1ed5999f7938c
- category: main
- optional: false
-- name: typing-inspection
- version: 0.4.2
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.10'
- typing_extensions: '>=4.12.0'
- url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.2-pyhd8ed1ab_1.conda
- hash:
- md5: a0a4a3035667fc34f29bfbd5c190baa6
- sha256: 70db27de58a97aeb7ba7448366c9853f91b21137492e0b4430251a1870aa8ff4
- category: main
- optional: false
-- name: typing-inspection
- version: 0.4.2
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.10'
- typing_extensions: '>=4.12.0'
- url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.2-pyhd8ed1ab_1.conda
- hash:
- md5: a0a4a3035667fc34f29bfbd5c190baa6
- sha256: 70db27de58a97aeb7ba7448366c9853f91b21137492e0b4430251a1870aa8ff4
- category: main
- optional: false
-- name: typing_extensions
- version: 4.15.0
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=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: typing_extensions
- version: 4.15.0
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda
- hash:
- md5: 0caa1af407ecff61170c9437a808404d
- sha256: 032271135bca55aeb156cee361c81350c6f3fb203f57d024d7e5a1fc9ef18731
- category: main
- optional: false
-- name: tzdata
- version: 2025c
- manager: conda
- platform: linux-64
- dependencies: {}
- url: https://repo.prefix.dev/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.conda
- hash:
- md5: ad659d0a2b3e47e38d829aa8cad2d610
- sha256: 1d30098909076af33a35017eed6f2953af1c769e273a0626a04722ac4acaba3c
- category: main
- optional: false
-- name: tzdata
- version: 2025c
- manager: conda
- platform: win-64
- dependencies: {}
- url: https://repo.prefix.dev/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.conda
- hash:
- md5: ad659d0a2b3e47e38d829aa8cad2d610
- sha256: 1d30098909076af33a35017eed6f2953af1c769e273a0626a04722ac4acaba3c
- category: main
- optional: false
-- name: ucrt
- version: 10.0.26100.0
- manager: conda
- platform: win-64
- dependencies: {}
- url: https://repo.prefix.dev/conda-forge/win-64/ucrt-10.0.26100.0-h57928b3_0.conda
- hash:
- md5: 71b24316859acd00bdb8b38f5e2ce328
- sha256: 3005729dce6f3d3f5ec91dfc49fc75a0095f9cd23bab49efb899657297ac91a5
- category: main
- optional: false
-- name: urllib3
- version: 2.6.3
- manager: conda
- platform: linux-64
- dependencies:
- backports.zstd: '>=1.0.0'
- brotli-python: '>=1.2.0'
- h2: '>=4,<5'
- pysocks: '>=1.5.6,<2.0,!=1.5.7'
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/urllib3-2.6.3-pyhd8ed1ab_0.conda
- hash:
- md5: 9272daa869e03efe68833e3dc7a02130
- sha256: af641ca7ab0c64525a96fd9ad3081b0f5bcf5d1cbb091afb3f6ed5a9eee6111a
- category: dev
- optional: true
-- name: urllib3
- version: 2.6.3
- manager: conda
- platform: win-64
- dependencies:
- backports.zstd: '>=1.0.0'
- brotli-python: '>=1.2.0'
- h2: '>=4,<5'
- pysocks: '>=1.5.6,<2.0,!=1.5.7'
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/urllib3-2.6.3-pyhd8ed1ab_0.conda
- hash:
- md5: 9272daa869e03efe68833e3dc7a02130
- sha256: af641ca7ab0c64525a96fd9ad3081b0f5bcf5d1cbb091afb3f6ed5a9eee6111a
- category: dev
- optional: true
-- name: vc
- version: '14.3'
- manager: conda
- platform: win-64
- dependencies:
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/vc-14.3-h41ae7f8_34.conda
- hash:
- md5: 1e610f2416b6acdd231c5f573d754a0f
- sha256: 9dc40c2610a6e6727d635c62cced5ef30b7b30123f5ef67d6139e23d21744b3a
- category: main
- optional: false
-- name: vc14_runtime
- version: 14.44.35208
- manager: conda
- platform: win-64
- dependencies:
- ucrt: '>=10.0.20348.0'
- vcomp14: 14.44.35208
- url: https://repo.prefix.dev/conda-forge/win-64/vc14_runtime-14.44.35208-h818238b_34.conda
- hash:
- md5: 37eb311485d2d8b2c419449582046a42
- sha256: 02732f953292cce179de9b633e74928037fa3741eb5ef91c3f8bae4f761d32a5
- category: main
- optional: false
-- name: vcomp14
- version: 14.44.35208
- manager: conda
- platform: win-64
- dependencies:
- ucrt: '>=10.0.20348.0'
- url: https://repo.prefix.dev/conda-forge/win-64/vcomp14-14.44.35208-h818238b_34.conda
- hash:
- md5: 242d9f25d2ae60c76b38a5e42858e51d
- sha256: 878d5d10318b119bd98ed3ed874bd467acbe21996e1d81597a1dbf8030ea0ce6
- category: main
- optional: false
-- name: 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: '>=14'
- url: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxau-1.0.12-hb03c661_1.conda
- hash:
- md5: b2895afaf55bf96a8c8282a2e47a5de0
- sha256: 6bc6ab7a90a5d8ac94c7e300cc10beb0500eeba4b99822768ca2f2ef356f731b
- category: main
- optional: false
-- name: xorg-libxau
- version: 1.0.12
- manager: conda
- platform: win-64
- dependencies:
- libgcc: '>=14'
- libwinpthread: '>=12.0.0.r4.gg4f2fc60ca'
- ucrt: '>=10.0.20348.0'
- url: https://repo.prefix.dev/conda-forge/win-64/xorg-libxau-1.0.12-hba3369d_1.conda
- hash:
- md5: 8436cab9a76015dfe7208d3c9f97c156
- sha256: 156a583fa43609507146de1c4926172286d92458c307bb90871579601f6bc568
- category: main
- optional: false
-- name: xorg-libxdmcp
- version: 1.1.5
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- url: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb03c661_1.conda
- hash:
- md5: 1dafce8548e38671bea82e3f5c6ce22f
- sha256: 25d255fb2eef929d21ff660a0c687d38a6d2ccfbcbf0cc6aa738b12af6e9d142
- category: main
- optional: false
-- name: xorg-libxdmcp
- version: 1.1.5
- manager: conda
- platform: win-64
- dependencies:
- libgcc: '>=14'
- libwinpthread: '>=12.0.0.r4.gg4f2fc60ca'
- ucrt: '>=10.0.20348.0'
- url: https://repo.prefix.dev/conda-forge/win-64/xorg-libxdmcp-1.1.5-hba3369d_1.conda
- hash:
- md5: a7c03e38aa9c0e84d41881b9236eacfb
- sha256: 366b8ae202c3b48958f0b8784bbfdc37243d3ee1b1cd4b8e76c10abe41fa258b
- category: main
- optional: false
-- name: yaml
- version: 0.2.5
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- url: https://repo.prefix.dev/conda-forge/linux-64/yaml-0.2.5-h280c20c_3.conda
- hash:
- md5: a77f85f77be52ff59391544bfe73390a
- sha256: 6d9ea2f731e284e9316d95fa61869fe7bbba33df7929f82693c121022810f4ad
- category: 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: zipp
- version: 3.23.0
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/zipp-3.23.0-pyhcf101f3_1.conda
- hash:
- md5: 30cd29cb87d819caead4d55184c1d115
- sha256: b4533f7d9efc976511a73ef7d4a2473406d7f4c750884be8e8620b0ce70f4dae
- category: dev
- optional: true
-- name: zipp
- version: 3.23.0
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/zipp-3.23.0-pyhcf101f3_1.conda
- hash:
- md5: 30cd29cb87d819caead4d55184c1d115
- sha256: b4533f7d9efc976511a73ef7d4a2473406d7f4c750884be8e8620b0ce70f4dae
- category: dev
- optional: true
-- name: zlib-ng
- version: 2.3.3
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- libstdcxx: '>=14'
- url: https://repo.prefix.dev/conda-forge/linux-64/zlib-ng-2.3.3-hceb46e0_1.conda
- hash:
- md5: 2aadb0d17215603a82a2a6b0afd9a4cb
- sha256: ea4e50c465d70236408cb0bfe0115609fd14db1adcd8bd30d8918e0291f8a75f
- category: main
- optional: false
-- name: zlib-ng
- version: 2.3.3
- manager: conda
- platform: win-64
- dependencies:
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/zlib-ng-2.3.3-h0261ad2_1.conda
- hash:
- md5: 46a21c0a4e65f1a135251fc7c8663f83
- sha256: 71332532332d13b5dbe57074ddcf82ae711bdc132affa5a2982a29ffa06dc234
- category: main
- optional: false
-- name: zstd
- version: 1.5.7
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libzlib: '>=1.3.1,<2.0a0'
- url: https://repo.prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb78ec9c_6.conda
- hash:
- md5: 4a13eeac0b5c8e5b8ab496e6c4ddd829
- sha256: 68f0206ca6e98fea941e5717cec780ed2873ffabc0e1ed34428c061e2c6268c7
- category: main
- optional: false
-- name: zstd
- version: 1.5.7
- manager: conda
- platform: win-64
- dependencies:
- libzlib: '>=1.3.1,<2.0a0'
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/zstd-1.5.7-h534d264_6.conda
- hash:
- md5: 053b84beec00b71ea8ff7a4f84b55207
- sha256: 368d8628424966fd8f9c8018326a9c779e06913dd39e646cf331226acc90e5b2
- category: main
- optional: false
-- name: geoapps-utils
- version: 0.7.0a2.dev37+668a9e0
- manager: pip
- platform: linux-64
- dependencies:
- geoh5py: 0.13.0a3.dev5+9e0a86e5
- 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@668a9e0da5214e4a3bce466321cd910f1bb00b02
- hash:
- sha256: 668a9e0da5214e4a3bce466321cd910f1bb00b02
- source:
- type: url
- url: git+https://github.com/MiraGeoscience/geoapps-utils.git@668a9e0da5214e4a3bce466321cd910f1bb00b02
- category: main
- optional: false
-- name: geoapps-utils
- version: 0.7.0a2.dev37+668a9e0
- manager: pip
- platform: win-64
- dependencies:
- geoh5py: 0.13.0a3.dev5+9e0a86e5
- 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@668a9e0da5214e4a3bce466321cd910f1bb00b02
- hash:
- sha256: 668a9e0da5214e4a3bce466321cd910f1bb00b02
- source:
- type: url
- url: git+https://github.com/MiraGeoscience/geoapps-utils.git@668a9e0da5214e4a3bce466321cd910f1bb00b02
- category: main
- optional: false
-- name: geoh5py
- version: 0.13.0a3.dev5+9e0a86e5
- manager: pip
- platform: linux-64
- dependencies:
- h5py: '>=3.15.0,<4.0.0'
- numpy: '>=2.4.0,<2.5.0'
- pillow: '>=12.1.0,<12.2.0'
- pydantic: '>=2.12.0,<2.13.0'
- url: git+https://github.com/MiraGeoscience/geoh5py.git@9e0a86e5afadfe9c55e9811317827a4f6c2c70c4
- hash:
- sha256: 9e0a86e5afadfe9c55e9811317827a4f6c2c70c4
- source:
- type: url
- url: git+https://github.com/MiraGeoscience/geoh5py.git@9e0a86e5afadfe9c55e9811317827a4f6c2c70c4
- category: main
- optional: false
-- name: geoh5py
- version: 0.13.0a3.dev5+9e0a86e5
- manager: pip
- platform: win-64
- dependencies:
- h5py: '>=3.15.0,<4.0.0'
- numpy: '>=2.4.0,<2.5.0'
- pillow: '>=12.1.0,<12.2.0'
- pydantic: '>=2.12.0,<2.13.0'
- url: git+https://github.com/MiraGeoscience/geoh5py.git@9e0a86e5afadfe9c55e9811317827a4f6c2c70c4
- hash:
- sha256: 9e0a86e5afadfe9c55e9811317827a4f6c2c70c4
- source:
- type: url
- url: git+https://github.com/MiraGeoscience/geoh5py.git@9e0a86e5afadfe9c55e9811317827a4f6c2c70c4
- category: main
- optional: false
diff --git a/py-3.14.conda-lock.yml b/py-3.14.conda-lock.yml
deleted file mode 100644
index 8590013..0000000
--- a/py-3.14.conda-lock.yml
+++ /dev/null
@@ -1,4132 +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.14.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.14.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.14.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.14.yml --lockfile py-3.14.conda-lock.yml
-version: 1
-metadata:
- content_hash:
- win-64: 5af27ac8b89d0508ea53657ac9fc3decbb10a7ba4a8ea5c75d9507da45f9880a
- linux-64: 1fcd58273952d9af10e24e1080fa4a27f4767f8644fa877f82ba937d8014e56a
- channels:
- - url: conda-forge
- used_env_vars: []
- - url: nodefaults
- used_env_vars: []
- platforms:
- - win-64
- - linux-64
- sources:
- - pyproject.toml
- - environments/env-python-3.14.yml
-package:
-- name: _openmp_mutex
- version: '4.5'
- manager: conda
- platform: linux-64
- dependencies:
- llvm-openmp: '>=9.0.1'
- url: https://repo.prefix.dev/conda-forge/linux-64/_openmp_mutex-4.5-7_kmp_llvm.conda
- hash:
- md5: 887b70e1d607fba7957aa02f9ee0d939
- sha256: c0cddb66070dd6355311f7667ce2acccf70d1013edaa6e97f22859502fefdb22
- category: main
- optional: false
-- name: _openmp_mutex
- version: '4.5'
- manager: conda
- platform: win-64
- dependencies:
- libgomp: '>=7.5.0'
- libwinpthread: '>=12.0.0.r4.gg4f2fc60ca'
- url: https://repo.prefix.dev/conda-forge/win-64/_openmp_mutex-4.5-20_gnu.conda
- hash:
- md5: 1626967b574d1784b578b52eaeb071e7
- sha256: 8a1cee28bd0ee7451ada1cd50b64720e57e17ff994fc62dd8329bef570d382e4
- 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: astroid
- version: 4.0.4
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.14,<3.15.0a0'
- python_abi: 3.14.*
- url: https://repo.prefix.dev/conda-forge/linux-64/astroid-4.0.4-py314hdafbbf9_0.conda
- hash:
- md5: bc30c5eab5cb4daeff7931dd6523e1d7
- sha256: 64b35b179ffc0e2409eced094c6280f89c4bbbba5715ae2ba18d37e18e00fce0
- category: dev
- optional: true
-- name: astroid
- version: 4.0.4
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.14,<3.15.0a0'
- python_abi: 3.14.*
- url: https://repo.prefix.dev/conda-forge/win-64/astroid-4.0.4-py314h86ab7b2_0.conda
- hash:
- md5: d104588051bc8b8c592cfd1ccdbf0a6b
- sha256: 18d45f2251b15637c73f3d9a5818601797a9ee89b0bb0203bf810dac27d1294a
- category: dev
- optional: true
-- name: babel
- version: 2.18.0
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.10'
- pytz: '>=2015.7'
- url: https://repo.prefix.dev/conda-forge/noarch/babel-2.18.0-pyhcf101f3_0.conda
- hash:
- md5: ea5be9abc2939c8431893b4e123a2065
- sha256: 7377bce9fcc03fecd3607843d20b50546c30a923a3517a322a2a784fa6e380eb
- category: dev
- optional: true
-- name: babel
- version: 2.18.0
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.10'
- pytz: '>=2015.7'
- url: https://repo.prefix.dev/conda-forge/noarch/babel-2.18.0-pyhcf101f3_0.conda
- hash:
- md5: ea5be9abc2939c8431893b4e123a2065
- sha256: 7377bce9fcc03fecd3607843d20b50546c30a923a3517a322a2a784fa6e380eb
- category: dev
- optional: true
-- name: backports.zstd
- version: 1.3.0
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.14'
- url: https://repo.prefix.dev/conda-forge/noarch/backports.zstd-1.3.0-py314h680f03e_0.conda
- hash:
- md5: a2ac7763a9ac75055b68f325d3255265
- sha256: c31ab719d256bc6f89926131e88ecd0f0c5d003fe8481852c6424f4ec6c7eb29
- category: dev
- optional: true
-- name: backports.zstd
- version: 1.3.0
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.14'
- url: https://repo.prefix.dev/conda-forge/noarch/backports.zstd-1.3.0-py314h680f03e_0.conda
- hash:
- md5: a2ac7763a9ac75055b68f325d3255265
- sha256: c31ab719d256bc6f89926131e88ecd0f0c5d003fe8481852c6424f4ec6c7eb29
- category: dev
- optional: true
-- 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
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- libstdcxx: '>=14'
- python: '>=3.14,<3.15.0a0'
- python_abi: 3.14.*
- url: https://repo.prefix.dev/conda-forge/linux-64/brotli-python-1.2.0-py314h3de4e8d_1.conda
- hash:
- md5: 8910d2c46f7e7b519129f486e0fe927a
- sha256: 3ad3500bff54a781c29f16ce1b288b36606e2189d0b0ef2f67036554f47f12b0
- category: dev
- optional: true
-- name: brotli-python
- version: 1.2.0
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.14,<3.15.0a0'
- python_abi: 3.14.*
- 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-py314he701e3d_1.conda
- hash:
- md5: 1302b74b93c44791403cbeee6a0f62a3
- sha256: 6854ee7675135c57c73a04849c29cbebc2fb6a3a3bfee1f308e64bf23074719b
- category: dev
- optional: true
-- 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_9.conda
- hash:
- md5: d2ffd7602c02f2b316fd921d39876885
- sha256: 0b75d45f0bba3e95dc693336fa51f40ea28c980131fec438afb7ce6118ed05f6
- 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_9.conda
- hash:
- md5: 4cb8e6b48f67de0b018719cdf1136306
- sha256: 76dfb71df5e8d1c4eded2dbb5ba15bb8fb2e2b0fe42d94145d5eed4c75c35902
- category: main
- optional: false
-- name: c-ares
- version: 1.34.6
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- url: https://repo.prefix.dev/conda-forge/linux-64/c-ares-1.34.6-hb03c661_0.conda
- hash:
- md5: 920bb03579f15389b9e512095ad995b7
- sha256: cc9accf72fa028d31c2a038460787751127317dcfa991f8d1f1babf216bb454e
- category: main
- optional: false
-- name: ca-certificates
- version: 2026.1.4
- manager: conda
- platform: linux-64
- dependencies:
- __unix: ''
- url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2026.1.4-hbd8a1cb_0.conda
- hash:
- md5: bddacf101bb4dd0e51811cb69c7790e2
- sha256: b5974ec9b50e3c514a382335efa81ed02b05906849827a34061c496f4defa0b2
- category: main
- optional: false
-- name: ca-certificates
- version: 2026.1.4
- manager: conda
- platform: win-64
- dependencies:
- __win: ''
- url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2026.1.4-h4c7d964_0.conda
- hash:
- md5: 84d389c9eee640dda3d26fc5335c67d8
- sha256: 4ddcb01be03f85d3db9d881407fb13a673372f1b9fac9c836ea441893390e049
- category: main
- optional: false
-- name: cached-property
- version: 1.5.2
- manager: conda
- platform: linux-64
- dependencies:
- cached_property: '>=1.5.2,<1.5.3.0a0'
- url: https://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2
- hash:
- md5: 9b347a7ec10940d3f7941ff6c460b551
- sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17
- category: main
- optional: false
-- name: cached-property
- version: 1.5.2
- manager: conda
- platform: win-64
- dependencies:
- cached_property: '>=1.5.2,<1.5.3.0a0'
- url: https://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2
- hash:
- md5: 9b347a7ec10940d3f7941ff6c460b551
- sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17
- category: main
- optional: false
-- name: cached_property
- version: 1.5.2
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.6'
- url: https://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2
- hash:
- md5: 576d629e47797577ab0f1b351297ef4a
- sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7
- category: main
- optional: false
-- name: cached_property
- version: 1.5.2
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.6'
- url: https://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2
- hash:
- md5: 576d629e47797577ab0f1b351297ef4a
- sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7
- category: main
- optional: false
-- name: certifi
- version: 2026.1.4
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/certifi-2026.1.4-pyhd8ed1ab_0.conda
- hash:
- md5: eacc711330cd46939f66cd401ff9c44b
- sha256: 110338066d194a715947808611b763857c15458f8b3b97197387356844af9450
- category: dev
- optional: true
-- name: certifi
- version: 2026.1.4
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/certifi-2026.1.4-pyhd8ed1ab_0.conda
- hash:
- md5: eacc711330cd46939f66cd401ff9c44b
- sha256: 110338066d194a715947808611b763857c15458f8b3b97197387356844af9450
- category: dev
- optional: true
-- 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: dev
- optional: true
-- 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: dev
- optional: true
-- 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.14.*
- url: https://repo.prefix.dev/conda-forge/linux-64/contourpy-1.3.3-py314h97ea11e_4.conda
- hash:
- md5: 95bede9cdb7a30a4b611223d52a01aa4
- sha256: b0314a7f1fb4a294b1a8bcf5481d4a8d9412a9fee23b7e3f93fb10e4d504f2cc
- category: main
- optional: false
-- name: contourpy
- version: 1.3.3
- manager: conda
- platform: win-64
- dependencies:
- numpy: '>=1.25'
- python: ''
- python_abi: 3.14.*
- 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-py314hf309875_4.conda
- hash:
- md5: c26934035616f7d578f9da0491aed3d8
- sha256: f141bcbf8e490b49b2f53f517173d13a64d75e43cfae170e0d931cb0b66f4bce
- category: main
- optional: false
-- name: coverage
- version: 7.13.4
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- python: '>=3.14,<3.15.0a0'
- python_abi: 3.14.*
- tomli: ''
- url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.13.4-py314h67df5f8_0.conda
- hash:
- md5: 6c7efc167cee337d9c41200506d022b8
- sha256: b84aa99886610e0c3856ee1b577fe5c2552a5677bb7d281b4a86e79248813898
- category: dev
- optional: true
-- name: coverage
- version: 7.13.4
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.14,<3.15.0a0'
- python_abi: 3.14.*
- tomli: ''
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.13.4-py314h2359020_0.conda
- hash:
- md5: ac7417dc27e19765fd50f547d9a9e445
- sha256: be570faa6580aa8ddeead7f3639ae27c46e02446613c85af9c3eab395f8dedd6
- category: dev
- optional: true
-- name: cycler
- version: 0.12.1
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhcf101f3_2.conda
- hash:
- md5: 4c2a8fef270f6c69591889b93f9f55c1
- sha256: bb47aec5338695ff8efbddbc669064a3b10fe34ad881fb8ad5d64fbfa6910ed1
- category: main
- optional: false
-- name: cycler
- version: 0.12.1
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhcf101f3_2.conda
- hash:
- md5: 4c2a8fef270f6c69591889b93f9f55c1
- sha256: bb47aec5338695ff8efbddbc669064a3b10fe34ad881fb8ad5d64fbfa6910ed1
- category: main
- optional: false
-- name: dill
- version: 0.4.1
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.1-pyhcf101f3_0.conda
- hash:
- md5: 080a808fce955026bf82107d955d32da
- sha256: 1ef84c0cc4efd0c2d58c3cb365945edbd9ee42a1c54514d1ccba4b641005f757
- category: dev
- optional: true
-- name: dill
- version: 0.4.1
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.1-pyhcf101f3_0.conda
- hash:
- md5: 080a808fce955026bf82107d955d32da
- sha256: 1ef84c0cc4efd0c2d58c3cb365945edbd9ee42a1c54514d1ccba4b641005f757
- category: dev
- optional: true
-- name: discretize
- version: 0.12.0
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- libstdcxx: '>=14'
- numpy: '>=1.22.4'
- python: ''
- python_abi: 3.14.*
- scipy: '>=1.12'
- url: https://repo.prefix.dev/conda-forge/linux-64/discretize-0.12.0-np2py314hb287c12_1.conda
- hash:
- md5: 938ba04ba3aded18ed474a9e508e9c23
- sha256: c96c79d7facb5b4c764593a504bf2b720d89d534b3ab26897ca1eeac27c2412c
- category: main
- optional: false
-- name: discretize
- version: 0.12.0
- manager: conda
- platform: win-64
- dependencies:
- numpy: '>=1.22.4'
- python: ''
- python_abi: 3.14.*
- scipy: '>=1.12'
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/discretize-0.12.0-np2py314h1495373_1.conda
- hash:
- md5: b8473b159537e85bceea7f1b758b883d
- sha256: 68a337dc5fa612be54000d9d111a4722760190b321246fc3386cc245112e675e
- category: main
- optional: false
-- name: docutils
- version: 0.21.2
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.9'
- url: https://repo.prefix.dev/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_1.conda
- hash:
- md5: 24c1ca34138ee57de72a943237cde4cc
- sha256: fa5966bb1718bbf6967a85075e30e4547901410cc7cb7b16daf68942e9a94823
- category: dev
- optional: true
-- name: docutils
- version: 0.21.2
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.9'
- url: https://repo.prefix.dev/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_1.conda
- hash:
- md5: 24c1ca34138ee57de72a943237cde4cc
- sha256: fa5966bb1718bbf6967a85075e30e4547901410cc7cb7b16daf68942e9a94823
- category: dev
- optional: true
-- name: exceptiongroup
- version: 1.3.1
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.10'
- typing_extensions: '>=4.6.0'
- url: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.3.1-pyhd8ed1ab_0.conda
- hash:
- md5: 8e662bd460bda79b1ea39194e3c4c9ab
- sha256: ee6cf346d017d954255bbcbdb424cddea4d14e4ed7e9813e429db1d795d01144
- category: dev
- optional: true
-- name: exceptiongroup
- version: 1.3.1
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.10'
- typing_extensions: '>=4.6.0'
- url: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.3.1-pyhd8ed1ab_0.conda
- hash:
- md5: 8e662bd460bda79b1ea39194e3c4c9ab
- sha256: ee6cf346d017d954255bbcbdb424cddea4d14e4ed7e9813e429db1d795d01144
- category: dev
- optional: true
-- name: fonttools
- version: 4.61.1
- manager: conda
- platform: linux-64
- dependencies:
- brotli: ''
- munkres: ''
- python: '>=3.10'
- unicodedata2: '>=15.1.0'
- url: https://repo.prefix.dev/conda-forge/noarch/fonttools-4.61.1-pyh7db6752_0.conda
- hash:
- md5: d5da976e963e70364b9e3ff270842b9f
- sha256: bb74f1732065eb95c3ea4ae7f7ab29d6ddaafe6da32f009106bf9a335147cb77
- category: main
- optional: false
-- name: fonttools
- version: 4.61.1
- manager: conda
- platform: win-64
- dependencies:
- brotli: ''
- munkres: ''
- python: '>=3.10'
- unicodedata2: '>=15.1.0'
- url: https://repo.prefix.dev/conda-forge/noarch/fonttools-4.61.1-pyh7db6752_0.conda
- hash:
- md5: d5da976e963e70364b9e3ff270842b9f
- sha256: bb74f1732065eb95c3ea4ae7f7ab29d6ddaafe6da32f009106bf9a335147cb77
- category: main
- optional: false
-- name: freetype
- version: 2.14.1
- manager: conda
- platform: linux-64
- dependencies:
- libfreetype: 2.14.1
- libfreetype6: 2.14.1
- url: https://repo.prefix.dev/conda-forge/linux-64/freetype-2.14.1-ha770c72_0.conda
- hash:
- md5: 4afc585cd97ba8a23809406cd8a9eda8
- sha256: bf8e4dffe46f7d25dc06f31038cacb01672c47b9f45201f065b0f4d00ab0a83e
- category: main
- optional: false
-- name: freetype
- version: 2.14.1
- manager: conda
- platform: win-64
- dependencies:
- libfreetype: 2.14.1
- libfreetype6: 2.14.1
- url: https://repo.prefix.dev/conda-forge/win-64/freetype-2.14.1-h57928b3_0.conda
- hash:
- md5: d69c21967f35eb2ce7f1f85d6b6022d3
- sha256: a9b3313edea0bf14ea6147ea43a1059d0bf78771a1336d2c8282891efc57709a
- category: main
- optional: false
-- name: h2
- version: 4.3.0
- manager: conda
- platform: linux-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: 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.23,<3'
- python: '>=3.14,<3.15.0a0'
- python_abi: 3.14.*
- url: https://repo.prefix.dev/conda-forge/linux-64/h5py-3.15.1-nompi_py314hc32fe06_101.conda
- hash:
- md5: d5f709371311de1343675757978a50d5
- sha256: 36f836d9212fda38e09e3d7c1e694996112456c1b1da1b1bb6c0072321559082
- 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.23,<3'
- python: '>=3.14,<3.15.0a0'
- python_abi: 3.14.*
- 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_py314hc249e69_101.conda
- hash:
- md5: 4019722f94eac6540faf77d20cc4190d
- sha256: 7a05562f2cf290b50de67eefef6ea704ec2356551a2683b767c511680562eeaa
- 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.5,<2.0a0'
- libcurl: '>=8.18.0,<9.0a0'
- libgcc: '>=14'
- libgfortran: ''
- libgfortran5: '>=14.3.0'
- libstdcxx: '>=14'
- libzlib: '>=1.3.1,<2.0a0'
- openssl: '>=3.5.5,<4.0a0'
- url: https://repo.prefix.dev/conda-forge/linux-64/hdf5-1.14.6-nompi_h19486de_106.conda
- hash:
- md5: c223ee1429ba538f3e48cfb4a0b97357
- sha256: 1fc50ce3b86710fba3ec9c5714f1612b5ffa4230d70bfe43e2a1436eacba1621
- category: main
- optional: false
-- name: hdf5
- version: 1.14.6
- manager: conda
- platform: win-64
- dependencies:
- libaec: '>=1.1.5,<2.0a0'
- libcurl: '>=8.18.0,<9.0a0'
- libzlib: '>=1.3.1,<2.0a0'
- openssl: '>=3.5.5,<4.0a0'
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/hdf5-1.14.6-nompi_hae35d4c_106.conda
- hash:
- md5: e2fb54650b51dcd92dfcbf42d2222ff8
- sha256: d9f8f202ee91ae93515b18c498970f178dfd061743f25a65a205f848e197437f
- 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: '78.2'
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- libstdcxx: '>=14'
- url: https://repo.prefix.dev/conda-forge/linux-64/icu-78.2-h33c6efd_0.conda
- hash:
- md5: 186a18e3ba246eccfc7cff00cd19a870
- sha256: 142a722072fa96cf16ff98eaaf641f54ab84744af81754c292cb81e0881c0329
- category: main
- optional: false
-- name: icu
- version: '78.2'
- manager: conda
- platform: win-64
- dependencies:
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/icu-78.2-h637d24d_0.conda
- hash:
- md5: 0ee3bb487600d5e71ab7d28951b2016a
- sha256: 5a41fb28971342e293769fc968b3414253a2f8d9e30ed7c31517a15b4887246a
- category: main
- optional: false
-- name: idna
- version: '3.11'
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/idna-3.11-pyhd8ed1ab_0.conda
- hash:
- md5: 53abe63df7e10a6ba605dc5f9f961d36
- sha256: ae89d0299ada2a3162c2614a9d26557a92aa6a77120ce142f8e0109bbf0342b0
- category: 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: 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: '>=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: dev
- optional: true
-- 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: dev
- optional: true
-- 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.10'
- url: https://repo.prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhcf101f3_1.conda
- hash:
- md5: 04558c96691bed63104678757beb4f8d
- sha256: fc9ca7348a4f25fed2079f2153ecdcf5f9cf2a0bc36c4172420ca09e1849df7b
- category: dev
- optional: true
-- name: jinja2
- version: 3.1.6
- manager: conda
- platform: win-64
- dependencies:
- markupsafe: '>=2.0'
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhcf101f3_1.conda
- hash:
- md5: 04558c96691bed63104678757beb4f8d
- sha256: fc9ca7348a4f25fed2079f2153ecdcf5f9cf2a0bc36c4172420ca09e1849df7b
- category: dev
- optional: true
-- name: keyutils
- version: 1.6.3
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=13'
- url: https://repo.prefix.dev/conda-forge/linux-64/keyutils-1.6.3-hb9d3cd8_0.conda
- hash:
- md5: b38117a3c920364aff79f870c984b4a3
- sha256: 0960d06048a7185d3542d850986d807c6e37ca2e644342dd0c72feefcf26c2a4
- category: main
- optional: false
-- name: kiwisolver
- version: 1.4.9
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- libstdcxx: '>=14'
- python: ''
- python_abi: 3.14.*
- url: https://repo.prefix.dev/conda-forge/linux-64/kiwisolver-1.4.9-py314h97ea11e_2.conda
- hash:
- md5: 57f1ce4f7ba6bcd460be8f83c8f04c69
- sha256: a707d08c095d02148201f2da9fba465054fb750e33117e215892a4fefcc1b54a
- category: main
- optional: false
-- name: kiwisolver
- version: 1.4.9
- manager: conda
- platform: win-64
- dependencies:
- python: ''
- python_abi: 3.14.*
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/kiwisolver-1.4.9-py314hf309875_2.conda
- hash:
- md5: e9d93271b021332f5492ff5478601614
- sha256: ded907ab1ce24abcff20bc239e770ae7ef4cff6fdcfb8cc24ca59ebe736a1d3f
- category: main
- optional: false
-- name: krb5
- version: 1.22.2
- manager: conda
- platform: linux-64
- dependencies:
- __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: fb53fb07ce46a575c5d004bbc96032c2
- sha256: 3e307628ca3527448dd1cb14ad7bb9d04d1d28c7d4c5f97ba196ae984571dd25
- category: main
- optional: false
-- name: krb5
- version: 1.22.2
- manager: conda
- platform: win-64
- dependencies:
- openssl: '>=3.5.5,<4.0a0'
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/krb5-1.22.2-h0ea6238_0.conda
- hash:
- md5: 4432f52dc0c8eb6a7a6abc00a037d93c
- sha256: eb60f1ad8b597bcf95dee11bc11fe71a8325bc1204cf51d2bb1f2120ffd77761
- category: main
- optional: false
-- name: lcms2
- version: '2.18'
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- libjpeg-turbo: '>=3.1.2,<4.0a0'
- libtiff: '>=4.7.1,<4.8.0a0'
- url: https://repo.prefix.dev/conda-forge/linux-64/lcms2-2.18-h0c24ade_0.conda
- hash:
- md5: 6f2e2c8f58160147c4d1c6f4c14cbac4
- sha256: 836ec4b895352110335b9fdcfa83a8dcdbe6c5fb7c06c4929130600caea91c0a
- category: main
- optional: false
-- name: lcms2
- version: '2.18'
- manager: conda
- platform: win-64
- dependencies:
- libjpeg-turbo: '>=3.1.2,<4.0a0'
- 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/lcms2-2.18-hf2c6c5f_0.conda
- hash:
- md5: b6c68d6b829b044cd17a41e0a8a23ca1
- sha256: 7eeb18c5c86db146b62da66d9e8b0e753a52987f9134a494309588bbeceddf28
- category: main
- optional: false
-- name: ld_impl_linux-64
- version: 2.45.1
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- zstd: '>=1.5.7,<1.6.0a0'
- url: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.45.1-default_hbd61a6d_101.conda
- hash:
- md5: 12bd9a3f089ee6c9266a37dab82afabd
- sha256: 565941ac1f8b0d2f2e8f02827cbca648f4d18cd461afc31f15604cd291b5c5f3
- 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.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/libaec-1.1.5-h088129d_0.conda
- hash:
- md5: 86f7414544ae606282352fa1e116b41f
- sha256: 822e4ae421a7e9c04e841323526321185f6659222325e1a9aedec811c686e688
- category: main
- optional: false
-- name: libaec
- version: 1.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/libaec-1.1.5-haf901d7_0.conda
- hash:
- md5: 43b6385cfad52a7083f2c41984eb4e91
- sha256: e54c08964262c73671d9e80e400333e59c617e0b454476ad68933c0c458156c8
- category: main
- optional: false
-- name: libblas
- version: 3.11.0
- manager: conda
- platform: linux-64
- dependencies:
- mkl: '>=2025.3.0,<2026.0a0'
- url: https://repo.prefix.dev/conda-forge/linux-64/libblas-3.11.0-5_h5875eb1_mkl.conda
- hash:
- md5: 9d2f2e3a943d38f972ceef9cde8ba4bf
- sha256: 328d64d4eb51047c39a8039a30eb47695855829d0a11b72d932171cb1dcdfad3
- category: main
- optional: false
-- name: libblas
- version: 3.11.0
- manager: conda
- platform: win-64
- dependencies:
- mkl: '>=2025.3.0,<2026.0a0'
- url: https://repo.prefix.dev/conda-forge/win-64/libblas-3.11.0-5_hf2e6a31_mkl.conda
- hash:
- md5: f9decf88743af85c9c9e05556a4c47c0
- sha256: f0cb7b2697461a306341f7ff32d5b361bb84f3e94478464c1e27ee01fc8f276b
- category: main
- optional: false
-- name: libbrotlicommon
- version: 1.2.0
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlicommon-1.2.0-hb03c661_1.conda
- hash:
- md5: 72c8fd1af66bd67bf580645b426513ed
- sha256: 318f36bd49ca8ad85e6478bd8506c88d82454cc008c1ac1c6bf00a3c42fa610e
- category: main
- optional: false
-- name: libbrotlicommon
- version: 1.2.0
- manager: conda
- platform: win-64
- dependencies:
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/libbrotlicommon-1.2.0-hfd05255_1.conda
- hash:
- md5: 444b0a45bbd1cb24f82eedb56721b9c4
- sha256: 5097303c2fc8ebf9f9ea9731520aa5ce4847d0be41764edd7f6dee2100b82986
- category: main
- optional: false
-- name: libbrotlidec
- version: 1.2.0
- manager: conda
- platform: linux-64
- dependencies:
- __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-hb03c661_1.conda
- hash:
- md5: 366b40a69f0ad6072561c1d09301c886
- sha256: 12fff21d38f98bc446d82baa890e01fd82e3b750378fedc720ff93522ffb752b
- category: main
- optional: false
-- name: libbrotlidec
- version: 1.2.0
- manager: conda
- platform: win-64
- dependencies:
- libbrotlicommon: 1.2.0
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/libbrotlidec-1.2.0-hfd05255_1.conda
- hash:
- md5: 450e3ae947fc46b60f1d8f8f318b40d4
- sha256: 3239ce545cf1c32af6fffb7fc7c75cb1ef5b6ea8221c66c85416bb2d46f5cccb
- category: main
- optional: false
-- name: libbrotlienc
- version: 1.2.0
- manager: conda
- platform: linux-64
- dependencies:
- __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-hb03c661_1.conda
- hash:
- md5: 4ffbb341c8b616aa2494b6afb26a0c5f
- sha256: a0c15c79997820bbd3fbc8ecf146f4fe0eca36cc60b62b63ac6cf78857f1dd0d
- category: main
- optional: false
-- name: libbrotlienc
- version: 1.2.0
- manager: conda
- platform: win-64
- dependencies:
- libbrotlicommon: 1.2.0
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/libbrotlienc-1.2.0-hfd05255_1.conda
- hash:
- md5: ccd93cfa8e54fd9df4e83dbe55ff6e8c
- sha256: 3226df6b7df98734440739f75527d585d42ca2bfe912fbe8d1954c512f75341a
- category: main
- optional: false
-- name: libcblas
- version: 3.11.0
- manager: conda
- platform: linux-64
- dependencies:
- libblas: 3.11.0
- url: https://repo.prefix.dev/conda-forge/linux-64/libcblas-3.11.0-5_hfef963f_mkl.conda
- hash:
- md5: 9b6cb3aa4b7912121c64b97a76ca43d5
- sha256: 8352f472c49c42a83a20387b5f6addab1f910c5a62f4f5b8998d7dc89131ba2e
- category: main
- optional: false
-- name: libcblas
- version: 3.11.0
- manager: conda
- platform: win-64
- dependencies:
- libblas: 3.11.0
- url: https://repo.prefix.dev/conda-forge/win-64/libcblas-3.11.0-5_h2a3cdd5_mkl.conda
- hash:
- md5: b3fa8e8b55310ba8ef0060103afb02b5
- sha256: 49dc59d8e58360920314b8d276dd80da7866a1484a9abae4ee2760bc68f3e68d
- category: main
- optional: false
-- name: libcurl
- version: 8.18.0
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- krb5: '>=1.22.2,<1.23.0a0'
- libgcc: '>=14'
- libnghttp2: '>=1.67.0,<2.0a0'
- libssh2: '>=1.11.1,<2.0a0'
- libzlib: '>=1.3.1,<2.0a0'
- openssl: '>=3.5.5,<4.0a0'
- zstd: '>=1.5.7,<1.6.0a0'
- url: https://repo.prefix.dev/conda-forge/linux-64/libcurl-8.18.0-hcf29cc6_1.conda
- hash:
- md5: 1707cdd636af2ff697b53186572c9f77
- sha256: c84e8dccb65ad5149c0121e4b54bdc47fa39303fd5f4979b8c44bb51b39a369b
- category: main
- optional: false
-- name: libcurl
- version: 8.18.0
- manager: conda
- platform: win-64
- dependencies:
- krb5: '>=1.22.2,<1.23.0a0'
- libssh2: '>=1.11.1,<2.0a0'
- libzlib: '>=1.3.1,<2.0a0'
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/libcurl-8.18.0-h8206538_1.conda
- hash:
- md5: b7243e3227df9a1852a05762d0efe08d
- sha256: f7dfa98e615a0ddc8de80b32eb6700ea4ebf7b872a6de22a7eadc30a52edd4bf
- category: main
- optional: false
-- name: libdeflate
- version: '1.25'
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- url: https://repo.prefix.dev/conda-forge/linux-64/libdeflate-1.25-h17f619e_0.conda
- hash:
- md5: 6c77a605a7a689d17d4819c0f8ac9a00
- sha256: aa8e8c4be9a2e81610ddf574e05b64ee131fab5e0e3693210c9d6d2fba32c680
- category: main
- optional: false
-- name: libdeflate
- version: '1.25'
- 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/libdeflate-1.25-h51727cc_0.conda
- hash:
- md5: e77030e67343e28b084fabd7db0ce43e
- sha256: 834e4881a18b690d5ec36f44852facd38e13afe599e369be62d29bd675f107ee
- 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.4
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- url: https://repo.prefix.dev/conda-forge/linux-64/libexpat-2.7.4-hecca717_0.conda
- hash:
- md5: e7f7ce06ec24cfcfb9e36d28cf82ba57
- sha256: d78f1d3bea8c031d2f032b760f36676d87929b18146351c4464c66b0869df3f5
- category: main
- optional: false
-- name: libexpat
- version: 2.7.4
- manager: conda
- platform: win-64
- dependencies:
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/libexpat-2.7.4-hac47afa_0.conda
- hash:
- md5: 1c1ced969021592407f16ada4573586d
- sha256: b31f6fb629c4e17885aaf2082fb30384156d16b48b264e454de4a06a313b533d
- 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-h3435931_0.conda
- hash:
- md5: a360c33a5abe61c07959e449fa1453eb
- sha256: 31f19b6a88ce40ebc0d5a992c131f57d919f73c0b92cd1617a5bec83f6e961e6
- 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-h3d046cb_0.conda
- hash:
- md5: 720b39f5ec0610457b725eb3f396219a
- sha256: 59d01f2dfa8b77491b5888a5ab88ff4e1574c9359f7e229da254cdfe27ddc190
- category: main
- optional: false
-- name: libfreetype
- version: 2.14.1
- manager: conda
- platform: linux-64
- dependencies:
- libfreetype6: '>=2.14.1'
- url: https://repo.prefix.dev/conda-forge/linux-64/libfreetype-2.14.1-ha770c72_0.conda
- hash:
- md5: f4084e4e6577797150f9b04a4560ceb0
- sha256: 4641d37faeb97cf8a121efafd6afd040904d4bca8c46798122f417c31d5dfbec
- category: main
- optional: false
-- name: libfreetype
- version: 2.14.1
- manager: conda
- platform: win-64
- dependencies:
- libfreetype6: '>=2.14.1'
- url: https://repo.prefix.dev/conda-forge/win-64/libfreetype-2.14.1-h57928b3_0.conda
- hash:
- md5: 3235024fe48d4087721797ebd6c9d28c
- sha256: 2029702ec55e968ce18ec38cc8cf29f4c8c4989a0d51797164dab4f794349a64
- category: main
- optional: false
-- name: libfreetype6
- version: 2.14.1
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- libpng: '>=1.6.50,<1.7.0a0'
- libzlib: '>=1.3.1,<2.0a0'
- url: https://repo.prefix.dev/conda-forge/linux-64/libfreetype6-2.14.1-h73754d4_0.conda
- hash:
- md5: 8e7251989bca326a28f4a5ffbd74557a
- sha256: 4a7af818a3179fafb6c91111752954e29d3a2a950259c14a2fc7ba40a8b03652
- category: main
- optional: false
-- name: libfreetype6
- version: 2.14.1
- manager: conda
- platform: win-64
- dependencies:
- libpng: '>=1.6.50,<1.7.0a0'
- libzlib: '>=1.3.1,<2.0a0'
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/libfreetype6-2.14.1-hdbac1cb_0.conda
- hash:
- md5: 6e7c5c5ab485057b5d07fd8188ba5c28
- sha256: 223710600b1a5567163f7d66545817f2f144e4ef8f84e99e90f6b8a4e19cb7ad
- category: main
- optional: false
-- name: libgcc
- version: 15.2.0
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- _openmp_mutex: '>=4.5'
- url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-15.2.0-he0feb66_18.conda
- hash:
- md5: 0aa00f03f9e39fb9876085dee11a85d4
- sha256: faf7d2017b4d718951e3a59d081eb09759152f93038479b768e3d612688f83f5
- category: main
- optional: false
-- name: libgcc
- version: 15.2.0
- manager: conda
- platform: win-64
- dependencies:
- _openmp_mutex: '>=4.5'
- libwinpthread: '>=12.0.0.r4.gg4f2fc60ca'
- url: https://repo.prefix.dev/conda-forge/win-64/libgcc-15.2.0-h8ee18e1_18.conda
- hash:
- md5: b085746891cca3bd2704a450a7b4b5ce
- sha256: da2c96563c76b8c601746f03e03ac75d2b4640fa2ee017cb23d6c9fc31f1b2c6
- 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_18.conda
- hash:
- md5: d5e96b1ed75ca01906b3d2469b4ce493
- sha256: e318a711400f536c81123e753d4c797a821021fb38970cebfb3f454126016893
- 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_18.conda
- hash:
- md5: 9063115da5bc35fdc3e1002e69b9ef6e
- sha256: d2c9fad338fd85e4487424865da8e74006ab2e2475bd788f624d7a39b2a72aee
- category: main
- optional: false
-- name: libgfortran5
- version: 15.2.0
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=15.2.0'
- url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran5-15.2.0-h68bc16d_18.conda
- hash:
- md5: 646855f357199a12f02a87382d429b75
- sha256: 539b57cf50ec85509a94ba9949b7e30717839e4d694bc94f30d41c9d34de2d12
- category: main
- optional: false
-- name: libgomp
- version: 15.2.0
- manager: conda
- platform: win-64
- dependencies:
- libwinpthread: '>=12.0.0.r4.gg4f2fc60ca'
- url: https://repo.prefix.dev/conda-forge/win-64/libgomp-15.2.0-h8ee18e1_18.conda
- hash:
- md5: 939fb173e2a4d4e980ef689e99b35223
- sha256: 94981bc2e42374c737750895c6fdcfc43b7126c4fc788cad0ecc7281745931da
- category: main
- optional: false
-- name: libhwloc
- version: 2.12.2
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- libstdcxx: '>=14'
- libxml2: ''
- libxml2-16: '>=2.14.6'
- url: https://repo.prefix.dev/conda-forge/linux-64/libhwloc-2.12.2-default_hafda6a7_1000.conda
- hash:
- md5: 0ed3aa3e3e6bc85050d38881673a692f
- sha256: 2cf160794dda62cf93539adf16d26cfd31092829f2a2757dbdd562984c1b110a
- category: main
- optional: false
-- name: libhwloc
- version: 2.12.2
- manager: conda
- platform: win-64
- dependencies:
- libwinpthread: '>=12.0.0.r4.gg4f2fc60ca'
- libxml2: ''
- libxml2-16: '>=2.14.6'
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/libhwloc-2.12.2-default_h4379cf1_1000.conda
- hash:
- md5: 3b576f6860f838f950c570f4433b086e
- sha256: 8cdf11333a81085468d9aa536ebb155abd74adc293576f6013fc0c85a7a90da3
- category: main
- optional: false
-- name: libiconv
- version: '1.18'
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- url: https://repo.prefix.dev/conda-forge/linux-64/libiconv-1.18-h3b78370_2.conda
- hash:
- md5: 915f5995e94f60e9a4826e0b0920ee88
- sha256: c467851a7312765447155e071752d7bf9bf44d610a5687e32706f480aad2833f
- 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: liblapack
- version: 3.11.0
- manager: conda
- platform: linux-64
- dependencies:
- libblas: 3.11.0
- url: https://repo.prefix.dev/conda-forge/linux-64/liblapack-3.11.0-5_h5e43f62_mkl.conda
- hash:
- md5: 88155c848e1278b0990692e716c9eab4
- sha256: b411a9dccb21cd6231f8f66b63916a6520a7b23363e6f9d1d111e8660f2798b0
- category: main
- optional: false
-- name: liblapack
- version: 3.11.0
- manager: conda
- platform: win-64
- dependencies:
- libblas: 3.11.0
- url: https://repo.prefix.dev/conda-forge/win-64/liblapack-3.11.0-5_hf9ab0e9_mkl.conda
- hash:
- md5: e62c42a4196dee97d20400612afcb2b1
- sha256: a2d33f5cc2b8a9042f2af6981c6733ab1a661463823eaa56595a9c58c0ab77e1
- category: main
- optional: false
-- name: liblzma
- version: 5.8.2
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- url: https://repo.prefix.dev/conda-forge/linux-64/liblzma-5.8.2-hb03c661_0.conda
- hash:
- md5: c7c83eecbb72d88b940c249af56c8b17
- sha256: 755c55ebab181d678c12e49cced893598f2bab22d582fbbf4d8b83c18be207eb
- category: main
- optional: false
-- name: liblzma
- version: 5.8.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/liblzma-5.8.2-hfd05255_0.conda
- hash:
- md5: ba0bfd4c3cf73f299ffe46ff0eaeb8e3
- sha256: f25bf293f550c8ed2e0c7145eb404324611cfccff37660869d97abf526eb957c
- category: main
- optional: false
-- name: libmpdec
- version: 4.0.0
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- 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: e4a9fc2bba3b022dad998c78856afe47
- sha256: 40dcd0b9522a6e0af72a9db0ced619176e7cfdb114855c7a64f278e73f8a7514
- 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: libpng
- version: 1.6.55
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- libzlib: '>=1.3.1,<2.0a0'
- url: https://repo.prefix.dev/conda-forge/linux-64/libpng-1.6.55-h421ea60_0.conda
- hash:
- md5: 5f13ffc7d30ffec87864e678df9957b4
- sha256: 36ade759122cdf0f16e2a2562a19746d96cf9c863ffaa812f2f5071ebbe9c03c
- category: main
- optional: false
-- name: libpng
- version: 1.6.55
- 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.55-h7351971_0.conda
- hash:
- md5: 43f47a9151b9b8fc100aeefcf350d1a0
- sha256: db23f281fa80597a0dc0445b18318346862602d7081ed76244df8cc4418d6d68
- category: main
- optional: false
-- name: libsqlite
- version: 3.51.2
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- icu: '>=78.2,<79.0a0'
- libgcc: '>=14'
- libzlib: '>=1.3.1,<2.0a0'
- url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.51.2-hf4e2dac_0.conda
- hash:
- md5: da5be73701eecd0e8454423fd6ffcf30
- sha256: 04596fcee262a870e4b7c9807224680ff48d4d0cc0dac076a602503d3dc6d217
- category: main
- optional: false
-- name: libsqlite
- version: 3.51.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.2-hf5d6505_0.conda
- hash:
- md5: 903979414b47d777d548e5f0165e6cd8
- sha256: 756478128e3e104bd7e7c3ce6c1b0efad7e08c7320c69fdc726e039323c63fbb
- category: main
- optional: false
-- name: libssh2
- version: 1.11.1
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=13'
- libzlib: '>=1.3.1,<2.0a0'
- openssl: '>=3.5.0,<4.0a0'
- url: https://repo.prefix.dev/conda-forge/linux-64/libssh2-1.11.1-hcf80075_0.conda
- hash:
- md5: eecce068c7e4eddeb169591baac20ac4
- sha256: fa39bfd69228a13e553bd24601332b7cfeb30ca11a3ca50bb028108fe90a7661
- category: main
- optional: false
-- name: libssh2
- version: 1.11.1
- manager: conda
- platform: win-64
- dependencies:
- libzlib: '>=1.3.1,<2.0a0'
- openssl: '>=3.5.0,<4.0a0'
- ucrt: '>=10.0.20348.0'
- vc: '>=14.2,<15'
- vc14_runtime: '>=14.29.30139'
- url: https://repo.prefix.dev/conda-forge/win-64/libssh2-1.11.1-h9aa295b_0.conda
- hash:
- md5: 9dce2f112bfd3400f4f432b3d0ac07b2
- sha256: cbdf93898f2e27cefca5f3fe46519335d1fab25c4ea2a11b11502ff63e602c09
- category: main
- optional: false
-- name: libstdcxx
- version: 15.2.0
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: 15.2.0
- url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-15.2.0-h934c35e_18.conda
- hash:
- md5: 1b08cd684f34175e4514474793d44bcb
- sha256: 78668020064fdaa27e9ab65cd2997e2c837b564ab26ce3bf0e58a2ce1a525c6e
- category: main
- optional: false
-- name: libstdcxx-ng
- version: 15.2.0
- manager: conda
- platform: linux-64
- dependencies:
- libstdcxx: 15.2.0
- url: https://repo.prefix.dev/conda-forge/linux-64/libstdcxx-ng-15.2.0-hdf11a46_18.conda
- hash:
- md5: 6235adb93d064ecdf3d44faee6f468de
- sha256: 3c902ffd673cb3c6ddde624cdb80f870b6c835f8bf28384b0016e7d444dd0145
- 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.25,<1.26.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-h9d88235_1.conda
- hash:
- md5: cd5a90476766d53e901500df9215e927
- sha256: e5f8c38625aa6d567809733ae04bb71c161a42e44a9fa8227abe61fa5c60ebe0
- category: main
- optional: false
-- name: libtiff
- version: 4.7.1
- manager: conda
- platform: win-64
- dependencies:
- lerc: '>=4.0.0,<5.0a0'
- libdeflate: '>=1.25,<1.26.0a0'
- libjpeg-turbo: '>=3.1.0,<4.0a0'
- liblzma: '>=5.8.1,<6.0a0'
- libzlib: '>=1.3.1,<2.0a0'
- 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-h8f73337_1.conda
- hash:
- md5: 549845d5133100142452812feb9ba2e8
- sha256: f1b8cccaaeea38a28b9cd496694b2e3d372bb5be0e9377c9e3d14b330d1cba8a
- category: main
- optional: false
-- name: libuuid
- version: 2.41.3
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- url: https://repo.prefix.dev/conda-forge/linux-64/libuuid-2.41.3-h5347b49_0.conda
- hash:
- md5: db409b7c1720428638e7c0d509d3e1b5
- sha256: 1a7539cfa7df00714e8943e18de0b06cceef6778e420a5ee3a2a145773758aee
- category: main
- optional: false
-- name: libwebp-base
- version: 1.6.0
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- url: https://repo.prefix.dev/conda-forge/linux-64/libwebp-base-1.6.0-hd42ef1d_0.conda
- hash:
- md5: aea31d2e5b1091feca96fcfe945c3cf9
- sha256: 3aed21ab28eddffdaf7f804f49be7a7d701e8f0e46c856d801270b470820a37b
- category: main
- optional: false
-- name: libwebp-base
- version: 1.6.0
- manager: conda
- platform: win-64
- dependencies:
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/libwebp-base-1.6.0-h4d5522a_0.conda
- hash:
- md5: f9bbae5e2537e3b06e0f7310ba76c893
- sha256: 7b6316abfea1007e100922760e9b8c820d6fc19df3f42fb5aca684cfacb31843
- category: main
- optional: false
-- name: libwinpthread
- version: 12.0.0.r4.gg4f2fc60ca
- manager: conda
- platform: win-64
- dependencies:
- ucrt: ''
- url: https://repo.prefix.dev/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h57928b3_10.conda
- hash:
- md5: 8a86073cf3b343b87d03f41790d8b4e5
- sha256: 0fccf2d17026255b6e10ace1f191d0a2a18f2d65088fd02430be17c701f8ffe0
- category: main
- optional: false
-- name: libxcb
- version: 1.17.0
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=13'
- pthread-stubs: ''
- xorg-libxau: '>=1.0.11,<2.0a0'
- xorg-libxdmcp: ''
- url: https://repo.prefix.dev/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda
- hash:
- md5: 92ed62436b625154323d40d5f2f11dd7
- sha256: 666c0c431b23c6cec6e492840b176dde533d48b7e6fb8883f5071223433776aa
- category: main
- optional: false
-- name: libxcb
- version: 1.17.0
- manager: conda
- platform: win-64
- dependencies:
- libgcc: '>=13'
- libwinpthread: '>=12.0.0.r4.gg4f2fc60ca'
- pthread-stubs: ''
- ucrt: '>=10.0.20348.0'
- xorg-libxau: '>=1.0.11,<2.0a0'
- xorg-libxdmcp: ''
- url: https://repo.prefix.dev/conda-forge/win-64/libxcb-1.17.0-h0e4246c_0.conda
- hash:
- md5: a69bbf778a462da324489976c84cfc8c
- sha256: 08dec73df0e161c96765468847298a420933a36bc4f09b50e062df8793290737
- category: main
- optional: false
-- name: libxml2
- version: 2.15.1
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- icu: '>=78.1,<79.0a0'
- libgcc: '>=14'
- libiconv: '>=1.18,<2.0a0'
- liblzma: '>=5.8.1,<6.0a0'
- libxml2-16: 2.15.1
- libzlib: '>=1.3.1,<2.0a0'
- url: https://repo.prefix.dev/conda-forge/linux-64/libxml2-2.15.1-he237659_1.conda
- hash:
- md5: 417955234eccd8f252b86a265ccdab7f
- sha256: 047be059033c394bd32ae5de66ce389824352120b3a7c0eff980195f7ed80357
- category: main
- optional: false
-- name: libxml2
- version: 2.15.1
- manager: conda
- platform: win-64
- dependencies:
- icu: '>=78.1,<79.0a0'
- libiconv: '>=1.18,<2.0a0'
- liblzma: '>=5.8.1,<6.0a0'
- libxml2-16: 2.15.1
- libzlib: '>=1.3.1,<2.0a0'
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/libxml2-2.15.1-h779ef1b_1.conda
- hash:
- md5: 68dc154b8d415176c07b6995bd3a65d9
- sha256: 8b47d5fb00a6ccc0f495d16787ab5f37a434d51965584d6000966252efecf56d
- category: main
- optional: false
-- name: libxml2-16
- version: 2.15.1
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- icu: '>=78.1,<79.0a0'
- libgcc: '>=14'
- libiconv: '>=1.18,<2.0a0'
- liblzma: '>=5.8.1,<6.0a0'
- libzlib: '>=1.3.1,<2.0a0'
- url: https://repo.prefix.dev/conda-forge/linux-64/libxml2-16-2.15.1-hca6bf5a_1.conda
- hash:
- md5: 3fdd8d99683da9fe279c2f4cecd1e048
- sha256: 8331284bf9ae641b70cdc0e5866502dd80055fc3b9350979c74bb1d192e8e09e
- category: main
- optional: false
-- name: libxml2-16
- version: 2.15.1
- manager: conda
- platform: win-64
- dependencies:
- icu: '>=78.1,<79.0a0'
- libiconv: '>=1.18,<2.0a0'
- liblzma: '>=5.8.1,<6.0a0'
- libzlib: '>=1.3.1,<2.0a0'
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/libxml2-16-2.15.1-h3cfd58e_1.conda
- hash:
- md5: 07d73826fde28e7dbaec52a3297d7d26
- sha256: a857e941156b7f462063e34e086d212c6ccbc1521ebdf75b9ed66bd90add57dc
- category: main
- optional: false
-- name: libzlib
- version: 1.3.1
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=13'
- url: https://repo.prefix.dev/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda
- hash:
- md5: edb0dca6bc32e4f4789199455a1dbeb8
- sha256: d4bfe88d7cb447768e31650f06257995601f89076080e76df55e3112d4e47dc4
- category: main
- optional: false
-- name: libzlib
- version: 1.3.1
- manager: conda
- platform: win-64
- dependencies:
- ucrt: '>=10.0.20348.0'
- vc: '>=14.2,<15'
- vc14_runtime: '>=14.29.30139'
- url: https://repo.prefix.dev/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda
- hash:
- md5: 41fbfac52c601159df6c01f875de31b9
- sha256: ba945c6493449bed0e6e29883c4943817f7c79cbff52b83360f7b341277c6402
- category: main
- optional: false
-- name: llvm-openmp
- version: 21.1.8
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-21.1.8-h4922eb0_0.conda
- hash:
- md5: f8640b709b37dc7758ddce45ea18d000
- sha256: a5a7ad16eecbe35cac63e529ea9c261bef4ccdd68cb1db247409f04529423989
- category: main
- optional: false
-- name: llvm-openmp
- version: 21.1.8
- manager: conda
- platform: win-64
- dependencies:
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-21.1.8-h4fa8253_0.conda
- hash:
- md5: 0d8b425ac862bcf17e4b28802c9351cb
- sha256: 145c4370abe870f10987efa9fc15a8383f1dab09abbc9ad4ff15a55d45658f7b
- category: main
- optional: false
-- name: markupsafe
- version: 3.0.3
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/markupsafe-3.0.3-pyh7db6752_0.conda
- hash:
- md5: fab1be106a50e20f10fe5228fd1d1651
- sha256: e0cbfea51a19b3055ca19428bd9233a25adca956c208abb9d00b21e7259c7e03
- category: dev
- optional: true
-- name: markupsafe
- version: 3.0.3
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/markupsafe-3.0.3-pyh7db6752_0.conda
- hash:
- md5: fab1be106a50e20f10fe5228fd1d1651
- sha256: e0cbfea51a19b3055ca19428bd9233a25adca956c208abb9d00b21e7259c7e03
- category: dev
- optional: true
-- name: matplotlib-base
- version: 3.10.8
- 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.1'
- libfreetype6: '>=2.14.1'
- libgcc: '>=14'
- libstdcxx: '>=14'
- numpy: '>=1.23'
- packaging: '>=20.0'
- pillow: '>=8'
- pyparsing: '>=2.3.1'
- python: '>=3.14,<3.15.0a0'
- python-dateutil: '>=2.7'
- python_abi: 3.14.*
- 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.8-py314h1194b4b_0.conda
- hash:
- md5: b8683e6068099b69c10dbfcf7204203f
- sha256: ee773261fbd6c76fc8174b0e4e1ce272b0bbaa56610f130e9d3d1f575106f04f
- category: main
- optional: false
-- name: matplotlib-base
- version: 3.10.8
- 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.1'
- libfreetype6: '>=2.14.1'
- numpy: '>=1.23'
- packaging: '>=20.0'
- pillow: '>=8'
- pyparsing: '>=2.3.1'
- python: '>=3.14,<3.15.0a0'
- python-dateutil: '>=2.7'
- python_abi: 3.14.*
- 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.8-py314hfa45d96_0.conda
- hash:
- md5: 9d491a60700e0e90e92607fcc4e2566c
- sha256: 82a50284275e8a1818cd3323846f3032dc89bd23a3f80dcf44e34a62b016256b
- category: main
- optional: false
-- name: mccabe
- version: 0.7.0
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.9'
- url: https://repo.prefix.dev/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda
- hash:
- md5: 827064ddfe0de2917fb29f1da4f8f533
- sha256: 9b0037171dad0100f0296699a11ae7d355237b55f42f9094aebc0f41512d96a1
- category: dev
- optional: true
-- name: mccabe
- version: 0.7.0
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.9'
- url: https://repo.prefix.dev/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda
- hash:
- md5: 827064ddfe0de2917fb29f1da4f8f533
- sha256: 9b0037171dad0100f0296699a11ae7d355237b55f42f9094aebc0f41512d96a1
- category: dev
- optional: true
-- name: mkl
- version: 2025.3.0
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- _openmp_mutex: '*'
- libgcc: '>=14'
- libstdcxx: '>=14'
- llvm-openmp: '>=21.1.8'
- tbb: '>=2022.3.0'
- url: https://repo.prefix.dev/conda-forge/linux-64/mkl-2025.3.0-h0e700b2_463.conda
- hash:
- md5: f121ddfc96e6a93a26d85906adf06208
- sha256: 659d79976f06d2b796a0836414573a737a0856b05facfa77e5cc114081a8b3d4
- category: main
- optional: false
-- name: mkl
- version: 2025.3.0
- manager: conda
- platform: win-64
- dependencies:
- llvm-openmp: '>=21.1.8'
- tbb: '>=2022.3.0'
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/mkl-2025.3.0-hac47afa_455.conda
- hash:
- md5: fd05d1e894497b012d05a804232254ed
- sha256: b2b4c84b95210760e4d12319416c60ab66e03674ccdcbd14aeb59f82ebb1318d
- category: main
- optional: false
-- name: munkres
- version: 1.1.4
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.9'
- url: https://repo.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyhd8ed1ab_1.conda
- hash:
- md5: 37293a85a0f4f77bbd9cf7aaefc62609
- sha256: d09c47c2cf456de5c09fa66d2c3c5035aa1fa228a1983a433c47b876aa16ce90
- category: main
- optional: false
-- name: munkres
- version: 1.1.4
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.9'
- url: https://repo.prefix.dev/conda-forge/noarch/munkres-1.1.4-pyhd8ed1ab_1.conda
- hash:
- md5: 37293a85a0f4f77bbd9cf7aaefc62609
- sha256: d09c47c2cf456de5c09fa66d2c3c5035aa1fa228a1983a433c47b876aa16ce90
- category: main
- optional: false
-- name: 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: numpy
- version: 2.4.2
- 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: '>=14'
- liblapack: '>=3.9.0,<4.0a0'
- libstdcxx: '>=14'
- python: ''
- python_abi: 3.14.*
- url: https://repo.prefix.dev/conda-forge/linux-64/numpy-2.4.2-py314h2b28147_1.conda
- hash:
- md5: 4ea6b620fdf24a1a0bc4f1c7134dfafb
- sha256: 1d8377c8001c15ed12c2713b723213474b435706ab9d34ede69795d64af9e94d
- category: main
- optional: false
-- name: numpy
- version: 2.4.2
- 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: ''
- python_abi: 3.14.*
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/numpy-2.4.2-py314h06c3c77_1.conda
- hash:
- md5: 2fccd2c4e9feb4e4c2a90043015525d6
- sha256: 34fc25b81cfa987e1825586ddb1a4ac76a246fdef343c9171109017674ad6503
- category: main
- optional: false
-- name: openjpeg
- version: 2.5.4
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- libpng: '>=1.6.50,<1.7.0a0'
- libstdcxx: '>=14'
- libtiff: '>=4.7.1,<4.8.0a0'
- libzlib: '>=1.3.1,<2.0a0'
- url: https://repo.prefix.dev/conda-forge/linux-64/openjpeg-2.5.4-h55fea9a_0.conda
- hash:
- md5: 11b3379b191f63139e29c0d19dee24cd
- sha256: 3900f9f2dbbf4129cf3ad6acf4e4b6f7101390b53843591c53b00f034343bc4d
- category: main
- optional: false
-- name: openjpeg
- version: 2.5.4
- manager: conda
- platform: win-64
- dependencies:
- libpng: '>=1.6.50,<1.7.0a0'
- libtiff: '>=4.7.1,<4.8.0a0'
- libzlib: '>=1.3.1,<2.0a0'
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/openjpeg-2.5.4-h24db6dd_0.conda
- hash:
- md5: 5af852046226bb3cb15c7f61c2ac020a
- sha256: 226c270a7e3644448954c47959c00a9bf7845f6d600c2a643db187118d028eee
- category: main
- optional: false
-- name: openssl
- version: 3.6.1
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- ca-certificates: ''
- libgcc: '>=14'
- url: https://repo.prefix.dev/conda-forge/linux-64/openssl-3.6.1-h35e630c_1.conda
- hash:
- md5: f61eb8cd60ff9057122a3d338b99c00f
- sha256: 44c877f8af015332a5d12f5ff0fb20ca32f896526a7d0cdb30c769df1144fb5c
- category: main
- optional: false
-- name: openssl
- version: 3.6.1
- manager: conda
- platform: win-64
- dependencies:
- ca-certificates: ''
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/openssl-3.6.1-hf411b9b_1.conda
- hash:
- md5: eb585509b815415bc964b2c7e11c7eb3
- sha256: 53a5ad2e5553b8157a91bb8aa375f78c5958f77cb80e9d2ce59471ea8e5c0bd6
- category: main
- optional: false
-- name: packaging
- version: '26.0'
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.8'
- url: https://repo.prefix.dev/conda-forge/noarch/packaging-26.0-pyhcf101f3_0.conda
- hash:
- md5: b76541e68fea4d511b1ac46a28dcd2c6
- sha256: c1fc0f953048f743385d31c468b4a678b3ad20caffdeaa94bed85ba63049fd58
- category: main
- optional: false
-- name: packaging
- version: '26.0'
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.8'
- url: https://repo.prefix.dev/conda-forge/noarch/packaging-26.0-pyhcf101f3_0.conda
- hash:
- md5: b76541e68fea4d511b1ac46a28dcd2c6
- sha256: c1fc0f953048f743385d31c468b4a678b3ad20caffdeaa94bed85ba63049fd58
- category: main
- optional: false
-- name: pillow
- version: 12.1.1
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- lcms2: '>=2.18,<3.0a0'
- libfreetype: '>=2.14.1'
- libfreetype6: '>=2.14.1'
- libgcc: '>=14'
- libjpeg-turbo: '>=3.1.2,<4.0a0'
- libtiff: '>=4.7.1,<4.8.0a0'
- libwebp-base: '>=1.6.0,<2.0a0'
- libxcb: '>=1.17.0,<2.0a0'
- openjpeg: '>=2.5.4,<3.0a0'
- python: ''
- python_abi: 3.14.*
- tk: '>=8.6.13,<8.7.0a0'
- zlib-ng: '>=2.3.3,<2.4.0a0'
- url: https://repo.prefix.dev/conda-forge/linux-64/pillow-12.1.1-py314h8ec4b1a_0.conda
- hash:
- md5: 79678378ae235e24b3aa83cee1b38207
- sha256: 9e6ec8f3213e8b7d64b0ad45f84c51a2c9eba4398efda31e196c9a56186133ee
- category: main
- optional: false
-- name: pillow
- version: 12.1.1
- manager: conda
- platform: win-64
- dependencies:
- lcms2: '>=2.18,<3.0a0'
- libfreetype: '>=2.14.1'
- libfreetype6: '>=2.14.1'
- libjpeg-turbo: '>=3.1.2,<4.0a0'
- libtiff: '>=4.7.1,<4.8.0a0'
- libwebp-base: '>=1.6.0,<2.0a0'
- libxcb: '>=1.17.0,<2.0a0'
- openjpeg: '>=2.5.4,<3.0a0'
- python: ''
- python_abi: 3.14.*
- tk: '>=8.6.13,<8.7.0a0'
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- zlib-ng: '>=2.3.3,<2.4.0a0'
- url: https://repo.prefix.dev/conda-forge/win-64/pillow-12.1.1-py314h61b30b5_0.conda
- hash:
- md5: 819c3d15988cea0f2c599b405023f55d
- sha256: f4387e480970e0f429a0505d668bc677e84ef118d3db2cba56b547d1bd2c2dbf
- category: main
- optional: false
-- name: pip
- version: 26.0.1
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.13.0a0'
- url: https://repo.prefix.dev/conda-forge/noarch/pip-26.0.1-pyh145f28c_0.conda
- hash:
- md5: 09a970fbf75e8ed1aa633827ded6aa4f
- sha256: 5f66ea31d62188c266c5a8752119b0cc90a5bf05963f665cf48a33e0ec58d39c
- category: main
- optional: false
-- name: pip
- version: 26.0.1
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.13.0a0'
- url: https://repo.prefix.dev/conda-forge/noarch/pip-26.0.1-pyh145f28c_0.conda
- hash:
- md5: 09a970fbf75e8ed1aa633827ded6aa4f
- sha256: 5f66ea31d62188c266c5a8752119b0cc90a5bf05963f665cf48a33e0ec58d39c
- category: main
- optional: false
-- name: platformdirs
- version: 4.9.2
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.9.2-pyhcf101f3_0.conda
- hash:
- md5: 4fefefb892ce9cc1539405bec2f1a6cd
- sha256: 7f263219cecf0ba6d74c751efa60c4676ce823157ca90aa43ebba5ac615ca0fa
- category: dev
- optional: true
-- name: platformdirs
- version: 4.9.2
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.9.2-pyhcf101f3_0.conda
- hash:
- md5: 4fefefb892ce9cc1539405bec2f1a6cd
- sha256: 7f263219cecf0ba6d74c751efa60c4676ce823157ca90aa43ebba5ac615ca0fa
- 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-pyhf9edf01_1.conda
- hash:
- md5: d7585b6550ad04c8c5e21097ada2888e
- sha256: e14aafa63efa0528ca99ba568eaf506eb55a0371d12e6250aaaa61718d2eb62e
- category: dev
- optional: true
-- name: pluggy
- version: 1.6.0
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.9'
- url: https://repo.prefix.dev/conda-forge/noarch/pluggy-1.6.0-pyhf9edf01_1.conda
- hash:
- md5: d7585b6550ad04c8c5e21097ada2888e
- sha256: e14aafa63efa0528ca99ba568eaf506eb55a0371d12e6250aaaa61718d2eb62e
- category: dev
- optional: true
-- name: 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: pydantic
- version: 2.12.5
- 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.5-pyhcf101f3_1.conda
- hash:
- md5: c3946ed24acdb28db1b5d63321dbca7d
- sha256: 868569d9505b7fe246c880c11e2c44924d7613a8cdcc1f6ef85d5375e892f13d
- category: main
- optional: false
-- name: pydantic
- version: 2.12.5
- manager: conda
- platform: win-64
- dependencies:
- annotated-types: '>=0.6.0'
- pydantic-core: 2.41.5
- python: '>=3.10'
- typing-extensions: '>=4.6.1'
- typing-inspection: '>=0.4.2'
- typing_extensions: '>=4.14.1'
- url: https://repo.prefix.dev/conda-forge/noarch/pydantic-2.12.5-pyhcf101f3_1.conda
- hash:
- md5: c3946ed24acdb28db1b5d63321dbca7d
- sha256: 868569d9505b7fe246c880c11e2c44924d7613a8cdcc1f6ef85d5375e892f13d
- category: main
- optional: false
-- name: pydantic-core
- version: 2.41.5
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- python: ''
- python_abi: 3.14.*
- typing-extensions: '>=4.6.0,!=4.7.0'
- url: https://repo.prefix.dev/conda-forge/linux-64/pydantic-core-2.41.5-py314h2e6c369_1.conda
- hash:
- md5: 432b0716a1dfac69b86aa38fdd59b7e6
- sha256: 7e0ae379796e28a429f8e48f2fe22a0f232979d65ec455e91f8dac689247d39f
- category: main
- optional: false
-- name: pydantic-core
- version: 2.41.5
- manager: conda
- platform: win-64
- dependencies:
- python: ''
- python_abi: 3.14.*
- 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-py314h9f07db2_1.conda
- hash:
- md5: c1f37669ed289c378f3193b35c9df2a7
- sha256: 51773479d973c0b0b96cf581cb8444061eaac9b6c28f1cc6d33afc39201d5f13
- category: main
- optional: false
-- name: pygments
- version: 2.19.2
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.9'
- url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda
- hash:
- md5: 6b6ece66ebcae2d5f326c77ef2c5a066
- sha256: 5577623b9f6685ece2697c6eb7511b4c9ac5fb607c9babc2646c811b428fd46a
- category: dev
- optional: true
-- name: pygments
- version: 2.19.2
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.9'
- url: https://repo.prefix.dev/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda
- hash:
- md5: 6b6ece66ebcae2d5f326c77ef2c5a066
- sha256: 5577623b9f6685ece2697c6eb7511b4c9ac5fb607c9babc2646c811b428fd46a
- category: dev
- optional: true
-- name: pylint
- version: 4.0.4
- manager: conda
- platform: linux-64
- dependencies:
- astroid: '>=4.0.2,<=4.1.0.dev0'
- colorama: '>=0.4.5'
- dill: '>=0.3.7'
- isort: '>=5,<8,!=5.13'
- mccabe: '>=0.6,<0.8'
- platformdirs: '>=2.2'
- python: '>=3.10'
- tomli: '>=1.1.0'
- tomlkit: '>=0.10.1'
- url: https://repo.prefix.dev/conda-forge/noarch/pylint-4.0.4-pyhcf101f3_0.conda
- hash:
- md5: 3a830511a81b99b67a1206a9d29b44b3
- sha256: ad0bb78785ab385d0afcca4a55e0226d8e6710ebad6450caa552f5fe61c2f6a0
- category: dev
- optional: true
-- name: pylint
- version: 4.0.4
- manager: conda
- platform: win-64
- dependencies:
- astroid: '>=4.0.2,<=4.1.0.dev0'
- colorama: '>=0.4.5'
- dill: '>=0.3.7'
- isort: '>=5,<8,!=5.13'
- mccabe: '>=0.6,<0.8'
- platformdirs: '>=2.2'
- python: '>=3.10'
- tomli: '>=1.1.0'
- tomlkit: '>=0.10.1'
- url: https://repo.prefix.dev/conda-forge/noarch/pylint-4.0.4-pyhcf101f3_0.conda
- hash:
- md5: 3a830511a81b99b67a1206a9d29b44b3
- sha256: ad0bb78785ab385d0afcca4a55e0226d8e6710ebad6450caa552f5fe61c2f6a0
- category: dev
- optional: true
-- name: pyparsing
- version: 3.3.2
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.10'
- 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: '>=3.10'
- 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
- 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.2
- manager: conda
- platform: linux-64
- dependencies:
- colorama: '>=0.4'
- exceptiongroup: '>=1'
- iniconfig: '>=1.0.1'
- packaging: '>=22'
- pluggy: '>=1.5,<2'
- pygments: '>=2.7.2'
- python: '>=3.10'
- tomli: '>=1'
- url: https://repo.prefix.dev/conda-forge/noarch/pytest-9.0.2-pyhcf101f3_0.conda
- hash:
- md5: 2b694bad8a50dc2f712f5368de866480
- sha256: 9e749fb465a8bedf0184d8b8996992a38de351f7c64e967031944978de03a520
- category: dev
- optional: true
-- name: pytest
- version: 9.0.2
- manager: conda
- platform: win-64
- dependencies:
- colorama: '>=0.4'
- exceptiongroup: '>=1'
- iniconfig: '>=1.0.1'
- packaging: '>=22'
- pluggy: '>=1.5,<2'
- pygments: '>=2.7.2'
- python: '>=3.10'
- tomli: '>=1'
- url: https://repo.prefix.dev/conda-forge/noarch/pytest-9.0.2-pyhcf101f3_0.conda
- hash:
- md5: 2b694bad8a50dc2f712f5368de866480
- sha256: 9e749fb465a8bedf0184d8b8996992a38de351f7c64e967031944978de03a520
- category: dev
- optional: true
-- name: pytest-cov
- version: 7.0.0
- manager: conda
- platform: linux-64
- dependencies:
- coverage: '>=7.10.6'
- pluggy: '>=1.2'
- pytest: '>=7'
- python: '>=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: 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.14.3
- 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.3,<3.0a0'
- libffi: '>=3.5.2,<3.6.0a0'
- libgcc: '>=14'
- liblzma: '>=5.8.2,<6.0a0'
- libmpdec: '>=4.0.0,<5.0a0'
- libsqlite: '>=3.51.2,<4.0a0'
- libuuid: '>=2.41.3,<3.0a0'
- libzlib: '>=1.3.1,<2.0a0'
- ncurses: '>=6.5,<7.0a0'
- openssl: '>=3.5.5,<4.0a0'
- pip: ''
- python_abi: 3.14.*
- readline: '>=8.3,<9.0a0'
- tk: '>=8.6.13,<8.7.0a0'
- tzdata: ''
- zstd: '>=1.5.7,<1.6.0a0'
- url: https://repo.prefix.dev/conda-forge/linux-64/python-3.14.3-h32b2ec7_101_cp314.conda
- hash:
- md5: c014ad06e60441661737121d3eae8a60
- sha256: cb0628c5f1732f889f53a877484da98f5a0e0f47326622671396fb4f2b0cd6bd
- category: main
- optional: false
-- name: python
- version: 3.14.3
- manager: conda
- platform: win-64
- dependencies:
- bzip2: '>=1.0.8,<2.0a0'
- libexpat: '>=2.7.3,<3.0a0'
- libffi: '>=3.5.2,<3.6.0a0'
- liblzma: '>=5.8.2,<6.0a0'
- libmpdec: '>=4.0.0,<5.0a0'
- libsqlite: '>=3.51.2,<4.0a0'
- libzlib: '>=1.3.1,<2.0a0'
- openssl: '>=3.5.5,<4.0a0'
- pip: ''
- python_abi: 3.14.*
- tk: '>=8.6.13,<8.7.0a0'
- tzdata: ''
- 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/python-3.14.3-h4b44e0e_101_cp314.conda
- hash:
- md5: 7ec2be7eaf59f83f3e5617665f3fbb2e
- sha256: 3f99d83bfd95b9bdae64a42a1e4bf5131dc20b724be5ac8a9a7e1ac2c0f006d7
- category: main
- optional: false
-- name: python-dateutil
- version: 2.9.0.post0
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.9'
- six: '>=1.5'
- url: https://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda
- hash:
- md5: 5b8d21249ff20967101ffa321cab24e8
- sha256: d6a17ece93bbd5139e02d2bd7dbfa80bee1a4261dced63f65f679121686bf664
- category: main
- optional: false
-- name: python-dateutil
- version: 2.9.0.post0
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.9'
- six: '>=1.5'
- url: https://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda
- hash:
- md5: 5b8d21249ff20967101ffa321cab24e8
- sha256: d6a17ece93bbd5139e02d2bd7dbfa80bee1a4261dced63f65f679121686bf664
- category: main
- optional: false
-- name: python_abi
- version: '3.14'
- manager: conda
- platform: linux-64
- dependencies: {}
- url: https://repo.prefix.dev/conda-forge/noarch/python_abi-3.14-8_cp314.conda
- hash:
- md5: 0539938c55b6b1a59b560e843ad864a4
- sha256: ad6d2e9ac39751cc0529dd1566a26751a0bf2542adb0c232533d32e176e21db5
- category: main
- optional: false
-- name: python_abi
- version: '3.14'
- manager: conda
- platform: win-64
- dependencies: {}
- url: https://repo.prefix.dev/conda-forge/noarch/python_abi-3.14-8_cp314.conda
- hash:
- md5: 0539938c55b6b1a59b560e843ad864a4
- sha256: ad6d2e9ac39751cc0529dd1566a26751a0bf2542adb0c232533d32e176e21db5
- 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: pyyaml
- version: 6.0.3
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- python: '>=3.14,<3.15.0a0'
- python_abi: 3.14.*
- yaml: '>=0.2.5,<0.3.0a0'
- url: https://repo.prefix.dev/conda-forge/linux-64/pyyaml-6.0.3-py314h67df5f8_1.conda
- hash:
- md5: 2035f68f96be30dc60a5dfd7452c7941
- sha256: b318fb070c7a1f89980ef124b80a0b5ccf3928143708a85e0053cde0169c699d
- category: dev
- optional: true
-- name: pyyaml
- version: 6.0.3
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.14,<3.15.0a0'
- python_abi: 3.14.*
- 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-py314h2359020_1.conda
- hash:
- md5: 0cd9b88826d0f8db142071eb830bce56
- sha256: a2aff34027aa810ff36a190b75002d2ff6f9fbef71ec66e567616ac3a679d997
- 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: readline
- version: '8.3'
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- ncurses: '>=6.5,<7.0a0'
- url: https://repo.prefix.dev/conda-forge/linux-64/readline-8.3-h853b02a_0.conda
- hash:
- md5: d7d95fc8287ea7bf33e0e7116d2b95ec
- sha256: 12ffde5a6f958e285aa22c191ca01bbd3d6e710aa852e00618fa6ddc59149002
- category: main
- optional: false
-- name: requests
- version: 2.32.5
- manager: conda
- platform: linux-64
- dependencies:
- certifi: '>=2017.4.17'
- charset-normalizer: '>=2,<4'
- idna: '>=2.5,<4'
- python: '>=3.10'
- urllib3: '>=1.21.1,<3'
- url: https://repo.prefix.dev/conda-forge/noarch/requests-2.32.5-pyhcf101f3_1.conda
- hash:
- md5: c65df89a0b2e321045a9e01d1337b182
- sha256: 7813c38b79ae549504b2c57b3f33394cea4f2ad083f0994d2045c2e24cb538c5
- category: 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.10'
- urllib3: '>=1.21.1,<3'
- url: https://repo.prefix.dev/conda-forge/noarch/requests-2.32.5-pyhcf101f3_1.conda
- hash:
- md5: c65df89a0b2e321045a9e01d1337b182
- sha256: 7813c38b79ae549504b2c57b3f33394cea4f2ad083f0994d2045c2e24cb538c5
- category: 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: 0dc48b4b570931adc8641e55c6c17fe4
- sha256: 30f3c04fcfb64c44d821d392a4a0b8915650dbd900c8befc20ade8fde8ec6aa2
- category: dev
- optional: true
-- name: roman-numerals-py
- version: 4.1.0
- manager: conda
- platform: linux-64
- dependencies:
- 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: 28687768633154993d521aecfa4a56ac
- sha256: ce21b50a412b87b388db9e8dfbf8eb16fc436c23750b29bf612ee1a74dd0beb2
- category: dev
- optional: true
-- name: roman-numerals-py
- version: 4.1.0
- manager: conda
- platform: win-64
- dependencies:
- 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: 28687768633154993d521aecfa4a56ac
- sha256: ce21b50a412b87b388db9e8dfbf8eb16fc436c23750b29bf612ee1a74dd0beb2
- category: dev
- optional: true
-- name: scipy
- version: 1.17.0
- 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: '>=14'
- libgfortran: ''
- libgfortran5: '>=14.3.0'
- liblapack: '>=3.9.0,<4.0a0'
- libstdcxx: '>=14'
- numpy: <2.7
- python: '>=3.14,<3.15.0a0'
- python_abi: 3.14.*
- url: https://repo.prefix.dev/conda-forge/linux-64/scipy-1.17.0-py314hf07bd8e_1.conda
- hash:
- md5: c7df812186fb1290bc00d9b7b5a50b18
- sha256: a95de421c586de901402107fbeb7524efaee5bb55c1aba2e1334f8b8ebc89093
- category: main
- optional: false
-- name: scipy
- version: 1.17.0
- 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.7
- python: '>=3.14,<3.15.0a0'
- python_abi: 3.14.*
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/scipy-1.17.0-py314h221f224_1.conda
- hash:
- md5: 0f9edd5793da94f7ec58690abe25c8a2
- sha256: 3e206736e3afce07be3f2f714518c0eff211f49e603b6aadb468e9d96ef4c420
- category: main
- optional: false
-- name: six
- version: 1.17.0
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.9'
- url: https://repo.prefix.dev/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda
- hash:
- md5: 3339e3b65d58accf4ca4fb8748ab16b3
- sha256: 458227f759d5e3fcec5d9b7acce54e10c9e1f4f4b7ec978f3bfd54ce4ee9853d
- category: main
- optional: false
-- name: six
- version: 1.17.0
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.9'
- url: https://repo.prefix.dev/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda
- hash:
- md5: 3339e3b65d58accf4ca4fb8748ab16b3
- sha256: 458227f759d5e3fcec5d9b7acce54e10c9e1f4f4b7ec978f3bfd54ce4ee9853d
- category: main
- optional: false
-- name: 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.2.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.11'
- requests: '>=2.30.0'
- roman-numerals-py: '>=1.0.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'
- url: https://repo.prefix.dev/conda-forge/noarch/sphinx-8.2.3-pyhd8ed1ab_0.conda
- hash:
- md5: f7af826063ed569bb13f7207d6f949b0
- sha256: 995f58c662db0197d681fa345522fd9e7ac5f05330d3dff095ab2f102e260ab0
- category: dev
- optional: true
-- name: sphinx
- version: 8.2.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.11'
- requests: '>=2.30.0'
- roman-numerals-py: '>=1.0.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'
- url: https://repo.prefix.dev/conda-forge/noarch/sphinx-8.2.3-pyhd8ed1ab_0.conda
- hash:
- md5: f7af826063ed569bb13f7207d6f949b0
- sha256: 995f58c662db0197d681fa345522fd9e7ac5f05330d3dff095ab2f102e260ab0
- category: dev
- optional: true
-- name: sphinx-autodoc-typehints
- version: 3.5.2
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.11'
- sphinx: '>=8.2.3'
- url: https://repo.prefix.dev/conda-forge/noarch/sphinx-autodoc-typehints-3.5.2-pyhd8ed1ab_0.conda
- hash:
- md5: abe9fc17e8bf83725cde006800c926de
- sha256: 896309836e7b7682ac7ebf8783d7fde57869d28fa82e0a36413fff41f4049eac
- category: dev
- optional: true
-- name: sphinx-autodoc-typehints
- version: 3.5.2
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.11'
- sphinx: '>=8.2.3'
- url: https://repo.prefix.dev/conda-forge/noarch/sphinx-autodoc-typehints-3.5.2-pyhd8ed1ab_0.conda
- hash:
- md5: abe9fc17e8bf83725cde006800c926de
- sha256: 896309836e7b7682ac7ebf8783d7fde57869d28fa82e0a36413fff41f4049eac
- category: dev
- optional: true
-- name: sphinx-rtd-theme
- version: 3.1.0
- manager: conda
- platform: linux-64
- dependencies:
- 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: 3b1a32d3d5c2064822203f2a6f3f1173
- sha256: ae5e8e514f21e6f62b63c13f684939ba007168bfd7742e8cb573fce69fbf62da
- category: dev
- optional: true
-- name: sphinx-rtd-theme
- version: 3.1.0
- manager: conda
- platform: win-64
- dependencies:
- 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: 3b1a32d3d5c2064822203f2a6f3f1173
- sha256: ae5e8e514f21e6f62b63c13f684939ba007168bfd7742e8cb573fce69fbf62da
- category: dev
- optional: true
-- name: sphinx_rtd_theme
- version: 3.1.0
- 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.1.0-pyha770c72_0.conda
- hash:
- md5: cede6bc99a0253fa676f03cfdc666d57
- sha256: 1d57a0cd74ecc0e5dc006f6591145d1abb6658464919d4aeb163d3db714f80e6
- category: dev
- optional: true
-- name: sphinx_rtd_theme
- version: 3.1.0
- 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.1.0-pyha770c72_0.conda
- hash:
- md5: cede6bc99a0253fa676f03cfdc666d57
- sha256: 1d57a0cd74ecc0e5dc006f6591145d1abb6658464919d4aeb163d3db714f80e6
- 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: tbb
- version: 2022.3.0
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- libhwloc: '>=2.12.2,<2.12.3.0a0'
- libstdcxx: '>=14'
- url: https://repo.prefix.dev/conda-forge/linux-64/tbb-2022.3.0-hb700be7_2.conda
- hash:
- md5: 8f7278ca5f7456a974992a8b34284737
- sha256: 975710e4b7f1b13c3c30b7fbf21e22f50abe0463b6b47a231582fdedcc45c961
- category: main
- optional: false
-- name: tbb
- version: 2022.3.0
- manager: conda
- platform: win-64
- dependencies:
- libhwloc: '>=2.12.2,<2.12.3.0a0'
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/tbb-2022.3.0-h3155e25_2.conda
- hash:
- md5: 0f9817ffbe25f9e69ceba5ea70c52606
- sha256: abd9a489f059fba85c8ffa1abdaa4d515d6de6a3325238b8e81203b913cf65a9
- category: main
- optional: false
-- name: tk
- version: 8.6.13
- 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/tk-8.6.13-noxft_h366c992_103.conda
- hash:
- md5: cffd3bdd58090148f4cfcd831f4b26ab
- sha256: cafeec44494f842ffeca27e9c8b0c27ed714f93ac77ddadc6aaf726b5554ebac
- category: main
- optional: false
-- name: tk
- version: 8.6.13
- 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/tk-8.6.13-h6ed50ae_3.conda
- hash:
- md5: 0481bfd9814bf525bd4b3ee4b51494c4
- sha256: 0e79810fae28f3b69fe7391b0d43f5474d6bd91d451d5f2bde02f55ae481d5e3
- category: main
- optional: false
-- name: tomli
- version: 2.4.0
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.4.0-pyhcf101f3_0.conda
- hash:
- md5: 72e780e9aa2d0a3295f59b1874e3768b
- sha256: 62940c563de45790ba0f076b9f2085a842a65662268b02dd136a8e9b1eaf47a8
- category: dev
- optional: true
-- name: tomli
- version: 2.4.0
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.4.0-pyhcf101f3_0.conda
- hash:
- md5: 72e780e9aa2d0a3295f59b1874e3768b
- sha256: 62940c563de45790ba0f076b9f2085a842a65662268b02dd136a8e9b1eaf47a8
- category: dev
- optional: true
-- name: tomlkit
- version: 0.14.0
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.14.0-pyha770c72_0.conda
- hash:
- md5: 385dca77a8b0ec6fa9b92cb62d09b43b
- sha256: b35082091c8efd084e51bc3a4a2d3b07897eff232aaf58cbc0f959b6291a6a93
- category: dev
- optional: true
-- name: tomlkit
- version: 0.14.0
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.14.0-pyha770c72_0.conda
- hash:
- md5: 385dca77a8b0ec6fa9b92cb62d09b43b
- sha256: b35082091c8efd084e51bc3a4a2d3b07897eff232aaf58cbc0f959b6291a6a93
- category: dev
- optional: true
-- name: typing-extensions
- version: 4.15.0
- manager: conda
- platform: linux-64
- dependencies:
- typing_extensions: ==4.15.0
- url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda
- hash:
- md5: edd329d7d3a4ab45dcf905899a7a6115
- sha256: 7c2df5721c742c2a47b2c8f960e718c930031663ac1174da67c1ed5999f7938c
- category: main
- optional: false
-- name: typing-extensions
- version: 4.15.0
- manager: conda
- platform: win-64
- dependencies:
- typing_extensions: ==4.15.0
- url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda
- hash:
- md5: edd329d7d3a4ab45dcf905899a7a6115
- sha256: 7c2df5721c742c2a47b2c8f960e718c930031663ac1174da67c1ed5999f7938c
- category: main
- optional: false
-- name: typing-inspection
- version: 0.4.2
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.10'
- typing_extensions: '>=4.12.0'
- url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.2-pyhd8ed1ab_1.conda
- hash:
- md5: a0a4a3035667fc34f29bfbd5c190baa6
- sha256: 70db27de58a97aeb7ba7448366c9853f91b21137492e0b4430251a1870aa8ff4
- category: main
- optional: false
-- name: typing-inspection
- version: 0.4.2
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.10'
- typing_extensions: '>=4.12.0'
- url: https://repo.prefix.dev/conda-forge/noarch/typing-inspection-0.4.2-pyhd8ed1ab_1.conda
- hash:
- md5: a0a4a3035667fc34f29bfbd5c190baa6
- sha256: 70db27de58a97aeb7ba7448366c9853f91b21137492e0b4430251a1870aa8ff4
- category: main
- optional: false
-- name: typing_extensions
- version: 4.15.0
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=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: typing_extensions
- version: 4.15.0
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda
- hash:
- md5: 0caa1af407ecff61170c9437a808404d
- sha256: 032271135bca55aeb156cee361c81350c6f3fb203f57d024d7e5a1fc9ef18731
- category: main
- optional: false
-- name: tzdata
- version: 2025c
- manager: conda
- platform: linux-64
- dependencies: {}
- url: https://repo.prefix.dev/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.conda
- hash:
- md5: ad659d0a2b3e47e38d829aa8cad2d610
- sha256: 1d30098909076af33a35017eed6f2953af1c769e273a0626a04722ac4acaba3c
- category: main
- optional: false
-- name: tzdata
- version: 2025c
- manager: conda
- platform: win-64
- dependencies: {}
- url: https://repo.prefix.dev/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.conda
- hash:
- md5: ad659d0a2b3e47e38d829aa8cad2d610
- sha256: 1d30098909076af33a35017eed6f2953af1c769e273a0626a04722ac4acaba3c
- category: main
- optional: false
-- name: ucrt
- version: 10.0.26100.0
- manager: conda
- platform: win-64
- dependencies: {}
- url: https://repo.prefix.dev/conda-forge/win-64/ucrt-10.0.26100.0-h57928b3_0.conda
- hash:
- md5: 71b24316859acd00bdb8b38f5e2ce328
- sha256: 3005729dce6f3d3f5ec91dfc49fc75a0095f9cd23bab49efb899657297ac91a5
- category: main
- optional: false
-- name: unicodedata2
- version: 17.0.1
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- python: '>=3.14,<3.15.0a0'
- python_abi: 3.14.*
- url: https://repo.prefix.dev/conda-forge/linux-64/unicodedata2-17.0.1-py314h5bd0f2a_0.conda
- hash:
- md5: 494fdf358c152f9fdd0673c128c2f3dd
- sha256: ff1c1d7c23b91c9b0eb93a3e1380f4e2ac6c37ea2bba4f932a5484e9a55bba30
- category: main
- optional: false
-- name: unicodedata2
- version: 17.0.1
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.14,<3.15.0a0'
- python_abi: 3.14.*
- 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-py314h5a2d7ad_0.conda
- hash:
- md5: d6b580a13384df5155c6ca19ee66854e
- sha256: 9041e463044944460f73f9528f2ec491180f0ffe857e3555aa8160b81050b8d9
- category: main
- optional: false
-- name: urllib3
- version: 2.6.3
- manager: conda
- platform: linux-64
- dependencies:
- backports.zstd: '>=1.0.0'
- brotli-python: '>=1.2.0'
- h2: '>=4,<5'
- pysocks: '>=1.5.6,<2.0,!=1.5.7'
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/urllib3-2.6.3-pyhd8ed1ab_0.conda
- hash:
- md5: 9272daa869e03efe68833e3dc7a02130
- sha256: af641ca7ab0c64525a96fd9ad3081b0f5bcf5d1cbb091afb3f6ed5a9eee6111a
- category: dev
- optional: true
-- name: urllib3
- version: 2.6.3
- manager: conda
- platform: win-64
- dependencies:
- backports.zstd: '>=1.0.0'
- brotli-python: '>=1.2.0'
- h2: '>=4,<5'
- pysocks: '>=1.5.6,<2.0,!=1.5.7'
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/urllib3-2.6.3-pyhd8ed1ab_0.conda
- hash:
- md5: 9272daa869e03efe68833e3dc7a02130
- sha256: af641ca7ab0c64525a96fd9ad3081b0f5bcf5d1cbb091afb3f6ed5a9eee6111a
- category: dev
- optional: true
-- name: vc
- version: '14.3'
- manager: conda
- platform: win-64
- dependencies:
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/vc-14.3-h41ae7f8_34.conda
- hash:
- md5: 1e610f2416b6acdd231c5f573d754a0f
- sha256: 9dc40c2610a6e6727d635c62cced5ef30b7b30123f5ef67d6139e23d21744b3a
- category: main
- optional: false
-- name: vc14_runtime
- version: 14.44.35208
- manager: conda
- platform: win-64
- dependencies:
- ucrt: '>=10.0.20348.0'
- vcomp14: 14.44.35208
- url: https://repo.prefix.dev/conda-forge/win-64/vc14_runtime-14.44.35208-h818238b_34.conda
- hash:
- md5: 37eb311485d2d8b2c419449582046a42
- sha256: 02732f953292cce179de9b633e74928037fa3741eb5ef91c3f8bae4f761d32a5
- category: main
- optional: false
-- name: vcomp14
- version: 14.44.35208
- manager: conda
- platform: win-64
- dependencies:
- ucrt: '>=10.0.20348.0'
- url: https://repo.prefix.dev/conda-forge/win-64/vcomp14-14.44.35208-h818238b_34.conda
- hash:
- md5: 242d9f25d2ae60c76b38a5e42858e51d
- sha256: 878d5d10318b119bd98ed3ed874bd467acbe21996e1d81597a1dbf8030ea0ce6
- category: main
- optional: false
-- name: 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: '>=14'
- url: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxau-1.0.12-hb03c661_1.conda
- hash:
- md5: b2895afaf55bf96a8c8282a2e47a5de0
- sha256: 6bc6ab7a90a5d8ac94c7e300cc10beb0500eeba4b99822768ca2f2ef356f731b
- category: main
- optional: false
-- name: xorg-libxau
- version: 1.0.12
- manager: conda
- platform: win-64
- dependencies:
- libgcc: '>=14'
- libwinpthread: '>=12.0.0.r4.gg4f2fc60ca'
- ucrt: '>=10.0.20348.0'
- url: https://repo.prefix.dev/conda-forge/win-64/xorg-libxau-1.0.12-hba3369d_1.conda
- hash:
- md5: 8436cab9a76015dfe7208d3c9f97c156
- sha256: 156a583fa43609507146de1c4926172286d92458c307bb90871579601f6bc568
- category: main
- optional: false
-- name: xorg-libxdmcp
- version: 1.1.5
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- url: https://repo.prefix.dev/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb03c661_1.conda
- hash:
- md5: 1dafce8548e38671bea82e3f5c6ce22f
- sha256: 25d255fb2eef929d21ff660a0c687d38a6d2ccfbcbf0cc6aa738b12af6e9d142
- category: main
- optional: false
-- name: xorg-libxdmcp
- version: 1.1.5
- manager: conda
- platform: win-64
- dependencies:
- libgcc: '>=14'
- libwinpthread: '>=12.0.0.r4.gg4f2fc60ca'
- ucrt: '>=10.0.20348.0'
- url: https://repo.prefix.dev/conda-forge/win-64/xorg-libxdmcp-1.1.5-hba3369d_1.conda
- hash:
- md5: a7c03e38aa9c0e84d41881b9236eacfb
- sha256: 366b8ae202c3b48958f0b8784bbfdc37243d3ee1b1cd4b8e76c10abe41fa258b
- category: main
- optional: false
-- name: yaml
- version: 0.2.5
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- url: https://repo.prefix.dev/conda-forge/linux-64/yaml-0.2.5-h280c20c_3.conda
- hash:
- md5: a77f85f77be52ff59391544bfe73390a
- sha256: 6d9ea2f731e284e9316d95fa61869fe7bbba33df7929f82693c121022810f4ad
- category: 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: zipp
- version: 3.23.0
- manager: conda
- platform: linux-64
- dependencies:
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/zipp-3.23.0-pyhcf101f3_1.conda
- hash:
- md5: 30cd29cb87d819caead4d55184c1d115
- sha256: b4533f7d9efc976511a73ef7d4a2473406d7f4c750884be8e8620b0ce70f4dae
- category: dev
- optional: true
-- name: zipp
- version: 3.23.0
- manager: conda
- platform: win-64
- dependencies:
- python: '>=3.10'
- url: https://repo.prefix.dev/conda-forge/noarch/zipp-3.23.0-pyhcf101f3_1.conda
- hash:
- md5: 30cd29cb87d819caead4d55184c1d115
- sha256: b4533f7d9efc976511a73ef7d4a2473406d7f4c750884be8e8620b0ce70f4dae
- category: dev
- optional: true
-- name: zlib-ng
- version: 2.3.3
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libgcc: '>=14'
- libstdcxx: '>=14'
- url: https://repo.prefix.dev/conda-forge/linux-64/zlib-ng-2.3.3-hceb46e0_1.conda
- hash:
- md5: 2aadb0d17215603a82a2a6b0afd9a4cb
- sha256: ea4e50c465d70236408cb0bfe0115609fd14db1adcd8bd30d8918e0291f8a75f
- category: main
- optional: false
-- name: zlib-ng
- version: 2.3.3
- manager: conda
- platform: win-64
- dependencies:
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/zlib-ng-2.3.3-h0261ad2_1.conda
- hash:
- md5: 46a21c0a4e65f1a135251fc7c8663f83
- sha256: 71332532332d13b5dbe57074ddcf82ae711bdc132affa5a2982a29ffa06dc234
- category: main
- optional: false
-- name: zstd
- version: 1.5.7
- manager: conda
- platform: linux-64
- dependencies:
- __glibc: '>=2.17,<3.0.a0'
- libzlib: '>=1.3.1,<2.0a0'
- url: https://repo.prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb78ec9c_6.conda
- hash:
- md5: 4a13eeac0b5c8e5b8ab496e6c4ddd829
- sha256: 68f0206ca6e98fea941e5717cec780ed2873ffabc0e1ed34428c061e2c6268c7
- category: main
- optional: false
-- name: zstd
- version: 1.5.7
- manager: conda
- platform: win-64
- dependencies:
- libzlib: '>=1.3.1,<2.0a0'
- ucrt: '>=10.0.20348.0'
- vc: '>=14.3,<15'
- vc14_runtime: '>=14.44.35208'
- url: https://repo.prefix.dev/conda-forge/win-64/zstd-1.5.7-h534d264_6.conda
- hash:
- md5: 053b84beec00b71ea8ff7a4f84b55207
- sha256: 368d8628424966fd8f9c8018326a9c779e06913dd39e646cf331226acc90e5b2
- category: main
- optional: false
-- name: geoapps-utils
- version: 0.7.0a2.dev37+668a9e0
- manager: pip
- platform: linux-64
- dependencies:
- geoh5py: 0.13.0a3.dev5+9e0a86e5
- 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@668a9e0da5214e4a3bce466321cd910f1bb00b02
- hash:
- sha256: 668a9e0da5214e4a3bce466321cd910f1bb00b02
- source:
- type: url
- url: git+https://github.com/MiraGeoscience/geoapps-utils.git@668a9e0da5214e4a3bce466321cd910f1bb00b02
- category: main
- optional: false
-- name: geoapps-utils
- version: 0.7.0a2.dev37+668a9e0
- manager: pip
- platform: win-64
- dependencies:
- geoh5py: 0.13.0a3.dev5+9e0a86e5
- 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@668a9e0da5214e4a3bce466321cd910f1bb00b02
- hash:
- sha256: 668a9e0da5214e4a3bce466321cd910f1bb00b02
- source:
- type: url
- url: git+https://github.com/MiraGeoscience/geoapps-utils.git@668a9e0da5214e4a3bce466321cd910f1bb00b02
- category: main
- optional: false
-- name: geoh5py
- version: 0.13.0a3.dev5+9e0a86e5
- manager: pip
- platform: linux-64
- dependencies:
- h5py: '>=3.15.0,<4.0.0'
- numpy: '>=2.4.0,<2.5.0'
- pillow: '>=12.1.0,<12.2.0'
- pydantic: '>=2.12.0,<2.13.0'
- url: git+https://github.com/MiraGeoscience/geoh5py.git@9e0a86e5afadfe9c55e9811317827a4f6c2c70c4
- hash:
- sha256: 9e0a86e5afadfe9c55e9811317827a4f6c2c70c4
- source:
- type: url
- url: git+https://github.com/MiraGeoscience/geoh5py.git@9e0a86e5afadfe9c55e9811317827a4f6c2c70c4
- category: main
- optional: false
-- name: geoh5py
- version: 0.13.0a3.dev5+9e0a86e5
- manager: pip
- platform: win-64
- dependencies:
- h5py: '>=3.15.0,<4.0.0'
- numpy: '>=2.4.0,<2.5.0'
- pillow: '>=12.1.0,<12.2.0'
- pydantic: '>=2.12.0,<2.13.0'
- url: git+https://github.com/MiraGeoscience/geoh5py.git@9e0a86e5afadfe9c55e9811317827a4f6c2c70c4
- hash:
- sha256: 9e0a86e5afadfe9c55e9811317827a4f6c2c70c4
- source:
- type: url
- url: git+https://github.com/MiraGeoscience/geoh5py.git@9e0a86e5afadfe9c55e9811317827a4f6c2c70c4
- category: main
- optional: false
diff --git a/pyproject.toml b/pyproject.toml
index 112d085..68e39d9 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -21,7 +21,14 @@ license-files = [
"LICENSE",
"docs/source/THIRD_PARTY_SOFTWARE.rst",
]
-keywords = ["geology", "geophysics", "earth sciences"]
+keywords = [
+ "earth-science",
+ "geoh5",
+ "geology",
+ "geophysics",
+ "mining",
+ "open-science",
+]
readme = "package.rst"
dynamic = ["version", "dependencies", "classifiers"]
authors = [{name = "Mira Geoscience", email = "support@mirageoscience.com"}]
@@ -30,28 +37,25 @@ maintainers = [
{ name = "Dominique Fournier", email = "dominiquef@mirageoscience.com" }
]
+dependencies = [
+ # Mira packages
+ "geoapps-utils >= 0.6.0a, == 0.6.*",
+ "geoh5py >= 0.12.0a1, == 0.12.*",
+ # other direct dependencies
+ "discretize == 0.11.*",
+ "numpy == 1.26.*",
+ "pydantic >= 2.5.2, == 2.*",
+ "scipy == 1.14.*",
+]
+
[project.urls]
repository = "https://github.com/MiraGeoscience/grid-apps"
-documentation = "https://mirageoscience-grid-apps.readthedocs-hosted.com/"
homepage = "https://www.mirageoscience.com/mining-industry-software/python-integration/"
+documentation = "https://mirageoscience-grid-apps.readthedocs-hosted.com/"
[tool.poetry]
requires-poetry = '>=2.0,<3.0'
-classifiers = [
- "Development Status :: 2 - Pre-Alpha",
- "Intended Audience :: Science/Research",
- "Programming Language :: Python",
- "Topic :: Scientific/Engineering",
- "Topic :: Scientific/Engineering :: Mathematics",
- "Topic :: Scientific/Engineering :: Physics",
- "Operating System :: Microsoft :: Windows",
- "Operating System :: POSIX",
- "Operating System :: Unix",
- "Operating System :: MacOS",
- "Natural Language :: English",
-]
-
packages = [
{ include = "grid_apps" },
{ include = "grid_apps-assets" },
@@ -60,56 +64,22 @@ packages = [
include = [
{ path = "grid_apps/_version.py", format = ["sdist", "wheel"] },
]
+classifiers = [
+ "Development Status :: 4 - Beta",
+ "Intended Audience :: Developers",
+ "Intended Audience :: Science/Research",
+ "Natural Language :: English",
+ "Operating System :: MacOS",
+ "Operating System :: Microsoft :: Windows",
+ "Operating System :: POSIX",
+ "Operating System :: Unix",
+ "Programming Language :: Python",
+ "Topic :: Scientific/Engineering :: Mathematics",
+ "Topic :: Scientific/Engineering :: Physics",
+ "Topic :: Scientific/Engineering",
+]
version = "0.0.0.dev0"
-
-[tool.poetry.dependencies]
-discretize = "~0.12.0"
-numpy = "~2.4.2"
-pydantic = "~2.12.0"
-scipy = "~1.17.0"
-
-## pip dependencies from Git repositories
-#----------------------------------------
-#geoh5py = { version = ">=0.13.0a, 0.13.*", source = "pypi", allow-prereleases = true }
-geoh5py = { git = "https://github.com/MiraGeoscience/geoh5py.git", rev = "develop" }
-
-#geoapps-utils = { version = ">=0.7.0a, 0.7.*", source = "pypi", allow-prereleases = true }
-geoapps-utils = { git = "https://github.com/MiraGeoscience/geoapps-utils.git", rev = "develop" }
-
-## about pip dependencies
-# to be specified to work with conda-lock
-# - from PyPI: my_package = { version = "1.2.3", source = "pypi" }
-# - from URL:
-# - for a tags: my_package = { url = "https://github.com/ORGANISATION/REPO/archive/refs/tags/VERSION_TAG.zip#sha256=" }
-# - for a branch: my_package = { url = "https://github.com/ORGANISATION/REPO/archive/refs/heads/BRANCH.zip#sha256=" }
-# Note - conda-lock does not support the syntax: my_package = { git = ... }
-# while poetry2conda supports only { git = "...", tag = "..." }, and not { url = ... }
-
-[tool.poetry.group.dev.dependencies]
-Pygments = "*"
-pylint = "*"
-pytest = "*"
-pytest-cov = "*"
-pyyaml = '*'
-packaging = '*'
-sphinx = "*"
-sphinx-autodoc-typehints = "*"
-sphinx-rtd-theme = "*"
-
-[tool.conda-lock]
-platforms = ['win-64', 'linux-64']
-channels = ['conda-forge']
-
-[tool.conda-lock.dependencies]
-libblas = "*=*mkl"
-
-## indirect dependencies, forcing them here for installation through Conda not pip
-#---------------------------------------------------------------------------------
-h5py = ">=3.15.1, 3.*" # from geoh5py
-matplotlib-base = "3.10.*" # from geoapps-utils
-pillow = ">=12.1.0, 12.*" # from geoh5py
-
[tool.poetry.requires-plugins]
poetry-dynamic-versioning = { version = ">=1.9.1,<2.0.0", extras = ["plugin"] }
@@ -194,9 +164,6 @@ plugins = [
[tool.coverage.run]
branch = true
source = ["grid_apps"]
-omit = [
- "grid_apps/commands/hello_world.py"
-]
[tool.coverage.report]
exclude_lines = [
diff --git a/recipe.yaml b/recipe.yaml
index 9894c15..b606989 100644
--- a/recipe.yaml
+++ b/recipe.yaml
@@ -32,8 +32,8 @@ requirements:
run:
- python >=${{ python_min }}
# Mira packages
- - geoh5py >=0.13.0a2, 0.13.*
- - geoapps-utils >=0.7.0a2, 0.7.*
+ - geoh5py >=0.13.0b1, 0.13.*
+ - geoapps-utils >=0.7.0b1, 0.7.*
# other direct dependencies
- discretize 0.12.*
- numpy 2.4.*