From 67a803c8614f93e6af1a8f5e7916c414ecdbb1c0 Mon Sep 17 00:00:00 2001 From: Albert DeFusco Date: Mon, 4 Nov 2024 11:15:23 -0500 Subject: [PATCH 01/19] github action test.yml --- .github/workflows/test.yml | 183 +++++++++++++++++++++++++++++++++++++ 1 file changed, 183 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..bf5e22f --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,183 @@ +name: "[CI] anaconda-cli-base" + +on: + pull_request: + branches: + - main + push: + branches: + - main + merge_group: + +jobs: + test: + name: Test, Python ${{ matrix.python-version }} + runs-on: + labels: ubuntu-latest + strategy: + fail-fast: false + matrix: + python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ] + steps: + - name: Checkout + uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4 + - name: Setup Python + uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5 + with: + python-version: ${{ matrix.python-version }} + - name: Install testing dependencies + run: python -m pip install tox tox-gh-actions + - name: Test with tox + run: tox + + build-conda-package: + name: Build conda package + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4 + with: + fetch-depth: 0 + - name: Create build environment + run: | + source $CONDA/bin/activate + conda create -n build --file ./etc/build.linux-64.lock + - name: conda build + run: | + source $CONDA/bin/activate && conda activate build + VERSION=`hatch version` conda build -c conda-forge -c defaults --override-channels conda.recipe + mv $CONDA_PREFIX/conda-bld . + - name: Upload the build artifact + uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4 + with: + name: anaconda-cli-base-conda-${{ github.sha }} + path: conda-bld + if-no-files-found: error + retention-days: 7 + + build-wheel: + name: Build the wheel + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4 + with: + fetch-depth: 0 + - name: Setup Python + uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5 + with: + python-version: "3.10" + - name: Install build dependencies + run: pip install build + - name: Build the package + run: python -m build + - name: Upload the build artifact + uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4 + with: + name: anaconda-cli-base-wheel-${{ github.sha }} + path: dist/* + if-no-files-found: error + retention-days: 7 + + # This check job runs to ensure all tests and builds have passed, such that we can use it as a "wildcard" + # for branch protection to ensure all tests pass before a PR can be merged. + check: + name: Check all tests passed + if: always() + needs: [test, build-conda-package, build-wheel] + runs-on: ubuntu-latest + steps: + - name: Decide whether all required jobs succeeded or failed + uses: re-actors/alls-green@release/v1 + with: + jobs: ${{ toJSON(needs) }} + + publish-conda-pkg-to-anaconda-dot-org: + name: Publish conda package to Anaconda.org + runs-on: ubuntu-latest + if: github.event_name == 'push' # Only run on push to main branch + needs: [check] + steps: + - name: Retrieve the source code + uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4 + with: + fetch-depth: 0 + - name: Create build environment + run: | + source $CONDA/bin/activate + conda create -n build --file ./etc/build.linux-64.lock + - name: Download the build artifacts + uses: actions/download-artifact@9c19ed7fe5d278cd354c7dfd5d3b88589c7e2395 # v4 + with: + name: anaconda-cli-base-conda-${{ github.sha }} + path: ~/anaconda-cli-base-conda-bld + - name: publish + env: + TOKEN: ${{ secrets.ANACONDA_ORG_UPLOAD_TOKEN }} + run: | + source $CONDA/bin/activate && conda activate build + [[ "$GITHUB_REF" =~ ^refs/tags/v ]] || export LABEL="--label dev" + anaconda --verbose \ + --token $TOKEN \ + upload \ + --user anaconda-cloud \ + $LABEL \ + --force \ + --private \ + ~/anaconda-cli-base-conda-bld/noarch/anaconda-cli-base-* + + publish-wheel-to-anaconda-dot-org: + name: Publish wheel to Anaconda.org + runs-on: ubuntu-latest + if: github.event_name == 'push' # Only run on push to main branch + needs: [check] + steps: + - name: Retrieve the source code + uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4 + with: + fetch-depth: 0 + - name: Download the build artifacts + uses: actions/download-artifact@9c19ed7fe5d278cd354c7dfd5d3b88589c7e2395 # v4 + with: + name: anaconda-cli-base-wheel-${{ github.sha }} + path: ~/dist + - name: Upload to anaconda.org + env: + TOKEN: ${{ secrets.ANACONDA_ORG_UPLOAD_TOKEN }} + GITHUB_REF: ${{ github.ref }} + run: | + source $CONDA/bin/activate + conda install -y anaconda-client + [[ "$GITHUB_REF" =~ ^refs/tags/v ]] || export LABEL="--label dev" + anaconda --verbose \ + --token $TOKEN \ + upload \ + --user anaconda-cloud \ + ~/dist/*.whl \ + --summary \ + "A base CLI entrypoint supporting Anaconda CLI plugins" \ + $LABEL \ + --force \ + --private + + publish-to-pypi: + name: Build & publish to PyPI + if: startsWith(github.event.ref, 'refs/tags/v') + runs-on: ubuntu-latest + needs: [check] + steps: + - name: Checkout + uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4 + - name: Setup Python + uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5 + - name: Download the build artifacts + uses: actions/download-artifact@9c19ed7fe5d278cd354c7dfd5d3b88589c7e2395 # v4 + with: + name: anaconda-cli-base-wheel-${{ github.sha }} + path: ~/dist + - name: Install build dependencies + run: pip install twine + - name: Upload to PyPI with twine + run: python -m twine upload ~/dist/* + env: + TWINE_USERNAME: __token__ + TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN_ANACONDA_CLI_BASE }} From f3d628bae0df1cf209223d4ca0322573c5832308 Mon Sep 17 00:00:00 2001 From: Albert DeFusco Date: Mon, 4 Nov 2024 11:15:43 -0500 Subject: [PATCH 02/19] build env --- etc/Makefile | 27 + etc/build.conda-lock.yml | 5878 +++++++++++++++++++++++++++++++++++++ etc/build.environment.yml | 15 + etc/build.linux-64.lock | 153 + 4 files changed, 6073 insertions(+) create mode 100644 etc/Makefile create mode 100644 etc/build.conda-lock.yml create mode 100644 etc/build.environment.yml create mode 100644 etc/build.linux-64.lock diff --git a/etc/Makefile b/etc/Makefile new file mode 100644 index 0000000..c85baa1 --- /dev/null +++ b/etc/Makefile @@ -0,0 +1,27 @@ +# Command aliases +CONDA_EXE ?= conda +CONDA_LOCK := $(CONDA_EXE)-lock + +name = $(word 1, $(subst ., ,$1)) + +ENVIRONMENT_YMLS = $(wildcard *.environment.yml) +ENVIRONMENTS := $(foreach e,$(wildcard *.environment.yml),$(call name, $e)) +LOCKFILES := $(foreach e, $(ENVIRONMENTS), $e.conda-lock.yml) +# Explicit lockfiles are used in github actions with conda-incubator/setupminiconda +EXPLICIT_LOCKFILES := $(foreach e, $(ENVIRONMENTS), $e.linux-64.lock) + +help: ## Display help on all Makefile targets + @@grep -h '^[a-zA-Z]' $(MAKEFILE_LIST) | awk -F ':.*?## ' 'NF==2 {printf " %-20s%s\n", $$1, $$2}' | sort + +.PHONY: $(ENVIRONMENTS) +$(ENVIRONMENTS): ## Lock this specific environment.yml file + rm -f $@.conda-lock.yml + rm -f $@.linux-64.lock + $(CONDA_LOCK) lock -f $@.environment.yml --lockfile $@.conda-lock.yml + $(CONDA_LOCK) render -p linux-64 --filename-template "$@.{platform}.lock" $@.conda-lock.yml + +lock: $(ENVIRONMENTS) ## lock all .environment.yml files + +clean: ## Remove lockfiles and explicit files + rm $(LOCKFILES) + rm $(EXPLICIT_LOCKFILES) diff --git a/etc/build.conda-lock.yml b/etc/build.conda-lock.yml new file mode 100644 index 0000000..4766b13 --- /dev/null +++ b/etc/build.conda-lock.yml @@ -0,0 +1,5878 @@ +# This lock file was generated by conda-lock (https://github.com/conda/conda-lock). DO NOT EDIT! +# +# A "lock file" contains a concrete list of package versions (with checksums) to be installed. Unlike +# e.g. `conda env create`, the resulting environment will not change as new package versions become +# available, unless you explicitly update the lock file. +# +# Install this environment as "YOURENV" with: +# conda-lock install -n YOURENV build.conda-lock.yml +# To update a single package to the latest version compatible with the version constraints in the source: +# conda-lock lock --lockfile build.conda-lock.yml --update PACKAGE +# To re-solve the entire environment, e.g. after changing a version constraint in the source file: +# conda-lock -f build.environment.yml --lockfile build.conda-lock.yml +version: 1 +metadata: + content_hash: + linux-64: 80d3a995d4a0639a950082845d7ad41ee4b61743c189da644c9c5c42965aecf2 + osx-64: 68245e5f3f4e327e3a4766ae577d629fd5c81ea06e60cea90db346e31dd84e9a + osx-arm64: d4f4b9812c8e9671b53b8c0d71b2c6396fcd60938dcf6b904597bb554d321280 + channels: + - url: defaults + used_env_vars: [] + - url: conda-forge + used_env_vars: [] + platforms: + - linux-64 + - osx-64 + - osx-arm64 + sources: + - build.environment.yml +package: +- name: _libgcc_mutex + version: '0.1' + manager: conda + platform: linux-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 + hash: + md5: d7c89558ba9fa0495403155b64376d81 + sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726 + category: main + optional: false +- name: _openmp_mutex + version: '4.5' + manager: conda + platform: linux-64 + dependencies: + _libgcc_mutex: '0.1' + libgomp: '>=7.5.0' + url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 + hash: + md5: 73aaf86a425cc6e73fcf236a5a46396d + sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22 + category: main + optional: false +- name: anaconda-anon-usage + version: 0.4.4 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/anaconda-anon-usage-0.4.4-py310hfc0e8ea_100.conda + hash: + md5: f0f4985982fa7adb21c64c06bf4de0b4 + sha256: c76e2a30426ca409f2426759ce0f690dcdf2320d3bc23e795564df255bbc75e0 + category: main + optional: false +- name: anaconda-anon-usage + version: 0.4.4 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/anaconda-anon-usage-0.4.4-py310hfb7c958_100.conda + hash: + md5: 6b4ac18fc0a81ee915455894c881efe9 + sha256: 8c44fab6e9b9618559145c2bed7fef58db52c5600a1a4d48fc6a8776968be9cf + category: main + optional: false +- name: anaconda-anon-usage + version: 0.4.4 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/anaconda-anon-usage-0.4.4-py310hd6b623d_100.conda + hash: + md5: b78f7591d0a7a131231c5f4195b7ddc8 + sha256: 08b1d14e8a76b16b6e929393dd14853b971fc8733e3983364296c9b013229117 + category: main + optional: false +- name: anaconda-client + version: 1.12.3 + manager: conda + platform: linux-64 + dependencies: + anaconda-anon-usage: '>=0.4.0' + conda-package-handling: '>=1.7.3' + defusedxml: '>=0.7.1' + nbformat: '>=4.4.0' + platformdirs: '>=3.10.0,<5.0' + python: '>=3.10,<3.11.0a0' + python-dateutil: '>=2.6.1' + pytz: '>=2021.3' + pyyaml: '>=3.12' + requests: '>=2.20.0' + requests-toolbelt: '>=0.9.1' + setuptools: '>=58.0.4' + six: '>=1.15.0' + tqdm: '>=4.56.0' + urllib3: '>=1.26.4' + url: https://repo.anaconda.com/pkgs/main/linux-64/anaconda-client-1.12.3-py310h06a4308_0.conda + hash: + md5: b2586991bb92809292a2cbf481e04c68 + sha256: 38a52f74586bb30b342768e3662fef91c829afbf0ee3b856ef317d84026b427e + category: main + optional: false +- name: anaconda-client + version: 1.12.3 + manager: conda + platform: osx-64 + dependencies: + anaconda-anon-usage: '>=0.4.0' + conda-package-handling: '>=1.7.3' + defusedxml: '>=0.7.1' + nbformat: '>=4.4.0' + platformdirs: '>=3.10.0,<5.0' + python: '>=3.10,<3.11.0a0' + python-dateutil: '>=2.6.1' + pytz: '>=2021.3' + pyyaml: '>=3.12' + requests: '>=2.20.0' + requests-toolbelt: '>=0.9.1' + setuptools: '>=58.0.4' + six: '>=1.15.0' + tqdm: '>=4.56.0' + urllib3: '>=1.26.4' + url: https://repo.anaconda.com/pkgs/main/osx-64/anaconda-client-1.12.3-py310hecd8cb5_0.conda + hash: + md5: cafbf9afed6a25de08fb06159a43396b + sha256: b30db540e6fcb36bb23f35bbd791373b7dbeb25ee71c261c6a20d8ecab5f7242 + category: main + optional: false +- name: anaconda-client + version: 1.12.3 + manager: conda + platform: osx-arm64 + dependencies: + anaconda-anon-usage: '>=0.4.0' + conda-package-handling: '>=1.7.3' + defusedxml: '>=0.7.1' + nbformat: '>=4.4.0' + platformdirs: '>=3.10.0,<5.0' + python: '>=3.10,<3.11.0a0' + python-dateutil: '>=2.6.1' + pytz: '>=2021.3' + pyyaml: '>=3.12' + requests: '>=2.20.0' + requests-toolbelt: '>=0.9.1' + setuptools: '>=58.0.4' + six: '>=1.15.0' + tqdm: '>=4.56.0' + urllib3: '>=1.26.4' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/anaconda-client-1.12.3-py310hca03da5_0.conda + hash: + md5: f336fe7689460cca729eb78507b7570a + sha256: ce204f3ab40f02a5764a82209bc987b52b247d01693bca55597932cccae528f2 + category: main + optional: false +- name: anyio + version: 4.2.0 + manager: conda + platform: linux-64 + dependencies: + exceptiongroup: '>=1.0.2' + idna: '>=2.8' + python: '>=3.10,<3.11.0a0' + sniffio: '>=1.1' + typing_extensions: '>=4.1' + url: https://repo.anaconda.com/pkgs/main/linux-64/anyio-4.2.0-py310h06a4308_0.conda + hash: + md5: fbca54a5a6f422d0c4acf4c3e7a2be2a + sha256: 5789ca0e3736e63be61d829e8d303ebad30b7e2eee14c04b2a0de29873bdf2c4 + category: main + optional: false +- name: anyio + version: 4.2.0 + manager: conda + platform: osx-64 + dependencies: + exceptiongroup: '>=1.0.2' + idna: '>=2.8' + python: '>=3.10,<3.11.0a0' + sniffio: '>=1.1' + typing_extensions: '>=4.1' + url: https://repo.anaconda.com/pkgs/main/osx-64/anyio-4.2.0-py310hecd8cb5_0.conda + hash: + md5: 1067befea96aa23b4431d0ed47e71c7b + sha256: 06fcbfe799baefa93c66491eab606eba3f58a8ed3a008610f70116a3d6ec3fa9 + category: main + optional: false +- name: anyio + version: 4.2.0 + manager: conda + platform: osx-arm64 + dependencies: + exceptiongroup: '>=1.0.2' + idna: '>=2.8' + python: '>=3.10,<3.11.0a0' + sniffio: '>=1.1' + typing_extensions: '>=4.1' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/anyio-4.2.0-py310hca03da5_0.conda + hash: + md5: 5561ce4ad0a1cd79468dcac731edcf93 + sha256: c256e96b60c7dcdbd880acf727759de619e97067b48462972c7b66f9a14f828f + category: main + optional: false +- name: archspec + version: 0.2.3 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.7' + url: https://repo.anaconda.com/pkgs/main/noarch/archspec-0.2.3-pyhd3eb1b0_0.conda + hash: + md5: 13d01ee2d343d8539bb47055a6c0b5b2 + sha256: 8332f33d896ab32400feed74f767a7625373d4f9d20bb42121ed3d3572211e62 + category: main + optional: false +- name: archspec + version: 0.2.3 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.7' + url: https://repo.anaconda.com/pkgs/main/noarch/archspec-0.2.3-pyhd3eb1b0_0.conda + hash: + md5: 13d01ee2d343d8539bb47055a6c0b5b2 + sha256: 8332f33d896ab32400feed74f767a7625373d4f9d20bb42121ed3d3572211e62 + category: main + optional: false +- name: archspec + version: 0.2.3 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.7' + url: https://repo.anaconda.com/pkgs/main/noarch/archspec-0.2.3-pyhd3eb1b0_0.conda + hash: + md5: 13d01ee2d343d8539bb47055a6c0b5b2 + sha256: 8332f33d896ab32400feed74f767a7625373d4f9d20bb42121ed3d3572211e62 + category: main + optional: false +- name: attrs + version: 23.1.0 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/attrs-23.1.0-py310h06a4308_0.conda + hash: + md5: c01f08056ba4037e55fe0b66eb398970 + sha256: 2588c15f4598616bc6f98472b30e9bc1cf5f12048f3e134f6dae120be326021f + category: main + optional: false +- name: attrs + version: 23.1.0 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/attrs-23.1.0-py310hecd8cb5_0.conda + hash: + md5: c480d61c9696e296d3bd1cb7f91216bf + sha256: 42886ce065f49e26d8440e7120ef23c35f5b0580c10bbcfb06611cd4fa86860d + category: main + optional: false +- name: attrs + version: 23.1.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/attrs-23.1.0-py310hca03da5_0.conda + hash: + md5: cd5dbbf3ef7f63394bb392ea17ab224d + sha256: 715913782bf667d8a5e3c62ca0fb9ff4a752c68c25ca71cb2f3ba51aa9499fd4 + category: main + optional: false +- name: beautifulsoup4 + version: 4.12.2 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.10,<3.11.0a0' + soupsieve: '>1.2' + url: https://repo.anaconda.com/pkgs/main/linux-64/beautifulsoup4-4.12.2-py310h06a4308_0.conda + hash: + md5: 2eaf0928eb8d32e0b3cc119b30ee39cc + sha256: a8290ef0e6a66757304e385a134d57e06b71bf01ac42d379c8bc778fa9c13f75 + category: main + optional: false +- name: beautifulsoup4 + version: 4.12.2 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + soupsieve: '>1.2' + url: https://repo.anaconda.com/pkgs/main/osx-64/beautifulsoup4-4.12.2-py310hecd8cb5_0.conda + hash: + md5: 08488c21ffba4a064aed29e70168d9e4 + sha256: 7f041a9410d6d796953c9522438ab5ce9a0019576b434ca757311a0558215049 + category: main + optional: false +- name: beautifulsoup4 + version: 4.12.2 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.10,<3.11.0a0' + soupsieve: '>1.2' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/beautifulsoup4-4.12.2-py310hca03da5_0.conda + hash: + md5: 317d4898566d0a10f5a6a7fcc5093c53 + sha256: 14848974357cd455282603b169e05eaeab076f72c632cdbe6670c6d51223af29 + category: main + optional: false +- name: boltons + version: 23.0.0 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/boltons-23.0.0-py310h06a4308_0.conda + hash: + md5: 69248b87edfba6b1abba3a25e6cfd992 + sha256: d606fbabd6782a66f1afd77e42fb6474c4677524264c5548d845729444f965c2 + category: main + optional: false +- name: boltons + version: 23.0.0 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/boltons-23.0.0-py310hecd8cb5_0.conda + hash: + md5: 26766da550de1610acf7419c97072cca + sha256: 80f15c2060ae31f1164f14760badd9a7f2abcfdcb13a5c65d0bf9bcf3a3af963 + category: main + optional: false +- name: boltons + version: 23.0.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/boltons-23.0.0-py310hca03da5_0.conda + hash: + md5: 144258dbb52b9d0492da206f4c05c2fd + sha256: e9314f679e6124b170646e33c98b3bbedd1bdda4b20989479bfa214b9e22acdd + category: main + optional: false +- name: brotli-python + version: 1.0.9 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=11.2.0' + libstdcxx-ng: '>=11.2.0' + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/brotli-python-1.0.9-py310h6a678d5_8.conda + hash: + md5: c7098c1b40187f13bb030f5f0e553f33 + sha256: b3d185138264d1ed54eb382b5d5cfd90b38bf0fb513ef27de190bffb31e547f1 + category: main + optional: false +- name: brotli-python + version: 1.0.9 + manager: conda + platform: osx-64 + dependencies: + libcxx: '>=14.0.6' + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/brotli-python-1.0.9-py310hcec6c5f_8.conda + hash: + md5: c393e781c24a7d8fa4ae616d1badbdc7 + sha256: bfbcf706e7eed69b48a7eca10415cef14bb3e4f901783467a7cb7260248609be + category: main + optional: false +- name: brotli-python + version: 1.0.9 + manager: conda + platform: osx-arm64 + dependencies: + libcxx: '>=14.0.6' + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/brotli-python-1.0.9-py310h313beb8_8.conda + hash: + md5: b27ebeb13bedd3de3a874c40f85a1792 + sha256: 08d05d0fd24b83bd3bf0f4a435435710eab883dbad02ffa0e18d4ab8abf1e1c4 + category: main + optional: false +- name: bzip2 + version: 1.0.8 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=11.2.0' + url: https://repo.anaconda.com/pkgs/main/linux-64/bzip2-1.0.8-h5eee18b_6.conda + hash: + md5: f21a3ff51c1b271977f53ce956a69297 + sha256: 235f266d5f9c3c61748bb1af0eff21bc7ed2a2a356b97ff28d9c1135039b08b0 + category: main + optional: false +- name: bzip2 + version: 1.0.8 + manager: conda + platform: osx-64 + dependencies: {} + url: https://repo.anaconda.com/pkgs/main/osx-64/bzip2-1.0.8-h6c40b1e_6.conda + hash: + md5: 96224786021d0765ce05818fa3c59bdb + sha256: 80bd9cac4f086056b4d2b8720fcfdc1dd8354be9f93b4aef1a853cdbc987e9bf + category: main + optional: false +- name: bzip2 + version: 1.0.8 + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://repo.anaconda.com/pkgs/main/osx-arm64/bzip2-1.0.8-h80987f9_6.conda + hash: + md5: 27a1ffbd30ff6427c112a733410e2f57 + sha256: a99e7ae89274837bfa706a7f8bcb970520d909a84b9fa1d63ddce1305d96121c + category: main + optional: false +- name: c-ares + version: 1.19.1 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=11.2.0' + url: https://repo.anaconda.com/pkgs/main/linux-64/c-ares-1.19.1-h5eee18b_0.conda + hash: + md5: 6cfbce52273a1cb888821f18ceaa83c4 + sha256: 4d1eab39e366dc7b3016664ab1f6f24a61731fa7d420fd28fa24bb9bbbae03ed + category: main + optional: false +- name: c-ares + version: 1.19.1 + manager: conda + platform: osx-64 + dependencies: {} + url: https://repo.anaconda.com/pkgs/main/osx-64/c-ares-1.19.1-h6c40b1e_0.conda + hash: + md5: 9cc0b1c81e3e05d963185049e69e5297 + sha256: 63e8dc3491494d46f445b795ed6994ab472ec43ac0343cfc18caab73f08ee479 + category: main + optional: false +- name: c-ares + version: 1.19.1 + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://repo.anaconda.com/pkgs/main/osx-arm64/c-ares-1.19.1-h80987f9_0.conda + hash: + md5: 0c6c92129aee2de12bf560f896f1e682 + sha256: e2d5a0215197f9a38a984050f254f9c613b923c417e975fb8346628d173b195e + category: main + optional: false +- name: ca-certificates + version: 2024.3.11 + manager: conda + platform: linux-64 + dependencies: {} + url: https://repo.anaconda.com/pkgs/main/linux-64/ca-certificates-2024.3.11-h06a4308_0.conda + hash: + md5: 08529eb3504712baabcbda266a19feb7 + sha256: 24b51217e99c7c4fb6ffe30f07eb93ce105ce1c9d38458b2763870c997825ca8 + category: main + optional: false +- name: ca-certificates + version: 2024.3.11 + manager: conda + platform: osx-64 + dependencies: {} + url: https://repo.anaconda.com/pkgs/main/osx-64/ca-certificates-2024.3.11-hecd8cb5_0.conda + hash: + md5: a2e29a11940c66baf9942912096fad5f + sha256: 24088140db452365c0d6f94dcc67603b47313a785a37ec698532a569b1c5ba10 + category: main + optional: false +- name: ca-certificates + version: 2024.3.11 + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://repo.anaconda.com/pkgs/main/osx-arm64/ca-certificates-2024.3.11-hca03da5_0.conda + hash: + md5: 16b410a7fcf89040fb5c10b683d6fb7a + sha256: 60ccd9d040e38a244bcab0e0e93cf5107ea552b6f935de5d73ec8d419c9e40df + category: main + optional: false +- name: cctools + version: 949.0.1 + manager: conda + platform: osx-64 + dependencies: + cctools_osx-64: 949.0.1 + ld64: '530' + url: https://repo.anaconda.com/pkgs/main/osx-64/cctools-949.0.1-h9abeeb2_25.conda + hash: + md5: e569b8e2f29ae48a23f1d3b86a6d50c6 + sha256: e5694c283b8bfa085a8d5870971a044397f30aa506038432175fea58cbd1dac0 + category: main + optional: false +- name: cctools + version: 949.0.1 + manager: conda + platform: osx-arm64 + dependencies: + cctools_osx-arm64: 949.0.1 + ld64: '530' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/cctools-949.0.1-hc179dcd_25.conda + hash: + md5: 1406aa0dd7c9d22dce6a860afeada89b + sha256: b62137738e6bb528ac038499f642ad90244c6badbb7e07c20cfdb5a10a35748b + category: main + optional: false +- name: cctools_osx-64 + version: 949.0.1 + manager: conda + platform: osx-64 + dependencies: + ld64_osx-64: '>=530,<531.0a0' + ldid: '' + libcxx: '' + libllvm14: '>=14.0.6,<14.1.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/cctools_osx-64-949.0.1-hc7db93f_25.conda + hash: + md5: b7bedada071062b4a85fc2156d66bc48 + sha256: 75c895c04d35c428a46827b7f2d0141d46bbc70b71229c2f2b85726b4e96e06e + category: main + optional: false +- name: cctools_osx-arm64 + version: 949.0.1 + manager: conda + platform: osx-arm64 + dependencies: + ld64_osx-arm64: '>=530,<531.0a0' + ldid: '' + libcxx: '' + libllvm14: '>=14.0.6,<14.1.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/cctools_osx-arm64-949.0.1-h332cad3_25.conda + hash: + md5: bf6b9b8795cba544d46896f340c28328 + sha256: 77a6044bdd794f381c406a0460432cc0dcc3b849ff1c35dbc50fdeaa3f5464a5 + category: main + optional: false +- name: certifi + version: 2024.2.2 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/certifi-2024.2.2-py310h06a4308_0.conda + hash: + md5: 1772fa4f0cc9fcbeeea6173b50a59ca2 + sha256: 28fb49ce583c71f4c911dc71051e4d8d4bf5cf4e7b88e9cb4e450c67a53d4537 + category: main + optional: false +- name: certifi + version: 2024.2.2 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/certifi-2024.2.2-py310hecd8cb5_0.conda + hash: + md5: 3a89e880dff11e5d614fb224fda548cb + sha256: 4ceb060377989708a958f229ad589233ecefa3145f815ce4cb0f34e0c3223252 + category: main + optional: false +- name: certifi + version: 2024.2.2 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/certifi-2024.2.2-py310hca03da5_0.conda + hash: + md5: 8213245d382872c88be00ff67cdfe694 + sha256: 283d609d3623fa24ae0e7a04545ad5a46b11bbf78f462de159dbd850703a3375 + category: main + optional: false +- name: cffi + version: 1.16.0 + manager: conda + platform: linux-64 + dependencies: + libffi: '>=3.4,<3.5' + libgcc-ng: '>=11.2.0' + pycparser: '' + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/cffi-1.16.0-py310h5eee18b_1.conda + hash: + md5: 30deeb1ccdd6f9c41eec05248c2d1f7a + sha256: 0948f7273609ff3f6fcae6a4820b8db548aa4bb05dbbf4f71e21bafc236fadbe + category: main + optional: false +- name: cffi + version: 1.16.0 + manager: conda + platform: osx-64 + dependencies: + libffi: '>=3.4,<3.5' + pycparser: '' + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/cffi-1.16.0-py310h6c40b1e_1.conda + hash: + md5: 0da7e20374479f8a2b24bcf81d17621e + sha256: 51c6157e83536b975d3b1700b99b2b57594bf294971de2a404c048d02ac47708 + category: main + optional: false +- name: cffi + version: 1.16.0 + manager: conda + platform: osx-arm64 + dependencies: + libffi: '>=3.4,<3.5' + pycparser: '' + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/cffi-1.16.0-py310h80987f9_1.conda + hash: + md5: 6b6b28eea0432e79404656445dff99cd + sha256: c190cdcfd7e90b3f72e33cca95fae326b8e2da037a5976ed00e55f62ec1601a3 + category: main + optional: false +- name: chardet + version: 4.0.0 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/chardet-4.0.0-py310h06a4308_1003.conda + hash: + md5: 29ec302e607a23642d21c1ae323757b9 + sha256: bba440a7eeda2be19a661b5bc79434cf9923c5e5c3db714b74778a19de7596b4 + category: main + optional: false +- name: chardet + version: 4.0.0 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/chardet-4.0.0-py310hecd8cb5_1003.conda + hash: + md5: 56ea0996ea98c3371a35d45dda5f7dec + sha256: e58cbdc4bf92b24e52c66daf1fe08876eaee2c0f6ae450b633c89aafc08888b0 + category: main + optional: false +- name: chardet + version: 4.0.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/chardet-4.0.0-py310hca03da5_1003.conda + hash: + md5: 01a85defd976d76a82978e35affe8439 + sha256: 20dff1949d2d7bfb2aa67351b90bfd99c0782dcd6af4b882a62e7a2b9d99ce59 + category: main + optional: false +- name: charset-normalizer + version: 2.0.4 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.5' + url: https://repo.anaconda.com/pkgs/main/noarch/charset-normalizer-2.0.4-pyhd3eb1b0_0.conda + hash: + md5: e7a441d94234b2b5fafee06e25dbf076 + sha256: b39aea12bf02654cdd0094c79bfa6edbc8d054787f6e2d0b96d403cd4ba4cc0d + category: main + optional: false +- name: charset-normalizer + version: 2.0.4 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.5' + url: https://repo.anaconda.com/pkgs/main/noarch/charset-normalizer-2.0.4-pyhd3eb1b0_0.conda + hash: + md5: e7a441d94234b2b5fafee06e25dbf076 + sha256: b39aea12bf02654cdd0094c79bfa6edbc8d054787f6e2d0b96d403cd4ba4cc0d + category: main + optional: false +- name: charset-normalizer + version: 2.0.4 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.5' + url: https://repo.anaconda.com/pkgs/main/noarch/charset-normalizer-2.0.4-pyhd3eb1b0_0.conda + hash: + md5: e7a441d94234b2b5fafee06e25dbf076 + sha256: b39aea12bf02654cdd0094c79bfa6edbc8d054787f6e2d0b96d403cd4ba4cc0d + category: main + optional: false +- name: click + version: 8.1.7 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/click-8.1.7-py310h06a4308_0.conda + hash: + md5: 5b367e0f21e45a105c1d0ccd452b46b7 + sha256: 9c70a9b59f098e233a232eca41e50ac4bea40ecab677c0be812b5a3404c07c54 + category: main + optional: false +- name: click + version: 8.1.7 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/click-8.1.7-py310hecd8cb5_0.conda + hash: + md5: 8646b9848f128c02a97273fb62a68c1c + sha256: ba0a09bdf7ae6865c3ca5bf2cc2dfe113de2a65eb8871129d559872a4277a7ba + category: main + optional: false +- name: click + version: 8.1.7 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/click-8.1.7-py310hca03da5_0.conda + hash: + md5: 5a1e16a79270086115e18bd8d5671549 + sha256: 27b84b7ddef629b1f7d54312d67d7c4ddf2a34c95ff4938021627fbc6dd6c2cb + category: main + optional: false +- name: conda + version: 24.5.0 + manager: conda + platform: linux-64 + dependencies: + archspec: '>=0.2.3' + boltons: '>=23.0.0' + charset-normalizer: '' + conda-libmamba-solver: '>=23.11.0' + conda-package-handling: '>=2.2.0' + distro: '>=1.5.0' + frozendict: '>=2.4.2' + jsonpatch: '>=1.32' + menuinst: '>=2' + packaging: '>=23.0' + platformdirs: '>=3.10.0' + pluggy: '>=1.0.0' + pycosat: '>=0.6.3' + python: '>=3.10,<3.11.0a0' + requests: '>=2.28.0,<3' + ruamel.yaml: '>=0.11.14,<0.19' + setuptools: '>=60.0.0' + tqdm: '>=4' + truststore: '>=0.8.0' + zstandard: '>=0.19.0' + url: https://repo.anaconda.com/pkgs/main/linux-64/conda-24.5.0-py310h06a4308_0.conda + hash: + md5: a305b277ff495251971f3aebaea6d1b6 + sha256: 6e1a538b901951f756b6946627b5ab10f1bc11f980b349ecf31ac19f518ed659 + category: main + optional: false +- name: conda + version: 24.5.0 + manager: conda + platform: osx-64 + dependencies: + archspec: '>=0.2.3' + boltons: '>=23.0.0' + charset-normalizer: '' + conda-libmamba-solver: '>=23.11.0' + conda-package-handling: '>=2.2.0' + distro: '>=1.5.0' + frozendict: '>=2.4.2' + jsonpatch: '>=1.32' + menuinst: '>=2' + packaging: '>=23.0' + platformdirs: '>=3.10.0' + pluggy: '>=1.0.0' + pycosat: '>=0.6.3' + python: '>=3.10,<3.11.0a0' + requests: '>=2.28.0,<3' + ruamel.yaml: '>=0.11.14,<0.19' + setuptools: '>=60.0.0' + tqdm: '>=4' + truststore: '>=0.8.0' + zstandard: '>=0.19.0' + url: https://repo.anaconda.com/pkgs/main/osx-64/conda-24.5.0-py310hecd8cb5_0.conda + hash: + md5: 7a6bc4454a307315c1488a57d9cf327b + sha256: 520b83f1cf3d07caaa4587524413020451829a8e6e3067fffb2d9e9ee5b9e530 + category: main + optional: false +- name: conda + version: 24.5.0 + manager: conda + platform: osx-arm64 + dependencies: + archspec: '>=0.2.3' + boltons: '>=23.0.0' + charset-normalizer: '' + conda-libmamba-solver: '>=23.11.0' + conda-package-handling: '>=2.2.0' + distro: '>=1.5.0' + frozendict: '>=2.4.2' + jsonpatch: '>=1.32' + menuinst: '>=2' + packaging: '>=23.0' + platformdirs: '>=3.10.0' + pluggy: '>=1.0.0' + pycosat: '>=0.6.3' + python: '>=3.10,<3.11.0a0' + requests: '>=2.28.0,<3' + ruamel.yaml: '>=0.11.14,<0.19' + setuptools: '>=60.0.0' + tqdm: '>=4' + truststore: '>=0.8.0' + zstandard: '>=0.19.0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/conda-24.5.0-py310hca03da5_0.conda + hash: + md5: 58bb4d9a41d830f04b485359e9ae2b06 + sha256: 19028b65f97c8a3ab1420da0e45d896c3d2b527fb08c1525607c924be7c6e527 + category: main + optional: false +- name: conda-build + version: 24.5.1 + manager: conda + platform: linux-64 + dependencies: + beautifulsoup4: '' + chardet: '' + conda: '>=23.7.0' + conda-index: '>=0.4.0' + conda-package-handling: '>=1.3' + filelock: '' + frozendict: '>=2.4.2' + jinja2: '!=3.0.0' + jsonschema: '>=4.19' + menuinst: '>=2' + packaging: '' + patch: '>=2.6' + patchelf: '' + pkginfo: '' + psutil: '' + py-lief: '' + python: '>=3.10,<3.11.0a0' + python-libarchive-c: '' + pytz: '' + pyyaml: '' + requests: '' + tomli: '' + tqdm: '' + url: https://repo.anaconda.com/pkgs/main/linux-64/conda-build-24.5.1-py310h06a4308_0.conda + hash: + md5: 3c5afe3474d621ddb2407c116666accb + sha256: 8a52845e4b7c64e2a90747d503a4b4a38e619ceffb5eabee538ea9918815ea7c + category: main + optional: false +- name: conda-build + version: 24.5.1 + manager: conda + platform: osx-64 + dependencies: + beautifulsoup4: '' + cctools: '' + chardet: '' + conda: '>=23.7.0' + conda-index: '>=0.4.0' + conda-package-handling: '>=1.3' + filelock: '' + frozendict: '>=2.4.2' + jinja2: '!=3.0.0' + jsonschema: '>=4.19' + menuinst: '>=2' + packaging: '' + patch: '>=2.6' + pkginfo: '' + psutil: '' + py-lief: '' + python: '>=3.10,<3.11.0a0' + python-libarchive-c: '' + pytz: '' + pyyaml: '' + requests: '' + tomli: '' + tqdm: '' + url: https://repo.anaconda.com/pkgs/main/osx-64/conda-build-24.5.1-py310hecd8cb5_0.conda + hash: + md5: 5149038d931b447eb954bd2d905756b4 + sha256: 3037214e69fbb42a5f0ee05089cdb067a79fbf0f976033bd34534b94ecf52807 + category: main + optional: false +- name: conda-build + version: 24.5.1 + manager: conda + platform: osx-arm64 + dependencies: + beautifulsoup4: '' + cctools: '' + chardet: '' + conda: '>=23.7.0' + conda-index: '>=0.4.0' + conda-package-handling: '>=1.3' + filelock: '' + frozendict: '>=2.4.2' + jinja2: '!=3.0.0' + jsonschema: '>=4.19' + menuinst: '>=2' + packaging: '' + patch: '>=2.6' + pkginfo: '' + psutil: '' + py-lief: '' + python: '>=3.10,<3.11.0a0' + python-libarchive-c: '' + pytz: '' + pyyaml: '' + requests: '' + tomli: '' + tqdm: '' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/conda-build-24.5.1-py310hca03da5_0.conda + hash: + md5: 7092eaac545fa91db94e622d820b9b6f + sha256: 7b2b01e828cdf5003f6c9ccc31bb1d741cb2400f78a0f06d6602a91b670e3c14 + category: main + optional: false +- name: conda-index + version: 0.4.0 + manager: conda + platform: linux-64 + dependencies: + click: '>=8' + conda: '>=4.14.0' + conda-package-streaming: '>=0.7.0' + filelock: '' + jinja2: '' + more-itertools: '' + python: '' + ruamel.yaml: '' + url: https://repo.anaconda.com/pkgs/main/noarch/conda-index-0.4.0-pyhd3eb1b0_0.conda + hash: + md5: 0934fc5cae12555728a99b9516639928 + sha256: 878ee165bf1a9445d330513bd8cadd833376ee3abb6f3e67845458c7dd9c26fc + category: main + optional: false +- name: conda-index + version: 0.4.0 + manager: conda + platform: osx-64 + dependencies: + python: '' + jinja2: '' + more-itertools: '' + filelock: '' + ruamel.yaml: '' + click: '>=8' + conda-package-streaming: '>=0.7.0' + conda: '>=4.14.0' + url: https://repo.anaconda.com/pkgs/main/noarch/conda-index-0.4.0-pyhd3eb1b0_0.conda + hash: + md5: 0934fc5cae12555728a99b9516639928 + sha256: 878ee165bf1a9445d330513bd8cadd833376ee3abb6f3e67845458c7dd9c26fc + category: main + optional: false +- name: conda-index + version: 0.4.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '' + jinja2: '' + more-itertools: '' + filelock: '' + ruamel.yaml: '' + click: '>=8' + conda-package-streaming: '>=0.7.0' + conda: '>=4.14.0' + url: https://repo.anaconda.com/pkgs/main/noarch/conda-index-0.4.0-pyhd3eb1b0_0.conda + hash: + md5: 0934fc5cae12555728a99b9516639928 + sha256: 878ee165bf1a9445d330513bd8cadd833376ee3abb6f3e67845458c7dd9c26fc + category: main + optional: false +- name: conda-libmamba-solver + version: 24.1.0 + manager: conda + platform: linux-64 + dependencies: + boltons: '>=23.0.0' + conda: '>=23.7.4' + libmambapy: '>=1.5.6' + python: '>=3.8' + url: https://repo.anaconda.com/pkgs/main/noarch/conda-libmamba-solver-24.1.0-pyhd3eb1b0_0.conda + hash: + md5: dc2133d8923c982939c6ab9a63a7d39b + sha256: 2707f68aada792d1cf3a44c51d55b38b0cd65b0c192d2a5f9ef0550dc149a7d3 + category: main + optional: false +- name: conda-libmamba-solver + version: 24.1.0 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.8' + boltons: '>=23.0.0' + conda: '>=23.7.4' + libmambapy: '>=1.5.6' + url: https://repo.anaconda.com/pkgs/main/noarch/conda-libmamba-solver-24.1.0-pyhd3eb1b0_0.conda + hash: + md5: dc2133d8923c982939c6ab9a63a7d39b + sha256: 2707f68aada792d1cf3a44c51d55b38b0cd65b0c192d2a5f9ef0550dc149a7d3 + category: main + optional: false +- name: conda-libmamba-solver + version: 24.1.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.8' + boltons: '>=23.0.0' + conda: '>=23.7.4' + libmambapy: '>=1.5.6' + url: https://repo.anaconda.com/pkgs/main/noarch/conda-libmamba-solver-24.1.0-pyhd3eb1b0_0.conda + hash: + md5: dc2133d8923c982939c6ab9a63a7d39b + sha256: 2707f68aada792d1cf3a44c51d55b38b0cd65b0c192d2a5f9ef0550dc149a7d3 + category: main + optional: false +- name: conda-package-handling + version: 2.2.0 + manager: conda + platform: linux-64 + dependencies: + conda-package-streaming: '>=0.9.0' + python: '>=3.10,<3.11.0a0' + zstandard: '>=0.15' + url: https://repo.anaconda.com/pkgs/main/linux-64/conda-package-handling-2.2.0-py310h06a4308_1.conda + hash: + md5: adb340ac98ca7df70d64cacd34c43aa5 + sha256: d989c7dc2938272bfd1d2b793fff76f396deb8e36d00b83acbb4d05fb1026e2f + category: main + optional: false +- name: conda-package-handling + version: 2.2.0 + manager: conda + platform: osx-64 + dependencies: + conda-package-streaming: '>=0.9.0' + python: '>=3.10,<3.11.0a0' + zstandard: '>=0.15' + url: https://repo.anaconda.com/pkgs/main/osx-64/conda-package-handling-2.2.0-py310hecd8cb5_1.conda + hash: + md5: 770514332ce877176e5593855e561aba + sha256: 042f9f9882929f53fe8940e2a26a3db5b325ec02811b4fa6303ee38b867fb78e + category: main + optional: false +- name: conda-package-handling + version: 2.2.0 + manager: conda + platform: osx-arm64 + dependencies: + conda-package-streaming: '>=0.9.0' + python: '>=3.10,<3.11.0a0' + zstandard: '>=0.15' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/conda-package-handling-2.2.0-py310hca03da5_1.conda + hash: + md5: ab546b9425dd0b218e603a1d0d20303b + sha256: e7d4f921a086537a442219e6c0bae0a390364682576edc4d586214eb507a70a7 + category: main + optional: false +- name: conda-package-streaming + version: 0.9.0 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.10,<3.11.0a0' + zstandard: '>=0.15' + url: https://repo.anaconda.com/pkgs/main/linux-64/conda-package-streaming-0.9.0-py310h06a4308_0.conda + hash: + md5: 39fbf5022a1141c1ee39aa4e9985d186 + sha256: b4ad8f0d218caecf6b2a21ec73baa00c7e7439c53f1fb335916367e8da43de86 + category: main + optional: false +- name: conda-package-streaming + version: 0.9.0 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + zstandard: '>=0.15' + url: https://repo.anaconda.com/pkgs/main/osx-64/conda-package-streaming-0.9.0-py310hecd8cb5_0.conda + hash: + md5: b3725ff22f43bfdc8d035867b66ecb0e + sha256: e80adee4fd97328e82acc08d47cd93e48dbe8cf18f3eb230dd97978371fade15 + category: main + optional: false +- name: conda-package-streaming + version: 0.9.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.10,<3.11.0a0' + zstandard: '>=0.15' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/conda-package-streaming-0.9.0-py310hca03da5_0.conda + hash: + md5: e46cecbff9f0e5a202fc08b0f82010c5 + sha256: dbc26c874d3220faf8151899a4a5363da7e63c84ff77e5e3909c357a70a96bf7 + category: main + optional: false +- name: cryptography + version: 42.0.5 + manager: conda + platform: linux-64 + dependencies: + cffi: '>=1.12' + libgcc-ng: '' + openssl: '>=3.0.13,<4.0a0' + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/cryptography-42.0.5-py310hdda0065_1.conda + hash: + md5: c4019397f282e842ca3a935d09b8f97f + sha256: 8d78665263a52099b8a0dce5c5f65109510aee948cb242acae4b007255b1a56f + category: main + optional: false +- name: dbus + version: 1.13.18 + manager: conda + platform: linux-64 + dependencies: + expat: '>=2.2.10,<3.0a0' + glib: '' + libgcc-ng: '>=7.3.0' + url: https://repo.anaconda.com/pkgs/main/linux-64/dbus-1.13.18-hb2f20db_0.conda + hash: + md5: 6a6a6f1391f807847404344489ef6cf4 + sha256: 33cffa33d77d6bfa4e157322e188d82deb904efe1bc867d1ee08fcee9275b8ab + category: main + optional: false +- name: defusedxml + version: 0.7.1 + manager: conda + platform: linux-64 + dependencies: + python: '' + url: https://repo.anaconda.com/pkgs/main/noarch/defusedxml-0.7.1-pyhd3eb1b0_0.conda + hash: + md5: d912068b0729930972adcaac338882c0 + sha256: d5ccad2e614ba3f953c202a42270fe0cfdaf6c5071311a3accf28446c49a6c5b + category: main + optional: false +- name: defusedxml + version: 0.7.1 + manager: conda + platform: osx-64 + dependencies: + python: '' + url: https://repo.anaconda.com/pkgs/main/noarch/defusedxml-0.7.1-pyhd3eb1b0_0.conda + hash: + md5: d912068b0729930972adcaac338882c0 + sha256: d5ccad2e614ba3f953c202a42270fe0cfdaf6c5071311a3accf28446c49a6c5b + category: main + optional: false +- name: defusedxml + version: 0.7.1 + manager: conda + platform: osx-arm64 + dependencies: + python: '' + url: https://repo.anaconda.com/pkgs/main/noarch/defusedxml-0.7.1-pyhd3eb1b0_0.conda + hash: + md5: d912068b0729930972adcaac338882c0 + sha256: d5ccad2e614ba3f953c202a42270fe0cfdaf6c5071311a3accf28446c49a6c5b + category: main + optional: false +- name: distlib + version: 0.3.8 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/distlib-0.3.8-py310h06a4308_0.conda + hash: + md5: b36dd9c8c42d02cbbadf1ce516e166b3 + sha256: e6e77b9aeaae230fd545dbc5c93da777c66a14e18f23e67133cc8cb2d2cca33a + category: main + optional: false +- name: distlib + version: 0.3.8 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/distlib-0.3.8-py310hecd8cb5_0.conda + hash: + md5: a50e84611b11686fc686c6f65fbc8b1c + sha256: 685527ddc75b26166635551e4f13a33b58845eb514d7d665ac56cac9ae394659 + category: main + optional: false +- name: distlib + version: 0.3.8 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/distlib-0.3.8-py310hca03da5_0.conda + hash: + md5: 0b47eb4d8f4e1ea2bcdc6090ac8edf34 + sha256: d3c4d15549a287cf41c29a43e61a3ac2a8e77708252abf63ebe170b3853874a5 + category: main + optional: false +- name: distro + version: 1.9.0 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/distro-1.9.0-py310h06a4308_0.conda + hash: + md5: 4daeace877a3b0bdb9716b69729e4be1 + sha256: 1be069c67344c0eca88780362321939ea18cf7558149b1ca23fbda794ffb3315 + category: main + optional: false +- name: distro + version: 1.9.0 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/distro-1.9.0-py310hecd8cb5_0.conda + hash: + md5: 13776ab49cfae8f084e91ee4ac69e2e3 + sha256: 4cfd199cd5697dc2c530ea88b11356fd3ccc985082475e4a6ac4f07b35815f5c + category: main + optional: false +- name: distro + version: 1.9.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/distro-1.9.0-py310hca03da5_0.conda + hash: + md5: d5edd4502141bd883a33e1fac2d28ba7 + sha256: cb491d3d0924a00dcd7572b10b281f4d0473dd0a67f4170b93ac96829dd047ad + category: main + optional: false +- name: editables + version: '0.3' + manager: conda + platform: linux-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/editables-0.3-py310h06a4308_0.conda + hash: + md5: 0f97d697148a91c19b816f2910cba318 + sha256: b121e80a4c86387fc7914ba638aa4ce5a917146abb76e84bf7d30620c3dda4ca + category: main + optional: false +- name: editables + version: '0.3' + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/editables-0.3-py310hecd8cb5_0.conda + hash: + md5: 8bf1e9767464cf9892abd990d477de7b + sha256: 8158216a640d24a1a17031679b7fbace46c2403579a010e35139e9d2028bd789 + category: main + optional: false +- name: editables + version: '0.3' + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/editables-0.3-py310hca03da5_0.conda + hash: + md5: 38bfa4f1591c5686b561c1d84fe7c46f + sha256: fa800699904c103ebd99a56e07d1bc2a6429a20477cbfe36c2e6f5be777b37a1 + category: main + optional: false +- name: exceptiongroup + version: 1.2.0 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/exceptiongroup-1.2.0-py310h06a4308_0.conda + hash: + md5: 3cb78287eb8e4433200935a07d19a03e + sha256: 32402e5e05f57a5b035a5902cc3c1c37519b335b70f6145ac6de25018374c310 + category: main + optional: false +- name: exceptiongroup + version: 1.2.0 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/exceptiongroup-1.2.0-py310hecd8cb5_0.conda + hash: + md5: b1e822ba1cf1ece4b29f67cc76b6f876 + sha256: 4fc87050cf1cf0b5fc24f9eb5306d5e365ed9d675bcf7674cc35bad6074c8b96 + category: main + optional: false +- name: exceptiongroup + version: 1.2.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/exceptiongroup-1.2.0-py310hca03da5_0.conda + hash: + md5: 98ff1ba4d5447dda99f3cb3086c6b37b + sha256: 3a7ccda756744dd070806d1a9fe6101b171d991ea50172c763d229299b73be5b + category: main + optional: false +- name: expat + version: 2.6.2 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=11.2.0' + libstdcxx-ng: '>=11.2.0' + url: https://repo.anaconda.com/pkgs/main/linux-64/expat-2.6.2-h6a678d5_0.conda + hash: + md5: 55049db2772dae035f6b8a95f72b5970 + sha256: 8279b0944583257d0566fa9d1e3b2a78ff5eba6f4ca99aee43716e0296e4c0fa + category: main + optional: false +- name: filelock + version: 3.13.1 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/filelock-3.13.1-py310h06a4308_0.conda + hash: + md5: b0ea92b64435f35302a514d46d035510 + sha256: 5eb686395c16546bbb89e73fc7e14379f33b7b70f89a674e6988eefcbaf8d05b + category: main + optional: false +- name: filelock + version: 3.13.1 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/filelock-3.13.1-py310hecd8cb5_0.conda + hash: + md5: f3af998752e608c279767dfac1cd0321 + sha256: 82acfb3765ba61d03e3339c2b8426d1336450fddab68408454095af272400235 + category: main + optional: false +- name: filelock + version: 3.13.1 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/filelock-3.13.1-py310hca03da5_0.conda + hash: + md5: 3dbd2917c05dbf553f1e7c67f8ad7720 + sha256: f05dad258f96f5e56d7f30bd1b994070a2dc3b4d6252b44574a0026e8e8e647a + category: main + optional: false +- name: fmt + version: 9.1.0 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=11.2.0' + libstdcxx-ng: '>=11.2.0' + url: https://repo.anaconda.com/pkgs/main/linux-64/fmt-9.1.0-hdb19cb5_1.conda + hash: + md5: 4f12930203ff2d84df5d287af9b29858 + sha256: b2698ce365f852942f350cd8870272e6b780b8827db3fcc6874ef2d18996b242 + category: main + optional: false +- name: fmt + version: 9.1.0 + manager: conda + platform: osx-64 + dependencies: + libcxx: '>=14.0.6' + url: https://repo.anaconda.com/pkgs/main/osx-64/fmt-9.1.0-ha357a0b_1.conda + hash: + md5: 3cdbe6929571bdef216641b8a3eac194 + sha256: 357cd6506663b486d754c39a26f6ba72a6c48adf24b8bee84be26c3c929a69dd + category: main + optional: false +- name: fmt + version: 9.1.0 + manager: conda + platform: osx-arm64 + dependencies: + libcxx: '>=14.0.6' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/fmt-9.1.0-h48ca7d4_1.conda + hash: + md5: ad5d3c1c7e09ec799f1741078b658042 + sha256: 23f24972e04c099738b417499e47b715ccdc70fb69825f92739c54fb71ba04f0 + category: main + optional: false +- name: frozendict + version: 2.4.2 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=11.2.0' + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/frozendict-2.4.2-py310h5eee18b_0.conda + hash: + md5: d60ee615231f33a2ab3a79a03bae47cc + sha256: c33d5b044bc58ef68c109635348bd998f87132cfff7a21384ec9a675a49c56c0 + category: main + optional: false +- name: frozendict + version: 2.4.2 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/frozendict-2.4.2-py310h6c40b1e_0.conda + hash: + md5: 105196afbda02754f8a89cb614833c4d + sha256: a2d43fc1f0c84bc0afcde44f94d3836296c84b2b84b895310754155206d7362c + category: main + optional: false +- name: frozendict + version: 2.4.2 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/frozendict-2.4.2-py310h80987f9_0.conda + hash: + md5: 3c268444016fbc2f6aa372d0604e5947 + sha256: 559b34198073bcf1aba1beea8ddbe0fcebe6d504d2556055f945dcdaa756139b + category: main + optional: false +- name: glib + version: 2.78.4 + manager: conda + platform: linux-64 + dependencies: + glib-tools: 2.78.4 + libgcc-ng: '>=11.2.0' + libglib: 2.78.4 + libstdcxx-ng: '>=11.2.0' + python: '' + url: https://repo.anaconda.com/pkgs/main/linux-64/glib-2.78.4-h6a678d5_0.conda + hash: + md5: 045ff487547f7b2b7ff01648681b8ebe + sha256: cec5529b54b7e5d2fe1b80ab7115351dde4f01db414d6a4691f915cfd09b9813 + category: main + optional: false +- name: glib-tools + version: 2.78.4 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=11.2.0' + libglib: 2.78.4 + libstdcxx-ng: '>=11.2.0' + url: https://repo.anaconda.com/pkgs/main/linux-64/glib-tools-2.78.4-h6a678d5_0.conda + hash: + md5: 3dbe6227cd59818dca9afb75ccb70708 + sha256: 5b0649f460e2f0f3e2dd701c81fdafe2640541674966e37b31a96bd7e832cdab + category: main + optional: false +- name: h11 + version: 0.14.0 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/h11-0.14.0-py310h06a4308_0.conda + hash: + md5: 68fa9a8aa8982390f05ce0e189551d1e + sha256: 30175d0063ed1e13d8406bf23b7e7a38659fe6cfefc536426d5159ccb15b2e6d + category: main + optional: false +- name: h11 + version: 0.14.0 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/h11-0.14.0-py310hecd8cb5_0.conda + hash: + md5: bd828bbd0f43ba4ae2d4865f617cf427 + sha256: c0609148a7f7fae371e46471ce333a7da1eb88c2938fea8d0c8d5eed5efe1976 + category: main + optional: false +- name: h11 + version: 0.14.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/h11-0.14.0-py310hca03da5_0.conda + hash: + md5: 4f1d2898e66418992806a175e2f99a9a + sha256: d6a5c3057d1acc5258e5f12cd55365aeaf261d3d268d813a5b52cc3537b2ac83 + category: main + optional: false +- name: hatch + version: 1.12.0 + manager: conda + platform: linux-64 + dependencies: + click: '>=8.0.6' + hatchling: '>=1.24.2' + httpx: '>=0.22.0' + hyperlink: '>=21.0.0' + keyring: '>=23.5.0' + packaging: '>=23.2' + pexpect: '>=4.8,<5' + platformdirs: '>=2.5.0' + python: '>=3.8' + rich: '>=11.2.0' + shellingham: '>=1.4.0' + tomli-w: '>=1.0' + tomlkit: '>=0.11.1' + userpath: '>=1.7,<2' + uv: '>=0.1.35' + virtualenv: '>=20.26.1' + zstandard: <1.0 + url: https://conda.anaconda.org/conda-forge/noarch/hatch-1.12.0-pyhd8ed1ab_0.conda + hash: + md5: 75ef4cd9ebf1c870d9389d2af8c67a42 + sha256: 8f0e887f1a2f07866b357f9ab7b7ae424778723b1b896484990a0de62d1fac92 + category: main + optional: false +- name: hatch + version: 1.12.0 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.8' + rich: '>=11.2.0' + tomlkit: '>=0.11.1' + httpx: '>=0.22.0' + hyperlink: '>=21.0.0' + platformdirs: '>=2.5.0' + keyring: '>=23.5.0' + shellingham: '>=1.4.0' + tomli-w: '>=1.0' + packaging: '>=23.2' + click: '>=8.0.6' + zstandard: <1.0 + hatchling: '>=1.24.2' + pexpect: '>=4.8,<5' + userpath: '>=1.7,<2' + uv: '>=0.1.35' + virtualenv: '>=20.26.1' + url: https://conda.anaconda.org/conda-forge/noarch/hatch-1.12.0-pyhd8ed1ab_0.conda + hash: + md5: 75ef4cd9ebf1c870d9389d2af8c67a42 + sha256: 8f0e887f1a2f07866b357f9ab7b7ae424778723b1b896484990a0de62d1fac92 + category: main + optional: false +- name: hatch + version: 1.12.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.8' + rich: '>=11.2.0' + tomlkit: '>=0.11.1' + httpx: '>=0.22.0' + hyperlink: '>=21.0.0' + platformdirs: '>=2.5.0' + keyring: '>=23.5.0' + shellingham: '>=1.4.0' + tomli-w: '>=1.0' + packaging: '>=23.2' + click: '>=8.0.6' + zstandard: <1.0 + hatchling: '>=1.24.2' + pexpect: '>=4.8,<5' + userpath: '>=1.7,<2' + uv: '>=0.1.35' + virtualenv: '>=20.26.1' + url: https://conda.anaconda.org/conda-forge/noarch/hatch-1.12.0-pyhd8ed1ab_0.conda + hash: + md5: 75ef4cd9ebf1c870d9389d2af8c67a42 + sha256: 8f0e887f1a2f07866b357f9ab7b7ae424778723b1b896484990a0de62d1fac92 + category: main + optional: false +- name: hatch-vcs + version: 0.3.0 + manager: conda + platform: linux-64 + dependencies: + hatchling: '>=1.1.0' + python: '>=3.10,<3.11.0a0' + setuptools-scm: '>=6.4.0' + url: https://repo.anaconda.com/pkgs/main/linux-64/hatch-vcs-0.3.0-py310h06a4308_0.conda + hash: + md5: 48ed01287f91a0b74c31095c58285918 + sha256: e25a2cf1033543626faf04408014d6e0f2db21ee0116079d62a08f753da12332 + category: main + optional: false +- name: hatch-vcs + version: 0.3.0 + manager: conda + platform: osx-64 + dependencies: + hatchling: '>=1.1.0' + python: '>=3.10,<3.11.0a0' + setuptools-scm: '>=6.4.0' + url: https://repo.anaconda.com/pkgs/main/osx-64/hatch-vcs-0.3.0-py310hecd8cb5_0.conda + hash: + md5: 44b9881b368dd7a99c62c1dc66d5f6b4 + sha256: 107b29a45b60ef7b262541c6acfcbfe25e9d3e1ce16dd5d29ffcdcf2b5d83cab + category: main + optional: false +- name: hatch-vcs + version: 0.3.0 + manager: conda + platform: osx-arm64 + dependencies: + hatchling: '>=1.1.0' + python: '>=3.10,<3.11.0a0' + setuptools-scm: '>=6.4.0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/hatch-vcs-0.3.0-py310hca03da5_0.conda + hash: + md5: d5d69484e07e47de3248084497eed989 + sha256: 511fc115d9d5dc8bf9b8aa9b3ec2663f6ec22c3e0d123d5e53d9281bc62168f4 + category: main + optional: false +- name: hatchling + version: 1.24.2 + manager: conda + platform: linux-64 + dependencies: + editables: '>=0.3' + importlib-metadata: '' + packaging: '>=21.3' + pathspec: '>=0.10.1' + pluggy: '>=1.0.0' + python: '>=3.7' + tomli: '>=1.2.2' + trove-classifiers: '' + url: https://conda.anaconda.org/conda-forge/noarch/hatchling-1.24.2-pyhd8ed1ab_0.conda + hash: + md5: 28cef29029f6da70e7a987a76a3599a4 + sha256: 1161601871d8aa6c5ff7719a277462cdf0160351a88f2a84a22d6ead3b90150f + category: main + optional: false +- name: hatchling + version: 1.24.2 + manager: conda + platform: osx-64 + dependencies: + importlib-metadata: '' + trove-classifiers: '' + python: '>=3.7' + packaging: '>=21.3' + pluggy: '>=1.0.0' + pathspec: '>=0.10.1' + tomli: '>=1.2.2' + editables: '>=0.3' + url: https://conda.anaconda.org/conda-forge/noarch/hatchling-1.24.2-pyhd8ed1ab_0.conda + hash: + md5: 28cef29029f6da70e7a987a76a3599a4 + sha256: 1161601871d8aa6c5ff7719a277462cdf0160351a88f2a84a22d6ead3b90150f + category: main + optional: false +- name: hatchling + version: 1.24.2 + manager: conda + platform: osx-arm64 + dependencies: + importlib-metadata: '' + trove-classifiers: '' + python: '>=3.7' + packaging: '>=21.3' + pluggy: '>=1.0.0' + pathspec: '>=0.10.1' + tomli: '>=1.2.2' + editables: '>=0.3' + url: https://conda.anaconda.org/conda-forge/noarch/hatchling-1.24.2-pyhd8ed1ab_0.conda + hash: + md5: 28cef29029f6da70e7a987a76a3599a4 + sha256: 1161601871d8aa6c5ff7719a277462cdf0160351a88f2a84a22d6ead3b90150f + category: main + optional: false +- name: httpcore + version: 1.0.2 + manager: conda + platform: linux-64 + dependencies: + certifi: '' + h11: '>=0.13,<0.15' + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/httpcore-1.0.2-py310h06a4308_0.conda + hash: + md5: e94efcfc6f0fea751999b082e74b425e + sha256: 61a6d16f7df943f0edfa9abb173e6b6f3add2dc644836fb386ec849fe42bb2ec + category: main + optional: false +- name: httpcore + version: 1.0.2 + manager: conda + platform: osx-64 + dependencies: + certifi: '' + h11: '>=0.13,<0.15' + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/httpcore-1.0.2-py310hecd8cb5_0.conda + hash: + md5: eb007f45716147a4a73ff55536f24ac7 + sha256: 326a00809dac50a27f7f8bec4d6ca27675b18f0e9b127a8310cfa0e2d44d3c2f + category: main + optional: false +- name: httpcore + version: 1.0.2 + manager: conda + platform: osx-arm64 + dependencies: + certifi: '' + h11: '>=0.13,<0.15' + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/httpcore-1.0.2-py310hca03da5_0.conda + hash: + md5: eb3484ec90d4c1aa866df70791b91b05 + sha256: 4c3cf647559cd300861b5d87564bb76c72cf45fc4c93201fffdf3194a9d5d436 + category: main + optional: false +- name: httpx + version: 0.26.0 + manager: conda + platform: linux-64 + dependencies: + anyio: '' + certifi: '' + httpcore: '>=1,<2' + idna: '' + python: '>=3.10,<3.11.0a0' + sniffio: '' + url: https://repo.anaconda.com/pkgs/main/linux-64/httpx-0.26.0-py310h06a4308_0.conda + hash: + md5: affcfb815bf26fc1f3cf9928ed7bbde2 + sha256: 09b45e4daaa16fb6fc739d3b6f57132fee57ec17010773b25b4d64aaa9395cdb + category: main + optional: false +- name: httpx + version: 0.26.0 + manager: conda + platform: osx-64 + dependencies: + anyio: '' + certifi: '' + httpcore: '>=1,<2' + idna: '' + python: '>=3.10,<3.11.0a0' + sniffio: '' + url: https://repo.anaconda.com/pkgs/main/osx-64/httpx-0.26.0-py310hecd8cb5_0.conda + hash: + md5: 3cb44d97c0f1f141a03c3d30bf8430f8 + sha256: 567bd4310aad909d8f9bcced4a75a69adae6123b987311fae49e58966758f27a + category: main + optional: false +- name: httpx + version: 0.26.0 + manager: conda + platform: osx-arm64 + dependencies: + anyio: '' + certifi: '' + httpcore: '>=1,<2' + idna: '' + python: '>=3.10,<3.11.0a0' + sniffio: '' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/httpx-0.26.0-py310hca03da5_0.conda + hash: + md5: 5052c9369180df2343f3ac8351e885ce + sha256: 1b75e77b8572b935ed2a9a88b7a6a6db50d99fdff8c701933bd91a7b64470679 + category: main + optional: false +- name: hyperlink + version: 21.0.0 + manager: conda + platform: linux-64 + dependencies: + idna: '>=2.5' + python: '' + url: https://repo.anaconda.com/pkgs/main/noarch/hyperlink-21.0.0-pyhd3eb1b0_0.conda + hash: + md5: 8b1ba827e0fecc1c857577a3d51aa653 + sha256: f2037529715e52123c29eb1ca7f454f6bf036f1e6b4066e233e7e88011f14917 + category: main + optional: false +- name: hyperlink + version: 21.0.0 + manager: conda + platform: osx-64 + dependencies: + python: '' + idna: '>=2.5' + url: https://repo.anaconda.com/pkgs/main/noarch/hyperlink-21.0.0-pyhd3eb1b0_0.conda + hash: + md5: 8b1ba827e0fecc1c857577a3d51aa653 + sha256: f2037529715e52123c29eb1ca7f454f6bf036f1e6b4066e233e7e88011f14917 + category: main + optional: false +- name: hyperlink + version: 21.0.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '' + idna: '>=2.5' + url: https://repo.anaconda.com/pkgs/main/noarch/hyperlink-21.0.0-pyhd3eb1b0_0.conda + hash: + md5: 8b1ba827e0fecc1c857577a3d51aa653 + sha256: f2037529715e52123c29eb1ca7f454f6bf036f1e6b4066e233e7e88011f14917 + category: main + optional: false +- name: icu + version: '73.1' + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=11.2.0' + libstdcxx-ng: '>=11.2.0' + url: https://repo.anaconda.com/pkgs/main/linux-64/icu-73.1-h6a678d5_0.conda + hash: + md5: 6d09df641fc23f7d277a04dc7ea32dd4 + sha256: f60e8a4b965ba50214f5a7a24308c060860fa5062d9d69d581287a520006abba + category: main + optional: false +- name: icu + version: '73.1' + manager: conda + platform: osx-64 + dependencies: + libcxx: '>=14.0.6' + url: https://repo.anaconda.com/pkgs/main/osx-64/icu-73.1-hcec6c5f_0.conda + hash: + md5: 17cdf4196282c140af9b4e3f676756aa + sha256: 7dcc63488aa6d11f4af0809047d805f7984559a698a18eb28d76ebef29254235 + category: main + optional: false +- name: icu + version: '73.1' + manager: conda + platform: osx-arm64 + dependencies: + libcxx: '>=14.0.6' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/icu-73.1-h313beb8_0.conda + hash: + md5: 0549586b2838067c209114998ed312ed + sha256: 1fa9139c79ab8e4e6fd1ae5451f494081721b274fb0af8c5f600a4059135cbc2 + category: main + optional: false +- name: idna + version: '3.7' + manager: conda + platform: linux-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/idna-3.7-py310h06a4308_0.conda + hash: + md5: e6999f40f91d7c7e46dc13b4283cb6d8 + sha256: 5bd17a8e3bafd07ae79cafb55281a44f92c266a9317e5e04020bb867bcd46198 + category: main + optional: false +- name: idna + version: '3.7' + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/idna-3.7-py310hecd8cb5_0.conda + hash: + md5: 97d9b5599a1e2fa70655e5dc941f024e + sha256: 3e096139d81f47a4c2689b4b1f4178de28ec9ff26f0cca8b934cd0e0a4d8f6f4 + category: main + optional: false +- name: idna + version: '3.7' + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/idna-3.7-py310hca03da5_0.conda + hash: + md5: 57a9383cb4abef9370742a8c14410bdf + sha256: 8b93984c2c3f55851adfcae1476aaf0cefbd1fd7a9f03042f771d31f2afb9935 + category: main + optional: false +- name: importlib-metadata + version: 7.0.1 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.10,<3.11.0a0' + zipp: '>=0.5' + url: https://repo.anaconda.com/pkgs/main/linux-64/importlib-metadata-7.0.1-py310h06a4308_0.conda + hash: + md5: 5c2007a924f9ab672b2beaf117af0852 + sha256: 8f0355f1c0631bbe08bed4627a7477a17255d731f6b95e369506c9de2db7b91c + category: main + optional: false +- name: importlib-metadata + version: 7.0.1 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + zipp: '>=0.5' + url: https://repo.anaconda.com/pkgs/main/osx-64/importlib-metadata-7.0.1-py310hecd8cb5_0.conda + hash: + md5: 48effda9c4791bb876924e12e1fc2c3a + sha256: e4f5e6046c6193cf8f61e3a8af7a2c0bcd3950fefd8da888e2dfa42bd67036c9 + category: main + optional: false +- name: importlib-metadata + version: 7.0.1 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.10,<3.11.0a0' + zipp: '>=0.5' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/importlib-metadata-7.0.1-py310hca03da5_0.conda + hash: + md5: 889ec7562a00771a589a65298fcdc25b + sha256: b512204182dd8f176ca5362ce718228eb4b565f9360553b9cc1159561bf6902d + category: main + optional: false +- name: importlib_metadata + version: 7.0.1 + manager: conda + platform: linux-64 + dependencies: + importlib-metadata: '>=7.0.1,<7.0.2.0a0' + url: https://repo.anaconda.com/pkgs/main/noarch/importlib_metadata-7.0.1-hd3eb1b0_0.conda + hash: + md5: f764ec5ca8c8f808464764c83be0ead4 + sha256: e58fbebccec386c1c1b71ed79a6a3e9b23892a01e340927bd1283ab34830700f + category: main + optional: false +- name: importlib_metadata + version: 7.0.1 + manager: conda + platform: osx-64 + dependencies: + importlib-metadata: '>=7.0.1,<7.0.2.0a0' + url: https://repo.anaconda.com/pkgs/main/noarch/importlib_metadata-7.0.1-hd3eb1b0_0.conda + hash: + md5: f764ec5ca8c8f808464764c83be0ead4 + sha256: e58fbebccec386c1c1b71ed79a6a3e9b23892a01e340927bd1283ab34830700f + category: main + optional: false +- name: importlib_metadata + version: 7.0.1 + manager: conda + platform: osx-arm64 + dependencies: + importlib-metadata: '>=7.0.1,<7.0.2.0a0' + url: https://repo.anaconda.com/pkgs/main/noarch/importlib_metadata-7.0.1-hd3eb1b0_0.conda + hash: + md5: f764ec5ca8c8f808464764c83be0ead4 + sha256: e58fbebccec386c1c1b71ed79a6a3e9b23892a01e340927bd1283ab34830700f + category: main + optional: false +- name: jaraco.classes + version: 3.2.1 + manager: conda + platform: linux-64 + dependencies: + more-itertools: '' + python: '>=3.6' + url: https://repo.anaconda.com/pkgs/main/noarch/jaraco.classes-3.2.1-pyhd3eb1b0_0.conda + hash: + md5: 7f47c66b55e92b2724174847703df72f + sha256: 0743b8780601d24dfc740dad0865d0aeb3046eff46fe8c447530359070301648 + category: main + optional: false +- name: jaraco.classes + version: 3.2.1 + manager: conda + platform: osx-64 + dependencies: + more-itertools: '' + python: '>=3.6' + url: https://repo.anaconda.com/pkgs/main/noarch/jaraco.classes-3.2.1-pyhd3eb1b0_0.conda + hash: + md5: 7f47c66b55e92b2724174847703df72f + sha256: 0743b8780601d24dfc740dad0865d0aeb3046eff46fe8c447530359070301648 + category: main + optional: false +- name: jaraco.classes + version: 3.2.1 + manager: conda + platform: osx-arm64 + dependencies: + more-itertools: '' + python: '>=3.6' + url: https://repo.anaconda.com/pkgs/main/noarch/jaraco.classes-3.2.1-pyhd3eb1b0_0.conda + hash: + md5: 7f47c66b55e92b2724174847703df72f + sha256: 0743b8780601d24dfc740dad0865d0aeb3046eff46fe8c447530359070301648 + category: main + optional: false +- name: jeepney + version: 0.7.1 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.6' + url: https://repo.anaconda.com/pkgs/main/noarch/jeepney-0.7.1-pyhd3eb1b0_0.conda + hash: + md5: f115ef0af90b59f35ef56743955979a4 + sha256: a74312540427eb9b5b613afe7fdfbd1b271530e177c94d186e2aeea907e50522 + category: main + optional: false +- name: jinja2 + version: 3.1.4 + manager: conda + platform: linux-64 + dependencies: + markupsafe: '>=2.0' + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/jinja2-3.1.4-py310h06a4308_0.conda + hash: + md5: 3c05f1abf47bf14e2d502081b33b7ed1 + sha256: 750d5aa914e5f4cd3537b731e196761b58d9ee8d6fcab4d1b9071b35975cb623 + category: main + optional: false +- name: jinja2 + version: 3.1.4 + manager: conda + platform: osx-64 + dependencies: + markupsafe: '>=2.0' + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/jinja2-3.1.4-py310hecd8cb5_0.conda + hash: + md5: 489b2c400568b254385bd2c59084e67d + sha256: 1b4a6e346a333a559ea992c4389d54d100b2443c585ba5ac3c79525d38616460 + category: main + optional: false +- name: jinja2 + version: 3.1.4 + manager: conda + platform: osx-arm64 + dependencies: + markupsafe: '>=2.0' + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/jinja2-3.1.4-py310hca03da5_0.conda + hash: + md5: 707757b6117d130bfd1ce90416720fbf + sha256: 5b30a4f4fed3c2e846258f99b2931acc0f1ba8cade07957084cfe92dd3cb63cf + category: main + optional: false +- name: jsonpatch + version: '1.33' + manager: conda + platform: linux-64 + dependencies: + jsonpointer: '>=1.9' + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/jsonpatch-1.33-py310h06a4308_1.conda + hash: + md5: 37d54a44475726ff4fba1093add64ba7 + sha256: 4da95eaea4b176a572f5d155420a9452a988b7393df67847582a1d0b5ffab9a5 + category: main + optional: false +- name: jsonpatch + version: '1.33' + manager: conda + platform: osx-64 + dependencies: + jsonpointer: '>=1.9' + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/jsonpatch-1.33-py310hecd8cb5_1.conda + hash: + md5: 543592bb6be21fae77bb4d5637cb390e + sha256: e24704e814f8ed9c9e8130cd5ae7bba50521ae6048686d4b202e43eb6b5b631a + category: main + optional: false +- name: jsonpatch + version: '1.33' + manager: conda + platform: osx-arm64 + dependencies: + jsonpointer: '>=1.9' + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/jsonpatch-1.33-py310hca03da5_1.conda + hash: + md5: 84e16dc3a9ab400c6524ce5cfee4d171 + sha256: fa38bd2715ae71ee0d7b2937adaf7a729dd594d24d7eb190064a827a48319aa7 + category: main + optional: false +- name: jsonpointer + version: '2.1' + manager: conda + platform: linux-64 + dependencies: + python: '' + url: https://repo.anaconda.com/pkgs/main/noarch/jsonpointer-2.1-pyhd3eb1b0_0.conda + hash: + md5: 298ff809e733cb04366e4e629c65aa8d + sha256: 739af990230fb811bc0c03a7393ccb361d371d85246c4ef1d5185e7e0a1c2810 + category: main + optional: false +- name: jsonpointer + version: '2.1' + manager: conda + platform: osx-64 + dependencies: + python: '' + url: https://repo.anaconda.com/pkgs/main/noarch/jsonpointer-2.1-pyhd3eb1b0_0.conda + hash: + md5: 298ff809e733cb04366e4e629c65aa8d + sha256: 739af990230fb811bc0c03a7393ccb361d371d85246c4ef1d5185e7e0a1c2810 + category: main + optional: false +- name: jsonpointer + version: '2.1' + manager: conda + platform: osx-arm64 + dependencies: + python: '' + url: https://repo.anaconda.com/pkgs/main/noarch/jsonpointer-2.1-pyhd3eb1b0_0.conda + hash: + md5: 298ff809e733cb04366e4e629c65aa8d + sha256: 739af990230fb811bc0c03a7393ccb361d371d85246c4ef1d5185e7e0a1c2810 + category: main + optional: false +- name: jsonschema + version: 4.19.2 + manager: conda + platform: linux-64 + dependencies: + attrs: '>=22.2.0' + jsonschema-specifications: '>=2023.03.6' + python: '>=3.10,<3.11.0a0' + referencing: '>=0.28.4' + rpds-py: '>=0.7.1' + url: https://repo.anaconda.com/pkgs/main/linux-64/jsonschema-4.19.2-py310h06a4308_0.conda + hash: + md5: ddb32fd9ff8b311faf8246bfaa94c725 + sha256: 6290d88f033a380687d959551cc8961610f0c41da7c94236eed83326bef57868 + category: main + optional: false +- name: jsonschema + version: 4.19.2 + manager: conda + platform: osx-64 + dependencies: + attrs: '>=22.2.0' + jsonschema-specifications: '>=2023.03.6' + python: '>=3.10,<3.11.0a0' + referencing: '>=0.28.4' + rpds-py: '>=0.7.1' + url: https://repo.anaconda.com/pkgs/main/osx-64/jsonschema-4.19.2-py310hecd8cb5_0.conda + hash: + md5: 4ec10030621b7e3f77ef9876ed60e4b4 + sha256: f77bc07680362073134323984eeec6e6d5f2f39d4829933d6e17d9a2c7ea065b + category: main + optional: false +- name: jsonschema + version: 4.19.2 + manager: conda + platform: osx-arm64 + dependencies: + attrs: '>=22.2.0' + jsonschema-specifications: '>=2023.03.6' + python: '>=3.10,<3.11.0a0' + referencing: '>=0.28.4' + rpds-py: '>=0.7.1' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/jsonschema-4.19.2-py310hca03da5_0.conda + hash: + md5: 67515d7263630727522e940f8b7614b7 + sha256: 9bab3882898f9fe5a55cc0dbefaa2846d1fd3feb7e4632f0794e8a1b676bc220 + category: main + optional: false +- name: jsonschema-specifications + version: 2023.7.1 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.10,<3.11.0a0' + referencing: '>=0.28.0' + url: https://repo.anaconda.com/pkgs/main/linux-64/jsonschema-specifications-2023.7.1-py310h06a4308_0.conda + hash: + md5: 0cf6985bde6513725f978825b4a1fe24 + sha256: d8474b700978f7066e22283e2d13d6ff54f8c23d994ff707bdd51dddf5a24a98 + category: main + optional: false +- name: jsonschema-specifications + version: 2023.7.1 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + referencing: '>=0.28.0' + url: https://repo.anaconda.com/pkgs/main/osx-64/jsonschema-specifications-2023.7.1-py310hecd8cb5_0.conda + hash: + md5: e83d4b98ba2f6ff428cae884d99ac475 + sha256: 13aa65176f0a155c7ef2f3e3b10bd2a2f7cea48a971f0058a8998326abfba7de + category: main + optional: false +- name: jsonschema-specifications + version: 2023.7.1 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.10,<3.11.0a0' + referencing: '>=0.28.0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/jsonschema-specifications-2023.7.1-py310hca03da5_0.conda + hash: + md5: 0b514fa3eea98bf7614cd00051b16cbf + sha256: 2eab2666bf12038ee07c192ad0bd5ad5237c69a30d6a59d8a1a1c221a4e39527 + category: main + optional: false +- name: jupyter_core + version: 5.5.0 + manager: conda + platform: linux-64 + dependencies: + platformdirs: '>=2.5' + python: '>=3.10,<3.11.0a0' + traitlets: '>=5.3' + url: https://repo.anaconda.com/pkgs/main/linux-64/jupyter_core-5.5.0-py310h06a4308_0.conda + hash: + md5: b9b5c36e5eb82b763c6d12e8c6532946 + sha256: 6d5d5ac73ab2fdc1b7b21496c371bfbc688516e5f1d3017ebea1cd374c44ca47 + category: main + optional: false +- name: jupyter_core + version: 5.5.0 + manager: conda + platform: osx-64 + dependencies: + platformdirs: '>=2.5' + python: '>=3.10,<3.11.0a0' + traitlets: '>=5.3' + url: https://repo.anaconda.com/pkgs/main/osx-64/jupyter_core-5.5.0-py310hecd8cb5_0.conda + hash: + md5: 1e8980c1bc174c53b6f86d694f3a2d85 + sha256: 00039e687db0377f13dd34c0326d56ecd37eb11fe88273ceb2ed45bd17267ad9 + category: main + optional: false +- name: jupyter_core + version: 5.5.0 + manager: conda + platform: osx-arm64 + dependencies: + platformdirs: '>=2.5' + python: '>=3.10,<3.11.0a0' + traitlets: '>=5.3' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/jupyter_core-5.5.0-py310hca03da5_0.conda + hash: + md5: 7214786cb6034d28e01af13c6b60064d + sha256: 23ae387024d4bf4fce55c5cf4ede4861fd05c314947808f6f1df8a74ddef3d33 + category: main + optional: false +- name: keyring + version: 24.3.1 + manager: conda + platform: linux-64 + dependencies: + importlib_metadata: '>=4.11.4' + jaraco.classes: '' + jeepney: '>=0.4.2' + python: '>=3.10,<3.11.0a0' + secretstorage: '>=3.2' + url: https://repo.anaconda.com/pkgs/main/linux-64/keyring-24.3.1-py310h06a4308_0.conda + hash: + md5: 44932698f14cd0efde9b52280dece512 + sha256: 3e6b1229d276545bb790212ed37d4a2eb0960de630872c3bfebdc36a53e2667a + category: main + optional: false +- name: keyring + version: 24.3.1 + manager: conda + platform: osx-64 + dependencies: + importlib_metadata: '>=4.11.4' + jaraco.classes: '' + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/keyring-24.3.1-py310hecd8cb5_0.conda + hash: + md5: 01180006f4872dad7d0ef90660c688f1 + sha256: 008f5faa1877446a5825027abffb893f7f43e2bbb6b6ed17f7dea7141f0704e6 + category: main + optional: false +- name: keyring + version: 24.3.1 + manager: conda + platform: osx-arm64 + dependencies: + importlib_metadata: '>=4.11.4' + jaraco.classes: '' + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/keyring-24.3.1-py310hca03da5_0.conda + hash: + md5: 9b900b49825533a01b0f7283e913ed62 + sha256: 764707c7499d321cc49f5fc66dcf1040806b666400732976c7ec1149da734f89 + category: main + optional: false +- name: krb5 + version: 1.20.1 + manager: conda + platform: linux-64 + dependencies: + libedit: '>=3.1.20221030,<4.0a0' + libgcc-ng: '>=11.2.0' + openssl: '>=3.0.8,<4.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/krb5-1.20.1-h143b758_1.conda + hash: + md5: cf1accc86321fa25d6b978cc748039ae + sha256: 1e7de3da126496acf2e84d3693fc28abe5bbf278e0cefc361d8463323afd399a + category: main + optional: false +- name: krb5 + version: 1.20.1 + manager: conda + platform: osx-64 + dependencies: + libedit: '>=3.1.20221030,<4.0a0' + openssl: '>=3.0.8,<4.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/krb5-1.20.1-h428f121_1.conda + hash: + md5: e9a3c17dd26b1aa7785e75af8dfcead2 + sha256: 300298ba31823d0b886f692691a3860ae4f695eb32a9f85c8e67392e4e03735e + category: main + optional: false +- name: krb5 + version: 1.20.1 + manager: conda + platform: osx-arm64 + dependencies: + libedit: '>=3.1.20221030,<4.0a0' + openssl: '>=3.0.8,<4.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/krb5-1.20.1-hf3e1bf2_1.conda + hash: + md5: 4bcf072bd6fc82c9f40a4eb3c3c262a4 + sha256: 40df3ea48c42584e23e810febc744238f40e0b54e8bc87cabd8ac774ee45cd58 + category: main + optional: false +- name: ld64 + version: '530' + manager: conda + platform: osx-64 + dependencies: + ld64_osx-64: '530' + url: https://repo.anaconda.com/pkgs/main/osx-64/ld64-530-h20443b4_25.conda + hash: + md5: 3895757499d838ded2bd73e732517438 + sha256: 8f2971c0dca3c94495fbf3d8ef9128702815d47e370d6b1820dcdb8dc0ecdb5d + category: main + optional: false +- name: ld64 + version: '530' + manager: conda + platform: osx-arm64 + dependencies: + ld64_osx-arm64: '530' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/ld64-530-hb29bf3f_25.conda + hash: + md5: b018f4c617edf69ec6b624414e076e59 + sha256: 20ba80ecdb983341d03c0b5ad08ecb3addcd9685f9126e214ffb6e4c0557ebe8 + category: main + optional: false +- name: ld64_osx-64 + version: '530' + manager: conda + platform: osx-64 + dependencies: + ldid: '' + libcxx: '' + libllvm14: '>=14.0.6,<14.1.0a0' + tapi: '>=1000.10.8,<1001.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/ld64_osx-64-530-h70f3046_25.conda + hash: + md5: 92eed179743f39dd2ea82b5206eb7cbc + sha256: 91cb5406e3e3b5298a270e8d19ac2617a257d4a149851e217c9910fd5f0780a7 + category: main + optional: false +- name: ld64_osx-arm64 + version: '530' + manager: conda + platform: osx-arm64 + dependencies: + ldid: '' + libcxx: '' + libllvm14: '>=14.0.6,<14.1.0a0' + tapi: '>=1100.0.11,<1101.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/ld64_osx-arm64-530-h001ce53_25.conda + hash: + md5: bde735b0308fcf683f70cf75c9b0a90c + sha256: 49f31b1cb2262427fd8f12a2cc2d61e67c26d5c7b5632d9229a01a46cd716008 + category: main + optional: false +- name: ld_impl_linux-64 + version: '2.38' + manager: conda + platform: linux-64 + dependencies: {} + url: https://repo.anaconda.com/pkgs/main/linux-64/ld_impl_linux-64-2.38-h1181459_1.conda + hash: + md5: 68eedfd9c06f2b0e6888d8db345b7f5b + sha256: 0c7a6f340f4a9e15cc99b3c7e11f07c7670a9b881161739edd77753e5530fe31 + category: main + optional: false +- name: ldid + version: 2.1.5 + manager: conda + platform: osx-64 + dependencies: {} + url: https://repo.anaconda.com/pkgs/main/osx-64/ldid-2.1.5-hc58f1be_3.conda + hash: + md5: 0b0c968729007025d5b41b60b40c3d8b + sha256: 869bc330784487d3929a916efed5c434598cbe2bd78cf07dd8f677e681cf8b79 + category: main + optional: false +- name: ldid + version: 2.1.5 + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://repo.anaconda.com/pkgs/main/osx-arm64/ldid-2.1.5-h20b2a84_3.conda + hash: + md5: c829b62aa45910a2bf1b8c32b4d83607 + sha256: 0dac62bfa4891658e864ea0bc7401c3ee2476d494f7970d1ff8bc6a3957558b6 + category: main + optional: false +- name: libarchive + version: 3.6.2 + manager: conda + platform: linux-64 + dependencies: + bzip2: '>=1.0.8,<2.0a0' + libgcc-ng: '>=11.2.0' + libxml2: '>=2.10.4,<2.11.0a0' + lz4-c: '>=1.9.4,<1.10.0a0' + openssl: '>=3.0.13,<4.0a0' + xz: '>=5.4.6,<6.0a0' + zlib: '>=1.2.13,<1.3.0a0' + zstd: '>=1.5.2,<1.6.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/libarchive-3.6.2-h6ac8c49_3.conda + hash: + md5: 2501766e63d235170c00d670c76510cb + sha256: 22d5306decdd43d191044e172d9284649da54904225f15e51776ad96be6a6414 + category: main + optional: false +- name: libarchive + version: 3.6.2 + manager: conda + platform: osx-64 + dependencies: + bzip2: '>=1.0.8,<2.0a0' + libiconv: '>=1.16,<2.0a0' + libxml2: '>=2.10.4,<2.11.0a0' + lz4-c: '>=1.9.4,<1.10.0a0' + openssl: 3.* + xz: '>=5.4.6,<6.0a0' + zlib: '>=1.2.13,<1.3.0a0' + zstd: '>=1.5.2,<1.6.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/libarchive-3.6.2-h29ab7a1_3.conda + hash: + md5: b72d76521512812e3466ea62efa2e34a + sha256: 53a5327d489d0cd1b7162287efed129fc116c68d3630f3802eefa12ea1f5f42b + category: main + optional: false +- name: libarchive + version: 3.6.2 + manager: conda + platform: osx-arm64 + dependencies: + bzip2: '>=1.0.8,<2.0a0' + libiconv: '>=1.16,<2.0a0' + libxml2: '>=2.10.4,<2.11.0a0' + lz4-c: '>=1.9.4,<1.10.0a0' + openssl: 3.* + xz: '>=5.4.6,<6.0a0' + zlib: '>=1.2.13,<1.3.0a0' + zstd: '>=1.5.2,<1.6.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/libarchive-3.6.2-h62fee54_3.conda + hash: + md5: cd53764bc411fa534740087c8f568c6a + sha256: 0d71c9d126103375f8c903b4a194f0d28494faca9e78e90d37a4239e90cc7500 + category: main + optional: false +- name: libcurl + version: 8.7.1 + manager: conda + platform: linux-64 + dependencies: + krb5: '>=1.20.1,<1.21.0a0' + libgcc-ng: '>=11.2.0' + libnghttp2: '>=1.57.0,<2.0a0' + libssh2: '>=1.10.0,<2.0a0' + openssl: '>=3.0.13,<4.0a0' + zlib: '>=1.2.13,<1.3.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/libcurl-8.7.1-h251f7ec_0.conda + hash: + md5: 638287212dd4b94422aa38a3647bb25e + sha256: d874ff488bda2719b2ffa79900ed3fbfb2a4d6f20c03b627cb70e17d89fcf57c + category: main + optional: false +- name: libcurl + version: 8.7.1 + manager: conda + platform: osx-64 + dependencies: + krb5: '>=1.20.1,<1.21.0a0' + libnghttp2: '>=1.57.0,<2.0a0' + libssh2: '>=1.10.0,<2.0a0' + openssl: '>=3.0.13,<4.0a0' + zlib: '>=1.2.13,<1.3.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/libcurl-8.7.1-hf20ceda_0.conda + hash: + md5: 56e9019001f19fa7dd41430e7bb86c80 + sha256: f1bc939a87b607eb47aff2a03df432ad55357eea955688c9248a78c400fcdc58 + category: main + optional: false +- name: libcurl + version: 8.7.1 + manager: conda + platform: osx-arm64 + dependencies: + krb5: '>=1.20.1,<1.21.0a0' + libnghttp2: '>=1.57.0,<2.0a0' + libssh2: '>=1.10.0,<2.0a0' + openssl: '>=3.0.13,<4.0a0' + zlib: '>=1.2.13,<1.3.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/libcurl-8.7.1-h3e2b118_0.conda + hash: + md5: f525c150d4d1d31fbd8612871d6f4de6 + sha256: 500eb74d2075b092f12f5f907121408475408f54fd1743bc76dc7bcf24991618 + category: main + optional: false +- name: libcxx + version: 17.0.6 + manager: conda + platform: osx-64 + dependencies: + __osx: '>=10.13' + url: https://conda.anaconda.org/conda-forge/osx-64/libcxx-17.0.6-h88467a6_0.conda + hash: + md5: 0fe355aecb8d24b8bc07c763209adbd9 + sha256: e7b57062c1edfcbd13d2129467c94cbff7f0a988ee75782bf48b1dc0e6300b8b + category: main + optional: false +- name: libcxx + version: 17.0.6 + manager: conda + platform: osx-arm64 + dependencies: + __osx: '>=11.0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-17.0.6-h5f092b4_0.conda + hash: + md5: a96fd5dda8ce56c86a971e0fa02751d0 + sha256: 119d3d9306f537d4c89dc99ed99b94c396d262f0b06f7833243646f68884f2c2 + category: main + optional: false +- name: libedit + version: 3.1.20230828 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=11.2.0' + ncurses: '>=6.4,<7.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/libedit-3.1.20230828-h5eee18b_0.conda + hash: + md5: 850eb5a9d2d7d3c66cce12e84406ca08 + sha256: 73ade0165c148c617287f2d910c6aa4e4162f86cd1993b84a95fa6eb2ba72582 + category: main + optional: false +- name: libedit + version: 3.1.20230828 + manager: conda + platform: osx-64 + dependencies: + ncurses: '>=6.4,<7.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/libedit-3.1.20230828-h6c40b1e_0.conda + hash: + md5: 070b9559ecd59f80047f463320068ed0 + sha256: 49504ca012b49c0892ab5e149d4263e7718afa49c8fd7f0a910ec3dddf7ef1c6 + category: main + optional: false +- name: libedit + version: 3.1.20230828 + manager: conda + platform: osx-arm64 + dependencies: + ncurses: '>=6.4,<7.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/libedit-3.1.20230828-h80987f9_0.conda + hash: + md5: 18a06026af4782b6557d4ff94d1a7177 + sha256: e83fc01d4d34ea465c18d42920d8133fba4149aa2de3d4179a454f26ea72cfc4 + category: main + optional: false +- name: libev + version: '4.33' + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=7.5.0' + url: https://repo.anaconda.com/pkgs/main/linux-64/libev-4.33-h7f8727e_1.conda + hash: + md5: 5065620db4393fb549f30114a33897d1 + sha256: 75f04cf201848d58df127caf9f316f71e1103b28e00b5add9b0c8025e52d7569 + category: main + optional: false +- name: libev + version: '4.33' + manager: conda + platform: osx-64 + dependencies: {} + url: https://repo.anaconda.com/pkgs/main/osx-64/libev-4.33-h9ed2024_1.conda + hash: + md5: ffb0ee08779a6ccb4706b72523712cb7 + sha256: cb6c66c3e947f455d6e704c82bfc53813acd7b7ed36f698ea5c29571b6e482d6 + category: main + optional: false +- name: libev + version: '4.33' + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://repo.anaconda.com/pkgs/main/osx-arm64/libev-4.33-h1a28f6b_1.conda + hash: + md5: 00cac99189c361c3b2cbf506ae6cc718 + sha256: 553d09ddd69a6efb5bcf6cc225ef27c573f5df27199dd03ecbcf006ec844beaa + category: main + optional: false +- name: libffi + version: 3.4.4 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=11.2.0' + libstdcxx-ng: '>=11.2.0' + url: https://repo.anaconda.com/pkgs/main/linux-64/libffi-3.4.4-h6a678d5_1.conda + hash: + md5: 70646cc713f0c43926cfdcfe9b695fe0 + sha256: b0e7fe2e5d498bc5a2c57cf942701bba8f22ec55de55e092ffbffc40b816df88 + category: main + optional: false +- name: libffi + version: 3.4.4 + manager: conda + platform: osx-64 + dependencies: {} + url: https://repo.anaconda.com/pkgs/main/osx-64/libffi-3.4.4-hecd8cb5_1.conda + hash: + md5: eb7f09ada4d95f1a26f483f1009d9286 + sha256: b8b8f0b62fd87118de2b967d042f2269abac54adc4356cba0f417d3119cdd605 + category: main + optional: false +- name: libffi + version: 3.4.4 + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://repo.anaconda.com/pkgs/main/osx-arm64/libffi-3.4.4-hca03da5_1.conda + hash: + md5: 2bec9ee4b1214a3c3e2d1f2e18725daf + sha256: 800216cb554d0beaf970fe7c3efeee7974bb76576c1c5e0ae070c57fca2bba93 + category: main + optional: false +- name: libgcc-ng + version: 13.2.0 + manager: conda + platform: linux-64 + dependencies: + _libgcc_mutex: '0.1' + _openmp_mutex: '>=4.5' + url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-13.2.0-h77fa898_7.conda + hash: + md5: 72ec1b1b04c4d15d4204ece1ecea5978 + sha256: 62af2b89acbe74a21606c8410c276e57309c0a2ab8a9e8639e3c8131c0b60c92 + category: main + optional: false +- name: libglib + version: 2.78.4 + manager: conda + platform: linux-64 + dependencies: + libffi: '>=3.4,<4.0a0' + libgcc-ng: '>=11.2.0' + libiconv: '>=1.16,<2.0a0' + libstdcxx-ng: '>=11.2.0' + pcre2: '>=10.42,<10.43.0a0' + zlib: '>=1.2.13,<1.3.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/libglib-2.78.4-hdc74915_0.conda + hash: + md5: 2f6d27741e931d5b6ba56e1a1312aaf0 + sha256: 0535dbf898ab816d4ca8d1488831f349d1893bd0b2ed7d0c717633b0c649e13f + category: main + optional: false +- name: libgomp + version: 13.2.0 + manager: conda + platform: linux-64 + dependencies: + _libgcc_mutex: '0.1' + url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-13.2.0-h77fa898_7.conda + hash: + md5: abf3fec87c2563697defa759dec3d639 + sha256: 781444fa069d3b50e8ed667b750571cacda785761c7fc2a89ece1ac49693d4ad + category: main + optional: false +- name: libiconv + version: '1.16' + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=11.2.0' + url: https://repo.anaconda.com/pkgs/main/linux-64/libiconv-1.16-h5eee18b_3.conda + hash: + md5: 197b1a0886a31fccab2167340528eebc + sha256: c02a80cfc2cc8e32510f6da469eddf55127aaeb489de6e672011865d3ba42d6e + category: main + optional: false +- name: libiconv + version: '1.16' + manager: conda + platform: osx-64 + dependencies: {} + url: https://repo.anaconda.com/pkgs/main/osx-64/libiconv-1.16-h6c40b1e_3.conda + hash: + md5: b0df346db8404eda86918a20241188e4 + sha256: a9cd1849b122d129554cc22dc5337ba750905f5834850f53efc6a6b3625dac79 + category: main + optional: false +- name: libiconv + version: '1.16' + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://repo.anaconda.com/pkgs/main/osx-arm64/libiconv-1.16-h80987f9_3.conda + hash: + md5: 24d4c203eea2edc73ed37b3521b02ef6 + sha256: d7eb081bd4c24e8c616781f11204c803ef62988528fec33160312776e05e15f4 + category: main + optional: false +- name: liblief + version: 0.12.3 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=11.2.0' + libstdcxx-ng: '>=11.2.0' + url: https://repo.anaconda.com/pkgs/main/linux-64/liblief-0.12.3-h6a678d5_0.conda + hash: + md5: 9996383fc2561614e4d54490aea33f8e + sha256: 35873dd7c288d83b738fd4597cb0ee1466dab75b2e1d43710d540a804da3c42d + category: main + optional: false +- name: liblief + version: 0.12.3 + manager: conda + platform: osx-64 + dependencies: + libcxx: '>=14.0.6' + url: https://repo.anaconda.com/pkgs/main/osx-64/liblief-0.12.3-hcec6c5f_0.conda + hash: + md5: 562b7e4299cff278a924b3f6ddc93f1d + sha256: a84d81377e6e5b30ef91439116d6d85dfdefdc3f102210c07db732b959c4f307 + category: main + optional: false +- name: liblief + version: 0.12.3 + manager: conda + platform: osx-arm64 + dependencies: + libcxx: '>=14.0.6' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/liblief-0.12.3-h313beb8_0.conda + hash: + md5: 9818aa025d7ff60d5dd4a18b379e11ac + sha256: d3eaf52410716dee51be6d78950c5837486c198409cda559951a031edc45d36a + category: main + optional: false +- name: libllvm14 + version: 14.0.6 + manager: conda + platform: osx-64 + dependencies: + libcxx: '>=14' + libffi: '>=3.4,<4.0a0' + zlib: '>=1.2.13,<1.3.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/libllvm14-14.0.6-h91fad77_3.conda + hash: + md5: c5c0a84bb84d5238060c92a5e96bc72b + sha256: fa46133ae516d790f25caeed20fe89f84e92e115b83178124e653c74462f8a0f + category: main + optional: false +- name: libllvm14 + version: 14.0.6 + manager: conda + platform: osx-arm64 + dependencies: + libcxx: '>=14' + libffi: '>=3.4,<4.0a0' + zlib: '>=1.2.13,<1.3.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/libllvm14-14.0.6-h7ec7a93_3.conda + hash: + md5: b34f3de20415528b55733de1d0d1ccf9 + sha256: 7e86f9df156b6ead5faa91072973c10caef050700729039aaf027b2ff442e02b + category: main + optional: false +- name: libmamba + version: 1.5.8 + manager: conda + platform: linux-64 + dependencies: + bzip2: '>=1.0.8,<2.0a0' + fmt: '>=9.1.0,<10.0a0' + libarchive: '>=3.6.2,<3.7.0a0' + libcurl: '>=8.1.1,<9.0a0' + libgcc-ng: '>=11.2.0' + libsolv: '>=0.7.24,<0.8.0a0' + libstdcxx-ng: '>=11.2.0' + openssl: '>=3.0.13,<4.0a0' + reproc: '>=14.2,<15.0a0' + reproc-cpp: '>=14.2,<15.0a0' + yaml-cpp: '>=0.8.0,<0.9.0a0' + zstd: '>=1.5.2,<1.6.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/libmamba-1.5.8-hfe524e5_2.conda + hash: + md5: 296ffa72be5a84823751e437b6e8445d + sha256: c52124c14dddf7ae12340c13689187f9a8119684085a38c564e2a2c217b07f41 + category: main + optional: false +- name: libmamba + version: 1.5.8 + manager: conda + platform: osx-64 + dependencies: + bzip2: '>=1.0.8,<2.0a0' + fmt: '>=9.1.0,<10.0a0' + libarchive: '>=3.6.2,<3.7.0a0' + libcurl: '>=8.1.1,<9.0a0' + libcxx: '>=14.0.6' + libsolv: '>=0.7.24,<0.8.0a0' + openssl: '>=3.0.13,<4.0a0' + reproc: '>=14.2,<15.0a0' + reproc-cpp: '>=14.2,<15.0a0' + yaml-cpp: '>=0.8.0,<0.9.0a0' + zstd: '>=1.5.2,<1.6.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/libmamba-1.5.8-h258a794_2.conda + hash: + md5: 217fe481d16afbf36df365e5a55144bd + sha256: b2ef70b32222634246d02fd7faf30bc9751635597cf29973a2371d15cdb4ccd6 + category: main + optional: false +- name: libmamba + version: 1.5.8 + manager: conda + platform: osx-arm64 + dependencies: + bzip2: '>=1.0.8,<2.0a0' + fmt: '>=9.1.0,<10.0a0' + libarchive: '>=3.6.2,<3.7.0a0' + libcurl: '>=8.1.1,<9.0a0' + libcxx: '>=14.0.6' + libsolv: '>=0.7.24,<0.8.0a0' + openssl: '>=3.0.13,<4.0a0' + reproc: '>=14.2,<15.0a0' + reproc-cpp: '>=14.2,<15.0a0' + yaml-cpp: '>=0.8.0,<0.9.0a0' + zstd: '>=1.5.2,<1.6.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/libmamba-1.5.8-haeffa04_2.conda + hash: + md5: 625cc7f7c630cd6022adfbe68c38ec00 + sha256: 9a9823e9066c1e53fd9b06a98bbc253a18b92dfb47c9e7b0faee4e136cc6bb5a + category: main + optional: false +- name: libmambapy + version: 1.5.8 + manager: conda + platform: linux-64 + dependencies: + fmt: '>=9.1.0,<10.0a0' + libgcc-ng: '>=11.2.0' + libmamba: 1.5.8 + libstdcxx-ng: '>=11.2.0' + openssl: '>=3.0.13,<4.0a0' + pybind11-abi: '4' + python: '>=3.10,<3.11.0a0' + yaml-cpp: '>=0.8.0,<0.9.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/libmambapy-1.5.8-py310h2dafd23_2.conda + hash: + md5: d287ccec316998fb13d2afab70772830 + sha256: cbfc9a802127c3faf77480e3ebd7364dfa2e10b53f30a10d742e1814c063a18c + category: main + optional: false +- name: libmambapy + version: 1.5.8 + manager: conda + platform: osx-64 + dependencies: + fmt: '>=9.1.0,<10.0a0' + libcxx: '>=14.0.6' + libmamba: 1.5.8 + openssl: '>=3.0.13,<4.0a0' + pybind11-abi: '4' + python: '>=3.10,<3.11.0a0' + yaml-cpp: '>=0.8.0,<0.9.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/libmambapy-1.5.8-py310h8c3233a_2.conda + hash: + md5: 0fe91ede8721bc0e94909df728acd94f + sha256: 33f113f4c13e575f423cb9a530b58b5568455d1224cff53f1836b2ec019c7375 + category: main + optional: false +- name: libmambapy + version: 1.5.8 + manager: conda + platform: osx-arm64 + dependencies: + fmt: '>=9.1.0,<10.0a0' + libcxx: '>=14.0.6' + libmamba: 1.5.8 + openssl: '>=3.0.13,<4.0a0' + pybind11-abi: '4' + python: '>=3.10,<3.11.0a0' + yaml-cpp: '>=0.8.0,<0.9.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/libmambapy-1.5.8-py310h1c5506f_2.conda + hash: + md5: 9cb9f4cfc32828a1eaf4ea55835e4222 + sha256: c8541773392c88bab0c73b22d82398b20c239d0f23732f48fcd1a93b7b0b2626 + category: main + optional: false +- name: libnghttp2 + version: 1.57.0 + manager: conda + platform: linux-64 + dependencies: + c-ares: '>=1.7.5' + libev: '>=4.33,<4.34.0a0' + libgcc-ng: '>=11.2.0' + libstdcxx-ng: '>=11.2.0' + openssl: '>=3.0.11,<4.0a0' + zlib: '>=1.2.13,<1.3.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/libnghttp2-1.57.0-h2d74bed_0.conda + hash: + md5: 674871621300f54e7ffcf93e6e341638 + sha256: d13f2f08acbe413da3f37d225c05c888eb7603b8eea6995e01b6813078dfbc8f + category: main + optional: false +- name: libnghttp2 + version: 1.57.0 + manager: conda + platform: osx-64 + dependencies: + c-ares: '>=1.7.5' + libcxx: '>=14.0.6' + libev: '>=4.33,<4.34.0a0' + openssl: '>=3.0.11,<4.0a0' + zlib: '>=1.2.13,<1.3.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/libnghttp2-1.57.0-h9beae6a_0.conda + hash: + md5: a28cf1a5bd4bb0c0886ccf7baeb16a85 + sha256: 0cb98cb5aebe0ffbae5ae2896b5217fec56334b31d5bae411ab94e15bd3059fd + category: main + optional: false +- name: libnghttp2 + version: 1.57.0 + manager: conda + platform: osx-arm64 + dependencies: + c-ares: '>=1.7.5' + libcxx: '>=14.0.6' + libev: '>=4.33,<4.34.0a0' + openssl: '>=3.0.11,<4.0a0' + zlib: '>=1.2.13,<1.3.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/libnghttp2-1.57.0-h62f6fdd_0.conda + hash: + md5: 32eac5d9a166c3cbce9b6dfef765b138 + sha256: 6f26e84b4452251879cf8d12af77833202736d6081eebd5fa8757cfa7eac67aa + category: main + optional: false +- name: libsolv + version: 0.7.24 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=11.2.0' + libstdcxx-ng: '>=11.2.0' + pcre2: '>=10.42,<10.43.0a0' + zlib: '>=1.2.13,<1.3.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/libsolv-0.7.24-he621ea3_1.conda + hash: + md5: c22067963515e7a8d27a5a222a48d870 + sha256: 8f73bec1ef988fcb70ebfad15e13fab534490246051477b90a1240bba2e99413 + category: main + optional: false +- name: libsolv + version: 0.7.24 + manager: conda + platform: osx-64 + dependencies: + libcxx: '>=14.0.6' + pcre2: '>=10.42,<10.43.0a0' + zlib: '>=1.2.13,<1.3.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/libsolv-0.7.24-hfff2838_1.conda + hash: + md5: 04f592a3df223b34e8b7226bc35dc997 + sha256: bec3a0d783e2ce70d42d9ecf46d934d7f2af258e3a9cd92d48d513e566fd63de + category: main + optional: false +- name: libsolv + version: 0.7.24 + manager: conda + platform: osx-arm64 + dependencies: + libcxx: '>=14.0.6' + pcre2: '>=10.42,<10.43.0a0' + zlib: '>=1.2.13,<1.3.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/libsolv-0.7.24-h514c7bf_1.conda + hash: + md5: 3b30e05cbde32cd3b35b98e4504316da + sha256: 40437d83e7195ace388ee1f3c08f436cd47fb04795e3f258da953532df103c61 + category: main + optional: false +- name: libssh2 + version: 1.11.0 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=11.2.0' + openssl: '>=3.0.13,<4.0a0' + zlib: '>=1.2.13,<1.3.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/libssh2-1.11.0-h251f7ec_0.conda + hash: + md5: ce46cf257d73fe85c18c78597196f0d8 + sha256: b4b1558307da733cb097f9581793535a0f70821c412d12904f5a3354c7f6c1d2 + category: main + optional: false +- name: libssh2 + version: 1.11.0 + manager: conda + platform: osx-64 + dependencies: + openssl: '>=3.0.13,<4.0a0' + zlib: '>=1.2.13,<1.3.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/libssh2-1.11.0-hf20ceda_0.conda + hash: + md5: 7f1c08c2391c01b67b7d45b7674a0903 + sha256: b6da5b6c5b41b9a5d7ade6d979631ca15b591bcc070ce1514ecc70225fe0bf1c + category: main + optional: false +- name: libssh2 + version: 1.11.0 + manager: conda + platform: osx-arm64 + dependencies: + openssl: '>=3.0.13,<4.0a0' + zlib: '>=1.2.13,<1.3.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/libssh2-1.11.0-h3e2b118_0.conda + hash: + md5: a2c10e819e80bfd0cf517d140ca08200 + sha256: b80c7f6afa0743749f611ac2feacdd7e239465c046988c5d2b30cb3fa297c2b2 + category: main + optional: false +- name: libstdcxx-ng + version: 13.2.0 + manager: conda + platform: linux-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-13.2.0-hc0a3c3a_7.conda + hash: + md5: 53ebd4c833fa01cb2c6353e99f905406 + sha256: 35f1e08be0a84810c9075f5bd008495ac94e6c5fe306dfe4b34546f11fed850f + category: main + optional: false +- name: libuuid + version: 1.41.5 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=11.2.0' + url: https://repo.anaconda.com/pkgs/main/linux-64/libuuid-1.41.5-h5eee18b_0.conda + hash: + md5: 4a6a2354414c9080327274aa514e5299 + sha256: 2a401aafabac51b7736cfe12d2ab205d29052640ea8183253c9d0a8e7ed0d49a + category: main + optional: false +- name: libxml2 + version: 2.10.4 + manager: conda + platform: linux-64 + dependencies: + icu: '>=73.1,<74.0a0' + libgcc-ng: '>=11.2.0' + xz: '>=5.4.6,<6.0a0' + zlib: '>=1.2.13,<1.3.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/libxml2-2.10.4-hfdd30dd_2.conda + hash: + md5: ff7a0e3b92afb3c99b82c9f0ba8b5670 + sha256: 9df9115eb672eccfd772a7a65bc4de5094b346588bb7e0304f91cd3dd7e28e0b + category: main + optional: false +- name: libxml2 + version: 2.10.4 + manager: conda + platform: osx-64 + dependencies: + icu: '>=73.1,<74.0a0' + libiconv: '>=1.16,<2.0a0' + xz: '>=5.4.6,<6.0a0' + zlib: '>=1.2.13,<1.3.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/libxml2-2.10.4-h45904e2_2.conda + hash: + md5: 5b4c9898956fe820e637aa61355ca679 + sha256: d26a8358e7a0d60e1b1a012860cfbaab794b7682630da37cfca2aea57204ccc0 + category: main + optional: false +- name: libxml2 + version: 2.10.4 + manager: conda + platform: osx-arm64 + dependencies: + icu: '>=73.1,<74.0a0' + libiconv: '>=1.16,<2.0a0' + xz: '>=5.4.6,<6.0a0' + zlib: '>=1.2.13,<1.3.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/libxml2-2.10.4-h0b34f26_2.conda + hash: + md5: 0428f16aefcae5aba7f96a4e60e621f6 + sha256: c89a423717517f3c3087949476e17b010782a2600b36e3213b50e3ffce293aeb + category: main + optional: false +- name: lz4-c + version: 1.9.4 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=11.2.0' + libstdcxx-ng: '>=11.2.0' + url: https://repo.anaconda.com/pkgs/main/linux-64/lz4-c-1.9.4-h6a678d5_1.conda + hash: + md5: 2ee58861f2b92b868ce761abb831819d + sha256: cc19d62a7f2c0af8e1f0e5bf643cf34475a35d5dc82733d679e575daa7b863aa + category: main + optional: false +- name: lz4-c + version: 1.9.4 + manager: conda + platform: osx-64 + dependencies: + libcxx: '>=14.0.6' + url: https://repo.anaconda.com/pkgs/main/osx-64/lz4-c-1.9.4-hcec6c5f_1.conda + hash: + md5: aee0efbb45220e1985533dbff48551f8 + sha256: 1a4e71ee4d9025efacf84fa86f844cfab3177ff67f0cef2c52f3ef363219bb17 + category: main + optional: false +- name: lz4-c + version: 1.9.4 + manager: conda + platform: osx-arm64 + dependencies: + libcxx: '>=14.0.6' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/lz4-c-1.9.4-h313beb8_1.conda + hash: + md5: 82202ff2e94bc301fd9c790556506bb7 + sha256: 34aaf2a9ba8bef897e3684040ecbddbc99be7987ff21fa28c860f33bfac65da5 + category: main + optional: false +- name: markdown-it-py + version: 2.2.0 + manager: conda + platform: linux-64 + dependencies: + mdurl: '>=0.1,<1' + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/markdown-it-py-2.2.0-py310h06a4308_1.conda + hash: + md5: 566428b810cf9c5aaf47636a49fd42b8 + sha256: 520fa24b4dc6019650d49c38705d1533c3ad62e9edcb60ae1d1399a9e72eec24 + category: main + optional: false +- name: markdown-it-py + version: 2.2.0 + manager: conda + platform: osx-64 + dependencies: + mdurl: '>=0.1,<1' + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/markdown-it-py-2.2.0-py310hecd8cb5_1.conda + hash: + md5: 095d282492e8799acf45c34a778127d1 + sha256: 26ee23510344c6c28f39f7ae15c670227064e436c1e9ce862442f54f184802aa + category: main + optional: false +- name: markdown-it-py + version: 2.2.0 + manager: conda + platform: osx-arm64 + dependencies: + mdurl: '>=0.1,<1' + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/markdown-it-py-2.2.0-py310hca03da5_1.conda + hash: + md5: c8163ca2849e7ccc0b8ca3173dfdd028 + sha256: 02386de03e1c36b3529c46941cd1424b7a79dee0b53a907780e9e30615fc3a24 + category: main + optional: false +- name: markupsafe + version: 2.1.3 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=11.2.0' + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/markupsafe-2.1.3-py310h5eee18b_0.conda + hash: + md5: 27865be8802ed7a92b33a0a21c227458 + sha256: 09e967a42e1121502264ed7acc7961c0df119131f498d51492b5c36a6833e6d1 + category: main + optional: false +- name: markupsafe + version: 2.1.3 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/markupsafe-2.1.3-py310h6c40b1e_0.conda + hash: + md5: 8a0d23d08576307e954f1ea271a128b4 + sha256: 9fbf1bea5effb1263ab8c1d080238909c6b035077a88b6460bed32cf0ca937d1 + category: main + optional: false +- name: markupsafe + version: 2.1.3 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/markupsafe-2.1.3-py310h80987f9_0.conda + hash: + md5: b395a0bf22201680ecd718429283e6f6 + sha256: dcb0dbf1008a4eb99d6c3c7a910d48317f47882687d6099ce36aeb290cb8b4d0 + category: main + optional: false +- name: mdurl + version: 0.1.0 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/mdurl-0.1.0-py310h06a4308_0.conda + hash: + md5: 3f1edd5cb1c88f35898cacb0308ac709 + sha256: ec6c4866d8463004450f3dee0853ee1889c31b7ac8928a20eaccefeb0816f2b1 + category: main + optional: false +- name: mdurl + version: 0.1.0 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/mdurl-0.1.0-py310hecd8cb5_0.conda + hash: + md5: 6a9cc78e0c5672a3c43d3c2dcbfcda1e + sha256: 87bdaa4312c82a29e8331bad941bd96a8d8ef92d471cb35b8c9a6d8343d87584 + category: main + optional: false +- name: mdurl + version: 0.1.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/mdurl-0.1.0-py310hca03da5_0.conda + hash: + md5: 73e5db73f1a090f36ea881d02ef6c939 + sha256: d5a253007ceb70872fde918c5446b630c670414fc328c32bad0bc414f2b404d0 + category: main + optional: false +- name: menuinst + version: 2.1.0 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/menuinst-2.1.0-py310h06a4308_0.conda + hash: + md5: edac4fcf9531bd79169bad1f8c2a51a4 + sha256: 26245333aedb82b071e77672114f6d1f5b411505e6542835a7c23baaa366251a + category: main + optional: false +- name: menuinst + version: 2.1.0 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/menuinst-2.1.0-py310hecd8cb5_0.conda + hash: + md5: 2bdd621a207848890e7ff458c0542624 + sha256: 6037bc4501ebaeecb60a9799edc0063f8f6182b2b7e23a3fcb52afad1111f87e + category: main + optional: false +- name: menuinst + version: 2.1.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/menuinst-2.1.0-py310hca03da5_0.conda + hash: + md5: 4ac41de3801164c480e0b1a437b2b5d0 + sha256: d8de6d93efc25256860099a9f616895e674e6ac18266893c4bc6b17c02b642dc + category: main + optional: false +- name: more-itertools + version: 10.1.0 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/more-itertools-10.1.0-py310h06a4308_0.conda + hash: + md5: 570f3be066cae25d36bf110ae4216d28 + sha256: f480bcbdc6184248447afeb5979696c1f4c6274b669aaa6849c073a5acc71b27 + category: main + optional: false +- name: more-itertools + version: 10.1.0 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/more-itertools-10.1.0-py310hecd8cb5_0.conda + hash: + md5: 996aa971878df4f239b365e495e389ba + sha256: 3128fbc3cab2bad44267e656770ded80600768c7cc5cc2aef35ab17c89c46c3b + category: main + optional: false +- name: more-itertools + version: 10.1.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/more-itertools-10.1.0-py310hca03da5_0.conda + hash: + md5: 5f063fb0c4855f92ce8087cf6ebb98e0 + sha256: d1c3163fa69df55f4e0b5a97a2d2622a4abc23d3fc8c5b08723d51675992260a + category: main + optional: false +- name: nbformat + version: 5.9.2 + manager: conda + platform: linux-64 + dependencies: + jsonschema: '>=2.6' + jupyter_core: '' + python: '>=3.10,<3.11.0a0' + python-fastjsonschema: '' + traitlets: '>=5.1' + url: https://repo.anaconda.com/pkgs/main/linux-64/nbformat-5.9.2-py310h06a4308_0.conda + hash: + md5: 512706d0dfb22a2bafc2131bca01f6e8 + sha256: d955273c4147d99453a755990591c3ba5b59fcdc5d90aaf1f6f562ee8103191b + category: main + optional: false +- name: nbformat + version: 5.9.2 + manager: conda + platform: osx-64 + dependencies: + jsonschema: '>=2.6' + jupyter_core: '' + python: '>=3.10,<3.11.0a0' + python-fastjsonschema: '' + traitlets: '>=5.1' + url: https://repo.anaconda.com/pkgs/main/osx-64/nbformat-5.9.2-py310hecd8cb5_0.conda + hash: + md5: d2d953aa127ead662d159546aa15c928 + sha256: 8a0065130fcf0cd055bb361e1c2aaff27898da6b9d9ee4ce3fb6314ef3c54860 + category: main + optional: false +- name: nbformat + version: 5.9.2 + manager: conda + platform: osx-arm64 + dependencies: + jsonschema: '>=2.6' + jupyter_core: '' + python: '>=3.10,<3.11.0a0' + python-fastjsonschema: '' + traitlets: '>=5.1' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/nbformat-5.9.2-py310hca03da5_0.conda + hash: + md5: 885b9bffaeb55587100d0898ab294553 + sha256: 0c3f67069a0af64add2febbb896625f2660d50d2b6917e8bcad764c955b3ae00 + category: main + optional: false +- name: ncurses + version: '6.4' + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=11.2.0' + url: https://repo.anaconda.com/pkgs/main/linux-64/ncurses-6.4-h6a678d5_0.conda + hash: + md5: 5558eec6e2191741a92f832ea826251c + sha256: a3150cb7655d3781b2ff2d8a7f1eea6103dbbd8835adc7429f7377e4886f6129 + category: main + optional: false +- name: ncurses + version: '6.4' + manager: conda + platform: osx-64 + dependencies: {} + url: https://repo.anaconda.com/pkgs/main/osx-64/ncurses-6.4-hcec6c5f_0.conda + hash: + md5: 0214d1ee980e217fabc695f1e40662aa + sha256: 98884cab22ccf031daec9cc9ed6d1b8553f7001f5e2b5429959449d4e4a4ac2e + category: main + optional: false +- name: ncurses + version: '6.4' + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://repo.anaconda.com/pkgs/main/osx-arm64/ncurses-6.4-h313beb8_0.conda + hash: + md5: 08038fd388dbbda4ed8e0206fc8706a7 + sha256: fe2b87be65e21d3cd3b73659e61d670901c3f8b593444dbea3e80a4c4359d7b6 + category: main + optional: false +- name: openssl + version: 3.0.13 + manager: conda + platform: linux-64 + dependencies: + ca-certificates: '' + libgcc-ng: '>=7.5.0' + url: https://repo.anaconda.com/pkgs/main/linux-64/openssl-3.0.13-h7f8727e_2.conda + hash: + md5: 0019453c25f5e72129f99236e60febaa + sha256: eaee8b96001f4dca47719bf44c9b3e60f983d51fb64501d0c52da2e7835d5132 + category: main + optional: false +- name: openssl + version: 3.0.13 + manager: conda + platform: osx-64 + dependencies: + ca-certificates: '' + url: https://repo.anaconda.com/pkgs/main/osx-64/openssl-3.0.13-hca72f7f_2.conda + hash: + md5: 4f840ec6217dff98040ff6be19cf3afb + sha256: daae460575ff82153b8fbd4d02175902ca3a654fd0d8aa6ebb9b642ae602dae3 + category: main + optional: false +- name: openssl + version: 3.0.13 + manager: conda + platform: osx-arm64 + dependencies: + ca-certificates: '' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/openssl-3.0.13-h1a28f6b_2.conda + hash: + md5: 38b928107d33a66f7334e053a6dc7e39 + sha256: 46c1ebacb91fec78eb3249aa015426556de56ae04a6208a734344f0c66911c9c + category: main + optional: false +- name: packaging + version: '23.2' + manager: conda + platform: linux-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/packaging-23.2-py310h06a4308_0.conda + hash: + md5: 1fa2e0dc5d5ffe12ccacb90edf776efa + sha256: d624f46d550abc067d10de83b1de1a9f5873017d687f5ad8d05aa373bf8f39f3 + category: main + optional: false +- name: packaging + version: '23.2' + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/packaging-23.2-py310hecd8cb5_0.conda + hash: + md5: d373b3f4628acf09d2620629bf85bd9d + sha256: 69ad1fffaea87ae60951bb650f926d6d572afd1ef32093db849d6494a2b09b48 + category: main + optional: false +- name: packaging + version: '23.2' + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/packaging-23.2-py310hca03da5_0.conda + hash: + md5: f59afae44850ae36be357552222a40ae + sha256: 5af7e05503352be83668513017e5ea5952c54ef398659ac0ee9465c64627196b + category: main + optional: false +- name: patch + version: 2.7.6 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=7.3.0' + url: https://repo.anaconda.com/pkgs/main/linux-64/patch-2.7.6-h7b6447c_1001.conda + hash: + md5: 5a47ace7ef08447fe6a602ff16129393 + sha256: eadc5b8a783adba6c0d39d2f270b180632f22d4330c93a5700b1bddc01905216 + category: main + optional: false +- name: patch + version: 2.7.6 + manager: conda + platform: osx-64 + dependencies: {} + url: https://repo.anaconda.com/pkgs/main/osx-64/patch-2.7.6-h1de35cc_1001.conda + hash: + md5: 0eee15556ea216f65e8de60c3ea30c02 + sha256: d48a6ad4e515e560c6c168c065c187778c51f8229dfccd10fd624d7e1eba8d5f + category: main + optional: false +- name: patch + version: 2.7.6 + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://repo.anaconda.com/pkgs/main/osx-arm64/patch-2.7.6-h1a28f6b_1001.conda + hash: + md5: 5c2b2c12726bef360f3604d11faa9024 + sha256: 627d2f26a5c6c6274acadba779fbe827196cf9cf19efb1dfd94b25154a190ac6 + category: main + optional: false +- name: patchelf + version: 0.17.2 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=11.2.0' + libstdcxx-ng: '>=11.2.0' + url: https://repo.anaconda.com/pkgs/main/linux-64/patchelf-0.17.2-h6a678d5_0.conda + hash: + md5: 63ad6ea1e47f568a1bdb5edb66734026 + sha256: b9f23d21314cbb1657a8058913d4074c0c1f28bac66573e899085ec820a8200c + category: main + optional: false +- name: pathspec + version: 0.10.3 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/pathspec-0.10.3-py310h06a4308_0.conda + hash: + md5: 801ec405b191788df01b7a49c9a5449c + sha256: 5efc5cdb3a0bf2d653c9ba59454add36879597b179bdd1b05af81876ad240336 + category: main + optional: false +- name: pathspec + version: 0.10.3 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/pathspec-0.10.3-py310hecd8cb5_0.conda + hash: + md5: d5499945fd5c3535b8ec512bc4d96a39 + sha256: 919063b4315d49fd60186fd129c34842eec7a82f3cd73a54e8f936f626e118e3 + category: main + optional: false +- name: pathspec + version: 0.10.3 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/pathspec-0.10.3-py310hca03da5_0.conda + hash: + md5: fc80a7513fa4fb877f412d577acdf540 + sha256: cc4c2b92712e82f8e02a5fd1e69580158f40935b08cd292e95109b3078c9b829 + category: main + optional: false +- name: pcre2 + version: '10.42' + manager: conda + platform: linux-64 + dependencies: + bzip2: '>=1.0.8,<2.0a0' + libgcc-ng: '>=11.2.0' + zlib: '>=1.2.13,<1.3.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/pcre2-10.42-hebb0a14_1.conda + hash: + md5: 727e15c3cfa02b032da4eb0c1123e977 + sha256: 6d006d7d607600585a4879553b6eaf4c97d6cfe10a9830b72654668c44a171ea + category: main + optional: false +- name: pcre2 + version: '10.42' + manager: conda + platform: osx-64 + dependencies: + bzip2: '>=1.0.8,<2.0a0' + zlib: '>=1.2.13,<1.3.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/pcre2-10.42-h9b97e30_1.conda + hash: + md5: e442f1a16b2462e40494a9aa74f14506 + sha256: 0bf9b073a2e2640d59d7fa7153a5b7d930afa73413cc84c6834685fb74303b46 + category: main + optional: false +- name: pcre2 + version: '10.42' + manager: conda + platform: osx-arm64 + dependencies: + bzip2: '>=1.0.8,<2.0a0' + zlib: '>=1.2.13,<1.3.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/pcre2-10.42-hb066dcc_1.conda + hash: + md5: fc667c2c468a34dbbc51af0e49df31b2 + sha256: ebf32fa9638e8f502398577975ab8aaa2645609fff9501e928dc332dcab79767 + category: main + optional: false +- name: pexpect + version: 4.8.0 + manager: conda + platform: linux-64 + dependencies: + ptyprocess: '>=0.5' + python: '' + url: https://repo.anaconda.com/pkgs/main/noarch/pexpect-4.8.0-pyhd3eb1b0_3.conda + hash: + md5: 765b2562d6cdd14bb6d44fc170a04331 + sha256: fb4b14fdb5e57becda5b8b88b453626ce12edb49fc8cec88ddaea40b52277494 + category: main + optional: false +- name: pexpect + version: 4.8.0 + manager: conda + platform: osx-64 + dependencies: + python: '' + ptyprocess: '>=0.5' + url: https://repo.anaconda.com/pkgs/main/noarch/pexpect-4.8.0-pyhd3eb1b0_3.conda + hash: + md5: 765b2562d6cdd14bb6d44fc170a04331 + sha256: fb4b14fdb5e57becda5b8b88b453626ce12edb49fc8cec88ddaea40b52277494 + category: main + optional: false +- name: pexpect + version: 4.8.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '' + ptyprocess: '>=0.5' + url: https://repo.anaconda.com/pkgs/main/noarch/pexpect-4.8.0-pyhd3eb1b0_3.conda + hash: + md5: 765b2562d6cdd14bb6d44fc170a04331 + sha256: fb4b14fdb5e57becda5b8b88b453626ce12edb49fc8cec88ddaea40b52277494 + category: main + optional: false +- name: pkginfo + version: 1.10.0 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/pkginfo-1.10.0-py310h06a4308_0.conda + hash: + md5: 3fc00e519cd198b274621510293765ef + sha256: 7f323f0d15a58754b765e63aaa070ccd5ea5f1cd48b6987f13d371adcdd5c8e3 + category: main + optional: false +- name: pkginfo + version: 1.10.0 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/pkginfo-1.10.0-py310hecd8cb5_0.conda + hash: + md5: 3da8b8301f69a6eff5142b972e8b5f5e + sha256: f0b9b7c0ee1c3c45fe674a459803b5d8edce314fe18b3db4ce4afd3ed6961bea + category: main + optional: false +- name: pkginfo + version: 1.10.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/pkginfo-1.10.0-py310hca03da5_0.conda + hash: + md5: f3d9f6efc49289b2be945c725d97e2cc + sha256: 2d153d2ecb71fe341ac1ce57f9af45325486fc356e40e93e41bb0ba0a113cf00 + category: main + optional: false +- name: platformdirs + version: 3.10.0 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/platformdirs-3.10.0-py310h06a4308_0.conda + hash: + md5: e75261f061adb0fcb519c8b842789132 + sha256: ff615f4b426f74304dadd47c92da03c15043ce19655a893ca5c2b2f76b3ce8e4 + category: main + optional: false +- name: platformdirs + version: 3.10.0 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/platformdirs-3.10.0-py310hecd8cb5_0.conda + hash: + md5: 3eeaeaadc516bb660d04d0c6cd777084 + sha256: 4187986198591e11eb8a777723ebb6a013d6f200338395299725e297af062258 + category: main + optional: false +- name: platformdirs + version: 3.10.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/platformdirs-3.10.0-py310hca03da5_0.conda + hash: + md5: d7a8e443e188ac37e89517f9822beb20 + sha256: 8840a4cef0daeb7fa070f769ec94e573505f77cdf19d42f9914e1170b8926726 + category: main + optional: false +- name: pluggy + version: 1.0.0 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/pluggy-1.0.0-py310h06a4308_1.conda + hash: + md5: 2b96380162a84640a34ede74691658db + sha256: 353c9b72a6dfea69ac868916bdaa361bc423f29eb74027bf582976ef39ec4168 + category: main + optional: false +- name: pluggy + version: 1.0.0 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/pluggy-1.0.0-py310hecd8cb5_1.conda + hash: + md5: 8d13788afaa467ef41d32794d88102fb + sha256: a11cd9d2e541dbd506dce7f7234b37bfe6cd7af4eb8f7eee1efee19af73649ed + category: main + optional: false +- name: pluggy + version: 1.0.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/pluggy-1.0.0-py310hca03da5_1.conda + hash: + md5: 270707cabcf23c3ef23ad7c75318ad26 + sha256: 0314edfd37c0f3f4a81f1a80f056c85305564c9366e8904e0fa7bc025586b8fc + category: main + optional: false +- name: psutil + version: 5.9.0 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=11.2.0' + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/psutil-5.9.0-py310h5eee18b_0.conda + hash: + md5: b48c5c1b4198a08f61426140a29254fc + sha256: 7d1dfdf5a62eda9ae0e32ce0de3cbc43b94020ef0ea99cc55d7caa0568a1dc01 + category: main + optional: false +- name: psutil + version: 5.9.0 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/psutil-5.9.0-py310hca72f7f_0.conda + hash: + md5: 5b385168693efaf4273a551d76a3aff6 + sha256: 0b401b56666c2e942c9b52de1179b2dd4634824d2870d1ed5a667533b907bfb1 + category: main + optional: false +- name: psutil + version: 5.9.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/psutil-5.9.0-py310h1a28f6b_0.conda + hash: + md5: fe8d73d10ec566148a80be4a77396fd2 + sha256: 4760352d11a421f69f96ac7b8c23c02c7db29c35149866478589be329b7bdff8 + category: main + optional: false +- name: ptyprocess + version: 0.7.0 + manager: conda + platform: linux-64 + dependencies: + python: '' + url: https://repo.anaconda.com/pkgs/main/noarch/ptyprocess-0.7.0-pyhd3eb1b0_2.conda + hash: + md5: 7441d2827d4bfbcc1fa308875a146246 + sha256: 664254ab6de7f14d4077bdaeceda2bf0144fd841e257d07bb70427fadf08c588 + category: main + optional: false +- name: ptyprocess + version: 0.7.0 + manager: conda + platform: osx-64 + dependencies: + python: '' + url: https://repo.anaconda.com/pkgs/main/noarch/ptyprocess-0.7.0-pyhd3eb1b0_2.conda + hash: + md5: 7441d2827d4bfbcc1fa308875a146246 + sha256: 664254ab6de7f14d4077bdaeceda2bf0144fd841e257d07bb70427fadf08c588 + category: main + optional: false +- name: ptyprocess + version: 0.7.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '' + url: https://repo.anaconda.com/pkgs/main/noarch/ptyprocess-0.7.0-pyhd3eb1b0_2.conda + hash: + md5: 7441d2827d4bfbcc1fa308875a146246 + sha256: 664254ab6de7f14d4077bdaeceda2bf0144fd841e257d07bb70427fadf08c588 + category: main + optional: false +- name: py-lief + version: 0.12.3 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=11.2.0' + liblief: 0.12.3 + libstdcxx-ng: '>=11.2.0' + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/py-lief-0.12.3-py310h6a678d5_0.conda + hash: + md5: deb974cab7b8521457561e115ac21bfc + sha256: 3c759fd9e602d447984ea03d1963a4a64fbfab28bdc7a0c74ef263a83eff57fc + category: main + optional: false +- name: py-lief + version: 0.12.3 + manager: conda + platform: osx-64 + dependencies: + libcxx: '>=14.0.6' + liblief: 0.12.3 + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/py-lief-0.12.3-py310hcec6c5f_0.conda + hash: + md5: be31f902933d77053a00a68694bda71e + sha256: 733d754d5938c3e12008ca57bdb740e48515216a3af7bf004aadbdb04b3b0157 + category: main + optional: false +- name: py-lief + version: 0.12.3 + manager: conda + platform: osx-arm64 + dependencies: + libcxx: '>=14.0.6' + liblief: 0.12.3 + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/py-lief-0.12.3-py310h313beb8_0.conda + hash: + md5: b3bfa622256b92ee703c4c0b4062f3aa + sha256: 75b1db4f3f671c934f4e70e57978375f9aa66ecfb2fa71380084afcec8260990 + category: main + optional: false +- name: pybind11-abi + version: '4' + manager: conda + platform: linux-64 + dependencies: {} + url: https://repo.anaconda.com/pkgs/main/noarch/pybind11-abi-4-hd3eb1b0_1.conda + hash: + md5: 4e440592a9fb70c880b74621aee6c967 + sha256: efcd78fff9f39d8d0dc5db753ba1b523f997768f9688ed6d6dcf8e9951484cc1 + category: main + optional: false +- name: pybind11-abi + version: '4' + manager: conda + platform: osx-64 + dependencies: {} + url: https://repo.anaconda.com/pkgs/main/noarch/pybind11-abi-4-hd3eb1b0_1.conda + hash: + md5: 4e440592a9fb70c880b74621aee6c967 + sha256: efcd78fff9f39d8d0dc5db753ba1b523f997768f9688ed6d6dcf8e9951484cc1 + category: main + optional: false +- name: pybind11-abi + version: '4' + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://repo.anaconda.com/pkgs/main/noarch/pybind11-abi-4-hd3eb1b0_1.conda + hash: + md5: 4e440592a9fb70c880b74621aee6c967 + sha256: efcd78fff9f39d8d0dc5db753ba1b523f997768f9688ed6d6dcf8e9951484cc1 + category: main + optional: false +- name: pycosat + version: 0.6.6 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=11.2.0' + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/pycosat-0.6.6-py310h5eee18b_1.conda + hash: + md5: 83149d42f3f8e0e30fc8938e4ddd446d + sha256: da24a46f5b83027f9596b86c66d4c58dc0a67b239b0d3cc3a180416665fcddf9 + category: main + optional: false +- name: pycosat + version: 0.6.6 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/pycosat-0.6.6-py310h6c40b1e_1.conda + hash: + md5: 686c1b7dcbaf07617036e2867da6edd9 + sha256: f8916cc87eaf58835a9609cc624c0316a28ad749dcd727f9ff8f9d3ac1c6e48d + category: main + optional: false +- name: pycosat + version: 0.6.6 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/pycosat-0.6.6-py310h80987f9_1.conda + hash: + md5: ed6c1c525d824c069257ff9a26db72a4 + sha256: 312c01b03559a5812fc563a64760dcd97ae1a54822c92e1693711c176c08485a + category: main + optional: false +- name: pycparser + version: '2.21' + manager: conda + platform: linux-64 + dependencies: + python: '>=3.6' + url: https://repo.anaconda.com/pkgs/main/noarch/pycparser-2.21-pyhd3eb1b0_0.conda + hash: + md5: 135a72ff2a31150a3a3ff0b1edd41ca9 + sha256: 4405b5aeff26863972c82e8b54d09f88cd084f70e01e4343107b2676ffbeab57 + category: main + optional: false +- name: pycparser + version: '2.21' + manager: conda + platform: osx-64 + dependencies: + python: '>=3.6' + url: https://repo.anaconda.com/pkgs/main/noarch/pycparser-2.21-pyhd3eb1b0_0.conda + hash: + md5: 135a72ff2a31150a3a3ff0b1edd41ca9 + sha256: 4405b5aeff26863972c82e8b54d09f88cd084f70e01e4343107b2676ffbeab57 + category: main + optional: false +- name: pycparser + version: '2.21' + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.6' + url: https://repo.anaconda.com/pkgs/main/noarch/pycparser-2.21-pyhd3eb1b0_0.conda + hash: + md5: 135a72ff2a31150a3a3ff0b1edd41ca9 + sha256: 4405b5aeff26863972c82e8b54d09f88cd084f70e01e4343107b2676ffbeab57 + category: main + optional: false +- name: pygments + version: 2.15.1 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/pygments-2.15.1-py310h06a4308_1.conda + hash: + md5: fa74688099132ad3b477dff90d2ad426 + sha256: 9c34729230f10797e7c6830922e061ec53ba282901de46163859fcd0258db9cc + category: main + optional: false +- name: pygments + version: 2.15.1 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/pygments-2.15.1-py310hecd8cb5_1.conda + hash: + md5: 068db46b9733f6ace89b1616ae24a3c2 + sha256: dae5b359438537629c0ef54594e3b515980405957af7df8cab9b7559f30cedec + category: main + optional: false +- name: pygments + version: 2.15.1 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/pygments-2.15.1-py310hca03da5_1.conda + hash: + md5: 02104c060b181cf140ea7009be8c8935 + sha256: 3f62a648198aa853e502dfb39de8313996d67d15dd8b9a0b4b749311e721fc17 + category: main + optional: false +- name: pysocks + version: 1.7.1 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/pysocks-1.7.1-py310h06a4308_0.conda + hash: + md5: b0753810caadcd4a550c833f87fb3866 + sha256: 4ae4c13a181087485244bfdfe3cee8d3e69ca53d87f3f3fe30f2874b833359b3 + category: main + optional: false +- name: pysocks + version: 1.7.1 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/pysocks-1.7.1-py310hecd8cb5_0.conda + hash: + md5: 6d67ccfa5dad048a0c44e3d795ff9612 + sha256: 10976b525af47bb1da6a120a92cd272be0d3788382b33a977697cbc687d0d272 + category: main + optional: false +- name: pysocks + version: 1.7.1 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/pysocks-1.7.1-py310hca03da5_0.conda + hash: + md5: d1cd56dea9b4db9c13fa8bb08601ff47 + sha256: 7808d81dad690ea93fa9dab062fbd0572d3c8c9fa7adf4f9dfd5c94292486b5f + category: main + optional: false +- name: python + version: 3.10.14 + manager: conda + platform: linux-64 + dependencies: + bzip2: '>=1.0.8,<2.0a0' + ld_impl_linux-64: '>=2.35.1' + libffi: '>=3.4,<4.0a0' + libgcc-ng: '>=11.2.0' + libuuid: '>=1.41.5,<2.0a0' + ncurses: '>=6.4,<7.0a0' + openssl: '>=3.0.13,<4.0a0' + readline: '>=8.0,<9.0a0' + sqlite: '>=3.45.3,<4.0a0' + tk: '>=8.6.14,<8.7.0a0' + tzdata: '' + xz: '>=5.4.6,<6.0a0' + zlib: '>=1.2.13,<1.3.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/python-3.10.14-h955ad1f_1.conda + hash: + md5: 4f8cd8904cbb89236e053f00a75bc971 + sha256: 3a11076e968a59d06306001b2fc51a9fd562428c454880c9335ccd0861149f8a + category: main + optional: false +- name: python + version: 3.10.14 + manager: conda + platform: osx-64 + dependencies: + bzip2: '>=1.0.8,<2.0a0' + libffi: '>=3.4,<4.0a0' + ncurses: '>=6.4,<7.0a0' + openssl: '>=3.0.13,<4.0a0' + readline: '>=8.0,<9.0a0' + sqlite: '>=3.45.3,<4.0a0' + tk: '>=8.6.14,<8.7.0a0' + tzdata: '' + xz: '>=5.4.6,<6.0a0' + zlib: '>=1.2.13,<1.3.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/python-3.10.14-h5ee71fb_1.conda + hash: + md5: f5c86e7c6378808e632f0b49bd17ec17 + sha256: a9881cfd0121feb29e53028725e436a31e2bfd701f059383e52df6c8d9b7944f + category: main + optional: false +- name: python + version: 3.10.14 + manager: conda + platform: osx-arm64 + dependencies: + bzip2: '>=1.0.8,<2.0a0' + libffi: '>=3.4,<4.0a0' + ncurses: '>=6.4,<7.0a0' + openssl: '>=3.0.13,<4.0a0' + readline: '>=8.1.2,<9.0a0' + sqlite: '>=3.45.3,<4.0a0' + tk: '>=8.6.14,<8.7.0a0' + tzdata: '' + xz: '>=5.4.6,<6.0a0' + zlib: '>=1.2.13,<1.3.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/python-3.10.14-hb885b13_1.conda + hash: + md5: e588c2babb9f2bbfe336b1fc6239efd2 + sha256: 818e45d7409870f5bc4e1c7fe75ab4b7b66e4a069ec908b493646446d1d706c6 + category: main + optional: false +- name: python-dateutil + version: 2.9.0post0 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.10,<3.11.0a0' + six: '>=1.5' + url: https://repo.anaconda.com/pkgs/main/linux-64/python-dateutil-2.9.0post0-py310h06a4308_2.conda + hash: + md5: 004cb2d4a6c2ad5f0f512816947a6989 + sha256: af55bf515515be2c52839971d4fff0deee7b1c10cd6bfc0820a8f5eb81bb1258 + category: main + optional: false +- name: python-dateutil + version: 2.9.0post0 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + six: '>=1.5' + url: https://repo.anaconda.com/pkgs/main/osx-64/python-dateutil-2.9.0post0-py310hecd8cb5_2.conda + hash: + md5: b32d3cecb652ced30cceda21593a27ac + sha256: cf4c062dea71d5f6a2b22322191494f484796d500101e3034b9fed0509868ae1 + category: main + optional: false +- name: python-dateutil + version: 2.9.0post0 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.10,<3.11.0a0' + six: '>=1.5' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/python-dateutil-2.9.0post0-py310hca03da5_2.conda + hash: + md5: eccc2e1f9b616eb1a1b93dd8a3864d62 + sha256: 528d565bc4531ceaf708ccc2f1115ad96b8bbf4f02646fe71bfbda7c97368a54 + category: main + optional: false +- name: python-fastjsonschema + version: 2.16.2 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/python-fastjsonschema-2.16.2-py310h06a4308_0.conda + hash: + md5: 747b43bf00c8f43d747e052c8e0c6be8 + sha256: 880d013dbc49a59080388275e84299201aef91ac0079b6b75f3c2dc143b70a1d + category: main + optional: false +- name: python-fastjsonschema + version: 2.16.2 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/python-fastjsonschema-2.16.2-py310hecd8cb5_0.conda + hash: + md5: b419e67ea1a5ee3ffaa9306d8df6f66a + sha256: 71d7f6d849115d4ef57dc78f55ca5db36c47df7cc05d9d55bdcd064bc5256e6e + category: main + optional: false +- name: python-fastjsonschema + version: 2.16.2 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/python-fastjsonschema-2.16.2-py310hca03da5_0.conda + hash: + md5: 70d5db9481d95286a170b6ef099949ed + sha256: 074dae8587f84038a5bd10cd37d389b663a812aa0e2115a106e6a6aa757cc3b9 + category: main + optional: false +- name: python-libarchive-c + version: '2.9' + manager: conda + platform: linux-64 + dependencies: + libarchive: '' + python: '' + url: https://repo.anaconda.com/pkgs/main/noarch/python-libarchive-c-2.9-pyhd3eb1b0_1.conda + hash: + md5: 4b33c603892dbf54546afc1bc0122a56 + sha256: 2d613babca6e61265a16f183fec6fa97bb7e5be23139077c7efe2c730bf7bcb3 + category: main + optional: false +- name: python-libarchive-c + version: '2.9' + manager: conda + platform: osx-64 + dependencies: + python: '' + libarchive: '' + url: https://repo.anaconda.com/pkgs/main/noarch/python-libarchive-c-2.9-pyhd3eb1b0_1.conda + hash: + md5: 4b33c603892dbf54546afc1bc0122a56 + sha256: 2d613babca6e61265a16f183fec6fa97bb7e5be23139077c7efe2c730bf7bcb3 + category: main + optional: false +- name: python-libarchive-c + version: '2.9' + manager: conda + platform: osx-arm64 + dependencies: + python: '' + libarchive: '' + url: https://repo.anaconda.com/pkgs/main/noarch/python-libarchive-c-2.9-pyhd3eb1b0_1.conda + hash: + md5: 4b33c603892dbf54546afc1bc0122a56 + sha256: 2d613babca6e61265a16f183fec6fa97bb7e5be23139077c7efe2c730bf7bcb3 + category: main + optional: false +- name: pytz + version: '2024.1' + manager: conda + platform: linux-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/pytz-2024.1-py310h06a4308_0.conda + hash: + md5: afa7054a6953af1313cdbcaad46318c6 + sha256: a6c9eb49791d8893982b01d2be374b30686c85a2d7d1b7551b6006794d242e36 + category: main + optional: false +- name: pytz + version: '2024.1' + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/pytz-2024.1-py310hecd8cb5_0.conda + hash: + md5: fb8fef2e76387f002fccccceabfbfa9a + sha256: 806f5d8cbca314267d2e4919f7ae51016ba4a0877224b6ee1ade774a6229b350 + category: main + optional: false +- name: pytz + version: '2024.1' + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/pytz-2024.1-py310hca03da5_0.conda + hash: + md5: 8bc41df682dbf08983bf277b4ce891c3 + sha256: f9afb327cba05e26d7d8f4857eac15926f7eec5750994f49c7fa1c88bff80d3c + category: main + optional: false +- name: pyyaml + version: 6.0.1 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=11.2.0' + python: '>=3.10,<3.11.0a0' + yaml: '>=0.2.5,<0.3.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/pyyaml-6.0.1-py310h5eee18b_0.conda + hash: + md5: f4b712ce86fc6982bbe772d8c9308f6f + sha256: ac5e6f9bd2f4a1b8d2732c8db1e6e42c77a6068d570e246e1fbb6fb1f580bc8f + category: main + optional: false +- name: pyyaml + version: 6.0.1 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + yaml: '>=0.2.5,<0.3.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/pyyaml-6.0.1-py310h6c40b1e_0.conda + hash: + md5: 62874d433f2ce6bbb9ddec170071d286 + sha256: 69cd77e6aec9574df371611a35e17612f8b3d7f6fe442f6bf8584af1655baa2e + category: main + optional: false +- name: pyyaml + version: 6.0.1 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.10,<3.11.0a0' + yaml: '>=0.2.5,<0.3.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/pyyaml-6.0.1-py310h80987f9_0.conda + hash: + md5: 25a0983395499a5ccc6154f753246989 + sha256: f1200234873ee39831724306140291eb198af2b2a0b7b70033afde15143fdec7 + category: main + optional: false +- name: readline + version: '8.2' + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=11.2.0' + ncurses: '>=6.3,<7.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/readline-8.2-h5eee18b_0.conda + hash: + md5: be42180685cce6e6b0329201d9f48efb + sha256: 3bf83c138bf0843b2fdacc5fe6b0956813b11107540d0233c148b97682e894fb + category: main + optional: false +- name: readline + version: '8.2' + manager: conda + platform: osx-64 + dependencies: + ncurses: '>=6.3,<7.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/readline-8.2-hca72f7f_0.conda + hash: + md5: 971667436260e523f6f7355fdfa238bf + sha256: d141d36dc1b8b4484dae738b5cd50bd2c6b85dabd6c606d3a93b7d5b5a4b28b6 + category: main + optional: false +- name: readline + version: '8.2' + manager: conda + platform: osx-arm64 + dependencies: + ncurses: '>=6.3,<7.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/readline-8.2-h1a28f6b_0.conda + hash: + md5: 8e3d8eb62e32065d41fad9a83a901254 + sha256: 0399187fd09fc52bfac1b67b3cdef33faa76a75213ff932d9fcb079238dd8584 + category: main + optional: false +- name: referencing + version: 0.30.2 + manager: conda + platform: linux-64 + dependencies: + attrs: '>=22.2.0' + python: '>=3.10,<3.11.0a0' + rpds-py: '>=0.7.0' + url: https://repo.anaconda.com/pkgs/main/linux-64/referencing-0.30.2-py310h06a4308_0.conda + hash: + md5: b1ba1ff819562e8608cfe45b77cd6494 + sha256: 8974294ff981de1c8c1bdce18ef2e757d4e6f088c312800699a9ae0ccb83f0dc + category: main + optional: false +- name: referencing + version: 0.30.2 + manager: conda + platform: osx-64 + dependencies: + attrs: '>=22.2.0' + python: '>=3.10,<3.11.0a0' + rpds-py: '>=0.7.0' + url: https://repo.anaconda.com/pkgs/main/osx-64/referencing-0.30.2-py310hecd8cb5_0.conda + hash: + md5: d6f26769fba8e03fda01f108c09e746a + sha256: e222a5549991d135d527657f2924170566cd965bbef7fa4a321ba9bb1302f79b + category: main + optional: false +- name: referencing + version: 0.30.2 + manager: conda + platform: osx-arm64 + dependencies: + attrs: '>=22.2.0' + python: '>=3.10,<3.11.0a0' + rpds-py: '>=0.7.0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/referencing-0.30.2-py310hca03da5_0.conda + hash: + md5: cd14d6a434fc251fdcdf829ffe2a4565 + sha256: 6ee7f1020328d3cc1034f1411be4d92947c3c8909ddb39dfc8f482fd290ed321 + category: main + optional: false +- name: reproc + version: 14.2.4 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=11.2.0' + url: https://repo.anaconda.com/pkgs/main/linux-64/reproc-14.2.4-h6a678d5_2.conda + hash: + md5: 3c6dbc6c60b3897222d79359343e90fa + sha256: 3c9233dc26c1e4264966c5b95ab7cb80748153ae1c3de688a503d9f84c888210 + category: main + optional: false +- name: reproc + version: 14.2.4 + manager: conda + platform: osx-64 + dependencies: {} + url: https://repo.anaconda.com/pkgs/main/osx-64/reproc-14.2.4-hcec6c5f_2.conda + hash: + md5: 35f92f3e31e6049facbb0ef9e498baf3 + sha256: 2ce2bfe04114359285d91d71fc2977d79bab03e7aa3f3edee627db8585613e61 + category: main + optional: false +- name: reproc + version: 14.2.4 + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://repo.anaconda.com/pkgs/main/osx-arm64/reproc-14.2.4-h313beb8_2.conda + hash: + md5: 91a2f6f75e6c6614f43ddc8ac2b3e0aa + sha256: c762e27a07ece0e9977ae96f454ed40c4bef396d9f0c0fe3e7fb8059945b6d4d + category: main + optional: false +- name: reproc-cpp + version: 14.2.4 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=11.2.0' + libstdcxx-ng: '>=11.2.0' + reproc: 14.2.4 + url: https://repo.anaconda.com/pkgs/main/linux-64/reproc-cpp-14.2.4-h6a678d5_2.conda + hash: + md5: b03aa4903158279f003e7032ab9f5601 + sha256: 7211f85590295c8dc29622fe02514f081a3a25dcc2dafcc741365ddb5aedee95 + category: main + optional: false +- name: reproc-cpp + version: 14.2.4 + manager: conda + platform: osx-64 + dependencies: + libcxx: '>=14.0.6' + reproc: 14.2.4 + url: https://repo.anaconda.com/pkgs/main/osx-64/reproc-cpp-14.2.4-hcec6c5f_2.conda + hash: + md5: 610f054b862d7794c8a7b0e0b26b6966 + sha256: 89f62afe606d6d73a295f8f74c8df0d80015e92dde888632bc1a6133967aa7ba + category: main + optional: false +- name: reproc-cpp + version: 14.2.4 + manager: conda + platform: osx-arm64 + dependencies: + libcxx: '>=14.0.6' + reproc: 14.2.4 + url: https://repo.anaconda.com/pkgs/main/osx-arm64/reproc-cpp-14.2.4-h313beb8_2.conda + hash: + md5: dde005914879790985acd3af3bf84e65 + sha256: 86078c391e11c380a58e83825cd9f3e0498e0866e0aa2b77ba8fe6cce49e5274 + category: main + optional: false +- name: requests + version: 2.32.2 + manager: conda + platform: linux-64 + dependencies: + certifi: '>=2017.4.17' + charset-normalizer: '>=2,<4' + idna: '>=2.5,<4' + python: '>=3.10,<3.11.0a0' + urllib3: '>=1.21.1,<3' + url: https://repo.anaconda.com/pkgs/main/linux-64/requests-2.32.2-py310h06a4308_0.conda + hash: + md5: 62a6504abfa7d0649f798302b2c51b23 + sha256: 9ef59ff3389dcd9d757aceb4f986125aa89c40e1642e045286d7537e74ba9ae4 + category: main + optional: false +- name: requests + version: 2.32.2 + manager: conda + platform: osx-64 + dependencies: + certifi: '>=2017.4.17' + charset-normalizer: '>=2,<4' + idna: '>=2.5,<4' + python: '>=3.10,<3.11.0a0' + urllib3: '>=1.21.1,<3' + url: https://repo.anaconda.com/pkgs/main/osx-64/requests-2.32.2-py310hecd8cb5_0.conda + hash: + md5: b7eb6ee50795b3a7e9d583fb5e9eec3c + sha256: 0d34ed7c948a2ba8434b8c362d4ede24015169fb667fd5939d771451df94f8ba + category: main + optional: false +- name: requests + version: 2.32.2 + manager: conda + platform: osx-arm64 + dependencies: + certifi: '>=2017.4.17' + charset-normalizer: '>=2,<4' + idna: '>=2.5,<4' + python: '>=3.10,<3.11.0a0' + urllib3: '>=1.21.1,<3' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/requests-2.32.2-py310hca03da5_0.conda + hash: + md5: b4aff82fa1213d044d3f078de95ae675 + sha256: 9c978fb807779a4f4d45cea10f55e50e9f2ec7adfa0ebd2fafc420a36085077d + category: main + optional: false +- name: requests-toolbelt + version: 1.0.0 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.10,<3.11.0a0' + requests: '>=2.0.1,<3.0.0' + url: https://repo.anaconda.com/pkgs/main/linux-64/requests-toolbelt-1.0.0-py310h06a4308_0.conda + hash: + md5: 6b22af4315da9735f14d572a37886c09 + sha256: 8349cc34d1bfe29875f0a24cb553dfeb9028dcd01c32ad3013b7d7d8d18ca8f3 + category: main + optional: false +- name: requests-toolbelt + version: 1.0.0 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + requests: '>=2.0.1,<3.0.0' + url: https://repo.anaconda.com/pkgs/main/osx-64/requests-toolbelt-1.0.0-py310hecd8cb5_0.conda + hash: + md5: 861e394233ef461689601c989c0d7d0f + sha256: ff502500e4313db7f4a01f657a8fe6d1ba4fdb7aa544411c1c871d3147a0a006 + category: main + optional: false +- name: requests-toolbelt + version: 1.0.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.10,<3.11.0a0' + requests: '>=2.0.1,<3.0.0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/requests-toolbelt-1.0.0-py310hca03da5_0.conda + hash: + md5: 087417f65caa4d6141a5dab18e5710c5 + sha256: 1023d7603b30f41a3f26f0f005cc902222cab7110ec326d1bc0f4a808a973925 + category: main + optional: false +- name: rich + version: 13.3.5 + manager: conda + platform: linux-64 + dependencies: + markdown-it-py: '>=2.2.0,<3.0.0' + pygments: '>=2.13.0,<3.0.0' + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/rich-13.3.5-py310h06a4308_0.conda + hash: + md5: f3e5833e1225e45ca1da25e9b94f71a5 + sha256: 911aeca5dff5054a42d5c584bc2bae98b7b205585a24dde197e289a78ce0dff1 + category: main + optional: false +- name: rich + version: 13.3.5 + manager: conda + platform: osx-64 + dependencies: + markdown-it-py: '>=2.2.0,<3.0.0' + pygments: '>=2.13.0,<3.0.0' + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/rich-13.3.5-py310hecd8cb5_0.conda + hash: + md5: 1cce4dd4ebbd12818682d8e6cfff9896 + sha256: d3e6afe5c801cc34fbe20f8e9c621130394682e05212b33d2bdc6591e3a73c6d + category: main + optional: false +- name: rich + version: 13.3.5 + manager: conda + platform: osx-arm64 + dependencies: + markdown-it-py: '>=2.2.0,<3.0.0' + pygments: '>=2.13.0,<3.0.0' + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/rich-13.3.5-py310hca03da5_0.conda + hash: + md5: 48cc835c2eccfc486e1952d0e2ca4d5f + sha256: f01ad7874fee0c632a751796e4d3e63b8ff37cd02761d49b4f2ccdd3b9efaca8 + category: main + optional: false +- name: rpds-py + version: 0.10.6 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=11.2.0' + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/rpds-py-0.10.6-py310hb02cf49_0.conda + hash: + md5: aa9c04f35218916696b861161a93295f + sha256: 49ec3fd910dded20a912137576a2cdd45365cdefbcd7dee51d6bcd5d9ae4aff3 + category: main + optional: false +- name: rpds-py + version: 0.10.6 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/rpds-py-0.10.6-py310hf2ad997_0.conda + hash: + md5: 30d23bcf39f4ffade911c3ffa67d414e + sha256: dc2b21757011008f74f3730f1b3466edd2a143a9954200a44e235c471ea69630 + category: main + optional: false +- name: rpds-py + version: 0.10.6 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/rpds-py-0.10.6-py310hf0e4da2_0.conda + hash: + md5: c7b2a634397f55ad0c6fe1d6a9ac5279 + sha256: 972379095c7b7da1694ec2861b18c8d30289ef8f28e67b2f2038152608c2c5db + category: main + optional: false +- name: ruamel.yaml + version: 0.17.21 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=11.2.0' + python: '>=3.10,<3.11.0a0' + ruamel.yaml.clib: '>=0.2.6' + url: https://repo.anaconda.com/pkgs/main/linux-64/ruamel.yaml-0.17.21-py310h5eee18b_0.conda + hash: + md5: 0a54e321078e043b72b6f68d10472b62 + sha256: 8f0df5b62f89a90d664976df8b9b27280c5ea3b4e1605cce46fe2968fa41c7be + category: main + optional: false +- name: ruamel.yaml + version: 0.17.21 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + ruamel.yaml.clib: '>=0.2.6' + url: https://repo.anaconda.com/pkgs/main/osx-64/ruamel.yaml-0.17.21-py310hca72f7f_0.conda + hash: + md5: 009e0d9c1c8d7194ba9e3cef5bd0faf6 + sha256: 022a5e2a530067a1faec9f167b11589165d25a7a02908ed61e5e4dfe82fee671 + category: main + optional: false +- name: ruamel.yaml + version: 0.17.21 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.10,<3.11.0a0' + ruamel.yaml.clib: '>=0.2.6' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/ruamel.yaml-0.17.21-py310h1a28f6b_0.conda + hash: + md5: 590ebc6f7480f6237e4912d83b6a7800 + sha256: 383da4dca4c2d7eced8988b81cd346b097d1ce97a578c6e159eb30704d09b28d + category: main + optional: false +- name: ruamel.yaml.clib + version: 0.2.6 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=11.2.0' + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/ruamel.yaml.clib-0.2.6-py310h5eee18b_1.conda + hash: + md5: 49a45b52b0edcddab287912fc9cf5304 + sha256: 568f3fc62d9ea7eb1919be02d1bd5fc962c6209dc4f8eb395f7fd2481e63d5a8 + category: main + optional: false +- name: ruamel.yaml.clib + version: 0.2.6 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/ruamel.yaml.clib-0.2.6-py310hca72f7f_1.conda + hash: + md5: b3b83f693ee753a6e537e1fba71cc43c + sha256: ffcc196529c97a03d7d6516f94b14e41a452e8ac5b6ad3efa7d7590dce5e94fb + category: main + optional: false +- name: ruamel.yaml.clib + version: 0.2.6 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/ruamel.yaml.clib-0.2.6-py310h1a28f6b_1.conda + hash: + md5: 497c52ced51bca86f087cb119b809fa1 + sha256: e6ce05c6b76da2257a9bcf09e8de331048cd9f4975767844b73c83c7bce33bc7 + category: main + optional: false +- name: secretstorage + version: 3.3.1 + manager: conda + platform: linux-64 + dependencies: + cryptography: '>=2.0' + dbus: '>=1.13.18,<2.0a0' + jeepney: '>=0.6' + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/secretstorage-3.3.1-py310h06a4308_1.conda + hash: + md5: c2180530067e077ecaff4d488fa3e0dc + sha256: 177b225e726a54fc9d791be63d4afe0913fc526693d71aa57c7c388e604b6790 + category: main + optional: false +- name: setuptools + version: 69.5.1 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/setuptools-69.5.1-py310h06a4308_0.conda + hash: + md5: 9c45f2ef44ecfacd42d8bdce7f6998f4 + sha256: 155906964591787bda81dc45144c3daf06224aa78cafb505371a0cdf76c035e5 + category: main + optional: false +- name: setuptools + version: 69.5.1 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/setuptools-69.5.1-py310hecd8cb5_0.conda + hash: + md5: 8208509990b49466ffc7260ab9103b71 + sha256: 8e8d22b395e667358026e4f286a2e5158d7102530366993a461ab1c7289e9675 + category: main + optional: false +- name: setuptools + version: 69.5.1 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/setuptools-69.5.1-py310hca03da5_0.conda + hash: + md5: d1ab9b222048ab4563a121f800d5f403 + sha256: 8fa062cf18794489d6db719b5e61241d40b7af38a9b05583abac11781ae286df + category: main + optional: false +- name: setuptools-scm + version: 8.1.0 + manager: conda + platform: linux-64 + dependencies: + packaging: '>=20.0' + python: '>=3.8' + setuptools: '>=45' + tomli: '>=1.0.0' + typing-extensions: '' + url: https://conda.anaconda.org/conda-forge/noarch/setuptools-scm-8.1.0-pyhd8ed1ab_0.conda + hash: + md5: ba9f7f0ec4f2a18de3e7bce67c4a431e + sha256: 3f7b45c90eaa1c9e7ef974d3995a98a37f7672b40e002455baf0fce256e7f202 + category: main + optional: false +- name: setuptools-scm + version: 8.1.0 + manager: conda + platform: osx-64 + dependencies: + typing-extensions: '' + python: '>=3.8' + packaging: '>=20.0' + tomli: '>=1.0.0' + setuptools: '>=45' + url: https://conda.anaconda.org/conda-forge/noarch/setuptools-scm-8.1.0-pyhd8ed1ab_0.conda + hash: + md5: ba9f7f0ec4f2a18de3e7bce67c4a431e + sha256: 3f7b45c90eaa1c9e7ef974d3995a98a37f7672b40e002455baf0fce256e7f202 + category: main + optional: false +- name: setuptools-scm + version: 8.1.0 + manager: conda + platform: osx-arm64 + dependencies: + typing-extensions: '' + python: '>=3.8' + packaging: '>=20.0' + tomli: '>=1.0.0' + setuptools: '>=45' + url: https://conda.anaconda.org/conda-forge/noarch/setuptools-scm-8.1.0-pyhd8ed1ab_0.conda + hash: + md5: ba9f7f0ec4f2a18de3e7bce67c4a431e + sha256: 3f7b45c90eaa1c9e7ef974d3995a98a37f7672b40e002455baf0fce256e7f202 + category: main + optional: false +- name: shellingham + version: 1.5.0 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/shellingham-1.5.0-py310h06a4308_0.conda + hash: + md5: bc1ee3249086c74f8e57dad73557005a + sha256: 81a36ebc4f92d3b93a21babc38d84f825a0493abd21a232bc429809cf74b0f2e + category: main + optional: false +- name: shellingham + version: 1.5.0 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/shellingham-1.5.0-py310hecd8cb5_0.conda + hash: + md5: b13a1f9d141dbf2e459535ffab354c30 + sha256: 0f9603f70cbc64578a0d5fad1b8f219d49906ebc5abf67be3ef59d3761959a40 + category: main + optional: false +- name: shellingham + version: 1.5.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/shellingham-1.5.0-py310hca03da5_0.conda + hash: + md5: b56c55ca1a033d081ea160c2a5936804 + sha256: 62c321eb0b77bdfa02215d5103f61dd584eb4c01d8a2a546820f06be729a405b + category: main + optional: false +- name: six + version: 1.16.0 + manager: conda + platform: linux-64 + dependencies: + python: '' + url: https://repo.anaconda.com/pkgs/main/noarch/six-1.16.0-pyhd3eb1b0_1.conda + hash: + md5: 34586824d411d36af2fa40e799c172d0 + sha256: 71c97b4ddc3d19ed41bfa1a2d40f620f96b4d46f097dc48ab115b36640f7df0a + category: main + optional: false +- name: six + version: 1.16.0 + manager: conda + platform: osx-64 + dependencies: + python: '' + url: https://repo.anaconda.com/pkgs/main/noarch/six-1.16.0-pyhd3eb1b0_1.conda + hash: + md5: 34586824d411d36af2fa40e799c172d0 + sha256: 71c97b4ddc3d19ed41bfa1a2d40f620f96b4d46f097dc48ab115b36640f7df0a + category: main + optional: false +- name: six + version: 1.16.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '' + url: https://repo.anaconda.com/pkgs/main/noarch/six-1.16.0-pyhd3eb1b0_1.conda + hash: + md5: 34586824d411d36af2fa40e799c172d0 + sha256: 71c97b4ddc3d19ed41bfa1a2d40f620f96b4d46f097dc48ab115b36640f7df0a + category: main + optional: false +- name: sniffio + version: 1.3.0 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/sniffio-1.3.0-py310h06a4308_0.conda + hash: + md5: 57a56b93cd6fcda1b4c62545f34e4e08 + sha256: 426ff95abfe75f118ca1b2d08758506d5934c9d7f57200a4e549b16cb7c13b70 + category: main + optional: false +- name: sniffio + version: 1.3.0 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/sniffio-1.3.0-py310hecd8cb5_0.conda + hash: + md5: 32784b26d7bd32d879e902bb93f09cc6 + sha256: a12213004f4fe5b88fcb30151f6f669f13e040a3dca40dd010e1b311ac18af2f + category: main + optional: false +- name: sniffio + version: 1.3.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/sniffio-1.3.0-py310hca03da5_0.conda + hash: + md5: 62516d0538f15c8ec9073656f21d1cce + sha256: 784b4e55828fa38327319d1982f31eb53e91f2e84a86fb5b169311f28f845e1d + category: main + optional: false +- name: soupsieve + version: '2.5' + manager: conda + platform: linux-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/soupsieve-2.5-py310h06a4308_0.conda + hash: + md5: 3c548d3f16f4d02da970812eade65790 + sha256: ae93e7e389608c52260ca9efb2445570ce2a821f0ef89cb47ef109ede0dcb593 + category: main + optional: false +- name: soupsieve + version: '2.5' + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/soupsieve-2.5-py310hecd8cb5_0.conda + hash: + md5: b24cf4fb11c68cabc0164d8c6fc6d294 + sha256: de8aa29f6cb426f54d1fe253f123046b85e10a04487f1d309a48b0357ee1eed1 + category: main + optional: false +- name: soupsieve + version: '2.5' + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/soupsieve-2.5-py310hca03da5_0.conda + hash: + md5: f8748c4c7dc685013ca5c87d78538325 + sha256: 991677c56b374caf6c6fb300acfb166a4ce4ce270c0d980948aa7b7e38815c51 + category: main + optional: false +- name: sqlite + version: 3.45.3 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=11.2.0' + ncurses: '>=6.4,<7.0a0' + readline: '>=8.0,<9.0a0' + zlib: '>=1.2.13,<2.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/sqlite-3.45.3-h5eee18b_0.conda + hash: + md5: acf93d6aceb74d6110e20b44cc45939e + sha256: 74b61ac1a7df6777b759680047b9d67ba8ac1a921f56de42e09c99b5cc2f778a + category: main + optional: false +- name: sqlite + version: 3.45.3 + manager: conda + platform: osx-64 + dependencies: + ncurses: '>=6.4,<7.0a0' + readline: '>=8.0,<9.0a0' + zlib: '>=1.2.13,<2.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/sqlite-3.45.3-h6c40b1e_0.conda + hash: + md5: 2edf909b937b3aad48322c9cb2e8f1a0 + sha256: 46fe0c9f52bed450d7769cc1dfe684e26434e2b84b3b42cdf5d7535af64399a4 + category: main + optional: false +- name: sqlite + version: 3.45.3 + manager: conda + platform: osx-arm64 + dependencies: + ncurses: '>=6.4,<7.0a0' + readline: '>=8.1.2,<9.0a0' + zlib: '>=1.2.13,<2.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/sqlite-3.45.3-h80987f9_0.conda + hash: + md5: b81acdca67ae414177b550758d2d77a6 + sha256: 247a94c1f825ce386aeb27f2d40521a0e8b24155ce2112ee5435e0bbb43db03c + category: main + optional: false +- name: tapi + version: 1000.10.8 + manager: conda + platform: osx-64 + dependencies: + libcxx: '>=*' + url: https://repo.anaconda.com/pkgs/main/osx-64/tapi-1000.10.8-ha1b3eb9_0.conda + hash: + md5: 6a9adcb1b6f98bc0770140adba114d02 + sha256: 257ea5dbbbf4fdf04a12b314e08654cca1cf1bf314c75e78769330bdccc0c816 + category: main + optional: false +- name: tapi + version: 1100.0.11 + manager: conda + platform: osx-arm64 + dependencies: + libcxx: '>=12.0.0.a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/tapi-1100.0.11-h8754e6a_1.conda + hash: + md5: 048a1cb55ac5aedb2ac4c84e194f4f2e + sha256: 57c8ce868b28770afe46d9c0a051babeddb15b6d28d32c8c65880d3d4b49dcd5 + category: main + optional: false +- name: tk + version: 8.6.14 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=11.2.0' + zlib: '>=1.2.13,<1.3.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/tk-8.6.14-h39e8969_0.conda + hash: + md5: 78dbc5e3c69143ebc037fc5d5b22e597 + sha256: a390949ede5d6ff36a67e87c742099e5468f2fc0f33109fb3e0f39a3dcd4251e + category: main + optional: false +- name: tk + version: 8.6.14 + manager: conda + platform: osx-64 + dependencies: + zlib: '>=1.2.13,<1.3.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/tk-8.6.14-h4d00af3_0.conda + hash: + md5: a2c03940c2ae54614301ec82e6a98d75 + sha256: f1580c0ab59537e4e0efcc6c91ced6ba3abc6225c2f8f575a2f514ae98202238 + category: main + optional: false +- name: tk + version: 8.6.14 + manager: conda + platform: osx-arm64 + dependencies: + zlib: '>=1.2.13,<1.3.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/tk-8.6.14-h6ba3021_0.conda + hash: + md5: 9e668a25312fe740947fa53fd078145e + sha256: 7099df0dd85631be2cfd05d365fe95a6089ad0f13a42bb0b154e92b52c491e29 + category: main + optional: false +- name: tomli + version: 2.0.1 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/tomli-2.0.1-py310h06a4308_0.conda + hash: + md5: 16e032c58fc284838f0e0b42f03d5a1d + sha256: 6b5e4ba8b657f7a9f7b4b2092e7cbe200c1b738612424ca1a083821a047cadce + category: main + optional: false +- name: tomli + version: 2.0.1 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/tomli-2.0.1-py310hecd8cb5_0.conda + hash: + md5: d78e6caf14039fecacf67bcfa4542253 + sha256: bdf0caade8bb2e7f068e339625dfc7973c3b1f2e4350af2bd2bce737de6039a6 + category: main + optional: false +- name: tomli + version: 2.0.1 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/tomli-2.0.1-py310hca03da5_0.conda + hash: + md5: 37e9afe6a28f7de7d809472e56e8ee0a + sha256: c5d42f3c407306293e5b1e8c572e927de5a6de4d7a86d79872da521974fd7e43 + category: main + optional: false +- name: tomli-w + version: 1.0.0 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.7' + url: https://repo.anaconda.com/pkgs/main/noarch/tomli-w-1.0.0-pyhd3eb1b0_0.conda + hash: + md5: cf95e059a708484fd176e031aa6218e6 + sha256: 09b204f83cbc04dfc818e04905ea01a7486d959532d80462aac633c8ff61b28a + category: main + optional: false +- name: tomli-w + version: 1.0.0 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.7' + url: https://repo.anaconda.com/pkgs/main/noarch/tomli-w-1.0.0-pyhd3eb1b0_0.conda + hash: + md5: cf95e059a708484fd176e031aa6218e6 + sha256: 09b204f83cbc04dfc818e04905ea01a7486d959532d80462aac633c8ff61b28a + category: main + optional: false +- name: tomli-w + version: 1.0.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.7' + url: https://repo.anaconda.com/pkgs/main/noarch/tomli-w-1.0.0-pyhd3eb1b0_0.conda + hash: + md5: cf95e059a708484fd176e031aa6218e6 + sha256: 09b204f83cbc04dfc818e04905ea01a7486d959532d80462aac633c8ff61b28a + category: main + optional: false +- name: tomlkit + version: 0.11.1 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/tomlkit-0.11.1-py310h06a4308_0.conda + hash: + md5: 57817e6c50d597a40051c405d7dd7296 + sha256: 9a3ce729c6597adaed98a83387124c6faa2ca763c7fef1cfd852055407a725aa + category: main + optional: false +- name: tomlkit + version: 0.11.1 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/tomlkit-0.11.1-py310hecd8cb5_0.conda + hash: + md5: 1f89ba89d6337fc81c708894fe361fd6 + sha256: bed06e57075d0588c4b07fc001f6348de105d31908c3d9aa2cf8727a6e8a49f5 + category: main + optional: false +- name: tomlkit + version: 0.11.1 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/tomlkit-0.11.1-py310hca03da5_0.conda + hash: + md5: 0cd85d80626ff2b1e80c21890b77ba47 + sha256: 75e7f2dd17f097efd56f57204d95dc02ca8d6df8d051f70b741dea64f6f1ee06 + category: main + optional: false +- name: tqdm + version: 4.66.4 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/tqdm-4.66.4-py310h2f386ee_0.conda + hash: + md5: 84ad762831e4f948c956a970a1339102 + sha256: 3a77aa315fc5fc8ab943afaace1e7bcf2f2bb8504845d5162f4a6ae8eb240daf + category: main + optional: false +- name: tqdm + version: 4.66.4 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/tqdm-4.66.4-py310h20db666_0.conda + hash: + md5: 3eb7c34de52c8dba7167a99d0d45ce1f + sha256: a12072f69bc894da0769d133d00db9efee79fe0cf12779393749666313a9350f + category: main + optional: false +- name: tqdm + version: 4.66.4 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/tqdm-4.66.4-py310h33ce5c2_0.conda + hash: + md5: a083727d9d1e39217704dbba27bd9f9b + sha256: fc67f4b5bebcc6ab756efafde91fe43786019f7d03c86ca559c5b513a67f372c + category: main + optional: false +- name: traitlets + version: 5.7.1 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/traitlets-5.7.1-py310h06a4308_0.conda + hash: + md5: 7a907e6f93750c37969651f6101a241e + sha256: 0e8840d04b642f0049b962b29a85dc7a42e6b4d1aee4f1791378e5879d75e46a + category: main + optional: false +- name: traitlets + version: 5.7.1 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/traitlets-5.7.1-py310hecd8cb5_0.conda + hash: + md5: 6d4c7dce883e7a0c25e75cbdd5f81833 + sha256: 82fe8a6a11aa9e51aa201210b8fe2e44164da14316668c3d06efbd92709a6ff8 + category: main + optional: false +- name: traitlets + version: 5.7.1 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/traitlets-5.7.1-py310hca03da5_0.conda + hash: + md5: 5128604eb5f664821264d6685aaaa79c + sha256: 537270dd7a56509e0b3a850dc41d8e2d45d4a3b5fa38a6d87bde09358c96534e + category: main + optional: false +- name: trove-classifiers + version: 2023.10.18 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/trove-classifiers-2023.10.18-py310h06a4308_0.conda + hash: + md5: 157b135e8e5d175f2c458c6d285aef2c + sha256: a7d217def280452754d725767775710e4cfda131263e65bf52d1450cac106a35 + category: main + optional: false +- name: trove-classifiers + version: 2023.10.18 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/trove-classifiers-2023.10.18-py310hecd8cb5_0.conda + hash: + md5: 87b6ba394478ea9f5f9857581c2cea51 + sha256: e6c1b9b0137aed1ee0a2277318c0477919cc0c8a0f75a39736ba022a937a4b8f + category: main + optional: false +- name: trove-classifiers + version: 2023.10.18 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/trove-classifiers-2023.10.18-py310hca03da5_0.conda + hash: + md5: ba9349b84faa096b6649ef8b5901285a + sha256: 7917160931867aae795087fe8a69da634b4811dd05715fea99321fafcb5cdbe1 + category: main + optional: false +- name: truststore + version: 0.8.0 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/truststore-0.8.0-py310h06a4308_0.conda + hash: + md5: 2ea1b21eda18b85fc82644ec459ac009 + sha256: 4f1a06a38e260a1c6a0b934c3b8740caf7a781e52c814e0f0dbe550fac858d6f + category: main + optional: false +- name: truststore + version: 0.8.0 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/truststore-0.8.0-py310hecd8cb5_0.conda + hash: + md5: 7a76dacf755fe5acf966689f084900b2 + sha256: 05eae523fd2154d93ee3d0a90e536bc25389e966cb67ce848454d641f4846902 + category: main + optional: false +- name: truststore + version: 0.8.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/truststore-0.8.0-py310hca03da5_0.conda + hash: + md5: 94e3ffea338e7de884bc51d427cc90d2 + sha256: ca794198f33f48754fc16b44396712bcc1e51b78721760186b6d2ebbb628b47d + category: main + optional: false +- name: typing-extensions + version: 4.11.0 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.10,<3.11.0a0' + typing_extensions: 4.11.0 + url: https://repo.anaconda.com/pkgs/main/linux-64/typing-extensions-4.11.0-py310h06a4308_0.conda + hash: + md5: 7ace455c2678216f0b14b0d2dba08538 + sha256: a2e742a5364b7cb83636b21883f0c1232ebcd32070e91ddaa71b5cf71bb929da + category: main + optional: false +- name: typing-extensions + version: 4.11.0 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + typing_extensions: 4.11.0 + url: https://repo.anaconda.com/pkgs/main/osx-64/typing-extensions-4.11.0-py310hecd8cb5_0.conda + hash: + md5: fe1295ae241f2fd3d0bcb93d2c3296f0 + sha256: a16ef11fb81ea9d6057f7e57d5ca42b8580b2f4ddf501b3a3de10256e4b865b5 + category: main + optional: false +- name: typing-extensions + version: 4.11.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.10,<3.11.0a0' + typing_extensions: 4.11.0 + url: https://repo.anaconda.com/pkgs/main/osx-arm64/typing-extensions-4.11.0-py310hca03da5_0.conda + hash: + md5: 6ddc0562dceae9168e15c960615ace1c + sha256: 638f4032abd7f239a00415548e2358c1a08ca03708dd93697511e58cd31b7220 + category: main + optional: false +- name: typing_extensions + version: 4.11.0 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/typing_extensions-4.11.0-py310h06a4308_0.conda + hash: + md5: 565c12e3184d8aec560855a609ff546c + sha256: 4fdfc00b3e5fef6df6698f7901c54ff17e19a1a3721d4b801fa3774eed459fde + category: main + optional: false +- name: typing_extensions + version: 4.11.0 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/typing_extensions-4.11.0-py310hecd8cb5_0.conda + hash: + md5: c8c1ae237b9ee8562372b7b0e2c52dee + sha256: b4a2e0e101662f62b7aad0911ab1433531015652d8e78475b2b6e15073075dfe + category: main + optional: false +- name: typing_extensions + version: 4.11.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/typing_extensions-4.11.0-py310hca03da5_0.conda + hash: + md5: c31b34d7add31ef90620217a1e2e844e + sha256: 0e3473c4b013563c59e8a4a5f80a32df50c48ef8d3af5a374f6450bd148886c8 + category: main + optional: false +- name: tzdata + version: 2024a + manager: conda + platform: linux-64 + dependencies: {} + url: https://repo.anaconda.com/pkgs/main/noarch/tzdata-2024a-h04d1e81_0.conda + hash: + md5: 452af53adae0a5b06eb5d05c707b2f25 + sha256: ca9dbf30f1614a4eea02c7929d0988c237dd9e39e546d3546ba80186d2038619 + category: main + optional: false +- name: tzdata + version: 2024a + manager: conda + platform: osx-64 + dependencies: {} + url: https://repo.anaconda.com/pkgs/main/noarch/tzdata-2024a-h04d1e81_0.conda + hash: + md5: 452af53adae0a5b06eb5d05c707b2f25 + sha256: ca9dbf30f1614a4eea02c7929d0988c237dd9e39e546d3546ba80186d2038619 + category: main + optional: false +- name: tzdata + version: 2024a + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://repo.anaconda.com/pkgs/main/noarch/tzdata-2024a-h04d1e81_0.conda + hash: + md5: 452af53adae0a5b06eb5d05c707b2f25 + sha256: ca9dbf30f1614a4eea02c7929d0988c237dd9e39e546d3546ba80186d2038619 + category: main + optional: false +- name: urllib3 + version: 2.2.1 + manager: conda + platform: linux-64 + dependencies: + brotli-python: '>=1.0.9' + pysocks: '>=1.5.6,<2.0,!=1.5.7' + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/urllib3-2.2.1-py310h06a4308_0.conda + hash: + md5: 32d4848201b4c01e619fda2589db573c + sha256: f5c2d688cdcc5793149b6a699265797c086d27e8b6f3e0171b08b49ae8fec8d3 + category: main + optional: false +- name: urllib3 + version: 2.2.1 + manager: conda + platform: osx-64 + dependencies: + brotli-python: '>=1.0.9' + pysocks: '>=1.5.6,<2.0,!=1.5.7' + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/urllib3-2.2.1-py310hecd8cb5_0.conda + hash: + md5: 6cb22e10707cb0c7dec518ecb3a67bf1 + sha256: 887687bae9a3b7a397aa8b930102a3d98c016e8928b5f9333b2ef57309177ba4 + category: main + optional: false +- name: urllib3 + version: 2.2.1 + manager: conda + platform: osx-arm64 + dependencies: + brotli-python: '>=1.0.9' + pysocks: '>=1.5.6,<2.0,!=1.5.7' + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/urllib3-2.2.1-py310hca03da5_0.conda + hash: + md5: 551d6e7f64b4121d3deb379c5186f9bf + sha256: 702ace0a656982b280685ce50b2fa8ff36e3c977f484d6d6341d851e5ffafa97 + category: main + optional: false +- name: userpath + version: 1.7.0 + manager: conda + platform: linux-64 + dependencies: + click: '' + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/userpath-1.7.0-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 5bf074c9253a3bf914becfc50757406f + sha256: c8cbddd625340e1b00b53bafabc764526ee85f7ddb91018424bab0eea057796d + category: main + optional: false +- name: userpath + version: 1.7.0 + manager: conda + platform: osx-64 + dependencies: + click: '' + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/userpath-1.7.0-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 5bf074c9253a3bf914becfc50757406f + sha256: c8cbddd625340e1b00b53bafabc764526ee85f7ddb91018424bab0eea057796d + category: main + optional: false +- name: userpath + version: 1.7.0 + manager: conda + platform: osx-arm64 + dependencies: + click: '' + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/userpath-1.7.0-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 5bf074c9253a3bf914becfc50757406f + sha256: c8cbddd625340e1b00b53bafabc764526ee85f7ddb91018424bab0eea057796d + category: main + optional: false +- name: uv + version: 0.2.5 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/uv-0.2.5-h0ea3d13_0.conda + hash: + md5: 4e4270a72feafce93c4376d4099c8b43 + sha256: 46dc6efb4fd9595f74e09f44bf91d66ebbf6c6318e86acb9e4988a75eade0973 + category: main + optional: false +- name: uv + version: 0.2.5 + manager: conda + platform: osx-64 + dependencies: + __osx: '>=10.13' + libcxx: '>=16' + url: https://conda.anaconda.org/conda-forge/osx-64/uv-0.2.5-h4e38c46_0.conda + hash: + md5: 4953ba35c34975d67840015493e2065b + sha256: 999e1c2e3fab8de847de6ab1c46b032c723d605f46cba2901612ba0134841753 + category: main + optional: false +- name: uv + version: 0.2.5 + manager: conda + platform: osx-arm64 + dependencies: + __osx: '>=11.0' + libcxx: '>=16' + url: https://conda.anaconda.org/conda-forge/osx-arm64/uv-0.2.5-hc069d6b_0.conda + hash: + md5: 17a64e1cf819f21f06afc893c77c5c44 + sha256: ef0a7601eaf7632196aaa6e9df7837474312add68e74bb85eb1ecee6f04b004b + category: main + optional: false +- name: virtualenv + version: 20.26.1 + manager: conda + platform: linux-64 + dependencies: + distlib: <1,>=0.3.7 + filelock: <4,>=3.12.2 + platformdirs: <5,>=3.9.1 + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/virtualenv-20.26.1-py310h06a4308_0.conda + hash: + md5: b1557ef5ec8d627cd08b69e9a1b355ae + sha256: f3b2c279eae60531a5938f2932a5e9d018d85d1e5b681212bb4b275570ef79cf + category: main + optional: false +- name: virtualenv + version: 20.26.1 + manager: conda + platform: osx-64 + dependencies: + distlib: <1,>=0.3.7 + filelock: <4,>=3.12.2 + platformdirs: <5,>=3.9.1 + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/virtualenv-20.26.1-py310hecd8cb5_0.conda + hash: + md5: 7a175526277cdfe4e49aa2da8326b48c + sha256: 6508f440f889dae5dcc37f13bb9a7946c9b82b9f718a13d6f89e25e23c7510dc + category: main + optional: false +- name: virtualenv + version: 20.26.1 + manager: conda + platform: osx-arm64 + dependencies: + distlib: <1,>=0.3.7 + filelock: <4,>=3.12.2 + platformdirs: <5,>=3.9.1 + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/virtualenv-20.26.1-py310hca03da5_0.conda + hash: + md5: e18f071db8a62969d9b5669d40553c44 + sha256: b578862a71cc66b53354f1e99e43d65604b223dff75a7669dbffcae77e46b712 + category: main + optional: false +- name: xz + version: 5.4.6 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=11.2.0' + url: https://repo.anaconda.com/pkgs/main/linux-64/xz-5.4.6-h5eee18b_1.conda + hash: + md5: 1562802f843297ee776a50b9329597ed + sha256: 506f68a24d196b40306dbdea2fcf61a86cb786e966dbb3b00b5af33913ca7e14 + category: main + optional: false +- name: xz + version: 5.4.6 + manager: conda + platform: osx-64 + dependencies: {} + url: https://repo.anaconda.com/pkgs/main/osx-64/xz-5.4.6-h6c40b1e_1.conda + hash: + md5: b40d69768d28133d8be1843def4f82f5 + sha256: b7a7d5da7b4c2eb2248bc5633be160ac629b4dd448db2afc4920f3afc57d970f + category: main + optional: false +- name: xz + version: 5.4.6 + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://repo.anaconda.com/pkgs/main/osx-arm64/xz-5.4.6-h80987f9_1.conda + hash: + md5: 054c438a7814dc516a1bb61787050945 + sha256: 199f0cba11ca263e08c8b8d642f49051b37b098e9ca084bf15fa58d185119625 + category: main + optional: false +- name: yaml + version: 0.2.5 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=7.3.0' + url: https://repo.anaconda.com/pkgs/main/linux-64/yaml-0.2.5-h7b6447c_0.conda + hash: + md5: 39fdbf4db769e494ffb06d95680c83d8 + sha256: e22753e19432d606139f7a604757839d265dff93345226ba0732676526870e28 + category: main + optional: false +- name: yaml + version: 0.2.5 + manager: conda + platform: osx-64 + dependencies: {} + url: https://repo.anaconda.com/pkgs/main/osx-64/yaml-0.2.5-haf1e3a3_0.conda + hash: + md5: 73628ed86f99adf6a0cb81dd20e426cd + sha256: 6bffb10328d883c274639032af4f9963bbfa48bb29adc86a30cf85da1efdb4ec + category: main + optional: false +- name: yaml + version: 0.2.5 + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://repo.anaconda.com/pkgs/main/osx-arm64/yaml-0.2.5-h1a28f6b_0.conda + hash: + md5: 23a9bda10db68f27fac5c379466c98b7 + sha256: d4c5f11b4b9cb372f491caa39fcd28b426aa113cf1232775072ca6385e2fd87c + category: main + optional: false +- name: yaml-cpp + version: 0.8.0 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=11.2.0' + libstdcxx-ng: '>=11.2.0' + url: https://repo.anaconda.com/pkgs/main/linux-64/yaml-cpp-0.8.0-h6a678d5_1.conda + hash: + md5: 015d2d74ad3c8e53eec3358637433718 + sha256: 47beed31dd48cbe0041f221e5b4521f2bd3d907b5dcc74cabfae9346c2ba5784 + category: main + optional: false +- name: yaml-cpp + version: 0.8.0 + manager: conda + platform: osx-64 + dependencies: + libcxx: '>=14.0.6' + url: https://repo.anaconda.com/pkgs/main/osx-64/yaml-cpp-0.8.0-hcec6c5f_1.conda + hash: + md5: f1a9a58be51bdfcd801db81d33c43b3b + sha256: f3e3c882b559636bf07aef81d3a2f3727e677d299e57bbbd4ff7f7860a41b0b6 + category: main + optional: false +- name: yaml-cpp + version: 0.8.0 + manager: conda + platform: osx-arm64 + dependencies: + libcxx: '>=14.0.6' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/yaml-cpp-0.8.0-h313beb8_1.conda + hash: + md5: 788e42390f4b031fb47b547797baff69 + sha256: 116aa14d2455e97e892141e57bb215b747c09caa4d34de289bfcc6bd962cb507 + category: main + optional: false +- name: zipp + version: 3.17.0 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/zipp-3.17.0-py310h06a4308_0.conda + hash: + md5: 05ae9726a523e3c54852cbf87e2e202e + sha256: bc38d4147d2ebcc3f46dcf007a49c14436baa76c6856f28752c6e09f91fbea1d + category: main + optional: false +- name: zipp + version: 3.17.0 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/zipp-3.17.0-py310hecd8cb5_0.conda + hash: + md5: 9f6784cda07e7646473cf840c73753b1 + sha256: 569af0668c1be94840281a6298ac8ab969c977b19e43556cbce2f06ee1852656 + category: main + optional: false +- name: zipp + version: 3.17.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.10,<3.11.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/zipp-3.17.0-py310hca03da5_0.conda + hash: + md5: 953506937dc08e68de1e2939bf022a46 + sha256: f72ca84b74fb6b08ac4ca123a58b2360ef5caf011d1f29dac3a493c7219efb95 + category: main + optional: false +- name: zlib + version: 1.2.13 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=11.2.0' + url: https://repo.anaconda.com/pkgs/main/linux-64/zlib-1.2.13-h5eee18b_1.conda + hash: + md5: 92e42d8310108b0a440fb2e60b2b2a25 + sha256: eb451d3dba56a77cfc3273c8124cd45a8c13329a16bf9a4954181d835c85677b + category: main + optional: false +- name: zlib + version: 1.2.13 + manager: conda + platform: osx-64 + dependencies: {} + url: https://repo.anaconda.com/pkgs/main/osx-64/zlib-1.2.13-h4b97444_1.conda + hash: + md5: 38e35f7c817fac0973034bfce6706ec2 + sha256: 37a384d85f059a46a138e99e0315a7b91925421cdcbffae8ef4b2ad9de985c01 + category: main + optional: false +- name: zlib + version: 1.2.13 + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://repo.anaconda.com/pkgs/main/osx-arm64/zlib-1.2.13-h18a0788_1.conda + hash: + md5: 0e0f66908c52256a41c02b757e24705a + sha256: a24fd52061df9ed53ea5c26b453effeb68ae72628761d9f7434b7a2395274072 + category: main + optional: false +- name: zstandard + version: 0.22.0 + manager: conda + platform: linux-64 + dependencies: + cffi: '>=1.11' + libgcc-ng: '>=11.2.0' + python: '>=3.10,<3.11.0a0' + zstd: '>=1.5.5,<1.6.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/zstandard-0.22.0-py310h2c38b39_0.conda + hash: + md5: 556da9a17738f5ce91095f59e0e7b739 + sha256: 0e3e35bbe6a19cddcd8638056214afc1c0353d28028b635225ddd3f944442976 + category: main + optional: false +- name: zstandard + version: 0.22.0 + manager: conda + platform: osx-64 + dependencies: + cffi: '>=1.11' + python: '>=3.10,<3.11.0a0' + zstd: '>=1.5.5,<1.6.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/zstandard-0.22.0-py310h2d76c9a_0.conda + hash: + md5: 44a3f98a1cd47cb4e2cc564358ff4588 + sha256: 5df91a5d54cc956ab494662aafdb6844a1a02911f3308595a26d56cd4e59980b + category: main + optional: false +- name: zstandard + version: 0.22.0 + manager: conda + platform: osx-arm64 + dependencies: + cffi: '>=1.11' + python: '>=3.10,<3.11.0a0' + zstd: '>=1.5.5,<1.6.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/zstandard-0.22.0-py310h1a4646a_0.conda + hash: + md5: 018e0b95adfe47adc738016c76462ffd + sha256: bd0f094b9270c09c6a31c61c3bf3fbc5097402f0d0054c126386e0fcd314ea7e + category: main + optional: false +- name: zstd + version: 1.5.5 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=11.2.0' + libstdcxx-ng: '>=11.2.0' + lz4-c: '>=1.9.4,<1.10.0a0' + xz: '>=5.4.6,<6.0a0' + zlib: '>=1.2.13,<1.3.0a0' + url: https://repo.anaconda.com/pkgs/main/linux-64/zstd-1.5.5-hc292b87_2.conda + hash: + md5: 3b7fe809e5b429b4f90fe064842a2370 + sha256: a2ea0a19f4de4a4051da7817e9f8f66d9c17ff01e5d33b13289d9deffee78efd + category: main + optional: false +- name: zstd + version: 1.5.5 + manager: conda + platform: osx-64 + dependencies: + libcxx: '>=14.0.6' + lz4-c: '>=1.9.4,<1.10.0a0' + xz: '>=5.4.6,<6.0a0' + zlib: '>=1.2.13,<1.3.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-64/zstd-1.5.5-hc035e20_2.conda + hash: + md5: c033bf68c12f8c71fd916f000f3dc118 + sha256: 18f5a24a3b4baf6fab755c715f9a99e6d9793905e0c5b580e73071203292b075 + category: main + optional: false +- name: zstd + version: 1.5.5 + manager: conda + platform: osx-arm64 + dependencies: + libcxx: '>=14.0.6' + lz4-c: '>=1.9.4,<1.10.0a0' + xz: '>=5.4.6,<6.0a0' + zlib: '>=1.2.13,<1.3.0a0' + url: https://repo.anaconda.com/pkgs/main/osx-arm64/zstd-1.5.5-hd90d995_2.conda + hash: + md5: 10bed36e8cd488400bacada1040b1664 + sha256: 1d15db99397a8128bd2c8ee2920325a5f77ce38a7ec5e500d5996c98d639bd33 + category: main + optional: false diff --git a/etc/build.environment.yml b/etc/build.environment.yml new file mode 100644 index 0000000..0304530 --- /dev/null +++ b/etc/build.environment.yml @@ -0,0 +1,15 @@ +dependencies: + - python=3.10 + - conda-build + - hatch + - hatchling + - hatch-vcs>=0.3 + - setuptools-scm>=8.1.0 + - anaconda-client>=1.12.0 +channels: + - defaults + - conda-forge +platforms: + - linux-64 + - osx-64 + - osx-arm64 diff --git a/etc/build.linux-64.lock b/etc/build.linux-64.lock new file mode 100644 index 0000000..ce34746 --- /dev/null +++ b/etc/build.linux-64.lock @@ -0,0 +1,153 @@ +# Generated by conda-lock. +# platform: linux-64 +# input_hash: 7abb353f7a89e4a1fb01dc5a46e1022a240e7a255297c7389f115237de953bbe +@EXPLICIT +https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2#d7c89558ba9fa0495403155b64376d81 +https://repo.anaconda.com/pkgs/main/linux-64/ca-certificates-2024.9.24-h06a4308_0.conda#e4369d7b4b0707ee0765794d14710e2e +https://repo.anaconda.com/pkgs/main/linux-64/ld_impl_linux-64-2.40-h12ee557_0.conda#ee672b5f635340734f58d618b7bca024 +https://repo.anaconda.com/pkgs/main/noarch/pybind11-abi-4-hd3eb1b0_1.conda#4e440592a9fb70c880b74621aee6c967 +https://repo.anaconda.com/pkgs/main/noarch/tzdata-2024b-h04d1e81_0.conda#9be694715c6a65f9631bb1b242125e9d +https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.1.0-h77fa898_1.conda#23c255b008c4f2ae008f81edcabaca89 +https://repo.anaconda.com/pkgs/main/linux-64/libstdcxx-ng-11.2.0-h1234567_1.conda#57623d10a70e09e1d048c2b2b6f4e2dd +https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2#73aaf86a425cc6e73fcf236a5a46396d +https://conda.anaconda.org/conda-forge/linux-64/libgcc-14.1.0-h77fa898_1.conda#002ef4463dd1e2b44a94a4ace468f5d2 +https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.1.0-h69a702a_1.conda#1efc0ad219877a73ef977af7dbb51f17 +https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-14.1.0-hc0a3c3a_1.conda#9dbb9699ea467983ba8a4ba89b08b066 +https://repo.anaconda.com/pkgs/main/linux-64/bzip2-1.0.8-h5eee18b_6.conda#f21a3ff51c1b271977f53ce956a69297 +https://repo.anaconda.com/pkgs/main/linux-64/c-ares-1.19.1-h5eee18b_0.conda#6cfbce52273a1cb888821f18ceaa83c4 +https://repo.anaconda.com/pkgs/main/linux-64/expat-2.6.3-h6a678d5_0.conda#5e184279ccb8b85331093305cb548f5c +https://repo.anaconda.com/pkgs/main/linux-64/fmt-9.1.0-hdb19cb5_1.conda#4f12930203ff2d84df5d287af9b29858 +https://repo.anaconda.com/pkgs/main/linux-64/icu-73.1-h6a678d5_0.conda#6d09df641fc23f7d277a04dc7ea32dd4 +https://repo.anaconda.com/pkgs/main/linux-64/libev-4.33-h7f8727e_1.conda#5065620db4393fb549f30114a33897d1 +https://repo.anaconda.com/pkgs/main/linux-64/libffi-3.4.4-h6a678d5_1.conda#70646cc713f0c43926cfdcfe9b695fe0 +https://repo.anaconda.com/pkgs/main/linux-64/libiconv-1.16-h5eee18b_3.conda#197b1a0886a31fccab2167340528eebc +https://repo.anaconda.com/pkgs/main/linux-64/liblief-0.12.3-h6a678d5_0.conda#9996383fc2561614e4d54490aea33f8e +https://repo.anaconda.com/pkgs/main/linux-64/libuuid-1.41.5-h5eee18b_0.conda#4a6a2354414c9080327274aa514e5299 +https://repo.anaconda.com/pkgs/main/linux-64/lz4-c-1.9.4-h6a678d5_1.conda#2ee58861f2b92b868ce761abb831819d +https://repo.anaconda.com/pkgs/main/linux-64/ncurses-6.4-h6a678d5_0.conda#5558eec6e2191741a92f832ea826251c +https://repo.anaconda.com/pkgs/main/linux-64/openssl-3.0.15-h5eee18b_0.conda#019e501b69841c6d4aeaef3b8619a678 +https://repo.anaconda.com/pkgs/main/linux-64/patch-2.7.6-h7b6447c_1001.conda#5a47ace7ef08447fe6a602ff16129393 +https://repo.anaconda.com/pkgs/main/linux-64/patchelf-0.17.2-h6a678d5_0.conda#63ad6ea1e47f568a1bdb5edb66734026 +https://repo.anaconda.com/pkgs/main/linux-64/reproc-14.2.4-h6a678d5_2.conda#3c6dbc6c60b3897222d79359343e90fa +https://conda.anaconda.org/conda-forge/linux-64/uv-0.4.17-h0f3a69f_0.conda#266eba4e5528849f6c00327d2f15a700 +https://repo.anaconda.com/pkgs/main/linux-64/xz-5.4.6-h5eee18b_1.conda#1562802f843297ee776a50b9329597ed +https://repo.anaconda.com/pkgs/main/linux-64/yaml-0.2.5-h7b6447c_0.conda#39fdbf4db769e494ffb06d95680c83d8 +https://repo.anaconda.com/pkgs/main/linux-64/yaml-cpp-0.8.0-h6a678d5_1.conda#015d2d74ad3c8e53eec3358637433718 +https://repo.anaconda.com/pkgs/main/linux-64/zlib-1.2.13-h5eee18b_1.conda#92e42d8310108b0a440fb2e60b2b2a25 +https://repo.anaconda.com/pkgs/main/linux-64/libedit-3.1.20230828-h5eee18b_0.conda#850eb5a9d2d7d3c66cce12e84406ca08 +https://repo.anaconda.com/pkgs/main/linux-64/libnghttp2-1.57.0-h2d74bed_0.conda#674871621300f54e7ffcf93e6e341638 +https://repo.anaconda.com/pkgs/main/linux-64/libssh2-1.11.0-h251f7ec_0.conda#ce46cf257d73fe85c18c78597196f0d8 +https://repo.anaconda.com/pkgs/main/linux-64/libxml2-2.13.1-hfdd30dd_2.conda#193c6940cccb654f7c543b0f680dc0b9 +https://repo.anaconda.com/pkgs/main/linux-64/pcre2-10.42-hebb0a14_1.conda#727e15c3cfa02b032da4eb0c1123e977 +https://repo.anaconda.com/pkgs/main/linux-64/readline-8.2-h5eee18b_0.conda#be42180685cce6e6b0329201d9f48efb +https://repo.anaconda.com/pkgs/main/linux-64/reproc-cpp-14.2.4-h6a678d5_2.conda#b03aa4903158279f003e7032ab9f5601 +https://repo.anaconda.com/pkgs/main/linux-64/tk-8.6.14-h39e8969_0.conda#78dbc5e3c69143ebc037fc5d5b22e597 +https://repo.anaconda.com/pkgs/main/linux-64/zstd-1.5.5-hc292b87_2.conda#3b7fe809e5b429b4f90fe064842a2370 +https://repo.anaconda.com/pkgs/main/linux-64/krb5-1.20.1-h143b758_1.conda#cf1accc86321fa25d6b978cc748039ae +https://repo.anaconda.com/pkgs/main/linux-64/libarchive-3.7.4-hfab0078_0.conda#fcc6a63f95a80a5d2ff9d3e208e9a638 +https://repo.anaconda.com/pkgs/main/linux-64/libglib-2.78.4-hdc74915_0.conda#2f6d27741e931d5b6ba56e1a1312aaf0 +https://repo.anaconda.com/pkgs/main/linux-64/libsolv-0.7.24-he621ea3_1.conda#c22067963515e7a8d27a5a222a48d870 +https://repo.anaconda.com/pkgs/main/linux-64/sqlite-3.45.3-h5eee18b_0.conda#acf93d6aceb74d6110e20b44cc45939e +https://repo.anaconda.com/pkgs/main/linux-64/glib-tools-2.78.4-h6a678d5_0.conda#3dbe6227cd59818dca9afb75ccb70708 +https://repo.anaconda.com/pkgs/main/linux-64/libcurl-8.9.1-h251f7ec_0.conda#8133d8f19e8136a10f9f81180026c859 +https://repo.anaconda.com/pkgs/main/linux-64/python-3.10.15-he870216_1.conda#cb69a5008de51ea5af0d21b9b3dc6821 +https://repo.anaconda.com/pkgs/main/linux-64/anaconda-anon-usage-0.4.4-py310hfc0e8ea_100.conda#f0f4985982fa7adb21c64c06bf4de0b4 +https://repo.anaconda.com/pkgs/main/noarch/archspec-0.2.3-pyhd3eb1b0_0.conda#13d01ee2d343d8539bb47055a6c0b5b2 +https://repo.anaconda.com/pkgs/main/linux-64/attrs-23.1.0-py310h06a4308_0.conda#c01f08056ba4037e55fe0b66eb398970 +https://repo.anaconda.com/pkgs/main/linux-64/boltons-23.0.0-py310h06a4308_0.conda#69248b87edfba6b1abba3a25e6cfd992 +https://repo.anaconda.com/pkgs/main/linux-64/brotli-python-1.0.9-py310h6a678d5_8.conda#c7098c1b40187f13bb030f5f0e553f33 +https://repo.anaconda.com/pkgs/main/linux-64/certifi-2024.8.30-py310h06a4308_0.conda#ef7fda038d809382cc5cc0ab7c463209 +https://repo.anaconda.com/pkgs/main/linux-64/chardet-4.0.0-py310h06a4308_1003.conda#29ec302e607a23642d21c1ae323757b9 +https://repo.anaconda.com/pkgs/main/noarch/charset-normalizer-3.3.2-pyhd3eb1b0_0.conda#c6fea3691e85cf7f568b0618ec29fc4f +https://repo.anaconda.com/pkgs/main/linux-64/click-8.1.7-py310h06a4308_0.conda#5b367e0f21e45a105c1d0ccd452b46b7 +https://repo.anaconda.com/pkgs/main/noarch/defusedxml-0.7.1-pyhd3eb1b0_0.conda#d912068b0729930972adcaac338882c0 +https://repo.anaconda.com/pkgs/main/linux-64/distlib-0.3.8-py310h06a4308_0.conda#b36dd9c8c42d02cbbadf1ce516e166b3 +https://repo.anaconda.com/pkgs/main/linux-64/distro-1.9.0-py310h06a4308_0.conda#4daeace877a3b0bdb9716b69729e4be1 +https://repo.anaconda.com/pkgs/main/linux-64/exceptiongroup-1.2.0-py310h06a4308_0.conda#3cb78287eb8e4433200935a07d19a03e +https://repo.anaconda.com/pkgs/main/linux-64/filelock-3.13.1-py310h06a4308_0.conda#b0ea92b64435f35302a514d46d035510 +https://repo.anaconda.com/pkgs/main/linux-64/frozendict-2.4.2-py310h5eee18b_0.conda#d60ee615231f33a2ab3a79a03bae47cc +https://repo.anaconda.com/pkgs/main/linux-64/glib-2.78.4-h6a678d5_0.conda#045ff487547f7b2b7ff01648681b8ebe +https://repo.anaconda.com/pkgs/main/linux-64/h11-0.14.0-py310h06a4308_0.conda#68fa9a8aa8982390f05ce0e189551d1e +https://repo.anaconda.com/pkgs/main/linux-64/idna-3.7-py310h06a4308_0.conda#e6999f40f91d7c7e46dc13b4283cb6d8 +https://repo.anaconda.com/pkgs/main/noarch/jeepney-0.7.1-pyhd3eb1b0_0.conda#f115ef0af90b59f35ef56743955979a4 +https://repo.anaconda.com/pkgs/main/noarch/jsonpointer-2.1-pyhd3eb1b0_0.conda#298ff809e733cb04366e4e629c65aa8d +https://repo.anaconda.com/pkgs/main/linux-64/libmamba-1.5.8-hfe524e5_3.conda#cf9c3aa352a0d48f9dc0b5a0222f3065 +https://repo.anaconda.com/pkgs/main/linux-64/markupsafe-2.1.3-py310h5eee18b_0.conda#27865be8802ed7a92b33a0a21c227458 +https://repo.anaconda.com/pkgs/main/linux-64/mdurl-0.1.0-py310h06a4308_0.conda#3f1edd5cb1c88f35898cacb0308ac709 +https://repo.anaconda.com/pkgs/main/linux-64/menuinst-2.1.2-py310h06a4308_0.conda#d5adfb80c51c19c8082979c10eb0a36f +https://repo.anaconda.com/pkgs/main/linux-64/more-itertools-10.3.0-py310h06a4308_0.conda#9b6663a0196bba2b3b01c9fb89dfee28 +https://repo.anaconda.com/pkgs/main/linux-64/packaging-24.1-py310h06a4308_0.conda#c18450584a4bb28dc85561cc7472c998 +https://repo.anaconda.com/pkgs/main/linux-64/pathspec-0.10.3-py310h06a4308_0.conda#801ec405b191788df01b7a49c9a5449c +https://repo.anaconda.com/pkgs/main/linux-64/pkginfo-1.10.0-py310h06a4308_0.conda#3fc00e519cd198b274621510293765ef +https://repo.anaconda.com/pkgs/main/linux-64/platformdirs-3.10.0-py310h06a4308_0.conda#e75261f061adb0fcb519c8b842789132 +https://repo.anaconda.com/pkgs/main/linux-64/pluggy-1.0.0-py310h06a4308_1.conda#2b96380162a84640a34ede74691658db +https://repo.anaconda.com/pkgs/main/linux-64/psutil-5.9.0-py310h5eee18b_0.conda#b48c5c1b4198a08f61426140a29254fc +https://repo.anaconda.com/pkgs/main/noarch/ptyprocess-0.7.0-pyhd3eb1b0_2.conda#7441d2827d4bfbcc1fa308875a146246 +https://repo.anaconda.com/pkgs/main/linux-64/py-lief-0.12.3-py310h6a678d5_0.conda#deb974cab7b8521457561e115ac21bfc +https://repo.anaconda.com/pkgs/main/linux-64/pycosat-0.6.6-py310h5eee18b_1.conda#83149d42f3f8e0e30fc8938e4ddd446d +https://repo.anaconda.com/pkgs/main/noarch/pycparser-2.21-pyhd3eb1b0_0.conda#135a72ff2a31150a3a3ff0b1edd41ca9 +https://repo.anaconda.com/pkgs/main/linux-64/pygments-2.15.1-py310h06a4308_1.conda#fa74688099132ad3b477dff90d2ad426 +https://repo.anaconda.com/pkgs/main/linux-64/pysocks-1.7.1-py310h06a4308_0.conda#b0753810caadcd4a550c833f87fb3866 +https://repo.anaconda.com/pkgs/main/linux-64/python-fastjsonschema-2.16.2-py310h06a4308_0.conda#747b43bf00c8f43d747e052c8e0c6be8 +https://repo.anaconda.com/pkgs/main/noarch/python-libarchive-c-5.1-pyhd3eb1b0_0.conda#7952606fde014b712cc9ff33622921bf +https://repo.anaconda.com/pkgs/main/linux-64/pytz-2024.1-py310h06a4308_0.conda#afa7054a6953af1313cdbcaad46318c6 +https://repo.anaconda.com/pkgs/main/linux-64/pyyaml-6.0.1-py310h5eee18b_0.conda#f4b712ce86fc6982bbe772d8c9308f6f +https://repo.anaconda.com/pkgs/main/linux-64/rpds-py-0.10.6-py310hb02cf49_0.conda#aa9c04f35218916696b861161a93295f +https://repo.anaconda.com/pkgs/main/linux-64/ruamel.yaml.clib-0.2.8-py310h5eee18b_0.conda#3c125b9704a74212bd536545f9bedec0 +https://repo.anaconda.com/pkgs/main/linux-64/setuptools-75.1.0-py310h06a4308_0.conda#8f1bdaed0c9c46968ea050afe3cd8a79 +https://repo.anaconda.com/pkgs/main/linux-64/shellingham-1.5.0-py310h06a4308_0.conda#bc1ee3249086c74f8e57dad73557005a +https://repo.anaconda.com/pkgs/main/noarch/six-1.16.0-pyhd3eb1b0_1.conda#34586824d411d36af2fa40e799c172d0 +https://repo.anaconda.com/pkgs/main/linux-64/sniffio-1.3.0-py310h06a4308_0.conda#57a56b93cd6fcda1b4c62545f34e4e08 +https://repo.anaconda.com/pkgs/main/linux-64/soupsieve-2.5-py310h06a4308_0.conda#3c548d3f16f4d02da970812eade65790 +https://repo.anaconda.com/pkgs/main/linux-64/tomli-2.0.1-py310h06a4308_0.conda#16e032c58fc284838f0e0b42f03d5a1d +https://repo.anaconda.com/pkgs/main/noarch/tomli-w-1.0.0-pyhd3eb1b0_0.conda#cf95e059a708484fd176e031aa6218e6 +https://repo.anaconda.com/pkgs/main/linux-64/tomlkit-0.11.1-py310h06a4308_0.conda#57817e6c50d597a40051c405d7dd7296 +https://repo.anaconda.com/pkgs/main/linux-64/tqdm-4.66.5-py310h2f386ee_0.conda#1c8ef064ef328f5ae08ee67ab91e34c4 +https://repo.anaconda.com/pkgs/main/linux-64/traitlets-5.14.3-py310h06a4308_0.conda#41493f5ef185d46a832281f22678cb5a +https://repo.anaconda.com/pkgs/main/linux-64/trove-classifiers-2023.10.18-py310h06a4308_0.conda#157b135e8e5d175f2c458c6d285aef2c +https://repo.anaconda.com/pkgs/main/linux-64/truststore-0.8.0-py310h06a4308_0.conda#2ea1b21eda18b85fc82644ec459ac009 +https://repo.anaconda.com/pkgs/main/linux-64/typing_extensions-4.11.0-py310h06a4308_0.conda#565c12e3184d8aec560855a609ff546c +https://repo.anaconda.com/pkgs/main/linux-64/zipp-3.17.0-py310h06a4308_0.conda#05ae9726a523e3c54852cbf87e2e202e +https://repo.anaconda.com/pkgs/main/linux-64/anyio-4.2.0-py310h06a4308_0.conda#fbca54a5a6f422d0c4acf4c3e7a2be2a +https://repo.anaconda.com/pkgs/main/linux-64/beautifulsoup4-4.12.3-py310h06a4308_0.conda#9af8d216db44081940b4d4475390e629 +https://repo.anaconda.com/pkgs/main/linux-64/cffi-1.17.1-py310h1fdaa30_0.conda#233cbb832c9c666d7e059759a9e139e1 +https://repo.anaconda.com/pkgs/main/linux-64/dbus-1.13.18-hb2f20db_0.conda#6a6a6f1391f807847404344489ef6cf4 +https://repo.anaconda.com/pkgs/main/linux-64/hatchling-1.25.0-py310h06a4308_0.conda#cb5b8a3479548a9ca1233ad35e5ef264 +https://repo.anaconda.com/pkgs/main/linux-64/httpcore-1.0.2-py310h06a4308_0.conda#e94efcfc6f0fea751999b082e74b425e +https://repo.anaconda.com/pkgs/main/noarch/hyperlink-21.0.0-pyhd3eb1b0_0.conda#8b1ba827e0fecc1c857577a3d51aa653 +https://repo.anaconda.com/pkgs/main/linux-64/importlib-metadata-7.0.1-py310h06a4308_0.conda#5c2007a924f9ab672b2beaf117af0852 +https://repo.anaconda.com/pkgs/main/noarch/jaraco.classes-3.2.1-pyhd3eb1b0_0.conda#7f47c66b55e92b2724174847703df72f +https://repo.anaconda.com/pkgs/main/linux-64/jinja2-3.1.4-py310h06a4308_0.conda#3c05f1abf47bf14e2d502081b33b7ed1 +https://repo.anaconda.com/pkgs/main/linux-64/jsonpatch-1.33-py310h06a4308_1.conda#37d54a44475726ff4fba1093add64ba7 +https://repo.anaconda.com/pkgs/main/linux-64/jupyter_core-5.7.2-py310h06a4308_0.conda#3ffb5ce9b6602b43145787e347336dad +https://repo.anaconda.com/pkgs/main/linux-64/libmambapy-1.5.8-py310h2dafd23_3.conda#3655c4ec8e57557a449b66d5849ace87 +https://repo.anaconda.com/pkgs/main/linux-64/markdown-it-py-2.2.0-py310h06a4308_1.conda#566428b810cf9c5aaf47636a49fd42b8 +https://repo.anaconda.com/pkgs/main/noarch/pexpect-4.8.0-pyhd3eb1b0_3.conda#765b2562d6cdd14bb6d44fc170a04331 +https://repo.anaconda.com/pkgs/main/linux-64/python-dateutil-2.9.0post0-py310h06a4308_2.conda#004cb2d4a6c2ad5f0f512816947a6989 +https://repo.anaconda.com/pkgs/main/linux-64/referencing-0.30.2-py310h06a4308_0.conda#b1ba1ff819562e8608cfe45b77cd6494 +https://repo.anaconda.com/pkgs/main/linux-64/ruamel.yaml-0.18.6-py310h5eee18b_0.conda#bb6e4acd0e6fc22519ab24bedc307c8a +https://repo.anaconda.com/pkgs/main/linux-64/setuptools-scm-8.1.0-py310h06a4308_0.conda#e026db63d50af380c1727c3df601e5cf +https://repo.anaconda.com/pkgs/main/linux-64/urllib3-2.2.3-py310h06a4308_0.conda#a795a6e5bc1423ab76c97f952a75f8f0 +https://conda.anaconda.org/conda-forge/noarch/userpath-1.7.0-pyhd8ed1ab_0.tar.bz2#5bf074c9253a3bf914becfc50757406f +https://repo.anaconda.com/pkgs/main/linux-64/virtualenv-20.26.1-py310h06a4308_0.conda#b1557ef5ec8d627cd08b69e9a1b355ae +https://repo.anaconda.com/pkgs/main/linux-64/cryptography-43.0.0-py310hdda0065_0.conda#1fae818bdea89ed47dff0577f194d9c2 +https://repo.anaconda.com/pkgs/main/linux-64/hatch-vcs-0.3.0-py310h06a4308_0.conda#48ed01287f91a0b74c31095c58285918 +https://repo.anaconda.com/pkgs/main/linux-64/httpx-0.27.0-py310h06a4308_0.conda#dedde5500968ab1545bef84cdb731c1a +https://repo.anaconda.com/pkgs/main/noarch/importlib_metadata-7.0.1-hd3eb1b0_0.conda#f764ec5ca8c8f808464764c83be0ead4 +https://repo.anaconda.com/pkgs/main/linux-64/jsonschema-specifications-2023.7.1-py310h06a4308_0.conda#0cf6985bde6513725f978825b4a1fe24 +https://repo.anaconda.com/pkgs/main/linux-64/requests-2.32.3-py310h06a4308_0.conda#c74ba5d74df7f83cc98f45ef64c4242d +https://repo.anaconda.com/pkgs/main/linux-64/rich-13.7.1-py310h06a4308_0.conda#ddb9caf394bfce4797656bf6aadd4648 +https://repo.anaconda.com/pkgs/main/linux-64/zstandard-0.22.0-py310h2c38b39_0.conda#556da9a17738f5ce91095f59e0e7b739 +https://repo.anaconda.com/pkgs/main/linux-64/conda-package-streaming-0.10.0-py310h06a4308_0.conda#7b0a4c9996614648bd9294d8dd438f0b +https://repo.anaconda.com/pkgs/main/linux-64/jsonschema-4.19.2-py310h06a4308_0.conda#ddb32fd9ff8b311faf8246bfaa94c725 +https://repo.anaconda.com/pkgs/main/linux-64/requests-toolbelt-1.0.0-py310h06a4308_0.conda#6b22af4315da9735f14d572a37886c09 +https://repo.anaconda.com/pkgs/main/linux-64/secretstorage-3.3.1-py310h06a4308_1.conda#c2180530067e077ecaff4d488fa3e0dc +https://repo.anaconda.com/pkgs/main/linux-64/conda-package-handling-2.3.0-py310h06a4308_0.conda#88aa6234d37fe78bfa3e831927eb17c9 +https://repo.anaconda.com/pkgs/main/linux-64/keyring-24.3.1-py310h06a4308_0.conda#44932698f14cd0efde9b52280dece512 +https://repo.anaconda.com/pkgs/main/linux-64/nbformat-5.10.4-py310h06a4308_0.conda#1993cfd26b800dd078714ec1f48eb7cd +https://repo.anaconda.com/pkgs/main/linux-64/anaconda-client-1.12.3-py310h06a4308_0.conda#b2586991bb92809292a2cbf481e04c68 +https://conda.anaconda.org/conda-forge/noarch/hatch-1.12.0-pyhd8ed1ab_0.conda#75ef4cd9ebf1c870d9389d2af8c67a42 +https://repo.anaconda.com/pkgs/main/linux-64/conda-24.9.1-py310h06a4308_0.conda#9779265c4d36863c991bda088e9e4a11 +https://repo.anaconda.com/pkgs/main/linux-64/conda-index-0.5.0-py310h06a4308_0.conda#c7c268176ee949b328a96a56d63ddac2 +https://repo.anaconda.com/pkgs/main/noarch/conda-libmamba-solver-24.9.0-pyhd3eb1b0_0.conda#251a69a5bf578ef59fdf8255c7c25c5d +https://repo.anaconda.com/pkgs/main/linux-64/conda-build-24.9.0-py310h06a4308_0.conda#6005bf2422ea9b371d40b2d2633907ae From 805e9cbdb4186a620f51a338236ec50bcab77645 Mon Sep 17 00:00:00 2001 From: Albert DeFusco Date: Mon, 4 Nov 2024 11:18:55 -0500 Subject: [PATCH 03/19] drop tag prefix --- pyproject.toml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 4096ea5..f6d1652 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -58,10 +58,6 @@ include = [ [tool.hatch.version] source = "vcs" -[tool.hatch.version.raw-options] -git_describe_command = "git describe --dirty --tags --long --match 'anaconda-cli-base-*'" -root = "../.." - [tool.mypy] disallow_untyped_defs = true files = [ From 6a47006a909261f674959e89c9620dade124cdc0 Mon Sep 17 00:00:00 2001 From: Albert DeFusco Date: Mon, 4 Nov 2024 11:20:07 -0500 Subject: [PATCH 04/19] gitignore --- .gitignore | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6b07876 --- /dev/null +++ b/.gitignore @@ -0,0 +1,47 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# Distribution / packaging +env/ +build/ +develop-eggs/ +dist/ +*.egg-info + +# Unit test / coverage reports +htmlcov/ +.coverage +.coverage.* +coverage.xml +.pytest_cache/ +.tox/ + +# Documentation +docs/_build/ +docs/.cache/ + +# Jupyter Notebook +.ipynb_checkpoints + +# dotenv +.env + +# virtualenv +.venv +venv/ + +# mypy +.mypy_cache/ + +# vscode ide stuff +*.code-workspace +.history +.vscode + +# Version file generated by setuptools-scm +src/*/_version.py + +# Stored tokens (for dev) +/tokens.json From 70e80346a18d6e0ec7965dae3076d92278133c99 Mon Sep 17 00:00:00 2001 From: Albert DeFusco Date: Mon, 4 Nov 2024 11:36:28 -0500 Subject: [PATCH 05/19] update link --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d81815f..2808c3a 100644 --- a/README.md +++ b/README.md @@ -119,7 +119,7 @@ config = MyPluginConfig() assert config.foo == "baz" ``` -See the [tests](https://github.com/anaconda/anaconda-cloud-tools/blob/feat/cli-base-config-file/libs/anaconda-cli-base/tests/test_config.py) for more examples. +See the [tests](https://github.com/anaconda/anaconda-cli-base/blob/main/tests/test_config.py) for more examples. ## Setup for development @@ -137,6 +137,7 @@ make test ``` ## Run the unit tests across isolated environments with tox + ```shell make tox ``` From 1ec1b2528db76f6a43b89b8ee9283c1315bad6a2 Mon Sep 17 00:00:00 2001 From: Albert DeFusco Date: Tue, 12 Nov 2024 11:08:06 -0500 Subject: [PATCH 06/19] Update .github/workflows/test.yml Co-authored-by: Matt Kramer --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index bf5e22f..8c51930 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -78,7 +78,7 @@ jobs: if-no-files-found: error retention-days: 7 - # This check job runs to ensure all tests and builds have passed, such that we can use it as a "wildcard" + # This check job runs to ensure all tests and builds have passed, such that we can use it as a "wildcard" # for branch protection to ensure all tests pass before a PR can be merged. check: name: Check all tests passed From 998cc1a4df8c08215aa2bd4e86dd9bf175541d55 Mon Sep 17 00:00:00 2001 From: Albert DeFusco Date: Tue, 12 Nov 2024 11:08:29 -0500 Subject: [PATCH 07/19] Update .github/workflows/test.yml Co-authored-by: Matt Kramer --- .github/workflows/test.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8c51930..ce9649b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -122,7 +122,6 @@ jobs: --user anaconda-cloud \ $LABEL \ --force \ - --private \ ~/anaconda-cli-base-conda-bld/noarch/anaconda-cli-base-* publish-wheel-to-anaconda-dot-org: From c14470be4190826868fe4d897dfe712eccc899b4 Mon Sep 17 00:00:00 2001 From: Albert DeFusco Date: Tue, 12 Nov 2024 11:09:04 -0500 Subject: [PATCH 08/19] Update .github/workflows/test.yml Co-authored-by: Matt Kramer --- .github/workflows/test.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ce9649b..d5698e4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -156,7 +156,6 @@ jobs: "A base CLI entrypoint supporting Anaconda CLI plugins" \ $LABEL \ --force \ - --private publish-to-pypi: name: Build & publish to PyPI From 20333e25c6ac860e6a4d2c0d0c93a5bbb1bf775a Mon Sep 17 00:00:00 2001 From: Albert DeFusco Date: Tue, 12 Nov 2024 16:13:50 -0500 Subject: [PATCH 09/19] split github actions --- .github/workflows/release.yml | 102 ++++++++++++++++++++++++++++++++++ .github/workflows/test.yml | 101 ++------------------------------- 2 files changed, 107 insertions(+), 96 deletions(-) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..95b7a86 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,102 @@ +name: "release" + +on: + pull_request: + branches: + - main + merge_group: + workflow_call: + + +jobs: + check: + uses: ./.github/workflows/test.yml + + publish-conda-pkg-to-anaconda-dot-org: + name: Publish conda package to Anaconda.org + runs-on: ubuntu-latest + if: github.event_name == 'push' # Only run on push to main branch + needs: [check] + steps: + - name: Retrieve the source code + uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4 + with: + fetch-depth: 0 + - name: Create build environment + run: | + source $CONDA/bin/activate + conda create -n build --file ./etc/build.linux-64.lock + - name: Download the build artifacts + uses: actions/download-artifact@9c19ed7fe5d278cd354c7dfd5d3b88589c7e2395 # v4 + with: + name: anaconda-cli-base-conda-${{ github.sha }} + path: ~/anaconda-cli-base-conda-bld + - name: publish + env: + TOKEN: ${{ secrets.ANACONDA_ORG_UPLOAD_TOKEN }} + run: | + source $CONDA/bin/activate && conda activate build + [[ "$GITHUB_REF" =~ ^refs/tags/v ]] || export LABEL="--label dev" + anaconda --verbose \ + --token $TOKEN \ + upload \ + --user anaconda-cloud \ + $LABEL \ + --force \ + ~/anaconda-cli-base-conda-bld/noarch/anaconda-cli-base-* + + publish-wheel-to-anaconda-dot-org: + name: Publish wheel to Anaconda.org + runs-on: ubuntu-latest + if: github.event_name == 'push' # Only run on push to main branch + needs: [check] + steps: + - name: Retrieve the source code + uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4 + with: + fetch-depth: 0 + - name: Download the build artifacts + uses: actions/download-artifact@9c19ed7fe5d278cd354c7dfd5d3b88589c7e2395 # v4 + with: + name: anaconda-cli-base-wheel-${{ github.sha }} + path: ~/dist + - name: Upload to anaconda.org + env: + TOKEN: ${{ secrets.ANACONDA_ORG_UPLOAD_TOKEN }} + GITHUB_REF: ${{ github.ref }} + run: | + source $CONDA/bin/activate + conda install -y anaconda-client + [[ "$GITHUB_REF" =~ ^refs/tags/v ]] || export LABEL="--label dev" + anaconda --verbose \ + --token $TOKEN \ + upload \ + --user anaconda-cloud \ + ~/dist/*.whl \ + --summary \ + "A base CLI entrypoint supporting Anaconda CLI plugins" \ + $LABEL \ + --force \ + + publish-to-pypi: + name: Build & publish to PyPI + if: startsWith(github.event.ref, 'refs/tags/v') + runs-on: ubuntu-latest + needs: [check] + steps: + - name: Checkout + uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4 + - name: Setup Python + uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5 + - name: Download the build artifacts + uses: actions/download-artifact@9c19ed7fe5d278cd354c7dfd5d3b88589c7e2395 # v4 + with: + name: anaconda-cli-base-wheel-${{ github.sha }} + path: ~/dist + - name: Install build dependencies + run: pip install twine + - name: Upload to PyPI with twine + run: python -m twine upload ~/dist/* + env: + TWINE_USERNAME: __token__ + TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN_ANACONDA_CLI_BASE }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d5698e4..9000bda 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,13 +1,11 @@ -name: "[CI] anaconda-cli-base" +name: "test" on: pull_request: branches: - main - push: - branches: - - main merge_group: + workflow_call: jobs: test: @@ -44,13 +42,13 @@ jobs: - name: conda build run: | source $CONDA/bin/activate && conda activate build - VERSION=`hatch version` conda build -c conda-forge -c defaults --override-channels conda.recipe - mv $CONDA_PREFIX/conda-bld . + mkdir -p ./conda-bld + VERSION=`hatch version` conda build -c conda-forge -c defaults --override-channels conda.recipe --output-folder ./conda-bld - name: Upload the build artifact uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4 with: name: anaconda-cli-base-conda-${{ github.sha }} - path: conda-bld + path: ./conda-bld if-no-files-found: error retention-days: 7 @@ -90,92 +88,3 @@ jobs: uses: re-actors/alls-green@release/v1 with: jobs: ${{ toJSON(needs) }} - - publish-conda-pkg-to-anaconda-dot-org: - name: Publish conda package to Anaconda.org - runs-on: ubuntu-latest - if: github.event_name == 'push' # Only run on push to main branch - needs: [check] - steps: - - name: Retrieve the source code - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4 - with: - fetch-depth: 0 - - name: Create build environment - run: | - source $CONDA/bin/activate - conda create -n build --file ./etc/build.linux-64.lock - - name: Download the build artifacts - uses: actions/download-artifact@9c19ed7fe5d278cd354c7dfd5d3b88589c7e2395 # v4 - with: - name: anaconda-cli-base-conda-${{ github.sha }} - path: ~/anaconda-cli-base-conda-bld - - name: publish - env: - TOKEN: ${{ secrets.ANACONDA_ORG_UPLOAD_TOKEN }} - run: | - source $CONDA/bin/activate && conda activate build - [[ "$GITHUB_REF" =~ ^refs/tags/v ]] || export LABEL="--label dev" - anaconda --verbose \ - --token $TOKEN \ - upload \ - --user anaconda-cloud \ - $LABEL \ - --force \ - ~/anaconda-cli-base-conda-bld/noarch/anaconda-cli-base-* - - publish-wheel-to-anaconda-dot-org: - name: Publish wheel to Anaconda.org - runs-on: ubuntu-latest - if: github.event_name == 'push' # Only run on push to main branch - needs: [check] - steps: - - name: Retrieve the source code - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4 - with: - fetch-depth: 0 - - name: Download the build artifacts - uses: actions/download-artifact@9c19ed7fe5d278cd354c7dfd5d3b88589c7e2395 # v4 - with: - name: anaconda-cli-base-wheel-${{ github.sha }} - path: ~/dist - - name: Upload to anaconda.org - env: - TOKEN: ${{ secrets.ANACONDA_ORG_UPLOAD_TOKEN }} - GITHUB_REF: ${{ github.ref }} - run: | - source $CONDA/bin/activate - conda install -y anaconda-client - [[ "$GITHUB_REF" =~ ^refs/tags/v ]] || export LABEL="--label dev" - anaconda --verbose \ - --token $TOKEN \ - upload \ - --user anaconda-cloud \ - ~/dist/*.whl \ - --summary \ - "A base CLI entrypoint supporting Anaconda CLI plugins" \ - $LABEL \ - --force \ - - publish-to-pypi: - name: Build & publish to PyPI - if: startsWith(github.event.ref, 'refs/tags/v') - runs-on: ubuntu-latest - needs: [check] - steps: - - name: Checkout - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4 - - name: Setup Python - uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5 - - name: Download the build artifacts - uses: actions/download-artifact@9c19ed7fe5d278cd354c7dfd5d3b88589c7e2395 # v4 - with: - name: anaconda-cli-base-wheel-${{ github.sha }} - path: ~/dist - - name: Install build dependencies - run: pip install twine - - name: Upload to PyPI with twine - run: python -m twine upload ~/dist/* - env: - TWINE_USERNAME: __token__ - TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN_ANACONDA_CLI_BASE }} From cf798b0babe3aaeac2247adf503be65e6d3193aa Mon Sep 17 00:00:00 2001 From: Albert DeFusco Date: Tue, 12 Nov 2024 16:17:35 -0500 Subject: [PATCH 10/19] release only on tag push --- .github/workflows/release.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 95b7a86..c038b46 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,12 +1,9 @@ name: "release" on: - pull_request: - branches: - - main - merge_group: - workflow_call: - + push: + tags: + - "*" jobs: check: From 2ef6fd680ce22db6e0672e4306bf430fefd3be1f Mon Sep 17 00:00:00 2001 From: Albert DeFusco Date: Tue, 12 Nov 2024 16:18:32 -0500 Subject: [PATCH 11/19] cleaner job name --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9000bda..1ffdca6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,7 +9,7 @@ on: jobs: test: - name: Test, Python ${{ matrix.python-version }} + name: Python ${{ matrix.python-version }} runs-on: labels: ubuntu-latest strategy: From 2755ef3a4855831ca2c913c86eb72797c7aebc12 Mon Sep 17 00:00:00 2001 From: Albert DeFusco Date: Tue, 12 Nov 2024 16:58:18 -0500 Subject: [PATCH 12/19] practice running release --- .github/workflows/release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c038b46..9334fa6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -4,6 +4,7 @@ on: push: tags: - "*" + pull_request: jobs: check: From 7f2a5057c5b3552986cba35bb7f00664a07d8543 Mon Sep 17 00:00:00 2001 From: Albert DeFusco Date: Tue, 12 Nov 2024 21:02:56 -0500 Subject: [PATCH 13/19] test finished; release on on tagging --- .github/workflows/release.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9334fa6..37a3bb2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -4,7 +4,6 @@ on: push: tags: - "*" - pull_request: jobs: check: @@ -42,7 +41,7 @@ jobs: $LABEL \ --force \ ~/anaconda-cli-base-conda-bld/noarch/anaconda-cli-base-* - + publish-wheel-to-anaconda-dot-org: name: Publish wheel to Anaconda.org runs-on: ubuntu-latest @@ -75,7 +74,7 @@ jobs: "A base CLI entrypoint supporting Anaconda CLI plugins" \ $LABEL \ --force \ - + publish-to-pypi: name: Build & publish to PyPI if: startsWith(github.event.ref, 'refs/tags/v') From da4156d1b2e69a72471e810c6f0497ce48d78cf7 Mon Sep 17 00:00:00 2001 From: Albert DeFusco Date: Tue, 12 Nov 2024 21:07:02 -0500 Subject: [PATCH 14/19] rename check to test in release --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 37a3bb2..b2a57f1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -6,14 +6,14 @@ on: - "*" jobs: - check: + test: uses: ./.github/workflows/test.yml publish-conda-pkg-to-anaconda-dot-org: name: Publish conda package to Anaconda.org runs-on: ubuntu-latest if: github.event_name == 'push' # Only run on push to main branch - needs: [check] + needs: [test] steps: - name: Retrieve the source code uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4 @@ -46,7 +46,7 @@ jobs: name: Publish wheel to Anaconda.org runs-on: ubuntu-latest if: github.event_name == 'push' # Only run on push to main branch - needs: [check] + needs: [test] steps: - name: Retrieve the source code uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4 @@ -79,7 +79,7 @@ jobs: name: Build & publish to PyPI if: startsWith(github.event.ref, 'refs/tags/v') runs-on: ubuntu-latest - needs: [check] + needs: [test] steps: - name: Checkout uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4 From c7c50aaa94bcf647fdd76d77b068fad36cccc174 Mon Sep 17 00:00:00 2001 From: Albert DeFusco Date: Tue, 12 Nov 2024 21:08:37 -0500 Subject: [PATCH 15/19] one more validation test --- .github/workflows/release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b2a57f1..f3b1e6f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -4,6 +4,7 @@ on: push: tags: - "*" + pull_request: jobs: test: From 7ab31f7253198728fa5d5e8541c518d28b97d77c Mon Sep 17 00:00:00 2001 From: Albert DeFusco Date: Tue, 12 Nov 2024 21:11:46 -0500 Subject: [PATCH 16/19] off again --- .github/workflows/release.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f3b1e6f..b2a57f1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -4,7 +4,6 @@ on: push: tags: - "*" - pull_request: jobs: test: From a0d8c7875d3698b8af9a8721394487f1461f183f Mon Sep 17 00:00:00 2001 From: Albert DeFusco Date: Mon, 18 Nov 2024 11:38:15 -0500 Subject: [PATCH 17/19] tag prefix on push Co-authored-by: Matt Kramer --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b2a57f1..5a1fcb3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -3,7 +3,7 @@ name: "release" on: push: tags: - - "*" + - "v*" jobs: test: From 52ec755bbeb3221142abdef9b3e222fe80bd8960 Mon Sep 17 00:00:00 2001 From: Albert DeFusco Date: Mon, 18 Nov 2024 11:38:43 -0500 Subject: [PATCH 18/19] pypi token secret Co-authored-by: Matt Kramer --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5a1fcb3..e0ec908 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -96,4 +96,4 @@ jobs: run: python -m twine upload ~/dist/* env: TWINE_USERNAME: __token__ - TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN_ANACONDA_CLI_BASE }} + TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }} From 0b235e96c3ddf552f13bca9c82f8fc3d829ab250 Mon Sep 17 00:00:00 2001 From: Albert DeFusco Date: Mon, 18 Nov 2024 11:43:51 -0500 Subject: [PATCH 19/19] use locked env --- .github/workflows/release.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e0ec908..ef24f96 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -57,13 +57,16 @@ jobs: with: name: anaconda-cli-base-wheel-${{ github.sha }} path: ~/dist + - name: Create build environment + run: | + source $CONDA/bin/activate + conda create -n build --file ./etc/build.linux-64.lock - name: Upload to anaconda.org env: TOKEN: ${{ secrets.ANACONDA_ORG_UPLOAD_TOKEN }} GITHUB_REF: ${{ github.ref }} run: | - source $CONDA/bin/activate - conda install -y anaconda-client + source $CONDA/bin/activate && conda activate build [[ "$GITHUB_REF" =~ ^refs/tags/v ]] || export LABEL="--label dev" anaconda --verbose \ --token $TOKEN \