├── .github └── workflows │ ├── linux_numpy.yml │ └── linux_scipy.yml ├── .gitignore ├── LICENSE ├── README.md ├── meson ├── .gitignore ├── pixi.toml └── recipe │ └── recipe.yaml ├── numpy ├── .gitignore ├── pixi.lock ├── pixi.toml └── recipe │ ├── build.sh │ ├── recipe.yaml │ └── variants.yaml ├── openblas ├── .gitignore ├── pixi.lock └── pixi.toml ├── pywt ├── .gitignore ├── pixi.lock ├── pixi.toml └── recipe │ ├── build.sh │ ├── recipe.yaml │ └── variants.yaml └── scipy ├── .gitignore ├── README.md ├── activate_graphviz.sh ├── build.sh ├── pixi.lock ├── pixi.toml └── recipe ├── build.sh ├── recipe.yaml └── variants.yaml /.github/workflows/linux_numpy.yml: -------------------------------------------------------------------------------- 1 | name: Linux NumPy 2 | 3 | on: 4 | push: 5 | branches: 6 | - main 7 | paths: 8 | - "numpy/**" 9 | - ".github/workflows/*_numpy.yml" 10 | pull_request: 11 | branches: 12 | - main 13 | paths: 14 | - "numpy/**" 15 | - ".github/workflows/*_numpy.yml" 16 | 17 | concurrency: 18 | group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} 19 | cancel-in-progress: true 20 | 21 | permissions: 22 | contents: read # to fetch code (actions/checkout) 23 | 24 | jobs: 25 | test: 26 | # To enable this job and subsequent jobs on a fork, comment out: 27 | if: github.repository == 'rgommers/pixi-dev-scipystack' 28 | runs-on: ubuntu-latest 29 | steps: 30 | - name: Checkout pixi-dev-scipystack 31 | uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 32 | - name: Checkout numpy repo 33 | uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 34 | with: 35 | repository: numpy/numpy 36 | path: ./numpy/numpy 37 | submodules: recursive 38 | - uses: prefix-dev/setup-pixi@v0.8.1 39 | with: 40 | pixi-version: v0.39.0 41 | manifest-path: numpy/pixi.toml 42 | #cache: true 43 | #cache-write: ${{ github.event_name == 'push' && github.ref_name == 'main' }} 44 | - name: Build NumPy 45 | working-directory: ./numpy 46 | run: pixi run build -j2 -- -Ddisable-optimization=true 47 | - name: Run linalg tests (fast) 48 | working-directory: ./numpy 49 | run: pixi run test -- numpy/linalg 50 | -------------------------------------------------------------------------------- /.github/workflows/linux_scipy.yml: -------------------------------------------------------------------------------- 1 | name: Linux SciPy 2 | 3 | on: 4 | push: 5 | branches: 6 | - main 7 | paths: 8 | - "scipy/**" 9 | - ".github/workflows/*_scipy.yml" 10 | pull_request: 11 | branches: 12 | - main 13 | paths: 14 | - "scipy/**" 15 | - ".github/workflows/*_scipy.yml" 16 | 17 | concurrency: 18 | group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} 19 | cancel-in-progress: true 20 | 21 | permissions: 22 | contents: read # to fetch code (actions/checkout) 23 | 24 | jobs: 25 | test: 26 | # To enable this job and subsequent jobs on a fork, comment out: 27 | if: github.repository == 'rgommers/pixi-dev-scipystack' 28 | runs-on: ubuntu-latest 29 | steps: 30 | - name: Checkout pixi-dev-scipystack 31 | uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 32 | - name: Checkout scipy repo 33 | uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 34 | with: 35 | repository: scipy/scipy 36 | path: ./scipy/scipy 37 | submodules: recursive 38 | - uses: prefix-dev/setup-pixi@v0.8.1 39 | with: 40 | pixi-version: v0.39.0 41 | manifest-path: scipy/pixi.toml 42 | #cache: true 43 | #cache-write: ${{ github.event_name == 'push' && github.ref_name == 'main' }} 44 | - name: Build SciPy 45 | working-directory: ./scipy 46 | run: pixi run build -j2 47 | - name: Run linalg tests (fast) 48 | working-directory: ./scipy 49 | run: pixi run test -s linalg 50 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | wheelhouse 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2024-, Ralf Gommers and open source contributors. 2 | All rights reserved. 3 | 4 | Redistribution and use in source and binary forms, with or without 5 | modification, are permitted provided that the following conditions are 6 | met: 7 | 8 | * Redistributions of source code must retain the above copyright 9 | notice, this list of conditions and the following disclaimer. 10 | 11 | * Redistributions in binary form must reproduce the above 12 | copyright notice, this list of conditions and the following 13 | disclaimer in the documentation and/or other materials provided 14 | with the distribution. 15 | 16 | * Neither the name of the NumPy Developers nor the names of any 17 | contributors may be used to endorse or promote products derived 18 | from this software without specific prior written permission. 19 | 20 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 21 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 22 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 23 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 24 | OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 25 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 26 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 27 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 28 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 29 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 30 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 31 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # pixi-dev-scipystack 2 | 3 | This is an _experimental_ development setup for using [pixi](https://pixi.sh/) 4 | to do development work on NumPy, SciPy and some related projects. 5 | 6 | 7 | ## Getting started 8 | 9 | Install `pixi`, clone this repo, and then for the project you want to work 10 | on ensure that you have a clone of the upstream repo one level below the 11 | subdirectory for the project containing `pixi.toml`. For example: 12 | 13 | ```zsh 14 | % git clone https://github.com/rgommers/pixi-dev-scipystack.git 15 | % cd pixi-dev-scipystack/scipy 16 | % git clone https://github.com/scipy/scipy.git 17 | % cd scipy && git submodule update --init --recursive && cd .. 18 | ``` 19 | 20 | After that, you will be able to build and test SciPy (plus other dev tasks, 21 | see `pixi task ls`): 22 | 23 | ```zsh 24 | % pixi run build 25 | ✨ Pixi task (build in default): python dev.py build 26 | 💻 meson setup /Users/rgommers/code/pixi-dev/scipy/scipy/build --prefix /Users/rgommers/code/pixi-dev/scipy/scipy/build-install 27 | The Meson build system 28 | Version: 1.5.1 29 | Source dir: /Users/rgommers/code/pixi-dev/scipy/scipy 30 | ... 31 | 32 | 33 | % pixi run test-torch 34 | ? The task 'test-torch' can be run in multiple environments. 35 | 36 | Please select an environment to run the task in: › 37 | ❯ pytorch 38 | array-api 39 | 40 | ✨ Pixi task (test-torch in pytorch): python dev.py test -b pytorch -s cluster 41 | 💻 ninja -C /Users/rgommers/code/pixi-dev/scipy/scipy/build -j8 42 | ninja: Entering directory `/Users/rgommers/code/pixi-dev/scipy/scipy/build' 43 | [2/2] Generating scipy/generate-version with a custom command 44 | Build OK 45 | 💻 meson install -C build --only-changed --tags runtime,python-runtime,tests,devel 46 | Installing, see meson-install.log... 47 | Installation OK 48 | SciPy from development installed path at: /Users/rgommers/code/pixi-dev/scipy/scipy/build-install/lib/python3.12/site-packages 49 | Running tests for scipy version:1.15.0.dev0+1346.64a49b0, installed at:/Users/rgommers/code/pixi-dev/scipy/scipy/build-install/lib/python3.12/site-packages/scipy 50 | ... 51 | ======================================================= 125 passed, 23 skipped in 2.46s ======================================================= 52 | ``` 53 | 54 | 55 | ## Goals 56 | 57 | Goals of this repository include: 58 | 59 | 1. Making it easier to get started contributing to projects like NumPy and SciPy. 60 | 2. Making it easier for maintainers to reliably test in non-standard environments, 61 | e.g. when working on support for PyTorch, JAX, CuPy and other array libraries, 62 | or with BLAS/LAPACK libraries like MKL. 63 | 3. Prototype extra spin/dev.py commands that may be useful. 64 | 4. See what else Pixi can bring! 65 | 66 | 67 | ## Contributing 68 | 69 | This repo is highly experimental - everything is subject to change, so please don't 70 | rely on it too much. Ideas, questions, bug reports and pull requests are very welcome 71 | though! 72 | -------------------------------------------------------------------------------- /meson/.gitignore: -------------------------------------------------------------------------------- 1 | .pixi 2 | meson 3 | -------------------------------------------------------------------------------- /meson/pixi.toml: -------------------------------------------------------------------------------- 1 | [workspace] 2 | channels = [ 3 | "https://prefix.dev/pixi-build-backends", 4 | "https://prefix.dev/conda-forge", 5 | ] 6 | platforms = ["win-64", "linux-64", "osx-arm64", "osx-64"] 7 | preview = ["pixi-build"] 8 | 9 | [dependencies] 10 | meson = { path = "meson" } 11 | ninja = "*" 12 | 13 | [tasks] 14 | help = { cmd = "meson --help" } 15 | 16 | [package] 17 | name = "meson" 18 | version = "1.7.99" 19 | 20 | [package.build] 21 | backend = { name = "pixi-build-rattler-build", version = "*" } 22 | 23 | [package.host-dependencies] 24 | setuptools = "75.8.*" 25 | 26 | [package.run-dependencies] 27 | python = "*" 28 | ninja = "*" 29 | -------------------------------------------------------------------------------- /meson/recipe/recipe.yaml: -------------------------------------------------------------------------------- 1 | context: 2 | version: 1.7.99 3 | 4 | package: 5 | name: meson 6 | version: ${{ version }} 7 | 8 | source: 9 | path: ../meson 10 | use_gitignore: false 11 | 12 | build: 13 | noarch: python 14 | script: pip install . -v --no-build-isolation 15 | python: 16 | entry_points: 17 | - meson = mesonbuild.mesonmain:main 18 | 19 | requirements: 20 | build: 21 | - ninja 22 | host: 23 | - python 24 | - python-build 25 | - pip 26 | - setuptools 27 | run: 28 | - python 29 | - ninja 30 | 31 | tests: 32 | - script: 33 | - meson --help 34 | 35 | about: 36 | homepage: https://mesonbuild.com 37 | license: Apache-2.0 38 | license_file: COPYING 39 | summary: The Meson Build System 40 | documentation: https://mesonbuild.com 41 | repository: https://github.com/mesonbuild/meson 42 | -------------------------------------------------------------------------------- /numpy/.gitignore: -------------------------------------------------------------------------------- 1 | .pixi 2 | numpy 3 | output 4 | -------------------------------------------------------------------------------- /numpy/pixi.toml: -------------------------------------------------------------------------------- 1 | [project] 2 | name = "numpy" 3 | version = "2.2.0.dev0" 4 | description = "Fundamental package for array computing in Python" 5 | authors = ["Ralf Gommers "] 6 | channels = ["https://prefix.dev/conda-forge"] 7 | platforms = ["osx-arm64", "linux-64", "win-64"] 8 | 9 | [tasks] 10 | build = { cmd = "spin build", cwd = "numpy", env = { CC = "ccache $CC", CXX = "ccache $CXX" } } 11 | ipython = { cmd = "spin ipython", cwd = "numpy" } 12 | wheel = { cmd = "python -m build -wnx -Cbuild-dir=build-whl && mv dist/*.whl ../../wheelhouse/", cwd = "numpy" } 13 | 14 | #[target.unix.activation.env] 15 | #CC = "ccache $CC" 16 | 17 | [dependencies] 18 | compilers = ">=1.9.0,<2" 19 | pkg-config = ">=0.29.2,<0.30" 20 | ninja = ">=1.12.1,<2" 21 | meson = ">=1.7.1,<2" 22 | meson-python = ">=0.17.1,<0.18" 23 | openblas = ">=0.3.29,<0.4" 24 | spin = ">=0.14,<0.15" 25 | cython = ">=3.0.12,<4" 26 | python-build = ">=1.2.2.post1,<2" 27 | ipython = ">=9.1.0,<10" 28 | ccache = ">=4.11.2,<5" 29 | 30 | [feature.test.dependencies] 31 | pytest = "*" 32 | hypothesis = "*" 33 | pytest-xdist = "*" 34 | asv = "*" 35 | mypy = "==1.15.0" 36 | 37 | [feature.free-threading.dependencies] 38 | pytest = "*" 39 | hypothesis = "*" 40 | python-freethreading = ">=3.13.0,<3.14" 41 | cython = ">=3.1.0,<4" 42 | pytest-run-parallel = ">=0.4.3" 43 | 44 | [feature.lint.dependencies] 45 | ruff = "*" 46 | pycodestyle = "2.8.*" 47 | gitpython = ">=3.1.30" 48 | 49 | [feature.docs.dependencies] 50 | towncrier = "*" 51 | sphinx = "==7.2.6" 52 | numpydoc = "==1.4" 53 | matplotlib = ">=3.10.1,<4" 54 | sphinx-copybutton = ">=0.5.2,<0.6" 55 | sphinx-design = ">=0.6.1,<0.7" 56 | jupyterlite-sphinx = ">=0.19.1,<0.20" 57 | jupyterlite-pyodide-kernel = "==0.5.2" 58 | pydata-sphinx-theme = ">=0.16.1,<0.17" 59 | scipy = ">=1.15.2,<2" 60 | breathe = ">=4.36.0,<5" 61 | doxygen = ">=1.13.2,<2" 62 | 63 | [feature.test.tasks] 64 | test = { cmd = "spin test", cwd = "numpy" } 65 | bench = { cmd = "spin bench", cwd = "numpy" } 66 | mypy = { cmd = "spin mypy", cwd = "numpy" } 67 | 68 | [feature.free-threading.tasks] 69 | build-nogil = { cmd = "spin build --build-dir=build-nogil", cwd = "numpy", env = { CC = "ccache $CC", CXX = "ccache $CXX" } } 70 | test-nogil = { cmd = "spin test --build-dir=build-nogil", cwd = "numpy" } 71 | ipython-nogil = { cmd = "spin ipython --build-dir=build-nogil", cwd = "numpy" } 72 | 73 | [feature.lint.tasks] 74 | lint = { cmd = "spin lint", cwd = "numpy" } 75 | 76 | [feature.docs.tasks] 77 | docs = { cmd = "spin docs", cwd = "numpy" } 78 | open-docs = { cmd = "open index.html", cwd = "numpy/doc/build/html" } 79 | 80 | [environments] 81 | test = ["test"] 82 | lint = ["lint"] 83 | docs = ["docs"] 84 | free-threading = ["free-threading"] 85 | -------------------------------------------------------------------------------- /numpy/recipe/build.sh: -------------------------------------------------------------------------------- 1 | mkdir builddir 2 | 3 | $PYTHON -m build -w -n -x \ 4 | -Cbuild-dir=builddir \ 5 | -Csetup-args=-Dblas=blas \ 6 | -Csetup-args=-Dlapack=lapack 7 | 8 | $PYTHON -m pip install dist/numpy*.whl 9 | -------------------------------------------------------------------------------- /numpy/recipe/recipe.yaml: -------------------------------------------------------------------------------- 1 | context: 2 | version: 2.2.0.dev0 3 | default_abi_level: 1.21 4 | 5 | package: 6 | name: numpy 7 | version: ${{ version }} 8 | 9 | #source: 10 | # - url: https://github.com/numpy/numpy/releases/download/v${{ version }}/numpy-${{ version }}.tar.gz 11 | # sha256: 485b87235796410c3519a699cfe1faab097e509e90ebb05dcd098db2ae87e7b3 12 | 13 | source: 14 | path: ../numpy 15 | use_gitignore: false 16 | 17 | build: 18 | python: 19 | entry_points: 20 | - f2py = numpy.f2py.f2py2e:main # [win] 21 | - numpy-config = numpy._configtool:main 22 | 23 | requirements: 24 | build: 25 | - ${{ compiler('c') }} 26 | - ${{ compiler('cxx') }} 27 | # note: some `host` dependencies that run at build time (e.g., `cython`, `meson-python`) 28 | # should ideally be in `build` instead, this can be fixed once we 29 | # have proper cross-compilation without `crossenv` set up. 30 | host: 31 | # note: variant is injected here! 32 | - python 33 | - cython 34 | - python-build 35 | - meson-python 36 | - pkg-config 37 | - pip 38 | - libblas 39 | - libcblas 40 | - liblapack 41 | run: 42 | - python 43 | run_exports: 44 | - numpy >=${{ default_abi_level }},<3.0.0a0 45 | 46 | tests: 47 | - python: 48 | imports: 49 | - numpy 50 | - numpy.fft 51 | - numpy.linalg 52 | - numpy.random 53 | - numpy.ctypeslib 54 | 55 | - script: 56 | - f2py -v 57 | - numpy-config --cflags 58 | 59 | about: 60 | homepage: http://numpy.org/ 61 | license: BSD-3-Clause 62 | license_file: LICENSE.txt 63 | summary: The fundamental package for scientific computing with Python. 64 | documentation: https://numpy.org/doc/stable/ 65 | repository: https://github.com/numpy/numpy 66 | -------------------------------------------------------------------------------- /numpy/recipe/variants.yaml: -------------------------------------------------------------------------------- 1 | python: 2 | - 3.12 3 | -------------------------------------------------------------------------------- /openblas/.gitignore: -------------------------------------------------------------------------------- 1 | .pixi 2 | OpenBLAS 3 | output 4 | -------------------------------------------------------------------------------- /openblas/pixi.lock: -------------------------------------------------------------------------------- 1 | version: 6 2 | environments: 3 | default: 4 | channels: 5 | - url: https://prefix.dev/conda-forge/ 6 | packages: 7 | linux-64: 8 | - conda: https://prefix.dev/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 9 | - conda: https://prefix.dev/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 10 | - conda: https://prefix.dev/conda-forge/linux-64/binutils-2.43-h4852527_4.conda 11 | - conda: https://prefix.dev/conda-forge/linux-64/binutils_impl_linux-64-2.43-h4bf12b8_4.conda 12 | - conda: https://prefix.dev/conda-forge/linux-64/binutils_linux-64-2.43-h4852527_4.conda 13 | - conda: https://prefix.dev/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda 14 | - conda: https://prefix.dev/conda-forge/linux-64/c-ares-1.34.4-hb9d3cd8_0.conda 15 | - conda: https://prefix.dev/conda-forge/linux-64/c-compiler-1.9.0-h2b85faf_0.conda 16 | - conda: https://prefix.dev/conda-forge/linux-64/ca-certificates-2025.1.31-hbcca054_0.conda 17 | - conda: https://prefix.dev/conda-forge/linux-64/ccache-4.11.2-hd714d17_0.conda 18 | - conda: https://prefix.dev/conda-forge/linux-64/cmake-3.31.6-h74e3db0_0.conda 19 | - conda: https://prefix.dev/conda-forge/linux-64/compilers-1.9.0-ha770c72_0.conda 20 | - conda: https://prefix.dev/conda-forge/linux-64/cxx-compiler-1.9.0-h1a2810e_0.conda 21 | - conda: https://prefix.dev/conda-forge/linux-64/fortran-compiler-1.9.0-h36df796_0.conda 22 | - conda: https://prefix.dev/conda-forge/linux-64/gcc-13.3.0-h9576a4e_2.conda 23 | - conda: https://prefix.dev/conda-forge/linux-64/gcc_impl_linux-64-13.3.0-h1e990d8_2.conda 24 | - conda: https://prefix.dev/conda-forge/linux-64/gcc_linux-64-13.3.0-hc28eda2_8.conda 25 | - conda: https://prefix.dev/conda-forge/linux-64/gfortran-13.3.0-h9576a4e_2.conda 26 | - conda: https://prefix.dev/conda-forge/linux-64/gfortran_impl_linux-64-13.3.0-h84c1745_2.conda 27 | - conda: https://prefix.dev/conda-forge/linux-64/gfortran_linux-64-13.3.0-hb919d3a_8.conda 28 | - conda: https://prefix.dev/conda-forge/linux-64/gxx-13.3.0-h9576a4e_2.conda 29 | - conda: https://prefix.dev/conda-forge/linux-64/gxx_impl_linux-64-13.3.0-hae580e1_2.conda 30 | - conda: https://prefix.dev/conda-forge/linux-64/gxx_linux-64-13.3.0-h6834431_8.conda 31 | - conda: https://prefix.dev/conda-forge/noarch/kernel-headers_linux-64-3.10.0-he073ed8_18.conda 32 | - conda: https://prefix.dev/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 33 | - conda: https://prefix.dev/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda 34 | - conda: https://prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_4.conda 35 | - conda: https://prefix.dev/conda-forge/linux-64/libcurl-8.12.1-h332b0f4_0.conda 36 | - conda: https://prefix.dev/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.conda 37 | - conda: https://prefix.dev/conda-forge/linux-64/libev-4.33-hd590300_2.conda 38 | - conda: https://prefix.dev/conda-forge/linux-64/libexpat-2.6.4-h5888daf_0.conda 39 | - conda: https://prefix.dev/conda-forge/linux-64/libffi-3.4.6-h2dba641_0.conda 40 | - conda: https://prefix.dev/conda-forge/linux-64/libgcc-14.2.0-h767d61c_2.conda 41 | - conda: https://prefix.dev/conda-forge/noarch/libgcc-devel_linux-64-13.3.0-hc03c837_102.conda 42 | - conda: https://prefix.dev/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_2.conda 43 | - conda: https://prefix.dev/conda-forge/linux-64/libgfortran-14.2.0-h69a702a_2.conda 44 | - conda: https://prefix.dev/conda-forge/linux-64/libgfortran-ng-14.2.0-h69a702a_2.conda 45 | - conda: https://prefix.dev/conda-forge/linux-64/libgfortran5-14.2.0-hf1ad2bd_2.conda 46 | - conda: https://prefix.dev/conda-forge/linux-64/libgomp-14.2.0-h767d61c_2.conda 47 | - conda: https://prefix.dev/conda-forge/linux-64/libhiredis-1.0.2-h2cc385e_0.tar.bz2 48 | - conda: https://prefix.dev/conda-forge/linux-64/liblzma-5.6.4-hb9d3cd8_0.conda 49 | - conda: https://prefix.dev/conda-forge/linux-64/libmpdec-4.0.0-h4bc722e_0.conda 50 | - conda: https://prefix.dev/conda-forge/linux-64/libnghttp2-1.64.0-h161d5f1_0.conda 51 | - conda: https://prefix.dev/conda-forge/linux-64/libsanitizer-13.3.0-he8ea267_2.conda 52 | - conda: https://prefix.dev/conda-forge/linux-64/libsqlite-3.49.1-hee588c1_2.conda 53 | - conda: https://prefix.dev/conda-forge/linux-64/libssh2-1.11.1-hf672d98_0.conda 54 | - conda: https://prefix.dev/conda-forge/linux-64/libstdcxx-14.2.0-h8f9b012_2.conda 55 | - conda: https://prefix.dev/conda-forge/noarch/libstdcxx-devel_linux-64-13.3.0-hc03c837_102.conda 56 | - conda: https://prefix.dev/conda-forge/linux-64/libstdcxx-ng-14.2.0-h4852527_2.conda 57 | - conda: https://prefix.dev/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda 58 | - conda: https://prefix.dev/conda-forge/linux-64/libuv-1.50.0-hb9d3cd8_0.conda 59 | - conda: https://prefix.dev/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda 60 | - conda: https://prefix.dev/conda-forge/linux-64/make-4.4.1-hb9d3cd8_2.conda 61 | - conda: https://prefix.dev/conda-forge/noarch/meson-1.7.0-pyhd8ed1ab_0.conda 62 | - conda: https://prefix.dev/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda 63 | - conda: https://prefix.dev/conda-forge/linux-64/ninja-1.12.1-h297d8ca_0.conda 64 | - conda: https://prefix.dev/conda-forge/linux-64/openssl-3.4.1-h7b32b05_0.conda 65 | - conda: https://prefix.dev/conda-forge/linux-64/pkg-config-0.29.2-h4bc722e_1009.conda 66 | - conda: https://prefix.dev/conda-forge/linux-64/python-3.13.2-hf636f53_101_cp313.conda 67 | - conda: https://prefix.dev/conda-forge/linux-64/python_abi-3.13-5_cp313.conda 68 | - conda: https://prefix.dev/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda 69 | - conda: https://prefix.dev/conda-forge/linux-64/rhash-1.4.5-hb9d3cd8_0.conda 70 | - conda: https://prefix.dev/conda-forge/noarch/setuptools-75.8.2-pyhff2d567_0.conda 71 | - conda: https://prefix.dev/conda-forge/noarch/sysroot_linux-64-2.17-h0157908_18.conda 72 | - conda: https://prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda 73 | - conda: https://prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda 74 | - conda: https://prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb8e6e7a_2.conda 75 | osx-arm64: 76 | - conda: https://prefix.dev/conda-forge/osx-arm64/bzip2-1.0.8-h99b78c6_7.conda 77 | - conda: https://prefix.dev/conda-forge/osx-arm64/c-ares-1.34.4-h5505292_0.conda 78 | - conda: https://prefix.dev/conda-forge/osx-arm64/c-compiler-1.9.0-hdf49b6b_0.conda 79 | - conda: https://prefix.dev/conda-forge/osx-arm64/ca-certificates-2025.1.31-hf0a4a13_0.conda 80 | - conda: https://prefix.dev/conda-forge/osx-arm64/ccache-4.11.2-h5a0df06_0.conda 81 | - conda: https://prefix.dev/conda-forge/osx-arm64/cctools-1010.6-hb4fb6a3_4.conda 82 | - conda: https://prefix.dev/conda-forge/osx-arm64/cctools_osx-arm64-1010.6-h3b4f5d3_4.conda 83 | - conda: https://prefix.dev/conda-forge/osx-arm64/clang-18-18.1.8-default_hf90f093_8.conda 84 | - conda: https://prefix.dev/conda-forge/osx-arm64/clang-18.1.8-default_h474c9e2_8.conda 85 | - conda: https://prefix.dev/conda-forge/osx-arm64/clang_impl_osx-arm64-18.1.8-h2ae9ea5_24.conda 86 | - conda: https://prefix.dev/conda-forge/osx-arm64/clang_osx-arm64-18.1.8-h07b0088_24.conda 87 | - conda: https://prefix.dev/conda-forge/osx-arm64/clangxx-18.1.8-default_h1ffe849_8.conda 88 | - conda: https://prefix.dev/conda-forge/osx-arm64/clangxx_impl_osx-arm64-18.1.8-h555f467_24.conda 89 | - conda: https://prefix.dev/conda-forge/osx-arm64/clangxx_osx-arm64-18.1.8-h07b0088_24.conda 90 | - conda: https://prefix.dev/conda-forge/osx-arm64/cmake-3.31.6-ha25475f_0.conda 91 | - conda: https://prefix.dev/conda-forge/osx-arm64/compiler-rt-18.1.8-h856b3c1_1.conda 92 | - conda: https://prefix.dev/conda-forge/noarch/compiler-rt_osx-arm64-18.1.8-h832e737_1.conda 93 | - conda: https://prefix.dev/conda-forge/osx-arm64/compilers-1.9.0-hce30654_0.conda 94 | - conda: https://prefix.dev/conda-forge/osx-arm64/cxx-compiler-1.9.0-hba80287_0.conda 95 | - conda: https://prefix.dev/conda-forge/osx-arm64/fortran-compiler-1.9.0-h5692697_0.conda 96 | - conda: https://prefix.dev/conda-forge/osx-arm64/gfortran-13.3.0-h3ef1dbf_1.conda 97 | - conda: https://prefix.dev/conda-forge/osx-arm64/gfortran_impl_osx-arm64-13.3.0-h0045e9c_1.conda 98 | - conda: https://prefix.dev/conda-forge/osx-arm64/gfortran_osx-arm64-13.3.0-h3c33bd0_1.conda 99 | - conda: https://prefix.dev/conda-forge/osx-arm64/gmp-6.3.0-h7bae524_2.conda 100 | - conda: https://prefix.dev/conda-forge/osx-arm64/isl-0.26-imath32_h347afa1_101.conda 101 | - conda: https://prefix.dev/conda-forge/osx-arm64/krb5-1.21.3-h237132a_0.conda 102 | - conda: https://prefix.dev/conda-forge/osx-arm64/ld64-951.9-h4c6efb1_4.conda 103 | - conda: https://prefix.dev/conda-forge/osx-arm64/ld64_osx-arm64-951.9-hb6b49e2_4.conda 104 | - conda: https://prefix.dev/conda-forge/osx-arm64/libclang-cpp18.1-18.1.8-default_hf90f093_8.conda 105 | - conda: https://prefix.dev/conda-forge/osx-arm64/libcurl-8.12.1-h73640d1_0.conda 106 | - conda: https://prefix.dev/conda-forge/osx-arm64/libcxx-20.1.1-ha82da77_0.conda 107 | - conda: https://prefix.dev/conda-forge/osx-arm64/libcxx-devel-18.1.8-h6dc3340_8.conda 108 | - conda: https://prefix.dev/conda-forge/osx-arm64/libedit-3.1.20250104-pl5321hafb1f1b_0.conda 109 | - conda: https://prefix.dev/conda-forge/osx-arm64/libev-4.33-h93a5062_2.conda 110 | - conda: https://prefix.dev/conda-forge/osx-arm64/libexpat-2.6.4-h286801f_0.conda 111 | - conda: https://prefix.dev/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2 112 | - conda: https://prefix.dev/conda-forge/osx-arm64/libgfortran-5.0.0-14_2_0_h6c33f7e_1.conda 113 | - conda: https://prefix.dev/conda-forge/noarch/libgfortran-devel_osx-arm64-13.3.0-h5020ebb_1.conda 114 | - conda: https://prefix.dev/conda-forge/osx-arm64/libgfortran5-14.2.0-h6c33f7e_1.conda 115 | - conda: https://prefix.dev/conda-forge/osx-arm64/libglib-2.82.2-hdff4504_1.conda 116 | - conda: https://prefix.dev/conda-forge/osx-arm64/libhiredis-1.0.2-hbec66e7_0.tar.bz2 117 | - conda: https://prefix.dev/conda-forge/osx-arm64/libiconv-1.18-hfe07756_1.conda 118 | - conda: https://prefix.dev/conda-forge/osx-arm64/libintl-0.23.1-h493aca8_0.conda 119 | - conda: https://prefix.dev/conda-forge/osx-arm64/libllvm18-18.1.8-hc4b4ae8_3.conda 120 | - conda: https://prefix.dev/conda-forge/osx-arm64/liblzma-5.6.4-h39f12f2_0.conda 121 | - conda: https://prefix.dev/conda-forge/osx-arm64/libmpdec-4.0.0-h99b78c6_0.conda 122 | - conda: https://prefix.dev/conda-forge/osx-arm64/libnghttp2-1.64.0-h6d7220d_0.conda 123 | - conda: https://prefix.dev/conda-forge/osx-arm64/libsqlite-3.49.1-h3f77e49_2.conda 124 | - conda: https://prefix.dev/conda-forge/osx-arm64/libssh2-1.11.1-h9cc3647_0.conda 125 | - conda: https://prefix.dev/conda-forge/osx-arm64/libuv-1.50.0-h5505292_0.conda 126 | - conda: https://prefix.dev/conda-forge/osx-arm64/libxml2-2.13.6-hce475f1_0.conda 127 | - conda: https://prefix.dev/conda-forge/osx-arm64/libzlib-1.3.1-h8359307_2.conda 128 | - conda: https://prefix.dev/conda-forge/osx-arm64/llvm-openmp-20.1.1-hdb05f8b_1.conda 129 | - conda: https://prefix.dev/conda-forge/osx-arm64/llvm-tools-18-18.1.8-hc4b4ae8_3.conda 130 | - conda: https://prefix.dev/conda-forge/osx-arm64/llvm-tools-18.1.8-hc4b4ae8_3.conda 131 | - conda: https://prefix.dev/conda-forge/osx-arm64/make-4.4.1-hc9fafa5_2.conda 132 | - conda: https://prefix.dev/conda-forge/noarch/meson-1.7.0-pyhd8ed1ab_0.conda 133 | - conda: https://prefix.dev/conda-forge/osx-arm64/mpc-1.3.1-h8f1351a_1.conda 134 | - conda: https://prefix.dev/conda-forge/osx-arm64/mpfr-4.2.1-hb693164_3.conda 135 | - conda: https://prefix.dev/conda-forge/osx-arm64/ncurses-6.5-h5e97a16_3.conda 136 | - conda: https://prefix.dev/conda-forge/osx-arm64/ninja-1.12.1-h420ef59_0.conda 137 | - conda: https://prefix.dev/conda-forge/osx-arm64/openssl-3.4.1-h81ee809_0.conda 138 | - conda: https://prefix.dev/conda-forge/osx-arm64/pcre2-10.44-h297a79d_2.conda 139 | - conda: https://prefix.dev/conda-forge/osx-arm64/pkg-config-0.29.2-hde07d2e_1009.conda 140 | - conda: https://prefix.dev/conda-forge/osx-arm64/python-3.13.2-h81fe080_101_cp313.conda 141 | - conda: https://prefix.dev/conda-forge/osx-arm64/python_abi-3.13-5_cp313.conda 142 | - conda: https://prefix.dev/conda-forge/osx-arm64/readline-8.2-h1d1bf99_2.conda 143 | - conda: https://prefix.dev/conda-forge/osx-arm64/rhash-1.4.5-h7ab814d_0.conda 144 | - conda: https://prefix.dev/conda-forge/noarch/setuptools-75.8.2-pyhff2d567_0.conda 145 | - conda: https://prefix.dev/conda-forge/osx-arm64/sigtool-0.1.3-h44b9a77_0.tar.bz2 146 | - conda: https://prefix.dev/conda-forge/osx-arm64/tapi-1300.6.5-h03f4b80_0.conda 147 | - conda: https://prefix.dev/conda-forge/osx-arm64/tk-8.6.13-h5083fa2_1.conda 148 | - conda: https://prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda 149 | - conda: https://prefix.dev/conda-forge/osx-arm64/zlib-1.3.1-h8359307_2.conda 150 | - conda: https://prefix.dev/conda-forge/osx-arm64/zstd-1.5.7-h6491c7d_2.conda 151 | win-64: 152 | - conda: https://prefix.dev/conda-forge/win-64/_openmp_mutex-4.5-2_gnu.conda 153 | - conda: https://prefix.dev/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda 154 | - conda: https://prefix.dev/conda-forge/win-64/c-compiler-1.9.0-hcfcfb64_0.conda 155 | - conda: https://prefix.dev/conda-forge/win-64/ca-certificates-2025.1.31-h56e8100_0.conda 156 | - conda: https://prefix.dev/conda-forge/win-64/ccache-4.11.2-h65df0e8_0.conda 157 | - conda: https://prefix.dev/conda-forge/win-64/clang-19-19.1.7-default_hec7ea82_2.conda 158 | - conda: https://prefix.dev/conda-forge/win-64/clang-19.1.7-default_hec7ea82_2.conda 159 | - conda: https://prefix.dev/conda-forge/win-64/cmake-3.31.6-hff78f93_0.conda 160 | - conda: https://prefix.dev/conda-forge/win-64/compiler-rt-19.1.7-hc790b64_0.conda 161 | - conda: https://prefix.dev/conda-forge/noarch/compiler-rt_win-64-19.1.7-hc790b64_0.conda 162 | - conda: https://prefix.dev/conda-forge/win-64/compilers-1.9.0-h57928b3_0.conda 163 | - conda: https://prefix.dev/conda-forge/win-64/cxx-compiler-1.9.0-h91493d7_0.conda 164 | - conda: https://prefix.dev/conda-forge/win-64/flang-19.1.7-hbeecb71_0.conda 165 | - conda: https://prefix.dev/conda-forge/win-64/flang_impl_win-64-19.1.7-h719f0c7_0.conda 166 | - conda: https://prefix.dev/conda-forge/win-64/flang_win-64-19.1.7-h719f0c7_0.conda 167 | - conda: https://prefix.dev/conda-forge/win-64/fortran-compiler-1.9.0-h95e3450_0.conda 168 | - conda: https://prefix.dev/conda-forge/win-64/krb5-1.21.3-hdf4eb48_0.conda 169 | - conda: https://prefix.dev/conda-forge/win-64/libcurl-8.12.1-h88aaa65_0.conda 170 | - conda: https://prefix.dev/conda-forge/win-64/libexpat-2.6.4-he0c23c2_0.conda 171 | - conda: https://prefix.dev/conda-forge/win-64/libffi-3.4.6-h537db12_0.conda 172 | - conda: https://prefix.dev/conda-forge/win-64/libflang-19.1.7-he0c23c2_0.conda 173 | - conda: https://prefix.dev/conda-forge/win-64/libgcc-14.2.0-h1383e82_2.conda 174 | - conda: https://prefix.dev/conda-forge/win-64/libglib-2.82.2-h7025463_1.conda 175 | - conda: https://prefix.dev/conda-forge/win-64/libgomp-14.2.0-h1383e82_2.conda 176 | - conda: https://prefix.dev/conda-forge/win-64/libhiredis-1.0.2-h0e60522_0.tar.bz2 177 | - conda: https://prefix.dev/conda-forge/win-64/libiconv-1.18-h135ad9c_1.conda 178 | - conda: https://prefix.dev/conda-forge/win-64/libintl-0.22.5-h5728263_3.conda 179 | - conda: https://prefix.dev/conda-forge/win-64/libllvm19-19.1.7-h3089188_1.conda 180 | - conda: https://prefix.dev/conda-forge/win-64/liblzma-5.6.4-h2466b09_0.conda 181 | - conda: https://prefix.dev/conda-forge/win-64/libmpdec-4.0.0-h2466b09_0.conda 182 | - conda: https://prefix.dev/conda-forge/win-64/libsqlite-3.49.1-h67fdade_2.conda 183 | - conda: https://prefix.dev/conda-forge/win-64/libssh2-1.11.1-he619c9f_0.conda 184 | - conda: https://prefix.dev/conda-forge/win-64/libuv-1.50.0-h2466b09_0.conda 185 | - conda: https://prefix.dev/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h57928b3_9.conda 186 | - conda: https://prefix.dev/conda-forge/win-64/libxml2-2.13.6-he286e8c_0.conda 187 | - conda: https://prefix.dev/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda 188 | - conda: https://prefix.dev/conda-forge/win-64/lld-20.1.1-hd91d51b_0.conda 189 | - conda: https://prefix.dev/conda-forge/win-64/llvm-tools-19.1.7-h2a44499_1.conda 190 | - conda: https://prefix.dev/conda-forge/win-64/make-4.4.1-h0e40799_2.conda 191 | - conda: https://prefix.dev/conda-forge/noarch/meson-1.7.0-pyhd8ed1ab_0.conda 192 | - conda: https://prefix.dev/conda-forge/win-64/ninja-1.12.1-hc790b64_0.conda 193 | - conda: https://prefix.dev/conda-forge/win-64/openssl-3.4.1-ha4e3fda_0.conda 194 | - conda: https://prefix.dev/conda-forge/win-64/pcre2-10.44-h3d7b363_2.conda 195 | - conda: https://prefix.dev/conda-forge/win-64/pkg-config-0.29.2-h88c491f_1009.conda 196 | - conda: https://prefix.dev/conda-forge/win-64/python-3.13.2-h261c0b1_101_cp313.conda 197 | - conda: https://prefix.dev/conda-forge/win-64/python_abi-3.13-5_cp313.conda 198 | - conda: https://prefix.dev/conda-forge/noarch/setuptools-75.8.2-pyhff2d567_0.conda 199 | - conda: https://prefix.dev/conda-forge/win-64/tk-8.6.13-h5226925_1.conda 200 | - conda: https://prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda 201 | - conda: https://prefix.dev/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_1.conda 202 | - conda: https://prefix.dev/conda-forge/win-64/vc-14.3-hbf610ac_24.conda 203 | - conda: https://prefix.dev/conda-forge/win-64/vc14_runtime-14.42.34438-hfd919c2_24.conda 204 | - conda: https://prefix.dev/conda-forge/win-64/vs2015_runtime-14.42.34438-h7142326_24.conda 205 | - conda: https://prefix.dev/conda-forge/win-64/vs2019_win-64-19.29.30139-h7dcff83_24.conda 206 | - conda: https://prefix.dev/conda-forge/win-64/vswhere-3.1.7-h57928b3_0.conda 207 | - conda: https://prefix.dev/conda-forge/win-64/zstd-1.5.7-hbeecb71_2.conda 208 | doc: 209 | channels: 210 | - url: https://prefix.dev/conda-forge/ 211 | packages: 212 | linux-64: 213 | - conda: https://prefix.dev/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 214 | - conda: https://prefix.dev/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 215 | - conda: https://prefix.dev/conda-forge/noarch/babel-2.17.0-pyhd8ed1ab_0.conda 216 | - conda: https://prefix.dev/conda-forge/noarch/backrefs-5.8-pyhd8ed1ab_0.conda 217 | - conda: https://prefix.dev/conda-forge/linux-64/brotli-python-1.1.0-py313h46c70d0_2.conda 218 | - conda: https://prefix.dev/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda 219 | - conda: https://prefix.dev/conda-forge/linux-64/ca-certificates-2025.1.31-hbcca054_0.conda 220 | - conda: https://prefix.dev/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda 221 | - conda: https://prefix.dev/conda-forge/linux-64/cffi-1.17.1-py313hfab6e84_0.conda 222 | - conda: https://prefix.dev/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda 223 | - conda: https://prefix.dev/conda-forge/noarch/click-8.1.8-pyh707e725_0.conda 224 | - conda: https://prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda 225 | - conda: https://prefix.dev/conda-forge/noarch/ghp-import-2.1.0-pyhd8ed1ab_2.conda 226 | - conda: https://prefix.dev/conda-forge/noarch/gitdb-4.0.12-pyhd8ed1ab_0.conda 227 | - conda: https://prefix.dev/conda-forge/noarch/gitpython-3.1.44-pyhff2d567_0.conda 228 | - conda: https://prefix.dev/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda 229 | - conda: https://prefix.dev/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda 230 | - conda: https://prefix.dev/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda 231 | - conda: https://prefix.dev/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda 232 | - conda: https://prefix.dev/conda-forge/noarch/importlib-metadata-8.6.1-pyha770c72_0.conda 233 | - conda: https://prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda 234 | - conda: https://prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_4.conda 235 | - conda: https://prefix.dev/conda-forge/linux-64/libexpat-2.6.4-h5888daf_0.conda 236 | - conda: https://prefix.dev/conda-forge/linux-64/libffi-3.4.6-h2dba641_0.conda 237 | - conda: https://prefix.dev/conda-forge/linux-64/libgcc-14.2.0-h767d61c_2.conda 238 | - conda: https://prefix.dev/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_2.conda 239 | - conda: https://prefix.dev/conda-forge/linux-64/libgomp-14.2.0-h767d61c_2.conda 240 | - conda: https://prefix.dev/conda-forge/linux-64/liblzma-5.6.4-hb9d3cd8_0.conda 241 | - conda: https://prefix.dev/conda-forge/linux-64/libmpdec-4.0.0-h4bc722e_0.conda 242 | - conda: https://prefix.dev/conda-forge/linux-64/libsqlite-3.49.1-hee588c1_2.conda 243 | - conda: https://prefix.dev/conda-forge/linux-64/libstdcxx-14.2.0-h8f9b012_2.conda 244 | - conda: https://prefix.dev/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda 245 | - conda: https://prefix.dev/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda 246 | - conda: https://prefix.dev/conda-forge/noarch/markdown-3.6-pyhd8ed1ab_0.conda 247 | - conda: https://prefix.dev/conda-forge/linux-64/markupsafe-3.0.2-py313h8060acc_1.conda 248 | - conda: https://prefix.dev/conda-forge/noarch/mergedeep-1.3.4-pyhd8ed1ab_1.conda 249 | - conda: https://prefix.dev/conda-forge/noarch/mkdocs-1.6.1-pyhd8ed1ab_1.conda 250 | - conda: https://prefix.dev/conda-forge/noarch/mkdocs-get-deps-0.2.0-pyhd8ed1ab_1.conda 251 | - conda: https://prefix.dev/conda-forge/noarch/mkdocs-git-revision-date-localized-plugin-1.2.9-pyhd8ed1ab_0.conda 252 | - conda: https://prefix.dev/conda-forge/noarch/mkdocs-material-9.6.9-pyhd8ed1ab_0.conda 253 | - conda: https://prefix.dev/conda-forge/noarch/mkdocs-material-extensions-1.3.1-pyhd8ed1ab_1.conda 254 | - conda: https://prefix.dev/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda 255 | - conda: https://prefix.dev/conda-forge/linux-64/openssl-3.4.1-h7b32b05_0.conda 256 | - conda: https://prefix.dev/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda 257 | - conda: https://prefix.dev/conda-forge/noarch/paginate-0.5.7-pyhd8ed1ab_1.conda 258 | - conda: https://prefix.dev/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_1.conda 259 | - conda: https://prefix.dev/conda-forge/noarch/platformdirs-4.3.7-pyh29332c3_0.conda 260 | - conda: https://prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda 261 | - conda: https://prefix.dev/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda 262 | - conda: https://prefix.dev/conda-forge/noarch/pymdown-extensions-10.14.3-pyhd8ed1ab_0.conda 263 | - conda: https://prefix.dev/conda-forge/noarch/pysocks-1.7.1-pyha55dd90_7.conda 264 | - conda: https://prefix.dev/conda-forge/linux-64/python-3.13.2-hf636f53_101_cp313.conda 265 | - conda: https://prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda 266 | - conda: https://prefix.dev/conda-forge/linux-64/python_abi-3.13-5_cp313.conda 267 | - conda: https://prefix.dev/conda-forge/noarch/pytz-2025.1-pyhd8ed1ab_0.conda 268 | - conda: https://prefix.dev/conda-forge/linux-64/pyyaml-6.0.2-py313h8060acc_2.conda 269 | - conda: https://prefix.dev/conda-forge/noarch/pyyaml-env-tag-0.1-pyhd8ed1ab_1.conda 270 | - conda: https://prefix.dev/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda 271 | - conda: https://prefix.dev/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda 272 | - conda: https://prefix.dev/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda 273 | - conda: https://prefix.dev/conda-forge/noarch/smmap-5.0.2-pyhd8ed1ab_0.conda 274 | - conda: https://prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda 275 | - conda: https://prefix.dev/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_1.conda 276 | - conda: https://prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda 277 | - conda: https://prefix.dev/conda-forge/noarch/urllib3-2.3.0-pyhd8ed1ab_0.conda 278 | - conda: https://prefix.dev/conda-forge/linux-64/watchdog-6.0.0-py313h78bf25f_0.conda 279 | - conda: https://prefix.dev/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2 280 | - conda: https://prefix.dev/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda 281 | - conda: https://prefix.dev/conda-forge/linux-64/zstandard-0.23.0-py313h536fd9c_1.conda 282 | osx-arm64: 283 | - conda: https://prefix.dev/conda-forge/noarch/babel-2.17.0-pyhd8ed1ab_0.conda 284 | - conda: https://prefix.dev/conda-forge/noarch/backrefs-5.8-pyhd8ed1ab_0.conda 285 | - conda: https://prefix.dev/conda-forge/osx-arm64/brotli-python-1.1.0-py313h3579c5c_2.conda 286 | - conda: https://prefix.dev/conda-forge/osx-arm64/bzip2-1.0.8-h99b78c6_7.conda 287 | - conda: https://prefix.dev/conda-forge/osx-arm64/ca-certificates-2025.1.31-hf0a4a13_0.conda 288 | - conda: https://prefix.dev/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda 289 | - conda: https://prefix.dev/conda-forge/osx-arm64/cffi-1.17.1-py313hc845a76_0.conda 290 | - conda: https://prefix.dev/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda 291 | - conda: https://prefix.dev/conda-forge/noarch/click-8.1.8-pyh707e725_0.conda 292 | - conda: https://prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda 293 | - conda: https://prefix.dev/conda-forge/noarch/ghp-import-2.1.0-pyhd8ed1ab_2.conda 294 | - conda: https://prefix.dev/conda-forge/noarch/gitdb-4.0.12-pyhd8ed1ab_0.conda 295 | - conda: https://prefix.dev/conda-forge/noarch/gitpython-3.1.44-pyhff2d567_0.conda 296 | - conda: https://prefix.dev/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda 297 | - conda: https://prefix.dev/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda 298 | - conda: https://prefix.dev/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda 299 | - conda: https://prefix.dev/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda 300 | - conda: https://prefix.dev/conda-forge/noarch/importlib-metadata-8.6.1-pyha770c72_0.conda 301 | - conda: https://prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda 302 | - conda: https://prefix.dev/conda-forge/osx-arm64/libcxx-20.1.1-ha82da77_0.conda 303 | - conda: https://prefix.dev/conda-forge/osx-arm64/libexpat-2.6.4-h286801f_0.conda 304 | - conda: https://prefix.dev/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2 305 | - conda: https://prefix.dev/conda-forge/osx-arm64/liblzma-5.6.4-h39f12f2_0.conda 306 | - conda: https://prefix.dev/conda-forge/osx-arm64/libmpdec-4.0.0-h99b78c6_0.conda 307 | - conda: https://prefix.dev/conda-forge/osx-arm64/libsqlite-3.49.1-h3f77e49_2.conda 308 | - conda: https://prefix.dev/conda-forge/osx-arm64/libzlib-1.3.1-h8359307_2.conda 309 | - conda: https://prefix.dev/conda-forge/noarch/markdown-3.6-pyhd8ed1ab_0.conda 310 | - conda: https://prefix.dev/conda-forge/osx-arm64/markupsafe-3.0.2-py313ha9b7d5b_1.conda 311 | - conda: https://prefix.dev/conda-forge/noarch/mergedeep-1.3.4-pyhd8ed1ab_1.conda 312 | - conda: https://prefix.dev/conda-forge/noarch/mkdocs-1.6.1-pyhd8ed1ab_1.conda 313 | - conda: https://prefix.dev/conda-forge/noarch/mkdocs-get-deps-0.2.0-pyhd8ed1ab_1.conda 314 | - conda: https://prefix.dev/conda-forge/noarch/mkdocs-git-revision-date-localized-plugin-1.2.9-pyhd8ed1ab_0.conda 315 | - conda: https://prefix.dev/conda-forge/noarch/mkdocs-material-9.6.9-pyhd8ed1ab_0.conda 316 | - conda: https://prefix.dev/conda-forge/noarch/mkdocs-material-extensions-1.3.1-pyhd8ed1ab_1.conda 317 | - conda: https://prefix.dev/conda-forge/osx-arm64/ncurses-6.5-h5e97a16_3.conda 318 | - conda: https://prefix.dev/conda-forge/osx-arm64/openssl-3.4.1-h81ee809_0.conda 319 | - conda: https://prefix.dev/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda 320 | - conda: https://prefix.dev/conda-forge/noarch/paginate-0.5.7-pyhd8ed1ab_1.conda 321 | - conda: https://prefix.dev/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_1.conda 322 | - conda: https://prefix.dev/conda-forge/noarch/platformdirs-4.3.7-pyh29332c3_0.conda 323 | - conda: https://prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda 324 | - conda: https://prefix.dev/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda 325 | - conda: https://prefix.dev/conda-forge/noarch/pymdown-extensions-10.14.3-pyhd8ed1ab_0.conda 326 | - conda: https://prefix.dev/conda-forge/noarch/pysocks-1.7.1-pyha55dd90_7.conda 327 | - conda: https://prefix.dev/conda-forge/osx-arm64/python-3.13.2-h81fe080_101_cp313.conda 328 | - conda: https://prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda 329 | - conda: https://prefix.dev/conda-forge/osx-arm64/python_abi-3.13-5_cp313.conda 330 | - conda: https://prefix.dev/conda-forge/noarch/pytz-2025.1-pyhd8ed1ab_0.conda 331 | - conda: https://prefix.dev/conda-forge/osx-arm64/pyyaml-6.0.2-py313ha9b7d5b_2.conda 332 | - conda: https://prefix.dev/conda-forge/noarch/pyyaml-env-tag-0.1-pyhd8ed1ab_1.conda 333 | - conda: https://prefix.dev/conda-forge/osx-arm64/readline-8.2-h1d1bf99_2.conda 334 | - conda: https://prefix.dev/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda 335 | - conda: https://prefix.dev/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda 336 | - conda: https://prefix.dev/conda-forge/noarch/smmap-5.0.2-pyhd8ed1ab_0.conda 337 | - conda: https://prefix.dev/conda-forge/osx-arm64/tk-8.6.13-h5083fa2_1.conda 338 | - conda: https://prefix.dev/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_1.conda 339 | - conda: https://prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda 340 | - conda: https://prefix.dev/conda-forge/noarch/urllib3-2.3.0-pyhd8ed1ab_0.conda 341 | - conda: https://prefix.dev/conda-forge/osx-arm64/watchdog-6.0.0-py313h90d716c_0.conda 342 | - conda: https://prefix.dev/conda-forge/osx-arm64/yaml-0.2.5-h3422bc3_2.tar.bz2 343 | - conda: https://prefix.dev/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda 344 | - conda: https://prefix.dev/conda-forge/osx-arm64/zstandard-0.23.0-py313h90d716c_1.conda 345 | win-64: 346 | - conda: https://prefix.dev/conda-forge/noarch/babel-2.17.0-pyhd8ed1ab_0.conda 347 | - conda: https://prefix.dev/conda-forge/noarch/backrefs-5.8-pyhd8ed1ab_0.conda 348 | - conda: https://prefix.dev/conda-forge/win-64/brotli-python-1.1.0-py313h5813708_2.conda 349 | - conda: https://prefix.dev/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda 350 | - conda: https://prefix.dev/conda-forge/win-64/ca-certificates-2025.1.31-h56e8100_0.conda 351 | - conda: https://prefix.dev/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda 352 | - conda: https://prefix.dev/conda-forge/win-64/cffi-1.17.1-py313ha7868ed_0.conda 353 | - conda: https://prefix.dev/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda 354 | - conda: https://prefix.dev/conda-forge/noarch/click-8.1.8-pyh7428d3b_0.conda 355 | - conda: https://prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda 356 | - conda: https://prefix.dev/conda-forge/noarch/ghp-import-2.1.0-pyhd8ed1ab_2.conda 357 | - conda: https://prefix.dev/conda-forge/noarch/gitdb-4.0.12-pyhd8ed1ab_0.conda 358 | - conda: https://prefix.dev/conda-forge/noarch/gitpython-3.1.44-pyhff2d567_0.conda 359 | - conda: https://prefix.dev/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda 360 | - conda: https://prefix.dev/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda 361 | - conda: https://prefix.dev/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda 362 | - conda: https://prefix.dev/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda 363 | - conda: https://prefix.dev/conda-forge/noarch/importlib-metadata-8.6.1-pyha770c72_0.conda 364 | - conda: https://prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda 365 | - conda: https://prefix.dev/conda-forge/win-64/libexpat-2.6.4-he0c23c2_0.conda 366 | - conda: https://prefix.dev/conda-forge/win-64/libffi-3.4.6-h537db12_0.conda 367 | - conda: https://prefix.dev/conda-forge/win-64/liblzma-5.6.4-h2466b09_0.conda 368 | - conda: https://prefix.dev/conda-forge/win-64/libmpdec-4.0.0-h2466b09_0.conda 369 | - conda: https://prefix.dev/conda-forge/win-64/libsqlite-3.49.1-h67fdade_2.conda 370 | - conda: https://prefix.dev/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda 371 | - conda: https://prefix.dev/conda-forge/noarch/markdown-3.6-pyhd8ed1ab_0.conda 372 | - conda: https://prefix.dev/conda-forge/win-64/markupsafe-3.0.2-py313hb4c8b1a_1.conda 373 | - conda: https://prefix.dev/conda-forge/noarch/mergedeep-1.3.4-pyhd8ed1ab_1.conda 374 | - conda: https://prefix.dev/conda-forge/noarch/mkdocs-1.6.1-pyhd8ed1ab_1.conda 375 | - conda: https://prefix.dev/conda-forge/noarch/mkdocs-get-deps-0.2.0-pyhd8ed1ab_1.conda 376 | - conda: https://prefix.dev/conda-forge/noarch/mkdocs-git-revision-date-localized-plugin-1.2.9-pyhd8ed1ab_0.conda 377 | - conda: https://prefix.dev/conda-forge/noarch/mkdocs-material-9.6.9-pyhd8ed1ab_0.conda 378 | - conda: https://prefix.dev/conda-forge/noarch/mkdocs-material-extensions-1.3.1-pyhd8ed1ab_1.conda 379 | - conda: https://prefix.dev/conda-forge/win-64/openssl-3.4.1-ha4e3fda_0.conda 380 | - conda: https://prefix.dev/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda 381 | - conda: https://prefix.dev/conda-forge/noarch/paginate-0.5.7-pyhd8ed1ab_1.conda 382 | - conda: https://prefix.dev/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_1.conda 383 | - conda: https://prefix.dev/conda-forge/noarch/platformdirs-4.3.7-pyh29332c3_0.conda 384 | - conda: https://prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda 385 | - conda: https://prefix.dev/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda 386 | - conda: https://prefix.dev/conda-forge/noarch/pymdown-extensions-10.14.3-pyhd8ed1ab_0.conda 387 | - conda: https://prefix.dev/conda-forge/noarch/pysocks-1.7.1-pyh09c184e_7.conda 388 | - conda: https://prefix.dev/conda-forge/win-64/python-3.13.2-h261c0b1_101_cp313.conda 389 | - conda: https://prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda 390 | - conda: https://prefix.dev/conda-forge/win-64/python_abi-3.13-5_cp313.conda 391 | - conda: https://prefix.dev/conda-forge/noarch/pytz-2025.1-pyhd8ed1ab_0.conda 392 | - conda: https://prefix.dev/conda-forge/win-64/pyyaml-6.0.2-py313hb4c8b1a_2.conda 393 | - conda: https://prefix.dev/conda-forge/noarch/pyyaml-env-tag-0.1-pyhd8ed1ab_1.conda 394 | - conda: https://prefix.dev/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda 395 | - conda: https://prefix.dev/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda 396 | - conda: https://prefix.dev/conda-forge/noarch/smmap-5.0.2-pyhd8ed1ab_0.conda 397 | - conda: https://prefix.dev/conda-forge/win-64/tk-8.6.13-h5226925_1.conda 398 | - conda: https://prefix.dev/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_1.conda 399 | - conda: https://prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda 400 | - conda: https://prefix.dev/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_1.conda 401 | - conda: https://prefix.dev/conda-forge/noarch/urllib3-2.3.0-pyhd8ed1ab_0.conda 402 | - conda: https://prefix.dev/conda-forge/win-64/vc-14.3-hbf610ac_24.conda 403 | - conda: https://prefix.dev/conda-forge/win-64/vc14_runtime-14.42.34438-hfd919c2_24.conda 404 | - conda: https://prefix.dev/conda-forge/win-64/vs2015_runtime-14.42.34438-h7142326_24.conda 405 | - conda: https://prefix.dev/conda-forge/win-64/watchdog-6.0.0-py313hfa70ccb_0.conda 406 | - conda: https://prefix.dev/conda-forge/noarch/win_inet_pton-1.1.0-pyh7428d3b_8.conda 407 | - conda: https://prefix.dev/conda-forge/win-64/yaml-0.2.5-h8ffe710_2.tar.bz2 408 | - conda: https://prefix.dev/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda 409 | - conda: https://prefix.dev/conda-forge/win-64/zstandard-0.23.0-py313ha7868ed_1.conda 410 | packages: 411 | - conda: https://prefix.dev/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 412 | sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726 413 | md5: d7c89558ba9fa0495403155b64376d81 414 | license: None 415 | size: 2562 416 | timestamp: 1578324546067 417 | - conda: https://prefix.dev/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 418 | build_number: 16 419 | sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22 420 | md5: 73aaf86a425cc6e73fcf236a5a46396d 421 | depends: 422 | - _libgcc_mutex 0.1 conda_forge 423 | - libgomp >=7.5.0 424 | constrains: 425 | - openmp_impl 9999 426 | license: BSD-3-Clause 427 | license_family: BSD 428 | size: 23621 429 | timestamp: 1650670423406 430 | - conda: https://prefix.dev/conda-forge/win-64/_openmp_mutex-4.5-2_gnu.conda 431 | build_number: 8 432 | sha256: 1a62cd1f215fe0902e7004089693a78347a30ad687781dfda2289cab000e652d 433 | md5: 37e16618af5c4851a3f3d66dd0e11141 434 | depends: 435 | - libgomp >=7.5.0 436 | - libwinpthread >=12.0.0.r2.ggc561118da 437 | constrains: 438 | - openmp_impl 9999 439 | - msys2-conda-epoch <0.0a0 440 | license: BSD-3-Clause 441 | license_family: BSD 442 | size: 49468 443 | timestamp: 1718213032772 444 | - conda: https://prefix.dev/conda-forge/noarch/babel-2.17.0-pyhd8ed1ab_0.conda 445 | sha256: 1c656a35800b7f57f7371605bc6507c8d3ad60fbaaec65876fce7f73df1fc8ac 446 | md5: 0a01c169f0ab0f91b26e77a3301fbfe4 447 | depends: 448 | - python >=3.9 449 | - pytz >=2015.7 450 | license: BSD-3-Clause 451 | license_family: BSD 452 | size: 6938256 453 | timestamp: 1738490268466 454 | - conda: https://prefix.dev/conda-forge/noarch/backrefs-5.8-pyhd8ed1ab_0.conda 455 | sha256: 3a0af23d357a07154645c41d035a4efbd15b7a642db397fa9ea0193fd58ae282 456 | md5: b16e2595d3a9042aa9d570375978835f 457 | depends: 458 | - python >=3.9 459 | license: MIT 460 | license_family: MIT 461 | size: 143810 462 | timestamp: 1740887689966 463 | - conda: https://prefix.dev/conda-forge/linux-64/binutils-2.43-h4852527_4.conda 464 | sha256: 99a94eead18e7704225ac43682cce3f316fd33bc483749c093eaadef1d31de75 465 | md5: 29782348a527eda3ecfc673109d28e93 466 | depends: 467 | - binutils_impl_linux-64 >=2.43,<2.44.0a0 468 | license: GPL-3.0-only 469 | license_family: GPL 470 | size: 34646 471 | timestamp: 1740155498138 472 | - conda: https://prefix.dev/conda-forge/linux-64/binutils_impl_linux-64-2.43-h4bf12b8_4.conda 473 | sha256: 194d771be287dc973f6057c0747010ce28adf960f38d6e03ce3e828d7b74833e 474 | md5: ef67db625ad0d2dce398837102f875ed 475 | depends: 476 | - ld_impl_linux-64 2.43 h712a8e2_4 477 | - sysroot_linux-64 478 | license: GPL-3.0-only 479 | license_family: GPL 480 | size: 6111717 481 | timestamp: 1740155471052 482 | - conda: https://prefix.dev/conda-forge/linux-64/binutils_linux-64-2.43-h4852527_4.conda 483 | sha256: fe662a038dc14334617940f42ede9ba26d4160771255057cb14fb1a81ee12ac1 484 | md5: c87e146f5b685672d4aa6b527c6d3b5e 485 | depends: 486 | - binutils_impl_linux-64 2.43 h4bf12b8_4 487 | license: GPL-3.0-only 488 | license_family: GPL 489 | size: 35657 490 | timestamp: 1740155500723 491 | - conda: https://prefix.dev/conda-forge/linux-64/brotli-python-1.1.0-py313h46c70d0_2.conda 492 | sha256: da92e5e904465fce33a7a55658b13caa5963cc463c430356373deeda8b2dbc46 493 | md5: f6bb3742e17a4af0dc3c8ca942683ef6 494 | depends: 495 | - __glibc >=2.17,<3.0.a0 496 | - libgcc >=13 497 | - libstdcxx >=13 498 | - python >=3.13.0rc1,<3.14.0a0 499 | - python_abi 3.13.* *_cp313 500 | constrains: 501 | - libbrotlicommon 1.1.0 hb9d3cd8_2 502 | license: MIT 503 | license_family: MIT 504 | size: 350424 505 | timestamp: 1725267803672 506 | - conda: https://prefix.dev/conda-forge/osx-arm64/brotli-python-1.1.0-py313h3579c5c_2.conda 507 | sha256: b0a66572f44570ee7cc960e223ca8600d26bb20cfb76f16b95adf13ec4ee3362 508 | md5: f3bee63c7b5d041d841aff05785c28b7 509 | depends: 510 | - __osx >=11.0 511 | - libcxx >=17 512 | - python >=3.13.0rc1,<3.14.0a0 513 | - python >=3.13.0rc1,<3.14.0a0 *_cp313 514 | - python_abi 3.13.* *_cp313 515 | constrains: 516 | - libbrotlicommon 1.1.0 hd74edd7_2 517 | license: MIT 518 | license_family: MIT 519 | size: 339067 520 | timestamp: 1725268603536 521 | - conda: https://prefix.dev/conda-forge/win-64/brotli-python-1.1.0-py313h5813708_2.conda 522 | sha256: e89803147849d429f1ba3eec880b487c2cc4cac48a221079001a2ab1216f3709 523 | md5: c1a5d95bf18940d2b1d12f7bf2fb589b 524 | depends: 525 | - python >=3.13.0rc1,<3.14.0a0 526 | - python_abi 3.13.* *_cp313 527 | - ucrt >=10.0.20348.0 528 | - vc >=14.2,<15 529 | - vc14_runtime >=14.29.30139 530 | constrains: 531 | - libbrotlicommon 1.1.0 h2466b09_2 532 | license: MIT 533 | license_family: MIT 534 | size: 322309 535 | timestamp: 1725268431915 536 | - conda: https://prefix.dev/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda 537 | sha256: 5ced96500d945fb286c9c838e54fa759aa04a7129c59800f0846b4335cee770d 538 | md5: 62ee74e96c5ebb0af99386de58cf9553 539 | depends: 540 | - __glibc >=2.17,<3.0.a0 541 | - libgcc-ng >=12 542 | license: bzip2-1.0.6 543 | license_family: BSD 544 | size: 252783 545 | timestamp: 1720974456583 546 | - conda: https://prefix.dev/conda-forge/osx-arm64/bzip2-1.0.8-h99b78c6_7.conda 547 | sha256: adfa71f158cbd872a36394c56c3568e6034aa55c623634b37a4836bd036e6b91 548 | md5: fc6948412dbbbe9a4c9ddbbcfe0a79ab 549 | depends: 550 | - __osx >=11.0 551 | license: bzip2-1.0.6 552 | license_family: BSD 553 | size: 122909 554 | timestamp: 1720974522888 555 | - conda: https://prefix.dev/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda 556 | sha256: 35a5dad92e88fdd7fc405e864ec239486f4f31eec229e31686e61a140a8e573b 557 | md5: 276e7ffe9ffe39688abc665ef0f45596 558 | depends: 559 | - ucrt >=10.0.20348.0 560 | - vc >=14.2,<15 561 | - vc14_runtime >=14.29.30139 562 | license: bzip2-1.0.6 563 | license_family: BSD 564 | size: 54927 565 | timestamp: 1720974860185 566 | - conda: https://prefix.dev/conda-forge/linux-64/c-ares-1.34.4-hb9d3cd8_0.conda 567 | sha256: d4f28d87b6339b94f74762c0076e29c8ef8ddfff51a564a92da2843573c18320 568 | md5: e2775acf57efd5af15b8e3d1d74d72d3 569 | depends: 570 | - __glibc >=2.17,<3.0.a0 571 | - libgcc >=13 572 | license: MIT 573 | license_family: MIT 574 | size: 206085 575 | timestamp: 1734208189009 576 | - conda: https://prefix.dev/conda-forge/osx-arm64/c-ares-1.34.4-h5505292_0.conda 577 | sha256: 09c0c8476e50b2955f474a4a1c17c4c047dd52993b5366b6ea8e968e583b921f 578 | md5: c1c999a38a4303b29d75c636eaa13cf9 579 | depends: 580 | - __osx >=11.0 581 | license: MIT 582 | license_family: MIT 583 | size: 179496 584 | timestamp: 1734208291879 585 | - conda: https://prefix.dev/conda-forge/linux-64/c-compiler-1.9.0-h2b85faf_0.conda 586 | sha256: 1e4b86b0f3d4ce9f3787b8f62e9f2c5683287f19593131640eed01cbdad38168 587 | md5: 3cb814f83f1f71ac1985013697f80cc1 588 | depends: 589 | - binutils 590 | - gcc 591 | - gcc_linux-64 13.* 592 | license: BSD-3-Clause 593 | license_family: BSD 594 | size: 6196 595 | timestamp: 1736437002021 596 | - conda: https://prefix.dev/conda-forge/osx-arm64/c-compiler-1.9.0-hdf49b6b_0.conda 597 | sha256: c9d0082bd4a122a7cace693d45d58b28ce0d0dc1ca9c91510fd4b388e39e8f72 598 | md5: c3f1477cd460f2d20f453dc3597c917c 599 | depends: 600 | - cctools >=949.0.1 601 | - clang_osx-arm64 18.* 602 | - ld64 >=530 603 | - llvm-openmp 604 | license: BSD-3-Clause 605 | license_family: BSD 606 | size: 6244 607 | timestamp: 1736437056672 608 | - conda: https://prefix.dev/conda-forge/win-64/c-compiler-1.9.0-hcfcfb64_0.conda 609 | sha256: fa07ffc464b5a104a4d504c1a0a684ae383a67bef907d61697f22d48340c46cd 610 | md5: 7d9b49b7ef31f9a23bdbc7ea0dd9996e 611 | depends: 612 | - vs2019_win-64 613 | license: BSD-3-Clause 614 | license_family: BSD 615 | size: 6481 616 | timestamp: 1736437097803 617 | - conda: https://prefix.dev/conda-forge/linux-64/ca-certificates-2025.1.31-hbcca054_0.conda 618 | sha256: bf832198976d559ab44d6cdb315642655547e26d826e34da67cbee6624cda189 619 | md5: 19f3a56f68d2fd06c516076bff482c52 620 | license: ISC 621 | size: 158144 622 | timestamp: 1738298224464 623 | - conda: https://prefix.dev/conda-forge/osx-arm64/ca-certificates-2025.1.31-hf0a4a13_0.conda 624 | sha256: 7e12816618173fe70f5c638b72adf4bfd4ddabf27794369bb17871c5bb75b9f9 625 | md5: 3569d6a9141adc64d2fe4797f3289e06 626 | license: ISC 627 | size: 158425 628 | timestamp: 1738298167688 629 | - conda: https://prefix.dev/conda-forge/win-64/ca-certificates-2025.1.31-h56e8100_0.conda 630 | sha256: 1bedccdf25a3bd782d6b0e57ddd97cdcda5501716009f2de4479a779221df155 631 | md5: 5304a31607974dfc2110dfbb662ed092 632 | license: ISC 633 | size: 158690 634 | timestamp: 1738298232550 635 | - conda: https://prefix.dev/conda-forge/linux-64/ccache-4.11.2-hd714d17_0.conda 636 | sha256: 360f578a85e049dac2211c0b719860e6df69fb1748a979542cc33e1697f89c90 637 | md5: 35ae7ce74089ab05fdb1cb9746c0fbe4 638 | depends: 639 | - libstdcxx >=13 640 | - libgcc >=13 641 | - __glibc >=2.17,<3.0.a0 642 | - zstd >=1.5.7,<1.6.0a0 643 | - libhiredis >=1.0.2,<1.1.0a0 644 | license: GPL-3.0-only 645 | license_family: GPL 646 | size: 708867 647 | timestamp: 1742708058758 648 | - conda: https://prefix.dev/conda-forge/osx-arm64/ccache-4.11.2-h5a0df06_0.conda 649 | sha256: 6d8a5b4915efba30be07693e7f526dfb140d9fe2803c0fad2bc4dc10f6b19302 650 | md5: 014220528facf6aac0429aad70e197e1 651 | depends: 652 | - __osx >=11.0 653 | - libcxx >=18 654 | - libhiredis >=1.0.2,<1.1.0a0 655 | - zstd >=1.5.7,<1.6.0a0 656 | license: GPL-3.0-only 657 | license_family: GPL 658 | size: 564020 659 | timestamp: 1742708125853 660 | - conda: https://prefix.dev/conda-forge/win-64/ccache-4.11.2-h65df0e8_0.conda 661 | sha256: aecf557e6f4daac35fdcf3cd6b38be9e008c13b9249c84926ffe5762dca62e9f 662 | md5: e0d1b133c6e9b4ed80f6c8c7a20e4436 663 | depends: 664 | - ucrt 665 | - vc >=14.2,<15 666 | - vc14_runtime >=14.29.30139 667 | - ucrt >=10.0.20348.0 668 | - vc >=14.2,<15 669 | - vc14_runtime >=14.29.30139 670 | - ucrt >=10.0.20348.0 671 | - zstd >=1.5.7,<1.6.0a0 672 | - libhiredis >=1.0.2,<1.1.0a0 673 | license: GPL-3.0-only 674 | license_family: GPL 675 | size: 663504 676 | timestamp: 1742708103663 677 | - conda: https://prefix.dev/conda-forge/osx-arm64/cctools-1010.6-hb4fb6a3_4.conda 678 | sha256: 02f7ab57ddf0bfe291dac3a3e59ab7c65a3ae0a3a086440a7e2666b0e862b922 679 | md5: 2fecdd2278ff651073e9373f32151e41 680 | depends: 681 | - cctools_osx-arm64 1010.6 h3b4f5d3_4 682 | - ld64 951.9 h4c6efb1_4 683 | - libllvm18 >=18.1.8,<18.2.0a0 684 | license: APSL-2.0 685 | license_family: Other 686 | size: 21539 687 | timestamp: 1742512631773 688 | - conda: https://prefix.dev/conda-forge/osx-arm64/cctools_osx-arm64-1010.6-h3b4f5d3_4.conda 689 | sha256: e223912a174344cddfe7ea8a598d091b18e5defbc63c2037c3e42165654b09dc 690 | md5: 57ce83eec79eff26016ae3e1af07e431 691 | depends: 692 | - __osx >=11.0 693 | - ld64_osx-arm64 >=951.9,<951.10.0a0 694 | - libcxx 695 | - libllvm18 >=18.1.8,<18.2.0a0 696 | - libzlib >=1.3.1,<2.0a0 697 | - llvm-tools 18.1.* 698 | - sigtool 699 | constrains: 700 | - clang 18.1.* 701 | - cctools 1010.6.* 702 | - ld64 951.9.* 703 | license: APSL-2.0 704 | license_family: Other 705 | size: 1104264 706 | timestamp: 1742512583707 707 | - conda: https://prefix.dev/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda 708 | sha256: 42a78446da06a2568cb13e69be3355169fbd0ea424b00fc80b7d840f5baaacf3 709 | md5: c207fa5ac7ea99b149344385a9c0880d 710 | depends: 711 | - python >=3.9 712 | license: ISC 713 | size: 162721 714 | timestamp: 1739515973129 715 | - conda: https://prefix.dev/conda-forge/linux-64/cffi-1.17.1-py313hfab6e84_0.conda 716 | sha256: 73cd6199b143a8a6cbf733ce124ed57defc1b9a7eab9b10fd437448caf8eaa45 717 | md5: ce6386a5892ef686d6d680c345c40ad1 718 | depends: 719 | - __glibc >=2.17,<3.0.a0 720 | - libffi >=3.4,<4.0a0 721 | - libgcc >=13 722 | - pycparser 723 | - python >=3.13.0rc1,<3.14.0a0 724 | - python_abi 3.13.* *_cp313 725 | license: MIT 726 | license_family: MIT 727 | size: 295514 728 | timestamp: 1725560706794 729 | - conda: https://prefix.dev/conda-forge/osx-arm64/cffi-1.17.1-py313hc845a76_0.conda 730 | sha256: 50650dfa70ccf12b9c4a117d7ef0b41895815bb7328d830d667a6ba3525b60e8 731 | md5: 6d24d5587a8615db33c961a4ca0a8034 732 | depends: 733 | - __osx >=11.0 734 | - libffi >=3.4,<4.0a0 735 | - pycparser 736 | - python >=3.13.0rc1,<3.14.0a0 737 | - python >=3.13.0rc1,<3.14.0a0 *_cp313 738 | - python_abi 3.13.* *_cp313 739 | license: MIT 740 | license_family: MIT 741 | size: 282115 742 | timestamp: 1725560759157 743 | - conda: https://prefix.dev/conda-forge/win-64/cffi-1.17.1-py313ha7868ed_0.conda 744 | sha256: b19f581fe423858f1f477c52e10978be324c55ebf2e418308d30d013f4a476ff 745 | md5: 519a29d7ac273f8c165efc0af099da42 746 | depends: 747 | - pycparser 748 | - python >=3.13.0rc1,<3.14.0a0 749 | - python_abi 3.13.* *_cp313 750 | - ucrt >=10.0.20348.0 751 | - vc >=14.2,<15 752 | - vc14_runtime >=14.29.30139 753 | license: MIT 754 | license_family: MIT 755 | size: 291828 756 | timestamp: 1725561211547 757 | - conda: https://prefix.dev/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda 758 | sha256: 4e0ee91b97e5de3e74567bdacea27f0139709fceca4db8adffbe24deffccb09b 759 | md5: e83a31202d1c0a000fce3e9cf3825875 760 | depends: 761 | - python >=3.9 762 | license: MIT 763 | license_family: MIT 764 | size: 47438 765 | timestamp: 1735929811779 766 | - conda: https://prefix.dev/conda-forge/osx-arm64/clang-18.1.8-default_h474c9e2_8.conda 767 | sha256: 42965afb7a7a2af44b164d079b256127a9d9580e756cce08f8a00836d1e82952 768 | md5: 2c01e8675aa80bf6a25494b76005ffdc 769 | depends: 770 | - clang-18 18.1.8 default_hf90f093_8 771 | license: Apache-2.0 WITH LLVM-exception 772 | license_family: Apache 773 | size: 76217 774 | timestamp: 1742266196177 775 | - conda: https://prefix.dev/conda-forge/win-64/clang-19.1.7-default_hec7ea82_2.conda 776 | sha256: 90298353c11d02738c44b7433ba6af16bb33aca8ebdff224e7dca620d22ef133 777 | md5: 7ba4cfb1d3c050ac1e1326bb5a23ed94 778 | depends: 779 | - clang-19 19.1.7 default_hec7ea82_2 780 | - libzlib >=1.3.1,<2.0a0 781 | - ucrt >=10.0.20348.0 782 | - vc >=14.2,<15 783 | - vc14_runtime >=14.29.30139 784 | - zstd >=1.5.7,<1.6.0a0 785 | license: Apache-2.0 WITH LLVM-exception 786 | license_family: Apache 787 | size: 102373735 788 | timestamp: 1742319661275 789 | - conda: https://prefix.dev/conda-forge/osx-arm64/clang-18-18.1.8-default_hf90f093_8.conda 790 | sha256: 984da230a6197273060fcdb4c97e7d2430f8393547a478ac4e8b32d33a64c89c 791 | md5: 8d92b636afa379ae7845575d87ae1ad0 792 | depends: 793 | - __osx >=11.0 794 | - libclang-cpp18.1 18.1.8 default_hf90f093_8 795 | - libcxx >=18.1.8 796 | - libllvm18 >=18.1.8,<18.2.0a0 797 | license: Apache-2.0 WITH LLVM-exception 798 | license_family: Apache 799 | size: 811547 800 | timestamp: 1742266095150 801 | - conda: https://prefix.dev/conda-forge/win-64/clang-19-19.1.7-default_hec7ea82_2.conda 802 | sha256: 770e6b248996cabf1ed9f6bd963fbd87169fc8ef5c0f6f151de70759e2ee926c 803 | md5: de39ea51affb6921575048a037013cb0 804 | depends: 805 | - libzlib >=1.3.1,<2.0a0 806 | - ucrt >=10.0.20348.0 807 | - vc >=14.2,<15 808 | - vc14_runtime >=14.29.30139 809 | - zstd >=1.5.7,<1.6.0a0 810 | license: Apache-2.0 WITH LLVM-exception 811 | license_family: Apache 812 | size: 34851751 813 | timestamp: 1742319493826 814 | - conda: https://prefix.dev/conda-forge/osx-arm64/clang_impl_osx-arm64-18.1.8-h2ae9ea5_24.conda 815 | sha256: a4c7e5be890ef35f88ee982ff400286a3e1f2d244fd32ca3e99b323ed3a8e161 816 | md5: 731d426a8f1944b0bd6067cddb226b2d 817 | depends: 818 | - cctools_osx-arm64 819 | - clang 18.1.8.* 820 | - compiler-rt 18.1.8.* 821 | - ld64_osx-arm64 822 | - llvm-tools 18.1.8.* 823 | license: BSD-3-Clause 824 | license_family: BSD 825 | size: 18421 826 | timestamp: 1742540369820 827 | - conda: https://prefix.dev/conda-forge/osx-arm64/clang_osx-arm64-18.1.8-h07b0088_24.conda 828 | sha256: d5faf5ad36c506a1b2e2834531bc217ee8831a59238a7afde724a66fbabb6d9c 829 | md5: de649d74cfd4b57b40668fbeb25441be 830 | depends: 831 | - clang_impl_osx-arm64 18.1.8 h2ae9ea5_24 832 | license: BSD-3-Clause 833 | license_family: BSD 834 | size: 21584 835 | timestamp: 1742540373638 836 | - conda: https://prefix.dev/conda-forge/osx-arm64/clangxx-18.1.8-default_h1ffe849_8.conda 837 | sha256: c002e7ff1511a0278c693fb05d8c6f729fda4e76b65faef91bb6721b93b24d4b 838 | md5: 6f88136be9a2b5e5e6e7bb69c35d8180 839 | depends: 840 | - clang 18.1.8 default_h474c9e2_8 841 | - libcxx-devel 18.1.8.* 842 | license: Apache-2.0 WITH LLVM-exception 843 | license_family: Apache 844 | size: 76359 845 | timestamp: 1742266208123 846 | - conda: https://prefix.dev/conda-forge/osx-arm64/clangxx_impl_osx-arm64-18.1.8-h555f467_24.conda 847 | sha256: e773469d2a6299307ccf1104cfc082745e14833385d98392c927bdaa4c355bc0 848 | md5: 32e1d91f44681b97571ee2a6ef5fbdea 849 | depends: 850 | - clang_osx-arm64 18.1.8 h07b0088_24 851 | - clangxx 18.1.8.* 852 | - libcxx >=18 853 | - libllvm18 >=18.1.8,<18.2.0a0 854 | license: BSD-3-Clause 855 | license_family: BSD 856 | size: 18451 857 | timestamp: 1742540405771 858 | - conda: https://prefix.dev/conda-forge/osx-arm64/clangxx_osx-arm64-18.1.8-h07b0088_24.conda 859 | sha256: 39566229d6a47513b73dfc7c888176a6706d45533f84dbaf2042f91af6f1b4f8 860 | md5: b9b3c5e969fa6a46598d5f70fd293c8d 861 | depends: 862 | - clang_osx-arm64 18.1.8 h07b0088_24 863 | - clangxx_impl_osx-arm64 18.1.8 h555f467_24 864 | license: BSD-3-Clause 865 | license_family: BSD 866 | size: 19975 867 | timestamp: 1742540410050 868 | - conda: https://prefix.dev/conda-forge/noarch/click-8.1.8-pyh707e725_0.conda 869 | sha256: c920d23cd1fcf565031c679adb62d848af60d6fbb0edc2d50ba475cea4f0d8ab 870 | md5: f22f4d4970e09d68a10b922cbb0408d3 871 | depends: 872 | - __unix 873 | - python >=3.9 874 | license: BSD-3-Clause 875 | license_family: BSD 876 | size: 84705 877 | timestamp: 1734858922844 878 | - conda: https://prefix.dev/conda-forge/noarch/click-8.1.8-pyh7428d3b_0.conda 879 | sha256: c889ed359ae47eead4ffe8927b7206b22c55e67d6e74a9044c23736919d61e8d 880 | md5: 90e5571556f7a45db92ee51cb8f97af6 881 | depends: 882 | - __win 883 | - colorama 884 | - python >=3.9 885 | license: BSD-3-Clause 886 | license_family: BSD 887 | size: 85169 888 | timestamp: 1734858972635 889 | - conda: https://prefix.dev/conda-forge/linux-64/cmake-3.31.6-h74e3db0_0.conda 890 | sha256: 82372b404995a92fecfef38e9f1cb4977e71b785a728db5a9ed6f1aec49d547c 891 | md5: d6e0e094315ee3e99ca153663e7fa669 892 | depends: 893 | - __glibc >=2.17,<3.0.a0 894 | - bzip2 >=1.0.8,<2.0a0 895 | - libcurl >=8.12.1,<9.0a0 896 | - libexpat >=2.6.4,<3.0a0 897 | - libgcc >=13 898 | - liblzma >=5.6.4,<6.0a0 899 | - libstdcxx >=13 900 | - libuv >=1.50.0,<2.0a0 901 | - libzlib >=1.3.1,<2.0a0 902 | - ncurses >=6.5,<7.0a0 903 | - rhash >=1.4.5,<2.0a0 904 | - zstd >=1.5.7,<1.6.0a0 905 | license: BSD-3-Clause 906 | license_family: BSD 907 | size: 20376244 908 | timestamp: 1740467420604 909 | - conda: https://prefix.dev/conda-forge/osx-arm64/cmake-3.31.6-ha25475f_0.conda 910 | sha256: d71e84b6b7000323d2a394c3e01cfd35df3421741e8b4af7852e8400c2604574 911 | md5: 3a3bbf1de0a6d99658f4c1b63ad40d21 912 | depends: 913 | - __osx >=11.0 914 | - bzip2 >=1.0.8,<2.0a0 915 | - libcurl >=8.12.1,<9.0a0 916 | - libcxx >=18 917 | - libexpat >=2.6.4,<3.0a0 918 | - liblzma >=5.6.4,<6.0a0 919 | - libuv >=1.50.0,<2.0a0 920 | - libzlib >=1.3.1,<2.0a0 921 | - ncurses >=6.5,<7.0a0 922 | - rhash >=1.4.5,<2.0a0 923 | - zstd >=1.5.7,<1.6.0a0 924 | license: BSD-3-Clause 925 | license_family: BSD 926 | size: 16507414 927 | timestamp: 1740467905288 928 | - conda: https://prefix.dev/conda-forge/win-64/cmake-3.31.6-hff78f93_0.conda 929 | sha256: 12fea0a0f8e0b6eaccdb919d3039e4f8da2889bdfee0941a4c160913105adc33 930 | md5: 9221eb014513c974692d81d0db4b486c 931 | depends: 932 | - bzip2 >=1.0.8,<2.0a0 933 | - libcurl >=8.12.1,<9.0a0 934 | - libexpat >=2.6.4,<3.0a0 935 | - liblzma >=5.6.4,<6.0a0 936 | - libuv >=1.50.0,<2.0a0 937 | - libzlib >=1.3.1,<2.0a0 938 | - ucrt >=10.0.20348.0 939 | - vc14_runtime >=14.29.30139 940 | - zstd >=1.5.7,<1.6.0a0 941 | license: BSD-3-Clause 942 | license_family: BSD 943 | size: 14271971 944 | timestamp: 1740468587344 945 | - conda: https://prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda 946 | sha256: ab29d57dc70786c1269633ba3dff20288b81664d3ff8d21af995742e2bb03287 947 | md5: 962b9857ee8e7018c22f2776ffa0b2d7 948 | depends: 949 | - python >=3.9 950 | license: BSD-3-Clause 951 | license_family: BSD 952 | size: 27011 953 | timestamp: 1733218222191 954 | - conda: https://prefix.dev/conda-forge/osx-arm64/compiler-rt-18.1.8-h856b3c1_1.conda 955 | sha256: 41e47093d3a03f0f81f26f66e5652a5b5c58589eafe59fbf67e8d60a3b30cdf7 956 | md5: 1f40b72021aa770bb56ffefe298f02a7 957 | depends: 958 | - __osx >=11.0 959 | - clang 18.1.8.* 960 | - clangxx 18.1.8.* 961 | - compiler-rt_osx-arm64 18.1.8.* 962 | license: Apache-2.0 WITH LLVM-exception 963 | license_family: APACHE 964 | size: 95451 965 | timestamp: 1725258159749 966 | - conda: https://prefix.dev/conda-forge/win-64/compiler-rt-19.1.7-hc790b64_0.conda 967 | sha256: a7bb7bd9408f98fc8dd4436bd3a6b572490d5cb4dd42beb73ef159b20eb76181 968 | md5: 9468ee895bd033578c9333573503e8ac 969 | depends: 970 | - clang 19.1.7.* 971 | - compiler-rt_win-64 19.1.7.* 972 | - ucrt >=10.0.20348.0 973 | - vc >=14.2,<15 974 | - vc14_runtime >=14.29.30139 975 | license: Apache-2.0 WITH LLVM-exception 976 | license_family: APACHE 977 | size: 4369203 978 | timestamp: 1736977298342 979 | - conda: https://prefix.dev/conda-forge/noarch/compiler-rt_osx-arm64-18.1.8-h832e737_1.conda 980 | sha256: 97cc5d6a54dd159ddd2789a68245c6651915071b79f674e83dbc660f3ed760a9 981 | md5: f158d25465221c90668482b69737fee6 982 | depends: 983 | - clang 18.1.8.* 984 | - clangxx 18.1.8.* 985 | constrains: 986 | - compiler-rt 18.1.8 987 | license: Apache-2.0 WITH LLVM-exception 988 | license_family: APACHE 989 | size: 10583287 990 | timestamp: 1725258124186 991 | - conda: https://prefix.dev/conda-forge/noarch/compiler-rt_win-64-19.1.7-hc790b64_0.conda 992 | sha256: 98d70041349074dab8e1e0aac79ed847884a469de4761dc9d1fb4f429234f52b 993 | md5: a3b14c386fb32a11501f1c1f574eb71c 994 | depends: 995 | - clang 19.1.7.* 996 | constrains: 997 | - compiler-rt 19.1.7 998 | - clangxx 19.1.7 999 | license: Apache-2.0 WITH LLVM-exception 1000 | license_family: APACHE 1001 | size: 5110874 1002 | timestamp: 1736977209207 1003 | - conda: https://prefix.dev/conda-forge/linux-64/compilers-1.9.0-ha770c72_0.conda 1004 | sha256: 97d90aeba05089bbf3124030ebd96890754b8c8dc2c880490d38a3075941de28 1005 | md5: 5859096e397aba423340d0bbbb11ec64 1006 | depends: 1007 | - c-compiler 1.9.0 h2b85faf_0 1008 | - cxx-compiler 1.9.0 h1a2810e_0 1009 | - fortran-compiler 1.9.0 h36df796_0 1010 | license: BSD-3-Clause 1011 | license_family: BSD 1012 | size: 7014 1013 | timestamp: 1736437002774 1014 | - conda: https://prefix.dev/conda-forge/osx-arm64/compilers-1.9.0-hce30654_0.conda 1015 | sha256: 12bcd4675016ba1379384fdf18d689103b86ca79577b6dd8ecfbb7ef43d98f6b 1016 | md5: 76405bf98c08d34a4846cdd0a36e9db1 1017 | depends: 1018 | - c-compiler 1.9.0 hdf49b6b_0 1019 | - cxx-compiler 1.9.0 hba80287_0 1020 | - fortran-compiler 1.9.0 h5692697_0 1021 | license: BSD-3-Clause 1022 | license_family: BSD 1023 | size: 7102 1024 | timestamp: 1736437059723 1025 | - conda: https://prefix.dev/conda-forge/win-64/compilers-1.9.0-h57928b3_0.conda 1026 | sha256: d9c7c92ab7412a9d43b878556ff992255902cb6e0e7591045ddd0beef45c8ba8 1027 | md5: 2ff161fcd61ca3e507ae1010a56dad4c 1028 | depends: 1029 | - c-compiler 1.9.0 hcfcfb64_0 1030 | - cxx-compiler 1.9.0 h91493d7_0 1031 | - fortran-compiler 1.9.0 h95e3450_0 1032 | license: BSD-3-Clause 1033 | license_family: BSD 1034 | size: 7458 1035 | timestamp: 1736437099413 1036 | - conda: https://prefix.dev/conda-forge/linux-64/cxx-compiler-1.9.0-h1a2810e_0.conda 1037 | sha256: 5efc51b8e7d87fc5380f00ace9f9c758142eade520a63d3631d2616d1c1b25f9 1038 | md5: 1ce8b218d359d9ed0ab481f2a3f3c512 1039 | depends: 1040 | - c-compiler 1.9.0 h2b85faf_0 1041 | - gxx 1042 | - gxx_linux-64 13.* 1043 | license: BSD-3-Clause 1044 | license_family: BSD 1045 | size: 6168 1046 | timestamp: 1736437002465 1047 | - conda: https://prefix.dev/conda-forge/osx-arm64/cxx-compiler-1.9.0-hba80287_0.conda 1048 | sha256: 061ff0c3e1bf36ca6c3a4c28eea4be31523a243e7d1c60ccdb8fa9860d11fbef 1049 | md5: 06ef26aae7b667bcfda0017a7b710a0b 1050 | depends: 1051 | - c-compiler 1.9.0 hdf49b6b_0 1052 | - clangxx_osx-arm64 18.* 1053 | license: BSD-3-Clause 1054 | license_family: BSD 1055 | size: 6252 1056 | timestamp: 1736437058872 1057 | - conda: https://prefix.dev/conda-forge/win-64/cxx-compiler-1.9.0-h91493d7_0.conda 1058 | sha256: b7ebc992f8ff3d5f9f40ea3555534440a0438fead4dd5d1dea60113ce224b487 1059 | md5: 6c4b643c7dd8f13dafc8679ffc5671eb 1060 | depends: 1061 | - vs2019_win-64 1062 | license: BSD-3-Clause 1063 | license_family: BSD 1064 | size: 6528 1065 | timestamp: 1736437098756 1066 | - conda: https://prefix.dev/conda-forge/win-64/flang-19.1.7-hbeecb71_0.conda 1067 | sha256: 36cff091f0dc82c022225e51ebd1d2eba6269144c0c19580d3b313e430a70740 1068 | md5: a00b1ff46537989d170dda28dd99975f 1069 | depends: 1070 | - clang 19.1.7 1071 | - compiler-rt 19.1.7 1072 | - libflang 19.1.7 he0c23c2_0 1073 | - libzlib >=1.3.1,<2.0a0 1074 | - ucrt >=10.0.20348.0 1075 | - vc >=14.2,<15 1076 | - vc14_runtime >=14.29.30139 1077 | - zstd >=1.5.6,<1.6.0a0 1078 | license: Apache-2.0 1079 | license_family: APACHE 1080 | size: 104605360 1081 | timestamp: 1737060473360 1082 | - conda: https://prefix.dev/conda-forge/win-64/flang_impl_win-64-19.1.7-h719f0c7_0.conda 1083 | sha256: d6221674b51284ae2ec453b7f21e7411b480ed764af3f406ac4c3b9633c1f731 1084 | md5: cfe473c47c0cb5f30afd755710436e63 1085 | depends: 1086 | - compiler-rt_win-64 19.1.7.* 1087 | - flang 19.1.7.* 1088 | - libflang >=19.1.7 1089 | - lld 1090 | - llvm-tools 1091 | license: BSD-3-Clause 1092 | license_family: BSD 1093 | size: 8816 1094 | timestamp: 1737072632358 1095 | - conda: https://prefix.dev/conda-forge/win-64/flang_win-64-19.1.7-h719f0c7_0.conda 1096 | sha256: 7132f5b380c5795a15c5ec09f2bd0dd5c80cda88c9e2202e43cf17c727afd223 1097 | md5: 86fbc1060058bd120a9619b69d4c7bc9 1098 | depends: 1099 | - flang_impl_win-64 19.1.7 h719f0c7_0 1100 | license: BSD-3-Clause 1101 | license_family: BSD 1102 | size: 9707 1103 | timestamp: 1737072650963 1104 | - conda: https://prefix.dev/conda-forge/linux-64/fortran-compiler-1.9.0-h36df796_0.conda 1105 | sha256: ca857e7b91eee0d33aa3f6cdebac36a8699ab3f37efbb717df409ae9b8decb34 1106 | md5: cc0cf942201f9d3b0e9654ea02e12486 1107 | depends: 1108 | - binutils 1109 | - c-compiler 1.9.0 h2b85faf_0 1110 | - gfortran 1111 | - gfortran_linux-64 13.* 1112 | license: BSD-3-Clause 1113 | license_family: BSD 1114 | size: 6184 1115 | timestamp: 1736437002625 1116 | - conda: https://prefix.dev/conda-forge/osx-arm64/fortran-compiler-1.9.0-h5692697_0.conda 1117 | sha256: ec5d4ee4ec47259b9bdf22930e4954b1c79f05dcc6e1ad78f3fbb5fd759f4a9f 1118 | md5: 999114549b604ea55cdfd71f9dc9915f 1119 | depends: 1120 | - cctools >=949.0.1 1121 | - gfortran 1122 | - gfortran_osx-arm64 13.* 1123 | - ld64 >=530 1124 | - llvm-openmp 1125 | license: BSD-3-Clause 1126 | license_family: BSD 1127 | size: 6264 1128 | timestamp: 1736437057610 1129 | - conda: https://prefix.dev/conda-forge/win-64/fortran-compiler-1.9.0-h95e3450_0.conda 1130 | sha256: 8b1f9eea4d598c544a2e07a5b804b983ffccf194751a748061feae930ab8d446 1131 | md5: 80c35cc8f5b7b69d710300080d5f0e01 1132 | depends: 1133 | - flang_win-64 19.* 1134 | license: BSD-3-Clause 1135 | license_family: BSD 1136 | size: 6546 1137 | timestamp: 1736437099100 1138 | - conda: https://prefix.dev/conda-forge/linux-64/gcc-13.3.0-h9576a4e_2.conda 1139 | sha256: 300f077029e7626d69cc250a69acd6018c1fced3f5bf76adf37854f3370d2c45 1140 | md5: d92e51bf4b6bdbfe45e5884fb0755afe 1141 | depends: 1142 | - gcc_impl_linux-64 13.3.0.* 1143 | license: BSD-3-Clause 1144 | license_family: BSD 1145 | size: 55246 1146 | timestamp: 1740240578937 1147 | - conda: https://prefix.dev/conda-forge/linux-64/gcc_impl_linux-64-13.3.0-h1e990d8_2.conda 1148 | sha256: c3e9f243ea8292eecad78bb200d8f5b590e0f82bf7e7452a3a7c8df4eea6f774 1149 | md5: f46cf0acdcb6019397d37df1e407ab91 1150 | depends: 1151 | - binutils_impl_linux-64 >=2.40 1152 | - libgcc >=13.3.0 1153 | - libgcc-devel_linux-64 13.3.0 hc03c837_102 1154 | - libgomp >=13.3.0 1155 | - libsanitizer 13.3.0 he8ea267_2 1156 | - libstdcxx >=13.3.0 1157 | - sysroot_linux-64 1158 | license: GPL-3.0-only WITH GCC-exception-3.1 1159 | license_family: GPL 1160 | size: 66770653 1161 | timestamp: 1740240400031 1162 | - conda: https://prefix.dev/conda-forge/linux-64/gcc_linux-64-13.3.0-hc28eda2_8.conda 1163 | sha256: 0294daf83875d475424f16eda49a17017f733bf565f9e8b3367d0374733f43f3 1164 | md5: 0c56ca4bfe2b04e71fe67652d5aa3079 1165 | depends: 1166 | - binutils_linux-64 1167 | - gcc_impl_linux-64 13.3.0.* 1168 | - sysroot_linux-64 1169 | license: BSD-3-Clause 1170 | license_family: BSD 1171 | size: 32448 1172 | timestamp: 1740665998589 1173 | - conda: https://prefix.dev/conda-forge/linux-64/gfortran-13.3.0-h9576a4e_2.conda 1174 | sha256: 9425741d57bbcf918fe98cb375508f31de0daa655f3cebe100a43cf7cb46ec39 1175 | md5: 19e6d3c9cde10a0a9a170a684082588e 1176 | depends: 1177 | - gcc 13.3.0.* 1178 | - gcc_impl_linux-64 13.3.0.* 1179 | - gfortran_impl_linux-64 13.3.0.* 1180 | license: BSD-3-Clause 1181 | license_family: BSD 1182 | size: 54740 1183 | timestamp: 1740240701423 1184 | - conda: https://prefix.dev/conda-forge/osx-arm64/gfortran-13.3.0-h3ef1dbf_1.conda 1185 | sha256: 2a575b69b127f13efe8e1306bb25d5a03b945eaa12c01334a15e49e7e90b92e3 1186 | md5: fa634965eafb7e70b443f99543755164 1187 | depends: 1188 | - cctools 1189 | - gfortran_osx-arm64 13.3.0 1190 | - ld64 1191 | license: GPL-3.0-or-later WITH GCC-exception-3.1 1192 | license_family: GPL 1193 | size: 32295 1194 | timestamp: 1742561783646 1195 | - conda: https://prefix.dev/conda-forge/linux-64/gfortran_impl_linux-64-13.3.0-h84c1745_2.conda 1196 | sha256: 03a45f58b41909d4189fb81ec7f971b60aaccf95a3953049d93ae7d06eb19000 1197 | md5: 4e21ed177b76537067736f20f54fee0a 1198 | depends: 1199 | - gcc_impl_linux-64 >=13.3.0 1200 | - libgcc >=13.3.0 1201 | - libgfortran5 >=13.3.0 1202 | - libstdcxx >=13.3.0 1203 | - sysroot_linux-64 1204 | license: GPL-3.0-only WITH GCC-exception-3.1 1205 | license_family: GPL 1206 | size: 15923784 1207 | timestamp: 1740240635243 1208 | - conda: https://prefix.dev/conda-forge/osx-arm64/gfortran_impl_osx-arm64-13.3.0-h0045e9c_1.conda 1209 | sha256: 5dcb2d6eded4c9cbbfe4557aba7be93a52258707216bdc6d006028d012a96de7 1210 | md5: 6bc5d98f8286e43ac334c800b0518462 1211 | depends: 1212 | - __osx >=11.0 1213 | - gmp >=6.3.0,<7.0a0 1214 | - isl 0.26.* 1215 | - libcxx >=17 1216 | - libgfortran-devel_osx-arm64 13.3.0.* 1217 | - libgfortran5 >=13.3.0 1218 | - libiconv >=1.18,<2.0a0 1219 | - libzlib >=1.3.1,<2.0a0 1220 | - mpc >=1.3.1,<2.0a0 1221 | - mpfr >=4.2.1,<5.0a0 1222 | - zlib 1223 | license: GPL-3.0-only WITH GCC-exception-3.1 1224 | license_family: GPL 1225 | size: 19142798 1226 | timestamp: 1742435209934 1227 | - conda: https://prefix.dev/conda-forge/linux-64/gfortran_linux-64-13.3.0-hb919d3a_8.conda 1228 | sha256: e1895aa5a1d14964c0c312df193735c758a505b8526128b18e317d0d0de2face 1229 | md5: 5fa84c74a45687350aa5d468f64d8024 1230 | depends: 1231 | - binutils_linux-64 1232 | - gcc_linux-64 13.3.0 hc28eda2_8 1233 | - gfortran_impl_linux-64 13.3.0.* 1234 | - sysroot_linux-64 1235 | license: BSD-3-Clause 1236 | license_family: BSD 1237 | size: 30726 1238 | timestamp: 1740666014905 1239 | - conda: https://prefix.dev/conda-forge/osx-arm64/gfortran_osx-arm64-13.3.0-h3c33bd0_1.conda 1240 | sha256: 216063ac9e12888a76b7fc6f1d96b1625185391bc7900e0cecb434ef96583917 1241 | md5: e9be7ea695e31496f0cabf85998c1bbc 1242 | depends: 1243 | - cctools_osx-arm64 1244 | - clang 1245 | - clang_osx-arm64 1246 | - gfortran_impl_osx-arm64 13.3.0 1247 | - ld64_osx-arm64 1248 | - libgfortran 5.* 1249 | - libgfortran-devel_osx-arm64 13.3.0 1250 | - libgfortran5 >=13.3.0 1251 | license: GPL-3.0-or-later WITH GCC-exception-3.1 1252 | license_family: GPL 1253 | size: 35872 1254 | timestamp: 1742561757708 1255 | - conda: https://prefix.dev/conda-forge/noarch/ghp-import-2.1.0-pyhd8ed1ab_2.conda 1256 | sha256: 40fdf5a9d5cc7a3503cd0c33e1b90b1e6eab251aaaa74e6b965417d089809a15 1257 | md5: 93f742fe078a7b34c29a182958d4d765 1258 | depends: 1259 | - python >=3.9 1260 | - python-dateutil >=2.8.1 1261 | license: Apache-2.0 1262 | license_family: APACHE 1263 | size: 16538 1264 | timestamp: 1734344477841 1265 | - conda: https://prefix.dev/conda-forge/noarch/gitdb-4.0.12-pyhd8ed1ab_0.conda 1266 | sha256: dbbec21a369872c8ebe23cb9a3b9d63638479ee30face165aa0fccc96e93eec3 1267 | md5: 7c14f3706e099f8fcd47af2d494616cc 1268 | depends: 1269 | - python >=3.9 1270 | - smmap >=3.0.1,<6 1271 | license: BSD-3-Clause 1272 | license_family: BSD 1273 | size: 53136 1274 | timestamp: 1735887290843 1275 | - conda: https://prefix.dev/conda-forge/noarch/gitpython-3.1.44-pyhff2d567_0.conda 1276 | sha256: b996e717ca693e4e831d3d3143aca3abb47536561306195002b226fe4dde53c3 1277 | md5: 140a4e944f7488467872e562a2a52789 1278 | depends: 1279 | - gitdb >=4.0.1,<5 1280 | - python >=3.9 1281 | - typing_extensions >=3.7.4.3 1282 | license: BSD-3-Clause 1283 | license_family: BSD 1284 | size: 157200 1285 | timestamp: 1735929768433 1286 | - conda: https://prefix.dev/conda-forge/osx-arm64/gmp-6.3.0-h7bae524_2.conda 1287 | sha256: 76e222e072d61c840f64a44e0580c2503562b009090f55aa45053bf1ccb385dd 1288 | md5: eed7278dfbab727b56f2c0b64330814b 1289 | depends: 1290 | - __osx >=11.0 1291 | - libcxx >=16 1292 | license: GPL-2.0-or-later OR LGPL-3.0-or-later 1293 | size: 365188 1294 | timestamp: 1718981343258 1295 | - conda: https://prefix.dev/conda-forge/linux-64/gxx-13.3.0-h9576a4e_2.conda 1296 | sha256: fa9d0171c17e4c4203a4199fcc35571a25c1f16c0ad992080d4f0ced53bf5aa5 1297 | md5: 07e8df00b7cd3084ad3ef598ce32a71c 1298 | depends: 1299 | - gcc 13.3.0.* 1300 | - gxx_impl_linux-64 13.3.0.* 1301 | license: BSD-3-Clause 1302 | license_family: BSD 1303 | size: 54718 1304 | timestamp: 1740240712365 1305 | - conda: https://prefix.dev/conda-forge/linux-64/gxx_impl_linux-64-13.3.0-hae580e1_2.conda 1306 | sha256: 7cb36526a5c3e75ae07452aee5c9b6219f62fad9f85cc6d1dab5b21d1c4cc996 1307 | md5: b55f02540605c322a47719029f8404cc 1308 | depends: 1309 | - gcc_impl_linux-64 13.3.0 h1e990d8_2 1310 | - libstdcxx-devel_linux-64 13.3.0 hc03c837_102 1311 | - sysroot_linux-64 1312 | - tzdata 1313 | license: GPL-3.0-only WITH GCC-exception-3.1 1314 | license_family: GPL 1315 | size: 13362974 1316 | timestamp: 1740240672045 1317 | - conda: https://prefix.dev/conda-forge/linux-64/gxx_linux-64-13.3.0-h6834431_8.conda 1318 | sha256: 59f0236194a8ea93baf33b58f250edfc775a34ddf49d262f8d5852fc35711c02 1319 | md5: e66a842289d61d859d6df8589159b07b 1320 | depends: 1321 | - binutils_linux-64 1322 | - gcc_linux-64 13.3.0 hc28eda2_8 1323 | - gxx_impl_linux-64 13.3.0.* 1324 | - sysroot_linux-64 1325 | license: BSD-3-Clause 1326 | license_family: BSD 1327 | size: 30781 1328 | timestamp: 1740666017241 1329 | - conda: https://prefix.dev/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda 1330 | sha256: 0aa1cdc67a9fe75ea95b5644b734a756200d6ec9d0dff66530aec3d1c1e9df75 1331 | md5: b4754fb1bdcb70c8fd54f918301582c6 1332 | depends: 1333 | - hpack >=4.1,<5 1334 | - hyperframe >=6.1,<7 1335 | - python >=3.9 1336 | license: MIT 1337 | license_family: MIT 1338 | size: 53888 1339 | timestamp: 1738578623567 1340 | - conda: https://prefix.dev/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda 1341 | sha256: 6ad78a180576c706aabeb5b4c8ceb97c0cb25f1e112d76495bff23e3779948ba 1342 | md5: 0a802cb9888dd14eeefc611f05c40b6e 1343 | depends: 1344 | - python >=3.9 1345 | license: MIT 1346 | license_family: MIT 1347 | size: 30731 1348 | timestamp: 1737618390337 1349 | - conda: https://prefix.dev/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda 1350 | sha256: 77af6f5fe8b62ca07d09ac60127a30d9069fdc3c68d6b256754d0ffb1f7779f8 1351 | md5: 8e6923fc12f1fe8f8c4e5c9f343256ac 1352 | depends: 1353 | - python >=3.9 1354 | license: MIT 1355 | license_family: MIT 1356 | size: 17397 1357 | timestamp: 1737618427549 1358 | - conda: https://prefix.dev/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda 1359 | sha256: d7a472c9fd479e2e8dcb83fb8d433fce971ea369d704ece380e876f9c3494e87 1360 | md5: 39a4f67be3286c86d696df570b1201b7 1361 | depends: 1362 | - python >=3.9 1363 | license: BSD-3-Clause 1364 | license_family: BSD 1365 | size: 49765 1366 | timestamp: 1733211921194 1367 | - conda: https://prefix.dev/conda-forge/noarch/importlib-metadata-8.6.1-pyha770c72_0.conda 1368 | sha256: 598951ebdb23e25e4cec4bbff0ae369cec65ead80b50bc08b441d8e54de5cf03 1369 | md5: f4b39bf00c69f56ac01e020ebfac066c 1370 | depends: 1371 | - python >=3.9 1372 | - zipp >=0.5 1373 | license: Apache-2.0 1374 | license_family: APACHE 1375 | size: 29141 1376 | timestamp: 1737420302391 1377 | - conda: https://prefix.dev/conda-forge/osx-arm64/isl-0.26-imath32_h347afa1_101.conda 1378 | sha256: fc9272371750c56908b8e535755b1e23cf7803a2cc4a7d9ae539347baa14f740 1379 | md5: e80e44a3f4862b1da870dc0557f8cf3b 1380 | depends: 1381 | - libcxx >=14.0.6 1382 | track_features: 1383 | - isl_imath-32 1384 | license: MIT 1385 | license_family: MIT 1386 | size: 819937 1387 | timestamp: 1680649567633 1388 | - conda: https://prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda 1389 | sha256: f1ac18b11637ddadc05642e8185a851c7fab5998c6f5470d716812fae943b2af 1390 | md5: 446bd6c8cb26050d528881df495ce646 1391 | depends: 1392 | - markupsafe >=2.0 1393 | - python >=3.9 1394 | license: BSD-3-Clause 1395 | license_family: BSD 1396 | size: 112714 1397 | timestamp: 1741263433881 1398 | - conda: https://prefix.dev/conda-forge/noarch/kernel-headers_linux-64-3.10.0-he073ed8_18.conda 1399 | sha256: a922841ad80bd7b222502e65c07ecb67e4176c4fa5b03678a005f39fcc98be4b 1400 | md5: ad8527bf134a90e1c9ed35fa0b64318c 1401 | constrains: 1402 | - sysroot_linux-64 ==2.17 1403 | license: LGPL-2.0-or-later AND LGPL-2.0-or-later WITH exceptions AND GPL-2.0-or-later AND MPL-2.0 1404 | license_family: GPL 1405 | size: 943486 1406 | timestamp: 1729794504440 1407 | - conda: https://prefix.dev/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 1408 | sha256: 150c05a6e538610ca7c43beb3a40d65c90537497a4f6a5f4d15ec0451b6f5ebb 1409 | md5: 30186d27e2c9fa62b45fb1476b7200e3 1410 | depends: 1411 | - libgcc-ng >=10.3.0 1412 | license: LGPL-2.1-or-later 1413 | size: 117831 1414 | timestamp: 1646151697040 1415 | - conda: https://prefix.dev/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda 1416 | sha256: 99df692f7a8a5c27cd14b5fb1374ee55e756631b9c3d659ed3ee60830249b238 1417 | md5: 3f43953b7d3fb3aaa1d0d0723d91e368 1418 | depends: 1419 | - keyutils >=1.6.1,<2.0a0 1420 | - libedit >=3.1.20191231,<3.2.0a0 1421 | - libedit >=3.1.20191231,<4.0a0 1422 | - libgcc-ng >=12 1423 | - libstdcxx-ng >=12 1424 | - openssl >=3.3.1,<4.0a0 1425 | license: MIT 1426 | license_family: MIT 1427 | size: 1370023 1428 | timestamp: 1719463201255 1429 | - conda: https://prefix.dev/conda-forge/osx-arm64/krb5-1.21.3-h237132a_0.conda 1430 | sha256: 4442f957c3c77d69d9da3521268cad5d54c9033f1a73f99cde0a3658937b159b 1431 | md5: c6dc8a0fdec13a0565936655c33069a1 1432 | depends: 1433 | - __osx >=11.0 1434 | - libcxx >=16 1435 | - libedit >=3.1.20191231,<3.2.0a0 1436 | - libedit >=3.1.20191231,<4.0a0 1437 | - openssl >=3.3.1,<4.0a0 1438 | license: MIT 1439 | license_family: MIT 1440 | size: 1155530 1441 | timestamp: 1719463474401 1442 | - conda: https://prefix.dev/conda-forge/win-64/krb5-1.21.3-hdf4eb48_0.conda 1443 | sha256: 18e8b3430d7d232dad132f574268f56b3eb1a19431d6d5de8c53c29e6c18fa81 1444 | md5: 31aec030344e962fbd7dbbbbd68e60a9 1445 | depends: 1446 | - openssl >=3.3.1,<4.0a0 1447 | - ucrt >=10.0.20348.0 1448 | - vc >=14.2,<15 1449 | - vc14_runtime >=14.29.30139 1450 | license: MIT 1451 | license_family: MIT 1452 | size: 712034 1453 | timestamp: 1719463874284 1454 | - conda: https://prefix.dev/conda-forge/osx-arm64/ld64-951.9-h4c6efb1_4.conda 1455 | sha256: 4806f1356117fe4a6c0c9927587cd456ee9a891bb943e300b03aff9f17ad3a5c 1456 | md5: de921c0941f051f3b019d46a0c83fdda 1457 | depends: 1458 | - ld64_osx-arm64 951.9 hb6b49e2_4 1459 | - libllvm18 >=18.1.8,<18.2.0a0 1460 | constrains: 1461 | - cctools 1010.6.* 1462 | - cctools_osx-arm64 1010.6.* 1463 | license: APSL-2.0 1464 | license_family: Other 1465 | size: 18894 1466 | timestamp: 1742512610229 1467 | - conda: https://prefix.dev/conda-forge/osx-arm64/ld64_osx-arm64-951.9-hb6b49e2_4.conda 1468 | sha256: 0376873d88573688168b5b7618391dd68fa0b309ddce7fa77c5f9037ada7cf66 1469 | md5: d01a78a16542f235dd755ca66772795e 1470 | depends: 1471 | - __osx >=11.0 1472 | - libcxx 1473 | - libllvm18 >=18.1.8,<18.2.0a0 1474 | - sigtool 1475 | - tapi >=1300.6.5,<1301.0a0 1476 | constrains: 1477 | - ld 951.9.* 1478 | - clang >=18.1.8,<19.0a0 1479 | - cctools 1010.6.* 1480 | - cctools_osx-arm64 1010.6.* 1481 | license: APSL-2.0 1482 | license_family: Other 1483 | size: 1019138 1484 | timestamp: 1742512519169 1485 | - conda: https://prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_4.conda 1486 | sha256: db73f38155d901a610b2320525b9dd3b31e4949215c870685fd92ea61b5ce472 1487 | md5: 01f8d123c96816249efd255a31ad7712 1488 | depends: 1489 | - __glibc >=2.17,<3.0.a0 1490 | constrains: 1491 | - binutils_impl_linux-64 2.43 1492 | license: GPL-3.0-only 1493 | license_family: GPL 1494 | size: 671240 1495 | timestamp: 1740155456116 1496 | - conda: https://prefix.dev/conda-forge/osx-arm64/libclang-cpp18.1-18.1.8-default_hf90f093_8.conda 1497 | sha256: b736c4c3a32d4aa16b4af7b2094b4f3786ea34723cccb9918579206706000f90 1498 | md5: a5f883cd77dcc0f62a0eca8445d9e147 1499 | depends: 1500 | - __osx >=11.0 1501 | - libcxx >=18.1.8 1502 | - libllvm18 >=18.1.8,<18.2.0a0 1503 | license: Apache-2.0 WITH LLVM-exception 1504 | license_family: Apache 1505 | size: 13330731 1506 | timestamp: 1742265504673 1507 | - conda: https://prefix.dev/conda-forge/linux-64/libcurl-8.12.1-h332b0f4_0.conda 1508 | sha256: 2ebc3039af29269e4cdb858fca36265e5e400c1125a4bcd84ae73a596e0e76ca 1509 | md5: 45e9dc4e7b25e2841deb392be085500e 1510 | depends: 1511 | - __glibc >=2.17,<3.0.a0 1512 | - krb5 >=1.21.3,<1.22.0a0 1513 | - libgcc >=13 1514 | - libnghttp2 >=1.64.0,<2.0a0 1515 | - libssh2 >=1.11.1,<2.0a0 1516 | - libzlib >=1.3.1,<2.0a0 1517 | - openssl >=3.4.1,<4.0a0 1518 | - zstd >=1.5.6,<1.6.0a0 1519 | license: curl 1520 | license_family: MIT 1521 | size: 426675 1522 | timestamp: 1739512336799 1523 | - conda: https://prefix.dev/conda-forge/osx-arm64/libcurl-8.12.1-h73640d1_0.conda 1524 | sha256: 0bddd1791eb0602c8c6aa465802e9d4526d3ec1251d900b209e767753565d5df 1525 | md5: 105f0cceef753644912f42e11c1ae9cf 1526 | depends: 1527 | - __osx >=11.0 1528 | - krb5 >=1.21.3,<1.22.0a0 1529 | - libnghttp2 >=1.64.0,<2.0a0 1530 | - libssh2 >=1.11.1,<2.0a0 1531 | - libzlib >=1.3.1,<2.0a0 1532 | - openssl >=3.4.1,<4.0a0 1533 | - zstd >=1.5.6,<1.6.0a0 1534 | license: curl 1535 | license_family: MIT 1536 | size: 387893 1537 | timestamp: 1739512564746 1538 | - conda: https://prefix.dev/conda-forge/win-64/libcurl-8.12.1-h88aaa65_0.conda 1539 | sha256: 4c8e62fd32d59e5fbfad0f37e33083928bbb3c8800258650d4e7911e6f6fd1aa 1540 | md5: 2b1c729d91f3b07502981b6e0c7727cc 1541 | depends: 1542 | - krb5 >=1.21.3,<1.22.0a0 1543 | - libssh2 >=1.11.1,<2.0a0 1544 | - libzlib >=1.3.1,<2.0a0 1545 | - ucrt >=10.0.20348.0 1546 | - vc >=14.2,<15 1547 | - vc14_runtime >=14.29.30139 1548 | license: curl 1549 | license_family: MIT 1550 | size: 349696 1551 | timestamp: 1739512628733 1552 | - conda: https://prefix.dev/conda-forge/osx-arm64/libcxx-20.1.1-ha82da77_0.conda 1553 | sha256: 80dd8ae3fbcf508ed72f074ada2c7784298e822e8d19c3b84c266bb31456d77c 1554 | md5: 833c4899914bf96caf64b52ef415e319 1555 | depends: 1556 | - __osx >=11.0 1557 | license: Apache-2.0 WITH LLVM-exception 1558 | license_family: Apache 1559 | size: 561543 1560 | timestamp: 1742449846779 1561 | - conda: https://prefix.dev/conda-forge/osx-arm64/libcxx-devel-18.1.8-h6dc3340_8.conda 1562 | sha256: ff83d001603476033eca155ce77f7ba614d9dc70c5811e2ce9915a3cadacb56f 1563 | md5: fdf0850d6d1496f33e3996e377f605ed 1564 | depends: 1565 | - libcxx >=18.1.8 1566 | license: Apache-2.0 WITH LLVM-exception 1567 | license_family: Apache 1568 | size: 794791 1569 | timestamp: 1742451369695 1570 | - conda: https://prefix.dev/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.conda 1571 | sha256: d789471216e7aba3c184cd054ed61ce3f6dac6f87a50ec69291b9297f8c18724 1572 | md5: c277e0a4d549b03ac1e9d6cbbe3d017b 1573 | depends: 1574 | - ncurses 1575 | - __glibc >=2.17,<3.0.a0 1576 | - libgcc >=13 1577 | - ncurses >=6.5,<7.0a0 1578 | license: BSD-2-Clause 1579 | license_family: BSD 1580 | size: 134676 1581 | timestamp: 1738479519902 1582 | - conda: https://prefix.dev/conda-forge/osx-arm64/libedit-3.1.20250104-pl5321hafb1f1b_0.conda 1583 | sha256: 66aa216a403de0bb0c1340a88d1a06adaff66bae2cfd196731aa24db9859d631 1584 | md5: 44083d2d2c2025afca315c7a172eab2b 1585 | depends: 1586 | - ncurses 1587 | - __osx >=11.0 1588 | - ncurses >=6.5,<7.0a0 1589 | license: BSD-2-Clause 1590 | license_family: BSD 1591 | size: 107691 1592 | timestamp: 1738479560845 1593 | - conda: https://prefix.dev/conda-forge/linux-64/libev-4.33-hd590300_2.conda 1594 | sha256: 1cd6048169fa0395af74ed5d8f1716e22c19a81a8a36f934c110ca3ad4dd27b4 1595 | md5: 172bf1cd1ff8629f2b1179945ed45055 1596 | depends: 1597 | - libgcc-ng >=12 1598 | license: BSD-2-Clause 1599 | license_family: BSD 1600 | size: 112766 1601 | timestamp: 1702146165126 1602 | - conda: https://prefix.dev/conda-forge/osx-arm64/libev-4.33-h93a5062_2.conda 1603 | sha256: 95cecb3902fbe0399c3a7e67a5bed1db813e5ab0e22f4023a5e0f722f2cc214f 1604 | md5: 36d33e440c31857372a72137f78bacf5 1605 | license: BSD-2-Clause 1606 | license_family: BSD 1607 | size: 107458 1608 | timestamp: 1702146414478 1609 | - conda: https://prefix.dev/conda-forge/linux-64/libexpat-2.6.4-h5888daf_0.conda 1610 | sha256: 56541b98447b58e52d824bd59d6382d609e11de1f8adf20b23143e353d2b8d26 1611 | md5: db833e03127376d461e1e13e76f09b6c 1612 | depends: 1613 | - __glibc >=2.17,<3.0.a0 1614 | - libgcc >=13 1615 | constrains: 1616 | - expat 2.6.4.* 1617 | license: MIT 1618 | license_family: MIT 1619 | size: 73304 1620 | timestamp: 1730967041968 1621 | - conda: https://prefix.dev/conda-forge/osx-arm64/libexpat-2.6.4-h286801f_0.conda 1622 | sha256: e42ab5ace927ee7c84e3f0f7d813671e1cf3529f5f06ee5899606630498c2745 1623 | md5: 38d2656dd914feb0cab8c629370768bf 1624 | depends: 1625 | - __osx >=11.0 1626 | constrains: 1627 | - expat 2.6.4.* 1628 | license: MIT 1629 | license_family: MIT 1630 | size: 64693 1631 | timestamp: 1730967175868 1632 | - conda: https://prefix.dev/conda-forge/win-64/libexpat-2.6.4-he0c23c2_0.conda 1633 | sha256: 0c0447bf20d1013d5603499de93a16b6faa92d7ead870d96305c0f065b6a5a12 1634 | md5: eb383771c680aa792feb529eaf9df82f 1635 | depends: 1636 | - ucrt >=10.0.20348.0 1637 | - vc >=14.2,<15 1638 | - vc14_runtime >=14.29.30139 1639 | constrains: 1640 | - expat 2.6.4.* 1641 | license: MIT 1642 | license_family: MIT 1643 | size: 139068 1644 | timestamp: 1730967442102 1645 | - conda: https://prefix.dev/conda-forge/linux-64/libffi-3.4.6-h2dba641_0.conda 1646 | sha256: 67a6c95e33ebc763c1adc3455b9a9ecde901850eb2fceb8e646cc05ef3a663da 1647 | md5: e3eb7806380bc8bcecba6d749ad5f026 1648 | depends: 1649 | - __glibc >=2.17,<3.0.a0 1650 | - libgcc >=13 1651 | license: MIT 1652 | license_family: MIT 1653 | size: 53415 1654 | timestamp: 1739260413716 1655 | - conda: https://prefix.dev/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2 1656 | sha256: 41b3d13efb775e340e4dba549ab5c029611ea6918703096b2eaa9c015c0750ca 1657 | md5: 086914b672be056eb70fd4285b6783b6 1658 | license: MIT 1659 | license_family: MIT 1660 | size: 39020 1661 | timestamp: 1636488587153 1662 | - conda: https://prefix.dev/conda-forge/win-64/libffi-3.4.6-h537db12_0.conda 1663 | sha256: 77922d8dd2faf88ac6accaeebf06409d1820486fde710cff6b554d12273e46be 1664 | md5: 31d5107f75b2f204937728417e2e39e5 1665 | depends: 1666 | - ucrt >=10.0.20348.0 1667 | - vc >=14.2,<15 1668 | - vc14_runtime >=14.29.30139 1669 | license: MIT 1670 | license_family: MIT 1671 | size: 40830 1672 | timestamp: 1739260917585 1673 | - conda: https://prefix.dev/conda-forge/win-64/libflang-19.1.7-he0c23c2_0.conda 1674 | sha256: 4dac20c835ee06d779570b3bae9ff1310192c9d78b73a2451a5076192ef22973 1675 | md5: 52bd262ceddf6dec90b1bdb5472bb34e 1676 | depends: 1677 | - ucrt >=10.0.20348.0 1678 | - vc >=14.2,<15 1679 | - vc14_runtime >=14.29.30139 1680 | license: Apache-2.0 1681 | license_family: APACHE 1682 | size: 1165791 1683 | timestamp: 1737060291864 1684 | - conda: https://prefix.dev/conda-forge/linux-64/libgcc-14.2.0-h767d61c_2.conda 1685 | sha256: 3a572d031cb86deb541d15c1875aaa097baefc0c580b54dc61f5edab99215792 1686 | md5: ef504d1acbd74b7cc6849ef8af47dd03 1687 | depends: 1688 | - __glibc >=2.17,<3.0.a0 1689 | - _openmp_mutex >=4.5 1690 | constrains: 1691 | - libgomp 14.2.0 h767d61c_2 1692 | - libgcc-ng ==14.2.0=*_2 1693 | license: GPL-3.0-only WITH GCC-exception-3.1 1694 | license_family: GPL 1695 | size: 847885 1696 | timestamp: 1740240653082 1697 | - conda: https://prefix.dev/conda-forge/win-64/libgcc-14.2.0-h1383e82_2.conda 1698 | sha256: fddf2fc037bc95adb3b369e8866da8a71b6a67ebcfc4d7035ac4208309dc9e72 1699 | md5: 4a74c1461a0ba47a3346c04bdccbe2ad 1700 | depends: 1701 | - _openmp_mutex >=4.5 1702 | - libwinpthread >=12.0.0.r4.gg4f2fc60ca 1703 | constrains: 1704 | - msys2-conda-epoch <0.0a0 1705 | - libgcc-ng ==14.2.0=*_2 1706 | - libgomp 14.2.0 h1383e82_2 1707 | license: GPL-3.0-only WITH GCC-exception-3.1 1708 | license_family: GPL 1709 | size: 666343 1710 | timestamp: 1740240717807 1711 | - conda: https://prefix.dev/conda-forge/noarch/libgcc-devel_linux-64-13.3.0-hc03c837_102.conda 1712 | sha256: 538544a2e0651bfeb0348ca6469b6b608606f6080a0b5a531af3a3852fec0215 1713 | md5: 4c1d6961a6a54f602ae510d9bf31fa60 1714 | depends: 1715 | - __unix 1716 | license: GPL-3.0-only WITH GCC-exception-3.1 1717 | license_family: GPL 1718 | size: 2597400 1719 | timestamp: 1740240211859 1720 | - conda: https://prefix.dev/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_2.conda 1721 | sha256: fb7558c328b38b2f9d2e412c48da7890e7721ba018d733ebdfea57280df01904 1722 | md5: a2222a6ada71fb478682efe483ce0f92 1723 | depends: 1724 | - libgcc 14.2.0 h767d61c_2 1725 | license: GPL-3.0-only WITH GCC-exception-3.1 1726 | license_family: GPL 1727 | size: 53758 1728 | timestamp: 1740240660904 1729 | - conda: https://prefix.dev/conda-forge/linux-64/libgfortran-14.2.0-h69a702a_2.conda 1730 | sha256: e05263e8960da03c341650f2a3ffa4ccae4e111cb198e8933a2908125459e5a6 1731 | md5: fb54c4ea68b460c278d26eea89cfbcc3 1732 | depends: 1733 | - libgfortran5 14.2.0 hf1ad2bd_2 1734 | constrains: 1735 | - libgfortran-ng ==14.2.0=*_2 1736 | license: GPL-3.0-only WITH GCC-exception-3.1 1737 | license_family: GPL 1738 | size: 53733 1739 | timestamp: 1740240690977 1740 | - conda: https://prefix.dev/conda-forge/osx-arm64/libgfortran-5.0.0-14_2_0_h6c33f7e_1.conda 1741 | sha256: 00adc502de159fef380cc16150ec328309910e241b4a465500f2084e6c9646dd 1742 | md5: d0e8a9e0efd41b9821833d5bbfd7e653 1743 | depends: 1744 | - libgfortran5 14.2.0 h6c33f7e_1 1745 | license: GPL-3.0-only WITH GCC-exception-3.1 1746 | license_family: GPL 1747 | size: 156084 1748 | timestamp: 1742435107459 1749 | - conda: https://prefix.dev/conda-forge/noarch/libgfortran-devel_osx-arm64-13.3.0-h5020ebb_1.conda 1750 | sha256: 47f464eea9dfc56afedef9f0344a678ec2036149ec707a58d4b87994a44f7cd4 1751 | md5: ced1860b276c316193be0ab67d100fb3 1752 | license: GPL-3.0-only WITH GCC-exception-3.1 1753 | license_family: GPL 1754 | size: 1963220 1755 | timestamp: 1742434660495 1756 | - conda: https://prefix.dev/conda-forge/linux-64/libgfortran-ng-14.2.0-h69a702a_2.conda 1757 | sha256: 688a5968852e677d2a64974c8869ffb120eac21997ced7d15c599f152ef6857e 1758 | md5: 4056c857af1a99ee50589a941059ec55 1759 | depends: 1760 | - libgfortran 14.2.0 h69a702a_2 1761 | license: GPL-3.0-only WITH GCC-exception-3.1 1762 | license_family: GPL 1763 | size: 53781 1764 | timestamp: 1740240884760 1765 | - conda: https://prefix.dev/conda-forge/linux-64/libgfortran5-14.2.0-hf1ad2bd_2.conda 1766 | sha256: c17b7cf3073a1f4e1f34d50872934fa326346e104d3c445abc1e62481ad6085c 1767 | md5: 556a4fdfac7287d349b8f09aba899693 1768 | depends: 1769 | - __glibc >=2.17,<3.0.a0 1770 | - libgcc >=14.2.0 1771 | constrains: 1772 | - libgfortran 14.2.0 1773 | license: GPL-3.0-only WITH GCC-exception-3.1 1774 | license_family: GPL 1775 | size: 1461978 1776 | timestamp: 1740240671964 1777 | - conda: https://prefix.dev/conda-forge/osx-arm64/libgfortran5-14.2.0-h6c33f7e_1.conda 1778 | sha256: a578ecffb79d81eb67bbdeac7bcddbfea5908393d51b0c4a9a461e73a3524274 1779 | md5: fa7750a7197063eed8fdf8e74e148d03 1780 | depends: 1781 | - llvm-openmp >=8.0.0 1782 | constrains: 1783 | - libgfortran 5.0.0 14_2_0_*_1 1784 | license: GPL-3.0-only WITH GCC-exception-3.1 1785 | license_family: GPL 1786 | size: 806707 1787 | timestamp: 1742434439767 1788 | - conda: https://prefix.dev/conda-forge/osx-arm64/libglib-2.82.2-hdff4504_1.conda 1789 | sha256: d002aeaa51424e331f8504a54b6ba4388a6011a0ebcac29296f3d14282bf733b 1790 | md5: 849da57c370384ce48bef2e050488882 1791 | depends: 1792 | - __osx >=11.0 1793 | - libffi >=3.4,<4.0a0 1794 | - libiconv >=1.17,<2.0a0 1795 | - libintl >=0.22.5,<1.0a0 1796 | - libzlib >=1.3.1,<2.0a0 1797 | - pcre2 >=10.44,<10.45.0a0 1798 | constrains: 1799 | - glib 2.82.2 *_1 1800 | license: LGPL-2.1-or-later 1801 | size: 3643364 1802 | timestamp: 1737037789629 1803 | - conda: https://prefix.dev/conda-forge/win-64/libglib-2.82.2-h7025463_1.conda 1804 | sha256: 77c4e6af9cc4e966a5100f48378ea3fb4ab7ed913f24af9217cc3a43242d65d5 1805 | md5: 40596e78a77327f271acea904efdc911 1806 | depends: 1807 | - libffi >=3.4,<4.0a0 1808 | - libiconv >=1.17,<2.0a0 1809 | - libintl >=0.22.5,<1.0a0 1810 | - libzlib >=1.3.1,<2.0a0 1811 | - pcre2 >=10.44,<10.45.0a0 1812 | - ucrt >=10.0.20348.0 1813 | - vc >=14.2,<15 1814 | - vc14_runtime >=14.29.30139 1815 | constrains: 1816 | - glib 2.82.2 *_1 1817 | license: LGPL-2.1-or-later 1818 | size: 3783933 1819 | timestamp: 1737038122172 1820 | - conda: https://prefix.dev/conda-forge/linux-64/libgomp-14.2.0-h767d61c_2.conda 1821 | sha256: 1a3130e0b9267e781b89399580f3163632d59fe5b0142900d63052ab1a53490e 1822 | md5: 06d02030237f4d5b3d9a7e7d348fe3c6 1823 | depends: 1824 | - __glibc >=2.17,<3.0.a0 1825 | license: GPL-3.0-only WITH GCC-exception-3.1 1826 | license_family: GPL 1827 | size: 459862 1828 | timestamp: 1740240588123 1829 | - conda: https://prefix.dev/conda-forge/win-64/libgomp-14.2.0-h1383e82_2.conda 1830 | sha256: 674ec5f1bf319eac98d0d6ecb9c38e0192f3cf41969a5621d62a7e695e1aa9f3 1831 | md5: dd6b1ab49e28bcb6154cd131acec985b 1832 | depends: 1833 | - libwinpthread >=12.0.0.r4.gg4f2fc60ca 1834 | constrains: 1835 | - msys2-conda-epoch <0.0a0 1836 | license: GPL-3.0-only WITH GCC-exception-3.1 1837 | license_family: GPL 1838 | size: 524548 1839 | timestamp: 1740240660967 1840 | - conda: https://prefix.dev/conda-forge/linux-64/libhiredis-1.0.2-h2cc385e_0.tar.bz2 1841 | sha256: ee39c69df4fb39cfe1139ac4f7405bb066eba773e11ba3ab7c33835be00c2e48 1842 | md5: b34907d3a81a3cd8095ee83d174c074a 1843 | depends: 1844 | - libgcc-ng >=9.4.0 1845 | - libgfortran-ng 1846 | - libgfortran5 >=9.4.0 1847 | - libstdcxx-ng >=9.4.0 1848 | license: BSD-3-Clause 1849 | license_family: BSD 1850 | size: 147325 1851 | timestamp: 1633982069195 1852 | - conda: https://prefix.dev/conda-forge/osx-arm64/libhiredis-1.0.2-hbec66e7_0.tar.bz2 1853 | sha256: a77b7097b3a557e8bc2c2a6e5257bde72e6c828ab8dd9996cec3895cc6cbcf9e 1854 | md5: 37ca71a16015b17397da4a5e6883f66f 1855 | depends: 1856 | - libcxx >=11.1.0 1857 | - libgfortran 5.* 1858 | - libgfortran5 >=11.0.1.dev0 1859 | license: BSD-3-Clause 1860 | license_family: BSD 1861 | size: 51945 1862 | timestamp: 1633982449355 1863 | - conda: https://prefix.dev/conda-forge/win-64/libhiredis-1.0.2-h0e60522_0.tar.bz2 1864 | sha256: 671f9ddab4cc4675e0a1e4a5c2a99c45ade031924556523fe999f13b22f23dc6 1865 | md5: f92ce316734c9fa1e18f05b49b67cd56 1866 | depends: 1867 | - vc >=14.1,<15.0a0 1868 | - vs2015_runtime >=14.16.27012 1869 | license: BSD-3-Clause 1870 | license_family: BSD 1871 | size: 56988 1872 | timestamp: 1633982299028 1873 | - conda: https://prefix.dev/conda-forge/osx-arm64/libiconv-1.18-hfe07756_1.conda 1874 | sha256: d30780d24bf3a30b4f116fca74dedb4199b34d500fe6c52cced5f8cc1e926f03 1875 | md5: 450e6bdc0c7d986acf7b8443dce87111 1876 | depends: 1877 | - __osx >=11.0 1878 | license: LGPL-2.1-only 1879 | size: 681804 1880 | timestamp: 1740128227484 1881 | - conda: https://prefix.dev/conda-forge/win-64/libiconv-1.18-h135ad9c_1.conda 1882 | sha256: ea5ed2b362b6dbc4ba7188eb4eaf576146e3dfc6f4395e9f0db76ad77465f786 1883 | md5: 21fc5dba2cbcd8e5e26ff976a312122c 1884 | depends: 1885 | - ucrt >=10.0.20348.0 1886 | - vc >=14.2,<15 1887 | - vc14_runtime >=14.29.30139 1888 | license: LGPL-2.1-only 1889 | size: 638142 1890 | timestamp: 1740128665984 1891 | - conda: https://prefix.dev/conda-forge/osx-arm64/libintl-0.23.1-h493aca8_0.conda 1892 | sha256: 30d2a8a37070615a61777ce9317968b54c2197d04e9c6c2eea6cdb46e47f94dc 1893 | md5: 7b8faf3b5fc52744bda99c4cd1d6438d 1894 | depends: 1895 | - __osx >=11.0 1896 | - libiconv >=1.17,<2.0a0 1897 | license: LGPL-2.1-or-later 1898 | size: 78921 1899 | timestamp: 1739039271409 1900 | - conda: https://prefix.dev/conda-forge/win-64/libintl-0.22.5-h5728263_3.conda 1901 | sha256: c7e4600f28bcada8ea81456a6530c2329312519efcf0c886030ada38976b0511 1902 | md5: 2cf0cf76cc15d360dfa2f17fd6cf9772 1903 | depends: 1904 | - libiconv >=1.17,<2.0a0 1905 | license: LGPL-2.1-or-later 1906 | size: 95568 1907 | timestamp: 1723629479451 1908 | - conda: https://prefix.dev/conda-forge/osx-arm64/libllvm18-18.1.8-hc4b4ae8_3.conda 1909 | sha256: eaf337e7323555705ef8fad64778de506828d3b6deab2493170c6fe8ad4b7a76 1910 | md5: 202596038a5dc079ef688bd7e17ffec1 1911 | depends: 1912 | - __osx >=11.0 1913 | - libcxx >=18 1914 | - libxml2 >=2.13.5,<3.0a0 1915 | - libzlib >=1.3.1,<2.0a0 1916 | - zstd >=1.5.6,<1.6.0a0 1917 | license: Apache-2.0 WITH LLVM-exception 1918 | license_family: Apache 1919 | size: 25986548 1920 | timestamp: 1737837114740 1921 | - conda: https://prefix.dev/conda-forge/win-64/libllvm19-19.1.7-h3089188_1.conda 1922 | sha256: eac26d15ca1cd882667f874134234d82fc5c433484d1ef794fb60c9167027208 1923 | md5: 141e594550d4d7b79889ce5c1a775480 1924 | depends: 1925 | - libzlib >=1.3.1,<2.0a0 1926 | - ucrt >=10.0.20348.0 1927 | - vc >=14.2,<15 1928 | - vc14_runtime >=14.29.30139 1929 | - zstd >=1.5.6,<1.6.0a0 1930 | license: Apache-2.0 WITH LLVM-exception 1931 | license_family: Apache 1932 | size: 55007 1933 | timestamp: 1737784337236 1934 | - conda: https://prefix.dev/conda-forge/linux-64/liblzma-5.6.4-hb9d3cd8_0.conda 1935 | sha256: cad52e10319ca4585bc37f0bc7cce99ec7c15dc9168e42ccb96b741b0a27db3f 1936 | md5: 42d5b6a0f30d3c10cd88cb8584fda1cb 1937 | depends: 1938 | - __glibc >=2.17,<3.0.a0 1939 | - libgcc >=13 1940 | license: 0BSD 1941 | size: 111357 1942 | timestamp: 1738525339684 1943 | - conda: https://prefix.dev/conda-forge/osx-arm64/liblzma-5.6.4-h39f12f2_0.conda 1944 | sha256: 560c59d3834cc652a84fb45531bd335ad06e271b34ebc216e380a89798fe8e2c 1945 | md5: e3fd1f8320a100f2b210e690a57cd615 1946 | depends: 1947 | - __osx >=11.0 1948 | license: 0BSD 1949 | size: 98945 1950 | timestamp: 1738525462560 1951 | - conda: https://prefix.dev/conda-forge/win-64/liblzma-5.6.4-h2466b09_0.conda 1952 | sha256: 3f552b0bdefdd1459ffc827ea3bf70a6a6920c7879d22b6bfd0d73015b55227b 1953 | md5: c48f6ad0ef0a555b27b233dfcab46a90 1954 | depends: 1955 | - ucrt >=10.0.20348.0 1956 | - vc >=14.2,<15 1957 | - vc14_runtime >=14.29.30139 1958 | license: 0BSD 1959 | size: 104465 1960 | timestamp: 1738525557254 1961 | - conda: https://prefix.dev/conda-forge/linux-64/libmpdec-4.0.0-h4bc722e_0.conda 1962 | sha256: d02d1d3304ecaf5c728e515eb7416517a0b118200cd5eacbe829c432d1664070 1963 | md5: aeb98fdeb2e8f25d43ef71fbacbeec80 1964 | depends: 1965 | - __glibc >=2.17,<3.0.a0 1966 | - libgcc-ng >=12 1967 | license: BSD-2-Clause 1968 | license_family: BSD 1969 | size: 89991 1970 | timestamp: 1723817448345 1971 | - conda: https://prefix.dev/conda-forge/osx-arm64/libmpdec-4.0.0-h99b78c6_0.conda 1972 | sha256: f7917de9117d3a5fe12a39e185c7ce424f8d5010a6f97b4333e8a1dcb2889d16 1973 | md5: 7476305c35dd9acef48da8f754eedb40 1974 | depends: 1975 | - __osx >=11.0 1976 | license: BSD-2-Clause 1977 | license_family: BSD 1978 | size: 69263 1979 | timestamp: 1723817629767 1980 | - conda: https://prefix.dev/conda-forge/win-64/libmpdec-4.0.0-h2466b09_0.conda 1981 | sha256: fc529fc82c7caf51202cc5cec5bb1c2e8d90edbac6d0a4602c966366efe3c7bf 1982 | md5: 74860100b2029e2523cf480804c76b9b 1983 | depends: 1984 | - ucrt >=10.0.20348.0 1985 | - vc >=14.2,<15 1986 | - vc14_runtime >=14.29.30139 1987 | license: BSD-2-Clause 1988 | license_family: BSD 1989 | size: 88657 1990 | timestamp: 1723861474602 1991 | - conda: https://prefix.dev/conda-forge/linux-64/libnghttp2-1.64.0-h161d5f1_0.conda 1992 | sha256: b0f2b3695b13a989f75d8fd7f4778e1c7aabe3b36db83f0fe80b2cd812c0e975 1993 | md5: 19e57602824042dfd0446292ef90488b 1994 | depends: 1995 | - __glibc >=2.17,<3.0.a0 1996 | - c-ares >=1.32.3,<2.0a0 1997 | - libev >=4.33,<4.34.0a0 1998 | - libev >=4.33,<5.0a0 1999 | - libgcc >=13 2000 | - libstdcxx >=13 2001 | - libzlib >=1.3.1,<2.0a0 2002 | - openssl >=3.3.2,<4.0a0 2003 | license: MIT 2004 | license_family: MIT 2005 | size: 647599 2006 | timestamp: 1729571887612 2007 | - conda: https://prefix.dev/conda-forge/osx-arm64/libnghttp2-1.64.0-h6d7220d_0.conda 2008 | sha256: 00cc685824f39f51be5233b54e19f45abd60de5d8847f1a56906f8936648b72f 2009 | md5: 3408c02539cee5f1141f9f11450b6a51 2010 | depends: 2011 | - __osx >=11.0 2012 | - c-ares >=1.34.2,<2.0a0 2013 | - libcxx >=17 2014 | - libev >=4.33,<4.34.0a0 2015 | - libev >=4.33,<5.0a0 2016 | - libzlib >=1.3.1,<2.0a0 2017 | - openssl >=3.3.2,<4.0a0 2018 | license: MIT 2019 | license_family: MIT 2020 | size: 566719 2021 | timestamp: 1729572385640 2022 | - conda: https://prefix.dev/conda-forge/linux-64/libsanitizer-13.3.0-he8ea267_2.conda 2023 | sha256: 27c4c8bf8e2dd60182d47274389be7c70446df6ed5344206266321ee749158b4 2024 | md5: 2b6cdf7bb95d3d10ef4e38ce0bc95dba 2025 | depends: 2026 | - __glibc >=2.17,<3.0.a0 2027 | - libgcc >=13.3.0 2028 | - libstdcxx >=13.3.0 2029 | license: GPL-3.0-only WITH GCC-exception-3.1 2030 | license_family: GPL 2031 | size: 4155341 2032 | timestamp: 1740240344242 2033 | - conda: https://prefix.dev/conda-forge/linux-64/libsqlite-3.49.1-hee588c1_2.conda 2034 | sha256: a086289bf75c33adc1daed3f1422024504ffb5c3c8b3285c49f025c29708ed16 2035 | md5: 962d6ac93c30b1dfc54c9cccafd1003e 2036 | depends: 2037 | - __glibc >=2.17,<3.0.a0 2038 | - libgcc >=13 2039 | - libzlib >=1.3.1,<2.0a0 2040 | license: Unlicense 2041 | size: 918664 2042 | timestamp: 1742083674731 2043 | - conda: https://prefix.dev/conda-forge/osx-arm64/libsqlite-3.49.1-h3f77e49_2.conda 2044 | sha256: 907a95f73623c343fc14785cbfefcb7a6b4f2bcf9294fcb295c121611c3a590d 2045 | md5: 3b1e330d775170ac46dff9a94c253bd0 2046 | depends: 2047 | - __osx >=11.0 2048 | - libzlib >=1.3.1,<2.0a0 2049 | license: Unlicense 2050 | size: 900188 2051 | timestamp: 1742083865246 2052 | - conda: https://prefix.dev/conda-forge/win-64/libsqlite-3.49.1-h67fdade_2.conda 2053 | sha256: c092d42d00fd85cf609cc58574ba2b03c141af5762283f36f5dd445ef7c0f4fe 2054 | md5: b58b66d4ad1aaf1c2543cbbd6afb1a59 2055 | depends: 2056 | - ucrt >=10.0.20348.0 2057 | - vc >=14.2,<15 2058 | - vc14_runtime >=14.29.30139 2059 | license: Unlicense 2060 | size: 1081292 2061 | timestamp: 1742083956001 2062 | - conda: https://prefix.dev/conda-forge/linux-64/libssh2-1.11.1-hf672d98_0.conda 2063 | sha256: 0407ac9fda2bb67e11e357066eff144c845801d00b5f664efbc48813af1e7bb9 2064 | md5: be2de152d8073ef1c01b7728475f2fe7 2065 | depends: 2066 | - __glibc >=2.17,<3.0.a0 2067 | - libgcc >=13 2068 | - libzlib >=1.3.1,<2.0a0 2069 | - openssl >=3.4.0,<4.0a0 2070 | license: BSD-3-Clause 2071 | license_family: BSD 2072 | size: 304278 2073 | timestamp: 1732349402869 2074 | - conda: https://prefix.dev/conda-forge/osx-arm64/libssh2-1.11.1-h9cc3647_0.conda 2075 | sha256: f7047c6ed44bcaeb04432e8c74da87591940d091b0a3940c0d884b7faa8062e9 2076 | md5: ddc7194676c285513706e5fc64f214d7 2077 | depends: 2078 | - libzlib >=1.3.1,<2.0a0 2079 | - openssl >=3.4.0,<4.0a0 2080 | license: BSD-3-Clause 2081 | license_family: BSD 2082 | size: 279028 2083 | timestamp: 1732349599461 2084 | - conda: https://prefix.dev/conda-forge/win-64/libssh2-1.11.1-he619c9f_0.conda 2085 | sha256: 4b3256bd2b4e4b3183005d3bd8826d651eccd1a4740b70625afa2b7e7123d191 2086 | md5: af0cbf037dd614c34399b3b3e568c557 2087 | depends: 2088 | - libzlib >=1.3.1,<2.0a0 2089 | - openssl >=3.4.0,<4.0a0 2090 | - ucrt >=10.0.20348.0 2091 | - vc >=14.2,<15 2092 | - vc14_runtime >=14.29.30139 2093 | license: BSD-3-Clause 2094 | license_family: BSD 2095 | size: 291889 2096 | timestamp: 1732349796504 2097 | - conda: https://prefix.dev/conda-forge/linux-64/libstdcxx-14.2.0-h8f9b012_2.conda 2098 | sha256: 8f5bd92e4a24e1d35ba015c5252e8f818898478cb3bc50bd8b12ab54707dc4da 2099 | md5: a78c856b6dc6bf4ea8daeb9beaaa3fb0 2100 | depends: 2101 | - __glibc >=2.17,<3.0.a0 2102 | - libgcc 14.2.0 h767d61c_2 2103 | license: GPL-3.0-only WITH GCC-exception-3.1 2104 | license_family: GPL 2105 | size: 3884556 2106 | timestamp: 1740240685253 2107 | - conda: https://prefix.dev/conda-forge/noarch/libstdcxx-devel_linux-64-13.3.0-hc03c837_102.conda 2108 | sha256: abc89056d4ca7debe938504b3b6d9ccc6d7a0f0b528fe3409230636a21e81002 2109 | md5: aa38de2738c5f4a72a880e3d31ffe8b4 2110 | depends: 2111 | - __unix 2112 | license: GPL-3.0-only WITH GCC-exception-3.1 2113 | license_family: GPL 2114 | size: 12873130 2115 | timestamp: 1740240239655 2116 | - conda: https://prefix.dev/conda-forge/linux-64/libstdcxx-ng-14.2.0-h4852527_2.conda 2117 | sha256: e86f38b007cf97cc2c67cd519f2de12a313c4ee3f5ef11652ad08932a5e34189 2118 | md5: c75da67f045c2627f59e6fcb5f4e3a9b 2119 | depends: 2120 | - libstdcxx 14.2.0 h8f9b012_2 2121 | license: GPL-3.0-only WITH GCC-exception-3.1 2122 | license_family: GPL 2123 | size: 53830 2124 | timestamp: 1740240722530 2125 | - conda: https://prefix.dev/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda 2126 | sha256: 787eb542f055a2b3de553614b25f09eefb0a0931b0c87dbcce6efdfd92f04f18 2127 | md5: 40b61aab5c7ba9ff276c41cfffe6b80b 2128 | depends: 2129 | - libgcc-ng >=12 2130 | license: BSD-3-Clause 2131 | license_family: BSD 2132 | size: 33601 2133 | timestamp: 1680112270483 2134 | - conda: https://prefix.dev/conda-forge/linux-64/libuv-1.50.0-hb9d3cd8_0.conda 2135 | sha256: b4a8890023902aef9f1f33e3e35603ad9c2f16c21fdb58e968fa6c1bd3e94c0b 2136 | md5: 771ee65e13bc599b0b62af5359d80169 2137 | depends: 2138 | - __glibc >=2.17,<3.0.a0 2139 | - libgcc >=13 2140 | license: MIT 2141 | license_family: MIT 2142 | size: 891272 2143 | timestamp: 1737016632446 2144 | - conda: https://prefix.dev/conda-forge/osx-arm64/libuv-1.50.0-h5505292_0.conda 2145 | sha256: d13fb49d4c8262bf2c44ffb2c77bb2b5d0f85fc6de76bdb75208efeccb29fce6 2146 | md5: 20717343fb30798ab7c23c2e92b748c1 2147 | depends: 2148 | - __osx >=11.0 2149 | license: MIT 2150 | license_family: MIT 2151 | size: 418890 2152 | timestamp: 1737016751326 2153 | - conda: https://prefix.dev/conda-forge/win-64/libuv-1.50.0-h2466b09_0.conda 2154 | sha256: aeb71b2a2973ffed6d639ace6c1afef1a337836425e637d2320f3166dbaa5c80 2155 | md5: a63a1ec1e8d017d1b9894aed98c419da 2156 | depends: 2157 | - ucrt >=10.0.20348.0 2158 | - vc >=14.2,<15 2159 | - vc14_runtime >=14.29.30139 2160 | license: MIT 2161 | license_family: MIT 2162 | size: 291944 2163 | timestamp: 1737017103042 2164 | - conda: https://prefix.dev/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h57928b3_9.conda 2165 | sha256: 373f2973b8a358528b22be5e8d84322c165b4c5577d24d94fd67ad1bb0a0f261 2166 | md5: 08bfa5da6e242025304b206d152479ef 2167 | depends: 2168 | - ucrt 2169 | constrains: 2170 | - pthreads-win32 <0.0a0 2171 | - msys2-conda-epoch <0.0a0 2172 | license: MIT AND BSD-3-Clause-Clear 2173 | size: 35794 2174 | timestamp: 1737099561703 2175 | - conda: https://prefix.dev/conda-forge/osx-arm64/libxml2-2.13.6-hce475f1_0.conda 2176 | sha256: 9ce429417545f7616ed528061305b3a1fc3732ff3bb24bd91cba260550879693 2177 | md5: 8654012bd68aa48b94eee6c9faab85b6 2178 | depends: 2179 | - __osx >=11.0 2180 | - libiconv >=1.18,<2.0a0 2181 | - liblzma >=5.6.4,<6.0a0 2182 | - libzlib >=1.3.1,<2.0a0 2183 | constrains: 2184 | - icu <0.0a0 2185 | license: MIT 2186 | license_family: MIT 2187 | size: 582490 2188 | timestamp: 1739953065675 2189 | - conda: https://prefix.dev/conda-forge/win-64/libxml2-2.13.6-he286e8c_0.conda 2190 | sha256: 2919f4e9fffefbf3ff6ecd8ebe81584d573c069b2b82eaeed797b1f56ac8d97b 2191 | md5: c66d5bece33033a9c028bbdf1e627ec5 2192 | depends: 2193 | - libiconv >=1.18,<2.0a0 2194 | - libzlib >=1.3.1,<2.0a0 2195 | - ucrt >=10.0.20348.0 2196 | - vc >=14.2,<15 2197 | - vc14_runtime >=14.29.30139 2198 | license: MIT 2199 | license_family: MIT 2200 | size: 1669569 2201 | timestamp: 1739953461426 2202 | - conda: https://prefix.dev/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda 2203 | sha256: d4bfe88d7cb447768e31650f06257995601f89076080e76df55e3112d4e47dc4 2204 | md5: edb0dca6bc32e4f4789199455a1dbeb8 2205 | depends: 2206 | - __glibc >=2.17,<3.0.a0 2207 | - libgcc >=13 2208 | constrains: 2209 | - zlib 1.3.1 *_2 2210 | license: Zlib 2211 | license_family: Other 2212 | size: 60963 2213 | timestamp: 1727963148474 2214 | - conda: https://prefix.dev/conda-forge/osx-arm64/libzlib-1.3.1-h8359307_2.conda 2215 | sha256: ce34669eadaba351cd54910743e6a2261b67009624dbc7daeeafdef93616711b 2216 | md5: 369964e85dc26bfe78f41399b366c435 2217 | depends: 2218 | - __osx >=11.0 2219 | constrains: 2220 | - zlib 1.3.1 *_2 2221 | license: Zlib 2222 | license_family: Other 2223 | size: 46438 2224 | timestamp: 1727963202283 2225 | - conda: https://prefix.dev/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda 2226 | sha256: ba945c6493449bed0e6e29883c4943817f7c79cbff52b83360f7b341277c6402 2227 | md5: 41fbfac52c601159df6c01f875de31b9 2228 | depends: 2229 | - ucrt >=10.0.20348.0 2230 | - vc >=14.2,<15 2231 | - vc14_runtime >=14.29.30139 2232 | constrains: 2233 | - zlib 1.3.1 *_2 2234 | license: Zlib 2235 | license_family: Other 2236 | size: 55476 2237 | timestamp: 1727963768015 2238 | - conda: https://prefix.dev/conda-forge/win-64/lld-20.1.1-hd91d51b_0.conda 2239 | sha256: bf0f85c479cdaea1eccfc124b8f89935b3509ffede6dbb84fb288626e42fe251 2240 | md5: 338d043f528c60a66c8708b56286459b 2241 | depends: 2242 | - libxml2 >=2.13.6,<3.0a0 2243 | - libzlib >=1.3.1,<2.0a0 2244 | - ucrt >=10.0.20348.0 2245 | - vc >=14.2,<15 2246 | - vc14_runtime >=14.29.30139 2247 | - zstd >=1.5.7,<1.6.0a0 2248 | constrains: 2249 | - llvm ==20.1.1 2250 | license: Apache-2.0 WITH LLVM-exception 2251 | license_family: APACHE 2252 | size: 132317212 2253 | timestamp: 1742477760399 2254 | - conda: https://prefix.dev/conda-forge/osx-arm64/llvm-openmp-20.1.1-hdb05f8b_1.conda 2255 | sha256: ae57041a588cd190cb55b602c1ed0ef3604ce28d3891515386a85693edd3c175 2256 | md5: 97236e94c3a82367c5fe3a90557e6207 2257 | depends: 2258 | - __osx >=11.0 2259 | constrains: 2260 | - openmp 20.1.1|20.1.1.* 2261 | license: Apache-2.0 WITH LLVM-exception 2262 | license_family: APACHE 2263 | size: 282105 2264 | timestamp: 1742533199558 2265 | - conda: https://prefix.dev/conda-forge/osx-arm64/llvm-tools-18.1.8-hc4b4ae8_3.conda 2266 | sha256: 3bdd318088fbd425d933f40f149700793094348b47326faa70694fc5cfbffc0e 2267 | md5: 6ede59b3835d443abdeace7cad57c8c4 2268 | depends: 2269 | - __osx >=11.0 2270 | - libllvm18 18.1.8 hc4b4ae8_3 2271 | - libxml2 >=2.13.5,<3.0a0 2272 | - libzlib >=1.3.1,<2.0a0 2273 | - llvm-tools-18 18.1.8 hc4b4ae8_3 2274 | - zstd >=1.5.6,<1.6.0a0 2275 | constrains: 2276 | - clang-tools 18.1.8 2277 | - llvmdev 18.1.8 2278 | - llvm 18.1.8 2279 | - clang 18.1.8 2280 | license: Apache-2.0 WITH LLVM-exception 2281 | license_family: Apache 2282 | size: 88046 2283 | timestamp: 1737837646765 2284 | - conda: https://prefix.dev/conda-forge/win-64/llvm-tools-19.1.7-h2a44499_1.conda 2285 | sha256: 5de0dc8a3797a27c4a73a4649db59aa01298b4e0935cd94f9b9d565be24255a8 2286 | md5: d884dea888a8e6865695852686c9f91c 2287 | depends: 2288 | - libllvm19 19.1.7 h3089188_1 2289 | - libxml2 >=2.13.5,<3.0a0 2290 | - libzlib >=1.3.1,<2.0a0 2291 | - ucrt >=10.0.20348.0 2292 | - vc >=14.2,<15 2293 | - vc14_runtime >=14.29.30139 2294 | - zstd >=1.5.6,<1.6.0a0 2295 | constrains: 2296 | - llvm 19.1.7 2297 | - llvmdev 19.1.7 2298 | - clang 19.1.7 2299 | - clang-tools 19.1.7 2300 | license: Apache-2.0 WITH LLVM-exception 2301 | license_family: Apache 2302 | size: 399407121 2303 | timestamp: 1737784775414 2304 | - conda: https://prefix.dev/conda-forge/osx-arm64/llvm-tools-18-18.1.8-hc4b4ae8_3.conda 2305 | sha256: dae19f3596a8e0edadbf6c3037c8c5d9039d1a9ab57f384108580ec8fb89b06f 2306 | md5: 40b505161818b48957269998b4b41114 2307 | depends: 2308 | - __osx >=11.0 2309 | - libllvm18 18.1.8 hc4b4ae8_3 2310 | - libxml2 >=2.13.5,<3.0a0 2311 | - libzlib >=1.3.1,<2.0a0 2312 | - zstd >=1.5.6,<1.6.0a0 2313 | license: Apache-2.0 WITH LLVM-exception 2314 | license_family: Apache 2315 | size: 23610271 2316 | timestamp: 1737837584505 2317 | - conda: https://prefix.dev/conda-forge/linux-64/make-4.4.1-hb9d3cd8_2.conda 2318 | sha256: d652c7bd4d3b6f82b0f6d063b0d8df6f54cc47531092d7ff008e780f3261bdda 2319 | md5: 33405d2a66b1411db9f7242c8b97c9e7 2320 | depends: 2321 | - __glibc >=2.17,<3.0.a0 2322 | - libgcc >=13 2323 | license: GPL-3.0-or-later 2324 | license_family: GPL 2325 | size: 513088 2326 | timestamp: 1727801714848 2327 | - conda: https://prefix.dev/conda-forge/osx-arm64/make-4.4.1-hc9fafa5_2.conda 2328 | sha256: 90ca65e788406d9029ae23ad4bd944a8b5353ad5f59bd6ce326f980cde46f37e 2329 | md5: 9f44ef1fea0a25d6a3491c58f3af8460 2330 | depends: 2331 | - __osx >=11.0 2332 | license: GPL-3.0-or-later 2333 | license_family: GPL 2334 | size: 274048 2335 | timestamp: 1727801725384 2336 | - conda: https://prefix.dev/conda-forge/win-64/make-4.4.1-h0e40799_2.conda 2337 | sha256: a810cdca3d5fa50d562cda23c0c1195b45ff5f9b0c41e0d4c8c2dd3c043ff4f2 2338 | md5: 77ff648ad9fec660f261aa8ab0949f62 2339 | depends: 2340 | - libgcc >=13 2341 | - libwinpthread >=12.0.0.r4.gg4f2fc60ca 2342 | - ucrt >=10.0.20348.0 2343 | license: GPL-3.0-or-later 2344 | license_family: GPL 2345 | size: 2176937 2346 | timestamp: 1727802346950 2347 | - conda: https://prefix.dev/conda-forge/noarch/markdown-3.6-pyhd8ed1ab_0.conda 2348 | sha256: fce1fde00359696983989699c00f9891194c4ebafea647a8d21b7e2e3329b56e 2349 | md5: 06e9bebf748a0dea03ecbe1f0e27e909 2350 | depends: 2351 | - importlib-metadata >=4.4 2352 | - python >=3.6 2353 | license: BSD-3-Clause 2354 | license_family: BSD 2355 | size: 78331 2356 | timestamp: 1710435316163 2357 | - conda: https://prefix.dev/conda-forge/linux-64/markupsafe-3.0.2-py313h8060acc_1.conda 2358 | sha256: d812caf52efcea7c9fd0eafb21d45dadfd0516812f667b928bee50e87634fae5 2359 | md5: 21b62c55924f01b6eef6827167b46acb 2360 | depends: 2361 | - __glibc >=2.17,<3.0.a0 2362 | - libgcc >=13 2363 | - python >=3.13,<3.14.0a0 2364 | - python_abi 3.13.* *_cp313 2365 | constrains: 2366 | - jinja2 >=3.0.0 2367 | license: BSD-3-Clause 2368 | license_family: BSD 2369 | size: 24856 2370 | timestamp: 1733219782830 2371 | - conda: https://prefix.dev/conda-forge/osx-arm64/markupsafe-3.0.2-py313ha9b7d5b_1.conda 2372 | sha256: 81759af8a9872c8926af3aa59dc4986eee90a0956d1ec820b42ac4f949a71211 2373 | md5: 3acf05d8e42ff0d99820d2d889776fff 2374 | depends: 2375 | - __osx >=11.0 2376 | - python >=3.13,<3.14.0a0 2377 | - python >=3.13,<3.14.0a0 *_cp313 2378 | - python_abi 3.13.* *_cp313 2379 | constrains: 2380 | - jinja2 >=3.0.0 2381 | license: BSD-3-Clause 2382 | license_family: BSD 2383 | size: 24757 2384 | timestamp: 1733219916634 2385 | - conda: https://prefix.dev/conda-forge/win-64/markupsafe-3.0.2-py313hb4c8b1a_1.conda 2386 | sha256: f16cb398915f52d582bcea69a16cf69a56dab6ea2fab6f069da9c2c10f09534c 2387 | md5: ec9ecf6ee4cceb73a0c9a8cdfdf58bed 2388 | depends: 2389 | - python >=3.13,<3.14.0a0 2390 | - python_abi 3.13.* *_cp313 2391 | - ucrt >=10.0.20348.0 2392 | - vc >=14.2,<15 2393 | - vc14_runtime >=14.29.30139 2394 | constrains: 2395 | - jinja2 >=3.0.0 2396 | license: BSD-3-Clause 2397 | license_family: BSD 2398 | size: 27930 2399 | timestamp: 1733220059655 2400 | - conda: https://prefix.dev/conda-forge/noarch/mergedeep-1.3.4-pyhd8ed1ab_1.conda 2401 | sha256: e5b555fd638334a253d83df14e3c913ef8ce10100090e17fd6fb8e752d36f95d 2402 | md5: d9a8fc1f01deae61735c88ec242e855c 2403 | depends: 2404 | - python >=3.9 2405 | license: MIT 2406 | license_family: MIT 2407 | size: 11676 2408 | timestamp: 1734157119152 2409 | - conda: https://prefix.dev/conda-forge/noarch/meson-1.7.0-pyhd8ed1ab_0.conda 2410 | sha256: c776dd57994d19e2b75e46889e7ba7bc74d248053c2d54d39b3e0c2a9ca02a5c 2411 | md5: 6d4bbcce47061d2f9f2636409a8fe7c0 2412 | depends: 2413 | - ninja >=1.8.2 2414 | - python >=3.9 2415 | - setuptools 2416 | license: Apache-2.0 2417 | license_family: APACHE 2418 | size: 668246 2419 | timestamp: 1737930122267 2420 | - conda: https://prefix.dev/conda-forge/noarch/mkdocs-1.6.1-pyhd8ed1ab_1.conda 2421 | sha256: 902d2e251f9a7ffa7d86a3e62be5b2395e28614bd4dbe5f50acf921fd64a8c35 2422 | md5: 14661160be39d78f2b210f2cc2766059 2423 | depends: 2424 | - click >=7.0 2425 | - colorama >=0.4 2426 | - ghp-import >=1.0 2427 | - importlib-metadata >=4.4 2428 | - jinja2 >=2.11.1 2429 | - markdown >=3.3.6 2430 | - markupsafe >=2.0.1 2431 | - mergedeep >=1.3.4 2432 | - mkdocs-get-deps >=0.2.0 2433 | - packaging >=20.5 2434 | - pathspec >=0.11.1 2435 | - python >=3.9 2436 | - pyyaml >=5.1 2437 | - pyyaml-env-tag >=0.1 2438 | - watchdog >=2.0 2439 | constrains: 2440 | - babel >=2.9.0 2441 | license: BSD-2-Clause 2442 | license_family: BSD 2443 | size: 3524754 2444 | timestamp: 1734344673481 2445 | - conda: https://prefix.dev/conda-forge/noarch/mkdocs-get-deps-0.2.0-pyhd8ed1ab_1.conda 2446 | sha256: e0b501b96f7e393757fb2a61d042015966f6c5e9ac825925e43f9a6eafa907b6 2447 | md5: 84382acddb26c27c70f2de8d4c830830 2448 | depends: 2449 | - importlib-metadata >=4.3 2450 | - mergedeep >=1.3.4 2451 | - platformdirs >=2.2.0 2452 | - python >=3.9 2453 | - pyyaml >=5.1 2454 | license: MIT 2455 | license_family: MIT 2456 | size: 14757 2457 | timestamp: 1734353035244 2458 | - conda: https://prefix.dev/conda-forge/noarch/mkdocs-git-revision-date-localized-plugin-1.2.9-pyhd8ed1ab_0.conda 2459 | sha256: a82d131b27c4cd9e2be71326b3c6a65bbadee23dcef80f8319831c852604ff94 2460 | md5: a331f7234c4e8f6136d12fe82f1ee7cd 2461 | depends: 2462 | - babel >=2.7.0 2463 | - gitpython 2464 | - mkdocs >=1.0 2465 | - python >=3.6 2466 | license: MIT 2467 | license_family: MIT 2468 | size: 25456 2469 | timestamp: 1726153706839 2470 | - conda: https://prefix.dev/conda-forge/noarch/mkdocs-material-9.6.9-pyhd8ed1ab_0.conda 2471 | sha256: 1cfc8d5a5097228b1fe07e9d3807e48109597c9d9250e20ed4ee6c82de2615d1 2472 | md5: 69499025c6a2d2e706eb0ff782fcde3a 2473 | depends: 2474 | - babel >=2.10,<3.dev0 2475 | - backrefs >=5.7.post1,<6.dev0 2476 | - colorama >=0.4,<1.dev0 2477 | - jinja2 >=3.0,<4.dev0 2478 | - markdown >=3.2,<4.dev0 2479 | - mkdocs >=1.6,<2.dev0 2480 | - mkdocs-material-extensions >=1.3,<2.dev0 2481 | - paginate >=0.5,<1.dev0 2482 | - pygments >=2.16,<3.dev0 2483 | - pymdown-extensions >=10.2,<11.dev0 2484 | - python >=3.9 2485 | - requests >=2.26,<3.dev0 2486 | license: MIT 2487 | license_family: MIT 2488 | size: 4929294 2489 | timestamp: 1742220372293 2490 | - conda: https://prefix.dev/conda-forge/noarch/mkdocs-material-extensions-1.3.1-pyhd8ed1ab_1.conda 2491 | sha256: f62955d40926770ab65cc54f7db5fde6c073a3ba36a0787a7a5767017da50aa3 2492 | md5: de8af4000a4872e16fb784c649679c8e 2493 | depends: 2494 | - python >=3.9 2495 | constrains: 2496 | - mkdocs-material >=5.0.0 2497 | license: MIT 2498 | license_family: MIT 2499 | size: 16122 2500 | timestamp: 1734641109286 2501 | - conda: https://prefix.dev/conda-forge/osx-arm64/mpc-1.3.1-h8f1351a_1.conda 2502 | sha256: 2700899ad03302a1751dbf2bca135407e470dd83ac897ab91dd8675d4300f158 2503 | md5: a5635df796b71f6ca400fc7026f50701 2504 | depends: 2505 | - __osx >=11.0 2506 | - gmp >=6.3.0,<7.0a0 2507 | - mpfr >=4.2.1,<5.0a0 2508 | license: LGPL-3.0-or-later 2509 | license_family: LGPL 2510 | size: 104766 2511 | timestamp: 1725629165420 2512 | - conda: https://prefix.dev/conda-forge/osx-arm64/mpfr-4.2.1-hb693164_3.conda 2513 | sha256: 4463e4e2aba7668e37a1b8532859191b4477a6f3602a5d6b4d64ad4c4baaeac5 2514 | md5: 4e4ea852d54cc2b869842de5044662fb 2515 | depends: 2516 | - __osx >=11.0 2517 | - gmp >=6.3.0,<7.0a0 2518 | license: LGPL-3.0-only 2519 | license_family: LGPL 2520 | size: 345517 2521 | timestamp: 1725746730583 2522 | - conda: https://prefix.dev/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda 2523 | sha256: 3fde293232fa3fca98635e1167de6b7c7fda83caf24b9d6c91ec9eefb4f4d586 2524 | md5: 47e340acb35de30501a76c7c799c41d7 2525 | depends: 2526 | - __glibc >=2.17,<3.0.a0 2527 | - libgcc >=13 2528 | license: X11 AND BSD-3-Clause 2529 | size: 891641 2530 | timestamp: 1738195959188 2531 | - conda: https://prefix.dev/conda-forge/osx-arm64/ncurses-6.5-h5e97a16_3.conda 2532 | sha256: 2827ada40e8d9ca69a153a45f7fd14f32b2ead7045d3bbb5d10964898fe65733 2533 | md5: 068d497125e4bf8a66bf707254fff5ae 2534 | depends: 2535 | - __osx >=11.0 2536 | license: X11 AND BSD-3-Clause 2537 | size: 797030 2538 | timestamp: 1738196177597 2539 | - conda: https://prefix.dev/conda-forge/linux-64/ninja-1.12.1-h297d8ca_0.conda 2540 | sha256: 40f7b76b07067935f8a5886aab0164067b7aa71eb5ad20b7278618c0c2c98e06 2541 | md5: 3aa1c7e292afeff25a0091ddd7c69b72 2542 | depends: 2543 | - libgcc-ng >=12 2544 | - libstdcxx-ng >=12 2545 | license: Apache-2.0 2546 | license_family: Apache 2547 | size: 2198858 2548 | timestamp: 1715440571685 2549 | - conda: https://prefix.dev/conda-forge/osx-arm64/ninja-1.12.1-h420ef59_0.conda 2550 | sha256: 11528acfa0f05d0c51639f6b09b51dc6611b801668449bb36c206c4b055be4f4 2551 | md5: 9166c10405d41c95ffde8fcb8e5c3d51 2552 | depends: 2553 | - __osx >=11.0 2554 | - libcxx >=16 2555 | license: Apache-2.0 2556 | license_family: Apache 2557 | size: 112576 2558 | timestamp: 1715440927034 2559 | - conda: https://prefix.dev/conda-forge/win-64/ninja-1.12.1-hc790b64_0.conda 2560 | sha256: b821cb72cb3ef08fab90a9bae899510e6cf3c23b5da6070d1ec30099dfe6a5be 2561 | md5: a557dde55343e03c68cd7e29e7f87279 2562 | depends: 2563 | - ucrt >=10.0.20348.0 2564 | - vc >=14.2,<15 2565 | - vc14_runtime >=14.29.30139 2566 | license: Apache-2.0 2567 | license_family: Apache 2568 | size: 285150 2569 | timestamp: 1715441052517 2570 | - conda: https://prefix.dev/conda-forge/linux-64/openssl-3.4.1-h7b32b05_0.conda 2571 | sha256: cbf62df3c79a5c2d113247ddea5658e9ff3697b6e741c210656e239ecaf1768f 2572 | md5: 41adf927e746dc75ecf0ef841c454e48 2573 | depends: 2574 | - __glibc >=2.17,<3.0.a0 2575 | - ca-certificates 2576 | - libgcc >=13 2577 | license: Apache-2.0 2578 | license_family: Apache 2579 | size: 2939306 2580 | timestamp: 1739301879343 2581 | - conda: https://prefix.dev/conda-forge/osx-arm64/openssl-3.4.1-h81ee809_0.conda 2582 | sha256: 4f8e2389e1b711b44182a075516d02c80fa7a3a7e25a71ff1b5ace9eae57a17a 2583 | md5: 75f9f0c7b1740017e2db83a53ab9a28e 2584 | depends: 2585 | - __osx >=11.0 2586 | - ca-certificates 2587 | license: Apache-2.0 2588 | license_family: Apache 2589 | size: 2934522 2590 | timestamp: 1739301896733 2591 | - conda: https://prefix.dev/conda-forge/win-64/openssl-3.4.1-ha4e3fda_0.conda 2592 | sha256: 56dcc2b4430bfc1724e32661c34b71ae33a23a14149866fc5645361cfd3b3a6a 2593 | md5: 0730f8094f7088592594f9bf3ae62b3f 2594 | depends: 2595 | - ca-certificates 2596 | - ucrt >=10.0.20348.0 2597 | - vc >=14.2,<15 2598 | - vc14_runtime >=14.29.30139 2599 | license: Apache-2.0 2600 | license_family: Apache 2601 | size: 8515197 2602 | timestamp: 1739304103653 2603 | - conda: https://prefix.dev/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda 2604 | sha256: da157b19bcd398b9804c5c52fc000fcb8ab0525bdb9c70f95beaa0bb42f85af1 2605 | md5: 3bfed7e6228ebf2f7b9eaa47f1b4e2aa 2606 | depends: 2607 | - python >=3.8 2608 | license: Apache-2.0 2609 | license_family: APACHE 2610 | size: 60164 2611 | timestamp: 1733203368787 2612 | - conda: https://prefix.dev/conda-forge/noarch/paginate-0.5.7-pyhd8ed1ab_1.conda 2613 | sha256: f6fef1b43b0d3d92476e1870c08d7b9c229aebab9a0556b073a5e1641cf453bd 2614 | md5: c3f35453097faf911fd3f6023fc2ab24 2615 | depends: 2616 | - python >=3.9 2617 | license: MIT 2618 | license_family: MIT 2619 | size: 18865 2620 | timestamp: 1734618649164 2621 | - conda: https://prefix.dev/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_1.conda 2622 | sha256: 9f64009cdf5b8e529995f18e03665b03f5d07c0b17445b8badef45bde76249ee 2623 | md5: 617f15191456cc6a13db418a275435e5 2624 | depends: 2625 | - python >=3.9 2626 | license: MPL-2.0 2627 | license_family: MOZILLA 2628 | size: 41075 2629 | timestamp: 1733233471940 2630 | - conda: https://prefix.dev/conda-forge/osx-arm64/pcre2-10.44-h297a79d_2.conda 2631 | sha256: 83153c7d8fd99cab33c92ce820aa7bfed0f1c94fc57010cf227b6e3c50cb7796 2632 | md5: 147c83e5e44780c7492998acbacddf52 2633 | depends: 2634 | - __osx >=11.0 2635 | - bzip2 >=1.0.8,<2.0a0 2636 | - libzlib >=1.3.1,<2.0a0 2637 | license: BSD-3-Clause 2638 | license_family: BSD 2639 | size: 618973 2640 | timestamp: 1723488853807 2641 | - conda: https://prefix.dev/conda-forge/win-64/pcre2-10.44-h3d7b363_2.conda 2642 | sha256: f4a12cbf8a7c5bfa2592b9dc92b492c438781898e5b02f397979b0be6e1b5851 2643 | md5: a3a3baddcfb8c80db84bec3cb7746fb8 2644 | depends: 2645 | - bzip2 >=1.0.8,<2.0a0 2646 | - libzlib >=1.3.1,<2.0a0 2647 | - ucrt >=10.0.20348.0 2648 | - vc >=14.2,<15 2649 | - vc14_runtime >=14.29.30139 2650 | license: BSD-3-Clause 2651 | license_family: BSD 2652 | size: 820831 2653 | timestamp: 1723489427046 2654 | - conda: https://prefix.dev/conda-forge/linux-64/pkg-config-0.29.2-h4bc722e_1009.conda 2655 | sha256: c9601efb1af5391317e04eca77c6fe4d716bf1ca1ad8da2a05d15cb7c28d7d4e 2656 | md5: 1bee70681f504ea424fb07cdb090c001 2657 | depends: 2658 | - __glibc >=2.17,<3.0.a0 2659 | - libgcc-ng >=12 2660 | license: GPL-2.0-or-later 2661 | license_family: GPL 2662 | size: 115175 2663 | timestamp: 1720805894943 2664 | - conda: https://prefix.dev/conda-forge/osx-arm64/pkg-config-0.29.2-hde07d2e_1009.conda 2665 | sha256: d82f4655b2d67fe12eefe1a3eea4cd27d33fa41dbc5e9aeab5fd6d3d2c26f18a 2666 | md5: b4f41e19a8c20184eec3aaf0f0953293 2667 | depends: 2668 | - __osx >=11.0 2669 | - libglib >=2.80.3,<3.0a0 2670 | - libiconv >=1.17,<2.0a0 2671 | license: GPL-2.0-or-later 2672 | license_family: GPL 2673 | size: 49724 2674 | timestamp: 1720806128118 2675 | - conda: https://prefix.dev/conda-forge/win-64/pkg-config-0.29.2-h88c491f_1009.conda 2676 | sha256: 86b0c40c8b569dbc164cb1de098ddabf4c240a5e8f38547aab00493891fa67f3 2677 | md5: 122d6514d415fbe02c9b58aee9f6b53e 2678 | depends: 2679 | - libglib >=2.80.3,<3.0a0 2680 | - ucrt >=10.0.20348.0 2681 | - vc >=14.2,<15 2682 | - vc14_runtime >=14.29.30139 2683 | license: GPL-2.0-or-later 2684 | license_family: GPL 2685 | size: 36118 2686 | timestamp: 1720806338740 2687 | - conda: https://prefix.dev/conda-forge/noarch/platformdirs-4.3.7-pyh29332c3_0.conda 2688 | sha256: ae7d3e58224d53d6b59e1f5ac5809803bb1972f0ac4fb10cd9b8c87d4122d3e0 2689 | md5: e57da6fe54bb3a5556cf36d199ff07d8 2690 | depends: 2691 | - python >=3.9 2692 | - python 2693 | license: MIT 2694 | license_family: MIT 2695 | size: 23291 2696 | timestamp: 1742485085457 2697 | - conda: https://prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda 2698 | sha256: 79db7928d13fab2d892592223d7570f5061c192f27b9febd1a418427b719acc6 2699 | md5: 12c566707c80111f9799308d9e265aef 2700 | depends: 2701 | - python >=3.9 2702 | - python 2703 | license: BSD-3-Clause 2704 | license_family: BSD 2705 | size: 110100 2706 | timestamp: 1733195786147 2707 | - conda: https://prefix.dev/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda 2708 | sha256: 28a3e3161390a9d23bc02b4419448f8d27679d9e2c250e29849e37749c8de86b 2709 | md5: 232fb4577b6687b2d503ef8e254270c9 2710 | depends: 2711 | - python >=3.9 2712 | license: BSD-2-Clause 2713 | license_family: BSD 2714 | size: 888600 2715 | timestamp: 1736243563082 2716 | - conda: https://prefix.dev/conda-forge/noarch/pymdown-extensions-10.14.3-pyhd8ed1ab_0.conda 2717 | sha256: 83b638059eda5208e2e4acfeecf2ff53b5dcb1adc7d85fc92edf0e7a48b943eb 2718 | md5: 08bf3657d03e1ee964c66288f5b3d797 2719 | depends: 2720 | - markdown >=3.6 2721 | - python >=3.9 2722 | - pyyaml 2723 | license: MIT 2724 | license_family: MIT 2725 | size: 168695 2726 | timestamp: 1738439213597 2727 | - conda: https://prefix.dev/conda-forge/noarch/pysocks-1.7.1-pyh09c184e_7.conda 2728 | sha256: d016e04b0e12063fbee4a2d5fbb9b39a8d191b5a0042f0b8459188aedeabb0ca 2729 | md5: e2fd202833c4a981ce8a65974fe4abd1 2730 | depends: 2731 | - __win 2732 | - python >=3.9 2733 | - win_inet_pton 2734 | license: BSD-3-Clause 2735 | license_family: BSD 2736 | size: 21784 2737 | timestamp: 1733217448189 2738 | - conda: https://prefix.dev/conda-forge/noarch/pysocks-1.7.1-pyha55dd90_7.conda 2739 | sha256: ba3b032fa52709ce0d9fd388f63d330a026754587a2f461117cac9ab73d8d0d8 2740 | md5: 461219d1a5bd61342293efa2c0c90eac 2741 | depends: 2742 | - __unix 2743 | - python >=3.9 2744 | license: BSD-3-Clause 2745 | license_family: BSD 2746 | size: 21085 2747 | timestamp: 1733217331982 2748 | - conda: https://prefix.dev/conda-forge/linux-64/python-3.13.2-hf636f53_101_cp313.conda 2749 | build_number: 101 2750 | sha256: cc1984ee54261cee6a2db75c65fc7d2967bc8c6e912d332614df15244d7730ef 2751 | md5: a7902a3611fe773da3921cbbf7bc2c5c 2752 | depends: 2753 | - __glibc >=2.17,<3.0.a0 2754 | - bzip2 >=1.0.8,<2.0a0 2755 | - ld_impl_linux-64 >=2.36.1 2756 | - libexpat >=2.6.4,<3.0a0 2757 | - libffi >=3.4,<4.0a0 2758 | - libgcc >=13 2759 | - liblzma >=5.6.4,<6.0a0 2760 | - libmpdec >=4.0.0,<5.0a0 2761 | - libsqlite >=3.48.0,<4.0a0 2762 | - libuuid >=2.38.1,<3.0a0 2763 | - libzlib >=1.3.1,<2.0a0 2764 | - ncurses >=6.5,<7.0a0 2765 | - openssl >=3.4.1,<4.0a0 2766 | - python_abi 3.13.* *_cp313 2767 | - readline >=8.2,<9.0a0 2768 | - tk >=8.6.13,<8.7.0a0 2769 | - tzdata 2770 | license: Python-2.0 2771 | size: 33233150 2772 | timestamp: 1739803603242 2773 | python_site_packages_path: lib/python3.13/site-packages 2774 | - conda: https://prefix.dev/conda-forge/osx-arm64/python-3.13.2-h81fe080_101_cp313.conda 2775 | build_number: 101 2776 | sha256: 6239a14c39a9902d6b617d57efe3eefbab23cf30cdc67122fdab81d04da193cd 2777 | md5: 71a76067a1cac1a2f03b43a08646a63e 2778 | depends: 2779 | - __osx >=11.0 2780 | - bzip2 >=1.0.8,<2.0a0 2781 | - libexpat >=2.6.4,<3.0a0 2782 | - libffi >=3.4,<4.0a0 2783 | - liblzma >=5.6.4,<6.0a0 2784 | - libmpdec >=4.0.0,<5.0a0 2785 | - libsqlite >=3.48.0,<4.0a0 2786 | - libzlib >=1.3.1,<2.0a0 2787 | - ncurses >=6.5,<7.0a0 2788 | - openssl >=3.4.1,<4.0a0 2789 | - python_abi 3.13.* *_cp313 2790 | - readline >=8.2,<9.0a0 2791 | - tk >=8.6.13,<8.7.0a0 2792 | - tzdata 2793 | license: Python-2.0 2794 | size: 11682568 2795 | timestamp: 1739801342527 2796 | python_site_packages_path: lib/python3.13/site-packages 2797 | - conda: https://prefix.dev/conda-forge/win-64/python-3.13.2-h261c0b1_101_cp313.conda 2798 | build_number: 101 2799 | sha256: b6e7a6f314343926b5a236592272e5014edcda150e14d18d0fb9440d8a185c3f 2800 | md5: 5116c74f5e3e77b915b7b72eea0ec946 2801 | depends: 2802 | - bzip2 >=1.0.8,<2.0a0 2803 | - libexpat >=2.6.4,<3.0a0 2804 | - libffi >=3.4,<4.0a0 2805 | - liblzma >=5.6.4,<6.0a0 2806 | - libmpdec >=4.0.0,<5.0a0 2807 | - libsqlite >=3.48.0,<4.0a0 2808 | - libzlib >=1.3.1,<2.0a0 2809 | - openssl >=3.4.1,<4.0a0 2810 | - python_abi 3.13.* *_cp313 2811 | - tk >=8.6.13,<8.7.0a0 2812 | - tzdata 2813 | - ucrt >=10.0.20348.0 2814 | - vc >=14.2,<15 2815 | - vc14_runtime >=14.29.30139 2816 | license: Python-2.0 2817 | size: 16848398 2818 | timestamp: 1739800686310 2819 | python_site_packages_path: Lib/site-packages 2820 | - conda: https://prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda 2821 | sha256: a50052536f1ef8516ed11a844f9413661829aa083304dc624c5925298d078d79 2822 | md5: 5ba79d7c71f03c678c8ead841f347d6e 2823 | depends: 2824 | - python >=3.9 2825 | - six >=1.5 2826 | license: Apache-2.0 2827 | license_family: APACHE 2828 | size: 222505 2829 | timestamp: 1733215763718 2830 | - conda: https://prefix.dev/conda-forge/linux-64/python_abi-3.13-5_cp313.conda 2831 | build_number: 5 2832 | sha256: 438225b241c5f9bddae6f0178a97f5870a89ecf927dfca54753e689907331442 2833 | md5: 381bbd2a92c863f640a55b6ff3c35161 2834 | constrains: 2835 | - python 3.13.* *_cp313 2836 | license: BSD-3-Clause 2837 | license_family: BSD 2838 | size: 6217 2839 | timestamp: 1723823393322 2840 | - conda: https://prefix.dev/conda-forge/osx-arm64/python_abi-3.13-5_cp313.conda 2841 | build_number: 5 2842 | sha256: 4437198eae80310f40b23ae2f8a9e0a7e5c2b9ae411a8621eb03d87273666199 2843 | md5: b8e82d0a5c1664638f87f63cc5d241fb 2844 | constrains: 2845 | - python 3.13.* *_cp313 2846 | license: BSD-3-Clause 2847 | license_family: BSD 2848 | size: 6322 2849 | timestamp: 1723823058879 2850 | - conda: https://prefix.dev/conda-forge/win-64/python_abi-3.13-5_cp313.conda 2851 | build_number: 5 2852 | sha256: 0c12cc1b84962444002c699ed21e815fb9f686f950d734332a1b74d07db97756 2853 | md5: 44b4fe6f22b57103afb2299935c8b68e 2854 | constrains: 2855 | - python 3.13.* *_cp313 2856 | license: BSD-3-Clause 2857 | license_family: BSD 2858 | size: 6716 2859 | timestamp: 1723823166911 2860 | - conda: https://prefix.dev/conda-forge/noarch/pytz-2025.1-pyhd8ed1ab_0.conda 2861 | sha256: bc35995ecbd38693567fc143d3e6008e53cff900b453412cae48ffa535f25d1f 2862 | md5: d451ccded808abf6511f0a2ac9bb9dcc 2863 | depends: 2864 | - python >=3.9 2865 | license: MIT 2866 | license_family: MIT 2867 | size: 186859 2868 | timestamp: 1738317649432 2869 | - conda: https://prefix.dev/conda-forge/linux-64/pyyaml-6.0.2-py313h8060acc_2.conda 2870 | sha256: 6826217690cfe92d6d49cdeedb6d63ab32f51107105d6a459d30052a467037a0 2871 | md5: 50992ba61a8a1f8c2d346168ae1c86df 2872 | depends: 2873 | - __glibc >=2.17,<3.0.a0 2874 | - libgcc >=13 2875 | - python >=3.13,<3.14.0a0 2876 | - python_abi 3.13.* *_cp313 2877 | - yaml >=0.2.5,<0.3.0a0 2878 | license: MIT 2879 | license_family: MIT 2880 | size: 205919 2881 | timestamp: 1737454783637 2882 | - conda: https://prefix.dev/conda-forge/osx-arm64/pyyaml-6.0.2-py313ha9b7d5b_2.conda 2883 | sha256: 58c41b86ff2dabcf9ccd9010973b5763ec28b14030f9e1d9b371d22b538bce73 2884 | md5: 03a7926e244802f570f25401c25c13bc 2885 | depends: 2886 | - __osx >=11.0 2887 | - python >=3.13,<3.14.0a0 2888 | - python >=3.13,<3.14.0a0 *_cp313 2889 | - python_abi 3.13.* *_cp313 2890 | - yaml >=0.2.5,<0.3.0a0 2891 | license: MIT 2892 | license_family: MIT 2893 | size: 194243 2894 | timestamp: 1737454911892 2895 | - conda: https://prefix.dev/conda-forge/win-64/pyyaml-6.0.2-py313hb4c8b1a_2.conda 2896 | sha256: 5b496c96e48f495de41525cb1b603d0147f2079f88a8cf061aaf9e17a2fe1992 2897 | md5: d14f685b5d204b023c641b188a8d0d7c 2898 | depends: 2899 | - python >=3.13,<3.14.0a0 2900 | - python_abi 3.13.* *_cp313 2901 | - ucrt >=10.0.20348.0 2902 | - vc >=14.2,<15 2903 | - vc14_runtime >=14.29.30139 2904 | - yaml >=0.2.5,<0.3.0a0 2905 | license: MIT 2906 | license_family: MIT 2907 | size: 182783 2908 | timestamp: 1737455202579 2909 | - conda: https://prefix.dev/conda-forge/noarch/pyyaml-env-tag-0.1-pyhd8ed1ab_1.conda 2910 | sha256: 313b597524729b9df052a3a15750df53f9a6a020dbe322a38c0995227e40ee8c 2911 | md5: 02a556b5c344b576bbb7ad2a2c6f2246 2912 | depends: 2913 | - python >=3.9 2914 | - pyyaml 2915 | license: MIT 2916 | license_family: MIT 2917 | size: 9940 2918 | timestamp: 1734344363898 2919 | - conda: https://prefix.dev/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda 2920 | sha256: 2d6d0c026902561ed77cd646b5021aef2d4db22e57a5b0178dfc669231e06d2c 2921 | md5: 283b96675859b20a825f8fa30f311446 2922 | depends: 2923 | - libgcc >=13 2924 | - ncurses >=6.5,<7.0a0 2925 | license: GPL-3.0-only 2926 | license_family: GPL 2927 | size: 282480 2928 | timestamp: 1740379431762 2929 | - conda: https://prefix.dev/conda-forge/osx-arm64/readline-8.2-h1d1bf99_2.conda 2930 | sha256: 7db04684d3904f6151eff8673270922d31da1eea7fa73254d01c437f49702e34 2931 | md5: 63ef3f6e6d6d5c589e64f11263dc5676 2932 | depends: 2933 | - ncurses >=6.5,<7.0a0 2934 | license: GPL-3.0-only 2935 | license_family: GPL 2936 | size: 252359 2937 | timestamp: 1740379663071 2938 | - conda: https://prefix.dev/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda 2939 | sha256: d701ca1136197aa121bbbe0e8c18db6b5c94acbd041c2b43c70e5ae104e1d8ad 2940 | md5: a9b9368f3701a417eac9edbcae7cb737 2941 | depends: 2942 | - certifi >=2017.4.17 2943 | - charset-normalizer >=2,<4 2944 | - idna >=2.5,<4 2945 | - python >=3.9 2946 | - urllib3 >=1.21.1,<3 2947 | constrains: 2948 | - chardet >=3.0.2,<6 2949 | license: Apache-2.0 2950 | license_family: APACHE 2951 | size: 58723 2952 | timestamp: 1733217126197 2953 | - conda: https://prefix.dev/conda-forge/linux-64/rhash-1.4.5-hb9d3cd8_0.conda 2954 | sha256: 04677caac29ec64a5d41d0cca8dbec5f60fa166d5458ff5a4393e4dc08a4799e 2955 | md5: 9af0e7981755f09c81421946c4bcea04 2956 | depends: 2957 | - __glibc >=2.17,<3.0.a0 2958 | - libgcc >=13 2959 | license: MIT 2960 | license_family: MIT 2961 | size: 186921 2962 | timestamp: 1728886721623 2963 | - conda: https://prefix.dev/conda-forge/osx-arm64/rhash-1.4.5-h7ab814d_0.conda 2964 | sha256: e6a3e9dbfcb5ad5d69a20c8ac237d37a282a95983314a28912fc54208c5db391 2965 | md5: 352b210f81798ae1e2f25a98ef4b3b54 2966 | depends: 2967 | - __osx >=11.0 2968 | license: MIT 2969 | license_family: MIT 2970 | size: 177240 2971 | timestamp: 1728886815751 2972 | - conda: https://prefix.dev/conda-forge/noarch/setuptools-75.8.2-pyhff2d567_0.conda 2973 | sha256: 91d664ace7c22e787775069418daa9f232ee8bafdd0a6a080a5ed2395a6fa6b2 2974 | md5: 9bddfdbf4e061821a1a443f93223be61 2975 | depends: 2976 | - python >=3.9 2977 | license: MIT 2978 | license_family: MIT 2979 | size: 777736 2980 | timestamp: 1740654030775 2981 | - conda: https://prefix.dev/conda-forge/osx-arm64/sigtool-0.1.3-h44b9a77_0.tar.bz2 2982 | sha256: 70791ae00a3756830cb50451db55f63e2a42a2fa2a8f1bab1ebd36bbb7d55bff 2983 | md5: 4a2cac04f86a4540b8c9b8d8f597848f 2984 | depends: 2985 | - openssl >=3.0.0,<4.0a0 2986 | license: MIT 2987 | license_family: MIT 2988 | size: 210264 2989 | timestamp: 1643442231687 2990 | - conda: https://prefix.dev/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda 2991 | sha256: 41db0180680cc67c3fa76544ffd48d6a5679d96f4b71d7498a759e94edc9a2db 2992 | md5: a451d576819089b0d672f18768be0f65 2993 | depends: 2994 | - python >=3.9 2995 | license: MIT 2996 | license_family: MIT 2997 | size: 16385 2998 | timestamp: 1733381032766 2999 | - conda: https://prefix.dev/conda-forge/noarch/smmap-5.0.2-pyhd8ed1ab_0.conda 3000 | sha256: eb92d0ad94b65af16c73071cc00cc0e10f2532be807beb52758aab2b06eb21e2 3001 | md5: 87f47a78808baf2fa1ea9c315a1e48f1 3002 | depends: 3003 | - python >=3.9 3004 | license: BSD-3-Clause 3005 | license_family: BSD 3006 | size: 26051 3007 | timestamp: 1739781801801 3008 | - conda: https://prefix.dev/conda-forge/noarch/sysroot_linux-64-2.17-h0157908_18.conda 3009 | sha256: 69ab5804bdd2e8e493d5709eebff382a72fab3e9af6adf93a237ccf8f7dbd624 3010 | md5: 460eba7851277ec1fd80a1a24080787a 3011 | depends: 3012 | - kernel-headers_linux-64 3.10.0 he073ed8_18 3013 | - tzdata 3014 | license: LGPL-2.0-or-later AND LGPL-2.0-or-later WITH exceptions AND GPL-2.0-or-later AND MPL-2.0 3015 | license_family: GPL 3016 | size: 15166921 3017 | timestamp: 1735290488259 3018 | - conda: https://prefix.dev/conda-forge/osx-arm64/tapi-1300.6.5-h03f4b80_0.conda 3019 | sha256: 37cd4f62ec023df8a6c6f9f6ffddde3d6620a83cbcab170a8fff31ef944402e5 3020 | md5: b703bc3e6cba5943acf0e5f987b5d0e2 3021 | depends: 3022 | - __osx >=11.0 3023 | - libcxx >=17.0.0.a0 3024 | - ncurses >=6.5,<7.0a0 3025 | license: NCSA 3026 | license_family: MIT 3027 | size: 207679 3028 | timestamp: 1725491499758 3029 | - conda: https://prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda 3030 | sha256: e0569c9caa68bf476bead1bed3d79650bb080b532c64a4af7d8ca286c08dea4e 3031 | md5: d453b98d9c83e71da0741bb0ff4d76bc 3032 | depends: 3033 | - libgcc-ng >=12 3034 | - libzlib >=1.2.13,<2.0.0a0 3035 | license: TCL 3036 | license_family: BSD 3037 | size: 3318875 3038 | timestamp: 1699202167581 3039 | - conda: https://prefix.dev/conda-forge/osx-arm64/tk-8.6.13-h5083fa2_1.conda 3040 | sha256: 72457ad031b4c048e5891f3f6cb27a53cb479db68a52d965f796910e71a403a8 3041 | md5: b50a57ba89c32b62428b71a875291c9b 3042 | depends: 3043 | - libzlib >=1.2.13,<2.0.0a0 3044 | license: TCL 3045 | license_family: BSD 3046 | size: 3145523 3047 | timestamp: 1699202432999 3048 | - conda: https://prefix.dev/conda-forge/win-64/tk-8.6.13-h5226925_1.conda 3049 | sha256: 2c4e914f521ccb2718946645108c9bd3fc3216ba69aea20c2c3cedbd8db32bb1 3050 | md5: fc048363eb8f03cd1737600a5d08aafe 3051 | depends: 3052 | - ucrt >=10.0.20348.0 3053 | - vc >=14.2,<15 3054 | - vc14_runtime >=14.29.30139 3055 | license: TCL 3056 | license_family: BSD 3057 | size: 3503410 3058 | timestamp: 1699202577803 3059 | - conda: https://prefix.dev/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_1.conda 3060 | sha256: 337be7af5af8b2817f115b3b68870208b30c31d3439bec07bfb2d8f4823e3568 3061 | md5: d17f13df8b65464ca316cbc000a3cb64 3062 | depends: 3063 | - python >=3.9 3064 | license: PSF-2.0 3065 | license_family: PSF 3066 | size: 39637 3067 | timestamp: 1733188758212 3068 | - conda: https://prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda 3069 | sha256: 5aaa366385d716557e365f0a4e9c3fca43ba196872abbbe3d56bb610d131e192 3070 | md5: 4222072737ccff51314b5ece9c7d6f5a 3071 | license: LicenseRef-Public-Domain 3072 | size: 122968 3073 | timestamp: 1742727099393 3074 | - conda: https://prefix.dev/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_1.conda 3075 | sha256: db8dead3dd30fb1a032737554ce91e2819b43496a0db09927edf01c32b577450 3076 | md5: 6797b005cd0f439c4c5c9ac565783700 3077 | constrains: 3078 | - vs2015_runtime >=14.29.30037 3079 | license: LicenseRef-MicrosoftWindowsSDK10 3080 | size: 559710 3081 | timestamp: 1728377334097 3082 | - conda: https://prefix.dev/conda-forge/noarch/urllib3-2.3.0-pyhd8ed1ab_0.conda 3083 | sha256: 114919ffa80c328127dab9c8e7a38f9d563c617691fb81fccb11c1e86763727e 3084 | md5: 32674f8dbfb7b26410ed580dd3c10a29 3085 | depends: 3086 | - brotli-python >=1.0.9 3087 | - h2 >=4,<5 3088 | - pysocks >=1.5.6,<2.0,!=1.5.7 3089 | - python >=3.9 3090 | - zstandard >=0.18.0 3091 | license: MIT 3092 | license_family: MIT 3093 | size: 100102 3094 | timestamp: 1734859520452 3095 | - conda: https://prefix.dev/conda-forge/win-64/vc-14.3-hbf610ac_24.conda 3096 | sha256: 8ef83b62f9f0b885882d0dd41cbe47c2308f7ac0537fd508a5bbe6d3953a176e 3097 | md5: 9098c5cfb418fc0b0204bf2efc1e9afa 3098 | depends: 3099 | - vc14_runtime >=14.42.34438 3100 | track_features: 3101 | - vc14 3102 | license: BSD-3-Clause 3103 | license_family: BSD 3104 | size: 17469 3105 | timestamp: 1741043406253 3106 | - conda: https://prefix.dev/conda-forge/win-64/vc14_runtime-14.42.34438-hfd919c2_24.conda 3107 | sha256: fb36814355ac12dcb4a55b75b5ef0d49ec219ad9df30d7955f2ace88bd6919c4 3108 | md5: 5fceb7d965d59955888d9a9732719aa8 3109 | depends: 3110 | - ucrt >=10.0.20348.0 3111 | constrains: 3112 | - vs2015_runtime 14.42.34438.* *_24 3113 | license: LicenseRef-MicrosoftVisualCpp2015-2022Runtime 3114 | license_family: Proprietary 3115 | size: 751362 3116 | timestamp: 1741043402335 3117 | - conda: https://prefix.dev/conda-forge/win-64/vs2015_runtime-14.42.34438-h7142326_24.conda 3118 | sha256: a7104d3d605d191c8ee8d85d4175df3630d61830583494a5d1e62cd9f1260420 3119 | md5: 1dd2e838eb13190ae1f1e2760c036fdc 3120 | depends: 3121 | - vc14_runtime >=14.42.34438 3122 | license: BSD-3-Clause 3123 | license_family: BSD 3124 | size: 17474 3125 | timestamp: 1741043406612 3126 | - conda: https://prefix.dev/conda-forge/win-64/vs2019_win-64-19.29.30139-h7dcff83_24.conda 3127 | sha256: 4125acd871ba3498f25799b1999bf0fa4d80b0b353eb56ac170809f9eda19dd1 3128 | md5: 41aaa71a5d4f668f5795c0647eeea776 3129 | depends: 3130 | - vswhere 3131 | constrains: 3132 | - vs_win-64 2019.11 3133 | track_features: 3134 | - vc14 3135 | license: BSD-3-Clause 3136 | license_family: BSD 3137 | size: 20377 3138 | timestamp: 1737627273487 3139 | - conda: https://prefix.dev/conda-forge/win-64/vswhere-3.1.7-h57928b3_0.conda 3140 | sha256: 8caeda9c0898cb8ee2cf4f45640dbbbdf772ddc01345cfb0f7b352c58b4d8025 3141 | md5: ba83df93b48acfc528f5464c9a882baa 3142 | license: MIT 3143 | license_family: MIT 3144 | size: 219013 3145 | timestamp: 1719460515960 3146 | - conda: https://prefix.dev/conda-forge/linux-64/watchdog-6.0.0-py313h78bf25f_0.conda 3147 | sha256: 2099b8d4409e727558c9ddb935b48567f0d9b4e31f8e865f35bcd3f5bef5bdc3 3148 | md5: 8534476263f09c0ade70411ce59f75f6 3149 | depends: 3150 | - python >=3.13,<3.14.0a0 3151 | - python_abi 3.13.* *_cp313 3152 | - pyyaml >=3.10 3153 | license: Apache-2.0 3154 | license_family: APACHE 3155 | size: 142789 3156 | timestamp: 1730492986088 3157 | - conda: https://prefix.dev/conda-forge/osx-arm64/watchdog-6.0.0-py313h90d716c_0.conda 3158 | sha256: e0bf1248afd854f8365a09ccc81cf2a85bf0f26a941bb921d8dc58a00c973f36 3159 | md5: 731c6c5bc30114ed12f311cc01e4376f 3160 | depends: 3161 | - __osx >=11.0 3162 | - python >=3.13,<3.14.0a0 3163 | - python >=3.13,<3.14.0a0 *_cp313 3164 | - python_abi 3.13.* *_cp313 3165 | - pyyaml >=3.10 3166 | license: Apache-2.0 3167 | license_family: APACHE 3168 | size: 152677 3169 | timestamp: 1730493165140 3170 | - conda: https://prefix.dev/conda-forge/win-64/watchdog-6.0.0-py313hfa70ccb_0.conda 3171 | sha256: 213d520704e528b2273b2701f0961048c5bdbefbe4db5cdabcf9d01d4322fbf8 3172 | md5: 9593f7b5c1aa4be66a9945c4f1e9f043 3173 | depends: 3174 | - python >=3.13,<3.14.0a0 3175 | - python_abi 3.13.* *_cp313 3176 | - pyyaml >=3.10 3177 | license: Apache-2.0 3178 | license_family: APACHE 3179 | size: 167930 3180 | timestamp: 1730493160417 3181 | - conda: https://prefix.dev/conda-forge/noarch/win_inet_pton-1.1.0-pyh7428d3b_8.conda 3182 | sha256: 93807369ab91f230cf9e6e2a237eaa812492fe00face5b38068735858fba954f 3183 | md5: 46e441ba871f524e2b067929da3051c2 3184 | depends: 3185 | - __win 3186 | - python >=3.9 3187 | license: LicenseRef-Public-Domain 3188 | size: 9555 3189 | timestamp: 1733130678956 3190 | - conda: https://prefix.dev/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2 3191 | sha256: a4e34c710eeb26945bdbdaba82d3d74f60a78f54a874ec10d373811a5d217535 3192 | md5: 4cb3ad778ec2d5a7acbdf254eb1c42ae 3193 | depends: 3194 | - libgcc-ng >=9.4.0 3195 | license: MIT 3196 | license_family: MIT 3197 | size: 89141 3198 | timestamp: 1641346969816 3199 | - conda: https://prefix.dev/conda-forge/osx-arm64/yaml-0.2.5-h3422bc3_2.tar.bz2 3200 | sha256: 93181a04ba8cfecfdfb162fc958436d868cc37db504c58078eab4c1a3e57fbb7 3201 | md5: 4bb3f014845110883a3c5ee811fd84b4 3202 | license: MIT 3203 | license_family: MIT 3204 | size: 88016 3205 | timestamp: 1641347076660 3206 | - conda: https://prefix.dev/conda-forge/win-64/yaml-0.2.5-h8ffe710_2.tar.bz2 3207 | sha256: 4e2246383003acbad9682c7c63178e2e715ad0eb84f03a8df1fbfba455dfedc5 3208 | md5: adbfb9f45d1004a26763652246a33764 3209 | depends: 3210 | - vc >=14.1,<15.0a0 3211 | - vs2015_runtime >=14.16.27012 3212 | license: MIT 3213 | license_family: MIT 3214 | size: 63274 3215 | timestamp: 1641347623319 3216 | - conda: https://prefix.dev/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda 3217 | sha256: 567c04f124525c97a096b65769834b7acb047db24b15a56888a322bf3966c3e1 3218 | md5: 0c3cc595284c5e8f0f9900a9b228a332 3219 | depends: 3220 | - python >=3.9 3221 | license: MIT 3222 | license_family: MIT 3223 | size: 21809 3224 | timestamp: 1732827613585 3225 | - conda: https://prefix.dev/conda-forge/osx-arm64/zlib-1.3.1-h8359307_2.conda 3226 | sha256: 58f8860756680a4831c1bf4f294e2354d187f2e999791d53b1941834c4b37430 3227 | md5: e3170d898ca6cb48f1bb567afb92f775 3228 | depends: 3229 | - __osx >=11.0 3230 | - libzlib 1.3.1 h8359307_2 3231 | license: Zlib 3232 | license_family: Other 3233 | size: 77606 3234 | timestamp: 1727963209370 3235 | - conda: https://prefix.dev/conda-forge/linux-64/zstandard-0.23.0-py313h536fd9c_1.conda 3236 | sha256: e884a1fc5e99904eb1c4895eb71ea7bebae35aa865422e2ff006e5b37c98d919 3237 | md5: 22b773d9a4bcf7a25ad5bc8591abc80f 3238 | depends: 3239 | - __glibc >=2.17,<3.0.a0 3240 | - cffi >=1.11 3241 | - libgcc >=13 3242 | - python >=3.13,<3.14.0a0 3243 | - python_abi 3.13.* *_cp313 3244 | license: BSD-3-Clause 3245 | license_family: BSD 3246 | size: 737893 3247 | timestamp: 1741853442447 3248 | - conda: https://prefix.dev/conda-forge/osx-arm64/zstandard-0.23.0-py313h90d716c_1.conda 3249 | sha256: 7b5035d01ee9f5e80c7a28f198d61c818891306e3b28623a8d73eeb89e17c7ad 3250 | md5: fc9329ffb94f33dd18bfbaae4d9216c6 3251 | depends: 3252 | - __osx >=11.0 3253 | - cffi >=1.11 3254 | - python >=3.13,<3.14.0a0 3255 | - python >=3.13,<3.14.0a0 *_cp313 3256 | - python_abi 3.13.* *_cp313 3257 | license: BSD-3-Clause 3258 | license_family: BSD 3259 | size: 536091 3260 | timestamp: 1741853541598 3261 | - conda: https://prefix.dev/conda-forge/win-64/zstandard-0.23.0-py313ha7868ed_1.conda 3262 | sha256: 711145d9cc05efe48a093db3ceecadf18f451547c94dc15745430a39ee1556d9 3263 | md5: 0fe8f97370e74acbc7814c4906a5824f 3264 | depends: 3265 | - cffi >=1.11 3266 | - python >=3.13,<3.14.0a0 3267 | - python_abi 3.13.* *_cp313 3268 | - ucrt >=10.0.20348.0 3269 | - vc >=14.2,<15 3270 | - vc14_runtime >=14.29.30139 3271 | license: BSD-3-Clause 3272 | license_family: BSD 3273 | size: 449910 3274 | timestamp: 1741853538921 3275 | - conda: https://prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb8e6e7a_2.conda 3276 | sha256: a4166e3d8ff4e35932510aaff7aa90772f84b4d07e9f6f83c614cba7ceefe0eb 3277 | md5: 6432cb5d4ac0046c3ac0a8a0f95842f9 3278 | depends: 3279 | - __glibc >=2.17,<3.0.a0 3280 | - libgcc >=13 3281 | - libstdcxx >=13 3282 | - libzlib >=1.3.1,<2.0a0 3283 | license: BSD-3-Clause 3284 | license_family: BSD 3285 | size: 567578 3286 | timestamp: 1742433379869 3287 | - conda: https://prefix.dev/conda-forge/osx-arm64/zstd-1.5.7-h6491c7d_2.conda 3288 | sha256: 0d02046f57f7a1a3feae3e9d1aa2113788311f3cf37a3244c71e61a93177ba67 3289 | md5: e6f69c7bcccdefa417f056fa593b40f0 3290 | depends: 3291 | - __osx >=11.0 3292 | - libzlib >=1.3.1,<2.0a0 3293 | license: BSD-3-Clause 3294 | license_family: BSD 3295 | size: 399979 3296 | timestamp: 1742433432699 3297 | - conda: https://prefix.dev/conda-forge/win-64/zstd-1.5.7-hbeecb71_2.conda 3298 | sha256: bc64864377d809b904e877a98d0584f43836c9f2ef27d3d2a1421fa6eae7ca04 3299 | md5: 21f56217d6125fb30c3c3f10c786d751 3300 | depends: 3301 | - libzlib >=1.3.1,<2.0a0 3302 | - ucrt >=10.0.20348.0 3303 | - vc >=14.2,<15 3304 | - vc14_runtime >=14.29.30139 3305 | license: BSD-3-Clause 3306 | license_family: BSD 3307 | size: 354697 3308 | timestamp: 1742433568506 3309 | -------------------------------------------------------------------------------- /openblas/pixi.toml: -------------------------------------------------------------------------------- 1 | [project] 2 | name = "OpenBLAS" 3 | version = "0.3.28.dev" 4 | description = "OpenBLAS is an optimized BLAS library based on GotoBLAS2 1.13 BSD version." 5 | authors = ["Martin Kroeker", "Xianyi Zhang"] 6 | channels = ["https://prefix.dev/conda-forge"] 7 | platforms = ["osx-arm64", "linux-64", "win-64"] 8 | 9 | [tasks] 10 | build-make = { cmd = "make -j$(nproc)", cwd = "OpenBLAS", env = { CC = "ccache $CC", FC = "ccache $FC" } } 11 | install-make = { cmd = "make install PREFIX=$PWD/install-make", cwd = "OpenBLAS", env = { CC = "ccache $CC", FC = "ccache $FC" }, depends-on = "build-make" } 12 | test-make = { cmd = "make -C test", cwd = "OpenBLAS" } 13 | ctest-make = { cmd = "make -C ctest", cwd = "OpenBLAS" } 14 | utest-make = { cmd = "make -C utest", cwd = "OpenBLAS"} 15 | lapack-test-make = { cmd = "make lapack-test", cwd = "OpenBLAS"} 16 | testall-make = { depends-on = ["test-make", "ctest-make", "utest-make", "lapack-test-make"] } 17 | 18 | build-cmake = { cmd = [ 19 | "mkdir", "-p", "build-cmake", 20 | "&&", 21 | "cmake", ".", "-B build-cmake", "-G", "Ninja", 22 | "-DBUILD_SHARED_LIBS=ON", 23 | "-DBUILD_STATIC_LIBS=OFF", 24 | "&&", 25 | "cmake", "--build", "build-cmake", "-j", 26 | ], cwd = "OpenBLAS" } 27 | install-cmake = { cmd = "cmake --install build-cmake --prefix $PWD/install-cmake", cwd = "OpenBLAS", depends-on = "build-cmake" } 28 | ctest-cmake = { cmd = "ctest", cwd = "OpenBLAS/build-cmake" } 29 | 30 | configure-meson = { cmd = "meson setup build-meson -Dbuild_without_lapack=true -Dbuild_testing=true --prefix=$PWD/install-meson", cwd = "OpenBLAS", env = { CC = "ccache $CC", FC = "ccache $FC" } } 31 | #TODO: add lapack properly inside libopenblas.so (not wired up yet) 32 | build-meson = { cmd = "ninja -C build-meson", cwd = "OpenBLAS", depends-on = "configure-meson" } 33 | install-meson = { cmd = "meson install -C build-meson", cwd = "OpenBLAS", depends-on = "build-meson" } 34 | test-meson = { cmd = "meson test -C build-meson", cwd = "OpenBLAS" } 35 | 36 | # A separate release build (i.e., -O3, no debug info): 37 | configure-meson-release = { cmd = "meson setup build-meson-release -Dbuildtype=release --prefix=$PWD/install-meson-release", cwd = "OpenBLAS", env = { CC = "ccache $CC", FC = "ccache $FC" } } 38 | build-meson-release = { cmd = "ninja -C build-meson-release", cwd = "OpenBLAS", depends-on = "configure-meson-release" } 39 | install-meson-release = { cmd = "meson install -C build-meson-release", cwd = "OpenBLAS", depends-on = "build-meson-release" } 40 | 41 | 42 | [dependencies] 43 | compilers = ">=1.7.0,<2" 44 | make = ">=4.4.1,<5" 45 | cmake = ">=3.31.1,<4" 46 | meson = ">=1.5.1,<2" 47 | ninja = ">=1.12.1,<2" 48 | pkg-config = ">=0.29.2,<0.30" 49 | ccache = ">=4.10.1,<5" 50 | 51 | [feature.doc.dependencies] 52 | mkdocs = "*" 53 | mkdocs-material = "*" 54 | mkdocs-git-revision-date-localized-plugin = "*" 55 | 56 | [feature.doc.tasks] 57 | doc = { cmd = "mkdocs build", cwd = "OpenBLAS" } 58 | doc-serve = { cmd = "mkdocs serve", cwd = "OpenBLAS" } 59 | 60 | [environments] 61 | doc = { features = ["doc"], no-default-feature = true } 62 | -------------------------------------------------------------------------------- /pywt/.gitignore: -------------------------------------------------------------------------------- 1 | .pixi 2 | pywt 3 | -------------------------------------------------------------------------------- /pywt/pixi.toml: -------------------------------------------------------------------------------- 1 | [project] 2 | name = "trypixi" 3 | version = "0.1.0" 4 | description = "Add a short description here" 5 | authors = ["Ralf Gommers "] 6 | channels = ["https://prefix.dev/conda-forge"] 7 | platforms = ["osx-arm64", "linux-64"] 8 | 9 | [tasks] 10 | build = {cmd = "spin build", cwd = "pywt"} 11 | test = {cmd = "spin test", cwd = "pywt"} 12 | doc = {cmd = "spin docs", cwd = "pywt"} 13 | ipython = {cmd = "spin ipython", cwd = "pywt"} 14 | wheel = {cmd = "python -m build -wnx -Cbuild-dir=build-whl && cp dist/*.whl ../../wheelhouse/", cwd = "pywt"} 15 | 16 | [dependencies] 17 | compilers = ">=1.7.0,<2" 18 | numpy = ">=2.0.0,<3" 19 | meson-python = "*" 20 | meson = "*" 21 | cython = ">=3.0.10,<4" 22 | spin = ">=0.11,<0.12" 23 | python-build = "*" 24 | pytest = "*" 25 | ipython = "*" 26 | matplotlib = ">=3.8.4,<4" 27 | 28 | sphinx = ">=7.0,<8" 29 | intersphinx-registry = "*" 30 | pydata-sphinx-theme = ">=0.15.2" 31 | sphinx-copybutton = "*" 32 | sphinx-togglebutton = "*" 33 | sphinx-design = ">=0.4.0" 34 | myst-nb = ">=1.1.1,<2" 35 | numpydoc = "*" 36 | jupytext = "*" 37 | pooch = "*" 38 | jupyterlite-sphinx = ">=0.16.2" 39 | jupyterlite-pyodide-kernel = "*" 40 | -------------------------------------------------------------------------------- /pywt/recipe/build.sh: -------------------------------------------------------------------------------- 1 | $PYTHON -m build -w -n -x -Cbuild-dir=builddir 2 | 3 | $PYTHON -m pip install dist/pywavelets-*.whl 4 | -------------------------------------------------------------------------------- /pywt/recipe/recipe.yaml: -------------------------------------------------------------------------------- 1 | context: 2 | version: 1.8.0.dev0 3 | 4 | package: 5 | name: pywavelets 6 | version: ${{ version }} 7 | 8 | #source: 9 | # - url: https://github.com/PyWavelets/pywt/releases/download/v${{ version }}/pywavelets-${{ version }}.tar.gz 10 | # sha256: b47250e5bb853e37db5db423bafc82847f4cde0ffdf7aebb06336a993bc174f6 11 | 12 | source: 13 | path: ../pywt 14 | use_gitignore: false 15 | 16 | requirements: 17 | build: 18 | - ${{ compiler('c') }} 19 | - ${{ compiler('cxx') }} 20 | host: 21 | # note: variant is injected here! 22 | - python >=3.10 23 | - cython >=3.0.4 24 | - numpy >1.23,<3 25 | - python-build 26 | - meson-python >=0.16.0 27 | - pip 28 | run: 29 | - python 30 | - numpy >1.23,<3 31 | 32 | tests: 33 | - python: 34 | imports: 35 | - pywt 36 | 37 | - script: 38 | - pytest --pyargs pywt -m "not slow" --durations 10 39 | requirements: 40 | run: 41 | - python 42 | - pytest 43 | 44 | about: 45 | homepage: https://github.com/PyWavelets/pywt 46 | license: MIT 47 | license_file: LICENSE 48 | summary: Discrete Wavelet Transforms in Python 49 | documentation: https://pywavelets.readthedocs.io 50 | repository: https://github.com/PyWavelets/pywt 51 | -------------------------------------------------------------------------------- /pywt/recipe/variants.yaml: -------------------------------------------------------------------------------- 1 | python: 2 | - 3.13 3 | -------------------------------------------------------------------------------- /scipy/.gitignore: -------------------------------------------------------------------------------- 1 | .pixi 2 | scipy 3 | -------------------------------------------------------------------------------- /scipy/README.md: -------------------------------------------------------------------------------- 1 | # pixi-dev: SciPy 2 | 3 | _Note: dev tasks will only run after you have a git clone of the `scipy` 4 | repository in a subdirectory of the directory that this README is located in._ 5 | 6 | 7 | ## SciPy dev environments 8 | 9 | SciPy can be built in many different ways (operating systems, hardware 10 | platforms, compilers, BLAS libraries, Python versions, etc.), and supports has 11 | an number of optional runtime dependencies. Hence there is a large variability 12 | in development environments possible. With the introduction of support for 13 | non-NumPy array libraries, this variability increases a lot more. This `pixi` 14 | development setup aims to capture that variability and provide working 15 | environments for many commonly needed scenarios. 16 | 17 | Currently there platforms are supported by this `pixi` setup, each with a 18 | single compiler configuration: 19 | 20 | 1. Linux x86-64, with the default conda-forge `compilers` 21 | 2. macOS arm64, with the default conda-forge `compilers` (Clang 16, gfortran 12.3) 22 | 3. Windows x86-64, with TODO! 23 | 24 | BLAS libraries, array libraries, and optional dependencies are switchable 25 | (without rebuilds between dev tasks whenever possible!). The following tables 26 | provide an overview of what is supported (read `pixi.toml` for more details): 27 | 28 | 29 | | | Linux x86-64 | macOS arm64 | Windows x86-64 | 30 | |------------|--------------|-------------|----------------| 31 | | OpenBLAS | x | x | x | 32 | | MKL | x | | x | 33 | | Accelerate | | x | | 34 | | Netlib | x | x | x | 35 | | BLIS | x | | x | 36 | 37 | 38 | | Array library | Linux x86-64 | macOS arm64 | Windows x86-64 | 39 | |------------------|--------------|-------------|----------------| 40 | | NumPy | x | x | x | 41 | | PyTorch | x | x | | 42 | | JAX | x | x | | 43 | | CuPy | | x | | 44 | | array-api-strict | x | x | x | 45 | | Dask | x | x | x | 46 | | MLX | | x | | 47 | | ndonnx | x | x | x | 48 | 49 | 50 | | | Linux x86-64 | macOS arm64 | Windows x86-64 | 51 | |------|--------------|-------------|----------------| 52 | | CPU | x | x | x | 53 | | CUDA | x | | | 54 | | MPS | | x | | 55 | 56 | 57 | | Array library | CPU | CUDA | MPS | 58 | |------------------|-----|------|-----| 59 | | NumPy | x | | | 60 | | PyTorch | x | x | x | 61 | | JAX | x | x | | 62 | | CuPy | | x | | 63 | | array-api-strict | x | x | x | 64 | | Dask | x | x | | 65 | | MLX | x | x | | 66 | | ndonnx | x | | | 67 | -------------------------------------------------------------------------------- /scipy/activate_graphviz.sh: -------------------------------------------------------------------------------- 1 | dot -c 2 | -------------------------------------------------------------------------------- /scipy/build.sh: -------------------------------------------------------------------------------- 1 | mkdir builddir 2 | 3 | # Note: changed `$PYTHON` to `python` here 4 | python -m build -w -n -x \ 5 | -Cbuilddir=builddir \ 6 | -Csetup-args=-Dblas=blas \ 7 | -Csetup-args=-Dlapack=lapack 8 | 9 | $PYTHON -m pip install dist/numpy*.whl 10 | -------------------------------------------------------------------------------- /scipy/pixi.toml: -------------------------------------------------------------------------------- 1 | [project] 2 | name = "scipy" 3 | version = "1.15.0.dev0" 4 | description = "Fundamental algorithms for scientific computing in Python" 5 | authors = ["SciPy Developers "] 6 | channels = ["https://prefix.dev/conda-forge"] 7 | platforms = ["osx-arm64", "linux-64", "win-64"] 8 | 9 | [dependencies] 10 | compilers = ">=1.7.0,<2" 11 | pkg-config = ">=0.29.2,<0.30" 12 | ninja = ">=1.12.1,<2" 13 | meson = ">=1.5.1,<2" 14 | python = ">=3.12.0,<3.13" 15 | meson-python = ">=0.16.0" 16 | cython = ">=3.0.10,<4" 17 | python-build = "*" 18 | pip = "*" 19 | blas-devel = "*" 20 | numpy = ">=2.0.0" 21 | pybind11 = ">=2.13.1" 22 | pythran = ">=0.15.0" 23 | ipython = "*" 24 | # Add test dependencies to default list of dependencies so they show up in every 25 | # environment without having to also see the test task in those other envs 26 | pytest = "*" 27 | hypothesis = "*" 28 | pytest-cov = "*" 29 | pytest-timeout = "*" 30 | pytest-xdist = "*" 31 | threadpoolctl = "*" 32 | pooch = "*" 33 | mpmath = "*" 34 | gmpy2 = "*" 35 | ccache = ">=4.10.1,<5" 36 | spin = "*" 37 | 38 | [feature.typing.dependencies] 39 | mypy = "1.10.*" 40 | typing_extensions = "*" 41 | types-psutil = "*" 42 | 43 | [feature.bench.dependencies] 44 | asv = "*" 45 | 46 | [feature.lint.dependencies] 47 | ruff = "*" 48 | pycodestyle = "*" 49 | cython-lint = ">=0.12.2" 50 | 51 | [feature.doc.dependencies] 52 | sphinx = ">=7.0,<8" 53 | intersphinx-registry = "*" 54 | pydata-sphinx-theme = ">=0.15.2" 55 | sphinx-copybutton = "*" 56 | sphinx-design = ">=0.4.0" 57 | matplotlib = ">=3.5" 58 | myst-nb = ">=1.1.1,<2" 59 | numpydoc = "*" 60 | jupytext = "*" 61 | pooch = "*" 62 | jupyterlite-sphinx = ">=0.16.2" 63 | jupyterlite-pyodide-kernel = "*" 64 | scipy-doctest = "*" 65 | linkify-it-py = "*" 66 | 67 | [tasks] 68 | ipython = { cmd = "spin ipython", cwd = "scipy" } 69 | 70 | [feature.build.tasks] 71 | build = { cmd = "spin build --setup-args=-Dblas=blas --setup-args=-Dlapack=lapack --setup-args=-Duse-g77-abi=true", cwd = "scipy", env = { CC = "ccache $CC", CXX = "ccache $CXX", FC = "ccache $FC" } } 72 | wheel = { cmd = "python -m build -wnx -Cbuild-dir=build-whl && cp dist/*.whl ../../wheelhouse/", cwd = "scipy" } 73 | profile-build = { cmd = "rm -rf build-profile && meson setup build-profile && ninja -C build-profile && python tools/ninjatracing.py build-profile/.ninja_log > build-profile/trace.json", cwd = "scipy" } 74 | check-missingdeps = { cmd = "ninja -C build -t missingdeps", depends-on = [ 75 | "build", 76 | ], cwd = "scipy" } 77 | 78 | [feature.test.tasks] 79 | test = { cmd = "spin test", cwd = "scipy" } 80 | 81 | [feature.typing.tasks] 82 | mypy = { cmd = "spin mypy", cwd = "scipy" } 83 | 84 | [feature.bench.tasks] 85 | bench = { cmd = "spin bench", cwd = "scipy" } 86 | 87 | [feature.lint.tasks] 88 | lint = { cmd = "spin lint", cwd = "scipy" } 89 | 90 | [feature.doc.tasks] 91 | doc = { cmd = "spin docs -j6", cwd = "scipy" } 92 | smoke-docs = { cmd = "spin smoke-docs", cwd = "scipy" } 93 | 94 | 95 | [feature.bldcheck.dependencies] 96 | graphviz = "*" 97 | mkdocs = "*" 98 | 99 | [feature.bldcheck.activation] 100 | scripts = ["activate_graphviz.sh"] 101 | 102 | 103 | # BLAS/LAPACK features 104 | [feature.openblas.dependencies] 105 | libblas = { version = "*", build = "*openblas" } 106 | openblas = ">=0.3.27,<0.4" 107 | 108 | [feature.mkl.target.linux-64.dependencies] 109 | libblas = { version = "*", build = "*mkl" } 110 | mkl = ">=2023.2.0,<2025" 111 | 112 | [feature.accelerate] 113 | platforms = ["osx-arm64"] 114 | 115 | [feature.accelerate.dependencies] 116 | libblas = { version = "*", build = "*accelerate" } 117 | 118 | [feature.accelerate.tasks] 119 | build-accelerate = { cmd = "spin build --build-dir=build-accelerate --with-accelerate", cwd = "scipy", env = { CC = "ccache $CC", CXX = "ccache $CXX", FC = "ccache $FC" } } 120 | test-accelerate = { cmd = "spin test --build-dir=build-accelerate", cwd = "scipy", depends-on = "build-accelerate" } 121 | 122 | [feature.netlib.dependencies] 123 | libblas = { version = "*", build = "*netlib" } 124 | 125 | [feature.blis] 126 | platforms = ["linux-64", "win-64"] 127 | 128 | [feature.blis.dependencies] 129 | libblas = { version = "*", build = "*blis" } 130 | 131 | 132 | # CPU/CUDA features 133 | [feature.cpu.tasks] 134 | test-cpu = { cmd = "spin test -b all -m 'array_api_backends and not slow'", cwd = "scipy" } 135 | 136 | [feature.cuda] 137 | platforms = ["linux-64"] 138 | system-requirements = { cuda = "12" } 139 | 140 | [feature.cuda.dependencies] 141 | cuda-version = ">=12.0,<13" 142 | 143 | [feature.cuda.tasks] 144 | test-cuda = { cmd = "spin test -b cupy -b torch -b jax.numpy -m 'array_api_backends and not slow'", cwd = "scipy", env = { SCIPY_DEVICE = "cuda" } } 145 | 146 | # Array libraries we have support for 147 | [feature.torch-base] 148 | # Windows support pending: https://github.com/conda-forge/pytorch-cpu-feedstock/issues/32, 149 | # https://github.com/conda-forge/pytorch-cpu-feedstock/pull/231 150 | platforms = ["linux-64", "osx-arm64"] 151 | 152 | [feature.torch-cpu.dependencies] 153 | pytorch-cpu = "*" 154 | 155 | [feature.torch-cuda.dependencies] 156 | pytorch-gpu = "*" 157 | 158 | [feature.torch-cpu.tasks] 159 | test-torch = { cmd = "spin test -b torch -m 'array_api_backends and not slow'", cwd = "scipy" } 160 | 161 | [feature.torch-cuda.tasks] 162 | test-torch-cuda = { cmd = "spin test -b torch -m 'array_api_backends and not slow'", cwd = "scipy", env = { SCIPY_DEVICE = "cuda" } } 163 | 164 | [feature.cupy] 165 | platforms = ["linux-64"] 166 | 167 | [feature.cupy.dependencies] 168 | cupy = "*" 169 | 170 | [feature.cupy.tasks] 171 | test-cupy = { cmd = "spin test -b cupy -m 'array_api_backends and not slow'", cwd = "scipy" } 172 | 173 | [feature.jax-cpu] 174 | # Windows support pending: https://github.com/conda-forge/jaxlib-feedstock/issues/161 175 | platforms = ["linux-64", "osx-arm64"] 176 | 177 | [feature.jax-cpu.dependencies] 178 | # 0.5.1-2 are broken, wait for 0.5.3 (conda-forge/jaxlib-feedstock#308) 179 | # see rgommers/pixi-dev-scipystack/pull/14 for more details 180 | jax = "==0.5.0" 181 | jaxlib = { version = "==0.5.0", build = "*cpu*" } 182 | 183 | [feature.jax-cuda] 184 | platforms = ["linux-64"] 185 | 186 | [feature.jax-cuda.dependencies] 187 | jax = "==0.5.0" 188 | jaxlib = { version = "==0.5.0", build = "*cuda*" } 189 | 190 | [feature.jax-cpu.tasks] 191 | test-jax = { cmd = "spin test -b jax.numpy -m 'array_api_backends and not slow'", cwd = "scipy" } 192 | 193 | [feature.jax-cuda.tasks] 194 | test-jax-cuda = { cmd = "spin test -b jax.numpy -m 'array_api_backends and not slow'", cwd = "scipy", env = { SCIPY_DEVICE = "cuda" } } 195 | 196 | [feature.array_api_strict.dependencies] 197 | array-api-strict = "*" 198 | 199 | [feature.array_api_strict.tasks] 200 | test-strict = { cmd = "spin test -b array_api_strict -m 'array_api_backends and not slow'", cwd = "scipy" } 201 | 202 | [feature.mlx] 203 | platforms = ["osx-arm64"] 204 | system-requirements = { macos = "13.5" } 205 | 206 | [feature.mlx.dependencies] 207 | mlx = "*" 208 | 209 | [feature.dask.dependencies] 210 | dask-core = "*" # Don't install distributed, tornado, etc. 211 | 212 | [feature.dask.tasks] 213 | test-dask = { cmd = "spin test -b dask.array -m 'array_api_backends and not slow'", cwd = "scipy" } 214 | 215 | [feature.free-threading] 216 | channels = ["conda-forge/label/cython_dev", "https://prefix.dev/conda-forge"] 217 | 218 | [feature.free-threading.dependencies] 219 | python-freethreading = ">=3.13.0,<3.14" 220 | compilers = ">=1.7.0,<2" 221 | pkg-config = ">=0.29.2,<0.30" 222 | ninja = ">=1.12.1,<2" 223 | ccache = ">=4.10.1,<5" 224 | meson = ">=1.6.0,<2" 225 | meson-python = ">=0.16.0" 226 | cython = ">=3.1.0,<4" 227 | # pythran = ">=0.18.0" # FIXME conda 0.18.0 build not available yet 228 | python-build = "*" 229 | pip = "*" 230 | blas-devel = "*" 231 | numpy = ">=2.3.0" 232 | pybind11 = ">=2.13.1" 233 | spin = "*" 234 | pytest = "*" 235 | hypothesis = "*" 236 | threadpoolctl = "*" 237 | pooch = "*" 238 | pytest-run-parallel = ">=0.4.3" 239 | 240 | [feature.free-threading.pypi-dependencies] 241 | pythran = ">=0.18.0" # FIXME conda 0.18.0 build not available yet 242 | 243 | [feature.free-threading.tasks] 244 | build-nogil = { cmd = "spin build --build-dir=build-nogil --setup-args=-Dblas=blas --setup-args=-Dlapack=lapack --setup-args=-Duse-g77-abi=true", cwd = "scipy", env = { CC = "ccache $CC", CXX = "ccache $CXX", FC = "ccache $FC" } } 245 | test-nogil = { cmd = "spin test --build-dir=build-nogil", cwd = "scipy" } 246 | 247 | 248 | # For testing OpenBLAS built from source and directly folded into SciPy 249 | [feature.openblas-src] 250 | platforms = ["linux-64", "osx-arm64"] 251 | 252 | [feature.openblas-src.dependencies] 253 | compilers = ">=1.7.0,<2" 254 | pkg-config = ">=0.29.2,<0.30" 255 | ninja = ">=1.12.1,<2" 256 | meson = ">=1.5.1,<2" 257 | meson-python = ">=0.16.0" 258 | cython = ">=3.0.10,<4" 259 | python-build = "*" 260 | pip = "*" 261 | pybind11 = ">=2.13.1" 262 | spin = "*" 263 | pytest = "*" 264 | hypothesis = "*" 265 | pytest-xdist = "*" 266 | threadpoolctl = "*" 267 | pooch = "*" 268 | ccache = ">=4.10.1,<5" 269 | 270 | [feature.openblas-src.pypi-dependencies] 271 | # In order to have no BLAS library in the conda env at all 272 | numpy = ">=2.2.0.rc0" # hack, force install from PyPI 273 | pythran = ">=0.17.0" 274 | 275 | [feature.openblas-src.tasks] 276 | build-openblas-src = { cmd = "spin build --build-dir build-openblas --setup-args=-Dblas=openblas-src --setup-args=-Dbuildtype=release", cwd = "scipy", env = { CC = "ccache $CC", CXX = "ccache $CXX", FC = "ccache $FC" } } 277 | test-openblas-src = { cmd = "spin test --build-dir build-openblas", cwd = "scipy" } 278 | wheel-openblas-src = { cmd = "python -m build -wnx -Cbuild-dir=build-whl-openblas -Csetup-args=-Dblas=openblas-src", cwd = "scipy", env = { CC = "ccache $CC", CXX = "ccache $CXX", FC = "ccache $FC" } } 279 | test-openblas-src-wheel = { cmd = "pip install ../dist/scipy*.whl --force-reinstall && python -c 'import scipy as s; s.test()'", cwd = "scipy/tools" } 280 | 281 | 282 | [feature.editable.tasks] 283 | build-editable = { cmd = "spin install -- -Cbuild-dir=build-editable -Csetup-args=-Dblas=blas -Csetup-args=-Dlapack=lapack -Csetup-args=-Duse-g77-abi=true", cwd = "scipy", env = { CC = "ccache $CC", CXX = "ccache $CXX", FC = "ccache $FC" } } 284 | test-editable = { cmd = "spin test --build-dir=build-editable", cwd = "scipy" } 285 | doc-editable = { cmd = "spin docs --build-dir=build-editable -j6", cwd = "scipy" } 286 | smoke-docs = { cmd = "spin smoke-docs --build-dir=build-editable", cwd = "scipy" } 287 | smoke-tutorials = { cmd = "spin smoke-tutorials --build-dir=build-editable", cwd = "scipy" } 288 | refguide-check = { cmd = "spin refguide-check --build-dir=build-editable", cwd = "scipy" } 289 | 290 | [environments] 291 | default = ["build", "test", "typing", "bench", "openblas", "lint"] 292 | doc = ["doc"] 293 | bldcheck = ["bldcheck"] 294 | mkl = ["mkl", "test"] 295 | accelerate = ["accelerate", "test"] 296 | netlib = ["netlib", "test"] 297 | blis = ["blis", "test"] 298 | torch = ["torch-base", "torch-cpu", "mkl"] # FIXME: add env var 299 | torch-cuda = ["cuda", "torch-base", "torch-cuda", "mkl"] # FIXME: add env var 300 | cupy = ["cupy"] 301 | jax = ["jax-cpu"] 302 | jax-cuda = ["cuda", "jax-cuda"] 303 | mlx = ["mlx"] 304 | array-api-strict = ["array_api_strict"] 305 | array-api = [ 306 | "cpu", 307 | "array_api_strict", 308 | "dask", 309 | "jax-cpu", 310 | "mkl", 311 | "torch-base", 312 | "torch-cpu", 313 | ] 314 | array-api-cuda = [ 315 | "cuda", 316 | "array_api_strict", 317 | "cupy", 318 | "jax-cuda", 319 | "mkl", 320 | "torch-base", 321 | "torch-cuda", 322 | ] 323 | free-threading = { features = ["free-threading"], no-default-feature = true } 324 | openblas-src = { features = ["openblas-src"], no-default-feature = true } 325 | editable = { features = ["editable", "doc"] } 326 | -------------------------------------------------------------------------------- /scipy/recipe/build.sh: -------------------------------------------------------------------------------- 1 | mkdir builddir 2 | 3 | $PYTHON -m build -w -n -x \ 4 | -Cbuild-dir=builddir \ 5 | -Cinstall-args=--tags=runtime,python-runtime,devel \ 6 | -Csetup-args=-Dblas=blas \ 7 | -Csetup-args=-Dlapack=lapack \ 8 | -Csetup-args=-Duse-g77-abi=true 9 | 10 | $PYTHON -m pip install dist/scipy*.whl 11 | -------------------------------------------------------------------------------- /scipy/recipe/recipe.yaml: -------------------------------------------------------------------------------- 1 | context: 2 | version: 1.16.0.dev0 3 | 4 | package: 5 | name: scipy 6 | version: ${{ version }} 7 | 8 | #source: 9 | # - url: https://github.com/scipy/scipy/releases/download/v${{ version }}/scipy-${{ version }}.tar.gz 10 | # sha256: 485b87235796410c3519a699cfe1faab097e509e90ebb05dcd098db2ae87e7b3 11 | 12 | source: 13 | path: ../scipy 14 | use_gitignore: false 15 | 16 | build: 17 | number: 0 18 | ignore_run_exports: 19 | - if: win 20 | then: libflang 21 | 22 | requirements: 23 | build: 24 | - ${{ compiler('c') }} 25 | - ${{ compiler('cxx') }} 26 | - ${{ compiler('fortran') }} 27 | # note: some `host` dependencies that run at build time (e.g., `cython`, `meson-python`) 28 | # should ideally be in `build` instead, this can be fixed once we 29 | # have proper cross-compilation without `crossenv` set up. 30 | host: 31 | # note: variant is injected here! 32 | - python 33 | - cython 34 | - python-build 35 | - meson-python 36 | - pkg-config 37 | - pip 38 | - libblas 39 | - libcblas 40 | - liblapack 41 | - blas-devel 42 | - pybind11 43 | - pythran 44 | - numpy 45 | run: 46 | - python 47 | 48 | tests: 49 | - python: 50 | imports: 51 | - scipy 52 | # reference for public API is effectively 53 | # https://github.com/scipy/scipy/blob/main/scipy/_lib/tests/test_public_api.py 54 | - scipy.cluster 55 | - scipy.cluster.hierarchy 56 | - scipy.cluster.vq 57 | - scipy.constants 58 | - scipy.datasets 59 | - scipy.fft 60 | - scipy.fftpack 61 | - scipy.integrate 62 | - scipy.interpolate 63 | - scipy.io 64 | - scipy.io.arff 65 | - scipy.io.matlab 66 | - scipy.io.wavfile 67 | - scipy.linalg 68 | - scipy.linalg.blas 69 | - scipy.linalg.cython_blas 70 | - scipy.linalg.cython_lapack 71 | - scipy.linalg.interpolative 72 | - scipy.linalg.lapack 73 | - scipy.misc 74 | - scipy.ndimage 75 | - scipy.odr 76 | - scipy.optimize 77 | - scipy.signal 78 | - scipy.signal.windows 79 | - scipy.sparse 80 | - scipy.sparse.csgraph 81 | - scipy.sparse.linalg 82 | - scipy.spatial 83 | - scipy.spatial.distance 84 | - scipy.spatial.transform 85 | - scipy.special 86 | - scipy.stats 87 | - scipy.stats.contingency 88 | - scipy.stats.distributions 89 | - scipy.stats.mstats 90 | - scipy.stats.qmc 91 | - scipy.stats.sampling 92 | 93 | about: 94 | homepage: http://www.scipy.org/ 95 | license: BSD-3-Clause 96 | license_file: LICENSE.txt 97 | summary: Scientific Library for Python 98 | documentation: http://www.scipy.org/docs.html 99 | repository: https://github.com/scipy/scipy 100 | -------------------------------------------------------------------------------- /scipy/recipe/variants.yaml: -------------------------------------------------------------------------------- 1 | python: 2 | - 3.12 3 | --------------------------------------------------------------------------------